diff options
321 files changed, 18769 insertions, 44264 deletions
@@ -13,7 +13,7 @@ watch_dirs = [ watch_exts = [".go"] build_delay = 1500 cmds = [ - ["go", "install", "-tags", "sqlite"],# redis memcache cert pam tidb - ["go", "build", "-tags", "sqlite"], + ["go", "install", "-race"], # sqlite redis memcache cert pam tidb + ["go", "build", "-race"], ["./gogs", "web"] ]
\ No newline at end of file @@ -36,3 +36,4 @@ docker/docker/init_gogs.sh gogs.sublime-project gogs.sublime-workspace .tags* +release @@ -3,42 +3,43 @@ path = github.com/gogits/gogs [deps] github.com/bradfitz/gomemcache = commit:72a68649ba -github.com/Unknwon/cae = commit:2e70a1351b -github.com/Unknwon/com = commit:47d7d2b81a -github.com/Unknwon/i18n = commit:7457d88830 -github.com/Unknwon/paginater = commit:cab2d086fa -github.com/codegangsta/cli = commit:142e6cd241 -github.com/go-sql-driver/mysql = commit:527bcd55aa +github.com/codegangsta/cli = commit:0302d39 +github.com/go-macaron/binding = commit:864a5ce +github.com/go-macaron/cache = commit:5617353 +github.com/go-macaron/captcha = commit:875ff77 +github.com/go-macaron/csrf = commit:3372b25 +github.com/go-macaron/gzip = commit:4938e9b +github.com/go-macaron/i18n = commit:5e728b6 +github.com/go-macaron/inject = commit:c5ab7bf +github.com/go-macaron/session = commit:66031fc +github.com/go-macaron/toolbox = commit:ab30a81 +github.com/go-sql-driver/mysql = commit:d512f20 github.com/go-xorm/core = commit:3e10003353 -github.com/go-xorm/xorm = commit:803f6db50c +github.com/go-xorm/xorm = commit:c643188 github.com/gogits/chardet = commit:2404f77725 -github.com/gogits/go-gogs-client = commit:519eee0af0 -github.com/issue9/identicon = -github.com/lib/pq = commit:b269bd035a -github.com/go-macaron/binding = -github.com/go-macaron/cache = -github.com/go-macaron/captcha = -github.com/go-macaron/csrf = -github.com/go-macaron/gzip = -github.com/go-macaron/i18n = -github.com/go-macaron/session = -github.com/go-macaron/toolbox = -github.com/klauspost/compress = -github.com/klauspost/crc32 = -github.com/klauspost/cpuid = -github.com/mattn/go-sqlite3 = commit:b808f01f66 -github.com/mcuadros/go-version = commit:d52711f8d6 -github.com/microcosm-cc/bluemonday = commit:85ba47ef2c -github.com/mssola/user_agent = commit:a163d6a569 +github.com/gogits/go-gogs-client = commit:7c02c95 +github.com/issue9/identicon = commit:5a61672 +github.com/klauspost/compress = commit:bbfa9dc +github.com/klauspost/cpuid = commit:8d9fe96 +github.com/klauspost/crc32 = commit:3e5c38b +github.com/lib/pq = commit:83c4f41 +github.com/mattn/go-sqlite3 = commit:5651a9d +github.com/mcuadros/go-version = commit:d52711f +github.com/microcosm-cc/bluemonday = commit:4ac6f27 github.com/msteinert/pam = commit:6534f23b39 github.com/nfnt/resize = commit:dc93e1b98c -github.com/russross/blackfriday = commit:8cec3a854e -github.com/shurcooL/sanitized_anchor_name = commit:244f5ac324 +github.com/russross/blackfriday = commit:300106c +github.com/shurcooL/sanitized_anchor_name = commit:10ef21a +github.com/Unknwon/cae = commit:7f5e046 +github.com/Unknwon/com = commit:28b053d +github.com/Unknwon/i18n = commit:7457d88830 +github.com/Unknwon/paginater = commit:7748a72 golang.org/x/net = -golang.org/x/text = -gopkg.in/gomail.v2 = commit:b1e55520bf -gopkg.in/macaron.v1 = -gopkg.in/ini.v1 = commit:e8c222fea7 +golang.org/x/text = +golang.org/x/crypto = +gopkg.in/gomail.v2 = commit:df6fc79 +gopkg.in/ini.v1 = commit:2e44421 +gopkg.in/macaron.v1 = commit:1c6dd87 gopkg.in/redis.v2 = commit:e617904962 [res] diff --git a/.travis.yml b/.travis.yml index 864a80c4..837d9a1c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,13 +4,15 @@ go: - 1.3 - 1.4 - 1.5 - - tip before_install: - sudo apt-get update -qq - sudo apt-get install -y libpam-dev - go get github.com/msteinert/pam +install: + - go get -t -v ./... + script: go build -v -tags "pam" notifications: @@ -19,4 +19,4 @@ RUN ./docker/build.sh VOLUME ["/data"] EXPOSE 22 3000 ENTRYPOINT ["docker/start.sh"] -CMD ["/usr/bin/s6-svscan", "/app/gogs/docker/s6/"] +CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"] diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..ee495078 --- /dev/null +++ b/Makefile @@ -0,0 +1,35 @@ +LDFLAGS += -X "github.com/gogits/gogs/modules/setting.BuildTime=$(shell date -u '+%Y-%m-%d %I:%M:%S %Z')" +LDFLAGS += -X "github.com/gogits/gogs/modules/setting.BuildGitHash=$(shell git rev-parse HEAD)" + +TAGS = "" + +RELEASE_ROOT = "release" +RELEASE_GOGS = "release/gogs" +NOW = $(shell date -u '+%Y%m%d%I%M%S') + +.PHONY: build pack release bindata clean + +build: + go install -ldflags '$(LDFLAGS)' -tags '$(TAGS)' + go build -ldflags '$(LDFLAGS)' -tags '$(TAGS)' + +govet: + go tool vet -composites=false -methods=false -structtags=false . + +pack: + rm -rf $(RELEASE_GOGS) + mkdir -p $(RELEASE_GOGS) + cp -r gogs LICENSE README.md README_ZH.md templates public scripts $(RELEASE_GOGS) + rm -rf $(RELEASE_GOGS)/public/config.codekit $(RELEASE_GOGS)/public/less + cd $(RELEASE_ROOT) && zip -r gogs.$(NOW).zip "gogs" + +release: build pack + +bindata: + go-bindata -o=modules/bindata/bindata.go -ignore="\\.DS_Store|README.md" -pkg=bindata conf/... + +clean: + go clean -i ./... + +clean-mac: clean + find . -name ".DS_Store" -print0 | xargs -0 rm
\ No newline at end of file @@ -5,23 +5,23 @@ Gogs - Go Git Service [ -##### Current version: 0.6.18 Beta +##### Current version: 0.7.20 Beta <table> <tr> - <td width="33%"><img src="http://gogs.io/img/screenshots/1.png"></td> - <td width="33%"><img src="http://gogs.io/img/screenshots/2.png"></td> - <td width="33%"><img src="http://gogs.io/img/screenshots/3.png"></td> + <td width="33%"><img src="https://gogs.io/img/screenshots/1.png"></td> + <td width="33%"><img src="https://gogs.io/img/screenshots/2.png"></td> + <td width="33%"><img src="https://gogs.io/img/screenshots/3.png"></td> </tr> <tr> - <td><img src="http://gogs.io/img/screenshots/4.png"></td> - <td><img src="http://gogs.io/img/screenshots/5.png"></td> - <td><img src="http://gogs.io/img/screenshots/6.png"></td> + <td><img src="https://gogs.io/img/screenshots/4.png"></td> + <td><img src="https://gogs.io/img/screenshots/5.png"></td> + <td><img src="https://gogs.io/img/screenshots/6.png"></td> </tr> <tr> - <td><img src="http://gogs.io/img/screenshots/7.png"></td> - <td><img src="http://gogs.io/img/screenshots/8.png"></td> - <td><img src="http://gogs.io/img/screenshots/9.png"></td> + <td><img src="https://gogs.io/img/screenshots/7.png"></td> + <td><img src="https://gogs.io/img/screenshots/8.png"></td> + <td><img src="https://gogs.io/img/screenshots/9.png"></td> </tr> </table> @@ -29,20 +29,21 @@ Gogs - Go Git Service [ has been reset in **Jan 28, 2015** and will reset multiple times after. Please do **NOT** put your important data on the site. - The demo site [try.gogs.io](https://try.gogs.io) is running under `develop` branch. -- :exclamation::exclamation::exclamation:<span style="color: red">You **MUST** read [CONTRIBUTING.md](CONTRIBUTING.md) before you start filing an issue or making a Pull Request, and **MUST** discuss with us on [Gitter](https://gitter.im/gogits/gogs) for UI changes and feature Pull Requests, otherwise it's high possibilities that we are not going to merge it.</span>:exclamation::exclamation::exclamation: +- :bangbang:<span style="color: red">You **MUST** read [CONTRIBUTING.md](CONTRIBUTING.md) before you start filing an issue or making a Pull Request, and **MUST** discuss with us on [Gitter](https://gitter.im/gogits/gogs) for UI changes, otherwise it's high possibilities that we are not going to merge it.</span>:bangbang: +- Please [start discussion](http://forum.gogs.io/category/2/general-discussion) or [ask a question](http://forum.gogs.io/category/4/getting-help) on [the forum](http://forum.gogs.io/). GitHub issue tracker only keeps **bugs** and **feature requests**, all other topics will be closed without reason. - If you think there are vulnerabilities in the project, please talk privately to **u@gogs.io**. Thanks! +- If you're interested in using APIs, we have experimental support with [documentation](https://github.com/gogits/go-gogs-client/wiki). +- If your team/company is using Gogs and would like to put your logo on [our website](http://gogs.io), contact us by any means. -#### Other language version - -- [简体中文](README_ZH.md) +[简体中文](README_ZH.md) ## Purpose -The goal of this project is to make the easiest, fastest, and most painless way of setting up a self-hosted Git service. With Go, this can be done with an independent binary distribution across **ALL platforms** that Go supports, including Linux, Mac OS X, and Windows. +The goal of this project is to make the easiest, fastest, and most painless way of setting up a self-hosted Git service. With Go, this can be done with an independent binary distribution across **ALL platforms** that Go supports, including Linux, Mac OS X, Windows and ARM. ## Overview -- Please see the [Documentation](http://gogs.io/docs/intro) for project design, known issues, and change log. +- Please see the [Documentation](http://gogs.io/docs/intro) for common usages and change log. - See the [Trello Board](https://trello.com/b/uxAoeLUl/gogs-go-git-service) to follow the develop team. - Want to try it before doing anything else? Do it [online](https://try.gogs.io/gogs/gogs) or go down to the **Installation -> Install from binary** section! - Having trouble? Get help with [Troubleshooting](http://gogs.io/docs/intro/troubleshooting.html). @@ -63,13 +64,13 @@ The goal of this project is to make the easiest, fastest, and most painless way - Mail service - Administration panel - CI integration: [Drone](https://github.com/drone/drone) -- Supports MySQL, PostgreSQL, SQLite3 and [TiDB](https://github.com/pingcap/tidb) +- Supports MySQL, PostgreSQL, SQLite3 and [TiDB](https://github.com/pingcap/tidb) (experimental) - Multi-language support ([14 languages](https://crowdin.com/project/gogs)) ## System Requirements - A cheap Raspberry Pi is powerful enough for basic functionality. -- At least 2 CPU cores and 1GB RAM would be the baseline for teamwork. +- 2 CPU cores and 1GB RAM would be the baseline for teamwork. ## Browser Support @@ -92,6 +93,7 @@ There are 5 ways to install Gogs: - [How To Set Up Gogs on Ubuntu 14.04](https://www.digitalocean.com/community/tutorials/how-to-set-up-gogs-on-ubuntu-14-04) - [Run your own GitHub-like service with the help of Docker](http://blog.hypriot.com/post/run-your-own-github-like-service-with-docker/) +- [使用 Gogs 搭建自己的 Git 服务器](https://mynook.info/blog/post/host-your-own-git-server-using-gogs) (Chinese) - [阿里云上 Ubuntu 14.04 64 位安装 Gogs](http://my.oschina.net/luyao/blog/375654) (Chinese) - [Installing Gogs on FreeBSD](https://www.codejam.info/2015/03/installing-gogs-on-freebsd.html) - [Gogs on Raspberry Pi](http://blog.meinside.pe.kr/Gogs-on-Raspberry-Pi/) @@ -120,6 +122,7 @@ There are 5 ways to install Gogs: - System Monitor Status is inspired by [GoBlog](https://github.com/fuxiaohei/goblog). - Thanks [lavachen](http://www.lavachen.cn/) and [Rocker](http://weibo.com/rocker1989) for designing Logo. - Thanks [Crowdin](https://crowdin.com/project/gogs) for providing open source translation plan. +- Thanks [DigitalOcean](https://www.digitalocean.com) for hosting home and demo sites. ## Contributors diff --git a/README_ZH.md b/README_ZH.md index b6f6b18f..a529b3ab 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -1,15 +1,15 @@ Gogs - Go Git Service [](https://travis-ci.org/gogits/gogs) ===================== -Gogs (Go Git Service) 是一款可轻易搭建的自助 Git 服务。 +Gogs (Go Git Service) 是一款极易搭建的自助 Git 服务。 ## 开发目的 -Gogs 的目标是打造一个最简单、最快速和最轻松的方式搭建自助 Git 服务。使用 Go 语言开发使得 Gogs 能够通过独立的二进制分发,并且支持 Go 语言支持的 **所有平台**,包括 Linux、Mac OS X 以及 Windows。 +Gogs 的目标是打造一个最简单、最快速和最轻松的方式搭建自助 Git 服务。使用 Go 语言开发使得 Gogs 能够通过独立的二进制分发,并且支持 Go 语言支持的 **所有平台**,包括 Linux、Mac OS X、Windows 以及 ARM 平台。 ## 项目概览 -- 有关项目设计、已知问题和变更日志,请通过 [使用手册](http://gogs.io/docs/intro/) 查看。 +- 有关基本用法和变更日志,请通过 [使用手册](http://gogs.io/docs/intro/) 查看。 - 您可以到 [Trello Board](https://trello.com/b/uxAoeLUl/gogs-go-git-service) 跟随开发团队的脚步。 - 想要先睹为快?通过 [在线体验](https://try.gogs.io/gogs/gogs) 或查看 **安装部署 -> 二进制安装** 小节。 - 使用过程中遇到问题?尝试从 [故障排查](http://gogs.io/docs/intro/troubleshooting.html) 页面获取帮助。 @@ -30,7 +30,7 @@ Gogs 的目标是打造一个最简单、最快速和最轻松的方式搭建自 - 支持邮件服务 - 支持后台管理面板 - 支持 CI 集成:[Drone](https://github.com/drone/drone) -- 支持 MySQL、PostgreSQL、SQLite3 和 [TiDB](https://github.com/pingcap/tidb) 数据库 +- 支持 MySQL、PostgreSQL、SQLite3 和 [TiDB](https://github.com/pingcap/tidb)(实验性支持) 数据库 - 支持多语言本地化([14 种语言]([more](https://crowdin.com/project/gogs))) ## 系统要求 @@ -57,6 +57,7 @@ Gogs 的目标是打造一个最简单、最快速和最轻松的方式搭建自 ### 使用教程 +- [使用 Gogs 搭建自己的 Git 服务器](https://mynook.info/blog/post/host-your-own-git-server-using-gogs) - [阿里云上 Ubuntu 14.04 64 位安装 Gogs](http://my.oschina.net/luyao/blog/375654) ### 云端部署 @@ -79,6 +80,7 @@ Gogs 的目标是打造一个最简单、最快速和最轻松的方式搭建自 - 基于 [GoBlog](https://github.com/fuxiaohei/goblog) 修改的系统监视状态。 - 感谢 [lavachen](http://www.lavachen.cn/) 和 [Rocker](http://weibo.com/rocker1989) 设计的 Logo。 - 感谢 [Crowdin](https://crowdin.com/project/gogs) 提供免费的开源项目本地化支持。 +- 感谢 [DigitalOcean](https://www.digitalocean.com) 提供主站和体验站点的服务器赞助。 ## 贡献成员 diff --git a/cmd/cert.go b/cmd/cert.go index 5b182da9..7b68f330 100644 --- a/cmd/cert.go +++ b/cmd/cert.go @@ -32,12 +32,12 @@ var CmdCert = cli.Command{ Outputs to 'cert.pem' and 'key.pem' and will overwrite existing files.`, Action: runCert, Flags: []cli.Flag{ - cli.StringFlag{"host", "", "Comma-separated hostnames and IPs to generate a certificate for", ""}, - cli.StringFlag{"ecdsa-curve", "", "ECDSA curve to use to generate a key. Valid values are P224, P256, P384, P521", ""}, - cli.IntFlag{"rsa-bits", 2048, "Size of RSA key to generate. Ignored if --ecdsa-curve is set", ""}, - cli.StringFlag{"start-date", "", "Creation date formatted as Jan 1 15:04:05 2011", ""}, - cli.DurationFlag{"duration", 365 * 24 * time.Hour, "Duration that certificate is valid for", ""}, - cli.BoolFlag{"ca", "whether this cert should be its own Certificate Authority", ""}, + stringFlag("host", "", "Comma-separated hostnames and IPs to generate a certificate for"), + stringFlag("ecdsa-curve", "", "ECDSA curve to use to generate a key. Valid values are P224, P256, P384, P521"), + intFlag("rsa-bits", 2048, "Size of RSA key to generate. Ignored if --ecdsa-curve is set"), + stringFlag("start-date", "", "Creation date formatted as Jan 1 15:04:05 2011"), + durationFlag("duration", 365*24*time.Hour, "Duration that certificate is valid for"), + boolFlag("ca", "whether this cert should be its own Certificate Authority"), }, } diff --git a/cmd/cmd.go b/cmd/cmd.go new file mode 100644 index 00000000..8df02d5c --- /dev/null +++ b/cmd/cmd.go @@ -0,0 +1,42 @@ +// Copyright 2015 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package cmd + +import ( + "time" + + "github.com/codegangsta/cli" +) + +func stringFlag(name, value, usage string) cli.StringFlag { + return cli.StringFlag{ + Name: name, + Value: value, + Usage: usage, + } +} + +func boolFlag(name, usage string) cli.BoolFlag { + return cli.BoolFlag{ + Name: name, + Usage: usage, + } +} + +func intFlag(name string, value int, usage string) cli.IntFlag { + return cli.IntFlag{ + Name: name, + Value: value, + Usage: usage, + } +} + +func durationFlag(name string, value time.Duration, usage string) cli.DurationFlag { + return cli.DurationFlag{ + Name: name, + Value: value, + Usage: usage, + } +} diff --git a/cmd/dump.go b/cmd/dump.go index 44b180c3..0bf385d0 100644 --- a/cmd/dump.go +++ b/cmd/dump.go @@ -25,8 +25,8 @@ var CmdDump = cli.Command{ It can be used for backup and capture Gogs server image to send to maintainer`, Action: runDump, Flags: []cli.Flag{ - cli.StringFlag{"config, c", "custom/conf/app.ini", "Custom configuration file path", ""}, - cli.BoolFlag{"verbose, v", "show process details", ""}, + stringFlag("config, c", "custom/conf/app.ini", "Custom configuration file path"), + boolFlag("verbose, v", "show process details"), }, } diff --git a/cmd/serve.go b/cmd/serve.go index b99ab8fc..b6ab9bb8 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -33,7 +33,7 @@ var CmdServ = cli.Command{ Description: `Serv provide access auth for repositories`, Action: runServ, Flags: []cli.Flag{ - cli.StringFlag{"config, c", "custom/conf/app.ini", "Custom configuration file path", ""}, + stringFlag("config, c", "custom/conf/app.ini", "Custom configuration file path"), }, } @@ -74,7 +74,51 @@ var ( func fail(userMessage, logMessage string, args ...interface{}) { fmt.Fprintln(os.Stderr, "Gogs:", userMessage) - log.GitLogger.Fatal(3, logMessage, args...) + + if len(logMessage) > 0 { + log.GitLogger.Fatal(3, logMessage, args...) + return + } + + log.GitLogger.Close() + os.Exit(1) +} + +func handleUpdateTask(uuid string, user *models.User, repoUserName, repoName string) { + task, err := models.GetUpdateTaskByUUID(uuid) + if err != nil { + if models.IsErrUpdateTaskNotExist(err) { + log.GitLogger.Trace("No update task is presented: %s", uuid) + return + } + log.GitLogger.Fatal(2, "GetUpdateTaskByUUID: %v", err) + } + + if err = models.Update(task.RefName, task.OldCommitID, task.NewCommitID, + user.Name, repoUserName, repoName, user.Id); err != nil { + log.GitLogger.Error(2, "Update: %v", err) + } + + if err = models.DeleteUpdateTaskByUUID(uuid); err != nil { + log.GitLogger.Fatal(2, "DeleteUpdateTaskByUUID: %v", err) + } + + // Ask for running deliver hook and test pull request tasks. + reqURL := setting.AppUrl + repoUserName + "/" + repoName + "/tasks/trigger?branch=" + + strings.TrimPrefix(task.RefName, "refs/heads/") + log.GitLogger.Trace("Trigger task: %s", reqURL) + + resp, err := httplib.Head(reqURL).SetTLSClientConfig(&tls.Config{ + InsecureSkipVerify: true, + }).Response() + if err == nil { + resp.Body.Close() + if resp.StatusCode/100 != 2 { + log.GitLogger.Error(2, "Fail to trigger task: not 2xx response code") + } + } else { + log.GitLogger.Error(2, "Fail to trigger task: %v", err) + } } func runServ(c *cli.Context) { @@ -95,13 +139,13 @@ func runServ(c *cli.Context) { } verb, args := parseCmd(cmd) - repoPath := strings.Trim(args, "'") + repoPath := strings.ToLower(strings.Trim(args, "'")) rr := strings.SplitN(repoPath, "/", 2) if len(rr) != 2 { fail("Invalid repository path", "Invalid repository path: %v", args) } - repoUserName := rr[0] - repoName := strings.TrimSuffix(rr[1], ".git") + repoUserName := strings.ToLower(rr[0]) + repoName := strings.ToLower(strings.TrimSuffix(rr[1], ".git")) repoUser, err := models.GetUserByName(repoUserName) if err != nil { @@ -124,6 +168,11 @@ func runServ(c *cli.Context) { fail("Unknown git command", "Unknown git command %s", verb) } + // Prohibit push to mirror repositories. + if requestedMode > models.ACCESS_MODE_READ && repo.IsMirror { + fail("mirror repository is read-only", "") + } + // Allow anonymous clone for public repositories. var ( keyID int64 @@ -132,12 +181,12 @@ func runServ(c *cli.Context) { if requestedMode == models.ACCESS_MODE_WRITE || repo.IsPrivate { keys := strings.Split(c.Args()[0], "-") if len(keys) != 2 { - fail("Key ID format error", "Invalid key ID: %s", c.Args()[0]) + fail("Key ID format error", "Invalid key argument: %s", c.Args()[0]) } key, err := models.GetPublicKeyByID(com.StrTo(keys[1]).MustInt64()) if err != nil { - fail("Key ID format error", "Invalid key ID[%s]: %v", c.Args()[0], err) + fail("Invalid key ID", "Invalid key ID[%s]: %v", c.Args()[0], err) } keyID = key.ID @@ -162,7 +211,7 @@ func runServ(c *cli.Context) { fail("Internal error", "UpdateDeployKey: %v", err) } } else { - user, err = models.GetUserByKeyId(key.ID) + user, err = models.GetUserByKeyID(key.ID) if err != nil { fail("internal error", "Failed to get user by key ID(%d): %v", keyID, err) } @@ -201,36 +250,7 @@ func runServ(c *cli.Context) { } if requestedMode == models.ACCESS_MODE_WRITE { - task, err := models.GetUpdateTaskByUUID(uuid) - if err != nil { - log.GitLogger.Fatal(2, "GetUpdateTaskByUUID: %v", err) - } - - if err = models.Update(task.RefName, task.OldCommitID, task.NewCommitID, - user.Name, repoUserName, repoName, user.Id); err != nil { - log.GitLogger.Error(2, "Update: %v", err) - } - - if err = models.DeleteUpdateTaskByUUID(uuid); err != nil { - log.GitLogger.Fatal(2, "DeleteUpdateTaskByUUID: %v", err) - } - - // Ask for running deliver hook and test pull request tasks. - reqURL := setting.AppUrl + repoUserName + "/" + repoName + "/tasks/trigger?branch=" + - strings.TrimPrefix(task.RefName, "refs/heads/") - log.GitLogger.Trace("Trigger task: %s", reqURL) - - resp, err := httplib.Head(reqURL).SetTLSClientConfig(&tls.Config{ - InsecureSkipVerify: true, - }).Response() - if err == nil { - resp.Body.Close() - if resp.StatusCode/100 != 2 { - log.GitLogger.Error(2, "Fail to trigger task: not 2xx response code") - } - } else { - log.GitLogger.Error(2, "Fail to trigger task: %v", err) - } + handleUpdateTask(uuid, user, repoUserName, repoName) } // Update user key activity. diff --git a/cmd/update.go b/cmd/update.go index 64093b81..4cd62a7f 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -20,7 +20,7 @@ var CmdUpdate = cli.Command{ Description: `Update get pushed info and insert into database`, Action: runUpdate, Flags: []cli.Flag{ - cli.StringFlag{"config, c", "custom/conf/app.ini", "Custom configuration file path", ""}, + stringFlag("config, c", "custom/conf/app.ini", "Custom configuration file path"), }, } @@ -42,10 +42,8 @@ func runUpdate(c *cli.Context) { log.GitLogger.Fatal(2, "refName is empty, shouldn't use") } - uuid := os.Getenv("uuid") - task := models.UpdateTask{ - UUID: uuid, + UUID: os.Getenv("uuid"), RefName: args[0], OldCommitID: args[1], NewCommitID: args[2], @@ -7,7 +7,7 @@ package cmd import ( "crypto/tls" "fmt" - "html/template" + gotmpl "html/template" "io/ioutil" "net/http" "net/http/fcgi" @@ -35,11 +35,11 @@ import ( "github.com/gogits/gogs/modules/auth" "github.com/gogits/gogs/modules/auth/apiv1" "github.com/gogits/gogs/modules/avatar" - "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/bindata" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/middleware" "github.com/gogits/gogs/modules/setting" + "github.com/gogits/gogs/modules/template" "github.com/gogits/gogs/routers" "github.com/gogits/gogs/routers/admin" "github.com/gogits/gogs/routers/api/v1" @@ -56,8 +56,8 @@ var CmdWeb = cli.Command{ and it takes care of all the other things for you`, Action: runWeb, Flags: []cli.Flag{ - cli.StringFlag{"port, p", "3000", "Temporary port number to prevent conflict", ""}, - cli.StringFlag{"config, c", "custom/conf/app.ini", "Custom configuration file path", ""}, + stringFlag("port, p", "3000", "Temporary port number to prevent conflict"), + stringFlag("config, c", "custom/conf/app.ini", "Custom configuration file path"), }, } @@ -80,13 +80,14 @@ func checkVersion() { // Check dependency version. checkers := []VerChecker{ - {"github.com/go-xorm/xorm", func() string { return xorm.Version }, "0.4.3.0806"}, + {"github.com/go-xorm/xorm", func() string { return xorm.Version }, "0.4.4.1029"}, {"github.com/Unknwon/macaron", macaron.Version, "0.5.4"}, - {"github.com/macaron-contrib/binding", binding.Version, "0.1.0"}, - {"github.com/macaron-contrib/cache", cache.Version, "0.1.2"}, - {"github.com/macaron-contrib/csrf", csrf.Version, "0.0.3"}, - {"github.com/macaron-contrib/i18n", i18n.Version, "0.0.7"}, - {"github.com/macaron-contrib/session", session.Version, "0.1.6"}, + {"github.com/go-macaron/binding", binding.Version, "0.1.0"}, + {"github.com/go-macaron/cache", cache.Version, "0.1.2"}, + {"github.com/go-macaron/csrf", csrf.Version, "0.0.3"}, + {"github.com/go-macaron/i18n", i18n.Version, "0.0.7"}, + {"github.com/go-macaron/session", session.Version, "0.1.6"}, + {"github.com/go-macaron/toolbox", toolbox.Version, "0.1.0"}, {"gopkg.in/ini.v1", ini.Version, "1.3.4"}, } for _, c := range checkers { @@ -124,7 +125,7 @@ func newMacaron() *macaron.Macaron { )) m.Use(macaron.Renderer(macaron.RenderOptions{ Directory: path.Join(setting.StaticRootPath, "templates"), - Funcs: []template.FuncMap{base.TemplateFuncs}, + Funcs: []gotmpl.FuncMap{template.Funcs}, IndentJSON: macaron.Env != macaron.PROD, })) @@ -237,6 +238,13 @@ func runWeb(ctx *cli.Context) { m.Patch("/hooks/:id:int", bind(api.EditHookOption{}), v1.EditRepoHook) m.Get("/raw/*", middleware.RepoRef(), v1.GetRepoRawFile) m.Get("/archive/*", v1.GetRepoArchive) + + m.Group("/keys", func() { + m.Combo("").Get(v1.ListRepoDeployKeys). + Post(bind(api.CreateDeployKeyOption{}), v1.CreateRepoDeployKey) + m.Combo("/:id").Get(v1.GetRepoDeployKey). + Delete(v1.DeleteRepoDeploykey) + }) }, middleware.ApiRepoAssignment()) }, middleware.ApiReqToken()) @@ -385,8 +393,8 @@ func runWeb(ctx *cli.Context) { m.Get("/teams", org.Teams) m.Get("/teams/:team", org.TeamMembers) m.Get("/teams/:team/repositories", org.TeamRepositories) - m.Get("/teams/:team/action/:action", org.TeamsAction) - m.Get("/teams/:team/action/repo/:action", org.TeamsRepoAction) + m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction) + m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction) }, middleware.OrgAssignment(true, true)) m.Group("/:org", func() { @@ -462,8 +470,10 @@ func runWeb(ctx *cli.Context) { m.Post("/delete", repo.DeleteDeployKey) }) + }, func(ctx *middleware.Context) { + ctx.Data["PageIsSettings"] = true }) - }, reqSignIn, middleware.RepoAssignment(true), reqRepoAdmin) + }, reqSignIn, middleware.RepoAssignment(true), reqRepoAdmin, middleware.RepoRef()) m.Group("/:username/:reponame", func() { m.Get("/action/:action", repo.Action) @@ -504,6 +514,7 @@ func runWeb(ctx *cli.Context) { m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost) m.Get("/edit/:tagname", repo.EditRelease) m.Post("/edit/:tagname", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost) + m.Post("/delete", repo.DeleteRelease) }, reqRepoAdmin, middleware.RepoRef()) m.Combo("/compare/*").Get(repo.CompareAndPullRequest). @@ -511,11 +522,17 @@ func runWeb(ctx *cli.Context) { }, reqSignIn, middleware.RepoAssignment(true)) m.Group("/:username/:reponame", func() { - m.Get("/releases", middleware.RepoRef(), repo.Releases) - m.Get("/^:type(issues|pulls)$", repo.RetrieveLabels, repo.Issues) + m.Group("", func() { + m.Get("/releases", repo.Releases) + m.Get("/^:type(issues|pulls)$", repo.RetrieveLabels, repo.Issues) + m.Get("/labels/", repo.RetrieveLabels, repo.Labels) + m.Get("/milestones", repo.Milestones) + }, middleware.RepoRef(), + func(ctx *middleware.Context) { + ctx.Data["PageIsList"] = true + }) m.Get("/^:type(issues|pulls)$/:index", repo.ViewIssue) - m.Get("/labels/", repo.RetrieveLabels, repo.Labels) - m.Get("/milestones", repo.Milestones) + m.Get("/branches", repo.Branches) m.Get("/archive/*", repo.Download) diff --git a/conf/app.ini b/conf/app.ini index 2a1a568d..d9d29c9e 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -48,6 +48,8 @@ HTTP_ADDR = HTTP_PORT = 3000 ; Disable SSH feature when not available DISABLE_SSH = false +; Whether use builtin SSH server or not. +START_SSH_SERVER = false SSH_PORT = 22 ; Disable CDN even in "prod" mode OFFLINE_MODE = false @@ -116,6 +118,16 @@ DISABLE_MINIMUM_KEY_SIZE_CHECK = false ; Enable captcha validation for registration ENABLE_CAPTCHA = true +; used to filter keys which are too short +[service.minimum_key_sizes] +ED25519 = 256 +ECDSA = 256 +NTRU = 1087 +MCE = 1702 +McE = 1702 +RSA = 1024 +DSA = 1024 + [webhook] ; Hook task queue length QUEUE_LENGTH = 1000 @@ -322,3 +334,5 @@ it-IT = it [other] SHOW_FOOTER_BRANDING = false +; Show version information about gogs and go in the footer +SHOW_FOOTER_VERSION = true diff --git a/conf/locale/TRANSLATORS b/conf/locale/TRANSLATORS index 7c6eb0ba..c7d7f9ed 100644 --- a/conf/locale/TRANSLATORS +++ b/conf/locale/TRANSLATORS @@ -1,20 +1,29 @@ # This file lists all PUBLIC individuals having contributed content to the translation. -# Order of name is meaningless. +# Entries are in alphabetical order. -Akihiro YAGASAKI <yaggytter@momiage.com> -Alexander Steinhöfer <kontakt@lx-s.de> -Alexandre Magno <alexandre.mbm@gmail.com> -Barış Arda Yılmaz <ardayilmazgamer@gmail.com> -Christoph Kisfeld <christoph.kisfeld@gmail.com> -Daniel Speichert <daniel@speichert.pl> -Gregor Santner <gdev@live.de> -Huimin Wang <wanghm2009@hotmail.co.jp> -ilko <email> -Thomas Fanninger <gogs.thomas@fanninger.at> -Łukasz Jan Niemier <lukasz@niemier.pl> -Lafriks <lafriks@gmail.com> -Luc Stepniewski <luc@stepniewski.fr> -Miguel de la Cruz <miguel@mcrx.me> -Marc Schiller <marc@schiller.im> -Morten Sørensen <klim8d@gmail.com> -Natan Albuquerque <natanalbuquerque5@gmail.com>
\ No newline at end of file +Akihiro YAGASAKI <yaggytter AT momiage DOT com> +Alexander Steinhöfer <kontakt AT lx-s DOT de> +Alexandre Magno <alexandre DOT mbm AT gmail DOT com> +Andrey Nering <andrey AT nering DOT com DOT br> +Arthur Aslanyan <arthur DOT e DOT aslanyan AT gmail DOT com> +Barış Arda Yılmaz <ardayilmazgamer AT gmail DOT com> +Christoph Kisfeld <christoph DOT kisfeld AT gmail DOT com> +Daniel Speichert <daniel AT speichert DOT pl> +Dmitriy Nogay <me AT catwhocode DOT ga> +Gregor Santner <gdev AT live DOT de> +Hamid Feizabadi <hamidfzm AT gmail DOT com> +Huimin Wang <wanghm2009 AT hotmail DOT co DOT jp> +ilko +Lafriks <lafriks AT gmail DOT com> +Lauri Ojansivu <x AT xet7 DOT org> +Luc Stepniewski <luc AT stepniewski DOT fr> +Marc Schiller <marc AT schiller DOT im> +Miguel de la Cruz <miguel AT mcrx DOT me> +Morten Sørensen <klim8d AT gmail DOT com> +Natan Albuquerque <natanalbuquerque5 AT gmail DOT com> +Odilon Junior <odilon DOT junior93 AT gmail DOT com> +Thomas Fanninger <gogs DOT thomas AT fanninger DOT at> +Tilmann Bach <tilmann AT outlook DOT com> +Vladimir Vissoultchev <wqweto AT gmail DOT com> +YJSoft <yjsoft AT yjsoft DOT pe DOT kr> +Łukasz Jan Niemier <lukasz AT niemier DOT pl>
\ No newline at end of file diff --git a/conf/locale/locale_bg-BG.ini b/conf/locale/locale_bg-BG.ini index 1cdc4734..aea11c21 100755 --- a/conf/locale/locale_bg-BG.ini +++ b/conf/locale/locale_bg-BG.ini @@ -1,992 +1,1009 @@ -app_desc=Безпроблемен собствен Git сървър
-
-home=Начало
-dashboard=Табло
-explore=Разгледай
-help=Помощ
-sign_in=Влизане
-sign_out=Излизане
-sign_up=Регистрирайте се
-register=Регистриране
-website=Уебсайт
-version=Версия
-page=Страница
-template=Шаблон
-language=Език
-create_new=Създаване...
-user_profile_and_more=Потребителски профил и пр.
-signed_in_as=Вписан като
-
-username=Потребител
-email=Ел. поща
-password=Парола
-re_type=Въведете повторно
-captcha=Captcha
-
-repository=Хранилище
-organization=Организация
-mirror=Огледало
-new_repo=Ново хранилище
-new_migrate=Нова миграция
-new_fork=Ново разклонено хранилище
-new_org=Нова организация
-manage_org=Управление на организации
-admin_panel=Административен панел
-account_settings=Настройки на профила
-settings=Настройки
-your_profile=Вашият профил
-your_settings=Вашите настройки
-
-news_feed=Поток новини
-pull_requests=Заявки за сливане
-issues=Проблеми
-
-cancel=Отказ
-
-[search]
-search=Търсене...
-repository=Хранилище
-user=Потребител
-issue=Проблем
-code=Код
-
-[install]
-install=Инсталация
-title=Стъпки за инсталиране при първоначално стартиране
-docker_helper=Ако Gogs е стартиран в Docker контейнер, моля прочетете <a target="_blank" href="%s">нашите указания</a> внимателно, преди да правите промени по настройките на тази страница!
-requite_db_desc=Gogs изисква MySQL, PostgreSQL, SQLite3 или TiDB.
-db_title=Настройки на базата данни
-db_type=Тип на база данни
-host=Сървър
-user=Потребител
-password=Парола
-db_name=Име на база данни
-db_helper=Моля, използвайте INNODB engine с utf8_general_ci кодиране на знаци за MySQL.
-ssl_mode=Режим SSL
-path=Път
-sqlite_helper=Файл на SQLite3 или TiDB база данни.
-err_empty_db_path=Пътят до SQLite3 или TiDB база данни не може да е празен.
-err_invalid_tidb_name=TiDB не позволява "." и "-" в името на базата данни.
-no_admin_and_disable_registration=Невъзможно изключване на регистрациите без предварително да е създаден поне един административен профил.
-err_empty_admin_password=Паролата на администратор не може да е празна.
-
-general_title=Общи настройки на приложението
-app_name=Име на приложението
-app_name_helper=Постави името на твоята организация тук - голямо е крещящо!
-repo_path=Основен път към хранилищата
-repo_path_helper=Всички отдалечени хранилища на Git ще бъдат съхранени в тази директория.
-run_user=Потребителски контекст
-run_user_helper=Този потребител трябва да има достъп до основния път към хранилищата и права да стартира Gogs.
-domain=Домейн
-domain_helper=Тази настройка влияе на URL адреса за клониране чрез SSH.
-ssh_port=SSH порт
-ssh_port_helper=Номер на порт на SSH сървъра. Оставете празно за да изключите достъп през SSH.
-http_port=HTTP порт
-http_port_helper=Порт, на който приложението ще слуша.
-app_url=URL адрес на приложението
-app_url_helper=Този настройка променя HTTP/HTTPS адреса за клониране, а понякога и адреса на ел. поща.
-
-optional_title=Опционални настройки
-email_title=Настройки на пощенска услуга
-smtp_host=SMTP сървър
-smtp_from=Подател
-smtp_from_helper=Адрес на подател на поща по RFC 5322. Може да бъде обикновен адрес на ел. поща или във формат "Име" <email@example.com>.
-mailer_user=Ел. поща за изпращане
-mailer_password=Парола за изпращане
-register_confirm=Включи потвърждението на регистрациите
-mail_notify=Включи уведомления по пощата
-server_service_title=Настройки на сървъра и други услуги
-offline_mode=Включи офлайн режима
-offline_mode_popup=Изключи CDN дори в продукционен режим, всички ресурсни файлове ще бъдат доставяни локално.
-disable_gravatar=Изключи връзка с Gravatar
-disable_gravatar_popup=Изключва Gravatar и външни източници, така че всички аватари трябва да са или качени от потребителите или да се ползват аватари по подразбиране.
-disable_registration=Изключи саморегистрацията
-disable_registration_popup=Изключи потребителската саморегистрация, само администратор може да създава профили.
-enable_captcha=Включи Captcha
-enable_captcha_popup=Изисква валидиране с captcha при саморегистрация на потребители.
-require_sign_in_view=Включи задължително вписване за преглед на страници
-require_sign_in_view_popup=Само вписани потребители могат да виждат страниците, анонимните посетители виждат само страниците за регистрация и вход.
-admin_setting_desc=Няма нужда от създаване на администраторски профил в момента, защото потребителят с първо ID в базата автоматично получава администраторски достъп.
-admin_title=Настройки на профил на администратора
-admin_name=Потребителско име
-admin_password=Парола
-confirm_password=Потвърждение на паролата
-admin_email=Ел. поща
-install_gogs=Инсталирай Gogs
-test_git_failed=Неуспешно тестването на "git" команда: %v
-sqlite3_not_available=Вашата версия не поддържа SQLite3, моля, изтеглете официалната двоична версия от %s, а не gobuild версията.
-invalid_db_setting=Настройките на базата данни са некоректни: %v
-invalid_repo_path=Основният път към хранилищата е невалиден: %v
-run_user_not_match=Потребителският контекст на приложението не е на текущия потребител: %s -> %s
-save_config_failed=Неуспешно запазване на конфигурация: %v
-invalid_admin_setting=Настройките на профил на администратора са невалидни: %v
-install_success=Добре дошли! Радваме се, че избрахте Gogs, и Ви пожелаваме приятна работа и сърдечни поздрави!
-
-[home]
-uname_holder=Потребителско име или ел. поща
-password_holder=Парола
-switch_dashboard_context=Превключи контекст на таблото
-my_repos=Моите хранилища
-collaborative_repos=Съвместни хранилища
-my_orgs=Моите организации
-my_mirrors=Моите огледала
-view_home=Преглед на %s
-
-issues.in_your_repos=Във Вашите хранилища
-
-[explore]
-repos=Хранилища
-
-[auth]
-create_new_account=Създай нов профил
-register_hepler_msg=Вече имате профил? Впишете се сега!
-social_register_hepler_msg=Вече имате профил? Свържете се сега!
-disable_register_prompt=За съжаление създаването на нови регистрации е изключено. Обърнете се към администратора на сайта.
-disable_register_mail=За съжаление потвърждението на регистрации е изключено.
-remember_me=Запомни ме
-forgot_password=Забравена парола
-forget_password=Забравена парола?
-sign_up_now=Нуждаете се от профил? Регистрирайте се сега.
-confirmation_mail_sent_prompt=Ново писмо за потвърждение е изпратено до <b>%s</b>. Моля проверете пощенската си кутия в рамките на следващите %d часа, за да завършите процеса на регистрация.
-sign_in_to_account=Влезте с Вашия профил
-active_your_account=Активиране на профил
-resent_limit_prompt=За съжаление Вие съвсем наскоро изпратихте писмо за активация. Моля изчакайте 3 минути, след което опитайте отново.
-has_unconfirmed_mail=Здравейте %s, имате непотвърден адрес на ел. поща (<b>%s</b>). Ако не сте получили писмо за потвърждение или имате нужда да се изпрати ново писмо, моля щракнете бутона по-долу.
-resend_mail=Щракнете тук, за да се изпрати ново писмо за потвърждение
-email_not_associate=Този адрес на ел. поща не е свързан с никой профил.
-send_reset_mail=Щракнете тук, за да получите (отново) писмо за нулиране на паролата
-reset_password=Нулиране на паролата
-invalid_code=За съжаление Вашия код за потвърждение е изтекъл или е невалиден.
-reset_password_helper=Щракнете тук, за да нулирате паролата си
-password_too_short=Размерът на паролата не може да бъде по-малък от 6 знака.
-
-[mail]
-activate_account=Моля активирайте Вашия профил
-activate_email=Провери адрес на ел. поща
-reset_password=Нулиране на паролата
-register_success=Успешна регистрация и добре дошли
-
-[modal]
-yes=Да
-no=Не
-modify=Промени
-
-[form]
-UserName=Потребителско име
-RepoName=Име на хранилището
-Email=Адрес на ел. поща
-Password=Парола
-Retype=Повторно паролата
-SSHTitle=Име на SSH ключ
-HttpsUrl=HTTPS URL адрес
-PayloadUrl=URL адрес на изпращане
-TeamName=Име на екипа
-AuthName=Име на удостоверението
-AdminEmail=Ел. поща на администратора
-
-require_error=` не може да бъде празен.`
-alpha_dash_error=` трябва да e валидна буква, число или тире(-_).`
-alpha_dash_dot_error=` трябва да e валидна буква, число, тире(-_) или точка.`
-size_error=` трябва да е с размер %s.`
-min_size_error=` трябва да съдържа поне %s знака.`
-max_size_error=` трябва да съдържа най-много %s знака.`
-email_error=` не е валиден адрес на ел. поща.`
-url_error=` не е валиден URL адрес.`
-unknown_error=Неизвестна грешка:
-captcha_incorrect=Captcha не е потвърдена.
-password_not_match=Паролата и потвърждението ѝ не съвпадат.
-
-username_been_taken=Потребителското име вече се ползва.
-repo_name_been_taken=Името на хранилището вече се ползва.
-org_name_been_taken=Името на организацията вече се ползва.
-team_name_been_taken=Името на екипа вече се ползва.
-email_been_used=Този адрес на ел. поща вече се ползва.
-illegal_team_name=Името на екипа съдържа недопустими знаци.
-username_password_incorrect=Потребителското име или паролата не са верни.
-enterred_invalid_repo_name=Моля уверете се, че въведеното име на хранилище е вярно.
-enterred_invalid_owner_name=Моля уверете се, че въведеното име на притежател е вярно.
-enterred_invalid_password=Моля уверете се, че въведената парола е вярна.
-user_not_exist=Даденият потребител не съществува.
-last_org_owner=Премахване на последния потребител от екип притежатели не е позволено, тъй като винаги трябва да има поне един притежател в дадена организация.
-
-invalid_ssh_key=За съжаление, ние не сме в състояние да проверим Вашия SSH ключ: %s
-unable_verify_ssh_key=Gogs не може да провери Вашия SSH ключ, но предполагаме, че е валиден. Моля, проверете го.
-auth_failed=Неуспешно удостоверяване: %v
-
-still_own_repo=Вашият профил притежава поне едно хранилище. Първо трябва да ги изтриете или да ги прехвърлите на друг потребител.
-still_has_org=Вашият профил все още е член на поне една организация. Първо трябва да напуснете или изтриете Вашите членства.
-org_still_own_repo=Тази организация все още притежава хранилище. Първо трябва да го изтриете или да го прехвърлите на друга организация.
-
-still_own_user=Това удостоверяване се използва от поне един потребител. Моля премахнете потребителите към него и опитайте отново.
-
-target_branch_not_exist=Целевият клон не съществува.
-
-[user]
-change_avatar=Сменете Вашия аватар на gravatar.com
-change_custom_avatar=Сменете Вашия аватар в настройките
-join_on=Регистриран на
-repositories=Хранилища
-activity=Публична дейност
-followers=Последователи
-starred=Харесано
-following=Следване
-
-form.name_reserved=Потребителското име '%s' е запазено.
-form.name_pattern_not_allowed=Потребителското име '%s' не е допустимо.
-
-[settings]
-profile=Профил
-password=Парола
-ssh_keys=SSH ключове
-social=Социални профили
-applications=Приложения
-orgs=Организации
-delete=Изтрий профил
-uid=UID
-
-public_profile=Публичен профил
-profile_desc=Вашият адрес на ел. поща е публичен и ще бъде използван за всички свързани с профила Ви уведомления и всички уеб базирани операции, направени чрез сайта.
-full_name=Пълно име
-website=Уебсайт
-location=Локация
-update_profile=Обнови профила
-update_profile_success=Вашият профил е запазен успешно.
-change_username=Потребителското име е променено
-change_username_prompt=Този промяна ще засегне всички връзки сочещи към профила Ви.
-continue=Продължи
-cancel=Отказ
-
-enable_custom_avatar=Разреши потребителски аватар
-enable_custom_avatar_helper=Включете тази опция, за да забраните зареждане от Gravatar
-choose_new_avatar=Избери нов аватар
-update_avatar=Обнови настройките на аватара
-uploaded_avatar_not_a_image=Каченият файл не е изображение.
-no_custom_avatar_available=Невъзможно използване на външен аватар, защото не е активирано.
-update_avatar_success=Настройките на аватара са запазени успешно.
-
-change_password=Промени парола
-old_password=Текуща парола
-new_password=Нова парола
-retype_new_password=Повторно новата парола
-password_incorrect=Въведената парола не е вярна.
-change_password_success=Вашата парола е променена успешно. Вече може да влизате, използвайки тази нова парола.
-
-emails=Адреси на ел. поща
-manage_emails=Управление на адреси на ел. поща
-email_desc=Вашият основен адрес на ел. поща ще се използва за изпращане на уведомления и други операции.
-primary=Основен
-primary_email=Задай като основен
-delete_email=Изтрий
-email_deletion=Изтрий ел. поща
-email_deletion_desc=При изтриване на тази ел. поща ще се премахне свързаната информация от Вашия профил. Желаете ли да продължите?
-email_deletion_success=Ел. пощата беше изтрита успешно!
-add_new_email=Добавяне на нов адрес на ел. поща
-add_email=Добави ел. поща
-add_email_confirmation_sent=Ново писмо за потвърждение е изпратено до '%s'. Моля проверете пощенската си кутия в рамките на следващите %d часа, за да завършите процеса на регистрация.
-add_email_success=Ваш нов адрес на ел. поща е добавен успешно.
-
-manage_ssh_keys=Управление на SSH ключове
-add_key=Добави ключ
-ssh_desc=Това е списък на SSH ключове, свързани с Вашия акаунт. Тъй като тези ключове позволяват на всеки, който ги използва да получи достъп до хранилищата Ви, много е важно да се уверите, че ги разпознавате.
-ssh_helper=<strong>Не знам как?</strong> Проверете на GitHub упътването как да <a href="%s">създадете свои собствени SSH ключове</a> или решаване на <a href="%s">Общи проблеми</a>, които може да възникнат при използване на SSH.
-add_new_key=Добавяне на SSH ключ
-ssh_key_been_used=Съдържанието на публичния ключ е използвано.
-ssh_key_name_used=Вече съществува публичен ключ с това име.
-key_name=Име на ключа
-key_content=Съдържание
-add_key_success=Новият SSH ключ '%s' е добавен успешно!
-delete_key=Изтрий
-ssh_key_deletion=Изтрий SSH ключ
-ssh_key_deletion_desc=При изтриване на този SSH ключ ще се премахнат свързаните права за достъп за Вашия профил. Желаете ли да продължите?
-ssh_key_deletion_success=SSH ключа беше изтрит успешно!
-add_on=Добавен на
-last_used=Последно използван на
-no_activity=Няма скорошна активност
-key_state_desc=Този ключ е използван през последните 7 дни
-token_state_desc=Този токен е използван през последните 7 дни
-
-manage_social=Управление на свързани профили в социалните мрежи
-social_desc=Това е списък на свързани профили в социалните мрежи. Премахнете всички, които не разпознавате.
-unbind=Освобождаване
-unbind_success=Социалния профил е освободен.
-
-manage_access_token=Управление на индивидуални токени за достъп
-generate_new_token=Генериране на нов токен
-tokens_desc=Генерирани токени, които могат да се използват за достъп до API-то на Gogs.
-new_token_desc=Всеки токен ще има пълен достъп до Вашия профил.
-token_name=Име на токена
-generate_token=Генериране на токен
-generate_token_succees=Успешно е генериран токен за достъп. Уверете се, че сте го копирали, тъй като няма да можете да го видите отново!
-delete_token=Изтрий
-access_token_deletion=Изтрий индивидуален токен за достъп
-access_token_deletion_desc=При изтриване на този индивидуален токен за достъп ще се премахнат всички свързани права на приложението. Желаете ли да продължите?
-delete_token_success=Индивидуалния токен за достъп е изтрит успешно! Не забравяйте да преконфигурирате приложението също.
-
-delete_account=Изтрий собствен профил
-delete_prompt=Тази операция ще изтрие Вашия профил завинаги и тя <strong>НЕ МОЖЕ</strong> да бъде отменена в последствие!
-confirm_delete_account=Потвърди изтриването
-delete_account_title=Изтрий профил
-delete_account_desc=Този профил ще бъде окончателно изтрит. Желаете ли да продължите?
-
-[repo]
-owner=Притежател
-repo_name=Име на хранилището
-repo_name_helper=Добро име на хранилище е име, състоящо от кратки, запомнящи се и уникални ключови думи.
-visibility=Видимост
-visiblity_helper=Това хранилище е <span class="ui red text">Частно</span>
-visiblity_helper_forced=Site admin has forced all new repositories to be <span class="ui red text">Private</span>
-visiblity_fork_helper=(Промяна на тази стойност ще се отрази на всички разклонения)
-fork_repo=Разклони хранилището
-fork_from=Разклонение от
-fork_visiblity_helper=Не може да променяте видимостта на разклонено хранилище.
-repo_desc=Описание
-repo_lang=Език
-repo_lang_helper=Изберете .gitignore файлове
-license=Лиценз
-license_helper=Изберете лицензионен файл
-readme=Readme
-readme_helper=Изберете шаблон на readme
-auto_init=Инициализиране на това хранилище с избраните файлове и шаблон
-create_repo=Създай хранилище
-default_branch=Клон по подразбиране
-mirror_interval=Интервал на отразяване (часове)
-
-form.name_reserved=Името на хранилището '%s' е запазено.
-form.name_pattern_not_allowed=Име на хранилището от вида '%s' не е позволено.
-
-need_auth=Изисква удостоверяване
-migrate_type=Тип мигриране
-migrate_type_helper=Това хранилище ще бъде <span class="text blue">огледало</span>
-migrate_repo=Мигрирай хранилище
-migrate.clone_address=Адрес за клонирай
-migrate.clone_address_desc=Това може да е HTTP/HTTPS/GIT адрес или локален път на сървъра.
-migrate.invalid_local_path=Невалиден път - не съществува или не е директория.
-
-forked_from=разклонено от
-fork_from_self=Не можете да разклоните хранилище което си е Ваше!
-copy_link=Копирай
-copy_link_success=Копирано!
-copy_link_error=Натиснете ⌘-C или Ctrl-C за да копирате
-click_to_copy=Копиране в клипборда
-copied=Успешно копиране
-clone_helper=Нуждаете се от помощ при клониране? Посетете <a target="_blank" href="%s">Помощ</a>!
-unwatch=Не следи
-watch=Следи
-unstar=Не харесвам
-star=Харесвам
-fork=Разклонение
-
-no_desc=Няма описание
-quick_guide=Бърз справочник
-clone_this_repo=Клонирай хранилището
-create_new_repo_command=Създай ново хранилище чрез командния ред
-push_exist_repo=Предай съществуващо хранилище през командния ред
-repo_is_empty=Това хранилище е празно. Моля проверете по-късно пак!
-
-
-branch=Клон
-tree=Дърво
-branch_and_tags=Клонове и маркери
-branches=Клонове
-tags=Маркери
-issues=Проблеми
-pulls=Заявки за сливане
-labels=Етикети
-milestones=Етапи
-commits=Ревизии
-releases=Издания
-file_raw=Суров
-file_history=История
-file_view_raw=Виж суров
-file_permalink=Постоянна връзка
-
-commits.commits=Ревизии
-commits.search=Търсене в ревизии
-commits.find=Намери
-commits.author=Автор
-commits.message=Съобщение
-commits.date=Дата
-commits.older=По-стари
-commits.newer=По-нови
-
-issues.new=Нов проблем
-issues.new.labels=Етикети
-issues.new.no_label=Няма етикет
-issues.new.clear_labels=Изчисти етикети
-issues.new.milestone=Етап
-issues.new.no_milestone=Няма етап
-issues.new.clear_milestone=Изчисти етап
-issues.new.open_milestone=Отворени етапи
-issues.new.closed_milestone=Затворени етапи
-issues.new.assignee=Изпълнител
-issues.new.clear_assignee=Изчисти изпълнител
-issues.new.no_assignee=Няма изпълнител
-issues.create=Докладвай проблем
-issues.new_label=Нов етикет
-issues.new_label_placeholder=Име на етикета...
-issues.create_label=Създай етикет
-issues.open_tab=%d отворени
-issues.close_tab=%d затворени
-issues.filter_label=Етикет
-issues.filter_label_no_select=Не е избран етикет
-issues.filter_milestone=Етап
-issues.filter_milestone_no_select=Липсва избран етап
-issues.filter_assignee=Изпълнител
-issues.filter_assginee_no_select=Няма избран изпълнител
-issues.filter_type=Тип
-issues.filter_type.all_issues=Всички проблеми
-issues.filter_type.assigned_to_you=Възложени на Вас
-issues.filter_type.created_by_you=Създадени от Вас
-issues.filter_type.mentioning_you=Споменават лично
-issues.filter_sort=Подредба
-issues.filter_sort.latest=Най-нови
-issues.filter_sort.oldest=Най-стари
-issues.filter_sort.recentupdate=Последно променени
-issues.filter_sort.leastupdate=Отдавна променени
-issues.filter_sort.mostcomment=Най-много коментирани
-issues.filter_sort.leastcomment=Най-малко коментирани
-issues.opened_by=отворен %[1]s от <a href="%[2]s">%[3]s</a>
-issues.opened_by_fake=отворен %[1]s от %[2]s
-issues.previous=Предишна
-issues.next=Следваща
-issues.open_title=Отворени
-issues.closed_title=Затворени
-issues.num_comments=%d коментара
-issues.commented_at=`коментира <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.no_content=Все още няма съдържание.
-issues.close_issue=Затвори
-issues.close_comment_issue=Затвори и коментирай
-issues.reopen_issue=Отвори повторно
-issues.reopen_comment_issue=Отвори повторно и коментирай
-issues.create_comment=Коментирай
-issues.closed_at=`затвори <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.reopened_at=`повторно отвори <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.commit_ref_at=`посочи този проблем от ревизия <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.poster=Участник
-issues.admin=Администратор
-issues.owner=Притежател
-issues.sign_up_for_free=Регистрирай се безплатно
-issues.sign_in_require_desc=за да се включите в този разговор. Вече имате профил? <a href="%s">Влезте, за да коментирате</a>
-issues.edit=Редакция
-issues.cancel=Отказ
-issues.save=Запис
-issues.label_title=Име на етикета
-issues.label_color=Цвят на етикет
-issues.label_count=%d етикети
-issues.label_open_issues=%d отворени проблема
-issues.label_edit=Редакция
-issues.label_delete=Изтрий
-issues.label_modify=Промяна на етикет
-issues.label_deletion=Изтрий етикет
-issues.label_deletion_desc=При изтриване на този етикет ще се премахне информацията за него във всички свързани проблеми. Желаете ли да продължите?
-issues.label_deletion_success=Етикетът е изтрит успешно!
-
-pulls.compare_changes=Сравни промените
-pulls.compare_changes_desc=Сравнява двата клона и създава заявка за сливане за разликите помежду им.
-pulls.compare_base=родителска версия
-pulls.compare_compare=сравни
-pulls.filter_branch=Филтър по клон
-pulls.no_results=Няма резултати.
-pulls.nothing_to_compare=Няма нищо за сравняване, защото родителският клон и върхът са еднакви.
-pulls.has_pull_request=`Вече има заявка за сливане между тези две цели: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>`
-pulls.create=Създай заявка за сливане
-pulls.title_desc=заяви обединяване на %[1]d ревизии от <code>%[2]s</code> във <code>%[3]s</code>
-pulls.merged_title_desc=обедини %[1]d ревизии от <code>%[2]s</code> във <code>%[3]s</code> %[4]s
-pulls.tab_conversation=Разговор
-pulls.tab_commits=Ревизии
-pulls.tab_files=Променени файлове
-pulls.reopen_to_merge=Моля повторно отворете тази заявка за сливане за да се извърши обединяване.
-pulls.merged=Обединени
-pulls.has_merged=Тази заявка за сливане е обединена успешно!
-pulls.data_broken=Данните от тази заявка за сливане са невалидни поради изтрита информация за някое разклонение.
-pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments.
-pulls.can_auto_merge_desc=Можете да извършвате авто-обединяване на тази заявка за сливане.
-pulls.cannot_auto_merge_desc=Не можете да извършите авто-обединяване, защото съществуват конфликти между ревизиите.
-pulls.cannot_auto_merge_helper=Моля, използвайте инструменти на командния ред за да отстраните проблема.
-pulls.merge_pull_request=Обедини заявка за сливане
-pulls.open_unmerged_pull_exists=`Невъзможно повторно отваряне, защото вече съществува заявка за сливане (#%d) от същото хранилище със същата информация за обединяване, която чака да бъде извършена`
-
-milestones.new=Нов етап
-milestones.open_tab=%d отворени
-milestones.close_tab=%d затворени
-milestones.closed=Затворен %s
-milestones.no_due_date=Няма краен срок
-milestones.open=Отвори
-milestones.close=Затвори
-milestones.new_subheader=Създайте етапи за да организирате проблемите.
-milestones.create=Създай етап
-milestones.title=Заглавие
-milestones.desc=Описание
-milestones.due_date=Краен срок (опционален)
-milestones.clear=Изчисти
-milestones.invalid_due_date_format=Невалиден формат на крайния срок, трябва да е 'гггг-мм-дд'.
-milestones.create_success=Етап '%s' е създаден успешно!
-milestones.edit=Редактирай етап
-milestones.edit_subheader=Въведете точни описания на етапите, за да не се объркват участниците.
-milestones.cancel=Отказ
-milestones.modify=Промяна на етап
-milestones.edit_success=Промените в етап '%s' са запазени успешно!
-milestones.deletion=Изтрий етап
-milestones.deletion_desc=При изтриване на етап ще се премахне информацията за него от всички свързани проблеми. Желаете ли да продължите?
-milestones.deletion_success=Етапът е изтрит успешно!
-
-settings=Настройки
-settings.options=Опции
-settings.collaboration=Сътрудничество
-settings.hooks=Уеб-куки
-settings.githooks=Git куки
-settings.basic_settings=Основни настройки
-settings.danger_zone=Опасната зона
-settings.site=Официален сайт
-settings.update_settings=Обнови настройките
-settings.change_reponame_prompt=Тази промяна ще засегне връзките, които се отнасят до това хранилището.
-settings.transfer=Прехвърли притежание
-settings.transfer_desc=Прехвърля това хранилище на друг потребител или към организация, в която имате права на администратор.
-settings.new_owner_has_same_repo=Новият притежател вече има хранилище със същото име. Изберете друго име.
-settings.delete=Изтриване на това хранилище
-settings.delete_desc=След като изтриете хранилището, няма връщане назад. Моля, бъдете сигурни.
-settings.transfer_notices_1=- Вие ще загубите достъп, ако новият притежател е индивидуален потребител.
-settings.transfer_notices_2=- Вие ще запазите достъпа си, ако новият притежател е организация и ако вие сте един от притежателите ѝ.
-settings.transfer_form_title=Моля въведете следната информация за да потвърдите операцията:
-settings.delete_notices_1=- Тази операция <strong>НЕ МОЖЕ</strong> да бъде отменена в последствие.
-settings.delete_notices_2=- Тази операция ще изтрие всичко от това хранилище, включително Git данни, проблеми, коментари и достъпа на сътрудници.
-settings.delete_notices_fork_1=- Ако това хранилище е публично, всички негови разклонения ще останат независими след изтриването му.
-settings.delete_notices_fork_2=- Ако това хранилище е частно, всички негови разклонения ще бъдат премахнати по време на изтриването.
-settings.delete_notices_fork_3=- Ако желаете да запазите всички разклонения след изтриването му, първо направете хранилището публично.
-settings.update_settings_success=Настройките на хранилището са запазени успешно.
-settings.transfer_owner=Нов притежател
-settings.make_transfer=Прехвърли
-settings.transfer_succeed=Притежанието на хранилището е прехвърлено успешно.
-settings.confirm_delete=Потвърди изтриването
-settings.add_collaborator=Добави нов сътрудник
-settings.add_collaborator_success=Добавен е нов сътрудник.
-settings.remove_collaborator_success=Сътрудникът е премахнат.
-settings.user_is_org_member=Потребителят е член на организацията и не може да бъде добавен като сътрудник.
-settings.add_webhook=Добави уеб-кука
-settings.hooks_desc=Уеб-куките много приличат на обикновен HTTP POST тригер. Когато нещо се случи в Gogs, ние ще изпратим уведомление до сървъра, който посочите. Научете повече в <a target="_blank" href="%s">Ръководство за уеб-куки</a>.
-settings.webhook_deletion=Изтрий уеб-кука
-settings.webhook_deletion_desc=При изтриване на тази уеб-кука ще се премахне информацията за нея и цялата хронология на нейното изпращане. Желаете ли да продължите?
-settings.webhook_deletion_success=Уеб-куката е изтрита успешно!
-settings.webhook.request=Заявка
-settings.webhook.response=Отговор
-settings.webhook.headers=Заглавки
-settings.webhook.payload=Съдържание
-settings.webhook.body=Тяло
-settings.githooks_desc=Git куките се изпълняват от Git. Вие може да промените файловете с поддържаните куки в списъка по-долу, за да изпълните външни операции.
-settings.githook_edit_desc=Ако куката е неактивна, ще бъде представено примерно съдържание. Ако оставите съдържанието празно, то тази кука ще бъде изключена.
-settings.githook_name=Име на куката
-settings.githook_content=Съдържание на куката
-settings.update_githook=Обнови куката
-settings.add_webhook_desc=Gogs ще изпрати <code>POST</code> заявка към указания URL адрес заедно с информация за събитието, което е настъпило. Също можете да укажете в какъв формат желаете да получите данните при задействане на куката (JSON, x-www-form-urlencoded, XML) и др. Допълнително описание можете да намерите в нашето <a target="_blank" href="%s">Ръководство за уеб-куки</a>.
-settings.payload_url=URL адрес на изпращане
-settings.content_type=Тип на съдържанието
-settings.secret=Тайна
-settings.slack_username=Потребителско име
-settings.slack_icon_url=URL адрес на икона
-settings.slack_color=Цвят
-settings.event_desc=При какви събития да се задейства тази уеб-кука?
-settings.event_push_only=Само при събитие от тип <code>предаване</code>.
-settings.event_send_everything=При <strong>всички</strong> събития.
-settings.event_choose=Нека избера от какво имам нужда.
-settings.event_create=Създаване
-settings.event_create_desc=Създаване на клон или маркер
-settings.event_push=Предаване
-settings.event_push_desc=Git предаване към хранилището
-settings.active=Активна
-settings.active_helper=Подробности относно събитието, което е задействало куката, също ще бъдат изпратени.
-settings.add_hook_success=Новата уеб-кука е добавена успешно.
-settings.update_webhook=Обнови уеб-куката
-settings.update_hook_success=Уеб-куката е запазена успешно.
-settings.delete_webhook=Изтрий уеб-куката
-settings.recent_deliveries=Последни изпращания
-settings.hook_type=Тип на куката
-settings.add_slack_hook_desc=Добавяне на интеграция със <a href="%s">Slack</a> във Вашето хранилище.
-settings.slack_token=Токен
-settings.slack_domain=Домейн
-settings.slack_channel=Канал
-settings.deploy_keys=Ключове за внедряване
-settings.add_deploy_key=Добави ключ за внедряване
-settings.no_deploy_keys=Все още няма настроен никакъв ключ за внедряване.
-settings.title=Заглавие
-settings.deploy_key_content=Съдържание
-settings.key_been_used=Съдържанието на ключа за внедряване е използвано.
-settings.key_name_used=Ключ за внедряване с такова име вече съществува.
-settings.add_key_success=Новият ключ за внедряване '%s' е добавен успешно!
-settings.deploy_key_deletion=Изтрий ключ за внедряване
-settings.deploy_key_deletion_desc=При изтриването на този ключ за внедряване ще се премахнат свързаните права за достъп до това хранилище. Желаете ли да продължите?
-settings.deploy_key_deletion_success=Ключът за внедряване е изтрит успешно!
-
-diff.browse_source=Преглед на кода
-diff.parent=родител
-diff.commit=ревизия
-diff.data_not_available=Няма данни за разлики.
-diff.show_diff_stats=Покажи статистика за разликите
-diff.stats_desc=променени са <strong>%d файла</strong>, в които са <strong>добавени %d</strong> реда и са <strong>изтрити %d</strong> реда
-diff.bin=BIN
-diff.view_file=Преглед на файла
-
-release.releases=Издания
-release.new_release=Ново издание
-release.draft=Чернови
-release.prerelease=Предварителни
-release.stable=Стабилни
-release.edit=редактиране
-release.ahead=<strong>%d</strong> ревизии на %s след това издание
-release.source_code=Изходен код
-release.tag_name=Име на маркера
-release.target=Цел
-release.tag_helper=Изберете съществуващ маркер или създайте нов маркер по време на публикуване.
-release.release_title=Заглавие на изданието
-release.content_with_md=Съдържание с <a href="%s">Markdown</a>
-release.write=Писане
-release.preview=Преглед
-release.content_placeholder=Напишете някакво съдържание
-release.loading=Зареждане...
-release.prerelease_desc=Това е предварително издание
-release.prerelease_helper=Ние ще отбележим, че това издание не е завършено за употреба.
-release.publish=Публикувай издание
-release.save_draft=Запис на чернова
-release.edit_release=Редактирай издание
-release.tag_name_already_exist=Издание с това име на маркер вече съществува.
-
-[org]
-org_name_holder=Име на организацията
-org_name_helper=Добрите имена на организация са кратки и запомнящи се.
-create_org=Създай организация
-repo_updated=Обновено
-people=Хора
-invite_someone=Поканете някого
-teams=Екипи
-lower_members=членове
-lower_repositories=хранилища
-create_new_team=Създай нов екип
-org_desc=Описание
-team_name=Име на екипа
-team_desc=Описание
-team_name_helper=Ще използвате това име при споменаване на този екип в разговори.
-team_desc_helper=Каква е целта на този екип?
-team_permission_desc=Какво ниво на достъп трябва да има този екип?
-
-form.name_reserved=Името на организацията '%s' е запазено.
-form.name_pattern_not_allowed=Име на организацията от вида '%s' не е разрешено.
-
-settings=Настройки
-settings.options=Опции
-settings.full_name=Пълно име
-settings.website=Уебсайт
-settings.location=Локация
-settings.update_settings=Обнови настройките
-settings.update_setting_success=Настройките на организацията са запазени успешно.
-settings.change_orgname_prompt=Този промяна ще засегне всички връзки сочещи към организацията.
-settings.update_avatar_success=Настройките на аватара на организацията са запазени успешно.
-settings.delete=Изтрий организацията
-settings.delete_account=Изтриване на тази организация
-settings.delete_prompt=Организацията ще бъде изтрита и операцията <strong>НЕ МОЖЕ</strong> да бъде отменена в последствие!
-settings.confirm_delete_account=Потвърди изтриването
-settings.delete_org_title=Изтрий организацията
-settings.delete_org_desc=Тази организация ще бъде окончателно изтрита. Желаете ли да продължите?
-settings.hooks_desc=Добави уеб-куки, които ще бъдат използвани от <strong>всички хранилища</strong> в тази организация.
-
-members.public=Публични
-members.public_helper=направи частен
-members.private=Частни
-members.private_helper=направи публичен
-members.owner=Притежател
-members.member=Участник
-members.conceal=Прикриване
-members.remove=Премахни
-members.leave=Напусни
-members.invite_desc=Започнете да пишете потребителското име, за да поканите член в %s:
-members.invite_now=Покани
-
-teams.join=Присъедини се
-teams.leave=Напусни
-teams.read_access=Достъп за четене
-teams.read_access_helper=Този екип ще може да вижда и клонира своите хранилища.
-teams.write_access=Достъп за запис
-teams.write_access_helper=Този екип ще може да чете своите хранилища и ще може да предава към тях.
-teams.admin_access=Администраторски достъп
-teams.admin_access_helper=Този екип ще може да добавя код, данни и нови сътрудници в своите хранилища.
-teams.no_desc=Този екип няма описание
-teams.settings=Настройки
-teams.owners_permission_desc=Притежателите имат пълен достъп до <strong>всички хранилища</strong> и имат <strong>права на администратори</strong> на организацията.
-teams.members=Членовете на екипа
-teams.update_settings=Обнови настройките
-teams.delete_team=Изтриване на този екип
-teams.add_team_member=Добави член на екипа
-teams.delete_team_title=Изтрий екипа
-teams.delete_team_desc=Тъй като този екип ще бъдат изтрит, членовете му може да загубят достъп до някои хранилища. Желаете ли да продължите?
-teams.delete_team_success=Този екип е бил изтрит успешно.
-teams.read_permission_desc=Този екип предоставя достъп за <strong>четене</strong>: членове могат да разглеждат и клонират хранилищата на екипа.
-teams.write_permission_desc=Този екип предоставя достъп за <strong>писане</strong>: членовете могат да четат от и предават към хранилищата на екипа.
-teams.admin_permission_desc=Този екип предоставя <strong>администраторски</strong> достъп: членовете могат да четат от, да предават към и да добавя нови сътрудници към хранилищата на екипа.
-teams.repositories=Хранилища на екипа
-teams.add_team_repository=Добави хранилище на екипа
-teams.remove_repo=Премахни
-teams.add_nonexistent_repo=Хранилището, което се опитвате да добавите не съществува. Моля първо го създайте!
-
-[admin]
-dashboard=Табло
-users=Потребители
-organizations=Организации
-repositories=Хранилища
-authentication=Удостоверявания
-config=Конфигурация
-notices=Системни известия
-monitor=Наблюдение
-first_page=Първа
-last_page=Последна
-total=Общо: %d
-
-dashboard.statistic=Статистика
-dashboard.operations=Операции
-dashboard.system_status=Наблюдение на системния статус
-dashboard.statistic_info=Gogs базата данни има <b>%d</b> потребители, <b>%d</b> организации, <b>%d</b> публични ключове, <b>%d</b> хранилища, <b>%d</b> наблюдавания, <b>%d</b> харесвания, <b>%d</b> действия, <b>%d</b> достъпи, <b>%d</b> проблеми, <b>%d</b> коментари, <b>%d</b> социални регистрации, <b>%d</b> последователи, <b>%d</b> огледала, <b>%d</b> издания, <b>%d</b> източници за вписване, <b>%d</b> уеб-куки, <b>%d</b> етапи, <b>%d</b> етикети, <b>%d</b> задачи на куки, <b>%d</b> екипи, <b>%d</b> задачи при актуализация, <b>%d</b> прикачени файлове.
-dashboard.operation_name=Име на операцията
-dashboard.operation_switch=Превключи
-dashboard.operation_run=Изпълни
-dashboard.clean_unbind_oauth=Почисти несвързани OAuthes
-dashboard.clean_unbind_oauth_success=Всички несвързани OAuthes са изтрити успешно.
-dashboard.delete_inactivate_accounts=Изтрий всички неактивни профили
-dashboard.delete_inactivate_accounts_success=Всички неактивни профили са изтрити успешно.
-dashboard.delete_repo_archives=Изтрий всички архиви на хранилища
-dashboard.delete_repo_archives_success=Всички архиви на хранилищата са изтрити успешно.
-dashboard.git_gc_repos=Почисти изтрити данни в хранилищата
-dashboard.git_gc_repos_success=Всички хранилища са почистени от изтрити данни успешно.
-dashboard.resync_all_sshkeys=Презапис на ".ssh/authorized_keys" файл (внимание: не-Gogs ключове ще бъдат загубени)
-dashboard.resync_all_sshkeys_success=Всички публични ключове са презаписани успешно.
-dashboard.resync_all_update_hooks=Презапис на всички куки, закачени на актуализация на хранилищата (необходимо, когато се ползва собствен път за конфигурацията)
-dashboard.resync_all_update_hooks_success=Всички куки, закачени на актуализация на хранилищата, са презаписани успешно.
-
-dashboard.server_uptime=Операционно време
-dashboard.current_goroutine=Текущи Goroutines
-dashboard.current_memory_usage=Текущо използвана памет
-dashboard.total_memory_allocated=Общо заделена памет
-dashboard.memory_obtained=Получена памет
-dashboard.pointer_lookup_times=Брой обхождания на указатели
-dashboard.memory_allocate_times=Брой заделяния на памет
-dashboard.memory_free_times=Брой освобождавания на памет
-dashboard.current_heap_usage=Текущо използвана осн. памет
-dashboard.heap_memory_obtained=Получена осн. памет
-dashboard.heap_memory_idle=Празна осн. памет
-dashboard.heap_memory_in_use=Използвана осн. памет
-dashboard.heap_memory_released=Освободена осн. памет
-dashboard.heap_objects=Обекти в осн. памет
-dashboard.bootstrap_stack_usage=Използван стек за bootstrap
-dashboard.stack_memory_obtained=Заделена памет в стека
-dashboard.mspan_structures_usage=Използвани MSpan обекти
-dashboard.mspan_structures_obtained=Получени MSpan обекти
-dashboard.mcache_structures_usage=Използвани MCache обекти
-dashboard.mcache_structures_obtained=Получени MCache обекти
-dashboard.profiling_bucket_hash_table_obtained=Получени Profiling Bucket Hash Table
-dashboard.gc_metadata_obtained=Получени GC метаданни
-dashboard.other_system_allocation_obtained=Получена друга системна памет
-dashboard.next_gc_recycle=Следващо рециклиране на GC
-dashboard.last_gc_time=Време от последен GC
-dashboard.total_gc_time=Общо време за GC
-dashboard.total_gc_pause=Общо пауза за GC
-dashboard.last_gc_pause=Последна пауза за GC
-dashboard.gc_times=Брой GC
-
-users.user_manage_panel=Управление на потребителя
-users.new_account=Създай нов профил
-users.name=Име
-users.activated=Активиран
-users.admin=Администратор
-users.repos=Хранилища
-users.created=Създаване
-users.send_register_notify=Прати уведомление на потребителя при регистрация
-users.new_success=Новият профил '%s' е добавен успешно.
-users.edit=Редакция
-users.auth_source=Източник за удостоверяване
-users.local=Локално
-users.auth_login_name=Потребителско име за удостоверяване
-users.password_helper=Оставете празна ако не се променя.
-users.update_profile_success=Профилът е запазен успешно.
-users.edit_account=Редактирай профил
-users.is_activated=Този профил е активиран
-users.is_admin=Този профил има административни права
-users.allow_git_hook=Този профил има разрешение да създава Git куки
-users.update_profile=Обнови профила
-users.delete_account=Изтрий този профил
-users.still_own_repo=Този профил притежава поне едно хранилище. Първо трябва да изтриете хранилището или да го прехвърлите на друг потребител.
-users.still_has_org=Този профил е член на поне една организация. Първо трябва да напуснете или изтриете тези организации.
-users.deletion_success=Профилът е изтрит успешно!
-
-orgs.org_manage_panel=Управление на организацията
-orgs.name=Име
-orgs.teams=Екипи
-orgs.members=Членове
-
-repos.repo_manage_panel=Управление на хранилището
-repos.owner=Притежател
-repos.name=Име
-repos.private=Лично
-repos.watches=Наблюдавания
-repos.stars=Харесвания
-repos.issues=Проблеми
-
-auths.auth_manage_panel=Управление на удостоверявания
-auths.new=Добави нов източник за удостоверяване
-auths.name=Име
-auths.type=Тип
-auths.enabled=Активен
-auths.updated=Обновен
-auths.auth_type=Тип на удостоверяване
-auths.auth_name=Име на удостоверяване
-auths.domain=Домейн
-auths.host=Сървър
-auths.port=Порт
-auths.bind_dn=Име (DN) за свръзка
-auths.bind_password=Парола за свръзка
-auths.bind_password_helper=Внимание: Тази парола се запазва некриптирана. Моля използвайте потребител, който няма административен достъп.
-auths.user_base=База с потребители
-auths.user_dn=Име (DN) на потребител
-auths.attribute_name=Атрибут за име
-auths.attribute_surname=Атрибут за фамилия
-auths.attribute_mail=Атрибут за ел. поща
-auths.filter=Филтър за потребители
-auths.admin_filter=Филтър за администратори
-auths.ms_ad_sa=Ms Ad SA
-auths.smtp_auth=SMTP удостоверяване
-auths.smtphost=SMTP сървър
-auths.smtpport=SMTP порт
-auths.allowed_domains=Разрешени домейни
-auths.allowed_domains_helper=Оставете празно за да не се ограничават домейните. За множество домейни използвайте запетая за разделител.
-auths.enable_tls=Включи TLS криптиране
-auths.skip_tls_verify=Пропусни проверка на TLS
-auths.pam_service_name=Име на PAM услуга
-auths.enable_auto_register=Включи автоматична регистрация
-auths.tips=Съвети
-auths.edit=Редактирай настройки за удостоверяване
-auths.activated=Това удостоверяване е активно
-auths.new_success=Новото удостоверяване '%s' е добавено успешно.
-auths.update_success=Настройките за удостоверяване са запазени успешно.
-auths.update=Обнови настройки за удостоверяване
-auths.delete=Изтриване на това удостоверяване
-auths.delete_auth_title=Изтрий удостоверяването
-auths.delete_auth_desc=Това удостоверяване ще бъде изтрито. Желаете ли да продължите?
-auths.deletion_success=Удостоверяването е изтрито успешно!
-
-config.server_config=Сървърни настройки
-config.app_name=Име на приложението
-config.app_ver=Версия на приложението
-config.app_url=URL адрес на приложението
-config.domain=Домейн
-config.offline_mode=Офлайн режим
-config.disable_router_log=Изключи журнал на маршрутизатора
-config.run_user=Потребителски контекст
-config.run_mode=Режим на изпълнение
-config.repo_root_path=Основен път към хранилища
-config.static_file_root_path=Път към статични файлове
-config.log_file_root_path=Път към журнал
-config.script_type=Тип на скрипта
-config.reverse_auth_user=Потребителско име при обратно удостоверяване
-config.db_config=Настройки на базата данни
-config.db_type=Тип
-config.db_host=Сървър
-config.db_name=Име
-config.db_user=Потребител
-config.db_ssl_mode=SSL режим
-config.db_ssl_mode_helper=(само за postgres)
-config.db_path=Път
-config.db_path_helper=(за "sqlite3" и "tidb")
-config.service_config=Настройка на услугата
-config.register_email_confirm=Изисквай потвърждение на адреси на ел. поща
-config.disable_register=Изключи нови регистрации
-config.show_registration_button=Покажи бутон за регистрация
-config.require_sign_in_view=Изисквай вписване за преглед
-config.enable_cache_avatar=Включи кеширане на аватари
-config.mail_notify=Уведомяване по ел. поща
-config.disable_key_size_check=Изключи проверка минимален размер на ключ
-config.enable_captcha=Включи Captcha
-config.active_code_lives=Кодове за активиране
-config.reset_password_code_lives=Кодове за изчистване на парола
-config.webhook_config=Конфигурация на уеб-куки
-config.queue_length=Дължина на опашка
-config.deliver_timeout=Време за отказ при изпращане
-config.skip_tls_verify=Пропусни проверка на TLS
-config.mailer_config=Конфигурация на мейлър
-config.mailer_enabled=Активен
-config.mailer_disable_helo=Изключи HELO
-config.mailer_name=Име
-config.mailer_host=Сървър
-config.mailer_user=Потребител
-config.oauth_config=OAuth конфигурация
-config.oauth_enabled=Активна
-config.cache_config=Конфигурация на кеша
-config.cache_adapter=Кеш адаптер
-config.cache_interval=Кеш интервал
-config.cache_conn=Кеш на връзката
-config.session_config=Конфигурация на сесии
-config.session_provider=Доставчик на сесии
-config.provider_config=Конфигурация на доставчик
-config.cookie_name=Име на бисквитката
-config.enable_set_cookie=Включи използване на бисквитки
-config.gc_interval_time=GC през интервал
-config.session_life_time=Период на валидност на сесиите
-config.https_only=HTTPS само
-config.cookie_life_time=Период на валидност на бисквитките
-config.picture_config=Конфигурация на изображения
-config.picture_service=Услуги за снимки
-config.disable_gravatar=Изключи Gravatar
-config.log_config=Конфигурация на журнал
-config.log_mode=Режим на журнал
-
-monitor.cron=Cron задачи
-monitor.name=Име
-monitor.schedule=График
-monitor.next=Следващ път
-monitor.previous=Предишен път
-monitor.execute_times=Брой изпълнения
-monitor.process=Изпълнявани процеси
-monitor.desc=Описание
-monitor.start=Начален час
-monitor.execute_time=Време за изпълнение
-
-notices.system_notice_list=Системни известия
-notices.type=Тип
-notices.type_1=Хранилище
-notices.desc=Описание
-notices.op=Oп.
-notices.delete_success=Системното съобщение е изтрито успешно.
-
-[action]
-create_repo=създаде хранилище <a href="%s"> %s</a>
-rename_repo=преименува хранилище от <code>%[1]s</code> на <a href="%[2]s">%[3]s</a>
-commit_repo=предаде към <a href="%s/src/%s">%[2]s</a> в <a href="%[1]s">%[3]s</a>
-create_issue=`отвори проблем <a href="%s/issues/%s">%s#%[2]s"</a>`
-create_pull_request=`създаде заявка за сливане <a href="%s/pulls/%s">%s#%[2]s</a>`
-comment_issue=`коментира проблем <a href="%s/issues/%s">%s#%[2]s"</a>`
-merge_pull_request=`обедини заявка за сливане <a href="%s/pulls/%s">%s#%[2]s</a>`
-transfer_repo=прехвърли хранилище <code>%s</code> към <a href="%s">%s</a>
-push_tag=предаде маркер <a href="%s/src/%s">%[2]s</a> към <a href="%[1]s">[3]s</a>
-compare_2_commits=Сравнение между тези 2 ревизии
-
-[tool]
-ago=преди
-from_now=след
-now=сега
-1s=%s 1 секунда
-1m=%s 1 минута
-1h=%s 1 час
-1d=%s 1 ден
-1w=%s 1 седмица
-1mon=%s 1 месец
-1y=%s 1 година
-seconds=%s %d секунди
-minutes=%s %d минути
-hours=%s %d часа
-days=%s %d дни
-weeks=%s %d седмици
-months=%s %d месеца
-years=%s %d години
-raw_seconds=секунди
-raw_minutes=минути
-
-[dropzone]
-default_message=Пуснете файлове тук или щракнете за качване.
-invalid_input_type=Невъзможно качване на файловете от този тип.
-file_too_big=Размер на файла ({{filesize}} MB) надвишава максималния размер ({{maxFilesize}} MB).
-remove_file=Премахни файл
-
+app_desc=Безпроблемен собствен Git сървър + +home=Начало +dashboard=Табло +explore=Разгледай +help=Помощ +sign_in=Влизане +sign_out=Излизане +sign_up=Регистрирайте се +register=Регистриране +website=Уебсайт +version=Версия +page=Страница +template=Шаблон +language=Език +create_new=Създаване... +user_profile_and_more=Потребителски профил и пр. +signed_in_as=Вписан като + +username=Потребител +email=Ел. поща +password=Парола +re_type=Въведете повторно +captcha=Captcha + +repository=Хранилище +organization=Организация +mirror=Огледало +new_repo=Ново хранилище +new_migrate=Нова миграция +new_fork=Ново разклонено хранилище +new_org=Нова организация +manage_org=Управление на организации +admin_panel=Административен панел +account_settings=Настройки на профила +settings=Настройки +your_profile=Вашият профил +your_settings=Вашите настройки + +news_feed=Поток новини +pull_requests=Заявки за сливане +issues=Проблеми + +cancel=Отказ + +[search] +search=Търсене... +repository=Хранилище +user=Потребител +issue=Проблем +code=Код + +[install] +install=Инсталация +title=Стъпки за инсталиране при първоначално стартиране +docker_helper=Ако Gogs е стартиран в Docker контейнер, моля прочетете <a target="_blank" href="%s">нашите указания</a> внимателно, преди да правите промени по настройките на тази страница! +requite_db_desc=Gogs изисква MySQL, PostgreSQL, SQLite3 или TiDB. +db_title=Настройки на базата данни +db_type=Тип на база данни +host=Сървър +user=Потребител +password=Парола +db_name=Име на база данни +db_helper=Моля, използвайте INNODB engine с utf8_general_ci кодиране на знаци за MySQL. +ssl_mode=Режим SSL +path=Път +sqlite_helper=Файл на SQLite3 или TiDB база данни. +err_empty_db_path=Пътят до SQLite3 или TiDB база данни не може да е празен. +err_invalid_tidb_name=TiDB не позволява "." и "-" в името на базата данни. +no_admin_and_disable_registration=Невъзможно изключване на регистрациите без предварително да е създаден поне един административен профил. +err_empty_admin_password=Паролата на администратор не може да е празна. + +general_title=Общи настройки на приложението +app_name=Име на приложението +app_name_helper=Постави името на твоята организация тук - голямо е крещящо! +repo_path=Основен път към хранилищата +repo_path_helper=Всички отдалечени хранилища на Git ще бъдат съхранени в тази директория. +run_user=Потребителски контекст +run_user_helper=Този потребител трябва да има достъп до основния път към хранилищата и права да стартира Gogs. +domain=Домейн +domain_helper=Тази настройка влияе на URL адреса за клониране чрез SSH. +ssh_port=SSH порт +ssh_port_helper=Номер на порт на SSH сървъра. Оставете празно за да изключите достъп през SSH. +http_port=HTTP порт +http_port_helper=Порт, на който приложението ще слуша. +app_url=URL адрес на приложението +app_url_helper=Този настройка променя HTTP/HTTPS адреса за клониране, а понякога и адреса на ел. поща. + +optional_title=Опционални настройки +email_title=Настройки на пощенска услуга +smtp_host=SMTP сървър +smtp_from=Подател +smtp_from_helper=Адрес на подател на поща по RFC 5322. Може да бъде обикновен адрес на ел. поща или във формат "Име" <email@example.com>. +mailer_user=Ел. поща за изпращане +mailer_password=Парола за изпращане +register_confirm=Включи потвърждението на регистрациите +mail_notify=Включи уведомления по пощата +server_service_title=Настройки на сървъра и други услуги +offline_mode=Включи офлайн режима +offline_mode_popup=Изключи CDN дори в продукционен режим, всички ресурсни файлове ще бъдат доставяни локално. +disable_gravatar=Изключи връзка с Gravatar +disable_gravatar_popup=Изключва Gravatar и външни източници, така че всички аватари трябва да са или качени от потребителите или да се ползват аватари по подразбиране. +disable_registration=Изключи саморегистрацията +disable_registration_popup=Изключи потребителската саморегистрация, само администратор може да създава профили. +enable_captcha=Включи Captcha +enable_captcha_popup=Изисква валидиране с captcha при саморегистрация на потребители. +require_sign_in_view=Включи задължително вписване за преглед на страници +require_sign_in_view_popup=Само вписани потребители могат да виждат страниците, анонимните посетители виждат само страниците за регистрация и вход. +admin_setting_desc=Няма нужда от създаване на администраторски профил в момента, защото потребителят с първо ID в базата автоматично получава администраторски достъп. +admin_title=Настройки на профил на администратора +admin_name=Потребителско име +admin_password=Парола +confirm_password=Потвърждение на паролата +admin_email=Ел. поща +install_gogs=Инсталирай Gogs +test_git_failed=Неуспешно тестването на "git" команда: %v +sqlite3_not_available=Вашата версия не поддържа SQLite3, моля, изтеглете официалната двоична версия от %s, а не gobuild версията. +invalid_db_setting=Настройките на базата данни са некоректни: %v +invalid_repo_path=Основният път към хранилищата е невалиден: %v +run_user_not_match=Потребителският контекст на приложението не е на текущия потребител: %s -> %s +save_config_failed=Неуспешно запазване на конфигурация: %v +invalid_admin_setting=Настройките на профил на администратора са невалидни: %v +install_success=Добре дошли! Радваме се, че избрахте Gogs, и Ви пожелаваме приятна работа и сърдечни поздрави! + +[home] +uname_holder=Потребителско име или ел. поща +password_holder=Парола +switch_dashboard_context=Превключи контекст на таблото +my_repos=Моите хранилища +collaborative_repos=Съвместни хранилища +my_orgs=Моите организации +my_mirrors=Моите огледала +view_home=Преглед на %s + +issues.in_your_repos=Във Вашите хранилища + +[explore] +repos=Хранилища + +[auth] +create_new_account=Създай нов профил +register_hepler_msg=Вече имате профил? Впишете се сега! +social_register_hepler_msg=Вече имате профил? Свържете се сега! +disable_register_prompt=За съжаление създаването на нови регистрации е изключено. Обърнете се към администратора на сайта. +disable_register_mail=За съжаление потвърждението на регистрации е изключено. +remember_me=Запомни ме +forgot_password=Забравена парола +forget_password=Забравена парола? +sign_up_now=Нуждаете се от профил? Регистрирайте се сега. +confirmation_mail_sent_prompt=Ново писмо за потвърждение е изпратено до <b>%s</b>. Моля проверете пощенската си кутия в рамките на следващите %d часа, за да завършите процеса на регистрация. +active_your_account=Активиране на профил +resent_limit_prompt=За съжаление Вие съвсем наскоро изпратихте писмо за активация. Моля изчакайте 3 минути, след което опитайте отново. +has_unconfirmed_mail=Здравейте %s, имате непотвърден адрес на ел. поща (<b>%s</b>). Ако не сте получили писмо за потвърждение или имате нужда да се изпрати ново писмо, моля щракнете бутона по-долу. +resend_mail=Щракнете тук, за да се изпрати ново писмо за потвърждение +email_not_associate=Този адрес на ел. поща не е свързан с никой профил. +send_reset_mail=Щракнете тук, за да получите (отново) писмо за нулиране на паролата +reset_password=Нулиране на паролата +invalid_code=За съжаление Вашия код за потвърждение е изтекъл или е невалиден. +reset_password_helper=Щракнете тук, за да нулирате паролата си +password_too_short=Размерът на паролата не може да бъде по-малък от 6 знака. + +[mail] +activate_account=Моля активирайте Вашия профил +activate_email=Провери адрес на ел. поща +reset_password=Нулиране на паролата +register_success=Успешна регистрация и добре дошли +register_notify=Welcome on board + +[modal] +yes=Да +no=Не +modify=Промени + +[form] +UserName=Потребителско име +RepoName=Име на хранилището +Email=Адрес на ел. поща +Password=Парола +Retype=Повторно паролата +SSHTitle=Име на SSH ключ +HttpsUrl=HTTPS URL адрес +PayloadUrl=URL адрес на изпращане +TeamName=Име на екипа +AuthName=Име на удостоверението +AdminEmail=Ел. поща на администратора + +require_error=` не може да бъде празен.` +alpha_dash_error=` трябва да e валидна буква, число или тире(-_).` +alpha_dash_dot_error=` трябва да e валидна буква, число, тире(-_) или точка.` +size_error=` трябва да е с размер %s.` +min_size_error=` трябва да съдържа поне %s знака.` +max_size_error=` трябва да съдържа най-много %s знака.` +email_error=` не е валиден адрес на ел. поща.` +url_error=` не е валиден URL адрес.` +include_error=` трябва да съдържа текст '%s'.` +unknown_error=Неизвестна грешка: +captcha_incorrect=Captcha не е потвърдена. +password_not_match=Паролата и потвърждението ѝ не съвпадат. + +username_been_taken=Потребителското име вече се ползва. +repo_name_been_taken=Името на хранилището вече се ползва. +org_name_been_taken=Името на организацията вече се ползва. +team_name_been_taken=Името на екипа вече се ползва. +email_been_used=Този адрес на ел. поща вече се ползва. +illegal_team_name=Името на екипа съдържа недопустими знаци. +username_password_incorrect=Потребителското име или паролата не са верни. +enterred_invalid_repo_name=Моля уверете се, че въведеното име на хранилище е вярно. +enterred_invalid_owner_name=Моля уверете се, че въведеното име на притежател е вярно. +enterred_invalid_password=Моля уверете се, че въведената парола е вярна. +user_not_exist=Даденият потребител не съществува. +last_org_owner=Премахване на последния потребител от екип притежатели не е позволено, тъй като винаги трябва да има поне един притежател в дадена организация. + +invalid_ssh_key=За съжаление, ние не сме в състояние да проверим Вашия SSH ключ: %s +unable_verify_ssh_key=Gogs не може да провери Вашия SSH ключ, но предполагаме, че е валиден. Моля, проверете го. +auth_failed=Неуспешно удостоверяване: %v + +still_own_repo=Вашият профил притежава поне едно хранилище. Първо трябва да ги изтриете или да ги прехвърлите на друг потребител. +still_has_org=Вашият профил все още е член на поне една организация. Първо трябва да напуснете или изтриете Вашите членства. +org_still_own_repo=Тази организация все още притежава хранилище. Първо трябва да го изтриете или да го прехвърлите на друга организация. + +still_own_user=Това удостоверяване се използва от поне един потребител. Моля премахнете потребителите към него и опитайте отново. + +target_branch_not_exist=Целевият клон не съществува. + +[user] +change_avatar=Сменете Вашия аватар на gravatar.com +change_custom_avatar=Сменете Вашия аватар в настройките +join_on=Регистриран на +repositories=Хранилища +activity=Публична дейност +followers=Последователи +starred=Харесано +following=Следване + +form.name_reserved=Потребителското име '%s' е запазено. +form.name_pattern_not_allowed=Потребителското име '%s' не е допустимо. + +[settings] +profile=Профил +password=Парола +ssh_keys=SSH ключове +social=Социални профили +applications=Приложения +orgs=Организации +delete=Изтрий профил +uid=UID + +public_profile=Публичен профил +profile_desc=Вашият адрес на ел. поща е публичен и ще бъде използван за всички свързани с профила Ви уведомления и всички уеб базирани операции, направени чрез сайта. +full_name=Пълно име +website=Уебсайт +location=Локация +update_profile=Обнови профила +update_profile_success=Вашият профил е запазен успешно. +change_username=Потребителското име е променено +change_username_prompt=Този промяна ще засегне всички връзки сочещи към профила Ви. +continue=Продължи +cancel=Отказ + +enable_custom_avatar=Разреши потребителски аватар +enable_custom_avatar_helper=Включете тази опция, за да забраните зареждане от Gravatar +choose_new_avatar=Избери нов аватар +update_avatar=Обнови настройките на аватара +uploaded_avatar_not_a_image=Каченият файл не е изображение. +no_custom_avatar_available=Невъзможно използване на външен аватар, защото не е активирано. +update_avatar_success=Настройките на аватара са запазени успешно. + +change_password=Промени парола +old_password=Текуща парола +new_password=Нова парола +retype_new_password=Повторно новата парола +password_incorrect=Въведената парола не е вярна. +change_password_success=Вашата парола е променена успешно. Вече може да влизате, използвайки тази нова парола. + +emails=Адреси на ел. поща +manage_emails=Управление на адреси на ел. поща +email_desc=Вашият основен адрес на ел. поща ще се използва за изпращане на уведомления и други операции. +primary=Основен +primary_email=Задай като основен +delete_email=Изтрий +email_deletion=Изтрий ел. поща +email_deletion_desc=При изтриване на тази ел. поща ще се премахне свързаната информация от Вашия профил. Желаете ли да продължите? +email_deletion_success=Ел. пощата беше изтрита успешно! +add_new_email=Добавяне на нов адрес на ел. поща +add_email=Добави ел. поща +add_email_confirmation_sent=Ново писмо за потвърждение е изпратено до '%s'. Моля проверете пощенската си кутия в рамките на следващите %d часа, за да завършите процеса на регистрация. +add_email_success=Ваш нов адрес на ел. поща е добавен успешно. + +manage_ssh_keys=Управление на SSH ключове +add_key=Добави ключ +ssh_desc=Това е списък на SSH ключове, свързани с Вашия акаунт. Тъй като тези ключове позволяват на всеки, който ги използва да получи достъп до хранилищата Ви, много е важно да се уверите, че ги разпознавате. +ssh_helper=<strong>Не знам как?</strong> Проверете на GitHub упътването как да <a href="%s">създадете свои собствени SSH ключове</a> или решаване на <a href="%s">Общи проблеми</a>, които може да възникнат при използване на SSH. +add_new_key=Добавяне на SSH ключ +ssh_key_been_used=Съдържанието на публичния ключ е използвано. +ssh_key_name_used=Вече съществува публичен ключ с това име. +key_name=Име на ключа +key_content=Съдържание +add_key_success=Новият SSH ключ '%s' е добавен успешно! +delete_key=Изтрий +ssh_key_deletion=Изтрий SSH ключ +ssh_key_deletion_desc=При изтриване на този SSH ключ ще се премахнат свързаните права за достъп за Вашия профил. Желаете ли да продължите? +ssh_key_deletion_success=SSH ключа беше изтрит успешно! +add_on=Добавен на +last_used=Последно използван на +no_activity=Няма скорошна активност +key_state_desc=Този ключ е използван през последните 7 дни +token_state_desc=Този токен е използван през последните 7 дни + +manage_social=Управление на свързани профили в социалните мрежи +social_desc=Това е списък на свързани профили в социалните мрежи. Премахнете всички, които не разпознавате. +unbind=Освобождаване +unbind_success=Социалния профил е освободен. + +manage_access_token=Управление на индивидуални токени за достъп +generate_new_token=Генериране на нов токен +tokens_desc=Генерирани токени, които могат да се използват за достъп до API-то на Gogs. +new_token_desc=Всеки токен ще има пълен достъп до Вашия профил. +token_name=Име на токена +generate_token=Генериране на токен +generate_token_succees=Успешно е генериран токен за достъп. Уверете се, че сте го копирали, тъй като няма да можете да го видите отново! +delete_token=Изтрий +access_token_deletion=Изтрий индивидуален токен за достъп +access_token_deletion_desc=При изтриване на този индивидуален токен за достъп ще се премахнат всички свързани права на приложението. Желаете ли да продължите? +delete_token_success=Индивидуалния токен за достъп е изтрит успешно! Не забравяйте да преконфигурирате приложението също. + +delete_account=Изтрий собствен профил +delete_prompt=Тази операция ще изтрие Вашия профил завинаги и тя <strong>НЕ МОЖЕ</strong> да бъде отменена в последствие! +confirm_delete_account=Потвърди изтриването +delete_account_title=Изтрий профил +delete_account_desc=Този профил ще бъде окончателно изтрит. Желаете ли да продължите? + +[repo] +owner=Притежател +repo_name=Име на хранилището +repo_name_helper=Добро име на хранилище е име, състоящо от кратки, запомнящи се и уникални ключови думи. +visibility=Видимост +visiblity_helper=Това хранилище е <span class="ui red text">Частно</span> +visiblity_helper_forced=Административна настройка задължава всички нови хранилища да бъдат <span class="ui red text">Частни</span> +visiblity_fork_helper=(Промяна на тази стойност ще се отрази на всички разклонения) +clone_helper=Нуждаете се от помощ при клониране? Посетете <a target="_blank" href="%s">Помощ</a>! +fork_repo=Разклони хранилището +fork_from=Разклонение от +fork_visiblity_helper=Не може да променяте видимостта на разклонено хранилище. +repo_desc=Описание +repo_lang=Език +repo_lang_helper=Изберете .gitignore файлове +license=Лиценз +license_helper=Изберете лицензионен файл +readme=Readme +readme_helper=Изберете шаблон на readme +auto_init=Инициализиране на това хранилище с избраните файлове и шаблон +create_repo=Създай хранилище +default_branch=Клон по подразбиране +mirror_interval=Интервал на отразяване (часове) +watchers=Watchers +stargazers=Stargazers +forks=Forks + +form.name_reserved=Името на хранилището '%s' е запазено. +form.name_pattern_not_allowed=Име на хранилището от вида '%s' не е позволено. + +need_auth=Изисква удостоверяване +migrate_type=Тип мигриране +migrate_type_helper=Това хранилище ще бъде <span class="text blue">огледало</span> +migrate_repo=Мигрирай хранилище +migrate.clone_address=Адрес за клонирай +migrate.clone_address_desc=Това може да е HTTP/HTTPS/GIT адрес или локален път на сървъра. +migrate.permission_denied=Недостатъчни права за импорт на локални хранилища. +migrate.invalid_local_path=Невалиден път - не съществува или не е директория. +migrate.failed=Migration failed: %v + +forked_from=разклонено от +fork_from_self=Не можете да разклоните хранилище което си е Ваше! +copy_link=Копирай +copy_link_success=Копирано! +copy_link_error=Натиснете ⌘-C или Ctrl-C за да копирате +copied=Успешно копиране +unwatch=Не следи +watch=Следи +unstar=Не харесвам +star=Харесвам +fork=Разклонение + +no_desc=Няма описание +quick_guide=Бърз справочник +clone_this_repo=Клонирай хранилището +create_new_repo_command=Създай ново хранилище чрез командния ред +push_exist_repo=Предай съществуващо хранилище през командния ред +repo_is_empty=Това хранилище е празно. Моля проверете по-късно пак! + +branch=Клон +tree=Дърво +filter_branch_and_tag=Filter branch or tag +branches=Клонове +tags=Маркери +issues=Проблеми +pulls=Заявки за сливане +labels=Етикети +milestones=Етапи +commits=Ревизии +releases=Издания +file_raw=Суров +file_history=История +file_view_raw=Виж суров +file_permalink=Постоянна връзка + +commits.commits=Ревизии +commits.search=Търсене в ревизии +commits.find=Намери +commits.author=Автор +commits.message=Съобщение +commits.date=Дата +commits.older=По-стари +commits.newer=По-нови + +issues.new=Нов проблем +issues.new.labels=Етикети +issues.new.no_label=Няма етикет +issues.new.clear_labels=Изчисти етикети +issues.new.milestone=Етап +issues.new.no_milestone=Няма етап +issues.new.clear_milestone=Изчисти етап +issues.new.open_milestone=Отворени етапи +issues.new.closed_milestone=Затворени етапи +issues.new.assignee=Изпълнител +issues.new.clear_assignee=Изчисти изпълнител +issues.new.no_assignee=Няма изпълнител +issues.create=Докладвай проблем +issues.new_label=Нов етикет +issues.new_label_placeholder=Име на етикета... +issues.create_label=Създай етикет +issues.open_tab=%d отворени +issues.close_tab=%d затворени +issues.filter_label=Етикет +issues.filter_label_no_select=Не е избран етикет +issues.filter_milestone=Етап +issues.filter_milestone_no_select=Липсва избран етап +issues.filter_assignee=Изпълнител +issues.filter_assginee_no_select=Няма избран изпълнител +issues.filter_type=Тип +issues.filter_type.all_issues=Всички проблеми +issues.filter_type.assigned_to_you=Възложени на Вас +issues.filter_type.created_by_you=Създадени от Вас +issues.filter_type.mentioning_you=Споменават лично +issues.filter_sort=Подредба +issues.filter_sort.latest=Най-нови +issues.filter_sort.oldest=Най-стари +issues.filter_sort.recentupdate=Последно променени +issues.filter_sort.leastupdate=Отдавна променени +issues.filter_sort.mostcomment=Най-много коментирани +issues.filter_sort.leastcomment=Най-малко коментирани +issues.opened_by=отворен %[1]s от <a href="%[2]s">%[3]s</a> +issues.opened_by_fake=отворен %[1]s от %[2]s +issues.previous=Предишна +issues.next=Следваща +issues.open_title=Отворени +issues.closed_title=Затворени +issues.num_comments=%d коментара +issues.commented_at=`коментира <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.no_content=Все още няма съдържание. +issues.close_issue=Затвори +issues.close_comment_issue=Kоментирай и затвори +issues.reopen_issue=Отвори повторно +issues.reopen_comment_issue=Kоментирай и oтвори отново +issues.create_comment=Коментирай +issues.closed_at=`затвори <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.reopened_at=`повторно отвори <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.commit_ref_at=`посочи този проблем от ревизия <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.poster=Участник +issues.admin=Администратор +issues.owner=Притежател +issues.sign_up_for_free=Регистрирай се безплатно +issues.sign_in_require_desc=за да се включите в този разговор. Вече имате профил? <a href="%s">Влезте, за да коментирате</a> +issues.edit=Редакция +issues.cancel=Отказ +issues.save=Запис +issues.label_title=Име на етикета +issues.label_color=Цвят на етикет +issues.label_count=%d етикети +issues.label_open_issues=%d отворени проблема +issues.label_edit=Редакция +issues.label_delete=Изтрий +issues.label_modify=Промяна на етикет +issues.label_deletion=Изтрий етикет +issues.label_deletion_desc=При изтриване на този етикет ще се премахне информацията за него във всички свързани проблеми. Желаете ли да продължите? +issues.label_deletion_success=Етикетът е изтрит успешно! + +pulls.new=New Pull Request +pulls.compare_changes=Сравни промените +pulls.compare_changes_desc=Сравнява двата клона и създава заявка за сливане за разликите помежду им. +pulls.compare_base=родителска версия +pulls.compare_compare=сравни +pulls.filter_branch=Филтър по клон +pulls.no_results=Няма резултати. +pulls.nothing_to_compare=Няма нищо за сравняване, защото родителският клон и върхът са еднакви. +pulls.has_pull_request=`Вече има заявка за сливане между тези две цели: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>` +pulls.create=Създай заявка за сливане +pulls.title_desc=заяви обединяване на %[1]d ревизии от <code>%[2]s</code> във <code>%[3]s</code> +pulls.merged_title_desc=обедини %[1]d ревизии от <code>%[2]s</code> във <code>%[3]s</code> %[4]s +pulls.tab_conversation=Разговор +pulls.tab_commits=Ревизии +pulls.tab_files=Променени файлове +pulls.reopen_to_merge=Моля повторно отворете тази заявка за сливане за да се извърши обединяване. +pulls.merged=Обединени +pulls.has_merged=Тази заявка за сливане е обединена успешно! +pulls.data_broken=Данните от тази заявка за сливане са невалидни поради изтрита информация за някое разклонение. +pulls.is_checking=Проверката за конфликт все още е в ход. Моля обновете страницата след малко. +pulls.can_auto_merge_desc=Можете да извършвате авто-обединяване на тази заявка за сливане. +pulls.cannot_auto_merge_desc=Не можете да извършите авто-обединяване, защото съществуват конфликти между ревизиите. +pulls.cannot_auto_merge_helper=Моля, използвайте инструменти на командния ред за да отстраните проблема. +pulls.merge_pull_request=Обедини заявка за сливане +pulls.open_unmerged_pull_exists=`Невъзможно повторно отваряне, защото вече съществува заявка за сливане (#%d) от същото хранилище със същата информация за обединяване, която чака да бъде извършена` + +milestones.new=Нов етап +milestones.open_tab=%d отворени +milestones.close_tab=%d затворени +milestones.closed=Затворен %s +milestones.no_due_date=Няма краен срок +milestones.open=Отвори +milestones.close=Затвори +milestones.new_subheader=Създайте етапи за да организирате проблемите. +milestones.create=Създай етап +milestones.title=Заглавие +milestones.desc=Описание +milestones.due_date=Краен срок (опционален) +milestones.clear=Изчисти +milestones.invalid_due_date_format=Невалиден формат на крайния срок, трябва да е 'гггг-мм-дд'. +milestones.create_success=Етап '%s' е създаден успешно! +milestones.edit=Редактирай етап +milestones.edit_subheader=Въведете точни описания на етапите, за да не се объркват участниците. +milestones.cancel=Отказ +milestones.modify=Промяна на етап +milestones.edit_success=Промените в етап '%s' са запазени успешно! +milestones.deletion=Изтрий етап +milestones.deletion_desc=При изтриване на етап ще се премахне информацията за него от всички свързани проблеми. Желаете ли да продължите? +milestones.deletion_success=Етапът е изтрит успешно! + +settings=Настройки +settings.options=Опции +settings.collaboration=Сътрудничество +settings.hooks=Уеб-куки +settings.githooks=Git куки +settings.basic_settings=Основни настройки +settings.danger_zone=Опасната зона +settings.site=Официален сайт +settings.update_settings=Обнови настройките +settings.change_reponame_prompt=Тази промяна ще засегне връзките, които се отнасят до това хранилището. +settings.transfer=Прехвърли притежание +settings.transfer_desc=Прехвърля това хранилище на друг потребител или към организация, в която имате права на администратор. +settings.new_owner_has_same_repo=Новият притежател вече има хранилище със същото име. Изберете друго име. +settings.delete=Изтриване на това хранилище +settings.delete_desc=След като изтриете хранилището, няма връщане назад. Моля, бъдете сигурни. +settings.transfer_notices_1=- Вие ще загубите достъп, ако новият притежател е индивидуален потребител. +settings.transfer_notices_2=- Вие ще запазите достъпа си, ако новият притежател е организация и ако вие сте един от притежателите ѝ. +settings.transfer_form_title=Моля въведете следната информация за да потвърдите операцията: +settings.delete_notices_1=- Тази операция <strong>НЕ МОЖЕ</strong> да бъде отменена в последствие. +settings.delete_notices_2=- Тази операция ще изтрие всичко от това хранилище, включително Git данни, проблеми, коментари и достъпа на сътрудници. +settings.delete_notices_fork_1=- Ако това хранилище е публично, всички негови разклонения ще останат независими след изтриването му. +settings.delete_notices_fork_2=- Ако това хранилище е частно, всички негови разклонения ще бъдат премахнати по време на изтриването. +settings.delete_notices_fork_3=- Ако желаете да запазите всички разклонения след изтриването му, първо направете хранилището публично. +settings.update_settings_success=Настройките на хранилището са запазени успешно. +settings.transfer_owner=Нов притежател +settings.make_transfer=Прехвърли +settings.transfer_succeed=Притежанието на хранилището е прехвърлено успешно. +settings.confirm_delete=Потвърди изтриването +settings.add_collaborator=Добави нов сътрудник +settings.add_collaborator_success=Добавен е нов сътрудник. +settings.remove_collaborator_success=Сътрудникът е премахнат. +settings.search_user_placeholder=Search user... +settings.user_is_org_member=Потребителят е член на организацията и не може да бъде добавен като сътрудник. +settings.add_webhook=Добави уеб-кука +settings.hooks_desc=Уеб-куките много приличат на обикновен HTTP POST тригер. Когато нещо се случи в Gogs, ние ще изпратим уведомление до сървъра, който посочите. Научете повече в <a target="_blank" href="%s">Ръководство за уеб-куки</a>. +settings.webhook_deletion=Изтрий уеб-кука +settings.webhook_deletion_desc=При изтриване на тази уеб-кука ще се премахне информацията за нея и цялата хронология на нейното изпращане. Желаете ли да продължите? +settings.webhook_deletion_success=Уеб-куката е изтрита успешно! +settings.webhook.request=Заявка +settings.webhook.response=Отговор +settings.webhook.headers=Заглавки +settings.webhook.payload=Съдържание +settings.webhook.body=Тяло +settings.githooks_desc=Git куките се изпълняват от Git. Вие може да промените файловете с поддържаните куки в списъка по-долу, за да изпълните външни операции. +settings.githook_edit_desc=Ако куката е неактивна, ще бъде представено примерно съдържание. Ако оставите съдържанието празно, то тази кука ще бъде изключена. +settings.githook_name=Име на куката +settings.githook_content=Съдържание на куката +settings.update_githook=Обнови куката +settings.add_webhook_desc=Gogs ще изпрати <code>POST</code> заявка към указания URL адрес заедно с информация за събитието, което е настъпило. Също можете да укажете в какъв формат желаете да получите данните при задействане на куката (JSON, x-www-form-urlencoded, XML) и др. Допълнително описание можете да намерите в нашето <a target="_blank" href="%s">Ръководство за уеб-куки</a>. +settings.payload_url=URL адрес на изпращане +settings.content_type=Тип на съдържанието +settings.secret=Тайна +settings.slack_username=Потребителско име +settings.slack_icon_url=URL адрес на икона +settings.slack_color=Цвят +settings.event_desc=При какви събития да се задейства тази уеб-кука? +settings.event_push_only=Само при събитие от тип <code>предаване</code>. +settings.event_send_everything=При <strong>всички</strong> събития. +settings.event_choose=Нека избера от какво имам нужда. +settings.event_create=Създаване +settings.event_create_desc=Създаване на клон или маркер +settings.event_push=Предаване +settings.event_push_desc=Git предаване към хранилището +settings.active=Активна +settings.active_helper=Подробности относно събитието, което е задействало куката, също ще бъдат изпратени. +settings.add_hook_success=Новата уеб-кука е добавена успешно. +settings.update_webhook=Обнови уеб-куката +settings.update_hook_success=Уеб-куката е запазена успешно. +settings.delete_webhook=Изтрий уеб-куката +settings.recent_deliveries=Последни изпращания +settings.hook_type=Тип на куката +settings.add_slack_hook_desc=Добавяне на интеграция със <a href="%s">Slack</a> във Вашето хранилище. +settings.slack_token=Токен +settings.slack_domain=Домейн +settings.slack_channel=Канал +settings.deploy_keys=Ключове за внедряване +settings.add_deploy_key=Добави ключ за внедряване +settings.no_deploy_keys=Все още няма настроен никакъв ключ за внедряване. +settings.title=Заглавие +settings.deploy_key_content=Съдържание +settings.key_been_used=Съдържанието на ключа за внедряване е използвано. +settings.key_name_used=Ключ за внедряване с такова име вече съществува. +settings.add_key_success=Новият ключ за внедряване '%s' е добавен успешно! +settings.deploy_key_deletion=Изтрий ключ за внедряване +settings.deploy_key_deletion_desc=При изтриването на този ключ за внедряване ще се премахнат свързаните права за достъп до това хранилище. Желаете ли да продължите? +settings.deploy_key_deletion_success=Ключът за внедряване е изтрит успешно! + +diff.browse_source=Преглед на кода +diff.parent=родител +diff.commit=ревизия +diff.data_not_available=Няма данни за разлики. +diff.show_diff_stats=Покажи статистика за разликите +diff.stats_desc=променени са <strong>%d файла</strong>, в които са <strong>добавени %d</strong> реда и са <strong>изтрити %d</strong> реда +diff.bin=BIN +diff.view_file=Преглед на файла + +release.releases=Издания +release.new_release=Ново издание +release.draft=Чернови +release.prerelease=Предварителни +release.stable=Стабилни +release.edit=редактиране +release.ahead=<strong>%d</strong> ревизии на %s след това издание +release.source_code=Изходен код +release.new_subheader=Publish releases to iterate product. +release.edit_subheader=Detailed change log can help users understand what has been improved. +release.tag_name=Име на маркера +release.target=Цел +release.tag_helper=Изберете съществуващ маркер или създайте нов маркер по време на публикуване. +release.title=Title +release.content=Content +release.write=Писане +release.preview=Преглед +release.loading=Зареждане... +release.prerelease_desc=Това е предварително издание +release.prerelease_helper=Ние ще отбележим, че това издание не е завършено за употреба. +release.cancel=Cancel +release.publish=Публикувай издание +release.save_draft=Запис на чернова +release.edit_release=Редактирай издание +release.delete_release=Delete This Release +release.deletion=Release Deletion +release.deletion_desc=Delete this release will delete corresponding Git tag. Do you want to continue? +release.deletion_success=Release has been deleted successfully! +release.tag_name_already_exist=Издание с това име на маркер вече съществува. +release.downloads=Downloads + +[org] +org_name_holder=Име на организацията +org_full_name_holder=Пълно име на организацията +org_name_helper=Добрите имена на организация са кратки и запомнящи се. +create_org=Създай организация +repo_updated=Обновено +people=Хора +invite_someone=Поканете някого +teams=Екипи +lower_members=членове +lower_repositories=хранилища +create_new_team=Създай нов екип +org_desc=Описание +team_name=Име на екипа +team_desc=Описание +team_name_helper=Ще използвате това име при споменаване на този екип в разговори. +team_desc_helper=Каква е целта на този екип? +team_permission_desc=Какво ниво на достъп трябва да има този екип? + +form.name_reserved=Името на организацията '%s' е запазено. +form.name_pattern_not_allowed=Име на организацията от вида '%s' не е разрешено. + +settings=Настройки +settings.options=Опции +settings.full_name=Пълно име +settings.website=Уебсайт +settings.location=Локация +settings.update_settings=Обнови настройките +settings.update_setting_success=Настройките на организацията са запазени успешно. +settings.change_orgname_prompt=Този промяна ще засегне всички връзки сочещи към организацията. +settings.update_avatar_success=Настройките на аватара на организацията са запазени успешно. +settings.delete=Изтрий организацията +settings.delete_account=Изтриване на тази организация +settings.delete_prompt=Организацията ще бъде изтрита и операцията <strong>НЕ МОЖЕ</strong> да бъде отменена в последствие! +settings.confirm_delete_account=Потвърди изтриването +settings.delete_org_title=Изтрий организацията +settings.delete_org_desc=Тази организация ще бъде окончателно изтрита. Желаете ли да продължите? +settings.hooks_desc=Добави уеб-куки, които ще бъдат използвани от <strong>всички хранилища</strong> в тази организация. + +members.public=Публични +members.public_helper=направи частен +members.private=Частни +members.private_helper=направи публичен +members.owner=Притежател +members.member=Участник +members.conceal=Прикриване +members.remove=Премахни +members.leave=Напусни +members.invite_desc=Започнете да пишете потребителското име, за да поканите член в %s: +members.invite_now=Покани + +teams.join=Присъедини се +teams.leave=Напусни +teams.read_access=Достъп за четене +teams.read_access_helper=Този екип ще може да вижда и клонира своите хранилища. +teams.write_access=Достъп за запис +teams.write_access_helper=Този екип ще може да чете своите хранилища и ще може да предава към тях. +teams.admin_access=Администраторски достъп +teams.admin_access_helper=Този екип ще може да добавя код, данни и нови сътрудници в своите хранилища. +teams.no_desc=Този екип няма описание +teams.settings=Настройки +teams.owners_permission_desc=Притежателите имат пълен достъп до <strong>всички хранилища</strong> и имат <strong>права на администратори</strong> на организацията. +teams.members=Членовете на екипа +teams.update_settings=Обнови настройките +teams.delete_team=Изтриване на този екип +teams.add_team_member=Добави член на екипа +teams.delete_team_title=Изтрий екипа +teams.delete_team_desc=Тъй като този екип ще бъдат изтрит, членовете му може да загубят достъп до някои хранилища. Желаете ли да продължите? +teams.delete_team_success=Този екип е бил изтрит успешно. +teams.read_permission_desc=Този екип предоставя достъп за <strong>четене</strong>: членове могат да разглеждат и клонират хранилищата на екипа. +teams.write_permission_desc=Този екип предоставя достъп за <strong>писане</strong>: членовете могат да четат от и предават към хранилищата на екипа. +teams.admin_permission_desc=Този екип предоставя <strong>администраторски</strong> достъп: членовете могат да четат от, да предават към и да добавя нови сътрудници към хранилищата на екипа. +teams.repositories=Хранилища на екипа +teams.add_team_repository=Добави хранилище на екипа +teams.remove_repo=Премахни +teams.add_nonexistent_repo=Хранилището, което се опитвате да добавите не съществува. Моля първо го създайте! + +[admin] +dashboard=Табло +users=Потребители +organizations=Организации +repositories=Хранилища +authentication=Удостоверявания +config=Конфигурация +notices=Системни известия +monitor=Наблюдение +first_page=Първа +last_page=Последна +total=Общо: %d + +dashboard.statistic=Статистика +dashboard.operations=Операции +dashboard.system_status=Наблюдение на системния статус +dashboard.statistic_info=Gogs базата данни има <b>%d</b> потребители, <b>%d</b> организации, <b>%d</b> публични ключове, <b>%d</b> хранилища, <b>%d</b> наблюдавания, <b>%d</b> харесвания, <b>%d</b> действия, <b>%d</b> достъпи, <b>%d</b> проблеми, <b>%d</b> коментари, <b>%d</b> социални регистрации, <b>%d</b> последователи, <b>%d</b> огледала, <b>%d</b> издания, <b>%d</b> източници за вписване, <b>%d</b> уеб-куки, <b>%d</b> етапи, <b>%d</b> етикети, <b>%d</b> задачи на куки, <b>%d</b> екипи, <b>%d</b> задачи при актуализация, <b>%d</b> прикачени файлове. +dashboard.operation_name=Име на операцията +dashboard.operation_switch=Превключи +dashboard.operation_run=Изпълни +dashboard.clean_unbind_oauth=Почисти несвързани OAuthes +dashboard.clean_unbind_oauth_success=Всички несвързани OAuthes са изтрити успешно. +dashboard.delete_inactivate_accounts=Изтрий всички неактивни профили +dashboard.delete_inactivate_accounts_success=Всички неактивни профили са изтрити успешно. +dashboard.delete_repo_archives=Изтрий всички архиви на хранилища +dashboard.delete_repo_archives_success=Всички архиви на хранилищата са изтрити успешно. +dashboard.delete_missing_repos=Delete all repository records that lost Git files +dashboard.delete_missing_repos_success=All repository records that lost Git files have been deleted successfully. +dashboard.git_gc_repos=Почисти изтрити данни в хранилищата +dashboard.git_gc_repos_success=Всички хранилища са почистени от изтрити данни успешно. +dashboard.resync_all_sshkeys=Презапис на ".ssh/authorized_keys" файл (внимание: не-Gogs ключове ще бъдат загубени) +dashboard.resync_all_sshkeys_success=Всички публични ключове са презаписани успешно. +dashboard.resync_all_update_hooks=Презапис на всички куки, закачени на актуализация на хранилищата (необходимо, когато се ползва собствен път за конфигурацията) +dashboard.resync_all_update_hooks_success=Всички куки, закачени на актуализация на хранилищата, са презаписани успешно. + +dashboard.server_uptime=Операционно време +dashboard.current_goroutine=Текущи Goroutines +dashboard.current_memory_usage=Текущо използвана памет +dashboard.total_memory_allocated=Общо заделена памет +dashboard.memory_obtained=Получена памет +dashboard.pointer_lookup_times=Брой обхождания на указатели +dashboard.memory_allocate_times=Брой заделяния на памет +dashboard.memory_free_times=Брой освобождавания на памет +dashboard.current_heap_usage=Текущо използвана осн. памет +dashboard.heap_memory_obtained=Получена осн. памет +dashboard.heap_memory_idle=Празна осн. памет +dashboard.heap_memory_in_use=Използвана осн. памет +dashboard.heap_memory_released=Освободена осн. памет +dashboard.heap_objects=Обекти в осн. памет +dashboard.bootstrap_stack_usage=Използван стек за bootstrap +dashboard.stack_memory_obtained=Заделена памет в стека +dashboard.mspan_structures_usage=Използвани MSpan обекти +dashboard.mspan_structures_obtained=Получени MSpan обекти +dashboard.mcache_structures_usage=Използвани MCache обекти +dashboard.mcache_structures_obtained=Получени MCache обекти +dashboard.profiling_bucket_hash_table_obtained=Получени Profiling Bucket Hash Table +dashboard.gc_metadata_obtained=Получени GC метаданни +dashboard.other_system_allocation_obtained=Получена друга системна памет +dashboard.next_gc_recycle=Следващо рециклиране на GC +dashboard.last_gc_time=Време от последен GC +dashboard.total_gc_time=Общо време за GC +dashboard.total_gc_pause=Общо пауза за GC +dashboard.last_gc_pause=Последна пауза за GC +dashboard.gc_times=Брой GC + +users.user_manage_panel=Управление на потребителя +users.new_account=Създай нов профил +users.name=Име +users.activated=Активиран +users.admin=Администратор +users.repos=Хранилища +users.created=Създаване +users.send_register_notify=Прати уведомление на потребителя при регистрация +users.new_success=Новият профил '%s' е добавен успешно. +users.edit=Редакция +users.auth_source=Източник за удостоверяване +users.local=Локално +users.auth_login_name=Потребителско име за удостоверяване +users.password_helper=Оставете празна ако не се променя. +users.update_profile_success=Профилът е запазен успешно. +users.edit_account=Редактирай профил +users.is_activated=Този профил е активиран +users.is_admin=Този профил има административни права +users.allow_git_hook=Този профил има разрешение да създава Git куки +users.allow_import_local=Този профил има права за импорт на локални хранилища +users.update_profile=Обнови профила +users.delete_account=Изтрий този профил +users.still_own_repo=Този профил притежава поне едно хранилище. Първо трябва да изтриете хранилището или да го прехвърлите на друг потребител. +users.still_has_org=Този профил е член на поне една организация. Първо трябва да напуснете или изтриете тези организации. +users.deletion_success=Профилът е изтрит успешно! + +orgs.org_manage_panel=Управление на организацията +orgs.name=Име +orgs.teams=Екипи +orgs.members=Членове + +repos.repo_manage_panel=Управление на хранилището +repos.owner=Притежател +repos.name=Име +repos.private=Лично +repos.watches=Наблюдавания +repos.stars=Харесвания +repos.issues=Проблеми + +auths.auth_manage_panel=Управление на удостоверявания +auths.new=Добави нов източник за удостоверяване +auths.name=Име +auths.type=Тип +auths.enabled=Активен +auths.updated=Обновен +auths.auth_type=Тип на удостоверяване +auths.auth_name=Име на удостоверяване +auths.domain=Домейн +auths.host=Сървър +auths.port=Порт +auths.bind_dn=Име (DN) за свръзка +auths.bind_password=Парола за свръзка +auths.bind_password_helper=Внимание: Тази парола се запазва некриптирана. Моля използвайте потребител, който няма административен достъп. +auths.user_base=База с потребители +auths.user_dn=Име (DN) на потребител +auths.attribute_name=Атрибут за име +auths.attribute_surname=Атрибут за фамилия +auths.attribute_mail=Атрибут за ел. поща +auths.filter=Филтър за потребители +auths.admin_filter=Филтър за администратори +auths.ms_ad_sa=Ms Ad SA +auths.smtp_auth=SMTP удостоверяване +auths.smtphost=SMTP сървър +auths.smtpport=SMTP порт +auths.allowed_domains=Разрешени домейни +auths.allowed_domains_helper=Оставете празно за да не се ограничават домейните. За множество домейни използвайте запетая за разделител. +auths.enable_tls=Включи TLS криптиране +auths.skip_tls_verify=Пропусни проверка на TLS +auths.pam_service_name=Име на PAM услуга +auths.enable_auto_register=Включи автоматична регистрация +auths.tips=Съвети +auths.edit=Редактирай настройки за удостоверяване +auths.activated=Това удостоверяване е активно +auths.new_success=Новото удостоверяване '%s' е добавено успешно. +auths.update_success=Настройките за удостоверяване са запазени успешно. +auths.update=Обнови настройки за удостоверяване +auths.delete=Изтриване на това удостоверяване +auths.delete_auth_title=Изтрий удостоверяването +auths.delete_auth_desc=Това удостоверяване ще бъде изтрито. Желаете ли да продължите? +auths.deletion_success=Удостоверяването е изтрито успешно! + +config.server_config=Сървърни настройки +config.app_name=Име на приложението +config.app_ver=Версия на приложението +config.app_url=URL адрес на приложението +config.domain=Домейн +config.offline_mode=Офлайн режим +config.disable_router_log=Изключи журнал на маршрутизатора +config.run_user=Потребителски контекст +config.run_mode=Режим на изпълнение +config.repo_root_path=Основен път към хранилища +config.static_file_root_path=Път към статични файлове +config.log_file_root_path=Път към журнал +config.script_type=Тип на скрипта +config.reverse_auth_user=Потребителско име при обратно удостоверяване +config.db_config=Настройки на базата данни +config.db_type=Тип +config.db_host=Сървър +config.db_name=Име +config.db_user=Потребител +config.db_ssl_mode=SSL режим +config.db_ssl_mode_helper=(само за postgres) +config.db_path=Път +config.db_path_helper=(за "sqlite3" и "tidb") +config.service_config=Настройка на услугата +config.register_email_confirm=Изисквай потвърждение на адреси на ел. поща +config.disable_register=Изключи нови регистрации +config.show_registration_button=Покажи бутон за регистрация +config.require_sign_in_view=Изисквай вписване за преглед +config.enable_cache_avatar=Включи кеширане на аватари +config.mail_notify=Уведомяване по ел. поща +config.disable_key_size_check=Изключи проверка минимален размер на ключ +config.enable_captcha=Включи Captcha +config.active_code_lives=Кодове за активиране +config.reset_password_code_lives=Кодове за изчистване на парола +config.webhook_config=Конфигурация на уеб-куки +config.queue_length=Дължина на опашка +config.deliver_timeout=Време за отказ при изпращане +config.skip_tls_verify=Пропусни проверка на TLS +config.mailer_config=Конфигурация на мейлър +config.mailer_enabled=Активен +config.mailer_disable_helo=Изключи HELO +config.mailer_name=Име +config.mailer_host=Сървър +config.mailer_user=Потребител +config.oauth_config=OAuth конфигурация +config.oauth_enabled=Активна +config.cache_config=Конфигурация на кеша +config.cache_adapter=Кеш адаптер +config.cache_interval=Кеш интервал +config.cache_conn=Кеш на връзката +config.session_config=Конфигурация на сесии +config.session_provider=Доставчик на сесии +config.provider_config=Конфигурация на доставчик +config.cookie_name=Име на бисквитката +config.enable_set_cookie=Включи използване на бисквитки +config.gc_interval_time=GC през интервал +config.session_life_time=Период на валидност на сесиите +config.https_only=HTTPS само +config.cookie_life_time=Период на валидност на бисквитките +config.picture_config=Конфигурация на изображения +config.picture_service=Услуги за снимки +config.disable_gravatar=Изключи Gravatar +config.log_config=Конфигурация на журнал +config.log_mode=Режим на журнал + +monitor.cron=Cron задачи +monitor.name=Име +monitor.schedule=График +monitor.next=Следващ път +monitor.previous=Предишен път +monitor.execute_times=Брой изпълнения +monitor.process=Изпълнявани процеси +monitor.desc=Описание +monitor.start=Начален час +monitor.execute_time=Време за изпълнение + +notices.system_notice_list=Системни известия +notices.type=Тип +notices.type_1=Хранилище +notices.desc=Описание +notices.op=Oп. +notices.delete_success=Системното съобщение е изтрито успешно. + +[action] +create_repo=създаде хранилище <a href="%s"> %s</a> +rename_repo=преименува хранилище от <code>%[1]s</code> на <a href="%[2]s">%[3]s</a> +commit_repo=предаде към <a href="%[1]s/src/%[2]s">%[3]s</a> в <a href="%[1]s">%[4]s</a> +create_issue=`отвори проблем <a href="%s/issues/%s">%s#%[2]s"</a>` +create_pull_request=`създаде заявка за сливане <a href="%s/pulls/%s">%s#%[2]s</a>` +comment_issue=`коментира проблем <a href="%s/issues/%s">%s#%[2]s"</a>` +merge_pull_request=`обедини заявка за сливане <a href="%s/pulls/%s">%s#%[2]s</a>` +transfer_repo=прехвърли хранилище <code>%s</code> към <a href="%s">%s</a> +push_tag=предаде маркер <a href="%s/src/%s">%[2]s</a> към <a href="%[1]s">[3]s</a> +compare_2_commits=Сравнение между тези 2 ревизии + +[tool] +ago=преди +from_now=след +now=сега +1s=%s 1 секунда +1m=%s 1 минута +1h=%s 1 час +1d=%s 1 ден +1w=%s 1 седмица +1mon=%s 1 месец +1y=%s 1 година +seconds=%[2]s %[1]d секунди +minutes=%[2]s %[1]d минути +hours=%[2]s %[1]d часа +days=%[2]s %[1]d дни +weeks=%[2]s %[1]d седмици +months=%[2]s %[1]d месеца +years=%[2]s %[1]d години +raw_seconds=секунди +raw_minutes=минути + +[dropzone] +default_message=Пуснете файлове тук или щракнете за качване. +invalid_input_type=Невъзможно качване на файловете от този тип. +file_too_big=Размер на файла ({{filesize}} MB) надвишава максималния размер ({{maxFilesize}} MB). +remove_file=Премахни файл + diff --git a/conf/locale/locale_de-DE.ini b/conf/locale/locale_de-DE.ini index 2b9e226f..dd550251 100755 --- a/conf/locale/locale_de-DE.ini +++ b/conf/locale/locale_de-DE.ini @@ -1,992 +1,1009 @@ -app_desc=Ein einfacher, selbst gehosteter Git-Service, geschrieben in Go
-
-home=Home
-dashboard=Übersicht
-explore=Erkunden
-help=Hilfe
-sign_in=Anmelden
-sign_out=Abmelden
-sign_up=Registrieren
-register=Registrieren
-website=Webseite
-version=Version
-page=Seite
-template=Vorlage
-language=Sprache
-create_new=Erstellen...
-user_profile_and_more=Benutzerprofil und mehr
-signed_in_as=Eingeloggt als
-
-username=Benutzername
-email=E-Mail
-password=Passwort
-re_type=Passwort bestätigen
-captcha=Captcha
-
-repository=Repository
-organization=Organisation
-mirror=Spiegel
-new_repo=Neues Repository
-new_migrate=Neue Migration
-new_fork=Neues abgespaltetes Repository
-new_org=Neue Organisation
-manage_org=Organisationen verwalten
-admin_panel=Admin-Panel
-account_settings=Kontoeinstellungen
-settings=Einstellungen
-your_profile=Dein Profil
-your_settings=Deine Einstellungen
-
-news_feed=Neuigkeiten
-pull_requests=Pull Requests
-issues=Issues
-
-cancel=Abbrechen
-
-[search]
-search=Suchen...
-repository=Repository
-user=Benutzer
-issue=Problem
-code=Code
-
-[install]
-install=Installation
-title=Installation für erstmaligen Start
-docker_helper=Wenn Gogs innerhalb Docker läuft, lies dir bitte die <a target="_blank" href="%s">Guidelines</a> genau durch, bevor du irgendwas auf dieser Seite änderst!
-requite_db_desc=Gogs benötigt MySQL, PostgreSQL, SQLite3 oder TiDB.
-db_title=Datenbankeinstellungen
-db_type=Datenbanktyp
-host=Host
-user=Benutzer
-password=Passwort
-db_name=Datenbankname
-db_helper=Bitte verwenden sie die InnoDB-Engine mit utf8_general_ci Zeichensatz für MySQL.
-ssl_mode=SSL-Modus
-path=Pfad
-sqlite_helper=Der Dateipfad zur SQLite3 oder TiDB Datenbank.
-err_empty_db_path=SQLite3 oder TiDB Datenbankpfad darf nicht leer sein.
-err_invalid_tidb_name=Der TiDB Datenbankname darf kein "." und kein "-" enthalten.
-no_admin_and_disable_registration=Du kannst die Registrierung nicht deaktivieren, ohne ein Administratorkonto zu erstellen.
-err_empty_admin_password=Das Administrator-Passwort darf nicht leer sein.
-
-general_title=Allgemeine Einstellungen
-app_name=Anwendungsname
-app_name_helper=Hier den Organisationsnamen einfügen.
-repo_path=Repository Root-Verzeichnispfad
-repo_path_helper=Alle Git-Repositorys werden in diesem Verzeichnis gespeichert.
-run_user=Ausführender Benutzer
-run_user_helper=Der Benutzer muss die Zugriffsberechtigung für das Repository Root-Verzeichnis haben und der ausführende Benutzer von Gogs sein.
-domain=Domain
-domain_helper=Dies hat Auswirkung auf die SSH clone URLs.
-ssh_port=SSH Port
-ssh_port_helper=Die Portnummer deines SSH-Servers, lass dieses Feld leer, wenn du SSH deaktivieren möchtest.
-http_port=HTTP Port
-http_port_helper=Auf dieser Port Nummer wird Gogs erreichbar sein.
-app_url=Anwendungs-URL
-app_url_helper=Dies hat Auswirkung auf die HTTP/HTTPS clone URLs und für die E-Mails.
-
-optional_title=Optionale Einstellungen
-email_title=E-Mail-Service Einstellungen
-smtp_host=SMTP Host
-smtp_from=Von
-smtp_from_helper=Absender-Adresse nach RFC 5322. Entweder nur eine E-Mail Adresse oder im folgenden Format: "Name" <email@example.com>.
-mailer_user=Sender E-mail
-mailer_password=Sender Passwort
-register_confirm=Registrierungsbestätigung aktivieren
-mail_notify=E-Mail-Benachrichtigungen aktivieren
-server_service_title=Server- und sonstige Diensteinstellungen
-offline_mode=Offline-Modus aktivieren
-offline_mode_popup=Deaktiviere das CDN auch im Produktionsmodus, alle Dateien werden von diesem Server ausgeliefert.
-disable_gravatar=Gravatar-Dienst deaktivieren
-disable_gravatar_popup=Gravatar und benutzerdefinierte Quellen deaktivieren, alle Avatare werden standardmäßig vom Nutzer hochgeladen oder sind Standardavatare.
-disable_registration=Benutzerregistrierung deaktivieren
-disable_registration_popup=Deaktiviere die Benutzerregistrierung, nur Administratoren können Benutzerkonten anlegen.
-enable_captcha=Captcha aktivieren
-enable_captcha_popup=Benötigt Captcha-Überprüfung für Registrierung durch Benutzer.
-require_sign_in_view=Erfordere Anmeldung, um Inhalte anzusehen
-require_sign_in_view_popup=Lediglich angemeldete Benutzer können Inhalte betrachten, Gäste sehen nur die Anmelden/Registrieren Seite.
-admin_setting_desc=Sie müssen jetzt noch keinen Administrator-Account anlegen. Der erste Benutzer ("ID=1") erhält automatisch Administrationsrechte.
-admin_title=Konto-Einstellungen für den Administrator
-admin_name=Benutzername
-admin_password=Passwort
-confirm_password=Passwort bestätigen
-admin_email=E-Mail
-install_gogs=Gogs installieren
-test_git_failed=Fehler beim Test des 'git' Kommandos: %v
-sqlite3_not_available=Ihre Gogs-Version unterstützt kein SQLite3, bitte lade dir die offizielle binäre Version von %s herunter, NICHT die gobuild-Version.
-invalid_db_setting=Datenbank-Einstellungen sind nicht korrekt: %v
-invalid_repo_path=Repository Root-Verzeichnis ist ungültig: %v
-run_user_not_match=Der ausführende Benutzer ist nicht der aktuelle Benutzer: %s -> %s
-save_config_failed=Fehler beim Speichern der Konfiguration: %v
-invalid_admin_setting=Admin-Konto Einstellungen sind ungültig: %v
-install_success=Herzlich Willkommen! Wir sind froh, dass du dich für Gogs entschieden hast. Wir wünschen viel Vergnügen damit.
-
-[home]
-uname_holder=Benutzername oder E-Mail
-password_holder=Passwort
-switch_dashboard_context=Dashboard Kontext wechseln
-my_repos=Meine Repositories
-collaborative_repos=Gemeinschaftliche Repositories
-my_orgs=Meine Organisationen
-my_mirrors=Meine Spiegel
-view_home=%s betrachten
-
-issues.in_your_repos=In deinen Repositories
-
-[explore]
-repos=Repositories
-
-[auth]
-create_new_account=Neues Konto erstellen
-register_hepler_msg=Du hast bereits ein Konto? Jetzt anmelden!
-social_register_hepler_msg=Du hast bereits ein soziales Konto? Jetzt verknüpfen!
-disable_register_prompt=Es tut uns leid, die Registrierung wurde deaktiviert. Bitte wende dich an den Administrator.
-disable_register_mail=Es tut uns leid, die Bestätigung der Registrierungs-E-Mail wurde deaktiviert.
-remember_me=Angemeldet bleiben
-forgot_password=Passwort vergessen
-forget_password=Passwort vergessen?
-sign_up_now=Du willst ein Konto? Jetzt registrieren!
-confirmation_mail_sent_prompt=Eine neue Bestätigungs-E-Mail wurde an <b>%s</b> gesendet. Kontrolliere dein Postfach innerhalb der nächsten %d Stunden, um die Registrierung abzuschließen.
-sign_in_to_account=Mit deinem Konto anmelden
-active_your_account=Aktiviere dein Konto
-resent_limit_prompt=Es tut uns leid, du sendest zu häufig Aktivierungs-E-Mails. Bitte warte 3 Minuten.
-has_unconfirmed_mail=Hallo %s, du hast eine unbestätigte E-Mail-Adresse (<b>%s</b>). Wenn du keine Bestätigungs-E-Mail erhalten hast oder eine neue benötigst, klicke bitte auf den folgenden Button.
-resend_mail=Hier klicken, um deine Aktivierungs-E-Mail erneut zu versenden
-email_not_associate=Diese E-Mail-Adresse ist mit keinem Konto verknüpft.
-send_reset_mail=Hier klicken, um die E-Mail zum Passwort-zurücksetzen erneut zu versenden
-reset_password=Passwort zurücksetzen
-invalid_code=Es tut uns leid, der Bestätigungscode ist abgelaufen oder ungültig.
-reset_password_helper=Hier klicken, um das Passwort zurückzusetzen
-password_too_short=Das Passwort muss mindenstens 6 Zeichen lang sein
-
-[mail]
-activate_account=Bitte aktiviere dein Konto
-activate_email=Verifiziere deine E-Mail-Adresse
-reset_password=Setze dein Passwort zurück
-register_success=Registrierung erfolgreich, Willkommen
-
-[modal]
-yes=Ja
-no=Nein
-modify=Ändern
-
-[form]
-UserName=Benutzername
-RepoName=Repository-Name
-Email=E-Mail-Adresse
-Password=Passwort
-Retype=Passwort bestätigen
-SSHTitle=SSH-Schlüsselname
-HttpsUrl=HTTPS-URL
-PayloadUrl=Payload-URL
-TeamName=Teamname
-AuthName=Authentifizierungsname
-AdminEmail=Admin E-mail
-
-require_error=` darf nicht leer sein.`
-alpha_dash_error=` muss ausschließlich alphanumerische Zeichen und "-_" enthalten.`
-alpha_dash_dot_error=` muss ausschließlich alphanumerische Zeichen und ".-_" enthalten.`
-size_error=` muss die Größe %s haben.`
-min_size_error=` muss mindestens %s Zeichen enthalten.`
-max_size_error=` darf höchstens %s Zeichen enthalten.`
-email_error=` ist keine gültige E-Mail-Adresse.`
-url_error=` ist keine gültige URL.`
-unknown_error=Unbekannter Fehler:
-captcha_incorrect=Captcha stimmt nicht überein.
-password_not_match=Die Passwörter stimmen nicht überein.
-
-username_been_taken=Benutzername ist bereits vergeben.
-repo_name_been_taken=Repository-Name ist bereits vergeben.
-org_name_been_taken=Organisationsname ist bereits vergeben.
-team_name_been_taken=Teamname ist bereits vergeben.
-email_been_used=E-Mail-Adresse wird bereits verwendet.
-illegal_team_name=Teamname enthält ungültige Zeichen.
-username_password_incorrect=Benutzername oder Passwort ist nicht korrekt.
-enterred_invalid_repo_name=Bitte stelle sicher, dass der eingegebene Repository-Name richtig ist.
-enterred_invalid_owner_name=Bitte stelle sicher, dass der eingegebene Besitzername richtig ist.
-enterred_invalid_password=Bitte stelle sicher, dass das eingegebene Passwort richtig ist.
-user_not_exist=Angegebener Benutzer existiert nicht.
-last_org_owner=Der zu entfernende Benutzer ist der letzte Besitzer einer Organisation. Diese müssen zuerst gelöscht oder übertragen werden.
-
-invalid_ssh_key=Leider sind wir nicht in der Lage, deinen SSH-Schlüssel zu überprüfen: %s
-unable_verify_ssh_key=Gogs kann deinen SSH-Schlüssel nicht verifizieren, nimmt aber an, dass er gültig ist. Bitte stelle dies selbst sicher.
-auth_failed=Authentifizierung fehlgeschlagen: %v
-
-still_own_repo=Dein Konto besitzt noch Repositories. Diese müssen zuerst gelöscht oder übertragen werden.
-still_has_org=Du bist noch Mitglied einer Organisation, bitte lösche zunächst diese Mitgliedschaft.
-org_still_own_repo=Diese Organisation besitzt noch Repositories. Diese müssen zuerst gelöscht oder übertragen werden.
-
-still_own_user=Diese Authentifizierung wird noch von einigen Benutzern genutzt. Entferne diese zuvor und lösche erneut.
-
-target_branch_not_exist=Ziel-Branch existiert nicht
-
-[user]
-change_avatar=Ändere dein Profilbild auf gravatar.com
-change_custom_avatar=Ändere deinen Avatar in den Einstellungen
-join_on=Registriert
-repositories=Repositories
-activity=Öffentliche Aktivität
-followers=Followers
-starred=Markiert
-following=Folgt
-
-form.name_reserved=Der Benutzername '%s' ist reserviert.
-form.name_pattern_not_allowed=Benutzernamens-Muster "%s" ist nicht zulässig.
-
-[settings]
-profile=Profil
-password=Passwort
-ssh_keys=SSH-Schlüssel
-social=Soziale Konten
-applications=Anwendungen
-orgs=Organisationen
-delete=Konto löschen
-uid=Uid
-
-public_profile=Öffentliches Profil
-profile_desc=Deine E-Mail-Adresse ist öffentlich einsehbar und wird für accountspezifische Benachrichtigungen verwendet, sowie für alle web-basierten Funktionen, die über die Seite gemacht werden.
-full_name=Vollständiger Name
-website=Webseite
-location=Standort
-update_profile=Profil aktualisieren
-update_profile_success=Ihr Profil wurde erfolgreich aktualisiert.
-change_username=Benutzername geändert
-change_username_prompt=Diese Änderung wird sich auf die Linkbezüge zu deinem Account auswirken.
-continue=Weiter
-cancel=Abbrechen
-
-enable_custom_avatar=Aktiviere benutzerdefinierten Avatar
-enable_custom_avatar_helper=Aktiviere dies, um deinen Avatar nicht von Gravatar zu laden
-choose_new_avatar=Neuen Avatar auswählen
-update_avatar=Avatar-Einstellung aktualisieren
-uploaded_avatar_not_a_image=Die hochgeladene Datei ist kein Bild.
-no_custom_avatar_available=Kein benutzerdefinierter Avatar verfügbar, Aktivierung ist nicht möglich.
-update_avatar_success=Deine Avatar-Einstellung wurde aktualisiert.
-
-change_password=Passwort ändern
-old_password=Aktuelles Passwort
-new_password=Neues Passwort
-retype_new_password=Neues Passwort erneut eingeben
-password_incorrect=Aktuelles Passwort ist nicht korrekt.
-change_password_success=Passwort geändert. Du kannst dich jetzt mit deinem neuen Passwort anmelden.
-
-emails=E-Mail-Adressen
-manage_emails=E-Mail-Adressen verwalten
-email_desc=Deine primäre E-Mail-Adresse wird für Benachrichtigungen und andere Funktionen verwendet.
-primary=Primär
-primary_email=Als primäre Adresse verwenden
-delete_email=Löschen
-email_deletion=E-Mail löschen
-email_deletion_desc=Das Löschen dieser E-Mail Adresse wird alle Informationen entfernen, die mit dieser E-Mail Adresse verknüpft sind. Willst du fortfahren?
-email_deletion_success=E-Mail-Adresse wurde erfolgreich gelöscht!
-add_new_email=Neue E-Mail-Adresse hinzufügen
-add_email=E-Mail-Adresse hinzufügen
-add_email_confirmation_sent=Eine neue Bestätigungsmail wurde an '%s' gesendet, bitte überprüfen Sie Ihren Posteingang innerhalb von %d Stunden um die Bestätigung abzuschließen.
-add_email_success=Deine neue E-Mail-Adresse wurde erfolgreich hinzugefügt.
-
-manage_ssh_keys=SSH-Schlüssel verwalten
-add_key=SSH-Schlüssel hinzufügen
-ssh_desc=Dies ist eine Liste aller SSH-Schlüssel, die mit deinem Konto verknüpft sind. Bitte entferne alle Schlüssel, die dir nicht bekannt sind.
-ssh_helper=<strong>Du brauchst Hilfe?</strong> Hier ist eine Anleitung zum <a href="%s">Erzeugen von SSH-Schlüsseln</a> oder <a href="%s">Problemlösen einfacher SSH-Probleme</a>.
-add_new_key=SSH-Schlüssel hinzufügen
-ssh_key_been_used=Inhalt des öffentlichen Schlüssels wurde verwendet.
-ssh_key_name_used=Ein öffentlicher Schlüssel mit dem selben Namen existiert bereits.
-key_name=Schlüsselname
-key_content=Inhalt
-add_key_success=Neuer SSH-Schlüssel '%s' wurde erfolgreich hinzugefügt!
-delete_key=SSH-Schlüssel löschen
-ssh_key_deletion=SSH-Schlüssel entfernen
-ssh_key_deletion_desc=Das Löschen dieses SSH-Schlüssels wird alle zugehörigen Zugriffsberechtigungen auf deinen Account entfernen. Möchtest du fortfahren?
-ssh_key_deletion_success=SSH-Schlüssel wurde erfolgreich gelöscht!
-add_on=Hinzugefügt am
-last_used=Zuletzt verwendet am
-no_activity=Keine neuen Aktivitäten
-key_state_desc=Dieser Schlüssel wurde in den letzten 7 Tagen verwendet
-token_state_desc=Dieses Token wurde in den letzten 7 Tagen benutzt
-
-manage_social=Verknüpfte soziale Konten verwalten
-social_desc=Dies ist eine Liste verknüpfter sozialer Konten. Bitte entferne alle Verknüpfungen, die dir nicht bekannt sind.
-unbind=Verknüpfung entfernen
-unbind_success=Die Verknüpfung zum sozialen Konto wurde entfernt.
-
-manage_access_token=Verwaltung persönlicher Zugangs-Tokens
-generate_new_token=Neuen Token erzeugen
-tokens_desc=Von dir generierte Token können benutzt werden, um auf die Gogs APIs zuzugreifen.
-new_token_desc=Momentan erlaubt jeder Token vollen Zugriff auf dein Konto.
-token_name=Token-Name
-generate_token=Token generieren
-generate_token_succees=Neuer Zugangs-Token wurde erstellt! Stelle sicher, dass du den Token kopiert hast, da du ihn später nicht mehr ansehen kannst!
-delete_token=Löschen
-access_token_deletion=Entfernung von persönlichen Token
-access_token_deletion_desc=Das Löschen dieses persönlichen Tokens wird alle zugehörigen Zugriffe der Anwendung entfernen. Möchtest du fortfahren?
-delete_token_success=Persönlicher Zugriffs-Token wurde erfolgreich entfernt! Vergiss nicht deine Anwendung zu aktualisieren.
-
-delete_account=Konto löschen
-delete_prompt=Diese Aktion wird dein Konto dauerhaft löschen und kann <strong>NICHT</strong> rückgängig gemacht werden!
-confirm_delete_account=Löschen
-delete_account_title=Account löschen
-delete_account_desc=Du bist dabei dieses Konto dauerhaft zu löschen, möchtest du wirklich fortfahren?
-
-[repo]
-owner=Besitzer
-repo_name=Repository-Name
-repo_name_helper=Gute Repository-Namen sind kurz, einprägsam und <strong>einzigartig</strong>.
-visibility=Sichtbarkeit
-visiblity_helper=Diese Repository ist <span class="ui red text">Privat</span>
-visiblity_helper_forced=Der Administrator hat festgelegt, dass alle neuen Repositories <span class="ui red text">privat</span> sein müssen
-visiblity_fork_helper=(Eine Änderung dieses Wertes wirkt sich auf alle Forks aus)
-fork_repo=Repository abspalten
-fork_from=Forken von
-fork_visiblity_helper=Die Sichtbarkeit von geforkten Repositories ist nicht veränderbar.
-repo_desc=Beschreibung
-repo_lang=Sprache
-repo_lang_helper=.gitignore Dateien auswählen
-license=Lizenz
-license_helper=Wähle eine Lizenz aus
-readme=Readme
-readme_helper=Readme Vorlage auswählen
-auto_init=Repository mit ausgewählten Dateien und Vorlagen initialisieren
-create_repo=Repository erstellen
-default_branch=Standard-Branch
-mirror_interval=Spiegel-Intervall (in Stunden)
-
-form.name_reserved=Repository-Name '%s' ist bereits vergeben.
-form.name_pattern_not_allowed=Repository-Namesmuster '%s' ist nicht zulässig.
-
-need_auth=Autorisierung benötigt
-migrate_type=Migrationstyp
-migrate_type_helper=Diese Repository wird ein <span class="text blue">Spiegel</span> sein
-migrate_repo=Repository migrieren
-migrate.clone_address=Adresse kopieren
-migrate.clone_address_desc=Dies kann eine HTTP/HTTPS/GIT URL oder ein lokaler Serverpfad sein.
-migrate.invalid_local_path=Lokaler Pfad ist ungültig, er existiert nicht oder ist kein Ordner.
-
-forked_from=Geforkt von
-fork_from_self=Sie können keine Repository forken, welche ihnen gehört!
-copy_link=Kopieren
-copy_link_success=Kopiert!
-copy_link_error=Drücke ⌘-C oder Strg-C zum Kopieren
-click_to_copy=In Zwischenablage kopieren
-copied=Kopiert OK
-clone_helper=Du brauchst Hilfe beim Klonen? Hier gibt es <a target="_blank" href="%s">Hilfe</a>!
-unwatch=Nicht mehr beobachten
-watch=Beobachten
-unstar=Markierung aufheben
-star=Markieren
-fork=Fork
-
-no_desc=Keine Beschreibung
-quick_guide=Kurzanleitung
-clone_this_repo=Diese Repository klonen
-create_new_repo_command=Erstelle eine neue Repository mittels Kommandozeile
-push_exist_repo=Übertrage eine existierende Repository von der Kommandozeile
-repo_is_empty=Das Repository ist leer, bitte komm später wieder!
-
-
-branch=Branch
-tree=Struktur
-branch_and_tags=Branches & Tags
-branches=Branches
-tags=Tags
-issues=Issues
-pulls=Pull-Anforderung
-labels=Label
-milestones=Meilensteine
-commits=Commits
-releases=Veröffentlichungen
-file_raw=Roh
-file_history=Verlauf
-file_view_raw=Ansicht Roh
-file_permalink=Permalink
-
-commits.commits=Commits
-commits.search=Durchsuche Commits
-commits.find=Finden
-commits.author=Author
-commits.message=Nachricht
-commits.date=Datum
-commits.older=Älter
-commits.newer=Neuer
-
-issues.new=Neuer Issue
-issues.new.labels=Labels
-issues.new.no_label=Kein Label
-issues.new.clear_labels=Labels entfernen
-issues.new.milestone=Meilenstein
-issues.new.no_milestone=Kein Meilenstein
-issues.new.clear_milestone=Meilenstein entfernen
-issues.new.open_milestone=Offene Meilensteine
-issues.new.closed_milestone=Geschlossene Meilensteine
-issues.new.assignee=Zuständiger
-issues.new.clear_assignee=Zuständigen entfernen
-issues.new.no_assignee=Kein Zuständiger
-issues.create=Issue erstellen
-issues.new_label=Neues Label
-issues.new_label_placeholder=Label-Name...
-issues.create_label=Label erstellen
-issues.open_tab=%d offen
-issues.close_tab=%d geschlossen
-issues.filter_label=Label
-issues.filter_label_no_select=Kein Label gewählt
-issues.filter_milestone=Meilenstein
-issues.filter_milestone_no_select=Kein ausgewählter Meilenstein
-issues.filter_assignee=Zuständiger
-issues.filter_assginee_no_select=Kein ausgewählter Zuständiger
-issues.filter_type=Typ
-issues.filter_type.all_issues=Alle Probleme
-issues.filter_type.assigned_to_you=Dir zugewiesen
-issues.filter_type.created_by_you=Erstellt von dir
-issues.filter_type.mentioning_you=Erwähnen dich
-issues.filter_sort=Sortieren
-issues.filter_sort.latest=Neueste
-issues.filter_sort.oldest=Älteste
-issues.filter_sort.recentupdate=Zuletzt aktualisiert
-issues.filter_sort.leastupdate=Am längsten nicht aktualisiert
-issues.filter_sort.mostcomment=Am meisten kommentiert
-issues.filter_sort.leastcomment=Am wenigsten kommentiert
-issues.opened_by=%[1]s geöffnet von <a href="%[2]s">%[3]s</a>
-issues.opened_by_fake=eröffnet %[1]s von %[2]s
-issues.previous=Vorherige Seite
-issues.next=Nächste Seite
-issues.open_title=Offen
-issues.closed_title=Geschlossen
-issues.num_comments=%d Kommentare
-issues.commented_at=`kommentiert in <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.no_content=Hier gibt es bis jetzt noch keinen Inhalt.
-issues.close_issue=Schließen
-issues.close_comment_issue=Schließen und kommentieren
-issues.reopen_issue=Wiedereröffnen
-issues.reopen_comment_issue=Wiedereröffnen und kommentieren
-issues.create_comment=Kommentieren
-issues.closed_at=`geschlossen in <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.reopened_at=`wiedereröffnet in <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.commit_ref_at=`referenziert dieses Issue aus einem Commit <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.poster=Ersteller
-issues.admin=Admin
-issues.owner=Besitzer
-issues.sign_up_for_free=Kostenlos anmelden
-issues.sign_in_require_desc=um dieser Konverstion beizutreten. Hast du bereits einen Account? <a href="%s">Anmelden zum kommentieren</a>
-issues.edit=Bearbeiten
-issues.cancel=Abbrechen
-issues.save=Speichern
-issues.label_title=Label Name
-issues.label_color=Label Farbe
-issues.label_count=%d Labels
-issues.label_open_issues=%d offene Issues
-issues.label_edit=Bearbeiten
-issues.label_delete=Löschen
-issues.label_modify=Label Änderung
-issues.label_deletion=Label Löschung
-issues.label_deletion_desc=Das Löschen eines Labels entfernt es von allen verknüpften Issues. Möchtest du fortfahren?
-issues.label_deletion_success=Label wurde erfolgreich gelöscht!
-
-pulls.compare_changes=Änderungen vergleichen
-pulls.compare_changes_desc=Vergleiche zwei Branches und erstelle einen Pull Request für die Änderungen.
-pulls.compare_base=Base
-pulls.compare_compare=vergleichen
-pulls.filter_branch=Filter Branch
-pulls.no_results=Keine Ergebnisse verfügbar.
-pulls.nothing_to_compare=Es ist nichts zu vergleichen, da Base- und Head-Branch gleich sind.
-pulls.has_pull_request=`Es existiert bereits eine Pull-Anforderung zwischen diesen beiden Zielen: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>`
-pulls.create=Pull Request erstellen
-pulls.title_desc=möchte %[1]d Commits von <code>%[2]s</code> nach <code>%[3]s</code> zusammenführen
-pulls.merged_title_desc=%[1]d Commits von <code>%[2]s</code> nach <code>%[3]s</code> %[4]s zusammengeführt
-pulls.tab_conversation=Konversation
-pulls.tab_commits=Commits
-pulls.tab_files=Dateien geändert
-pulls.reopen_to_merge=Bitte diese Pull-Anforderung wiedereröffnen, um die Merge-Operation auszuführen.
-pulls.merged=Zusammengeführt
-pulls.has_merged=Dieser Pull-Request wurde erfolgreich zusammengeführt!
-pulls.data_broken=Die Daten dieser Pull-Anforderung sind defekt aufgrund des Löschens von Fork-Informationen.
-pulls.is_checking=Die Konfliktprüfung ist in Arbeit. Bitte aktualisiere die Seite in wenigen Momenten.
-pulls.can_auto_merge_desc=Du kannst eine Auto-Merge Operation auf diese Pull-Anforderung durchführen.
-pulls.cannot_auto_merge_desc=Es kann keine Auto-Merge Operation durchgeführt werden, da es Konflikte zwischen den Commits gibt.
-pulls.cannot_auto_merge_helper=Bitte benutze ein Kommandozeilentool, um den Konflikt zu lösen.
-pulls.merge_pull_request=Pull-Request zusammenführen
-pulls.open_unmerged_pull_exists=`Du kannst die Pull-Anforderung nicht wiedereröffnen, da bereits eine offene Pull-Anforderung (#%d) aus dem selben Repository mit den gleichen Merge-Informationen existiert und auf das Merging wartet.`
-
-milestones.new=Neuer Meilenstein
-milestones.open_tab=%d offen
-milestones.close_tab=%d geschlossen
-milestones.closed=Geschlossen %s
-milestones.no_due_date=Kein Fälligkeitsdatum
-milestones.open=Offen
-milestones.close=Geschlossen
-milestones.new_subheader=Erstelle Meilenstein zum Organisieren der Issues.
-milestones.create=Meilenstein erstellen
-milestones.title=Titel
-milestones.desc=Beschreibung
-milestones.due_date=Fälligkeitsdatum (optional)
-milestones.clear=Bereinigen
-milestones.invalid_due_date_format=Format des Fälligkeitsdatums ist ungültig. Es muss das Format 'Jahr-mm-dd' haben.
-milestones.create_success=Meilenstein '%s' wurde erfolgreich erstellt!
-milestones.edit=Meilenstein bearbeiten
-milestones.edit_subheader=Benutze eine bessere Beschreibung für die Meilensteine, um die Menschen nicht zu verwirren.
-milestones.cancel=Abbrechen
-milestones.modify=Meilenstein ändern
-milestones.edit_success=Änderungen des Meilensteins '%s' wurden erfolgreich gespeichert!
-milestones.deletion=Meilenstein löschen
-milestones.deletion_desc=Das Löschen dieses Meilensteins wird alle zugehörigen Informationen in allen Issues entfernen. Wirklich fortfahren?
-milestones.deletion_success=Meilenstein erfolgreich gelöscht!
-
-settings=Einstellungen
-settings.options=Optionen
-settings.collaboration=Zusammenarbeit
-settings.hooks=Webhooks
-settings.githooks=Git-Hooks
-settings.basic_settings=Grundeinstellungen
-settings.danger_zone=Gefahrenzone
-settings.site=Offizielle Webseite
-settings.update_settings=Einstellungen speichern
-settings.change_reponame_prompt=Diese Änderung wirkt sich darauf aus, wie sich Links auf Repositories beziehen.
-settings.transfer=Besitz übertragen
-settings.transfer_desc=Übertrage diese Repository auf einen anderen Benutzer oder eine Organisation in der du Admin-Rechte hast.
-settings.new_owner_has_same_repo=Der neue Eigentümer hat bereits ein Repository mit dem gleichen Namen.
-settings.delete=Repository löschen
-settings.delete_desc=Wenn diese Repository gelöscht ist, gibt es keinen Weg zurück. Bitte sei behutsam.
-settings.transfer_notices_1=- Du wirst den Zugang verlieren, wenn der neue Besitzer ein individueller Benutzer ist.
-settings.transfer_notices_2=- Du wirst den Zugang behalten, wenn der neue Besitzer eine Organisation ist und du einer der Besitzer bist.
-settings.transfer_form_title=Bitte gib die folgenden Informationen ein, um die Operation zu bestätigen:
-settings.delete_notices_1=- Diese Operation kann <strong>NICHT</strong> rückgängig gemacht werden.
-settings.delete_notices_2=- Die Operation wird alles, was mit dieser Git-Repository verbunden ist, dauerhaft löschen, inklusive der Daten, Issues, Kommentare und Zugriffsrechte von Benutzern.
-settings.delete_notices_fork_1=- Wenn dies eine öffentliche Repository ist, werden nach der Löschung alle Forks unabhängig.
-settings.delete_notices_fork_2=- Wenn dies eine private Repository ist, dann werden gleichzeitig alle Forks entfernt.
-settings.delete_notices_fork_3=Wenn alle Forks erhalten bleiben sollen, dann muss zuerst die Sichtbarkeit der Repository auf öffentlich gesetzt werden.
-settings.update_settings_success=Repository-Optionen aktualisiert.
-settings.transfer_owner=Neuer Besitzer
-settings.make_transfer=übertragen
-settings.transfer_succeed=Die Repository wurde erfolgreich übertragen.
-settings.confirm_delete=Löschen
-settings.add_collaborator=Mitarbeiter hinzufügen
-settings.add_collaborator_success=Mitarbeiter hinzugefügt
-settings.remove_collaborator_success=Mitarbeiter entfernt
-settings.user_is_org_member=Benutzer ist ein Organisationsmitglied und kann nicht als Mitarbeiter hinzugefügt werden.
-settings.add_webhook=Webhook hinzufügen
-settings.hooks_desc=Webhooks erlauben es dir, externe Dienste zu informieren, wenn etwas bestimmtes in deiner Repository passiert. Gogs sendet dann einen POST-Request an alle angegebenen URLs. Erfahre mehr in unserer <a target="_blank" href="%s">Webhooks Guide</a>.
-settings.webhook_deletion=Webhook entfernen
-settings.webhook_deletion_desc=Das Löschen dieses Webhooks wird alle zugehörigen Informationen und den Übertragungsverlauf entfernen. Wirklich fortfahren?
-settings.webhook_deletion_success=Webhook wurde erfolgreich entfernt!
-settings.webhook.request=Anfrage
-settings.webhook.response=Rückmeldung
-settings.webhook.headers=Kopfzeilen
-settings.webhook.payload=Nutzdaten
-settings.webhook.body=Inhalt
-settings.githooks_desc=Git-Hooks werden von Git selbst bereitgestellt. Du kannst die Dateien der unterstützten Hooks in der Liste unten bearbeiten, um eigene Operationen einzubinden.
-settings.githook_edit_desc=Wenn ein Hook inaktiv ist, wird der Standardinhalt benutzt. Lasse den Inhalt leer, um den Hook zu deaktivieren.
-settings.githook_name=Hook-Name
-settings.githook_content=Hook-Inhalt
-settings.update_githook=Aktualisiere Hook
-settings.add_webhook_desc=Gogs sendet einen <code>POST</code>-Request an die unten stehende URL mit Details aller abonnierten Ereignisse. Du kannst auch angeben, welches Datenformat du erhalten willst (JSON, <code>x-www-form-urlencoded</code>, <em>etc</em>). Mehr Informationen findest du im <a target="_blank" href="%s">Webhooks Guide</a>.
-settings.payload_url=Payload-URL
-settings.content_type=Inhaltstyp
-settings.secret=Secret
-settings.slack_username=Benutzername
-settings.slack_icon_url=Icon URL
-settings.slack_color=Farbe
-settings.event_desc=Welche Ereignisse sollen diesen Webhook auslösen?
-settings.event_push_only=Nur das <code>push</code>-Ereignis.
-settings.event_send_everything=Ich brauche <strong>alles</strong>.
-settings.event_choose=Lass mich auswählen, was ich brauche.
-settings.event_create=Erstellen
-settings.event_create_desc=Branch/Tag erstellt
-settings.event_push=Push
-settings.event_push_desc=Git push auf eine Repository
-settings.active=Aktiv
-settings.active_helper=Ereignisdetails werden ausgeliefert, wenn dieser Webhook ausgelöst wird.
-settings.add_hook_success=Webhook hinzugefügt
-settings.update_webhook=Webhook aktualisieren
-settings.update_hook_success=Webhook wurde aktualisiert.
-settings.delete_webhook=Webhook löschen
-settings.recent_deliveries=letzte Zustellungen
-settings.hook_type=Hook Typ
-settings.add_slack_hook_desc=Füge <a href="%s">Slack</a>-Integration zu deiner Repository hinzu.
-settings.slack_token=Token
-settings.slack_domain=Domain
-settings.slack_channel=Kanal
-settings.deploy_keys=Deploy-Keys
-settings.add_deploy_key=Deploy-Key hinzufügen
-settings.no_deploy_keys=Du hast noch keine Deploy-Schlüssel hinzugefügt.
-settings.title=Titel
-settings.deploy_key_content=Inhalt
-settings.key_been_used=Deploy-Schlüssel wurde verwendet.
-settings.key_name_used=Ein Deploy-Schlüssel mit diesem Namen existiert bereits.
-settings.add_key_success=Der Deploy-Schlüssel '%s' wurde erfolgreich hinzugefügt!
-settings.deploy_key_deletion=Deploy-Key löschen
-settings.deploy_key_deletion_desc=Nach der Löschung dieses Deploy-Keys werden zugehörige Zugriffe auf diese Repository nicht mehr möglich sein. Möchtest du wirklich fortfahren?
-settings.deploy_key_deletion_success=Deploy-Key wurde erfolgreich gelöscht!
-
-diff.browse_source=Quellcode durchsuchen
-diff.parent=Ursprung
-diff.commit=Commit
-diff.data_not_available=Keine Diff-Daten verfügbar.
-diff.show_diff_stats=Diff-Statistik anzeigen
-diff.stats_desc=<strong> %d geänderte Dateien</strong> mit <strong>%d neuen Zeilen</strong> und <strong>%d gelöschten Zeilen</strong>
-diff.bin=BIN
-diff.view_file=Datei anzeigen
-
-release.releases=Releases
-release.new_release=Neues Release
-release.draft=Entwurf
-release.prerelease=Pre-Release
-release.stable=Endversion
-release.edit=bearbeiten
-release.ahead=<strong>%d</strong> Commits zu %s seit diesem Release
-release.source_code=Quelltext
-release.tag_name=Tag-Name
-release.target=Ziel
-release.tag_helper=Wähle ein neues Tag oder erstelle ein Tag beim Veröffentlichen.
-release.release_title=Release-Titel
-release.content_with_md=Inhalt mit <a href="%s">Markdown</a>
-release.write=Schreiben
-release.preview=Vorschau
-release.content_placeholder=Schreibe hier etwas
-release.loading=Laden…
-release.prerelease_desc=Dies ist eine Pre-Release-Version
-release.prerelease_helper=Wir möchten darauf hinweisen, dass dieses Release nicht für den produktiven Einsatz gedacht ist.
-release.publish=Release veröffentlichen
-release.save_draft=Entwurf speichern
-release.edit_release=Release bearbeiten
-release.tag_name_already_exist=Ein Release mit diesem Tag existiert bereits.
-
-[org]
-org_name_holder=Name der Organisation
-org_name_helper=Gute Namen von Organisationen sind kurz und einprägsam.
-create_org=Organisation erstellen
-repo_updated=Aktualisiert
-people=Personen
-invite_someone=Benutzer einladen
-teams=Teams
-lower_members=Mitglieder
-lower_repositories=Repositories
-create_new_team=Neues Team erstellen
-org_desc=Beschreibung
-team_name=Teamname
-team_desc=Beschreibung
-team_name_helper=Verwende diesen Namen, um dich auf dieses Team zu beziehen.
-team_desc_helper=Was hat es mit diesem Team auf sich?
-team_permission_desc=Welche Berechtigungsstufe soll das Team haben?
-
-form.name_reserved=Organisationsname '%s' ist bereits vergeben.
-form.name_pattern_not_allowed=Organisations-Namensmuster '%s' ist nicht zulässig.
-
-settings=Einstellungen
-settings.options=Optionen
-settings.full_name=Vollständiger Name
-settings.website=Webseite
-settings.location=Standort
-settings.update_settings=Einstellungen speichern
-settings.update_setting_success=Organisationseinstellungen aktualisiert
-settings.change_orgname_prompt=Diese Änderung wird sich auf die Linkbezüge zur Organisation auswirken.
-settings.update_avatar_success=Avatareinstellung für die Organisation wurde erfolgreich aktualisiert.
-settings.delete=Organisation löschen
-settings.delete_account=Diese Organisation löschen
-settings.delete_prompt=Die Organisation wird dauerhaft gelöscht. Dies kann <strong>NICHT</strong> rückgängig gemacht werden!
-settings.confirm_delete_account=Löschen
-settings.delete_org_title=Organisation löschen
-settings.delete_org_desc=Diese Organisation wird dauerhaft gelöscht, möchtest du fortfahren?
-settings.hooks_desc=Füge Webhooks hinzu, die für <strong>alle</strong> Repositorys dieser Organisation ausgelöst werden.
-
-members.public=Öffentlich
-members.public_helper=Privat machen
-members.private=Privat
-members.private_helper=Öffentlich machen
-members.owner=Besitzer
-members.member=Mitglied
-members.conceal=Verbergen
-members.remove=Entfernen
-members.leave=Verlassen
-members.invite_desc=Benutzernamen eingeben, um ihn als neues Mitglied in %s einzuladen:
-members.invite_now=Jetzt einladen
-
-teams.join=Beitreten
-teams.leave=Verlassen
-teams.read_access=Lesezugriff
-teams.read_access_helper=Dieses Team wird Repositorys einsehen und klonen können.
-teams.write_access=Schreibzugriff
-teams.write_access_helper=Dieses Team wird die Repositories einsehen und Push Operationen ausführen können.
-teams.admin_access=Adminzugriff
-teams.admin_access_helper=Dieses Team wird pull- und push-Rechte für die Repositorys haben und Mitarbeiter einladen können.
-teams.no_desc=Dieses Team hat keine Beschreibung
-teams.settings=Einstellungen
-teams.owners_permission_desc=Besitzer haben vollen Zugriff auf <strong>alle Repositorys</strong> und <strong>Admin Rechte</strong> für diese Organisation.
-teams.members=Teammitglieder
-teams.update_settings=Einstellungen aktualisieren
-teams.delete_team=Dieses Team löschen
-teams.add_team_member=Teammitglied hinzufügen
-teams.delete_team_title=Team löschen
-teams.delete_team_desc=Dieses Team wird gelöscht, möchtest du fortfahren? Mitglieder dieses Teams verlieren möglicherweise ihren Zugang zu einigen Repositories.
-teams.delete_team_success=Team gelöscht
-teams.read_permission_desc=Dieses Team erlaubt <strong>Lesezugriff</strong>: Mitglieder können Team-Repositories einsehen und klonen.
-teams.write_permission_desc=Dieses Team erlaubt <strong>Schreibzugriff</strong>: Mitglieder können Team-Repositories einsehen und Push Operationen ausführen.
-teams.admin_permission_desc=Diese Team erlaubt <strong>Adminzugriff</strong>: Mitglieder dieses Teams können pullen, pushen und dem Team Mitarbeiter hinzufügen.
-teams.repositories=Team-Repositorys
-teams.add_team_repository=Team-Repository hinzufügen
-teams.remove_repo=Entfernen
-teams.add_nonexistent_repo=Die Repository, welche du hinzufügen möchtest, existiert nicht. Bitte erstelle diese zuerst.
-
-[admin]
-dashboard=Dashboard
-users=Benutzer
-organizations=Organisationen
-repositories=Repositorys
-authentication=Authentifizierung
-config=Konfiguration
-notices=System-Mitteilungen
-monitor=Monitoring
-first_page=Erste
-last_page=Letzte
-total=Total: %d
-
-dashboard.statistic=Statistik
-dashboard.operations=Operationen
-dashboard.system_status=System-Monitor-Status
-dashboard.statistic_info=GoGS Datenbank hat <b>%d</b> Benutzer, <b>%d</b> Organisationen, <b>%d</b> öffentliche Schlüssel, <b>%d</b> Repositorys, <b>%d</b> Beobachtungen, <b>%d</b> Markierungen, <b>%d</b> Aktionen, <b>%d</b> Zugriffe, <b>%d</b> Issues, <b>%d</b> Kommentare, <b>%d</b> soziale Konten, <b>%d</b> Folgende, <b>%d</b> Spiegel, <b>%d</b> Releases, <b>%d</b> Login-Quellen, <b>%d</b> Webhooks, <b>%d</b> Milestones, <b>%d</b> Labels, <b>%d</b> Hook-Tasks, <b>%d</b> Teams, <b>%d</b> Aktualisierungs-Tasks, <b>%d</b> Anhänge.
-dashboard.operation_name=Name der Operation
-dashboard.operation_switch=Switch
-dashboard.operation_run=Ausführen
-dashboard.clean_unbind_oauth=ungebundene OAuths bereinigen
-dashboard.clean_unbind_oauth_success=Alle ungebundenen OAuth-Tokens wurden gelöscht.
-dashboard.delete_inactivate_accounts=inaktive Konten löschen
-dashboard.delete_inactivate_accounts_success=Alle inaktiven Konten wurden erfolgreich gelöscht.
-dashboard.delete_repo_archives=Alle Repository-Archive löschen
-dashboard.delete_repo_archives_success=Alle Repository-Archive wurden gelöscht.
-dashboard.git_gc_repos=Führe Garbage Collection auf Repositories aus
-dashboard.git_gc_repos_success=Garbage Collection wurde auf allen Repositories erfolgreich ausgeführt.
-dashboard.resync_all_sshkeys=Überschreibe '.ssh/authorized_keys' Datei (Warnung: Keys, die nicht zu Gogs gehören gehen verloren)
-dashboard.resync_all_sshkeys_success=Alle öffentlichen Keys wurden erfolgreich neu geschrieben.
-dashboard.resync_all_update_hooks=Überschreibe alle Hooks der Repositories (benötigt, wenn sich der Pfad in der Konfiguration ändert)
-dashboard.resync_all_update_hooks_success=Die Hooks aller Repositories sind erfolgreich neu geschrieben worden.
-
-dashboard.server_uptime=Server-Uptime
-dashboard.current_goroutine=Aktuelle Goroutines
-dashboard.current_memory_usage=Aktuelle Speichernutzung
-dashboard.total_memory_allocated=Zugeteilter Gesamtspeicher
-dashboard.memory_obtained=Erhaltener Speicher
-dashboard.pointer_lookup_times=Pointer Lookup Times
-dashboard.memory_allocate_times=Memory Allocate Times
-dashboard.memory_free_times=Memory Free Times
-dashboard.current_heap_usage=Aktuelle Heap-Auslastung
-dashboard.heap_memory_obtained=erhaltener Heap-Memory
-dashboard.heap_memory_idle=unbenutzter Heap-Memory
-dashboard.heap_memory_in_use=benutzter Heap-Memory
-dashboard.heap_memory_released=freigegebener Heap-Memory
-dashboard.heap_objects=Heap-Objekte
-dashboard.bootstrap_stack_usage=Bootstrap-Stack-Auslastung
-dashboard.stack_memory_obtained=erhaltener Stack-Memory
-dashboard.mspan_structures_usage=MSpan-Structures-Auslastung
-dashboard.mspan_structures_obtained=erhaltene MSpan-Structures
-dashboard.mcache_structures_usage=MCache-Structures-Auslastung
-dashboard.mcache_structures_obtained=erhaltene MCache-Structures
-dashboard.profiling_bucket_hash_table_obtained=Profiling Bucket Hash Table Obtained
-dashboard.gc_metadata_obtained=erhaltene GC-Metadata
-dashboard.other_system_allocation_obtained=andere erhaltene System-Allokatoren
-dashboard.next_gc_recycle=nächster GC-Zyklus
-dashboard.last_gc_time=seit letztem GC-Zyklus
-dashboard.total_gc_time=gesamte GC-Zeit
-dashboard.total_gc_pause=gesamte GC-Pause
-dashboard.last_gc_pause=letzte GC-Pause
-dashboard.gc_times=GC-Takt
-
-users.user_manage_panel=Benutzer
-users.new_account=Neues Konto erstellen
-users.name=Name
-users.activated=Aktiviert
-users.admin=Admin
-users.repos=Repositorys
-users.created=Erzeugt
-users.send_register_notify=Sende Registrierungsbenachrichtigung an Benutzer
-users.new_success=Der neue Account '%s' wurde erfolgreich erstellt.
-users.edit=Bearbeiten
-users.auth_source=Authentifizierungsquelle
-users.local=Lokal
-users.auth_login_name=Authentifizierung-Loginnname
-users.password_helper=Leer lassen um es unverändert zu lassen.
-users.update_profile_success=Kontoprofil wurde erfolgreich aktualisiert.
-users.edit_account=Konto bearbeiten
-users.is_activated=Dieses Konto ist aktiviert
-users.is_admin=Dieses Konto hat Administratorrechte
-users.allow_git_hook=Dieses Konto ist berechtigt, Git-Hooks zu erstellen
-users.update_profile=Kontoprofil aktualisieren
-users.delete_account=Dieses Konto löschen
-users.still_own_repo=Dieses Konto besitzt noch Repositories. Diese müssen zuerst gelöscht oder übertragen werden.
-users.still_has_org=Dieses Konto ist noch Mitglied einer Organisation, bitte entferne diese Mitgliedschaft zuerst.
-users.deletion_success=Das Konto wurde erfolgreich gelöscht!
-
-orgs.org_manage_panel=Organisationenverwaltung
-orgs.name=Name
-orgs.teams=Teams
-orgs.members=Mitglieder
-
-repos.repo_manage_panel=Repositorys
-repos.owner=Besitzer
-repos.name=Name
-repos.private=Privat
-repos.watches=Beobachtungen
-repos.stars=Markierungen
-repos.issues=Issues
-
-auths.auth_manage_panel=Verwaltungspanel für die Authentifizierung
-auths.new=Neue Quelle hinzufügen
-auths.name=Name
-auths.type=Typ
-auths.enabled=aktiviert
-auths.updated=aktualisiert
-auths.auth_type=Authentifizierungstyp
-auths.auth_name=Authentifizierungsname
-auths.domain=Domain
-auths.host=Host
-auths.port=Port
-auths.bind_dn=DN binden
-auths.bind_password=Passwort binden
-auths.bind_password_helper=Warnung: Das Passwort wird im Klartext gespeichert. Benutze keinen Account mit hohen Zugriffsrechten.
-auths.user_base=Benutzer-Such-Basis
-auths.user_dn=Benutzer DN
-auths.attribute_name=Vorname Attribut
-auths.attribute_surname=Nachname Attribut
-auths.attribute_mail=E-Mail Attribut
-auths.filter=Benutzernamen Filter
-auths.admin_filter=Admin Filter
-auths.ms_ad_sa=Ms Ad SA
-auths.smtp_auth=SMTP Authentifizierungstyp
-auths.smtphost=SMTP-Host
-auths.smtpport=SMTP-Port
-auths.allowed_domains=Erlaubte Domains
-auths.allowed_domains_helper=Leer lassen für keine Einschränkungen. Mehrere Domains können durch Komma "," getrennt werden.
-auths.enable_tls=TLS-Verschlüsselung aktivieren
-auths.skip_tls_verify=TLS-Prüfung überspringen
-auths.pam_service_name=PAM Dienstname
-auths.enable_auto_register=Automatische Registrierung aktivieren
-auths.tips=Tipps
-auths.edit=Authentifizierungseinstellungen bearbeiten
-auths.activated=Diese Authentifizierung ist aktiviert
-auths.new_success=Neue Authentifizierung '%s' wurde erfolgreich hinzugefügt.
-auths.update_success=Die Authentifizierungseinstellungen wurden erfolgreich aktualisiert.
-auths.update=Authentifizierungseinstellungen aktualisieren
-auths.delete=Diese Authentifizierung löschen
-auths.delete_auth_title=Löschen der Authentifizierung
-auths.delete_auth_desc=Diese Authentifizierung wird gelöscht, möchtest du fortfahren?
-auths.deletion_success=Authentifizierung wurde erfolgreich entfernt!
-
-config.server_config=Server-Konfiguration
-config.app_name=Anwendungsname
-config.app_ver=Anwendungsversion
-config.app_url=Anwendungs-URL
-config.domain=Domain
-config.offline_mode=Offline-Modus
-config.disable_router_log=Router-Log deaktivieren
-config.run_user=Laufzeit-Benutzer
-config.run_mode=Laufzeit-Modus
-config.repo_root_path=Repository-Verzeichnis
-config.static_file_root_path=Verzeichnis für statische Dateien
-config.log_file_root_path=Log-Verzeichnis
-config.script_type=Skript-Typ
-config.reverse_auth_user=Nutzer bei Reverse-Authentifizierung
-config.db_config=Datenbankkonfiguration
-config.db_type=Typ
-config.db_host=Host
-config.db_name=Name
-config.db_user=Benutzer
-config.db_ssl_mode=SSL-Modus
-config.db_ssl_mode_helper=(nur für "postgres")
-config.db_path=Verzeichnis
-config.db_path_helper=(für "sqlite3" und "tidb")
-config.service_config=Service-Einstellungen
-config.register_email_confirm=E-Mail-Bestätigung bei Registrierung
-config.disable_register=Registrierung deaktivieren
-config.show_registration_button=Zeige die Schaltfläche Registrieren
-config.require_sign_in_view=Ansehen erfordert Registrierung
-config.enable_cache_avatar=Avatar-Cache aktivieren
-config.mail_notify=E-Mail-Benachrichtigung
-config.disable_key_size_check=Prüfung der Mindestschlüssellänge deaktiveren
-config.enable_captcha=Captcha aktivieren
-config.active_code_lives=Aktivierungscode Lebensdauer
-config.reset_password_code_lives=Passwortcode Lebensdauer
-config.webhook_config=Webhook-Einstellungen
-config.queue_length=Warteschlangenlänge
-config.deliver_timeout=Zeitlimit für Zustellung
-config.skip_tls_verify=TLS verifikation überspringen
-config.mailer_config=Mailer-Einstellungen
-config.mailer_enabled=Aktiviert
-config.mailer_disable_helo=HELO Deaktivieren
-config.mailer_name=Name
-config.mailer_host=Host
-config.mailer_user=Benutzer
-config.oauth_config=OAuth-Einstellungen
-config.oauth_enabled=Aktiviert
-config.cache_config=Cache-Einstellungen
-config.cache_adapter=Cache-Adapter
-config.cache_interval=Cache-Intervall
-config.cache_conn=Cache-Anbindung
-config.session_config=Session-Einstellungen
-config.session_provider=Session-Provider
-config.provider_config=Provider-Einstellungen
-config.cookie_name=Cookie-Name
-config.enable_set_cookie=Cookies einschalten
-config.gc_interval_time=GC-Intervallzeit
-config.session_life_time=Session-Lebensdauer
-config.https_only=nur HTTPS
-config.cookie_life_time=Cookie-Lebensdauer
-config.picture_config=Bildeinstellungen
-config.picture_service=Bildservice
-config.disable_gravatar=Gravatar deaktivieren
-config.log_config=Log-Einstellungen
-config.log_mode=Log-Modus
-
-monitor.cron=Cron-Tasks
-monitor.name=Name
-monitor.schedule=Zeitplan
-monitor.next=nächste Ausführung
-monitor.previous=letzte Ausführung
-monitor.execute_times=Anzahl Ausführungen
-monitor.process=Laufende Prozesse
-monitor.desc=Beschreibung
-monitor.start=Startzeit
-monitor.execute_time=Ausführungszeit
-
-notices.system_notice_list=System-Mitteilungen
-notices.type=Typ
-notices.type_1=Repository
-notices.desc=Beschreibung
-notices.op=Op.
-notices.delete_success=System-Mitteilung erfolgreich gelöscht.
-
-[action]
-create_repo=hat Repository <a href="%s">%s</a> erstellt
-rename_repo=das Repository wurde umbenannt von <code>%[1]s</code> zu <a href="%[2]s">%[3]s</a>
-commit_repo=hat nach <a href="%s/src/%s">%[2]s</a> in <a href="%[1]s">%[3]s</a> gepusht
-create_issue=`hat Issue <a href="%s/issues/%s">%s#%[2]s</a> eröffnet`
-create_pull_request=`Pull-Anforderung erstellt <a href="%s/pulls/%s">%s#%[2]s</a>`
-comment_issue=`hat Issue <a href="%s/issues/%s">%s#%[2]s</a> kommentiert`
-merge_pull_request=`Pull-Request <a href="%s/pulls/%s">%s#%[2]s</a> zuammengeführt`
-transfer_repo=hat Repository <code>%s</code> transferiert an <a href="%s">%s</a>
-push_tag=hat nach <a href="%s/src/%s">%[2]s</a> in <a href="%[1]s">%[3]s</a> gepusht
-compare_2_commits=Zeige Vergleich dieser 2 Commits
-
-[tool]
-ago=vor
-from_now=ab sofort
-now=Jetzt
-1s=%s 1 Sekunde
-1m=%s 1 Minute
-1h=%s 1 Stunde
-1d=%s 1 Tag
-1w=%s 1 Woche
-1mon=%s 1 Monat
-1y=%s 1 Jahr
-seconds=%[2]s %[1]d Sekunden
-minutes=%[2]s %[1]d Minuten
-hours=%[2]s %[1]d Stunden
-days=%[2]s %[1]d Tagen
-weeks=%[2]s %[1]d Wochen
-months=%[2]s %[1]d Monaten
-years=%[2]s %[1]d Jahren
-raw_seconds=Sekunden
-raw_minutes=Minuten
-
-[dropzone]
-default_message=Für den Upload klicken oder die Datei hier ablegen.
-invalid_input_type=Dateien dieses Dateityps können nicht hochgeladen werden.
-file_too_big=Dateigröße ({{filesize}} MB) überschreitet die Maximalgröße ({{maxFilesize}} MB).
-remove_file=Datei entfernen
-
+app_desc=Ein einfacher, selbst gehosteter Git-Service, geschrieben in Go + +home=Home +dashboard=Übersicht +explore=Erkunden +help=Hilfe +sign_in=Anmelden +sign_out=Abmelden +sign_up=Registrieren +register=Registrieren +website=Webseite +version=Version +page=Seite +template=Vorlage +language=Sprache +create_new=Erstellen... +user_profile_and_more=Benutzerprofil und mehr +signed_in_as=Eingeloggt als + +username=Benutzername +email=E-Mail +password=Passwort +re_type=Passwort bestätigen +captcha=Captcha + +repository=Repository +organization=Organisation +mirror=Spiegel +new_repo=Neues Repository +new_migrate=Neue Migration +new_fork=Neues abgespaltetes Repository +new_org=Neue Organisation +manage_org=Organisationen verwalten +admin_panel=Admin-Panel +account_settings=Kontoeinstellungen +settings=Einstellungen +your_profile=Dein Profil +your_settings=Deine Einstellungen + +news_feed=Neuigkeiten +pull_requests=Pull Requests +issues=Issues + +cancel=Abbrechen + +[search] +search=Suchen... +repository=Repository +user=Benutzer +issue=Problem +code=Code + +[install] +install=Installation +title=Installation für erstmaligen Start +docker_helper=Wenn Gogs innerhalb Docker läuft, lies dir bitte die <a target="_blank" href="%s">Guidelines</a> genau durch, bevor du irgendwas auf dieser Seite änderst! +requite_db_desc=Gogs benötigt MySQL, PostgreSQL, SQLite3 oder TiDB. +db_title=Datenbankeinstellungen +db_type=Datenbanktyp +host=Host +user=Benutzer +password=Passwort +db_name=Datenbankname +db_helper=Bitte verwenden sie die InnoDB-Engine mit utf8_general_ci Zeichensatz für MySQL. +ssl_mode=SSL-Modus +path=Pfad +sqlite_helper=Der Dateipfad zur SQLite3 oder TiDB Datenbank. +err_empty_db_path=SQLite3 oder TiDB Datenbankpfad darf nicht leer sein. +err_invalid_tidb_name=Der TiDB Datenbankname darf kein "." und kein "-" enthalten. +no_admin_and_disable_registration=Du kannst die Registrierung nicht deaktivieren, ohne ein Administratorkonto zu erstellen. +err_empty_admin_password=Das Administrator-Passwort darf nicht leer sein. + +general_title=Allgemeine Einstellungen +app_name=Anwendungsname +app_name_helper=Hier den Organisationsnamen einfügen. +repo_path=Repository Root-Verzeichnispfad +repo_path_helper=Alle Git-Repositorys werden in diesem Verzeichnis gespeichert. +run_user=Ausführender Benutzer +run_user_helper=Der Benutzer muss die Zugriffsberechtigung für das Repository Root-Verzeichnis haben und der ausführende Benutzer von Gogs sein. +domain=Domain +domain_helper=Dies hat Auswirkung auf die SSH clone URLs. +ssh_port=SSH Port +ssh_port_helper=Die Portnummer deines SSH-Servers, lass dieses Feld leer, wenn du SSH deaktivieren möchtest. +http_port=HTTP Port +http_port_helper=Auf dieser Port Nummer wird Gogs erreichbar sein. +app_url=Anwendungs-URL +app_url_helper=Dies hat Auswirkung auf die HTTP/HTTPS clone URLs und für die E-Mails. + +optional_title=Optionale Einstellungen +email_title=E-Mail-Service Einstellungen +smtp_host=SMTP Host +smtp_from=Von +smtp_from_helper=Absender-Adresse nach RFC 5322. Entweder nur eine E-Mail Adresse oder im folgenden Format: "Name" <email@example.com>. +mailer_user=Sender E-mail +mailer_password=Sender Passwort +register_confirm=Registrierungsbestätigung aktivieren +mail_notify=E-Mail-Benachrichtigungen aktivieren +server_service_title=Server- und sonstige Diensteinstellungen +offline_mode=Offline-Modus aktivieren +offline_mode_popup=Deaktiviere das CDN auch im Produktionsmodus, alle Dateien werden von diesem Server ausgeliefert. +disable_gravatar=Gravatar-Dienst deaktivieren +disable_gravatar_popup=Gravatar und benutzerdefinierte Quellen deaktivieren, alle Avatare werden standardmäßig vom Nutzer hochgeladen oder sind Standardavatare. +disable_registration=Benutzerregistrierung deaktivieren +disable_registration_popup=Deaktiviere die Benutzerregistrierung, nur Administratoren können Benutzerkonten anlegen. +enable_captcha=Captcha aktivieren +enable_captcha_popup=Benötigt Captcha-Überprüfung für Registrierung durch Benutzer. +require_sign_in_view=Erfordere Anmeldung, um Inhalte anzusehen +require_sign_in_view_popup=Lediglich angemeldete Benutzer können Inhalte betrachten, Gäste sehen nur die Anmelden/Registrieren Seite. +admin_setting_desc=Sie müssen jetzt noch keinen Administrator-Account anlegen. Der erste Benutzer ("ID=1") erhält automatisch Administrationsrechte. +admin_title=Konto-Einstellungen für den Administrator +admin_name=Benutzername +admin_password=Passwort +confirm_password=Passwort bestätigen +admin_email=Administrator E-Mail +install_gogs=Gogs installieren +test_git_failed=Fehler beim Test des 'git' Kommandos: %v +sqlite3_not_available=Ihre Gogs-Version unterstützt kein SQLite3, bitte lade dir die offizielle binäre Version von %s herunter, NICHT die gobuild-Version. +invalid_db_setting=Datenbank-Einstellungen sind nicht korrekt: %v +invalid_repo_path=Repository Root-Verzeichnis ist ungültig: %v +run_user_not_match=Der ausführende Benutzer ist nicht der aktuelle Benutzer: %s -> %s +save_config_failed=Fehler beim Speichern der Konfiguration: %v +invalid_admin_setting=Admin-Konto Einstellungen sind ungültig: %v +install_success=Herzlich Willkommen! Wir sind froh, dass du dich für Gogs entschieden hast. Wir wünschen viel Vergnügen damit. + +[home] +uname_holder=Benutzername oder E-Mail +password_holder=Passwort +switch_dashboard_context=Dashboard Kontext wechseln +my_repos=Meine Repositories +collaborative_repos=Gemeinschaftliche Repositories +my_orgs=Meine Organisationen +my_mirrors=Meine Spiegel +view_home=%s betrachten + +issues.in_your_repos=In deinen Repositories + +[explore] +repos=Repositories + +[auth] +create_new_account=Neues Konto erstellen +register_hepler_msg=Du hast bereits ein Konto? Jetzt anmelden! +social_register_hepler_msg=Du hast bereits ein soziales Konto? Jetzt verknüpfen! +disable_register_prompt=Es tut uns leid, die Registrierung wurde deaktiviert. Bitte wende dich an den Administrator. +disable_register_mail=Es tut uns leid, die Bestätigung der Registrierungs-E-Mail wurde deaktiviert. +remember_me=Angemeldet bleiben +forgot_password=Passwort vergessen +forget_password=Passwort vergessen? +sign_up_now=Du willst ein Konto? Jetzt registrieren! +confirmation_mail_sent_prompt=Eine neue Bestätigungs-E-Mail wurde an <b>%s</b> gesendet. Kontrolliere dein Postfach innerhalb der nächsten %d Stunden, um die Registrierung abzuschließen. +active_your_account=Aktiviere dein Konto +resent_limit_prompt=Es tut uns leid, du sendest zu häufig Aktivierungs-E-Mails. Bitte warte 3 Minuten. +has_unconfirmed_mail=Hallo %s, du hast eine unbestätigte E-Mail-Adresse (<b>%s</b>). Wenn du keine Bestätigungs-E-Mail erhalten hast oder eine neue benötigst, klicke bitte auf den folgenden Button. +resend_mail=Hier klicken, um deine Aktivierungs-E-Mail erneut zu versenden +email_not_associate=Diese E-Mail-Adresse ist mit keinem Konto verknüpft. +send_reset_mail=Hier klicken, um die E-Mail zum Passwort-zurücksetzen erneut zu versenden +reset_password=Passwort zurücksetzen +invalid_code=Es tut uns leid, der Bestätigungscode ist abgelaufen oder ungültig. +reset_password_helper=Hier klicken, um das Passwort zurückzusetzen +password_too_short=Das Passwort muss mindenstens 6 Zeichen lang sein + +[mail] +activate_account=Bitte aktiviere dein Konto +activate_email=Verifiziere deine E-Mail-Adresse +reset_password=Setze dein Passwort zurück +register_success=Registrierung erfolgreich, Willkommen +register_notify=Willkommen an Bord + +[modal] +yes=Ja +no=Nein +modify=Ändern + +[form] +UserName=Benutzername +RepoName=Repository-Name +Email=E-Mail-Adresse +Password=Passwort +Retype=Passwort bestätigen +SSHTitle=SSH-Schlüsselname +HttpsUrl=HTTPS-URL +PayloadUrl=Payload-URL +TeamName=Teamname +AuthName=Authentifizierungsname +AdminEmail=Admin E-mail + +require_error=` darf nicht leer sein.` +alpha_dash_error=` muss ausschließlich alphanumerische Zeichen und "-_" enthalten.` +alpha_dash_dot_error=` muss ausschließlich alphanumerische Zeichen und ".-_" enthalten.` +size_error=` muss die Größe %s haben.` +min_size_error=` muss mindestens %s Zeichen enthalten.` +max_size_error=` darf höchstens %s Zeichen enthalten.` +email_error=` ist keine gültige E-Mail-Adresse.` +url_error=` ist keine gültige URL.` +include_error=`muss den Substring ‚%s‘ enthalten.` +unknown_error=Unbekannter Fehler: +captcha_incorrect=Captcha stimmt nicht überein. +password_not_match=Die Passwörter stimmen nicht überein. + +username_been_taken=Benutzername ist bereits vergeben. +repo_name_been_taken=Repository-Name ist bereits vergeben. +org_name_been_taken=Organisationsname ist bereits vergeben. +team_name_been_taken=Teamname ist bereits vergeben. +email_been_used=E-Mail-Adresse wird bereits verwendet. +illegal_team_name=Teamname enthält ungültige Zeichen. +username_password_incorrect=Benutzername oder Passwort ist nicht korrekt. +enterred_invalid_repo_name=Bitte stelle sicher, dass der eingegebene Repository-Name richtig ist. +enterred_invalid_owner_name=Bitte stelle sicher, dass der eingegebene Besitzername richtig ist. +enterred_invalid_password=Bitte stelle sicher, dass das eingegebene Passwort richtig ist. +user_not_exist=Angegebener Benutzer existiert nicht. +last_org_owner=Der zu entfernende Benutzer ist der letzte Besitzer einer Organisation. Diese müssen zuerst gelöscht oder übertragen werden. + +invalid_ssh_key=Leider sind wir nicht in der Lage, deinen SSH-Schlüssel zu überprüfen: %s +unable_verify_ssh_key=Gogs kann deinen SSH-Schlüssel nicht verifizieren, nimmt aber an, dass er gültig ist. Bitte stelle dies selbst sicher. +auth_failed=Authentifizierung fehlgeschlagen: %v + +still_own_repo=Dein Konto besitzt noch Repositories. Diese müssen zuerst gelöscht oder übertragen werden. +still_has_org=Du bist noch Mitglied einer Organisation, bitte lösche zunächst diese Mitgliedschaft. +org_still_own_repo=Diese Organisation besitzt noch Repositories. Diese müssen zuerst gelöscht oder übertragen werden. + +still_own_user=Diese Authentifizierung wird noch von einigen Benutzern genutzt. Entferne diese zuvor und lösche erneut. + +target_branch_not_exist=Ziel-Branch existiert nicht + +[user] +change_avatar=Ändere dein Profilbild auf gravatar.com +change_custom_avatar=Ändere deinen Avatar in den Einstellungen +join_on=Registriert +repositories=Repositories +activity=Öffentliche Aktivität +followers=Followers +starred=Markiert +following=Folgt + +form.name_reserved=Der Benutzername '%s' ist reserviert. +form.name_pattern_not_allowed=Benutzernamens-Muster "%s" ist nicht zulässig. + +[settings] +profile=Profil +password=Passwort +ssh_keys=SSH-Schlüssel +social=Soziale Konten +applications=Anwendungen +orgs=Organisationen +delete=Konto löschen +uid=Uid + +public_profile=Öffentliches Profil +profile_desc=Deine E-Mail-Adresse ist öffentlich einsehbar und wird für accountspezifische Benachrichtigungen verwendet, sowie für alle web-basierten Funktionen, die über die Seite gemacht werden. +full_name=Vollständiger Name +website=Webseite +location=Standort +update_profile=Profil aktualisieren +update_profile_success=Ihr Profil wurde erfolgreich aktualisiert. +change_username=Benutzername geändert +change_username_prompt=Diese Änderung wird sich auf die Linkbezüge zu deinem Account auswirken. +continue=Weiter +cancel=Abbrechen + +enable_custom_avatar=Aktiviere benutzerdefinierten Avatar +enable_custom_avatar_helper=Aktiviere dies, um deinen Avatar nicht von Gravatar zu laden +choose_new_avatar=Neuen Avatar auswählen +update_avatar=Avatar-Einstellung aktualisieren +uploaded_avatar_not_a_image=Die hochgeladene Datei ist kein Bild. +no_custom_avatar_available=Kein benutzerdefinierter Avatar verfügbar, Aktivierung ist nicht möglich. +update_avatar_success=Deine Avatar-Einstellung wurde aktualisiert. + +change_password=Passwort ändern +old_password=Aktuelles Passwort +new_password=Neues Passwort +retype_new_password=Neues Passwort erneut eingeben +password_incorrect=Aktuelles Passwort ist nicht korrekt. +change_password_success=Passwort geändert. Du kannst dich jetzt mit deinem neuen Passwort anmelden. + +emails=E-Mail-Adressen +manage_emails=E-Mail-Adressen verwalten +email_desc=Deine primäre E-Mail-Adresse wird für Benachrichtigungen und andere Funktionen verwendet. +primary=Primär +primary_email=Als primäre Adresse verwenden +delete_email=Löschen +email_deletion=E-Mail löschen +email_deletion_desc=Das Löschen dieser E-Mail Adresse wird alle Informationen entfernen, die mit dieser E-Mail Adresse verknüpft sind. Willst du fortfahren? +email_deletion_success=E-Mail-Adresse wurde erfolgreich gelöscht! +add_new_email=Neue E-Mail-Adresse hinzufügen +add_email=E-Mail-Adresse hinzufügen +add_email_confirmation_sent=Eine neue Bestätigungsmail wurde an '%s' gesendet, bitte überprüfen Sie Ihren Posteingang innerhalb von %d Stunden um die Bestätigung abzuschließen. +add_email_success=Deine neue E-Mail-Adresse wurde erfolgreich hinzugefügt. + +manage_ssh_keys=SSH-Schlüssel verwalten +add_key=SSH-Schlüssel hinzufügen +ssh_desc=Dies ist eine Liste aller SSH-Schlüssel, die mit deinem Konto verknüpft sind. Bitte entferne alle Schlüssel, die dir nicht bekannt sind. +ssh_helper=<strong>Du brauchst Hilfe?</strong> Hier ist eine Anleitung zum <a href="%s">Erzeugen von SSH-Schlüsseln</a> oder <a href="%s">Problemlösen einfacher SSH-Probleme</a>. +add_new_key=SSH-Schlüssel hinzufügen +ssh_key_been_used=Inhalt des öffentlichen Schlüssels wurde verwendet. +ssh_key_name_used=Ein öffentlicher Schlüssel mit dem selben Namen existiert bereits. +key_name=Schlüsselname +key_content=Inhalt +add_key_success=Neuer SSH-Schlüssel '%s' wurde erfolgreich hinzugefügt! +delete_key=SSH-Schlüssel löschen +ssh_key_deletion=SSH-Schlüssel entfernen +ssh_key_deletion_desc=Das Löschen dieses SSH-Schlüssels wird alle zugehörigen Zugriffsberechtigungen auf deinen Account entfernen. Möchtest du fortfahren? +ssh_key_deletion_success=SSH-Schlüssel wurde erfolgreich gelöscht! +add_on=Hinzugefügt am +last_used=Zuletzt verwendet am +no_activity=Keine neuen Aktivitäten +key_state_desc=Dieser Schlüssel wurde in den letzten 7 Tagen verwendet +token_state_desc=Dieses Token wurde in den letzten 7 Tagen benutzt + +manage_social=Verknüpfte soziale Konten verwalten +social_desc=Dies ist eine Liste verknüpfter sozialer Konten. Bitte entferne alle Verknüpfungen, die dir nicht bekannt sind. +unbind=Verknüpfung entfernen +unbind_success=Die Verknüpfung zum sozialen Konto wurde entfernt. + +manage_access_token=Verwaltung persönlicher Zugangs-Tokens +generate_new_token=Neuen Token erzeugen +tokens_desc=Von dir generierte Token können benutzt werden, um auf die Gogs APIs zuzugreifen. +new_token_desc=Momentan erlaubt jeder Token vollen Zugriff auf dein Konto. +token_name=Token-Name +generate_token=Token generieren +generate_token_succees=Neuer Zugangs-Token wurde erstellt! Stelle sicher, dass du den Token kopiert hast, da du ihn später nicht mehr ansehen kannst! +delete_token=Löschen +access_token_deletion=Entfernung von persönlichen Token +access_token_deletion_desc=Das Löschen dieses persönlichen Tokens wird alle zugehörigen Zugriffe der Anwendung entfernen. Möchtest du fortfahren? +delete_token_success=Persönlicher Zugriffs-Token wurde erfolgreich entfernt! Vergiss nicht deine Anwendung zu aktualisieren. + +delete_account=Konto löschen +delete_prompt=Diese Aktion wird dein Konto dauerhaft löschen und kann <strong>NICHT</strong> rückgängig gemacht werden! +confirm_delete_account=Löschen +delete_account_title=Account löschen +delete_account_desc=Du bist dabei dieses Konto dauerhaft zu löschen, möchtest du wirklich fortfahren? + +[repo] +owner=Besitzer +repo_name=Repository-Name +repo_name_helper=Gute Repository-Namen sind kurz, einprägsam und <strong>einzigartig</strong>. +visibility=Sichtbarkeit +visiblity_helper=Diese Repository ist <span class="ui red text">Privat</span> +visiblity_helper_forced=Der Administrator hat festgelegt, dass alle neuen Repositories <span class="ui red text">privat</span> sein müssen +visiblity_fork_helper=(Eine Änderung dieses Wertes wirkt sich auf alle Forks aus) +clone_helper=Du brauchst Hilfe beim Klonen? Hier gibt es <a target="_blank" href="%s">Hilfe</a>! +fork_repo=Repository abspalten +fork_from=Forken von +fork_visiblity_helper=Die Sichtbarkeit von geforkten Repositories ist nicht veränderbar. +repo_desc=Beschreibung +repo_lang=Sprache +repo_lang_helper=.gitignore Dateien auswählen +license=Lizenz +license_helper=Wähle eine Lizenz aus +readme=Readme +readme_helper=Readme Vorlage auswählen +auto_init=Repository mit ausgewählten Dateien und Vorlagen initialisieren +create_repo=Repository erstellen +default_branch=Standard-Branch +mirror_interval=Spiegel-Intervall (in Stunden) +watchers=Beobachter +stargazers=Stargazers +forks=Forks + +form.name_reserved=Repository-Name '%s' ist bereits vergeben. +form.name_pattern_not_allowed=Repository-Namesmuster '%s' ist nicht zulässig. + +need_auth=Autorisierung benötigt +migrate_type=Migrationstyp +migrate_type_helper=Diese Repository wird ein <span class="text blue">Spiegel</span> sein +migrate_repo=Repository migrieren +migrate.clone_address=Adresse kopieren +migrate.clone_address_desc=Dies kann eine HTTP/HTTPS/GIT URL oder ein lokaler Serverpfad sein. +migrate.permission_denied=Ihnen fehlen die Rechte zum Importieren lokaler Repositorys. +migrate.invalid_local_path=Lokaler Pfad ist ungültig, er existiert nicht oder ist kein Ordner. +migrate.failed=Migration failed: %v + +forked_from=Geforkt von +fork_from_self=Sie können keine Repository forken, welche ihnen gehört! +copy_link=Kopieren +copy_link_success=Kopiert! +copy_link_error=Drücke ⌘-C oder Strg-C zum Kopieren +copied=Kopiert OK +unwatch=Nicht mehr beobachten +watch=Beobachten +unstar=Markierung aufheben +star=Markieren +fork=Fork + +no_desc=Keine Beschreibung +quick_guide=Kurzanleitung +clone_this_repo=Diese Repository klonen +create_new_repo_command=Erstelle eine neue Repository mittels Kommandozeile +push_exist_repo=Übertrage eine existierende Repository von der Kommandozeile +repo_is_empty=Das Repository ist leer, bitte komm später wieder! + +branch=Branch +tree=Struktur +filter_branch_and_tag=Nach Zweig oder Tag filtern +branches=Branches +tags=Tags +issues=Issues +pulls=Pull-Anforderung +labels=Label +milestones=Meilensteine +commits=Commits +releases=Veröffentlichungen +file_raw=Roh +file_history=Verlauf +file_view_raw=Ansicht Roh +file_permalink=Permalink + +commits.commits=Commits +commits.search=Durchsuche Commits +commits.find=Finden +commits.author=Author +commits.message=Nachricht +commits.date=Datum +commits.older=Älter +commits.newer=Neuer + +issues.new=Neuer Issue +issues.new.labels=Labels +issues.new.no_label=Kein Label +issues.new.clear_labels=Labels entfernen +issues.new.milestone=Meilenstein +issues.new.no_milestone=Kein Meilenstein +issues.new.clear_milestone=Meilenstein entfernen +issues.new.open_milestone=Offene Meilensteine +issues.new.closed_milestone=Geschlossene Meilensteine +issues.new.assignee=Zuständiger +issues.new.clear_assignee=Zuständigen entfernen +issues.new.no_assignee=Kein Zuständiger +issues.create=Issue erstellen +issues.new_label=Neues Label +issues.new_label_placeholder=Label-Name... +issues.create_label=Label erstellen +issues.open_tab=%d offen +issues.close_tab=%d geschlossen +issues.filter_label=Label +issues.filter_label_no_select=Kein Label gewählt +issues.filter_milestone=Meilenstein +issues.filter_milestone_no_select=Kein ausgewählter Meilenstein +issues.filter_assignee=Zuständiger +issues.filter_assginee_no_select=Kein ausgewählter Zuständiger +issues.filter_type=Typ +issues.filter_type.all_issues=Alle Probleme +issues.filter_type.assigned_to_you=Dir zugewiesen +issues.filter_type.created_by_you=Erstellt von dir +issues.filter_type.mentioning_you=Erwähnen dich +issues.filter_sort=Sortieren +issues.filter_sort.latest=Neueste +issues.filter_sort.oldest=Älteste +issues.filter_sort.recentupdate=Zuletzt aktualisiert +issues.filter_sort.leastupdate=Am längsten nicht aktualisiert +issues.filter_sort.mostcomment=Am meisten kommentiert +issues.filter_sort.leastcomment=Am wenigsten kommentiert +issues.opened_by=%[1]s geöffnet von <a href="%[2]s">%[3]s</a> +issues.opened_by_fake=eröffnet %[1]s von %[2]s +issues.previous=Vorherige Seite +issues.next=Nächste Seite +issues.open_title=Offen +issues.closed_title=Geschlossen +issues.num_comments=%d Kommentare +issues.commented_at=`kommentiert in <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.no_content=Hier gibt es bis jetzt noch keinen Inhalt. +issues.close_issue=Schließen +issues.close_comment_issue=Kommentieren und schließen +issues.reopen_issue=Wiedereröffnen +issues.reopen_comment_issue=Kommentieren und wiedereröffnen +issues.create_comment=Kommentieren +issues.closed_at=`geschlossen in <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.reopened_at=`wiedereröffnet in <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.commit_ref_at=`referenziert dieses Issue aus einem Commit <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.poster=Ersteller +issues.admin=Admin +issues.owner=Besitzer +issues.sign_up_for_free=Kostenlos anmelden +issues.sign_in_require_desc=um dieser Konverstion beizutreten. Hast du bereits einen Account? <a href="%s">Anmelden zum kommentieren</a> +issues.edit=Bearbeiten +issues.cancel=Abbrechen +issues.save=Speichern +issues.label_title=Label Name +issues.label_color=Label Farbe +issues.label_count=%d Labels +issues.label_open_issues=%d offene Issues +issues.label_edit=Bearbeiten +issues.label_delete=Löschen +issues.label_modify=Label Änderung +issues.label_deletion=Label Löschung +issues.label_deletion_desc=Das Löschen eines Labels entfernt es von allen verknüpften Issues. Möchtest du fortfahren? +issues.label_deletion_success=Label wurde erfolgreich gelöscht! + +pulls.new=Neuer Pull-Request +pulls.compare_changes=Änderungen vergleichen +pulls.compare_changes_desc=Vergleiche zwei Branches und erstelle einen Pull Request für die Änderungen. +pulls.compare_base=Base +pulls.compare_compare=vergleichen +pulls.filter_branch=Filter Branch +pulls.no_results=Keine Ergebnisse verfügbar. +pulls.nothing_to_compare=Es ist nichts zu vergleichen, da Base- und Head-Branch gleich sind. +pulls.has_pull_request=`Es existiert bereits eine Pull-Anforderung zwischen diesen beiden Zielen: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>` +pulls.create=Pull Request erstellen +pulls.title_desc=möchte %[1]d Commits von <code>%[2]s</code> nach <code>%[3]s</code> zusammenführen +pulls.merged_title_desc=%[1]d Commits von <code>%[2]s</code> nach <code>%[3]s</code> %[4]s zusammengeführt +pulls.tab_conversation=Konversation +pulls.tab_commits=Commits +pulls.tab_files=Dateien geändert +pulls.reopen_to_merge=Bitte diese Pull-Anforderung wiedereröffnen, um die Merge-Operation auszuführen. +pulls.merged=Zusammengeführt +pulls.has_merged=Dieser Pull-Request wurde erfolgreich zusammengeführt! +pulls.data_broken=Die Daten dieser Pull-Anforderung sind defekt aufgrund des Löschens von Fork-Informationen. +pulls.is_checking=Die Konfliktprüfung ist in Arbeit. Bitte aktualisiere die Seite in wenigen Momenten. +pulls.can_auto_merge_desc=Du kannst eine Auto-Merge Operation auf diese Pull-Anforderung durchführen. +pulls.cannot_auto_merge_desc=Es kann keine Auto-Merge Operation durchgeführt werden, da es Konflikte zwischen den Commits gibt. +pulls.cannot_auto_merge_helper=Bitte benutze ein Kommandozeilentool, um den Konflikt zu lösen. +pulls.merge_pull_request=Pull-Request zusammenführen +pulls.open_unmerged_pull_exists=`Du kannst die Pull-Anforderung nicht wiedereröffnen, da bereits eine offene Pull-Anforderung (#%d) aus dem selben Repository mit den gleichen Merge-Informationen existiert und auf das Merging wartet.` + +milestones.new=Neuer Meilenstein +milestones.open_tab=%d offen +milestones.close_tab=%d geschlossen +milestones.closed=Geschlossen %s +milestones.no_due_date=Kein Fälligkeitsdatum +milestones.open=Offen +milestones.close=Geschlossen +milestones.new_subheader=Erstelle Meilenstein zum Organisieren der Issues. +milestones.create=Meilenstein erstellen +milestones.title=Titel +milestones.desc=Beschreibung +milestones.due_date=Fälligkeitsdatum (optional) +milestones.clear=Bereinigen +milestones.invalid_due_date_format=Format des Fälligkeitsdatums ist ungültig. Es muss das Format 'JJJJ-mm-dd' haben. +milestones.create_success=Meilenstein '%s' wurde erfolgreich erstellt! +milestones.edit=Meilenstein bearbeiten +milestones.edit_subheader=Benutze eine bessere Beschreibung für die Meilensteine, um die Menschen nicht zu verwirren. +milestones.cancel=Abbrechen +milestones.modify=Meilenstein ändern +milestones.edit_success=Änderungen des Meilensteins '%s' wurden erfolgreich gespeichert! +milestones.deletion=Meilenstein löschen +milestones.deletion_desc=Das Löschen dieses Meilensteins wird alle zugehörigen Informationen in allen Issues entfernen. Wirklich fortfahren? +milestones.deletion_success=Meilenstein erfolgreich gelöscht! + +settings=Einstellungen +settings.options=Optionen +settings.collaboration=Zusammenarbeit +settings.hooks=Webhooks +settings.githooks=Git-Hooks +settings.basic_settings=Grundeinstellungen +settings.danger_zone=Gefahrenzone +settings.site=Offizielle Webseite +settings.update_settings=Einstellungen speichern +settings.change_reponame_prompt=Diese Änderung wirkt sich darauf aus, wie sich Links auf Repositories beziehen. +settings.transfer=Besitz übertragen +settings.transfer_desc=Übertrage diese Repository auf einen anderen Benutzer oder eine Organisation in der du Admin-Rechte hast. +settings.new_owner_has_same_repo=Der neue Eigentümer hat bereits ein Repository mit dem gleichen Namen. +settings.delete=Repository löschen +settings.delete_desc=Wenn diese Repository gelöscht ist, gibt es keinen Weg zurück. Bitte sei behutsam. +settings.transfer_notices_1=- Du wirst den Zugang verlieren, wenn der neue Besitzer ein individueller Benutzer ist. +settings.transfer_notices_2=- Du wirst den Zugang behalten, wenn der neue Besitzer eine Organisation ist und du einer der Besitzer bist. +settings.transfer_form_title=Bitte gib die folgenden Informationen ein, um die Operation zu bestätigen: +settings.delete_notices_1=- Diese Operation kann <strong>NICHT</strong> rückgängig gemacht werden. +settings.delete_notices_2=- Die Operation wird alles, was mit dieser Git-Repository verbunden ist, dauerhaft löschen, inklusive der Daten, Issues, Kommentare und Zugriffsrechte von Benutzern. +settings.delete_notices_fork_1=- Wenn dies eine öffentliche Repository ist, werden nach der Löschung alle Forks unabhängig. +settings.delete_notices_fork_2=- Wenn dies eine private Repository ist, dann werden gleichzeitig alle Forks entfernt. +settings.delete_notices_fork_3=Wenn alle Forks erhalten bleiben sollen, dann muss zuerst die Sichtbarkeit der Repository auf öffentlich gesetzt werden. +settings.update_settings_success=Repository-Optionen aktualisiert. +settings.transfer_owner=Neuer Besitzer +settings.make_transfer=übertragen +settings.transfer_succeed=Die Repository wurde erfolgreich übertragen. +settings.confirm_delete=Löschen +settings.add_collaborator=Mitarbeiter hinzufügen +settings.add_collaborator_success=Mitarbeiter hinzugefügt +settings.remove_collaborator_success=Mitarbeiter entfernt +settings.search_user_placeholder=Benutzer suchen... +settings.user_is_org_member=Benutzer ist ein Organisationsmitglied und kann nicht als Mitarbeiter hinzugefügt werden. +settings.add_webhook=Webhook hinzufügen +settings.hooks_desc=Webhooks erlauben es dir, externe Dienste zu informieren, wenn etwas bestimmtes in deiner Repository passiert. Gogs sendet dann einen POST-Request an alle angegebenen URLs. Erfahre mehr in unserer <a target="_blank" href="%s">Webhooks Guide</a>. +settings.webhook_deletion=Webhook entfernen +settings.webhook_deletion_desc=Das Löschen dieses Webhooks wird alle zugehörigen Informationen und den Übertragungsverlauf entfernen. Wirklich fortfahren? +settings.webhook_deletion_success=Webhook wurde erfolgreich entfernt! +settings.webhook.request=Anfrage +settings.webhook.response=Rückmeldung +settings.webhook.headers=Kopfzeilen +settings.webhook.payload=Nutzdaten +settings.webhook.body=Inhalt +settings.githooks_desc=Git-Hooks werden von Git selbst bereitgestellt. Du kannst die Dateien der unterstützten Hooks in der Liste unten bearbeiten, um eigene Operationen einzubinden. +settings.githook_edit_desc=Wenn ein Hook inaktiv ist, wird der Standardinhalt benutzt. Lasse den Inhalt leer, um den Hook zu deaktivieren. +settings.githook_name=Hook-Name +settings.githook_content=Hook-Inhalt +settings.update_githook=Aktualisiere Hook +settings.add_webhook_desc=Gogs sendet einen <code>POST</code>-Request an die unten stehende URL mit Details aller abonnierten Ereignisse. Du kannst auch angeben, welches Datenformat du erhalten willst (JSON, <code>x-www-form-urlencoded</code>, <em>etc</em>). Mehr Informationen findest du im <a target="_blank" href="%s">Webhooks Guide</a>. +settings.payload_url=Payload-URL +settings.content_type=Inhaltstyp +settings.secret=Secret +settings.slack_username=Benutzername +settings.slack_icon_url=Icon URL +settings.slack_color=Farbe +settings.event_desc=Welche Ereignisse sollen diesen Webhook auslösen? +settings.event_push_only=Nur das <code>push</code>-Ereignis. +settings.event_send_everything=Ich brauche <strong>alles</strong>. +settings.event_choose=Lass mich auswählen, was ich brauche. +settings.event_create=Erstellen +settings.event_create_desc=Branch/Tag erstellt +settings.event_push=Push +settings.event_push_desc=Git push auf eine Repository +settings.active=Aktiv +settings.active_helper=Ereignisdetails werden ausgeliefert, wenn dieser Webhook ausgelöst wird. +settings.add_hook_success=Webhook hinzugefügt +settings.update_webhook=Webhook aktualisieren +settings.update_hook_success=Webhook wurde aktualisiert. +settings.delete_webhook=Webhook löschen +settings.recent_deliveries=letzte Zustellungen +settings.hook_type=Hook Typ +settings.add_slack_hook_desc=Füge <a href="%s">Slack</a>-Integration zu deiner Repository hinzu. +settings.slack_token=Token +settings.slack_domain=Domain +settings.slack_channel=Kanal +settings.deploy_keys=Deploy-Keys +settings.add_deploy_key=Deploy-Key hinzufügen +settings.no_deploy_keys=Du hast noch keine Deploy-Schlüssel hinzugefügt. +settings.title=Titel +settings.deploy_key_content=Inhalt +settings.key_been_used=Deploy-Schlüssel wurde verwendet. +settings.key_name_used=Ein Deploy-Schlüssel mit diesem Namen existiert bereits. +settings.add_key_success=Der Deploy-Schlüssel '%s' wurde erfolgreich hinzugefügt! +settings.deploy_key_deletion=Deploy-Key löschen +settings.deploy_key_deletion_desc=Nach der Löschung dieses Deploy-Keys werden zugehörige Zugriffe auf diese Repository nicht mehr möglich sein. Möchtest du wirklich fortfahren? +settings.deploy_key_deletion_success=Deploy-Key wurde erfolgreich gelöscht! + +diff.browse_source=Quellcode durchsuchen +diff.parent=Ursprung +diff.commit=Commit +diff.data_not_available=Keine Diff-Daten verfügbar. +diff.show_diff_stats=Diff-Statistik anzeigen +diff.stats_desc=<strong> %d geänderte Dateien</strong> mit <strong>%d neuen Zeilen</strong> und <strong>%d gelöschten Zeilen</strong> +diff.bin=BIN +diff.view_file=Datei anzeigen + +release.releases=Releases +release.new_release=Neues Release +release.draft=Entwurf +release.prerelease=Pre-Release +release.stable=Endversion +release.edit=bearbeiten +release.ahead=<strong>%d</strong> Commits zu %s seit diesem Release +release.source_code=Quelltext +release.new_subheader=Versionen des Projekts veröffentlichen. +release.edit_subheader=Detaillierte Änderungsprotokolle können Benutzern helfen zu verstehen, was verbessert wurde. +release.tag_name=Tag-Name +release.target=Ziel +release.tag_helper=Wähle ein neues Tag oder erstelle ein Tag beim Veröffentlichen. +release.title=Titel +release.content=Inhalt +release.write=Schreiben +release.preview=Vorschau +release.loading=Laden… +release.prerelease_desc=Dies ist eine Pre-Release-Version +release.prerelease_helper=Wir möchten darauf hinweisen, dass dieses Release nicht für den produktiven Einsatz gedacht ist. +release.cancel=Abbrechen +release.publish=Release veröffentlichen +release.save_draft=Entwurf speichern +release.edit_release=Release bearbeiten +release.delete_release=Delete This Release +release.deletion=Release Deletion +release.deletion_desc=Delete this release will delete corresponding Git tag. Do you want to continue? +release.deletion_success=Release has been deleted successfully! +release.tag_name_already_exist=Ein Release mit diesem Tag existiert bereits. +release.downloads=Downloads + +[org] +org_name_holder=Name der Organisation +org_full_name_holder=Vollständiger Name der Organisation +org_name_helper=Gute Namen von Organisationen sind kurz und einprägsam. +create_org=Organisation erstellen +repo_updated=Aktualisiert +people=Personen +invite_someone=Benutzer einladen +teams=Teams +lower_members=Mitglieder +lower_repositories=Repositories +create_new_team=Neues Team erstellen +org_desc=Beschreibung +team_name=Teamname +team_desc=Beschreibung +team_name_helper=Verwende diesen Namen, um dich auf dieses Team zu beziehen. +team_desc_helper=Was hat es mit diesem Team auf sich? +team_permission_desc=Welche Berechtigungsstufe soll das Team haben? + +form.name_reserved=Organisationsname '%s' ist bereits vergeben. +form.name_pattern_not_allowed=Organisations-Namensmuster '%s' ist nicht zulässig. + +settings=Einstellungen +settings.options=Optionen +settings.full_name=Vollständiger Name +settings.website=Webseite +settings.location=Standort +settings.update_settings=Einstellungen speichern +settings.update_setting_success=Organisationseinstellungen aktualisiert +settings.change_orgname_prompt=Diese Änderung wird sich auf die Linkbezüge zur Organisation auswirken. +settings.update_avatar_success=Avatareinstellung für die Organisation wurde erfolgreich aktualisiert. +settings.delete=Organisation löschen +settings.delete_account=Diese Organisation löschen +settings.delete_prompt=Die Organisation wird dauerhaft gelöscht. Dies kann <strong>NICHT</strong> rückgängig gemacht werden! +settings.confirm_delete_account=Löschen +settings.delete_org_title=Organisation löschen +settings.delete_org_desc=Diese Organisation wird dauerhaft gelöscht, möchtest du fortfahren? +settings.hooks_desc=Füge Webhooks hinzu, die für <strong>alle</strong> Repositories dieser Organisation ausgelöst werden. + +members.public=Öffentlich +members.public_helper=Privat machen +members.private=Privat +members.private_helper=Öffentlich machen +members.owner=Besitzer +members.member=Mitglied +members.conceal=Verbergen +members.remove=Entfernen +members.leave=Verlassen +members.invite_desc=Benutzernamen eingeben, um ihn als neues Mitglied in %s einzuladen: +members.invite_now=Jetzt einladen + +teams.join=Beitreten +teams.leave=Verlassen +teams.read_access=Lesezugriff +teams.read_access_helper=Dieses Team wird Repositorys einsehen und klonen können. +teams.write_access=Schreibzugriff +teams.write_access_helper=Dieses Team wird die Repositories einsehen und Push Operationen ausführen können. +teams.admin_access=Adminzugriff +teams.admin_access_helper=Dieses Team wird pull- und push-Rechte für die Repositorys haben und Mitarbeiter einladen können. +teams.no_desc=Dieses Team hat keine Beschreibung +teams.settings=Einstellungen +teams.owners_permission_desc=Besitzer haben vollen Zugriff auf <strong>alle Repositorys</strong> und <strong>Admin Rechte</strong> für diese Organisation. +teams.members=Teammitglieder +teams.update_settings=Einstellungen aktualisieren +teams.delete_team=Dieses Team löschen +teams.add_team_member=Teammitglied hinzufügen +teams.delete_team_title=Team löschen +teams.delete_team_desc=Dieses Team wird gelöscht, möchtest du fortfahren? Mitglieder dieses Teams verlieren möglicherweise ihren Zugang zu einigen Repositories. +teams.delete_team_success=Team gelöscht +teams.read_permission_desc=Dieses Team erlaubt <strong>Lesezugriff</strong>: Mitglieder können Team-Repositories einsehen und klonen. +teams.write_permission_desc=Dieses Team erlaubt <strong>Schreibzugriff</strong>: Mitglieder können Team-Repositories einsehen und Push Operationen ausführen. +teams.admin_permission_desc=Diese Team erlaubt <strong>Adminzugriff</strong>: Mitglieder dieses Teams können pullen, pushen und dem Team Mitarbeiter hinzufügen. +teams.repositories=Team-Repositorys +teams.add_team_repository=Team-Repository hinzufügen +teams.remove_repo=Entfernen +teams.add_nonexistent_repo=Die Repository, welche du hinzufügen möchtest, existiert nicht. Bitte erstelle diese zuerst. + +[admin] +dashboard=Dashboard +users=Benutzer +organizations=Organisationen +repositories=Repositorys +authentication=Authentifizierung +config=Konfiguration +notices=System-Mitteilungen +monitor=Monitoring +first_page=Erste +last_page=Letzte +total=Total: %d + +dashboard.statistic=Statistik +dashboard.operations=Operationen +dashboard.system_status=System-Monitor-Status +dashboard.statistic_info=GoGS Datenbank hat <b>%d</b> Benutzer, <b>%d</b> Organisationen, <b>%d</b> öffentliche Schlüssel, <b>%d</b> Repositorys, <b>%d</b> Beobachtungen, <b>%d</b> Markierungen, <b>%d</b> Aktionen, <b>%d</b> Zugriffe, <b>%d</b> Issues, <b>%d</b> Kommentare, <b>%d</b> soziale Konten, <b>%d</b> Folgende, <b>%d</b> Spiegel, <b>%d</b> Releases, <b>%d</b> Login-Quellen, <b>%d</b> Webhooks, <b>%d</b> Milestones, <b>%d</b> Labels, <b>%d</b> Hook-Tasks, <b>%d</b> Teams, <b>%d</b> Aktualisierungs-Tasks, <b>%d</b> Anhänge. +dashboard.operation_name=Name der Operation +dashboard.operation_switch=Switch +dashboard.operation_run=Ausführen +dashboard.clean_unbind_oauth=ungebundene OAuths bereinigen +dashboard.clean_unbind_oauth_success=Alle ungebundenen OAuth-Tokens wurden gelöscht. +dashboard.delete_inactivate_accounts=inaktive Konten löschen +dashboard.delete_inactivate_accounts_success=Alle inaktiven Konten wurden erfolgreich gelöscht. +dashboard.delete_repo_archives=Alle Repository-Archive löschen +dashboard.delete_repo_archives_success=Alle Repository-Archive wurden gelöscht. +dashboard.delete_missing_repos=Löschen Sie alle Repository-Datensätze, mit verlorenen Git-Dateien +dashboard.delete_missing_repos_success=Alle Repository-Datensätze, mit verlorenen Git-Dateien wurden erfolgreich gelöscht. +dashboard.git_gc_repos=Führe Garbage Collection auf Repositories aus +dashboard.git_gc_repos_success=Garbage Collection wurde auf allen Repositories erfolgreich ausgeführt. +dashboard.resync_all_sshkeys=Überschreibe '.ssh/authorized_keys' Datei (Warnung: Keys, die nicht zu Gogs gehören gehen verloren) +dashboard.resync_all_sshkeys_success=Alle öffentlichen Keys wurden erfolgreich neu geschrieben. +dashboard.resync_all_update_hooks=Überschreibe alle Hooks der Repositories (benötigt, wenn sich der Pfad in der Konfiguration ändert) +dashboard.resync_all_update_hooks_success=Die Hooks aller Repositories sind erfolgreich neu geschrieben worden. + +dashboard.server_uptime=Server-Uptime +dashboard.current_goroutine=Aktuelle Goroutines +dashboard.current_memory_usage=Aktuelle Speichernutzung +dashboard.total_memory_allocated=Zugeteilter Gesamtspeicher +dashboard.memory_obtained=Erhaltener Speicher +dashboard.pointer_lookup_times=Pointer Lookup Times +dashboard.memory_allocate_times=Memory Allocate Times +dashboard.memory_free_times=Memory Free Times +dashboard.current_heap_usage=Aktuelle Heap-Auslastung +dashboard.heap_memory_obtained=erhaltener Heap-Memory +dashboard.heap_memory_idle=unbenutzter Heap-Memory +dashboard.heap_memory_in_use=benutzter Heap-Memory +dashboard.heap_memory_released=freigegebener Heap-Memory +dashboard.heap_objects=Heap-Objekte +dashboard.bootstrap_stack_usage=Bootstrap-Stack-Auslastung +dashboard.stack_memory_obtained=erhaltener Stack-Memory +dashboard.mspan_structures_usage=MSpan-Structures-Auslastung +dashboard.mspan_structures_obtained=erhaltene MSpan-Structures +dashboard.mcache_structures_usage=MCache-Structures-Auslastung +dashboard.mcache_structures_obtained=erhaltene MCache-Structures +dashboard.profiling_bucket_hash_table_obtained=Profiling Bucket Hash Table Obtained +dashboard.gc_metadata_obtained=erhaltene GC-Metadata +dashboard.other_system_allocation_obtained=andere erhaltene System-Allokatoren +dashboard.next_gc_recycle=nächster GC-Zyklus +dashboard.last_gc_time=seit letztem GC-Zyklus +dashboard.total_gc_time=gesamte GC-Zeit +dashboard.total_gc_pause=gesamte GC-Pause +dashboard.last_gc_pause=letzte GC-Pause +dashboard.gc_times=GC-Takt + +users.user_manage_panel=Benutzer +users.new_account=Neues Konto erstellen +users.name=Name +users.activated=Aktiviert +users.admin=Admin +users.repos=Repositorys +users.created=Erzeugt +users.send_register_notify=Sende Registrierungsbenachrichtigung an Benutzer +users.new_success=Der neue Account '%s' wurde erfolgreich erstellt. +users.edit=Bearbeiten +users.auth_source=Authentifizierungsquelle +users.local=Lokal +users.auth_login_name=Authentifizierung-Loginnname +users.password_helper=Leer lassen um es unverändert zu lassen. +users.update_profile_success=Kontoprofil wurde erfolgreich aktualisiert. +users.edit_account=Konto bearbeiten +users.is_activated=Dieses Konto ist aktiviert +users.is_admin=Dieses Konto hat Administratorrechte +users.allow_git_hook=Dieses Konto ist berechtigt, Git-Hooks zu erstellen +users.allow_import_local=Dieses Konto ist berechtigt, lokale Repositorys zu importieren +users.update_profile=Kontoprofil aktualisieren +users.delete_account=Dieses Konto löschen +users.still_own_repo=Dieses Konto besitzt noch Repositories. Diese müssen zuerst gelöscht oder übertragen werden. +users.still_has_org=Dieses Konto ist noch Mitglied einer Organisation, bitte entferne diese Mitgliedschaft zuerst. +users.deletion_success=Das Konto wurde erfolgreich gelöscht! + +orgs.org_manage_panel=Organisationenverwaltung +orgs.name=Name +orgs.teams=Teams +orgs.members=Mitglieder + +repos.repo_manage_panel=Repositorys +repos.owner=Besitzer +repos.name=Name +repos.private=Privat +repos.watches=Beobachtungen +repos.stars=Markierungen +repos.issues=Issues + +auths.auth_manage_panel=Verwaltungspanel für die Authentifizierung +auths.new=Neue Quelle hinzufügen +auths.name=Name +auths.type=Typ +auths.enabled=aktiviert +auths.updated=aktualisiert +auths.auth_type=Authentifizierungstyp +auths.auth_name=Authentifizierungsname +auths.domain=Domain +auths.host=Host +auths.port=Port +auths.bind_dn=DN binden +auths.bind_password=Passwort binden +auths.bind_password_helper=Warnung: Das Passwort wird im Klartext gespeichert. Benutze keinen Account mit hohen Zugriffsrechten. +auths.user_base=Benutzer-Such-Basis +auths.user_dn=Benutzer DN +auths.attribute_name=Vorname Attribut +auths.attribute_surname=Nachname Attribut +auths.attribute_mail=E-Mail Attribut +auths.filter=Benutzernamen Filter +auths.admin_filter=Admin Filter +auths.ms_ad_sa=Ms Ad SA +auths.smtp_auth=SMTP Authentifizierungstyp +auths.smtphost=SMTP-Host +auths.smtpport=SMTP-Port +auths.allowed_domains=Erlaubte Domains +auths.allowed_domains_helper=Leer lassen für keine Einschränkungen. Mehrere Domains können durch Komma "," getrennt werden. +auths.enable_tls=TLS-Verschlüsselung aktivieren +auths.skip_tls_verify=TLS-Prüfung überspringen +auths.pam_service_name=PAM Dienstname +auths.enable_auto_register=Automatische Registrierung aktivieren +auths.tips=Tipps +auths.edit=Authentifizierungseinstellungen bearbeiten +auths.activated=Diese Authentifizierung ist aktiviert +auths.new_success=Neue Authentifizierung '%s' wurde erfolgreich hinzugefügt. +auths.update_success=Die Authentifizierungseinstellungen wurden erfolgreich aktualisiert. +auths.update=Authentifizierungseinstellungen aktualisieren +auths.delete=Diese Authentifizierung löschen +auths.delete_auth_title=Löschen der Authentifizierung +auths.delete_auth_desc=Diese Authentifizierung wird gelöscht, möchtest du fortfahren? +auths.deletion_success=Authentifizierung wurde erfolgreich entfernt! + +config.server_config=Server-Konfiguration +config.app_name=Anwendungsname +config.app_ver=Anwendungsversion +config.app_url=Anwendungs-URL +config.domain=Domain +config.offline_mode=Offline-Modus +config.disable_router_log=Router-Log deaktivieren +config.run_user=Laufzeit-Benutzer +config.run_mode=Laufzeit-Modus +config.repo_root_path=Repository-Verzeichnis +config.static_file_root_path=Verzeichnis für statische Dateien +config.log_file_root_path=Log-Verzeichnis +config.script_type=Skript-Typ +config.reverse_auth_user=Nutzer bei Reverse-Authentifizierung +config.db_config=Datenbankkonfiguration +config.db_type=Typ +config.db_host=Host +config.db_name=Name +config.db_user=Benutzer +config.db_ssl_mode=SSL-Modus +config.db_ssl_mode_helper=(nur für "postgres") +config.db_path=Verzeichnis +config.db_path_helper=(für "sqlite3" und "tidb") +config.service_config=Service-Einstellungen +config.register_email_confirm=E-Mail-Bestätigung bei Registrierung +config.disable_register=Registrierung deaktivieren +config.show_registration_button=Zeige die Schaltfläche Registrieren +config.require_sign_in_view=Ansehen erfordert Registrierung +config.enable_cache_avatar=Avatar-Cache aktivieren +config.mail_notify=E-Mail-Benachrichtigung +config.disable_key_size_check=Prüfung der Mindestschlüssellänge deaktiveren +config.enable_captcha=Captcha aktivieren +config.active_code_lives=Aktivierungscode Lebensdauer +config.reset_password_code_lives=Passwortcode Lebensdauer +config.webhook_config=Webhook-Einstellungen +config.queue_length=Warteschlangenlänge +config.deliver_timeout=Zeitlimit für Zustellung +config.skip_tls_verify=TLS verifikation überspringen +config.mailer_config=Mailer-Einstellungen +config.mailer_enabled=Aktiviert +config.mailer_disable_helo=HELO Deaktivieren +config.mailer_name=Name +config.mailer_host=Host +config.mailer_user=Benutzer +config.oauth_config=OAuth-Einstellungen +config.oauth_enabled=Aktiviert +config.cache_config=Cache-Einstellungen +config.cache_adapter=Cache-Adapter +config.cache_interval=Cache-Intervall +config.cache_conn=Cache-Anbindung +config.session_config=Session-Einstellungen +config.session_provider=Session-Provider +config.provider_config=Provider-Einstellungen +config.cookie_name=Cookie-Name +config.enable_set_cookie=Cookies einschalten +config.gc_interval_time=GC-Intervallzeit +config.session_life_time=Session-Lebensdauer +config.https_only=nur HTTPS +config.cookie_life_time=Cookie-Lebensdauer +config.picture_config=Bildeinstellungen +config.picture_service=Bildservice +config.disable_gravatar=Gravatar deaktivieren +config.log_config=Log-Einstellungen +config.log_mode=Log-Modus + +monitor.cron=Cron-Tasks +monitor.name=Name +monitor.schedule=Zeitplan +monitor.next=nächste Ausführung +monitor.previous=letzte Ausführung +monitor.execute_times=Anzahl Ausführungen +monitor.process=Laufende Prozesse +monitor.desc=Beschreibung +monitor.start=Startzeit +monitor.execute_time=Ausführungszeit + +notices.system_notice_list=System-Mitteilungen +notices.type=Typ +notices.type_1=Repository +notices.desc=Beschreibung +notices.op=Op. +notices.delete_success=System-Mitteilung erfolgreich gelöscht. + +[action] +create_repo=hat Repository <a href="%s">%s</a> erstellt +rename_repo=das Repository wurde umbenannt von <code>%[1]s</code> zu <a href="%[2]s">%[3]s</a> +commit_repo=hat nach <a href="%[1]s/src/%[2]s">%[3]s</a> in <a href="%[1]s">%[4]s</a> gepusht +create_issue=`hat Issue <a href="%s/issues/%s">%s#%[2]s</a> eröffnet` +create_pull_request=`Pull-Anforderung erstellt <a href="%s/pulls/%s">%s#%[2]s</a>` +comment_issue=`hat Issue <a href="%s/issues/%s">%s#%[2]s</a> kommentiert` +merge_pull_request=`Pull-Request <a href="%s/pulls/%s">%s#%[2]s</a> zuammengeführt` +transfer_repo=hat Repository <code>%s</code> transferiert an <a href="%s">%s</a> +push_tag=hat nach <a href="%s/src/%s">%[2]s</a> in <a href="%[1]s">%[3]s</a> gepusht +compare_2_commits=Zeige Vergleich dieser 2 Commits + +[tool] +ago=vor +from_now=ab sofort +now=Jetzt +1s=%s 1 Sekunde +1m=%s 1 Minute +1h=%s 1 Stunde +1d=%s 1 Tag +1w=%s 1 Woche +1mon=%s 1 Monat +1y=%s 1 Jahr +seconds=%[2]s %[1]d Sekunden +minutes=%[2]s %[1]d Minuten +hours=%[2]s %[1]d Stunden +days=%[2]s %[1]d Tagen +weeks=%[2]s %[1]d Wochen +months=%[2]s %[1]d Monaten +years=%[2]s %[1]d Jahren +raw_seconds=Sekunden +raw_minutes=Minuten + +[dropzone] +default_message=Für den Upload klicken oder die Datei hier ablegen. +invalid_input_type=Dateien dieses Dateityps können nicht hochgeladen werden. +file_too_big=Dateigröße ({{filesize}} MB) überschreitet die Maximalgröße ({{maxFilesize}} MB). +remove_file=Datei entfernen + diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 14d6ca5b..a1168fee 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -148,7 +148,6 @@ forgot_password= Forgot Password forget_password = Forgot password? sign_up_now = Need an account? Sign up now. confirmation_mail_sent_prompt = A new confirmation e-mail has been sent to <b>%s</b>, please check your inbox within the next %d hours to complete the registration process. -sign_in_to_account = Sign in to your account active_your_account = Activate Your Account resent_limit_prompt = Sorry, you already requested an activation email recently. Please wait 3 minutes then try again. has_unconfirmed_mail = Hi %s, you have an unconfirmed e-mail address (<b>%s</b>). If you haven't received a confirmation e-mail or need to resend a new one, please click on the button below. @@ -165,6 +164,7 @@ activate_account = Please activate your account activate_email = Verify your e-mail address reset_password = Reset your password register_success = Register success, Welcome +register_notify = Welcome on board [modal] yes = Yes @@ -337,6 +337,7 @@ visibility = Visibility visiblity_helper = This repository is <span class="ui red text">Private</span> visiblity_helper_forced = Site admin has forced all new repositories to be <span class="ui red text">Private</span> visiblity_fork_helper = (Change of this value will affect all forks) +clone_helper = Need help cloning? Visit <a target="_blank" href="%s">Help</a>! fork_repo = Fork Repository fork_from = Fork From fork_visiblity_helper = You cannot alter the visibility of a forked repository. @@ -351,6 +352,9 @@ auto_init = Initialize this repository with selected files and template create_repo = Create Repository default_branch = Default Branch mirror_interval = Mirror Interval (hour) +watchers = Watchers +stargazers = Stargazers +forks = Forks form.name_reserved = Repository name '%s' is reserved. form.name_pattern_not_allowed = Repository name pattern '%s' is not allowed. @@ -361,16 +365,16 @@ migrate_type_helper = This repository will be a <span class="text blue">mirror</ migrate_repo = Migrate Repository migrate.clone_address = Clone Address migrate.clone_address_desc = This can be a HTTP/HTTPS/GIT URL or local server path. +migrate.permission_denied = You are not allowed to import local repositories. migrate.invalid_local_path = Invalid local path, it does not exist or not a directory. +migrate.failed = Migration failed: %v forked_from = forked from fork_from_self = You cannot fork repository you already owned! copy_link = Copy copy_link_success = Copied! copy_link_error = Press ⌘-C or Ctrl-C to copy -click_to_copy = Copy to clipboard copied = Copied OK -clone_helper = Need help cloning? Visit <a target="_blank" href="%s">Help</a>! unwatch = Unwatch watch = Watch unstar = Unstar @@ -384,10 +388,9 @@ create_new_repo_command = Create a new repository on the command line push_exist_repo = Push an existing repository from the command line repo_is_empty = This repository is empty, please come back later! - branch = Branch tree = Tree -branch_and_tags = Branches & Tags +filter_branch_and_tag = Filter branch or tag branches = Branches tags = Tags issues = Issues @@ -456,9 +459,9 @@ issues.num_comments = %d comments issues.commented_at = `commented <a id="%[1]s" href="#%[1]s">%[2]s</a>` issues.no_content = There is no content yet. issues.close_issue = Close -issues.close_comment_issue = Close and comment +issues.close_comment_issue = Comment and close issues.reopen_issue = Reopen -issues.reopen_comment_issue = Reopen and comment +issues.reopen_comment_issue = Comment and reopen issues.create_comment = Comment issues.closed_at = `closed <a id="%[1]s" href="#%[1]s">%[2]s</a>` issues.reopened_at = `reopened <a id="%[1]s" href="#%[1]s">%[2]s</a>` @@ -482,6 +485,7 @@ issues.label_deletion = Label Deletion issues.label_deletion_desc = Delete this label will remove its information in all related issues. Do you want to continue? issues.label_deletion_success = Label has been deleted successfully! +pulls.new = New Pull Request pulls.compare_changes = Compare Changes pulls.compare_changes_desc = Compare two branches and make a pull request for changes. pulls.compare_base = base @@ -520,7 +524,7 @@ milestones.title = Title milestones.desc = Description milestones.due_date = Due Date (optional) milestones.clear = Clear -milestones.invalid_due_date_format = Due date format is invalid, must be 'year-mm-dd'. +milestones.invalid_due_date_format = Due date format is invalid, must be 'yyyy-mm-dd'. milestones.create_success = Milestone '%s' has been created successfully! milestones.edit = Edit Milestone milestones.edit_subheader = Use better description for milestones so people won't be confused. @@ -562,6 +566,7 @@ settings.confirm_delete = Confirm Deletion settings.add_collaborator = Add New Collaborator settings.add_collaborator_success = New collaborator has been added. settings.remove_collaborator_success = Collaborator has been removed. +settings.search_user_placeholder = Search user... settings.user_is_org_member = User is organization member who cannot be added as a collaborator. settings.add_webhook = Add Webhook settings.hooks_desc = Webhooks are much like basic HTTP POST event triggers. Whenever something occurs in Gogs, we will handle the notification to the target host you specify. Learn more in this <a target="_blank" href="%s">Webhooks Guide</a>. @@ -634,24 +639,32 @@ release.stable = Stable release.edit = edit release.ahead = <strong>%d</strong> commits to %s since this release release.source_code = Source Code +release.new_subheader = Publish releases to iterate product. +release.edit_subheader = Detailed change log can help users understand what has been improved. release.tag_name = Tag name release.target = Target release.tag_helper = Choose an existing tag, or create a new tag on publish. -release.release_title = Release title -release.content_with_md = Content with <a href="%s">Markdown</a> +release.title = Title +release.content = Content release.write = Write release.preview = Preview -release.content_placeholder = Write some content release.loading = Loading... release.prerelease_desc = This is a pre-release release.prerelease_helper = We’ll point out that this release is not production-ready. +release.cancel = Cancel release.publish = Publish Release release.save_draft = Save Draft release.edit_release = Edit Release +release.delete_release = Delete This Release +release.deletion = Release Deletion +release.deletion_desc = Delete this release will delete corresponding Git tag. Do you want to continue? +release.deletion_success = Release has been deleted successfully! release.tag_name_already_exist = Release with this tag name has already existed. +release.downloads = Downloads [org] org_name_holder = Organization Name +org_full_name_holder = Organization Full Name org_name_helper = Great organization names are short and memorable. create_org = Create Organization repo_updated = Updated @@ -688,16 +701,17 @@ settings.delete_org_title = Organization Deletion settings.delete_org_desc = This organization is going to be deleted permanently, do you want to continue? settings.hooks_desc = Add webhooks that will be triggered for <strong>all repositories</strong> under this organization. +members.membership_visibility = Membership Visibility: members.public = Public members.public_helper = make private members.private = Private members.private_helper = make public +members.member_role = Member Role: members.owner = Owner members.member = Member -members.conceal = Conceal members.remove = Remove members.leave = Leave -members.invite_desc = Start typing a username to invite a new member to %s: +members.invite_desc = Add a new member to %s: members.invite_now = Invite Now teams.join = Join @@ -722,6 +736,7 @@ teams.read_permission_desc = This team grants <strong>Read</strong> access: memb teams.write_permission_desc = This team grants <strong>Write</strong> access: members can read from and push to the team's repositories. teams.admin_permission_desc = This team grants <strong>Admin</strong> access: members can read from, push to, and add collaborators to the team's repositories. teams.repositories = Team Repositories +teams.search_repo_placeholder = Search repository... teams.add_team_repository = Add Team Repository teams.remove_repo = Remove teams.add_nonexistent_repo = The repository you're trying to add does not exist, please create it first. @@ -752,6 +767,8 @@ dashboard.delete_inactivate_accounts = Delete all inactive accounts dashboard.delete_inactivate_accounts_success = All inactivate accounts have been deleted successfully. dashboard.delete_repo_archives = Delete all repositories archives dashboard.delete_repo_archives_success = All repositories archives have been deleted successfully. +dashboard.delete_missing_repos = Delete all repository records that lost Git files +dashboard.delete_missing_repos_success = All repository records that lost Git files have been deleted successfully. dashboard.git_gc_repos = Do garbage collection on repositories dashboard.git_gc_repos_success = All repositories have done garbage collection successfully. dashboard.resync_all_sshkeys = Rewrite '.ssh/authorized_keys' file (caution: non-Gogs keys will be lost) @@ -808,6 +825,7 @@ users.edit_account = Edit Account users.is_activated = This account is activated users.is_admin = This account has administrator permissions users.allow_git_hook = This account has permissions to create Git hooks +users.allow_import_local = This account has permissions to import local repositories users.update_profile = Update Account Profile users.delete_account = Delete This Account users.still_own_repo = This account still has ownership over at least one repository, you have to delete or transfer them first. @@ -955,7 +973,7 @@ notices.delete_success = System notice has been deleted successfully. [action] create_repo = created repository <a href="%s">%s</a> rename_repo = renamed repository from <code>%[1]s</code> to <a href="%[2]s">%[3]s</a> -commit_repo = pushed to <a href="%s/src/%s">%[2]s</a> at <a href="%[1]s">%[3]s</a> +commit_repo = pushed to <a href="%[1]s/src/%[2]s">%[3]s</a> at <a href="%[1]s">%[4]s</a> create_issue = `opened issue <a href="%s/issues/%s">%s#%[2]s</a>` create_pull_request = `created pull request <a href="%s/pulls/%s">%s#%[2]s</a>` comment_issue = `commented on issue <a href="%s/issues/%s">%s#%[2]s</a>` diff --git a/conf/locale/locale_es-ES.ini b/conf/locale/locale_es-ES.ini index ecccf132..90825b19 100755 --- a/conf/locale/locale_es-ES.ini +++ b/conf/locale/locale_es-ES.ini @@ -1,992 +1,1009 @@ -app_desc=Un servicio de Git auto alojado y sin complicaciones
-
-home=Inicio
-dashboard=Panel de control
-explore=Explorar
-help=Ayuda
-sign_in=Iniciar sesión
-sign_out=Cerrar sesión
-sign_up=Suscripción
-register=Registro
-website=Página Web
-version=Versión
-page=Página
-template=Plantilla
-language=Idioma
-create_new=Crear...
-user_profile_and_more=Perfil de usuario y más
-signed_in_as=Identificado como
-
-username=Nombre de usuario
-email=Correo electrónico
-password=Contraseña
-re_type=Ingrese de nuevo
-captcha=Captcha
-
-repository=Repositorio
-organization=Organización
-mirror=Mirror
-new_repo=Nuevo repositorio
-new_migrate=Nueva Migración
-new_fork=Nuevo Fork del Repositorio
-new_org=Nueva organización
-manage_org=Administrar organizaciones
-admin_panel=Panel de administración
-account_settings=Configuraciones de la cuenta
-settings=Configuraciones
-your_profile=Tu perfil
-your_settings=Tu configuración
-
-news_feed=Feed de noticias
-pull_requests=Pull Requests
-issues=Incidencias
-
-cancel=Cancelar
-
-[search]
-search=Buscar...
-repository=Repositorio
-user=Usuario
-issue=Incidencia
-code=Código
-
-[install]
-install=Instalación
-title=Pasos de la instalación por primera vez
-docker_helper=Si está ejecutando Gogs usando Docker, por favor lea <a target="_blank" href="%s"> estas pautas</a> antes de cambiar nada en esta página!
-requite_db_desc=Gogs requiere una base de datos MySQL, PostgreSQL, SQLite3 o TiDB.
-db_title=Configuración de base de datos
-db_type=Tipo de base de datos
-host=Host
-user=Usuario
-password=Contraseña
-db_name=Nombre de la base de datos
-db_helper=Por favor utilice el motor INNODB con la configuración de caracteres utf8_general_ci para MySQL.
-ssl_mode=Modo SSL
-path=Ruta
-sqlite_helper=Ruta del archivo con la base de datos SQLite3 o TiDB.
-err_empty_db_path=La ruta a la base de datos SQLite3 o TiDB no puede estar vacía.
-err_invalid_tidb_name=El nombre de la base de datos TiDB no puede contener los caracteres "." ni "-".
-no_admin_and_disable_registration=No puede deshabilitar el registro sin crear una cuenta de administrador.
-err_empty_admin_password=La contraseña de administrador no puede estar vacía.
-
-general_title=Configuración General de Gogs
-app_name=Nombre de la Aplicación
-app_name_helper=Pon aquí el nombre de tu organización, ¡alto y claro!
-repo_path=Ruta del repositorio de Raiz (Root)
-repo_path_helper=Todos los repositorios remotos de Git se guardarán en este directorio.
-run_user=Ejecutar como Usuario
-run_user_helper=El usuario necesita tener acceso a la Ruta Raíz del Repositorio y ejecutar Gogs.
-domain=Dominio
-domain_helper=Esto afecta a las URLs para clonar por SSH.
-ssh_port=Puerto SSH
-ssh_port_helper=Número de puerto de su servidor SSH, déjelo en blanco para desactivar SSH.
-http_port=Puerto HTTP
-http_port_helper=Puerto en el que escuchará la aplicación.
-app_url=URL de la aplicación
-app_url_helper=Esto afecta a las URLs para clonar por HTTP/HTTPS y a algunos correos electrónicos.
-
-optional_title=Configuración Opcional
-email_title=Configuración del Servicio de Correo
-smtp_host=SMTP Host
-smtp_from=Desde
-smtp_from_helper=Remitente del email, RFC 5322. Puede ser solamente una dirección de correo electrónico, o estar en el formato "Nombre" <email@example.com>.
-mailer_user=Remitente del Correo Electrónico
-mailer_password=Contraseña del Remitente
-register_confirm=Habilitar la Confirmación en el Registro
-mail_notify=Habilitar las Notificaciones de Correo
-server_service_title=Configuración de Servidor y Otros Servicios
-offline_mode=Activar el modo Sin Conexión
-offline_mode_popup=Desactivar el CDN incluso en el modo de producción, todos los recursos se servirán localmente.
-disable_gravatar=Desactivar el Servicio Gravatar
-disable_gravatar_popup=Desactivar Gravatar y cualquier otra fuente personalizada. Todos los avatares deben ser cargados por los usuarios o en su defecto se mostrará el avatar predeterminado.
-disable_registration=Desactivar Auto-Registro
-disable_registration_popup=Desactivar auto-registro del usuario, solo el administrador podrá crear cuentas nuevas.
-enable_captcha=Activar la Captcha
-enable_captcha_popup=Requiere validar la captcha para el auto-registro de usuario.
-require_sign_in_view=Activar el Inicio de Sesión obligatorio para Ver Páginas
-require_sign_in_view_popup=Solo los usuarios logados pueden ver páginas, los visitantes anónimos solo podrán ver las páginas de login/registro.
-admin_setting_desc=No es necesario crear una cuenta de administrador ahora mismo, el usuario que tenga ID=1 obtendrá privilegios de administrador automáticamente.
-admin_title=Configuración de la Cuenta de Administrador
-admin_name=Nombre de usuario
-admin_password=Contraseña
-confirm_password=Confirmar Contraseña
-admin_email=Correo electrónico
-install_gogs=Instalar Gogs
-test_git_failed=Fallo al probar el comando 'git': %v
-sqlite3_not_available=Tu versión no soporta SQLite3, por favor descarga el binario oficial desde %s, NO la versión de gobuild.
-invalid_db_setting=La configuración de la base de datos no es correcta: %v
-invalid_repo_path=La ruta de la raíz del repositorio es inválida: %v
-run_user_not_match=El usuario que está ejecutando la aplicación no es el usuario actual: %s -> %s
-save_config_failed=Error al guardar la configuración: %v
-invalid_admin_setting=La configuración de la cuenta de administración es inválida: %v
-install_success=Bienvenido! Estamos encantados de que hayas escogido Gogs, diviértete y cuídate.
-
-[home]
-uname_holder=Nombre de usuario o correo electrónico
-password_holder=Contraseña
-switch_dashboard_context=Cambiar el contexto del Dashboard
-my_repos=Mis Repositorios
-collaborative_repos=Repositorios Colaborativos
-my_orgs=Mis Organizaciones
-my_mirrors=Mis Mirrors
-view_home=Ver %s
-
-issues.in_your_repos=En tus repositorios
-
-[explore]
-repos=Repositorios
-
-[auth]
-create_new_account=Crear una Nueva Cuenta
-register_hepler_msg=¿Ya tienes una cuenta? ¡Inicia sesión!
-social_register_hepler_msg=¿Ya tienes una cuenta? ¡Enlázala!
-disable_register_prompt=Lo sentimos, el registro está deshabilitado. Por favor, contacta con el administrador del sitio.
-disable_register_mail=Lo sentimos. Los correos de Confirmación de Registro están deshabilitados.
-remember_me=Recuérdame
-forgot_password=He olvidado mi contraseña
-forget_password=¿Has olvidado tu contraseña?
-sign_up_now=¿Necesitas una cuenta? Regístrate ahora.
-confirmation_mail_sent_prompt=Un nuevo correo de confirmación se ha enviado a <b>%s</b>. Por favor, comprueba tu bandeja de entrada en las siguientes %d horas para completar el proceso de registro.
-sign_in_to_account=Inicie sesión en su cuenta
-active_your_account=Activa tu cuenta
-resent_limit_prompt=Lo sentimos, estás solicitando el reenvío del mail de activación con demasiada frecuencia. Por favor, espera 3 minutos.
-has_unconfirmed_mail=Hola %s, tu correo electrónico (<b>%s</b>) no está confirmado. Si no has recibido un correo de confirmación o necesitas que lo enviemos de nuevo, por favor, haz click en el siguiente botón.
-resend_mail=Haz click aquí para reenviar tu correo electrónico de activación
-email_not_associate=Esta dirección de correo electrónico no esta asociada a ninguna cuenta.
-send_reset_mail=Haga clic aquí para (re)enviar el correo para el restablecimiento de la contraseña
-reset_password=Restablecer su contraseña
-invalid_code=Lo sentimos, su código de confirmación ha expirado o no es valido.
-reset_password_helper=Haga Clic aquí para restablecer su contraseña
-password_too_short=La longitud de la contraseña no puede ser menor a 6.
-
-[mail]
-activate_account=Por favor, active su cuenta
-activate_email=Verifique su correo electrónico
-reset_password=Restablezca su contraseña
-register_success=Registro completado, bienvenido
-
-[modal]
-yes=Sí
-no=No
-modify=Editar
-
-[form]
-UserName=Nombre de usuario
-RepoName=Nombre del repositorio
-Email=Dirección de correo electrónico
-Password=Contraseña
-Retype=Vuelva a escribir la contraseña
-SSHTitle=Nombre de la Clave de SSH
-HttpsUrl=HTTPS URL
-PayloadUrl=URL de carga
-TeamName=Nombre del equipo
-AuthName=Nombre de autorización
-AdminEmail=Correo electrónico del administrador
-
-require_error=` no puede estar vacío.`
-alpha_dash_error=` los caracteres deben ser Alfanumericos o dash(-_).`
-alpha_dash_dot_error=` debe ser un caracter alfanumérivo válido, un guión alto o bajo (-_) o un signo de puntuación.`
-size_error=` debe ser de tamaño %s.`
-min_size_error=` debe contener al menos %s caracteres.`
-max_size_error=` debe contener como máximo %s caracteres.`
-email_error=` no es una dirección de correo válida.`
-url_error=` no es una URL válida.`
-unknown_error=Error desconocido:
-captcha_incorrect=El captcha no es válido.
-password_not_match=La contraseña de confirmación no coincide.
-
-username_been_taken=Ya existe un usuario con este nombre.
-repo_name_been_taken=Ya existe un repositorio con este nombre.
-org_name_been_taken=Ya existe una organización con este nombre.
-team_name_been_taken=Ya existe un equipo con este nombre.
-email_been_used=Esta dirección de correo electrónico ya está en uso.
-illegal_team_name=El nombre del equipo contiene caracteres inválidos.
-username_password_incorrect=Nombre de usuario o contraseña incorrectos.
-enterred_invalid_repo_name=Por favor, asegúrate de que has introducido correctamente el nombre del repositorio.
-enterred_invalid_owner_name=Por favor, asegúrate de que has introducido correctamente el nombre del propietario.
-enterred_invalid_password=Por favor, asegúrate de que has introducido correctamente tu contraseña.
-user_not_exist=El usuario indicado no existe.
-last_org_owner=El usuario que se intenta eliminar es el último miembro del equipo de propietarios. Debe existir otro propietario.
-
-invalid_ssh_key=Lo sentimos, no somos capaces de verificar tu clave SSH: %s
-unable_verify_ssh_key=Gogs no puede velificar tu clave SSH, pero asumimos que es válida. Por favor, asegúrate de que es así.
-auth_failed=Error de autenticación: %v
-
-still_own_repo=Tu cuenta es la propietaria de uno o más repositorios, tienes que borrarlos o transferirlos primero.
-still_has_org=Tu cuenta es miembro de una o más organizaciones, tienes que abandonarlas o eliminarlas primero.
-org_still_own_repo=Esta organización es dueña de uno o más repositorios, tienes que eliminarlos o transferirlos primero.
-
-still_own_user=Esta autenticación está en uso por algunos usuarios, debes moverlos y antes de eliminarla.
-
-target_branch_not_exist=La rama de destino no existe
-
-[user]
-change_avatar=Cambia tu avatar en gravatar.com
-change_custom_avatar=Cambia tu avatar en la configuración
-join_on=Registrado en
-repositories=Repositorios
-activity=Actividad pública
-followers=Seguidores
-starred=Destacados
-following=Siguiendo
-
-form.name_reserved=El usuario '%s' está reservado.
-form.name_pattern_not_allowed=El patrón de nombre de usuario '%s' no está permitido.
-
-[settings]
-profile=Perfil
-password=Contraseña
-ssh_keys=Claves SSH
-social=Redes Sociales
-applications=Aplicaciones
-orgs=Organizaciones
-delete=Eliminar Cuenta
-uid=UUID
-
-public_profile=Perfil Público
-profile_desc=Tu correo electrónico es público y será usado para todas las notificaciones relacionadas con cualquier cuenta y cualquier operación hecha a través de la web.
-full_name=Nombre Completo
-website=Página Web
-location=Localización
-update_profile=Actualizar Perfil
-update_profile_success=Tu perfil se ha actualizado correctamente.
-change_username=Nombre de usuario modificado
-change_username_prompt=Este cambio afectará a los enlaces que hacen referencia a su cuenta.
-continue=Continuar
-cancel=Cancelar
-
-enable_custom_avatar=Activar Avatar Personalizado
-enable_custom_avatar_helper=Activa esto para desactivar los avatares de Gravatar
-choose_new_avatar=Selecciona nuevo avatar
-update_avatar=Actualizar Configuración del Avatar
-uploaded_avatar_not_a_image=El archivo enviado no es una imagen.
-no_custom_avatar_available=No hay ningún avatar personalizado disponible, no se puede habilitar.
-update_avatar_success=La configuración de tu avatar se ha actualizado correctamente.
-
-change_password=Cambiar contraseña
-old_password=Contraseña actual
-new_password=Nueva contraseña
-retype_new_password=Confirmar nueva contraseña
-password_incorrect=Contraseña actual incorrecta.
-change_password_success=La contraseña se ha modificado correctamente. Ya puedes iniciar sesión con tu nueva contraseña.
-
-emails=Direcciones de correo electrónico
-manage_emails=Gestionar direcciones de correo electrónico
-email_desc=Tu dirección de correo principal se utilizará para las notificaciones y otras operaciones.
-primary=Principal
-primary_email=Marcar como principal
-delete_email=Eliminar
-email_deletion=Eliminación de Correo Electrónico
-email_deletion_desc=Al eliminar esta dirección de correo electrónico se eliminará toda la información asociada a esta dirección de correo electrónico. ¿Deseas continuar?
-email_deletion_success=¡El correo electrónico ha sido eliminado correctamente!
-add_new_email=Añadir nueva dirección de correo electrónico
-add_email=Añadir correo electrónico
-add_email_confirmation_sent=Un nuevo correo de confirmación ha sido enviado a '%s'. Por favor, comprueba tu bandeja de entrada en las próximas %d horas para completar el proceso.
-add_email_success=Tu nuevo correo electrónico se ha añadido correctamente.
-
-manage_ssh_keys=Gestionar Claves SSH
-add_key=Añadir Clave
-ssh_desc=Esta es la lista de claves SSH asociadas con tu cuenta. Elimina cualquier clave que no reconozcas.
-ssh_helper=<strong>¿Necesitas ayuda?</strong> Consulta la guía de GitHub para <a href="%s">generar claves SSH</a> o solucionar <a href="%s">problemas comunes</a> al usar SSH.
-add_new_key=Añadir clave SSH
-ssh_key_been_used=El contenido de la clave pública se ha utilizado.
-ssh_key_name_used=Ya existe una clave pública con el mismo nombre.
-key_name=Nombre de la Clave
-key_content=Contenido
-add_key_success=¡Nueva clave SSH '%s' añadida correctamente!
-delete_key=Eliminar
-ssh_key_deletion=Borrado de Clave SSH
-ssh_key_deletion_desc=Si elimina esta clave SSH no podrá volver a usarla para acceder a su cuenta. ¿Desea continuar?
-ssh_key_deletion_success=¡La clave SSH ha sido eliminada con éxito!
-add_on=Añadido en
-last_used=Utilizado por última vez en
-no_activity=No hay actividad reciente
-key_state_desc=Esta clave ha sido usada en los últimos 7 días
-token_state_desc=Token usado en los últimos 7 días
-
-manage_social=Gestionar Redes Sociales asociadas
-social_desc=Esta es una lista de las Redes Sociales asociadas. Elimina cualquier vínculo que no reconozcas.
-unbind=Desvincular
-unbind_success=La Red Social ha sido desvinculada.
-
-manage_access_token=Gestionar los Tokens de Acceso personales
-generate_new_token=Generar nuevo Token
-tokens_desc=Tokens usados para acceder al API de Gogs.
-new_token_desc=Desde ahora, todos los tokens tendrán acceso completo a tu cuenta.
-token_name=Nombre del Token
-generate_token=Generar Token
-generate_token_succees=¡Los nuevos tokens de acceso se han generado correctamente! Asegúrate de copiar tu nuevo token de acceso personal. ¡No podrás verlo de nuevo!
-delete_token=Eliminar
-access_token_deletion=Borrado de Token de Acceso Personal
-access_token_deletion_desc=Si elimina este token de acceso personal la aplicación asociada perderá el permiso de acceso. ¿Desea continuar?
-delete_token_success=¡El token de acceso personal ha sido eliminado con éxito! No se olvide de actualizar también las aplicaciones asociadas.
-
-delete_account=Elimina tu cuenta
-delete_prompt=La operación eliminará tu cuenta de forma permanente y ¡<strong>NO</strong> se puede deshacer!
-confirm_delete_account=Confirmar Eliminación
-delete_account_title=Eliminación de Cuenta
-delete_account_desc=Esta cuenta se va a eliminar permanentemente, ¿quieres continuar?
-
-[repo]
-owner=Propietario
-repo_name=Nombre del Repositorio
-repo_name_helper=Los grandes nombres de repositorios son cortos, memorables y <strong>únicos</strong>.
-visibility=Visibilidad
-visiblity_helper=Este repositorio es <span class="ui red text">Privado</span>
-visiblity_helper_forced=Site admin has forced all new repositories to be <span class="ui red text">Private</span>
-visiblity_fork_helper=(Este cambio afectará a todos los forks)
-fork_repo=Hacer Fork del repositorio
-fork_from=Crear un Fork desde
-fork_visiblity_helper=No es posible cambiar la visibilidad de un Fork
-repo_desc=Descripción
-repo_lang=Idioma
-repo_lang_helper=Seleccione archivo .gitignore
-license=Licencia
-license_helper=Selecciona un fichero de licencia
-readme=Readme
-readme_helper=Seleccione una plantilla de archivo readme
-auto_init=Inicializar los archivos seleccionados y plantillas de este repositorio
-create_repo=Crear Repositorio
-default_branch=Rama por defecto
-mirror_interval=Intervalo de mirror(en horas)
-
-form.name_reserved=El nombre del repositorio '%s' está reservado.
-form.name_pattern_not_allowed=El patrón del nombre del repositorio '%s' no está permitido.
-
-need_auth=Requiere Autorización
-migrate_type=Tipo de Migración
-migrate_type_helper=Este repositorio será un <span class="text blue">mirror</span>
-migrate_repo=Migrar Repositorio
-migrate.clone_address=Clonar Dirección
-migrate.clone_address_desc=Puede ser una URL HTTP/HTTPS/GIT o una ruta local del servidor.
-migrate.invalid_local_path=Rutal local inválida, no existe o no es un directorio.
-
-forked_from=forked de
-fork_from_self=Eres el propietario del repositorio, ¡no puedes hacer fork!
-copy_link=Copiar
-copy_link_success=Copiado!
-copy_link_error=Presione ⌘ + C o Ctrl-C para copiar
-click_to_copy=Copiar al portapapeles
-copied=Copiado correctamente
-clone_helper=¿Necesitas ayuda con el clone? ¡Consulta la <a target="_blank" href="%s">Ayuda</a>!
-unwatch=Dejar de vigilar
-watch=Vigilar
-unstar=Eliminar destacado
-star=Destacar
-fork=Fork
-
-no_desc=Sin Descripción
-quick_guide=Guía Rápida
-clone_this_repo=Clonar este repositorio
-create_new_repo_command=Crear un nuevo repositorio desde línea de comandos
-push_exist_repo=Hacer Push de un repositorio existente desde línea de comandos
-repo_is_empty=This repository is empty, please come back later!
-
-
-branch=Rama
-tree=Árbol
-branch_and_tags=Ramas y Etiquetas
-branches=Ramas
-tags=Etiquetas
-issues=Incidencias
-pulls=Pull Requests
-labels=Etiquetas
-milestones=Milestones
-commits=Commits
-releases=Releases
-file_raw=Raw
-file_history=Histórico
-file_view_raw=Ver Raw
-file_permalink=Permalink
-
-commits.commits=Commits
-commits.search=Buscar Commits
-commits.find=Buscar
-commits.author=Autor
-commits.message=Mensaje
-commits.date=Fecha
-commits.older=Anterior
-commits.newer=Posterior
-
-issues.new=Nueva Incidencia
-issues.new.labels=Etiquetas
-issues.new.no_label=Sin etiquetas
-issues.new.clear_labels=Limpiar etiquetas
-issues.new.milestone=Milestone
-issues.new.no_milestone=Sin Milestone
-issues.new.clear_milestone=Limpiar Milestone
-issues.new.open_milestone=Milestones abiertas
-issues.new.closed_milestone=Milestones cerradas
-issues.new.assignee=Asignado a
-issues.new.clear_assignee=Limpiar asignado
-issues.new.no_assignee=Sin asignado
-issues.create=Crear incidencia
-issues.new_label=Nueva Etiqueta
-issues.new_label_placeholder=Nombre etiqueta...
-issues.create_label=Crear etiqueta
-issues.open_tab=%d abiertas
-issues.close_tab=%d cerradas
-issues.filter_label=Etiqueta
-issues.filter_label_no_select=Ninguna etiqueta seleccionada
-issues.filter_milestone=Milestone
-issues.filter_milestone_no_select=Ningún Milestone seleccionado
-issues.filter_assignee=Asignada a
-issues.filter_assginee_no_select=Sin asignar
-issues.filter_type=Tipo
-issues.filter_type.all_issues=Todas las incidencias
-issues.filter_type.assigned_to_you=Asignadas a ti
-issues.filter_type.created_by_you=Creadas por ti
-issues.filter_type.mentioning_you=Citado en
-issues.filter_sort=Ordenar
-issues.filter_sort.latest=Más recientes
-issues.filter_sort.oldest=Más antiguas
-issues.filter_sort.recentupdate=Actualizada recientemente
-issues.filter_sort.leastupdate=Actualizada menos recientemente
-issues.filter_sort.mostcomment=Más comentadas
-issues.filter_sort.leastcomment=Menos comentadas
-issues.opened_by=abierta %[1]s por <a href="%[2]s">%[3]s</a>
-issues.opened_by_fake=abierta %[1]s por %[2]s
-issues.previous=Página Anterior
-issues.next=Página Siguiente
-issues.open_title=Abierta
-issues.closed_title=Cerrada
-issues.num_comments=%d comentarios
-issues.commented_at=`comentada <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.no_content=Aun no existe contenido.
-issues.close_issue=Cerrar
-issues.close_comment_issue=Cerrar y Comentar
-issues.reopen_issue=Reabrir
-issues.reopen_comment_issue=Reabrir y Comentar
-issues.create_comment=Comentar
-issues.closed_at=`cerrada <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.reopened_at=`reabierta <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.commit_ref_at=`mencionada esta incidencia en un commit <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.poster=Autor
-issues.admin=Administrador
-issues.owner=Propietario
-issues.sign_up_for_free=Registro gratuito
-issues.sign_in_require_desc=para unirse a esta conversación. ¿Ya dispone de una cuenta? <a href="%s">Inicie sesión para comentar</a>
-issues.edit=Editar
-issues.cancel=Cancelar
-issues.save=Guardar
-issues.label_title=Nombre etiqueta
-issues.label_color=Color etiqueta
-issues.label_count=%d etiquetas
-issues.label_open_issues=%d incidencias abiertas
-issues.label_edit=Editar
-issues.label_delete=Borrar
-issues.label_modify=Edición de Etiqueta
-issues.label_deletion=Borrado de Etiqueta
-issues.label_deletion_desc=Al borrar la etiqueta su información será eliminada de todas las incidencias relacionadas. Desea continuar?
-issues.label_deletion_success=Etiqueta borrada con éxito!
-
-pulls.compare_changes=Comparar Cambios
-pulls.compare_changes_desc=Comparar dos ramas y generar un pull request con las diferencias.
-pulls.compare_base=base
-pulls.compare_compare=comparar con
-pulls.filter_branch=Filtrar rama
-pulls.no_results=Sin resultados.
-pulls.nothing_to_compare=Nada que comparar. Las dos ramas coinciden.
-pulls.has_pull_request=`Ya existe un pull request entre estas dos ramas: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>`
-pulls.create=Crear Pull Request
-pulls.title_desc=desea fusionar %[1]d commits de <code>%[2]s</code> en <code>%[3]s</code>
-pulls.merged_title_desc=fusionados %[1]d commits de <code>%[2]s</code> en <code>%[3]s</code> %[4]s
-pulls.tab_conversation=Conversación
-pulls.tab_commits=Commits
-pulls.tab_files=Archivos modificados
-pulls.reopen_to_merge=Por favor reabra este pull request para proceder con la operación de fusionado.
-pulls.merged=Fuisionado
-pulls.has_merged=¡Este pull request se ha completado con éxito!
-pulls.data_broken=Los datos de este pull request ya no están disponibles porque se ha eliminado la información del fork.
-pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments.
-pulls.can_auto_merge_desc=Puede realizar la operación auto-fusionado en este pull request.
-pulls.cannot_auto_merge_desc=No puede realizar la operación de auto-fusionado porque existen conflictos entre los commits.
-pulls.cannot_auto_merge_helper=Por favor use la línea de comandos para resolverlo.
-pulls.merge_pull_request=Fusionar Pull Request
-pulls.open_unmerged_pull_exists=`You can't perform reopen operation because there is already an open pull request (#%d) from same repository with same merge information and is waiting for merging.`
-
-milestones.new=Nuevo Milestone
-milestones.open_tab=%d abiertas
-milestones.close_tab=%d cerradas
-milestones.closed=Cerrada %s
-milestones.no_due_date=Sin fecha límite
-milestones.open=Abrir
-milestones.close=Cerrar
-milestones.new_subheader=Cree milestones para organizar las incidencias.
-milestones.create=Nuevo Milestone
-milestones.title=Título
-milestones.desc=Descripción
-milestones.due_date=Fecha límite (opcional)
-milestones.clear=Eliminar
-milestones.invalid_due_date_format=El formato de la fecha límite no es válido, debe ser 'y-mm-dd'.
-milestones.create_success=¡El milestone '%s' ha sido creado con éxito!
-milestones.edit=Editar Milestone
-milestones.edit_subheader=Use una buena descripción en el milestone para no confundir al resto de usuarios.
-milestones.cancel=Cancelar
-milestones.modify=Modificar Milestone
-milestones.edit_success=¡Los cambios al milestone '%s' se han guardado con éxito!
-milestones.deletion=Borrar milestone
-milestones.deletion_desc=El borrado de este milestone eliminará su información y las incidencias asociadas. ¿Desea continuar?
-milestones.deletion_success=¡El milestone ha sido eliminado con éxito!
-
-settings=Configuración
-settings.options=Opciones
-settings.collaboration=Colaboración
-settings.hooks=Webhooks
-settings.githooks=Git Hooks
-settings.basic_settings=Configuración Básica
-settings.danger_zone=Zona de Peligro
-settings.site=Sitio Oficial
-settings.update_settings=Actualizar Configuración
-settings.change_reponame_prompt=Este cambio afectará a los enlaces al repositorio.
-settings.transfer=Transferir la Propiedad
-settings.transfer_desc=Transferir este repositorio a otro usuario u organización donde tengas permisos de administración.
-settings.new_owner_has_same_repo=El nuevo propietario tiene un repositorio con el mismo nombre.
-settings.delete=Eliminar este Repositorio
-settings.delete_desc=Una vez has eliminado un repositorio, no hay vuelta atrás. Por favor, asegúrate de que es lo que quieres.
-settings.transfer_notices_1=- Perderá el permiso de acceso si el nuevo propietario es otro usuario.
-settings.transfer_notices_2=- Conservará el privilegio de acceso si el nuevo propietario es una organización y usted es uno de los propietarios de dicha organización.
-settings.transfer_form_title=Por favor introduzca esta información para confirmar la operación:
-settings.delete_notices_1=- Esta operación <strong>NO PUEDE</strong> revertirse.
-settings.delete_notices_2=- Esta operación eliminará de manera permanente todo el contenido de este repositorio, incluyendo los datos de git, las incidencias, los comentarios y los permisos de acceso de los colaboradores.
-settings.delete_notices_fork_1=- Si este repositorio es público, todos los forks se convertirán en repositorios independientes tras el borrado.
-settings.delete_notices_fork_2=- Si este repositorio es privado, todos los forks serán eliminados simultáneamente.
-settings.delete_notices_fork_3=- Si desea mantener los forks tras el borrado, por favor convierta este repositorio en público antes de proceder.
-settings.update_settings_success=Las opciones del repositorio se han actualizado correctamente.
-settings.transfer_owner=Nuevo Propietario
-settings.make_transfer=Transferir
-settings.transfer_succeed=La propiedad del repositorio ha sido transferida exitosamente.
-settings.confirm_delete=Confirmar Eliminación
-settings.add_collaborator=Añadir Nuevo Colaborador
-settings.add_collaborator_success=Se ha añadido el nuevo colaborador.
-settings.remove_collaborator_success=Se ha eliminado el colaborador.
-settings.user_is_org_member=El usuario es miembro de la organización, no puede ser añadido como colaborador.
-settings.add_webhook=Añadir Webhook
-settings.hooks_desc=Los Webhooks permiten a servicios externos recibir notificaciones cuando sucedan ciertos eventos en Gogs. Cuando sucedan los eventos especificados, enviaremos una petición POST a cada una de las URLs indicadas. Para obtener más información, consulta nuestra <a target="_blank" href="%s">Guía de Webhooks</a>.
-settings.webhook_deletion=Eliminar Webhook
-settings.webhook_deletion_desc=Al borrar este webhook se eliminará su información y todo su historial. ¿Desea continuar?
-settings.webhook_deletion_success=¡Webhook eliminado con éxito!
-settings.webhook.request=Petición
-settings.webhook.response=Respuesta
-settings.webhook.headers=Encabezado
-settings.webhook.payload=Payload
-settings.webhook.body=Cuerpo del mensaje
-settings.githooks_desc=Los Git Hooks son una funcionalidad del propio Git, puedes editar los ficheros de los hooks soportados en la siguiente lista para aplicar operaciones personalizadas.
-settings.githook_edit_desc=Si el hook no está activo, se mostrará contenido de ejemplo. Dejar el contenido vacío deshabilitará este hook.
-settings.githook_name=Nombre del Hook
-settings.githook_content=Contenido del Hook
-settings.update_githook=Actualizar Hook
-settings.add_webhook_desc=Enviaremos una petición <code>POST</code> a la siguiente URL con los detalles de cualquier evento suscrito. También puedes especificar qué formato de datos te gustaría recibir (JSON, <code>x-www-form-urlencoded</code>, <em>etc</em>). Puedes encontrar más información en la <a target="_blank" href="%s">Guía de Webhooks</a>.
-settings.payload_url=URL de Payload
-settings.content_type=Tipo de Contenido
-settings.secret=Secreto
-settings.slack_username=Nombre de usuario
-settings.slack_icon_url=URL de icono
-settings.slack_color=Color
-settings.event_desc=¿Qué eventos te gustaría que desencadenasen este webhook?
-settings.event_push_only=Solo el evento <code>push</code>.
-settings.event_send_everything=Necesito <strong>todo</strong>.
-settings.event_choose=Déjeme elegir lo que necesito.
-settings.event_create=Crear
-settings.event_create_desc=Rama o etiqueta creada
-settings.event_push=Push
-settings.event_push_desc=Git push a un repositorio
-settings.active=Activo
-settings.active_helper=Enviaremos detalles del evento cuando este hook se dispare.
-settings.add_hook_success=Se ha añadido un nuevo webhook.
-settings.update_webhook=Actualizar Webhook
-settings.update_hook_success=Se ha actualizado el Webhook.
-settings.delete_webhook=Borrar Webhook
-settings.recent_deliveries=Envíos Recientes
-settings.hook_type=Tipo de Hook
-settings.add_slack_hook_desc=Añade integración con <a href="%s">Slack</a> a tu repositorio.
-settings.slack_token=Token
-settings.slack_domain=Dominio
-settings.slack_channel=Canal
-settings.deploy_keys=Claves de Despliegue
-settings.add_deploy_key=Añadir Clave de Despliegue
-settings.no_deploy_keys=No has añadido ninguna clave de despliegue.
-settings.title=Título
-settings.deploy_key_content=Contenido
-settings.key_been_used=Se ha usado la clave de despliegue.
-settings.key_name_used=Ya existe una clave de despliegue con el mismo nombre.
-settings.add_key_success=¡La nueva clave de desplieque '%s' ha sido creada con éxito!
-settings.deploy_key_deletion=Eliminar Clave de Despliegue
-settings.deploy_key_deletion_desc=Al eliminar esta clave de despliegue se perderán el permiso de acceso a este repositorio con dicha clave. ¿Deseas continuar?
-settings.deploy_key_deletion_success=¡Clave de despliegue eliminada con éxito!
-
-diff.browse_source=Explorar el Código
-diff.parent=padre
-diff.commit=commit
-diff.data_not_available=Los datos del Diff no están disponibles.
-diff.show_diff_stats=Mostrar Estadísticas de Diff
-diff.stats_desc=Se han <strong>modificado %d ficheros</strong> con <strong>%d adiciones</strong> y <strong>%d borrados</strong>
-diff.bin=BIN
-diff.view_file=Ver Fichero
-
-release.releases=Releases
-release.new_release=Nueva Release
-release.draft=Borrador
-release.prerelease=Pre-Release
-release.stable=Estable
-release.edit=editar
-release.ahead=<strong>%d</strong> commits en %s desde esta release
-release.source_code=Código Fuente
-release.tag_name=Nombre de la etiqueta
-release.target=Destino
-release.tag_helper=Escoge una etiqueta o crea una nueva al publicar.
-release.release_title=Título de la Release
-release.content_with_md=Contenido con formato <a href="%s">Markdown</a>
-release.write=Escribir
-release.preview=Vista Previa
-release.content_placeholder=Escribe algo de contenido
-release.loading=Cargando...
-release.prerelease_desc=Esta es una pre-release
-release.prerelease_helper=Esta release está marcada como no apta para producción.
-release.publish=Publicar Release
-release.save_draft=Guardar Borrador
-release.edit_release=Editar Release
-release.tag_name_already_exist=Ya existe una Release con esta etiqueta.
-
-[org]
-org_name_holder=Nombre de la Organización
-org_name_helper=Los grandes nombres de organizaciones son cortos y memorables.
-create_org=Crear Organización
-repo_updated=Actualizado
-people=Personas
-invite_someone=Invitar a alguien
-teams=Equipos
-lower_members=miembros
-lower_repositories=repositorios
-create_new_team=Crear un Nuevo Equipo
-org_desc=Descripción
-team_name=Nombre del Equipo
-team_desc=Descripción
-team_name_helper=Utiliza este nombre para mencionar a este equipo en las conversaciones.
-team_desc_helper=¿En qué consiste este equipo?
-team_permission_desc=¿Qué nivel de permisos debería tener este equipo?
-
-form.name_reserved=El nombre de la organización '%s' está reservado.
-form.name_pattern_not_allowed=El patrón de nombre de la organización '%s' no está permitido.
-
-settings=Configuración
-settings.options=Opciones
-settings.full_name=Nombre Completo
-settings.website=Página Web
-settings.location=Localización
-settings.update_settings=Actualizar Configuración
-settings.update_setting_success=La configuración de la Organización se ha actualizado correctamente.
-settings.change_orgname_prompt=Este cambio afectará a los enlaces que hacen referencia a la organización.
-settings.update_avatar_success=La configuración de avatar de la organización ha sido actualizada con éxito.
-settings.delete=Eliminar Organización
-settings.delete_account=Eliminar esta Organización
-settings.delete_prompt=Esta operación eliminará esta organización de manera permanente, y ¡<strong>NO PUEDE</strong> deshacerse!
-settings.confirm_delete_account=Confirmar Eliminación
-settings.delete_org_title=Eliminación de la Organización
-settings.delete_org_desc=Esta organización se va a eliminar permanentemente, ¿quieres continuar?
-settings.hooks_desc=Añadir webhooks que serán ejecutados para <strong>todos los repositorios</strong> de esta organización.
-
-members.public=Público
-members.public_helper=convertir en privado
-members.private=Privado
-members.private_helper=convertir en público
-members.owner=Propietario
-members.member=Miembro
-members.conceal=Ocultar
-members.remove=Eliminar
-members.leave=Abandonar
-members.invite_desc=Comienza a teclear un nombre de usuario para invitar a un nuevo miembro a %s:
-members.invite_now=Invitar
-
-teams.join=Unirse
-teams.leave=Abandonar
-teams.read_access=Acceso de Lectura
-teams.read_access_helper=Este equipo podrá ver y clonar sus repositorios.
-teams.write_access=Acceso de Escritura
-teams.write_access_helper=Este equipo podrá leer sus repositorios, así como hacer push en ellos.
-teams.admin_access=Acceso de Administrador
-teams.admin_access_helper=Este equipo podrá hacer push/pull en sus repositorios, así como añadir colaboradores a ellos.
-teams.no_desc=Este equipo no tiene descripción
-teams.settings=Configuración
-teams.owners_permission_desc=Los propietarios tienen acceso completo a <strong>todos los repositorios</strong> y tienen <strong>derechos de administración</strong> en la organización.
-teams.members=Miembros del Equipo
-teams.update_settings=Actualizar Configuración
-teams.delete_team=Borrar este Equipo
-teams.add_team_member=Añadir Miembro al Equipo
-teams.delete_team_title=Eliminar Equipo
-teams.delete_team_desc=Este equipo va a ser eliminado, ¿seguro que quieres continuar? Los miembros de este equipo pueden perder acceso a algunos repositorios.
-teams.delete_team_success=El Equipo se ha eliminado correctamente.
-teams.read_permission_desc=Este equipo tiene permisos de <strong>Lectura</strong>: sus miembros pueden ver y clonar los repositorios del equipo.
-teams.write_permission_desc=Este equipo tiene permisos de <strong>Escritura</strong>: sus miembros pueden leer y hacer push a los repositorios del equipo.
-teams.admin_permission_desc=Este equipo tiene permisos de <strong>Administración</strong>: sus miembros pueden leer, hacer push y añadir colaboradores a los repositorios del equipo.
-teams.repositories=Repositorios del Equipo
-teams.add_team_repository=Añadir Repositorio al Equipo
-teams.remove_repo=Eliminar
-teams.add_nonexistent_repo=El repositorio que estás intentando añadir no existe, por favor, créalo primero.
-
-[admin]
-dashboard=Dashboard
-users=Usuarios
-organizations=Organizaciones
-repositories=Repositorios
-authentication=Autenticaciones
-config=Configuración
-notices=Avisos del Sistema
-monitor=Monitorización
-first_page=Primera
-last_page=Última
-total=Total: %d
-
-dashboard.statistic=Estadísticas
-dashboard.operations=Operaciones
-dashboard.system_status=Estado del Monitor del Sistema
-dashboard.statistic_info=La base de datos de Gogs contiene <b>%d</b> usuarios, <b>%d</b> organizaciones, <b>%d</b> claves públicas, <b>%d</b> repositorios, <b>%d</b> vigilados, <b>%d</b> destacados, <b>%d</b> acciones, <b>%d</b> accesos, <b>%d</b> incidencias, <b>%d</b> comentarios, <b>%d</b> cuentas de redes sociales, <b>%d</b> seguidores, <b>%d</b> mirrors, <b>%d</b> releases, <b>%d</b> fuentes de login, <b>%d</b> webhooks, <b>%d</b> milestones, <b>%d</b> etiquetas, <b>%d</b> hooks, <b>%d</b> equipos, <b>%d</b> tareas actualizadas, <b>%d</b> adjuntos.
-dashboard.operation_name=Nombre de la Operación
-dashboard.operation_switch=Interruptor
-dashboard.operation_run=Ejecutar
-dashboard.clean_unbind_oauth=Limpiar solicitudes de OAuth sin confirmar
-dashboard.clean_unbind_oauth_success=Las solicitudes de OAuth sin confirmar se han eliminado correctamente.
-dashboard.delete_inactivate_accounts=Eliminar todas las cuentas inactivas
-dashboard.delete_inactivate_accounts_success=Todas las cuentas inactivas se han eliminado correctamente.
-dashboard.delete_repo_archives=Eliminar todos los archivos de repositorios
-dashboard.delete_repo_archives_success=Todos los archivos de repositorios se han eliminado correctamente.
-dashboard.git_gc_repos=Ejecutar la recolección de basura en los repositorios
-dashboard.git_gc_repos_success=Todos los repositorios han ejecutado correctamente el recolector de basuras.
-dashboard.resync_all_sshkeys=Reescribir el fichero '.ssh/authorized_keys'(atención: se perderán las claves que no pertenezcan a Gogs)
-dashboard.resync_all_sshkeys_success=Todas las claves públicas se han reescrito correctamente.
-dashboard.resync_all_update_hooks=Reescribir todos los hooks de actualización de los repositorios (necesario cuando se modifica la ruta de configuración personalizada)
-dashboard.resync_all_update_hooks_success=Todos los hooks de actualización de los repositorios se han reescrito correctamente.
-
-dashboard.server_uptime=Uptime del Servidor
-dashboard.current_goroutine=Gorutinas Actuales
-dashboard.current_memory_usage=Uso de Memoria Actual
-dashboard.total_memory_allocated=Total de Memoria Reservada
-dashboard.memory_obtained=Memoria Obtenida
-dashboard.pointer_lookup_times=Tiempos de Búsqueda de Punteros
-dashboard.memory_allocate_times=Tiempos de Reserva de Memoria
-dashboard.memory_free_times=Tiempos de Liberado de Memoria
-dashboard.current_heap_usage=Uso de Heap Actual
-dashboard.heap_memory_obtained=Memoria de Heap Obtenida
-dashboard.heap_memory_idle=Memoria de Heap Inactiva
-dashboard.heap_memory_in_use=Memoria de Heap en Uso
-dashboard.heap_memory_released=Memoria de Heap Liberada
-dashboard.heap_objects=Objetos en el Heap
-dashboard.bootstrap_stack_usage=Uso de la Pila de Bootstrap
-dashboard.stack_memory_obtained=Memoria de Pila Obtenida
-dashboard.mspan_structures_usage=Uso de Estructuras MSpan
-dashboard.mspan_structures_obtained=Estructuras MSpan Obtenidas
-dashboard.mcache_structures_usage=Uso de estructuras MCache
-dashboard.mcache_structures_obtained=Estructuras MCache Obtenidas
-dashboard.profiling_bucket_hash_table_obtained=Profiling Bucket Hash Table Obtenido
-dashboard.gc_metadata_obtained=Metadatos del Recolector de Basuras Obtenidos
-dashboard.other_system_allocation_obtained=Otros Recursos del Sistema Asignados
-dashboard.next_gc_recycle=Siguiente Reciclado del Recolector de Basuras
-dashboard.last_gc_time=Tiempo desde el Último GC
-dashboard.total_gc_time=Pausa Total por GC
-dashboard.total_gc_pause=Pausa Total por GC
-dashboard.last_gc_pause=Última Pausa por GC
-dashboard.gc_times=Ejecuciones GC
-
-users.user_manage_panel=Panel de Gestión de Usuarios
-users.new_account=Crear Nueva Cuenta
-users.name=Nombre
-users.activated=Activado
-users.admin=Administrador
-users.repos=Repositorios
-users.created=Creado
-users.send_register_notify=Enviar notificación de registro al usuario
-users.new_success=La cuenta '%s' ha sido creada con éxito.
-users.edit=Editar
-users.auth_source=Fuente de Autenticación
-users.local=Local
-users.auth_login_name=Nombre de Inicio de Sesión de Autenticación
-users.password_helper=Deje el campo vacío si no desea cambiar la contraseña.
-users.update_profile_success=El perfil de la cuenta se ha actualizado correctamente.
-users.edit_account=Editar Cuenta
-users.is_activated=Esta cuenta está activada
-users.is_admin=Esta cuenta tiene permisos de administrador
-users.allow_git_hook=Esta cuenta tiene permisos para crear hooks de Git
-users.update_profile=Actualizar Perfil de la Cuenta
-users.delete_account=Eliminar esta Cuenta
-users.still_own_repo=Esta cuenta es propietaria de uno o más repositorios, tienes que borrarlos o transferirlos primero.
-users.still_has_org=Esta cuenta es miembro de una o más organizaciones, tienes que abandonarlas o eliminarlas primero.
-users.deletion_success=Su cuenta ha sido eliminada correctamente!
-
-orgs.org_manage_panel=Panel de Gestión de Organización
-orgs.name=Nombre
-orgs.teams=Equipos
-orgs.members=Miembros
-
-repos.repo_manage_panel=Panel de Gestión de Repositorios
-repos.owner=Propietario
-repos.name=Nombre
-repos.private=Privado
-repos.watches=Vigilantes
-repos.stars=Estrellas
-repos.issues=Incidencias
-
-auths.auth_manage_panel=Panel de Administración de Autenticación
-auths.new=Añadir Nuevo Origen
-auths.name=Nombre
-auths.type=Tipo
-auths.enabled=Activo
-auths.updated=Actualizado
-auths.auth_type=Tipo de Autenticación
-auths.auth_name=Nombre de Autenticación
-auths.domain=Dominio
-auths.host=Host
-auths.port=Puerto
-auths.bind_dn=Bind DN
-auths.bind_password=Contraseña Bind
-auths.bind_password_helper=Advertencia: La contraseña se almacena como texto plano. No utilice una cuenta con privilegios elevados.
-auths.user_base=Base de Búsqueda de Usuarios
-auths.user_dn=DN de Usuario
-auths.attribute_name=Atributo nombre
-auths.attribute_surname=Atributo apellido
-auths.attribute_mail=Atributo correo electrónico
-auths.filter=Filtro de Usuario
-auths.admin_filter=Filtro de Aministrador
-auths.ms_ad_sa=Ms Ad SA
-auths.smtp_auth=Tipo de Autenticación SMTP
-auths.smtphost=SMTP Host
-auths.smtpport=Puerto SMTP
-auths.allowed_domains=Dominios Permitidos
-auths.allowed_domains_helper=Deje el campo vacío si no desea restringir ningún dominio. Para restringir más de uno, separe los dominios con una coma ','.
-auths.enable_tls=Habilitar Cifrado TLS
-auths.skip_tls_verify=Omitir la verificación TLS
-auths.pam_service_name=Nombre del Servicio PAM
-auths.enable_auto_register=Hablilitar Auto-Registro
-auths.tips=Consejos
-auths.edit=Editar la Configuración de Autenticación
-auths.activated=Esta autenticación ha sido activada
-auths.new_success=¡La autenticación '%s' ha sido añadida con éxito!
-auths.update_success=La configuración de autenticación ha sido actualizada con éxito.
-auths.update=Actualizar la Configuración de Autenticación
-auths.delete=Eliminar Autenticación
-auths.delete_auth_title=Borrado de Autenticación
-auths.delete_auth_desc=Esta autenticación será eliminada. ¿Deseas continuar?
-auths.deletion_success=¡La autenticación ha sido eliminada con éxito!
-
-config.server_config=Configuración del Servidor
-config.app_name=Nombre de la Aplicación
-config.app_ver=Versión de la Aplicación
-config.app_url=URL de la Aplicación
-config.domain=Dominio
-config.offline_mode=Modo Sin Conexión
-config.disable_router_log=Deshabilitar Log del Router
-config.run_user=Ejecutada como Usuario
-config.run_mode=Modo de Ejecución
-config.repo_root_path=Ruta del Repositorio
-config.static_file_root_path=Ruta de los Ficheros Estáticos
-config.log_file_root_path=Ruta de los Ficheros de Log
-config.script_type=Tipo de Script
-config.reverse_auth_user=Autenticación Inversa de Usuario
-config.db_config=Configuración de la Base de Datos
-config.db_type=Tipo
-config.db_host=Host
-config.db_name=Nombre
-config.db_user=Usuario
-config.db_ssl_mode=Modo SSL
-config.db_ssl_mode_helper=(solo para "postgres")
-config.db_path=Ruta
-config.db_path_helper=(para "sqlite3" y "tidb")
-config.service_config=Configuración del Servicio
-config.register_email_confirm=Solicitar Confirmación por Correo Electrónico
-config.disable_register=Deshabilitar el Registro
-config.show_registration_button=Mostrar Botón de Registro
-config.require_sign_in_view=Solicitar la Vista de Inicio de Sesión
-config.enable_cache_avatar=Activar la Caché de Avatar
-config.mail_notify=Notificación por Correo Electrónico
-config.disable_key_size_check=Deshabilitar la comprobación de Tamaño Mínimo de Clave
-config.enable_captcha=Activar Captcha
-config.active_code_lives=Habilitar Vida del Código
-config.reset_password_code_lives=Restablecer Contraseña de Vida del Código
-config.webhook_config=Configuración de Webhooks
-config.queue_length=Tamaño de Cola de Envío
-config.deliver_timeout=Timeout de Entrega
-config.skip_tls_verify=Omitir la Verificación TLS
-config.mailer_config=Configuración del Mailer
-config.mailer_enabled=Activado
-config.mailer_disable_helo=Desactivar HELO
-config.mailer_name=Nombre
-config.mailer_host=Host
-config.mailer_user=Usuario
-config.oauth_config=Configuración OAuth
-config.oauth_enabled=Activado
-config.cache_config=Configuración de la Caché
-config.cache_adapter=Adaptador de la Caché
-config.cache_interval=Intervalo de la Caché
-config.cache_conn=Conexión de la Caché
-config.session_config=Configuración de la Sesión
-config.session_provider=Proveedor de la Sesión
-config.provider_config=Configuración del Proveedor
-config.cookie_name=Nombre de la Cookie
-config.enable_set_cookie=Activar Establecimiento de Cookie
-config.gc_interval_time=Intervalo de tiempo del GC
-config.session_life_time=Tiempo de Vida de la Sesión
-config.https_only=Sólo HTTPS
-config.cookie_life_time=Tiempo de Vida de la Cookie
-config.picture_config=Configuración de Imagen
-config.picture_service=Servicio de Imágen
-config.disable_gravatar=Desactivar Gravatar
-config.log_config=Configuración del Log
-config.log_mode=Modo del Log
-
-monitor.cron=Tareas de Cron
-monitor.name=Nombre
-monitor.schedule=Agenda
-monitor.next=Próxima Vez
-monitor.previous=Vez Anterior
-monitor.execute_times=Ejecuciones
-monitor.process=Procesos en Ejecución
-monitor.desc=Descripción
-monitor.start=Hora de Inicio
-monitor.execute_time=Tiempo de ejecución
-
-notices.system_notice_list=Notificaciones del Sistema
-notices.type=Tipo
-notices.type_1=Repositorio
-notices.desc=Descripción
-notices.op=Op.
-notices.delete_success=La notificación del sistema se ha eliminado correctamente.
-
-[action]
-create_repo=repositorio creado <a href="%s">%s</a>
-rename_repo=repositorio renombrado de <code>%[1]s</code> a <a href="%[2]s">%[3]s</a>
-commit_repo=hizo push a <a href="%s/src/%s">%[2]s</a> en <a href="%[1]s">%[3]s</a>
-create_issue=`incidencia abierta <a href="%s/issues/%s">%s#%[2]s</a>`
-create_pull_request=`creado pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-comment_issue=`comentó en la incidencia <a href="%s/issues/%s">%s#%[2]s</a>`
-merge_pull_request=`fusionado pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-transfer_repo=transfirió el repositorio <code>%s</code> a <a href="%s">%s</a>
-push_tag=hizo push del tag <a href="%s/src/%s">%[2]s</a> a <a href="%[1]s">%[3]s</a>
-compare_2_commits=Ver la comparación de estos 2 commits
-
-[tool]
-ago=hace
-from_now=desde ahora
-now=ahora
-1s=1 segundo %s
-1m=1 minuto %s
-1h=1 hora %s
-1d=1 día %s
-1w=1 semana %s
-1mon=1 mes %s
-1y=1 año %s
-seconds=%d segundos %s
-minutes=%d minutos %s
-hours=%d horas %s
-days=%d días %s
-weeks=%d semanas %s
-months=%d meses %s
-years=%d años %s
-raw_seconds=segundos
-raw_minutes=minutos
-
-[dropzone]
-default_message=Suéltelos aquí o pulse para cargar archivos.
-invalid_input_type=No está permitido cargar archivos de este tipo.
-file_too_big=El tamaño del archivo ({{filesize}} MB) excede el tamaño máximo ({{maxFilesize}} MB).
-remove_file=Eliminar archivo
-
+app_desc=Un servicio de Git auto alojado y sin complicaciones + +home=Inicio +dashboard=Panel de control +explore=Explorar +help=Ayuda +sign_in=Iniciar sesión +sign_out=Cerrar sesión +sign_up=Suscripción +register=Registro +website=Página Web +version=Versión +page=Página +template=Plantilla +language=Idioma +create_new=Crear... +user_profile_and_more=Perfil de usuario y más +signed_in_as=Identificado como + +username=Nombre de usuario +email=Correo electrónico +password=Contraseña +re_type=Ingrese de nuevo +captcha=Captcha + +repository=Repositorio +organization=Organización +mirror=Mirror +new_repo=Nuevo repositorio +new_migrate=Nueva Migración +new_fork=Nuevo Fork del Repositorio +new_org=Nueva organización +manage_org=Administrar organizaciones +admin_panel=Panel de administración +account_settings=Configuraciones de la cuenta +settings=Configuraciones +your_profile=Tu perfil +your_settings=Tu configuración + +news_feed=Feed de noticias +pull_requests=Pull Requests +issues=Incidencias + +cancel=Cancelar + +[search] +search=Buscar... +repository=Repositorio +user=Usuario +issue=Incidencia +code=Código + +[install] +install=Instalación +title=Pasos de la instalación por primera vez +docker_helper=Si está ejecutando Gogs usando Docker, por favor lea <a target="_blank" href="%s"> estas pautas</a> antes de cambiar nada en esta página! +requite_db_desc=Gogs requiere una base de datos MySQL, PostgreSQL, SQLite3 o TiDB. +db_title=Configuración de base de datos +db_type=Tipo de base de datos +host=Host +user=Usuario +password=Contraseña +db_name=Nombre de la base de datos +db_helper=Por favor utilice el motor INNODB con la configuración de caracteres utf8_general_ci para MySQL. +ssl_mode=Modo SSL +path=Ruta +sqlite_helper=Ruta del archivo con la base de datos SQLite3 o TiDB. +err_empty_db_path=La ruta a la base de datos SQLite3 o TiDB no puede estar vacía. +err_invalid_tidb_name=El nombre de la base de datos TiDB no puede contener los caracteres "." ni "-". +no_admin_and_disable_registration=No puede deshabilitar el registro sin crear una cuenta de administrador. +err_empty_admin_password=La contraseña de administrador no puede estar vacía. + +general_title=Configuración General de Gogs +app_name=Nombre de la Aplicación +app_name_helper=Pon aquí el nombre de tu organización, ¡alto y claro! +repo_path=Ruta del repositorio de Raiz (Root) +repo_path_helper=Todos los repositorios remotos de Git se guardarán en este directorio. +run_user=Ejecutar como Usuario +run_user_helper=El usuario necesita tener acceso a la Ruta Raíz del Repositorio y ejecutar Gogs. +domain=Dominio +domain_helper=Esto afecta a las URLs para clonar por SSH. +ssh_port=Puerto SSH +ssh_port_helper=Número de puerto de su servidor SSH, déjelo en blanco para desactivar SSH. +http_port=Puerto HTTP +http_port_helper=Puerto en el que escuchará la aplicación. +app_url=URL de la aplicación +app_url_helper=Esto afecta a las URLs para clonar por HTTP/HTTPS y a algunos correos electrónicos. + +optional_title=Configuración Opcional +email_title=Configuración del Servicio de Correo +smtp_host=SMTP Host +smtp_from=Desde +smtp_from_helper=Remitente del email, RFC 5322. Puede ser solamente una dirección de correo electrónico, o estar en el formato "Nombre" <email@example.com>. +mailer_user=Remitente del Correo Electrónico +mailer_password=Contraseña del Remitente +register_confirm=Habilitar la Confirmación en el Registro +mail_notify=Habilitar las Notificaciones de Correo +server_service_title=Configuración de Servidor y Otros Servicios +offline_mode=Activar el modo Sin Conexión +offline_mode_popup=Desactivar el CDN incluso en el modo de producción, todos los recursos se servirán localmente. +disable_gravatar=Desactivar el Servicio Gravatar +disable_gravatar_popup=Desactivar Gravatar y cualquier otra fuente personalizada. Todos los avatares deben ser cargados por los usuarios o en su defecto se mostrará el avatar predeterminado. +disable_registration=Desactivar Auto-Registro +disable_registration_popup=Desactivar auto-registro del usuario, solo el administrador podrá crear cuentas nuevas. +enable_captcha=Activar la Captcha +enable_captcha_popup=Requiere validar la captcha para el auto-registro de usuario. +require_sign_in_view=Activar el Inicio de Sesión obligatorio para Ver Páginas +require_sign_in_view_popup=Solo los usuarios logados pueden ver páginas, los visitantes anónimos solo podrán ver las páginas de login/registro. +admin_setting_desc=No es necesario crear una cuenta de administrador ahora mismo, el usuario que tenga ID=1 obtendrá privilegios de administrador automáticamente. +admin_title=Configuración de la Cuenta de Administrador +admin_name=Nombre de usuario +admin_password=Contraseña +confirm_password=Confirmar Contraseña +admin_email=Correo electrónico del administrador +install_gogs=Instalar Gogs +test_git_failed=Fallo al probar el comando 'git': %v +sqlite3_not_available=Tu versión no soporta SQLite3, por favor descarga el binario oficial desde %s, NO la versión de gobuild. +invalid_db_setting=La configuración de la base de datos no es correcta: %v +invalid_repo_path=La ruta de la raíz del repositorio es inválida: %v +run_user_not_match=El usuario que está ejecutando la aplicación no es el usuario actual: %s -> %s +save_config_failed=Error al guardar la configuración: %v +invalid_admin_setting=La configuración de la cuenta de administración es inválida: %v +install_success=Bienvenido! Estamos encantados de que hayas escogido Gogs, diviértete y cuídate. + +[home] +uname_holder=Nombre de usuario o correo electrónico +password_holder=Contraseña +switch_dashboard_context=Cambiar el contexto del Dashboard +my_repos=Mis Repositorios +collaborative_repos=Repositorios Colaborativos +my_orgs=Mis Organizaciones +my_mirrors=Mis Mirrors +view_home=Ver %s + +issues.in_your_repos=En tus repositorios + +[explore] +repos=Repositorios + +[auth] +create_new_account=Crear una Nueva Cuenta +register_hepler_msg=¿Ya tienes una cuenta? ¡Inicia sesión! +social_register_hepler_msg=¿Ya tienes una cuenta? ¡Enlázala! +disable_register_prompt=Lo sentimos, el registro está deshabilitado. Por favor, contacta con el administrador del sitio. +disable_register_mail=Lo sentimos. Los correos de Confirmación de Registro están deshabilitados. +remember_me=Recuérdame +forgot_password=He olvidado mi contraseña +forget_password=¿Has olvidado tu contraseña? +sign_up_now=¿Necesitas una cuenta? Regístrate ahora. +confirmation_mail_sent_prompt=Un nuevo correo de confirmación se ha enviado a <b>%s</b>. Por favor, comprueba tu bandeja de entrada en las siguientes %d horas para completar el proceso de registro. +active_your_account=Activa tu cuenta +resent_limit_prompt=Lo sentimos, estás solicitando el reenvío del mail de activación con demasiada frecuencia. Por favor, espera 3 minutos. +has_unconfirmed_mail=Hola %s, tu correo electrónico (<b>%s</b>) no está confirmado. Si no has recibido un correo de confirmación o necesitas que lo enviemos de nuevo, por favor, haz click en el siguiente botón. +resend_mail=Haz click aquí para reenviar tu correo electrónico de activación +email_not_associate=Esta dirección de correo electrónico no esta asociada a ninguna cuenta. +send_reset_mail=Haga clic aquí para (re)enviar el correo para el restablecimiento de la contraseña +reset_password=Restablecer su contraseña +invalid_code=Lo sentimos, su código de confirmación ha expirado o no es valido. +reset_password_helper=Haga Clic aquí para restablecer su contraseña +password_too_short=La longitud de la contraseña no puede ser menor a 6. + +[mail] +activate_account=Por favor, active su cuenta +activate_email=Verifique su correo electrónico +reset_password=Restablezca su contraseña +register_success=Registro completado, bienvenido +register_notify=Bienvenido a bordo + +[modal] +yes=Sí +no=No +modify=Editar + +[form] +UserName=Nombre de usuario +RepoName=Nombre del repositorio +Email=Dirección de correo electrónico +Password=Contraseña +Retype=Vuelva a escribir la contraseña +SSHTitle=Nombre de la Clave de SSH +HttpsUrl=HTTPS URL +PayloadUrl=URL de carga +TeamName=Nombre del equipo +AuthName=Nombre de autorización +AdminEmail=Correo electrónico del administrador + +require_error=` no puede estar vacío.` +alpha_dash_error=` los caracteres deben ser Alfanumericos o dash(-_).` +alpha_dash_dot_error=` debe ser un caracter alfanumérivo válido, un guión alto o bajo (-_) o un signo de puntuación.` +size_error=` debe ser de tamaño %s.` +min_size_error=` debe contener al menos %s caracteres.` +max_size_error=` debe contener como máximo %s caracteres.` +email_error=` no es una dirección de correo válida.` +url_error=` no es una URL válida.` +include_error='debe contener la subcadena '%s'.' +unknown_error=Error desconocido: +captcha_incorrect=El captcha no es válido. +password_not_match=La contraseña de confirmación no coincide. + +username_been_taken=Ya existe un usuario con este nombre. +repo_name_been_taken=Ya existe un repositorio con este nombre. +org_name_been_taken=Ya existe una organización con este nombre. +team_name_been_taken=Ya existe un equipo con este nombre. +email_been_used=Esta dirección de correo electrónico ya está en uso. +illegal_team_name=El nombre del equipo contiene caracteres inválidos. +username_password_incorrect=Nombre de usuario o contraseña incorrectos. +enterred_invalid_repo_name=Por favor, asegúrate de que has introducido correctamente el nombre del repositorio. +enterred_invalid_owner_name=Por favor, asegúrate de que has introducido correctamente el nombre del propietario. +enterred_invalid_password=Por favor, asegúrate de que has introducido correctamente tu contraseña. +user_not_exist=El usuario indicado no existe. +last_org_owner=El usuario que se intenta eliminar es el último miembro del equipo de propietarios. Debe existir otro propietario. + +invalid_ssh_key=Lo sentimos, no somos capaces de verificar tu clave SSH: %s +unable_verify_ssh_key=Gogs no puede velificar tu clave SSH, pero asumimos que es válida. Por favor, asegúrate de que es así. +auth_failed=Error de autenticación: %v + +still_own_repo=Tu cuenta es la propietaria de uno o más repositorios, tienes que borrarlos o transferirlos primero. +still_has_org=Tu cuenta es miembro de una o más organizaciones, tienes que abandonarlas o eliminarlas primero. +org_still_own_repo=Esta organización es dueña de uno o más repositorios, tienes que eliminarlos o transferirlos primero. + +still_own_user=Esta autenticación está en uso por algunos usuarios, debes moverlos y antes de eliminarla. + +target_branch_not_exist=La rama de destino no existe + +[user] +change_avatar=Cambia tu avatar en gravatar.com +change_custom_avatar=Cambia tu avatar en la configuración +join_on=Registrado en +repositories=Repositorios +activity=Actividad pública +followers=Seguidores +starred=Destacados +following=Siguiendo + +form.name_reserved=El usuario '%s' está reservado. +form.name_pattern_not_allowed=El patrón de nombre de usuario '%s' no está permitido. + +[settings] +profile=Perfil +password=Contraseña +ssh_keys=Claves SSH +social=Redes Sociales +applications=Aplicaciones +orgs=Organizaciones +delete=Eliminar Cuenta +uid=UUID + +public_profile=Perfil Público +profile_desc=Tu correo electrónico es público y será usado para todas las notificaciones relacionadas con cualquier cuenta y cualquier operación hecha a través de la web. +full_name=Nombre Completo +website=Página Web +location=Localización +update_profile=Actualizar Perfil +update_profile_success=Tu perfil se ha actualizado correctamente. +change_username=Nombre de usuario modificado +change_username_prompt=Este cambio afectará a los enlaces que hacen referencia a su cuenta. +continue=Continuar +cancel=Cancelar + +enable_custom_avatar=Activar Avatar Personalizado +enable_custom_avatar_helper=Activa esto para desactivar los avatares de Gravatar +choose_new_avatar=Selecciona nuevo avatar +update_avatar=Actualizar Configuración del Avatar +uploaded_avatar_not_a_image=El archivo enviado no es una imagen. +no_custom_avatar_available=No hay ningún avatar personalizado disponible, no se puede habilitar. +update_avatar_success=La configuración de tu avatar se ha actualizado correctamente. + +change_password=Cambiar contraseña +old_password=Contraseña actual +new_password=Nueva contraseña +retype_new_password=Confirmar nueva contraseña +password_incorrect=Contraseña actual incorrecta. +change_password_success=La contraseña se ha modificado correctamente. Ya puedes iniciar sesión con tu nueva contraseña. + +emails=Direcciones de correo electrónico +manage_emails=Gestionar direcciones de correo electrónico +email_desc=Tu dirección de correo principal se utilizará para las notificaciones y otras operaciones. +primary=Principal +primary_email=Marcar como principal +delete_email=Eliminar +email_deletion=Eliminación de Correo Electrónico +email_deletion_desc=Al eliminar esta dirección de correo electrónico se eliminará toda la información asociada a esta dirección de correo electrónico. ¿Deseas continuar? +email_deletion_success=¡El correo electrónico ha sido eliminado correctamente! +add_new_email=Añadir nueva dirección de correo electrónico +add_email=Añadir correo electrónico +add_email_confirmation_sent=Un nuevo correo de confirmación ha sido enviado a '%s'. Por favor, comprueba tu bandeja de entrada en las próximas %d horas para completar el proceso. +add_email_success=Tu nuevo correo electrónico se ha añadido correctamente. + +manage_ssh_keys=Gestionar Claves SSH +add_key=Añadir Clave +ssh_desc=Esta es la lista de claves SSH asociadas con tu cuenta. Elimina cualquier clave que no reconozcas. +ssh_helper=<strong>¿Necesitas ayuda?</strong> Consulta la guía de GitHub para <a href="%s">generar claves SSH</a> o solucionar <a href="%s">problemas comunes</a> al usar SSH. +add_new_key=Añadir clave SSH +ssh_key_been_used=El contenido de la clave pública se ha utilizado. +ssh_key_name_used=Ya existe una clave pública con el mismo nombre. +key_name=Nombre de la Clave +key_content=Contenido +add_key_success=¡Nueva clave SSH '%s' añadida correctamente! +delete_key=Eliminar +ssh_key_deletion=Borrado de Clave SSH +ssh_key_deletion_desc=Si elimina esta clave SSH no podrá volver a usarla para acceder a su cuenta. ¿Desea continuar? +ssh_key_deletion_success=¡La clave SSH ha sido eliminada con éxito! +add_on=Añadido en +last_used=Utilizado por última vez en +no_activity=No hay actividad reciente +key_state_desc=Esta clave ha sido usada en los últimos 7 días +token_state_desc=Token usado en los últimos 7 días + +manage_social=Gestionar Redes Sociales asociadas +social_desc=Esta es una lista de las Redes Sociales asociadas. Elimina cualquier vínculo que no reconozcas. +unbind=Desvincular +unbind_success=La Red Social ha sido desvinculada. + +manage_access_token=Gestionar los Tokens de Acceso personales +generate_new_token=Generar nuevo Token +tokens_desc=Tokens usados para acceder al API de Gogs. +new_token_desc=Desde ahora, todos los tokens tendrán acceso completo a tu cuenta. +token_name=Nombre del Token +generate_token=Generar Token +generate_token_succees=¡Los nuevos tokens de acceso se han generado correctamente! Asegúrate de copiar tu nuevo token de acceso personal. ¡No podrás verlo de nuevo! +delete_token=Eliminar +access_token_deletion=Borrado de Token de Acceso Personal +access_token_deletion_desc=Si elimina este token de acceso personal la aplicación asociada perderá el permiso de acceso. ¿Desea continuar? +delete_token_success=¡El token de acceso personal ha sido eliminado con éxito! No se olvide de actualizar también las aplicaciones asociadas. + +delete_account=Elimina tu cuenta +delete_prompt=La operación eliminará tu cuenta de forma permanente y ¡<strong>NO</strong> se puede deshacer! +confirm_delete_account=Confirmar Eliminación +delete_account_title=Eliminación de Cuenta +delete_account_desc=Esta cuenta se va a eliminar permanentemente, ¿quieres continuar? + +[repo] +owner=Propietario +repo_name=Nombre del Repositorio +repo_name_helper=Los grandes nombres de repositorios son cortos, memorables y <strong>únicos</strong>. +visibility=Visibilidad +visiblity_helper=Este repositorio es <span class="ui red text">Privado</span> +visiblity_helper_forced=El administrador web ha obligado a todos los repositorios nuevos a ser <span class="ui red text"> privados</span> +visiblity_fork_helper=(Este cambio afectará a todos los forks) +clone_helper=¿Necesitas ayuda con el clone? ¡Consulta la <a target="_blank" href="%s">Ayuda</a>! +fork_repo=Hacer Fork del repositorio +fork_from=Crear un Fork desde +fork_visiblity_helper=No es posible cambiar la visibilidad de un Fork +repo_desc=Descripción +repo_lang=Idioma +repo_lang_helper=Seleccione archivo .gitignore +license=Licencia +license_helper=Selecciona un fichero de licencia +readme=Readme +readme_helper=Seleccione una plantilla de archivo readme +auto_init=Inicializar los archivos seleccionados y plantillas de este repositorio +create_repo=Crear Repositorio +default_branch=Rama por defecto +mirror_interval=Intervalo de mirror(en horas) +watchers=Watchers +stargazers=Stargazers +forks=Forks + +form.name_reserved=El nombre del repositorio '%s' está reservado. +form.name_pattern_not_allowed=El patrón del nombre del repositorio '%s' no está permitido. + +need_auth=Requiere Autorización +migrate_type=Tipo de Migración +migrate_type_helper=Este repositorio será un <span class="text blue">mirror</span> +migrate_repo=Migrar Repositorio +migrate.clone_address=Clonar Dirección +migrate.clone_address_desc=Puede ser una URL HTTP/HTTPS/GIT o una ruta local del servidor. +migrate.permission_denied=No te está permitido importar repositorios locales. +migrate.invalid_local_path=Rutal local inválida, no existe o no es un directorio. +migrate.failed=Migration failed: %v + +forked_from=forked de +fork_from_self=Eres el propietario del repositorio, ¡no puedes hacer fork! +copy_link=Copiar +copy_link_success=Copiado! +copy_link_error=Presione ⌘ + C o Ctrl-C para copiar +copied=Copiado correctamente +unwatch=Dejar de vigilar +watch=Vigilar +unstar=Eliminar destacado +star=Destacar +fork=Fork + +no_desc=Sin Descripción +quick_guide=Guía Rápida +clone_this_repo=Clonar este repositorio +create_new_repo_command=Crear un nuevo repositorio desde línea de comandos +push_exist_repo=Hacer Push de un repositorio existente desde línea de comandos +repo_is_empty=Este repositorio está vacío, por favor, ¡vuelva más tarde! + +branch=Rama +tree=Árbol +filter_branch_and_tag=Filtrar por rama o etiqueta +branches=Ramas +tags=Etiquetas +issues=Incidencias +pulls=Pull Requests +labels=Etiquetas +milestones=Milestones +commits=Commits +releases=Releases +file_raw=Raw +file_history=Histórico +file_view_raw=Ver Raw +file_permalink=Permalink + +commits.commits=Commits +commits.search=Buscar Commits +commits.find=Buscar +commits.author=Autor +commits.message=Mensaje +commits.date=Fecha +commits.older=Anterior +commits.newer=Posterior + +issues.new=Nueva Incidencia +issues.new.labels=Etiquetas +issues.new.no_label=Sin etiquetas +issues.new.clear_labels=Limpiar etiquetas +issues.new.milestone=Milestone +issues.new.no_milestone=Sin Milestone +issues.new.clear_milestone=Limpiar Milestone +issues.new.open_milestone=Milestones abiertas +issues.new.closed_milestone=Milestones cerradas +issues.new.assignee=Asignado a +issues.new.clear_assignee=Limpiar asignado +issues.new.no_assignee=Sin asignado +issues.create=Crear incidencia +issues.new_label=Nueva Etiqueta +issues.new_label_placeholder=Nombre etiqueta... +issues.create_label=Crear etiqueta +issues.open_tab=%d abiertas +issues.close_tab=%d cerradas +issues.filter_label=Etiqueta +issues.filter_label_no_select=Ninguna etiqueta seleccionada +issues.filter_milestone=Milestone +issues.filter_milestone_no_select=Ningún Milestone seleccionado +issues.filter_assignee=Asignada a +issues.filter_assginee_no_select=Sin asignar +issues.filter_type=Tipo +issues.filter_type.all_issues=Todas las incidencias +issues.filter_type.assigned_to_you=Asignadas a ti +issues.filter_type.created_by_you=Creadas por ti +issues.filter_type.mentioning_you=Citado en +issues.filter_sort=Ordenar +issues.filter_sort.latest=Más recientes +issues.filter_sort.oldest=Más antiguas +issues.filter_sort.recentupdate=Actualizada recientemente +issues.filter_sort.leastupdate=Actualizada menos recientemente +issues.filter_sort.mostcomment=Más comentadas +issues.filter_sort.leastcomment=Menos comentadas +issues.opened_by=abierta %[1]s por <a href="%[2]s">%[3]s</a> +issues.opened_by_fake=abierta %[1]s por %[2]s +issues.previous=Página Anterior +issues.next=Página Siguiente +issues.open_title=Abierta +issues.closed_title=Cerrada +issues.num_comments=%d comentarios +issues.commented_at=`comentada <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.no_content=Aun no existe contenido. +issues.close_issue=Cerrar +issues.close_comment_issue=Comentar y cerrar +issues.reopen_issue=Reabrir +issues.reopen_comment_issue=Comentar y reabrir +issues.create_comment=Comentar +issues.closed_at=`cerrada <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.reopened_at=`reabierta <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.commit_ref_at=`mencionada esta incidencia en un commit <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.poster=Autor +issues.admin=Administrador +issues.owner=Propietario +issues.sign_up_for_free=Registro gratuito +issues.sign_in_require_desc=para unirse a esta conversación. ¿Ya dispone de una cuenta? <a href="%s">Inicie sesión para comentar</a> +issues.edit=Editar +issues.cancel=Cancelar +issues.save=Guardar +issues.label_title=Nombre etiqueta +issues.label_color=Color etiqueta +issues.label_count=%d etiquetas +issues.label_open_issues=%d incidencias abiertas +issues.label_edit=Editar +issues.label_delete=Borrar +issues.label_modify=Edición de Etiqueta +issues.label_deletion=Borrado de Etiqueta +issues.label_deletion_desc=Al borrar la etiqueta su información será eliminada de todas las incidencias relacionadas. Desea continuar? +issues.label_deletion_success=Etiqueta borrada con éxito! + +pulls.new=New Pull Request +pulls.compare_changes=Comparar Cambios +pulls.compare_changes_desc=Comparar dos ramas y generar un pull request con las diferencias. +pulls.compare_base=base +pulls.compare_compare=comparar con +pulls.filter_branch=Filtrar rama +pulls.no_results=Sin resultados. +pulls.nothing_to_compare=Nada que comparar. Las dos ramas coinciden. +pulls.has_pull_request=`Ya existe un pull request entre estas dos ramas: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>` +pulls.create=Crear Pull Request +pulls.title_desc=desea fusionar %[1]d commits de <code>%[2]s</code> en <code>%[3]s</code> +pulls.merged_title_desc=fusionados %[1]d commits de <code>%[2]s</code> en <code>%[3]s</code> %[4]s +pulls.tab_conversation=Conversación +pulls.tab_commits=Commits +pulls.tab_files=Archivos modificados +pulls.reopen_to_merge=Por favor reabra este pull request para proceder con la operación de fusionado. +pulls.merged=Fuisionado +pulls.has_merged=¡Este pull request se ha completado con éxito! +pulls.data_broken=Los datos de este pull request ya no están disponibles porque se ha eliminado la información del fork. +pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments. +pulls.can_auto_merge_desc=Puede realizar la operación auto-fusionado en este pull request. +pulls.cannot_auto_merge_desc=No puede realizar la operación de auto-fusionado porque existen conflictos entre los commits. +pulls.cannot_auto_merge_helper=Por favor use la línea de comandos para resolverlo. +pulls.merge_pull_request=Fusionar Pull Request +pulls.open_unmerged_pull_exists=`You can't perform reopen operation because there is already an open pull request (#%d) from same repository with same merge information and is waiting for merging.` + +milestones.new=Nuevo Milestone +milestones.open_tab=%d abiertas +milestones.close_tab=%d cerradas +milestones.closed=Cerrada %s +milestones.no_due_date=Sin fecha límite +milestones.open=Abrir +milestones.close=Cerrar +milestones.new_subheader=Cree milestones para organizar las incidencias. +milestones.create=Nuevo Milestone +milestones.title=Título +milestones.desc=Descripción +milestones.due_date=Fecha límite (opcional) +milestones.clear=Eliminar +milestones.invalid_due_date_format=El formato de la fecha límite no es válido, debe ser 'yyyy-mm-dd'. +milestones.create_success=¡El milestone '%s' ha sido creado con éxito! +milestones.edit=Editar Milestone +milestones.edit_subheader=Use una buena descripción en el milestone para no confundir al resto de usuarios. +milestones.cancel=Cancelar +milestones.modify=Modificar Milestone +milestones.edit_success=¡Los cambios al milestone '%s' se han guardado con éxito! +milestones.deletion=Borrar milestone +milestones.deletion_desc=El borrado de este milestone eliminará su información y las incidencias asociadas. ¿Desea continuar? +milestones.deletion_success=¡El milestone ha sido eliminado con éxito! + +settings=Configuración +settings.options=Opciones +settings.collaboration=Colaboración +settings.hooks=Webhooks +settings.githooks=Git Hooks +settings.basic_settings=Configuración Básica +settings.danger_zone=Zona de Peligro +settings.site=Sitio Oficial +settings.update_settings=Actualizar Configuración +settings.change_reponame_prompt=Este cambio afectará a los enlaces al repositorio. +settings.transfer=Transferir la Propiedad +settings.transfer_desc=Transferir este repositorio a otro usuario u organización donde tengas permisos de administración. +settings.new_owner_has_same_repo=El nuevo propietario tiene un repositorio con el mismo nombre. +settings.delete=Eliminar este Repositorio +settings.delete_desc=Una vez has eliminado un repositorio, no hay vuelta atrás. Por favor, asegúrate de que es lo que quieres. +settings.transfer_notices_1=- Perderá el permiso de acceso si el nuevo propietario es otro usuario. +settings.transfer_notices_2=- Conservará el privilegio de acceso si el nuevo propietario es una organización y usted es uno de los propietarios de dicha organización. +settings.transfer_form_title=Por favor introduzca esta información para confirmar la operación: +settings.delete_notices_1=- Esta operación <strong>NO PUEDE</strong> revertirse. +settings.delete_notices_2=- Esta operación eliminará de manera permanente todo el contenido de este repositorio, incluyendo los datos de git, las incidencias, los comentarios y los permisos de acceso de los colaboradores. +settings.delete_notices_fork_1=- Si este repositorio es público, todos los forks se convertirán en repositorios independientes tras el borrado. +settings.delete_notices_fork_2=- Si este repositorio es privado, todos los forks serán eliminados simultáneamente. +settings.delete_notices_fork_3=- Si desea mantener los forks tras el borrado, por favor convierta este repositorio en público antes de proceder. +settings.update_settings_success=Las opciones del repositorio se han actualizado correctamente. +settings.transfer_owner=Nuevo Propietario +settings.make_transfer=Transferir +settings.transfer_succeed=La propiedad del repositorio ha sido transferida exitosamente. +settings.confirm_delete=Confirmar Eliminación +settings.add_collaborator=Añadir Nuevo Colaborador +settings.add_collaborator_success=Se ha añadido el nuevo colaborador. +settings.remove_collaborator_success=Se ha eliminado el colaborador. +settings.search_user_placeholder=Buscar usuario... +settings.user_is_org_member=El usuario es miembro de la organización, no puede ser añadido como colaborador. +settings.add_webhook=Añadir Webhook +settings.hooks_desc=Los Webhooks permiten a servicios externos recibir notificaciones cuando sucedan ciertos eventos en Gogs. Cuando sucedan los eventos especificados, enviaremos una petición POST a cada una de las URLs indicadas. Para obtener más información, consulta nuestra <a target="_blank" href="%s">Guía de Webhooks</a>. +settings.webhook_deletion=Eliminar Webhook +settings.webhook_deletion_desc=Al borrar este webhook se eliminará su información y todo su historial. ¿Desea continuar? +settings.webhook_deletion_success=¡Webhook eliminado con éxito! +settings.webhook.request=Petición +settings.webhook.response=Respuesta +settings.webhook.headers=Encabezado +settings.webhook.payload=Payload +settings.webhook.body=Cuerpo del mensaje +settings.githooks_desc=Los Git Hooks son una funcionalidad del propio Git, puedes editar los ficheros de los hooks soportados en la siguiente lista para aplicar operaciones personalizadas. +settings.githook_edit_desc=Si el hook no está activo, se mostrará contenido de ejemplo. Dejar el contenido vacío deshabilitará este hook. +settings.githook_name=Nombre del Hook +settings.githook_content=Contenido del Hook +settings.update_githook=Actualizar Hook +settings.add_webhook_desc=Enviaremos una petición <code>POST</code> a la siguiente URL con los detalles de cualquier evento suscrito. También puedes especificar qué formato de datos te gustaría recibir (JSON, <code>x-www-form-urlencoded</code>, <em>etc</em>). Puedes encontrar más información en la <a target="_blank" href="%s">Guía de Webhooks</a>. +settings.payload_url=URL de Payload +settings.content_type=Tipo de Contenido +settings.secret=Secreto +settings.slack_username=Nombre de usuario +settings.slack_icon_url=URL de icono +settings.slack_color=Color +settings.event_desc=¿Qué eventos te gustaría que desencadenasen este webhook? +settings.event_push_only=Solo el evento <code>push</code>. +settings.event_send_everything=Necesito <strong>todo</strong>. +settings.event_choose=Déjeme elegir lo que necesito. +settings.event_create=Crear +settings.event_create_desc=Rama o etiqueta creada +settings.event_push=Push +settings.event_push_desc=Git push a un repositorio +settings.active=Activo +settings.active_helper=Enviaremos detalles del evento cuando este hook se dispare. +settings.add_hook_success=Se ha añadido un nuevo webhook. +settings.update_webhook=Actualizar Webhook +settings.update_hook_success=Se ha actualizado el Webhook. +settings.delete_webhook=Borrar Webhook +settings.recent_deliveries=Envíos Recientes +settings.hook_type=Tipo de Hook +settings.add_slack_hook_desc=Añade integración con <a href="%s">Slack</a> a tu repositorio. +settings.slack_token=Token +settings.slack_domain=Dominio +settings.slack_channel=Canal +settings.deploy_keys=Claves de Despliegue +settings.add_deploy_key=Añadir Clave de Despliegue +settings.no_deploy_keys=No has añadido ninguna clave de despliegue. +settings.title=Título +settings.deploy_key_content=Contenido +settings.key_been_used=Se ha usado la clave de despliegue. +settings.key_name_used=Ya existe una clave de despliegue con el mismo nombre. +settings.add_key_success=¡La nueva clave de desplieque '%s' ha sido creada con éxito! +settings.deploy_key_deletion=Eliminar Clave de Despliegue +settings.deploy_key_deletion_desc=Al eliminar esta clave de despliegue se perderán el permiso de acceso a este repositorio con dicha clave. ¿Deseas continuar? +settings.deploy_key_deletion_success=¡Clave de despliegue eliminada con éxito! + +diff.browse_source=Explorar el Código +diff.parent=padre +diff.commit=commit +diff.data_not_available=Los datos del Diff no están disponibles. +diff.show_diff_stats=Mostrar Estadísticas de Diff +diff.stats_desc=Se han <strong>modificado %d ficheros</strong> con <strong>%d adiciones</strong> y <strong>%d borrados</strong> +diff.bin=BIN +diff.view_file=Ver Fichero + +release.releases=Releases +release.new_release=Nueva Release +release.draft=Borrador +release.prerelease=Pre-Release +release.stable=Estable +release.edit=editar +release.ahead=<strong>%d</strong> commits en %s desde esta release +release.source_code=Código Fuente +release.new_subheader=Publish releases to iterate product. +release.edit_subheader=Detailed change log can help users understand what has been improved. +release.tag_name=Nombre de la etiqueta +release.target=Destino +release.tag_helper=Escoge una etiqueta o crea una nueva al publicar. +release.title=Título +release.content=Contenido +release.write=Escribir +release.preview=Vista Previa +release.loading=Cargando... +release.prerelease_desc=Esta es una pre-release +release.prerelease_helper=Esta release está marcada como no apta para producción. +release.cancel=Cancelar +release.publish=Publicar Release +release.save_draft=Guardar Borrador +release.edit_release=Editar Release +release.delete_release=Delete This Release +release.deletion=Release Deletion +release.deletion_desc=Delete this release will delete corresponding Git tag. Do you want to continue? +release.deletion_success=Release has been deleted successfully! +release.tag_name_already_exist=Ya existe una Release con esta etiqueta. +release.downloads=Descargas + +[org] +org_name_holder=Nombre de la Organización +org_full_name_holder=Nombre de la organización +org_name_helper=Los grandes nombres de organizaciones son cortos y memorables. +create_org=Crear Organización +repo_updated=Actualizado +people=Personas +invite_someone=Invitar a alguien +teams=Equipos +lower_members=miembros +lower_repositories=repositorios +create_new_team=Crear un Nuevo Equipo +org_desc=Descripción +team_name=Nombre del Equipo +team_desc=Descripción +team_name_helper=Utiliza este nombre para mencionar a este equipo en las conversaciones. +team_desc_helper=¿En qué consiste este equipo? +team_permission_desc=¿Qué nivel de permisos debería tener este equipo? + +form.name_reserved=El nombre de la organización '%s' está reservado. +form.name_pattern_not_allowed=El patrón de nombre de la organización '%s' no está permitido. + +settings=Configuración +settings.options=Opciones +settings.full_name=Nombre Completo +settings.website=Página Web +settings.location=Localización +settings.update_settings=Actualizar Configuración +settings.update_setting_success=La configuración de la Organización se ha actualizado correctamente. +settings.change_orgname_prompt=Este cambio afectará a los enlaces que hacen referencia a la organización. +settings.update_avatar_success=La configuración de avatar de la organización ha sido actualizada con éxito. +settings.delete=Eliminar Organización +settings.delete_account=Eliminar esta Organización +settings.delete_prompt=Esta operación eliminará esta organización de manera permanente, y ¡<strong>NO PUEDE</strong> deshacerse! +settings.confirm_delete_account=Confirmar Eliminación +settings.delete_org_title=Eliminación de la Organización +settings.delete_org_desc=Esta organización se va a eliminar permanentemente, ¿quieres continuar? +settings.hooks_desc=Añadir webhooks que serán ejecutados para <strong>todos los repositorios</strong> de esta organización. + +members.public=Público +members.public_helper=convertir en privado +members.private=Privado +members.private_helper=convertir en público +members.owner=Propietario +members.member=Miembro +members.conceal=Ocultar +members.remove=Eliminar +members.leave=Abandonar +members.invite_desc=Comienza a teclear un nombre de usuario para invitar a un nuevo miembro a %s: +members.invite_now=Invitar + +teams.join=Unirse +teams.leave=Abandonar +teams.read_access=Acceso de Lectura +teams.read_access_helper=Este equipo podrá ver y clonar sus repositorios. +teams.write_access=Acceso de Escritura +teams.write_access_helper=Este equipo podrá leer sus repositorios, así como hacer push en ellos. +teams.admin_access=Acceso de Administrador +teams.admin_access_helper=Este equipo podrá hacer push/pull en sus repositorios, así como añadir colaboradores a ellos. +teams.no_desc=Este equipo no tiene descripción +teams.settings=Configuración +teams.owners_permission_desc=Los propietarios tienen acceso completo a <strong>todos los repositorios</strong> y tienen <strong>derechos de administración</strong> en la organización. +teams.members=Miembros del Equipo +teams.update_settings=Actualizar Configuración +teams.delete_team=Borrar este Equipo +teams.add_team_member=Añadir Miembro al Equipo +teams.delete_team_title=Eliminar Equipo +teams.delete_team_desc=Este equipo va a ser eliminado, ¿seguro que quieres continuar? Los miembros de este equipo pueden perder acceso a algunos repositorios. +teams.delete_team_success=El Equipo se ha eliminado correctamente. +teams.read_permission_desc=Este equipo tiene permisos de <strong>Lectura</strong>: sus miembros pueden ver y clonar los repositorios del equipo. +teams.write_permission_desc=Este equipo tiene permisos de <strong>Escritura</strong>: sus miembros pueden leer y hacer push a los repositorios del equipo. +teams.admin_permission_desc=Este equipo tiene permisos de <strong>Administración</strong>: sus miembros pueden leer, hacer push y añadir colaboradores a los repositorios del equipo. +teams.repositories=Repositorios del Equipo +teams.add_team_repository=Añadir Repositorio al Equipo +teams.remove_repo=Eliminar +teams.add_nonexistent_repo=El repositorio que estás intentando añadir no existe, por favor, créalo primero. + +[admin] +dashboard=Dashboard +users=Usuarios +organizations=Organizaciones +repositories=Repositorios +authentication=Autenticaciones +config=Configuración +notices=Avisos del Sistema +monitor=Monitorización +first_page=Primera +last_page=Última +total=Total: %d + +dashboard.statistic=Estadísticas +dashboard.operations=Operaciones +dashboard.system_status=Estado del Monitor del Sistema +dashboard.statistic_info=La base de datos de Gogs contiene <b>%d</b> usuarios, <b>%d</b> organizaciones, <b>%d</b> claves públicas, <b>%d</b> repositorios, <b>%d</b> vigilados, <b>%d</b> destacados, <b>%d</b> acciones, <b>%d</b> accesos, <b>%d</b> incidencias, <b>%d</b> comentarios, <b>%d</b> cuentas de redes sociales, <b>%d</b> seguidores, <b>%d</b> mirrors, <b>%d</b> releases, <b>%d</b> fuentes de login, <b>%d</b> webhooks, <b>%d</b> milestones, <b>%d</b> etiquetas, <b>%d</b> hooks, <b>%d</b> equipos, <b>%d</b> tareas actualizadas, <b>%d</b> adjuntos. +dashboard.operation_name=Nombre de la Operación +dashboard.operation_switch=Interruptor +dashboard.operation_run=Ejecutar +dashboard.clean_unbind_oauth=Limpiar solicitudes de OAuth sin confirmar +dashboard.clean_unbind_oauth_success=Las solicitudes de OAuth sin confirmar se han eliminado correctamente. +dashboard.delete_inactivate_accounts=Eliminar todas las cuentas inactivas +dashboard.delete_inactivate_accounts_success=Todas las cuentas inactivas se han eliminado correctamente. +dashboard.delete_repo_archives=Eliminar todos los archivos de repositorios +dashboard.delete_repo_archives_success=Todos los archivos de repositorios se han eliminado correctamente. +dashboard.delete_missing_repos=Delete all repository records that lost Git files +dashboard.delete_missing_repos_success=All repository records that lost Git files have been deleted successfully. +dashboard.git_gc_repos=Ejecutar la recolección de basura en los repositorios +dashboard.git_gc_repos_success=Todos los repositorios han ejecutado correctamente el recolector de basuras. +dashboard.resync_all_sshkeys=Reescribir el fichero '.ssh/authorized_keys'(atención: se perderán las claves que no pertenezcan a Gogs) +dashboard.resync_all_sshkeys_success=Todas las claves públicas se han reescrito correctamente. +dashboard.resync_all_update_hooks=Reescribir todos los hooks de actualización de los repositorios (necesario cuando se modifica la ruta de configuración personalizada) +dashboard.resync_all_update_hooks_success=Todos los hooks de actualización de los repositorios se han reescrito correctamente. + +dashboard.server_uptime=Uptime del Servidor +dashboard.current_goroutine=Gorutinas Actuales +dashboard.current_memory_usage=Uso de Memoria Actual +dashboard.total_memory_allocated=Total de Memoria Reservada +dashboard.memory_obtained=Memoria Obtenida +dashboard.pointer_lookup_times=Tiempos de Búsqueda de Punteros +dashboard.memory_allocate_times=Tiempos de Reserva de Memoria +dashboard.memory_free_times=Tiempos de Liberado de Memoria +dashboard.current_heap_usage=Uso de Heap Actual +dashboard.heap_memory_obtained=Memoria de Heap Obtenida +dashboard.heap_memory_idle=Memoria de Heap Inactiva +dashboard.heap_memory_in_use=Memoria de Heap en Uso +dashboard.heap_memory_released=Memoria de Heap Liberada +dashboard.heap_objects=Objetos en el Heap +dashboard.bootstrap_stack_usage=Uso de la Pila de Bootstrap +dashboard.stack_memory_obtained=Memoria de Pila Obtenida +dashboard.mspan_structures_usage=Uso de Estructuras MSpan +dashboard.mspan_structures_obtained=Estructuras MSpan Obtenidas +dashboard.mcache_structures_usage=Uso de estructuras MCache +dashboard.mcache_structures_obtained=Estructuras MCache Obtenidas +dashboard.profiling_bucket_hash_table_obtained=Profiling Bucket Hash Table Obtenido +dashboard.gc_metadata_obtained=Metadatos del Recolector de Basuras Obtenidos +dashboard.other_system_allocation_obtained=Otros Recursos del Sistema Asignados +dashboard.next_gc_recycle=Siguiente Reciclado del Recolector de Basuras +dashboard.last_gc_time=Tiempo desde el Último GC +dashboard.total_gc_time=Pausa Total por GC +dashboard.total_gc_pause=Pausa Total por GC +dashboard.last_gc_pause=Última Pausa por GC +dashboard.gc_times=Ejecuciones GC + +users.user_manage_panel=Panel de Gestión de Usuarios +users.new_account=Crear Nueva Cuenta +users.name=Nombre +users.activated=Activado +users.admin=Administrador +users.repos=Repositorios +users.created=Creado +users.send_register_notify=Enviar notificación de registro al usuario +users.new_success=La cuenta '%s' ha sido creada con éxito. +users.edit=Editar +users.auth_source=Fuente de Autenticación +users.local=Local +users.auth_login_name=Nombre de Inicio de Sesión de Autenticación +users.password_helper=Deje el campo vacío si no desea cambiar la contraseña. +users.update_profile_success=El perfil de la cuenta se ha actualizado correctamente. +users.edit_account=Editar Cuenta +users.is_activated=Esta cuenta está activada +users.is_admin=Esta cuenta tiene permisos de administrador +users.allow_git_hook=Esta cuenta tiene permisos para crear hooks de Git +users.allow_import_local=Esta cuenta dispone de permisos para importar repositorios locales +users.update_profile=Actualizar Perfil de la Cuenta +users.delete_account=Eliminar esta Cuenta +users.still_own_repo=Esta cuenta es propietaria de uno o más repositorios, tienes que borrarlos o transferirlos primero. +users.still_has_org=Esta cuenta es miembro de una o más organizaciones, tienes que abandonarlas o eliminarlas primero. +users.deletion_success=Su cuenta ha sido eliminada correctamente! + +orgs.org_manage_panel=Panel de Gestión de Organización +orgs.name=Nombre +orgs.teams=Equipos +orgs.members=Miembros + +repos.repo_manage_panel=Panel de Gestión de Repositorios +repos.owner=Propietario +repos.name=Nombre +repos.private=Privado +repos.watches=Vigilantes +repos.stars=Estrellas +repos.issues=Incidencias + +auths.auth_manage_panel=Panel de Administración de Autenticación +auths.new=Añadir Nuevo Origen +auths.name=Nombre +auths.type=Tipo +auths.enabled=Activo +auths.updated=Actualizado +auths.auth_type=Tipo de Autenticación +auths.auth_name=Nombre de Autenticación +auths.domain=Dominio +auths.host=Host +auths.port=Puerto +auths.bind_dn=Bind DN +auths.bind_password=Contraseña Bind +auths.bind_password_helper=Advertencia: La contraseña se almacena como texto plano. No utilice una cuenta con privilegios elevados. +auths.user_base=Base de Búsqueda de Usuarios +auths.user_dn=DN de Usuario +auths.attribute_name=Atributo nombre +auths.attribute_surname=Atributo apellido +auths.attribute_mail=Atributo correo electrónico +auths.filter=Filtro de Usuario +auths.admin_filter=Filtro de Aministrador +auths.ms_ad_sa=Ms Ad SA +auths.smtp_auth=Tipo de Autenticación SMTP +auths.smtphost=SMTP Host +auths.smtpport=Puerto SMTP +auths.allowed_domains=Dominios Permitidos +auths.allowed_domains_helper=Deje el campo vacío si no desea restringir ningún dominio. Para restringir más de uno, separe los dominios con una coma ','. +auths.enable_tls=Habilitar Cifrado TLS +auths.skip_tls_verify=Omitir la verificación TLS +auths.pam_service_name=Nombre del Servicio PAM +auths.enable_auto_register=Hablilitar Auto-Registro +auths.tips=Consejos +auths.edit=Editar la Configuración de Autenticación +auths.activated=Esta autenticación ha sido activada +auths.new_success=¡La autenticación '%s' ha sido añadida con éxito! +auths.update_success=La configuración de autenticación ha sido actualizada con éxito. +auths.update=Actualizar la Configuración de Autenticación +auths.delete=Eliminar Autenticación +auths.delete_auth_title=Borrado de Autenticación +auths.delete_auth_desc=Esta autenticación será eliminada. ¿Deseas continuar? +auths.deletion_success=¡La autenticación ha sido eliminada con éxito! + +config.server_config=Configuración del Servidor +config.app_name=Nombre de la Aplicación +config.app_ver=Versión de la Aplicación +config.app_url=URL de la Aplicación +config.domain=Dominio +config.offline_mode=Modo Sin Conexión +config.disable_router_log=Deshabilitar Log del Router +config.run_user=Ejecutada como Usuario +config.run_mode=Modo de Ejecución +config.repo_root_path=Ruta del Repositorio +config.static_file_root_path=Ruta de los Ficheros Estáticos +config.log_file_root_path=Ruta de los Ficheros de Log +config.script_type=Tipo de Script +config.reverse_auth_user=Autenticación Inversa de Usuario +config.db_config=Configuración de la Base de Datos +config.db_type=Tipo +config.db_host=Host +config.db_name=Nombre +config.db_user=Usuario +config.db_ssl_mode=Modo SSL +config.db_ssl_mode_helper=(solo para "postgres") +config.db_path=Ruta +config.db_path_helper=(para "sqlite3" y "tidb") +config.service_config=Configuración del Servicio +config.register_email_confirm=Solicitar Confirmación por Correo Electrónico +config.disable_register=Deshabilitar el Registro +config.show_registration_button=Mostrar Botón de Registro +config.require_sign_in_view=Solicitar la Vista de Inicio de Sesión +config.enable_cache_avatar=Activar la Caché de Avatar +config.mail_notify=Notificación por Correo Electrónico +config.disable_key_size_check=Deshabilitar la comprobación de Tamaño Mínimo de Clave +config.enable_captcha=Activar Captcha +config.active_code_lives=Habilitar Vida del Código +config.reset_password_code_lives=Restablecer Contraseña de Vida del Código +config.webhook_config=Configuración de Webhooks +config.queue_length=Tamaño de Cola de Envío +config.deliver_timeout=Timeout de Entrega +config.skip_tls_verify=Omitir la Verificación TLS +config.mailer_config=Configuración del Mailer +config.mailer_enabled=Activado +config.mailer_disable_helo=Desactivar HELO +config.mailer_name=Nombre +config.mailer_host=Host +config.mailer_user=Usuario +config.oauth_config=Configuración OAuth +config.oauth_enabled=Activado +config.cache_config=Configuración de la Caché +config.cache_adapter=Adaptador de la Caché +config.cache_interval=Intervalo de la Caché +config.cache_conn=Conexión de la Caché +config.session_config=Configuración de la Sesión +config.session_provider=Proveedor de la Sesión +config.provider_config=Configuración del Proveedor +config.cookie_name=Nombre de la Cookie +config.enable_set_cookie=Activar Establecimiento de Cookie +config.gc_interval_time=Intervalo de tiempo del GC +config.session_life_time=Tiempo de Vida de la Sesión +config.https_only=Sólo HTTPS +config.cookie_life_time=Tiempo de Vida de la Cookie +config.picture_config=Configuración de Imagen +config.picture_service=Servicio de Imágen +config.disable_gravatar=Desactivar Gravatar +config.log_config=Configuración del Log +config.log_mode=Modo del Log + +monitor.cron=Tareas de Cron +monitor.name=Nombre +monitor.schedule=Agenda +monitor.next=Próxima Vez +monitor.previous=Vez Anterior +monitor.execute_times=Ejecuciones +monitor.process=Procesos en Ejecución +monitor.desc=Descripción +monitor.start=Hora de Inicio +monitor.execute_time=Tiempo de ejecución + +notices.system_notice_list=Notificaciones del Sistema +notices.type=Tipo +notices.type_1=Repositorio +notices.desc=Descripción +notices.op=Op. +notices.delete_success=La notificación del sistema se ha eliminado correctamente. + +[action] +create_repo=repositorio creado <a href="%s">%s</a> +rename_repo=repositorio renombrado de <code>%[1]s</code> a <a href="%[2]s">%[3]s</a> +commit_repo=hizo push a <a href="%[1]s/src/%[2]s">%[3]s</a> en <a href="%[1]s">%[4]s</a> +create_issue=`incidencia abierta <a href="%s/issues/%s">%s#%[2]s</a>` +create_pull_request=`creado pull request <a href="%s/pulls/%s">%s#%[2]s</a>` +comment_issue=`comentó en la incidencia <a href="%s/issues/%s">%s#%[2]s</a>` +merge_pull_request=`fusionado pull request <a href="%s/pulls/%s">%s#%[2]s</a>` +transfer_repo=transfirió el repositorio <code>%s</code> a <a href="%s">%s</a> +push_tag=hizo push del tag <a href="%s/src/%s">%[2]s</a> a <a href="%[1]s">%[3]s</a> +compare_2_commits=Ver la comparación de estos 2 commits + +[tool] +ago=hace +from_now=desde ahora +now=ahora +1s=%s 1 segundo +1m=%s 1 minuto +1h=%s 1 hora +1d=%s 1 día +1w=%s 1 semana +1mon=%s 1 mes +1y=%s 1 año +seconds=%[2]d %[1]s segundos +minutes=%s %d minutos +hours=%s %d horas +days=%s %d días +weeks=%s %d semanas +months=%s %d meses +years=%s %d años +raw_seconds=segundos +raw_minutes=minutos + +[dropzone] +default_message=Suéltelos aquí o pulse para cargar archivos. +invalid_input_type=No está permitido cargar archivos de este tipo. +file_too_big=El tamaño del archivo ({{filesize}} MB) excede el tamaño máximo ({{maxFilesize}} MB). +remove_file=Eliminar archivo + diff --git a/conf/locale/locale_fr-FR.ini b/conf/locale/locale_fr-FR.ini index 2327394d..6522f0a8 100755 --- a/conf/locale/locale_fr-FR.ini +++ b/conf/locale/locale_fr-FR.ini @@ -1,992 +1,1009 @@ -app_desc=Un service de Git sans prise de tête auto-hébergé codé en Go
-
-home=Accueil
-dashboard=Tableau de bord
-explore=Explorer
-help=Aide
-sign_in=Connexion
-sign_out=Déconnexion
-sign_up=Créer un compte
-register=S'inscrire
-website=Site Web
-version=Version
-page=Page
-template=Modèle
-language=Langue
-create_new=Créer...
-user_profile_and_more=Profil utilisateur et plus
-signed_in_as=Connecté en tant que
-
-username=Nom d'utilisateur
-email=E-mail
-password=Mot de passe
-re_type=Confirmez
-captcha=Captcha
-
-repository=Dépôt
-organization=Organisation
-mirror=Miroir
-new_repo=Nouveau Dépôt
-new_migrate=Nouvelle Migration
-new_fork=Nouvel embranchement
-new_org=Nouvelle Organisation
-manage_org=Gérer les Organisations
-admin_panel=Administration
-account_settings=Paramètres du Compte
-settings=Paramètres
-your_profile=Votre profil
-your_settings=Vos paramètres
-
-news_feed=Flux d'actualités
-pull_requests=Pull Requests
-issues=Problèmes
-
-cancel=Annuler
-
-[search]
-search=Rechercher...
-repository=Dépôt
-user=Utilisateur
-issue=Problème
-code=Code
-
-[install]
-install=Installation
-title=Instructions pour la première exécution
-docker_helper=Si vous exécuté Gogs grâce à Docker, merci de lire la <a target="_blank" href="%s">procédure</a> attentivement avant de modifier quoi que ce soit dans cette page !
-requite_db_desc=Gogs requiert MySQL, PostgreSQL, SQLite3 ou TiDB.
-db_title=Paramètres de la base de données
-db_type=Type de Base de Données
-host=Hôte
-user=Utilisateur
-password=Mot De Passe
-db_name=Nom de la Base de Données
-db_helper=Veuillez utiliser le moteur INNODB avec le jeu de caractères utf8_general_ci pour MySQL.
-ssl_mode=Mode SSL
-path=Chemin
-sqlite_helper=Le chemin du fichier de la base de données SQLite3 ou TiDB.
-err_empty_db_path=Le chemin de la base de données SQLite3 ou TiDB ne peut être vide.
-err_invalid_tidb_name=Le nom de la base de données TIDB ne peux contenir les caractères "." ou "-".
-no_admin_and_disable_registration=Vous ne pouvez pas désactiver l'enregistrement sans créer un compte admin.
-err_empty_admin_password=Le mot de passe Admin ne peut pas être vide.
-
-general_title=Paramètres Généraux de Gogs
-app_name=Nom de l'Application
-app_name_helper=Inscrivez fièrement le nom de votre organisation ici !
-repo_path=Emplacement Racine du Dépôt
-repo_path_helper=Tous les Dépôts Git distants seront sauvegardés ici.
-run_user=Entrer un Utilisateur
-run_user_helper=L'utilisateur doit avoir accès à la Racine du Référentiel et éxécuter Gogs.
-domain=Domaine
-domain_helper=Cela affecte les doublons d'URL SSH.
-ssh_port=Port SSH
-ssh_port_helper=C'est le numéro de port qui qui est utilisé par votre serveur SSH, le laisser vide pour désactiver la fonctionnalité.
-http_port=Port HTTP
-http_port_helper=Numéro de port que l'application écoutera.
-app_url=URL de l'Application
-app_url_helper=Cela affecte les doublons d'URL HTTP/HTTPS et le contenu d'e-mail.
-
-optional_title=Paramètres facultatifs
-email_title=Paramètres du Service de Messagerie
-smtp_host=Hôte SMTP
-smtp_from=Provenant de
-smtp_from_helper=Adresse de l'expéditeur, RFC 5322. Soit une adresse courriel simple, soit au format "Nom" <email@example.com>.
-mailer_user=E-mail de l'Expéditeur
-mailer_password=Mot de Passe de l'Expéditeur
-register_confirm=Activer la Confirmation d'Enregistrement
-mail_notify=Activer la Notification des Mails reçus
-server_service_title=Paramètres du serveur et des autres services
-offline_mode=Activer le Mode hors connexion
-offline_mode_popup=Désactiver le CDN, même en production. Toutes les ressources seront distribuées en local.
-disable_gravatar=Désactiver le Service Gravatar
-disable_gravatar_popup=Désactiver Gravatar et les sources personnalisées, tous les avatars sont téléchargés par les utilisateurs ou par défaut.
-disable_registration=Désactiver le formulaire d'inscription
-disable_registration_popup=Désactiver le formulaire d'inscription, seuls les administrateurs peuvent créer des comptes.
-enable_captcha=Activez le Captcha
-enable_captcha_popup=Demande la validation Captcha pour l'auto-enregistrement de l'utilisateur.
-require_sign_in_view=Demander une connexion pour afficher des pages
-require_sign_in_view_popup=Seules les personnes connectées peuvent voir les pages. Les visiteurs anonymes ne pourront voir que les pages de connexion/enregistrement.
-admin_setting_desc=Vous n'avez pas besoin de créer un compte admin. L'utilisateur ayant l'ID = 1 aura l'accès admin automatiquement.
-admin_title=Paramètres du Compte Administrateur
-admin_name=Nom d'Utilisateur
-admin_password=Mot de Passe
-confirm_password=Confirmez le Mot de Passe
-admin_email=E-mail
-install_gogs=Installer Gogs
-test_git_failed=Tentative de commande "git" échouée : %v
-sqlite3_not_available=Votre version publiée ne prend pas en charge SQLite3. Veuillez télécharger la version binaire officielle à cette adresse %s.
-invalid_db_setting=Paramètres de base de données incorrects : %v
-invalid_repo_path=Chemin vers le répertoire racine invalide : %v
-run_user_not_match=L'utilisateur entré n'est pas l'utilisateur actuel : %s -> %s
-save_config_failed=Sauvegarde de la configuration échouée : %v
-invalid_admin_setting=Paramètres du compte administrateur invalides : %v
-install_success=Bienvenue ! Nous sommes heureux que vous ayez choisi Gogs, amusez-vous et prenez soin de vous.
-
-[home]
-uname_holder=Nom d'Utilisateur ou E-mail
-password_holder=Mot de Passe
-switch_dashboard_context=Basculer le Contexte du Tableau de Bord
-my_repos=Mes Référentiels
-collaborative_repos=Référentiels collaboratifs
-my_orgs=Mes Organisations
-my_mirrors=Mes Miroirs
-view_home=Voir %s
-
-issues.in_your_repos=Dans vos dépôts
-
-[explore]
-repos=Référentiels
-
-[auth]
-create_new_account=Créer un Nouveau Compte
-register_hepler_msg=Déjà enregistré ? Connectez-vous !
-social_register_hepler_msg=Possesseur d'un compte ? Associez-le !
-disable_register_prompt=Désolé, les enregistrements ont été désactivés. Veuillez contacter l'administrateur du site.
-disable_register_mail=Désolé, la Confirmation par Mail des Enregistrements a été désactivée.
-remember_me=Se souvenir de Moi
-forgot_password=Mot de Passe oublié
-forget_password=Mot de Passe oublié ?
-sign_up_now=Pas de compte ? Créer maintenant.
-confirmation_mail_sent_prompt=Un nouveau mail de confirmation à été envoyé à <b>%s</b>. Veuillez vérifier votre boîte de réception dans un délai de %d heures pour compléter votre enregistrement.
-sign_in_to_account=Connectez-vous à votre compte
-active_your_account=Activer votre Compte
-resent_limit_prompt=Désolé, vos tentatives d'activation sont trop fréquentes. Veuillez réessayer dans 3 minutes.
-has_unconfirmed_mail=Bonjour %s, votre adresse courriel (<b>%s</b>) n'a pas été confirmée. Si vous n'avez reçu aucun courriel de confirmation ou souhaitez renouveler l'envoi, appuyez sur le bouton ci-dessous.
-resend_mail=Cliquez ici pour renvoyer un mail de confirmation
-email_not_associate=Cette adresse e-mail n'est associée à aucun compte.
-send_reset_mail=Cliquez ici pour (r)envoyer le mail de réinitialisation du mot de passe
-reset_password=Réinitialiser le Mot de Passe
-invalid_code=Désolé, code de confirmation invalide ou expiré.
-reset_password_helper=Cliquez ici pour réinitialiser votre mot de passe
-password_too_short=Le mot de passe doit contenir 6 caractères minimum.
-
-[mail]
-activate_account=Veuillez activer votre compte
-activate_email=Veuillez vérifier votre adresse e-mail
-reset_password=Réinitialiser votre mot de passe
-register_success=Succès de l'enregistrement, Bienvenue
-
-[modal]
-yes=Oui
-no=Non
-modify=Modifier
-
-[form]
-UserName=Nom d'Utilisateur
-RepoName=Nom du dépôt
-Email=Adresse E-mail
-Password=Mot de Passe
-Retype=Confirmez le Mot de Passe
-SSHTitle=Nom de la clé SSH
-HttpsUrl=URL HTTPS
-PayloadUrl=URL des Données Utiles
-TeamName=Nom d'équipe
-AuthName=Nom d'autorisation
-AdminEmail=E-mail de l'administrateur
-
-require_error=` Ne peut être vide `
-alpha_dash_error=` doivent être des caractères alpha, numeriques ou console (-_) valides `
-alpha_dash_dot_error=` doivent être des caractères alpha, numeriques, console (-_) valides ou des points `
-size_error=` doit être à la taille de %s.`
-min_size_error=` %s caractères minimum `
-max_size_error=` %s caractères maximum `
-email_error=` adresse e-mail invalide `
-url_error=` URL invalide `
-unknown_error=Erreur inconnue :
-captcha_incorrect=Le Captcha ne correspond pas.
-password_not_match=Le mot de passe et la confirmation de mot de passe ne correspondent pas.
-
-username_been_taken=Nom d'utilisateur déjà pris.
-repo_name_been_taken=Nom de dépôt déjà utilisé.
-org_name_been_taken=Nom d'organisation déjà pris.
-team_name_been_taken=Nom d'équipe déjà pris.
-email_been_used=Adresse e-mail déjà utilisée.
-illegal_team_name=Le nom de l'équipe contient des caractères interdits.
-username_password_incorrect=Nom d'utilisateur ou mot de passe incorrect.
-enterred_invalid_repo_name=Veuillez vérifier que le nom saisi du dépôt soit correct.
-enterred_invalid_owner_name=Veuillez vérifier que le nom du propriétaire saisi soit correct.
-enterred_invalid_password=Veuillez vérifier que le mot de passe saisi soit correct.
-user_not_exist=Cet utilisateur n'existe pas.
-last_org_owner=L'utilisateur à exclure est le dernier membre de l'équipe propriétaire. Il doit y avoir un autre propriétaire.
-
-invalid_ssh_key=Désolé, impossible de valider votre clé SSH : %s
-unable_verify_ssh_key=Gogs n'a pu vérifier la validité de votre clé SSH, même si nous partons du principe qu'elle le soit. Cela-dit, veuillez vous en assurer.
-auth_failed=Échec d'authentification : %s
-
-still_own_repo=Votre compte comporte toujours des propriétés du dépôt. Vous devez d'abord les supprimer ou les transférer.
-still_has_org=Votre compte contient toujours au moins une adhésion à une organisation, vous devez quitter ou supprimer votre adhésion.
-org_still_own_repo=Cette organisation comporte toujours des propriétés du dépôt. Vous devez d'abord les supprimer ou les transférer.
-
-still_own_user=Cette authentification a déjà servi à d'autres utilisateurs. Veuillez les déplacer puis supprimez à nouveau.
-
-target_branch_not_exist=La branche cible n'existe pas.
-
-[user]
-change_avatar=Changez d'avatar via gravatar.com
-change_custom_avatar=Changer votre avatar dans les paramètres
-join_on=Adhéré le
-repositories=Référentiels
-activity=Activités publiques
-followers=Abonnés
-starred=Votés
-following=Abonnements
-
-form.name_reserved=Le nom '%s' est réservé.
-form.name_pattern_not_allowed=Motif '%s' interdit pour les noms d'utilisateur.
-
-[settings]
-profile=Profil
-password=Mot de Passe
-ssh_keys=Clés SSH
-social=Réseaux Sociaux
-applications=Applications
-orgs=Organisations
-delete=Supprimer le Compte
-uid=ID d'Utilisateur
-
-public_profile=Profil Public
-profile_desc=Votre adresse e-mail est publique et sera utilisée pour les notifications relatives au compte, ainsi que pour toute opération Web effectuée via le site.
-full_name=Non Complet
-website=Site Web
-location=Localisation
-update_profile=Valider les modifications
-update_profile_success=Profil mis à jour avec succès.
-change_username=Non d'utilisateur modifié
-change_username_prompt=Cette modification affectera la manière dont les liens se rapportent à votre compte.
-continue=Continuer
-cancel=Annuler
-
-enable_custom_avatar=Activer l'Avatar personnalisé
-enable_custom_avatar_helper=Cette option désactive l'affichage via Gravatar
-choose_new_avatar=Sélectionner un nouvel avatar
-update_avatar=Mettre l'Avatar à Jour
-uploaded_avatar_not_a_image=Le fichier téléchargé n'est pas une image.
-no_custom_avatar_available=Aucun avatar personnalisé disponible, activation impossible.
-update_avatar_success=Votre avatar a été mis à jour avec succès.
-
-change_password=Modifier le Mot de Passe
-old_password=Mot de Passe actuel
-new_password=Nouveau Mot de Passe
-retype_new_password=Retapez le nouveau mot de passe
-password_incorrect=Mot de passe actuel incorrect.
-change_password_success=Mot de passe modifié avec succès. Vous pouvez à présent vous connecter avec le nouveau mot de passe.
-
-emails=Adresses E-mail
-manage_emails=Gérer les adresses e-mail
-email_desc=Votre adresse e-mail principale sera utilisée pour les notifications et d'autres opérations.
-primary=Principale
-primary_email=Définir comme principale
-delete_email=Supprimer
-email_deletion=Suppression de l'adresse mél
-email_deletion_desc=Supprimer cette adresse mél supprimera les informations associées à votre compte. Voulez-vous continuer ?
-email_deletion_success=L'adresse mél a été supprimée avec succès !
-add_new_email=Ajouter une nouvelle adresse courriel
-add_email=Ajouter un courriel
-add_email_confirmation_sent=Une nouvelle confirmation d'adresse e-mail a été envoyé à '%s', veuillez vérifier votre boîte de réception dans un délai de %d heures pour terminer le processus de confirmation.
-add_email_success=Votre courriel a été ajouté avec succès.
-
-manage_ssh_keys=Gérer les clés SSH
-add_key=Ajouter une Clé
-ssh_desc=Ceci est une liste des clés SSH associées à votre compte. Supprimez celles que vous ne reconnaissez pas.
-ssh_helper=<strong>Besoin d'aide?</strong> Consultez notre guide pour <a href="%s"> générer des clés SSH</a> ou résoudre les <a href="%s"> problèmes courants de SSH</a>.
-add_new_key=Ajouter une Clé SSH
-ssh_key_been_used=Le contenu de la clé publique a été utilisée.
-ssh_key_name_used=Un clé publique avec le même nom existe déjà.
-key_name=Nom de la Clé
-key_content=Contenu
-add_key_success=La nouvelle clé SSH '%s' a été ajoutée avec succès !
-delete_key=Supprimer
-ssh_key_deletion=Suppression de la clé SSH
-ssh_key_deletion_desc=Supprimer cette clé SSH supprimera tous les accès à votre compte. Voulez-vous continuer ?
-ssh_key_deletion_success=Clé SSH supprimée avec succès !
-add_on=Ajouté le
-last_used=Dernière utilisation le
-no_activity=Aucune activité récente
-key_state_desc=Cette clé a été utilisée durant les 7 derniers jours
-token_state_desc=Cette clé a été utilisée durant les 7 derniers jours
-
-manage_social=Gérer les réseaux sociaux associés
-social_desc=Ceci est la liste des comptes de réseaux sociaux associés. Supprimez ceux que vous ne reconnaissez pas.
-unbind=Dissocier
-unbind_success=Compte de réseau social dissocié.
-
-manage_access_token=Gérer les jetons d'accès personnels
-generate_new_token=Générer le nouveau jeton
-tokens_desc=Jetons, que vous avez généré, qui peuvent être utilisés pour accéder à l'API Gogs.
-new_token_desc=Comme pour l'instant, chaque jeton aura un accès complet à votre compte.
-token_name=Nom du jeton
-generate_token=Générer le jeton
-generate_token_succees=Nouveau jeton d'accès a été généré avec succès ! Assurez-vous de copier votre nouveau jeton d'accès personnel maintenant. Vous ne serez pas en mesure de le revoir !
-delete_token=Supprimer
-access_token_deletion=Suppression du jeton d'accès
-access_token_deletion_desc=Supprimer ce jeton d'accès supprimera tous les accès de l'application. Voulez-vous continuer ?
-delete_token_success=Le jeton d'accèsa été supprimée avec succès ! N'oubliez pas de mettre aussi à jour vos applications.
-
-delete_account=Supprimer le Compte
-delete_prompt=Votre compte sera supprimé définitivement et cette opération est <strong>IRRÉVERSIBLE</strong> !
-confirm_delete_account=Confirmer la suppression
-delete_account_title=Suppression de compte
-delete_account_desc=Ce compte sera supprimé définitivement. Voulez-vous continuer ?
-
-[repo]
-owner=Propriétaire
-repo_name=Nom du Référentiel
-repo_name_helper=Idéalement, le nom d'un dépot devrait être court, mémorable et <strong>unique</strong>.
-visibility=Visibilité
-visiblity_helper=Ce dépôt est <span class="ui red text"> privé</span>
-visiblity_helper_forced=Site admin has forced all new repositories to be <span class="ui red text">Private</span>
-visiblity_fork_helper=(Les changement de cette valeur affectera tous les forks)
-fork_repo=Scinder le dépôt
-fork_from=Embranchement de
-fork_visiblity_helper=Un dépôt scindé ne peut pas changer sa visiblité
-repo_desc=Description
-repo_lang=Langue
-repo_lang_helper=Sélectionnez les fichiers .gitignore
-license=Licence
-license_helper=Sélectionner un fichier de licence
-readme=Fichier Readme
-readme_helper=Sélectionnez un modèle de readme
-auto_init=Initialiser ce dépôt avec le modèle et les fichiers sélectionnés
-create_repo=Créer un dépôt
-default_branch=Branche par défaut
-mirror_interval=Intervalle du miroir (heure)
-
-form.name_reserved=Le nom de dépôt '%s' est réservé.
-form.name_pattern_not_allowed=Motif '%s' interdit pour les noms de dépôt.
-
-need_auth=Nécessite une Autorisation
-migrate_type=Type de Migration
-migrate_type_helper=Ce dépôt sera un <span class="text blue"> miroir</span>
-migrate_repo=Migrer le dépôt
-migrate.clone_address=Adresse du clone
-migrate.clone_address_desc=Cela peut être une URL HTTP/HTTPS/GIT ou un chemin d'accès local.
-migrate.invalid_local_path=Chemin local non valide, non existant ou n'étant pas un dossier.
-
-forked_from=dérivé depuis
-fork_from_self=Vous nous ne pouvez pas scinder un dépôt que vous possédez déja !
-copy_link=Copier
-copy_link_success=Copié!
-copy_link_error=Appuyez sur ⌘-C ou Ctrl-C pour copier
-click_to_copy=Copier dans le presse-papiers
-copied=Copié
-clone_helper=Besoin d'aide pour le clonage ? Visitez <a target="_blank" href="%s"> l'aider</a> !
-unwatch=Ne plus suivre
-watch=Suivre
-unstar=Retirer le vote
-star=Voter
-fork=Embranchement
-
-no_desc=Aucune description
-quick_guide=Introduction rapide
-clone_this_repo=Cloner ce dépôt
-create_new_repo_command=Créer un nouveau dépôt en ligne de commande
-push_exist_repo=Soumettre un dépôt existant par ligne de commande
-repo_is_empty=Ce référentiel est vide, veuillez revenir plus tard !
-
-
-branch=Branche
-tree=Aborescence
-branch_and_tags=Branches & Tags
-branches=Branches
-tags=Tags
-issues=Problèmes
-pulls=Pull Requests
-labels=Etiquettes
-milestones=Étapes
-commits=Commissions
-releases=Publications
-file_raw=Raw
-file_history=Historique
-file_view_raw=Voir le Raw
-file_permalink=Lien permanent
-
-commits.commits=Commissions
-commits.search=Rechercher des commissions
-commits.find=Trouver
-commits.author=Auteur
-commits.message=Message
-commits.date=Date
-commits.older=Précédemment
-commits.newer=Récemment
-
-issues.new=Nouveau Problème
-issues.new.labels=Etiquettes
-issues.new.no_label=Pas d'étiquette
-issues.new.clear_labels=Effacer les étiquettes
-issues.new.milestone=Étape
-issues.new.no_milestone=Pas d'étape
-issues.new.clear_milestone=Effacer l'étape
-issues.new.open_milestone=Ouvrir l'étape
-issues.new.closed_milestone=Étapes fermées
-issues.new.assignee=Affecté à
-issues.new.clear_assignee=Supprimer les assignataires
-issues.new.no_assignee=Pas d'assignataire
-issues.create=Créer un rapport de problème
-issues.new_label=Nouvelle étiquette
-issues.new_label_placeholder=Nom de l'étiquette...
-issues.create_label=Créer une étiquette
-issues.open_tab=%d Ouvert
-issues.close_tab=%d Fermé
-issues.filter_label=Étiquette
-issues.filter_label_no_select=Aucun étiquette sélectionnée
-issues.filter_milestone=Étape
-issues.filter_milestone_no_select=Aucun jalon sélectionné
-issues.filter_assignee=Assigné
-issues.filter_assginee_no_select=Pas d'assignataire selectionné
-issues.filter_type=Type
-issues.filter_type.all_issues=Tous les problèmes
-issues.filter_type.assigned_to_you=Qui vous sont assignés
-issues.filter_type.created_by_you=Créé(es) par vous
-issues.filter_type.mentioning_you=Vous mentionnant
-issues.filter_sort=Trier
-issues.filter_sort.latest=Plus récent
-issues.filter_sort.oldest=Plus ancien/ne
-issues.filter_sort.recentupdate=Mis à jour récemment
-issues.filter_sort.leastupdate=Moins récemment mis à jour
-issues.filter_sort.mostcomment=Plus commentés
-issues.filter_sort.leastcomment=Moins commenté
-issues.opened_by=Ouvrir %[1]s by <a href="%[2]s">%[3]s</a>
-issues.opened_by_fake=ouvert %[1]s par %[2]s
-issues.previous=Page Précédente
-issues.next=Page Suivante
-issues.open_title=Ouvert
-issues.closed_title=Fermé
-issues.num_comments=%d commentaires
-issues.commented_at='commenté à <a id="%[1]s" href="#%[1]s"> %[2]s'</a>
-issues.no_content=Il n'existe pas encore de contenu.
-issues.close_issue=Fermer
-issues.close_comment_issue=Fermer et commenter
-issues.reopen_issue=Réouvrir
-issues.reopen_comment_issue=Réouvrir et commenter
-issues.create_comment=Créer un commentaire
-issues.closed_at="fermé à <a id="%[1]s"href="#%[1]s"> %[2]s"</a>
-issues.reopened_at='réouvert à <a id="%[1]s" href="#%[1]s"> %[2]s'</a>
-issues.commit_ref_at=`cette question référencé à partir d'un commit <a id="%[1]s" href="#%[1]s"> %[2]s</a>`
-issues.poster=Publier
-issues.admin=Admin
-issues.owner=Propriétaire
-issues.sign_up_for_free=Inscrivez-vous gratuitement
-issues.sign_in_require_desc=pour rejoindre cette conversation. Vous avez déjà un compte ? <a href="%s">Connectez-vous commenter</a>
-issues.edit=Modifier
-issues.cancel=Annuler
-issues.save=Enregistrer
-issues.label_title=Nom du Label
-issues.label_color=Couleur du Label
-issues.label_count=%d labels
-issues.label_open_issues=%d problèmes ouverts
-issues.label_edit=Éditer
-issues.label_delete=Supprimer
-issues.label_modify=Modification du Label
-issues.label_deletion=Suppression du Label
-issues.label_deletion_desc=Cette opération supprimera également toutes les informations relatives aux problèmes. Voulez-vous continuer ?
-issues.label_deletion_success=Label supprimé avec succès !
-
-pulls.compare_changes=Comparer les changements
-pulls.compare_changes_desc=Comparer deux branches et faire une demande de récupération Pull pour les changements.
-pulls.compare_base=Base
-pulls.compare_compare=Comparer
-pulls.filter_branch=Filtre de branche
-pulls.no_results=Aucun résultat trouvé.
-pulls.nothing_to_compare=Il n'y a rien de comparable parce que les deux branches sont égales.
-pulls.has_pull_request=`Il y a déjà une demande de tirer entre ces deux cibles : <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>`
-pulls.create=Creer une Pull Request
-pulls.title_desc=veut fusionner %[1]d commits à partir de <code>%[2]s</code> vers <code>%[3]s</code>
-pulls.merged_title_desc=à fusionné %[1]d commits à partir de <code>%[2]s</code> vers <code>%[3]s</code> %[4]s
-pulls.tab_conversation=Conversation
-pulls.tab_commits=Commits
-pulls.tab_files=Fichiers modifiés
-pulls.reopen_to_merge=Veuillez rouvrir cette demande de Pull Request pour effectuer l'opération de fusion.
-pulls.merged=Fusionné
-pulls.has_merged=Cette Pull Request a été fusionnée avec succès !
-pulls.data_broken=Les données de cette Pull Request a été rompues en raison de la suppression d'informations du Fork.
-pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments.
-pulls.can_auto_merge_desc=Vous pouvez effectuer d'opération de fusion automatique sur cette demande de Pull Request.
-pulls.cannot_auto_merge_desc=Vous ne pouvez effectuer des opération de fusion automatique car il y a des conflits entre les Commits.
-pulls.cannot_auto_merge_helper=Veuillez utiliser l'outil en ligne de commande pour le résoudre.
-pulls.merge_pull_request=Fusionner la Pull Request
-pulls.open_unmerged_pull_exists=`You can't perform reopen operation because there is already an open pull request (#%d) from same repository with same merge information and is waiting for merging.`
-
-milestones.new=Nouveau Jalon
-milestones.open_tab=%d Ouvert
-milestones.close_tab=%d Fermé
-milestones.closed=%s fermé
-milestones.no_due_date=Aucune date d'échéance
-milestones.open=Ouvrir
-milestones.close=Fermer
-milestones.new_subheader=Créez des jalons pour organiser vos problèmes.
-milestones.create=Créer un Jalon
-milestones.title=Titre
-milestones.desc=Description
-milestones.due_date=Date d'échéance (facultatif)
-milestones.clear=Effacer
-milestones.invalid_due_date_format=Le format de la date d'échéance est invalide, il doit être comme suit 'année-mm-jj'.
-milestones.create_success=Le Jalon '%s' a été crée avec succès !
-milestones.edit=Éditer le Jalon
-milestones.edit_subheader=Utilisez une description claire pour les jalons pour ne pas induire les gens en erreur.
-milestones.cancel=Annuler
-milestones.modify=Modifier le Jalon
-milestones.edit_success=Le Jalon '%s' a été modifié avec succès !
-milestones.deletion=Supprimer le Jalon
-milestones.deletion_desc=Supprimer ce Jalon effacera ses informations dans tous les problèmes relatifs. Voulez-vous continuer ?
-milestones.deletion_success=Le Jalon a été supprimé avec succès !
-
-settings=Paramètres
-settings.options=Options
-settings.collaboration=Collaboration
-settings.hooks=Webhooks
-settings.githooks=Git Hooks
-settings.basic_settings=Paramètres de base
-settings.danger_zone=Zone de danger
-settings.site=Site officiel
-settings.update_settings=Valider
-settings.change_reponame_prompt=Ce changement affectera comment les liens sont reliés avec le dépôt.
-settings.transfer=Transférer les propriétés
-settings.transfer_desc=Transfèrer ce dépôt à un autre utilisateur ou une organisation dont vous possédez des droits d'administrateur.
-settings.new_owner_has_same_repo=Le nouveau propriétaire a déjà un dépôt nommé ainsi.
-settings.delete=Supprimer ce Référentiel
-settings.delete_desc=Attention, action irréversible. Soyez sûre de vous.
-settings.transfer_notices_1=-Vous perdrez l'accès si le nouveau propriétaire est un utilisateur individuel.
-settings.transfer_notices_2=-Vous préserverez l'accès si le nouveau propriétaire est une organisation et si vous y appartenez.
-settings.transfer_form_title=Veuillez recopier le texte suivant afin de confirmer votre opération :
-settings.delete_notices_1=- Cette opération <strong>ne peut pas </strong> être annulée.
-settings.delete_notices_2=-Cette opération supprimera définitivement le dépôt, y compris les données Git, problèmes, commentaires et accès des collaborateurs.
-settings.delete_notices_fork_1=-Si ce dépôt est public, tous les Forks vont devenir indépendant après la suppression.
-settings.delete_notices_fork_2=-Si ce dépôt est privé, tous les Forks seront supprimés en même temps.
-settings.delete_notices_fork_3=-Si vous souhaitez conserver tous les forks après suppression, veuillez tout d'abord modifier la visibilité de ce dépôt en public.
-settings.update_settings_success=Options mises à jour avec succès.
-settings.transfer_owner=Nouveau propriétaire
-settings.make_transfer=Transférer
-settings.transfer_succeed=Le contrôle du dépôt a été transféré avec succès.
-settings.confirm_delete=Confirmer la suppression
-settings.add_collaborator=Ajouter un collaborateur
-settings.add_collaborator_success=Nouveau collaborateur ajouté.
-settings.remove_collaborator_success=Collaborateur supprimé.
-settings.user_is_org_member=Cet utilisateur ne peut pas être ajouté en tant que collaborateur car il fait partie d'une organisation.
-settings.add_webhook=Ajouter un Webhook
-settings.hooks_desc=Webhooks aux services externes être notifié lorsque certains événements se produisent sur Gogs. Lorsque les événements spécifiés se produisent, nous vous enverrons une demande POST à chacun des URL que vous fournissez. Apprenez-en davantage dans notre <a target="_blank" href="%s"> Webhooks Guide</a>.
-settings.webhook_deletion=Supprimer le Webhook
-settings.webhook_deletion_desc=Supprimer ce webhook va supprimer ses informations et l'historique de livraison. Voulez-vous continuer ?
-settings.webhook_deletion_success=Le webhook a été supprimée avec succès !
-settings.webhook.request=Requête
-settings.webhook.response=Réponse
-settings.webhook.headers=Entêtes
-settings.webhook.payload=Payload
-settings.webhook.body=Corps
-settings.githooks_desc=Les Hooks Git sont alimentés par Git lui même. Les Hooks compatibles sont modifiables dans la liste ci-dessous pour effectuer des opérations personnalisées.
-settings.githook_edit_desc=Si un Hook est inactif, un exemple de contenu vous sera proposé. Un contenu laissé vide signifie un Hook inactif.
-settings.githook_name=Nom du Hook
-settings.githook_content=Contenu du Hook
-settings.update_githook=Mettre le Hook à jour
-settings.add_webhook_desc=Nous vous enverrons une demande <code>POST</code> à l'URL ci-dessous avec les détails de tous les événements souscrites. Vous pouvez également spécifier quel format de données vous souhaitez recevoir (JSON, <code>x-www-formulaires-urlencoded</code>, <em>etc.</em>). Plus d'informations se trouvent dans le <a target="_blank" href="%s"> Guide de le Webhooks</a>.
-settings.payload_url=URL des Données Utiles
-settings.content_type=Type de contenu
-settings.secret=Confidentiel
-settings.slack_username=Nom d'utilisateur
-settings.slack_icon_url=URL de l'icône
-settings.slack_color=Couleur
-settings.event_desc=Quel évènement ce Webhook doit-il déclencher ?
-settings.event_push_only=Uniquement les <code>push</code> (soumissions).
-settings.event_send_everything=J'ai besoin de <strong>tout</strong>.
-settings.event_choose=Permettez-moi de choisir ce dont j'ai besoin.
-settings.event_create=Créer
-settings.event_create_desc=Branch, ou Tag créé
-settings.event_push=Push
-settings.event_push_desc=Git push vers un dépôt
-settings.active=Actif
-settings.active_helper=Les détails seront délivrés lorsque ce Hook sera déclenché.
-settings.add_hook_success=Nouveau Webhook ajouté.
-settings.update_webhook=Mettre le Webhook à jour
-settings.update_hook_success=Webhook mis à jour.
-settings.delete_webhook=Supprimer le Webhook
-settings.recent_deliveries=Livraisons récentes
-settings.hook_type=Type de Hook
-settings.add_slack_hook_desc=Intégrer <a href="%s"> Slack</a> à votre dépôt.
-settings.slack_token=Jeton
-settings.slack_domain=Domaine
-settings.slack_channel=Canal
-settings.deploy_keys=Clés de déploiement
-settings.add_deploy_key=Ajouter une Clé de Déploiement
-settings.no_deploy_keys=Vous n'avez ajouté aucune clé de déploiement.
-settings.title=Titre
-settings.deploy_key_content=Contenu
-settings.key_been_used=Le contenu de la clé de déploiement a été utilisé.
-settings.key_name_used=Une clé de déploiement avec le même nom existe déjà.
-settings.add_key_success=La nouvelle clé de déploiement '%s' a été ajoutée avec succès !
-settings.deploy_key_deletion=Supprimer la Clé de Déploiement
-settings.deploy_key_deletion_desc=Supprimer cette clé de déploiement effacera tous les accès relatifs pour ce référentiel. Voulez-vous continuer ?
-settings.deploy_key_deletion_success=La clé de déploiement a été supprimée avec succès !
-
-diff.browse_source=Parcourir la Source
-diff.parent=Parent
-diff.commit=Commettre
-diff.data_not_available=Données Diff indisponibles.
-diff.show_diff_stats=Afficher les stats Diff
-diff.stats_desc=<strong> %d fichiers modifiés</strong> avec <strong>%d ajouts</strong> et <strong>%d suppressions</strong>
-diff.bin=BIN
-diff.view_file=Voir le fichier
-
-release.releases=Versions
-release.new_release=Nouvelle version
-release.draft=Brouillon
-release.prerelease=Pré-publication
-release.stable=Stable
-release.edit=Éditer
-release.ahead=<strong>%d</strong> commissions à %s depuis cette publication
-release.source_code=Code Source
-release.tag_name=Nom du tag
-release.target=Cible
-release.tag_helper=Choisissez un tag existant ou créez-en un nouveau à publier.
-release.release_title=Titre de la publication
-release.content_with_md=Contenu avec <a href="%s">Démarque(s)</a>
-release.write=Écrire
-release.preview=Prévisualiser
-release.content_placeholder=Rédiger du contenu
-release.loading=Chargement…
-release.prerelease_desc=Il s'agit d'une version préliminaire
-release.prerelease_helper=Nous soulignerons que cette version est considérée comme non prête pour la production.
-release.publish=Publier
-release.save_draft=Sauvegarder le Brouillon
-release.edit_release=Éditer la publication
-release.tag_name_already_exist=Une publication avec ce nom de tag a déjà existée.
-
-[org]
-org_name_holder=Nom d'organisation
-org_name_helper=Idéalement, un nom d'organisation devrait être court et mémorable.
-create_org=Créer une organisation
-repo_updated=Mis à jour
-people=Contacts
-invite_someone=Inviter quelqu'un
-teams=Équipes
-lower_members=Membres
-lower_repositories=Référentiels
-create_new_team=Créer une Nouvelle Équipe
-org_desc=Description
-team_name=Nom d'Équipe
-team_desc=Description
-team_name_helper=Ce nom sera utilisé pour mentionner l'équipe dans les conversations.
-team_desc_helper=Présentation de l'équipe
-team_permission_desc=Quel niveau d'accès cette équipe devrait-elle posséder ?
-
-form.name_reserved=Le nom d'organisation '%s' est réservé.
-form.name_pattern_not_allowed=Motif '%s' interdit pour les noms d'organisation.
-
-settings=Paramètres
-settings.options=Options
-settings.full_name=Non Complet
-settings.website=Site Web
-settings.location=Localisation
-settings.update_settings=Valider
-settings.update_setting_success=Paramètres d'organisation modifiés avec succès.
-settings.change_orgname_prompt=Cette modification affectera comment des liens se rapportent à l'organisation.
-settings.update_avatar_success=Les paramètres de l'avatar de l'organisation a été mis à jour avec succès.
-settings.delete=Supprimer l'organisation
-settings.delete_account=Supprimer cette organisation
-settings.delete_prompt=Cela supprimera cette organisation définitivement. Cette opération est <strong>IRRÉVERSIBLE</strong> !
-settings.confirm_delete_account=Confirmez la suppression
-settings.delete_org_title=Suppression d'organisation
-settings.delete_org_desc=Cette organisation sera définitivement supprimée. Continuer ?
-settings.hooks_desc=Ajoute des Webhooks qui seront activés pour <strong>tous les Référentiels</strong> de cette organisation.
-
-members.public=Public
-members.public_helper=Rendre privé
-members.private=Privé
-members.private_helper=Rendre public
-members.owner=Propriétaire
-members.member=Membre
-members.conceal=Masquer
-members.remove=Exclure
-members.leave=Quitter
-members.invite_desc=Tapez un nom d'utilisateur pour inviter un nouveau membre chez %s :
-members.invite_now=Lancer l'invitation
-
-teams.join=Rejoindre
-teams.leave=Quitter
-teams.read_access=Accès en Lecture
-teams.read_access_helper=Cette équipe aura la possibilité de voir et dupliquer ses Référentiels.
-teams.write_access=Accès en Écriture
-teams.write_access_helper=Cette équipe possèdera aussi bien des droits de lecture que d'écriture sur ses Référentiels.
-teams.admin_access=Accès Administrateur
-teams.admin_access_helper=Cette équipe possèdera des droits de lecture, d'écriture, ainsi que le pouvoir d'ajouter des collaborateurs.
-teams.no_desc=Aucune description
-teams.settings=Paramètres
-teams.owners_permission_desc=Les propriétaires possèdent <strong>les droits d'administrateur</strong> et disposent d'un accès complet à <strong>tous les Référentiels</strong> de l'organisation.
-teams.members=Membres de L'Équipe
-teams.update_settings=Valider
-teams.delete_team=Supprimer cette Équipe
-teams.add_team_member=Ajouter un Membre
-teams.delete_team_title=Suppression de l'équipe
-teams.delete_team_desc=Cette équipe sera supprimée. Les membres pourraient perdre leurs accès à certains dépôts.
-teams.delete_team_success=Équipe supprimée avec succès.
-teams.read_permission_desc=Cette équipe permet l'accès en <strong>lecture</strong> : les membres peuvent voir et dupliquer ses Référentiels.
-teams.write_permission_desc=Cette équipe permet l'accès en <strong>écriture</strong> : les membres peuvent participer à ses Référentiels.
-teams.admin_permission_desc=Cette équipe permet l'accès en <strong>administrateur</strong> : les membres peuvent voir, participer et ajouter des collaborateurs à ses Référentiels.
-teams.repositories=Référentiels de l'Équipe
-teams.add_team_repository=Ajouter un Dépôt à l'Équipe
-teams.remove_repo=Supprimer
-teams.add_nonexistent_repo=Dépôt inexistant, veuillez d'abord le créer.
-
-[admin]
-dashboard=Tableau de bord
-users=Utilisateurs
-organizations=Organisations
-repositories=Référentiels
-authentication=Authentifications
-config=Configuration
-notices=Notes Systèmes
-monitor=Supervision
-first_page=Première
-last_page=Dernière
-total=Total : %d
-
-dashboard.statistic=Statistiques
-dashboard.operations=Opérations
-dashboard.system_status=État du Moniteur Système
-dashboard.statistic_info=La base de données Gogs contient <b>%d</b> utilisateurs, <b>%d</b> organisations, <b>%d</b> clés publiques, <b>%d</b> Référentiels, <b>%d</b> suivis, <b>%d</b> votes, <b>%d</b> actions, <b>%d</b> accès, <b>%d</b> problèmes, <b>%d</b> commentaires, <b>%d</b> comptes de réseaux sociaux, <b>%d</b> abonnements, <b>%d</b> miroirs, <b>%d</b> publications, <b>%d</b> connexions d'origine, <b>%d</b> webhooks, <b>%d</b> milestones, <b>%d</b> labels, <b>%d</b> tâches hook, <b>%d</b> équipes, <b>%d</b> tâches de mise à jour, <b>%d</b> fichiers.
-dashboard.operation_name=Nom de l'Opération
-dashboard.operation_switch=Basculer
-dashboard.operation_run=Exécuter
-dashboard.clean_unbind_oauth=Nettoyer les associations OAuthes
-dashboard.clean_unbind_oauth_success=Tous unbind OAuthes ont été supprimés avec succès.
-dashboard.delete_inactivate_accounts=Supprimer tous les comptes inactifs
-dashboard.delete_inactivate_accounts_success=Inactivent tous les comptes ont été supprimés avec succès.
-dashboard.delete_repo_archives=Supprimer toutes les archives de référentiels
-dashboard.delete_repo_archives_success=Toutes les archives de référentiels ont été supprimés avec succès.
-dashboard.git_gc_repos=Collecter les déchets des référentiels
-dashboard.git_gc_repos_success=Tous les dépôts ont effectué la collecte avec succès.
-dashboard.resync_all_sshkeys=Ré-écrire le fichier '.ssh/authorized_keys' (attention : les clés hors-Gogs vont être perdues)
-dashboard.resync_all_sshkeys_success=Toutes les clés publiques ont été ré-écrites avec succès.
-dashboard.resync_all_update_hooks=Ré-écrire tous les hooks de mises à jour des dépôts (requis quand le chemin de la configuration personnalisé est modifié)
-dashboard.resync_all_update_hooks_success=Les mises à jour de hook des référentiels ont toutes été réécrites avec succès.
-
-dashboard.server_uptime=Durée de Marche Serveur
-dashboard.current_goroutine=Goroutines actuelles
-dashboard.current_memory_usage=Utilisation Mémoire actuelle
-dashboard.total_memory_allocated=Mémoire totale allouée
-dashboard.memory_obtained=Mémoire obtenue
-dashboard.pointer_lookup_times=Nombre de Consultations Pointeur
-dashboard.memory_allocate_times=Nombre d'Allocation Mémoire
-dashboard.memory_free_times=Nombre de Libération Mémoire
-dashboard.current_heap_usage=Utilisation Tas (Heap)
-dashboard.heap_memory_obtained=Mémoire Tas (Heap) obtenue
-dashboard.heap_memory_idle=Mémoire Tas (Heap) au Repos
-dashboard.heap_memory_in_use=Utilisation Mémoire Tas (Heap)
-dashboard.heap_memory_released=Mémoire Tas (Heap) libérée
-dashboard.heap_objects=Objets Tas (Heap)
-dashboard.bootstrap_stack_usage=Utilisation Pile Bootstrap
-dashboard.stack_memory_obtained=Mémoire Pile obtenue
-dashboard.mspan_structures_usage=Utilisation des Structures MSpan
-dashboard.mspan_structures_obtained=Structures MSpan obtenues
-dashboard.mcache_structures_usage=Utilisation des Structures MCache
-dashboard.mcache_structures_obtained=Structures MCache obtenues
-dashboard.profiling_bucket_hash_table_obtained=Profilage de Seau de Table de Hashage obtenu
-dashboard.gc_metadata_obtained=Métadonnées GC obtenues
-dashboard.other_system_allocation_obtained=Allocation de l'autre Système obtenue
-dashboard.next_gc_recycle=Traitement GC suivant
-dashboard.last_gc_time=Depuis le dernier GC
-dashboard.total_gc_time=Pause GC totale
-dashboard.total_gc_pause=Pause GC
-dashboard.last_gc_pause=Dernière Pause GC
-dashboard.gc_times=Nombres de GC
-
-users.user_manage_panel=Gestion des Utilisateurs
-users.new_account=Créer un nouveau compte
-users.name=Nom
-users.activated=Activés
-users.admin=Administrateur
-users.repos=Dépôts
-users.created=Créés
-users.send_register_notify=Envoyer une Notification d'enregistrement à l'utilisateur
-users.new_success=Nouveau compte '%s' a été créé avec succès.
-users.edit=Éditer
-users.auth_source=Sources d'authentification
-users.local=Locales
-users.auth_login_name=Nom d'utilisateur d'authentification
-users.password_helper=Laissez-le vide pour ne pas changer.
-users.update_profile_success=Profil mis à jour avec succès.
-users.edit_account=Modifier le Compte
-users.is_activated=Ce compte est activé
-users.is_admin=Ce compte possède un niveau d'accès administrateur
-users.allow_git_hook=Ce compte dispose des autorisations pour créer des crochets de Git
-users.update_profile=Mettre le profil à jour
-users.delete_account=Supprimer ce Compte
-users.still_own_repo=Ce compte possède toujours des dépôts. Vous devez d'abord les supprimer ou les transférer.
-users.still_has_org=Ce compte a toujours membres de l'organisation, vous avez à gauche ou supprimez tout d'abord.
-users.deletion_success=Le compte a été supprimé avec succès !
-
-orgs.org_manage_panel=Gestion des Organisations
-orgs.name=Nom
-orgs.teams=Équipes
-orgs.members=Membres
-
-repos.repo_manage_panel=Gestion des Dépôts
-repos.owner=Propriétaire
-repos.name=Nom
-repos.private=Privé
-repos.watches=Suivi par
-repos.stars=Votes
-repos.issues=Problèmes
-
-auths.auth_manage_panel=Panel d'administration des authentifications
-auths.new=Ajouter une nouvelle source d'authentification
-auths.name=Nom
-auths.type=Type
-auths.enabled=Activé
-auths.updated=Mis à jour
-auths.auth_type=Type d'authentification
-auths.auth_name=Nom de l'authentification
-auths.domain=Domaine
-auths.host=Hôte
-auths.port=Port
-auths.bind_dn=Bind DN
-auths.bind_password=Bind mot de passe
-auths.bind_password_helper=AVERTISSEMENT : Ce mot de passe est stocké en texte clair. N'utilisez pas le mot de passe d'un compte doté de privilèges élevé.
-auths.user_base=Utilisateur Search Base
-auths.user_dn=Utilisateur DN
-auths.attribute_name=Attribut du prénom
-auths.attribute_surname=Attribut du nom de famille
-auths.attribute_mail=Attribut de l'e-mail
-auths.filter=Utilisateur Filter
-auths.admin_filter=Administrateur Filter
-auths.ms_ad_sa=Ms Ad SA
-auths.smtp_auth=Type d'authentification SMTP
-auths.smtphost=Hôte SMTP
-auths.smtpport=Port SMTP
-auths.allowed_domains=Domaines autorisés
-auths.allowed_domains_helper=Laissez-le vide pour ne pas restreindre de domaines. Plusieurs domaines doivent être séparés par une virgule «, ».
-auths.enable_tls=Activer le Chiffrement TLS
-auths.skip_tls_verify=Ne pas vérifier TLS
-auths.pam_service_name=Nom du Service PAM
-auths.enable_auto_register=Connexion Automatique
-auths.tips=Conseils
-auths.edit=Modifier les paramètres d'authentification
-auths.activated=Authentification activée
-auths.new_success=Nouvelle authentification «%s » a été ajoutée avec succès.
-auths.update_success=Les paramètre d'authentification a été mis à jour avec succès.
-auths.update=Mettre à jour les paramètres d'authentifications
-auths.delete=Supprimer cette authentification
-auths.delete_auth_title=Suppression de l'authentification
-auths.delete_auth_desc=Cette autorisation sera supprimée. Continuer?
-auths.deletion_success=L'authentification a été supprimée avec succès !
-
-config.server_config=Configuration du Serveur
-config.app_name=Nom de l'Application
-config.app_ver=Version de l'Application
-config.app_url=URL de l'Application
-config.domain=Domaine
-config.offline_mode=Mode hors-ligne
-config.disable_router_log=Désactiver la Journalisation du Routeur
-config.run_user=Entrer un Utilisateur
-config.run_mode=Mode d'Éxécution
-config.repo_root_path=Emplacement des Dépôts
-config.static_file_root_path=Emplacement Racine du Fichier Statique
-config.log_file_root_path=Emplacement Racine du Fichier Journal
-config.script_type=Type de Script
-config.reverse_auth_user=Annuler l'Authentification de l'Utilisateur
-config.db_config=Configuration de la Base de Données
-config.db_type=Type
-config.db_host=Hôte
-config.db_name=Nom
-config.db_user=Utilisateur
-config.db_ssl_mode=Mode SSL
-config.db_ssl_mode_helper=("postgres" uniquement)
-config.db_path=Emplacement
-config.db_path_helper=(pour « sqlite3 » et « TIDB »)
-config.service_config=Configuration du Service
-config.register_email_confirm=Nécessite une confirmation par courriel
-config.disable_register=Désactiver l'Enregistrement
-config.show_registration_button=Afficher le bouton d'enregistrement
-config.require_sign_in_view=Connexion Obligatoire pour Visualiser
-config.enable_cache_avatar=Activer le Cache d'Avatar
-config.mail_notify=Mailer les Notifications
-config.disable_key_size_check=Désactiver la vérification de la taille de clé minimale
-config.enable_captcha=Activez le Captcha
-config.active_code_lives=Limites de Code Actif
-config.reset_password_code_lives=Réinitialiser le Mot De Passe des Limites de Code
-config.webhook_config=Configuration Webhook
-config.queue_length=Longueur de la file d'attente
-config.deliver_timeout=Expiration d'Envoi
-config.skip_tls_verify=Ne pas vérifier TLS
-config.mailer_config=Configuration du Maileur
-config.mailer_enabled=Activé
-config.mailer_disable_helo=Désactiver HELO
-config.mailer_name=Nom
-config.mailer_host=Hôte
-config.mailer_user=Utilisateur
-config.oauth_config=Configuration OAuth
-config.oauth_enabled=Activé
-config.cache_config=Configuration du Cache
-config.cache_adapter=Adaptateur du Cache
-config.cache_interval=Intervals du Cache
-config.cache_conn=Liaison du Cache
-config.session_config=Configuration de Session
-config.session_provider=Fournisseur de Session
-config.provider_config=Configurer le Fournisseur
-config.cookie_name=Nom du Cookie
-config.enable_set_cookie=Activer les Cookies
-config.gc_interval_time=Intervals GC
-config.session_life_time=Durée de Session
-config.https_only=HTTPS uniquement
-config.cookie_life_time=Expiration du Cookie
-config.picture_config=Configuration d'Image
-config.picture_service=Service d'Imagerie
-config.disable_gravatar=Désactiver Gravatar
-config.log_config=Configuration du Journal
-config.log_mode=Mode du Journal
-
-monitor.cron=Tâches Cron
-monitor.name=Nom
-monitor.schedule=Planification
-monitor.next=Suivant
-monitor.previous=Précédent
-monitor.execute_times=Nombre d'Éxécutions
-monitor.process=Processus en cours d'Éxécution
-monitor.desc=Description
-monitor.start=Heure de Démarrage
-monitor.execute_time=Heure d'Éxécution
-
-notices.system_notice_list=Notes Systèmes
-notices.type=Type
-notices.type_1=Dépôt
-notices.desc=Description
-notices.op=Opération
-notices.delete_success=Note système supprimée avec succès.
-
-[action]
-create_repo=a crée le dépôt <a href="%s">%s</a>
-rename_repo=rebaptisé le dépôt de <code>%[1]s</code> à <a href="%[2]s">%[3]s</a>
-commit_repo=a soumis à <a href="%s/src/%s">%[2]s</a> chez <a href="%[1]s">%[3]s</a>
-create_issue=`a ouvert un problème <a href="%s/issues/%s">%s#%[2]s</a>`
-create_pull_request=`pull request créée le <a href="%s/pulls/%s">%s#%[2]s</a>`
-comment_issue=`a commenté le problème <a href="%s/issues/%s">%s#%[2]s</a>`
-merge_pull_request=`pull request fusionné le <a href="%s/pulls/%s">%s#%[2]s</a>`
-transfer_repo=a transféré le dépôt <code>%s</code> à <a href="%s">%s</a>
-push_tag=a tagé <a href="%s/src/%s">%[2]s</a> à <a href="%[1]s">%[3]s</a>
-compare_2_commits=Comparer ces 2 commissions
-
-[tool]
-ago=auparavant
-from_now=à partir de maintenant
-now=maintenant
-1s=1 seconde %s
-1m=1 minute %s
-1h=1 heure %s
-1d=1 jour %s
-1w=1 semaine %s
-1mon=1 mois %s
-1y=1 an %s
-seconds=%d secondes %s
-minutes=%d minutes %s
-hours=%d heures %s
-days=%d jours %s
-weeks=%d semaines %s
-months=%d mois %s
-years=%d ans %s
-raw_seconds=secondes
-raw_minutes=minutes
-
-[dropzone]
-default_message=Déposez les fichiers ici ou cliquez pour télécharger.
-invalid_input_type=Vous ne pouvez pas télécharger des fichiers de ce type.
-file_too_big=Le fichier de taille ({{filesize}} Mo) dépasse la taille maximale ({{maxFilesize}} MB).
-remove_file=Supprimer le fichier
-
+app_desc=Un service Git auto-hébergé sans prise de tête + +home=Accueil +dashboard=Tableau de bord +explore=Explorer +help=Aide +sign_in=Connexion +sign_out=Déconnexion +sign_up=Créer un compte +register=Inscription +website=Site Web +version=Version +page=Page +template=Modèle +language=Langue +create_new=Créer... +user_profile_and_more=Profil utilisateur et plus +signed_in_as=Connecté en tant que + +username=Nom d'utilisateur +email=E-mail +password=Mot de passe +re_type=Confirmez +captcha=Captcha + +repository=Dépôt +organization=Organisation +mirror=Miroir +new_repo=Nouveau Dépôt +new_migrate=Nouvelle Migration +new_fork=Nouvel embranchement +new_org=Nouvelle Organisation +manage_org=Gérer les Organisations +admin_panel=Administration +account_settings=Paramètres du Compte +settings=Paramètres +your_profile=Votre profil +your_settings=Vos paramètres + +news_feed=Flux d'actualités +pull_requests=Pull Requests +issues=Problèmes + +cancel=Annuler + +[search] +search=Rechercher... +repository=Dépôt +user=Utilisateur +issue=Problème +code=Code + +[install] +install=Installation +title=Instructions pour la première exécution +docker_helper=Si vous exécutez Gogs grâce à Docker, merci de lire la <a target="_blank" href="%s">procédure</a> attentivement avant de modifier quoi que ce soit sur cette page ! +requite_db_desc=Gogs requiert MySQL, PostgreSQL, SQLite3 ou TiDB. +db_title=Paramètres de la base de données +db_type=Type de Base de Données +host=Hôte +user=Utilisateur +password=Mot De Passe +db_name=Nom de la Base de Données +db_helper=Veuillez utiliser le moteur INNODB avec le jeu de caractères utf8_general_ci pour MySQL. +ssl_mode=Mode SSL +path=Chemin +sqlite_helper=Le chemin du fichier de la base de données SQLite3 ou TiDB. +err_empty_db_path=Le chemin de la base de données SQLite3 ou TiDB ne peut être vide. +err_invalid_tidb_name=Le nom de la base de données TiDB ne peut contenir les caractères "." ou "-". +no_admin_and_disable_registration=Vous ne pouvez pas désactiver l'enregistrement sans créer un compte administrateur. +err_empty_admin_password=Le mot de passe du compte administrateur ne peut être vide. + +general_title=Paramètres Généraux de Gogs +app_name=Nom de l'Application +app_name_helper=Inscrivez fièrement le nom de votre organisation ici ! +repo_path=Emplacement Racine du Dépôt +repo_path_helper=Tous les Dépôts Git distants seront sauvegardés ici. +run_user=Entrer un Utilisateur +run_user_helper=L'utilisateur doit avoir accès à la Racine du Référentiel et éxécuter Gogs. +domain=Domaine +domain_helper=Cela affecte les doublons d'URL SSH. +ssh_port=Port SSH +ssh_port_helper=C'est le numéro de port qui est utilisé par votre serveur SSH, le laisser vide pour désactiver la fonctionnalité. +http_port=Port HTTP +http_port_helper=Numéro de port que l'application écoutera. +app_url=URL de l'Application +app_url_helper=Cela affecte les doublons d'URL HTTP/HTTPS et le contenu d'e-mail. + +optional_title=Paramètres facultatifs +email_title=Paramètres du Service de Messagerie +smtp_host=Hôte SMTP +smtp_from=Provenant de +smtp_from_helper=Adresse de l'expéditeur, RFC 5322. Soit une adresse courriel simple, soit au format "Nom" <email@example.com>. +mailer_user=E-mail de l'Expéditeur +mailer_password=Mot de Passe de l'Expéditeur +register_confirm=Activer la Confirmation d'Enregistrement +mail_notify=Activer la Notification des Mails reçus +server_service_title=Paramètres du serveur et des autres services +offline_mode=Activer le Mode hors connexion +offline_mode_popup=Désactiver le CDN, même en production. Toutes les ressources seront distribuées en local. +disable_gravatar=Désactiver le Service Gravatar +disable_gravatar_popup=Désactiver Gravatar et les sources personnalisées, tous les avatars sont téléchargés par les utilisateurs ou par défaut. +disable_registration=Désactiver le formulaire d'inscription +disable_registration_popup=Désactiver le formulaire d'inscription, seuls les administrateurs peuvent créer des comptes. +enable_captcha=Activez le Captcha +enable_captcha_popup=Demande la validation Captcha pour l'auto-enregistrement de l'utilisateur. +require_sign_in_view=Demander une connexion pour afficher des pages +require_sign_in_view_popup=Seules les personnes connectées peuvent voir les pages. Les visiteurs anonymes ne pourront voir que les pages de connexion/enregistrement. +admin_setting_desc=Vous n'avez pas besoin de créer un compte admin. L'utilisateur ayant l'ID = 1 se verra automatiquement attribuer l'accès administrateur. +admin_title=Paramètres du Compte Administrateur +admin_name=Nom d'Utilisateur +admin_password=Mot de Passe +confirm_password=Confirmez le Mot de Passe +admin_email=E-mail de l'administrateur +install_gogs=Installer Gogs +test_git_failed=Tentative de commande "git" échouée : %v +sqlite3_not_available=Votre version publiée ne prend pas en charge SQLite3. Veuillez télécharger la version binaire officielle à cette adresse %s. +invalid_db_setting=Paramètres de base de données incorrects : %v +invalid_repo_path=Chemin vers le répertoire racine invalide : %v +run_user_not_match=L'utilisateur entré n'est pas l'utilisateur actuel : %s -> %s +save_config_failed=La sauvegarde de la configuration a échoué : %v +invalid_admin_setting=Paramètres du compte administrateur invalides : %v +install_success=Bienvenue ! Nous sommes heureux que vous ayez choisi Gogs, amusez-vous et prenez soin de vous. + +[home] +uname_holder=Nom d'Utilisateur ou E-mail +password_holder=Mot de Passe +switch_dashboard_context=Basculer le Contexte du Tableau de Bord +my_repos=Mes Référentiels +collaborative_repos=Référentiels collaboratifs +my_orgs=Mes Organisations +my_mirrors=Mes Miroirs +view_home=Voir %s + +issues.in_your_repos=Dans vos dépôts + +[explore] +repos=Référentiels + +[auth] +create_new_account=Créer un Nouveau Compte +register_hepler_msg=Déjà enregistré ? Connectez-vous ! +social_register_hepler_msg=Possesseur d'un compte ? Associez-le ! +disable_register_prompt=Désolé, les enregistrements ont été désactivés. Veuillez contacter l'administrateur du site. +disable_register_mail=Désolé, la Confirmation par Mail des Enregistrements a été désactivée. +remember_me=Se souvenir de Moi +forgot_password=Mot de Passe oublié +forget_password=Mot de Passe oublié ? +sign_up_now=Pas de compte ? Créer maintenant. +confirmation_mail_sent_prompt=Un nouveau mail de confirmation à été envoyé à <b>%s</b>. Veuillez vérifier votre boîte de réception dans un délai de %d heures pour compléter votre enregistrement. +active_your_account=Activer votre Compte +resent_limit_prompt=Désolé, vos tentatives d'activation sont trop fréquentes. Veuillez réessayer dans 3 minutes. +has_unconfirmed_mail=Bonjour %s, votre adresse courriel (<b>%s</b>) n'a pas été confirmée. Si vous n'avez reçu aucun courriel de confirmation ou souhaitez renouveler l'envoi, appuyez sur le bouton ci-dessous. +resend_mail=Cliquez ici pour renvoyer un mail de confirmation +email_not_associate=Cette adresse e-mail n'est associée à aucun compte. +send_reset_mail=Cliquez ici pour (r)envoyer le mail de réinitialisation du mot de passe +reset_password=Réinitialiser le Mot de Passe +invalid_code=Désolé, code de confirmation invalide ou expiré. +reset_password_helper=Cliquez ici pour réinitialiser votre mot de passe +password_too_short=Le mot de passe doit contenir 6 caractères minimum. + +[mail] +activate_account=Veuillez activer votre compte +activate_email=Veuillez vérifier votre adresse e-mail +reset_password=Réinitialiser votre mot de passe +register_success=Succès de l'enregistrement, Bienvenue +register_notify=Bienvenue à bord + +[modal] +yes=Oui +no=Non +modify=Modifier + +[form] +UserName=Nom d'Utilisateur +RepoName=Nom du dépôt +Email=Adresse E-mail +Password=Mot de Passe +Retype=Confirmez le Mot de Passe +SSHTitle=Nom de la clé SSH +HttpsUrl=URL HTTPS +PayloadUrl=URL des Données Utiles +TeamName=Nom d'équipe +AuthName=Nom d'autorisation +AdminEmail=E-mail de l'administrateur + +require_error=` Ne peut être vide ` +alpha_dash_error=` doivent être des caractères alpha, numeriques ou console (-_) valides ` +alpha_dash_dot_error=` doivent être des caractères alpha, numeriques, console (-_) valides ou des points ` +size_error=` doit être à la taille de %s.` +min_size_error=` %s caractères minimum ` +max_size_error=` %s caractères maximum ` +email_error=` adresse e-mail invalide ` +url_error=` URL invalide ` +include_error=`doit contenir la sous-chaîne '%s'.` +unknown_error=Erreur inconnue : +captcha_incorrect=Le Captcha ne correspond pas. +password_not_match=Le mot de passe et la confirmation de mot de passe ne correspondent pas. + +username_been_taken=Nom d'utilisateur déjà pris. +repo_name_been_taken=Nom de dépôt déjà utilisé. +org_name_been_taken=Nom d'organisation déjà pris. +team_name_been_taken=Nom d'équipe déjà pris. +email_been_used=Adresse e-mail déjà utilisée. +illegal_team_name=Le nom de l'équipe contient des caractères interdits. +username_password_incorrect=Nom d'utilisateur ou mot de passe incorrect. +enterred_invalid_repo_name=Veuillez vérifier que le nom saisi du dépôt soit correct. +enterred_invalid_owner_name=Veuillez vérifier que le nom du propriétaire saisi soit correct. +enterred_invalid_password=Veuillez vérifier que le mot de passe saisi soit correct. +user_not_exist=Cet utilisateur n'existe pas. +last_org_owner=L'utilisateur à exclure est le dernier membre de l'équipe propriétaire. Il doit y avoir un autre propriétaire. + +invalid_ssh_key=Désolé, impossible de valider votre clé SSH : %s +unable_verify_ssh_key=Gogs n'a pu vérifier la validité de votre clé SSH, même si nous partons du principe qu'elle le soit. Cela-dit, veuillez vous en assurer. +auth_failed=Échec d'authentification : %s + +still_own_repo=Votre compte comporte toujours des propriétés du dépôt. Vous devez d'abord les supprimer ou les transférer. +still_has_org=Votre compte contient toujours au moins une adhésion à une organisation, vous devez quitter ou supprimer votre adhésion. +org_still_own_repo=Cette organisation comporte toujours des propriétés du dépôt. Vous devez d'abord les supprimer ou les transférer. + +still_own_user=Cette authentification a déjà servi à d'autres utilisateurs. Veuillez les déplacer puis supprimez à nouveau. + +target_branch_not_exist=La branche cible n'existe pas. + +[user] +change_avatar=Changez d'avatar via gravatar.com +change_custom_avatar=Changer votre avatar dans les paramètres +join_on=Adhéré le +repositories=Référentiels +activity=Activités publiques +followers=Abonnés +starred=Votés +following=Abonnements + +form.name_reserved=Le nom '%s' est réservé. +form.name_pattern_not_allowed=Motif '%s' interdit pour les noms d'utilisateur. + +[settings] +profile=Profil +password=Mot de Passe +ssh_keys=Clés SSH +social=Réseaux Sociaux +applications=Applications +orgs=Organisations +delete=Supprimer le Compte +uid=ID d'Utilisateur + +public_profile=Profil Public +profile_desc=Votre adresse e-mail est publique et sera utilisée pour les notifications relatives au compte, ainsi que pour toute opération Web effectuée via le site. +full_name=Nom Complet +website=Site Web +location=Localisation +update_profile=Valider les modifications +update_profile_success=Profil mis à jour avec succès. +change_username=Non d'utilisateur modifié +change_username_prompt=Cette modification affectera la manière dont les liens se rapportent à votre compte. +continue=Continuer +cancel=Annuler + +enable_custom_avatar=Activer l'Avatar personnalisé +enable_custom_avatar_helper=Cette option désactive l'affichage via Gravatar +choose_new_avatar=Sélectionner un nouvel avatar +update_avatar=Mettre à jour l'avatar +uploaded_avatar_not_a_image=Le fichier téléchargé n'est pas une image. +no_custom_avatar_available=Aucun avatar personnalisé disponible, activation impossible. +update_avatar_success=Votre avatar a été mis à jour avec succès. + +change_password=Modifier le Mot de Passe +old_password=Mot de Passe actuel +new_password=Nouveau Mot de Passe +retype_new_password=Retapez le nouveau mot de passe +password_incorrect=Mot de passe actuel incorrect. +change_password_success=Mot de passe modifié avec succès. Vous pouvez à présent vous connecter avec le nouveau mot de passe. + +emails=Adresses E-mail +manage_emails=Gérer les adresses e-mail +email_desc=Votre adresse e-mail principale sera utilisée pour les notifications et d'autres opérations. +primary=Principale +primary_email=Définir comme principale +delete_email=Supprimer +email_deletion=Suppression de l'adresse mél +email_deletion_desc=Supprimer cette adresse mél supprimera les informations associées à votre compte. Voulez-vous continuer ? +email_deletion_success=L'adresse mél a été supprimée avec succès ! +add_new_email=Ajouter une nouvelle adresse courriel +add_email=Ajouter un courriel +add_email_confirmation_sent=Une nouvelle confirmation d'adresse e-mail a été envoyé à '%s', veuillez vérifier votre boîte de réception dans un délai de %d heures pour terminer le processus de confirmation. +add_email_success=Votre courriel a été ajouté avec succès. + +manage_ssh_keys=Gérer les clés SSH +add_key=Ajouter une Clé +ssh_desc=Ceci est une liste des clés SSH associées à votre compte. Supprimez celles que vous ne reconnaissez pas. +ssh_helper=<strong>Besoin d'aide?</strong> Consultez notre guide pour <a href="%s"> générer des clés SSH</a> ou résoudre les <a href="%s"> problèmes courants de SSH</a>. +add_new_key=Ajouter une Clé SSH +ssh_key_been_used=Le contenu de la clé publique a été utilisée. +ssh_key_name_used=Un clé publique avec le même nom existe déjà. +key_name=Nom de la Clé +key_content=Contenu +add_key_success=La nouvelle clé SSH '%s' a été ajoutée avec succès ! +delete_key=Supprimer +ssh_key_deletion=Suppression de la clé SSH +ssh_key_deletion_desc=Supprimer cette clé SSH supprimera tous les accès à votre compte. Voulez-vous continuer ? +ssh_key_deletion_success=Clé SSH supprimée avec succès ! +add_on=Ajouté le +last_used=Dernière utilisation le +no_activity=Aucune activité récente +key_state_desc=Cette clé a été utilisée durant les 7 derniers jours +token_state_desc=Cette clé a été utilisée durant les 7 derniers jours + +manage_social=Gérer les réseaux sociaux associés +social_desc=Ceci est la liste des comptes de réseaux sociaux associés. Supprimez ceux que vous ne reconnaissez pas. +unbind=Dissocier +unbind_success=Compte de réseau social dissocié. + +manage_access_token=Gérer les jetons d'accès personnels +generate_new_token=Générer le nouveau jeton +tokens_desc=Jetons, que vous avez généré, qui peuvent être utilisés pour accéder à l'API Gogs. +new_token_desc=Chaque Jeton donnera un accès complet à votre compte. +token_name=Nom du jeton +generate_token=Générer le jeton +generate_token_succees=Nouveau jeton d'accès a été généré avec succès ! Assurez-vous de copier votre nouveau jeton d'accès personnel maintenant. Vous ne serez pas en mesure de le revoir ! +delete_token=Supprimer +access_token_deletion=Suppression du jeton d'accès +access_token_deletion_desc=Supprimer ce jeton d'accès supprimera tous les accès de l'application. Voulez-vous continuer ? +delete_token_success=Le jeton d'accèsa été supprimé avec succès ! N'oubliez pas de mettre à jour vos applications. + +delete_account=Supprimer le Compte +delete_prompt=Votre compte sera supprimé définitivement et cette opération est <strong>IRRÉVERSIBLE</strong> ! +confirm_delete_account=Confirmer la suppression +delete_account_title=Suppression de compte +delete_account_desc=Ce compte sera supprimé définitivement. Voulez-vous continuer ? + +[repo] +owner=Propriétaire +repo_name=Nom du Référentiel +repo_name_helper=Idéalement, le nom d'un dépot devrait être court, mémorable et <strong>unique</strong>. +visibility=Visibilité +visiblity_helper=Ce dépôt est <span class="ui red text"> privé</span> +visiblity_helper_forced=L'administrateur du site a forcé tous les nouveaux dépôts à être <span class="ui red text">privés</span> +visiblity_fork_helper=(Les changement de cette valeur affectera tous les forks) +clone_helper=Besoin d'aide pour dupliquer ? Visitez <a target="_blank" href="%s">l'aide</a> ! +fork_repo=Scinder le dépôt +fork_from=Embranchement de +fork_visiblity_helper=La visibilité d'un référentiel d'embranchement ne peut pas être modifiée. +repo_desc=Description +repo_lang=Langue +repo_lang_helper=Sélectionnez les fichiers .gitignore +license=Licence +license_helper=Sélectionner un fichier de licence +readme=Fichier Readme +readme_helper=Sélectionnez un modèle de readme +auto_init=Initialiser ce dépôt avec le modèle et les fichiers sélectionnés +create_repo=Créer un dépôt +default_branch=Branche par défaut +mirror_interval=Intervalle du miroir (heure) +watchers=Observateurs +stargazers=Stargazers +forks=Forks + +form.name_reserved=Le nom de dépôt '%s' est réservé. +form.name_pattern_not_allowed=Motif '%s' interdit pour les noms de dépôt. + +need_auth=Nécessite une Autorisation +migrate_type=Type de Migration +migrate_type_helper=Ce dépôt sera un <span class="text blue"> miroir</span> +migrate_repo=Migrer le dépôt +migrate.clone_address=Adresse du clone +migrate.clone_address_desc=Cela peut être une URL HTTP/HTTPS/GIT ou un chemin d'accès local. +migrate.permission_denied=Vous n'êtes pas autorisé à importer des dépôts locaux. +migrate.invalid_local_path=Chemin local non valide, non existant ou n'étant pas un dossier. +migrate.failed=Migration failed: %v + +forked_from=embranché à partir de +fork_from_self=Vous nous ne pouvez pas scinder un dépôt que vous possédez déja ! +copy_link=Copier +copy_link_success=Copié! +copy_link_error=Appuyez sur ⌘-C ou Ctrl-C pour copier +copied=Copié +unwatch=Ne plus suivre +watch=Suivre +unstar=Retirer le vote +star=Voter +fork=Embranchement + +no_desc=Aucune description +quick_guide=Introduction rapide +clone_this_repo=Cloner ce dépôt +create_new_repo_command=Créer un nouveau dépôt en ligne de commande +push_exist_repo=Soumettre un référentiel existant via la ligne de commande +repo_is_empty=Ce référentiel est vide, veuillez revenir plus tard ! + +branch=Branche +tree=Aborescence +filter_branch_and_tag=Filter branch or tag +branches=Branches +tags=Tags +issues=Problèmes +pulls=Pull Requests +labels=Etiquettes +milestones=Étapes +commits=Commissions +releases=Publications +file_raw=Raw +file_history=Historique +file_view_raw=Voir le Raw +file_permalink=Lien permanent + +commits.commits=Commissions +commits.search=Rechercher des commissions +commits.find=Trouver +commits.author=Auteur +commits.message=Message +commits.date=Date +commits.older=Précédemment +commits.newer=Récemment + +issues.new=Nouveau Problème +issues.new.labels=Etiquettes +issues.new.no_label=Pas d'étiquette +issues.new.clear_labels=Effacer les étiquettes +issues.new.milestone=Étape +issues.new.no_milestone=Pas d'étape +issues.new.clear_milestone=Effacer l'étape +issues.new.open_milestone=Ouvrir l'étape +issues.new.closed_milestone=Étapes fermées +issues.new.assignee=Affecté à +issues.new.clear_assignee=Supprimer les assignataires +issues.new.no_assignee=Pas d'assignataire +issues.create=Créer un rapport de problème +issues.new_label=Nouvelle étiquette +issues.new_label_placeholder=Nom de l'étiquette... +issues.create_label=Créer une étiquette +issues.open_tab=%d Ouvert +issues.close_tab=%d Fermé +issues.filter_label=Étiquette +issues.filter_label_no_select=Aucun étiquette sélectionnée +issues.filter_milestone=Étape +issues.filter_milestone_no_select=Aucun jalon sélectionné +issues.filter_assignee=Assigné +issues.filter_assginee_no_select=Pas d'assignataire selectionné +issues.filter_type=Type +issues.filter_type.all_issues=Tous les problèmes +issues.filter_type.assigned_to_you=Qui vous sont assignés +issues.filter_type.created_by_you=Créé(es) par vous +issues.filter_type.mentioning_you=Vous mentionnant +issues.filter_sort=Trier +issues.filter_sort.latest=Plus récent +issues.filter_sort.oldest=Plus ancien/ne +issues.filter_sort.recentupdate=Mis à jour récemment +issues.filter_sort.leastupdate=Moins récemment mis à jour +issues.filter_sort.mostcomment=Plus commentés +issues.filter_sort.leastcomment=Moins commenté +issues.opened_by=Ouvrir %[1]s by <a href="%[2]s">%[3]s</a> +issues.opened_by_fake=ouvert %[1]s par %[2]s +issues.previous=Page Précédente +issues.next=Page Suivante +issues.open_title=Ouvert +issues.closed_title=Fermé +issues.num_comments=%d commentaires +issues.commented_at='commenté à <a id="%[1]s" href="#%[1]s"> %[2]s'</a> +issues.no_content=Il n'existe pas encore de contenu. +issues.close_issue=Fermer +issues.close_comment_issue=Commenter et fermer +issues.reopen_issue=Réouvrir +issues.reopen_comment_issue=Commenter et réouvrir +issues.create_comment=Créer un commentaire +issues.closed_at="fermé à <a id="%[1]s"href="#%[1]s"> %[2]s"</a> +issues.reopened_at='réouvert à <a id="%[1]s" href="#%[1]s"> %[2]s'</a> +issues.commit_ref_at=`a référencé ce problème à partir d'un commit <a id="%[1]s" href="#%[1]s"> %[2]s</a>` +issues.poster=Publier +issues.admin=Admin +issues.owner=Propriétaire +issues.sign_up_for_free=Inscrivez-vous gratuitement +issues.sign_in_require_desc=pour rejoindre cette conversation. Vous avez déjà un compte ? <a href="%s">Connectez-vous commenter</a> +issues.edit=Modifier +issues.cancel=Annuler +issues.save=Enregistrer +issues.label_title=Nom du Label +issues.label_color=Couleur du Label +issues.label_count=%d labels +issues.label_open_issues=%d problèmes ouverts +issues.label_edit=Éditer +issues.label_delete=Supprimer +issues.label_modify=Modification du Label +issues.label_deletion=Suppression du Label +issues.label_deletion_desc=Cette opération supprimera également toutes les informations relatives aux problèmes. Voulez-vous continuer ? +issues.label_deletion_success=Label supprimé avec succès ! + +pulls.new=New Pull Request +pulls.compare_changes=Comparer les changements +pulls.compare_changes_desc=Comparer deux branches et faire une demande de récupération Pull pour les changements. +pulls.compare_base=Base +pulls.compare_compare=Comparer +pulls.filter_branch=Filtre de branche +pulls.no_results=Aucun résultat trouvé. +pulls.nothing_to_compare=Il n'y a rien de comparable parce que les deux branches sont égales. +pulls.has_pull_request=`Il y a déjà une demande de tirer entre ces deux cibles : <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>` +pulls.create=Creer une Pull Request +pulls.title_desc=veut fusionner %[1]d commits à partir de <code>%[2]s</code> vers <code>%[3]s</code> +pulls.merged_title_desc=à fusionné %[1]d commits à partir de <code>%[2]s</code> vers <code>%[3]s</code> %[4]s +pulls.tab_conversation=Conversation +pulls.tab_commits=Commits +pulls.tab_files=Fichiers modifiés +pulls.reopen_to_merge=Veuillez rouvrir cette demande de Pull Request pour effectuer l'opération de fusion. +pulls.merged=Fusionné +pulls.has_merged=Cette Pull Request a été fusionnée avec succès ! +pulls.data_broken=Les données de cette Pull Request a été rompues en raison de la suppression d'informations du Fork. +pulls.is_checking=La recherche de conflits est toujours en cours, veuillez rafraichir la page dans quelques instants. +pulls.can_auto_merge_desc=Vous pouvez effectuer d'opération de fusion automatique sur cette demande de Pull Request. +pulls.cannot_auto_merge_desc=Vous ne pouvez effectuer des opération de fusion automatique car il y a des conflits entre les Commits. +pulls.cannot_auto_merge_helper=Veuillez utiliser l'outil en ligne de commande pour le résoudre. +pulls.merge_pull_request=Fusionner la Pull Request +pulls.open_unmerged_pull_exists=`Vous ne pouvez effectuer une réouverture car il y a déjà une pull-request ouverte (#%d) depuis le même dépôt avec les mêmes informations de fusion et est en attente de fusion.` + +milestones.new=Nouveau Jalon +milestones.open_tab=%d Ouvert +milestones.close_tab=%d Fermé +milestones.closed=%s fermé +milestones.no_due_date=Aucune date d'échéance +milestones.open=Ouvrir +milestones.close=Fermer +milestones.new_subheader=Créez des jalons pour organiser vos problèmes. +milestones.create=Créer un Jalon +milestones.title=Titre +milestones.desc=Description +milestones.due_date=Date d'échéance (facultatif) +milestones.clear=Effacer +milestones.invalid_due_date_format=Le format de la date d'échéance est invalide, il doit être comme suit 'AAAA-mm-jj'. +milestones.create_success=Le Jalon '%s' a été crée avec succès ! +milestones.edit=Éditer le Jalon +milestones.edit_subheader=Utilisez une description claire pour les jalons pour ne pas induire les gens en erreur. +milestones.cancel=Annuler +milestones.modify=Modifier le Jalon +milestones.edit_success=Le Jalon '%s' a été modifié avec succès ! +milestones.deletion=Supprimer le Jalon +milestones.deletion_desc=Supprimer ce Jalon effacera ses informations dans tous les problèmes relatifs. Voulez-vous continuer ? +milestones.deletion_success=Le Jalon a été supprimé avec succès ! + +settings=Paramètres +settings.options=Options +settings.collaboration=Collaboration +settings.hooks=Webhooks +settings.githooks=Git Hooks +settings.basic_settings=Paramètres de base +settings.danger_zone=Zone de danger +settings.site=Site officiel +settings.update_settings=Valider +settings.change_reponame_prompt=Ce changement affectera comment les liens sont reliés avec le dépôt. +settings.transfer=Transférer les propriétés +settings.transfer_desc=Transfèrer ce dépôt à un autre utilisateur ou une organisation dont vous possédez des droits d'administrateur. +settings.new_owner_has_same_repo=Le nouveau propriétaire a déjà un dépôt nommé ainsi. +settings.delete=Supprimer ce Référentiel +settings.delete_desc=Attention, action irréversible. Soyez sûr de vous. +settings.transfer_notices_1=-Vous perdrez l'accès si le nouveau propriétaire est un utilisateur individuel. +settings.transfer_notices_2=-Vous préserverez l'accès si le nouveau propriétaire est une organisation et si vous y appartenez. +settings.transfer_form_title=Veuillez recopier le texte suivant afin de confirmer votre opération : +settings.delete_notices_1=- Cette opération <strong>ne peut pas </strong> être annulée. +settings.delete_notices_2=-Cette opération supprimera définitivement le dépôt, y compris les données Git, problèmes, commentaires et accès des collaborateurs. +settings.delete_notices_fork_1=-Si ce dépôt est public, tous les Forks vont devenir indépendants après la suppression. +settings.delete_notices_fork_2=-Si ce dépôt est privé, tous les Forks seront supprimés en même temps. +settings.delete_notices_fork_3=-Si vous souhaitez conserver tous les forks après suppression, veuillez tout d'abord modifier la visibilité de ce dépôt en public. +settings.update_settings_success=Options mises à jour avec succès. +settings.transfer_owner=Nouveau propriétaire +settings.make_transfer=Transférer +settings.transfer_succeed=Le contrôle du dépôt a été transféré avec succès. +settings.confirm_delete=Confirmer la suppression +settings.add_collaborator=Ajouter un collaborateur +settings.add_collaborator_success=Nouveau collaborateur ajouté. +settings.remove_collaborator_success=Collaborateur supprimé. +settings.search_user_placeholder=Rechercher un utilisateur... +settings.user_is_org_member=Cet utilisateur ne peut pas être ajouté en tant que collaborateur car il fait partie d'une organisation. +settings.add_webhook=Ajouter un Webhook +settings.hooks_desc=Les Webhooks sont des déclencheurs de POST HTTP . Lorsque qu'un événement se produit dans Gogs, une notification sera envoyée vers l'hôte cible préalablement spécifié. Apprenez-en davantage dans le <a target="_blank" href="%s">Guide des Webhooks</a>. +settings.webhook_deletion=Supprimer le Webhook +settings.webhook_deletion_desc=Supprimer ce webhook va supprimer ses informations et l'historique de livraison. Voulez-vous continuer ? +settings.webhook_deletion_success=Le webhook a été supprimé avec succès ! +settings.webhook.request=Requête +settings.webhook.response=Réponse +settings.webhook.headers=Entêtes +settings.webhook.payload=Payload +settings.webhook.body=Corps +settings.githooks_desc=Les Hooks Git sont alimentés par Git lui même. Les Hooks compatibles sont modifiables dans la liste ci-dessous pour effectuer des opérations personnalisées. +settings.githook_edit_desc=Si un Hook est inactif, un exemple de contenu vous sera proposé. Un contenu laissé vide signifie un Hook inactif. +settings.githook_name=Nom du Hook +settings.githook_content=Contenu du Hook +settings.update_githook=Mettre le Hook à jour +settings.add_webhook_desc=Une requête <code>POST</code> sera transmise vers l'URL spécifiée selon l'événement produit. Vous pouvez également choisir le format souhaité pour la réception des données (JSON, x-www-form-urlencoded, XML etc). Pour plus d'infos, lisez le <a target="_blank" href="%s">Guide des WebHooks</a>. +settings.payload_url=URL des Données Utiles +settings.content_type=Type de contenu +settings.secret=Confidentiel +settings.slack_username=Nom d'utilisateur +settings.slack_icon_url=URL de l'icône +settings.slack_color=Couleur +settings.event_desc=Quel évènement ce Webhook doit-il déclencher ? +settings.event_push_only=Uniquement les <code>push</code> (soumissions). +settings.event_send_everything=J'ai besoin de <strong>tout</strong>. +settings.event_choose=Permettez-moi de choisir ce dont j'ai besoin. +settings.event_create=Créer +settings.event_create_desc=Branche, ou Tag créé +settings.event_push=Push +settings.event_push_desc=Git push vers un dépôt +settings.active=Actif +settings.active_helper=Les détails seront délivrés lorsque ce Hook sera déclenché. +settings.add_hook_success=Nouveau Webhook ajouté. +settings.update_webhook=Mettre à jour le Webhook +settings.update_hook_success=Webhook mis à jour. +settings.delete_webhook=Supprimer le Webhook +settings.recent_deliveries=Livraisons récentes +settings.hook_type=Type de Hook +settings.add_slack_hook_desc=Intégrer <a href="%s"> Slack</a> à votre dépôt. +settings.slack_token=Jeton +settings.slack_domain=Domaine +settings.slack_channel=Canal +settings.deploy_keys=Clés de déploiement +settings.add_deploy_key=Ajouter une Clé de Déploiement +settings.no_deploy_keys=Vous n'avez ajouté aucune clé de déploiement. +settings.title=Titre +settings.deploy_key_content=Contenu +settings.key_been_used=Le contenu de la clé de déploiement a été utilisé. +settings.key_name_used=Une clé de déploiement avec le même nom existe déjà. +settings.add_key_success=La nouvelle clé de déploiement '%s' a été ajoutée avec succès ! +settings.deploy_key_deletion=Supprimer la Clé de Déploiement +settings.deploy_key_deletion_desc=Supprimer cette clé de déploiement effacera tous les accès relatifs pour ce référentiel. Voulez-vous continuer ? +settings.deploy_key_deletion_success=La clé de déploiement a été supprimée avec succès ! + +diff.browse_source=Parcourir la Source +diff.parent=Parent +diff.commit=Commettre +diff.data_not_available=Données Diff indisponibles. +diff.show_diff_stats=Afficher les stats Diff +diff.stats_desc=<strong> %d fichiers modifiés</strong> avec <strong>%d ajouts</strong> et <strong>%d suppressions</strong> +diff.bin=BIN +diff.view_file=Voir le fichier + +release.releases=Versions +release.new_release=Nouvelle version +release.draft=Brouillon +release.prerelease=Pré-publication +release.stable=Stable +release.edit=Éditer +release.ahead=<strong>%d</strong> commissions à %s depuis cette publication +release.source_code=Code Source +release.new_subheader=Publish releases to iterate product. +release.edit_subheader=Detailed change log can help users understand what has been improved. +release.tag_name=Nom du tag +release.target=Cible +release.tag_helper=Choisissez un tag existant ou créez-en un nouveau à publier. +release.title=Titre +release.content=Contenu +release.write=Écrire +release.preview=Prévisualiser +release.loading=Chargement… +release.prerelease_desc=Il s'agit d'une version préliminaire +release.prerelease_helper=Nous soulignerons que cette version est considérée comme non prête pour la production. +release.cancel=Annuler +release.publish=Publier +release.save_draft=Sauvegarder le Brouillon +release.edit_release=Éditer la publication +release.delete_release=Delete This Release +release.deletion=Release Deletion +release.deletion_desc=Delete this release will delete corresponding Git tag. Do you want to continue? +release.deletion_success=Release has been deleted successfully! +release.tag_name_already_exist=Une publication avec ce nom de tag existe déjà. +release.downloads=Téléchargements + +[org] +org_name_holder=Nom d'organisation +org_full_name_holder=Nom complet de l'organisation +org_name_helper=Idéalement, un nom d'organisation devrait être court et facilement mémorisable. +create_org=Créer une organisation +repo_updated=Mis à jour +people=Contacts +invite_someone=Inviter quelqu'un +teams=Équipes +lower_members=Membres +lower_repositories=Référentiels +create_new_team=Créer une Nouvelle Équipe +org_desc=Description +team_name=Nom d'Équipe +team_desc=Description +team_name_helper=Ce nom sera utilisé pour mentionner l'équipe dans les conversations. +team_desc_helper=Présentation de l'équipe +team_permission_desc=Quel niveau d'accès cette équipe devrait-elle posséder ? + +form.name_reserved=Le nom d'organisation '%s' est réservé. +form.name_pattern_not_allowed=Motif '%s' interdit pour les noms d'organisation. + +settings=Paramètres +settings.options=Options +settings.full_name=Non Complet +settings.website=Site Web +settings.location=Localisation +settings.update_settings=Valider +settings.update_setting_success=Paramètres d'organisation modifiés avec succès. +settings.change_orgname_prompt=Cette modification affectera comment des liens se rapportent à l'organisation. +settings.update_avatar_success=Les paramètres de l'avatar de l'organisation ont été mis à jour avec succès. +settings.delete=Supprimer l'organisation +settings.delete_account=Supprimer cette organisation +settings.delete_prompt=Cela supprimera cette organisation définitivement. Cette opération est <strong>IRRÉVERSIBLE</strong> ! +settings.confirm_delete_account=Confirmez la suppression +settings.delete_org_title=Suppression d'organisation +settings.delete_org_desc=Cette organisation sera définitivement supprimée. Continuer ? +settings.hooks_desc=Ajoute des Webhooks qui seront activés pour <strong>tous les Référentiels</strong> de cette organisation. + +members.public=Public +members.public_helper=Rendre privé +members.private=Privé +members.private_helper=Rendre public +members.owner=Propriétaire +members.member=Membre +members.conceal=Masquer +members.remove=Exclure +members.leave=Quitter +members.invite_desc=Tapez un nom d'utilisateur pour inviter un nouveau membre chez %s : +members.invite_now=Envoyer une invitation + +teams.join=Rejoindre +teams.leave=Quitter +teams.read_access=Accès en Lecture +teams.read_access_helper=Cette équipe aura la possibilité de voir et dupliquer ses Référentiels. +teams.write_access=Accès en Écriture +teams.write_access_helper=Cette équipe possèdera aussi bien des droits de lecture que d'écriture sur ses Référentiels. +teams.admin_access=Accès Administrateur +teams.admin_access_helper=Cette équipe possèdera des droits de lecture, d'écriture, ainsi que le pouvoir d'ajouter des collaborateurs. +teams.no_desc=Aucune description +teams.settings=Paramètres +teams.owners_permission_desc=Les propriétaires possèdent <strong>les droits d'administrateur</strong> et disposent d'un accès complet à <strong>tous les Référentiels</strong> de l'organisation. +teams.members=Membres de L'Équipe +teams.update_settings=Valider +teams.delete_team=Supprimer cette Équipe +teams.add_team_member=Ajouter un Membre +teams.delete_team_title=Suppression de l'équipe +teams.delete_team_desc=Cette équipe sera supprimée. Les membres pourraient perdre leurs accès à certains dépôts. +teams.delete_team_success=Équipe supprimée avec succès. +teams.read_permission_desc=Cette équipe permet l'accès en <strong>lecture</strong> : les membres peuvent voir et dupliquer ses Référentiels. +teams.write_permission_desc=Cette équipe permet l'accès en <strong>écriture</strong> : les membres peuvent participer à ses Référentiels. +teams.admin_permission_desc=Cette équipe permet l'accès en <strong>administrateur</strong> : les membres peuvent voir, participer et ajouter des collaborateurs à ses Référentiels. +teams.repositories=Référentiels de l'Équipe +teams.add_team_repository=Ajouter un Dépôt à l'Équipe +teams.remove_repo=Supprimer +teams.add_nonexistent_repo=Dépôt inexistant, veuillez d'abord le créer. + +[admin] +dashboard=Tableau de bord +users=Utilisateurs +organizations=Organisations +repositories=Référentiels +authentication=Authentifications +config=Configuration +notices=Notes Systèmes +monitor=Supervision +first_page=Première +last_page=Dernière +total=Total : %d + +dashboard.statistic=Statistiques +dashboard.operations=Opérations +dashboard.system_status=État du Moniteur Système +dashboard.statistic_info=La base de données Gogs contient <b>%d</b> utilisateurs, <b>%d</b> organisations, <b>%d</b> clés publiques, <b>%d</b> Référentiels, <b>%d</b> suivis, <b>%d</b> votes, <b>%d</b> actions, <b>%d</b> accès, <b>%d</b> problèmes, <b>%d</b> commentaires, <b>%d</b> comptes de réseaux sociaux, <b>%d</b> abonnements, <b>%d</b> miroirs, <b>%d</b> publications, <b>%d</b> connexions d'origine, <b>%d</b> webhooks, <b>%d</b> milestones, <b>%d</b> labels, <b>%d</b> tâches hook, <b>%d</b> équipes, <b>%d</b> tâches de mise à jour, <b>%d</b> fichiers. +dashboard.operation_name=Nom de l'Opération +dashboard.operation_switch=Basculer +dashboard.operation_run=Exécuter +dashboard.clean_unbind_oauth=Nettoyer les associations OAuthes +dashboard.clean_unbind_oauth_success=Tous unbind OAuthes ont été supprimés avec succès. +dashboard.delete_inactivate_accounts=Supprimer tous les comptes inactifs +dashboard.delete_inactivate_accounts_success=Tous les comptes inactifs ont été supprimés avec succès. +dashboard.delete_repo_archives=Supprimer toutes les archives de référentiels +dashboard.delete_repo_archives_success=Toutes les archives des référentiels ont été supprimées avec succès. +dashboard.delete_missing_repos=Delete all repository records that lost Git files +dashboard.delete_missing_repos_success=All repository records that lost Git files have been deleted successfully. +dashboard.git_gc_repos=Collecter les déchets des référentiels +dashboard.git_gc_repos_success=Tous les dépôts ont effectué la collecte avec succès. +dashboard.resync_all_sshkeys=Ré-écrire le fichier '.ssh/authorized_keys' (attention : les clés hors-Gogs vont être perdues) +dashboard.resync_all_sshkeys_success=Toutes les clés publiques ont été ré-écrites avec succès. +dashboard.resync_all_update_hooks=Ré-écrire tous les hooks de mises à jour des dépôts (requis quand le chemin de la configuration personnalisé est modifié) +dashboard.resync_all_update_hooks_success=Les mises à jour de hook des référentiels ont toutes été réécrites avec succès. + +dashboard.server_uptime=Durée de Marche Serveur +dashboard.current_goroutine=Goroutines actuelles +dashboard.current_memory_usage=Utilisation Mémoire actuelle +dashboard.total_memory_allocated=Mémoire totale allouée +dashboard.memory_obtained=Mémoire obtenue +dashboard.pointer_lookup_times=Nombre de Consultations Pointeur +dashboard.memory_allocate_times=Nombre d'Allocation Mémoire +dashboard.memory_free_times=Nombre de Libération Mémoire +dashboard.current_heap_usage=Utilisation Tas (Heap) +dashboard.heap_memory_obtained=Mémoire Tas (Heap) obtenue +dashboard.heap_memory_idle=Mémoire Tas (Heap) au Repos +dashboard.heap_memory_in_use=Utilisation Mémoire Tas (Heap) +dashboard.heap_memory_released=Mémoire Tas (Heap) libérée +dashboard.heap_objects=Objets Tas (Heap) +dashboard.bootstrap_stack_usage=Utilisation Pile Bootstrap +dashboard.stack_memory_obtained=Mémoire Pile obtenue +dashboard.mspan_structures_usage=Utilisation des Structures MSpan +dashboard.mspan_structures_obtained=Structures MSpan obtenues +dashboard.mcache_structures_usage=Utilisation des Structures MCache +dashboard.mcache_structures_obtained=Structures MCache obtenues +dashboard.profiling_bucket_hash_table_obtained=Profilage de Seau de Table de Hashage obtenu +dashboard.gc_metadata_obtained=Métadonnées GC obtenues +dashboard.other_system_allocation_obtained=Allocation de l'autre Système obtenue +dashboard.next_gc_recycle=Traitement GC suivant +dashboard.last_gc_time=Depuis le dernier GC +dashboard.total_gc_time=Pause GC totale +dashboard.total_gc_pause=Pause GC +dashboard.last_gc_pause=Dernière Pause GC +dashboard.gc_times=Nombres de GC + +users.user_manage_panel=Gestion des Utilisateurs +users.new_account=Créer un nouveau compte +users.name=Nom +users.activated=Activés +users.admin=Administrateur +users.repos=Dépôts +users.created=Créés +users.send_register_notify=Envoyer une Notification d'enregistrement à l'utilisateur +users.new_success=Nouveau compte '%s' a été créé avec succès. +users.edit=Éditer +users.auth_source=Sources d'authentification +users.local=Locales +users.auth_login_name=Nom d'utilisateur d'authentification +users.password_helper=Laissez-le vide pour ne pas changer. +users.update_profile_success=Profil mis à jour avec succès. +users.edit_account=Modifier le Compte +users.is_activated=Ce compte est activé +users.is_admin=Ce compte possède un niveau d'accès administrateur +users.allow_git_hook=Ce compte dispose des autorisations pour créer des crochets de Git +users.allow_import_local=Ce compte dispose des permissions nécessaire à l'import des dépôts locaux +users.update_profile=Mettre à jour le profil +users.delete_account=Supprimer ce Compte +users.still_own_repo=Ce compte possède toujours des dépôts. Vous devez d'abord les supprimer ou les transférer. +users.still_has_org=Ce compte a toujours membres de l'organisation, vous avez à gauche ou supprimez tout d'abord. +users.deletion_success=Le compte a été supprimé avec succès ! + +orgs.org_manage_panel=Gestion des Organisations +orgs.name=Nom +orgs.teams=Équipes +orgs.members=Membres + +repos.repo_manage_panel=Gestion des Dépôts +repos.owner=Propriétaire +repos.name=Nom +repos.private=Privé +repos.watches=Suivi par +repos.stars=Votes +repos.issues=Problèmes + +auths.auth_manage_panel=Panel d'administration des authentifications +auths.new=Ajouter une nouvelle source d'authentification +auths.name=Nom +auths.type=Type +auths.enabled=Activé +auths.updated=Mis à jour +auths.auth_type=Type d'authentification +auths.auth_name=Nom de l'authentification +auths.domain=Domaine +auths.host=Hôte +auths.port=Port +auths.bind_dn=Bind DN +auths.bind_password=Bind mot de passe +auths.bind_password_helper=Avertissement : Ce mot de passe est stocké en clair. N'utilisez pas le mot de passe d'un compte doté de privilèges élevés. +auths.user_base=Utilisateur Search Base +auths.user_dn=Utilisateur DN +auths.attribute_name=Attribut du prénom +auths.attribute_surname=Attribut du nom de famille +auths.attribute_mail=Attribut de l'e-mail +auths.filter=Filtre utilisateur +auths.admin_filter=Filtre administrateur +auths.ms_ad_sa=Ms Ad SA +auths.smtp_auth=Type d'authentification SMTP +auths.smtphost=Hôte SMTP +auths.smtpport=Port SMTP +auths.allowed_domains=Domaines autorisés +auths.allowed_domains_helper=Laissez-le vide pour ne pas restreindre de domaines. Plusieurs domaines doivent être séparés par une virgule «, ». +auths.enable_tls=Activer le Chiffrement TLS +auths.skip_tls_verify=Ne pas vérifier TLS +auths.pam_service_name=Nom du Service PAM +auths.enable_auto_register=Connexion Automatique +auths.tips=Conseils +auths.edit=Modifier les paramètres d'authentification +auths.activated=Authentification activée +auths.new_success=Nouvelle authentification «%s » a été ajoutée avec succès. +auths.update_success=Les paramètre d'authentification a été mis à jour avec succès. +auths.update=Mettre à jour les paramètres d'authentifications +auths.delete=Supprimer cette authentification +auths.delete_auth_title=Suppression de l'authentification +auths.delete_auth_desc=Cette authentification va être supprimée. voulez-vous continuer ? +auths.deletion_success=L'authentification a été supprimée avec succès ! + +config.server_config=Configuration du Serveur +config.app_name=Nom de l'Application +config.app_ver=Version de l'Application +config.app_url=URL de l'Application +config.domain=Domaine +config.offline_mode=Mode hors-ligne +config.disable_router_log=Désactiver la Journalisation du Routeur +config.run_user=Entrer un Utilisateur +config.run_mode=Mode d'Éxécution +config.repo_root_path=Emplacement des Dépôts +config.static_file_root_path=Emplacement Racine du Fichier Statique +config.log_file_root_path=Emplacement Racine du Fichier Journal +config.script_type=Type de Script +config.reverse_auth_user=Annuler l'Authentification de l'Utilisateur +config.db_config=Configuration de la Base de Données +config.db_type=Type +config.db_host=Hôte +config.db_name=Nom +config.db_user=Utilisateur +config.db_ssl_mode=Mode SSL +config.db_ssl_mode_helper=("postgres" uniquement) +config.db_path=Emplacement +config.db_path_helper=(pour « sqlite3 » et « TIDB ») +config.service_config=Configuration du Service +config.register_email_confirm=Nécessite une confirmation par courriel +config.disable_register=Désactiver l'Enregistrement +config.show_registration_button=Afficher le bouton d'enregistrement +config.require_sign_in_view=Connexion Obligatoire pour Visualiser +config.enable_cache_avatar=Activer le Cache d'Avatar +config.mail_notify=Mailer les Notifications +config.disable_key_size_check=Désactiver la vérification de la taille de clé minimale +config.enable_captcha=Activez le Captcha +config.active_code_lives=Limites de Code Actif +config.reset_password_code_lives=Réinitialiser le Mot De Passe des Limites de Code +config.webhook_config=Configuration Webhook +config.queue_length=Longueur de la file d'attente +config.deliver_timeout=Expiration d'Envoi +config.skip_tls_verify=Ne pas vérifier TLS +config.mailer_config=Configuration du Maileur +config.mailer_enabled=Activé +config.mailer_disable_helo=Désactiver HELO +config.mailer_name=Nom +config.mailer_host=Hôte +config.mailer_user=Utilisateur +config.oauth_config=Configuration OAuth +config.oauth_enabled=Activé +config.cache_config=Configuration du Cache +config.cache_adapter=Adaptateur du Cache +config.cache_interval=Intervales du Cache +config.cache_conn=Liaison du Cache +config.session_config=Configuration de Session +config.session_provider=Fournisseur de Session +config.provider_config=Configurer le Fournisseur +config.cookie_name=Nom du Cookie +config.enable_set_cookie=Activer les Cookies +config.gc_interval_time=Intervals GC +config.session_life_time=Durée de Session +config.https_only=HTTPS uniquement +config.cookie_life_time=Expiration du Cookie +config.picture_config=Configuration d'Image +config.picture_service=Service d'Imagerie +config.disable_gravatar=Désactiver Gravatar +config.log_config=Configuration du Journal +config.log_mode=Mode du Journal + +monitor.cron=Tâches Cron +monitor.name=Nom +monitor.schedule=Planification +monitor.next=Suivant +monitor.previous=Précédent +monitor.execute_times=Nombre d'Éxécutions +monitor.process=Processus en cours d'Éxécution +monitor.desc=Description +monitor.start=Heure de Démarrage +monitor.execute_time=Heure d'Éxécution + +notices.system_notice_list=Notes Systèmes +notices.type=Type +notices.type_1=Dépôt +notices.desc=Description +notices.op=Opération +notices.delete_success=Note système supprimée avec succès. + +[action] +create_repo=a crée le dépôt <a href="%s">%s</a> +rename_repo=rebaptisé le dépôt de <code>%[1]s</code> à <a href="%[2]s">%[3]s</a> +commit_repo=a soumis à <a href="%[1]s/src/%[2]s">%[3]s</a> chez <a href="%[1]s">%[4]s</a> +create_issue=`a ouvert un problème <a href="%s/issues/%s">%s#%[2]s</a>` +create_pull_request=`pull request créée le <a href="%s/pulls/%s">%s#%[2]s</a>` +comment_issue=`a commenté le problème <a href="%s/issues/%s">%s#%[2]s</a>` +merge_pull_request=`pull request fusionné le <a href="%s/pulls/%s">%s#%[2]s</a>` +transfer_repo=a transféré le dépôt <code>%s</code> à <a href="%s">%s</a> +push_tag=a soumis le tag <a href="%s/src/%s">%[2]s</a> à <a href="%[1]s">%[3]s</a> +compare_2_commits=Comparer ces 2 commissions + +[tool] +ago=auparavant +from_now=à partir de maintenant +now=maintenant +1s=1 seconde %s +1m=1 minute %s +1h=1 heure %s +1d=1 jour %s +1w=1 semaine %s +1mon=1 mois %s +1y=1 an %s +seconds=%d secondes %s +minutes=%d minutes %s +hours=%d heures %s +days=%d jours %s +weeks=%d semaines %s +months=%d mois %s +years=%d ans %s +raw_seconds=secondes +raw_minutes=minutes + +[dropzone] +default_message=Déposez les fichiers ici ou cliquez pour télécharger. +invalid_input_type=Vous ne pouvez pas télécharger des fichiers de ce type. +file_too_big=Le fichier de taille ({{filesize}} Mo) dépasse la taille maximale ({{maxFilesize}} MB). +remove_file=Supprimer le fichier + diff --git a/conf/locale/locale_it-IT.ini b/conf/locale/locale_it-IT.ini index 225f8670..a4d428e9 100755 --- a/conf/locale/locale_it-IT.ini +++ b/conf/locale/locale_it-IT.ini @@ -1,992 +1,1009 @@ -app_desc=Un servizio Git auto-ospitato pronto all'uso
-
-home=Home
-dashboard=Pannello di controllo
-explore=Esplora
-help=Aiuto
-sign_in=Accedi
-sign_out=Esci
-sign_up=Registrati
-register=Registrati
-website=Sito Web
-version=Versione
-page=Pagina
-template=Template
-language=Lingua
-create_new=Crea...
-user_profile_and_more=Profilo utente e altro
-signed_in_as=Signed in as
-
-username=Nome utente
-email=E-mail
-password=Password
-re_type=Conferma
-captcha=Captcha
-
-repository=Repository
-organization=Organizzazione
-mirror=Mirror
-new_repo=Nuovo Repository
-new_migrate=Nuova Migrazione
-new_fork=Nuovo Fork Repository
-new_org=Nuova organizzazione
-manage_org=Gestisci le organizzazioni
-admin_panel=Pannello di amministrazione
-account_settings=Impostazioni dell'account
-settings=Impostazioni
-your_profile=Profilo
-your_settings=Impostazioni
-
-news_feed=Notizie
-pull_requests=Pull Requests
-issues=Problemi
-
-cancel=Annulla
-
-[search]
-search=Ricerca...
-repository=Repository
-user=Utente
-issue=Problema
-code=Codice
-
-[install]
-install=Installazione
-title=Passi d'installazione per il primo avvio
-docker_helper=Se stai utilizzando Gogs su Docker, per favore leggi le <a target="_blank" href="%s">Linee guida</a> con attenzione prima di cambiare qualcosa su questa pagina!
-requite_db_desc=Gogs necessita MySQL, PostgreSQL, SQLite3 o TiDB.
-db_title=Impostazioni Database
-db_type=Tipo di database
-host=Host
-user=Utente
-password=Password
-db_name=Nome del database
-db_helper=Utilizza il motore INNODB con codifica utf8_general_ci per MySQL.
-ssl_mode=Modalità SSL
-path=Percorso
-sqlite_helper=The file path of SQLite3 or TiDB database.
-err_empty_db_path=SQLite3 or TiDB database path cannot be empty.
-err_invalid_tidb_name=TiDB database name does not allow characters "." and "-".
-no_admin_and_disable_registration=You cannot disable registration without creating an admin account.
-err_empty_admin_password=Admin password cannot be empty.
-
-general_title=Impostazioni di Base dell'Applicazione
-app_name=Nome Applicazione
-app_name_helper=Scrivi qui il nome della tua organizzazione forte e chiaro!
-repo_path=Percorso Root del Repository
-repo_path_helper=Tutti i repository Git remoti saranno salvati in questa directory.
-run_user=Esegui con l'utente
-run_user_helper=L'utente deve avere accesso al percorso root del repository e avviare Gogs.
-domain=Dominio
-domain_helper=Questo modifica lo SSH clone URLs.
-ssh_port=Porta SSH
-ssh_port_helper=Port number which your SSH server is using, leave it empty to disable SSH feature.
-http_port=Porta HTTP
-http_port_helper=Porta di ascolto dell'applicazione.
-app_url=URL Applicazione
-app_url_helper=Questo influisce sugli URL per il clonaggio via HTTP/HTTPS e da qualche parte nella posta elettronica.
-
-optional_title=Impostazioni Facoltative
-email_title=Impostazioni E-mail
-smtp_host=Host SMTP
-smtp_from=Da
-smtp_from_helper=Mail da indirizzo, RFC 5322. Può essere solo un indirizzo email o il formato "Nome" <email@esempio.com>.
-mailer_user=E-mail del Mittente
-mailer_password=Password del Mittente
-register_confirm=Abilita Conferma di Registrazione
-mail_notify=Abilita Notifiche via Email
-server_service_title=Impostazioni del Server e Altri Servizi
-offline_mode=Abilita Modalità Offline
-offline_mode_popup=Disabilita il CDN anche in modalità produttiva, tutte le risorse saranno servite localmente.
-disable_gravatar=Disable Gravatar Service
-disable_gravatar_popup=Disable Gravatar and custom sources, all avatars are uploaded by users or default.
-disable_registration=Disabilita Registrazione Manuale
-disable_registration_popup=Disabilita la registrazione manuale degli utenti, solo gli amministratori possono creare account.
-enable_captcha=Abilita Captcha
-enable_captcha_popup=Require validate captcha for user self-registration.
-require_sign_in_view=Abilita Richiesta di Accesso per Vedere le Pagine
-require_sign_in_view_popup=Solo gli utenti loggati possono vedere le pagine, i visitatori potranno vedere solo le pagine di accesso e registrazione.
-admin_setting_desc=Non devi per forza creare un account admin proprio adesso, ma comunque l'utente ID=1 otterrà l'accesso da amministratore automaticamente.
-admin_title=Impostazioni Account Amministratore
-admin_name=Nome utente
-admin_password=Password
-confirm_password=Conferma Password
-admin_email=E-mail
-install_gogs=Installare Gogs
-test_git_failed=Fallito il test del comando git: %v
-sqlite3_not_available=Questa versione non supporta SQLite3, si prega di scaricare la versione binaria ufficiale da %s, NON la versione gobuild.
-invalid_db_setting=La configurazione del database non è corretta: %v
-invalid_repo_path=Percorso root del repository invalido: %v
-run_user_not_match=Run user non è l'utente corrente: %s -> %s
-save_config_failed=Fallito il salvataggio della configurazione: %v
-invalid_admin_setting=Impostazioni account Admin non valide: %v
-install_success=Benvenuto! Siamo felici che tu abbia scelto Gogs, buon divertimento.
-
-[home]
-uname_holder=Nome Utente o E-mail
-password_holder=Password
-switch_dashboard_context=Cambia Dashboard Context
-my_repos=I miei Repository
-collaborative_repos=Repository Condivisi
-my_orgs=Le mie Organizzazioni
-my_mirrors=I miei Mirror
-view_home=View %s
-
-issues.in_your_repos=Nei tuoi repository
-
-[explore]
-repos=Repository
-
-[auth]
-create_new_account=Crea un nuovo Account
-register_hepler_msg=Hai già un account? Accedi ora!
-social_register_hepler_msg=Hai già un account? Associalo ora!
-disable_register_prompt=Siamo spiacenti, registrazione è stata disabilitata. Si prega di contattare l'amministratore del sito.
-disable_register_mail=Siamo spiacenti, la conferma di registrazione via Mail è stata disattivata.
-remember_me=Ricordami
-forgot_password=Password dimenticata
-forget_password=Password dimenticata?
-sign_up_now=Bisogno di un account? Iscriviti ora.
-confirmation_mail_sent_prompt=Una nuova email di conferma è stata inviata a <b>%s</b>, verifica la tua casella di posta entro le prossime %d ore per completare la registrazione.
-sign_in_to_account=Accedi al tuo account
-active_your_account=Attiva il tuo Account
-resent_limit_prompt=Siamo spiacenti, si stanno inviando e-mail di attivazione troppo spesso. Si prega di attendere 3 minuti.
-has_unconfirmed_mail=Ciao %s, hai un indirizzo di posta elettronica non confermato (<b>%s</b>). Se non hai ricevuto una e-mail di conferma o vuoi riceverla nuovamente, fare clic sul pulsante qui sotto.
-resend_mail=Clicca qui per inviare nuovamente l'e-mail di attivazione
-email_not_associate=Questo indirizzo e-mail non è associato ad alcun account.
-send_reset_mail=Clicca qui per (ri)inviare la tua e-mail di reimpostazione password
-reset_password=Reimposta la tua Password
-invalid_code=Siamo spiacenti, il codice di conferma è scaduto o non valido.
-reset_password_helper=Clicca qui per reimpostare la password
-password_too_short=La lunghezza della password non può essere meno 6 caratteri.
-
-[mail]
-activate_account=Please activate your account
-activate_email=Verifica il tuo indirizzo e-mail
-reset_password=Reimposta la tua password
-register_success=Registrazione completata con successo, Benvenuto
-
-[modal]
-yes=Sì
-no=No
-modify=Modifica
-
-[form]
-UserName=Nome utente
-RepoName=Nome Repository
-Email=Indirizzo E-mail
-Password=Password
-Retype=Reinserisci password
-SSHTitle=Nome chiave SSH
-HttpsUrl=URL HTTPS
-PayloadUrl=URL Payload
-TeamName=Nome Team
-AuthName=Nome autorizzazione
-AdminEmail=Email dell'Admin
-
-require_error=` non può essere vuoto.`
-alpha_dash_error=` ammessi solo caratteri alfanumerici o trattini(-_).`
-alpha_dash_dot_error=` ammessi solo caratteri alfanumerici o trattini(-_) o punti.`
-size_error='deve essere %s.'
-min_size_error=` deve contenere almeno %s caratteri.`
-max_size_error=` deve contenere massimo %s caratteri.`
-email_error=` non è un indirizzo e-mail valido.`
-url_error=` non è un URL valido.`
-unknown_error=Errore sconosciuto:
-captcha_incorrect=Il Captcha non corrisponde.
-password_not_match=Le due password non corrispondono.
-
-username_been_taken=Il nome utente è già utilizzato.
-repo_name_been_taken=Il nome del Repository è già utilizzato.
-org_name_been_taken=Il nome dell'Organizzazione è già utlizzato.
-team_name_been_taken=Il nome del Team è già utilizzato.
-email_been_used=L'indirizzo E-mail è già utilizzato.
-illegal_team_name=Il nome del Team contiene caratteri non validi.
-username_password_incorrect=Nome utente o password incorretti.
-enterred_invalid_repo_name=Si prega di assicurarsi che il nome del repository inserito sia corretto.
-enterred_invalid_owner_name=Si prega di assicurarsi che il nome del proprietario inserito sia corretto.
-enterred_invalid_password=Verificare che la password inserita sia corretta.
-user_not_exist=L'utente inserito non esiste.
-last_org_owner=L'utente che si vuole rimuovere è l'ultimo membro admin del team. Ci deve essere un altro proprietario.
-
-invalid_ssh_key=Siamo spiacenti, non siamo in grado di verificare la chiave SSH: %s
-unable_verify_ssh_key=Gogs non può verificare la chiave SSH, ma assumiamo che sia valida, si prega di verificare voi stessi.
-auth_failed=Autenticazione non riuscita: %v
-
-still_own_repo=Il tuo account possiede ancora almeno un repository, dovete prima cancellarli o trasferirne la proprietà.
-still_has_org=Il tuo account è ancora associato ad almeno un'organizzazione, disassociarsi prima.
-org_still_own_repo=Questa organizzazione ha ancora la proprietà del repository, dovete cancellarla o trasferirli prima.
-
-still_own_user=Questa autenticazione è ancora in uso da almeno un utente, per favore rimuovili dall'autenticazione e riprova.
-
-target_branch_not_exist=Il ramo (branch) di destinazione non esiste.
-
-[user]
-change_avatar=Cambia il tuo avatar su gravatar.com
-change_custom_avatar=Cambia il tuo avatar nelle impostazioni
-join_on=Si è unito il
-repositories=Repository
-activity=Attività pubblica
-followers=Seguaci
-starred=Votate
-following=Seguiti
-
-form.name_reserved=L'username '%s' è riservato.
-form.name_pattern_not_allowed=La struttura del nome utente '%s' non è consentita.
-
-[settings]
-profile=Profilo
-password=Password
-ssh_keys=Chiavi SSH
-social=Account Sociali
-applications=Applicazioni
-orgs=Organizzazioni
-delete=Elimina account
-uid=Uid
-
-public_profile=Profilo pubblico
-profile_desc=Il tuo indirizzo e-mail è pubblico e sarà usato per ogni notifica inerente al tuo account, e per qualsiasi operazione web effettuata attraverso il sito.
-full_name=Nome Completo
-website=Sito web
-location=Posizione
-update_profile=Aggiorna Profilo
-update_profile_success=Il tuo profilo è stato aggiornato con successo.
-change_username=Username Cambiato
-change_username_prompt=This change will affect the way how links relate to your account.
-continue=Continua
-cancel=Annulla
-
-enable_custom_avatar=Abilita avatar personalizzato
-enable_custom_avatar_helper=Seleziona per disabilitare il fetch da Gravatar
-choose_new_avatar=Scegli un nuovo avatar
-update_avatar=Aggiorna le impostazioni avatar
-uploaded_avatar_not_a_image=Il file caricato non è un'immagine.
-no_custom_avatar_available=Nessun avatar personalizzato disponibile, impossibile abilitarlo.
-update_avatar_success=Le tue impostazioni avatar sono state aggiornate con successo.
-
-change_password=Cambia Password
-old_password=Password attuale
-new_password=Nuova Password
-retype_new_password=Re-inserisci la password
-password_incorrect=La Password attuale non è corretta.
-change_password_success=La tua password è stata cambiata con successo. Ora puoi accedere usando la nuova password.
-
-emails=Indirizzi e-mail
-manage_emails=Gestisci indirizzi email
-email_desc=Il tuo indirizzo e-mail primario sarà usato per le notifiche e altre operazioni.
-primary=Primario
-primary_email=Imposta come primario
-delete_email=Elimina
-email_deletion=E-mail Deletion
-email_deletion_desc=Delete this e-mail address will remove related information from your account. Do you want to continue?
-email_deletion_success=E-mail has been deleted successfully!
-add_new_email=Aggiungi un nuovo indirizzo E-mail
-add_email=Aggiungi E-mail
-add_email_confirmation_sent=Una nuova email di conferma è stata inviata a '%s', per favore controlla la tua posta in arrivo nelle prossime %d ore per completare il processo di registrazione.
-add_email_success=Il tuo nuovo indirizzo e-mail è stato aggiunto con successo.
-
-manage_ssh_keys=Gestisci chiavi SSH
-add_key=Aggiungi Chiave
-ssh_desc=Questa è una lista di chiavi SSH associate al tuo account. Poiché queste chiavi consentono a chiunque di ottenere accesso alle tue repository, è molto importante che tu le riconosca.
-ssh_helper=<strong>Non sai come?</strong> Controlla la guida di GitHub sul <a href="%s">creare le tue chiavi SSH</a> o sul risolvere <a href="%s">problemi frequenti</a> che potresti incontrare usando SSH.
-add_new_key=Aggiungi Chiave SSH
-ssh_key_been_used=Public key content has been used.
-ssh_key_name_used=Public key with same name has already existed.
-key_name=Nome della Chiave
-key_content=Contenuto
-add_key_success=New SSH key '%s' has been added successfully!
-delete_key=Elimina
-ssh_key_deletion=SSH Key Deletion
-ssh_key_deletion_desc=Delete this SSH key will remove all related accesses for your account. Do you want to continue?
-ssh_key_deletion_success=SSH key has been deleted successfully!
-add_on=Aggiunto il
-last_used=Ultimo accesso il
-no_activity=Nessuna attività recente
-key_state_desc=Hai utilizzato questa chiave negli ultimi 7 giorni
-token_state_desc=This token is used in last 7 days
-
-manage_social=Gestisci gli Account Sociali Associati
-social_desc=Questa è un elenco degli account sociali associati. Rimuovere qualsiasi account che non si riconosce.
-unbind=Disassocia
-unbind_success=Account sociale disassociato.
-
-manage_access_token=Gestisci i Token di Accesso Personale
-generate_new_token=Genera Nuovo Token
-tokens_desc=Tokens you have generated that can be used to access the Gogs APIs.
-new_token_desc=Da questo momento, ogni token avrà pieno accesso al tuo account.
-token_name=Nome Token
-generate_token=Genera Token
-generate_token_succees=Nuovo token di accesso generato con successo! Assicurarsi di copiare il nuovo token di accesso personale ora: non sarà possibile visualizzarlo nuovamente!
-delete_token=Elimina
-access_token_deletion=Personal Access Token Deletion
-access_token_deletion_desc=Delete this personal access token will remove all related accesses of application. Do you want to continue?
-delete_token_success=Personal access token has been removed successfully! Don't forget to update your application as well.
-
-delete_account=Elimina Account
-delete_prompt=L'operazione eliminerà permanentemente l'account e <strong>NON POTRÀ</strong> essere annullata!
-confirm_delete_account=Conferma Eliminazione
-delete_account_title=Eliminazione account
-delete_account_desc=Questo account sta per essere eliminato in modo definitivo, vuoi continuare?
-
-[repo]
-owner=Proprietario
-repo_name=Nome Repository
-repo_name_helper=I migliori nomi dei repository sono brevi, facili da memorizzare e <strong>univoci</strong>.
-visibility=Visibilità
-visiblity_helper=This repository is <span class="ui red text">Private</span>
-visiblity_helper_forced=Site admin has forced all new repositories to be <span class="ui red text">Private</span>
-visiblity_fork_helper=(Change of this value will affect all forks)
-fork_repo=Forka Repository
-fork_from=Forka da
-fork_visiblity_helper=Non puoi cambiare la visibilità di un repository forkato.
-repo_desc=Descrizione
-repo_lang=Lingua
-repo_lang_helper=Seleziona file .gitignore
-license=Licenza
-license_helper=Selezionare un file di licenza
-readme=Readme
-readme_helper=Seleziona un template per il readme
-auto_init=Initialize this repository with selected files and template
-create_repo=Crea Repository
-default_branch=Ramo (Branch) predefinito
-mirror_interval=Intervallo Mirror (in ore)
-
-form.name_reserved=Il nome repository %s è riservato.
-form.name_pattern_not_allowed=La struttura del nome del repository %s non è consentita.
-
-need_auth=Richiesta di autorizzazione
-migrate_type=Tipo di migrazione
-migrate_type_helper=This repository will be a <span class="text blue">mirror</span>
-migrate_repo=Migra Repository
-migrate.clone_address=Duplica Indirizzo
-migrate.clone_address_desc=This can be a HTTP/HTTPS/GIT URL or local server path.
-migrate.invalid_local_path=Percorso locale non valido, non esiste o non è una cartella.
-
-forked_from=forkato da
-fork_from_self=Non puoi forkare il tuo stesso repository!
-copy_link=Copia
-copy_link_success=Copied!
-copy_link_error=Press ⌘-C or Ctrl-C to copy
-click_to_copy=Copia negli appunti
-copied=OK copiato
-clone_helper=Hai bisogno di aiuto per la clonazione? Visita <a target="_blank" href="%s">Aiuto</a>!
-unwatch=Non seguire più
-watch=Segui
-unstar=Togli il voto
-star=Vota
-fork=Forka
-
-no_desc=Nessuna descrizione
-quick_guide=Guida rapida
-clone_this_repo=Clona questo repository
-create_new_repo_command=Crea nuovo repository da riga di comando
-push_exist_repo=Push un repo esistente dalla riga di comando
-repo_is_empty=This repository is empty, please come back later!
-
-
-branch=Ramo (Branch)
-tree=Albero (Tree)
-branch_and_tags=Rami (Branch) & Tag
-branches=Rami (Branch)
-tags=Tag
-issues=Problemi
-pulls=Pull Requests
-labels=Etichette
-milestones=Traguardi
-commits=Commit
-releases=Rilasci
-file_raw=Originale
-file_history=Cronologia
-file_view_raw=Vedi originale
-file_permalink=Permalink
-
-commits.commits=Commits
-commits.search=Ricerca una versione
-commits.find=Cerca
-commits.author=Autore
-commits.message=Messaggio
-commits.date=Data
-commits.older=Più vecchio
-commits.newer=Più recente
-
-issues.new=Nuovo Problema
-issues.new.labels=Etichette
-issues.new.no_label=Nessuna etichetta
-issues.new.clear_labels=Pulisci le etichette
-issues.new.milestone=Traguardo
-issues.new.no_milestone=No Milestone
-issues.new.clear_milestone=Clear milestone
-issues.new.open_milestone=Open Milestones
-issues.new.closed_milestone=Closed Milestones
-issues.new.assignee=Assegnatario
-issues.new.clear_assignee=Clear assignee
-issues.new.no_assignee=No assignee
-issues.create=Create Issue
-issues.new_label=Nuova etichetta
-issues.new_label_placeholder=Nome dell'etichetta...
-issues.create_label=Create Label
-issues.open_tab=%d Aperti
-issues.close_tab=%d Chiusi
-issues.filter_label=Etichetta
-issues.filter_label_no_select=Nessuna etichetta selezionata
-issues.filter_milestone=Traguardo
-issues.filter_milestone_no_select=No selected milestone
-issues.filter_assignee=Assegnatario
-issues.filter_assginee_no_select=No selected Assignee
-issues.filter_type=Tipo
-issues.filter_type.all_issues=Tutti i problemi
-issues.filter_type.assigned_to_you=Assegnati a te
-issues.filter_type.created_by_you=Creati da te
-issues.filter_type.mentioning_you=Che ti riguardano
-issues.filter_sort=Sort
-issues.filter_sort.latest=Newest
-issues.filter_sort.oldest=Oldest
-issues.filter_sort.recentupdate=Recently updated
-issues.filter_sort.leastupdate=Least recently updated
-issues.filter_sort.mostcomment=Most commented
-issues.filter_sort.leastcomment=Least commented
-issues.opened_by=opened %[1]s by <a href="%[2]s">%[3]s</a>
-issues.opened_by_fake=opened %[1]s by %[2]s
-issues.previous=Pagina precedente
-issues.next=Pagina successiva
-issues.open_title=Open
-issues.closed_title=Closed
-issues.num_comments=%d comments
-issues.commented_at=`commented <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.no_content=There is no content yet.
-issues.close_issue=Close
-issues.close_comment_issue=Close and comment
-issues.reopen_issue=Reopen
-issues.reopen_comment_issue=Reopen and comment
-issues.create_comment=Commento
-issues.closed_at=`closed <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.reopened_at=`reopened <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.commit_ref_at=`referenced this issue from a commit <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.poster=Poster
-issues.admin=Amministratore
-issues.owner=Proprietario
-issues.sign_up_for_free=Sign up for free
-issues.sign_in_require_desc=to join this conversation. Already have an account? <a href="%s">Sign in to comment</a>
-issues.edit=Edit
-issues.cancel=Cancel
-issues.save=Save
-issues.label_title=Nome etichetta
-issues.label_color=Colore etichetta
-issues.label_count=%d etichette
-issues.label_open_issues=%d problemi aperti
-issues.label_edit=Modifica
-issues.label_delete=Elimina
-issues.label_modify=Modifica Etichetta
-issues.label_deletion=Elimina Etichetta
-issues.label_deletion_desc=Eliminare l'etichetta rimuovera le sue informazioni in tutti i problemi correlati. Vuoi continuare?
-issues.label_deletion_success=Etichetta eliminata con successo!
-
-pulls.compare_changes=Compare Changes
-pulls.compare_changes_desc=Compare two branches and make a pull request for changes.
-pulls.compare_base=base
-pulls.compare_compare=compare
-pulls.filter_branch=Filter branch
-pulls.no_results=No results found.
-pulls.nothing_to_compare=There is nothing to compare because base and head branches are even.
-pulls.has_pull_request=`There is already a pull request between these two targets: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>`
-pulls.create=Crea Pull Request
-pulls.title_desc=wants to merge %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code>
-pulls.merged_title_desc=merged %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> %[4]s
-pulls.tab_conversation=Conversation
-pulls.tab_commits=Commits
-pulls.tab_files=Files changed
-pulls.reopen_to_merge=Please reopen this pull request to perform merge operation.
-pulls.merged=Merged
-pulls.has_merged=This pull request has been merged successfully!
-pulls.data_broken=Data of this pull request has been broken due to deletion of fork information.
-pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments.
-pulls.can_auto_merge_desc=You can perform auto-merge operation on this pull request.
-pulls.cannot_auto_merge_desc=You can't perform auto-merge operation because there are conflicts between commits.
-pulls.cannot_auto_merge_helper=Please use command line tool to solve it.
-pulls.merge_pull_request=Unisci Pull Request
-pulls.open_unmerged_pull_exists=`You can't perform reopen operation because there is already an open pull request (#%d) from same repository with same merge information and is waiting for merging.`
-
-milestones.new=New Milestone
-milestones.open_tab=%d Open
-milestones.close_tab=%d Closed
-milestones.closed=Closed %s
-milestones.no_due_date=No due date
-milestones.open=Open
-milestones.close=Close
-milestones.new_subheader=Create milestones to organize your issues.
-milestones.create=Create Milestone
-milestones.title=Title
-milestones.desc=Description
-milestones.due_date=Due Date (optional)
-milestones.clear=Clear
-milestones.invalid_due_date_format=Due date format is invalid, must be 'year-mm-dd'.
-milestones.create_success=Milestone '%s' has been created successfully!
-milestones.edit=Edit Milestone
-milestones.edit_subheader=Use better description for milestones so people won't be confused.
-milestones.cancel=Cancel
-milestones.modify=Modify Milestone
-milestones.edit_success=Changes of milestone '%s' has been saved successfully!
-milestones.deletion=Milestone Deletion
-milestones.deletion_desc=Delete this milestone will remove its information in all related issues. Do you want to continue?
-milestones.deletion_success=Milestone has been deleted successfully!
-
-settings=Impostazioni
-settings.options=Opzioni
-settings.collaboration=Collaborazione
-settings.hooks=Webhooks
-settings.githooks=Git Hooks
-settings.basic_settings=Impostazioni di Base
-settings.danger_zone=Zona Pericolosa
-settings.site=Sito Ufficiale
-settings.update_settings=Aggiorna Impostazioni
-settings.change_reponame_prompt=This change will affect how links relate to the repository.
-settings.transfer=Trasferisci proprietà
-settings.transfer_desc=Trasferisci questa repository a un altro utente o a un'organizzazione nella quale hai diritti d'amministratore.
-settings.new_owner_has_same_repo=Il nuovo proprietario ha già un repository con lo stesso nome. Per favore scegli un altro nome.
-settings.delete=Elimina questo repository
-settings.delete_desc=Una volta che hai cancellato il repository, non puoi tornare indietro. Si prega di fare attenzione.
-settings.transfer_notices_1=- You will lose access if new owner is a individual user.
-settings.transfer_notices_2=- You will conserve access if new owner is an organization and if you're one of the owners.
-settings.transfer_form_title=Please enter following information to confirm your operation:
-settings.delete_notices_1=- This operation <strong>CANNOT</strong> be undone.
-settings.delete_notices_2=- This operation will permanently delete the everything of this repository, including Git data, issues, comments and accesses of collaborators.
-settings.delete_notices_fork_1=- If this repository is public, all forks will be became independent after deletion.
-settings.delete_notices_fork_2=- If this repository is private, all forks will be removed at the same time.
-settings.delete_notices_fork_3=- If you want to keep all forks after deletion, please change visibility of this repository to public first.
-settings.update_settings_success=Le opzioni repository sono state aggiornate con successo.
-settings.transfer_owner=Nuovo Proprietario
-settings.make_transfer=Trasferisci
-settings.transfer_succeed=Proprietà del repository trasferita con successo.
-settings.confirm_delete=Conferma eliminazione
-settings.add_collaborator=Aggiungi nuovo collaboratore
-settings.add_collaborator_success=Il nuovo collaboratore è stato aggiunto.
-settings.remove_collaborator_success=Il collaboratore è stato rimosso.
-settings.user_is_org_member=L'utente è un membro dell'organizzazione che non può essere aggiunto come collaboratore.
-settings.add_webhook=Aggiungi Webhook
-settings.hooks_desc=I Webhooks sono molto simili a un basilare evento trigger HTTP POST. Ogni volta che qualcosa si verifica in Gogs, tratteremo la notifica all'host di destinazione specificato. Ulteriori informazioni in questa <a target="_blank" href="%s">Guida ai Webhooks</a>.
-settings.webhook_deletion=Delete Webhook
-settings.webhook_deletion_desc=Delete this webhook will remove its information and all delivery history. Do you want to continue?
-settings.webhook_deletion_success=Webhook has been deleted successfully!
-settings.webhook.request=Request
-settings.webhook.response=Response
-settings.webhook.headers=Headers
-settings.webhook.payload=Payload
-settings.webhook.body=Body
-settings.githooks_desc=Gli Hooks di Git sono una funzionalità di Git stesso, puoi modificare i file degli hooks supportati nell'elenco qui sotto per compiere azioni personalizzate.
-settings.githook_edit_desc=Se l'hook è inattivo, sarà presentato un contenuto esempio. Lasciando il contenuto vuoto disattiverai questo hook.
-settings.githook_name=Nome hook
-settings.githook_content=Contenuto hook
-settings.update_githook=Aggiorna Hook
-settings.add_webhook_desc=Gogs manderà una richiesta <code>POST</code> all'URL specificata, insieme alle informazioni sull'evento avvenuto. Puoi anche specificare quale tipo di formato dati vorresti ottenere all'innesco dell'hook (JSON, x-www-form-urlencoded, XML, ecc). Puoi trovare più informazioni nella nostra <a target="_blank" href="%s">Guida ai Webhook</a>.
-settings.payload_url=Payload URL
-settings.content_type=Content Type
-settings.secret=Secret
-settings.slack_username=Username
-settings.slack_icon_url=Icon URL
-settings.slack_color=Color
-settings.event_desc=Quali eventi dovrebbero innescare questo webhook?
-settings.event_push_only=Solo l'evento <code>push</code>.
-settings.event_send_everything=I need <strong>everything</strong>.
-settings.event_choose=Let me choose what I need.
-settings.event_create=Create
-settings.event_create_desc=Branch, or tag created
-settings.event_push=Push
-settings.event_push_desc=Git push to a repository
-settings.active=Attivo
-settings.active_helper=Anche i dettagli riguardanti l'evento che ha innescato l'hook saranno inviati.
-settings.add_hook_success=Il nuovo webhook è stato aggiunto.
-settings.update_webhook=Aggiorna Webhook
-settings.update_hook_success=Il webhook è stato aggiornato.
-settings.delete_webhook=Eliminare Webhook
-settings.recent_deliveries=Recenti Deliveries
-settings.hook_type=Tipo di Hook
-settings.add_slack_hook_desc=Aggiungi <a href="%s"> Slack</a> integrazione al tuo repository.
-settings.slack_token=Token
-settings.slack_domain=Dominio
-settings.slack_channel=Canale
-settings.deploy_keys=Dispiega Chiavi
-settings.add_deploy_key=Add Deploy Key
-settings.no_deploy_keys=You haven't added any deploy key.
-settings.title=Title
-settings.deploy_key_content=Content
-settings.key_been_used=Deploy key content has been used.
-settings.key_name_used=Deploy key with same name has already existed.
-settings.add_key_success=New deploy key '%s' has been added successfully!
-settings.deploy_key_deletion=Delete Deploy Key
-settings.deploy_key_deletion_desc=Delete this deploy key will remove all related accesses for this repository. Do you want to continue?
-settings.deploy_key_deletion_success=Deploy key has been deleted successfully!
-
-diff.browse_source=Sfoglia il codice sorgente
-diff.parent=parent
-diff.commit=commit
-diff.data_not_available=Diff Data non disponibile.
-diff.show_diff_stats=Mostra Diff Stats
-diff.stats_desc=<strong>%d ha cambiato i file</strong> con <strong>%d aggiunte</strong> e <strong>%d eliminazioni</strong>
-diff.bin=BIN
-diff.view_file=Vedi File
-
-release.releases=Rilasci
-release.new_release=Nuovo Rilascio
-release.draft=Bozza
-release.prerelease=Pre-Rilascio
-release.stable=Stabile
-release.edit=modifica
-release.ahead=<strong>%d</strong> commits da %s da questo rilascio
-release.source_code=Codice Sorgente
-release.tag_name=Nome tag
-release.target=Obbiettivo
-release.tag_helper=Scegli un tag esistente o crea un nuovo tag una volta pubblicato.
-release.release_title=Nome release
-release.content_with_md=Contenuto in <a href="%s">Markdown</a>
-release.write=Scrivi
-release.preview=Anteprima
-release.content_placeholder=Scrivi qualcosa
-release.loading=Caricamento...
-release.prerelease_desc=Questo è un pre-rilascio
-release.prerelease_helper=Precisiamo che questo rilascio non è pronta per la produzione.
-release.publish=Pubblica Rilascio
-release.save_draft=Salva Bozza
-release.edit_release=Modifica Rilascio
-release.tag_name_already_exist=Un rilascio con questo tag esiste già.
-
-[org]
-org_name_holder=Nome dell'Organizzazione
-org_name_helper=Le migliori organizzazioni hanno nomi brevi e memorabili.
-create_org=Crea Organizzazione
-repo_updated=Aggiornato
-people=Utenti
-invite_someone=Invita Qualcuno
-teams=Team
-lower_members=membri
-lower_repositories=repository
-create_new_team=Crea Nuovo Team
-org_desc=Descrizione
-team_name=Nome Team
-team_desc=Descrizione
-team_name_helper=Verrà usato questo nome per riferirsi a questo team nella conversazioni.
-team_desc_helper=In cosa consiste questo team?
-team_permission_desc=Quale livello di autorizzazione dovrebbe avere questa squadra?
-
-form.name_reserved=Il nome organizzazione '%s' è riservato.
-form.name_pattern_not_allowed=La struttura del nome dell'organizzazione '%s' non è consentita.
-
-settings=Impostazioni
-settings.options=Opzioni
-settings.full_name=Nome Completo
-settings.website=Sito Web
-settings.location=Residenza
-settings.update_settings=Aggiorna Impostazioni
-settings.update_setting_success=Impostazioni dell'organizzazione aggiornate con successo.
-settings.change_orgname_prompt=This change will affect how links relate to the organization.
-settings.update_avatar_success=Organization avatar setting has been updated successfully.
-settings.delete=Elimina organizzazione
-settings.delete_account=Elimina questa organizzazione
-settings.delete_prompt=L'organizzazione verrà rimossa definitivamente, e questa operazione <strong>NON PUÒ</strong> essere annullata!
-settings.confirm_delete_account=Conferma Eliminazione
-settings.delete_org_title=Eliminazione Organizzazione
-settings.delete_org_desc=Questa organizzazione sta per essere eliminato in modo permanente, vuoi continuare?
-settings.hooks_desc=Aggiungi i webhooks che verranno attivati per <strong>tutti i repository</strong> sotto questa organizzazione.
-
-members.public=Pubblico
-members.public_helper=rendi privato
-members.private=Privato
-members.private_helper=rendi pubblico
-members.owner=Proprietario
-members.member=Membro
-members.conceal=Nascondere
-members.remove=Rimuovere
-members.leave=Abbandona
-members.invite_desc=Digita un nome utente per invitare un nuovo membro a %s:
-members.invite_now=Invita ora
-
-teams.join=Iscriviti
-teams.leave=Abbandona
-teams.read_access=Accesso di Lettura
-teams.read_access_helper=Questo team sarà in grado di visualizzare e clonare i suoi repository.
-teams.write_access=Accesso di Scrittura
-teams.write_access_helper=Questo team sarà in grado di leggere i suoi repository, come pure pusharli.
-teams.admin_access=Accesso Amministratore
-teams.admin_access_helper=Questo team sarà in grado di pushare/pullare i propri repo, così come aggiungere altri collaboratori.
-teams.no_desc=Questo team non ha alcuna descrizione
-teams.settings=Impostazioni
-teams.owners_permission_desc=I Proprietari hanno pieno accesso a <strong>tutti i repository</strong> e hanno <strong>diritti di amministatore</strong> nell'organizzazione.
-teams.members=Membri del Team
-teams.update_settings=Aggiorna Impostazioni
-teams.delete_team=Elimina questo Team
-teams.add_team_member=Aggiungere un Membro al Team
-teams.delete_team_title=Eliminazione Team
-teams.delete_team_desc=Quando questo team verrà eliminato, i membri di questa squadra potrebbero perdere l'accesso ad alcuni repository. Si desidera continuare?
-teams.delete_team_success=Team eliminato con successo.
-teams.read_permission_desc=Questo Team concede accesso di <strong>Lettura</strong>: i membri possono visualizzare e clonare i repository del Team.
-teams.write_permission_desc=Questo Team concede accesso di <strong>Scrittura</strong>: i membri possono leggere e pushare i repository del Team.
-teams.admin_permission_desc=Questo Team concede accesso di <strong>Amministratore</strong>: i membri possono leggere i, pushare a, e aggiungere collaboratori ai repository del Team.
-teams.repositories=Repository di Squadra
-teams.add_team_repository=Aggiungere Repository di Squadra
-teams.remove_repo=Rimuovi
-teams.add_nonexistent_repo=Il repository che stai tentando di aggiungere non esiste, crealo prima.
-
-[admin]
-dashboard=Pannello di Controllo
-users=Utenti
-organizations=Organizzazioni
-repositories=Repository
-authentication=Autenticazioni
-config=Configurazione
-notices=Avvisi di sistema
-monitor=Monitoraggio
-first_page=First
-last_page=Last
-total=Total: %d
-
-dashboard.statistic=Statistiche
-dashboard.operations=Operazioni
-dashboard.system_status=Stato del Monitor di Sistema
-dashboard.statistic_info=Il database di Gogs ha <b>%d</b> utenti, <b>%d</b> organizzazioni, <b>%d</b> chiavi pubbliche, <b>%d</b> repository, <b>%d</b> utenti che seguono, <b>%d</b> voti, <b>%d</b> azioni, <b>%d</b> accessi, <b>%d</b> problemi, <b>%d</b> commenti, <b>%d</b> account sociali, <b>%d</b> utenti seguiti, <b>%d</b> mirror, <b>%d</b> rilasci, <b>%d</b> fonti di accesso, <b>%d</b> webhook, <b>%d</b> traguardi, <b>%d</b> etichette, <b>%d</b> incarichi hook, <b>%d</b> team, <b>%d</b> attività di aggiornamento, <b>%d</b> allegati.
-dashboard.operation_name=Nome Operazione
-dashboard.operation_switch=Cambia
-dashboard.operation_run=Esegui
-dashboard.clean_unbind_oauth=Pulire OAuthes non associati
-dashboard.clean_unbind_oauth_success=Tutti gli OAuthes non associati eliminati con successo.
-dashboard.delete_inactivate_accounts=Elimina tutti gli account inattivi
-dashboard.delete_inactivate_accounts_success=Tutti gli account inattivi eliminati con successo.
-dashboard.delete_repo_archives=Elimina tutti gli archivi dei repository
-dashboard.delete_repo_archives_success=Tutti gli archivi del repository sono stati eliminati con successo.
-dashboard.git_gc_repos=Fare la procedura di garbage collection sui repository
-dashboard.git_gc_repos_success=Tutti i repository hanno fatto la procedura di garbage collection con successo.
-dashboard.resync_all_sshkeys=Riscrivi il file '.ssh/authorized_keys' (attenzione: le chiavi non appartenenti a Gogs saranno perse)
-dashboard.resync_all_sshkeys_success=Tutte le chiavi pubbliche riscritte con successo.
-dashboard.resync_all_update_hooks=Riscrivere tutti gli update hook dei repository (necessario quando il percorso di configurazione personalizzata viene modificato)
-dashboard.resync_all_update_hooks_success=Tutti gli update hook dei repository riscritti con successo.
-
-dashboard.server_uptime=Tempo in Attività del Server
-dashboard.current_goroutine=Goroutine Correnti
-dashboard.current_memory_usage=Utilizzo di Memoria Corrente
-dashboard.total_memory_allocated=Memoria Allocata Totale
-dashboard.memory_obtained=Memoria Ottenuta
-dashboard.pointer_lookup_times=Ricerche del Puntatore
-dashboard.memory_allocate_times=Allocazioni Memoria
-dashboard.memory_free_times=Svuotamenti di Memoria
-dashboard.current_heap_usage=Utilizzo Heap Corrente
-dashboard.heap_memory_obtained=Memoria Heap Ottenuta
-dashboard.heap_memory_idle=Memoria Heap Inattiva
-dashboard.heap_memory_in_use=Memoria Heap In Uso
-dashboard.heap_memory_released=Memoria Heap Rilasciata
-dashboard.heap_objects=Oggetti dell'Heap
-dashboard.bootstrap_stack_usage=Utilizzo Pila di Bootstrap
-dashboard.stack_memory_obtained=Memoria Stack Ottenuta
-dashboard.mspan_structures_usage=Utilizzo Strutture MSpan
-dashboard.mspan_structures_obtained=Strutture MSpan Ottenute
-dashboard.mcache_structures_usage=Utilizzo di Strutture MCache
-dashboard.mcache_structures_obtained=Strutture MCache Ottenute
-dashboard.profiling_bucket_hash_table_obtained=Tabella di Hash del Bucket Ottenuta
-dashboard.gc_metadata_obtained=Metadata della GC ottenuta
-dashboard.other_system_allocation_obtained=Altre Allocazioni di Sistema Ottenute
-dashboard.next_gc_recycle=Prossimo Riciclaggio GC
-dashboard.last_gc_time=Dall'Ultimo GC
-dashboard.total_gc_time=Pausa Totale della GC
-dashboard.total_gc_pause=Pausa Totale della GC
-dashboard.last_gc_pause=Ultima pausa della GC
-dashboard.gc_times=Esecuzioni GC
-
-users.user_manage_panel=Pannello Gestione Utenti
-users.new_account=Crea Nuovo Account
-users.name=Nome
-users.activated=Attivato
-users.admin=Amministratore
-users.repos=Repo
-users.created=Creato
-users.send_register_notify=Send Registration Notification To User
-users.new_success=New account '%s' has been created successfully.
-users.edit=Modifica
-users.auth_source=Authentication Source
-users.local=Locale
-users.auth_login_name=Authentication Login Name
-users.password_helper=Leave it empty to remain unchanged.
-users.update_profile_success=Profilo dell'account aggiornato con successo.
-users.edit_account=Modifica Account
-users.is_activated=Questo account è attivato
-users.is_admin=Questo account ha permessi di amministratore
-users.allow_git_hook=Questo account ha il permesso di creare hooks di Git
-users.update_profile=Aggiornare Profilo Account
-users.delete_account=Elimina Questo Account
-users.still_own_repo=Questo account possiede ancora almeno un repository, devi prima cancellarli o trasferirli.
-users.still_has_org=Questo account appartiene ancora ad almeno un'organizzazione, è necessario prima abbandonarle o eliminale.
-users.deletion_success=Account has been deleted successfully!
-
-orgs.org_manage_panel=Pannello Gestione Organizzazioni
-orgs.name=Nome
-orgs.teams=Team
-orgs.members=Membri
-
-repos.repo_manage_panel=Pannello Organizzazione Repository
-repos.owner=Proprietario
-repos.name=Nome
-repos.private=Privati
-repos.watches=Segue
-repos.stars=Voti
-repos.issues=Problemi
-
-auths.auth_manage_panel=Authentication Manage Panel
-auths.new=Add New Source
-auths.name=Nome
-auths.type=Tipo
-auths.enabled=Attivo
-auths.updated=Aggiornato
-auths.auth_type=Authentication Type
-auths.auth_name=Authentication Name
-auths.domain=Dominio
-auths.host=Host
-auths.port=Porta
-auths.bind_dn=Bind DN
-auths.bind_password=Bind Password
-auths.bind_password_helper=Warning: This password is stored in plain text. Do not use a high privileged account.
-auths.user_base=User Search Base
-auths.user_dn=User DN
-auths.attribute_name=Attributo Nome
-auths.attribute_surname=Attributo Cognome
-auths.attribute_mail=Attributo Email
-auths.filter=User Filter
-auths.admin_filter=Admin Filter
-auths.ms_ad_sa=Ms Ad SA
-auths.smtp_auth=SMTP Authentication Type
-auths.smtphost=Host SMTP
-auths.smtpport=Porta SMTP
-auths.allowed_domains=Allowed Domains
-auths.allowed_domains_helper=Leave it empty to not restrict any domains. Multiple domains should be separated by comma ','.
-auths.enable_tls=Abilitare Crittografia TLS
-auths.skip_tls_verify=Skip TLS Verify
-auths.pam_service_name=Nome del Servizio PAM
-auths.enable_auto_register=Abilitare Registrazione Automatica
-auths.tips=Consigli
-auths.edit=Edit Authentication Setting
-auths.activated=Questa Autenticazione è stata attivata
-auths.new_success=New authentication '%s' has been added successfully.
-auths.update_success=Authentication setting has been updated successfully.
-auths.update=Update Authentication Setting
-auths.delete=Delete This Authentication
-auths.delete_auth_title=Authentication Deletion
-auths.delete_auth_desc=This authentication is going to be deleted, do you want to continue?
-auths.deletion_success=Authentication has been deleted successfully!
-
-config.server_config=Configurazione Server
-config.app_name=Nome Applicazione
-config.app_ver=Versione Applicazione
-config.app_url=URL Applicazione
-config.domain=Dominio
-config.offline_mode=Modalità Offline
-config.disable_router_log=Disattivare Log del Router
-config.run_user=Utente Esecutore
-config.run_mode=Modalità Esecuzione
-config.repo_root_path=Percorso Root del Repository
-config.static_file_root_path=Percorso Root del File Statico
-config.log_file_root_path=Percorso Root del File di Log
-config.script_type=Tipo di Script
-config.reverse_auth_user=Autenticazione Utente Inversa
-config.db_config=Configurazione Database
-config.db_type=Tipo
-config.db_host=Host
-config.db_name=Nome
-config.db_user=Utente
-config.db_ssl_mode=Modalità SSL
-config.db_ssl_mode_helper=(solo per "postgres")
-config.db_path=Percorso
-config.db_path_helper=(for "sqlite3" and "tidb")
-config.service_config=Configurazione Servizio
-config.register_email_confirm=Richiedono Conferma dell'Email
-config.disable_register=Disabilita Registrazione
-config.show_registration_button=Mostra Pulsane Registrazione
-config.require_sign_in_view=Richiesto Accesso per Vedere
-config.enable_cache_avatar=Abilitare Cache dell'Avatar
-config.mail_notify=Email di Notifica
-config.disable_key_size_check=Disable Minimum Key Size Check
-config.enable_captcha=Enable Captcha
-config.active_code_lives=Attiva Vita del Codice
-config.reset_password_code_lives=Reimpostare Password della Vita del Codice
-config.webhook_config=Configurazione Webhook
-config.queue_length=Queue Length
-config.deliver_timeout=Tempo Limite di Consegna
-config.skip_tls_verify=Salta verifiche TLS
-config.mailer_config=Configurazione Mailer
-config.mailer_enabled=Attivo
-config.mailer_disable_helo=Disattiva HELO
-config.mailer_name=Nome
-config.mailer_host=Host
-config.mailer_user=Utente
-config.oauth_config=Configurazione OAuth
-config.oauth_enabled=Attivo
-config.cache_config=Configurazione Cache
-config.cache_adapter=Adattatore Cache
-config.cache_interval=Intervallo Cache
-config.cache_conn=Connessione Cache
-config.session_config=Configurazione Sessione
-config.session_provider=Fornitore Sessione
-config.provider_config=Impostazioni Provider
-config.cookie_name=Nome del Cookie
-config.enable_set_cookie=Abilita Uso dei Cookie
-config.gc_interval_time=Intervallo di tempo della GC
-config.session_life_time=Durata Sessione
-config.https_only=Solo HTTPS
-config.cookie_life_time=Durata Cookie
-config.picture_config=Configurazione Foto
-config.picture_service=Servizio foto
-config.disable_gravatar=Disabilita Gravatar
-config.log_config=Configurazione Log
-config.log_mode=Modalità Log
-
-monitor.cron=Incarici di cron
-monitor.name=Nome
-monitor.schedule=Agenda
-monitor.next=La Prossima Volta
-monitor.previous=La Scorsa Volta
-monitor.execute_times=Numero di Esecuzioni
-monitor.process=Processi in Esecuzione
-monitor.desc=Descrizione
-monitor.start=Orario Avvio
-monitor.execute_time=Tempo di Esecuzione
-
-notices.system_notice_list=Avvisi di Sistema
-notices.type=Tipo
-notices.type_1=Repository
-notices.desc=Descrizione
-notices.op=Op.
-notices.delete_success=Avviso di sistema cancellato con successo.
-
-[action]
-create_repo=ha creato il repository <a href="%s">%s</a>
-rename_repo=renamed repository from <code>%[1]s</code> to <a href="%[2]s">%[3]s</a>
-commit_repo=ha pushato nel <a href="%s/src/%s">%[2]s</a> in <a href="%[1]s">%[3]s</a>
-create_issue=`ha aperto il problema <a href="%s/issues/%s">%s#%[2]s</a>`
-create_pull_request=`creata pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-comment_issue=`ha commentato il problema <a href="%s/issues/%s">%s#%[2]s</a>`
-merge_pull_request=`merged pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-transfer_repo=ha trasferito il repository <code>%s</code> a <a href="%s">%s</a>
-push_tag=ha pushato il tag <a href="%s/src/%s">%[2]s</a> a <a href="%[1]s">%[3]s</a>
-compare_2_commits=Vedi confronto per questi 2 commit
-
-[tool]
-ago=fa
-from_now=da adesso
-now=ora
-1s=1 secondo %s
-1m=1 minuto %s
-1h=1 ora %s
-1d=1 giorno %s
-1w=1 settimana %s
-1mon=1 mese %s
-1y=1 anno %s
-seconds=%d secondi %s
-minutes=%d minuti %s
-hours=%d ore %s
-days=%d giorni %s
-weeks=%d settimane %s
-months=%d mesi %s
-years=%d anni %s
-raw_seconds=secondi
-raw_minutes=minuti
-
-[dropzone]
-default_message=Drop files here or click to upload.
-invalid_input_type=You can't upload files of this type.
-file_too_big=File size({{filesize}} MB) exceeds maximum size({{maxFilesize}} MB).
-remove_file=Remove file
-
+app_desc=Un servizio Git auto-ospitato pronto all'uso + +home=Home +dashboard=Pannello di controllo +explore=Esplora +help=Aiuto +sign_in=Accedi +sign_out=Esci +sign_up=Registrati +register=Registrati +website=Sito Web +version=Versione +page=Pagina +template=Template +language=Lingua +create_new=Crea... +user_profile_and_more=Profilo utente e altro +signed_in_as=Signed in as + +username=Nome utente +email=E-mail +password=Password +re_type=Conferma +captcha=Captcha + +repository=Repository +organization=Organizzazione +mirror=Mirror +new_repo=Nuovo Repository +new_migrate=Nuova Migrazione +new_fork=Nuovo Fork Repository +new_org=Nuova organizzazione +manage_org=Gestisci le organizzazioni +admin_panel=Pannello di amministrazione +account_settings=Impostazioni dell'account +settings=Impostazioni +your_profile=Profilo +your_settings=Impostazioni + +news_feed=Notizie +pull_requests=Pull Requests +issues=Problemi + +cancel=Annulla + +[search] +search=Ricerca... +repository=Repository +user=Utente +issue=Problema +code=Codice + +[install] +install=Installazione +title=Passi d'installazione per il primo avvio +docker_helper=Se stai utilizzando Gogs su Docker, per favore leggi le <a target="_blank" href="%s">Linee guida</a> con attenzione prima di cambiare qualcosa su questa pagina! +requite_db_desc=Gogs necessita MySQL, PostgreSQL, SQLite3 o TiDB. +db_title=Impostazioni Database +db_type=Tipo di database +host=Host +user=Utente +password=Password +db_name=Nome del database +db_helper=Utilizza il motore INNODB con codifica utf8_general_ci per MySQL. +ssl_mode=Modalità SSL +path=Percorso +sqlite_helper=The file path of SQLite3 or TiDB database. +err_empty_db_path=SQLite3 or TiDB database path cannot be empty. +err_invalid_tidb_name=TiDB database name does not allow characters "." and "-". +no_admin_and_disable_registration=Non puoi disabilitare la registrazione senza aver creato un amministratore. +err_empty_admin_password=La password dell'amministratore non puo' essere vuota. + +general_title=Impostazioni di Base dell'Applicazione +app_name=Nome Applicazione +app_name_helper=Scrivi qui il nome della tua organizzazione forte e chiaro! +repo_path=Percorso Root del Repository +repo_path_helper=Tutti i repository Git remoti saranno salvati in questa directory. +run_user=Esegui con l'utente +run_user_helper=L'utente deve avere accesso al percorso root del repository e avviare Gogs. +domain=Dominio +domain_helper=Questo modifica lo SSH clone URLs. +ssh_port=Porta SSH +ssh_port_helper=Port number which your SSH server is using, leave it empty to disable SSH feature. +http_port=Porta HTTP +http_port_helper=Porta di ascolto dell'applicazione. +app_url=URL Applicazione +app_url_helper=Questo influisce sugli URL per il clonaggio via HTTP/HTTPS e da qualche parte nella posta elettronica. + +optional_title=Impostazioni Facoltative +email_title=Impostazioni E-mail +smtp_host=Host SMTP +smtp_from=Da +smtp_from_helper=Mail da indirizzo, RFC 5322. Può essere solo un indirizzo email o il formato "Nome" <email@esempio.com>. +mailer_user=E-mail del Mittente +mailer_password=Password del Mittente +register_confirm=Abilita Conferma di Registrazione +mail_notify=Abilita Notifiche via Email +server_service_title=Impostazioni del Server e Altri Servizi +offline_mode=Abilita Modalità Offline +offline_mode_popup=Disabilita il CDN anche in modalità produttiva, tutte le risorse saranno servite localmente. +disable_gravatar=Disable Gravatar Service +disable_gravatar_popup=Disable Gravatar and custom sources, all avatars are uploaded by users or default. +disable_registration=Disabilita Registrazione Manuale +disable_registration_popup=Disabilita la registrazione manuale degli utenti, solo gli amministratori possono creare account. +enable_captcha=Abilita Captcha +enable_captcha_popup=Require validate captcha for user self-registration. +require_sign_in_view=Abilita Richiesta di Accesso per Vedere le Pagine +require_sign_in_view_popup=Solo gli utenti loggati possono vedere le pagine, i visitatori potranno vedere solo le pagine di accesso e registrazione. +admin_setting_desc=Non devi per forza creare un account admin proprio adesso, ma comunque l'utente ID=1 otterrà l'accesso da amministratore automaticamente. +admin_title=Impostazioni Account Amministratore +admin_name=Nome utente +admin_password=Password +confirm_password=Conferma Password +admin_email=Admin E-mail +install_gogs=Installare Gogs +test_git_failed=Fallito il test del comando git: %v +sqlite3_not_available=Questa versione non supporta SQLite3, si prega di scaricare la versione binaria ufficiale da %s, NON la versione gobuild. +invalid_db_setting=La configurazione del database non è corretta: %v +invalid_repo_path=Percorso root del repository invalido: %v +run_user_not_match=Run user non è l'utente corrente: %s -> %s +save_config_failed=Fallito il salvataggio della configurazione: %v +invalid_admin_setting=Impostazioni account Admin non valide: %v +install_success=Benvenuto! Siamo felici che tu abbia scelto Gogs, buon divertimento. + +[home] +uname_holder=Nome Utente o E-mail +password_holder=Password +switch_dashboard_context=Cambia Dashboard Context +my_repos=I miei Repository +collaborative_repos=Repository Condivisi +my_orgs=Le mie Organizzazioni +my_mirrors=I miei Mirror +view_home=Vedi %s + +issues.in_your_repos=Nei tuoi repository + +[explore] +repos=Repository + +[auth] +create_new_account=Crea un nuovo Account +register_hepler_msg=Hai già un account? Accedi ora! +social_register_hepler_msg=Hai già un account? Associalo ora! +disable_register_prompt=Siamo spiacenti, registrazione è stata disabilitata. Si prega di contattare l'amministratore del sito. +disable_register_mail=Siamo spiacenti, la conferma di registrazione via Mail è stata disattivata. +remember_me=Ricordami +forgot_password=Password dimenticata +forget_password=Password dimenticata? +sign_up_now=Bisogno di un account? Iscriviti ora. +confirmation_mail_sent_prompt=Una nuova email di conferma è stata inviata a <b>%s</b>, verifica la tua casella di posta entro le prossime %d ore per completare la registrazione. +active_your_account=Attiva il tuo Account +resent_limit_prompt=Siamo spiacenti, si stanno inviando e-mail di attivazione troppo spesso. Si prega di attendere 3 minuti. +has_unconfirmed_mail=Ciao %s, hai un indirizzo di posta elettronica non confermato (<b>%s</b>). Se non hai ricevuto una e-mail di conferma o vuoi riceverla nuovamente, fare clic sul pulsante qui sotto. +resend_mail=Clicca qui per inviare nuovamente l'e-mail di attivazione +email_not_associate=Questo indirizzo e-mail non è associato ad alcun account. +send_reset_mail=Clicca qui per (ri)inviare la tua e-mail di reimpostazione password +reset_password=Reimposta la tua Password +invalid_code=Siamo spiacenti, il codice di conferma è scaduto o non valido. +reset_password_helper=Clicca qui per reimpostare la password +password_too_short=La lunghezza della password non può essere meno 6 caratteri. + +[mail] +activate_account=Per favore attiva il tuo account +activate_email=Verifica il tuo indirizzo e-mail +reset_password=Reimposta la tua password +register_success=Registrazione completata con successo, Benvenuto +register_notify=Welcome on board + +[modal] +yes=Sì +no=No +modify=Modifica + +[form] +UserName=Nome utente +RepoName=Nome Repository +Email=Indirizzo E-mail +Password=Password +Retype=Reinserisci password +SSHTitle=Nome chiave SSH +HttpsUrl=URL HTTPS +PayloadUrl=URL Payload +TeamName=Nome Team +AuthName=Nome autorizzazione +AdminEmail=Email dell'Admin + +require_error=` non può essere vuoto.` +alpha_dash_error=` ammessi solo caratteri alfanumerici o trattini(-_).` +alpha_dash_dot_error=` ammessi solo caratteri alfanumerici o trattini(-_) o punti.` +size_error='deve essere %s.' +min_size_error=` deve contenere almeno %s caratteri.` +max_size_error=` deve contenere massimo %s caratteri.` +email_error=` non è un indirizzo e-mail valido.` +url_error=` non è un URL valido.` +include_error=` deve contenere la stringa '%s'.` +unknown_error=Errore sconosciuto: +captcha_incorrect=Il Captcha non corrisponde. +password_not_match=Le due password non corrispondono. + +username_been_taken=Il nome utente è già utilizzato. +repo_name_been_taken=Il nome del Repository è già utilizzato. +org_name_been_taken=Il nome dell'Organizzazione è già utlizzato. +team_name_been_taken=Il nome del Team è già utilizzato. +email_been_used=L'indirizzo E-mail è già utilizzato. +illegal_team_name=Il nome del Team contiene caratteri non validi. +username_password_incorrect=Nome utente o password incorretti. +enterred_invalid_repo_name=Si prega di assicurarsi che il nome del repository inserito sia corretto. +enterred_invalid_owner_name=Si prega di assicurarsi che il nome del proprietario inserito sia corretto. +enterred_invalid_password=Verificare che la password inserita sia corretta. +user_not_exist=L'utente inserito non esiste. +last_org_owner=L'utente che si vuole rimuovere è l'ultimo membro admin del team. Ci deve essere un altro proprietario. + +invalid_ssh_key=Siamo spiacenti, non siamo in grado di verificare la chiave SSH: %s +unable_verify_ssh_key=Gogs non può verificare la chiave SSH, ma assumiamo che sia valida, si prega di verificare voi stessi. +auth_failed=Autenticazione non riuscita: %v + +still_own_repo=Il tuo account possiede ancora almeno un repository, dovete prima cancellarli o trasferirne la proprietà. +still_has_org=Il tuo account è ancora associato ad almeno un'organizzazione, disassociarsi prima. +org_still_own_repo=Questa organizzazione ha ancora la proprietà del repository, dovete cancellarla o trasferirli prima. + +still_own_user=Questa autenticazione è ancora in uso da almeno un utente, per favore rimuovili dall'autenticazione e riprova. + +target_branch_not_exist=Il ramo (branch) di destinazione non esiste. + +[user] +change_avatar=Cambia il tuo avatar su gravatar.com +change_custom_avatar=Cambia il tuo avatar nelle impostazioni +join_on=Si è unito il +repositories=Repository +activity=Attività pubblica +followers=Seguaci +starred=Votate +following=Seguiti + +form.name_reserved=L'username '%s' è riservato. +form.name_pattern_not_allowed=La struttura del nome utente '%s' non è consentita. + +[settings] +profile=Profilo +password=Password +ssh_keys=Chiavi SSH +social=Account Sociali +applications=Applicazioni +orgs=Organizzazioni +delete=Elimina account +uid=Uid + +public_profile=Profilo pubblico +profile_desc=Il tuo indirizzo e-mail è pubblico e sarà usato per ogni notifica inerente al tuo account, e per qualsiasi operazione web effettuata attraverso il sito. +full_name=Nome Completo +website=Sito web +location=Posizione +update_profile=Aggiorna Profilo +update_profile_success=Il tuo profilo è stato aggiornato con successo. +change_username=Username Cambiato +change_username_prompt=This change will affect the way how links relate to your account. +continue=Continua +cancel=Annulla + +enable_custom_avatar=Abilita avatar personalizzato +enable_custom_avatar_helper=Seleziona per disabilitare il fetch da Gravatar +choose_new_avatar=Scegli un nuovo avatar +update_avatar=Aggiorna le impostazioni avatar +uploaded_avatar_not_a_image=Il file caricato non è un'immagine. +no_custom_avatar_available=Nessun avatar personalizzato disponibile, impossibile abilitarlo. +update_avatar_success=Le tue impostazioni avatar sono state aggiornate con successo. + +change_password=Cambia Password +old_password=Password attuale +new_password=Nuova Password +retype_new_password=Re-inserisci la password +password_incorrect=La Password attuale non è corretta. +change_password_success=La tua password è stata cambiata con successo. Ora puoi accedere usando la nuova password. + +emails=Indirizzi e-mail +manage_emails=Gestisci indirizzi email +email_desc=Il tuo indirizzo e-mail primario sarà usato per le notifiche e altre operazioni. +primary=Primario +primary_email=Imposta come primario +delete_email=Elimina +email_deletion=E-mail Deletion +email_deletion_desc=Delete this e-mail address will remove related information from your account. Do you want to continue? +email_deletion_success=E-mail has been deleted successfully! +add_new_email=Aggiungi un nuovo indirizzo E-mail +add_email=Aggiungi E-mail +add_email_confirmation_sent=Una nuova email di conferma è stata inviata a '%s', per favore controlla la tua posta in arrivo nelle prossime %d ore per completare il processo di registrazione. +add_email_success=Il tuo nuovo indirizzo e-mail è stato aggiunto con successo. + +manage_ssh_keys=Gestisci chiavi SSH +add_key=Aggiungi Chiave +ssh_desc=Questa è una lista di chiavi SSH associate al tuo account. Poiché queste chiavi consentono a chiunque di ottenere accesso alle tue repository, è molto importante che tu le riconosca. +ssh_helper=<strong>Non sai come?</strong> Controlla la guida di GitHub sul <a href="%s">creare le tue chiavi SSH</a> o sul risolvere <a href="%s">problemi frequenti</a> che potresti incontrare usando SSH. +add_new_key=Aggiungi Chiave SSH +ssh_key_been_used=Public key content has been used. +ssh_key_name_used=Public key with same name has already existed. +key_name=Nome della Chiave +key_content=Contenuto +add_key_success=New SSH key '%s' has been added successfully! +delete_key=Elimina +ssh_key_deletion=SSH Key Deletion +ssh_key_deletion_desc=Delete this SSH key will remove all related accesses for your account. Do you want to continue? +ssh_key_deletion_success=La chiave SSH e' stata cancellata con successo! +add_on=Aggiunto il +last_used=Ultimo accesso il +no_activity=Nessuna attività recente +key_state_desc=Hai utilizzato questa chiave negli ultimi 7 giorni +token_state_desc=Questo token e' satato utilizzato negli ultimi 7 giorni + +manage_social=Gestisci gli Account Sociali Associati +social_desc=Questa è un elenco degli account sociali associati. Rimuovere qualsiasi account che non si riconosce. +unbind=Disassocia +unbind_success=Account sociale disassociato. + +manage_access_token=Gestisci i Token di Accesso Personale +generate_new_token=Genera Nuovo Token +tokens_desc=Tokens you have generated that can be used to access the Gogs APIs. +new_token_desc=Da questo momento, ogni token avrà pieno accesso al tuo account. +token_name=Nome Token +generate_token=Genera Token +generate_token_succees=Nuovo token di accesso generato con successo! Assicurarsi di copiare il nuovo token di accesso personale ora: non sarà possibile visualizzarlo nuovamente! +delete_token=Elimina +access_token_deletion=Personal Access Token Deletion +access_token_deletion_desc=Delete this personal access token will remove all related accesses of application. Do you want to continue? +delete_token_success=Personal access token has been removed successfully! Don't forget to update your application as well. + +delete_account=Elimina Account +delete_prompt=L'operazione eliminerà permanentemente l'account e <strong>NON POTRÀ</strong> essere annullata! +confirm_delete_account=Conferma Eliminazione +delete_account_title=Eliminazione account +delete_account_desc=Questo account sta per essere eliminato in modo definitivo, vuoi continuare? + +[repo] +owner=Proprietario +repo_name=Nome Repository +repo_name_helper=I migliori nomi dei repository sono brevi, facili da memorizzare e <strong>univoci</strong>. +visibility=Visibilità +visiblity_helper=This repository is <span class="ui red text">Private</span> +visiblity_helper_forced=Site admin has forced all new repositories to be <span class="ui red text">Private</span> +visiblity_fork_helper=(Change of this value will affect all forks) +clone_helper=Hai bisogno di aiuto per la clonazione? Visita <a target="_blank" href="%s">Aiuto</a>! +fork_repo=Forka Repository +fork_from=Forka da +fork_visiblity_helper=Non puoi cambiare la visibilità di un repository forkato. +repo_desc=Descrizione +repo_lang=Lingua +repo_lang_helper=Seleziona file .gitignore +license=Licenza +license_helper=Selezionare un file di licenza +readme=Readme +readme_helper=Seleziona un template per il readme +auto_init=Initialize this repository with selected files and template +create_repo=Crea Repository +default_branch=Ramo (Branch) predefinito +mirror_interval=Intervallo Mirror (in ore) +watchers=Watchers +stargazers=Stargazers +forks=Forks + +form.name_reserved=Il nome repository %s è riservato. +form.name_pattern_not_allowed=La struttura del nome del repository %s non è consentita. + +need_auth=Richiesta di autorizzazione +migrate_type=Tipo di migrazione +migrate_type_helper=This repository will be a <span class="text blue">mirror</span> +migrate_repo=Migra Repository +migrate.clone_address=Duplica Indirizzo +migrate.clone_address_desc=This can be a HTTP/HTTPS/GIT URL or local server path. +migrate.permission_denied=You are not allowed to import local repositories. +migrate.invalid_local_path=Percorso locale non valido, non esiste o non è una cartella. +migrate.failed=Migration failed: %v + +forked_from=forkato da +fork_from_self=Non puoi forkare il tuo stesso repository! +copy_link=Copia +copy_link_success=Copiato! +copy_link_error=Press ⌘-C or Ctrl-C to copy +copied=OK copiato +unwatch=Non seguire più +watch=Segui +unstar=Togli il voto +star=Vota +fork=Forka + +no_desc=Nessuna descrizione +quick_guide=Guida rapida +clone_this_repo=Clona questo repository +create_new_repo_command=Crea nuovo repository da riga di comando +push_exist_repo=Push un repo esistente dalla riga di comando +repo_is_empty=This repository is empty, please come back later! + +branch=Ramo (Branch) +tree=Albero (Tree) +filter_branch_and_tag=Filter branch or tag +branches=Rami (Branch) +tags=Tag +issues=Problemi +pulls=Pull Requests +labels=Etichette +milestones=Traguardi +commits=Commit +releases=Rilasci +file_raw=Originale +file_history=Cronologia +file_view_raw=Vedi originale +file_permalink=Permalink + +commits.commits=Commits +commits.search=Ricerca una versione +commits.find=Cerca +commits.author=Autore +commits.message=Messaggio +commits.date=Data +commits.older=Più vecchio +commits.newer=Più recente + +issues.new=Nuovo Problema +issues.new.labels=Etichette +issues.new.no_label=Nessuna etichetta +issues.new.clear_labels=Pulisci le etichette +issues.new.milestone=Traguardo +issues.new.no_milestone=No Milestone +issues.new.clear_milestone=Clear milestone +issues.new.open_milestone=Open Milestones +issues.new.closed_milestone=Closed Milestones +issues.new.assignee=Assegnatario +issues.new.clear_assignee=Clear assignee +issues.new.no_assignee=No assignee +issues.create=Create Issue +issues.new_label=Nuova etichetta +issues.new_label_placeholder=Nome dell'etichetta... +issues.create_label=Create Label +issues.open_tab=%d Aperti +issues.close_tab=%d Chiusi +issues.filter_label=Etichetta +issues.filter_label_no_select=Nessuna etichetta selezionata +issues.filter_milestone=Traguardo +issues.filter_milestone_no_select=No selected milestone +issues.filter_assignee=Assegnatario +issues.filter_assginee_no_select=No selected Assignee +issues.filter_type=Tipo +issues.filter_type.all_issues=Tutti i problemi +issues.filter_type.assigned_to_you=Assegnati a te +issues.filter_type.created_by_you=Creati da te +issues.filter_type.mentioning_you=Che ti riguardano +issues.filter_sort=Ordina +issues.filter_sort.latest=Newest +issues.filter_sort.oldest=Oldest +issues.filter_sort.recentupdate=Recently updated +issues.filter_sort.leastupdate=Least recently updated +issues.filter_sort.mostcomment=Most commented +issues.filter_sort.leastcomment=Least commented +issues.opened_by=opened %[1]s by <a href="%[2]s">%[3]s</a> +issues.opened_by_fake=opened %[1]s by %[2]s +issues.previous=Pagina precedente +issues.next=Pagina successiva +issues.open_title=Open +issues.closed_title=Closed +issues.num_comments=%d comments +issues.commented_at=`commented <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.no_content=There is no content yet. +issues.close_issue=Chiudi +issues.close_comment_issue=Comment and close +issues.reopen_issue=Reopen +issues.reopen_comment_issue=Comment and reopen +issues.create_comment=Commento +issues.closed_at=`closed <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.reopened_at=`reopened <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.commit_ref_at=`referenced this issue from a commit <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.poster=Poster +issues.admin=Amministratore +issues.owner=Proprietario +issues.sign_up_for_free=Registrati gratuitamente +issues.sign_in_require_desc=to join this conversation. Already have an account? <a href="%s">Sign in to comment</a> +issues.edit=Edit +issues.cancel=Cancel +issues.save=Save +issues.label_title=Nome etichetta +issues.label_color=Colore etichetta +issues.label_count=%d etichette +issues.label_open_issues=%d problemi aperti +issues.label_edit=Modifica +issues.label_delete=Elimina +issues.label_modify=Modifica Etichetta +issues.label_deletion=Elimina Etichetta +issues.label_deletion_desc=Eliminare l'etichetta rimuovera le sue informazioni in tutti i problemi correlati. Vuoi continuare? +issues.label_deletion_success=Etichetta eliminata con successo! + +pulls.new=New Pull Request +pulls.compare_changes=Compare Changes +pulls.compare_changes_desc=Compare two branches and make a pull request for changes. +pulls.compare_base=base +pulls.compare_compare=compare +pulls.filter_branch=Filter branch +pulls.no_results=No results found. +pulls.nothing_to_compare=There is nothing to compare because base and head branches are even. +pulls.has_pull_request=`There is already a pull request between these two targets: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>` +pulls.create=Crea Pull Request +pulls.title_desc=wants to merge %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> +pulls.merged_title_desc=merged %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> %[4]s +pulls.tab_conversation=Conversation +pulls.tab_commits=Commits +pulls.tab_files=Files changed +pulls.reopen_to_merge=Please reopen this pull request to perform merge operation. +pulls.merged=Merged +pulls.has_merged=This pull request has been merged successfully! +pulls.data_broken=Data of this pull request has been broken due to deletion of fork information. +pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments. +pulls.can_auto_merge_desc=You can perform auto-merge operation on this pull request. +pulls.cannot_auto_merge_desc=You can't perform auto-merge operation because there are conflicts between commits. +pulls.cannot_auto_merge_helper=Please use command line tool to solve it. +pulls.merge_pull_request=Unisci Pull Request +pulls.open_unmerged_pull_exists=`You can't perform reopen operation because there is already an open pull request (#%d) from same repository with same merge information and is waiting for merging.` + +milestones.new=New Milestone +milestones.open_tab=%d Open +milestones.close_tab=%d Closed +milestones.closed=Closed %s +milestones.no_due_date=No due date +milestones.open=Open +milestones.close=Close +milestones.new_subheader=Create milestones to organize your issues. +milestones.create=Create Milestone +milestones.title=Title +milestones.desc=Description +milestones.due_date=Due Date (optional) +milestones.clear=Clear +milestones.invalid_due_date_format=Due date format is invalid, must be 'yyyy-mm-dd'. +milestones.create_success=Milestone '%s' has been created successfully! +milestones.edit=Edit Milestone +milestones.edit_subheader=Use better description for milestones so people won't be confused. +milestones.cancel=Cancel +milestones.modify=Modify Milestone +milestones.edit_success=Changes of milestone '%s' has been saved successfully! +milestones.deletion=Milestone Deletion +milestones.deletion_desc=Delete this milestone will remove its information in all related issues. Do you want to continue? +milestones.deletion_success=Milestone has been deleted successfully! + +settings=Impostazioni +settings.options=Opzioni +settings.collaboration=Collaborazione +settings.hooks=Webhooks +settings.githooks=Git Hooks +settings.basic_settings=Impostazioni di Base +settings.danger_zone=Zona Pericolosa +settings.site=Sito Ufficiale +settings.update_settings=Aggiorna Impostazioni +settings.change_reponame_prompt=This change will affect how links relate to the repository. +settings.transfer=Trasferisci proprietà +settings.transfer_desc=Trasferisci questa repository a un altro utente o a un'organizzazione nella quale hai diritti d'amministratore. +settings.new_owner_has_same_repo=Il nuovo proprietario ha già un repository con lo stesso nome. Per favore scegli un altro nome. +settings.delete=Elimina questo repository +settings.delete_desc=Una volta che hai cancellato il repository, non puoi tornare indietro. Si prega di fare attenzione. +settings.transfer_notices_1=- You will lose access if new owner is a individual user. +settings.transfer_notices_2=- You will conserve access if new owner is an organization and if you're one of the owners. +settings.transfer_form_title=Please enter following information to confirm your operation: +settings.delete_notices_1=- This operation <strong>CANNOT</strong> be undone. +settings.delete_notices_2=- This operation will permanently delete the everything of this repository, including Git data, issues, comments and accesses of collaborators. +settings.delete_notices_fork_1=- If this repository is public, all forks will be became independent after deletion. +settings.delete_notices_fork_2=- If this repository is private, all forks will be removed at the same time. +settings.delete_notices_fork_3=- If you want to keep all forks after deletion, please change visibility of this repository to public first. +settings.update_settings_success=Le opzioni repository sono state aggiornate con successo. +settings.transfer_owner=Nuovo Proprietario +settings.make_transfer=Trasferisci +settings.transfer_succeed=Proprietà del repository trasferita con successo. +settings.confirm_delete=Conferma eliminazione +settings.add_collaborator=Aggiungi nuovo collaboratore +settings.add_collaborator_success=Il nuovo collaboratore è stato aggiunto. +settings.remove_collaborator_success=Il collaboratore è stato rimosso. +settings.search_user_placeholder=Search user... +settings.user_is_org_member=L'utente è un membro dell'organizzazione che non può essere aggiunto come collaboratore. +settings.add_webhook=Aggiungi Webhook +settings.hooks_desc=I Webhooks sono molto simili a un basilare evento trigger HTTP POST. Ogni volta che qualcosa si verifica in Gogs, tratteremo la notifica all'host di destinazione specificato. Ulteriori informazioni in questa <a target="_blank" href="%s">Guida ai Webhooks</a>. +settings.webhook_deletion=Delete Webhook +settings.webhook_deletion_desc=Delete this webhook will remove its information and all delivery history. Do you want to continue? +settings.webhook_deletion_success=Webhook has been deleted successfully! +settings.webhook.request=Request +settings.webhook.response=Response +settings.webhook.headers=Headers +settings.webhook.payload=Payload +settings.webhook.body=Body +settings.githooks_desc=Gli Hooks di Git sono una funzionalità di Git stesso, puoi modificare i file degli hooks supportati nell'elenco qui sotto per compiere azioni personalizzate. +settings.githook_edit_desc=Se l'hook è inattivo, sarà presentato un contenuto esempio. Lasciando il contenuto vuoto disattiverai questo hook. +settings.githook_name=Nome hook +settings.githook_content=Contenuto hook +settings.update_githook=Aggiorna Hook +settings.add_webhook_desc=Gogs manderà una richiesta <code>POST</code> all'URL specificata, insieme alle informazioni sull'evento avvenuto. Puoi anche specificare quale tipo di formato dati vorresti ottenere all'innesco dell'hook (JSON, x-www-form-urlencoded, XML, ecc). Puoi trovare più informazioni nella nostra <a target="_blank" href="%s">Guida ai Webhook</a>. +settings.payload_url=Payload URL +settings.content_type=Content Type +settings.secret=Secret +settings.slack_username=Username +settings.slack_icon_url=Icon URL +settings.slack_color=Color +settings.event_desc=Quali eventi dovrebbero innescare questo webhook? +settings.event_push_only=Solo l'evento <code>push</code>. +settings.event_send_everything=I need <strong>everything</strong>. +settings.event_choose=Let me choose what I need. +settings.event_create=Create +settings.event_create_desc=Branch, or tag created +settings.event_push=Push +settings.event_push_desc=Git push to a repository +settings.active=Attivo +settings.active_helper=Anche i dettagli riguardanti l'evento che ha innescato l'hook saranno inviati. +settings.add_hook_success=Il nuovo webhook è stato aggiunto. +settings.update_webhook=Aggiorna Webhook +settings.update_hook_success=Il webhook è stato aggiornato. +settings.delete_webhook=Eliminare Webhook +settings.recent_deliveries=Recenti Deliveries +settings.hook_type=Tipo di Hook +settings.add_slack_hook_desc=Aggiungi <a href="%s"> Slack</a> integrazione al tuo repository. +settings.slack_token=Token +settings.slack_domain=Dominio +settings.slack_channel=Canale +settings.deploy_keys=Dispiega Chiavi +settings.add_deploy_key=Add Deploy Key +settings.no_deploy_keys=You haven't added any deploy key. +settings.title=Title +settings.deploy_key_content=Content +settings.key_been_used=Deploy key content has been used. +settings.key_name_used=Deploy key with same name has already existed. +settings.add_key_success=New deploy key '%s' has been added successfully! +settings.deploy_key_deletion=Delete Deploy Key +settings.deploy_key_deletion_desc=Delete this deploy key will remove all related accesses for this repository. Do you want to continue? +settings.deploy_key_deletion_success=Deploy key has been deleted successfully! + +diff.browse_source=Sfoglia il codice sorgente +diff.parent=parent +diff.commit=commit +diff.data_not_available=Diff Data non disponibile. +diff.show_diff_stats=Mostra Diff Stats +diff.stats_desc=<strong>%d ha cambiato i file</strong> con <strong>%d aggiunte</strong> e <strong>%d eliminazioni</strong> +diff.bin=BIN +diff.view_file=Vedi File + +release.releases=Rilasci +release.new_release=Nuovo Rilascio +release.draft=Bozza +release.prerelease=Pre-Rilascio +release.stable=Stabile +release.edit=modifica +release.ahead=<strong>%d</strong> commits da %s da questo rilascio +release.source_code=Codice Sorgente +release.new_subheader=Publish releases to iterate product. +release.edit_subheader=Detailed change log can help users understand what has been improved. +release.tag_name=Nome tag +release.target=Obbiettivo +release.tag_helper=Scegli un tag esistente o crea un nuovo tag una volta pubblicato. +release.title=Title +release.content=Content +release.write=Scrivi +release.preview=Anteprima +release.loading=Caricamento... +release.prerelease_desc=Questo è un pre-rilascio +release.prerelease_helper=Precisiamo che questo rilascio non è pronta per la produzione. +release.cancel=Cancel +release.publish=Pubblica Rilascio +release.save_draft=Salva Bozza +release.edit_release=Modifica Rilascio +release.delete_release=Delete This Release +release.deletion=Release Deletion +release.deletion_desc=Delete this release will delete corresponding Git tag. Do you want to continue? +release.deletion_success=Release has been deleted successfully! +release.tag_name_already_exist=Un rilascio con questo tag esiste già. +release.downloads=Downloads + +[org] +org_name_holder=Nome dell'Organizzazione +org_full_name_holder=Organization Full Name +org_name_helper=Le migliori organizzazioni hanno nomi brevi e memorabili. +create_org=Crea Organizzazione +repo_updated=Aggiornato +people=Utenti +invite_someone=Invita Qualcuno +teams=Team +lower_members=membri +lower_repositories=repository +create_new_team=Crea Nuovo Team +org_desc=Descrizione +team_name=Nome Team +team_desc=Descrizione +team_name_helper=Verrà usato questo nome per riferirsi a questo team nella conversazioni. +team_desc_helper=In cosa consiste questo team? +team_permission_desc=Quale livello di autorizzazione dovrebbe avere questa squadra? + +form.name_reserved=Il nome organizzazione '%s' è riservato. +form.name_pattern_not_allowed=La struttura del nome dell'organizzazione '%s' non è consentita. + +settings=Impostazioni +settings.options=Opzioni +settings.full_name=Nome Completo +settings.website=Sito Web +settings.location=Residenza +settings.update_settings=Aggiorna Impostazioni +settings.update_setting_success=Impostazioni dell'organizzazione aggiornate con successo. +settings.change_orgname_prompt=This change will affect how links relate to the organization. +settings.update_avatar_success=Organization avatar setting has been updated successfully. +settings.delete=Elimina organizzazione +settings.delete_account=Elimina questa organizzazione +settings.delete_prompt=L'organizzazione verrà rimossa definitivamente, e questa operazione <strong>NON PUÒ</strong> essere annullata! +settings.confirm_delete_account=Conferma Eliminazione +settings.delete_org_title=Eliminazione Organizzazione +settings.delete_org_desc=Questa organizzazione sta per essere eliminato in modo permanente, vuoi continuare? +settings.hooks_desc=Aggiungi i webhooks che verranno attivati per <strong>tutti i repository</strong> sotto questa organizzazione. + +members.public=Pubblico +members.public_helper=rendi privato +members.private=Privato +members.private_helper=rendi pubblico +members.owner=Proprietario +members.member=Membro +members.conceal=Nascondere +members.remove=Rimuovere +members.leave=Abbandona +members.invite_desc=Digita un nome utente per invitare un nuovo membro a %s: +members.invite_now=Invita ora + +teams.join=Iscriviti +teams.leave=Abbandona +teams.read_access=Accesso di Lettura +teams.read_access_helper=Questo team sarà in grado di visualizzare e clonare i suoi repository. +teams.write_access=Accesso di Scrittura +teams.write_access_helper=Questo team sarà in grado di leggere i suoi repository, come pure pusharli. +teams.admin_access=Accesso Amministratore +teams.admin_access_helper=Questo team sarà in grado di pushare/pullare i propri repo, così come aggiungere altri collaboratori. +teams.no_desc=Questo team non ha alcuna descrizione +teams.settings=Impostazioni +teams.owners_permission_desc=I Proprietari hanno pieno accesso a <strong>tutti i repository</strong> e hanno <strong>diritti di amministatore</strong> nell'organizzazione. +teams.members=Membri del Team +teams.update_settings=Aggiorna Impostazioni +teams.delete_team=Elimina questo Team +teams.add_team_member=Aggiungere un Membro al Team +teams.delete_team_title=Eliminazione Team +teams.delete_team_desc=Quando questo team verrà eliminato, i membri di questa squadra potrebbero perdere l'accesso ad alcuni repository. Si desidera continuare? +teams.delete_team_success=Team eliminato con successo. +teams.read_permission_desc=Questo Team concede accesso di <strong>Lettura</strong>: i membri possono visualizzare e clonare i repository del Team. +teams.write_permission_desc=Questo Team concede accesso di <strong>Scrittura</strong>: i membri possono leggere e pushare i repository del Team. +teams.admin_permission_desc=Questo Team concede accesso di <strong>Amministratore</strong>: i membri possono leggere i, pushare a, e aggiungere collaboratori ai repository del Team. +teams.repositories=Repository di Squadra +teams.add_team_repository=Aggiungere Repository di Squadra +teams.remove_repo=Rimuovi +teams.add_nonexistent_repo=Il repository che stai tentando di aggiungere non esiste, crealo prima. + +[admin] +dashboard=Pannello di Controllo +users=Utenti +organizations=Organizzazioni +repositories=Repository +authentication=Autenticazioni +config=Configurazione +notices=Avvisi di sistema +monitor=Monitoraggio +first_page=First +last_page=Last +total=Total: %d + +dashboard.statistic=Statistiche +dashboard.operations=Operazioni +dashboard.system_status=Stato del Monitor di Sistema +dashboard.statistic_info=Il database di Gogs ha <b>%d</b> utenti, <b>%d</b> organizzazioni, <b>%d</b> chiavi pubbliche, <b>%d</b> repository, <b>%d</b> utenti che seguono, <b>%d</b> voti, <b>%d</b> azioni, <b>%d</b> accessi, <b>%d</b> problemi, <b>%d</b> commenti, <b>%d</b> account sociali, <b>%d</b> utenti seguiti, <b>%d</b> mirror, <b>%d</b> rilasci, <b>%d</b> fonti di accesso, <b>%d</b> webhook, <b>%d</b> traguardi, <b>%d</b> etichette, <b>%d</b> incarichi hook, <b>%d</b> team, <b>%d</b> attività di aggiornamento, <b>%d</b> allegati. +dashboard.operation_name=Nome Operazione +dashboard.operation_switch=Cambia +dashboard.operation_run=Esegui +dashboard.clean_unbind_oauth=Pulire OAuthes non associati +dashboard.clean_unbind_oauth_success=Tutti gli OAuthes non associati eliminati con successo. +dashboard.delete_inactivate_accounts=Elimina tutti gli account inattivi +dashboard.delete_inactivate_accounts_success=Tutti gli account inattivi eliminati con successo. +dashboard.delete_repo_archives=Elimina tutti gli archivi dei repository +dashboard.delete_repo_archives_success=Tutti gli archivi del repository sono stati eliminati con successo. +dashboard.delete_missing_repos=Delete all repository records that lost Git files +dashboard.delete_missing_repos_success=All repository records that lost Git files have been deleted successfully. +dashboard.git_gc_repos=Fare la procedura di garbage collection sui repository +dashboard.git_gc_repos_success=Tutti i repository hanno fatto la procedura di garbage collection con successo. +dashboard.resync_all_sshkeys=Riscrivi il file '.ssh/authorized_keys' (attenzione: le chiavi non appartenenti a Gogs saranno perse) +dashboard.resync_all_sshkeys_success=Tutte le chiavi pubbliche riscritte con successo. +dashboard.resync_all_update_hooks=Riscrivere tutti gli update hook dei repository (necessario quando il percorso di configurazione personalizzata viene modificato) +dashboard.resync_all_update_hooks_success=Tutti gli update hook dei repository riscritti con successo. + +dashboard.server_uptime=Tempo in Attività del Server +dashboard.current_goroutine=Goroutine Correnti +dashboard.current_memory_usage=Utilizzo di Memoria Corrente +dashboard.total_memory_allocated=Memoria Allocata Totale +dashboard.memory_obtained=Memoria Ottenuta +dashboard.pointer_lookup_times=Ricerche del Puntatore +dashboard.memory_allocate_times=Allocazioni Memoria +dashboard.memory_free_times=Svuotamenti di Memoria +dashboard.current_heap_usage=Utilizzo Heap Corrente +dashboard.heap_memory_obtained=Memoria Heap Ottenuta +dashboard.heap_memory_idle=Memoria Heap Inattiva +dashboard.heap_memory_in_use=Memoria Heap In Uso +dashboard.heap_memory_released=Memoria Heap Rilasciata +dashboard.heap_objects=Oggetti dell'Heap +dashboard.bootstrap_stack_usage=Utilizzo Pila di Bootstrap +dashboard.stack_memory_obtained=Memoria Stack Ottenuta +dashboard.mspan_structures_usage=Utilizzo Strutture MSpan +dashboard.mspan_structures_obtained=Strutture MSpan Ottenute +dashboard.mcache_structures_usage=Utilizzo di Strutture MCache +dashboard.mcache_structures_obtained=Strutture MCache Ottenute +dashboard.profiling_bucket_hash_table_obtained=Tabella di Hash del Bucket Ottenuta +dashboard.gc_metadata_obtained=Metadata della GC ottenuta +dashboard.other_system_allocation_obtained=Altre Allocazioni di Sistema Ottenute +dashboard.next_gc_recycle=Prossimo Riciclaggio GC +dashboard.last_gc_time=Dall'Ultimo GC +dashboard.total_gc_time=Pausa Totale della GC +dashboard.total_gc_pause=Pausa Totale della GC +dashboard.last_gc_pause=Ultima pausa della GC +dashboard.gc_times=Esecuzioni GC + +users.user_manage_panel=Pannello Gestione Utenti +users.new_account=Crea Nuovo Account +users.name=Nome +users.activated=Attivato +users.admin=Amministratore +users.repos=Repo +users.created=Creato +users.send_register_notify=Send Registration Notification To User +users.new_success=New account '%s' has been created successfully. +users.edit=Modifica +users.auth_source=Authentication Source +users.local=Locale +users.auth_login_name=Authentication Login Name +users.password_helper=Leave it empty to remain unchanged. +users.update_profile_success=Profilo dell'account aggiornato con successo. +users.edit_account=Modifica Account +users.is_activated=Questo account è attivato +users.is_admin=Questo account ha permessi di amministratore +users.allow_git_hook=Questo account ha il permesso di creare hooks di Git +users.allow_import_local=This account has permissions to import local repositories +users.update_profile=Aggiornare Profilo Account +users.delete_account=Elimina Questo Account +users.still_own_repo=Questo account possiede ancora almeno un repository, devi prima cancellarli o trasferirli. +users.still_has_org=Questo account appartiene ancora ad almeno un'organizzazione, è necessario prima abbandonarle o eliminale. +users.deletion_success=Account has been deleted successfully! + +orgs.org_manage_panel=Pannello Gestione Organizzazioni +orgs.name=Nome +orgs.teams=Team +orgs.members=Membri + +repos.repo_manage_panel=Pannello Organizzazione Repository +repos.owner=Proprietario +repos.name=Nome +repos.private=Privati +repos.watches=Segue +repos.stars=Voti +repos.issues=Problemi + +auths.auth_manage_panel=Authentication Manage Panel +auths.new=Add New Source +auths.name=Nome +auths.type=Tipo +auths.enabled=Attivo +auths.updated=Aggiornato +auths.auth_type=Authentication Type +auths.auth_name=Authentication Name +auths.domain=Dominio +auths.host=Host +auths.port=Porta +auths.bind_dn=Bind DN +auths.bind_password=Bind Password +auths.bind_password_helper=Warning: This password is stored in plain text. Do not use a high privileged account. +auths.user_base=User Search Base +auths.user_dn=User DN +auths.attribute_name=Attributo Nome +auths.attribute_surname=Attributo Cognome +auths.attribute_mail=Attributo Email +auths.filter=User Filter +auths.admin_filter=Admin Filter +auths.ms_ad_sa=Ms Ad SA +auths.smtp_auth=SMTP Authentication Type +auths.smtphost=Host SMTP +auths.smtpport=Porta SMTP +auths.allowed_domains=Allowed Domains +auths.allowed_domains_helper=Leave it empty to not restrict any domains. Multiple domains should be separated by comma ','. +auths.enable_tls=Abilitare Crittografia TLS +auths.skip_tls_verify=Skip TLS Verify +auths.pam_service_name=Nome del Servizio PAM +auths.enable_auto_register=Abilitare Registrazione Automatica +auths.tips=Consigli +auths.edit=Edit Authentication Setting +auths.activated=Questa Autenticazione è stata attivata +auths.new_success=New authentication '%s' has been added successfully. +auths.update_success=Authentication setting has been updated successfully. +auths.update=Update Authentication Setting +auths.delete=Delete This Authentication +auths.delete_auth_title=Authentication Deletion +auths.delete_auth_desc=This authentication is going to be deleted, do you want to continue? +auths.deletion_success=Authentication has been deleted successfully! + +config.server_config=Configurazione Server +config.app_name=Nome Applicazione +config.app_ver=Versione Applicazione +config.app_url=URL Applicazione +config.domain=Dominio +config.offline_mode=Modalità Offline +config.disable_router_log=Disattivare Log del Router +config.run_user=Utente Esecutore +config.run_mode=Modalità Esecuzione +config.repo_root_path=Percorso Root del Repository +config.static_file_root_path=Percorso Root del File Statico +config.log_file_root_path=Percorso Root del File di Log +config.script_type=Tipo di Script +config.reverse_auth_user=Autenticazione Utente Inversa +config.db_config=Configurazione Database +config.db_type=Tipo +config.db_host=Host +config.db_name=Nome +config.db_user=Utente +config.db_ssl_mode=Modalità SSL +config.db_ssl_mode_helper=(solo per "postgres") +config.db_path=Percorso +config.db_path_helper=(for "sqlite3" and "tidb") +config.service_config=Configurazione Servizio +config.register_email_confirm=Richiedono Conferma dell'Email +config.disable_register=Disabilita Registrazione +config.show_registration_button=Mostra Pulsane Registrazione +config.require_sign_in_view=Richiesto Accesso per Vedere +config.enable_cache_avatar=Abilitare Cache dell'Avatar +config.mail_notify=Email di Notifica +config.disable_key_size_check=Disable Minimum Key Size Check +config.enable_captcha=Enable Captcha +config.active_code_lives=Attiva Vita del Codice +config.reset_password_code_lives=Reimpostare Password della Vita del Codice +config.webhook_config=Configurazione Webhook +config.queue_length=Queue Length +config.deliver_timeout=Tempo Limite di Consegna +config.skip_tls_verify=Salta verifiche TLS +config.mailer_config=Configurazione Mailer +config.mailer_enabled=Attivo +config.mailer_disable_helo=Disattiva HELO +config.mailer_name=Nome +config.mailer_host=Host +config.mailer_user=Utente +config.oauth_config=Configurazione OAuth +config.oauth_enabled=Attivo +config.cache_config=Configurazione Cache +config.cache_adapter=Adattatore Cache +config.cache_interval=Intervallo Cache +config.cache_conn=Connessione Cache +config.session_config=Configurazione Sessione +config.session_provider=Fornitore Sessione +config.provider_config=Impostazioni Provider +config.cookie_name=Nome del Cookie +config.enable_set_cookie=Abilita Uso dei Cookie +config.gc_interval_time=Intervallo di tempo della GC +config.session_life_time=Durata Sessione +config.https_only=Solo HTTPS +config.cookie_life_time=Durata Cookie +config.picture_config=Configurazione Foto +config.picture_service=Servizio foto +config.disable_gravatar=Disabilita Gravatar +config.log_config=Configurazione Log +config.log_mode=Modalità Log + +monitor.cron=Incarici di cron +monitor.name=Nome +monitor.schedule=Agenda +monitor.next=La Prossima Volta +monitor.previous=La Scorsa Volta +monitor.execute_times=Numero di Esecuzioni +monitor.process=Processi in Esecuzione +monitor.desc=Descrizione +monitor.start=Orario Avvio +monitor.execute_time=Tempo di Esecuzione + +notices.system_notice_list=Avvisi di Sistema +notices.type=Tipo +notices.type_1=Repository +notices.desc=Descrizione +notices.op=Op. +notices.delete_success=Avviso di sistema cancellato con successo. + +[action] +create_repo=ha creato il repository <a href="%s">%s</a> +rename_repo=renamed repository from <code>%[1]s</code> to <a href="%[2]s">%[3]s</a> +commit_repo=ha pushato nel <a href="%[1]s/src/%[2]s">%[3]s</a> in <a href="%[1]s">%[4]s</a> +create_issue=`ha aperto il problema <a href="%s/issues/%s">%s#%[2]s</a>` +create_pull_request=`creata pull request <a href="%s/pulls/%s">%s#%[2]s</a>` +comment_issue=`ha commentato il problema <a href="%s/issues/%s">%s#%[2]s</a>` +merge_pull_request=`merged pull request <a href="%s/pulls/%s">%s#%[2]s</a>` +transfer_repo=ha trasferito il repository <code>%s</code> a <a href="%s">%s</a> +push_tag=ha pushato il tag <a href="%s/src/%s">%[2]s</a> a <a href="%[1]s">%[3]s</a> +compare_2_commits=Vedi confronto per questi 2 commit + +[tool] +ago=fa +from_now=da adesso +now=ora +1s=1 secondo %s +1m=1 minuto %s +1h=1 ora %s +1d=1 giorno %s +1w=1 settimana %s +1mon=1 mese %s +1y=1 anno %s +seconds=%d secondi %s +minutes=%d minuti %s +hours=%d ore %s +days=%d giorni %s +weeks=%d settimane %s +months=%d mesi %s +years=%d anni %s +raw_seconds=secondi +raw_minutes=minuti + +[dropzone] +default_message=Drop files here or click to upload. +invalid_input_type=You can't upload files of this type. +file_too_big=File size({{filesize}} MB) exceeds maximum size({{maxFilesize}} MB). +remove_file=Remove file + diff --git a/conf/locale/locale_ja-JP.ini b/conf/locale/locale_ja-JP.ini index e12dbdad..c941e161 100755 --- a/conf/locale/locale_ja-JP.ini +++ b/conf/locale/locale_ja-JP.ini @@ -1,992 +1,1009 @@ -app_desc=Go言語で実装したセルフホストGitサービス
-
-home=ホーム
-dashboard=ダッシュボード
-explore=エスクプローラ
-help=ヘルプ
-sign_in=サインイン
-sign_out=サインアウト
-sign_up=サインアップ
-register=登録
-website=WEBサイト
-version=バージョン
-page=ページ
-template=テンプレート
-language=言語
-create_new=作成...
-user_profile_and_more=ユーザープロファイルなど
-signed_in_as=サインイン済み
-
-username=ユーザ名
-email=E-mail
-password=パスワード
-re_type=再入力
-captcha=キャプチャ
-
-repository=リポジトリ
-organization=組織
-mirror=ミラー
-new_repo=新しいリポジトリ
-new_migrate=新しい移行
-new_fork=新しいフォークのリポジトリ
-new_org=新しい組織
-manage_org=組織を管理
-admin_panel=管理者パネル
-account_settings=アカウント設定
-settings=設定
-your_profile=あなたのプロファイル
-your_settings=あなたの設定
-
-news_feed=ニュースのフィード
-pull_requests=プルリクエスト
-issues=課題
-
-cancel=キャンセル
-
-[search]
-search=検索...
-repository=リポジトリ
-user=ユーザ
-issue=課題
-code=コード
-
-[install]
-install=インストール
-title=初回実行のインストール手順
-docker_helper=If you're running Gogs inside Docker, please read <a target="_blank" href="%s">Guidelines</a> carefully before you change anything in this page!
-requite_db_desc=Gogs requires MySQL, PostgreSQL, SQLite3 or TiDB.
-db_title=データベース設定
-db_type=データベースの種類
-host=ホスト
-user=ユーザ
-password=パスワード
-db_name=データベース名
-db_helper=Mysql INNODB エンジン utf8_general_ci の文字セットを使用してください。
-ssl_mode=SSL モード
-path=パス
-sqlite_helper=The file path of SQLite3 or TiDB database.
-err_empty_db_path=SQLite3 or TiDB database path cannot be empty.
-err_invalid_tidb_name=TiDB database name does not allow characters "." and "-".
-no_admin_and_disable_registration=You cannot disable registration without creating an admin account.
-err_empty_admin_password=Admin password cannot be empty.
-
-general_title=Gogs の全般設定
-app_name=アプリケーション名
-app_name_helper=素晴らしい組織名を入れてください!
-repo_path=リポジトリのルートパス
-repo_path_helper=すべての Git リモート リポジトリはこのディレクトリに保存されます。
-run_user=実行ユーザ
-run_user_helper=ユーザーはリポジトリ ルートパスへのアクセス、及びGogs を実行する権限を所有する必要があります。
-domain=ドメイン
-domain_helper=これはSSHクローンURLに影響する。
-ssh_port=SSH ポート
-ssh_port_helper=Port number which your SSH server is using, leave it empty to disable SSH feature.
-http_port=HTTP ポート
-http_port_helper=アプリケーションが待ち受けするポート番号。
-app_url=アプリケーションの URL
-app_url_helper=この設定は、HTTP / HTTPSのクローンURLおよび、一部のメールボックスへのリンクに影響を与えます。
-
-optional_title=オプション設定
-email_title=E-mailサービス設定
-smtp_host=SMTP ホスト
-smtp_from=差出人
-smtp_from_helper=送信者メールアドレス、RFC 5322。フォーマットはメールアドレスのみ、または"Name" <email@example.com>。
-mailer_user=送信者の電子メール
-mailer_password=送信者のパスワード
-register_confirm=登録の確認を有効にする
-mail_notify=メール通知を有効にする
-server_service_title=サーバーとその他のサービスの設定
-offline_mode=オフラインモード有効化
-offline_mode_popup=プロダクション モードでCDN を無効にし、すべてのリソースファイルをローカルで提供します 。
-disable_gravatar=Gravatarのサービスを無効にします
-disable_gravatar_popup=Disable Gravatar and custom sources, all avatars are uploaded by users or default.
-disable_registration=自己登録を無効にする
-disable_registration_popup=自己登録を無効にし、管理者のみがアカウント作成できる
-enable_captcha=Captchaを有効にする
-enable_captcha_popup=Require validate captcha for user self-registration.
-require_sign_in_view=サインインしたユーザのみページ閲覧を許可
-require_sign_in_view_popup=サインインしたユーザのみがページを閲覧できます。ビジターはサインインもしくはサインアップページのみ見られます。
-admin_setting_desc=今管理者アカウントを作成する必要はありません。ID = 1のユーザ は自動的に管理者の権限を獲得します。
-admin_title=管理者アカウントの設定
-admin_name=ユーザ名
-admin_password=パスワード
-confirm_password=パスワード確認
-admin_email=E-mail
-install_gogs=Gogs をインストール
-test_git_failed='Git' コマンドテストに失敗: %v
-sqlite3_not_available=このリリース バージョンは SQLite3 をサポートしていません。gobuild バージョンではない、公式のバイナリ バージョンを %s からダウンロードしてください。
-invalid_db_setting=データベースの設定が正しくありません: %v
-invalid_repo_path=リポジトリのルート パスが無効です: %v
-run_user_not_match=実行ユーザーは、現在のユーザーではない: %s-> %s
-save_config_failed=構成の保存に失敗した: %v
-invalid_admin_setting=管理者アカウントの設定が無効です: %v
-install_success=ようこそ!我々はあなたが Gogs を選んでくれて嬉しいです!楽しみましょう!
-
-[home]
-uname_holder=ユーザー名またはEメール
-password_holder=パスワード
-switch_dashboard_context=ダッシュ ボードのコンテキストを切替
-my_repos=私のリポジトリ
-collaborative_repos=共同リポジトリ
-my_orgs=私の組織
-my_mirrors=私のミラー
-view_home=ビュー %s
-
-issues.in_your_repos=あなたのリポジトリ
-
-[explore]
-repos=リポジトリ
-
-[auth]
-create_new_account=新規アカウントを作成
-register_hepler_msg=すでにアカウントをお持ちですか?今すぐログイン !
-social_register_hepler_msg=すでにアカウントをお持ちですか?今すぐバインド !
-disable_register_prompt=申し訳ありませんが、登録が無効になっています。サイト管理者に問い合わせてください。
-disable_register_mail=申し訳ありませんが、登録メールの確認機能が無効になっています。
-remember_me=ログイン状態を保持する
-forgot_password=パスワードを忘れた
-forget_password=パスワードを忘れた?
-sign_up_now=アカウントが必要ですか?今すぐサインアップ
-confirmation_mail_sent_prompt=新しい確認メールを <b>%s</b> に送りました。登録を完了させるために、%d時間以内にあなたのメールボックスを確認してください。
-sign_in_to_account=Sign in to your account
-active_your_account=アカウントをアクティブ
-resent_limit_prompt=申し訳ありませんが、アクティベーションメールは頻繁に送信しています。3 分お待ちください。
-has_unconfirmed_mail=こんにちは %s さん、あなたの電子メール アドレス (<b>%s</b>) は未確認です。もし確認メールをまだ確認できていないか、改めて再送信する場合は、下のボタンをクリックしてください。
-resend_mail=アクティベーションメールを再送信するにはここをクリック
-email_not_associate=この電子メール アドレスは、アカウントには関連付けられません。
-send_reset_mail=パスワードリセットのメールを再送するにはここをクリック
-reset_password=パスワードリセット
-invalid_code=申し訳ありませんが、確認用コードが期限切れまたは無効です。
-reset_password_helper=パスワードをリセットするにはここをクリック
-password_too_short=6文字未満のパスワードは設定できません。
-
-[mail]
-activate_account=Please activate your account
-activate_email=Verify your e-mail address
-reset_password=Reset your password
-register_success=Register success, Welcome
-
-[modal]
-yes=はい
-no=いいえ
-modify=変更
-
-[form]
-UserName=ユーザ名
-RepoName=リポジトリ名
-Email=Eメールアドレス
-Password=パスワード
-Retype=パスワードを再入力
-SSHTitle=SSH キーの名前
-HttpsUrl=HTTPS URL
-PayloadUrl=ペイロードの URL
-TeamName=チーム名
-AuthName=承認名
-AdminEmail=管理者の電子メール
-
-require_error=空にできません
-alpha_dash_error=アルファベット、数字、ハイフン"-"、アンダースコア"_"のいずれかの必要があります
-alpha_dash_dot_error=' アルファベット、数値、ダッシュ(-)、アンダースコア(_) 、ドット(.)のいずれかを入力する必要があります。 '
-size_error=`サイズは %s である必要があります`
-min_size_error=' 少なくとも %s 文字の必要があります '
-max_size_error=' %s 文字以下の必要があります '
-email_error=' は有効な電子メール アドレスではない '
-url_error=' は有効な URL はありません。 '
-unknown_error=不明なエラー:
-captcha_incorrect=Captcha が一致しませんでした。
-password_not_match=パスワードと確認用パスワードが一致同していません。
-
-username_been_taken=ユーザー名は既に使用されています。
-repo_name_been_taken=リポジトリ名は既に使用されています。
-org_name_been_taken=組織名は既に使用されています。
-team_name_been_taken=チーム名は既に使用されています。
-email_been_used=電子メール アドレスは既に使用されています。
-illegal_team_name=チーム名に無効な文字が含まれています。
-username_password_incorrect=ユーザー名またはパスワードが正しくありません。
-enterred_invalid_repo_name=入力したリポジトリの名前が正しいかどうかを確認してください。
-enterred_invalid_owner_name=入力された所有者名が正しいかどうかを確認してください。
-enterred_invalid_password=入力したパスワードが正しいかを確認してください。
-user_not_exist=指定されたユーザーは存在しません。
-last_org_owner=削除するユーザーはチームの最後のメンバーです。別の所有者設定が必要です。
-
-invalid_ssh_key=SSHを確認できません:%s
-unable_verify_ssh_key=GogsはあなたのSSH keyを確認できません。しかし、我々は有効とみなしますので、自分自身で確認してください。
-auth_failed=認証に失敗しました: %v
-
-still_own_repo=アカウント所有のリポジトリがあり、リポジトリの削除または所有者の移譲が必要です。
-still_has_org=アカウントはまだ組織のメンバーであり、組織から退出するか削除する必要があります。
-org_still_own_repo=この組織はまだリポジトリの所有しています、リポジトリを削除または転送する必要があります。
-
-still_own_user=この認証はまだ一部のユーザーによって使用されています。一部のユーザを移動させてから、もう一度削除してください。
-
-target_branch_not_exist=ターゲットブランチが存在しない
-
-[user]
-change_avatar=gravatar.com で自分のアバターを変更
-change_custom_avatar=設定で自分のアバターを変更
-join_on=参加しました
-repositories=リポジトリ
-activity=パブリック・アクティビティ
-followers=フォロワー
-starred=スター
-following=フォロー
-
-form.name_reserved=ユーザー名 '%s' は予約されています。
-form.name_pattern_not_allowed=ユーザ名のパターン '%s' は許可されていません。
-
-[settings]
-profile=プロフィール
-password=パスワード
-ssh_keys=SSH キー
-social=SNSアカウント
-applications=アプリケーション
-orgs=組織
-delete=アカウントを削除
-uid=Uid
-
-public_profile=パブリック プロフィール
-profile_desc=あなたのメールアドレスは公開され、任意のアカウント関連の通知に使用されます。また、Webベースの操作はサイトを介して行います。
-full_name=フルネーム
-website=WEBサイト
-location=ロケーション
-update_profile=プロファイル更新
-update_profile_success=あなたのプロフィールが更新されました。
-change_username=ユーザー名が変更されました
-change_username_prompt=This change will affect the way how links relate to your account.
-continue=続行
-cancel=キャンセル
-
-enable_custom_avatar=カスタムのアバターを有効にする
-enable_custom_avatar_helper=Gravatarからのフェッチを無効にするのを、有効にします
-choose_new_avatar=新しいアバターを選択
-update_avatar=アバターの設定を更新
-uploaded_avatar_not_a_image=アップロードされたファイルは画像ではない。
-no_custom_avatar_available=利用可能なカスタム アバターがないため、有効にできません。
-update_avatar_success=あなたのアバターの設定が更新されました。
-
-change_password=パスワードを変更
-old_password=現在のパスワード
-new_password=新しいパスワード
-retype_new_password=Retype New Password
-password_incorrect=現在のパスワードが正しくありません。
-change_password_success=パスワードが正常に変更されました。今すぐ新しいパスワード経由でサインインすることができます。
-
-emails=E-mail アドレス
-manage_emails=E-mail アドレスを管理
-email_desc=あなたのプライマリメールアドレスは、通知やその他の操作に使用されます。
-primary=プライマリー
-primary_email=プライマリに設定
-delete_email=削除
-email_deletion=E-mail Deletion
-email_deletion_desc=Delete this e-mail address will remove related information from your account. Do you want to continue?
-email_deletion_success=E-mail has been deleted successfully!
-add_new_email=新しいe-mailアドレスを追加
-add_email=電子メールを追加します。
-add_email_confirmation_sent='%s' に新しい確認メールを送信しました、次の %d 時間以内に受信トレイを確認し、確認プロセスを完了してください。
-add_email_success=新しいe-mail アドレスが追加されました。
-
-manage_ssh_keys=SSH キーを管理
-add_key=キーを追加
-ssh_desc=これはあなたのアカウントに関連付けられている SSH キーの一覧です。あなたが認識していないキーを削除します。
-ssh_helper=<strong>ヘルプが必要ですか?</strong> 我々のガイドをご覧ください。 <a href="%s"> SSH キーを生成</a> <a href="%s"> SSH の一般的な問題</a>
-add_new_key=SSH キーを追加
-ssh_key_been_used=公開鍵は使用されています。
-ssh_key_name_used=同じ名前の公開鍵は既に存在しています。
-key_name=キーの名前
-key_content=コンテンツ
-add_key_success=新しいSSHキー '%s' が正常に追加されました!
-delete_key=削除
-ssh_key_deletion=SSH キーの削除
-ssh_key_deletion_desc=このSSHキーを削除すると、あなたのアカウントに関連するすべてのアクセスが削除されます。続行しますか?
-ssh_key_deletion_success=SSH キーは正常に削除されました!
-add_on=追加された
-last_used=最終使用日
-no_activity=最近の活動なし
-key_state_desc=この鍵は7日間以内に使われています。
-token_state_desc=この鍵は7日間以内に使われています。
-
-manage_social=関連付けられているSNSアカウントを管理
-social_desc=これは関連付けられたソーシャルアカウントのリストです。あなたが認識していない結び付けを削除します。
-unbind=バインド解除
-unbind_success=SNSアカウントがバインドされていない。
-
-manage_access_token=個人のアクセス トークンを管理
-generate_new_token=新しいトークンを生成
-tokens_desc=生成したトークンを利用して Gogs の API にアクセスすることができます。
-new_token_desc=今のところ、全てのトークンはあなたのアカウントにフルアクセスできます。
-token_name=トークン名
-generate_token=トークンを生成
-generate_token_succees=新しいアクセス トークンは正常に生成されました !今すぐあなたの新しいアクセス トークンをコピーしておいてください。二度と見ることはできませんので確認してください!
-delete_token=削除
-access_token_deletion=パーソナルアクセストークンの削除
-access_token_deletion_desc=パーソナルアクセストークンを削除すると、関連するアプリケーションのすべてのアクセスが削除されます。続行しますか?
-delete_token_success=パーソナルアクセストークンは正常に削除されました!同時にあなたのアプリケーションを更新することを忘れないでください。
-
-delete_account=アカウントを削除
-delete_prompt=この操作はあなたのアカウントを完全に削除し、復旧<strong>できない</strong> !
-confirm_delete_account=削除の確認
-delete_account_title=アカウントの削除
-delete_account_desc=このアカウントは永久に削除しようとしている、継続しますか?
-
-[repo]
-owner=オーナー
-repo_name=リポジトリ名
-repo_name_helper=偉大なリポジトリ名は短い。思い出に残り、そして<strong>一意</strong>だ。
-visibility=ビジビリティ
-visiblity_helper=このリポジトリは<span class="ui red text">プライベート</span>です。
-visiblity_helper_forced=Site admin has forced all new repositories to be <span class="ui red text">Private</span>
-visiblity_fork_helper=(この値の変更はすべてのフォークに適用されます)
-fork_repo=フォークのリポジトリ
-fork_from=フォーク元
-fork_visiblity_helper=フォークされたリポジトリは可視状態を変更できません
-repo_desc=説明
-repo_lang=言語
-repo_lang_helper=.gitignoreファイルを選択
-license=ライセンス
-license_helper=ライセンス ファイルを選択
-readme=Readme
-readme_helper=Select a readme template
-auto_init=Initialize this repository with selected files and template
-create_repo=リポジトリを作成
-default_branch=デフォルトのブランチ
-mirror_interval=ミラー 間隔(時)
-
-form.name_reserved=リポジトリ名 '%s' は予約されています。
-form.name_pattern_not_allowed=リポジトリ名のパターン '%s' は許可されていません。
-
-need_auth=認証が必要
-migrate_type=マイグレーションの種類
-migrate_type_helper=This repository will be a <span class="text blue">mirror</span>
-migrate_repo=リポジトリを移行
-migrate.clone_address=クローンアドレス
-migrate.clone_address_desc=This can be a HTTP/HTTPS/GIT URL or local server path.
-migrate.invalid_local_path=ローカルパスが無効です。存在しないかディレクトリではありません。
-
-forked_from=フォーク元
-fork_from_self=すでにあなたの所有しているリポジトリはフォークできません
-copy_link=コピー
-copy_link_success=Copied!
-copy_link_error=Press ⌘-C or Ctrl-C to copy
-click_to_copy=クリップボードにコピー
-copied=コピー成功
-clone_helper=クローニングのヘルプが必要ですか?<a target="_blank"href="%s"> ヘルプ</a> を参照してください!
-unwatch=Unwatch
-watch=Watch
-unstar=Unstar
-star=Star
-fork=Fork
-
-no_desc=説明なし
-quick_guide=クイック ガイド
-clone_this_repo=このリポジトリのクローンを作成
-create_new_repo_command=コマンドラインで新しいリポジトリを作成します。
-push_exist_repo=コマンド ・ ラインから既存のリポジトリをプッシュ
-repo_is_empty=This repository is empty, please come back later!
-
-
-branch=ブランチ
-tree=ツリー
-branch_and_tags=ブランチ& タグ
-branches=ブランチ
-tags=タグ
-issues=課題
-pulls=プルリクエスト
-labels=ラベル
-milestones=マイルストーン
-commits=コミット
-releases=リリース
-file_raw=生データ
-file_history=履歴
-file_view_raw=生データを見る
-file_permalink=パーマリンク
-
-commits.commits=コミット
-commits.search=コミットの検索
-commits.find=検索
-commits.author=作者
-commits.message=メッセージ
-commits.date=日付
-commits.older=古い
-commits.newer=新しい
-
-issues.new=新しい問題
-issues.new.labels=ラベル
-issues.new.no_label=ラベルなし
-issues.new.clear_labels=ラベルをクリア
-issues.new.milestone=マイルストーン
-issues.new.no_milestone=マイルストーンなし
-issues.new.clear_milestone=マイルストーンをクリア
-issues.new.open_milestone=オープン中のマイルストーン
-issues.new.closed_milestone=クローズされたマイルストーン
-issues.new.assignee=担当者
-issues.new.clear_assignee=担当者をクリア
-issues.new.no_assignee=担当者なし
-issues.create=問題を作成
-issues.new_label=新しいラベル
-issues.new_label_placeholder=ラベル名...
-issues.create_label=ラベルを作成
-issues.open_tab=%d オープン
-issues.close_tab=%d クローズ
-issues.filter_label=ラベル
-issues.filter_label_no_select=選択したラベルがありません。
-issues.filter_milestone=マイルストーン
-issues.filter_milestone_no_select=選択されたマイルストーンなし
-issues.filter_assignee=アサインされた人
-issues.filter_assginee_no_select=No selected Assignee
-issues.filter_type=タイプ
-issues.filter_type.all_issues=すべての問題
-issues.filter_type.assigned_to_you=あなたに割り当てられました。
-issues.filter_type.created_by_you=あなたが作成しました。
-issues.filter_type.mentioning_you=あなたに伝える
-issues.filter_sort=並べ替え
-issues.filter_sort.latest=最新
-issues.filter_sort.oldest=最も古い
-issues.filter_sort.recentupdate=Recently updated
-issues.filter_sort.leastupdate=Least recently updated
-issues.filter_sort.mostcomment=Most commented
-issues.filter_sort.leastcomment=Least commented
-issues.opened_by=opened %[1]s by <a href="%[2]s">%[3]s</a>
-issues.opened_by_fake=opened %[1]s by %[2]s
-issues.previous=前ページ
-issues.next=次ページ
-issues.open_title=Open
-issues.closed_title=Closed
-issues.num_comments=%d comments
-issues.commented_at=`commented <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.no_content=There is no content yet.
-issues.close_issue=Close
-issues.close_comment_issue=Close and comment
-issues.reopen_issue=Reopen
-issues.reopen_comment_issue=Reopen and comment
-issues.create_comment=Comment
-issues.closed_at=`closed <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.reopened_at=`reopened <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.commit_ref_at=`referenced this issue from a commit <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.poster=Poster
-issues.admin=Admin
-issues.owner=Owner
-issues.sign_up_for_free=Sign up for free
-issues.sign_in_require_desc=to join this conversation. Already have an account? <a href="%s">Sign in to comment</a>
-issues.edit=Edit
-issues.cancel=Cancel
-issues.save=Save
-issues.label_title=ラベル名
-issues.label_color=ラベルの色
-issues.label_count=%d ラベル
-issues.label_open_issues=%d 未解決の問題
-issues.label_edit=編集
-issues.label_delete=削除
-issues.label_modify=ラベルの変更
-issues.label_deletion=ラベルの削除
-issues.label_deletion_desc=ラベルを削除すると、関連するすべての問題の情報が削除されます。続行しますか。
-issues.label_deletion_success=ラベルは正常に削除されました。
-
-pulls.compare_changes=変更を比較
-pulls.compare_changes_desc=2つのブランチを比較し、プルリクエストを作成します。
-pulls.compare_base=base
-pulls.compare_compare=compare
-pulls.filter_branch=Filter branch
-pulls.no_results=結果が見つかりませんでした。
-pulls.nothing_to_compare=There is nothing to compare because base and head branches are even.
-pulls.has_pull_request=`There is already a pull request between these two targets: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>`
-pulls.create=Create Pull Request
-pulls.title_desc=wants to merge %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code>
-pulls.merged_title_desc=merged %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> %[4]s
-pulls.tab_conversation=Conversation
-pulls.tab_commits=Commits
-pulls.tab_files=Files changed
-pulls.reopen_to_merge=Please reopen this pull request to perform merge operation.
-pulls.merged=Merged
-pulls.has_merged=This pull request has been merged successfully!
-pulls.data_broken=Data of this pull request has been broken due to deletion of fork information.
-pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments.
-pulls.can_auto_merge_desc=You can perform auto-merge operation on this pull request.
-pulls.cannot_auto_merge_desc=You can't perform auto-merge operation because there are conflicts between commits.
-pulls.cannot_auto_merge_helper=Please use command line tool to solve it.
-pulls.merge_pull_request=Merge Pull Request
-pulls.open_unmerged_pull_exists=`You can't perform reopen operation because there is already an open pull request (#%d) from same repository with same merge information and is waiting for merging.`
-
-milestones.new=新しいマイルストーン
-milestones.open_tab=%d オープン
-milestones.close_tab=%d クローズ
-milestones.closed=%s を閉じました
-milestones.no_due_date=期限なし
-milestones.open=開く
-milestones.close=閉じる
-milestones.new_subheader=Create milestones to organize your issues.
-milestones.create=Create Milestone
-milestones.title=Title
-milestones.desc=Description
-milestones.due_date=Due Date (optional)
-milestones.clear=Clear
-milestones.invalid_due_date_format=Due date format is invalid, must be 'year-mm-dd'.
-milestones.create_success=Milestone '%s' has been created successfully!
-milestones.edit=Edit Milestone
-milestones.edit_subheader=Use better description for milestones so people won't be confused.
-milestones.cancel=Cancel
-milestones.modify=Modify Milestone
-milestones.edit_success=Changes of milestone '%s' has been saved successfully!
-milestones.deletion=Milestone Deletion
-milestones.deletion_desc=Delete this milestone will remove its information in all related issues. Do you want to continue?
-milestones.deletion_success=Milestone has been deleted successfully!
-
-settings=設定
-settings.options=オプション
-settings.collaboration=コラボレーション
-settings.hooks=Webhooks
-settings.githooks=Git のフック
-settings.basic_settings=基本設定
-settings.danger_zone=危険地帯
-settings.site=公式サイト
-settings.update_settings=設定の更新
-settings.change_reponame_prompt=This change will affect how links relate to the repository.
-settings.transfer=オーナー移転
-settings.transfer_desc=リポジトリをあなたが管理者権限を持っている別のユーザーまた組織に移譲します。
-settings.new_owner_has_same_repo=新しいオーナーは、既に同じ名前のリポジトリを持っています。
-settings.delete=このリポジトリを削除
-settings.delete_desc=リポジトリを削除すると元に戻せません。確実に確認してください。
-settings.transfer_notices_1=- You will lose access if new owner is a individual user.
-settings.transfer_notices_2=- You will conserve access if new owner is an organization and if you're one of the owners.
-settings.transfer_form_title=Please enter following information to confirm your operation:
-settings.delete_notices_1=- This operation <strong>CANNOT</strong> be undone.
-settings.delete_notices_2=- This operation will permanently delete the everything of this repository, including Git data, issues, comments and accesses of collaborators.
-settings.delete_notices_fork_1=- If this repository is public, all forks will be became independent after deletion.
-settings.delete_notices_fork_2=- If this repository is private, all forks will be removed at the same time.
-settings.delete_notices_fork_3=- If you want to keep all forks after deletion, please change visibility of this repository to public first.
-settings.update_settings_success=リポジトリ オプションが更新されました。
-settings.transfer_owner=新しいオーナー
-settings.make_transfer=転送
-settings.transfer_succeed=リポジトリの所有権は正常に転送されました。
-settings.confirm_delete=削除の確認
-settings.add_collaborator=新しい共同編集者を追加
-settings.add_collaborator_success=新しい共同編集者が追加されました。
-settings.remove_collaborator_success=共同編集者が削除されました。
-settings.user_is_org_member=ユーザーは組織の一員なので、共同編集者として追加することはできません。
-settings.add_webhook=Webhook を追加
-settings.hooks_desc=Webhooksは、Gogsで特定のイベントの発生時に指定された外部サービスに通知を許可します。イベントが発生すると、それぞれ指定されたUrlに、POSTリクエストが送られます。詳細はこちらのの <a target="_blank"href="%s"> Webhooks ガイド</a>をご覧ください。
-settings.webhook_deletion=Delete Webhook
-settings.webhook_deletion_desc=Delete this webhook will remove its information and all delivery history. Do you want to continue?
-settings.webhook_deletion_success=Webhook has been deleted successfully!
-settings.webhook.request=Request
-settings.webhook.response=Response
-settings.webhook.headers=Headers
-settings.webhook.payload=Payload
-settings.webhook.body=Body
-settings.githooks_desc=Git のフックは Git 自体によって提供されています。以下のリストのファイルを編集して、サポートされているフックのカスタム操作を適用することができます。
-settings.githook_edit_desc=もしフックがアクティブではない場合は、サンプルコンテンツが表示されます。コンテンツを空白にするにはこのフックを無効にします。
-settings.githook_name=フックの名前
-settings.githook_content=コンテンツをフック
-settings.update_githook=フックを更新
-settings.add_webhook_desc=私たちは、指定されたURLに購読されたイベントの詳細を <code>POST</code>リクエストとして送信します。あなたは、異なるデータ受信モード(JSONまたは, <code>x-www-form-urlencoded</code>, <em>その他</em>) を設定することができます。詳細については、<a target="_blank" href="%s">Webhookガイド</a>を参照してください。
-settings.payload_url=ペイロードの URL
-settings.content_type=コンテンツ タイプ
-settings.secret=秘密
-settings.slack_username=Username
-settings.slack_icon_url=Icon URL
-settings.slack_color=Color
-settings.event_desc=どのイベントをこのWEBフックのトリガーにしますか?
-settings.event_push_only=<code>push</code> イベントのみ
-settings.event_send_everything=I need <strong>everything</strong>.
-settings.event_choose=Let me choose what I need.
-settings.event_create=Create
-settings.event_create_desc=Branch, or tag created
-settings.event_push=Push
-settings.event_push_desc=Git push to a repository
-settings.active=アクティブ
-settings.active_helper=このフックのトリガーが引かれた時に、イベントの詳細を配信します。
-settings.add_hook_success=新しい webhook が追加されました。
-settings.update_webhook=Webhookを更新
-settings.update_hook_success=Webhook を更新しました。
-settings.delete_webhook=Webhook を削除
-settings.recent_deliveries=最近のデリバリー
-settings.hook_type=フックタイプ
-settings.add_slack_hook_desc=<a href="%s"> Slack</a> インテグレーションをリポジトリに追加します。
-settings.slack_token=トークン
-settings.slack_domain=ドメイン
-settings.slack_channel=チャンネル
-settings.deploy_keys=デプロイキー
-settings.add_deploy_key=Add Deploy Key
-settings.no_deploy_keys=You haven't added any deploy key.
-settings.title=Title
-settings.deploy_key_content=Content
-settings.key_been_used=Deploy key content has been used.
-settings.key_name_used=Deploy key with same name has already existed.
-settings.add_key_success=New deploy key '%s' has been added successfully!
-settings.deploy_key_deletion=Delete Deploy Key
-settings.deploy_key_deletion_desc=Delete this deploy key will remove all related accesses for this repository. Do you want to continue?
-settings.deploy_key_deletion_success=Deploy key has been deleted successfully!
-
-diff.browse_source=ソースを参照
-diff.parent=親
-diff.commit=コミット
-diff.data_not_available=差分データは利用できません。
-diff.show_diff_stats=差分情報を表示
-diff.stats_desc=共有<strong>%d 個のファイルを変更した</strong>、<strong>%d 個の追加</strong> と <strong>%d 個の削除</strong>を含む
-diff.bin=BIN
-diff.view_file=ファイルの表示
-
-release.releases=リリース
-release.new_release=新しいリリース
-release.draft=ドラフト
-release.prerelease=プレリリース
-release.stable=安定
-release.edit=編集
-release.ahead=このリリース以降 %s へ <strong>%d</strong> コミット
-release.source_code=ソース コード
-release.tag_name=タグ名
-release.target=ターゲット
-release.tag_helper=既存のタグを選択するか、新しいタグを作成し発行します。
-release.release_title=リリース タイトル
-release.content_with_md=<a href="%s"> Markdown</a> コンテンツ
-release.write=書込み
-release.preview=プレビュー
-release.content_placeholder=コンテンツを書く
-release.loading=読み込み中…
-release.prerelease_desc=これはリリース前のものです
-release.prerelease_helper=このリリースは非プロダクション利用として識別します。
-release.publish=リリースを発行
-release.save_draft=下書きを保存
-release.edit_release=リリースを編集
-release.tag_name_already_exist=このタグ名には既にリリースが存在します。
-
-[org]
-org_name_holder=組織名
-org_name_helper=偉大な組織の名は短く覚えやすいです。
-create_org=組織を作成
-repo_updated=更新した
-people=人々
-invite_someone=誰かを招待
-teams=チーム
-lower_members=メンバー
-lower_repositories=リポジトリ
-create_new_team=新しいチームを作成
-org_desc=説明
-team_name=チーム名
-team_desc=説明
-team_name_helper=会話の時、この名前を使用しチーム名を表明します。
-team_desc_helper=このチームに関する全ての情報は?
-team_permission_desc=このチームに必要な権限レベルは?
-
-form.name_reserved=組織名 '%s' は予約されています。
-form.name_pattern_not_allowed=組織名のパターン '%s' は許可されていません。
-
-settings=設定
-settings.options=オプション
-settings.full_name=フルネーム
-settings.website=WEBサイト
-settings.location=ロケーション
-settings.update_settings=設定の更新
-settings.update_setting_success=組織の設定が更新されました。
-settings.change_orgname_prompt=This change will affect how links relate to the organization.
-settings.update_avatar_success=Organization avatar setting has been updated successfully.
-settings.delete=組織を削除
-settings.delete_account=この組織を削除
-settings.delete_prompt=操作はこの組織を完全に削除し、復旧<strong>できない</strong>!
-settings.confirm_delete_account=削除の確認
-settings.delete_org_title=組織の削除
-settings.delete_org_desc=この組織は完全に削除されます、継続しますか?
-settings.hooks_desc=この組織のもとで <strong>すべてのリポジトリ</strong> に対してトリガーされる webhook を追加します。
-
-members.public=パブリック
-members.public_helper=プライベートにする
-members.private=プライベート
-members.private_helper=公開する
-members.owner=オーナー
-members.member=メンバー
-members.conceal=隠す
-members.remove=削除
-members.leave=退出
-members.invite_desc=%s に招待する新しいメンバーをユーザ名を入力してください:
-members.invite_now=今すぐ招待
-
-teams.join=参加
-teams.leave=退出
-teams.read_access=読み取りアクセス権
-teams.read_access_helper=このチームはリポジトリの閲覧とクローンをすることができます。
-teams.write_access=書き込みアクセス権
-teams.write_access_helper=このチームはリポジトリを読むだけではなく、プッシュすることもできます。
-teams.admin_access=管理者のアクセス権
-teams.admin_access_helper=このチームはリポジトリにプッシュ/プル、及び他の共同編集者を追加することができます。
-teams.no_desc=このチームは説明がありません。
-teams.settings=設定
-teams.owners_permission_desc=オーナーは<strong>すべてのリポジトリ</strong> へのフルアクセス権、組織の <strong>管理権限</strong>を持ちます。
-teams.members=チーム メンバー
-teams.update_settings=設定の更新
-teams.delete_team=このチームを削除
-teams.add_team_member=チーム メンバーを追加
-teams.delete_team_title=チームの削除
-teams.delete_team_desc=このチームを削除します、継続しますか?このチームのメンバーはいくつかのリポジトリへのアクセスを失う可能性があります。
-teams.delete_team_success=指定のチームが正常に削除されました。
-teams.read_permission_desc=このチームは<strong>読み取り</strong>権限を持ち: メンバーはリポジトリの表示及びクローンの作成ができます。
-teams.write_permission_desc=このチームは<strong>書き込み</strong>権限を持ち: メンバーはリポジトリの表示及リポジトリへのプッシュができます。
-teams.admin_permission_desc=このチームは<strong>管理者</strong>の権限を持ち: メンバーはチームのリポジトリに対して、読み取り、プッシュや共同編集者の追加ができます。
-teams.repositories=チームのリポジトリ
-teams.add_team_repository=チームのリポジトリを追加
-teams.remove_repo=削除(Remove)
-teams.add_nonexistent_repo=追加しようとしているリポジトリは存在しません。まずはじめに作成してください。
-
-[admin]
-dashboard=ダッシュボード
-users=ユーザ
-organizations=組織
-repositories=リポジトリ
-authentication=認証
-config=コンフィギュレーション
-notices=システム通知
-monitor=モニタリング
-first_page=First
-last_page=Last
-total=Total: %d
-
-dashboard.statistic=統計
-dashboard.operations=操作
-dashboard.system_status=システム モニターのステータス
-dashboard.statistic_info=Gogs データベースは <b>%d</b> ユーザ, <b>%d</b> 組織, <b>%d</b> 公開鍵, <b>%d</b> リポジトリ, <b>%d</b> ウォッチ, <b>%d</b> スター, <b>%d</b> 行動, <b>%d</b> アクセス, <b>%d</b> 問題, <b>%d</b> コメント, <b>%d</b> ソーシャルアカウント, <b>%d</b> フォロー, <b>%d</b> ミラー, <b>%d</b> リリース, <b>%d</b> ログイン元, <b>%d</b> webhook, <b>%d</b> マイルストーン, <b>%d</b> ラベル, <b>%d</b> フックタスク, <b>%d</b> チーム, <b>%d</b> アップデートタスク, <b>%d</b> 添付ファイル の情報を持っています。
-dashboard.operation_name=操作の名前
-dashboard.operation_switch=スイッチ
-dashboard.operation_run=実行
-dashboard.clean_unbind_oauth=結び付けられていない OAuth をクリーン
-dashboard.clean_unbind_oauth_success=結び付けられていない全ての OAuth を正常に削除しました。
-dashboard.delete_inactivate_accounts=非アクティブのアカウントをすべて削除
-dashboard.delete_inactivate_accounts_success=すべての非アクティブアカウントは正常に削除されました。
-dashboard.delete_repo_archives=リポジトリのすべてのアーカイブを削除
-dashboard.delete_repo_archives_success=リポジトリのすべてのアーカイブが正常に削除されました。
-dashboard.git_gc_repos=リポジトリでのガベージコレクションを実行します。
-dashboard.git_gc_repos_success=すべてのリポジトリは正常にガベージ コレクションを行いました。
-dashboard.resync_all_sshkeys='.ssh/ authorized_keys' ファイルを再生成します。(警告:Gogsキー以外は失われます)
-dashboard.resync_all_sshkeys_success=すべての公開鍵が正常に書き換えられました。
-dashboard.resync_all_update_hooks=リポジトリの update フックをすべて再更新する(カスタムの設定パスが変更されたときに必要)
-dashboard.resync_all_update_hooks_success=リポジトリの update フックがすべて正常に再更新されました。
-
-dashboard.server_uptime=サーバーの稼働時間
-dashboard.current_goroutine=現在のGoroutine
-dashboard.current_memory_usage=現在のメモリ使用量
-dashboard.total_memory_allocated=割り当てられたメモリの合計
-dashboard.memory_obtained=配分されたメモリ量
-dashboard.pointer_lookup_times=ポインタ参照回数
-dashboard.memory_allocate_times=メモリ割当回数
-dashboard.memory_free_times=メモリ解放回数
-dashboard.current_heap_usage=現在のヒープ使用量
-dashboard.heap_memory_obtained=配分されたヒープ メモリ量
-dashboard.heap_memory_idle=アイドルのヒープ メモリ量
-dashboard.heap_memory_in_use=使用中のヒープ メモリ
-dashboard.heap_memory_released=ヒープ メモリが解放されました
-dashboard.heap_objects=ヒープ オブジェクト
-dashboard.bootstrap_stack_usage=ブートストラップスタック使用量
-dashboard.stack_memory_obtained=配分されたスタック メモリ量
-dashboard.mspan_structures_usage=MSpan 構造体の使用量
-dashboard.mspan_structures_obtained=配分されたMSpan 構造体
-dashboard.mcache_structures_usage=MCache 構造体の使用量
-dashboard.mcache_structures_obtained=分配されたMCache 構造体
-dashboard.profiling_bucket_hash_table_obtained=ハッシュテーブル分析に割り当てられたメモリ
-dashboard.gc_metadata_obtained=GCメタデータ取得
-dashboard.other_system_allocation_obtained=他のシステムに割り当てられたメモリ
-dashboard.next_gc_recycle=次回のGCリサイクル
-dashboard.last_gc_time=前回GCからの時間
-dashboard.total_gc_time=GC一時停止の合計
-dashboard.total_gc_pause=GC一時停止の合計
-dashboard.last_gc_pause=直近のGC一時停止
-dashboard.gc_times=GC実行回数
-
-users.user_manage_panel=ユーザー管理パネル
-users.new_account=新規アカウントを作成
-users.name=名前
-users.activated=アクティブ化
-users.admin=アドミン
-users.repos=リポジトリ
-users.created=作成されました
-users.send_register_notify=Send Registration Notification To User
-users.new_success=New account '%s' has been created successfully.
-users.edit=編集
-users.auth_source=Authentication Source
-users.local=ローカル
-users.auth_login_name=Authentication Login Name
-users.password_helper=Leave it empty to remain unchanged.
-users.update_profile_success=アカウントのプロファイルが更新されました。
-users.edit_account=アカウントの編集
-users.is_activated=アカウントがアクティブされました
-users.is_admin=このアカウントには管理者の権限を持つ
-users.allow_git_hook=このアカウントには Git のフックを作成する権限を持つ
-users.update_profile=アカウント ・ プロファイルを更新
-users.delete_account=このアカウントを削除
-users.still_own_repo=アカウント所有のリポジトリがあり、リポジトリの削除または所有者の移譲が必要です。
-users.still_has_org=アカウントはまだ組織のメンバーであり、組織から退出するか削除する必要があります。
-users.deletion_success=Account has been deleted successfully!
-
-orgs.org_manage_panel=組織の管理パネル
-orgs.name=名前
-orgs.teams=チーム
-orgs.members=メンバー
-
-repos.repo_manage_panel=リポジトリの管理パネル
-repos.owner=オーナー
-repos.name=名前
-repos.private=プライベート
-repos.watches=Watches
-repos.stars=Stars
-repos.issues=課題
-
-auths.auth_manage_panel=Authentication Manage Panel
-auths.new=Add New Source
-auths.name=名前
-auths.type=タイプ
-auths.enabled=Enabled
-auths.updated=Updated
-auths.auth_type=Authentication Type
-auths.auth_name=Authentication Name
-auths.domain=ドメイン
-auths.host=ホスト
-auths.port=ポート
-auths.bind_dn=Bind DN
-auths.bind_password=Bind Password
-auths.bind_password_helper=Warning: This password is stored in plain text. Do not use a high privileged account.
-auths.user_base=User Search Base
-auths.user_dn=User DN
-auths.attribute_name=名前属性
-auths.attribute_surname=名字属性
-auths.attribute_mail=Eメール属性
-auths.filter=User Filter
-auths.admin_filter=Admin Filter
-auths.ms_ad_sa=Ms Ad SA
-auths.smtp_auth=SMTP Authentication Type
-auths.smtphost=SMTP ホスト
-auths.smtpport=SMTP ポート
-auths.allowed_domains=Allowed Domains
-auths.allowed_domains_helper=Leave it empty to not restrict any domains. Multiple domains should be separated by comma ','.
-auths.enable_tls=TLS 暗号化を有効にする
-auths.skip_tls_verify=Skip TLS Verify
-auths.pam_service_name=PAMサービス名
-auths.enable_auto_register=自動登録を有効にする
-auths.tips=ヒント
-auths.edit=Edit Authentication Setting
-auths.activated=認証がアクティブされました
-auths.new_success=New authentication '%s' has been added successfully.
-auths.update_success=Authentication setting has been updated successfully.
-auths.update=Update Authentication Setting
-auths.delete=Delete This Authentication
-auths.delete_auth_title=Authentication Deletion
-auths.delete_auth_desc=This authentication is going to be deleted, do you want to continue?
-auths.deletion_success=Authentication has been deleted successfully!
-
-config.server_config=サーバーの構成
-config.app_name=アプリケーション名
-config.app_ver=アプリケーションのバージョン
-config.app_url=アプリケーションの URL
-config.domain=ドメイン
-config.offline_mode=オフラインモード
-config.disable_router_log=ルーターのログを無効にする
-config.run_user=実行ユーザ
-config.run_mode=実行モード
-config.repo_root_path=リポジトリのルートパス
-config.static_file_root_path=静的ファイルのルートパス
-config.log_file_root_path=ログ ファイルのルート パス
-config.script_type=スクリプトの種類
-config.reverse_auth_user=リバース認証ユーザ
-config.db_config=データベースの構成
-config.db_type=タイプ
-config.db_host=ホスト
-config.db_name=名前
-config.db_user=ユーザ
-config.db_ssl_mode=SSL モード
-config.db_ssl_mode_helper=(「postgres」のみ)
-config.db_path=パス
-config.db_path_helper=(for "sqlite3" and "tidb")
-config.service_config=サービスの構成
-config.register_email_confirm=電子メールの確認を必要
-config.disable_register=登録を無効にする
-config.show_registration_button=登録ボタンを表示します。
-config.require_sign_in_view=サインインを要求
-config.enable_cache_avatar=アバターのキャッシュを有効にします。
-config.mail_notify=メール通知
-config.disable_key_size_check=Disable Minimum Key Size Check
-config.enable_captcha=Enable Captcha
-config.active_code_lives=コードリンクの有効期限をアクティブ
-config.reset_password_code_lives=パスワードリンクの有効期限をリセット
-config.webhook_config=Webhook設定
-config.queue_length=Queue Length
-config.deliver_timeout=送信タイムアウト
-config.skip_tls_verify=TLSの確認を省略
-config.mailer_config=メーラーの構成
-config.mailer_enabled=有効にした
-config.mailer_disable_helo=HELOコマンド無効
-config.mailer_name=名前
-config.mailer_host=ホスト
-config.mailer_user=ユーザ
-config.oauth_config=OAuth 構成
-config.oauth_enabled=Enabled
-config.cache_config=キャッシュの構成
-config.cache_adapter=キャッシュ アダプター
-config.cache_interval=キャッシュ間隔
-config.cache_conn=キャッシュ接続
-config.session_config=セッションの構成
-config.session_provider=セッション プロバイダー
-config.provider_config=プロバイダーの構成
-config.cookie_name=クッキー名
-config.enable_set_cookie=クッキーの設定を有効にする
-config.gc_interval_time=GC 間隔
-config.session_life_time=セッションのライフタイム
-config.https_only=HTTPS のみ
-config.cookie_life_time=クッキーのライフタイム
-config.picture_config=画像構成
-config.picture_service=画像サービス
-config.disable_gravatar=グラバターを無効にする
-config.log_config=ログの構成
-config.log_mode=ログ モード
-
-monitor.cron=Cron タスク
-monitor.name=名前
-monitor.schedule=スケジュール
-monitor.next=次回
-monitor.previous=前回
-monitor.execute_times=実行回数
-monitor.process=実行中のプロセス
-monitor.desc=説明
-monitor.start=開始日時
-monitor.execute_time=実行時間:
-
-notices.system_notice_list=システム通知
-notices.type=タイプ
-notices.type_1=リポジトリ
-notices.desc=説明
-notices.op=Op。
-notices.delete_success=システム通知が正常に削除されました。
-
-[action]
-create_repo=リポジトリ <a href="%s"> %s</a>を作成しました
-rename_repo=renamed repository from <code>%[1]s</code> to <a href="%[2]s">%[3]s</a>
-commit_repo=<a href="%[1]s">%[3]s</a>を<a href="%[1]s/src/%[2]s">%[2]s</a>にプッシュしました
-create_issue=`問題 <a href="%s/issues/%s">%s#%[2]s</a> を開きました`
-create_pull_request=`created pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-comment_issue=`問題 <a href="%s/issues/%s">%s#%[2]s</a> のコメント`
-merge_pull_request=`merged pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-transfer_repo=リポジトリ <code>%s</code> を <a href="%s">%s</a> へ転送しました
-push_tag=<a href="%[1]s">%[3]s</a> に タグ <a href="%[1]s/src/%[2]s">%[2]s</a> をプッシュしました
-compare_2_commits=これら 2 のコミットの比較を閲覧する
-
-[tool]
-ago=前
-from_now=今から
-now=今
-1s=1 秒 %s
-1m=1 分 %s
-1h=1 時間 %s
-1d=1 日 %s
-1w=1 週間 %s
-1mon=1 ヶ月 %s
-1y=1 年間 %s
-seconds=%d 秒 %s
-minutes=%d 分の %s
-hours=%d 時間 %s
-days=%d 日 %s
-weeks=%d 週間 %s
-months=%d ヶ月 %s
-years=%d 年 %s
-raw_seconds=秒
-raw_minutes=分
-
-[dropzone]
-default_message=Drop files here or click to upload.
-invalid_input_type=You can't upload files of this type.
-file_too_big=File size({{filesize}} MB) exceeds maximum size({{maxFilesize}} MB).
-remove_file=Remove file
-
+app_desc=Go言語で実装したセルフホストGitサービス + +home=ホーム +dashboard=ダッシュボード +explore=エスクプローラ +help=ヘルプ +sign_in=サインイン +sign_out=サインアウト +sign_up=サインアップ +register=登録 +website=WEBサイト +version=バージョン +page=ページ +template=テンプレート +language=言語 +create_new=作成... +user_profile_and_more=ユーザープロファイルなど +signed_in_as=サインイン済み + +username=ユーザ名 +email=E-mail +password=パスワード +re_type=再入力 +captcha=キャプチャ + +repository=リポジトリ +organization=組織 +mirror=ミラー +new_repo=新しいリポジトリ +new_migrate=新しい移行 +new_fork=新しいフォークのリポジトリ +new_org=新しい組織 +manage_org=組織を管理 +admin_panel=管理者パネル +account_settings=アカウント設定 +settings=設定 +your_profile=あなたのプロファイル +your_settings=あなたの設定 + +news_feed=ニュースのフィード +pull_requests=プルリクエスト +issues=課題 + +cancel=キャンセル + +[search] +search=検索... +repository=リポジトリ +user=ユーザ +issue=課題 +code=コード + +[install] +install=インストール +title=初回実行のインストール手順 +docker_helper=DockerでGogsを稼動する場合、このページに変更を加えるまえに、 <a target="_blank" href="%s">Guidelines</a>をよく読んでください! +requite_db_desc=Gogs は、MySQL、PostgreSQL、SQLite3 または TiDB が必要です。 +db_title=データベース設定 +db_type=データベースの種類 +host=ホスト +user=ユーザ +password=パスワード +db_name=データベース名 +db_helper=Mysql INNODB エンジン utf8_general_ci の文字セットを使用してください。 +ssl_mode=SSL モード +path=パス +sqlite_helper=SQLite3 または TiDB のデータベースのファイル パス。 +err_empty_db_path=SQLite3 または TiDB データベースのパスを空にすることはできません。 +err_invalid_tidb_name=TiDB データベース名は文字"."と"-"を許可しない。 +no_admin_and_disable_registration=You cannot disable registration without creating an admin account. +err_empty_admin_password=管理者パスワードは空白にできません。 + +general_title=Gogs の全般設定 +app_name=アプリケーション名 +app_name_helper=素晴らしい組織名を入れてください! +repo_path=リポジトリのルートパス +repo_path_helper=すべての Git リモート リポジトリはこのディレクトリに保存されます。 +run_user=実行ユーザ +run_user_helper=ユーザーはリポジトリ ルートパスへのアクセス、及びGogs を実行する権限を所有する必要があります。 +domain=ドメイン +domain_helper=これはSSHクローンURLに影響する。 +ssh_port=SSH ポート +ssh_port_helper=あならのSSHサーバおポート番号、SSH機能を無効するにはここを空白のままにしてください。 +http_port=HTTP ポート +http_port_helper=アプリケーションが待ち受けするポート番号。 +app_url=アプリケーションの URL +app_url_helper=この設定は、HTTP / HTTPSのクローンURLおよび、一部のメールボックスへのリンクに影響を与えます。 + +optional_title=オプション設定 +email_title=E-mailサービス設定 +smtp_host=SMTP ホスト +smtp_from=差出人 +smtp_from_helper=送信者メールアドレス、RFC 5322。フォーマットはメールアドレスのみ、または"Name" <email@example.com>。 +mailer_user=送信者の電子メール +mailer_password=送信者のパスワード +register_confirm=登録の確認を有効にする +mail_notify=メール通知を有効にする +server_service_title=サーバーとその他のサービスの設定 +offline_mode=オフラインモード有効化 +offline_mode_popup=プロダクション モードでCDN を無効にし、すべてのリソースファイルをローカルで提供します 。 +disable_gravatar=Gravatarのサービスを無効にします +disable_gravatar_popup=Disable Gravatar and custom sources, all avatars are uploaded by users or default. +disable_registration=自己登録を無効にする +disable_registration_popup=自己登録を無効にし、管理者のみがアカウント作成できる +enable_captcha=Captchaを有効にする +enable_captcha_popup=ユーザによる自己登録のため、有効なcaptchaが必要です。 +require_sign_in_view=サインインしたユーザのみページ閲覧を許可 +require_sign_in_view_popup=サインインしたユーザのみがページを閲覧できます。ビジターはサインインもしくはサインアップページのみ見られます。 +admin_setting_desc=今管理者アカウントを作成する必要はありません。ID = 1のユーザ は自動的に管理者の権限を獲得します。 +admin_title=管理者アカウントの設定 +admin_name=ユーザ名 +admin_password=パスワード +confirm_password=パスワード確認 +admin_email=管理者の電子メール +install_gogs=Gogs をインストール +test_git_failed='Git' コマンドテストに失敗: %v +sqlite3_not_available=このリリース バージョンは SQLite3 をサポートしていません。gobuild バージョンではない、公式のバイナリ バージョンを %s からダウンロードしてください。 +invalid_db_setting=データベースの設定が正しくありません: %v +invalid_repo_path=リポジトリのルート パスが無効です: %v +run_user_not_match=実行ユーザーは、現在のユーザーではない: %s-> %s +save_config_failed=構成の保存に失敗した: %v +invalid_admin_setting=管理者アカウントの設定が無効です: %v +install_success=ようこそ!我々はあなたが Gogs を選んでくれて嬉しいです!楽しみましょう! + +[home] +uname_holder=ユーザー名またはEメール +password_holder=パスワード +switch_dashboard_context=ダッシュ ボードのコンテキストを切替 +my_repos=私のリポジトリ +collaborative_repos=共同リポジトリ +my_orgs=私の組織 +my_mirrors=私のミラー +view_home=ビュー %s + +issues.in_your_repos=あなたのリポジトリ + +[explore] +repos=リポジトリ + +[auth] +create_new_account=新規アカウントを作成 +register_hepler_msg=すでにアカウントをお持ちですか?今すぐログイン ! +social_register_hepler_msg=すでにアカウントをお持ちですか?今すぐバインド ! +disable_register_prompt=申し訳ありませんが、登録が無効になっています。サイト管理者に問い合わせてください。 +disable_register_mail=申し訳ありませんが、登録メールの確認機能が無効になっています。 +remember_me=ログイン状態を保持する +forgot_password=パスワードを忘れた +forget_password=パスワードを忘れた? +sign_up_now=アカウントが必要ですか?今すぐサインアップ +confirmation_mail_sent_prompt=新しい確認メールを <b>%s</b> に送りました。登録を完了させるために、%d時間以内にあなたのメールボックスを確認してください。 +active_your_account=アカウントをアクティブ +resent_limit_prompt=申し訳ありませんが、アクティベーションメールは頻繁に送信しています。3 分お待ちください。 +has_unconfirmed_mail=こんにちは %s さん、あなたの電子メール アドレス (<b>%s</b>) は未確認です。もし確認メールをまだ確認できていないか、改めて再送信する場合は、下のボタンをクリックしてください。 +resend_mail=アクティベーションメールを再送信するにはここをクリック +email_not_associate=この電子メール アドレスは、アカウントには関連付けられません。 +send_reset_mail=パスワードリセットのメールを再送するにはここをクリック +reset_password=パスワードリセット +invalid_code=申し訳ありませんが、確認用コードが期限切れまたは無効です。 +reset_password_helper=パスワードをリセットするにはここをクリック +password_too_short=6文字未満のパスワードは設定できません。 + +[mail] +activate_account=あなたのアカウントを有効にしてください。 +activate_email=電子メール アドレスを確認します。 +reset_password=パスワードをリセットします. +register_success=ようこそ、登録成功 +register_notify=Welcome on board + +[modal] +yes=はい +no=いいえ +modify=変更 + +[form] +UserName=ユーザ名 +RepoName=リポジトリ名 +Email=Eメールアドレス +Password=パスワード +Retype=パスワードを再入力 +SSHTitle=SSH キーの名前 +HttpsUrl=HTTPS URL +PayloadUrl=ペイロードの URL +TeamName=チーム名 +AuthName=承認名 +AdminEmail=管理者の電子メール + +require_error=空にできません +alpha_dash_error=アルファベット、数字、ハイフン"-"、アンダースコア"_"のいずれかの必要があります +alpha_dash_dot_error=' アルファベット、数値、ダッシュ(-)、アンダースコア(_) 、ドット(.)のいずれかを入力する必要があります。 ' +size_error=`サイズは %s である必要があります` +min_size_error=' 少なくとも %s 文字の必要があります ' +max_size_error=' %s 文字以下の必要があります ' +email_error=' は有効な電子メール アドレスではない ' +url_error=' は有効な URL はありません。 ' +include_error=' 文字列 '%s' を含める必要があります。 ' +unknown_error=不明なエラー: +captcha_incorrect=Captcha が一致しませんでした。 +password_not_match=パスワードと確認用パスワードが一致同していません。 + +username_been_taken=ユーザー名は既に使用されています。 +repo_name_been_taken=リポジトリ名は既に使用されています。 +org_name_been_taken=組織名は既に使用されています。 +team_name_been_taken=チーム名は既に使用されています。 +email_been_used=電子メール アドレスは既に使用されています。 +illegal_team_name=チーム名に無効な文字が含まれています。 +username_password_incorrect=ユーザー名またはパスワードが正しくありません。 +enterred_invalid_repo_name=入力したリポジトリの名前が正しいかどうかを確認してください。 +enterred_invalid_owner_name=入力された所有者名が正しいかどうかを確認してください。 +enterred_invalid_password=入力したパスワードが正しいかを確認してください。 +user_not_exist=指定されたユーザーは存在しません。 +last_org_owner=削除するユーザーはチームの最後のメンバーです。別の所有者設定が必要です。 + +invalid_ssh_key=SSHを確認できません:%s +unable_verify_ssh_key=GogsはあなたのSSH keyを確認できません。しかし、我々は有効とみなしますので、自分自身で確認してください。 +auth_failed=認証に失敗しました: %v + +still_own_repo=アカウント所有のリポジトリがあり、リポジトリの削除または所有者の移譲が必要です。 +still_has_org=アカウントはまだ組織のメンバーであり、組織から退出するか削除する必要があります。 +org_still_own_repo=この組織はまだリポジトリの所有しています、リポジトリを削除または転送する必要があります。 + +still_own_user=この認証はまだ一部のユーザーによって使用されています。一部のユーザを移動させてから、もう一度削除してください。 + +target_branch_not_exist=ターゲットブランチが存在しない + +[user] +change_avatar=gravatar.com で自分のアバターを変更 +change_custom_avatar=設定で自分のアバターを変更 +join_on=参加しました +repositories=リポジトリ +activity=パブリック・アクティビティ +followers=フォロワー +starred=スター +following=フォロー + +form.name_reserved=ユーザー名 '%s' は予約されています。 +form.name_pattern_not_allowed=ユーザ名のパターン '%s' は許可されていません。 + +[settings] +profile=プロフィール +password=パスワード +ssh_keys=SSH キー +social=SNSアカウント +applications=アプリケーション +orgs=組織 +delete=アカウントを削除 +uid=Uid + +public_profile=パブリック プロフィール +profile_desc=あなたのメールアドレスは公開され、任意のアカウント関連の通知に使用されます。また、Webベースの操作はサイトを介して行います。 +full_name=フルネーム +website=WEBサイト +location=ロケーション +update_profile=プロファイル更新 +update_profile_success=あなたのプロフィールが更新されました。 +change_username=ユーザー名が変更されました +change_username_prompt=この変更はリンクをアカウントに関連付ける方法に影響します。 +continue=続行 +cancel=キャンセル + +enable_custom_avatar=カスタムのアバターを有効にする +enable_custom_avatar_helper=Gravatarからのフェッチを無効にするのを、有効にします +choose_new_avatar=新しいアバターを選択 +update_avatar=アバターの設定を更新 +uploaded_avatar_not_a_image=アップロードされたファイルは画像ではない。 +no_custom_avatar_available=利用可能なカスタム アバターがないため、有効にできません。 +update_avatar_success=あなたのアバターの設定が更新されました。 + +change_password=パスワードを変更 +old_password=現在のパスワード +new_password=新しいパスワード +retype_new_password=新しいパスワードを再入力します。 +password_incorrect=現在のパスワードが正しくありません。 +change_password_success=パスワードが正常に変更されました。今すぐ新しいパスワード経由でサインインすることができます。 + +emails=E-mail アドレス +manage_emails=E-mail アドレスを管理 +email_desc=あなたのプライマリメールアドレスは、通知やその他の操作に使用されます。 +primary=プライマリー +primary_email=プライマリに設定 +delete_email=削除 +email_deletion=電子メールの削除 +email_deletion_desc=この電子メール アドレスを削除すると、あなたのアカウントの関連情報も削除されます。続行しますか。 +email_deletion_success=電子メールが正常に削除されました。 +add_new_email=新しいe-mailアドレスを追加 +add_email=電子メールを追加します。 +add_email_confirmation_sent='%s' に新しい確認メールを送信しました、次の %d 時間以内に受信トレイを確認し、確認プロセスを完了してください。 +add_email_success=新しいe-mail アドレスが追加されました。 + +manage_ssh_keys=SSH キーを管理 +add_key=キーを追加 +ssh_desc=これはあなたのアカウントに関連付けられている SSH キーの一覧です。あなたが認識していないキーを削除します。 +ssh_helper=<strong>ヘルプが必要ですか?</strong> 我々のガイドをご覧ください。 <a href="%s"> SSH キーを生成</a> <a href="%s"> SSH の一般的な問題</a> +add_new_key=SSH キーを追加 +ssh_key_been_used=公開鍵は使用されています。 +ssh_key_name_used=同じ名前の公開鍵は既に存在しています。 +key_name=キーの名前 +key_content=コンテンツ +add_key_success=新しいSSHキー '%s' が正常に追加されました! +delete_key=削除 +ssh_key_deletion=SSH キーの削除 +ssh_key_deletion_desc=このSSHキーを削除すると、あなたのアカウントに関連するすべてのアクセスが削除されます。続行しますか? +ssh_key_deletion_success=SSH キーは正常に削除されました! +add_on=追加された +last_used=最終使用日 +no_activity=最近の活動なし +key_state_desc=この鍵は7日間以内に使われています。 +token_state_desc=この鍵は7日間以内に使われています。 + +manage_social=関連付けられているSNSアカウントを管理 +social_desc=これは関連付けられたソーシャルアカウントのリストです。あなたが認識していない結び付けを削除します。 +unbind=バインド解除 +unbind_success=SNSアカウントがバインドされていない。 + +manage_access_token=個人のアクセス トークンを管理 +generate_new_token=新しいトークンを生成 +tokens_desc=生成したトークンを利用して Gogs の API にアクセスすることができます。 +new_token_desc=今のところ、全てのトークンはあなたのアカウントにフルアクセスできます。 +token_name=トークン名 +generate_token=トークンを生成 +generate_token_succees=新しいアクセス トークンは正常に生成されました !今すぐあなたの新しいアクセス トークンをコピーしておいてください。二度と見ることはできませんので確認してください! +delete_token=削除 +access_token_deletion=パーソナルアクセストークンの削除 +access_token_deletion_desc=パーソナルアクセストークンを削除すると、関連するアプリケーションのすべてのアクセスが削除されます。続行しますか? +delete_token_success=パーソナルアクセストークンは正常に削除されました!同時にあなたのアプリケーションを更新することを忘れないでください。 + +delete_account=アカウントを削除 +delete_prompt=この操作はあなたのアカウントを完全に削除し、復旧<strong>できない</strong> ! +confirm_delete_account=削除の確認 +delete_account_title=アカウントの削除 +delete_account_desc=このアカウントは永久に削除しようとしている、継続しますか? + +[repo] +owner=オーナー +repo_name=リポジトリ名 +repo_name_helper=偉大なリポジトリ名は短い。思い出に残り、そして<strong>一意</strong>だ。 +visibility=ビジビリティ +visiblity_helper=このリポジトリは<span class="ui red text">プライベート</span>です。 +visiblity_helper_forced=サイト管理者は、強制的にすべての新しいリポジトリを<span class="ui red text"> プライベート</span> にしています。 +visiblity_fork_helper=(この値の変更はすべてのフォークに適用されます) +clone_helper=クローニングのヘルプが必要ですか?<a target="_blank"href="%s"> ヘルプ</a> を参照してください! +fork_repo=フォークのリポジトリ +fork_from=フォーク元 +fork_visiblity_helper=フォークされたリポジトリは可視状態を変更できません +repo_desc=説明 +repo_lang=言語 +repo_lang_helper=.gitignoreファイルを選択 +license=ライセンス +license_helper=ライセンス ファイルを選択 +readme=Readme +readme_helper=Readme ファイルのテンプレートを選択 +auto_init=選択されたファイルおよびテンプレートでリポジトリを初期化 +create_repo=リポジトリを作成 +default_branch=デフォルトのブランチ +mirror_interval=ミラー 間隔(時) +watchers=Watchers +stargazers=Stargazers +forks=Forks + +form.name_reserved=リポジトリ名 '%s' は予約されています。 +form.name_pattern_not_allowed=リポジトリ名のパターン '%s' は許可されていません。 + +need_auth=認証が必要 +migrate_type=マイグレーションの種類 +migrate_type_helper=このリポジトリは、<span class="text blue"> ミラー</span> になります +migrate_repo=リポジトリを移行 +migrate.clone_address=クローンアドレス +migrate.clone_address_desc=これは、HTTP/HTTPS/GIT URL またはローカル サーバー パスを設定できます。 +migrate.permission_denied=You are not allowed to import local repositories. +migrate.invalid_local_path=ローカルパスが無効です。存在しないかディレクトリではありません。 +migrate.failed=Migration failed: %v + +forked_from=フォーク元 +fork_from_self=すでにあなたの所有しているリポジトリはフォークできません +copy_link=コピー +copy_link_success=コピーされました! +copy_link_error=⌘ C または Ctrl-C キーを押してコピー +copied=コピー成功 +unwatch=Unwatch +watch=Watch +unstar=Unstar +star=Star +fork=Fork + +no_desc=説明なし +quick_guide=クイック ガイド +clone_this_repo=このリポジトリのクローンを作成 +create_new_repo_command=コマンドラインで新しいリポジトリを作成します。 +push_exist_repo=コマンド ・ ラインから既存のリポジトリをプッシュ +repo_is_empty=このリポジトリは空です、後で戻って来て下さい! + +branch=ブランチ +tree=ツリー +filter_branch_and_tag=Filter branch or tag +branches=ブランチ +tags=タグ +issues=課題 +pulls=プルリクエスト +labels=ラベル +milestones=マイルストーン +commits=コミット +releases=リリース +file_raw=生データ +file_history=履歴 +file_view_raw=生データを見る +file_permalink=パーマリンク + +commits.commits=コミット +commits.search=コミットの検索 +commits.find=検索 +commits.author=作者 +commits.message=メッセージ +commits.date=日付 +commits.older=古い +commits.newer=新しい + +issues.new=新しい問題 +issues.new.labels=ラベル +issues.new.no_label=ラベルなし +issues.new.clear_labels=ラベルをクリア +issues.new.milestone=マイルストーン +issues.new.no_milestone=マイルストーンなし +issues.new.clear_milestone=マイルストーンをクリア +issues.new.open_milestone=オープン中のマイルストーン +issues.new.closed_milestone=クローズされたマイルストーン +issues.new.assignee=担当者 +issues.new.clear_assignee=担当者をクリア +issues.new.no_assignee=担当者なし +issues.create=問題を作成 +issues.new_label=新しいラベル +issues.new_label_placeholder=ラベル名... +issues.create_label=ラベルを作成 +issues.open_tab=%d オープン +issues.close_tab=%d クローズ +issues.filter_label=ラベル +issues.filter_label_no_select=選択したラベルがありません。 +issues.filter_milestone=マイルストーン +issues.filter_milestone_no_select=選択されたマイルストーンなし +issues.filter_assignee=アサインされた人 +issues.filter_assginee_no_select=選択可能な担当者がいない +issues.filter_type=タイプ +issues.filter_type.all_issues=すべての問題 +issues.filter_type.assigned_to_you=あなたに割り当てられました。 +issues.filter_type.created_by_you=あなたが作成しました。 +issues.filter_type.mentioning_you=あなたに伝える +issues.filter_sort=並べ替え +issues.filter_sort.latest=最新 +issues.filter_sort.oldest=最も古い +issues.filter_sort.recentupdate=最近更新された +issues.filter_sort.leastupdate=Least recently updated +issues.filter_sort.mostcomment=一番多いコメント +issues.filter_sort.leastcomment=一番少ないコメント +issues.opened_by=opened %[1]s by <a href="%[2]s">%[3]s</a> +issues.opened_by_fake=opened %[1]s by %[2]s +issues.previous=前ページ +issues.next=次ページ +issues.open_title=オープン +issues.closed_title=クローズ +issues.num_comments=%d コメント +issues.commented_at=`commented <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.no_content=まだコンテンツがありません +issues.close_issue=閉じる +issues.close_comment_issue=コメントと閉じる +issues.reopen_issue=Reopen +issues.reopen_comment_issue=コメントと再開 +issues.create_comment=コメント +issues.closed_at=`closed <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.reopened_at=`reopened <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.commit_ref_at=`referenced this issue from a commit <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.poster=ポスター +issues.admin=アドミン +issues.owner=オーナー +issues.sign_up_for_free=無料でサインアップ +issues.sign_in_require_desc=to join this conversation. Already have an account? <a href="%s">Sign in to comment</a> +issues.edit=編集 +issues.cancel=キャンセル +issues.save=保存 +issues.label_title=ラベル名 +issues.label_color=ラベルの色 +issues.label_count=%d ラベル +issues.label_open_issues=%d 未解決の問題 +issues.label_edit=編集 +issues.label_delete=削除 +issues.label_modify=ラベルの変更 +issues.label_deletion=ラベルの削除 +issues.label_deletion_desc=ラベルを削除すると、関連するすべての問題の情報が削除されます。続行しますか。 +issues.label_deletion_success=ラベルは正常に削除されました。 + +pulls.new=New Pull Request +pulls.compare_changes=変更を比較 +pulls.compare_changes_desc=2つのブランチを比較し、プルリクエストを作成します。 +pulls.compare_base=ベース +pulls.compare_compare=比較 +pulls.filter_branch=フィルターブランチ +pulls.no_results=結果が見つかりませんでした。 +pulls.nothing_to_compare=There is nothing to compare because base and head branches are even. +pulls.has_pull_request=`There is already a pull request between these two targets: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>` +pulls.create=プルリクエストを作成します。 +pulls.title_desc=wants to merge %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> +pulls.merged_title_desc=merged %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> %[4]s +pulls.tab_conversation=会話 +pulls.tab_commits=コミット +pulls.tab_files=ファイルが変更された +pulls.reopen_to_merge=Please reopen this pull request to perform merge operation. +pulls.merged=マージされた +pulls.has_merged=このプルプルリクエストは正常にマージされました! +pulls.data_broken=Data of this pull request has been broken due to deletion of fork information. +pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments. +pulls.can_auto_merge_desc=You can perform auto-merge operation on this pull request. +pulls.cannot_auto_merge_desc=You can't perform auto-merge operation because there are conflicts between commits. +pulls.cannot_auto_merge_helper=それを解決するためにコマンド ライン ツールを使用してください。 +pulls.merge_pull_request=プルリクエストをマージします。 +pulls.open_unmerged_pull_exists=`You can't perform reopen operation because there is already an open pull request (#%d) from same repository with same merge information and is waiting for merging.` + +milestones.new=新しいマイルストーン +milestones.open_tab=%d オープン +milestones.close_tab=%d クローズ +milestones.closed=%s を閉じました +milestones.no_due_date=期限なし +milestones.open=開く +milestones.close=閉じる +milestones.new_subheader=あなたの課題を整理するためマイルス トーンを作成します。 +milestones.create=マイルス トーンを作成 +milestones.title=タイトル +milestones.desc=説明 +milestones.due_date=期日 (オプション) +milestones.clear=消去 +milestones.invalid_due_date_format=期限日付のフォーマットが無効、'yyyy-mm-dd' のフォーマットが必要です。 +milestones.create_success=マイルス トーン '%s' が正常に作成されました! +milestones.edit=マイルス トーンを編集 +milestones.edit_subheader=人々を混乱させないため、マイルス トーンにより良い説明を使用します。 +milestones.cancel=キャンセル +milestones.modify=マイルス トーンを変更します。 +milestones.edit_success=マイルス トーン '%s' の変更が正常に保存されました。 +milestones.deletion=マイルス トーンの削除 +milestones.deletion_desc=このマイルス トーンを削除すると、関連課題に該当情報が削除されます。続行しますか。 +milestones.deletion_success=マイルス トーンは正常に削除されました。 + +settings=設定 +settings.options=オプション +settings.collaboration=コラボレーション +settings.hooks=Webhooks +settings.githooks=Git のフック +settings.basic_settings=基本設定 +settings.danger_zone=危険地帯 +settings.site=公式サイト +settings.update_settings=設定の更新 +settings.change_reponame_prompt=この変更はリンクがリポジトリに関連付ける方法に影響します。 +settings.transfer=オーナー移転 +settings.transfer_desc=リポジトリをあなたが管理者権限を持っている別のユーザーまた組織に移譲します。 +settings.new_owner_has_same_repo=新しいオーナーは、既に同じ名前のリポジトリを持っています。 +settings.delete=このリポジトリを削除 +settings.delete_desc=リポジトリを削除すると元に戻せません。確実に確認してください。 +settings.transfer_notices_1=-新しい所有者が個人ユーザーの場合、あなたがアクセスできなくなります。 +settings.transfer_notices_2=- You will conserve access if new owner is an organization and if you're one of the owners. +settings.transfer_form_title=操作を確認するために、以下の情報を入力してください。 +settings.delete_notices_1=- This operation <strong>CANNOT</strong> be undone. +settings.delete_notices_2=- This operation will permanently delete the everything of this repository, including Git data, issues, comments and accesses of collaborators. +settings.delete_notices_fork_1=- If this repository is public, all forks will be became independent after deletion. +settings.delete_notices_fork_2=- If this repository is private, all forks will be removed at the same time. +settings.delete_notices_fork_3=- If you want to keep all forks after deletion, please change visibility of this repository to public first. +settings.update_settings_success=リポジトリ オプションが更新されました。 +settings.transfer_owner=新しいオーナー +settings.make_transfer=転送 +settings.transfer_succeed=リポジトリの所有権は正常に転送されました。 +settings.confirm_delete=削除の確認 +settings.add_collaborator=新しい共同編集者を追加 +settings.add_collaborator_success=新しい共同編集者が追加されました。 +settings.remove_collaborator_success=共同編集者が削除されました。 +settings.search_user_placeholder=Search user... +settings.user_is_org_member=ユーザーは組織の一員なので、共同編集者として追加することはできません。 +settings.add_webhook=Webhook を追加 +settings.hooks_desc=Webhooksは、Gogsで特定のイベントの発生時に指定された外部サービスに通知を許可します。イベントが発生すると、それぞれ指定されたUrlに、POSTリクエストが送られます。詳細はこちらのの <a target="_blank"href="%s"> Webhooks ガイド</a>をご覧ください。 +settings.webhook_deletion=Webhook を削除 +settings.webhook_deletion_desc=このwebhookを削除すると、すべての情報と配信履歴が削除されます。続行しますか? +settings.webhook_deletion_success=Webhook が正常に削除されました。 +settings.webhook.request=リクエスト +settings.webhook.response=レスポンス +settings.webhook.headers=ヘッダ +settings.webhook.payload=ペイロード +settings.webhook.body=ボディ +settings.githooks_desc=Git のフックは Git 自体によって提供されています。以下のリストのファイルを編集して、サポートされているフックのカスタム操作を適用することができます。 +settings.githook_edit_desc=もしフックがアクティブではない場合は、サンプルコンテンツが表示されます。コンテンツを空白にするにはこのフックを無効にします。 +settings.githook_name=フックの名前 +settings.githook_content=コンテンツをフック +settings.update_githook=フックを更新 +settings.add_webhook_desc=私たちは、指定されたURLに購読されたイベントの詳細を <code>POST</code>リクエストとして送信します。あなたは、異なるデータ受信モード(JSONまたは, <code>x-www-form-urlencoded</code>, <em>その他</em>) を設定することができます。詳細については、<a target="_blank" href="%s">Webhookガイド</a>を参照してください。 +settings.payload_url=ペイロードの URL +settings.content_type=コンテンツ タイプ +settings.secret=秘密 +settings.slack_username=ユーザ名 +settings.slack_icon_url=アイコン URL +settings.slack_color=カラー +settings.event_desc=どのイベントをこのWEBフックのトリガーにしますか? +settings.event_push_only=<code>push</code> イベントのみ +settings.event_send_everything=<strong>すべて</strong> が必要です。 +settings.event_choose=必要なものを選択しましょう。 +settings.event_create=Create +settings.event_create_desc=ブランチ、またはタグを作成 +settings.event_push=プッシュ +settings.event_push_desc=Git リポジトリにプッシュ +settings.active=アクティブ +settings.active_helper=このフックのトリガーが引かれた時に、イベントの詳細を配信します。 +settings.add_hook_success=新しい webhook が追加されました。 +settings.update_webhook=Webhookを更新 +settings.update_hook_success=Webhook を更新しました。 +settings.delete_webhook=Webhook を削除 +settings.recent_deliveries=最近のデリバリー +settings.hook_type=フックタイプ +settings.add_slack_hook_desc=<a href="%s"> Slack</a> インテグレーションをリポジトリに追加します。 +settings.slack_token=トークン +settings.slack_domain=ドメイン +settings.slack_channel=チャンネル +settings.deploy_keys=デプロイキー +settings.add_deploy_key=デプロイキーを追加 +settings.no_deploy_keys=でプロキーは1つも追加されていません。 +settings.title=タイトル +settings.deploy_key_content=コンテント +settings.key_been_used=デプロイキーが使用されています。 +settings.key_name_used=同じ名前のデプロイキーが既に存在しています。 +settings.add_key_success=新しいデプロイキー '%s'が正常に追加されました! +settings.deploy_key_deletion=デプロイキーを削除 +settings.deploy_key_deletion_desc=このデプロイキーを削除すると、このリポジトリに関連するすべてのアクセス権も削除されます。続行しますか。 +settings.deploy_key_deletion_success=デプロイキーが正常に削除された! + +diff.browse_source=ソースを参照 +diff.parent=親 +diff.commit=コミット +diff.data_not_available=差分データは利用できません。 +diff.show_diff_stats=差分情報を表示 +diff.stats_desc=共有<strong>%d 個のファイルを変更した</strong>、<strong>%d 個の追加</strong> と <strong>%d 個の削除</strong>を含む +diff.bin=BIN +diff.view_file=ファイルの表示 + +release.releases=リリース +release.new_release=新しいリリース +release.draft=ドラフト +release.prerelease=プレリリース +release.stable=安定 +release.edit=編集 +release.ahead=このリリース以降 %s へ <strong>%d</strong> コミット +release.source_code=ソース コード +release.new_subheader=Publish releases to iterate product. +release.edit_subheader=Detailed change log can help users understand what has been improved. +release.tag_name=タグ名 +release.target=ターゲット +release.tag_helper=既存のタグを選択するか、新しいタグを作成し発行します。 +release.title=Title +release.content=Content +release.write=書込み +release.preview=プレビュー +release.loading=読み込み中… +release.prerelease_desc=これはリリース前のものです +release.prerelease_helper=このリリースは非プロダクション利用として識別します。 +release.cancel=Cancel +release.publish=リリースを発行 +release.save_draft=下書きを保存 +release.edit_release=リリースを編集 +release.delete_release=Delete This Release +release.deletion=Release Deletion +release.deletion_desc=Delete this release will delete corresponding Git tag. Do you want to continue? +release.deletion_success=Release has been deleted successfully! +release.tag_name_already_exist=このタグ名には既にリリースが存在します。 +release.downloads=Downloads + +[org] +org_name_holder=組織名 +org_full_name_holder=組織のフルネーム +org_name_helper=偉大な組織の名は短く覚えやすいです。 +create_org=組織を作成 +repo_updated=更新した +people=人々 +invite_someone=誰かを招待 +teams=チーム +lower_members=メンバー +lower_repositories=リポジトリ +create_new_team=新しいチームを作成 +org_desc=説明 +team_name=チーム名 +team_desc=説明 +team_name_helper=会話の時、この名前を使用しチーム名を表明します。 +team_desc_helper=このチームに関する全ての情報は? +team_permission_desc=このチームに必要な権限レベルは? + +form.name_reserved=組織名 '%s' は予約されています。 +form.name_pattern_not_allowed=組織名のパターン '%s' は許可されていません。 + +settings=設定 +settings.options=オプション +settings.full_name=フルネーム +settings.website=WEBサイト +settings.location=ロケーション +settings.update_settings=設定の更新 +settings.update_setting_success=組織の設定が更新されました。 +settings.change_orgname_prompt=This change will affect how links relate to the organization. +settings.update_avatar_success=Organization avatar setting has been updated successfully. +settings.delete=組織を削除 +settings.delete_account=この組織を削除 +settings.delete_prompt=操作はこの組織を完全に削除し、復旧<strong>できない</strong>! +settings.confirm_delete_account=削除の確認 +settings.delete_org_title=組織の削除 +settings.delete_org_desc=この組織は完全に削除されます、継続しますか? +settings.hooks_desc=この組織のもとで <strong>すべてのリポジトリ</strong> に対してトリガーされる webhook を追加します。 + +members.public=パブリック +members.public_helper=プライベートにする +members.private=プライベート +members.private_helper=公開する +members.owner=オーナー +members.member=メンバー +members.conceal=隠す +members.remove=削除 +members.leave=退出 +members.invite_desc=%s に招待する新しいメンバーをユーザ名を入力してください: +members.invite_now=今すぐ招待 + +teams.join=参加 +teams.leave=退出 +teams.read_access=読み取りアクセス権 +teams.read_access_helper=このチームはリポジトリの閲覧とクローンをすることができます。 +teams.write_access=書き込みアクセス権 +teams.write_access_helper=このチームはリポジトリを読むだけではなく、プッシュすることもできます。 +teams.admin_access=管理者のアクセス権 +teams.admin_access_helper=このチームはリポジトリにプッシュ/プル、及び他の共同編集者を追加することができます。 +teams.no_desc=このチームは説明がありません。 +teams.settings=設定 +teams.owners_permission_desc=オーナーは<strong>すべてのリポジトリ</strong> へのフルアクセス権、組織の <strong>管理権限</strong>を持ちます。 +teams.members=チーム メンバー +teams.update_settings=設定の更新 +teams.delete_team=このチームを削除 +teams.add_team_member=チーム メンバーを追加 +teams.delete_team_title=チームの削除 +teams.delete_team_desc=このチームを削除します、継続しますか?このチームのメンバーはいくつかのリポジトリへのアクセスを失う可能性があります。 +teams.delete_team_success=指定のチームが正常に削除されました。 +teams.read_permission_desc=このチームは<strong>読み取り</strong>権限を持ち: メンバーはリポジトリの表示及びクローンの作成ができます。 +teams.write_permission_desc=このチームは<strong>書き込み</strong>権限を持ち: メンバーはリポジトリの表示及リポジトリへのプッシュができます。 +teams.admin_permission_desc=このチームは<strong>管理者</strong>の権限を持ち: メンバーはチームのリポジトリに対して、読み取り、プッシュや共同編集者の追加ができます。 +teams.repositories=チームのリポジトリ +teams.add_team_repository=チームのリポジトリを追加 +teams.remove_repo=削除(Remove) +teams.add_nonexistent_repo=追加しようとしているリポジトリは存在しません。まずはじめに作成してください。 + +[admin] +dashboard=ダッシュボード +users=ユーザ +organizations=組織 +repositories=リポジトリ +authentication=認証 +config=コンフィギュレーション +notices=システム通知 +monitor=モニタリング +first_page=First +last_page=Last +total=合計: %d + +dashboard.statistic=統計 +dashboard.operations=操作 +dashboard.system_status=システム モニターのステータス +dashboard.statistic_info=Gogs データベースは <b>%d</b> ユーザ, <b>%d</b> 組織, <b>%d</b> 公開鍵, <b>%d</b> リポジトリ, <b>%d</b> ウォッチ, <b>%d</b> スター, <b>%d</b> 行動, <b>%d</b> アクセス, <b>%d</b> 問題, <b>%d</b> コメント, <b>%d</b> ソーシャルアカウント, <b>%d</b> フォロー, <b>%d</b> ミラー, <b>%d</b> リリース, <b>%d</b> ログイン元, <b>%d</b> webhook, <b>%d</b> マイルストーン, <b>%d</b> ラベル, <b>%d</b> フックタスク, <b>%d</b> チーム, <b>%d</b> アップデートタスク, <b>%d</b> 添付ファイル の情報を持っています。 +dashboard.operation_name=操作の名前 +dashboard.operation_switch=スイッチ +dashboard.operation_run=実行 +dashboard.clean_unbind_oauth=結び付けられていない OAuth をクリーン +dashboard.clean_unbind_oauth_success=結び付けられていない全ての OAuth を正常に削除しました。 +dashboard.delete_inactivate_accounts=非アクティブのアカウントをすべて削除 +dashboard.delete_inactivate_accounts_success=すべての非アクティブアカウントは正常に削除されました。 +dashboard.delete_repo_archives=リポジトリのすべてのアーカイブを削除 +dashboard.delete_repo_archives_success=リポジトリのすべてのアーカイブが正常に削除されました。 +dashboard.delete_missing_repos=Delete all repository records that lost Git files +dashboard.delete_missing_repos_success=All repository records that lost Git files have been deleted successfully. +dashboard.git_gc_repos=リポジトリでのガベージコレクションを実行します。 +dashboard.git_gc_repos_success=すべてのリポジトリは正常にガベージ コレクションを行いました。 +dashboard.resync_all_sshkeys='.ssh/ authorized_keys' ファイルを再生成します。(警告:Gogsキー以外は失われます) +dashboard.resync_all_sshkeys_success=すべての公開鍵が正常に書き換えられました。 +dashboard.resync_all_update_hooks=リポジトリの update フックをすべて再更新する(カスタムの設定パスが変更されたときに必要) +dashboard.resync_all_update_hooks_success=リポジトリの update フックがすべて正常に再更新されました。 + +dashboard.server_uptime=サーバーの稼働時間 +dashboard.current_goroutine=現在のGoroutine +dashboard.current_memory_usage=現在のメモリ使用量 +dashboard.total_memory_allocated=割り当てられたメモリの合計 +dashboard.memory_obtained=配分されたメモリ量 +dashboard.pointer_lookup_times=ポインタ参照回数 +dashboard.memory_allocate_times=メモリ割当回数 +dashboard.memory_free_times=メモリ解放回数 +dashboard.current_heap_usage=現在のヒープ使用量 +dashboard.heap_memory_obtained=配分されたヒープ メモリ量 +dashboard.heap_memory_idle=アイドルのヒープ メモリ量 +dashboard.heap_memory_in_use=使用中のヒープ メモリ +dashboard.heap_memory_released=ヒープ メモリが解放されました +dashboard.heap_objects=ヒープ オブジェクト +dashboard.bootstrap_stack_usage=ブートストラップスタック使用量 +dashboard.stack_memory_obtained=配分されたスタック メモリ量 +dashboard.mspan_structures_usage=MSpan 構造体の使用量 +dashboard.mspan_structures_obtained=配分されたMSpan 構造体 +dashboard.mcache_structures_usage=MCache 構造体の使用量 +dashboard.mcache_structures_obtained=分配されたMCache 構造体 +dashboard.profiling_bucket_hash_table_obtained=ハッシュテーブル分析に割り当てられたメモリ +dashboard.gc_metadata_obtained=GCメタデータ取得 +dashboard.other_system_allocation_obtained=他のシステムに割り当てられたメモリ +dashboard.next_gc_recycle=次回のGCリサイクル +dashboard.last_gc_time=前回GCからの時間 +dashboard.total_gc_time=GC一時停止の合計 +dashboard.total_gc_pause=GC一時停止の合計 +dashboard.last_gc_pause=直近のGC一時停止 +dashboard.gc_times=GC実行回数 + +users.user_manage_panel=ユーザー管理パネル +users.new_account=新規アカウントを作成 +users.name=名前 +users.activated=アクティブ化 +users.admin=アドミン +users.repos=リポジトリ +users.created=作成されました +users.send_register_notify=登録通知をユーザーに送信 +users.new_success=New account '%s' has been created successfully. +users.edit=編集 +users.auth_source=認証ソース +users.local=ローカル +users.auth_login_name=認証ログイン名 +users.password_helper=それをそのまま空のままにします。 +users.update_profile_success=アカウントのプロファイルが更新されました。 +users.edit_account=アカウントの編集 +users.is_activated=アカウントがアクティブされました +users.is_admin=このアカウントには管理者の権限を持つ +users.allow_git_hook=このアカウントには Git のフックを作成する権限を持つ +users.allow_import_local=This account has permissions to import local repositories +users.update_profile=アカウント ・ プロファイルを更新 +users.delete_account=このアカウントを削除 +users.still_own_repo=アカウント所有のリポジトリがあり、リポジトリの削除または所有者の移譲が必要です。 +users.still_has_org=アカウントはまだ組織のメンバーであり、組織から退出するか削除する必要があります。 +users.deletion_success=アカウントが正常に削除されました。 + +orgs.org_manage_panel=組織の管理パネル +orgs.name=名前 +orgs.teams=チーム +orgs.members=メンバー + +repos.repo_manage_panel=リポジトリの管理パネル +repos.owner=オーナー +repos.name=名前 +repos.private=プライベート +repos.watches=Watches +repos.stars=Stars +repos.issues=課題 + +auths.auth_manage_panel=認証管理パネル +auths.new=新しいソースを追加 +auths.name=名前 +auths.type=タイプ +auths.enabled=Enabled +auths.updated=Updated +auths.auth_type=認証タイプ +auths.auth_name=認証名 +auths.domain=ドメイン +auths.host=ホスト +auths.port=ポート +auths.bind_dn=バインド DN +auths.bind_password=バインド パスワード +auths.bind_password_helper=警告: このパスワードは暗号化されずに格納されます。特権を持つアカウントに使用しないでください。 +auths.user_base=ユーザ検索ベース +auths.user_dn=User DN +auths.attribute_name=名前属性 +auths.attribute_surname=名字属性 +auths.attribute_mail=Eメール属性 +auths.filter=User フィルター +auths.admin_filter=Admin フィルター +auths.ms_ad_sa=Ms Ad SA +auths.smtp_auth=SMTP 認証の種類 +auths.smtphost=SMTP ホスト +auths.smtpport=SMTP ポート +auths.allowed_domains=許可されているドメイン +auths.allowed_domains_helper=Leave it empty to not restrict any domains. Multiple domains should be separated by comma ','. +auths.enable_tls=TLS 暗号化を有効にする +auths.skip_tls_verify=TLSベリファイを省略 +auths.pam_service_name=PAMサービス名 +auths.enable_auto_register=自動登録を有効にする +auths.tips=ヒント +auths.edit=認証設定を編集 +auths.activated=認証がアクティブされました +auths.new_success=新しい認証 '%s' が正常に追加されました。 +auths.update_success=認証の設定が正常に更新されました。 +auths.update=認証設定を更新 +auths.delete=この認証を削除 +auths.delete_auth_title=認証削除 +auths.delete_auth_desc=認証を削除します、継続しますか? +auths.deletion_success=認証が正常に削除されました。 + +config.server_config=サーバーの構成 +config.app_name=アプリケーション名 +config.app_ver=アプリケーションのバージョン +config.app_url=アプリケーションの URL +config.domain=ドメイン +config.offline_mode=オフラインモード +config.disable_router_log=ルーターのログを無効にする +config.run_user=実行ユーザ +config.run_mode=実行モード +config.repo_root_path=リポジトリのルートパス +config.static_file_root_path=静的ファイルのルートパス +config.log_file_root_path=ログ ファイルのルート パス +config.script_type=スクリプトの種類 +config.reverse_auth_user=リバース認証ユーザ +config.db_config=データベースの構成 +config.db_type=タイプ +config.db_host=ホスト +config.db_name=名前 +config.db_user=ユーザ +config.db_ssl_mode=SSL モード +config.db_ssl_mode_helper=(「postgres」のみ) +config.db_path=パス +config.db_path_helper=(for "sqlite3" and "tidb") +config.service_config=サービスの構成 +config.register_email_confirm=電子メールの確認を必要 +config.disable_register=登録を無効にする +config.show_registration_button=登録ボタンを表示します。 +config.require_sign_in_view=サインインを要求 +config.enable_cache_avatar=アバターのキャッシュを有効にします。 +config.mail_notify=メール通知 +config.disable_key_size_check=最小キー サイズ チェックを無効にします +config.enable_captcha=Captchaを有効にする +config.active_code_lives=コードリンクの有効期限をアクティブ +config.reset_password_code_lives=パスワードリンクの有効期限をリセット +config.webhook_config=Webhook設定 +config.queue_length=キューの長さ +config.deliver_timeout=送信タイムアウト +config.skip_tls_verify=TLSの確認を省略 +config.mailer_config=メーラーの構成 +config.mailer_enabled=有効にした +config.mailer_disable_helo=HELOコマンド無効 +config.mailer_name=名前 +config.mailer_host=ホスト +config.mailer_user=ユーザ +config.oauth_config=OAuth 構成 +config.oauth_enabled=Enabled +config.cache_config=キャッシュの構成 +config.cache_adapter=キャッシュ アダプター +config.cache_interval=キャッシュ間隔 +config.cache_conn=キャッシュ接続 +config.session_config=セッションの構成 +config.session_provider=セッション プロバイダー +config.provider_config=プロバイダーの構成 +config.cookie_name=クッキー名 +config.enable_set_cookie=クッキーの設定を有効にする +config.gc_interval_time=GC 間隔 +config.session_life_time=セッションのライフタイム +config.https_only=HTTPS のみ +config.cookie_life_time=クッキーのライフタイム +config.picture_config=画像構成 +config.picture_service=画像サービス +config.disable_gravatar=グラバターを無効にする +config.log_config=ログの構成 +config.log_mode=ログ モード + +monitor.cron=Cron タスク +monitor.name=名前 +monitor.schedule=スケジュール +monitor.next=次回 +monitor.previous=前回 +monitor.execute_times=実行回数 +monitor.process=実行中のプロセス +monitor.desc=説明 +monitor.start=開始日時 +monitor.execute_time=実行時間: + +notices.system_notice_list=システム通知 +notices.type=タイプ +notices.type_1=リポジトリ +notices.desc=説明 +notices.op=Op。 +notices.delete_success=システム通知が正常に削除されました。 + +[action] +create_repo=リポジトリ <a href="%s"> %s</a>を作成しました +rename_repo=<code>%[1]s</code> から <a href="%[2]s">[3]s</a> にリポジトリ名を変更した +commit_repo=<a href="%[1]s">%[4]s</a>を<a href="%[1]s/src/%[2]s">%[3]s</a>にプッシュしました +create_issue=`問題 <a href="%s/issues/%s">%s#%[2]s</a> を開きました` +create_pull_request=`プルリクエスト <a href="%s/pulls/%s"> %s[2]s</a>を作成` +comment_issue=`問題 <a href="%s/issues/%s">%s#%[2]s</a> のコメント` +merge_pull_request=`プルリクエスト <a href="%s/pulls/%s"> %s[2]s</a>をマージしました` +transfer_repo=リポジトリ <code>%s</code> を <a href="%s">%s</a> へ転送しました +push_tag=<a href="%[1]s">%[3]s</a> に タグ <a href="%[1]s/src/%[2]s">%[2]s</a> をプッシュしました +compare_2_commits=これら 2 のコミットの比較を閲覧する + +[tool] +ago=前 +from_now=今から +now=今 +1s=1 秒 %s +1m=1 分 %s +1h=1 時間 %s +1d=1 日 %s +1w=1 週間 %s +1mon=1 ヶ月 %s +1y=1 年間 %s +seconds=%d 秒 %s +minutes=%d 分の %s +hours=%d 時間 %s +days=%d 日 %s +weeks=%d 週間 %s +months=%d ヶ月 %s +years=%d 年 %s +raw_seconds=秒 +raw_minutes=分 + +[dropzone] +default_message=ここにファイルをドロップまたはクリックしてアップロードします。 +invalid_input_type=このタイプのファイルはアップロードできません. +file_too_big=ファイルのサイズ ({{filesize}} MB) では、最大サイズ ({{maxFilesize}} MB) を超えています。 +remove_file=ファイル削除 + diff --git a/conf/locale/locale_lv-LV.ini b/conf/locale/locale_lv-LV.ini index c7a7633f..0daf9002 100755 --- a/conf/locale/locale_lv-LV.ini +++ b/conf/locale/locale_lv-LV.ini @@ -1,992 +1,1009 @@ -app_desc=Viegli uzstādāms Git serviss, kas rakstīts valodā Go
-
-home=Sākums
-dashboard=Infopanelis
-explore=Izpētīt
-help=Palīdzība
-sign_in=Pierakstīties
-sign_out=Izrakstīties
-sign_up=Pieteikties
-register=Reģistrēties
-website=Mājas lapa
-version=Versija
-page=Lapa
-template=Sagatave
-language=Valoda
-create_new=Izveidot...
-user_profile_and_more=Lietotāja profilu un vairāk
-signed_in_as=Pierakstījies kā
-
-username=Lietotājvārds
-email=E-pasts
-password=Parole
-re_type=Parole atkārtoti
-captcha=Pārbaudes kods
-
-repository=Repozitorijs
-organization=Organizācija
-mirror=Spogulis
-new_repo=Jauns repozitorijs
-new_migrate=Jauna migrācija
-new_fork=Jauns atdalītais repozitorijs
-new_org=Jauna organizācija
-manage_org=Pārvaldīt organizācijas
-admin_panel=Admin panelis
-account_settings=Konta iestatījumi
-settings=Iestatījumi
-your_profile=Tavs profils
-your_settings=Tavi iestatījumi
-
-news_feed=Jaunumu plūsma
-pull_requests=Izmaiņu pieprasījumi
-issues=Problēmas
-
-cancel=Atcelt
-
-[search]
-search=Meklēt...
-repository=Repozitorijs
-user=Lietotājs
-issue=Kļūda
-code=Kods
-
-[install]
-install=Instalācija
-title=Instalācijas soļi pirmo reizi palaižot
-docker_helper=Ja Gogs tiek lietots zem Docker, izlasiet uzmanīgi <a target="_blank" href="%s">vadlīnijas</a>, pirms ko maināt šajā lapā!
-requite_db_desc=Gogs nepieciešams MySQL, PostgreSQL, SQLite3 vai TiDB.
-db_title=Datu bāzes iestatījumi
-db_type=Datu bāzes veids
-host=Resursdators
-user=Lietotājs
-password=Parole
-db_name=Datu bāzes nosaukums
-db_helper=Nepieciešams izmantot MySQL INNODB dzini ar rakstzīmju kopu utf8_general_ci.
-ssl_mode=SSL režīms
-path=Ceļš
-sqlite_helper=SQLite3 vai TiDB datu bāzes faila atrašanās vieta.
-err_empty_db_path=Nepieciešams norādīt SQLite3 vai TiDB datu bāzes atrašanās vietu.
-err_invalid_tidb_name=TiDB datu bāzes nosaukums nevar saturēt simbolus "." un "-".
-no_admin_and_disable_registration=Reģistrāciju nevar atslēgt, kamēr nav izveidots administratora konts.
-err_empty_admin_password=Administratora kontam ir obligāti jānorāda parole.
-
-general_title=Gogs vispārīgie iestatījumi
-app_name=Lietotnes nosaukums
-app_name_helper=Norādiet organizācijas nosaukumu šeit!
-repo_path=Repozitoriju glabāšanas vieta
-repo_path_helper=Visi Git attālinātie repozitoriji tiks glabāti šajā direktorijā.
-run_user=Izpildes lietotājs
-run_user_helper=Lietotājam ir jābūt rakstīšanas tiesībām repozitorija saknes direktorijai un Gogs jābūt palaistam zem šī lietotāja.
-domain=Domēns
-domain_helper=Tas ietekmē SSH klonēšanas URL.
-ssh_port=SSH ports
-ssh_port_helper=Porta numurs, kuru izmanto Jūsu SSH serveris, atstājiet tukšu, ja nevēlaties izmantot SSH.
-http_port=HTTP ports
-http_port_helper=Porta numurs pēc kura lietojumprogrammai būs iespējams pieslēgties.
-app_url=Lietotnes URL
-app_url_helper=Tas ietekmē HTTP/HTTPS klonēšanas URL un e-pasta saturā izsūtītās saites.
-
-optional_title=Neobligātie iestatījumi
-email_title=E-pasta pakalpojuma iestatījumi
-smtp_host=SMTP resursdators
-smtp_from=Sūtītājs
-smtp_from_helper=E-pasta adrese, RFC 5322. Drīkst būt vienkārši e-pasta adrese vai formātā "Nosaukums" <e-pasts@example.com>.
-mailer_user=Sūtītāja e-pasta adrese
-mailer_password=Sūtītāja parole
-register_confirm=Iespējot reģistrēšanās apstiprināšanu
-mail_notify=Iespējot e-pasta paziņojumus
-server_service_title=Servera un citu servisu iestatījumi
-offline_mode=Iespējot bezsaistes režīmu
-offline_mode_popup=Atspējot CDN arī produkcijas režīmā, visi resursu faili tiks piegādāti no servera.
-disable_gravatar=Atspējot Gravatar pakalpojumu
-disable_gravatar_popup=Atspējot Gravatar un citus avotus, visus avatarus augšupielādēts lietotāji vai izmantos noklusēto attēlu.
-disable_registration=Atspējot lietotāju reģistrāciju
-disable_registration_popup=Atspējot lietotāju reģistrāciju, tikai administrators varēs izveidot jaunus lietotāju kontus.
-enable_captcha=Iespējot drošības kodu
-enable_captcha_popup=Lietotājam reģistrējoties, pieprasīt ievadīt drošības kodu.
-require_sign_in_view=Iespējot nepieciešamību autorizēties, lai aplūkotu lapas
-require_sign_in_view_popup=Tika autorizēti lietotāji var aplūkot lapas, neautorizēti lietotāji var piekļūt tikai autorizācijas un reģistrēšanās lapām.
-admin_setting_desc=Nav nepieciešams izveidot administratora kontu uzreiz, lietotājs ar ID=1 saņems administratora tiesības automātiski.
-admin_title=Admin konta iestatījumi
-admin_name=Lietotājvārds
-admin_password=Parole
-confirm_password=Apstipriniet paroli
-admin_email=E-pasts
-install_gogs=Instalēt Gogs
-test_git_failed=Kļūda pārbaudot 'git' komandu: %v
-sqlite3_not_available=Jūsu versija neatbalsta SQLite3, lūdzu lejupielādējiet oficiālo bināro versiju no %s, NEVIS gobuild versiju.
-invalid_db_setting=Datu bāzes iestatījums nav pareizs: %v
-invalid_repo_path=Repozitorija atrašanās vieta ir nekorekta: %v
-run_user_not_match=Izpildes lietotājs nav pašreizējais lietotājs: %s -> %s
-save_config_failed=Neizdevās saglabāt konfigurāciju: %v
-invalid_admin_setting=Nekorekts admin konta iestatījums: %v
-install_success=Laipni lūdzam! Mēs priecājamies, ka Jūs izvēlaties Gogs, patīkamu lietošanu!
-
-[home]
-uname_holder=Lietotājvārds vai e-pasts
-password_holder=Parole
-switch_dashboard_context=Mainīt infopaneļa kontekstu
-my_repos=Mani repozitoriji
-collaborative_repos=Sadarbības repozitoriji
-my_orgs=Manas organizācijas
-my_mirrors=Mani spoguļi
-view_home=Skatīties %s
-
-issues.in_your_repos=Jūsu repozitorijos
-
-[explore]
-repos=Repozitoriji
-
-[auth]
-create_new_account=Izveidot jaunu kontu
-register_hepler_msg=Jau ir konts? Pieraksties tagad!
-social_register_hepler_msg=Jau ir konts? Sasaisti tagad!
-disable_register_prompt=Atvainojiet, reģistrācija ir atspējota. Lūdzu, sazinieties ar vietnes administratoru.
-disable_register_mail=Atvainojiet, reģistrācijas e-pasta apstiprināšana ir atspējota.
-remember_me=Atcerēties mani
-forgot_password=Aizmirsu paroli
-forget_password=Aizmirsi paroli?
-sign_up_now=Nepieciešams konts? Reģistrējies tagad.
-confirmation_mail_sent_prompt=Jauns apstiprināšanas e-pasts ir nosūtīts uz <b>%s</b>, lūdzu, pārbaudies savu e-pasta kontu tuvāko %d stundu laikā, lai pabeigtu reģistrācijas procesu.
-sign_in_to_account=Pierakstīties savā kontā
-active_your_account=Aktivizēt savu kontu
-resent_limit_prompt=Atvainojiet, Jūs sūtījāt aktivizācijas e-pastu pārāk bieži. Lūdzu, gaidiet 3 minūtes.
-has_unconfirmed_mail=Sveiki %s, Jums ir neapstiprināta e-pasta adrese (<b>%s</b>). Ja neesat saņēmis apstiprināšanas e-pastu vai Jums ir nepieciešams nosūtīt jaunu, lūdzu, nospiediet pogu, kas atrodas zemāk.
-resend_mail=Nospiediet šeit, lai vēlreiz nosūtītu aktivizācijas e-pastu
-email_not_associate=Šī e-pasta adrese nav saistīta ar Jūsu kontu.
-send_reset_mail=Spiediet šeit, lai nosūtītu paroles maiņas vēstuli uz Jūsu e-pastu
-reset_password=Atjaunot savu paroli
-invalid_code=Atvainojiet, Jūsu apstiprināšanas kodam ir beidzies derīguma termiņš vai arī tas ir nepareizs.
-reset_password_helper=Nospiediet šeit, lai atjaunotu paroli
-password_too_short=Paroles garums nedrīkst būt mazāks par 6.
-
-[mail]
-activate_account=Lūdzu, aktivizējiet savu kontu
-activate_email=Apstipriniet savu e-pasta adresi
-reset_password=Atiestatīt savu paroli
-register_success=Reģistrācija notikusi veiksmīgi
-
-[modal]
-yes=Jā
-no=Nē
-modify=Mainīt
-
-[form]
-UserName=Lietotājvārds
-RepoName=Repozitorija nosaukums
-Email=E-pasta adrese
-Password=Parole
-Retype=Parole atkārtoti
-SSHTitle=SSH atslēgas nosaukums
-HttpsUrl=HTTPS URL
-PayloadUrl=Vērtuma URL
-TeamName=Komandas nosaukums
-AuthName=Autorizācijas nosaukums
-AdminEmail=Admin e-pasta adrese
-
-require_error=` nedrīkst būt tukšs.`
-alpha_dash_error=` drīkst saturēt tikai latīņu alfabēta burtus, ciparus vai domuzīmes (-_).`
-alpha_dash_dot_error=` drīkst saturēt tikai latīņu alfabēta burtus, ciparus, domuzīmes (-_) vai punktu.`
-size_error=` jābūt %s simbolus garam.`
-min_size_error=` jabūt vismaz %s simbolu garumā.`
-max_size_error=` jabūt ne mazāk kā %s simbolu garumā.`
-email_error=` nav derīga e-pasta adrese.`
-url_error=` nav korekts URL.`
-unknown_error=Nezināma kļūda:
-captcha_incorrect=Pārbaudes kods nesakrīt ar attēlā redzamo.
-password_not_match=Parole un atkārtoti ievadītā parole nav vienādas.
-
-username_been_taken=Lietotājvārds ir jau aizņemts.
-repo_name_been_taken=Repozitorija vārds ir jau aizņemts.
-org_name_been_taken=Organizācijas nosaukums ir jau aizņemts.
-team_name_been_taken=Komandas nosaukums ir jau aizņemts.
-email_been_used=E-pasta adrese jau tiek izmantota.
-illegal_team_name=Grupas nosaukums satur neatļautas rakstzīmes.
-username_password_incorrect=Lietotājvārds vai parole nav pareiza.
-enterred_invalid_repo_name=Lūdzu, pārliecinieties, vai ievadītā repozitorija nosaukums ir pareizs.
-enterred_invalid_owner_name=Lūdzu, pārliecinieties, vai ievadītā īpašnieka vārds ir pareizs.
-enterred_invalid_password=Lūdzu pārliecinieties, vai Jūsu ievadītā parole ir pareiza.
-user_not_exist=Šāds lietotājs neeksistē.
-last_org_owner=Nav iespējams noņemt vienīgo komandas īpašnieku. Pirms tam ir nepieciešams norādīt jauno īpašnieku.
-
-invalid_ssh_key=Atvainojiet, nav iespējams pārbaudīt Jūsu SSH atslēgu: %s
-unable_verify_ssh_key=Nav iespējams pārbaudīt jūsu SSH atslēgu, bet tiks pieņemts, ka tā ir derīga, lūdzu, pārliecinieties par to pats.
-auth_failed=Autentifikācija neizdevās: %v
-
-still_own_repo=Jūsu esat vismaz viena repozitorija īpašnieks, tos sākumā ir nepieciešams izdzēst vai nomainīt to īpašnieku.
-still_has_org=Jūsu esat vismaz vienas organizācijas biedrs, sākumā nepieciešams pamest vai izdzēst šo organizāciju.
-org_still_own_repo=Šī organizācija ir vismaz viena repozitorija īpašnieks, tos sākumā ir nepieciešams izdzēst vai nomainīt to īpašnieku.
-
-still_own_user=Šo autentifikāciju joprojām izmanto vismaz viens lietotājs, nepieciešams šiem lietotājiem nomainīt autentifikācijas veidu vai tos izdzēst.
-
-target_branch_not_exist=Mērķa atzars neeksistē
-
-[user]
-change_avatar=Mainīt savu profila attēlu vietnē gravatar.com
-change_custom_avatar=Mainīt savu profila attēlu iestatījumos
-join_on=Pievienojās
-repositories=Repozitoriji
-activity=Publiskā aktivitāte
-followers=Sekotāji
-starred=Atzīmēti ar zvaigznīti
-following=Seko
-
-form.name_reserved=Lietotāja vārds '%s' jau ir aizņemts.
-form.name_pattern_not_allowed=Lietotāja vārds '%s' nav atļauts.
-
-[settings]
-profile=Profils
-password=Parole
-ssh_keys=SSH atslēgas
-social=Sociālie konti
-applications=Lietotnes
-orgs=Organizācijas
-delete=Dzēst kontu
-uid=Lietotāja ID
-
-public_profile=Publiskais profils
-profile_desc=Jūsu e-pasta adrese ir publiska un tiks izmantota, lai nosūtītju Jums paziņojumus, kas saistīti ar Jūsu kontu vai darbībām veiktām caur šo mājas lapu.
-full_name=Pilns vārds
-website=Mājas lapa
-location=Atrašanās vieta
-update_profile=Mainīt profilu
-update_profile_success=Jūsu profila dati ir veiksmīgi saglabāti.
-change_username=Lietotāja vārds mainīts
-change_username_prompt=Šī izmaiņa ietekmēs saites, kas norāda uz Jūsu kontu.
-continue=Turpināt
-cancel=Atcelt
-
-enable_custom_avatar=Iespējot maināmu profila attēlu
-enable_custom_avatar_helper=Iespējojiet šo, lai atslēgtu profilu attēlu ņemšanu no gravatar.com
-choose_new_avatar=Izvēlēties jaunu profila attēlu
-update_avatar=Saglabāt profila bildi
-uploaded_avatar_not_a_image=Augšupielādētais fails nav attēls.
-no_custom_avatar_available=Nav iespējams mainīt profila bildi.
-update_avatar_success=Jūsu profila bilde tika veiksmīgi saglabāta.
-
-change_password=Mainīt paroli
-old_password=Pašreizējā parole
-new_password=Jauna parole
-retype_new_password=Ievadīt paroli atkāroti
-password_incorrect=Ievadīta nepareiza pašreizējā parole.
-change_password_success=Parole tika veiksmīgi nomainīta. Tagad jūs varat pieraksītites, izmantojot jauno paroli.
-
-emails=E-pasta adreses
-manage_emails=Pārvaldīt e-pasta adreses
-email_desc=Primārā e-pasta adrese tiks izmantota sūtot notifikācijas un citām dabībām.
-primary=Primārā
-primary_email=Iestatīt kā primāro
-delete_email=Dzēst
-email_deletion=E-pasta dzēšana
-email_deletion_desc=Dzēšot šo e-pasta adresi, tiks dzēsta arī visa ar to saistītā informācija no Jūsu konta. Vai vēlaties turpināt?
-email_deletion_success=E-pasta adrese ir veiksmīgi izdzēsta!
-add_new_email=Pievienot jaunu e-pasta adresi
-add_email=Pievienot e-pastu
-add_email_confirmation_sent=Jauns apstiprinājuma e-pasts tika nosūtīts uz '%s', pārbaudiet savu e-pastu tuvāko %d stundu laikā, lai pabeigtu apstiprināšanas procesu.
-add_email_success=Jūsu jaunā e-pasta adrese tika veiksmīgi pievienota.
-
-manage_ssh_keys=Pārvaldīt SSH atslēgas
-add_key=Pievienot atslēgu
-ssh_desc=Šis ir saraksts ar Jūsu kontam piesaistītajām SSH atslēgām. Dzēsiet visas, kuras Jūs neatpazīstat.
-ssh_helper=<strong>Vajadzīga palīdzība?</strong> Apskatieties pamācību kā <a href="%s">ģenerēt SSH atslēgas</a> vai kā novērst <a href="%s">biežāk sastopamās SSH problēmas</a>.
-add_new_key=Pievienot SSH atslēgu
-ssh_key_been_used=Šī publiskā atslēga jau ir izmantota.
-ssh_key_name_used=Publiskā atslēga ar šādu nosaukumu jau eksistē.
-key_name=Atslēgas nosaukums
-key_content=Saturs
-add_key_success=Jauna SSH atslēga '%s' tika veiksmīgi pievienota!
-delete_key=Dzēst
-ssh_key_deletion=SSH atslēgas dzēšana
-ssh_key_deletion_desc=Dzēšot šo SSH atslēgu, tiks dzēsta visa ar to saistītā piekļuve Jūsu kontam. Vai vēlaties turpināt?
-ssh_key_deletion_success=SSH atslēga tika veiksmīgi izdzēsta!
-add_on=Pievienota
-last_used=Pēdējo reizi izmantota
-no_activity=Nav nesenas aktivitātes
-key_state_desc=Šī atslēga tika izmantota pēdējo 7 dienu laikā
-token_state_desc=Šis talons tika izmantots pēdējo 7 dienu laikā
-
-manage_social=Pārvaldīt piesaistītos sociālos kontus
-social_desc=Šeit tiek attēloti visi sociālie konti, kas ir piesaistīti Jūsu kontam. Dzēsiet visus, kurus Jūs neatpazīstat.
-unbind=Atsaistīt
-unbind_success=Sociālais konts tika atsaistīts.
-
-manage_access_token=Pārvaldīt personīgos piekļuves talonus
-generate_new_token=Ģenerēt jaunu talonu
-tokens_desc=Taloni, kurus esat uzģenerējuši, kas var tikt izmantoti, lai piekļūtu Gogs API.
-new_token_desc=Pašlaik visiem taloniem ir pilna piekļuve Jūsu kontam.
-token_name=Talona nosaukums
-generate_token=Ģenerēt talonu
-generate_token_succees=Jauns piekļuves talons tika veiksmīgi uzģenerēts! Pārliecinieties, ka esat to nokopējis, jo to Jums vairāk nebūs iespēja izdarīt!
-delete_token=Dzēst
-access_token_deletion=Personīgā piekļuves talona dzēšana
-access_token_deletion_desc=Dzēšot personīgo piekļuves talonu, tiks liegta piekļuve aplikācijām, kas to izmanto. Vai vēlaties turpināt?
-delete_token_success=Personīgās piekļuves talons veiksmīgi izdzēsts! Neaizmirstiet nomainīt uz citu aplikācijās, kas to izmantoja.
-
-delete_account=Dzēst savu kontu
-delete_prompt=Šī darbība pilnībā izdzēsīs Jūsu kontu, kā arī tā ir <strong>NEATGRIEZENISKA</strong>!
-confirm_delete_account=Apstiprināt dzēšanu
-delete_account_title=Konta dzēšana
-delete_account_desc=Šis konts tiks neatgriezeniski dzēsts, vai vēlaties turpināt?
-
-[repo]
-owner=Īpašnieks
-repo_name=Repozitorija nosaukums
-repo_name_helper=Labi repzotoriju nosaukumi ir īsi, tādi kurus viegli atcerēties un <strong>unikāli</strong>.
-visibility=Redzamība
-visiblity_helper=Šis repozitorijs ir <span class="ui red text">privāts</span>
-visiblity_helper_forced=Lapas administrators ir noteicis, ka visiem repozitorijiem ir jābūt <span class="ui red text">privātiem</span>
-visiblity_fork_helper=(Šīs vērtības maiņa ietekmēs arī visus atdalītos repozitorijus)
-fork_repo=Atdalīt repozitoriju
-fork_from=Atdalīt no
-fork_visiblity_helper=Atdalītam repozitorijam nav iespējams nomainīt tā redzamību
-repo_desc=Apraksts
-repo_lang=Valoda
-repo_lang_helper=Izvēlieties .gitignore failus
-license=Licence
-license_helper=Izvēlieties licences failu
-readme=LasiMani
-readme_helper=Izvēlieties faila LasiMani sagatavi
-auto_init=Inicializēt šo repozitoriju ar izvēlētajiem failiem un sagatavi
-create_repo=Izveidot repozitoriju
-default_branch=Noklusējuma atzars
-mirror_interval=Spoguļošanas intervāls (stundās)
-
-form.name_reserved=Repozitorija nosaukums '%s' ir rezervēts.
-form.name_pattern_not_allowed=Repozitorija nosaukums '%s' nav atļauts.
-
-need_auth=Nepieciešama autorizācija
-migrate_type=Migrācijas veids
-migrate_type_helper=Šis repozitorijs būs <span class="text blue">spogulis</span>
-migrate_repo=Migrēt repozitoriju
-migrate.clone_address=Klonēšanas adrese
-migrate.clone_address_desc=Tas var būt HTTP/HTTPS/GIT URL vai ceļš uz lokālā servera.
-migrate.invalid_local_path=Nekorents lokālais ceļš, tas neeksistē vai nav direktorijs.
-
-forked_from=atdalīts no
-fork_from_self=Nav iespējams atdalīt repozitoriju, kuram esat īpašnieks!
-copy_link=Kopēt
-copy_link_success=Nokopēts!
-copy_link_error=Nospiediet ⌘-C vai Ctrl-C, lai nokopētu
-click_to_copy=Kopēt uz starpliktuvi
-copied=Kopēšana notikusi veiksmīgi
-clone_helper=Nepieciešama palīdzība kā veikt klonēšana? Apmeklējiet <a target="_blank" href="%s">Palīdzība</a> lapu!
-unwatch=Nevērot
-watch=Vērot
-unstar=Noņemt zvaigznīti
-star=Pievienot zvaigznīti
-fork=Atdalīts
-
-no_desc=Nav apraksta
-quick_guide=Īsa pamācība
-clone_this_repo=Klonēt šo repozitoriju
-create_new_repo_command=Izveidot jaunu repozitoriju komandrindā
-push_exist_repo=Nosūtīt izmaiņas no komandrindas eksistējošam repozitorijam
-repo_is_empty=Šis repozitorijs ir tukšs, apskatiet atkal vēlāk!
-
-
-branch=Atzars
-tree=Koks
-branch_and_tags=Atzari un tagi
-branches=Atzari
-tags=Tagi
-issues=Problēmas
-pulls=Izmaiņu pieprasījumi
-labels=Etiķetes
-milestones=Atskaites punkti
-commits=Revīzijas
-releases=Laidieni
-file_raw=Neapstrādāts
-file_history=Vēsture
-file_view_raw=Rādīt neapstrādātu
-file_permalink=Patstāvīgā saite
-
-commits.commits=Revīzijas
-commits.search=Meklēt revīzijas
-commits.find=Meklēt
-commits.author=Autors
-commits.message=Ziņojums
-commits.date=Datums
-commits.older=Vecāki
-commits.newer=Jaunāki
-
-issues.new=Jauna problēma
-issues.new.labels=Etiķetes
-issues.new.no_label=Nav etiķešu
-issues.new.clear_labels=Noņemt etiķetes
-issues.new.milestone=Atskaites punkts
-issues.new.no_milestone=Nav atskaites punktu
-issues.new.clear_milestone=Notīrīt atskaites punktus
-issues.new.open_milestone=Atvērtie atskaites punktus
-issues.new.closed_milestone=Aizvērtie atskaites punkti
-issues.new.assignee=Atbildīgais
-issues.new.clear_assignee=Noņemt atbildīgo
-issues.new.no_assignee=Nav atbildīgā
-issues.create=Pieteikt problēmu
-issues.new_label=Jauna etiķete
-issues.new_label_placeholder=Etiķetes nosaukums...
-issues.create_label=Izveidot etiķeti
-issues.open_tab=%d atvērti
-issues.close_tab=%d aizvērti
-issues.filter_label=Etiķete
-issues.filter_label_no_select=Nav atzīmēta etiķete
-issues.filter_milestone=Atskaites punkts
-issues.filter_milestone_no_select=Nav atzīmēts atskaites punkts
-issues.filter_assignee=Atbildīgais
-issues.filter_assginee_no_select=Nav atzīmēts atbildīgais
-issues.filter_type=Veids
-issues.filter_type.all_issues=Visas problēmas
-issues.filter_type.assigned_to_you=Piešķirtās Jums
-issues.filter_type.created_by_you=Jūsu izveidotās
-issues.filter_type.mentioning_you=Esat pieminēts
-issues.filter_sort=Kārtot
-issues.filter_sort.latest=Jaunākie
-issues.filter_sort.oldest=Vecakie
-issues.filter_sort.recentupdate=Nesen atjaunotās
-issues.filter_sort.leastupdate=Vissenāk atjaunotās
-issues.filter_sort.mostcomment=Visvairāk komentētās
-issues.filter_sort.leastcomment=Vismazāk komentētās
-issues.opened_by=<a href="%[2]s">%[3]s</a> atvēra %[1]s
-issues.opened_by_fake=%[2]s atvēra %[1]s
-issues.previous=Iepriekšējā
-issues.next=Nākamā
-issues.open_title=Atvērta
-issues.closed_title=Slēgta
-issues.num_comments=%d komentāri
-issues.commented_at=`komentēja <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.no_content=Vēl nav satura.
-issues.close_issue=Aizvērt
-issues.close_comment_issue=Komentēt un aizvērt
-issues.reopen_issue=Atvērt atkārtoti
-issues.reopen_comment_issue=Atvērt atkārtoti un komentēt
-issues.create_comment=Komentēt
-issues.closed_at=`aizvērts <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.reopened_at=`atvērts atkārtoti <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.commit_ref_at=`pieminēja šo problēmu revīzijā <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.poster=Autors
-issues.admin=Administrators
-issues.owner=Īpašnieks
-issues.sign_up_for_free=Pievienojieties
-issues.sign_in_require_desc=, lai piedalītos diskusijā. Jau ir konts? <a href="%s">Pierakstieties, lai komentētu</a>
-issues.edit=Labot
-issues.cancel=Atcelt
-issues.save=Saglabāt
-issues.label_title=Etiķetes nosaukums
-issues.label_color=Etiķetes krāsa
-issues.label_count=%d etiķetes
-issues.label_open_issues=%d atvērtas problēmas
-issues.label_edit=Labot
-issues.label_delete=Dzēst
-issues.label_modify=Etiķetes labošana
-issues.label_deletion=Etiķetes dzēšana
-issues.label_deletion_desc=Dzēšot šo etiķeti, tā tiks noņemta no visām saistītajām problēmām. Vai vēlaties turpināt?
-issues.label_deletion_success=Etiķete tika veiksmīgi izdzēsta!
-
-pulls.compare_changes=Salīdzināt izmaiņas
-pulls.compare_changes_desc=Salīdzināt divus atzarus un izveidot izmaiņu pieprasījumu.
-pulls.compare_base=pamata
-pulls.compare_compare=salīdzināmais
-pulls.filter_branch=Filtrēt atzarus
-pulls.no_results=Nekas netika atrasts.
-pulls.nothing_to_compare=Nav ko salīdzināt, jo bāzes un salīdzināmie atzari ir vienādi.
-pulls.has_pull_request=`Jau eksistē izmaiņu pieprasījums starp šiem diviem atzariem: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>`
-pulls.create=Izveidot izmaiņu pieprasījumu
-pulls.title_desc=vēlas sapludināt %[1]d revīzijas no <code>%[2]s</code> uz <code>%[3]s</code>
-pulls.merged_title_desc=sapludināja %[1]d revīzijas no <code>%[2]s</code> uz <code>%[3]s</code> %[4]s
-pulls.tab_conversation=Saruna
-pulls.tab_commits=Revīzijas
-pulls.tab_files=Izmainītie faili
-pulls.reopen_to_merge=Lūdzu, atkārtoti atveriet šo izmaiņu pieprasījumu, lai veiktu sapludināšanu.
-pulls.merged=Sapludināts
-pulls.has_merged=Šo izmaiņu pieprasījums tika veiksmīgi sapludināts!
-pulls.data_broken=Nepieejami izmaiņu pieprasījuma dati, jo dzēsta informācija no atdalītā repozitorija.
-pulls.is_checking=Notiek konfliktu pārbaude, mirkli uzgaidiet un atjaunojiet lapu.
-pulls.can_auto_merge_desc=Ir iespējams veikt automātisko sapludināšanas darbību šim izmaiņu pieprasījumam.
-pulls.cannot_auto_merge_desc=Nav iespējams veikt automātisko sapludināšanas darbību, jo starp revīzijām ir konflikti.
-pulls.cannot_auto_merge_helper=Lūdzu, izmantojiet komandrindas rīku, lai to atrisinātu.
-pulls.merge_pull_request=Izmaiņu pieprasījuma sapludināšana
-pulls.open_unmerged_pull_exists=`Jūs nevarat veikt atkārtotas atvēršanas darbību, jo jau eksistē izmaiņu pieprasījums (#%d) no šī repozitorija ar tādu pašu sapludināšanas informāciju un gaida sapludināšanu.`
-
-milestones.new=Jauns atskaites punkts
-milestones.open_tab=%d atvērti
-milestones.close_tab=%d aizvērti
-milestones.closed=Aizvērts %s
-milestones.no_due_date=Bez termiņa
-milestones.open=Atvērt
-milestones.close=Aizvērt
-milestones.new_subheader=Izveidojiet atskaites punktus, lai organizētu problēmas.
-milestones.create=Izveidot atskaites punktu
-milestones.title=Virsraksts
-milestones.desc=Apraksts
-milestones.due_date=Termiņš (neobligāts)
-milestones.clear=Notīrīt
-milestones.invalid_due_date_format=Termiņa datuma formāts ir nekorekts, jābūt formātā 'gggg-mm-dd'.
-milestones.create_success=Atskaites punkts '%s' tika veiksmīgi izveidots!
-milestones.edit=Labot atskaites punktu
-milestones.edit_subheader=Izmantojiet pēc iespējas labāku aprakstu atskaites punktiem, lai citiem tas būtu saprotamāks.
-milestones.cancel=Atcelt
-milestones.modify=Mainīt atskaites punktu
-milestones.edit_success=Izmaiņas atskaites punktā '%s' tika veiksmīgi saglabātas!
-milestones.deletion=Atskaites punkta dzēšana
-milestones.deletion_desc=Dzēšot šo atskaites punktu tiks noņemta arī saistītā informācija no problēmu ziņojumiem. Vai vēlaties turpināt?
-milestones.deletion_success=Atskaites punkts tika veiksmīgi izdzēsts!
-
-settings=Iestatījumi
-settings.options=Opcijas
-settings.collaboration=Sadarbība
-settings.hooks=Tīmekļa āķi
-settings.githooks=Git āķi
-settings.basic_settings=Pamatiestatījumi
-settings.danger_zone=Bīstamā zona
-settings.site=Oficiālā mājas lapa
-settings.update_settings=Mainīt iestatījumus
-settings.change_reponame_prompt=Šī izmaiņa ietekmēs saites, kas ir saistītas ar šo repozitoriju.
-settings.transfer=Mainīt īpašnieku
-settings.transfer_desc=Mainīt šī repozitorija īpašnieku uz citu lietotāju vai organizāciju, kurai Jums ir administratora tiesībs.
-settings.new_owner_has_same_repo=Jaunajam īpašniekam jau ir repozitorijs ar šādu nosaukumu.
-settings.delete=Dzēst šo repozitoriju
-settings.delete_desc=Dzēšot repozitoriju, tā datus vairs nebūs iespējams atgūt. Pirms dzēšanas pārliecinieites vai patiešām vēlaties to darīt.
-settings.transfer_notices_1=- Jūs pazaudēsiet piekļuvi, ja jaunais īpašnieks ir lietotājs.
-settings.transfer_notices_2=- Jūs saglabāsiet piekļuvi, ja jaunais īpašnieks ir organizācija un Jūs esat viens no tās īpašniekiem.
-settings.transfer_form_title=Lūdzu, ievadiet sekojošu informāciju, lai apstiprinātu šo darbību:
-settings.delete_notices_1=- Šī darbība ir <strong>NEATGRIEZENISKA</strong>.
-settings.delete_notices_2=- Šī darbība neatgriezeniski izdzēsīs visus šī repozitorija datus, tai skaitā Git datus, problēmu ziņojumus, komentārus un definētās piekļuves tiesības.
-settings.delete_notices_fork_1=- Ja repozitorijs ir publisks, visi atdalītie repozitoriji kļūs neatkarīgi.
-settings.delete_notices_fork_2=- Ja repozitorijs ir privāts, tiks dzēsti arī visi atdalītie repozitoriji.
-settings.delete_notices_fork_3=- Ja vēlaties saglabāt atdalīts repozitorijus pēc dzēšanas, sākumā nomainiet repozitorija redzamību uz publisku.
-settings.update_settings_success=Repozitorija opcijas ir veiksmīgi saglabātas.
-settings.transfer_owner=Jaunais īpašnieks
-settings.make_transfer=Mainīt
-settings.transfer_succeed=Repozitorija īpašnieks ir veiksmīgi nomainīts.
-settings.confirm_delete=Apstiprināt dzēšanu
-settings.add_collaborator=Pievienot jaunu līdzstrādnieku
-settings.add_collaborator_success=Jauns līdzstrādnieks ir pievienots.
-settings.remove_collaborator_success=Līdzstrādnieks tika noņemts.
-settings.user_is_org_member=Lietotājs ir organizācijas biedrs, kas nevar tikt pievienots kā līdzstrādnieks.
-settings.add_webhook=Pievienot tīmekļa āķi
-settings.hooks_desc=Tīmekļa āķi ļauj paziņot ārējiem servisiem par noteiktiem notikomiem, kas notiek Git servisā. Kad iestāsies kāds notikums, katram ārējā servisa URL tiks nosūtīts POST pieprasījums. Lai uzzinātu sīkāk skatieties <a target="_blank" href="%s">Tīmekļa āķu rokasgrāmatā</a>.
-settings.webhook_deletion=Dzēst tīmekļa āķi
-settings.webhook_deletion_desc=Dzēšot tīmekļa āķi tiks dzēsta visa ar to saistītā informācija un izpildes vēsture. Vai vēlaties turpināt?
-settings.webhook_deletion_success=Tīmekļa āķis tika veiksmīgi izdzēsts!
-settings.webhook.request=Pieprasījums
-settings.webhook.response=Atbilde
-settings.webhook.headers=Galvenes
-settings.webhook.payload=Derīgā krava
-settings.webhook.body=Saturs
-settings.githooks_desc=Git āķus apstrādā pats Git. Jūs varat labot atbalsīto āku failus sarakstā zemāk, lai veiktu pielāgotas darbības.
-settings.githook_edit_desc=Ja āķis nav aktīvs, tiks attēlots piemērs kā to izmantot. Atstājot āķa saturu tukšu, tas tiks atspējots.
-settings.githook_name=Āķa nosaukums
-settings.githook_content=Āķa saturs
-settings.update_githook=Labot āķi
-settings.add_webhook_desc=Uz norādīto URL tiks nosūtīts <code>POST</code> pieprasījums ar notikuma datiem. Jūs varat norādīt arī datu formātu, kādā datus vēlaties saņemt (JSON, <code>x-www-form-urlencoded</code> <em>utt.</em>). Detalizētāku informāciju ir iespējams uzzināt <a target="_blank" href="%s">Tīmekļa āķu rokasgrāmatā</a>.
-settings.payload_url=Vērtuma URL
-settings.content_type=Satura tips
-settings.secret=Noslēpums
-settings.slack_username=Lietotājvārds
-settings.slack_icon_url=Ikonas URL
-settings.slack_color=Krāsa
-settings.event_desc=Kādu notikumu rezultātā tiktu izsaukts tīmekļā āķis?
-settings.event_push_only=Tikai izmaiņu nosūtīšanas notikumiem.
-settings.event_send_everything=Vēlos saņemt <strong>visu</strong>.
-settings.event_choose=Atzīmēt, ko vēlos saņemt.
-settings.event_create=Izveidot
-settings.event_create_desc=Atzara vai taga izveidošana
-settings.event_push=Izmaiņu nosūtīšana
-settings.event_push_desc=Git izmaiņu nosūtīšana uz repozitoriju
-settings.active=Aktīvs
-settings.active_helper=Tiks nosūtīti notikuma dati, kad nostrādās šis āķis.
-settings.add_hook_success=Jauns tīmekļa āķis tika veiksmīgi pievienots.
-settings.update_webhook=Mainīt tīmekļa āķi
-settings.update_hook_success=Tīmekļa āķist tika veiksmīgi saglabāts.
-settings.delete_webhook=Dzēst tīmekļa āķi
-settings.recent_deliveries=Pēdējās piegādes
-settings.hook_type=Āķa veids
-settings.add_slack_hook_desc=PIevienot <a href="%s">Slack</a> integrāciju Jūsu repozitorijā.
-settings.slack_token=Talons
-settings.slack_domain=Domēns
-settings.slack_channel=Kanāls
-settings.deploy_keys=Izvietot atslēgas
-settings.add_deploy_key=Pievienot izvietošanas atslēgu
-settings.no_deploy_keys=Nav pievienota neviena izvietošanas atslēga.
-settings.title=Virsraksts
-settings.deploy_key_content=Saturs
-settings.key_been_used=Šāda izvietošanas atslēga jau eksistē.
-settings.key_name_used=Izvietošanas atslēga ar šādu nosaukumu jau eksistē.
-settings.add_key_success=Izvietošanas atslēga '%s' tik veiksmīgi pievienota!
-settings.deploy_key_deletion=Dzēst izvietošanas atslēgu
-settings.deploy_key_deletion_desc=Dzēšot šo izvietošanas atslēgu tiks noņemta arī ar to saistītā piekļuve šim repozitorijam. Vai vēlaties turpināt?
-settings.deploy_key_deletion_success=Izvietošanas atslēga tika veiksmīgi izdzēsta!
-
-diff.browse_source=Pārlūkot izejas kodu
-diff.parent=vecāks
-diff.commit=revīzija
-diff.data_not_available=Salīdzināšanas dati nav pieejami.
-diff.show_diff_stats=Rādīt salīdzināšanas statistiku
-diff.stats_desc=<strong>%d mainītis faili</strong> ar <strong>%d papildinājumiem</strong> un <strong>%d dzēšanām</strong>
-diff.bin=BIN
-diff.view_file=Parādīt failu
-
-release.releases=Laidieni
-release.new_release=Jauns laidiens
-release.draft=Melnraksts
-release.prerelease=Pirmsizlaides versija
-release.stable=Stabila
-release.edit=labot
-release.ahead=<strong>%d</strong> revīzijas atzarā %s kopš šī laidiena
-release.source_code=Izejas kods
-release.tag_name=Taga nosaukums
-release.target=Mērķis
-release.tag_helper=Publicējot, izvēlieties esošu vai izveidojiet jaunu tagu.
-release.release_title=Laidiena virsraksts
-release.content_with_md=Saturs ar <a href="%s">Markdown</a>
-release.write=Rakstīt
-release.preview=Priekšskatītījums
-release.content_placeholder=Uzrakstiet kādu aprakstu
-release.loading=Notiek ielāde...
-release.prerelease_desc=Šī ir pirmslaidiena versija
-release.prerelease_helper=Tiks norādīts, ka šis laidiens nav gatavs lietošanai produkcijas režīmā.
-release.publish=Publicēt laidienu
-release.save_draft=Saglabāt melnrakstu
-release.edit_release=Labot laidienu
-release.tag_name_already_exist=Laidiens ar šādu taga nosaukumu jau eksistē.
-
-[org]
-org_name_holder=Organizācijas nosaukums
-org_name_helper=Labi organizāciju nosaukumi ir īsi un tādi, kurus viegli atcerēties.
-create_org=Izveidot organizāciju
-repo_updated=Atjaunināts
-people=Personas
-invite_someone=Uzaicināt kādu
-teams=Komandas
-lower_members=dalībnieki
-lower_repositories=repozitoriji
-create_new_team=Izveidot jaunu komandu
-org_desc=Apraksts
-team_name=Komandas nosaukums
-team_desc=Apraksts
-team_name_helper=Šo nosaukumu varēs izmantot, lai pieminētu komandu sarunās.
-team_desc_helper=Komandas apraksts
-team_permission_desc=Kādām tiesībām šai komandai būtu jābūt?
-
-form.name_reserved=Organizācijas nosaukums '%s' ir rezervēts.
-form.name_pattern_not_allowed=Organizācijas nosaukums '%s' nav atļauts.
-
-settings=Iestatījumi
-settings.options=Opcijas
-settings.full_name=Pilns vārds, uzvārds
-settings.website=Mājas lapa
-settings.location=Atrašanās vieta
-settings.update_settings=Mainīt iestatījumus
-settings.update_setting_success=Organizācijas iestatījumi tika veiksmīgi saglabāti.
-settings.change_orgname_prompt=Šī izmaiņa ietekmēs saites, kas ir saistītas ar šo organizāciju.
-settings.update_avatar_success=Organizācijas avatara iestatījumi tika veiksmīgi saglabāti.
-settings.delete=Dzēst organizāciju
-settings.delete_account=Dzēst šo organizāciju
-settings.delete_prompt=Šī darbība pilnībā dzēsīs šo organizāciju, kā arī tā ir <strong>NEATGRIEZENISKA</strong>!
-settings.confirm_delete_account=Apstiprināt dzēšanu
-settings.delete_org_title=Organizācijas dzēšana
-settings.delete_org_desc=Šī organizācija tiks pilnībā izdzēsta, vai vēlaties turpināt?
-settings.hooks_desc=Pievienot tīmekļa āķus, kas nostrādās <strong>visiem repozitorijiem</strong> šajā organizācijā.
-
-members.public=Publisks
-members.public_helper=padarīt privātu
-members.private=Privāts
-members.private_helper=padarīt publisku
-members.owner=Īpašnieks
-members.member=Biedri
-members.conceal=Noslēpt
-members.remove=Noņemt
-members.leave=Atstāt
-members.invite_desc=Sāciet rakstīt lietotājvārdu, lai uzaicinātu jaunu biedru organizācijā %s:
-members.invite_now=Uzaicināt tagad
-
-teams.join=Pievienoties
-teams.leave=Atstāt
-teams.read_access=Lasīšanas piekļuve
-teams.read_access_helper=Komanda varēs skatīties un klonēt šīs organizācijas repozitorijus.
-teams.write_access=Rakstīšanas piekļuve
-teams.write_access_helper=Komanda varēs skatīties un klonēt, kā arī nosūtīt izmaiņas šīs organizācijas repozitorijiem.
-teams.admin_access=Administratora piekļuve
-teams.admin_access_helper=Šī komanda varēs veikt push/pull komandas tās repozitorijiem, kā arī tiem pievienot citus līdzstrādniekus.
-teams.no_desc=Komandai nav apraksta
-teams.settings=Iestatījumi
-teams.owners_permission_desc=Īpašniekiem ir pilna piekļuve <strong>visiem repozitorijiem</strong> un ir organizācijas <strong>administratora tiesības</strong>.
-teams.members=Komandas biedri
-teams.update_settings=Saglabāt iestatījumus
-teams.delete_team=Dzēst komandu
-teams.add_team_member=Pievienot komandas biedru
-teams.delete_team_title=Komandas dzēšana
-teams.delete_team_desc=Komanda tiks dzēsta, vai vēlaties turpināt? Komandas biedri var zaudēt piekļuvi dažiem vai pat visiem repozitorijiem.
-teams.delete_team_success=Komanda tika veiksmīgi izdzēsta.
-teams.read_permission_desc=Šai komandai ir <strong>lasīšanas</strong> tiesības: dalībnieki var skatīties un klonēt komandas repozitorijus.
-teams.write_permission_desc=Šai komandai ir <strong>rakstīšanas</strong> tiesības: dalībnieki var lasīt un nosūtīt izmaiņas repozitorijiem.
-teams.admin_permission_desc=Šai komandai ir <strong>administratora</strong> tiesības: dalībnieki var lasīt, rakstīt un pievienot citus dalībniekus komandas repozitorijiem.
-teams.repositories=Komandas repozitoriji
-teams.add_team_repository=Pievienot komandas repozitoriju
-teams.remove_repo=Noņemt
-teams.add_nonexistent_repo=Repozitorijs, kuram Jūs mēģinat pievienot neeksistē, sākumā izveidojiet to.
-
-[admin]
-dashboard=Infopanelis
-users=Lietotāji
-organizations=Organizācijas
-repositories=Repozitoriji
-authentication=Autentifikācijas
-config=Konfigurācija
-notices=Sistēmas paziņojumi
-monitor=Uzraudzība
-first_page=Pirmā
-last_page=Pēdējā
-total=Kopā: %d
-
-dashboard.statistic=Statistika
-dashboard.operations=Darbības
-dashboard.system_status=Sistēmas uzraudzības statuss
-dashboard.statistic_info=Gogs datu bāze satur <b>%d</b> lietotājus, <b>%d</b> organizācijas, <b>%d</b> publiskās atslēgas, <b>%d</b> repozitorijus, <b>%d</b> vērošanas, <b>%d</b> atzīmētas zvaigznītes, <b>%d</b> darbības, <b>%d</b> piekļuves, <b>%d</b> problēmas, <b>%d</b> komentārus, <b>%d</b> sociālos kontus, <b>%d</b> sekošanas, <b>%d</b> spoguļošanas, <b>%d</b> izlaides, <b>%d</b> login sources, <b>%d</b> tīmekļa āķus, <b>%d</b> starpposmus, <b>%d</b> etiķetes, <b>%d</b> āķu uzdevumus, <b>%d</b> komandas, <b>%d</b> labotus uzdevumus, <b>%d</b> pielikumus.
-dashboard.operation_name=Darbības nosaukums
-dashboard.operation_switch=Pārslēgt
-dashboard.operation_run=Palaist
-dashboard.clean_unbind_oauth=Notīrīt nesaistītās OAuth biļetes
-dashboard.clean_unbind_oauth_success=Visas nesaistītās OAuth biļetes tika veiksmīgi izdzēstas.
-dashboard.delete_inactivate_accounts=Dzēst visus neaktīvos kontus
-dashboard.delete_inactivate_accounts_success=Visi neaktīvie kotni tika veiksmīgi izdzēsti.
-dashboard.delete_repo_archives=Dzēst visu repozitoriju arhīvus
-dashboard.delete_repo_archives_success=Visu repozitoriju arhīvi tika veiksmīgi izdzēsti.
-dashboard.git_gc_repos=Veikt repozitoriju datu sakārtošānu (git gc)
-dashboard.git_gc_repos_success=Datu sakārtošana visiem repozitorijiem veiksmīgi pabeigta.
-dashboard.resync_all_sshkeys=Pārrakstīt '.ssh/authorized_keys' failu (brīdinājums: ne-Git atslēgas tiks pazaudētas)
-dashboard.resync_all_sshkeys_success=Visas publiskās atslēgas tika veiksmīgi pārrakstītas.
-dashboard.resync_all_update_hooks=Pārrakstīt visu repozitoriju izmaiņu āķus (nepieciešams, ja tiek mainīta konfigurācijas faila atrašanās vieta)
-dashboard.resync_all_update_hooks_success=Visu repozitoriju izmaiņu āķi tika veiksmīgi pārrakstīti.
-
-dashboard.server_uptime=Servera darbības laiks
-dashboard.current_goroutine=Izmantotās Gorutīnas
-dashboard.current_memory_usage=Pašreiz izmantotā atmiņa
-dashboard.total_memory_allocated=Kopējā piešķirtā atmiņa
-dashboard.memory_obtained=Iegūtā atmiņa
-dashboard.pointer_lookup_times=Rādītāju meklēšanas reizes
-dashboard.memory_allocate_times=Atmiņas piešķiršanas reizes
-dashboard.memory_free_times=Atmiņas atbrīvošanas reizes
-dashboard.current_heap_usage=Pašreizējā kaudzes izmantošana
-dashboard.heap_memory_obtained=Iegūtā kaudzes atmiņa
-dashboard.heap_memory_idle=Neizmantotā kaudzes atmiņa
-dashboard.heap_memory_in_use=Izmantotā kaudzes atmiņa
-dashboard.heap_memory_released=Atbrīvotā kaudzes atmiņa
-dashboard.heap_objects=Kaudzes atmiņas objekti
-dashboard.bootstrap_stack_usage=Izmantotais sāknēšanas steka lielums
-dashboard.stack_memory_obtained=Iegūtā steka atmiņa
-dashboard.mspan_structures_usage=Izmantotās MSpan struktūras
-dashboard.mspan_structures_obtained=Iegūtās MSpan struktūras
-dashboard.mcache_structures_usage=Izmantotās MCache struktūras
-dashboard.mcache_structures_obtained=Iegūtās MCache struktūras
-dashboard.profiling_bucket_hash_table_obtained=Iegūtā profilēšanas kausa jaucējtabula
-dashboard.gc_metadata_obtained=Iegūtie GC metadati
-dashboard.other_system_allocation_obtained=Iegūtās citas sistēmas sadales
-dashboard.next_gc_recycle=Nākošā GC atkritne
-dashboard.last_gc_time=Laiks kopš pēdējās GC
-dashboard.total_gc_time=Kopējais GC izpildes laiks
-dashboard.total_gc_pause=Kopējais GC izpildes laiks
-dashboard.last_gc_pause=Pedējās GC izpildes laiks
-dashboard.gc_times=GC reizes
-
-users.user_manage_panel=Lietotāju pārvaldības panelis
-users.new_account=Izveidot jaunu kontu
-users.name=Vārds
-users.activated=Aktivizēts
-users.admin=Administrators
-users.repos=Repozitoriji
-users.created=Izveidots
-users.send_register_notify=Nosūtīt lietotājam reģistrācijas paziņojumu
-users.new_success=Jauns konts '%s' tika veiksmīgi izveidots.
-users.edit=Labot
-users.auth_source=Autentificēšanas avots
-users.local=Iebūvētā
-users.auth_login_name=Autentifikācijas pieteikšanās vārds
-users.password_helper=Atstājiet tukšu, ja nevēlaties mainīt.
-users.update_profile_success=Konta profils tika veiksmīgi saglabāts.
-users.edit_account=Labot kontu
-users.is_activated=Konts ir aktivizēts
-users.is_admin=Šim kontam ir administratora piekļuves tiesības
-users.allow_git_hook=Šim kontam ir tiesības pievienot/labot Git āķus
-users.update_profile=Mainīt konta profilu
-users.delete_account=Dzēst šo kontu
-users.still_own_repo=Šis konts ir vismaz viena repozitorija īpašnieks, tos sākumā ir nepieciešams izdzēst vai nomainīt to īpašnieku.
-users.still_has_org=Šis konts ir vismaz vienas organizācijas biedrs, sākumā nepieciešams pamest vai izdzēst šo organizāciju.
-users.deletion_success=Konts tika veiksmīgi izdzēsts!
-
-orgs.org_manage_panel=Organizāciju pārvaldības panelis
-orgs.name=Nosaukums
-orgs.teams=Komandas
-orgs.members=Dalībnieki
-
-repos.repo_manage_panel=Repozitoriju pārvaldības panelis
-repos.owner=Īpašnieks
-repos.name=Vārds
-repos.private=Privāts
-repos.watches=Vērošana
-repos.stars=Atzīmētās zvaigznītes
-repos.issues=Problēmas
-
-auths.auth_manage_panel=Autentifikācijas pārvaldības panelis
-auths.new=Pievienot jaunu avotu
-auths.name=Nosaukums
-auths.type=Veids
-auths.enabled=Iespējota
-auths.updated=Atjaunināta
-auths.auth_type=Autentifikācijas tips
-auths.auth_name=Autentifikācijas nosaukums
-auths.domain=Domēns
-auths.host=Resursdators
-auths.port=Ports
-auths.bind_dn=Saistīšanas DN
-auths.bind_password=Saistīšanas parole
-auths.bind_password_helper=Brīdinājums: Šī parole tiks saglabāta nešifrētā veidā. Neizmantojiet kontu ar augstām privilēģijām.
-auths.user_base=Lietotāja pamatnosacījumi
-auths.user_dn=Lietotāja DN
-auths.attribute_name=Vārda atribūts
-auths.attribute_surname=Uzvārda atribūts
-auths.attribute_mail=E-pasta atribūts
-auths.filter=Lietotāju filts
-auths.admin_filter=Administratoru filtrs
-auths.ms_ad_sa=MS Ad SA
-auths.smtp_auth=SMTP autentifikācijas tips
-auths.smtphost=SMTP resursdators
-auths.smtpport=SMTP ports
-auths.allowed_domains=Atļautie domēni
-auths.allowed_domains_helper=Atstājiet tukšu, ja nevēlaties ierobežot domēnu vārdus. Domēna vārdus nepieciešams atdalīt ar komatu ','.
-auths.enable_tls=Iespējot TLS šifrēšanu
-auths.skip_tls_verify=Izlaist TLS verifikāciju
-auths.pam_service_name=PAM servisa nosaukums
-auths.enable_auto_register=Iespējot automātisko reģistrāciju
-auths.tips=Padomi
-auths.edit=Labot autentifikācijas iestatījumus
-auths.activated=Autentifikācija ir aktivizēta
-auths.new_success=Jauna autentifikācija '%s' tika veiksmīgi pievienota.
-auths.update_success=Autentifikācijas iestatījumi tika veiksmīgi saglabāti.
-auths.update=Mainīt autentifikācijas iestatījumus
-auths.delete=Dzēst šo autentifikāciju
-auths.delete_auth_title=Autentifikācijas dzēšana
-auths.delete_auth_desc=Šī autentifikācija tiks dzēsta, vai vēlaties turpināt?
-auths.deletion_success=Autentifikācija tika veiksmīgi izdzēsta!
-
-config.server_config=Servera konfigurācija
-config.app_name=Lietotnes nosaukums
-config.app_ver=Lietotnes versija
-config.app_url=Lietotnes URL
-config.domain=Domēns
-config.offline_mode=Bezsaistes režīms
-config.disable_router_log=Atspējot maršrutētāja žurnalizēšanu
-config.run_user=Izpildes lietotājs
-config.run_mode=Izpildes režīms
-config.repo_root_path=Repozitoriju glabāšanas vieta
-config.static_file_root_path=Statisko failu atrašanās vieta
-config.log_file_root_path=Žurnalizēšanas failu glabāšanas vieta
-config.script_type=Skripta veids
-config.reverse_auth_user=Reversā lietotāja autentifikācija
-config.db_config=Datu bāzes konfigurācija
-config.db_type=Veids
-config.db_host=Resursdators
-config.db_name=Nosaukums
-config.db_user=Lietotājs
-config.db_ssl_mode=SSL režīms
-config.db_ssl_mode_helper=(tikai PostgreSQL datu bāzei)
-config.db_path=Ceļš
-config.db_path_helper=(priekš "sqlite3" and "tidb")
-config.service_config=Pakalpojuma konfigurācija
-config.register_email_confirm=Pieprasīt e-pasta apstiprināšanu
-config.disable_register=Atspējot jaunu lietotāju reģistrāciju
-config.show_registration_button=Rādīt reģistrēšanās pogu
-config.require_sign_in_view=Nepieciešama autorizācija
-config.enable_cache_avatar=Glabāt profila attēlus kešatmiņā
-config.mail_notify=Pasta paziņojumi
-config.disable_key_size_check=Atspējot atslēgas minimālā garuma pārbaudi
-config.enable_captcha=Iespējot drošības kodu
-config.active_code_lives=Aktīvā koda ilgums
-config.reset_password_code_lives=Paroles atiestatīšanas koda ilgums
-config.webhook_config=Tīkla āķu konfigurācija
-config.queue_length=Rindas garums
-config.deliver_timeout=Piegādes noildze
-config.skip_tls_verify=Izlaist TLS pārbaudi
-config.mailer_config=Sūtītāja konfigurācija
-config.mailer_enabled=Iespējots
-config.mailer_disable_helo=Atspējot HELO
-config.mailer_name=Nosaukums
-config.mailer_host=Resursdators
-config.mailer_user=Lietotājs
-config.oauth_config=OAuth konfigurācija
-config.oauth_enabled=Iespējota
-config.cache_config=Kešatmiņas konfigurācija
-config.cache_adapter=Kešatmiņas adapteris
-config.cache_interval=Kešatmiņas intervāls
-config.cache_conn=Kešatmiņas pieslēguma parametri
-config.session_config=Sesijas konfigurācja
-config.session_provider=Sesijas nodrošinātājs
-config.provider_config=Pakalpojumu sniedzēja konfigurācija
-config.cookie_name=Sīkdatnes nosaukums
-config.enable_set_cookie=Ļaut izmantot sīkdatnes
-config.gc_interval_time=GC laika intervāls
-config.session_life_time=Sesijas ilgums
-config.https_only=Tikai HTTPS
-config.cookie_life_time=Sīkdatņu glabāšanas ilgums
-config.picture_config=Attēlu konfigurācija
-config.picture_service=Lokāli attēli
-config.disable_gravatar=Atspējot Gravatar
-config.log_config=Žurnalizēšanas konfigurācija
-config.log_mode=Žurnalizēšanas veids
-
-monitor.cron=Cron uzdevumi
-monitor.name=Nosaukums
-monitor.schedule=Grafiks
-monitor.next=Nākošās izpildes laiks
-monitor.previous=Pēdējās izpildes laiks
-monitor.execute_times=Izpilžu skaits
-monitor.process=Darbojošies procesi
-monitor.desc=Apraksts
-monitor.start=Sākuma laiks
-monitor.execute_time=Izpildes laiks
-
-notices.system_notice_list=Sistēmas paziņojumi
-notices.type=Veids
-notices.type_1=Repozitorijs
-notices.desc=Apraksts
-notices.op=Op.
-notices.delete_success=Sistēmas paziņojums tika veiksmīgi izdzēsts.
-
-[action]
-create_repo=izveidoja repozitoriju <a href="%s">%s</a>
-rename_repo=pārsauca repozitoriju no <code>%[1]s</code> uz <a href="%[2]s">%[3]s</a>
-commit_repo=veica izmaiņu nosūtīšanu atzaram <a href="%s/src/%s">%[2]s</a> repozitorijā <a href="%[1]s">%[3]s</a>
-create_issue=`reģistrēja problēmu <a href="%s/issues/%s">%s#%[2]s</a>`
-create_pull_request=`izveidoja izmaiņu pieprasījumu <a href="%s/pulls/%s">%s#%[2]s</a>`
-comment_issue=`pievienoja komentāru problēmai <a href="%s/issues/%s">%s#%[2]s</a>`
-merge_pull_request=`sapludināja izmaiņu pieprasījumu <a href="%s/pulls/%s">%s#%[2]s</a>`
-transfer_repo=mainīja repozitorija <code>%s</code> īpašnieku uz <a href="%s">%s</a>
-push_tag=pievienoja tagu <a href="%s/src/%s">%[2]s</a> repozitorijam <a href="%[1]s">%[3]s</a>
-compare_2_commits=Veikt salīdzināšanu starp šīm 2 revīzijām
-
-[tool]
-ago=atpakaļ
-from_now=no šī brīža
-now=tagad
-1s=1 sekundi %s
-1m=1 minūti %s
-1h=1 stundu %s
-1d=1 dienu %s
-1w=1 nedēļu %s
-1mon=1 mēnesi %s
-1y=1 gadu %s
-seconds=%d sekundes %s
-minutes=%d minūtes %s
-hours=%d stundas %s
-days=%d dienas %s
-weeks=%d nedēļas %s
-months=%d mēneši %s
-years=%d gadi %s
-raw_seconds=sekundes
-raw_minutes=minūtes
-
-[dropzone]
-default_message=Ievelciet failus šeit vai noklikšķiniet, lai augšupielādētu.
-invalid_input_type=Šādus failus nav iespējams augšupielādēt.
-file_too_big=Faila izmērs ({{filesize}} MB) pārsniedz maksimālo atļauto izmēru ({{maxFilesize}} MB).
-remove_file=Noņemt failu
-
+app_desc=Viegli uzstādāms Git serviss, kas rakstīts valodā Go + +home=Sākums +dashboard=Infopanelis +explore=Izpētīt +help=Palīdzība +sign_in=Pierakstīties +sign_out=Izrakstīties +sign_up=Pieteikties +register=Reģistrēties +website=Mājas lapa +version=Versija +page=Lapa +template=Sagatave +language=Valoda +create_new=Izveidot... +user_profile_and_more=Lietotāja profilu un vairāk +signed_in_as=Pierakstījies kā + +username=Lietotājvārds +email=E-pasts +password=Parole +re_type=Parole atkārtoti +captcha=Pārbaudes kods + +repository=Repozitorijs +organization=Organizācija +mirror=Spogulis +new_repo=Jauns repozitorijs +new_migrate=Jauna migrācija +new_fork=Jauns atdalītais repozitorijs +new_org=Jauna organizācija +manage_org=Pārvaldīt organizācijas +admin_panel=Admin panelis +account_settings=Konta iestatījumi +settings=Iestatījumi +your_profile=Tavs profils +your_settings=Tavi iestatījumi + +news_feed=Jaunumu plūsma +pull_requests=Izmaiņu pieprasījumi +issues=Problēmas + +cancel=Atcelt + +[search] +search=Meklēt... +repository=Repozitorijs +user=Lietotājs +issue=Kļūda +code=Kods + +[install] +install=Instalācija +title=Instalācijas soļi pirmo reizi palaižot +docker_helper=Ja Gogs tiek lietots zem Docker, izlasiet uzmanīgi <a target="_blank" href="%s">vadlīnijas</a>, pirms ko maināt šajā lapā! +requite_db_desc=Gogs nepieciešams MySQL, PostgreSQL, SQLite3 vai TiDB. +db_title=Datu bāzes iestatījumi +db_type=Datu bāzes veids +host=Resursdators +user=Lietotājs +password=Parole +db_name=Datu bāzes nosaukums +db_helper=Nepieciešams izmantot MySQL INNODB dzini ar rakstzīmju kopu utf8_general_ci. +ssl_mode=SSL režīms +path=Ceļš +sqlite_helper=SQLite3 vai TiDB datu bāzes faila atrašanās vieta. +err_empty_db_path=Nepieciešams norādīt SQLite3 vai TiDB datu bāzes atrašanās vietu. +err_invalid_tidb_name=TiDB datu bāzes nosaukums nevar saturēt simbolus "." un "-". +no_admin_and_disable_registration=Reģistrāciju nevar atslēgt, kamēr nav izveidots administratora konts. +err_empty_admin_password=Administratora kontam ir obligāti jānorāda parole. + +general_title=Gogs vispārīgie iestatījumi +app_name=Lietotnes nosaukums +app_name_helper=Norādiet organizācijas nosaukumu šeit! +repo_path=Repozitoriju glabāšanas vieta +repo_path_helper=Visi Git attālinātie repozitoriji tiks glabāti šajā direktorijā. +run_user=Izpildes lietotājs +run_user_helper=Lietotājam ir jābūt rakstīšanas tiesībām repozitorija saknes direktorijai un Gogs jābūt palaistam zem šī lietotāja. +domain=Domēns +domain_helper=Tas ietekmē SSH klonēšanas URL. +ssh_port=SSH ports +ssh_port_helper=Porta numurs, kuru izmanto Jūsu SSH serveris, atstājiet tukšu, ja nevēlaties izmantot SSH. +http_port=HTTP ports +http_port_helper=Porta numurs pēc kura lietojumprogrammai būs iespējams pieslēgties. +app_url=Lietotnes URL +app_url_helper=Tas ietekmē HTTP/HTTPS klonēšanas URL un e-pasta saturā izsūtītās saites. + +optional_title=Neobligātie iestatījumi +email_title=E-pasta pakalpojuma iestatījumi +smtp_host=SMTP resursdators +smtp_from=Sūtītājs +smtp_from_helper=E-pasta adrese, RFC 5322. Drīkst būt vienkārši e-pasta adrese vai formātā "Nosaukums" <e-pasts@example.com>. +mailer_user=Sūtītāja e-pasta adrese +mailer_password=Sūtītāja parole +register_confirm=Iespējot reģistrēšanās apstiprināšanu +mail_notify=Iespējot e-pasta paziņojumus +server_service_title=Servera un citu servisu iestatījumi +offline_mode=Iespējot bezsaistes režīmu +offline_mode_popup=Atspējot CDN arī produkcijas režīmā, visi resursu faili tiks piegādāti no servera. +disable_gravatar=Atspējot Gravatar pakalpojumu +disable_gravatar_popup=Atspējot Gravatar un citus avotus, visus avatarus augšupielādēts lietotāji vai izmantos noklusēto attēlu. +disable_registration=Atspējot lietotāju reģistrāciju +disable_registration_popup=Atspējot lietotāju reģistrāciju, tikai administrators varēs izveidot jaunus lietotāju kontus. +enable_captcha=Iespējot drošības kodu +enable_captcha_popup=Lietotājam reģistrējoties, pieprasīt ievadīt drošības kodu. +require_sign_in_view=Iespējot nepieciešamību autorizēties, lai aplūkotu lapas +require_sign_in_view_popup=Tika autorizēti lietotāji var aplūkot lapas, neautorizēti lietotāji var piekļūt tikai autorizācijas un reģistrēšanās lapām. +admin_setting_desc=Nav nepieciešams izveidot administratora kontu uzreiz, lietotājs ar ID=1 saņems administratora tiesības automātiski. +admin_title=Admin konta iestatījumi +admin_name=Lietotājvārds +admin_password=Parole +confirm_password=Apstipriniet paroli +admin_email=Administratora e-pasts +install_gogs=Instalēt Gogs +test_git_failed=Kļūda pārbaudot 'git' komandu: %v +sqlite3_not_available=Jūsu versija neatbalsta SQLite3, lūdzu lejupielādējiet oficiālo bināro versiju no %s, NEVIS gobuild versiju. +invalid_db_setting=Datu bāzes iestatījums nav pareizs: %v +invalid_repo_path=Repozitorija atrašanās vieta ir nekorekta: %v +run_user_not_match=Izpildes lietotājs nav pašreizējais lietotājs: %s -> %s +save_config_failed=Neizdevās saglabāt konfigurāciju: %v +invalid_admin_setting=Nekorekts admin konta iestatījums: %v +install_success=Laipni lūdzam! Mēs priecājamies, ka Jūs izvēlaties Gogs, patīkamu lietošanu! + +[home] +uname_holder=Lietotājvārds vai e-pasts +password_holder=Parole +switch_dashboard_context=Mainīt infopaneļa kontekstu +my_repos=Mani repozitoriji +collaborative_repos=Sadarbības repozitoriji +my_orgs=Manas organizācijas +my_mirrors=Mani spoguļi +view_home=Skatīties %s + +issues.in_your_repos=Jūsu repozitorijos + +[explore] +repos=Repozitoriji + +[auth] +create_new_account=Izveidot jaunu kontu +register_hepler_msg=Jau ir konts? Pieraksties tagad! +social_register_hepler_msg=Jau ir konts? Sasaisti tagad! +disable_register_prompt=Atvainojiet, reģistrācija ir atspējota. Lūdzu, sazinieties ar vietnes administratoru. +disable_register_mail=Atvainojiet, reģistrācijas e-pasta apstiprināšana ir atspējota. +remember_me=Atcerēties mani +forgot_password=Aizmirsu paroli +forget_password=Aizmirsi paroli? +sign_up_now=Nepieciešams konts? Reģistrējies tagad. +confirmation_mail_sent_prompt=Jauns apstiprināšanas e-pasts ir nosūtīts uz <b>%s</b>, lūdzu, pārbaudies savu e-pasta kontu tuvāko %d stundu laikā, lai pabeigtu reģistrācijas procesu. +active_your_account=Aktivizēt savu kontu +resent_limit_prompt=Atvainojiet, Jūs sūtījāt aktivizācijas e-pastu pārāk bieži. Lūdzu, gaidiet 3 minūtes. +has_unconfirmed_mail=Sveiki %s, Jums ir neapstiprināta e-pasta adrese (<b>%s</b>). Ja neesat saņēmis apstiprināšanas e-pastu vai Jums ir nepieciešams nosūtīt jaunu, lūdzu, nospiediet pogu, kas atrodas zemāk. +resend_mail=Nospiediet šeit, lai vēlreiz nosūtītu aktivizācijas e-pastu +email_not_associate=Šī e-pasta adrese nav saistīta ar Jūsu kontu. +send_reset_mail=Spiediet šeit, lai nosūtītu paroles maiņas vēstuli uz Jūsu e-pastu +reset_password=Atjaunot savu paroli +invalid_code=Atvainojiet, Jūsu apstiprināšanas kodam ir beidzies derīguma termiņš vai arī tas ir nepareizs. +reset_password_helper=Nospiediet šeit, lai atjaunotu paroli +password_too_short=Paroles garums nedrīkst būt mazāks par 6. + +[mail] +activate_account=Lūdzu, aktivizējiet savu kontu +activate_email=Apstipriniet savu e-pasta adresi +reset_password=Atiestatīt savu paroli +register_success=Reģistrācija notikusi veiksmīgi +register_notify=Welcome on board + +[modal] +yes=Jā +no=Nē +modify=Mainīt + +[form] +UserName=Lietotājvārds +RepoName=Repozitorija nosaukums +Email=E-pasta adrese +Password=Parole +Retype=Parole atkārtoti +SSHTitle=SSH atslēgas nosaukums +HttpsUrl=HTTPS URL +PayloadUrl=Vērtuma URL +TeamName=Komandas nosaukums +AuthName=Autorizācijas nosaukums +AdminEmail=Admin e-pasta adrese + +require_error=` nedrīkst būt tukšs.` +alpha_dash_error=` drīkst saturēt tikai latīņu alfabēta burtus, ciparus vai domuzīmes (-_).` +alpha_dash_dot_error=` drīkst saturēt tikai latīņu alfabēta burtus, ciparus, domuzīmes (-_) vai punktu.` +size_error=` jābūt %s simbolus garam.` +min_size_error=` jabūt vismaz %s simbolu garumā.` +max_size_error=` jabūt ne mazāk kā %s simbolu garumā.` +email_error=` nav derīga e-pasta adrese.` +url_error=` nav korekts URL.` +include_error=` ir jāsatur tekstu '%s'.` +unknown_error=Nezināma kļūda: +captcha_incorrect=Pārbaudes kods nesakrīt ar attēlā redzamo. +password_not_match=Parole un atkārtoti ievadītā parole nav vienādas. + +username_been_taken=Lietotājvārds ir jau aizņemts. +repo_name_been_taken=Repozitorija vārds ir jau aizņemts. +org_name_been_taken=Organizācijas nosaukums ir jau aizņemts. +team_name_been_taken=Komandas nosaukums ir jau aizņemts. +email_been_used=E-pasta adrese jau tiek izmantota. +illegal_team_name=Grupas nosaukums satur neatļautas rakstzīmes. +username_password_incorrect=Lietotājvārds vai parole nav pareiza. +enterred_invalid_repo_name=Lūdzu, pārliecinieties, vai ievadītā repozitorija nosaukums ir pareizs. +enterred_invalid_owner_name=Lūdzu, pārliecinieties, vai ievadītā īpašnieka vārds ir pareizs. +enterred_invalid_password=Lūdzu pārliecinieties, vai Jūsu ievadītā parole ir pareiza. +user_not_exist=Šāds lietotājs neeksistē. +last_org_owner=Nav iespējams noņemt vienīgo komandas īpašnieku. Pirms tam ir nepieciešams norādīt jauno īpašnieku. + +invalid_ssh_key=Atvainojiet, nav iespējams pārbaudīt Jūsu SSH atslēgu: %s +unable_verify_ssh_key=Nav iespējams pārbaudīt jūsu SSH atslēgu, bet tiks pieņemts, ka tā ir derīga, lūdzu, pārliecinieties par to pats. +auth_failed=Autentifikācija neizdevās: %v + +still_own_repo=Jūsu esat vismaz viena repozitorija īpašnieks, tos sākumā ir nepieciešams izdzēst vai nomainīt to īpašnieku. +still_has_org=Jūsu esat vismaz vienas organizācijas biedrs, sākumā nepieciešams pamest vai izdzēst šo organizāciju. +org_still_own_repo=Šī organizācija ir vismaz viena repozitorija īpašnieks, tos sākumā ir nepieciešams izdzēst vai nomainīt to īpašnieku. + +still_own_user=Šo autentifikāciju joprojām izmanto vismaz viens lietotājs, nepieciešams šiem lietotājiem nomainīt autentifikācijas veidu vai tos izdzēst. + +target_branch_not_exist=Mērķa atzars neeksistē + +[user] +change_avatar=Mainīt savu profila attēlu vietnē gravatar.com +change_custom_avatar=Mainīt savu profila attēlu iestatījumos +join_on=Pievienojās +repositories=Repozitoriji +activity=Publiskā aktivitāte +followers=Sekotāji +starred=Atzīmēti ar zvaigznīti +following=Seko + +form.name_reserved=Lietotāja vārds '%s' jau ir aizņemts. +form.name_pattern_not_allowed=Lietotāja vārds '%s' nav atļauts. + +[settings] +profile=Profils +password=Parole +ssh_keys=SSH atslēgas +social=Sociālie konti +applications=Lietotnes +orgs=Organizācijas +delete=Dzēst kontu +uid=Lietotāja ID + +public_profile=Publiskais profils +profile_desc=Jūsu e-pasta adrese ir publiska un tiks izmantota, lai nosūtītju Jums paziņojumus, kas saistīti ar Jūsu kontu vai darbībām veiktām caur šo mājas lapu. +full_name=Pilns vārds +website=Mājas lapa +location=Atrašanās vieta +update_profile=Mainīt profilu +update_profile_success=Jūsu profila dati ir veiksmīgi saglabāti. +change_username=Lietotāja vārds mainīts +change_username_prompt=Šī izmaiņa ietekmēs saites, kas norāda uz Jūsu kontu. +continue=Turpināt +cancel=Atcelt + +enable_custom_avatar=Iespējot maināmu profila attēlu +enable_custom_avatar_helper=Iespējojiet šo, lai atslēgtu profilu attēlu ņemšanu no gravatar.com +choose_new_avatar=Izvēlēties jaunu profila attēlu +update_avatar=Saglabāt profila bildi +uploaded_avatar_not_a_image=Augšupielādētais fails nav attēls. +no_custom_avatar_available=Nav iespējams mainīt profila bildi. +update_avatar_success=Jūsu profila bilde tika veiksmīgi saglabāta. + +change_password=Mainīt paroli +old_password=Pašreizējā parole +new_password=Jauna parole +retype_new_password=Ievadīt paroli atkāroti +password_incorrect=Ievadīta nepareiza pašreizējā parole. +change_password_success=Parole tika veiksmīgi nomainīta. Tagad jūs varat pieraksītites, izmantojot jauno paroli. + +emails=E-pasta adreses +manage_emails=Pārvaldīt e-pasta adreses +email_desc=Primārā e-pasta adrese tiks izmantota sūtot notifikācijas un citām dabībām. +primary=Primārā +primary_email=Iestatīt kā primāro +delete_email=Dzēst +email_deletion=E-pasta dzēšana +email_deletion_desc=Dzēšot šo e-pasta adresi, tiks dzēsta arī visa ar to saistītā informācija no Jūsu konta. Vai vēlaties turpināt? +email_deletion_success=E-pasta adrese ir veiksmīgi izdzēsta! +add_new_email=Pievienot jaunu e-pasta adresi +add_email=Pievienot e-pastu +add_email_confirmation_sent=Jauns apstiprinājuma e-pasts tika nosūtīts uz '%s', pārbaudiet savu e-pastu tuvāko %d stundu laikā, lai pabeigtu apstiprināšanas procesu. +add_email_success=Jūsu jaunā e-pasta adrese tika veiksmīgi pievienota. + +manage_ssh_keys=Pārvaldīt SSH atslēgas +add_key=Pievienot atslēgu +ssh_desc=Šis ir saraksts ar Jūsu kontam piesaistītajām SSH atslēgām. Dzēsiet visas, kuras Jūs neatpazīstat. +ssh_helper=<strong>Vajadzīga palīdzība?</strong> Apskatieties pamācību kā <a href="%s">ģenerēt SSH atslēgas</a> vai kā novērst <a href="%s">biežāk sastopamās SSH problēmas</a>. +add_new_key=Pievienot SSH atslēgu +ssh_key_been_used=Šī publiskā atslēga jau ir izmantota. +ssh_key_name_used=Publiskā atslēga ar šādu nosaukumu jau eksistē. +key_name=Atslēgas nosaukums +key_content=Saturs +add_key_success=Jauna SSH atslēga '%s' tika veiksmīgi pievienota! +delete_key=Dzēst +ssh_key_deletion=SSH atslēgas dzēšana +ssh_key_deletion_desc=Dzēšot šo SSH atslēgu, tiks dzēsta visa ar to saistītā piekļuve Jūsu kontam. Vai vēlaties turpināt? +ssh_key_deletion_success=SSH atslēga tika veiksmīgi izdzēsta! +add_on=Pievienota +last_used=Pēdējo reizi izmantota +no_activity=Nav nesenas aktivitātes +key_state_desc=Šī atslēga tika izmantota pēdējo 7 dienu laikā +token_state_desc=Šis talons tika izmantots pēdējo 7 dienu laikā + +manage_social=Pārvaldīt piesaistītos sociālos kontus +social_desc=Šeit tiek attēloti visi sociālie konti, kas ir piesaistīti Jūsu kontam. Dzēsiet visus, kurus Jūs neatpazīstat. +unbind=Atsaistīt +unbind_success=Sociālais konts tika atsaistīts. + +manage_access_token=Pārvaldīt personīgos piekļuves talonus +generate_new_token=Ģenerēt jaunu talonu +tokens_desc=Taloni, kurus esat uzģenerējuši, kas var tikt izmantoti, lai piekļūtu Gogs API. +new_token_desc=Pašlaik visiem taloniem ir pilna piekļuve Jūsu kontam. +token_name=Talona nosaukums +generate_token=Ģenerēt talonu +generate_token_succees=Jauns piekļuves talons tika veiksmīgi uzģenerēts! Pārliecinieties, ka esat to nokopējis, jo to Jums vairāk nebūs iespēja izdarīt! +delete_token=Dzēst +access_token_deletion=Personīgā piekļuves talona dzēšana +access_token_deletion_desc=Dzēšot personīgo piekļuves talonu, tiks liegta piekļuve aplikācijām, kas to izmanto. Vai vēlaties turpināt? +delete_token_success=Personīgās piekļuves talons veiksmīgi izdzēsts! Neaizmirstiet nomainīt uz citu aplikācijās, kas to izmantoja. + +delete_account=Dzēst savu kontu +delete_prompt=Šī darbība pilnībā izdzēsīs Jūsu kontu, kā arī tā ir <strong>NEATGRIEZENISKA</strong>! +confirm_delete_account=Apstiprināt dzēšanu +delete_account_title=Konta dzēšana +delete_account_desc=Šis konts tiks neatgriezeniski dzēsts, vai vēlaties turpināt? + +[repo] +owner=Īpašnieks +repo_name=Repozitorija nosaukums +repo_name_helper=Labi repzotoriju nosaukumi ir īsi, tādi kurus viegli atcerēties un <strong>unikāli</strong>. +visibility=Redzamība +visiblity_helper=Šis repozitorijs ir <span class="ui red text">privāts</span> +visiblity_helper_forced=Lapas administrators ir noteicis, ka visiem repozitorijiem ir jābūt <span class="ui red text">privātiem</span> +visiblity_fork_helper=(Šīs vērtības maiņa ietekmēs arī visus atdalītos repozitorijus) +clone_helper=Nepieciešama palīdzība kā veikt klonēšana? Apmeklējiet <a target="_blank" href="%s">Palīdzība</a> lapu! +fork_repo=Atdalīt repozitoriju +fork_from=Atdalīt no +fork_visiblity_helper=Atdalītam repozitorijam nav iespējams nomainīt tā redzamību +repo_desc=Apraksts +repo_lang=Valoda +repo_lang_helper=Izvēlieties .gitignore failus +license=Licence +license_helper=Izvēlieties licences failu +readme=LasiMani +readme_helper=Izvēlieties faila LasiMani sagatavi +auto_init=Inicializēt šo repozitoriju ar izvēlētajiem failiem un sagatavi +create_repo=Izveidot repozitoriju +default_branch=Noklusējuma atzars +mirror_interval=Spoguļošanas intervāls (stundās) +watchers=Watchers +stargazers=Stargazers +forks=Forks + +form.name_reserved=Repozitorija nosaukums '%s' ir rezervēts. +form.name_pattern_not_allowed=Repozitorija nosaukums '%s' nav atļauts. + +need_auth=Nepieciešama autorizācija +migrate_type=Migrācijas veids +migrate_type_helper=Šis repozitorijs būs <span class="text blue">spogulis</span> +migrate_repo=Migrēt repozitoriju +migrate.clone_address=Klonēšanas adrese +migrate.clone_address_desc=Tas var būt HTTP/HTTPS/GIT URL vai ceļš uz lokālā servera. +migrate.permission_denied=Jums nav tiesību importēt lokālu repozitoriju. +migrate.invalid_local_path=Nekorents lokālais ceļš, tas neeksistē vai nav direktorijs. +migrate.failed=Migration failed: %v + +forked_from=atdalīts no +fork_from_self=Nav iespējams atdalīt repozitoriju, kuram esat īpašnieks! +copy_link=Kopēt +copy_link_success=Nokopēts! +copy_link_error=Nospiediet ⌘-C vai Ctrl-C, lai nokopētu +copied=Kopēšana notikusi veiksmīgi +unwatch=Nevērot +watch=Vērot +unstar=Noņemt zvaigznīti +star=Pievienot zvaigznīti +fork=Atdalīts + +no_desc=Nav apraksta +quick_guide=Īsa pamācība +clone_this_repo=Klonēt šo repozitoriju +create_new_repo_command=Izveidot jaunu repozitoriju komandrindā +push_exist_repo=Nosūtīt izmaiņas no komandrindas eksistējošam repozitorijam +repo_is_empty=Šis repozitorijs ir tukšs, apskatiet atkal vēlāk! + +branch=Atzars +tree=Koks +filter_branch_and_tag=Filter branch or tag +branches=Atzari +tags=Tagi +issues=Problēmas +pulls=Izmaiņu pieprasījumi +labels=Etiķetes +milestones=Atskaites punkti +commits=Revīzijas +releases=Laidieni +file_raw=Neapstrādāts +file_history=Vēsture +file_view_raw=Rādīt neapstrādātu +file_permalink=Patstāvīgā saite + +commits.commits=Revīzijas +commits.search=Meklēt revīzijas +commits.find=Meklēt +commits.author=Autors +commits.message=Ziņojums +commits.date=Datums +commits.older=Vecāki +commits.newer=Jaunāki + +issues.new=Jauna problēma +issues.new.labels=Etiķetes +issues.new.no_label=Nav etiķešu +issues.new.clear_labels=Noņemt etiķetes +issues.new.milestone=Atskaites punkts +issues.new.no_milestone=Nav atskaites punktu +issues.new.clear_milestone=Notīrīt atskaites punktus +issues.new.open_milestone=Atvērtie atskaites punktus +issues.new.closed_milestone=Aizvērtie atskaites punkti +issues.new.assignee=Atbildīgais +issues.new.clear_assignee=Noņemt atbildīgo +issues.new.no_assignee=Nav atbildīgā +issues.create=Pieteikt problēmu +issues.new_label=Jauna etiķete +issues.new_label_placeholder=Etiķetes nosaukums... +issues.create_label=Izveidot etiķeti +issues.open_tab=%d atvērti +issues.close_tab=%d aizvērti +issues.filter_label=Etiķete +issues.filter_label_no_select=Nav atzīmēta etiķete +issues.filter_milestone=Atskaites punkts +issues.filter_milestone_no_select=Nav atzīmēts atskaites punkts +issues.filter_assignee=Atbildīgais +issues.filter_assginee_no_select=Nav atzīmēts atbildīgais +issues.filter_type=Veids +issues.filter_type.all_issues=Visas problēmas +issues.filter_type.assigned_to_you=Piešķirtās Jums +issues.filter_type.created_by_you=Jūsu izveidotās +issues.filter_type.mentioning_you=Esat pieminēts +issues.filter_sort=Kārtot +issues.filter_sort.latest=Jaunākie +issues.filter_sort.oldest=Vecakie +issues.filter_sort.recentupdate=Nesen atjaunotās +issues.filter_sort.leastupdate=Vissenāk atjaunotās +issues.filter_sort.mostcomment=Visvairāk komentētās +issues.filter_sort.leastcomment=Vismazāk komentētās +issues.opened_by=<a href="%[2]s">%[3]s</a> atvēra %[1]s +issues.opened_by_fake=%[2]s atvēra %[1]s +issues.previous=Iepriekšējā +issues.next=Nākamā +issues.open_title=Atvērta +issues.closed_title=Slēgta +issues.num_comments=%d komentāri +issues.commented_at=`komentēja <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.no_content=Vēl nav satura. +issues.close_issue=Aizvērt +issues.close_comment_issue=Komentēt un aizvērt +issues.reopen_issue=Atvērt atkārtoti +issues.reopen_comment_issue=Komentēt un atvērt atkārtoti +issues.create_comment=Komentēt +issues.closed_at=`aizvērts <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.reopened_at=`atvērts atkārtoti <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.commit_ref_at=`pieminēja šo problēmu revīzijā <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.poster=Autors +issues.admin=Administrators +issues.owner=Īpašnieks +issues.sign_up_for_free=Pievienojieties +issues.sign_in_require_desc=, lai piedalītos diskusijā. Jau ir konts? <a href="%s">Pierakstieties, lai komentētu</a> +issues.edit=Labot +issues.cancel=Atcelt +issues.save=Saglabāt +issues.label_title=Etiķetes nosaukums +issues.label_color=Etiķetes krāsa +issues.label_count=%d etiķetes +issues.label_open_issues=%d atvērtas problēmas +issues.label_edit=Labot +issues.label_delete=Dzēst +issues.label_modify=Etiķetes labošana +issues.label_deletion=Etiķetes dzēšana +issues.label_deletion_desc=Dzēšot šo etiķeti, tā tiks noņemta no visām saistītajām problēmām. Vai vēlaties turpināt? +issues.label_deletion_success=Etiķete tika veiksmīgi izdzēsta! + +pulls.new=New Pull Request +pulls.compare_changes=Salīdzināt izmaiņas +pulls.compare_changes_desc=Salīdzināt divus atzarus un izveidot izmaiņu pieprasījumu. +pulls.compare_base=pamata +pulls.compare_compare=salīdzināmais +pulls.filter_branch=Filtrēt atzarus +pulls.no_results=Nekas netika atrasts. +pulls.nothing_to_compare=Nav ko salīdzināt, jo bāzes un salīdzināmie atzari ir vienādi. +pulls.has_pull_request=`Jau eksistē izmaiņu pieprasījums starp šiem diviem atzariem: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>` +pulls.create=Izveidot izmaiņu pieprasījumu +pulls.title_desc=vēlas sapludināt %[1]d revīzijas no <code>%[2]s</code> uz <code>%[3]s</code> +pulls.merged_title_desc=sapludināja %[1]d revīzijas no <code>%[2]s</code> uz <code>%[3]s</code> %[4]s +pulls.tab_conversation=Saruna +pulls.tab_commits=Revīzijas +pulls.tab_files=Izmainītie faili +pulls.reopen_to_merge=Lūdzu, atkārtoti atveriet šo izmaiņu pieprasījumu, lai veiktu sapludināšanu. +pulls.merged=Sapludināts +pulls.has_merged=Šo izmaiņu pieprasījums tika veiksmīgi sapludināts! +pulls.data_broken=Nepieejami izmaiņu pieprasījuma dati, jo dzēsta informācija no atdalītā repozitorija. +pulls.is_checking=Notiek konfliktu pārbaude, mirkli uzgaidiet un atjaunojiet lapu. +pulls.can_auto_merge_desc=Ir iespējams veikt automātisko sapludināšanas darbību šim izmaiņu pieprasījumam. +pulls.cannot_auto_merge_desc=Nav iespējams veikt automātisko sapludināšanas darbību, jo starp revīzijām ir konflikti. +pulls.cannot_auto_merge_helper=Lūdzu, izmantojiet komandrindas rīku, lai to atrisinātu. +pulls.merge_pull_request=Izmaiņu pieprasījuma sapludināšana +pulls.open_unmerged_pull_exists=`Jūs nevarat veikt atkārtotas atvēršanas darbību, jo jau eksistē izmaiņu pieprasījums (#%d) no šī repozitorija ar tādu pašu sapludināšanas informāciju un gaida sapludināšanu.` + +milestones.new=Jauns atskaites punkts +milestones.open_tab=%d atvērti +milestones.close_tab=%d aizvērti +milestones.closed=Aizvērts %s +milestones.no_due_date=Bez termiņa +milestones.open=Atvērt +milestones.close=Aizvērt +milestones.new_subheader=Izveidojiet atskaites punktus, lai organizētu problēmas. +milestones.create=Izveidot atskaites punktu +milestones.title=Virsraksts +milestones.desc=Apraksts +milestones.due_date=Termiņš (neobligāts) +milestones.clear=Notīrīt +milestones.invalid_due_date_format=Termiņa datuma formāts ir nekorekts, jābūt formātā 'gggg-mm-dd'. +milestones.create_success=Atskaites punkts '%s' tika veiksmīgi izveidots! +milestones.edit=Labot atskaites punktu +milestones.edit_subheader=Izmantojiet pēc iespējas labāku aprakstu atskaites punktiem, lai citiem tas būtu saprotamāks. +milestones.cancel=Atcelt +milestones.modify=Mainīt atskaites punktu +milestones.edit_success=Izmaiņas atskaites punktā '%s' tika veiksmīgi saglabātas! +milestones.deletion=Atskaites punkta dzēšana +milestones.deletion_desc=Dzēšot šo atskaites punktu tiks noņemta arī saistītā informācija no problēmu ziņojumiem. Vai vēlaties turpināt? +milestones.deletion_success=Atskaites punkts tika veiksmīgi izdzēsts! + +settings=Iestatījumi +settings.options=Opcijas +settings.collaboration=Sadarbība +settings.hooks=Tīmekļa āķi +settings.githooks=Git āķi +settings.basic_settings=Pamatiestatījumi +settings.danger_zone=Bīstamā zona +settings.site=Oficiālā mājas lapa +settings.update_settings=Mainīt iestatījumus +settings.change_reponame_prompt=Šī izmaiņa ietekmēs saites, kas ir saistītas ar šo repozitoriju. +settings.transfer=Mainīt īpašnieku +settings.transfer_desc=Mainīt šī repozitorija īpašnieku uz citu lietotāju vai organizāciju, kurai Jums ir administratora tiesībs. +settings.new_owner_has_same_repo=Jaunajam īpašniekam jau ir repozitorijs ar šādu nosaukumu. +settings.delete=Dzēst šo repozitoriju +settings.delete_desc=Dzēšot repozitoriju, tā datus vairs nebūs iespējams atgūt. Pirms dzēšanas pārliecinieites vai patiešām vēlaties to darīt. +settings.transfer_notices_1=- Jūs pazaudēsiet piekļuvi, ja jaunais īpašnieks ir lietotājs. +settings.transfer_notices_2=- Jūs saglabāsiet piekļuvi, ja jaunais īpašnieks ir organizācija un Jūs esat viens no tās īpašniekiem. +settings.transfer_form_title=Lūdzu, ievadiet sekojošu informāciju, lai apstiprinātu šo darbību: +settings.delete_notices_1=- Šī darbība ir <strong>NEATGRIEZENISKA</strong>. +settings.delete_notices_2=- Šī darbība neatgriezeniski izdzēsīs visus šī repozitorija datus, tai skaitā Git datus, problēmu ziņojumus, komentārus un definētās piekļuves tiesības. +settings.delete_notices_fork_1=- Ja repozitorijs ir publisks, visi atdalītie repozitoriji kļūs neatkarīgi. +settings.delete_notices_fork_2=- Ja repozitorijs ir privāts, tiks dzēsti arī visi atdalītie repozitoriji. +settings.delete_notices_fork_3=- Ja vēlaties saglabāt atdalīts repozitorijus pēc dzēšanas, sākumā nomainiet repozitorija redzamību uz publisku. +settings.update_settings_success=Repozitorija opcijas ir veiksmīgi saglabātas. +settings.transfer_owner=Jaunais īpašnieks +settings.make_transfer=Mainīt +settings.transfer_succeed=Repozitorija īpašnieks ir veiksmīgi nomainīts. +settings.confirm_delete=Apstiprināt dzēšanu +settings.add_collaborator=Pievienot jaunu līdzstrādnieku +settings.add_collaborator_success=Jauns līdzstrādnieks ir pievienots. +settings.remove_collaborator_success=Līdzstrādnieks tika noņemts. +settings.search_user_placeholder=Search user... +settings.user_is_org_member=Lietotājs ir organizācijas biedrs, kas nevar tikt pievienots kā līdzstrādnieks. +settings.add_webhook=Pievienot tīmekļa āķi +settings.hooks_desc=Tīmekļa āķi ļauj paziņot ārējiem servisiem par noteiktiem notikomiem, kas notiek Git servisā. Kad iestāsies kāds notikums, katram ārējā servisa URL tiks nosūtīts POST pieprasījums. Lai uzzinātu sīkāk skatieties <a target="_blank" href="%s">Tīmekļa āķu rokasgrāmatā</a>. +settings.webhook_deletion=Dzēst tīmekļa āķi +settings.webhook_deletion_desc=Dzēšot tīmekļa āķi tiks dzēsta visa ar to saistītā informācija un izpildes vēsture. Vai vēlaties turpināt? +settings.webhook_deletion_success=Tīmekļa āķis tika veiksmīgi izdzēsts! +settings.webhook.request=Pieprasījums +settings.webhook.response=Atbilde +settings.webhook.headers=Galvenes +settings.webhook.payload=Derīgā krava +settings.webhook.body=Saturs +settings.githooks_desc=Git āķus apstrādā pats Git. Jūs varat labot atbalsīto āku failus sarakstā zemāk, lai veiktu pielāgotas darbības. +settings.githook_edit_desc=Ja āķis nav aktīvs, tiks attēlots piemērs kā to izmantot. Atstājot āķa saturu tukšu, tas tiks atspējots. +settings.githook_name=Āķa nosaukums +settings.githook_content=Āķa saturs +settings.update_githook=Labot āķi +settings.add_webhook_desc=Uz norādīto URL tiks nosūtīts <code>POST</code> pieprasījums ar notikuma datiem. Jūs varat norādīt arī datu formātu, kādā datus vēlaties saņemt (JSON, <code>x-www-form-urlencoded</code> <em>utt.</em>). Detalizētāku informāciju ir iespējams uzzināt <a target="_blank" href="%s">Tīmekļa āķu rokasgrāmatā</a>. +settings.payload_url=Vērtuma URL +settings.content_type=Satura tips +settings.secret=Noslēpums +settings.slack_username=Lietotājvārds +settings.slack_icon_url=Ikonas URL +settings.slack_color=Krāsa +settings.event_desc=Kādu notikumu rezultātā tiktu izsaukts tīmekļā āķis? +settings.event_push_only=Tikai izmaiņu nosūtīšanas notikumiem. +settings.event_send_everything=Vēlos saņemt <strong>visu</strong>. +settings.event_choose=Atzīmēt, ko vēlos saņemt. +settings.event_create=Izveidot +settings.event_create_desc=Atzara vai taga izveidošana +settings.event_push=Izmaiņu nosūtīšana +settings.event_push_desc=Git izmaiņu nosūtīšana uz repozitoriju +settings.active=Aktīvs +settings.active_helper=Tiks nosūtīti notikuma dati, kad nostrādās šis āķis. +settings.add_hook_success=Jauns tīmekļa āķis tika veiksmīgi pievienots. +settings.update_webhook=Mainīt tīmekļa āķi +settings.update_hook_success=Tīmekļa āķist tika veiksmīgi saglabāts. +settings.delete_webhook=Dzēst tīmekļa āķi +settings.recent_deliveries=Pēdējās piegādes +settings.hook_type=Āķa veids +settings.add_slack_hook_desc=PIevienot <a href="%s">Slack</a> integrāciju Jūsu repozitorijā. +settings.slack_token=Talons +settings.slack_domain=Domēns +settings.slack_channel=Kanāls +settings.deploy_keys=Izvietot atslēgas +settings.add_deploy_key=Pievienot izvietošanas atslēgu +settings.no_deploy_keys=Nav pievienota neviena izvietošanas atslēga. +settings.title=Virsraksts +settings.deploy_key_content=Saturs +settings.key_been_used=Šāda izvietošanas atslēga jau eksistē. +settings.key_name_used=Izvietošanas atslēga ar šādu nosaukumu jau eksistē. +settings.add_key_success=Izvietošanas atslēga '%s' tik veiksmīgi pievienota! +settings.deploy_key_deletion=Dzēst izvietošanas atslēgu +settings.deploy_key_deletion_desc=Dzēšot šo izvietošanas atslēgu tiks noņemta arī ar to saistītā piekļuve šim repozitorijam. Vai vēlaties turpināt? +settings.deploy_key_deletion_success=Izvietošanas atslēga tika veiksmīgi izdzēsta! + +diff.browse_source=Pārlūkot izejas kodu +diff.parent=vecāks +diff.commit=revīzija +diff.data_not_available=Salīdzināšanas dati nav pieejami. +diff.show_diff_stats=Rādīt salīdzināšanas statistiku +diff.stats_desc=<strong>%d mainītis faili</strong> ar <strong>%d papildinājumiem</strong> un <strong>%d dzēšanām</strong> +diff.bin=BIN +diff.view_file=Parādīt failu + +release.releases=Laidieni +release.new_release=Jauns laidiens +release.draft=Melnraksts +release.prerelease=Pirmsizlaides versija +release.stable=Stabila +release.edit=labot +release.ahead=<strong>%d</strong> revīzijas atzarā %s kopš šī laidiena +release.source_code=Izejas kods +release.new_subheader=Publish releases to iterate product. +release.edit_subheader=Detailed change log can help users understand what has been improved. +release.tag_name=Taga nosaukums +release.target=Mērķis +release.tag_helper=Publicējot, izvēlieties esošu vai izveidojiet jaunu tagu. +release.title=Title +release.content=Content +release.write=Rakstīt +release.preview=Priekšskatītījums +release.loading=Notiek ielāde... +release.prerelease_desc=Šī ir pirmslaidiena versija +release.prerelease_helper=Tiks norādīts, ka šis laidiens nav gatavs lietošanai produkcijas režīmā. +release.cancel=Cancel +release.publish=Publicēt laidienu +release.save_draft=Saglabāt melnrakstu +release.edit_release=Labot laidienu +release.delete_release=Delete This Release +release.deletion=Release Deletion +release.deletion_desc=Delete this release will delete corresponding Git tag. Do you want to continue? +release.deletion_success=Release has been deleted successfully! +release.tag_name_already_exist=Laidiens ar šādu taga nosaukumu jau eksistē. +release.downloads=Downloads + +[org] +org_name_holder=Organizācijas nosaukums +org_full_name_holder=Organizācijas pilnais nosaukums +org_name_helper=Labi organizāciju nosaukumi ir īsi un tādi, kurus viegli atcerēties. +create_org=Izveidot organizāciju +repo_updated=Atjaunināts +people=Personas +invite_someone=Uzaicināt kādu +teams=Komandas +lower_members=dalībnieki +lower_repositories=repozitoriji +create_new_team=Izveidot jaunu komandu +org_desc=Apraksts +team_name=Komandas nosaukums +team_desc=Apraksts +team_name_helper=Šo nosaukumu varēs izmantot, lai pieminētu komandu sarunās. +team_desc_helper=Komandas apraksts +team_permission_desc=Kādām tiesībām šai komandai būtu jābūt? + +form.name_reserved=Organizācijas nosaukums '%s' ir rezervēts. +form.name_pattern_not_allowed=Organizācijas nosaukums '%s' nav atļauts. + +settings=Iestatījumi +settings.options=Opcijas +settings.full_name=Pilns vārds, uzvārds +settings.website=Mājas lapa +settings.location=Atrašanās vieta +settings.update_settings=Mainīt iestatījumus +settings.update_setting_success=Organizācijas iestatījumi tika veiksmīgi saglabāti. +settings.change_orgname_prompt=Šī izmaiņa ietekmēs saites, kas ir saistītas ar šo organizāciju. +settings.update_avatar_success=Organizācijas avatara iestatījumi tika veiksmīgi saglabāti. +settings.delete=Dzēst organizāciju +settings.delete_account=Dzēst šo organizāciju +settings.delete_prompt=Šī darbība pilnībā dzēsīs šo organizāciju, kā arī tā ir <strong>NEATGRIEZENISKA</strong>! +settings.confirm_delete_account=Apstiprināt dzēšanu +settings.delete_org_title=Organizācijas dzēšana +settings.delete_org_desc=Šī organizācija tiks pilnībā izdzēsta, vai vēlaties turpināt? +settings.hooks_desc=Pievienot tīmekļa āķus, kas nostrādās <strong>visiem repozitorijiem</strong> šajā organizācijā. + +members.public=Publisks +members.public_helper=padarīt privātu +members.private=Privāts +members.private_helper=padarīt publisku +members.owner=Īpašnieks +members.member=Biedri +members.conceal=Noslēpt +members.remove=Noņemt +members.leave=Atstāt +members.invite_desc=Sāciet rakstīt lietotājvārdu, lai uzaicinātu jaunu biedru organizācijā %s: +members.invite_now=Uzaicināt tagad + +teams.join=Pievienoties +teams.leave=Atstāt +teams.read_access=Lasīšanas piekļuve +teams.read_access_helper=Komanda varēs skatīties un klonēt šīs organizācijas repozitorijus. +teams.write_access=Rakstīšanas piekļuve +teams.write_access_helper=Komanda varēs skatīties un klonēt, kā arī nosūtīt izmaiņas šīs organizācijas repozitorijiem. +teams.admin_access=Administratora piekļuve +teams.admin_access_helper=Šī komanda varēs veikt push/pull komandas tās repozitorijiem, kā arī tiem pievienot citus līdzstrādniekus. +teams.no_desc=Komandai nav apraksta +teams.settings=Iestatījumi +teams.owners_permission_desc=Īpašniekiem ir pilna piekļuve <strong>visiem repozitorijiem</strong> un ir organizācijas <strong>administratora tiesības</strong>. +teams.members=Komandas biedri +teams.update_settings=Saglabāt iestatījumus +teams.delete_team=Dzēst komandu +teams.add_team_member=Pievienot komandas biedru +teams.delete_team_title=Komandas dzēšana +teams.delete_team_desc=Komanda tiks dzēsta, vai vēlaties turpināt? Komandas biedri var zaudēt piekļuvi dažiem vai pat visiem repozitorijiem. +teams.delete_team_success=Komanda tika veiksmīgi izdzēsta. +teams.read_permission_desc=Šai komandai ir <strong>lasīšanas</strong> tiesības: dalībnieki var skatīties un klonēt komandas repozitorijus. +teams.write_permission_desc=Šai komandai ir <strong>rakstīšanas</strong> tiesības: dalībnieki var lasīt un nosūtīt izmaiņas repozitorijiem. +teams.admin_permission_desc=Šai komandai ir <strong>administratora</strong> tiesības: dalībnieki var lasīt, rakstīt un pievienot citus dalībniekus komandas repozitorijiem. +teams.repositories=Komandas repozitoriji +teams.add_team_repository=Pievienot komandas repozitoriju +teams.remove_repo=Noņemt +teams.add_nonexistent_repo=Repozitorijs, kuram Jūs mēģinat pievienot neeksistē, sākumā izveidojiet to. + +[admin] +dashboard=Infopanelis +users=Lietotāji +organizations=Organizācijas +repositories=Repozitoriji +authentication=Autentifikācijas +config=Konfigurācija +notices=Sistēmas paziņojumi +monitor=Uzraudzība +first_page=Pirmā +last_page=Pēdējā +total=Kopā: %d + +dashboard.statistic=Statistika +dashboard.operations=Darbības +dashboard.system_status=Sistēmas uzraudzības statuss +dashboard.statistic_info=Gogs datu bāze satur <b>%d</b> lietotājus, <b>%d</b> organizācijas, <b>%d</b> publiskās atslēgas, <b>%d</b> repozitorijus, <b>%d</b> vērošanas, <b>%d</b> atzīmētas zvaigznītes, <b>%d</b> darbības, <b>%d</b> piekļuves, <b>%d</b> problēmas, <b>%d</b> komentārus, <b>%d</b> sociālos kontus, <b>%d</b> sekošanas, <b>%d</b> spoguļošanas, <b>%d</b> izlaides, <b>%d</b> login sources, <b>%d</b> tīmekļa āķus, <b>%d</b> starpposmus, <b>%d</b> etiķetes, <b>%d</b> āķu uzdevumus, <b>%d</b> komandas, <b>%d</b> labotus uzdevumus, <b>%d</b> pielikumus. +dashboard.operation_name=Darbības nosaukums +dashboard.operation_switch=Pārslēgt +dashboard.operation_run=Palaist +dashboard.clean_unbind_oauth=Notīrīt nesaistītās OAuth biļetes +dashboard.clean_unbind_oauth_success=Visas nesaistītās OAuth biļetes tika veiksmīgi izdzēstas. +dashboard.delete_inactivate_accounts=Dzēst visus neaktīvos kontus +dashboard.delete_inactivate_accounts_success=Visi neaktīvie kotni tika veiksmīgi izdzēsti. +dashboard.delete_repo_archives=Dzēst visu repozitoriju arhīvus +dashboard.delete_repo_archives_success=Visu repozitoriju arhīvi tika veiksmīgi izdzēsti. +dashboard.delete_missing_repos=Delete all repository records that lost Git files +dashboard.delete_missing_repos_success=All repository records that lost Git files have been deleted successfully. +dashboard.git_gc_repos=Veikt repozitoriju datu sakārtošānu (git gc) +dashboard.git_gc_repos_success=Datu sakārtošana visiem repozitorijiem veiksmīgi pabeigta. +dashboard.resync_all_sshkeys=Pārrakstīt '.ssh/authorized_keys' failu (brīdinājums: ne-Git atslēgas tiks pazaudētas) +dashboard.resync_all_sshkeys_success=Visas publiskās atslēgas tika veiksmīgi pārrakstītas. +dashboard.resync_all_update_hooks=Pārrakstīt visu repozitoriju izmaiņu āķus (nepieciešams, ja tiek mainīta konfigurācijas faila atrašanās vieta) +dashboard.resync_all_update_hooks_success=Visu repozitoriju izmaiņu āķi tika veiksmīgi pārrakstīti. + +dashboard.server_uptime=Servera darbības laiks +dashboard.current_goroutine=Izmantotās Gorutīnas +dashboard.current_memory_usage=Pašreiz izmantotā atmiņa +dashboard.total_memory_allocated=Kopējā piešķirtā atmiņa +dashboard.memory_obtained=Iegūtā atmiņa +dashboard.pointer_lookup_times=Rādītāju meklēšanas reizes +dashboard.memory_allocate_times=Atmiņas piešķiršanas reizes +dashboard.memory_free_times=Atmiņas atbrīvošanas reizes +dashboard.current_heap_usage=Pašreizējā kaudzes izmantošana +dashboard.heap_memory_obtained=Iegūtā kaudzes atmiņa +dashboard.heap_memory_idle=Neizmantotā kaudzes atmiņa +dashboard.heap_memory_in_use=Izmantotā kaudzes atmiņa +dashboard.heap_memory_released=Atbrīvotā kaudzes atmiņa +dashboard.heap_objects=Kaudzes atmiņas objekti +dashboard.bootstrap_stack_usage=Izmantotais sāknēšanas steka lielums +dashboard.stack_memory_obtained=Iegūtā steka atmiņa +dashboard.mspan_structures_usage=Izmantotās MSpan struktūras +dashboard.mspan_structures_obtained=Iegūtās MSpan struktūras +dashboard.mcache_structures_usage=Izmantotās MCache struktūras +dashboard.mcache_structures_obtained=Iegūtās MCache struktūras +dashboard.profiling_bucket_hash_table_obtained=Iegūtā profilēšanas kausa jaucējtabula +dashboard.gc_metadata_obtained=Iegūtie GC metadati +dashboard.other_system_allocation_obtained=Iegūtās citas sistēmas sadales +dashboard.next_gc_recycle=Nākošā GC atkritne +dashboard.last_gc_time=Laiks kopš pēdējās GC +dashboard.total_gc_time=Kopējais GC izpildes laiks +dashboard.total_gc_pause=Kopējais GC izpildes laiks +dashboard.last_gc_pause=Pedējās GC izpildes laiks +dashboard.gc_times=GC reizes + +users.user_manage_panel=Lietotāju pārvaldības panelis +users.new_account=Izveidot jaunu kontu +users.name=Vārds +users.activated=Aktivizēts +users.admin=Administrators +users.repos=Repozitoriji +users.created=Izveidots +users.send_register_notify=Nosūtīt lietotājam reģistrācijas paziņojumu +users.new_success=Jauns konts '%s' tika veiksmīgi izveidots. +users.edit=Labot +users.auth_source=Autentificēšanas avots +users.local=Iebūvētā +users.auth_login_name=Autentifikācijas pieteikšanās vārds +users.password_helper=Atstājiet tukšu, ja nevēlaties mainīt. +users.update_profile_success=Konta profils tika veiksmīgi saglabāts. +users.edit_account=Labot kontu +users.is_activated=Konts ir aktivizēts +users.is_admin=Šim kontam ir administratora piekļuves tiesības +users.allow_git_hook=Šim kontam ir tiesības pievienot/labot Git āķus +users.allow_import_local=Šim kontam ir tiesības importēt lokālus repozitorijus +users.update_profile=Mainīt konta profilu +users.delete_account=Dzēst šo kontu +users.still_own_repo=Šis konts ir vismaz viena repozitorija īpašnieks, tos sākumā ir nepieciešams izdzēst vai nomainīt to īpašnieku. +users.still_has_org=Šis konts ir vismaz vienas organizācijas biedrs, sākumā nepieciešams pamest vai izdzēst šo organizāciju. +users.deletion_success=Konts tika veiksmīgi izdzēsts! + +orgs.org_manage_panel=Organizāciju pārvaldības panelis +orgs.name=Nosaukums +orgs.teams=Komandas +orgs.members=Dalībnieki + +repos.repo_manage_panel=Repozitoriju pārvaldības panelis +repos.owner=Īpašnieks +repos.name=Vārds +repos.private=Privāts +repos.watches=Vērošana +repos.stars=Atzīmētās zvaigznītes +repos.issues=Problēmas + +auths.auth_manage_panel=Autentifikācijas pārvaldības panelis +auths.new=Pievienot jaunu avotu +auths.name=Nosaukums +auths.type=Veids +auths.enabled=Iespējota +auths.updated=Atjaunināta +auths.auth_type=Autentifikācijas tips +auths.auth_name=Autentifikācijas nosaukums +auths.domain=Domēns +auths.host=Resursdators +auths.port=Ports +auths.bind_dn=Saistīšanas DN +auths.bind_password=Saistīšanas parole +auths.bind_password_helper=Brīdinājums: Šī parole tiks saglabāta nešifrētā veidā. Neizmantojiet kontu ar augstām privilēģijām. +auths.user_base=Lietotāja pamatnosacījumi +auths.user_dn=Lietotāja DN +auths.attribute_name=Vārda atribūts +auths.attribute_surname=Uzvārda atribūts +auths.attribute_mail=E-pasta atribūts +auths.filter=Lietotāju filts +auths.admin_filter=Administratoru filtrs +auths.ms_ad_sa=MS Ad SA +auths.smtp_auth=SMTP autentifikācijas tips +auths.smtphost=SMTP resursdators +auths.smtpport=SMTP ports +auths.allowed_domains=Atļautie domēni +auths.allowed_domains_helper=Atstājiet tukšu, ja nevēlaties ierobežot domēnu vārdus. Domēna vārdus nepieciešams atdalīt ar komatu ','. +auths.enable_tls=Iespējot TLS šifrēšanu +auths.skip_tls_verify=Izlaist TLS verifikāciju +auths.pam_service_name=PAM servisa nosaukums +auths.enable_auto_register=Iespējot automātisko reģistrāciju +auths.tips=Padomi +auths.edit=Labot autentifikācijas iestatījumus +auths.activated=Autentifikācija ir aktivizēta +auths.new_success=Jauna autentifikācija '%s' tika veiksmīgi pievienota. +auths.update_success=Autentifikācijas iestatījumi tika veiksmīgi saglabāti. +auths.update=Mainīt autentifikācijas iestatījumus +auths.delete=Dzēst šo autentifikāciju +auths.delete_auth_title=Autentifikācijas dzēšana +auths.delete_auth_desc=Šī autentifikācija tiks dzēsta, vai vēlaties turpināt? +auths.deletion_success=Autentifikācija tika veiksmīgi izdzēsta! + +config.server_config=Servera konfigurācija +config.app_name=Lietotnes nosaukums +config.app_ver=Lietotnes versija +config.app_url=Lietotnes URL +config.domain=Domēns +config.offline_mode=Bezsaistes režīms +config.disable_router_log=Atspējot maršrutētāja žurnalizēšanu +config.run_user=Izpildes lietotājs +config.run_mode=Izpildes režīms +config.repo_root_path=Repozitoriju glabāšanas vieta +config.static_file_root_path=Statisko failu atrašanās vieta +config.log_file_root_path=Žurnalizēšanas failu glabāšanas vieta +config.script_type=Skripta veids +config.reverse_auth_user=Reversā lietotāja autentifikācija +config.db_config=Datu bāzes konfigurācija +config.db_type=Veids +config.db_host=Resursdators +config.db_name=Nosaukums +config.db_user=Lietotājs +config.db_ssl_mode=SSL režīms +config.db_ssl_mode_helper=(tikai PostgreSQL datu bāzei) +config.db_path=Ceļš +config.db_path_helper=(priekš "sqlite3" and "tidb") +config.service_config=Pakalpojuma konfigurācija +config.register_email_confirm=Pieprasīt e-pasta apstiprināšanu +config.disable_register=Atspējot jaunu lietotāju reģistrāciju +config.show_registration_button=Rādīt reģistrēšanās pogu +config.require_sign_in_view=Nepieciešama autorizācija +config.enable_cache_avatar=Glabāt profila attēlus kešatmiņā +config.mail_notify=Pasta paziņojumi +config.disable_key_size_check=Atspējot atslēgas minimālā garuma pārbaudi +config.enable_captcha=Iespējot drošības kodu +config.active_code_lives=Aktīvā koda ilgums +config.reset_password_code_lives=Paroles atiestatīšanas koda ilgums +config.webhook_config=Tīkla āķu konfigurācija +config.queue_length=Rindas garums +config.deliver_timeout=Piegādes noildze +config.skip_tls_verify=Izlaist TLS pārbaudi +config.mailer_config=Sūtītāja konfigurācija +config.mailer_enabled=Iespējots +config.mailer_disable_helo=Atspējot HELO +config.mailer_name=Nosaukums +config.mailer_host=Resursdators +config.mailer_user=Lietotājs +config.oauth_config=OAuth konfigurācija +config.oauth_enabled=Iespējota +config.cache_config=Kešatmiņas konfigurācija +config.cache_adapter=Kešatmiņas adapteris +config.cache_interval=Kešatmiņas intervāls +config.cache_conn=Kešatmiņas pieslēguma parametri +config.session_config=Sesijas konfigurācja +config.session_provider=Sesijas nodrošinātājs +config.provider_config=Pakalpojumu sniedzēja konfigurācija +config.cookie_name=Sīkdatnes nosaukums +config.enable_set_cookie=Ļaut izmantot sīkdatnes +config.gc_interval_time=GC laika intervāls +config.session_life_time=Sesijas ilgums +config.https_only=Tikai HTTPS +config.cookie_life_time=Sīkdatņu glabāšanas ilgums +config.picture_config=Attēlu konfigurācija +config.picture_service=Lokāli attēli +config.disable_gravatar=Atspējot Gravatar +config.log_config=Žurnalizēšanas konfigurācija +config.log_mode=Žurnalizēšanas veids + +monitor.cron=Cron uzdevumi +monitor.name=Nosaukums +monitor.schedule=Grafiks +monitor.next=Nākošās izpildes laiks +monitor.previous=Pēdējās izpildes laiks +monitor.execute_times=Izpilžu skaits +monitor.process=Darbojošies procesi +monitor.desc=Apraksts +monitor.start=Sākuma laiks +monitor.execute_time=Izpildes laiks + +notices.system_notice_list=Sistēmas paziņojumi +notices.type=Veids +notices.type_1=Repozitorijs +notices.desc=Apraksts +notices.op=Op. +notices.delete_success=Sistēmas paziņojums tika veiksmīgi izdzēsts. + +[action] +create_repo=izveidoja repozitoriju <a href="%s">%s</a> +rename_repo=pārsauca repozitoriju no <code>%[1]s</code> uz <a href="%[2]s">%[3]s</a> +commit_repo=veica izmaiņu nosūtīšanu atzaram <a href="%[1]s/src/%[2]s">%[3]s</a> repozitorijā <a href="%[1]s">%[4]s</a> +create_issue=`reģistrēja problēmu <a href="%s/issues/%s">%s#%[2]s</a>` +create_pull_request=`izveidoja izmaiņu pieprasījumu <a href="%s/pulls/%s">%s#%[2]s</a>` +comment_issue=`pievienoja komentāru problēmai <a href="%s/issues/%s">%s#%[2]s</a>` +merge_pull_request=`sapludināja izmaiņu pieprasījumu <a href="%s/pulls/%s">%s#%[2]s</a>` +transfer_repo=mainīja repozitorija <code>%s</code> īpašnieku uz <a href="%s">%s</a> +push_tag=pievienoja tagu <a href="%s/src/%s">%[2]s</a> repozitorijam <a href="%[1]s">%[3]s</a> +compare_2_commits=Veikt salīdzināšanu starp šīm 2 revīzijām + +[tool] +ago=atpakaļ +from_now=no šī brīža +now=tagad +1s=1 sekundi %s +1m=1 minūti %s +1h=1 stundu %s +1d=1 dienu %s +1w=1 nedēļu %s +1mon=1 mēnesi %s +1y=1 gadu %s +seconds=%d sekundes %s +minutes=%d minūtes %s +hours=%d stundas %s +days=%d dienas %s +weeks=%d nedēļas %s +months=%d mēneši %s +years=%d gadi %s +raw_seconds=sekundes +raw_minutes=minūtes + +[dropzone] +default_message=Ievelciet failus šeit vai noklikšķiniet, lai augšupielādētu. +invalid_input_type=Šādus failus nav iespējams augšupielādēt. +file_too_big=Faila izmērs ({{filesize}} MB) pārsniedz maksimālo atļauto izmēru ({{maxFilesize}} MB). +remove_file=Noņemt failu + diff --git a/conf/locale/locale_nl-NL.ini b/conf/locale/locale_nl-NL.ini index 1a8e11b3..98b6c93c 100755 --- a/conf/locale/locale_nl-NL.ini +++ b/conf/locale/locale_nl-NL.ini @@ -1,992 +1,1009 @@ -app_desc=Een eenvoudige zelfgehoste Git service geschreven in Go
-
-home=Huis
-dashboard=Dashboard
-explore=Verkennen
-help=Help
-sign_in=Inloggen
-sign_out=Afmelden
-sign_up=Aanmelden
-register=Registreer
-website=Website
-version=Versie
-page=Pagina
-template=Sjabloon
-language=Taal
-create_new=Create...
-user_profile_and_more=Gebruikersprofiel en meer
-signed_in_as=Aangemeld als
-
-username=Gebruikersnaam
-email=E-mail
-password=Wachttwoord
-re_type=Verificatie
-captcha=CAPTCHA
-
-repository=Repositorie
-organization=Organisatie
-mirror=Spiegel
-new_repo=Nieuwe repositorie
-new_migrate=Nieuwe migratie
-new_fork=Nieuwe vork Repository
-new_org=Nieuwe organisatie
-manage_org=Beheer organisaties
-admin_panel=Adminpaneel
-account_settings=Accountinstellingen
-settings=Instellingen
-your_profile=Uw profiel
-your_settings=Uw instellingen
-
-news_feed=Nieuwsfeed
-pull_requests=Pull-aanvragen
-issues=Kwesties
-
-cancel=Annuleer
-
-[search]
-search=Zoeken...
-repository=Opslagplaats
-user=Gebruiker
-issue=Probleem
-code=Code
-
-[install]
-install=Installatie
-title=Installatiestappen voor de eerste keer opstarten
-docker_helper=If you're running Gogs inside Docker, please read <a target="_blank" href="%s">Guidelines</a> carefully before you change anything in this page!
-requite_db_desc=Gogs requires MySQL, PostgreSQL, SQLite3 or TiDB.
-db_title=Database instellingen
-db_type=Database-type
-host=Host
-user=Gebruikersnaam
-password=Wachtwoord
-db_name=Database naam
-db_helper=Gebruik InnoDB engine met utf8_general_ci karakterset voor MySQL.
-ssl_mode=SSL-modus
-path=Pad
-sqlite_helper=The file path of SQLite3 or TiDB database.
-err_empty_db_path=SQLite3 or TiDB database path cannot be empty.
-err_invalid_tidb_name=TiDB database name does not allow characters "." and "-".
-no_admin_and_disable_registration=You cannot disable registration without creating an admin account.
-err_empty_admin_password=Admin password cannot be empty.
-
-general_title=Toepassing algemene instellingen
-app_name=Applicatienaam
-app_name_helper=Plaats hier je organisatienaam in grote letters!
-repo_path=Repositories basis directorie
-repo_path_helper=Alle remote Git repositories worden in deze directorie opgeslagen
-run_user=Uitvoerende gebruikersnaam
-run_user_helper=Deze gebruiker moet toegang hebben tot de git repositorie directorie en moet Gogs kunnen starten
-domain=Domein
-domain_helper=Dit heeft invloed op de SSH kloon URLs
-ssh_port=SSH-poort
-ssh_port_helper=Nummer van de poort die uw SSH-server gebruikt, laat dit leeg om de SSH functie uit te schakelen.
-http_port=HTTP-poort
-http_port_helper=Poortnummer waar het programma naar luistert.
-app_url=Applicatie URL
-app_url_helper=Dit heeft invloed op de HTTP/HTTPS kloon urls en de urls die in de email worden gebruikt
-
-optional_title=Optionele instellingen
-email_title=E-mail service instellingen
-smtp_host=SMTP host
-smtp_from=Afzender
-smtp_from_helper=Email afzender, RFC 5322. Dit kan gewoon een email adres zijn of het "Naam"<email@example.com> formaat.
-mailer_user=Afzender e-mail / gebruikersnaam
-mailer_password=Wachtwoord
-register_confirm=Activeer registratie emails
-mail_notify=Activeer e-mailnotificaties
-server_service_title=Server en andere Services-instellingen
-offline_mode=Off line modus inschakelen
-offline_mode_popup=Schakel CDN uit in productiemodus, alle bestanden worden lokaal aangeboden.
-disable_gravatar=Gravatar Service uitschakelen
-disable_gravatar_popup=Schakel Gravatar en andere bronnen uit, alle avatars worden door gebruikers geüpload of zijn standaard.
-disable_registration=Schakel zelfregistratie uit
-disable_registration_popup=Schakel zelfregistratie uit, alleen admins kunnen accounts maken.
-enable_captcha=Enable Captcha
-enable_captcha_popup=Require validate captcha for user self-registration.
-require_sign_in_view=Schakel vereiste aanmelding om pagina's te zien in
-require_sign_in_view_popup=Alleen ingelogde gebruikers kunnen pagina's bekijken, bezoekers kunnen alleen de login/registratie pagina's zien.
-admin_setting_desc=U hoeft niet meteen een administratie account te maken, de gebruiker met ID=1 krijgt automatisch administratierechten.
-admin_title=Instellingen beheerdersaccount
-admin_name=Gebruikersnaam
-admin_password=Wachtwoord
-confirm_password=Verifieer wachtwoord
-admin_email=E-mailadres
-install_gogs=Installeer Gogs
-test_git_failed=Git test niet gelukt: 'git' commando %v
-sqlite3_not_available=Uw versie biedt geen ondersteuning voor SQLite3, download de officiële binaire versie van %s, niet de gobuild versie.
-invalid_db_setting=Uw database instellingen zijn niet correct: %v
-invalid_repo_path=Repositorie basis pad is niet correct: %v
-run_user_not_match=De uitvoerende gebruiker is niet de huidig gebruiker: %s -> %s
-save_config_failed=Kan de configuratie niet opslaan: %v
-invalid_admin_setting=Uw admin-instellingen zijn niet geldig: %v
-install_success=Welkom! Wij zijn veheugd dat u voor Gogs heeft gekozen, veel plezier en tot ziens
-
-[home]
-uname_holder=Gebruikersnaam of e-mail
-password_holder=Wachtwoord
-switch_dashboard_context=Wissel voorpaginacontext
-my_repos=Mijn repositories
-collaborative_repos=Gedeelde repositories
-my_orgs=Mijn organisaties
-my_mirrors=Mijn mirrors
-view_home=Bekijk %s
-
-issues.in_your_repos=In uw repositories
-
-[explore]
-repos=Repositories
-
-[auth]
-create_new_account=Maak nieuw account aan
-register_hepler_msg=Heeft u al een account? Meld u nu aan!
-social_register_hepler_msg=Heeft u al een account? Koppel nu!
-disable_register_prompt=Sorry, registratie is uitgeschakeld. Neem contact op met de beheerder van deze site.
-disable_register_mail=Sorry, bevestiging van registratie per e-mail is uitgeschakeld.
-remember_me=Onthoud mij
-forgot_password=Wachtwoord vergeten
-forget_password=Wachtwoord vergeten?
-sign_up_now=Een account nodig? Meld u nu aan.
-confirmation_mail_sent_prompt=Een bevestigingsemail is gestuurd naar <b>%s</b>, Bevestig u aanvraag binnen %d uren om uw registratie te voltooien.
-sign_in_to_account=Sign in to your account
-active_your_account=Activeer uw account
-resent_limit_prompt=Sorry, u heeft te snel na elkaar een aanvraag gedaan voor een activatie mail. Wacht drie minuten voor uw volgende aanvraag.
-has_unconfirmed_mail=Beste %s, u heeft een onbevestigd e-mailadres (<b>%s</b>). Als u nog geen bevestiging heeft ontvangen, of u een nieuwe aanvraag wilt doen, klik dan op de onderstaande knop.
-resend_mail=Klik hier om uw activatie mail nog een keer te verzenden
-email_not_associate=Dit e-mailadres is niet gekoppeld aan een account.
-send_reset_mail=Klik hier om uw wachtwoord reset mail (nogmaals) te versturen
-reset_password=Reset uw wachtwoord
-invalid_code=Sorry, uw bevestigingscode is verlopen of niet meer geldig.
-reset_password_helper=Klik hier om uw wachtwoord opnieuw in te stellen.
-password_too_short=De lengte van uw wachtwoord moet minimaal zes karakters zijn.
-
-[mail]
-activate_account=Please activate your account
-activate_email=Verify your e-mail address
-reset_password=Reset your password
-register_success=Register success, Welcome
-
-[modal]
-yes=Ja
-no=Nee
-modify=Aanpassen
-
-[form]
-UserName=Gebruikersnaam
-RepoName=Repositorie naam
-Email=e-mailadres
-Password=Wachtwoord
-Retype=Verifieer wachtwoord
-SSHTitle=SSH sleutel naam
-HttpsUrl=HTTPS-URL
-PayloadUrl=Nettolading URL
-TeamName=Team naam
-AuthName=Autorisatienaam
-AdminEmail=E-mail beheerder
-
-require_error=kan niet leeg zijn.
-alpha_dash_error=moet een valide alfanumeriek of dash(-_) karakter zijn.
-alpha_dash_dot_error=moet een valide alfanumeriek, dash(-_) of (.) punt karakter zijn.
-size_error=moet groter zijn dan %s
-min_size_error=moet minimaal %s karakters bevatten.
-max_size_error=mag maximaal %s karakters bevatten.
-email_error=is niet een valide e-mail adres.
-url_error=is niet een valide URL.
-unknown_error=Onbekende fout:
-captcha_incorrect=Captcha komt niet overeen.
-password_not_match=Wachtwoord en verificatie wachtwoord komen niet overeen.
-
-username_been_taken=Gebruikersnaam is al in gebruik.
-repo_name_been_taken=Repositorie naam is al in gebruik.
-org_name_been_taken=Organisatie naam is al in gebruik.
-team_name_been_taken=Team naam is al in gebruik.
-email_been_used=e-mailadres is al in gebruik.
-illegal_team_name=Team naam bevat illegale karakters.
-username_password_incorrect=Gebruikersnaam of wachtwoord is niet correct.
-enterred_invalid_repo_name=U heeft een onjuiste repositorie naam ingevoerd.
-enterred_invalid_owner_name=U heeft een onjuiste eigenaar ingevoerd.
-enterred_invalid_password=U heeft een onjuiste wachtwoord ingevoerd.
-user_not_exist=Gegeven gebruiker bestaat niet.
-last_org_owner=De gebruiker die u probeert te verwijderen is het enige lid (eigenaar) van dit team. U moet eerst nieuwe lid (eigenaar) aanstellen.
-
-invalid_ssh_key=Sorry, we zijn niet in staat om uw SSH-sleutel te verifiëren: %s
-unable_verify_ssh_key=Gogs kan niet controleren of uw SSH-sleutel, maar wij gaan ervan uit dat is geldig, zorg ervoor dat uzelf.
-auth_failed=Verificatie mislukt: %v
-
-still_own_repo=Uw account heeft nog een eigendom op een repositorie. U moet deze eerst verwijderen of overdragen.
-still_has_org=Uw account nog steeds lidmaatschap van organisatie, u hebt naar links of hen eerst verwijderen.
-org_still_own_repo=De organisatie heeft nog eigendomen op repositories. U moet deze eerst verwijderen of overdragen.
-
-still_own_user=Deze authenticatie methode wordt nog gebruikt door sommige gebruikers. U moet hen eerst verplaatsen of verwijderen.
-
-target_branch_not_exist=Doel branch bestaat niet
-
-[user]
-change_avatar=Verander uw avatar op Gravatar.com
-change_custom_avatar=Wijzig uw avatar in de instellingen
-join_on=Aangemeld op
-repositories=repositories
-activity=Openbare activiteit
-followers=Volgers
-starred=Sterren
-following=Volgt
-
-form.name_reserved=De gebruikersnaam '%s' is gereserveerd.
-form.name_pattern_not_allowed=Het gebruikersnaam patroon '%s' is niet toegestaan.
-
-[settings]
-profile=Profiel
-password=Wachtwoord
-ssh_keys=SSH-sleutels
-social=Sociale netwerk-accounts
-applications=Toepassingen
-orgs=Organisaties
-delete=Verwijder account
-uid=uid
-
-public_profile=Openbaar profiel
-profile_desc=Uw e-mailadres is openbaar en zal gebruikt worden voor alle account gerelateerde berichtgevingen en bewerkingingen die via de website worden gedaan.
-full_name=Volledige naam
-website=Website
-location=Locatie
-update_profile=Profile bijwerken
-update_profile_success=Uw profiel is succesvol bijgewerkt.
-change_username=Username veranderd
-change_username_prompt=This change will affect the way how links relate to your account.
-continue=Doorgaan
-cancel=Annuleren
-
-enable_custom_avatar=Aangepaste avatar inschakelen
-enable_custom_avatar_helper=Avatar niet ophalen van Gravatar
-choose_new_avatar=Kies een nieuwe avatar
-update_avatar=Avatar instelling bijwerken
-uploaded_avatar_not_a_image=Geüpload bestand is geen afbeelding.
-no_custom_avatar_available=Geen aangepaste avatar beschikbaar, kan niet worden ingeschakeld.
-update_avatar_success=Instellingen voor avatar succesvol bijgewerkt.
-
-change_password=Verander wachtwoord
-old_password=Huidige wachtwoord
-new_password=Nieuw wachtwoord
-retype_new_password=Retype New Password
-password_incorrect=Huidig wachtwoord is niet correct.
-change_password_success=Wachtwoord is succesvol gewijzigd. U kunt nu met uw nieuwe wachtwoord inloggen.
-
-emails=E-mailadressen
-manage_emails=E-mailadressen beheren
-email_desc=Uw primaire e-mailadres zal worden gebruikt voor meldingen en andere administratieve taken.
-primary=Primair
-primary_email=Instellen als primair
-delete_email=Verwijder
-email_deletion=E-mail Deletion
-email_deletion_desc=Delete this e-mail address will remove related information from your account. Do you want to continue?
-email_deletion_success=E-mail has been deleted successfully!
-add_new_email=Nieuw e-mailadres toevoegen
-add_email=E-mailadres toevoegen
-add_email_confirmation_sent=Een nieuwe bevestiging e-mail werd verstuurd naar '%s', gelieve uw inbox in de komende %d uren te controleren om het bevestigingsproces te voltooien.
-add_email_success=Het e-mailadres was toegevoegd.
-
-manage_ssh_keys=Beheer SSH sleutels
-add_key=Sleutel toevoegen
-ssh_desc=Dit is een lijst van alle SSH sleutels die gekoppeld zijn aan uw account. Verwijder alle sleutels die u niet herkent.
-ssh_helper=<strong>De behoeftehulp van?</strong> Check out onze gids voor het <a href="%s"> genereren van SSH sleutels</a> of <a href="%s"> algemene SSH</a> problemen.
-add_new_key=SSH sleutel toevoegen
-ssh_key_been_used=Publieke sleutel werd gebruikt.
-ssh_key_name_used=Een publieke sleutel met dezelfde naam bestaat al.
-key_name=Sleutel naam
-key_content=Inhoud
-add_key_success=Nieuwe SSH sleutel '%s' werd met succes toegevoegd!
-delete_key=Verwijder
-ssh_key_deletion=SSH sleutel verwijderen
-ssh_key_deletion_desc=Het verwijderen van deze SSH sleutel zal alle verwante toegang tot uw account verwijderen. Wilt u doorgaan?
-ssh_key_deletion_success=SSH sleutel is succesvol verwijderd!
-add_on=Toegevoegd op
-last_used=Laatst gebruikt op
-no_activity=Geen recente activiteiten
-key_state_desc=Deze sleutel werd gebruikt in de laatste 7 dagen
-token_state_desc=Deze token is de laatste 7 dagen gebruikt
-
-manage_social=Beheer gekoppelde sociale accounts
-social_desc=Dit is een lijst van de bijbehorende sociale accounts koppelingen, Verwijder eventueel koppelingen die u niet herkent.
-unbind=Loskoppelen
-unbind_success=Sociaal account is ontkoppeld.
-
-manage_access_token=Persoonlijke toegangstokens beheren
-generate_new_token=Nieuwe Token genereren
-tokens_desc=Tokens die u hebt gegenereerd om toegang tot de Gogs APIs te verkrijgen.
-new_token_desc=Zoals voor nu, moet elke token zal hebben volledige toegang tot uw account.
-token_name=Symbolische naam
-generate_token=Token genereren
-generate_token_succees=Nieuwe toegangstoken is met succes gegenereerd! Zorg ervoor dat uw nieuwe persoonlijke toegangstoken nu kopiëren. U zal niet zitten kundig voor zien het weer!
-delete_token=Verwijderen
-access_token_deletion=Persoonlijke toegang token verwijderen
-access_token_deletion_desc=Verwijderen van deze persoonlijke toegang token zal alle verwante toegang verwijderen. Wilt u doorgaan?
-delete_token_success=Persoonlijke toegangstoken is met succes verwijderd! Vergeet niet uw toepassingen ook bij te werken.
-
-delete_account=Verwijder uw account
-delete_prompt=Deze handeling zal uw account definitief verwijderen, u kunt dit <strong> NIET </strong> terug draaien!
-confirm_delete_account=Bevestig verwijdering
-delete_account_title=Account verwijderen
-delete_account_desc=Dit account zal permanent worden verwijderd. Wilt u doorgaan?
-
-[repo]
-owner=Eigenaar
-repo_name=Repositorie naam
-repo_name_helper=Een goede repositorie naam is kort, memorabel en <strong>uniek</strong>.
-visibility=Zichtbaarheid
-visiblity_helper=Deze repositorie is <span class="ui red text">privaat</span>
-visiblity_helper_forced=Site admin has forced all new repositories to be <span class="ui red text">Private</span>
-visiblity_fork_helper=(Verandering van deze waarde zal van invloed zijn op alle forks)
-fork_repo=Vork Repository
-fork_from=Afsplitsing van
-fork_visiblity_helper=Gevorkte repository wijzigen zijn bereik potentiële kopers niet
-repo_desc=Omschrijving
-repo_lang=Taal
-repo_lang_helper=Selecteer .gitignore bestanden
-license=Licentie
-license_helper=Selecteer een licentie bestand
-readme=Leesmij-bestand
-readme_helper=Selecteer een sjabloon voor het Leesmij-bestand
-auto_init=Initialiseer deze repositorie met de geselecteerde bestanden en sjabloon
-create_repo=Nieuwe Repositorie
-default_branch=Standaard branch
-mirror_interval=Mirror interval(uur)
-
-form.name_reserved=Repositorienaam '%s' is gereserveerd.
-form.name_pattern_not_allowed=Repositorie naampatroon '%s' is niet toegestaan.
-
-need_auth=Autorisatie vereist
-migrate_type=Migratie type
-migrate_type_helper=Deze repositorie zal een <span class="text blue">mirror</span> zijn
-migrate_repo=Migreer repositorie
-migrate.clone_address=Clone adres
-migrate.clone_address_desc=Dit kan een HTTP/HTTPS/GIT URL zijn of een lokaal pad.
-migrate.invalid_local_path=Ongeldig lokaal pad, het pad bestaat niet of het is geen map.
-
-forked_from=geforked van
-fork_from_self=U kunt geen repository forken die u al beheert!
-copy_link=Kopieer
-copy_link_success=Copied!
-copy_link_error=Press ⌘-C or Ctrl-C to copy
-click_to_copy=Kopieer link naar plakbord
-copied=Gekopieerd
-clone_helper=De behoeftehulp van klonen? Bezoek <a target="_blank" href="%s"> helpen</a>!
-unwatch=Negeren
-watch=Volgen
-unstar=Ontster
-star=Ster
-fork=Vork
-
-no_desc=Geen omschrijving
-quick_guide=Snelstart gids
-clone_this_repo=Kloon deze repositorie
-create_new_repo_command=Maak een nieuwe repositorie aan vanaf de console
-push_exist_repo=Push een bestaande repositorie vanaf de console
-repo_is_empty=This repository is empty, please come back later!
-
-
-branch=Aftakking
-tree=Boom
-branch_and_tags=Aftakkingen & labels
-branches=Aftakkingen
-tags=Labels
-issues=Kwesties
-pulls=Pull-aanvragen
-labels=Labels
-milestones=Mijlpalen
-commits=Commits
-releases=Publicaties
-file_raw=Ruwe
-file_history=Geschiedenis
-file_view_raw=Weergave ruwe
-file_permalink=Permalink
-
-commits.commits=Commits
-commits.search=Zoeken
-commits.find=zoek
-commits.author=Auteur
-commits.message=Bericht
-commits.date=Datum
-commits.older=Ouder
-commits.newer=Nieuwer
-
-issues.new=Nieuw probleem
-issues.new.labels=Labels
-issues.new.no_label=Geen label
-issues.new.clear_labels=Verwijder labels
-issues.new.milestone=Mijlpaal
-issues.new.no_milestone=Geen mijlpaal
-issues.new.clear_milestone=Verwijder mijlpaal
-issues.new.open_milestone=Open mijlpalen
-issues.new.closed_milestone=Gesloten mijlpalen
-issues.new.assignee=Verantwoordelijke
-issues.new.clear_assignee=Verwijder verantwoordelijke
-issues.new.no_assignee=Geen verantwoordelijke
-issues.create=Maak probleem
-issues.new_label=Nieuw Label
-issues.new_label_placeholder=Tekst label...
-issues.create_label=Maak label
-issues.open_tab=%d Open
-issues.close_tab=%d gesloten
-issues.filter_label=Label
-issues.filter_label_no_select=Geen label geselecteerd
-issues.filter_milestone=Mijlpaal
-issues.filter_milestone_no_select=Geen geselecteerde mijlpaal
-issues.filter_assignee=Aangewezene
-issues.filter_assginee_no_select=Geen geselecteerde verantwoordelijke
-issues.filter_type=Type
-issues.filter_type.all_issues=Alle kwesties
-issues.filter_type.assigned_to_you=Aan jou toegewezen
-issues.filter_type.created_by_you=Aangemaakt door jou
-issues.filter_type.mentioning_you=Vermelden jou
-issues.filter_sort=Sorteer
-issues.filter_sort.latest=Nieuwste
-issues.filter_sort.oldest=Oudste
-issues.filter_sort.recentupdate=Recent bijgewerkt
-issues.filter_sort.leastupdate=Minst recent bijgewerkt
-issues.filter_sort.mostcomment=Meest besproken
-issues.filter_sort.leastcomment=Minst besproken
-issues.opened_by=%[1]s werd geopend door <a href="/%[2]s">%[3]s</a>
-issues.opened_by_fake=%[1]s werd geopend door %[2]s
-issues.previous=Vorige
-issues.next=Volgende
-issues.open_title=Open
-issues.closed_title=Gesloten
-issues.num_comments=%d opmerkingen
-issues.commented_at=`gaf commentaar op <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.no_content=Er is nog geen inhoud.
-issues.close_issue=Sluit
-issues.close_comment_issue=Sluit en geef commentaar
-issues.reopen_issue=Heropen
-issues.reopen_comment_issue=Heropen en geef commentaar
-issues.create_comment=Reageer
-issues.closed_at=`gesloten om <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.reopened_at=`heropend om <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.commit_ref_at='verwees naar dit probleem vanuit een commit <a id="%[1]s" href="#%[1]s"> %[2]s'</a>
-issues.poster=Poster
-issues.admin=Admin
-issues.owner=Eigenaar
-issues.sign_up_for_free=Gratis aanmelden
-issues.sign_in_require_desc=om deel te nemen in deze conversatie. Heeft u al een account? <a href="%s">Meld u aan om te reageren</a>
-issues.edit=Bewerken
-issues.cancel=Annuleren
-issues.save=Opslaan
-issues.label_title=Labelnaam
-issues.label_color=Labelkleur
-issues.label_count=%d labels
-issues.label_open_issues=%d geopende problemen
-issues.label_edit=Bewerken
-issues.label_delete=Verwijder
-issues.label_modify=Wijzig label
-issues.label_deletion=Verwijder label
-issues.label_deletion_desc=Het verwijderen van dit label zal alle informatie in de gerelateerde problemen verwijderen. Wilt u doorgaan?
-issues.label_deletion_success=Label werd met succes verwijderd!
-
-pulls.compare_changes=Vergelijk veranderingen
-pulls.compare_changes_desc=Vergelijk twee vertakkingen en maak een pull verzoek voor wijzigingen.
-pulls.compare_base=base
-pulls.compare_compare=vergelijk
-pulls.filter_branch=Filter branch
-pulls.no_results=Geen resultaten gevonden.
-pulls.nothing_to_compare=Er is niets te vergelijken omdat base en head branches dezelfde zijn.
-pulls.has_pull_request=' Er is al een pull-aanvraag tussen deze twee targets: <a href="%[1]s/pulls/%[3]d"> %[2]s #% [3]d</a>'
-pulls.create=Pull verzoek aanmaken
-pulls.title_desc=wil %[1]d commits van <code>%[2]s</code> samenvoegen met <code>%[3]s</code>
-pulls.merged_title_desc=merged %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> %[4]s
-pulls.tab_conversation=Discussie
-pulls.tab_commits=Commits
-pulls.tab_files=Bestanden gewijzigd
-pulls.reopen_to_merge=Please reopen this pull request to perform merge operation.
-pulls.merged=Merged
-pulls.has_merged=This pull request has been merged successfully!
-pulls.data_broken=Data of this pull request has been broken due to deletion of fork information.
-pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments.
-pulls.can_auto_merge_desc=You can perform auto-merge operation on this pull request.
-pulls.cannot_auto_merge_desc=You can't perform auto-merge operation because there are conflicts between commits.
-pulls.cannot_auto_merge_helper=Please use command line tool to solve it.
-pulls.merge_pull_request=Samenvoegen van pull verzoek
-pulls.open_unmerged_pull_exists=`You can't perform reopen operation because there is already an open pull request (#%d) from same repository with same merge information and is waiting for merging.`
-
-milestones.new=Nieuwe mijlpaal
-milestones.open_tab=%d geopend
-milestones.close_tab=%d gesloten
-milestones.closed=%s werd gesloten
-milestones.no_due_date=Geen vervaldatum
-milestones.open=Open
-milestones.close=Sluit
-milestones.new_subheader=Maak mijlpalen voor het organiseren van uw problemen.
-milestones.create=Mijlpaal maken
-milestones.title=Titel
-milestones.desc=Beschrijving
-milestones.due_date=Vervaldatum (optioneel)
-milestones.clear=Leegmaken
-milestones.invalid_due_date_format=Formaat vervaldatum is ongeldig, moet zijn "jaar-mm-dd".
-milestones.create_success=Mijlpaal '%s' is met succes aangemaakt!
-milestones.edit=Bewerk mijlpaal
-milestones.edit_subheader=Gebruik een goede beschrijving voor mijlpalen, om verwarring te voorkomen.
-milestones.cancel=Annuleer
-milestones.modify=Mijlpaal wijzigen
-milestones.edit_success=Wijzigingen van mijlpaal '%s' is met succes opgeslagen!
-milestones.deletion=Mijlpaal verwijderen
-milestones.deletion_desc=Het verwijderen van dit label zal alle informatie in de gerelateerde problemen verwijderen. Wilt u doorgaan?
-milestones.deletion_success=Mijlpaal is met succes verwijderd!
-
-settings=Instellingen
-settings.options=Opties
-settings.collaboration=Samenwerking
-settings.hooks=Webhooks
-settings.githooks=Git haken
-settings.basic_settings=Basis instellingen
-settings.danger_zone=Gevaren zone
-settings.site=Officiële site
-settings.update_settings=Instellingen bewerken
-settings.change_reponame_prompt=This change will affect how links relate to the repository.
-settings.transfer=Eigendom overdragen
-settings.transfer_desc=Draag deze repo over aan een andere gebruiker of een organisatie waar u beheerders rechten heeft.
-settings.new_owner_has_same_repo=De nieuwe eigenaar heeft al een repositorie met deze naam
-settings.delete=Verwijder deze repositorie
-settings.delete_desc=Als u eenmaal een repositorie verwijderd is er geen weg terug. Gelieve zeker te zijn van uw acties.
-settings.transfer_notices_1=- You will lose access if new owner is a individual user.
-settings.transfer_notices_2=- You will conserve access if new owner is an organization and if you're one of the owners.
-settings.transfer_form_title=Please enter following information to confirm your operation:
-settings.delete_notices_1=- This operation <strong>CANNOT</strong> be undone.
-settings.delete_notices_2=- This operation will permanently delete the everything of this repository, including Git data, issues, comments and accesses of collaborators.
-settings.delete_notices_fork_1=- If this repository is public, all forks will be became independent after deletion.
-settings.delete_notices_fork_2=- If this repository is private, all forks will be removed at the same time.
-settings.delete_notices_fork_3=- If you want to keep all forks after deletion, please change visibility of this repository to public first.
-settings.update_settings_success=Repositorie instellingen zijn succesvol bijgewerkt.
-settings.transfer_owner=Nieuwe eigenaar
-settings.make_transfer=Maak overdracht
-settings.transfer_succeed=Eigendom repositorie succesvol overgedragen
-settings.confirm_delete=Bevestig verwijdering
-settings.add_collaborator=Nieuwe medewerker toevoegen
-settings.add_collaborator_success=medewerker is toegevoegd.
-settings.remove_collaborator_success=medewerker is verwijderd.
-settings.user_is_org_member=Gebruiker is lid van de organisatie die als een medewerker kan niet worden toegevoegd.
-settings.add_webhook=Webhook toevoegen
-settings.hooks_desc=Webhooks dat de externe diensten om kennisgevingen te ontvangen wanneer bepaalde gebeurtenissen op Gogs plaatsvinden. Wanneer de opgegeven gebeurtenissen plaatsvinden, sturen we een POST-aanvraag naar elk van de URL's die u opgeeft. Meer informatie vindt u in onze <a target="_blank" href="%s"> Webhooks gids</a>.
-settings.webhook_deletion=Webhook verwijderen
-settings.webhook_deletion_desc=Delete this webhook will remove its information and all delivery history. Do you want to continue?
-settings.webhook_deletion_success=Webhook has been deleted successfully!
-settings.webhook.request=Verzoek
-settings.webhook.response=Antwoord
-settings.webhook.headers=Headers
-settings.webhook.payload=Lading
-settings.webhook.body=Inhoud
-settings.githooks_desc=Git haken worden aangedreven door Git zelf, u kunt bestanden van ondersteunde haken in de lijst hieronder om aangepaste acties van toepassing bewerken.
-settings.githook_edit_desc=Als haak niet actief is, zal monster inhoud worden gepresenteerd. Verlof inhoud leeg zal deze haak uitschakelen.
-settings.githook_name=Haak naam
-settings.githook_content=Haak inhoud
-settings.update_githook=Haak bijwerken
-settings.add_webhook_desc=We sturen een <code>POST</code>-aanvraag naar de onderstaande URL met details voor alle geplaatste gebeurtenissen. U kunt ook opgeven welke gegevensindeling u wenst te ontvangen (JSON, <code>x-1-800-www-Dell-vorm-urlencoded</code>, <em>enz</em>.). Meer informatie kan gevonden worden in <a target="_blank" href="%s"> Webhooks gids</a>.
-settings.payload_url=Nettolading URL
-settings.content_type=Content type
-settings.secret=Geheim
-settings.slack_username=Gebruikersnaam
-settings.slack_icon_url=Icoon URL
-settings.slack_color=Kleur
-settings.event_desc=Bij welke gebeurtenissen wilt u dat deze webhook getriggerd wordt?
-settings.event_push_only=Alleen bij de <code>push</code> event.
-settings.event_send_everything=Ik moet <strong>alles</strong> hebben.
-settings.event_choose=Laat me kiezen wat ik nodig heb.
-settings.event_create=Creëer
-settings.event_create_desc=Branch, of tag aangemaakt
-settings.event_push=Push
-settings.event_push_desc=Git push naar een repository
-settings.active=Actief
-settings.active_helper=We zullen details van de gebeurtenissen af leveren wanneer deze webhook wordt geactiveerd.
-settings.add_hook_success=Nieuwe webhook toegevoegd.
-settings.update_webhook=Bewerk webhook
-settings.update_hook_success=Webhook is bijgewerkt.
-settings.delete_webhook=Webhook verwijderen
-settings.recent_deliveries=Recente bezorgingen
-settings.hook_type=Type hook
-settings.add_slack_hook_desc=<a href="%s"> toegestane vertraging</a> integratie toevoegen aan uw repository.
-settings.slack_token=Slack token
-settings.slack_domain=Slack domein
-settings.slack_channel=Slack kanaal
-settings.deploy_keys=Installeer sleutels
-settings.add_deploy_key=Toevoegen deploy sleutel
-settings.no_deploy_keys=U hebt nog geen deploy sleutels toegevoegd.
-settings.title=Titel
-settings.deploy_key_content=Inhoud
-settings.key_been_used=Deploy sleutel inhoud werd gebruikt.
-settings.key_name_used=Deploy sleutel met eenzelfde naam bestaat al.
-settings.add_key_success=Nieuwe deploy sleutel '%s' werd succesvol toegevoegd!
-settings.deploy_key_deletion=Verwijder deploy sleutel
-settings.deploy_key_deletion_desc=Het verwijderen van deze deploy sleutel zal alle gerelateerde toegang verwijderen voor deze repositorie. Wilt u doorgaan?
-settings.deploy_key_deletion_success=Deploy sleutel werd met succes verwijderd!
-
-diff.browse_source=Bladeren bron
-diff.parent=bovenliggende
-diff.commit=commit
-diff.data_not_available=Diff gegevens niet beschikbaar.
-diff.show_diff_stats=Toon Diff Stats
-diff.stats_desc=<strong>%d gewijzigde bestanden</strong> met <strong>toevoegingen van %d</strong> en <strong>%d verwijderingen</strong>
-diff.bin=BIN
-diff.view_file=Bestand weergeven
-
-release.releases=Releases
-release.new_release=Nieuwe release
-release.draft=Concept
-release.prerelease=Voorlopige versie
-release.stable=Stabiel
-release.edit=bewerken
-release.ahead=<strong>%d</strong> aanpassingen aan %s sinds deze versie
-release.source_code=Broncode
-release.tag_name=Tagnaam
-release.target=Doel
-release.tag_helper=Kies een bestaande tag, of creëer een nieuwe tag bij publiceren.
-release.release_title=Release titel
-release.content_with_md=Inhoud met <a href="%s">Markeringen</a>
-release.write=Schrijf
-release.preview=Voorbeeld
-release.content_placeholder=Schrijf enige inhoud
-release.loading=Laden...
-release.prerelease_desc=Dit is een beta-versie
-release.prerelease_helper=Wij wijzen u erop dat deze release is niet geschikt voor productie doeleinden.
-release.publish=Release publiceren
-release.save_draft=Concept opslaan
-release.edit_release=Release bewerken
-release.tag_name_already_exist=Versie met deze naam bestaat al.
-
-[org]
-org_name_holder=Organisatienaam
-org_name_helper=Een goede organisatienaam is kort en memorabel.
-create_org=Nieuwe organisatie aanmaken
-repo_updated=Geupdate
-people=Mensen
-invite_someone=Iemand uitnodigen
-teams=Teams
-lower_members=leden
-lower_repositories=repositories
-create_new_team=Nieuw team aanmaken
-org_desc=Omschrijving
-team_name=Teamnaam
-team_desc=Omschrijving
-team_name_helper=U gebruikt deze naam om dit team te vermelden in conversaties.
-team_desc_helper=Waar gaat dit team doen?
-team_permission_desc=Welke privileges zou dit team moeten hebben?
-
-form.name_reserved=Organisatienaam '%s' is gereserveerd.
-form.name_pattern_not_allowed=Organisatie naampatroon '%s' is niet toegestaan.
-
-settings=Instellingen
-settings.options=Opties
-settings.full_name=Volledige naam
-settings.website=Website
-settings.location=Locatie
-settings.update_settings=Instellingen bijwerken
-settings.update_setting_success=Organisatie instellingen zijn succesvol bijgewerkt.
-settings.change_orgname_prompt=This change will affect how links relate to the organization.
-settings.update_avatar_success=Organization avatar setting has been updated successfully.
-settings.delete=Verwijder organisatie
-settings.delete_account=Verwijder deze organisatie
-settings.delete_prompt=Deze actie zal de origanisatie permanent verwijderen. U kunt dit <strong>NIET</strong> terug draaien!
-settings.confirm_delete_account=Bevestig verwijdering
-settings.delete_org_title=Verwijderen organsiatie
-settings.delete_org_desc=Deze organisatie zal permanent worden verwijderd, wilt u doorgaan?
-settings.hooks_desc=Een webhook toevoegen die door <strong>alle repositories</strong> in deze organisatie getriggerd kan worden.
-
-members.public=Openbaar
-members.public_helper=maak prive
-members.private=Prive
-members.private_helper=maak openbaar
-members.owner=Eigenaar
-members.member=Lid
-members.conceal=Verbergen
-members.remove=Verwijderen
-members.leave=Verlaat
-members.invite_desc=Begin met het typen van een gebruikersnaam om een nieuw lid aan %s uit te nodigen:
-members.invite_now=Nu uitnodigen
-
-teams.join=Lid worden
-teams.leave=Vertlaat
-teams.read_access=Leestoegang
-teams.read_access_helper=Dit team is in staat om zijn repositories te bekijken en te klonen.
-teams.write_access=Schrijf toegang
-teams.write_access_helper=Dit team is in staat om zijn repositories te bekijken en push aanvragen te verwerken.
-teams.admin_access=Beheerder toegang
-teams.admin_access_helper=Dit team is in staat om push & pull aanvragen te verwerken en om nieuwe medewerkers toe te voegen.
-teams.no_desc=Dit team heeft geen omschrijving
-teams.settings=Instellingen
-teams.owners_permission_desc=Eigenaren hebben volledige toegang tot <strong>alle repositories</strong> en hebben <strong>beheerder rechten</strong> over de organisatie.
-teams.members=Team leden
-teams.update_settings=Instellingen bijwerken
-teams.delete_team=Verwijder deze team
-teams.add_team_member=Nieuwe team lid aanmaken
-teams.delete_team_title=Team verwijderen
-teams.delete_team_desc=Dit team zal worden verwijderd. De leden van dit team zullen toegang tot alle repositories van het team verliezen. Wilt u doorgaan?
-teams.delete_team_success=Gekozen team is succesvol verwijderd.
-teams.read_permission_desc=Dit team heeft <strong>Lees</strong> rechten : leden kunnen repositories lezen en klonen.
-teams.write_permission_desc=Dit team heeft <strong>Schrijf</strong> rechten : leden kunnen repositories lezen en push aanvragen verwerken.
-teams.admin_permission_desc=Dit team heeft <strong>Beheerders</strong> rechten : leden kunnen repositories lezen en push aanvragen verwerken en medewerkers toevoegen.
-teams.repositories=Teamrepositories
-teams.add_team_repository=Nieuwe teamrepositorie aanmaken
-teams.remove_repo=Verwijder
-teams.add_nonexistent_repo=De opslagplaats die u probeert toe te voegen niet bestaat, kunt u het eerst aanmaken.
-
-[admin]
-dashboard=Dashboard
-users=Gebruikers
-organizations=Orgranisaties
-repositories=Repositories
-authentication=Autenticaties
-config=Configuratie
-notices=Systeem aankondigingen
-monitor=Bijhouden
-first_page=First
-last_page=Last
-total=Total: %d
-
-dashboard.statistic=Statistieken
-dashboard.operations=Bewerkingen
-dashboard.system_status=Status Systeemmonitor
-dashboard.statistic_info=Gogs database heeft <b>%d</b> gebruikers, <b>%d</b> organisaties, <b>%d</b> openbare sleutels, <b>%d</b> repositories, <b>%d</b> volgers, <b>%d</b> sterren, <b>%d</b> acties, <b>%d</b> participanten, <b>%d</b> issues, <b>%d</b> reacties, <b>%d</b> sociale accounten, <b>%d</b> volgers, <b>%d</b> mirrors, <b>%d</b> publicaties, <b>%d</b> login bronnen, <b>%d</b> webhooks, <b>%d</b> mijlpalen, <b>%d</b> labels, <b>%d</b> hook taken, <b>%d</b> teams, <b>%d</b> bijgewerkte taken, <b>%d</b> bijlagen.
-dashboard.operation_name=Bewerking naam
-dashboard.operation_switch=Omschakelen
-dashboard.operation_run=Uitvoeren
-dashboard.clean_unbind_oauth=Clean unbound OAuths
-dashboard.clean_unbind_oauth_success=Alle OAuthes binding hebben verwijderd.
-dashboard.delete_inactivate_accounts=Verwijder alle inactieve accounts
-dashboard.delete_inactivate_accounts_success=Alle inactivering van rekeningen hebben verwijderd.
-dashboard.delete_repo_archives=Verwijderen van alle repositories archieven
-dashboard.delete_repo_archives_success=Alle repositories archieven hebben verwijderd.
-dashboard.git_gc_repos=Garbage collectie uitvoeren
-dashboard.git_gc_repos_success=Garbage collectie met succes uitgevoerd.
-dashboard.resync_all_sshkeys=Herschrijf '.ssh/authorized_keys' (Let op: alle sleutels die niet van Gogs zijn zullen verloren gaan!)
-dashboard.resync_all_sshkeys_success=Alle publieke sleutels zijn herschreven.
-dashboard.resync_all_update_hooks=Herschrijf alle repositorie-hooks (nodig als de configuratie bestandslocatie is gewijzigd)
-dashboard.resync_all_update_hooks_success=Alle repositorie-hooks zijn herschreven.
-
-dashboard.server_uptime=Uptime server
-dashboard.current_goroutine=Huidige Goroutines
-dashboard.current_memory_usage=Huidige geheugen gebruik
-dashboard.total_memory_allocated=Totaal toegewezen geheugen
-dashboard.memory_obtained=Geheugen gebruikt
-dashboard.pointer_lookup_times=Aanwijzer Lookup keer
-dashboard.memory_allocate_times=Geheugen toewijzen keer
-dashboard.memory_free_times=Geheugen gratis keer
-dashboard.current_heap_usage=Huidige Heap gebruik
-dashboard.heap_memory_obtained=Heap-geheugen verkregen
-dashboard.heap_memory_idle=Heap Memory inactief
-dashboard.heap_memory_in_use=Hoop geheugen In gebruik
-dashboard.heap_memory_released=Heap-geheugen vrijgegeven
-dashboard.heap_objects=Heap-objecten
-dashboard.bootstrap_stack_usage=Bootstrap Stack gebruik
-dashboard.stack_memory_obtained=Stapel geheugen verkregen
-dashboard.mspan_structures_usage=MSpan structuren gebruik
-dashboard.mspan_structures_obtained=MSpan structuren verkregen
-dashboard.mcache_structures_usage=MCache structuren gebruik
-dashboard.mcache_structures_obtained=MCache structuren verkregen
-dashboard.profiling_bucket_hash_table_obtained=Profilering emmer hashtabel verkregen
-dashboard.gc_metadata_obtained=GC Metadada verkregen
-dashboard.other_system_allocation_obtained=Andere systeem toewijzing verkregen
-dashboard.next_gc_recycle=Volgende GC recycle
-dashboard.last_gc_time=Sinds vorige GC verwerkingstijd
-dashboard.total_gc_time=Totaal GC verwerkingstijd
-dashboard.total_gc_pause=Totaal GC verwerkingstijd
-dashboard.last_gc_pause=Laatste GC verwerkingstijd
-dashboard.gc_times=GC verwerkingen
-
-users.user_manage_panel=Gebruikers beheren
-users.new_account=Nieuw account aanmaken
-users.name=Naam
-users.activated=Geactiveerd
-users.admin=Admin
-users.repos=Repos
-users.created=Aangemaakt
-users.send_register_notify=Send Registration Notification To User
-users.new_success=New account '%s' has been created successfully.
-users.edit=Bewerken
-users.auth_source=Authentication Source
-users.local=Lokaal
-users.auth_login_name=Authentication Login Name
-users.password_helper=Leave it empty to remain unchanged.
-users.update_profile_success=Profiel is succesvol bijgewerkt.
-users.edit_account=Bewerk account
-users.is_activated=Dit account is geactiveerd
-users.is_admin=Dit account heeft beheerdersrechten
-users.allow_git_hook=Deze account beschikt over machtigingen voor het maken van Git haken
-users.update_profile=Account profiel bijwerken
-users.delete_account=Dit account verwijderen
-users.still_own_repo=Dit account is nog steeds eigendom van een repositorie. U moet deze repositorie eerst verwijderen of overdragen.
-users.still_has_org=Deze account nog steeds lidmaatschap van organisatie, u hebt naar links of hen eerst verwijderen.
-users.deletion_success=Account has been deleted successfully!
-
-orgs.org_manage_panel=Organisaties beheren
-orgs.name=Naam
-orgs.teams=Teams
-orgs.members=Leden
-
-repos.repo_manage_panel=Repositoriebeheerpaneel
-repos.owner=Eigenaar
-repos.name=Naam
-repos.private=Prive
-repos.watches=Volgers
-repos.stars=Sterren
-repos.issues=Kwesties
-
-auths.auth_manage_panel=Authentication Manage Panel
-auths.new=Add New Source
-auths.name=Naam
-auths.type=Type
-auths.enabled=Ingeschakeld
-auths.updated=Bijgewerkt
-auths.auth_type=Authentication Type
-auths.auth_name=Authentication Name
-auths.domain=Domein
-auths.host=Host
-auths.port=Poort
-auths.bind_dn=Binden DN
-auths.bind_password=Bind Password
-auths.bind_password_helper=Warning: This password is stored in plain text. Do not use a high privileged account.
-auths.user_base=User Search Base
-auths.user_dn=User DN
-auths.attribute_name=Voornaam attribuut
-auths.attribute_surname=Achternaam attribuut
-auths.attribute_mail=E-mail attribuut
-auths.filter=User Filter
-auths.admin_filter=Admin Filter
-auths.ms_ad_sa=MS Ad SA
-auths.smtp_auth=SMTP Authentication Type
-auths.smtphost=SMTP host
-auths.smtpport=SMTP poort
-auths.allowed_domains=Allowed Domains
-auths.allowed_domains_helper=Leave it empty to not restrict any domains. Multiple domains should be separated by comma ','.
-auths.enable_tls=Activeer TLS-encryptie
-auths.skip_tls_verify=Skip TLS Verify
-auths.pam_service_name=PAM servicenaam
-auths.enable_auto_register=Activeer automatische registratie
-auths.tips=Tips
-auths.edit=Edit Authentication Setting
-auths.activated=Deze autorisatiemethode is geactiveerd
-auths.new_success=New authentication '%s' has been added successfully.
-auths.update_success=Authentication setting has been updated successfully.
-auths.update=Update Authentication Setting
-auths.delete=Delete This Authentication
-auths.delete_auth_title=Authentication Deletion
-auths.delete_auth_desc=This authentication is going to be deleted, do you want to continue?
-auths.deletion_success=Authentication has been deleted successfully!
-
-config.server_config=Serverconfiguratie
-config.app_name=Applicatienaam
-config.app_ver=Applicatieversie
-config.app_url=Applicatie-URL
-config.domain=Domein
-config.offline_mode=Offline-modus
-config.disable_router_log=Router-log uitschakelen
-config.run_user=Uitvoerende gebruiker
-config.run_mode=Uitvoer modus
-config.repo_root_path=Repositorie basis pad
-config.static_file_root_path=Statische bestanden basis pad
-config.log_file_root_path=Log bestand basis pad
-config.script_type=Script type
-config.reverse_auth_user=Omgekeerde verificatie gebruiker
-config.db_config=Databaseconfiguratie
-config.db_type=Type
-config.db_host=Host
-config.db_name=Naam
-config.db_user=Gebruiker
-config.db_ssl_mode=SSL modus
-config.db_ssl_mode_helper=(alleen voor "postgres")
-config.db_path=Pad
-config.db_path_helper=(for "sqlite3" and "tidb")
-config.service_config=Serviceconfiguratie
-config.register_email_confirm=E-mailbevestiging registreren
-config.disable_register=Registratie uitgeschakeld
-config.show_registration_button=Registeren knop weergeven
-config.require_sign_in_view=Inloggen vereist om te kunnen inzien
-config.enable_cache_avatar=Avatar Cache inschakelen
-config.mail_notify=E-mailnotificaties
-config.disable_key_size_check=Disable Minimum Key Size Check
-config.enable_captcha=Enable Captcha
-config.active_code_lives=Actieve Code leven
-config.reset_password_code_lives=Reset wachtwoord Code leven
-config.webhook_config=Webhook configuratie
-config.queue_length=Lengte van wachtrij
-config.deliver_timeout=Bezorging verlooptijd
-config.skip_tls_verify=TLS certificaat controle overslaan
-config.mailer_config=Mailerconfiguatie
-config.mailer_enabled=Ingeschakeld
-config.mailer_disable_helo=Schakel HELO uit
-config.mailer_name=Naam
-config.mailer_host=Host
-config.mailer_user=Gebruiker
-config.oauth_config=OAuth-configuratie
-config.oauth_enabled=Ingeschakeld
-config.cache_config=Cache-configuratie
-config.cache_adapter=Cache-adapter
-config.cache_interval=Cache-interval
-config.cache_conn=Cache-connectie
-config.session_config=Sessieconfiguratie
-config.session_provider=Sessieprovider
-config.provider_config=Provider config
-config.cookie_name=Cookie naam
-config.enable_set_cookie=Set Cookie inschakelen
-config.gc_interval_time=GC interval time
-config.session_life_time=Sessie duur
-config.https_only=Alleen HTTPS
-config.cookie_life_time=Cookie duur leeftijd
-config.picture_config=Foto configuratie
-config.picture_service=Foto service
-config.disable_gravatar=Gravatar uitschakelen
-config.log_config=Logconfiguratie
-config.log_mode=Log-modus
-
-monitor.cron=Cron-taken
-monitor.name=Naam
-monitor.schedule=Planning
-monitor.next=Volgende
-monitor.previous=Vorige
-monitor.execute_times=Aantal keren uitgevoerd
-monitor.process=Draaiende processen
-monitor.desc=Omschrijving
-monitor.start=Starttijd
-monitor.execute_time=Uitvoertijd
-
-notices.system_notice_list=Systeem aankondigingen
-notices.type=Type
-notices.type_1=Opslagplaats
-notices.desc=Beschrijving
-notices.op=Op.
-notices.delete_success=Systeem bericht is met succes verwijderd.
-
-[action]
-create_repo=repositorie aangemaakt in <a href="%s">%s</a>
-rename_repo=renamed repository from <code>%[1]s</code> to <a href="%[2]s">%[3]s</a>
-commit_repo=push update naar <a href="%s/src/%s">%[2]s</a> in <a href="%[1]s">%[3]s</a>
-create_issue=`opende issue in <a href="%s/issues/%s">%s#%[2]s</a>`
-create_pull_request=`created pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-comment_issue=`reactie op issue <a href="%s/issues/%s">%s#%[2]s</a>`
-merge_pull_request=`merged pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-transfer_repo=repositorie verplaatst naar <code>%s</code> naar <a href="%s">%s</a>
-push_tag=geduwd label <a href="%s/src/%s"> %[2]s</a> naar <a href="%[1]s"> %[3]s</a>
-compare_2_commits=Weergave vergelijking voor deze 2 commits
-
-[tool]
-ago=geleden
-from_now=vanaf nu
-now=nu
-1s=1 seconde %s
-1m=1 minuut %s
-1h=1 uur %s
-1d=1 dag %s
-1w=1 week %s
-1mon=1 maand %s
-1y=1 jaar %s
-seconds=%d seconden %s
-minutes=%d minuten %s
-hours=%d uur %s
-days=%d dagen %s
-weeks=%d weken %s
-months=%d maanden %s
-years=%d jaren %s
-raw_seconds=seconden
-raw_minutes=minuten
-
-[dropzone]
-default_message=Drop bestanden hier of klik om te uploaden.
-invalid_input_type=U kunt geen bestanden van dit type uploaden.
-file_too_big=Bestandsgrootte ({{filesize}} MB) overschrijdt de maximale grootte ({{maxFilesize}} MB).
-remove_file=Verwijder bestand
-
+app_desc=Een eenvoudige zelfgehoste Git service geschreven in Go + +home=Huis +dashboard=Dashboard +explore=Verkennen +help=Help +sign_in=Inloggen +sign_out=Afmelden +sign_up=Aanmelden +register=Registreer +website=Website +version=Versie +page=Pagina +template=Sjabloon +language=Taal +create_new=Create... +user_profile_and_more=Gebruikersprofiel en meer +signed_in_as=Aangemeld als + +username=Gebruikersnaam +email=E-mail +password=Wachttwoord +re_type=Verificatie +captcha=CAPTCHA + +repository=Repositorie +organization=Organisatie +mirror=Spiegel +new_repo=Nieuwe repositorie +new_migrate=Nieuwe migratie +new_fork=Nieuwe vork Repository +new_org=Nieuwe organisatie +manage_org=Beheer organisaties +admin_panel=Adminpaneel +account_settings=Accountinstellingen +settings=Instellingen +your_profile=Uw profiel +your_settings=Uw instellingen + +news_feed=Nieuwsfeed +pull_requests=Pull-aanvragen +issues=Kwesties + +cancel=Annuleer + +[search] +search=Zoeken... +repository=Opslagplaats +user=Gebruiker +issue=Probleem +code=Code + +[install] +install=Installatie +title=Installatiestappen voor de eerste keer opstarten +docker_helper=If you're running Gogs inside Docker, please read <a target="_blank" href="%s">Guidelines</a> carefully before you change anything in this page! +requite_db_desc=Gogs requires MySQL, PostgreSQL, SQLite3 or TiDB. +db_title=Database instellingen +db_type=Database-type +host=Host +user=Gebruikersnaam +password=Wachtwoord +db_name=Database naam +db_helper=Gebruik InnoDB engine met utf8_general_ci karakterset voor MySQL. +ssl_mode=SSL-modus +path=Pad +sqlite_helper=The file path of SQLite3 or TiDB database. +err_empty_db_path=SQLite3 or TiDB database path cannot be empty. +err_invalid_tidb_name=TiDB database name does not allow characters "." and "-". +no_admin_and_disable_registration=You cannot disable registration without creating an admin account. +err_empty_admin_password=Admin password cannot be empty. + +general_title=Toepassing algemene instellingen +app_name=Applicatienaam +app_name_helper=Plaats hier je organisatienaam in grote letters! +repo_path=Repositories basis directorie +repo_path_helper=Alle remote Git repositories worden in deze directorie opgeslagen +run_user=Uitvoerende gebruikersnaam +run_user_helper=Deze gebruiker moet toegang hebben tot de git repositorie directorie en moet Gogs kunnen starten +domain=Domein +domain_helper=Dit heeft invloed op de SSH kloon URLs +ssh_port=SSH-poort +ssh_port_helper=Nummer van de poort die uw SSH-server gebruikt, laat dit leeg om de SSH functie uit te schakelen. +http_port=HTTP-poort +http_port_helper=Poortnummer waar het programma naar luistert. +app_url=Applicatie URL +app_url_helper=Dit heeft invloed op de HTTP/HTTPS kloon urls en de urls die in de email worden gebruikt + +optional_title=Optionele instellingen +email_title=E-mail service instellingen +smtp_host=SMTP host +smtp_from=Afzender +smtp_from_helper=Email afzender, RFC 5322. Dit kan gewoon een email adres zijn of het "Naam"<email@example.com> formaat. +mailer_user=Afzender e-mail / gebruikersnaam +mailer_password=Wachtwoord +register_confirm=Activeer registratie emails +mail_notify=Activeer e-mailnotificaties +server_service_title=Server en andere Services-instellingen +offline_mode=Off line modus inschakelen +offline_mode_popup=Schakel CDN uit in productiemodus, alle bestanden worden lokaal aangeboden. +disable_gravatar=Gravatar Service uitschakelen +disable_gravatar_popup=Schakel Gravatar en andere bronnen uit, alle avatars worden door gebruikers geüpload of zijn standaard. +disable_registration=Schakel zelfregistratie uit +disable_registration_popup=Schakel zelfregistratie uit, alleen admins kunnen accounts maken. +enable_captcha=Enable Captcha +enable_captcha_popup=Require validate captcha for user self-registration. +require_sign_in_view=Schakel vereiste aanmelding om pagina's te zien in +require_sign_in_view_popup=Alleen ingelogde gebruikers kunnen pagina's bekijken, bezoekers kunnen alleen de login/registratie pagina's zien. +admin_setting_desc=U hoeft niet meteen een administratie account te maken, de gebruiker met ID=1 krijgt automatisch administratierechten. +admin_title=Instellingen beheerdersaccount +admin_name=Gebruikersnaam +admin_password=Wachtwoord +confirm_password=Verifieer wachtwoord +admin_email=Admin E-mail +install_gogs=Installeer Gogs +test_git_failed=Git test niet gelukt: 'git' commando %v +sqlite3_not_available=Uw versie biedt geen ondersteuning voor SQLite3, download de officiële binaire versie van %s, niet de gobuild versie. +invalid_db_setting=Uw database instellingen zijn niet correct: %v +invalid_repo_path=Repositorie basis pad is niet correct: %v +run_user_not_match=De uitvoerende gebruiker is niet de huidig gebruiker: %s -> %s +save_config_failed=Kan de configuratie niet opslaan: %v +invalid_admin_setting=Uw admin-instellingen zijn niet geldig: %v +install_success=Welkom! Wij zijn veheugd dat u voor Gogs heeft gekozen, veel plezier en tot ziens + +[home] +uname_holder=Gebruikersnaam of e-mail +password_holder=Wachtwoord +switch_dashboard_context=Wissel voorpaginacontext +my_repos=Mijn repositories +collaborative_repos=Gedeelde repositories +my_orgs=Mijn organisaties +my_mirrors=Mijn mirrors +view_home=Bekijk %s + +issues.in_your_repos=In uw repositories + +[explore] +repos=Repositories + +[auth] +create_new_account=Maak nieuw account aan +register_hepler_msg=Heeft u al een account? Meld u nu aan! +social_register_hepler_msg=Heeft u al een account? Koppel nu! +disable_register_prompt=Sorry, registratie is uitgeschakeld. Neem contact op met de beheerder van deze site. +disable_register_mail=Sorry, bevestiging van registratie per e-mail is uitgeschakeld. +remember_me=Onthoud mij +forgot_password=Wachtwoord vergeten +forget_password=Wachtwoord vergeten? +sign_up_now=Een account nodig? Meld u nu aan. +confirmation_mail_sent_prompt=Een bevestigingsemail is gestuurd naar <b>%s</b>, Bevestig u aanvraag binnen %d uren om uw registratie te voltooien. +active_your_account=Activeer uw account +resent_limit_prompt=Sorry, u heeft te snel na elkaar een aanvraag gedaan voor een activatie mail. Wacht drie minuten voor uw volgende aanvraag. +has_unconfirmed_mail=Beste %s, u heeft een onbevestigd e-mailadres (<b>%s</b>). Als u nog geen bevestiging heeft ontvangen, of u een nieuwe aanvraag wilt doen, klik dan op de onderstaande knop. +resend_mail=Klik hier om uw activatie mail nog een keer te verzenden +email_not_associate=Dit e-mailadres is niet gekoppeld aan een account. +send_reset_mail=Klik hier om uw wachtwoord reset mail (nogmaals) te versturen +reset_password=Reset uw wachtwoord +invalid_code=Sorry, uw bevestigingscode is verlopen of niet meer geldig. +reset_password_helper=Klik hier om uw wachtwoord opnieuw in te stellen. +password_too_short=De lengte van uw wachtwoord moet minimaal zes karakters zijn. + +[mail] +activate_account=Please activate your account +activate_email=Verify your e-mail address +reset_password=Reset your password +register_success=Register success, Welcome +register_notify=Welcome on board + +[modal] +yes=Ja +no=Nee +modify=Aanpassen + +[form] +UserName=Gebruikersnaam +RepoName=Repositorie naam +Email=e-mailadres +Password=Wachtwoord +Retype=Verifieer wachtwoord +SSHTitle=SSH sleutel naam +HttpsUrl=HTTPS-URL +PayloadUrl=Nettolading URL +TeamName=Team naam +AuthName=Autorisatienaam +AdminEmail=E-mail beheerder + +require_error=kan niet leeg zijn. +alpha_dash_error=moet een valide alfanumeriek of dash(-_) karakter zijn. +alpha_dash_dot_error=moet een valide alfanumeriek, dash(-_) of (.) punt karakter zijn. +size_error=moet groter zijn dan %s +min_size_error=moet minimaal %s karakters bevatten. +max_size_error=mag maximaal %s karakters bevatten. +email_error=is niet een valide e-mail adres. +url_error=is niet een valide URL. +include_error=` must contain substring '%s'.` +unknown_error=Onbekende fout: +captcha_incorrect=Captcha komt niet overeen. +password_not_match=Wachtwoord en verificatie wachtwoord komen niet overeen. + +username_been_taken=Gebruikersnaam is al in gebruik. +repo_name_been_taken=Repositorie naam is al in gebruik. +org_name_been_taken=Organisatie naam is al in gebruik. +team_name_been_taken=Team naam is al in gebruik. +email_been_used=e-mailadres is al in gebruik. +illegal_team_name=Team naam bevat illegale karakters. +username_password_incorrect=Gebruikersnaam of wachtwoord is niet correct. +enterred_invalid_repo_name=U heeft een onjuiste repositorie naam ingevoerd. +enterred_invalid_owner_name=U heeft een onjuiste eigenaar ingevoerd. +enterred_invalid_password=U heeft een onjuiste wachtwoord ingevoerd. +user_not_exist=Gegeven gebruiker bestaat niet. +last_org_owner=De gebruiker die u probeert te verwijderen is het enige lid (eigenaar) van dit team. U moet eerst nieuwe lid (eigenaar) aanstellen. + +invalid_ssh_key=Sorry, we zijn niet in staat om uw SSH-sleutel te verifiëren: %s +unable_verify_ssh_key=Gogs kan niet controleren of uw SSH-sleutel, maar wij gaan ervan uit dat is geldig, zorg ervoor dat uzelf. +auth_failed=Verificatie mislukt: %v + +still_own_repo=Uw account heeft nog een eigendom op een repositorie. U moet deze eerst verwijderen of overdragen. +still_has_org=Uw account nog steeds lidmaatschap van organisatie, u hebt naar links of hen eerst verwijderen. +org_still_own_repo=De organisatie heeft nog eigendomen op repositories. U moet deze eerst verwijderen of overdragen. + +still_own_user=Deze authenticatie methode wordt nog gebruikt door sommige gebruikers. U moet hen eerst verplaatsen of verwijderen. + +target_branch_not_exist=Doel branch bestaat niet + +[user] +change_avatar=Verander uw avatar op Gravatar.com +change_custom_avatar=Wijzig uw avatar in de instellingen +join_on=Aangemeld op +repositories=repositories +activity=Openbare activiteit +followers=Volgers +starred=Sterren +following=Volgt + +form.name_reserved=De gebruikersnaam '%s' is gereserveerd. +form.name_pattern_not_allowed=Het gebruikersnaam patroon '%s' is niet toegestaan. + +[settings] +profile=Profiel +password=Wachtwoord +ssh_keys=SSH-sleutels +social=Sociale netwerk-accounts +applications=Toepassingen +orgs=Organisaties +delete=Verwijder account +uid=uid + +public_profile=Openbaar profiel +profile_desc=Uw e-mailadres is openbaar en zal gebruikt worden voor alle account gerelateerde berichtgevingen en bewerkingingen die via de website worden gedaan. +full_name=Volledige naam +website=Website +location=Locatie +update_profile=Profile bijwerken +update_profile_success=Uw profiel is succesvol bijgewerkt. +change_username=Username veranderd +change_username_prompt=This change will affect the way how links relate to your account. +continue=Doorgaan +cancel=Annuleren + +enable_custom_avatar=Aangepaste avatar inschakelen +enable_custom_avatar_helper=Avatar niet ophalen van Gravatar +choose_new_avatar=Kies een nieuwe avatar +update_avatar=Avatar instelling bijwerken +uploaded_avatar_not_a_image=Geüpload bestand is geen afbeelding. +no_custom_avatar_available=Geen aangepaste avatar beschikbaar, kan niet worden ingeschakeld. +update_avatar_success=Instellingen voor avatar succesvol bijgewerkt. + +change_password=Verander wachtwoord +old_password=Huidige wachtwoord +new_password=Nieuw wachtwoord +retype_new_password=Retype New Password +password_incorrect=Huidig wachtwoord is niet correct. +change_password_success=Wachtwoord is succesvol gewijzigd. U kunt nu met uw nieuwe wachtwoord inloggen. + +emails=E-mailadressen +manage_emails=E-mailadressen beheren +email_desc=Uw primaire e-mailadres zal worden gebruikt voor meldingen en andere administratieve taken. +primary=Primair +primary_email=Instellen als primair +delete_email=Verwijder +email_deletion=E-mail Deletion +email_deletion_desc=Delete this e-mail address will remove related information from your account. Do you want to continue? +email_deletion_success=E-mail has been deleted successfully! +add_new_email=Nieuw e-mailadres toevoegen +add_email=E-mailadres toevoegen +add_email_confirmation_sent=Een nieuwe bevestiging e-mail werd verstuurd naar '%s', gelieve uw inbox in de komende %d uren te controleren om het bevestigingsproces te voltooien. +add_email_success=Het e-mailadres was toegevoegd. + +manage_ssh_keys=Beheer SSH sleutels +add_key=Sleutel toevoegen +ssh_desc=Dit is een lijst van alle SSH sleutels die gekoppeld zijn aan uw account. Verwijder alle sleutels die u niet herkent. +ssh_helper=<strong>De behoeftehulp van?</strong> Check out onze gids voor het <a href="%s"> genereren van SSH sleutels</a> of <a href="%s"> algemene SSH</a> problemen. +add_new_key=SSH sleutel toevoegen +ssh_key_been_used=Publieke sleutel werd gebruikt. +ssh_key_name_used=Een publieke sleutel met dezelfde naam bestaat al. +key_name=Sleutel naam +key_content=Inhoud +add_key_success=Nieuwe SSH sleutel '%s' werd met succes toegevoegd! +delete_key=Verwijder +ssh_key_deletion=SSH sleutel verwijderen +ssh_key_deletion_desc=Het verwijderen van deze SSH sleutel zal alle verwante toegang tot uw account verwijderen. Wilt u doorgaan? +ssh_key_deletion_success=SSH sleutel is succesvol verwijderd! +add_on=Toegevoegd op +last_used=Laatst gebruikt op +no_activity=Geen recente activiteiten +key_state_desc=Deze sleutel werd gebruikt in de laatste 7 dagen +token_state_desc=Deze token is de laatste 7 dagen gebruikt + +manage_social=Beheer gekoppelde sociale accounts +social_desc=Dit is een lijst van de bijbehorende sociale accounts koppelingen, Verwijder eventueel koppelingen die u niet herkent. +unbind=Loskoppelen +unbind_success=Sociaal account is ontkoppeld. + +manage_access_token=Persoonlijke toegangstokens beheren +generate_new_token=Nieuwe Token genereren +tokens_desc=Tokens die u hebt gegenereerd om toegang tot de Gogs APIs te verkrijgen. +new_token_desc=Zoals voor nu, moet elke token zal hebben volledige toegang tot uw account. +token_name=Symbolische naam +generate_token=Token genereren +generate_token_succees=Nieuwe toegangstoken is met succes gegenereerd! Zorg ervoor dat uw nieuwe persoonlijke toegangstoken nu kopiëren. U zal niet zitten kundig voor zien het weer! +delete_token=Verwijderen +access_token_deletion=Persoonlijke toegang token verwijderen +access_token_deletion_desc=Verwijderen van deze persoonlijke toegang token zal alle verwante toegang verwijderen. Wilt u doorgaan? +delete_token_success=Persoonlijke toegangstoken is met succes verwijderd! Vergeet niet uw toepassingen ook bij te werken. + +delete_account=Verwijder uw account +delete_prompt=Deze handeling zal uw account definitief verwijderen, u kunt dit <strong> NIET </strong> terug draaien! +confirm_delete_account=Bevestig verwijdering +delete_account_title=Account verwijderen +delete_account_desc=Dit account zal permanent worden verwijderd. Wilt u doorgaan? + +[repo] +owner=Eigenaar +repo_name=Repositorie naam +repo_name_helper=Een goede repositorie naam is kort, memorabel en <strong>uniek</strong>. +visibility=Zichtbaarheid +visiblity_helper=Deze repositorie is <span class="ui red text">privaat</span> +visiblity_helper_forced=Site admin has forced all new repositories to be <span class="ui red text">Private</span> +visiblity_fork_helper=(Verandering van deze waarde zal van invloed zijn op alle forks) +clone_helper=De behoeftehulp van klonen? Bezoek <a target="_blank" href="%s"> helpen</a>! +fork_repo=Vork Repository +fork_from=Afsplitsing van +fork_visiblity_helper=Gevorkte repository wijzigen zijn bereik potentiële kopers niet +repo_desc=Omschrijving +repo_lang=Taal +repo_lang_helper=Selecteer .gitignore bestanden +license=Licentie +license_helper=Selecteer een licentie bestand +readme=Leesmij-bestand +readme_helper=Selecteer een sjabloon voor het Leesmij-bestand +auto_init=Initialiseer deze repositorie met de geselecteerde bestanden en sjabloon +create_repo=Nieuwe Repositorie +default_branch=Standaard branch +mirror_interval=Mirror interval(uur) +watchers=Watchers +stargazers=Stargazers +forks=Forks + +form.name_reserved=Repositorienaam '%s' is gereserveerd. +form.name_pattern_not_allowed=Repositorie naampatroon '%s' is niet toegestaan. + +need_auth=Autorisatie vereist +migrate_type=Migratie type +migrate_type_helper=Deze repositorie zal een <span class="text blue">mirror</span> zijn +migrate_repo=Migreer repositorie +migrate.clone_address=Clone adres +migrate.clone_address_desc=Dit kan een HTTP/HTTPS/GIT URL zijn of een lokaal pad. +migrate.permission_denied=You are not allowed to import local repositories. +migrate.invalid_local_path=Ongeldig lokaal pad, het pad bestaat niet of het is geen map. +migrate.failed=Migration failed: %v + +forked_from=geforked van +fork_from_self=U kunt geen repository forken die u al beheert! +copy_link=Kopieer +copy_link_success=Copied! +copy_link_error=Press ⌘-C or Ctrl-C to copy +copied=Gekopieerd +unwatch=Negeren +watch=Volgen +unstar=Ontster +star=Ster +fork=Vork + +no_desc=Geen omschrijving +quick_guide=Snelstart gids +clone_this_repo=Kloon deze repositorie +create_new_repo_command=Maak een nieuwe repositorie aan vanaf de console +push_exist_repo=Push een bestaande repositorie vanaf de console +repo_is_empty=This repository is empty, please come back later! + +branch=Aftakking +tree=Boom +filter_branch_and_tag=Filter branch or tag +branches=Aftakkingen +tags=Labels +issues=Kwesties +pulls=Pull-aanvragen +labels=Labels +milestones=Mijlpalen +commits=Commits +releases=Publicaties +file_raw=Ruwe +file_history=Geschiedenis +file_view_raw=Weergave ruwe +file_permalink=Permalink + +commits.commits=Commits +commits.search=Zoeken +commits.find=zoek +commits.author=Auteur +commits.message=Bericht +commits.date=Datum +commits.older=Ouder +commits.newer=Nieuwer + +issues.new=Nieuw probleem +issues.new.labels=Labels +issues.new.no_label=Geen label +issues.new.clear_labels=Verwijder labels +issues.new.milestone=Mijlpaal +issues.new.no_milestone=Geen mijlpaal +issues.new.clear_milestone=Verwijder mijlpaal +issues.new.open_milestone=Open mijlpalen +issues.new.closed_milestone=Gesloten mijlpalen +issues.new.assignee=Verantwoordelijke +issues.new.clear_assignee=Verwijder verantwoordelijke +issues.new.no_assignee=Geen verantwoordelijke +issues.create=Maak probleem +issues.new_label=Nieuw Label +issues.new_label_placeholder=Tekst label... +issues.create_label=Maak label +issues.open_tab=%d Open +issues.close_tab=%d gesloten +issues.filter_label=Label +issues.filter_label_no_select=Geen label geselecteerd +issues.filter_milestone=Mijlpaal +issues.filter_milestone_no_select=Geen geselecteerde mijlpaal +issues.filter_assignee=Aangewezene +issues.filter_assginee_no_select=Geen geselecteerde verantwoordelijke +issues.filter_type=Type +issues.filter_type.all_issues=Alle kwesties +issues.filter_type.assigned_to_you=Aan jou toegewezen +issues.filter_type.created_by_you=Aangemaakt door jou +issues.filter_type.mentioning_you=Vermelden jou +issues.filter_sort=Sorteer +issues.filter_sort.latest=Nieuwste +issues.filter_sort.oldest=Oudste +issues.filter_sort.recentupdate=Recent bijgewerkt +issues.filter_sort.leastupdate=Minst recent bijgewerkt +issues.filter_sort.mostcomment=Meest besproken +issues.filter_sort.leastcomment=Minst besproken +issues.opened_by=%[1]s werd geopend door <a href="/%[2]s">%[3]s</a> +issues.opened_by_fake=%[1]s werd geopend door %[2]s +issues.previous=Vorige +issues.next=Volgende +issues.open_title=Open +issues.closed_title=Gesloten +issues.num_comments=%d opmerkingen +issues.commented_at=`gaf commentaar op <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.no_content=Er is nog geen inhoud. +issues.close_issue=Sluit +issues.close_comment_issue=Sluit en geef commentaar +issues.reopen_issue=Heropen +issues.reopen_comment_issue=Heropen en geef commentaar +issues.create_comment=Reageer +issues.closed_at=`gesloten om <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.reopened_at=`heropend om <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.commit_ref_at='verwees naar dit probleem vanuit een commit <a id="%[1]s" href="#%[1]s"> %[2]s'</a> +issues.poster=Poster +issues.admin=Admin +issues.owner=Eigenaar +issues.sign_up_for_free=Gratis aanmelden +issues.sign_in_require_desc=om deel te nemen in deze conversatie. Heeft u al een account? <a href="%s">Meld u aan om te reageren</a> +issues.edit=Bewerken +issues.cancel=Annuleren +issues.save=Opslaan +issues.label_title=Labelnaam +issues.label_color=Labelkleur +issues.label_count=%d labels +issues.label_open_issues=%d geopende problemen +issues.label_edit=Bewerken +issues.label_delete=Verwijder +issues.label_modify=Wijzig label +issues.label_deletion=Verwijder label +issues.label_deletion_desc=Het verwijderen van dit label zal alle informatie in de gerelateerde problemen verwijderen. Wilt u doorgaan? +issues.label_deletion_success=Label werd met succes verwijderd! + +pulls.new=New Pull Request +pulls.compare_changes=Vergelijk veranderingen +pulls.compare_changes_desc=Vergelijk twee vertakkingen en maak een pull verzoek voor wijzigingen. +pulls.compare_base=base +pulls.compare_compare=vergelijk +pulls.filter_branch=Filter branch +pulls.no_results=Geen resultaten gevonden. +pulls.nothing_to_compare=Er is niets te vergelijken omdat base en head branches dezelfde zijn. +pulls.has_pull_request=' Er is al een pull-aanvraag tussen deze twee targets: <a href="%[1]s/pulls/%[3]d"> %[2]s #% [3]d</a>' +pulls.create=Pull verzoek aanmaken +pulls.title_desc=wil %[1]d commits van <code>%[2]s</code> samenvoegen met <code>%[3]s</code> +pulls.merged_title_desc=merged %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> %[4]s +pulls.tab_conversation=Discussie +pulls.tab_commits=Commits +pulls.tab_files=Bestanden gewijzigd +pulls.reopen_to_merge=Please reopen this pull request to perform merge operation. +pulls.merged=Merged +pulls.has_merged=This pull request has been merged successfully! +pulls.data_broken=Data of this pull request has been broken due to deletion of fork information. +pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments. +pulls.can_auto_merge_desc=You can perform auto-merge operation on this pull request. +pulls.cannot_auto_merge_desc=You can't perform auto-merge operation because there are conflicts between commits. +pulls.cannot_auto_merge_helper=Please use command line tool to solve it. +pulls.merge_pull_request=Samenvoegen van pull verzoek +pulls.open_unmerged_pull_exists=`You can't perform reopen operation because there is already an open pull request (#%d) from same repository with same merge information and is waiting for merging.` + +milestones.new=Nieuwe mijlpaal +milestones.open_tab=%d geopend +milestones.close_tab=%d gesloten +milestones.closed=%s werd gesloten +milestones.no_due_date=Geen vervaldatum +milestones.open=Open +milestones.close=Sluit +milestones.new_subheader=Maak mijlpalen voor het organiseren van uw problemen. +milestones.create=Mijlpaal maken +milestones.title=Titel +milestones.desc=Beschrijving +milestones.due_date=Vervaldatum (optioneel) +milestones.clear=Leegmaken +milestones.invalid_due_date_format=Formaat vervaldatum is ongeldig, moet zijn "jjjj-mm-dd". +milestones.create_success=Mijlpaal '%s' is met succes aangemaakt! +milestones.edit=Bewerk mijlpaal +milestones.edit_subheader=Gebruik een goede beschrijving voor mijlpalen, om verwarring te voorkomen. +milestones.cancel=Annuleer +milestones.modify=Mijlpaal wijzigen +milestones.edit_success=Wijzigingen van mijlpaal '%s' is met succes opgeslagen! +milestones.deletion=Mijlpaal verwijderen +milestones.deletion_desc=Het verwijderen van dit label zal alle informatie in de gerelateerde problemen verwijderen. Wilt u doorgaan? +milestones.deletion_success=Mijlpaal is met succes verwijderd! + +settings=Instellingen +settings.options=Opties +settings.collaboration=Samenwerking +settings.hooks=Webhooks +settings.githooks=Git haken +settings.basic_settings=Basis instellingen +settings.danger_zone=Gevaren zone +settings.site=Officiële site +settings.update_settings=Instellingen bewerken +settings.change_reponame_prompt=This change will affect how links relate to the repository. +settings.transfer=Eigendom overdragen +settings.transfer_desc=Draag deze repo over aan een andere gebruiker of een organisatie waar u beheerders rechten heeft. +settings.new_owner_has_same_repo=De nieuwe eigenaar heeft al een repositorie met deze naam +settings.delete=Verwijder deze repositorie +settings.delete_desc=Als u eenmaal een repositorie verwijderd is er geen weg terug. Gelieve zeker te zijn van uw acties. +settings.transfer_notices_1=- You will lose access if new owner is a individual user. +settings.transfer_notices_2=- You will conserve access if new owner is an organization and if you're one of the owners. +settings.transfer_form_title=Please enter following information to confirm your operation: +settings.delete_notices_1=- This operation <strong>CANNOT</strong> be undone. +settings.delete_notices_2=- This operation will permanently delete the everything of this repository, including Git data, issues, comments and accesses of collaborators. +settings.delete_notices_fork_1=- If this repository is public, all forks will be became independent after deletion. +settings.delete_notices_fork_2=- If this repository is private, all forks will be removed at the same time. +settings.delete_notices_fork_3=- If you want to keep all forks after deletion, please change visibility of this repository to public first. +settings.update_settings_success=Repositorie instellingen zijn succesvol bijgewerkt. +settings.transfer_owner=Nieuwe eigenaar +settings.make_transfer=Maak overdracht +settings.transfer_succeed=Eigendom repositorie succesvol overgedragen +settings.confirm_delete=Bevestig verwijdering +settings.add_collaborator=Nieuwe medewerker toevoegen +settings.add_collaborator_success=medewerker is toegevoegd. +settings.remove_collaborator_success=medewerker is verwijderd. +settings.search_user_placeholder=Search user... +settings.user_is_org_member=Gebruiker is lid van de organisatie die als een medewerker kan niet worden toegevoegd. +settings.add_webhook=Webhook toevoegen +settings.hooks_desc=Webhooks dat de externe diensten om kennisgevingen te ontvangen wanneer bepaalde gebeurtenissen op Gogs plaatsvinden. Wanneer de opgegeven gebeurtenissen plaatsvinden, sturen we een POST-aanvraag naar elk van de URL's die u opgeeft. Meer informatie vindt u in onze <a target="_blank" href="%s"> Webhooks gids</a>. +settings.webhook_deletion=Webhook verwijderen +settings.webhook_deletion_desc=Delete this webhook will remove its information and all delivery history. Do you want to continue? +settings.webhook_deletion_success=Webhook has been deleted successfully! +settings.webhook.request=Verzoek +settings.webhook.response=Antwoord +settings.webhook.headers=Headers +settings.webhook.payload=Lading +settings.webhook.body=Inhoud +settings.githooks_desc=Git haken worden aangedreven door Git zelf, u kunt bestanden van ondersteunde haken in de lijst hieronder om aangepaste acties van toepassing bewerken. +settings.githook_edit_desc=Als haak niet actief is, zal monster inhoud worden gepresenteerd. Verlof inhoud leeg zal deze haak uitschakelen. +settings.githook_name=Haak naam +settings.githook_content=Haak inhoud +settings.update_githook=Haak bijwerken +settings.add_webhook_desc=We sturen een <code>POST</code>-aanvraag naar de onderstaande URL met details voor alle geplaatste gebeurtenissen. U kunt ook opgeven welke gegevensindeling u wenst te ontvangen (JSON, <code>x-1-800-www-Dell-vorm-urlencoded</code>, <em>enz</em>.). Meer informatie kan gevonden worden in <a target="_blank" href="%s"> Webhooks gids</a>. +settings.payload_url=Nettolading URL +settings.content_type=Content type +settings.secret=Geheim +settings.slack_username=Gebruikersnaam +settings.slack_icon_url=Icoon URL +settings.slack_color=Kleur +settings.event_desc=Bij welke gebeurtenissen wilt u dat deze webhook getriggerd wordt? +settings.event_push_only=Alleen bij de <code>push</code> event. +settings.event_send_everything=Ik moet <strong>alles</strong> hebben. +settings.event_choose=Laat me kiezen wat ik nodig heb. +settings.event_create=Creëer +settings.event_create_desc=Branch, of tag aangemaakt +settings.event_push=Push +settings.event_push_desc=Git push naar een repository +settings.active=Actief +settings.active_helper=We zullen details van de gebeurtenissen af leveren wanneer deze webhook wordt geactiveerd. +settings.add_hook_success=Nieuwe webhook toegevoegd. +settings.update_webhook=Bewerk webhook +settings.update_hook_success=Webhook is bijgewerkt. +settings.delete_webhook=Webhook verwijderen +settings.recent_deliveries=Recente bezorgingen +settings.hook_type=Type hook +settings.add_slack_hook_desc=<a href="%s"> toegestane vertraging</a> integratie toevoegen aan uw repository. +settings.slack_token=Slack token +settings.slack_domain=Slack domein +settings.slack_channel=Slack kanaal +settings.deploy_keys=Installeer sleutels +settings.add_deploy_key=Toevoegen deploy sleutel +settings.no_deploy_keys=U hebt nog geen deploy sleutels toegevoegd. +settings.title=Titel +settings.deploy_key_content=Inhoud +settings.key_been_used=Deploy sleutel inhoud werd gebruikt. +settings.key_name_used=Deploy sleutel met eenzelfde naam bestaat al. +settings.add_key_success=Nieuwe deploy sleutel '%s' werd succesvol toegevoegd! +settings.deploy_key_deletion=Verwijder deploy sleutel +settings.deploy_key_deletion_desc=Het verwijderen van deze deploy sleutel zal alle gerelateerde toegang verwijderen voor deze repositorie. Wilt u doorgaan? +settings.deploy_key_deletion_success=Deploy sleutel werd met succes verwijderd! + +diff.browse_source=Bladeren bron +diff.parent=bovenliggende +diff.commit=commit +diff.data_not_available=Diff gegevens niet beschikbaar. +diff.show_diff_stats=Toon Diff Stats +diff.stats_desc=<strong>%d gewijzigde bestanden</strong> met <strong>toevoegingen van %d</strong> en <strong>%d verwijderingen</strong> +diff.bin=BIN +diff.view_file=Bestand weergeven + +release.releases=Releases +release.new_release=Nieuwe release +release.draft=Concept +release.prerelease=Voorlopige versie +release.stable=Stabiel +release.edit=bewerken +release.ahead=<strong>%d</strong> aanpassingen aan %s sinds deze versie +release.source_code=Broncode +release.new_subheader=Publish releases to iterate product. +release.edit_subheader=Detailed change log can help users understand what has been improved. +release.tag_name=Tagnaam +release.target=Doel +release.tag_helper=Kies een bestaande tag, of creëer een nieuwe tag bij publiceren. +release.title=Title +release.content=Content +release.write=Schrijf +release.preview=Voorbeeld +release.loading=Laden... +release.prerelease_desc=Dit is een beta-versie +release.prerelease_helper=Wij wijzen u erop dat deze release is niet geschikt voor productie doeleinden. +release.cancel=Cancel +release.publish=Release publiceren +release.save_draft=Concept opslaan +release.edit_release=Release bewerken +release.delete_release=Delete This Release +release.deletion=Release Deletion +release.deletion_desc=Delete this release will delete corresponding Git tag. Do you want to continue? +release.deletion_success=Release has been deleted successfully! +release.tag_name_already_exist=Versie met deze naam bestaat al. +release.downloads=Downloads + +[org] +org_name_holder=Organisatienaam +org_full_name_holder=Organization Full Name +org_name_helper=Een goede organisatienaam is kort en memorabel. +create_org=Nieuwe organisatie aanmaken +repo_updated=Geupdate +people=Mensen +invite_someone=Iemand uitnodigen +teams=Teams +lower_members=leden +lower_repositories=repositories +create_new_team=Nieuw team aanmaken +org_desc=Omschrijving +team_name=Teamnaam +team_desc=Omschrijving +team_name_helper=U gebruikt deze naam om dit team te vermelden in conversaties. +team_desc_helper=Waar gaat dit team doen? +team_permission_desc=Welke privileges zou dit team moeten hebben? + +form.name_reserved=Organisatienaam '%s' is gereserveerd. +form.name_pattern_not_allowed=Organisatie naampatroon '%s' is niet toegestaan. + +settings=Instellingen +settings.options=Opties +settings.full_name=Volledige naam +settings.website=Website +settings.location=Locatie +settings.update_settings=Instellingen bijwerken +settings.update_setting_success=Organisatie instellingen zijn succesvol bijgewerkt. +settings.change_orgname_prompt=This change will affect how links relate to the organization. +settings.update_avatar_success=Organization avatar setting has been updated successfully. +settings.delete=Verwijder organisatie +settings.delete_account=Verwijder deze organisatie +settings.delete_prompt=Deze actie zal de origanisatie permanent verwijderen. U kunt dit <strong>NIET</strong> terug draaien! +settings.confirm_delete_account=Bevestig verwijdering +settings.delete_org_title=Verwijderen organsiatie +settings.delete_org_desc=Deze organisatie zal permanent worden verwijderd, wilt u doorgaan? +settings.hooks_desc=Een webhook toevoegen die door <strong>alle repositories</strong> in deze organisatie getriggerd kan worden. + +members.public=Openbaar +members.public_helper=maak prive +members.private=Prive +members.private_helper=maak openbaar +members.owner=Eigenaar +members.member=Lid +members.conceal=Verbergen +members.remove=Verwijderen +members.leave=Verlaat +members.invite_desc=Begin met het typen van een gebruikersnaam om een nieuw lid aan %s uit te nodigen: +members.invite_now=Nu uitnodigen + +teams.join=Lid worden +teams.leave=Vertlaat +teams.read_access=Leestoegang +teams.read_access_helper=Dit team is in staat om zijn repositories te bekijken en te klonen. +teams.write_access=Schrijf toegang +teams.write_access_helper=Dit team is in staat om zijn repositories te bekijken en push aanvragen te verwerken. +teams.admin_access=Beheerder toegang +teams.admin_access_helper=Dit team is in staat om push & pull aanvragen te verwerken en om nieuwe medewerkers toe te voegen. +teams.no_desc=Dit team heeft geen omschrijving +teams.settings=Instellingen +teams.owners_permission_desc=Eigenaren hebben volledige toegang tot <strong>alle repositories</strong> en hebben <strong>beheerder rechten</strong> over de organisatie. +teams.members=Team leden +teams.update_settings=Instellingen bijwerken +teams.delete_team=Verwijder deze team +teams.add_team_member=Nieuwe team lid aanmaken +teams.delete_team_title=Team verwijderen +teams.delete_team_desc=Dit team zal worden verwijderd. De leden van dit team zullen toegang tot alle repositories van het team verliezen. Wilt u doorgaan? +teams.delete_team_success=Gekozen team is succesvol verwijderd. +teams.read_permission_desc=Dit team heeft <strong>Lees</strong> rechten : leden kunnen repositories lezen en klonen. +teams.write_permission_desc=Dit team heeft <strong>Schrijf</strong> rechten : leden kunnen repositories lezen en push aanvragen verwerken. +teams.admin_permission_desc=Dit team heeft <strong>Beheerders</strong> rechten : leden kunnen repositories lezen en push aanvragen verwerken en medewerkers toevoegen. +teams.repositories=Teamrepositories +teams.add_team_repository=Nieuwe teamrepositorie aanmaken +teams.remove_repo=Verwijder +teams.add_nonexistent_repo=De opslagplaats die u probeert toe te voegen niet bestaat, kunt u het eerst aanmaken. + +[admin] +dashboard=Dashboard +users=Gebruikers +organizations=Orgranisaties +repositories=Repositories +authentication=Autenticaties +config=Configuratie +notices=Systeem aankondigingen +monitor=Bijhouden +first_page=First +last_page=Last +total=Total: %d + +dashboard.statistic=Statistieken +dashboard.operations=Bewerkingen +dashboard.system_status=Status Systeemmonitor +dashboard.statistic_info=Gogs database heeft <b>%d</b> gebruikers, <b>%d</b> organisaties, <b>%d</b> openbare sleutels, <b>%d</b> repositories, <b>%d</b> volgers, <b>%d</b> sterren, <b>%d</b> acties, <b>%d</b> participanten, <b>%d</b> issues, <b>%d</b> reacties, <b>%d</b> sociale accounten, <b>%d</b> volgers, <b>%d</b> mirrors, <b>%d</b> publicaties, <b>%d</b> login bronnen, <b>%d</b> webhooks, <b>%d</b> mijlpalen, <b>%d</b> labels, <b>%d</b> hook taken, <b>%d</b> teams, <b>%d</b> bijgewerkte taken, <b>%d</b> bijlagen. +dashboard.operation_name=Bewerking naam +dashboard.operation_switch=Omschakelen +dashboard.operation_run=Uitvoeren +dashboard.clean_unbind_oauth=Clean unbound OAuths +dashboard.clean_unbind_oauth_success=Alle OAuthes binding hebben verwijderd. +dashboard.delete_inactivate_accounts=Verwijder alle inactieve accounts +dashboard.delete_inactivate_accounts_success=Alle inactivering van rekeningen hebben verwijderd. +dashboard.delete_repo_archives=Verwijderen van alle repositories archieven +dashboard.delete_repo_archives_success=Alle repositories archieven hebben verwijderd. +dashboard.delete_missing_repos=Delete all repository records that lost Git files +dashboard.delete_missing_repos_success=All repository records that lost Git files have been deleted successfully. +dashboard.git_gc_repos=Garbage collectie uitvoeren +dashboard.git_gc_repos_success=Garbage collectie met succes uitgevoerd. +dashboard.resync_all_sshkeys=Herschrijf '.ssh/authorized_keys' (Let op: alle sleutels die niet van Gogs zijn zullen verloren gaan!) +dashboard.resync_all_sshkeys_success=Alle publieke sleutels zijn herschreven. +dashboard.resync_all_update_hooks=Herschrijf alle repositorie-hooks (nodig als de configuratie bestandslocatie is gewijzigd) +dashboard.resync_all_update_hooks_success=Alle repositorie-hooks zijn herschreven. + +dashboard.server_uptime=Uptime server +dashboard.current_goroutine=Huidige Goroutines +dashboard.current_memory_usage=Huidige geheugen gebruik +dashboard.total_memory_allocated=Totaal toegewezen geheugen +dashboard.memory_obtained=Geheugen gebruikt +dashboard.pointer_lookup_times=Aanwijzer Lookup keer +dashboard.memory_allocate_times=Geheugen toewijzen keer +dashboard.memory_free_times=Geheugen gratis keer +dashboard.current_heap_usage=Huidige Heap gebruik +dashboard.heap_memory_obtained=Heap-geheugen verkregen +dashboard.heap_memory_idle=Heap Memory inactief +dashboard.heap_memory_in_use=Hoop geheugen In gebruik +dashboard.heap_memory_released=Heap-geheugen vrijgegeven +dashboard.heap_objects=Heap-objecten +dashboard.bootstrap_stack_usage=Bootstrap Stack gebruik +dashboard.stack_memory_obtained=Stapel geheugen verkregen +dashboard.mspan_structures_usage=MSpan structuren gebruik +dashboard.mspan_structures_obtained=MSpan structuren verkregen +dashboard.mcache_structures_usage=MCache structuren gebruik +dashboard.mcache_structures_obtained=MCache structuren verkregen +dashboard.profiling_bucket_hash_table_obtained=Profilering emmer hashtabel verkregen +dashboard.gc_metadata_obtained=GC Metadada verkregen +dashboard.other_system_allocation_obtained=Andere systeem toewijzing verkregen +dashboard.next_gc_recycle=Volgende GC recycle +dashboard.last_gc_time=Sinds vorige GC verwerkingstijd +dashboard.total_gc_time=Totaal GC verwerkingstijd +dashboard.total_gc_pause=Totaal GC verwerkingstijd +dashboard.last_gc_pause=Laatste GC verwerkingstijd +dashboard.gc_times=GC verwerkingen + +users.user_manage_panel=Gebruikers beheren +users.new_account=Nieuw account aanmaken +users.name=Naam +users.activated=Geactiveerd +users.admin=Admin +users.repos=Repos +users.created=Aangemaakt +users.send_register_notify=Send Registration Notification To User +users.new_success=New account '%s' has been created successfully. +users.edit=Bewerken +users.auth_source=Authentication Source +users.local=Lokaal +users.auth_login_name=Authentication Login Name +users.password_helper=Leave it empty to remain unchanged. +users.update_profile_success=Profiel is succesvol bijgewerkt. +users.edit_account=Bewerk account +users.is_activated=Dit account is geactiveerd +users.is_admin=Dit account heeft beheerdersrechten +users.allow_git_hook=Deze account beschikt over machtigingen voor het maken van Git haken +users.allow_import_local=This account has permissions to import local repositories +users.update_profile=Account profiel bijwerken +users.delete_account=Dit account verwijderen +users.still_own_repo=Dit account is nog steeds eigendom van een repositorie. U moet deze repositorie eerst verwijderen of overdragen. +users.still_has_org=Deze account nog steeds lidmaatschap van organisatie, u hebt naar links of hen eerst verwijderen. +users.deletion_success=Account has been deleted successfully! + +orgs.org_manage_panel=Organisaties beheren +orgs.name=Naam +orgs.teams=Teams +orgs.members=Leden + +repos.repo_manage_panel=Repositoriebeheerpaneel +repos.owner=Eigenaar +repos.name=Naam +repos.private=Prive +repos.watches=Volgers +repos.stars=Sterren +repos.issues=Kwesties + +auths.auth_manage_panel=Authentication Manage Panel +auths.new=Add New Source +auths.name=Naam +auths.type=Type +auths.enabled=Ingeschakeld +auths.updated=Bijgewerkt +auths.auth_type=Authentication Type +auths.auth_name=Authentication Name +auths.domain=Domein +auths.host=Host +auths.port=Poort +auths.bind_dn=Binden DN +auths.bind_password=Bind Password +auths.bind_password_helper=Warning: This password is stored in plain text. Do not use a high privileged account. +auths.user_base=User Search Base +auths.user_dn=User DN +auths.attribute_name=Voornaam attribuut +auths.attribute_surname=Achternaam attribuut +auths.attribute_mail=E-mail attribuut +auths.filter=User Filter +auths.admin_filter=Admin Filter +auths.ms_ad_sa=MS Ad SA +auths.smtp_auth=SMTP Authentication Type +auths.smtphost=SMTP host +auths.smtpport=SMTP poort +auths.allowed_domains=Allowed Domains +auths.allowed_domains_helper=Leave it empty to not restrict any domains. Multiple domains should be separated by comma ','. +auths.enable_tls=Activeer TLS-encryptie +auths.skip_tls_verify=Skip TLS Verify +auths.pam_service_name=PAM servicenaam +auths.enable_auto_register=Activeer automatische registratie +auths.tips=Tips +auths.edit=Edit Authentication Setting +auths.activated=Deze autorisatiemethode is geactiveerd +auths.new_success=New authentication '%s' has been added successfully. +auths.update_success=Authentication setting has been updated successfully. +auths.update=Update Authentication Setting +auths.delete=Delete This Authentication +auths.delete_auth_title=Authentication Deletion +auths.delete_auth_desc=This authentication is going to be deleted, do you want to continue? +auths.deletion_success=Authentication has been deleted successfully! + +config.server_config=Serverconfiguratie +config.app_name=Applicatienaam +config.app_ver=Applicatieversie +config.app_url=Applicatie-URL +config.domain=Domein +config.offline_mode=Offline-modus +config.disable_router_log=Router-log uitschakelen +config.run_user=Uitvoerende gebruiker +config.run_mode=Uitvoer modus +config.repo_root_path=Repositorie basis pad +config.static_file_root_path=Statische bestanden basis pad +config.log_file_root_path=Log bestand basis pad +config.script_type=Script type +config.reverse_auth_user=Omgekeerde verificatie gebruiker +config.db_config=Databaseconfiguratie +config.db_type=Type +config.db_host=Host +config.db_name=Naam +config.db_user=Gebruiker +config.db_ssl_mode=SSL modus +config.db_ssl_mode_helper=(alleen voor "postgres") +config.db_path=Pad +config.db_path_helper=(for "sqlite3" and "tidb") +config.service_config=Serviceconfiguratie +config.register_email_confirm=E-mailbevestiging registreren +config.disable_register=Registratie uitgeschakeld +config.show_registration_button=Registeren knop weergeven +config.require_sign_in_view=Inloggen vereist om te kunnen inzien +config.enable_cache_avatar=Avatar Cache inschakelen +config.mail_notify=E-mailnotificaties +config.disable_key_size_check=Disable Minimum Key Size Check +config.enable_captcha=Enable Captcha +config.active_code_lives=Actieve Code leven +config.reset_password_code_lives=Reset wachtwoord Code leven +config.webhook_config=Webhook configuratie +config.queue_length=Lengte van wachtrij +config.deliver_timeout=Bezorging verlooptijd +config.skip_tls_verify=TLS certificaat controle overslaan +config.mailer_config=Mailerconfiguatie +config.mailer_enabled=Ingeschakeld +config.mailer_disable_helo=Schakel HELO uit +config.mailer_name=Naam +config.mailer_host=Host +config.mailer_user=Gebruiker +config.oauth_config=OAuth-configuratie +config.oauth_enabled=Ingeschakeld +config.cache_config=Cache-configuratie +config.cache_adapter=Cache-adapter +config.cache_interval=Cache-interval +config.cache_conn=Cache-connectie +config.session_config=Sessieconfiguratie +config.session_provider=Sessieprovider +config.provider_config=Provider config +config.cookie_name=Cookie naam +config.enable_set_cookie=Set Cookie inschakelen +config.gc_interval_time=GC interval time +config.session_life_time=Sessie duur +config.https_only=Alleen HTTPS +config.cookie_life_time=Cookie duur leeftijd +config.picture_config=Foto configuratie +config.picture_service=Foto service +config.disable_gravatar=Gravatar uitschakelen +config.log_config=Logconfiguratie +config.log_mode=Log-modus + +monitor.cron=Cron-taken +monitor.name=Naam +monitor.schedule=Planning +monitor.next=Volgende +monitor.previous=Vorige +monitor.execute_times=Aantal keren uitgevoerd +monitor.process=Draaiende processen +monitor.desc=Omschrijving +monitor.start=Starttijd +monitor.execute_time=Uitvoertijd + +notices.system_notice_list=Systeem aankondigingen +notices.type=Type +notices.type_1=Opslagplaats +notices.desc=Beschrijving +notices.op=Op. +notices.delete_success=Systeem bericht is met succes verwijderd. + +[action] +create_repo=repositorie aangemaakt in <a href="%s">%s</a> +rename_repo=renamed repository from <code>%[1]s</code> to <a href="%[2]s">%[3]s</a> +commit_repo=push update naar <a href="%[1]s/src/%[2]s">%[3]s</a> in <a href="%[1]s">%[4]s</a> +create_issue=`opende issue in <a href="%s/issues/%s">%s#%[2]s</a>` +create_pull_request=`created pull request <a href="%s/pulls/%s">%s#%[2]s</a>` +comment_issue=`reactie op issue <a href="%s/issues/%s">%s#%[2]s</a>` +merge_pull_request=`merged pull request <a href="%s/pulls/%s">%s#%[2]s</a>` +transfer_repo=repositorie verplaatst naar <code>%s</code> naar <a href="%s">%s</a> +push_tag=geduwd label <a href="%s/src/%s"> %[2]s</a> naar <a href="%[1]s"> %[3]s</a> +compare_2_commits=Weergave vergelijking voor deze 2 commits + +[tool] +ago=geleden +from_now=vanaf nu +now=nu +1s=1 seconde %s +1m=1 minuut %s +1h=1 uur %s +1d=1 dag %s +1w=1 week %s +1mon=1 maand %s +1y=1 jaar %s +seconds=%d seconden %s +minutes=%d minuten %s +hours=%d uur %s +days=%d dagen %s +weeks=%d weken %s +months=%d maanden %s +years=%d jaren %s +raw_seconds=seconden +raw_minutes=minuten + +[dropzone] +default_message=Drop bestanden hier of klik om te uploaden. +invalid_input_type=U kunt geen bestanden van dit type uploaden. +file_too_big=Bestandsgrootte ({{filesize}} MB) overschrijdt de maximale grootte ({{maxFilesize}} MB). +remove_file=Verwijder bestand + diff --git a/conf/locale/locale_pl-PL.ini b/conf/locale/locale_pl-PL.ini index 9da18e61..0682a7dc 100755 --- a/conf/locale/locale_pl-PL.ini +++ b/conf/locale/locale_pl-PL.ini @@ -1,992 +1,1009 @@ -app_desc=Bezbolesna usługa Git napisana w Go działająca na własnym serwerze
-
-home=Strona główna
-dashboard=Pulpit
-explore=Odkrywaj
-help=Pomoc
-sign_in=Zaloguj się
-sign_out=Wyloguj
-sign_up=Zarejestruj się
-register=Zarejestruj się
-website=Strona
-version=Wersja
-page=Strona
-template=Szablon
-language=Język
-create_new=Utwórz...
-user_profile_and_more=Profil użytkownika i więcej
-signed_in_as=Zalogowany jako
-
-username=Nazwa Użytkownika
-email=E-mail
-password=Hasło
-re_type=Wpisz ponownie
-captcha=Captcha
-
-repository=Repozytorium
-organization=Organizacja
-mirror=Mirror
-new_repo=Nowe repozytorium
-new_migrate=Nowa migracja
-new_fork=Forkuj repozytorium
-new_org=Nowa organizacja
-manage_org=Zarządzaj organizacjami
-admin_panel=Panel admina
-account_settings=Ustawienia konta
-settings=Ustawienia
-your_profile=Twój profil
-your_settings=Twoje ustawienia
-
-news_feed=Kanał aktualności
-pull_requests=Oczekujące zmiany
-issues=Problemy
-
-cancel=Anuluj
-
-[search]
-search=Wyszukiwanie...
-repository=Repozytorium
-user=Użytkownik
-issue=Zgłoszenie
-code=Kod
-
-[install]
-install=Instalacja
-title=Kroki instalacyjne dla pierwszego uruchomienia
-docker_helper=If you're running Gogs inside Docker, please read <a target="_blank" href="%s">Guidelines</a> carefully before you change anything in this page!
-requite_db_desc=Gogs requires MySQL, PostgreSQL, SQLite3 or TiDB.
-db_title=Ustawienia bazy danych
-db_type=Typ bazy danych
-host=Host
-user=Użytkownik
-password=Hasło
-db_name=Nazwa bazy danych
-db_helper=Proszę użyć silnika INNODB z kodowaniem utf8_general_ci dla MySQL.
-ssl_mode=Tryb SSL
-path=Ścieżka
-sqlite_helper=The file path of SQLite3 or TiDB database.
-err_empty_db_path=SQLite3 or TiDB database path cannot be empty.
-err_invalid_tidb_name=TiDB database name does not allow characters "." and "-".
-no_admin_and_disable_registration=Rejestracji nie można wyłączyć bez tworzenia konta admina.
-err_empty_admin_password=Hasło admina nie może być pusta.
-
-general_title=Ustawienia ogólne Gogs
-app_name=Nazwa aplikacji
-app_name_helper=Umieść tutaj wielką i głośną nazwę swojej organizacji!
-repo_path=Katalog repozytoriów
-repo_path_helper=W tym katalogu zostaną zapisane wszystkie repozytoria Git.
-run_user=Nazwa użytkownika uruchomieniowego
-run_user_helper=Użytkownik musi mieć dostęp do katalogu repozytoriów i uruchamiania Gogs.
-domain=Domena
-domain_helper=To wpłynie na URLe do klonowania poprzez SSH.
-ssh_port=Port SSH
-ssh_port_helper=Numer portu, z którego korzysta z serwer SSH; pozostaw puste, aby wyłączyć funkcję SSH.
-http_port=Port HTTP
-http_port_helper=Numer portu na którym aplikacja jest dostępna.
-app_url=Adres URL aplikacji
-app_url_helper=To wpłynie na adresy klonowania HTTP/HTTPS i w wiadomościach e-mail.
-
-optional_title=Ustawienia opcjonalne
-email_title=Ustawienia serwera e-mail
-smtp_host=Serwer SMTP
-smtp_from=Od
-smtp_from_helper=Adres w polu "Od", zgodnie z RFC 5322. Może być to po prostu adres email, bądź adres w formacie "Nazwa" <email@example.com>.
-mailer_user=Nadawca wiadomości E-mail
-mailer_password=Hasło nadawcy
-register_confirm=Włącz potwierdzenia rejestracji
-mail_notify=Włącz powiadomienia e-mail
-server_service_title=Ustawienia serwera i innych usług
-offline_mode=Włącz tryb offline
-offline_mode_popup=Wyłącz CDN, nawet w trybie produkcyjnym, wszystkie pliki zasobów będą podawane lokalnie.
-disable_gravatar=Wyłącz usługę Gravatar
-disable_gravatar_popup=Disable Gravatar and custom sources, all avatars are uploaded by users or default.
-disable_registration=Wyłącz samodzielną rejestrację
-disable_registration_popup=Wyłącz samodzielną rejestrację użytkownika, tylko administrator będzie mógł tworzyć konta.
-enable_captcha=Włącz Captcha
-enable_captcha_popup=Require validate captcha for user self-registration.
-require_sign_in_view=Włącz wymóg zalogowania do przeglądania stron
-require_sign_in_view_popup=Tylko zalogowani użytkownicy będą mogli przeglądać strony, goście zobaczą tylko stronę logowania.
-admin_setting_desc=Nie musisz tworzyć konta administratora teraz, użytkownik z ID = 1 zyska dostęp administratora automatycznie.
-admin_title=Ustawienia konta administratora
-admin_name=Nazwa Użytkownika
-admin_password=Hasło
-confirm_password=Potwierdź hasło
-admin_email=E-mail
-install_gogs=Zainstaluj Gogs
-test_git_failed=Nie udało się przetestować polecenia "git": %v
-sqlite3_not_available=Twoje wydanie nie obsługuje SQLite3, proszę pobrać oficjalne wydanie z %s, a NIE wersję z gobuild.
-invalid_db_setting=Ustawienia bazy danych nie są poprawne: %v
-invalid_repo_path=Ścieżka repozytoriów nie jest poprawna: %v
-run_user_not_match=Użytkownik aplikacji nie jest aktualnym użytkownikiem: %s -> %s
-save_config_failed=Nie udało się zapisać konfiguracji: %v
-invalid_admin_setting=Nieprawidłowe ustawienia konta admina: %v
-install_success=Cześć! Cieszymy się, że wybierałeś Gogs, baw się dobrze.
-
-[home]
-uname_holder=Nazwa użytkownika lub e-mail
-password_holder=Hasło
-switch_dashboard_context=Przełącz kontekst strony głównej
-my_repos=Moje repozytoria
-collaborative_repos=Wspólne repozytoria
-my_orgs=Moje organizacje
-my_mirrors=Moje mirrory
-view_home=Zobacz %s
-
-issues.in_your_repos=W twoich repozytoriach
-
-[explore]
-repos=Repozytoria
-
-[auth]
-create_new_account=Załóż nowe konto
-register_hepler_msg=Masz już konto? Zaloguj się teraz!
-social_register_hepler_msg=Masz już konto? Powiąż je teraz!
-disable_register_prompt=Przepraszamy rejestracja została wyłączona. Prosimy o kontakt z administratorem serwisu.
-disable_register_mail=Przepraszamy, potwierdzenia rejestracji zostały wyłączone przez administratora.
-remember_me=Zapamiętaj mnie
-forgot_password=Zapomniałem hasła
-forget_password=Zapomniałeś hasła?
-sign_up_now=Potrzebujesz konta? Zarejestruj się teraz.
-confirmation_mail_sent_prompt=Nowa wiadomość e-mail z potwierdzeniem została wysłana do <b>%s</b>, proszę sprawdzić swoją skrzynkę odbiorczą w ciągu najbliższych godzin %d aby dokończyć proces rejestracji.
-sign_in_to_account=Zaloguj się na swoje konto
-active_your_account=Aktywuj swoje konto
-resent_limit_prompt=Niestety, zbyt często wysyłasz e-mail aktywacyjny. Proszę odczekać 3 minuty.
-has_unconfirmed_mail=Witaj, %s, masz niepotwierdzony adres e-mail (<b>%s</b>). Jeśli nie otrzymałeś wiadomości e-mail z potwierdzeniem lub potrzebujesz wysłać nową, kliknij na poniższy przycisk.
-resend_mail=Kliknij tutaj, aby wysłać e-mail aktywacyjny
-email_not_associate=Ten adres e-mail nie jest skojarzony z żadnym kontem.
-send_reset_mail=Kliknij tutaj, aby (ponownie) wysłać e-mail z instrukcjami resetowania hasła
-reset_password=Resetowanie hasła
-invalid_code=Niestety, twój kod potwierdzający wygasł lub jest nieprawidłowy.
-reset_password_helper=Kliknij tutaj, aby zresetować hasło
-password_too_short=Długość hasła nie może być mniejsza niż 6 znaków.
-
-[mail]
-activate_account=Prosimy aktywować swoje konto
-activate_email=Sprawdź Twój adres e-mail
-reset_password=Zmień swoje hasło
-register_success=Zostałeś zarejestrowany, witamy
-
-[modal]
-yes=Tak
-no=Nie
-modify=Zmień
-
-[form]
-UserName=Nazwa Użytkownika
-RepoName=Nazwa repozytorium
-Email=Adres e-mail
-Password=Hasło
-Retype=Wpisz ponownie hasło
-SSHTitle=Nazwa klucza SSH
-HttpsUrl=HTTPS URL
-PayloadUrl=URL do wywołania
-TeamName=Nazwa zespołu
-AuthName=Nazwa autoryzacji
-AdminEmail=E-mail administratora
-
-require_error=` nie może być puste.`
-alpha_dash_error=` musi się składać z prawidłowych znaków alfanumerycznych, myślników oraz podkreśleń.`
-alpha_dash_dot_error=` musi się składać z prawidłowych znaków alfanumerycznych, myślników, podkreśleń oraz kropek.`
-size_error="musi być wielkości %s."
-min_size_error=` musi zawierać co najwyżej %s znaków.`
-max_size_error=` musi zawierać co najwyżej %s znaków.`
-email_error=` nie jest poprawnym adresem e-mail.`
-url_error=` nie jest poprawnym adresem URL.`
-unknown_error=Nieznany błąd:
-captcha_incorrect=Kod captcha nie zgadza się.
-password_not_match=Hasło i potwierdzenie nie zgadzają się.
-
-username_been_taken=Nazwa użytkownika jest już zajęta.
-repo_name_been_taken=Nazwa repozytorium jest już zajęta.
-org_name_been_taken=Nazwa organizacji jest już zajęta.
-team_name_been_taken=Nazwa zespołu jest już zajęta.
-email_been_used=Adres e-mail jest już zarejestrowany.
-illegal_team_name=Nazwa zespołu zawiera niedozwolone znaki.
-username_password_incorrect=Nazwa użytkownika lub hasło nie jest prawidłowe.
-enterred_invalid_repo_name=Upewnij się, że wprowadzona nazwa repozytorium jest poprawna.
-enterred_invalid_owner_name=Upewnij się, że nazwa właściciela repozytorium jest poprawna.
-enterred_invalid_password=Proszę upewnij się, że wprowadzono hasło jest poprawne.
-user_not_exist=Podany użytkownik nie istnieje.
-last_org_owner=Usuwany użytkownik jest ostatnim członkiem ekipy właścicieli. Musi być inny właściciel.
-
-invalid_ssh_key=Niestety, nie jesteśmy stanie zweryfikować twojego klucza SSH: %s
-unable_verify_ssh_key=Gogs nie może zweryfikować twojego klucza SSH, ale zakładamy, że jest poprawny, proszę sprawdź to samodzielnie.
-auth_failed=Uwierzytelnianie nie powiodło się: %v
-
-still_own_repo=Twoje konto jest dalej właścicielem repozytorium, musisz je usunąć lub przekazać.
-still_has_org=Twoje konto dalej posiada członkostwo w organizacji, musisz ją opuścić bądź usunąć.
-org_still_own_repo=Ta organizacja dalej jest właścicielem repozytorium, musisz je usunąć bądź przekazać.
-
-still_own_user=To uwierzytelnienie dalej jest używane przez kilku użytkowników, musisz je przenieść i usunąć ponownie.
-
-target_branch_not_exist=Podana gałąź nie istnieje
-
-[user]
-change_avatar=Zmień swój avatar na gravatar.com
-change_custom_avatar=Zmień awatar w ustawieniach
-join_on=Dołączył
-repositories=Repozytoria
-activity=Publiczna aktywność
-followers=Obserwujący
-starred=Polubionych
-following=Obserwowani
-
-form.name_reserved=Nazwa użytkownika "%s" jest zarezerwowana.
-form.name_pattern_not_allowed=Wzorzec nazwy użytkownika "%s" jest niedozwolony.
-
-[settings]
-profile=Profil
-password=Hasło
-ssh_keys=Klucze SSH
-social=Konta społecznościowe
-applications=Aplikacje
-orgs=Organizacje
-delete=Usuń konto
-uid=UID
-
-public_profile=Profil publiczny
-profile_desc=Twój adres e-mail jest publiczny i będzie używany dla wszystkich powiadomień związanych z kontem i dla każdej operacji wykonanej przez tę stronę.
-full_name=Imię i Nazwisko
-website=Strona
-location=Lolalizacja
-update_profile=Zaktualizuj profil
-update_profile_success=Twój profil został pomyślnie zaktualizowany.
-change_username=Zmieniono nazwę użytkownika
-change_username_prompt=This change will affect the way how links relate to your account.
-continue=Konynuuj
-cancel=Anuluj
-
-enable_custom_avatar=Włącz niestandardowe awatary
-enable_custom_avatar_helper=Włącz to by wyłączyć grawatary
-choose_new_avatar=Wybierz nowy avatar
-update_avatar=Zaktualizuj ustawienia awatara
-uploaded_avatar_not_a_image=Załadowany plik nie jest obrazem.
-no_custom_avatar_available=Własny avatar niedostępny, nie można go włączyć.
-update_avatar_success=Ustawienia awatarów zostały pomyślnie zaktualizowane.
-
-change_password=Zmień hasło
-old_password=Aktualne hasło
-new_password=Nowe hasło
-retype_new_password=Powtórz nowe hasło
-password_incorrect=Bieżące hasło nie jest prawidłowe.
-change_password_success=Hasło zostało zmienione pomyślnie. Możesz teraz zalogować się za pomocą nowego hasła.
-
-emails=Adresy e-mail
-manage_emails=Zarządzaj adresami e-mail
-email_desc=Twój podstawowy adres e-mail będzie używany dla powiadomień i innych działań.
-primary=Podstawowy
-primary_email=Ustaw jako podstawowy
-delete_email=Usuń
-email_deletion=Usunięcie wiadomości e-mail
-email_deletion_desc=Delete this e-mail address will remove related information from your account. Do you want to continue?
-email_deletion_success=E-mail został usunięty pomyślnie!
-add_new_email=Dodaj nowy e-mail
-add_email=Dodaj e-mail
-add_email_confirmation_sent=Nowa wiadomość e-mail z potwierdzeniem została wysłana do '%s', proszę sprawdzić swoją skrzynkę odbiorczą w ciągu %d godzin, aby dokończyć proces potwierdzania.
-add_email_success=Twój nowy e-mail został dodany pomyślnie.
-
-manage_ssh_keys=Zarządzaj kluczami SSH
-add_key=Dodaj klucz
-ssh_desc=To jest lista kluczy SSH powiązanych z Twoim kontem. Usuń klucze, które nie rozpoznajesz.
-ssh_helper=<strong>Potrzebujesz pomocy?</strong> Sprawdź nasz przewodnik <a href="%s"> generowania kluczy SSH</a> lub rozwiązywanie <a href="%s">typowych problemów z SSH</a>.
-add_new_key=Dodaj klucz SSH
-ssh_key_been_used=Public key content has been used.
-ssh_key_name_used=Klucz publiczny o tej samej nazwie już istnieje.
-key_name=Nazwa klucza
-key_content=Treść
-add_key_success=Pomyślnie dodano nowy klucz SSH '%s'!
-delete_key=Usuń
-ssh_key_deletion=Usunięcie klucza SSH
-ssh_key_deletion_desc=Usunięcie tego klucza SSH będzie skutkować usunięciem wszystkich powiązanych dostępów do twojego konta. Czy chcesz kontynuować?
-ssh_key_deletion_success=Klucz SSH został usunięty pomyślnie!
-add_on=Dodano
-last_used=Ostatnio użyto
-no_activity=Brak aktywności
-key_state_desc=This key is used in last 7 days
-token_state_desc=This token is used in last 7 days
-
-manage_social=Zarządzaj powiązanymi kontami społecznościowymi
-social_desc=To jest lista powiązanych kont społecznościowych. Usuń powiązania, których nie rozpoznajesz.
-unbind=Usuń powiązanie
-unbind_success=Konto społecznościowe zostało odpięte.
-
-manage_access_token=Zarządzaj osobistymi tokenami dostępu
-generate_new_token=Wygeneruj nowy token
-tokens_desc=Tokens you have generated that can be used to access the Gogs APIs.
-new_token_desc=Jak na razie, każdy token zapewnia pełen dostęp do Twojego konta.
-token_name=Nazwa tokena
-generate_token=Wygeneruj token
-generate_token_succees=Nowy token dostępu został wygenerowany pomyślnie! Upewnij się, że teraz go skopiowałeś. Nie będziesz mógł go zobaczyć ponownie!
-delete_token=Usuń
-access_token_deletion=Usuwanie osobistego tokena dostępu
-access_token_deletion_desc=Usunięcie tego tokena osobistego dostęp spowoduje usunięcie wszystkich powiązanych dostępów do aplikacji. Czy chcesz kontynuować?
-delete_token_success=Osobisty token dostępu został usunięty pomyślnie! Nie zapomnij również zaktualizować swoich aplikacji.
-
-delete_account=Usuń konto
-delete_prompt=Ta operacja trwale usuwa konto, i <strong>NIE MOŻE</strong> zostać cofnięta!
-confirm_delete_account=Potwierdź usunięcie
-delete_account_title=Usunięcie konta
-delete_account_desc=To konto będzie usunięte na zawsze, chcesz kontynuować?
-
-[repo]
-owner=Właściciel
-repo_name=Nazwa repozytorium
-repo_name_helper=Dobre nazwy repozytorium są krótkie, wpadające w pamięć i <strong>unikalne</strong>.
-visibility=Widoczność
-visiblity_helper=To repozytorium jest <span class="ui red text">prywatne</span>
-visiblity_helper_forced=Site admin has forced all new repositories to be <span class="ui red text">Private</span>
-visiblity_fork_helper=(Change of this value will affect all forks)
-fork_repo=Sforkowane
-fork_from=Forkuj z
-fork_visiblity_helper=Fork nie może zmieniać swojej widoczności
-repo_desc=Opis
-repo_lang=Język
-repo_lang_helper=Wybierz pliki .gitignore
-license=Licencja
-license_helper=Wybierz plik licencji
-readme=Readme
-readme_helper=Wybierz szablon readme
-auto_init=Initialize this repository with selected files and template
-create_repo=Utwórz repozytorium
-default_branch=Domyślna gałąź
-mirror_interval=Odświeżanie mirrorów (godziny)
-
-form.name_reserved=Nazwa repozytorium "%s" jest zarezerwowana.
-form.name_pattern_not_allowed=Wzorzec nazwy repozytorium "%s" jest niedozwolony.
-
-need_auth=Wymaga autoryzacji
-migrate_type=Typ migracji
-migrate_type_helper=This repository will be a <span class="text blue">mirror</span>
-migrate_repo=Przenieś repozytorium
-migrate.clone_address=Sklonuj adres
-migrate.clone_address_desc=This can be a HTTP/HTTPS/GIT URL or local server path.
-migrate.invalid_local_path=Ścieżka jest niepoprawna. Nie istnieje lub nie jest katalogiem.
-
-forked_from=sklonowany z
-fork_from_self=You cannot fork repository you already owned!
-copy_link=Kopiuj
-copy_link_success=Skopiowane!
-copy_link_error=Naciśnij klawisze ⌘-C i Ctrl-C, aby skopiować
-click_to_copy=Kopiuj do schowka
-copied=Skopiowano
-clone_helper=Potrzebujesz pomocy z klonowaniem? Odwiedź <a target="_blank" href="%s">Pomoc</a>!
-unwatch=Przestań obserwować
-watch=Obserwuj
-unstar=Usuń gwiazdkę
-star=Polub
-fork=Fork
-
-no_desc=Brak opisu
-quick_guide=Skrócona instrukcja
-clone_this_repo=Klonuj repozytorium
-create_new_repo_command=Utwórz nowe repozytorium z wiersza poleceń
-push_exist_repo=Wyślij istniejące repozytorium z wiersza poleceń
-repo_is_empty=To repozytorium jest puste, proszę wrócić później!
-
-
-branch=Gałąź
-tree=Drzewo
-branch_and_tags=Gałęzie i tagi
-branches=Gałęzie
-tags=Tagi
-issues=Problemy
-pulls=Pull Requests
-labels=Etykiety
-milestones=Kamienie milowe
-commits=Commity
-releases=Wydania
-file_raw=Czysty
-file_history=Historia
-file_view_raw=Zobacz czysty
-file_permalink=Bezpośredni odnośnik
-
-commits.commits=Commity
-commits.search=Przeszukaj commity
-commits.find=Szukaj
-commits.author=Autor
-commits.message=Wiadomość
-commits.date=Data
-commits.older=Starsze
-commits.newer=Nowsze
-
-issues.new=Nowe zgłoszenie
-issues.new.labels=Etykiety
-issues.new.no_label=Brak etykiety
-issues.new.clear_labels=Wyczyść etykiety
-issues.new.milestone=Kamień milowy
-issues.new.no_milestone=No Milestone
-issues.new.clear_milestone=Clear milestone
-issues.new.open_milestone=Otwórz "kamienie milowe"
-issues.new.closed_milestone=Zamknięte "kamienie milowe"
-issues.new.assignee=Assignee
-issues.new.clear_assignee=Clear assignee
-issues.new.no_assignee=No assignee
-issues.create=Create Issue
-issues.new_label=Nowa etykieta
-issues.new_label_placeholder=Label name...
-issues.create_label=Create Label
-issues.open_tab=%d Open
-issues.close_tab=%d Closed
-issues.filter_label=Etykieta
-issues.filter_label_no_select=No selected label
-issues.filter_milestone=Kamień milowy
-issues.filter_milestone_no_select=No selected milestone
-issues.filter_assignee=Przypisany
-issues.filter_assginee_no_select=No selected Assignee
-issues.filter_type=Typ
-issues.filter_type.all_issues=All issues
-issues.filter_type.assigned_to_you=Assigned to you
-issues.filter_type.created_by_you=Created by you
-issues.filter_type.mentioning_you=Mentioning you
-issues.filter_sort=Sort
-issues.filter_sort.latest=Najnowszy
-issues.filter_sort.oldest=Oldest
-issues.filter_sort.recentupdate=Recently updated
-issues.filter_sort.leastupdate=Least recently updated
-issues.filter_sort.mostcomment=Most commented
-issues.filter_sort.leastcomment=Least commented
-issues.opened_by=opened %[1]s by <a href="%[2]s">%[3]s</a>
-issues.opened_by_fake=opened %[1]s by %[2]s
-issues.previous=Previous
-issues.next=Następny
-issues.open_title=otwarty
-issues.closed_title=zamknięty
-issues.num_comments=%d komentarzy
-issues.commented_at=`commented <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.no_content=There is no content yet.
-issues.close_issue=Close
-issues.close_comment_issue=Close and comment
-issues.reopen_issue=Reopen
-issues.reopen_comment_issue=Otwórz ponownie i dodaj komentarz
-issues.create_comment=Komentuj
-issues.closed_at=`closed <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.reopened_at=`reopened <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.commit_ref_at=`referenced this issue from a commit <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.poster=Autor
-issues.admin=Admin
-issues.owner=Właściciel
-issues.sign_up_for_free=Zarejestruj się za darmo
-issues.sign_in_require_desc=do przyłączenia się do tej rozmowy. Masz już konto? <a href="%s"> Zaloguj się by komentować</a>
-issues.edit=Edytuj
-issues.cancel=Anuluj
-issues.save=Zapisz
-issues.label_title=Nazwa etykiety
-issues.label_color=Kolor etykiety
-issues.label_count=%d etykiety
-issues.label_open_issues=%d otwartych zgłoszeń
-issues.label_edit=Edytuj
-issues.label_delete=Usuń
-issues.label_modify=Modyfikacja etykiety
-issues.label_deletion=Usunięcie etykiety
-issues.label_deletion_desc=Delete this label will remove its information in all related issues. Do you want to continue?
-issues.label_deletion_success=Etykieta została usunięta pomyślnie!
-
-pulls.compare_changes=Compare Changes
-pulls.compare_changes_desc=Compare two branches and make a pull request for changes.
-pulls.compare_base=base
-pulls.compare_compare=compare
-pulls.filter_branch=Filter branch
-pulls.no_results=Nie znaleziono wyników.
-pulls.nothing_to_compare=There is nothing to compare because base and head branches are even.
-pulls.has_pull_request=`There is already a pull request between these two targets: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>`
-pulls.create=Utwórz Pull Request
-pulls.title_desc=wants to merge %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code>
-pulls.merged_title_desc=merged %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> %[4]s
-pulls.tab_conversation=Conversation
-pulls.tab_commits=Commits
-pulls.tab_files=Files changed
-pulls.reopen_to_merge=Please reopen this pull request to perform merge operation.
-pulls.merged=Merged
-pulls.has_merged=This pull request has been merged successfully!
-pulls.data_broken=Data of this pull request has been broken due to deletion of fork information.
-pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments.
-pulls.can_auto_merge_desc=You can perform auto-merge operation on this pull request.
-pulls.cannot_auto_merge_desc=You can't perform auto-merge operation because there are conflicts between commits.
-pulls.cannot_auto_merge_helper=Please use command line tool to solve it.
-pulls.merge_pull_request=Merge Pull Request
-pulls.open_unmerged_pull_exists=`You can't perform reopen operation because there is already an open pull request (#%d) from same repository with same merge information and is waiting for merging.`
-
-milestones.new=Nowy kamień milowy
-milestones.open_tab=%d Open
-milestones.close_tab=%d Closed
-milestones.closed=Closed %s
-milestones.no_due_date=Nie ustalono terminu
-milestones.open=Otwórz
-milestones.close=Zamknij
-milestones.new_subheader=Create milestones to organize your issues.
-milestones.create=Utwórz punkt kontrolny
-milestones.title=Tytuł
-milestones.desc=Opis
-milestones.due_date=Termin realizacji (opcjonalnie)
-milestones.clear=Wyczyść
-milestones.invalid_due_date_format=Format daty realizacji jest nieprawidłowy, musi być "rok mm-dd".
-milestones.create_success=Kamień milowy "%s" został utworzony pomyślnie!
-milestones.edit=Edytuj kamień milowy
-milestones.edit_subheader=Use better description for milestones so people won't be confused.
-milestones.cancel=Anuluj
-milestones.modify=Modyfikuj kamień milowy
-milestones.edit_success=Changes of milestone '%s' has been saved successfully!
-milestones.deletion=Milestone Deletion
-milestones.deletion_desc=Delete this milestone will remove its information in all related issues. Do you want to continue?
-milestones.deletion_success=Kamień milowy został usunięty pomyślnie!
-
-settings=Ustawienia
-settings.options=Opcje
-settings.collaboration=Współpraca
-settings.hooks=Webhooks
-settings.githooks=Skrypty Git
-settings.basic_settings=Ustawienia podstawowe
-settings.danger_zone=Strefa niebezpieczeństwa
-settings.site=Oficjalna Strona
-settings.update_settings=Aktualizuj ustawienia
-settings.change_reponame_prompt=Zmiana nazwy repozytorium wpłynie na linki do niego.
-settings.transfer=Przeniesienie własności
-settings.transfer_desc=Przenieś to repozytorium do innego użytkownika lub organizacji gdzie masz uprawnienia administratora.
-settings.new_owner_has_same_repo=Nowy właściciel już posiada repozytorium o tej samej nazwie.
-settings.delete=Usuń to repozytorium
-settings.delete_desc=Po usunięciu repozytorium nie ma odwrotu. Upewnij się, że tego chcesz.
-settings.transfer_notices_1=- You will lose access if new owner is a individual user.
-settings.transfer_notices_2=- You will conserve access if new owner is an organization and if you're one of the owners.
-settings.transfer_form_title=Please enter following information to confirm your operation:
-settings.delete_notices_1=- This operation <strong>CANNOT</strong> be undone.
-settings.delete_notices_2=- This operation will permanently delete the everything of this repository, including Git data, issues, comments and accesses of collaborators.
-settings.delete_notices_fork_1=- If this repository is public, all forks will be became independent after deletion.
-settings.delete_notices_fork_2=- If this repository is private, all forks will be removed at the same time.
-settings.delete_notices_fork_3=- If you want to keep all forks after deletion, please change visibility of this repository to public first.
-settings.update_settings_success=Opcje repozytorium zostały pomyślnie zaktualizowane.
-settings.transfer_owner=Nowy właściciel
-settings.make_transfer=Przenieś
-settings.transfer_succeed=Własność repozytorium została przeniesiona pomyślnie.
-settings.confirm_delete=Potwierdź usunięcie
-settings.add_collaborator=Dodaj nowego współpracownika
-settings.add_collaborator_success=Został dodany nowy współpracownik.
-settings.remove_collaborator_success=Współpracownik został usunięty.
-settings.user_is_org_member=Użytkownik jest członkiem organizacji, który nie może być dodany jako współpracownik.
-settings.add_webhook=Dodaj Webhooka
-settings.hooks_desc=Webhooks are much like basic HTTP POST event triggers. Whenever something occurs in Gogs, we will handle the notification to the target host you specify. Learn more in this <a target="_blank" href="%s">Webhooks Guide</a>.
-settings.webhook_deletion=Usuń Webhook
-settings.webhook_deletion_desc=Delete this webhook will remove its information and all delivery history. Do you want to continue?
-settings.webhook_deletion_success=Webhook has been deleted successfully!
-settings.webhook.request=Żądanie
-settings.webhook.response=Response
-settings.webhook.headers=Headers
-settings.webhook.payload=Payload
-settings.webhook.body=Body
-settings.githooks_desc=Doczepki Git są napędzane przez samego Git, można edytować pliki obsługiwanych doczepek z poniższej listy, aby wykonywać niestandardowe operacje.
-settings.githook_edit_desc=Jeżeli doczepka jest nieaktywna, prezentowana będzie przykładowa treść. Pozostawienie pustej wartości wyłączy tą doczepkę.
-settings.githook_name=Nazwa skryptu
-settings.githook_content=Treść skryptu
-settings.update_githook=Zaktualizuj skrypt
-settings.add_webhook_desc=Wyślemy żądanie <code>POST</code> pod poniższy adres ze szczegółami zdarzeń. Możesz również ustalić format danych zapytania (JSON, <code>x-www-form-urlencoded</code>, <em>itp</em>). Więcej informacji można znaleźć w <a target="_blank" href="%s">przewodniku skryptów internetowych</a>.
-settings.payload_url=URL do wywołania
-settings.content_type=Typ zawartości
-settings.secret=Sekret
-settings.slack_username=Username
-settings.slack_icon_url=Icon URL
-settings.slack_color=Kolor
-settings.event_desc=Jakie zdarzenia mają wywoływać ten skrypt internetowy?
-settings.event_push_only=Tylko zdarzenia <code>push</code>.
-settings.event_send_everything=Potrzebuję <strong>wszystkiego</strong>.
-settings.event_choose=Pozwól mi wybrać, czego potrzebuję.
-settings.event_create=Utwórz
-settings.event_create_desc=Branch, or tag created
-settings.event_push=Push
-settings.event_push_desc=Git push to a repository
-settings.active=Aktywny
-settings.active_helper=Dostarczymy szczegóły zdarzenia, gdy ten skrypt zostanie wywołany.
-settings.add_hook_success=Nowy skrypt został dodany.
-settings.update_webhook=Zaktualizuj skrypt internetowy
-settings.update_hook_success=Skrypt internetowy został zaktualizowany.
-settings.delete_webhook=Usuń skrypt internetowy
-settings.recent_deliveries=Ostatnie wywołania
-settings.hook_type=Typ skryptu
-settings.add_slack_hook_desc=Dodać integrację ze <a href="%s">Slackiem</a> do twojego repozytorium.
-settings.slack_token=Token
-settings.slack_domain=Domena
-settings.slack_channel=Kanał
-settings.deploy_keys=Klucze wdrożeniowe
-settings.add_deploy_key=Add Deploy Key
-settings.no_deploy_keys=You haven't added any deploy key.
-settings.title=Tytuł
-settings.deploy_key_content=Treść
-settings.key_been_used=Deploy key content has been used.
-settings.key_name_used=Deploy key with same name has already existed.
-settings.add_key_success=New deploy key '%s' has been added successfully!
-settings.deploy_key_deletion=Delete Deploy Key
-settings.deploy_key_deletion_desc=Delete this deploy key will remove all related accesses for this repository. Do you want to continue?
-settings.deploy_key_deletion_success=Deploy key has been deleted successfully!
-
-diff.browse_source=Przeglądaj źródła
-diff.parent=rodzic
-diff.commit=commit
-diff.data_not_available=Informacje nt. zmiany nie są dostępne.
-diff.show_diff_stats=Pokaż statystyki zmian
-diff.stats_desc=<strong>%d zmienionych plików</strong> z <strong>%d dodań</strong> i <strong>%d usunięć</strong>
-diff.bin=BIN
-diff.view_file=Wyświetl plik
-
-release.releases=Wydania
-release.new_release=Nowe wydanie
-release.draft=Szkic
-release.prerelease=Wersja wstępna
-release.stable=Stabilny
-release.edit=edytuj
-release.ahead=<strong>%d</strong> commitów w %s od tego wydania
-release.source_code=Kod źródłowy
-release.tag_name=Nazwa tagu
-release.target=Cel
-release.tag_helper=Wybierz istniejący tag, bądź utwórz nowy podczas publikacji.
-release.release_title=Nazwa wydania
-release.content_with_md=Treść sformatowana za pomocą <a href="%s">Markdown</a>
-release.write=Napisz
-release.preview=Pogdląd
-release.content_placeholder=Napisz jakąś treść
-release.loading=Ładowanie...
-release.prerelease_desc=To jest wersja wstępna
-release.prerelease_helper=Chcemy zwrócić uwagę, że ta wersja jest oznaczona jako eksperymentalna.
-release.publish=Publikuj wersję
-release.save_draft=Zapisz szkic
-release.edit_release=Edytuj wydanie
-release.tag_name_already_exist=Wersja o tej nazwie tagu już istnieje.
-
-[org]
-org_name_holder=Nazwa organizacji
-org_name_helper=Świetne nazwy organizacji są krótkie i łatwe do zapamiętania.
-create_org=Utwórz organizację
-repo_updated=Zaktualizowano
-people=Ludzie
-invite_someone=Zaproś kogoś
-teams=Zespoły
-lower_members=członkowie
-lower_repositories=repozytoria
-create_new_team=Utwórz nowy zespół
-org_desc=Opis
-team_name=Nazwa zespołu
-team_desc=Opis
-team_name_helper=Będziesz używał tej nazwy do wywoływania tego zespołu w dyskusjach.
-team_desc_helper=Czym zajmuje się ten zespół?
-team_permission_desc=Jaki poziom uprawnień powinien mieć ten zespół?
-
-form.name_reserved=Nazwa organizacji "%s" jest zarezerwowana.
-form.name_pattern_not_allowed=Wzorzec nazwy organizacji "%s" jest niedozwolony.
-
-settings=Ustawienia
-settings.options=Opcje
-settings.full_name=Imię i Nazwisko
-settings.website=Strona
-settings.location=Lolalizacja
-settings.update_settings=Aktualizuj ustawienia
-settings.update_setting_success=Ustawienia organizacji zostały pomyślnie zaktualizowane.
-settings.change_orgname_prompt=This change will affect how links relate to the organization.
-settings.update_avatar_success=Organization avatar setting has been updated successfully.
-settings.delete=Usuń Organizację
-settings.delete_account=Usuń tą organizację
-settings.delete_prompt=Organizacja zostanie trwale usunięta, a to <strong>NIE MOŻE</strong> być cofnięte!
-settings.confirm_delete_account=Potwierdź usunięcie
-settings.delete_org_title=Usunięcie organizacji
-settings.delete_org_desc=Ta organizacja zostanie trwale usunięta, czy chcesz kontynuować?
-settings.hooks_desc=Add webhooks that will be triggered for <strong>all repositories</strong> under this organization.
-
-members.public=Publiczne
-members.public_helper=sprywatyzuj
-members.private=Prywatne
-members.private_helper=upublicznij
-members.owner=Właściciel
-members.member=Członek
-members.conceal=Ukryj
-members.remove=Usuń
-members.leave=Opuść
-members.invite_desc=Zacznij wpisywać nazwę użytkownika by zaprosić nowego członka do %s:
-members.invite_now=Zaproś teraz
-
-teams.join=Dołącz
-teams.leave=Opuść
-teams.read_access=Dostęp do odczytu
-teams.read_access_helper=Ten zespół będzie mógł wyświetlać i klonować swoje repozytoria.
-teams.write_access=Dostęp do zapisu
-teams.write_access_helper=Ten zespół będzie mógł odczytywać i wysyłać do swoich repozytoriów.
-teams.admin_access=Uprawnienia admina
-teams.admin_access_helper=Ten zespół będzie mógł wysyłać i pobierać swoje repozytoria, oraz dodawać do nich współpracowników.
-teams.no_desc=Ten zespół nie ma opisu
-teams.settings=Ustawienia
-teams.owners_permission_desc=Właściciele mają pełny dostęp do <strong>wszystkich repozytoriów</strong> i mają <strong>prawa administratora</strong> w organizacji.
-teams.members=Członkowie zespołu
-teams.update_settings=Aktualizuj ustawienia
-teams.delete_team=Usuń ten zespół
-teams.add_team_member=Dodaj członka zespołu
-teams.delete_team_title=Usuwanie zespołu
-teams.delete_team_desc=Ten zespół zostanie usunięty, czy na pewno chcesz kontynuować? Jego członkowie mogą utracić dostęp do części repozytoriów.
-teams.delete_team_success=Zespół został usunięty pomyślnie.
-teams.read_permission_desc=Ten zespół daje dostęp do <strong>odczytu</strong>: członkowie mogą wyświetlać i klonować repozytoria zespołu.
-teams.write_permission_desc=Ten zespół daje dostęp do <strong>zapisu</strong>: członkowie mogą wyświetlać i wysyłać do repozytoriów zespołu.
-teams.admin_permission_desc=Ten zespół daje dostęp <strong>pełny</strong>: członkowie mogą wyświetlać, wysyłać i dodawać współpracowników do repozytoriów zespołu.
-teams.repositories=Repozytoria zespołu
-teams.add_team_repository=Dodaj repozytorium zespołu
-teams.remove_repo=Usuń
-teams.add_nonexistent_repo=Repozytorium, które próbujesz dodać, nie istnieje, wpierw je utwórz.
-
-[admin]
-dashboard=Pulpit
-users=Użytkownicy
-organizations=Organizacje
-repositories=Repozytoria
-authentication=Uwierzytelnienia
-config=Konfiguracja
-notices=Powiadomienia systemowe
-monitor=Monitorowanie
-first_page=Pierwsza
-last_page=Ostatnia
-total=Ogółem: %d
-
-dashboard.statistic=Statystyki
-dashboard.operations=Operacje
-dashboard.system_status=Stan monitora systemu
-dashboard.statistic_info=Baza danych Gogs zawiera <b>%d</b> użytkowników, <b>%d</b> organizacji, <b>%d</b> kluczy publicznych, <b>%d</b> repozytoriów, <b>%d</b> obserwujących, <b>%d</b> polubionych, <b>%d</b> akcji, <b>%d</b> tokenów, <b>%d</b> problemów, <b>%d</b> komenatrzy, <b>%d</b> kont społecznościowych, <b>%d</b> obserwacji, <b>%d</b> mirrorów, <b>%d</b> wydań, <b>%d</b> login sources, <b>%d</b> webhooków, <b>%d</b> kamieni milowych, <b>%d</b> labels, <b>%d</b> zadań hooków, <b>%d</b> zespołów, <b>%d</b> zadań aktualizacji, <b>%d</b> załączników.
-dashboard.operation_name=Nazwa operacji
-dashboard.operation_switch=Przełącz
-dashboard.operation_run=Uruchom
-dashboard.clean_unbind_oauth=Usuń niepowiązane wpisy OAuth
-dashboard.clean_unbind_oauth_success=Wszystkie niepowiązane wpisy OAuth zostały pomyślnie usunięte.
-dashboard.delete_inactivate_accounts=Usuń wszystkie nieaktywne konta
-dashboard.delete_inactivate_accounts_success=Wszystkie nieaktywne konta zostały usunięte pomyślnie.
-dashboard.delete_repo_archives=Usuń wszystkie archiwa repozytoriów
-dashboard.delete_repo_archives_success=Pomyślnie usunięto wszystkie archiwa repozytoriów.
-dashboard.git_gc_repos=Usuń śmieci z repozytoriów
-dashboard.git_gc_repos_success=Wszystkie repozytoria zakończyły odśmiecanie pomyślnie.
-dashboard.resync_all_sshkeys=Przeładuj klucze publiczne w pliku '.ssh/authorized_keys' (uwaga: klucze poza Gogs zostaną usunięte)
-dashboard.resync_all_sshkeys_success=Przeładowanie kluczy publicznych zakończyło się sukcesem.
-dashboard.resync_all_update_hooks=Rewrite all update hook of repositories (needed when custom config path is changed)
-dashboard.resync_all_update_hooks_success=All repositories' update hook have been rewritten successfully.
-
-dashboard.server_uptime=Uptime serwera
-dashboard.current_goroutine=Bieżące Goroutines
-dashboard.current_memory_usage=Bieżące użycie pamięci
-dashboard.total_memory_allocated=Całkowita przydzielona pamięć
-dashboard.memory_obtained=Memory Obtained
-dashboard.pointer_lookup_times=Pointer Lookup Times
-dashboard.memory_allocate_times=Memory Allocate Times
-dashboard.memory_free_times=Memory Free Times
-dashboard.current_heap_usage=Bieżące użycie stosu
-dashboard.heap_memory_obtained=Heap Memory Obtained
-dashboard.heap_memory_idle=Heap Memory Idle
-dashboard.heap_memory_in_use=Użycie pamięci stosu
-dashboard.heap_memory_released=Heap Memory Released
-dashboard.heap_objects=Ilość obiektów na stercie
-dashboard.bootstrap_stack_usage=Bootstrap Stack Usage
-dashboard.stack_memory_obtained=Stack Memory Obtained
-dashboard.mspan_structures_usage=MSpan Structures Usage
-dashboard.mspan_structures_obtained=MSpan Structures Obtained
-dashboard.mcache_structures_usage=MCache Structures Usage
-dashboard.mcache_structures_obtained=MCache Structures Obtained
-dashboard.profiling_bucket_hash_table_obtained=Profiling Bucket Hash Table Obtained
-dashboard.gc_metadata_obtained=Ilość uzyskanych danych przez GC
-dashboard.other_system_allocation_obtained=Other System Allocation Obtained
-dashboard.next_gc_recycle=Następne wywołanie GC
-dashboard.last_gc_time=Czas od ostatniego wywołania GC
-dashboard.total_gc_time=Sumaryczny czas wstrzymania przez GC
-dashboard.total_gc_pause=Sumaryczny czas wstrzymania przez GC
-dashboard.last_gc_pause=Ostatnie wstrzymanie przez GC
-dashboard.gc_times=Ilość wywołań GC
-
-users.user_manage_panel=Panel zarządzania kontem użytkownika
-users.new_account=Załóż nowe konto
-users.name=Nazwa
-users.activated=Aktywowany
-users.admin=Admin
-users.repos=Repozytoria
-users.created=Utworzony
-users.send_register_notify=Send Registration Notification To User
-users.new_success=New account '%s' has been created successfully.
-users.edit=Edytuj
-users.auth_source=Authentication Source
-users.local=Lokalne
-users.auth_login_name=Authentication Login Name
-users.password_helper=Leave it empty to remain unchanged.
-users.update_profile_success=Profil konta został pomyślnie zaktualizowany.
-users.edit_account=Edytuj konto
-users.is_activated=To konto jest aktywne
-users.is_admin=To konto ma uprawnienia administratora
-users.allow_git_hook=To konto posiada uprawnienia do tworzenia skryptów Git
-users.update_profile=Zaktualizuj profil konta
-users.delete_account=Usuń to konto
-users.still_own_repo=Twoje konto jest dalej właścicielem repozytorium, musisz je usunąć lub przekazać.
-users.still_has_org=Twoje konto dalej posiada członkostwo w organizacji, musisz ją opuścić bądź usunąć.
-users.deletion_success=Account has been deleted successfully!
-
-orgs.org_manage_panel=Panel zarządzania organizacją
-orgs.name=Nazwa
-orgs.teams=Zespoły
-orgs.members=Członkowie
-
-repos.repo_manage_panel=Panel zarządzania repozytorium
-repos.owner=Właściciel
-repos.name=Nazwa
-repos.private=Prywatne
-repos.watches=Obserwujących
-repos.stars=Polubienia
-repos.issues=Problemy
-
-auths.auth_manage_panel=Authentication Manage Panel
-auths.new=Dodać nowe Źródło
-auths.name=Nazwa
-auths.type=Typ
-auths.enabled=Włączono
-auths.updated=Zaktualizowano
-auths.auth_type=Typ uwierzytelniania
-auths.auth_name=Nazwa uwierzytelniania
-auths.domain=Domena
-auths.host=Host
-auths.port=Port
-auths.bind_dn=Bind DN
-auths.bind_password=Bind Password
-auths.bind_password_helper=Warning: This password is stored in plain text. Do not use a high privileged account.
-auths.user_base=User Search Base
-auths.user_dn=User DN
-auths.attribute_name=Atrybut imienia
-auths.attribute_surname=Atrybut nazwiska
-auths.attribute_mail=Atrybut email
-auths.filter=User Filter
-auths.admin_filter=Admin Filter
-auths.ms_ad_sa=Ms Ad SA
-auths.smtp_auth=SMTP Authentication Type
-auths.smtphost=Serwer SMTP
-auths.smtpport=Port SMTP
-auths.allowed_domains=Allowed Domains
-auths.allowed_domains_helper=Leave it empty to not restrict any domains. Multiple domains should be separated by comma ','.
-auths.enable_tls=Włącz szyfrowanie TLS
-auths.skip_tls_verify=Pomiń weryfikację protokołu TLS
-auths.pam_service_name=Nazwa usługi PAM
-auths.enable_auto_register=Włącz automatyczną rejestrację
-auths.tips=Wskazówki
-auths.edit=Edit Authentication Setting
-auths.activated=To uwierzytelnienie zostało aktywowane
-auths.new_success=New authentication '%s' has been added successfully.
-auths.update_success=Ustawienia uwierzytelnienia zostały zaktualizowane pomyślnie.
-auths.update=Aktualizuj ustawienia uwierzytelniania
-auths.delete=Delete This Authentication
-auths.delete_auth_title=Authentication Deletion
-auths.delete_auth_desc=To uwierzytelnienie zostanie usunięte, czy chcesz kontynuować?
-auths.deletion_success=Authentication has been deleted successfully!
-
-config.server_config=Konfiguracja serwera
-config.app_name=Nazwa Aplikacji
-config.app_ver=Wersja aplikacji
-config.app_url=Adres URL aplikacji
-config.domain=Domena
-config.offline_mode=Tryb offline
-config.disable_router_log=Wyłącz dziennik routera
-config.run_user=Nazwa użytkownika uruchomieniowego
-config.run_mode=Tryb uruchamienia
-config.repo_root_path=Ścieżka repozytoriów
-config.static_file_root_path=Ścieżka plików statycznych
-config.log_file_root_path=Ścieżka plików dziennika
-config.script_type=Typ skryptu
-config.reverse_auth_user=Użytkownik dostarczony przez odwrotne proxy
-config.db_config=Konfiguracja bazy danych
-config.db_type=Typ
-config.db_host=Host
-config.db_name=Nazwa
-config.db_user=Użytkownik
-config.db_ssl_mode=Tryb SSL
-config.db_ssl_mode_helper=(tylko dla "postgres")
-config.db_path=Ścieżka
-config.db_path_helper=(dla "sqlite3" i "tidb")
-config.service_config=Konfiguracja usługi
-config.register_email_confirm=Wymagaj potwierdzenia e-mail
-config.disable_register=Wyłącz rejestrację
-config.show_registration_button=Pokazuj przycisk rejestracji
-config.require_sign_in_view=Wymagaj bycia zalogowanym
-config.enable_cache_avatar=Włącz cache awatarów
-config.mail_notify=Powiadomienia e-mail
-config.disable_key_size_check=Wyłącz sprawdzanie minimalnego rozmiaru klucza
-config.enable_captcha=Włącz Captcha
-config.active_code_lives=Ważność kodów aktywacyjnych
-config.reset_password_code_lives=Czas życia kodu resetowania hasła
-config.webhook_config=Konfiguracja skryptów internetowych
-config.queue_length=Długość kolejki
-config.deliver_timeout=Limit czasu zdarzenia
-config.skip_tls_verify=Pomiń weryfikację protokołu TLS
-config.mailer_config=Konfiguracja poczty
-config.mailer_enabled=Aktywne
-config.mailer_disable_helo=Wyłącz HELO
-config.mailer_name=Nazwa
-config.mailer_host=Host
-config.mailer_user=Użytkownik
-config.oauth_config=Konfiguracja OAuth
-config.oauth_enabled=Aktywne
-config.cache_config=Konfiguracja cache
-config.cache_adapter=Adapter cache
-config.cache_interval=Interwał pamięci podręcznej
-config.cache_conn=Połączenie z pamięcią podręczną
-config.session_config=Konfiguracja sesji
-config.session_provider=Dostawca sesji
-config.provider_config=Konfiguracja dostawcy
-config.cookie_name=Nazwa ciasteczka
-config.enable_set_cookie=Włącz ciasteczka
-config.gc_interval_time=Interwał odśmiecania
-config.session_life_time=Czas życia sesji
-config.https_only=Tylko HTTPS
-config.cookie_life_time=Czas życia ciasteczka
-config.picture_config=Ustawienia obrazów
-config.picture_service=Serwis obrazów
-config.disable_gravatar=Wyłącz Gravatara
-config.log_config=Konfiguracja dziennika
-config.log_mode=Tryb dziennika
-
-monitor.cron=Zadania cron
-monitor.name=Nazwa
-monitor.schedule=Harmonogram
-monitor.next=Następny czas
-monitor.previous=Poprzedni czas
-monitor.execute_times=Czas wykonania
-monitor.process=Procesy
-monitor.desc=Opis
-monitor.start=Czas rozpoczęcia
-monitor.execute_time=Czas wykonania
-
-notices.system_notice_list=Powiadomienia systemu
-notices.type=Typ
-notices.type_1=Repozytorium
-notices.desc=Opis
-notices.op=Op.
-notices.delete_success=Powiadomienia systemowe zostały usunięte pomyślnie.
-
-[action]
-create_repo=utworzono repozytorium <a href="%s"> %s</a>
-rename_repo=renamed repository from <code>%[1]s</code> to <a href="%[2]s">%[3]s</a>
-commit_repo=wypchnął do <a href="%s/src/%s">%[2]s</a> w <a href="%[1]s"> %[3]s</a>
-create_issue=`zgłosił problem <a href="%s/issues/%s">#%[2]s %[3]s</a>`
-create_pull_request=`created pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-comment_issue=`skomentował problem <a href="%s/issues/%s">#%[2]s %[3]s</a>`
-merge_pull_request=`merged pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-transfer_repo=przeniósł repozytorium <code>%s</code> do <a href="%s">%s</a>
-push_tag=opublikował tag <a href="%s/src/%s">%[2]s</a> w <a href="%[1]s">%[3]s</a>
-compare_2_commits=Zobacz porównanie tych 2 commitów
-
-[tool]
-ago=temu
-from_now=od teraz
-now=teraz
-1s=1 sekundę %s
-1m=1 minutę %s
-1h=1 godzinę %s
-1d=1 dzień %s
-1w=1 tydzień %s
-1mon=1 miesiąc %s
-1y=1 rok %s
-seconds=%d sekund %s
-minutes=%d minut %s
-hours=%d godzin %s
-days=%d dni %s
-weeks=%d tygodni %s
-months=%d miesięcy %s
-years=%d lat %s
-raw_seconds=sekund
-raw_minutes=minut
-
-[dropzone]
-default_message=Upuść pliki tutaj lub kliknij, aby przesłać.
-invalid_input_type=Nie można przesłać plików tego typu.
-file_too_big=Rozmiar pliku ({{filesize}} MB) przekracza rozmiar maksymalny ({{maxFilesize}} MB).
-remove_file=Usuń plik
-
+app_desc=Bezbolesna usługa Git napisana w Go działająca na własnym serwerze + +home=Strona główna +dashboard=Pulpit +explore=Odkrywaj +help=Pomoc +sign_in=Zaloguj się +sign_out=Wyloguj +sign_up=Zarejestruj się +register=Zarejestruj się +website=Strona +version=Wersja +page=Strona +template=Szablon +language=Język +create_new=Utwórz... +user_profile_and_more=Profil użytkownika i więcej +signed_in_as=Zalogowany jako + +username=Nazwa Użytkownika +email=E-mail +password=Hasło +re_type=Wpisz ponownie +captcha=Captcha + +repository=Repozytorium +organization=Organizacja +mirror=Mirror +new_repo=Nowe repozytorium +new_migrate=Nowa migracja +new_fork=Forkuj repozytorium +new_org=Nowa organizacja +manage_org=Zarządzaj organizacjami +admin_panel=Panel admina +account_settings=Ustawienia konta +settings=Ustawienia +your_profile=Twój profil +your_settings=Twoje ustawienia + +news_feed=Kanał aktualności +pull_requests=Oczekujące zmiany +issues=Problemy + +cancel=Anuluj + +[search] +search=Wyszukiwanie... +repository=Repozytorium +user=Użytkownik +issue=Zgłoszenie +code=Kod + +[install] +install=Instalacja +title=Kroki instalacyjne dla pierwszego uruchomienia +docker_helper=If you're running Gogs inside Docker, please read <a target="_blank" href="%s">Guidelines</a> carefully before you change anything in this page! +requite_db_desc=Gogs requires MySQL, PostgreSQL, SQLite3 or TiDB. +db_title=Ustawienia bazy danych +db_type=Typ bazy danych +host=Host +user=Użytkownik +password=Hasło +db_name=Nazwa bazy danych +db_helper=Proszę użyć silnika INNODB z kodowaniem utf8_general_ci dla MySQL. +ssl_mode=Tryb SSL +path=Ścieżka +sqlite_helper=The file path of SQLite3 or TiDB database. +err_empty_db_path=SQLite3 or TiDB database path cannot be empty. +err_invalid_tidb_name=TiDB database name does not allow characters "." and "-". +no_admin_and_disable_registration=Rejestracji nie można wyłączyć bez tworzenia konta admina. +err_empty_admin_password=Hasło admina nie może być pusta. + +general_title=Ustawienia ogólne Gogs +app_name=Nazwa aplikacji +app_name_helper=Umieść tutaj wielką i głośną nazwę swojej organizacji! +repo_path=Katalog repozytoriów +repo_path_helper=W tym katalogu zostaną zapisane wszystkie repozytoria Git. +run_user=Nazwa użytkownika uruchomieniowego +run_user_helper=Użytkownik musi mieć dostęp do katalogu repozytoriów i uruchamiania Gogs. +domain=Domena +domain_helper=To wpłynie na URLe do klonowania poprzez SSH. +ssh_port=Port SSH +ssh_port_helper=Numer portu, z którego korzysta z serwer SSH; pozostaw puste, aby wyłączyć funkcję SSH. +http_port=Port HTTP +http_port_helper=Numer portu na którym aplikacja jest dostępna. +app_url=Adres URL aplikacji +app_url_helper=To wpłynie na adresy klonowania HTTP/HTTPS i w wiadomościach e-mail. + +optional_title=Ustawienia opcjonalne +email_title=Ustawienia serwera e-mail +smtp_host=Serwer SMTP +smtp_from=Od +smtp_from_helper=Adres w polu "Od", zgodnie z RFC 5322. Może być to po prostu adres email, bądź adres w formacie "Nazwa" <email@example.com>. +mailer_user=Nadawca wiadomości E-mail +mailer_password=Hasło nadawcy +register_confirm=Włącz potwierdzenia rejestracji +mail_notify=Włącz powiadomienia e-mail +server_service_title=Ustawienia serwera i innych usług +offline_mode=Włącz tryb offline +offline_mode_popup=Wyłącz CDN, nawet w trybie produkcyjnym, wszystkie pliki zasobów będą podawane lokalnie. +disable_gravatar=Wyłącz usługę Gravatar +disable_gravatar_popup=Disable Gravatar and custom sources, all avatars are uploaded by users or default. +disable_registration=Wyłącz samodzielną rejestrację +disable_registration_popup=Wyłącz samodzielną rejestrację użytkownika, tylko administrator będzie mógł tworzyć konta. +enable_captcha=Włącz Captcha +enable_captcha_popup=Require validate captcha for user self-registration. +require_sign_in_view=Włącz wymóg zalogowania do przeglądania stron +require_sign_in_view_popup=Tylko zalogowani użytkownicy będą mogli przeglądać strony, goście zobaczą tylko stronę logowania. +admin_setting_desc=Nie musisz tworzyć konta administratora teraz, użytkownik z ID = 1 zyska dostęp administratora automatycznie. +admin_title=Ustawienia konta administratora +admin_name=Nazwa Użytkownika +admin_password=Hasło +confirm_password=Potwierdź hasło +admin_email=Admin E-mail +install_gogs=Zainstaluj Gogs +test_git_failed=Nie udało się przetestować polecenia "git": %v +sqlite3_not_available=Twoje wydanie nie obsługuje SQLite3, proszę pobrać oficjalne wydanie z %s, a NIE wersję z gobuild. +invalid_db_setting=Ustawienia bazy danych nie są poprawne: %v +invalid_repo_path=Ścieżka repozytoriów nie jest poprawna: %v +run_user_not_match=Użytkownik aplikacji nie jest aktualnym użytkownikiem: %s -> %s +save_config_failed=Nie udało się zapisać konfiguracji: %v +invalid_admin_setting=Nieprawidłowe ustawienia konta admina: %v +install_success=Cześć! Cieszymy się, że wybierałeś Gogs, baw się dobrze. + +[home] +uname_holder=Nazwa użytkownika lub e-mail +password_holder=Hasło +switch_dashboard_context=Przełącz kontekst strony głównej +my_repos=Moje repozytoria +collaborative_repos=Wspólne repozytoria +my_orgs=Moje organizacje +my_mirrors=Moje mirrory +view_home=Zobacz %s + +issues.in_your_repos=W twoich repozytoriach + +[explore] +repos=Repozytoria + +[auth] +create_new_account=Załóż nowe konto +register_hepler_msg=Masz już konto? Zaloguj się teraz! +social_register_hepler_msg=Masz już konto? Powiąż je teraz! +disable_register_prompt=Przepraszamy rejestracja została wyłączona. Prosimy o kontakt z administratorem serwisu. +disable_register_mail=Przepraszamy, potwierdzenia rejestracji zostały wyłączone przez administratora. +remember_me=Zapamiętaj mnie +forgot_password=Zapomniałem hasła +forget_password=Zapomniałeś hasła? +sign_up_now=Potrzebujesz konta? Zarejestruj się teraz. +confirmation_mail_sent_prompt=Nowa wiadomość e-mail z potwierdzeniem została wysłana do <b>%s</b>, proszę sprawdzić swoją skrzynkę odbiorczą w ciągu najbliższych godzin %d aby dokończyć proces rejestracji. +active_your_account=Aktywuj swoje konto +resent_limit_prompt=Niestety, zbyt często wysyłasz e-mail aktywacyjny. Proszę odczekać 3 minuty. +has_unconfirmed_mail=Witaj, %s, masz niepotwierdzony adres e-mail (<b>%s</b>). Jeśli nie otrzymałeś wiadomości e-mail z potwierdzeniem lub potrzebujesz wysłać nową, kliknij na poniższy przycisk. +resend_mail=Kliknij tutaj, aby wysłać e-mail aktywacyjny +email_not_associate=Ten adres e-mail nie jest skojarzony z żadnym kontem. +send_reset_mail=Kliknij tutaj, aby (ponownie) wysłać e-mail z instrukcjami resetowania hasła +reset_password=Resetowanie hasła +invalid_code=Niestety, twój kod potwierdzający wygasł lub jest nieprawidłowy. +reset_password_helper=Kliknij tutaj, aby zresetować hasło +password_too_short=Długość hasła nie może być mniejsza niż 6 znaków. + +[mail] +activate_account=Prosimy aktywować swoje konto +activate_email=Sprawdź Twój adres e-mail +reset_password=Zmień swoje hasło +register_success=Zostałeś zarejestrowany, witamy +register_notify=Welcome on board + +[modal] +yes=Tak +no=Nie +modify=Zmień + +[form] +UserName=Nazwa Użytkownika +RepoName=Nazwa repozytorium +Email=Adres e-mail +Password=Hasło +Retype=Wpisz ponownie hasło +SSHTitle=Nazwa klucza SSH +HttpsUrl=HTTPS URL +PayloadUrl=URL do wywołania +TeamName=Nazwa zespołu +AuthName=Nazwa autoryzacji +AdminEmail=E-mail administratora + +require_error=` nie może być puste.` +alpha_dash_error=` musi się składać z prawidłowych znaków alfanumerycznych, myślników oraz podkreśleń.` +alpha_dash_dot_error=` musi się składać z prawidłowych znaków alfanumerycznych, myślników, podkreśleń oraz kropek.` +size_error="musi być wielkości %s." +min_size_error=` musi zawierać co najwyżej %s znaków.` +max_size_error=` musi zawierać co najwyżej %s znaków.` +email_error=` nie jest poprawnym adresem e-mail.` +url_error=` nie jest poprawnym adresem URL.` +include_error=` must contain substring '%s'.` +unknown_error=Nieznany błąd: +captcha_incorrect=Kod captcha nie zgadza się. +password_not_match=Hasło i potwierdzenie nie zgadzają się. + +username_been_taken=Nazwa użytkownika jest już zajęta. +repo_name_been_taken=Nazwa repozytorium jest już zajęta. +org_name_been_taken=Nazwa organizacji jest już zajęta. +team_name_been_taken=Nazwa zespołu jest już zajęta. +email_been_used=Adres e-mail jest już zarejestrowany. +illegal_team_name=Nazwa zespołu zawiera niedozwolone znaki. +username_password_incorrect=Nazwa użytkownika lub hasło nie jest prawidłowe. +enterred_invalid_repo_name=Upewnij się, że wprowadzona nazwa repozytorium jest poprawna. +enterred_invalid_owner_name=Upewnij się, że nazwa właściciela repozytorium jest poprawna. +enterred_invalid_password=Proszę upewnij się, że wprowadzono hasło jest poprawne. +user_not_exist=Podany użytkownik nie istnieje. +last_org_owner=Usuwany użytkownik jest ostatnim członkiem ekipy właścicieli. Musi być inny właściciel. + +invalid_ssh_key=Niestety, nie jesteśmy stanie zweryfikować twojego klucza SSH: %s +unable_verify_ssh_key=Gogs nie może zweryfikować twojego klucza SSH, ale zakładamy, że jest poprawny, proszę sprawdź to samodzielnie. +auth_failed=Uwierzytelnianie nie powiodło się: %v + +still_own_repo=Twoje konto jest dalej właścicielem repozytorium, musisz je usunąć lub przekazać. +still_has_org=Twoje konto dalej posiada członkostwo w organizacji, musisz ją opuścić bądź usunąć. +org_still_own_repo=Ta organizacja dalej jest właścicielem repozytorium, musisz je usunąć bądź przekazać. + +still_own_user=To uwierzytelnienie dalej jest używane przez kilku użytkowników, musisz je przenieść i usunąć ponownie. + +target_branch_not_exist=Podana gałąź nie istnieje + +[user] +change_avatar=Zmień swój avatar na gravatar.com +change_custom_avatar=Zmień awatar w ustawieniach +join_on=Dołączył +repositories=Repozytoria +activity=Publiczna aktywność +followers=Obserwujący +starred=Polubionych +following=Obserwowani + +form.name_reserved=Nazwa użytkownika "%s" jest zarezerwowana. +form.name_pattern_not_allowed=Wzorzec nazwy użytkownika "%s" jest niedozwolony. + +[settings] +profile=Profil +password=Hasło +ssh_keys=Klucze SSH +social=Konta społecznościowe +applications=Aplikacje +orgs=Organizacje +delete=Usuń konto +uid=UID + +public_profile=Profil publiczny +profile_desc=Twój adres e-mail jest publiczny i będzie używany dla wszystkich powiadomień związanych z kontem i dla każdej operacji wykonanej przez tę stronę. +full_name=Imię i Nazwisko +website=Strona +location=Lolalizacja +update_profile=Zaktualizuj profil +update_profile_success=Twój profil został pomyślnie zaktualizowany. +change_username=Zmieniono nazwę użytkownika +change_username_prompt=This change will affect the way how links relate to your account. +continue=Konynuuj +cancel=Anuluj + +enable_custom_avatar=Włącz niestandardowe awatary +enable_custom_avatar_helper=Włącz to by wyłączyć grawatary +choose_new_avatar=Wybierz nowy avatar +update_avatar=Zaktualizuj ustawienia awatara +uploaded_avatar_not_a_image=Załadowany plik nie jest obrazem. +no_custom_avatar_available=Własny avatar niedostępny, nie można go włączyć. +update_avatar_success=Ustawienia awatarów zostały pomyślnie zaktualizowane. + +change_password=Zmień hasło +old_password=Aktualne hasło +new_password=Nowe hasło +retype_new_password=Powtórz nowe hasło +password_incorrect=Bieżące hasło nie jest prawidłowe. +change_password_success=Hasło zostało zmienione pomyślnie. Możesz teraz zalogować się za pomocą nowego hasła. + +emails=Adresy e-mail +manage_emails=Zarządzaj adresami e-mail +email_desc=Twój podstawowy adres e-mail będzie używany dla powiadomień i innych działań. +primary=Podstawowy +primary_email=Ustaw jako podstawowy +delete_email=Usuń +email_deletion=Usunięcie wiadomości e-mail +email_deletion_desc=Delete this e-mail address will remove related information from your account. Do you want to continue? +email_deletion_success=E-mail został usunięty pomyślnie! +add_new_email=Dodaj nowy e-mail +add_email=Dodaj e-mail +add_email_confirmation_sent=Nowa wiadomość e-mail z potwierdzeniem została wysłana do '%s', proszę sprawdzić swoją skrzynkę odbiorczą w ciągu %d godzin, aby dokończyć proces potwierdzania. +add_email_success=Twój nowy e-mail został dodany pomyślnie. + +manage_ssh_keys=Zarządzaj kluczami SSH +add_key=Dodaj klucz +ssh_desc=To jest lista kluczy SSH powiązanych z Twoim kontem. Usuń klucze, które nie rozpoznajesz. +ssh_helper=<strong>Potrzebujesz pomocy?</strong> Sprawdź nasz przewodnik <a href="%s"> generowania kluczy SSH</a> lub rozwiązywanie <a href="%s">typowych problemów z SSH</a>. +add_new_key=Dodaj klucz SSH +ssh_key_been_used=Public key content has been used. +ssh_key_name_used=Klucz publiczny o tej samej nazwie już istnieje. +key_name=Nazwa klucza +key_content=Treść +add_key_success=Pomyślnie dodano nowy klucz SSH '%s'! +delete_key=Usuń +ssh_key_deletion=Usunięcie klucza SSH +ssh_key_deletion_desc=Usunięcie tego klucza SSH będzie skutkować usunięciem wszystkich powiązanych dostępów do twojego konta. Czy chcesz kontynuować? +ssh_key_deletion_success=Klucz SSH został usunięty pomyślnie! +add_on=Dodano +last_used=Ostatnio użyto +no_activity=Brak aktywności +key_state_desc=This key is used in last 7 days +token_state_desc=This token is used in last 7 days + +manage_social=Zarządzaj powiązanymi kontami społecznościowymi +social_desc=To jest lista powiązanych kont społecznościowych. Usuń powiązania, których nie rozpoznajesz. +unbind=Usuń powiązanie +unbind_success=Konto społecznościowe zostało odpięte. + +manage_access_token=Zarządzaj osobistymi tokenami dostępu +generate_new_token=Wygeneruj nowy token +tokens_desc=Tokens you have generated that can be used to access the Gogs APIs. +new_token_desc=Jak na razie, każdy token zapewnia pełen dostęp do Twojego konta. +token_name=Nazwa tokena +generate_token=Wygeneruj token +generate_token_succees=Nowy token dostępu został wygenerowany pomyślnie! Upewnij się, że teraz go skopiowałeś. Nie będziesz mógł go zobaczyć ponownie! +delete_token=Usuń +access_token_deletion=Usuwanie osobistego tokena dostępu +access_token_deletion_desc=Usunięcie tego tokena osobistego dostęp spowoduje usunięcie wszystkich powiązanych dostępów do aplikacji. Czy chcesz kontynuować? +delete_token_success=Osobisty token dostępu został usunięty pomyślnie! Nie zapomnij również zaktualizować swoich aplikacji. + +delete_account=Usuń konto +delete_prompt=Ta operacja trwale usuwa konto, i <strong>NIE MOŻE</strong> zostać cofnięta! +confirm_delete_account=Potwierdź usunięcie +delete_account_title=Usunięcie konta +delete_account_desc=To konto będzie usunięte na zawsze, chcesz kontynuować? + +[repo] +owner=Właściciel +repo_name=Nazwa repozytorium +repo_name_helper=Dobre nazwy repozytorium są krótkie, wpadające w pamięć i <strong>unikalne</strong>. +visibility=Widoczność +visiblity_helper=To repozytorium jest <span class="ui red text">prywatne</span> +visiblity_helper_forced=Site admin has forced all new repositories to be <span class="ui red text">Private</span> +visiblity_fork_helper=(Change of this value will affect all forks) +clone_helper=Potrzebujesz pomocy z klonowaniem? Odwiedź <a target="_blank" href="%s">Pomoc</a>! +fork_repo=Sforkowane +fork_from=Forkuj z +fork_visiblity_helper=Fork nie może zmieniać swojej widoczności +repo_desc=Opis +repo_lang=Język +repo_lang_helper=Wybierz pliki .gitignore +license=Licencja +license_helper=Wybierz plik licencji +readme=Readme +readme_helper=Wybierz szablon readme +auto_init=Initialize this repository with selected files and template +create_repo=Utwórz repozytorium +default_branch=Domyślna gałąź +mirror_interval=Odświeżanie mirrorów (godziny) +watchers=Watchers +stargazers=Stargazers +forks=Forks + +form.name_reserved=Nazwa repozytorium "%s" jest zarezerwowana. +form.name_pattern_not_allowed=Wzorzec nazwy repozytorium "%s" jest niedozwolony. + +need_auth=Wymaga autoryzacji +migrate_type=Typ migracji +migrate_type_helper=This repository will be a <span class="text blue">mirror</span> +migrate_repo=Przenieś repozytorium +migrate.clone_address=Sklonuj adres +migrate.clone_address_desc=This can be a HTTP/HTTPS/GIT URL or local server path. +migrate.permission_denied=You are not allowed to import local repositories. +migrate.invalid_local_path=Ścieżka jest niepoprawna. Nie istnieje lub nie jest katalogiem. +migrate.failed=Migration failed: %v + +forked_from=sklonowany z +fork_from_self=You cannot fork repository you already owned! +copy_link=Kopiuj +copy_link_success=Skopiowane! +copy_link_error=Naciśnij klawisze ⌘-C i Ctrl-C, aby skopiować +copied=Skopiowano +unwatch=Przestań obserwować +watch=Obserwuj +unstar=Usuń gwiazdkę +star=Polub +fork=Fork + +no_desc=Brak opisu +quick_guide=Skrócona instrukcja +clone_this_repo=Klonuj repozytorium +create_new_repo_command=Utwórz nowe repozytorium z wiersza poleceń +push_exist_repo=Wyślij istniejące repozytorium z wiersza poleceń +repo_is_empty=To repozytorium jest puste, proszę wrócić później! + +branch=Gałąź +tree=Drzewo +filter_branch_and_tag=Filter branch or tag +branches=Gałęzie +tags=Tagi +issues=Problemy +pulls=Pull Requests +labels=Etykiety +milestones=Kamienie milowe +commits=Commity +releases=Wydania +file_raw=Czysty +file_history=Historia +file_view_raw=Zobacz czysty +file_permalink=Bezpośredni odnośnik + +commits.commits=Commity +commits.search=Przeszukaj commity +commits.find=Szukaj +commits.author=Autor +commits.message=Wiadomość +commits.date=Data +commits.older=Starsze +commits.newer=Nowsze + +issues.new=Nowe zgłoszenie +issues.new.labels=Etykiety +issues.new.no_label=Brak etykiety +issues.new.clear_labels=Wyczyść etykiety +issues.new.milestone=Kamień milowy +issues.new.no_milestone=No Milestone +issues.new.clear_milestone=Clear milestone +issues.new.open_milestone=Otwórz "kamienie milowe" +issues.new.closed_milestone=Zamknięte "kamienie milowe" +issues.new.assignee=Assignee +issues.new.clear_assignee=Clear assignee +issues.new.no_assignee=No assignee +issues.create=Create Issue +issues.new_label=Nowa etykieta +issues.new_label_placeholder=Label name... +issues.create_label=Create Label +issues.open_tab=%d Open +issues.close_tab=%d Closed +issues.filter_label=Etykieta +issues.filter_label_no_select=No selected label +issues.filter_milestone=Kamień milowy +issues.filter_milestone_no_select=No selected milestone +issues.filter_assignee=Przypisany +issues.filter_assginee_no_select=No selected Assignee +issues.filter_type=Typ +issues.filter_type.all_issues=All issues +issues.filter_type.assigned_to_you=Assigned to you +issues.filter_type.created_by_you=Created by you +issues.filter_type.mentioning_you=Mentioning you +issues.filter_sort=Sort +issues.filter_sort.latest=Najnowszy +issues.filter_sort.oldest=Oldest +issues.filter_sort.recentupdate=Recently updated +issues.filter_sort.leastupdate=Least recently updated +issues.filter_sort.mostcomment=Most commented +issues.filter_sort.leastcomment=Least commented +issues.opened_by=opened %[1]s by <a href="%[2]s">%[3]s</a> +issues.opened_by_fake=opened %[1]s by %[2]s +issues.previous=Previous +issues.next=Następny +issues.open_title=otwarty +issues.closed_title=zamknięty +issues.num_comments=%d komentarzy +issues.commented_at=`commented <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.no_content=There is no content yet. +issues.close_issue=Zamknij +issues.close_comment_issue=Skomentuj i zamknij +issues.reopen_issue=Otwórz ponownie +issues.reopen_comment_issue=Otwórz ponownie i dodaj komentarz +issues.create_comment=Komentuj +issues.closed_at=`closed <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.reopened_at=`reopened <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.commit_ref_at=`referenced this issue from a commit <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.poster=Autor +issues.admin=Admin +issues.owner=Właściciel +issues.sign_up_for_free=Zarejestruj się za darmo +issues.sign_in_require_desc=do przyłączenia się do tej rozmowy. Masz już konto? <a href="%s"> Zaloguj się by komentować</a> +issues.edit=Edytuj +issues.cancel=Anuluj +issues.save=Zapisz +issues.label_title=Nazwa etykiety +issues.label_color=Kolor etykiety +issues.label_count=%d etykiety +issues.label_open_issues=%d otwartych zgłoszeń +issues.label_edit=Edytuj +issues.label_delete=Usuń +issues.label_modify=Modyfikacja etykiety +issues.label_deletion=Usunięcie etykiety +issues.label_deletion_desc=Delete this label will remove its information in all related issues. Do you want to continue? +issues.label_deletion_success=Etykieta została usunięta pomyślnie! + +pulls.new=New Pull Request +pulls.compare_changes=Compare Changes +pulls.compare_changes_desc=Compare two branches and make a pull request for changes. +pulls.compare_base=base +pulls.compare_compare=compare +pulls.filter_branch=Filtruj branch +pulls.no_results=Nie znaleziono wyników. +pulls.nothing_to_compare=There is nothing to compare because base and head branches are even. +pulls.has_pull_request=`There is already a pull request between these two targets: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>` +pulls.create=Utwórz Pull Request +pulls.title_desc=wants to merge %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> +pulls.merged_title_desc=merged %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> %[4]s +pulls.tab_conversation=Conversation +pulls.tab_commits=Commity +pulls.tab_files=Pliki zmodyfikowane +pulls.reopen_to_merge=Please reopen this pull request to perform merge operation. +pulls.merged=Scalone +pulls.has_merged=This pull request has been merged successfully! +pulls.data_broken=Data of this pull request has been broken due to deletion of fork information. +pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments. +pulls.can_auto_merge_desc=You can perform auto-merge operation on this pull request. +pulls.cannot_auto_merge_desc=You can't perform auto-merge operation because there are conflicts between commits. +pulls.cannot_auto_merge_helper=Please use command line tool to solve it. +pulls.merge_pull_request=Scal Pull Request +pulls.open_unmerged_pull_exists=`You can't perform reopen operation because there is already an open pull request (#%d) from same repository with same merge information and is waiting for merging.` + +milestones.new=Nowy kamień milowy +milestones.open_tab=%d Open +milestones.close_tab=%d Closed +milestones.closed=Closed %s +milestones.no_due_date=Nie ustalono terminu +milestones.open=Otwórz +milestones.close=Zamknij +milestones.new_subheader=Create milestones to organize your issues. +milestones.create=Utwórz punkt kontrolny +milestones.title=Tytuł +milestones.desc=Opis +milestones.due_date=Termin realizacji (opcjonalnie) +milestones.clear=Wyczyść +milestones.invalid_due_date_format=Format daty realizacji jest nieprawidłowy, musi być "rrrr-mm-dd". +milestones.create_success=Kamień milowy "%s" został utworzony pomyślnie! +milestones.edit=Edytuj kamień milowy +milestones.edit_subheader=Use better description for milestones so people won't be confused. +milestones.cancel=Anuluj +milestones.modify=Modyfikuj kamień milowy +milestones.edit_success=Changes of milestone '%s' has been saved successfully! +milestones.deletion=Milestone Deletion +milestones.deletion_desc=Delete this milestone will remove its information in all related issues. Do you want to continue? +milestones.deletion_success=Kamień milowy został usunięty pomyślnie! + +settings=Ustawienia +settings.options=Opcje +settings.collaboration=Współpraca +settings.hooks=Webhooks +settings.githooks=Skrypty Git +settings.basic_settings=Ustawienia podstawowe +settings.danger_zone=Strefa niebezpieczeństwa +settings.site=Oficjalna Strona +settings.update_settings=Aktualizuj ustawienia +settings.change_reponame_prompt=Zmiana nazwy repozytorium wpłynie na linki do niego. +settings.transfer=Przeniesienie własności +settings.transfer_desc=Przenieś to repozytorium do innego użytkownika lub organizacji gdzie masz uprawnienia administratora. +settings.new_owner_has_same_repo=Nowy właściciel już posiada repozytorium o tej samej nazwie. +settings.delete=Usuń to repozytorium +settings.delete_desc=Po usunięciu repozytorium nie ma odwrotu. Upewnij się, że tego chcesz. +settings.transfer_notices_1=- You will lose access if new owner is a individual user. +settings.transfer_notices_2=- You will conserve access if new owner is an organization and if you're one of the owners. +settings.transfer_form_title=Please enter following information to confirm your operation: +settings.delete_notices_1=- This operation <strong>CANNOT</strong> be undone. +settings.delete_notices_2=- This operation will permanently delete the everything of this repository, including Git data, issues, comments and accesses of collaborators. +settings.delete_notices_fork_1=- If this repository is public, all forks will be became independent after deletion. +settings.delete_notices_fork_2=- If this repository is private, all forks will be removed at the same time. +settings.delete_notices_fork_3=- If you want to keep all forks after deletion, please change visibility of this repository to public first. +settings.update_settings_success=Opcje repozytorium zostały pomyślnie zaktualizowane. +settings.transfer_owner=Nowy właściciel +settings.make_transfer=Przenieś +settings.transfer_succeed=Własność repozytorium została przeniesiona pomyślnie. +settings.confirm_delete=Potwierdź usunięcie +settings.add_collaborator=Dodaj nowego współpracownika +settings.add_collaborator_success=Został dodany nowy współpracownik. +settings.remove_collaborator_success=Współpracownik został usunięty. +settings.search_user_placeholder=Search user... +settings.user_is_org_member=Użytkownik jest członkiem organizacji, który nie może być dodany jako współpracownik. +settings.add_webhook=Dodaj Webhooka +settings.hooks_desc=Webhooks are much like basic HTTP POST event triggers. Whenever something occurs in Gogs, we will handle the notification to the target host you specify. Learn more in this <a target="_blank" href="%s">Webhooks Guide</a>. +settings.webhook_deletion=Usuń Webhook +settings.webhook_deletion_desc=Delete this webhook will remove its information and all delivery history. Do you want to continue? +settings.webhook_deletion_success=Webhook has been deleted successfully! +settings.webhook.request=Żądanie +settings.webhook.response=Response +settings.webhook.headers=Headers +settings.webhook.payload=Payload +settings.webhook.body=Body +settings.githooks_desc=Doczepki Git są napędzane przez samego Git, można edytować pliki obsługiwanych doczepek z poniższej listy, aby wykonywać niestandardowe operacje. +settings.githook_edit_desc=Jeżeli doczepka jest nieaktywna, prezentowana będzie przykładowa treść. Pozostawienie pustej wartości wyłączy tą doczepkę. +settings.githook_name=Nazwa skryptu +settings.githook_content=Treść skryptu +settings.update_githook=Zaktualizuj skrypt +settings.add_webhook_desc=Wyślemy żądanie <code>POST</code> pod poniższy adres ze szczegółami zdarzeń. Możesz również ustalić format danych zapytania (JSON, <code>x-www-form-urlencoded</code>, <em>itp</em>). Więcej informacji można znaleźć w <a target="_blank" href="%s">przewodniku skryptów internetowych</a>. +settings.payload_url=URL do wywołania +settings.content_type=Typ zawartości +settings.secret=Sekret +settings.slack_username=Username +settings.slack_icon_url=Icon URL +settings.slack_color=Kolor +settings.event_desc=Jakie zdarzenia mają wywoływać ten skrypt internetowy? +settings.event_push_only=Tylko zdarzenia <code>push</code>. +settings.event_send_everything=Potrzebuję <strong>wszystkiego</strong>. +settings.event_choose=Pozwól mi wybrać, czego potrzebuję. +settings.event_create=Utwórz +settings.event_create_desc=Branch, or tag created +settings.event_push=Push +settings.event_push_desc=Git push to a repository +settings.active=Aktywny +settings.active_helper=Dostarczymy szczegóły zdarzenia, gdy ten skrypt zostanie wywołany. +settings.add_hook_success=Nowy skrypt został dodany. +settings.update_webhook=Zaktualizuj skrypt internetowy +settings.update_hook_success=Skrypt internetowy został zaktualizowany. +settings.delete_webhook=Usuń skrypt internetowy +settings.recent_deliveries=Ostatnie wywołania +settings.hook_type=Typ skryptu +settings.add_slack_hook_desc=Dodać integrację ze <a href="%s">Slackiem</a> do twojego repozytorium. +settings.slack_token=Token +settings.slack_domain=Domena +settings.slack_channel=Kanał +settings.deploy_keys=Klucze wdrożeniowe +settings.add_deploy_key=Add Deploy Key +settings.no_deploy_keys=You haven't added any deploy key. +settings.title=Tytuł +settings.deploy_key_content=Treść +settings.key_been_used=Deploy key content has been used. +settings.key_name_used=Deploy key with same name has already existed. +settings.add_key_success=New deploy key '%s' has been added successfully! +settings.deploy_key_deletion=Delete Deploy Key +settings.deploy_key_deletion_desc=Delete this deploy key will remove all related accesses for this repository. Do you want to continue? +settings.deploy_key_deletion_success=Deploy key has been deleted successfully! + +diff.browse_source=Przeglądaj źródła +diff.parent=rodzic +diff.commit=commit +diff.data_not_available=Informacje nt. zmiany nie są dostępne. +diff.show_diff_stats=Pokaż statystyki zmian +diff.stats_desc=<strong>%d zmienionych plików</strong> z <strong>%d dodań</strong> i <strong>%d usunięć</strong> +diff.bin=BIN +diff.view_file=Wyświetl plik + +release.releases=Wydania +release.new_release=Nowe wydanie +release.draft=Szkic +release.prerelease=Wersja wstępna +release.stable=Stabilny +release.edit=edytuj +release.ahead=<strong>%d</strong> commitów w %s od tego wydania +release.source_code=Kod źródłowy +release.new_subheader=Publish releases to iterate product. +release.edit_subheader=Detailed change log can help users understand what has been improved. +release.tag_name=Nazwa tagu +release.target=Cel +release.tag_helper=Wybierz istniejący tag, bądź utwórz nowy podczas publikacji. +release.title=Title +release.content=Content +release.write=Napisz +release.preview=Pogdląd +release.loading=Ładowanie... +release.prerelease_desc=To jest wersja wstępna +release.prerelease_helper=Chcemy zwrócić uwagę, że ta wersja jest oznaczona jako eksperymentalna. +release.cancel=Cancel +release.publish=Publikuj wersję +release.save_draft=Zapisz szkic +release.edit_release=Edytuj wydanie +release.delete_release=Delete This Release +release.deletion=Release Deletion +release.deletion_desc=Delete this release will delete corresponding Git tag. Do you want to continue? +release.deletion_success=Release has been deleted successfully! +release.tag_name_already_exist=Wersja o tej nazwie tagu już istnieje. +release.downloads=Downloads + +[org] +org_name_holder=Nazwa organizacji +org_full_name_holder=Organization Full Name +org_name_helper=Świetne nazwy organizacji są krótkie i łatwe do zapamiętania. +create_org=Utwórz organizację +repo_updated=Zaktualizowano +people=Ludzie +invite_someone=Zaproś kogoś +teams=Zespoły +lower_members=członkowie +lower_repositories=repozytoria +create_new_team=Utwórz nowy zespół +org_desc=Opis +team_name=Nazwa zespołu +team_desc=Opis +team_name_helper=Będziesz używał tej nazwy do wywoływania tego zespołu w dyskusjach. +team_desc_helper=Czym zajmuje się ten zespół? +team_permission_desc=Jaki poziom uprawnień powinien mieć ten zespół? + +form.name_reserved=Nazwa organizacji "%s" jest zarezerwowana. +form.name_pattern_not_allowed=Wzorzec nazwy organizacji "%s" jest niedozwolony. + +settings=Ustawienia +settings.options=Opcje +settings.full_name=Imię i Nazwisko +settings.website=Strona +settings.location=Lolalizacja +settings.update_settings=Aktualizuj ustawienia +settings.update_setting_success=Ustawienia organizacji zostały pomyślnie zaktualizowane. +settings.change_orgname_prompt=This change will affect how links relate to the organization. +settings.update_avatar_success=Organization avatar setting has been updated successfully. +settings.delete=Usuń Organizację +settings.delete_account=Usuń tą organizację +settings.delete_prompt=Organizacja zostanie trwale usunięta, a to <strong>NIE MOŻE</strong> być cofnięte! +settings.confirm_delete_account=Potwierdź usunięcie +settings.delete_org_title=Usunięcie organizacji +settings.delete_org_desc=Ta organizacja zostanie trwale usunięta, czy chcesz kontynuować? +settings.hooks_desc=Add webhooks that will be triggered for <strong>all repositories</strong> under this organization. + +members.public=Publiczne +members.public_helper=sprywatyzuj +members.private=Prywatne +members.private_helper=upublicznij +members.owner=Właściciel +members.member=Członek +members.conceal=Ukryj +members.remove=Usuń +members.leave=Opuść +members.invite_desc=Zacznij wpisywać nazwę użytkownika by zaprosić nowego członka do %s: +members.invite_now=Zaproś teraz + +teams.join=Dołącz +teams.leave=Opuść +teams.read_access=Dostęp do odczytu +teams.read_access_helper=Ten zespół będzie mógł wyświetlać i klonować swoje repozytoria. +teams.write_access=Dostęp do zapisu +teams.write_access_helper=Ten zespół będzie mógł odczytywać i wysyłać do swoich repozytoriów. +teams.admin_access=Uprawnienia admina +teams.admin_access_helper=Ten zespół będzie mógł wysyłać i pobierać swoje repozytoria, oraz dodawać do nich współpracowników. +teams.no_desc=Ten zespół nie ma opisu +teams.settings=Ustawienia +teams.owners_permission_desc=Właściciele mają pełny dostęp do <strong>wszystkich repozytoriów</strong> i mają <strong>prawa administratora</strong> w organizacji. +teams.members=Członkowie zespołu +teams.update_settings=Aktualizuj ustawienia +teams.delete_team=Usuń ten zespół +teams.add_team_member=Dodaj członka zespołu +teams.delete_team_title=Usuwanie zespołu +teams.delete_team_desc=Ten zespół zostanie usunięty, czy na pewno chcesz kontynuować? Jego członkowie mogą utracić dostęp do części repozytoriów. +teams.delete_team_success=Zespół został usunięty pomyślnie. +teams.read_permission_desc=Ten zespół daje dostęp do <strong>odczytu</strong>: członkowie mogą wyświetlać i klonować repozytoria zespołu. +teams.write_permission_desc=Ten zespół daje dostęp do <strong>zapisu</strong>: członkowie mogą wyświetlać i wysyłać do repozytoriów zespołu. +teams.admin_permission_desc=Ten zespół daje dostęp <strong>pełny</strong>: członkowie mogą wyświetlać, wysyłać i dodawać współpracowników do repozytoriów zespołu. +teams.repositories=Repozytoria zespołu +teams.add_team_repository=Dodaj repozytorium zespołu +teams.remove_repo=Usuń +teams.add_nonexistent_repo=Repozytorium, które próbujesz dodać, nie istnieje, wpierw je utwórz. + +[admin] +dashboard=Pulpit +users=Użytkownicy +organizations=Organizacje +repositories=Repozytoria +authentication=Uwierzytelnienia +config=Konfiguracja +notices=Powiadomienia systemowe +monitor=Monitorowanie +first_page=Pierwsza +last_page=Ostatnia +total=Ogółem: %d + +dashboard.statistic=Statystyki +dashboard.operations=Operacje +dashboard.system_status=Stan monitora systemu +dashboard.statistic_info=Baza danych Gogs zawiera <b>%d</b> użytkowników, <b>%d</b> organizacji, <b>%d</b> kluczy publicznych, <b>%d</b> repozytoriów, <b>%d</b> obserwujących, <b>%d</b> polubionych, <b>%d</b> akcji, <b>%d</b> tokenów, <b>%d</b> problemów, <b>%d</b> komenatrzy, <b>%d</b> kont społecznościowych, <b>%d</b> obserwacji, <b>%d</b> mirrorów, <b>%d</b> wydań, <b>%d</b> login sources, <b>%d</b> webhooków, <b>%d</b> kamieni milowych, <b>%d</b> labels, <b>%d</b> zadań hooków, <b>%d</b> zespołów, <b>%d</b> zadań aktualizacji, <b>%d</b> załączników. +dashboard.operation_name=Nazwa operacji +dashboard.operation_switch=Przełącz +dashboard.operation_run=Uruchom +dashboard.clean_unbind_oauth=Usuń niepowiązane wpisy OAuth +dashboard.clean_unbind_oauth_success=Wszystkie niepowiązane wpisy OAuth zostały pomyślnie usunięte. +dashboard.delete_inactivate_accounts=Usuń wszystkie nieaktywne konta +dashboard.delete_inactivate_accounts_success=Wszystkie nieaktywne konta zostały usunięte pomyślnie. +dashboard.delete_repo_archives=Usuń wszystkie archiwa repozytoriów +dashboard.delete_repo_archives_success=Pomyślnie usunięto wszystkie archiwa repozytoriów. +dashboard.delete_missing_repos=Delete all repository records that lost Git files +dashboard.delete_missing_repos_success=All repository records that lost Git files have been deleted successfully. +dashboard.git_gc_repos=Usuń śmieci z repozytoriów +dashboard.git_gc_repos_success=Wszystkie repozytoria zakończyły odśmiecanie pomyślnie. +dashboard.resync_all_sshkeys=Przeładuj klucze publiczne w pliku '.ssh/authorized_keys' (uwaga: klucze poza Gogs zostaną usunięte) +dashboard.resync_all_sshkeys_success=Przeładowanie kluczy publicznych zakończyło się sukcesem. +dashboard.resync_all_update_hooks=Rewrite all update hook of repositories (needed when custom config path is changed) +dashboard.resync_all_update_hooks_success=All repositories' update hook have been rewritten successfully. + +dashboard.server_uptime=Uptime serwera +dashboard.current_goroutine=Bieżące Goroutines +dashboard.current_memory_usage=Bieżące użycie pamięci +dashboard.total_memory_allocated=Całkowita przydzielona pamięć +dashboard.memory_obtained=Memory Obtained +dashboard.pointer_lookup_times=Pointer Lookup Times +dashboard.memory_allocate_times=Memory Allocate Times +dashboard.memory_free_times=Memory Free Times +dashboard.current_heap_usage=Bieżące użycie stosu +dashboard.heap_memory_obtained=Heap Memory Obtained +dashboard.heap_memory_idle=Heap Memory Idle +dashboard.heap_memory_in_use=Użycie pamięci stosu +dashboard.heap_memory_released=Heap Memory Released +dashboard.heap_objects=Ilość obiektów na stercie +dashboard.bootstrap_stack_usage=Bootstrap Stack Usage +dashboard.stack_memory_obtained=Stack Memory Obtained +dashboard.mspan_structures_usage=MSpan Structures Usage +dashboard.mspan_structures_obtained=MSpan Structures Obtained +dashboard.mcache_structures_usage=MCache Structures Usage +dashboard.mcache_structures_obtained=MCache Structures Obtained +dashboard.profiling_bucket_hash_table_obtained=Profiling Bucket Hash Table Obtained +dashboard.gc_metadata_obtained=Ilość uzyskanych danych przez GC +dashboard.other_system_allocation_obtained=Other System Allocation Obtained +dashboard.next_gc_recycle=Następne wywołanie GC +dashboard.last_gc_time=Czas od ostatniego wywołania GC +dashboard.total_gc_time=Sumaryczny czas wstrzymania przez GC +dashboard.total_gc_pause=Sumaryczny czas wstrzymania przez GC +dashboard.last_gc_pause=Ostatnie wstrzymanie przez GC +dashboard.gc_times=Ilość wywołań GC + +users.user_manage_panel=Panel zarządzania kontem użytkownika +users.new_account=Załóż nowe konto +users.name=Nazwa +users.activated=Aktywowany +users.admin=Admin +users.repos=Repozytoria +users.created=Utworzony +users.send_register_notify=Send Registration Notification To User +users.new_success=New account '%s' has been created successfully. +users.edit=Edytuj +users.auth_source=Authentication Source +users.local=Lokalne +users.auth_login_name=Authentication Login Name +users.password_helper=Leave it empty to remain unchanged. +users.update_profile_success=Profil konta został pomyślnie zaktualizowany. +users.edit_account=Edytuj konto +users.is_activated=To konto jest aktywne +users.is_admin=To konto ma uprawnienia administratora +users.allow_git_hook=To konto posiada uprawnienia do tworzenia skryptów Git +users.allow_import_local=This account has permissions to import local repositories +users.update_profile=Zaktualizuj profil konta +users.delete_account=Usuń to konto +users.still_own_repo=Twoje konto jest dalej właścicielem repozytorium, musisz je usunąć lub przekazać. +users.still_has_org=Twoje konto dalej posiada członkostwo w organizacji, musisz ją opuścić bądź usunąć. +users.deletion_success=Account has been deleted successfully! + +orgs.org_manage_panel=Panel zarządzania organizacją +orgs.name=Nazwa +orgs.teams=Zespoły +orgs.members=Członkowie + +repos.repo_manage_panel=Panel zarządzania repozytorium +repos.owner=Właściciel +repos.name=Nazwa +repos.private=Prywatne +repos.watches=Obserwujących +repos.stars=Polubienia +repos.issues=Problemy + +auths.auth_manage_panel=Authentication Manage Panel +auths.new=Dodać nowe Źródło +auths.name=Nazwa +auths.type=Typ +auths.enabled=Włączono +auths.updated=Zaktualizowano +auths.auth_type=Typ uwierzytelniania +auths.auth_name=Nazwa uwierzytelniania +auths.domain=Domena +auths.host=Host +auths.port=Port +auths.bind_dn=Bind DN +auths.bind_password=Bind Password +auths.bind_password_helper=Warning: This password is stored in plain text. Do not use a high privileged account. +auths.user_base=User Search Base +auths.user_dn=User DN +auths.attribute_name=Atrybut imienia +auths.attribute_surname=Atrybut nazwiska +auths.attribute_mail=Atrybut email +auths.filter=User Filter +auths.admin_filter=Admin Filter +auths.ms_ad_sa=Ms Ad SA +auths.smtp_auth=SMTP Authentication Type +auths.smtphost=Serwer SMTP +auths.smtpport=Port SMTP +auths.allowed_domains=Dozwolone domeny +auths.allowed_domains_helper=Pozostaw puste aby nie ograniczać domen. Wiele domen powinno być oddzielone przecinkami ','. +auths.enable_tls=Włącz szyfrowanie TLS +auths.skip_tls_verify=Pomiń weryfikację protokołu TLS +auths.pam_service_name=Nazwa usługi PAM +auths.enable_auto_register=Włącz automatyczną rejestrację +auths.tips=Wskazówki +auths.edit=Edytuj ustawienia uwierzytelniania +auths.activated=To uwierzytelnienie zostało aktywowane +auths.new_success=Pomyślnie dodano nowe uwierzytelnianie '%s'. +auths.update_success=Ustawienia uwierzytelnienia zostały zaktualizowane pomyślnie. +auths.update=Aktualizuj ustawienia uwierzytelniania +auths.delete=Usuń to uwierzytelnianie +auths.delete_auth_title=Usunięcie uwierzytelniania +auths.delete_auth_desc=To uwierzytelnienie zostanie usunięte, czy chcesz kontynuować? +auths.deletion_success=Uwierzytelnianie zostało usunięte pomyślnie! + +config.server_config=Konfiguracja serwera +config.app_name=Nazwa Aplikacji +config.app_ver=Wersja aplikacji +config.app_url=Adres URL aplikacji +config.domain=Domena +config.offline_mode=Tryb offline +config.disable_router_log=Wyłącz dziennik routera +config.run_user=Nazwa użytkownika uruchomieniowego +config.run_mode=Tryb uruchamienia +config.repo_root_path=Ścieżka repozytoriów +config.static_file_root_path=Ścieżka plików statycznych +config.log_file_root_path=Ścieżka plików dziennika +config.script_type=Typ skryptu +config.reverse_auth_user=Użytkownik dostarczony przez odwrotne proxy +config.db_config=Konfiguracja bazy danych +config.db_type=Typ +config.db_host=Host +config.db_name=Nazwa +config.db_user=Użytkownik +config.db_ssl_mode=Tryb SSL +config.db_ssl_mode_helper=(tylko dla "postgres") +config.db_path=Ścieżka +config.db_path_helper=(dla "sqlite3" i "tidb") +config.service_config=Konfiguracja usługi +config.register_email_confirm=Wymagaj potwierdzenia e-mail +config.disable_register=Wyłącz rejestrację +config.show_registration_button=Pokazuj przycisk rejestracji +config.require_sign_in_view=Wymagaj bycia zalogowanym +config.enable_cache_avatar=Włącz cache awatarów +config.mail_notify=Powiadomienia e-mail +config.disable_key_size_check=Wyłącz sprawdzanie minimalnego rozmiaru klucza +config.enable_captcha=Włącz Captcha +config.active_code_lives=Ważność kodów aktywacyjnych +config.reset_password_code_lives=Czas życia kodu resetowania hasła +config.webhook_config=Konfiguracja skryptów internetowych +config.queue_length=Długość kolejki +config.deliver_timeout=Limit czasu zdarzenia +config.skip_tls_verify=Pomiń weryfikację protokołu TLS +config.mailer_config=Konfiguracja poczty +config.mailer_enabled=Aktywne +config.mailer_disable_helo=Wyłącz HELO +config.mailer_name=Nazwa +config.mailer_host=Host +config.mailer_user=Użytkownik +config.oauth_config=Konfiguracja OAuth +config.oauth_enabled=Aktywne +config.cache_config=Konfiguracja cache +config.cache_adapter=Adapter cache +config.cache_interval=Interwał pamięci podręcznej +config.cache_conn=Połączenie z pamięcią podręczną +config.session_config=Konfiguracja sesji +config.session_provider=Dostawca sesji +config.provider_config=Konfiguracja dostawcy +config.cookie_name=Nazwa ciasteczka +config.enable_set_cookie=Włącz ciasteczka +config.gc_interval_time=Interwał odśmiecania +config.session_life_time=Czas życia sesji +config.https_only=Tylko HTTPS +config.cookie_life_time=Czas życia ciasteczka +config.picture_config=Ustawienia obrazów +config.picture_service=Serwis obrazów +config.disable_gravatar=Wyłącz Gravatara +config.log_config=Konfiguracja dziennika +config.log_mode=Tryb dziennika + +monitor.cron=Zadania cron +monitor.name=Nazwa +monitor.schedule=Harmonogram +monitor.next=Następny czas +monitor.previous=Poprzedni czas +monitor.execute_times=Czas wykonania +monitor.process=Procesy +monitor.desc=Opis +monitor.start=Czas rozpoczęcia +monitor.execute_time=Czas wykonania + +notices.system_notice_list=Powiadomienia systemu +notices.type=Typ +notices.type_1=Repozytorium +notices.desc=Opis +notices.op=Op. +notices.delete_success=Powiadomienia systemowe zostały usunięte pomyślnie. + +[action] +create_repo=utworzono repozytorium <a href="%s"> %s</a> +rename_repo=nazwa repozytorium zmieniona z <code>%[1]s</code> na <a href="%[2]s">%[3]s</a> +commit_repo=wypchnął do <a href="%[1]s/src/%[2]s">%[3]s</a> w <a href="%[1]s"> %[4]s</a> +create_issue=`zgłosił problem <a href="%s/issues/%s">#%[2]s %[3]s</a>` +create_pull_request="stworzył pull request <a href="%s/pulls/%s"> %s #%[2]s"</a> +comment_issue=`skomentował problem <a href="%s/issues/%s">#%[2]s %[3]s</a>` +merge_pull_request=scalił pull request <a href="%s/pulls/%s"> %s #%[2]s"</a> +transfer_repo=przeniósł repozytorium <code>%s</code> do <a href="%s">%s</a> +push_tag=opublikował tag <a href="%s/src/%s">%[2]s</a> w <a href="%[1]s">%[3]s</a> +compare_2_commits=Zobacz porównanie tych 2 commitów + +[tool] +ago=temu +from_now=od teraz +now=teraz +1s=1 sekundę %s +1m=1 minutę %s +1h=1 godzinę %s +1d=1 dzień %s +1w=1 tydzień %s +1mon=1 miesiąc %s +1y=1 rok %s +seconds=%d sekund %s +minutes=%d minut %s +hours=%d godzin %s +days=%d dni %s +weeks=%d tygodni %s +months=%d miesięcy %s +years=%d lat %s +raw_seconds=sekund +raw_minutes=minut + +[dropzone] +default_message=Upuść pliki tutaj lub kliknij, aby przesłać. +invalid_input_type=Nie można przesłać plików tego typu. +file_too_big=Rozmiar pliku ({{filesize}} MB) przekracza rozmiar maksymalny ({{maxFilesize}} MB). +remove_file=Usuń plik + diff --git a/conf/locale/locale_pt-BR.ini b/conf/locale/locale_pt-BR.ini index 2a4cc7e9..7f3f6187 100755 --- a/conf/locale/locale_pt-BR.ini +++ b/conf/locale/locale_pt-BR.ini @@ -1,992 +1,1009 @@ -app_desc=Um serviço de Git auto-hospedado e amigável escrito em Go
-
-home=Página Inicial
-dashboard=Painel de controle
-explore=Explorar
-help=Ajuda
-sign_in=Entrar
-sign_out=Sair
-sign_up=Cadastrar
-register=Registrar
-website=Site
-version=Versão
-page=Página
-template=Modelo
-language=Idioma
-create_new=Criar...
-user_profile_and_more=Perfil do usuário e configurações
-signed_in_as=Você é
-
-username=Usuário
-email=E-mail
-password=Senha
-re_type=Redigite
-captcha=Captcha
-
-repository=Repositório
-organization=Organização
-mirror=Espelho
-new_repo=Novo Repositório
-new_migrate=Nova Migração
-new_fork=Novo Fork de Repositório
-new_org=Nova Organização
-manage_org=Gerenciar Organizações
-admin_panel=Painel do Administrador
-account_settings=Configurações da Conta
-settings=Configurações
-your_profile=Seu perfil
-your_settings=Suas configurações
-
-news_feed=Feed de Notícias
-pull_requests=Solicitações de Pull
-issues=Problemas
-
-cancel=Cancelar
-
-[search]
-search=Pesquisar...
-repository=Repositório
-user=Usuário
-issue=Problema
-code=Código
-
-[install]
-install=Instalação
-title=Etapas de instalação para Primeira Execução
-docker_helper=Se você está rodando o Gogs dentro do Docker, por favor leia os <a target="_blank" href="%s">Guias</a> cuidadosamente antes de mudar qualquer coisa nesta página!
-requite_db_desc=Gogs requer MySQL, PostgreSQL, SQLite3 ou TiDB.
-db_title=Configurações de Banco de Dados
-db_type=Tipo do Banco de Dados
-host=Host
-user=Usuário
-password=Senha
-db_name=Nome do Banco de Dados
-db_helper=Por favor, use o mecanismo INNODB com o conjunto de caracteres utf8_general_ci para MySQL.
-ssl_mode=Modo SSL
-path=Caminho
-sqlite_helper=O caminho do arquivo do banco de dados SQLite3 ou TiDB.
-err_empty_db_path=O Caminho do banco de dados SQLite3 ou TiDB não pode ser vazio.
-err_invalid_tidb_name=Nome do banco de dados TiDB não permite os caracteres "." e "-".
-no_admin_and_disable_registration=Você não pode desabilitar o registro sem criar uma conta de administrador.
-err_empty_admin_password=A senha de administrador não pode ser vazia.
-
-general_title=Configurações Gerais do Gogs
-app_name=Nome do Aplicativo
-app_name_helper=Coloque o nome da sua organização aqui!
-repo_path=Caminho da Raiz do Repositório
-repo_path_helper=Todos os repositórios remotos do Git serão salvos neste diretório.
-run_user=Executar Usuário
-run_user_helper=O usuário deve ter acesso ao caminho raiz do repositório e executar o Gogs
-domain=Domínio
-domain_helper=Isto afeta URLs para clonagem via SSH.
-ssh_port=Porta SSH
-ssh_port_helper=Número da porta que seu servidor SSH está usando, deixe vazio para desativar o recurso SSH.
-http_port=Porta HTTP
-http_port_helper=Número da porta em que a aplicação irá executar.
-app_url=URL do Aplicativo
-app_url_helper=Isto afeta a URL de clonagem via HTTP/HTTPs e também o email.
-
-optional_title=Configurações Opcionais
-email_title=Configurações do Serviço de E-mail
-smtp_host=Host SMTP
-smtp_from=De
-smtp_from_helper=O endereço de email deve atender a especificação RFC 5322. O formato deve ser um email ou "Nome" <email@example.com>.
-mailer_user=E-mail do Remetente
-mailer_password=Senha do Remetente
-register_confirm=Habilitar Confirmação de Registro
-mail_notify=Habilitar Notificação de Correio
-server_service_title=Configurações de Servidor e Outros Serviços
-offline_mode=Ativar Modo Offline
-offline_mode_popup=Desative o CDN mesmo em modo de produção, todos os recursos serão disponibilizados localmente.
-disable_gravatar=Desativar Serviço Gravatar
-disable_gravatar_popup=Desabilitar o Gravatar e fontes personalizadas, todos os avatares são enviados por usuários ou padrão.
-disable_registration=Desativar auto-registro
-disable_registration_popup=Desativar o auto-registro de usuário, para que somente o administrador possa criar contas.
-enable_captcha=Habilitar Captcha
-enable_captcha_popup=Obrigar validação por captcha para auto-registro de usuários.
-require_sign_in_view=Requerer login para a visualização de páginas
-require_sign_in_view_popup=Somente usuários autenticados podem ver todas as páginas, visitantes somente podem entrar ou se cadastrar.
-admin_setting_desc=Você não precisa criar uma conta de administrador agora, no entanto o primeiro usuário (ID=1) automaticamente terá acesso de administrador.
-admin_title=Configurações da Conta de Administrador
-admin_name=Nome de Usuário
-admin_password=Senha
-confirm_password=Confirmar Senha
-admin_email=E-mail
-install_gogs=Instalar Gogs
-test_git_failed=Falha ao testar o comando 'git': %v
-sqlite3_not_available=Sua versão não suporta SQLite3, por favor faça o download da versão binária oficial em %s, NÃO da versão gobuild.
-invalid_db_setting=Configuração do banco de dados não está correta: %v
-invalid_repo_path=A raiz do repositório é inválida: %v
-run_user_not_match=O usuário da execução não é o usuário atual: %s -> %s
-save_config_failed=Falha ao salvar a configuração: %v
-invalid_admin_setting=Configuração da conta de administrador está inválida: %v
-install_success=Bem-vindo! Estamos contentes que você escolheu o Gogs, divirta-se e tenha cuidado.
-
-[home]
-uname_holder=Nome de Usuário ou E-mail
-password_holder=Senha
-switch_dashboard_context=Trocar Contexto do Painel de Controle
-my_repos=Meus Repositórios
-collaborative_repos=Repositórios Colaborativos
-my_orgs=Minhas Organizações
-my_mirrors=Meus Espelhos
-view_home=Ver %s
-
-issues.in_your_repos=Em seus repositórios
-
-[explore]
-repos=Repositórios
-
-[auth]
-create_new_account=Criar Nova Conta
-register_hepler_msg=Já tem uma conta? Entre agora!
-social_register_hepler_msg=Já tem uma conta? Junte-se agora!
-disable_register_prompt=Desculpe, novos registros estão desabilitados. Por favor entre em contato com o administrador do site.
-disable_register_mail=Desculpe, a confirmação de registro por e-mail foi desabilitada.
-remember_me=Lembrar de Mim
-forgot_password=Esqueci a Senha
-forget_password=Esqueceu a senha?
-sign_up_now=Precisa de uma conta? Cadastre-se agora.
-confirmation_mail_sent_prompt=Um novo e-mail de confirmação foi enviado para <b>%s</b>, por favor, verifique sua caixa de entrada nas próximas %d horas para completar seu registro.
-sign_in_to_account=Entre com sua conta
-active_your_account=Ativar Sua Conta
-resent_limit_prompt=Desculpe, você está enviando um e-mail de ativação com muita frequência. Por favor, aguarde 3 minutos.
-has_unconfirmed_mail=Oi %s, você possui um endereço de e-mail não confirmado (<b>%s</b>). Se você não recebeu um e-mail de confirmação ou precisa reenviar um novo, clique no botão abaixo.
-resend_mail=Clique aqui para reenviar seu e-mail de ativação
-email_not_associate=Este endereço de e-mail não é associado à nenhuma conta.
-send_reset_mail=Clique aqui para (re)enviar seu e-mail de redefinição da senha
-reset_password=Redefinir Sua Senha
-invalid_code=Desculpe, seu código de confirmação expirou ou não é válido.
-reset_password_helper=Clique aqui para redefinir sua senha
-password_too_short=O comprimento da senha não pode ser menor que 6.
-
-[mail]
-activate_account=Por favor, ative sua conta
-activate_email=Verifique seu endereço de e-mail
-reset_password=Resetar sua senha
-register_success=Registrado com sucesso. Bem vindo
-
-[modal]
-yes=Sim
-no=Não
-modify=Alterar
-
-[form]
-UserName=Nome de usuário
-RepoName=Nome do repositório
-Email=Endereço de e-mail
-Password=Senha
-Retype=Redigite a senha
-SSHTitle=Nome da chave SSH
-HttpsUrl=URL HTTPS
-PayloadUrl=URL de carga
-TeamName=Nome da equipe
-AuthName=Nome de autorização
-AdminEmail=E-mail do Administrador
-
-require_error=` não pode estar vazio.`
-alpha_dash_error=` devem ser caracteres alfanuméricos ou hífen (-) ou sublinhado (_).`
-alpha_dash_dot_error=` devem ser caracteres alfanuméricos ou hífen (-) ou sublinhado (_).`
-size_error='deve ser o tamanho %s.'
-min_size_error=` deve conter pelo menos %s caracteres.`
-max_size_error=` deve conter no máximo %s caracteres.`
-email_error=` não é um endereço de e-mail válido.`
-url_error=`não é uma URL válida.`
-unknown_error=Erro desconhecido:
-captcha_incorrect=O captcha não correspondeu.
-password_not_match=Senha e confirmação da senha não são as mesmas.
-
-username_been_taken=Nome de usuário já foi tomado.
-repo_name_been_taken=Nome do repositório já foi tomado.
-org_name_been_taken=Nome da organização já foi tomado.
-team_name_been_taken=Nome da equipe já foi tomado.
-email_been_used=Endereço de e-mail já foi usado.
-illegal_team_name=O nome da equipe contém caracteres não permitidos.
-username_password_incorrect=Usuário ou senha incorretos.
-enterred_invalid_repo_name=Por favor certifique-se que informou o nome do repositório corretamente.
-enterred_invalid_owner_name=Por favor, verifique se o nome do proprietário está correto.
-enterred_invalid_password=Por favor, verifique se a senha que você digitou está correta.
-user_not_exist=O usuário informado não existe.
-last_org_owner=O usuário a ser removido é o último membro na equipe de proprietários. Deve haver um outro proprietário.
-
-invalid_ssh_key=Desculpe, não conseguimos verificar a sua chave SSH: %s
-unable_verify_ssh_key=Gogs não pode verificar sua chave SSH, mas assumimos que é válida, por favor, verifique a chave pessoalmente.
-auth_failed=A autenticação falhou: %v
-
-still_own_repo=Sua conta ainda tem propriedade do repositório, você tem que excluir ou transferí-la primeiro.
-still_has_org=Sua conta ainda faz parte da organização, você deve sair ou excluí-la primeiro.
-org_still_own_repo=Esta organização ainda tem a propriedade do repositório, você deve excluir ou transferí-la primeiro.
-
-still_own_user=Esta autenticação ainda é usada por alguns usuários, você deve movê-los e depois apagar novamente.
-
-target_branch_not_exist=O branch de destino não existe.
-
-[user]
-change_avatar=Altere o seu avatar em gravatar.com
-change_custom_avatar=Altere seu avatar nas configurações
-join_on=Inscreveu-se em
-repositories=Repositórios
-activity=Atividade Pública
-followers=Seguidores
-starred=Favorito
-following=Seguindo
-
-form.name_reserved=O nome de usuário '%s' não pode ser usado.
-form.name_pattern_not_allowed=Não é permitido usar o padrão '%s' para o nome de usuário.
-
-[settings]
-profile=Perfil
-password=Senha
-ssh_keys=Chaves SSH
-social=Contas Sociais
-applications=Aplicativos
-orgs=Organizações
-delete=Deletar Conta
-uid=Uid
-
-public_profile=Perfil Público
-profile_desc=Seu endereço de E-mail é publico e será usado para qualquer notificação relacionada à conta, e qualquer operação na web feita através do site.
-full_name=Nome Completo
-website=Site
-location=Localização
-update_profile=Atualizar o Perfil
-update_profile_success=O seu perfil foi atualizado com sucesso.
-change_username=Nome de Usuário Alterado
-change_username_prompt=Essa alteração afetará os links para a sua conta.
-continue=Continuar
-cancel=Cancelar
-
-enable_custom_avatar=Habilitar Avatar Customizado
-enable_custom_avatar_helper=Habilite para desativar a busca no Gravatar
-choose_new_avatar=Escolha um novo avatar
-update_avatar=Atualizar configuração de Avatar
-uploaded_avatar_not_a_image=O arquivo enviado não é uma imagem.
-no_custom_avatar_available=Nenhum avatar personalizado disponível, não pode habilitá-lo.
-update_avatar_success=Sua configuração de avatar foi atualizada com sucesso.
-
-change_password=Mudança de senha
-old_password=Senha Atual
-new_password=Nova Senha
-retype_new_password=Digite novamente a nova senha
-password_incorrect=A senha atual não está correta.
-change_password_success=A senha está alterada com sucesso. Você pode agora entrar com a senha nova.
-
-emails=Endereços de E-mail
-manage_emails=Gerenciar endereços de e-mail
-email_desc=Seu endereço de e-mail principal será usado para notificações e outras operações.
-primary=Principal
-primary_email=Definir como principal
-delete_email=Deletar
-email_deletion=Exclusão do email
-email_deletion_desc=Ao Excluir este endereço de e-mail será removido informações relacionadas com a sua conta. Você deseja continuar?
-email_deletion_success=O E-mail foi excluído com sucesso!
-add_new_email=Adicionar novo endereço de e-mail
-add_email=Adicionar e-mail
-add_email_confirmation_sent=Um novo e-mail de confirmação foi enviado para '%s'. Por favor, verifique sua Caixa de Entrada dentro das próximas %d horas, para concluir o processo de confirmação.
-add_email_success=Seu novo endereço de E-mail foi adicionado com sucesso.
-
-manage_ssh_keys=Gerenciar Chaves SSH
-add_key=Adicionar chave
-ssh_desc=Esta é uma lista de chaves SSH associadas com a sua conta. Como essas chaves permitem que qualquer um que as usem tenham acesso aos seus repositórios, é altamente importante que você reconheça elas.
-ssh_helper=<strong>Precisa de ajuda?</strong> Confira nosso guia para <a href="%s">gerar chaves SSH</a> ou solucionar <a href="%s">problemas comuns com SSH</a>.
-add_new_key=Adicionar Chave SSH
-ssh_key_been_used=Uma chave pública com esse mesmo conteúdo já está em uso.
-ssh_key_name_used=Uma outra chave pública já existe com esse mesmo nome.
-key_name=Nome da Chave
-key_content=Conteúdo
-add_key_success=A nova chave pública '%s' foi adicionada com sucesso!
-delete_key=Deletar
-ssh_key_deletion=Exclusão da chave de SSH
-ssh_key_deletion_desc=Ao Excluir esta chave de SSH será removido todos os acessos para sua conta. Você deseja continuar?
-ssh_key_deletion_success=A chave de SSH foi excluída com sucesso!
-add_on=Adicionado em
-last_used=Última vez usado em
-no_activity=Nenhuma atividade recente
-key_state_desc=Usada a pelo menos 7 dias
-token_state_desc=Este token é usado em pelo menos 7 dias
-
-manage_social=Gerenciar Contas Sociais Associadas
-social_desc=Esta é uma lista de contas sociais. Remova qualquer ligação que você não reconheça.
-unbind=Desvincular
-unbind_success=A conta social foi desvinculada.
-
-manage_access_token=Gerenciar Tokens de Acesso Pessoal
-generate_new_token=Gerar novo Token
-tokens_desc=Tokens gerados por você que podem ser usados para acessar a API do Gogs.
-new_token_desc=Por enquanto, todo token terá acesso completo à sua conta.
-token_name=Nome do Token
-generate_token=Gerar Token
-generate_token_succees=Novo token de acesso gerado com sucesso! Certifique-se de copiar seu novo token de acesso pessoal agora. Você não poderá vê-lo novamente!
-delete_token=Excluir
-access_token_deletion=Exclusão do Token de acesso pessoal
-access_token_deletion_desc=Ao Excluir este token de acesso pessoal será removido todos os acessos do aplicativo. Você deseja continuar?
-delete_token_success=O Token de acesso pessoal foi removido com sucesso! Não se esqueça de atualizar seus aplicativos também.
-
-delete_account=Deletar Sua Conta
-delete_prompt=A operação deletará sua conta permanentemente, e <strong>NÃO PODERÁ</strong> ser desfeita!
-confirm_delete_account=Confirmar Deleção
-delete_account_title=Deleção da Conta
-delete_account_desc=Esta conta será deletada permanentemente, você quer continuar?
-
-[repo]
-owner=Dono
-repo_name=Nome do Repositório
-repo_name_helper=Nomes de repositórios bons são pequenos, memorizáveis e únicos.
-visibility=Visibilidade
-visiblity_helper=Este é um repositório <span class="ui red text"> privado</span>
-visiblity_helper_forced=O adminstrador forçou todos os novos repositórios para serem <span class="ui red text">Privados</span>
-visiblity_fork_helper=(A alteração desse valor irá afetar todos os forks)
-fork_repo=Fork o Repositório
-fork_from=Fork de
-fork_visiblity_helper=Não é possível alterar a visibilidade de um repositório forkado.
-repo_desc=Descrição
-repo_lang=Linguagem
-repo_lang_helper=Selecione arquivos .gitignore
-license=Licença
-license_helper=Selecione um arquivo de licença
-readme=Leia-me
-readme_helper=Selecione um modelo de leia-me
-auto_init=Inicializar este repositório com os arquivos selecionados e modelo
-create_repo=Criar Repositório
-default_branch=Branch padrão
-mirror_interval=Intervalo de Espelho (hora)
-
-form.name_reserved=O nome de repositório '%s' não pode ser usado.
-form.name_pattern_not_allowed=Não é permitido usar o padrão '%s' para o nome de repositório.
-
-need_auth=Precisa de Autorização
-migrate_type=Tipo de Migração
-migrate_type_helper=Este repositório será um <span class="text blue"> espelho</span>
-migrate_repo=Migrar Repositório
-migrate.clone_address=Endereço de Clone
-migrate.clone_address_desc=Isto pode ser uma URL de HTTP/HTTPS/GIT ou um caminho de diretório local.
-migrate.invalid_local_path=Caminho local inválido, não existe ou não é um diretório.
-
-forked_from=forkado de
-fork_from_self=Você não pode criar fork de um repositório que já é seu!
-copy_link=Copiar
-copy_link_success=Copiado!
-copy_link_error=Pressione ⌘-C ou Ctrl-C para copiar
-click_to_copy=Copiar para a área de transferência
-copied=Copiado com sucesso
-clone_helper=Precisa de ajuda com a clonagem? Visite a <a target="_blank" href="%s">Ajuda</a>!
-unwatch=Deixar de Observar
-watch=Observar
-unstar=Remover favorito
-star=Favorito
-fork=Fork
-
-no_desc=Nenhuma Descrição
-quick_guide=Guia Rápido
-clone_this_repo=Clonar este repositório
-create_new_repo_command=Criar um novo repositório na linha de comando
-push_exist_repo=Push um repositório existente na linha de comando
-repo_is_empty=Este repositório está vazio, por favor volte mais tarde!
-
-
-branch=Branch
-tree=Árvore
-branch_and_tags=Branches & Tags
-branches=Branches
-tags=Tags
-issues=Problemas
-pulls=Pull Requests
-labels=Etiquetas
-milestones=Marcos
-commits=Commits
-releases=Versões
-file_raw=Cru
-file_history=Histórico
-file_view_raw=Ver cru
-file_permalink=Link permanente
-
-commits.commits=Commits
-commits.search=Pesquisar commits
-commits.find=Buscar
-commits.author=Autor
-commits.message=Mensagem
-commits.date=Data
-commits.older=Mais Antigo
-commits.newer=Mais Novo
-
-issues.new=Novo problema
-issues.new.labels=Etiquetas
-issues.new.no_label=Sem etiqueta
-issues.new.clear_labels=Limpar
-issues.new.milestone=Marco
-issues.new.no_milestone=Sem marco
-issues.new.clear_milestone=Limpar
-issues.new.open_milestone=Marcos abertos
-issues.new.closed_milestone=Marcos fechados
-issues.new.assignee=Responsável
-issues.new.clear_assignee=Limpar
-issues.new.no_assignee=Não atribuída
-issues.create=Salvar
-issues.new_label=Nova etiqueta
-issues.new_label_placeholder=Nome da etiqueta...
-issues.create_label=Salvar
-issues.open_tab=%d aberto
-issues.close_tab=%d fechados
-issues.filter_label=Etiqueta
-issues.filter_label_no_select=Nenhuma etiqueta selecionada
-issues.filter_milestone=Marco
-issues.filter_milestone_no_select=Nenhum marco selecionado
-issues.filter_assignee=Atribuído
-issues.filter_assginee_no_select=Sem atribuição
-issues.filter_type=Tipo
-issues.filter_type.all_issues=Todos os problemas
-issues.filter_type.assigned_to_you=Atribuídos a você
-issues.filter_type.created_by_you=Criado por você
-issues.filter_type.mentioning_you=Mencionando você
-issues.filter_sort=Ordenação
-issues.filter_sort.latest=Mais novos
-issues.filter_sort.oldest=Mais antigos
-issues.filter_sort.recentupdate=Mais recentemente atualizados
-issues.filter_sort.leastupdate=Menos recentemente atualizados
-issues.filter_sort.mostcomment=Mais comentados
-issues.filter_sort.leastcomment=Menos comentados
-issues.opened_by=%[1]s foi aberto por <a href="%[2]s">%[3]s</a>
-issues.opened_by_fake=aberto %[1]s por %[2]s
-issues.previous=Página anterior
-issues.next=Próxima página
-issues.open_title=aberto
-issues.closed_title=fechado
-issues.num_comments=%d comentários
-issues.commented_at=`comentado <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.no_content=Nenhum conteúdo textual.
-issues.close_issue=Fechar
-issues.close_comment_issue=Comentar e fechar
-issues.reopen_issue=Reabrir
-issues.reopen_comment_issue=Reabrir e comentar
-issues.create_comment=Comentar
-issues.closed_at=`fechado em <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.reopened_at=`reaberto em <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.commit_ref_at=`citou este problema em um commit <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.poster=Autor
-issues.admin=Administrador
-issues.owner=Proprietário
-issues.sign_up_for_free=Cadastre-se gratuitamente
-issues.sign_in_require_desc=para participar nesta conversa. Já tem uma conta? <a href="%s">Faça login para comentar</a>
-issues.edit=Editar
-issues.cancel=Cancelar
-issues.save=Salvar
-issues.label_title=Nome da etiqueta
-issues.label_color=Cor da etiqueta
-issues.label_count=%d etiquetas
-issues.label_open_issues=%d problemas abertos
-issues.label_edit=Editar
-issues.label_delete=Excluir
-issues.label_modify=Alteração de etiqueta
-issues.label_deletion=Exclusão de etiqueta
-issues.label_deletion_desc=Excluir uma etiqueta a retirará de todos os problemas que ela estiver marcando. Quer mesmo continuar?
-issues.label_deletion_success=A etiqueta foi excluída com sucesso!
-
-pulls.compare_changes=Comparar mudanças
-pulls.compare_changes_desc=Comparar os dois branches e criar pull request com as mudanças.
-pulls.compare_base=base
-pulls.compare_compare=comparar
-pulls.filter_branch=Filtrar branch
-pulls.no_results=Nada encontrado.
-pulls.nothing_to_compare=Não há nada para comparar porque o branch base e o head estão iguais.
-pulls.has_pull_request=`Já existem pull requests entre esses dois alvos: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>`
-pulls.create=Criar Pull Request
-pulls.title_desc=quer mesclar %[1]d commits de <code>%[2]s</code> em <code>%[3]s</code>
-pulls.merged_title_desc=mesclou %[1]d commits de <code>%[2]s</code> em <code>%[3]s</code> %[4]s
-pulls.tab_conversation=Conversação
-pulls.tab_commits=Commits
-pulls.tab_files=Arquivos alterados
-pulls.reopen_to_merge=Por favor reabra esse pull request para executar a operação de mescla.
-pulls.merged=Merge realizado
-pulls.has_merged=Este pull request foi mesclado com sucesso!
-pulls.data_broken=Dados deste pull request foram quebrados devido à deleção de informação do fork.
-pulls.is_checking=A verificação do conflito ainda está em progresso, por favor recarregue a página em instantes.
-pulls.can_auto_merge_desc=Você pode realizar uma auto-mescla neste pull request.
-pulls.cannot_auto_merge_desc=Você não pode realizar uma auto-mescla porque há conflitos entre os commits.
-pulls.cannot_auto_merge_helper=Por favor, utilize linha de comando para solucionar isto.
-pulls.merge_pull_request=Merge Pull Request
-pulls.open_unmerged_pull_exists=' Você não pode executar a operação de reabrir porque já existe uma solicitação de pull aberta (#%d) do mesmo repositório com as mesmas informações de merge e está esperando pelo merge.'
-
-milestones.new=Novo marco
-milestones.open_tab=%d abertos
-milestones.close_tab=%d fechados
-milestones.closed=Fechado %s
-milestones.no_due_date=Sem prazo
-milestones.open=Reabrir
-milestones.close=Fechar
-milestones.new_subheader=Crie marcos para gerenciar seus problemas.
-milestones.create=Salvar marco
-milestones.title=Título
-milestones.desc=Descrição
-milestones.due_date=Prazo (opcional)
-milestones.clear=Limpar
-milestones.invalid_due_date_format=Formato inválido. O valor de data deve ser algo como 'aaaa-mm-dd'.
-milestones.create_success=O marco '%s' foi configurado com sucesso!
-milestones.edit=Edição de marco
-milestones.edit_subheader=Descreva bem a proposta do marco, assim as pessoas não ficarão confusas.
-milestones.cancel=Cancelar
-milestones.modify=Salvar alterações
-milestones.edit_success=O marco '%s' foi alterado com sucesso!
-milestones.deletion=Exclusão de marco
-milestones.deletion_desc=Excluir este marco removerá a informação dele em todos os problemas aos quais estiver associado. Você quer mesmo continuar?
-milestones.deletion_success=Marco excluído com sucesso!
-
-settings=Configurações
-settings.options=Opções
-settings.collaboration=Colaboração
-settings.hooks=Webhooks
-settings.githooks=Hooks do Git
-settings.basic_settings=Configurações Básicas
-settings.danger_zone=Zona de Perigo
-settings.site=Site Oficial
-settings.update_settings=Configurações de Atualização
-settings.change_reponame_prompt=Este mudanças vai afetar os links para este repositório.
-settings.transfer=Transferir Propriedade
-settings.transfer_desc=Transferir este repositório para outro usuário ou para uma organização onde você tem direitos de administrador.
-settings.new_owner_has_same_repo=O novo dono já tem um repositório com o mesmo nome. Por favor, escolha outro nome.
-settings.delete=Deletar Este Repositório
-settings.delete_desc=Uma vez que você deleta um repositório, não tem volta. Por favor, tenha certeza.
-settings.transfer_notices_1=- Você vai perder acesso se o novo dono for um usuário individual.
-settings.transfer_notices_2=- Você vai continuar tendo acesso se o novo dono é uma organização e você é um dos membros.
-settings.transfer_form_title=Informe a seguinte informação para confirmar a sua operação:
-settings.delete_notices_1=-Esta operação <strong>NÃO PODERÁ</strong> ser desfeita.
-settings.delete_notices_2=- Esta operação irá apagar permanentemente o tudo deste repositório, incluindo os dados do Git, problemas, comentários e acessos dos colaboradores.
-settings.delete_notices_fork_1=- Se este repositório é público, todos os forks se tornarão independentes após a deleção.
-settings.delete_notices_fork_2=- Se este repositório é privado, todos os forks serão removidos imediatamente.
-settings.delete_notices_fork_3=- Se você deseja manter todos os forks, por favor muda a visibilidade do repositório para pública primeiro.
-settings.update_settings_success=As opções do repositório foram atualizadas com sucesso.
-settings.transfer_owner=Novo Dono
-settings.make_transfer=Fazer Transferência
-settings.transfer_succeed=A posse do repositório foi transferido com sucesso.
-settings.confirm_delete=Confirmar Deleção
-settings.add_collaborator=Adicionar um Novo Colaborador
-settings.add_collaborator_success=O novo colaborador foi adicionado.
-settings.remove_collaborator_success=O colaborador foi removido.
-settings.user_is_org_member=O usuário é um membro da organização que não pode ser adicionado como um colaborador.
-settings.add_webhook=Adicionar Webhook
-settings.hooks_desc=Hooks da web ou Webhooks permitem serviços externos serem notificados quando certos eventos acontecem no Gogs. Quando acontecem os eventos especificados, enviaremos uma solicitação POST para cada uma das URLs que você fornecer. Saiba mais no nosso <a target="_blank" href="%s"> Guia de Webhooks</a>.
-settings.webhook_deletion=Deletar Webhook
-settings.webhook_deletion_desc=Deletar este Webhook vai remover sua informação e todo o histórico de entrega. Deseja continuar?
-settings.webhook_deletion_success=Webhook deletado com sucesso!
-settings.webhook.request=Solicitação
-settings.webhook.response=Resposta
-settings.webhook.headers=Cabeçalhos
-settings.webhook.payload=Payload
-settings.webhook.body=Texto
-settings.githooks_desc=Hooks do Git são ofertados pelo próprio Git, você pode editar arquivos de hooks suportados na lista abaixo para aplicar operações personalizadas.
-settings.githook_edit_desc=Se o hook não estiver ativo, o conteúdo de exemplo será apresentado. Deixar o conteúdo em branco irá desativar esse hook.
-settings.githook_name=Nome do Hook
-settings.githook_content=Conteúdo do Hook
-settings.update_githook=Atualizar Hook
-settings.add_webhook_desc=Enviaremos uma solicitação <code>POST</code> para o URL abaixo com detalhes de quaisquer eventos inscritos. Você pode também especificar qual formato de dados você gostaria de receber (JSON, <code>x-www-form-urlencoded</code>, <em>etc</em>). Mais informação pode ser encontrada em <a target="_blank" href="%s">Webhooks Guide</a>.
-settings.payload_url=URL de carga
-settings.content_type=Tipo de Conteúdo
-settings.secret=Secreto
-settings.slack_username=Nome de usuário
-settings.slack_icon_url=URL do ícone
-settings.slack_color=Cor
-settings.event_desc=Quais eventos você gostaria de acionar a esse webhook?
-settings.event_push_only=Apenas o evento <code>push</code>.
-settings.event_send_everything=Preciso de <strong>tudo</strong>.
-settings.event_choose=Deixe-me escolher o que eu preciso.
-settings.event_create=Criar
-settings.event_create_desc=Branch ou Tag criado
-settings.event_push=Push
-settings.event_push_desc=Git push para o repositório
-settings.active=Ativar
-settings.active_helper=Enviaremos detalhes do evento quando este hook for acionado.
-settings.add_hook_success=Novos hooks de web foram adicionados.
-settings.update_webhook=Atualizar Webhook
-settings.update_hook_success=Webhook atualizado.
-settings.delete_webhook=Excluir Webhook
-settings.recent_deliveries=Entregas Recentes
-settings.hook_type=Tipo de Hook
-settings.add_slack_hook_desc=Adicionar <a href="%s">Slack</a> de integração para o seu repositório.
-settings.slack_token=Token
-settings.slack_domain=Domínio
-settings.slack_channel=Canal
-settings.deploy_keys=Chaves de Deploy
-settings.add_deploy_key=Nova chave
-settings.no_deploy_keys=Você ainda não adicionou chaves para implantação de software.
-settings.title=Título
-settings.deploy_key_content=Conteúdo da chave
-settings.key_been_used=Uma chave de implantação com esse mesmo conteúdo já está em uso.
-settings.key_name_used=Uma chave de implantação já existe com esse com mesmo nome.
-settings.add_key_success=A nova chave de implantação '%s' foi adicionada com sucesso!
-settings.deploy_key_deletion=Exclusão de chave de deploy
-settings.deploy_key_deletion_desc=Excluir esta chave de implantação removerá permissões de acesso a este repositório. Quer mesmo continuar?
-settings.deploy_key_deletion_success=Chave de implantação excluída com sucesso!
-
-diff.browse_source=Ver Código Fonte
-diff.parent=pai
-diff.commit=commit
-diff.data_not_available=Dados de Diff não disponíveis.
-diff.show_diff_stats=Mostrar estatísticas do Diff
-diff.stats_desc=<strong> %d arquivos alterados</strong> com <strong>%d adições</strong> e <strong>%d exclusões</strong>
-diff.bin=BIN
-diff.view_file=Ver Arquivo
-
-release.releases=Versões
-release.new_release=Nova Versão
-release.draft=Rascunho
-release.prerelease=Versão Prévia
-release.stable=Estável
-release.edit=editar
-release.ahead=<strong>%d</strong> commits para %s depois desta versão
-release.source_code=Código fonte
-release.tag_name=Nome da tag
-release.target=Destino
-release.tag_helper=Escolha uma tag existente, ou crie uma nova tag em publicar.
-release.release_title=Título da Versão
-release.content_with_md=Conteúdo com <a href="%s">Markdown</a>
-release.write=Escrever
-release.preview=Visualizar
-release.content_placeholder=Escreva algum conteúdo
-release.loading=Carregando...
-release.prerelease_desc=Esta é uma versão prévia
-release.prerelease_helper=Vou salientar que esta versão é identificada como não pronta para produção.
-release.publish=Publicar Versão
-release.save_draft=Salvar Rascunho
-release.edit_release=Editar Versão
-release.tag_name_already_exist=Já existiu versão com esse nome de tag.
-
-[org]
-org_name_holder=Nome da Organização
-org_name_helper=Nomes de grandes organizações são curtos e memoráveis.
-create_org=Criar Organização
-repo_updated=Atualizado
-people=Pessoas
-invite_someone=Convidar Alguém
-teams=Equipes
-lower_members=membros
-lower_repositories=repositórios
-create_new_team=Criar Nova Equipe
-org_desc=Descrição
-team_name=Nome da Equipe
-team_desc=Descrição
-team_name_helper=Você usará este nome para mencionar esta equipe em conversas.
-team_desc_helper=Do que trata essa equipe?
-team_permission_desc=Que nível de permissão esta equipe deve ter?
-
-form.name_reserved=O nome de organização '%s' não pode ser usado.
-form.name_pattern_not_allowed=Não é permitido usar o padrão '%s' para o nome de organização.
-
-settings=Configurações
-settings.options=Opções
-settings.full_name=Nome Completo
-settings.website=Site
-settings.location=Localização
-settings.update_settings=Atualizar Configurações
-settings.update_setting_success=Configuração da organização atualizada com sucesso.
-settings.change_orgname_prompt=Esta mudança vai afetar os links para esta organização.
-settings.update_avatar_success=A configuração de avatar da organização foi atualizado com sucesso.
-settings.delete=Deletar Organização
-settings.delete_account=Deletar Esta Organização
-settings.delete_prompt=A operação deletará esta organização permanentemente, e <strong>NÃO PODERÁ</strong> ser desfeita!
-settings.confirm_delete_account=Confirmar Deleção
-settings.delete_org_title=Deleção da Organização
-settings.delete_org_desc=Esta organização será deletada permanentemente, você quer continuar?
-settings.hooks_desc=Adicionar Webhooks que serão acionados para <strong>todos os repositórios</strong> dessa organização.
-
-members.public=Público
-members.public_helper=tornar privado
-members.private=Privado
-members.private_helper=torar público
-members.owner=Dono
-members.member=Membro
-members.conceal=Ocultar
-members.remove=Remover
-members.leave=Sair
-members.invite_desc=Comece digitando um nome de usuário para convidá-lo como novo membro para %s:
-members.invite_now=Convidar Agora
-
-teams.join=Juntar-se
-teams.leave=Deixar
-teams.read_access=Acesso de Leitura
-teams.read_access_helper=Esta equipe poderá ver e clonar os repositórios dela.
-teams.write_access=Acesso de Escrita
-teams.write_access_helper=Esta equipa será capaz de ler os seus repositórios, bem como fazer push para eles.
-teams.admin_access=Acesso do Administrador
-teams.admin_access_helper=Esta equipe será capaz de fazer push/pull em seus repositórios, bem como adicionar-lhes outros colaboradores.
-teams.no_desc=Esta equipe não tem descrição
-teams.settings=Configurações
-teams.owners_permission_desc=Donos tem acesso total a <strong>todos repositórios</strong> e também <strong>direitos de administrador</strong> para a organização.
-teams.members=Membros da Equipe
-teams.update_settings=Atualizar Configurações
-teams.delete_team=Deletar Esta Equipe
-teams.add_team_member=Adicionar Membro da Equipe
-teams.delete_team_title=Deleção da Equipe
-teams.delete_team_desc=Este equipe será deletada, você quer continuar? Membros desta equipe poderão perder acesso a alguns repositórios.
-teams.delete_team_success=A equipe dada foi deletada com sucesso.
-teams.read_permission_desc=Essa equipe concede acesso para <strong>Leitura</strong>: membros podem ver e clonar os repositórios da equipe.
-teams.write_permission_desc=Esta equipe concede acesso para <strong>escrita</strong>: Membros podem ler e fazer push para os repositórios da equipe.
-teams.admin_permission_desc=Esta equipe concede acesso de <strong>Administrador</strong>: Membros podem ler, fazer push e adicionar outros colaboradores para os repositórios da equipe.
-teams.repositories=Repositórios da Equipe
-teams.add_team_repository=Adicionar Repositório da Equipe
-teams.remove_repo=Remover
-teams.add_nonexistent_repo=O repositório que você está tentando adicionar não existe, por favor, crie-o primeiro.
-
-[admin]
-dashboard=Painel de controle
-users=Usuários
-organizations=Organizações
-repositories=Repositórios
-authentication=Autenticações
-config=Configuração
-notices=Sistema de notificações
-monitor=Monitoramento
-first_page=Primeira
-last_page=Última
-total=Total: %d
-
-dashboard.statistic=Estatística
-dashboard.operations=Operações
-dashboard.system_status=Status do Monitor de Sistema
-dashboard.statistic_info=O banco de dados do Gogs contém <b>%d</b> usuários, <b>%d</b> organizações, <b>%d</b> chaves públicas, <b>%d</b> repositórios, <b>%d</b> observadores, <b>%d</b> estrelas, <b>%d</b> ações, <b>%d</b> acessos, <b>%d</b> questões, <b>%d</b> comentários, <b>%d</b> contas sociais, <b>%d</b> seguidores, <b>%d</b> espelhos, <b>%d</b> versões, <b>%d</b> origens de login, <b>%d</b> Hooks da Web, <b>%d</b> milestones, <b>%d</b> labels, <b>%d</b> tarefas hook, <b>%d</b> equipes, <b>%d</b> tarefas de atualização, <b>%d</b> anexos.
-dashboard.operation_name=Nome da Operação
-dashboard.operation_switch=Trocar
-dashboard.operation_run=Executar
-dashboard.clean_unbind_oauth=Limpar OAuthes não acoplados
-dashboard.clean_unbind_oauth_success=Todos OAuthes desvinculados foram excluídos com sucesso.
-dashboard.delete_inactivate_accounts=Excluir todas as contas inativas
-dashboard.delete_inactivate_accounts_success=Todas as contas inativas foram excluídas com sucesso.
-dashboard.delete_repo_archives=Excluir todos os arquivos dos repositórios
-dashboard.delete_repo_archives_success=Todos os arquivos dos repositórios foram excluídos com sucesso.
-dashboard.git_gc_repos=Fazer coleta de lixo nos repositórios
-dashboard.git_gc_repos_success=Em todos repositórios, a coleta de lixo foi realizada com sucesso.
-dashboard.resync_all_sshkeys=Reescrever o arquivo '.ssh/authorized_keys' (atenção: chaves que não sejam do Gogs serão perdidas)
-dashboard.resync_all_sshkeys_success=Todas as chaves públicas foram reescritas com sucesso.
-dashboard.resync_all_update_hooks=Reescrever todos os hooks de atualização dos repositórios (necessário quando o caminho de configuração customizado é alterado)
-dashboard.resync_all_update_hooks_success=Os hooks de atualização de todos os repositórios foram reescritos com sucesso.
-
-dashboard.server_uptime=Servidor Ligado
-dashboard.current_goroutine=Goroutines Atuais
-dashboard.current_memory_usage=Uso de Memória Atual
-dashboard.total_memory_allocated=Total de Memória Alocada
-dashboard.memory_obtained=Memória Obtida
-dashboard.pointer_lookup_times=Nº de Consultas a Ponteiros
-dashboard.memory_allocate_times=Nº de Alocações de Memória
-dashboard.memory_free_times=Nº de Liberações de Memória
-dashboard.current_heap_usage=Uso Atual da Heap
-dashboard.heap_memory_obtained=Memória de Heap Obtida
-dashboard.heap_memory_idle=Memória da Heap Ociosa
-dashboard.heap_memory_in_use=Memória da Heap em Uso
-dashboard.heap_memory_released=Memória da Heap Liberada
-dashboard.heap_objects=Objetos na Heap
-dashboard.bootstrap_stack_usage=Uso de Pilha Bootstrap
-dashboard.stack_memory_obtained=Memória de Pilha Obtida
-dashboard.mspan_structures_usage=Uso de Estruturas de MSpan
-dashboard.mspan_structures_obtained=Estruturas de MSpan Obtidas
-dashboard.mcache_structures_usage=Uso de Estruturas de MCache
-dashboard.mcache_structures_obtained=Estruturas de MCache Obtidas
-dashboard.profiling_bucket_hash_table_obtained=Perfil Obtido da Bucket Hash Table
-dashboard.gc_metadata_obtained=Metadados do GC Obtidos
-dashboard.other_system_allocation_obtained=Outra Alocação de Sistema Obtida
-dashboard.next_gc_recycle=Próxima Reciclagem do GC
-dashboard.last_gc_time=Desde da Última Vez do GC
-dashboard.total_gc_time=Pausa Total do GC
-dashboard.total_gc_pause=Pausa Total do GC
-dashboard.last_gc_pause=Última Pausa do GC
-dashboard.gc_times=Nº Execuções do GC
-
-users.user_manage_panel=Painel de Gerenciamento do Usuário
-users.new_account=Criar Nova Conta
-users.name=Nome
-users.activated=Ativado
-users.admin=Administrador
-users.repos=Repositórios
-users.created=Criado
-users.send_register_notify=Enviar notificação de registro para ao usuário
-users.new_success=Nova conta '%s' foi criada com sucesso.
-users.edit=Editar
-users.auth_source=Fonte da autenticação
-users.local=Local
-users.auth_login_name=Nome de login da autenticação
-users.password_helper=Deixe em branco para não mudar.
-users.update_profile_success=O perfil da conta foi atualizado com sucesso.
-users.edit_account=Editar Conta
-users.is_activated=Esta conta está ativada
-users.is_admin=Esta conta tem permissões de administrador
-users.allow_git_hook=Esta conta tem permissões para criar hooks do Git
-users.update_profile=Atualizar Perfil da Conta
-users.delete_account=Deletar Esta Conta
-users.still_own_repo=Sua conta ainda é proprietária do repositório, você tem que excluir ou transferi-lo primeiro.
-users.still_has_org=Sua conta ainda faz parte da organização, você deve sair ou excluí-la primeiro.
-users.deletion_success=Conta deletada com sucesso!
-
-orgs.org_manage_panel=Painel de Gerenciamento da Organização
-orgs.name=Nome
-orgs.teams=Equipes
-orgs.members=Membros
-
-repos.repo_manage_panel=Painel de Gerenciamento do Repositório
-repos.owner=Dono
-repos.name=Nome
-repos.private=Privado
-repos.watches=Observadores
-repos.stars=Favoritos
-repos.issues=Problemas
-
-auths.auth_manage_panel=Painel de gerenciamento da autenticação
-auths.new=Adicionar nova fonte
-auths.name=Nome
-auths.type=Tipo
-auths.enabled=Habilitado
-auths.updated=Atualizado
-auths.auth_type=Tipo de autenticação
-auths.auth_name=Nome da autenticação
-auths.domain=Domínio
-auths.host=Host
-auths.port=Porta
-auths.bind_dn=Vincular DN
-auths.bind_password=Vincular senha
-auths.bind_password_helper=Atenção: Esta senha é armazenada em texto plano. Não use uma conta com muitos privilégios.
-auths.user_base=Base de pesquisa do usuário
-auths.user_dn=Usuário do DN
-auths.attribute_name=Atributo primeiro nome
-auths.attribute_surname=Atributo sobrenome
-auths.attribute_mail=Atributo e-mail
-auths.filter=Filtro de usuário
-auths.admin_filter=Filtro de administrador
-auths.ms_ad_sa=Ms Ad SA
-auths.smtp_auth=Tipo de autenticação SMTP
-auths.smtphost=Host SMTP
-auths.smtpport=Porta SMTP
-auths.allowed_domains=Domínios autorizados
-auths.allowed_domains_helper=Deixe em branco para permitir qualquer domínio do host SMTP. Vários domínios devem ser separados por vírgula ','.
-auths.enable_tls=Habilitar Criptografia TLS
-auths.skip_tls_verify=Ignorar verificação de TLS
-auths.pam_service_name=Nome de Serviço PAM
-auths.enable_auto_register=Habilitar Registro Automático
-auths.tips=Dicas
-auths.edit=Editar a configuração de autenticação
-auths.activated=Esta autenticação foi ativada
-auths.new_success=Nova autenticação '%s' foi adicionada com sucesso.
-auths.update_success=A configuração da autenticação foi atualizada com sucesso.
-auths.update=Atualizar a configuração da autenticação
-auths.delete=Excluir esta autenticação
-auths.delete_auth_title=Exclusão da autenticação
-auths.delete_auth_desc=Esta autenticação esta prestes a ser deletada, deseja continuar?
-auths.deletion_success=Autenticação deletada com sucesso!
-
-config.server_config=Configuração do Servidor
-config.app_name=Nome do Aplicativo
-config.app_ver=Versão do Aplicativo
-config.app_url=URL do Aplicativo
-config.domain=Domínio
-config.offline_mode=Modo Offline
-config.disable_router_log=Desabilitar o Log do Roteador
-config.run_user=Usuário de Execução
-config.run_mode=Modo de Execução
-config.repo_root_path=Caminho Raiz do Repositório
-config.static_file_root_path=Caminho Raiz para Arquivo Estático
-config.log_file_root_path=Caminho Raiz para Arquivo de Log
-config.script_type=Tipo de Script
-config.reverse_auth_user=Usuário de Autenticação Reversa
-config.db_config=Configuração do Banco de Dados
-config.db_type=Tipo
-config.db_host=Host
-config.db_name=Nome
-config.db_user=Usuário
-config.db_ssl_mode=Modo SSL
-config.db_ssl_mode_helper=(apenas para "postgres")
-config.db_path=Caminho
-config.db_path_helper=(para "sqlite3" e "tidb")
-config.service_config=Configuração do Serviço
-config.register_email_confirm=Requerer Confirmação de E-mail
-config.disable_register=Desabilitar Registro
-config.show_registration_button=Mostrar Botão de Registo
-config.require_sign_in_view=Requerer Entrar no Gogs para Ver
-config.enable_cache_avatar=Habilitar Cache de Avatar
-config.mail_notify=Notificação de Correio
-config.disable_key_size_check=Desativar verificação de tamanho mínimo da chave
-config.enable_captcha=Habilitar o Captcha
-config.active_code_lives=Ativar Code Lives
-config.reset_password_code_lives=Redefinir Senha de Code Lives
-config.webhook_config=Configuração de Hook da Web
-config.queue_length=Tamanho da fila
-config.deliver_timeout=Intervalo de Entrega
-config.skip_tls_verify=Pular Verificar TLS
-config.mailer_config=Configuração de Correio
-config.mailer_enabled=Habilitado
-config.mailer_disable_helo=Desabilitar HELO
-config.mailer_name=Nome
-config.mailer_host=Host
-config.mailer_user=Usuário
-config.oauth_config=Configuração do OAuth
-config.oauth_enabled=Habilitado
-config.cache_config=Configuração de Cache
-config.cache_adapter=Adaptador de Cache
-config.cache_interval=Intervalo de Cache
-config.cache_conn=Conexão de Cache
-config.session_config=Configuração da Sessão
-config.session_provider=Provedor da Sessão
-config.provider_config=Configuração do Provedor
-config.cookie_name=Nome do Cookie
-config.enable_set_cookie=Habilitar Uso de Cookie
-config.gc_interval_time=Tempo de Intervalo do GC
-config.session_life_time=Tempo de Vida da Sessão
-config.https_only=Apenas HTTPS
-config.cookie_life_time=Tempo de Vida do Cookie
-config.picture_config=Configuração da Imagem
-config.picture_service=Serviço de Imagens
-config.disable_gravatar=Desativar Gravatar
-config.log_config=Configuração de Log
-config.log_mode=Modo do Log
-
-monitor.cron=Tarefas Cron
-monitor.name=Nome
-monitor.schedule=Cronograma
-monitor.next=Próxima Vez
-monitor.previous=Última Vez
-monitor.execute_times=Nº de Execuções
-monitor.process=Processos em Execução
-monitor.desc=Descrição
-monitor.start=Hora de Início
-monitor.execute_time=Tempo de Execução
-
-notices.system_notice_list=Sistema de Notificações
-notices.type=Tipo
-notices.type_1=Repositório
-notices.desc=Descrição
-notices.op=Op.
-notices.delete_success=Aviso do sistema foi deletado com sucesso.
-
-[action]
-create_repo=repositório criado <a href="%s"> %s</a>
-rename_repo=renomeou o o repositório <code>%[1]s</code> para <a href="%[2]s">%[3]s</a>
-commit_repo=pushed para <a href="%s/src/%s">%[2]s</a> em <a href="%[1]s">%[3]s</a>
-create_issue='questão aberta <a href="%s/issues/%s">%s#%[2]s</a>'
-create_pull_request=`criou o pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-comment_issue='comentou sobre a questão <a href="%s/issues/%s">%s#%[2]s</a>'
-merge_pull_request=`mesclou o pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-transfer_repo=repositório transferido de <code>%s</code> para <a href="%s">%s</a>
-push_tag=Foi feito push na tag <a href="%s/src/%s">%[2]s</a> para <a href="%[1]s">%[3]s</a>
-compare_2_commits=Ver comparação desses 2 commits
-
-[tool]
-ago=atrás
-from_now=a partir de agora
-now=agora
-1s=1 segundo %s
-1m=1 minuto %s
-1h=1 hora %s
-1d=1 dia %s
-1w=1 semana %s
-1mon=1 mês %s
-1y=1 ano %s
-seconds=%d segundos %s
-minutes=%d minutos %s
-hours=%d horas %s
-days=%d dias %s
-weeks=%d semanas %s
-months=%d meses %s
-years=%d anos %s
-raw_seconds=segundos
-raw_minutes=minutos
-
-[dropzone]
-default_message=Arraste e solte arquivos aqui, ou clique para selecioná-los.
-invalid_input_type=Você não pode enviar arquivos deste tipo.
-file_too_big=O tamanho do arquivo ({{filesize}} MB) excede o limite máximo ({{maxFilesize}} MB).
-remove_file=Remover
-
+app_desc=Um serviço de Git auto-hospedado e amigável escrito em Go + +home=Página Inicial +dashboard=Painel de controle +explore=Explorar +help=Ajuda +sign_in=Entrar +sign_out=Sair +sign_up=Cadastrar +register=Registrar +website=Site +version=Versão +page=Página +template=Modelo +language=Idioma +create_new=Criar... +user_profile_and_more=Perfil do usuário e configurações +signed_in_as=Você é + +username=Usuário +email=E-mail +password=Senha +re_type=Redigite +captcha=Captcha + +repository=Repositório +organization=Organização +mirror=Espelho +new_repo=Novo Repositório +new_migrate=Nova Migração +new_fork=Novo Fork de Repositório +new_org=Nova Organização +manage_org=Gerenciar Organizações +admin_panel=Painel do Administrador +account_settings=Configurações da Conta +settings=Configurações +your_profile=Seu perfil +your_settings=Suas configurações + +news_feed=Feed de Notícias +pull_requests=Solicitações de Pull +issues=Problemas + +cancel=Cancelar + +[search] +search=Pesquisar... +repository=Repositório +user=Usuário +issue=Problema +code=Código + +[install] +install=Instalação +title=Etapas de instalação para Primeira Execução +docker_helper=Se você está rodando o Gogs dentro do Docker, por favor leia os <a target="_blank" href="%s">Guias</a> cuidadosamente antes de mudar qualquer coisa nesta página! +requite_db_desc=Gogs requer MySQL, PostgreSQL, SQLite3 ou TiDB. +db_title=Configurações de Banco de Dados +db_type=Tipo do Banco de Dados +host=Host +user=Usuário +password=Senha +db_name=Nome do Banco de Dados +db_helper=Por favor, use o mecanismo INNODB com o conjunto de caracteres utf8_general_ci para MySQL. +ssl_mode=Modo SSL +path=Caminho +sqlite_helper=O caminho do arquivo do banco de dados SQLite3 ou TiDB. +err_empty_db_path=O Caminho do banco de dados SQLite3 ou TiDB não pode ser vazio. +err_invalid_tidb_name=Nome do banco de dados TiDB não permite os caracteres "." e "-". +no_admin_and_disable_registration=Você não pode desabilitar o registro sem criar uma conta de administrador. +err_empty_admin_password=A senha de administrador não pode ser vazia. + +general_title=Configurações Gerais do Gogs +app_name=Nome do Aplicativo +app_name_helper=Coloque o nome da sua organização aqui! +repo_path=Caminho da Raiz do Repositório +repo_path_helper=Todos os repositórios remotos do Git serão salvos neste diretório. +run_user=Executar Usuário +run_user_helper=O usuário deve ter acesso ao caminho raiz do repositório e executar o Gogs +domain=Domínio +domain_helper=Isto afeta URLs para clonagem via SSH. +ssh_port=Porta SSH +ssh_port_helper=Número da porta que seu servidor SSH está usando, deixe vazio para desativar o recurso SSH. +http_port=Porta HTTP +http_port_helper=Número da porta em que a aplicação irá executar. +app_url=URL do Aplicativo +app_url_helper=Isto afeta a URL de clonagem via HTTP/HTTPs e também o email. + +optional_title=Configurações Opcionais +email_title=Configurações do Serviço de E-mail +smtp_host=Host SMTP +smtp_from=De +smtp_from_helper=O endereço de email deve atender a especificação RFC 5322. O formato deve ser um email ou "Nome" <email@example.com>. +mailer_user=E-mail do Remetente +mailer_password=Senha do Remetente +register_confirm=Habilitar Confirmação de Registro +mail_notify=Habilitar Notificação de Correio +server_service_title=Configurações de Servidor e Outros Serviços +offline_mode=Ativar Modo Offline +offline_mode_popup=Desative o CDN mesmo em modo de produção, todos os recursos serão disponibilizados localmente. +disable_gravatar=Desativar Serviço Gravatar +disable_gravatar_popup=Desabilitar o Gravatar e fontes personalizadas, todos os avatares são enviados por usuários ou padrão. +disable_registration=Desativar auto-registro +disable_registration_popup=Desativar o auto-registro de usuário, para que somente o administrador possa criar contas. +enable_captcha=Habilitar Captcha +enable_captcha_popup=Obrigar validação por captcha para auto-registro de usuários. +require_sign_in_view=Requerer login para a visualização de páginas +require_sign_in_view_popup=Somente usuários autenticados podem ver todas as páginas, visitantes somente podem entrar ou se cadastrar. +admin_setting_desc=Você não precisa criar uma conta de administrador agora, no entanto o primeiro usuário (ID=1) automaticamente terá acesso de administrador. +admin_title=Configurações da Conta de Administrador +admin_name=Nome de Usuário +admin_password=Senha +confirm_password=Confirmar Senha +admin_email=E-mail do Administrador +install_gogs=Instalar Gogs +test_git_failed=Falha ao testar o comando 'git': %v +sqlite3_not_available=Sua versão não suporta SQLite3, por favor faça o download da versão binária oficial em %s, NÃO da versão gobuild. +invalid_db_setting=Configuração do banco de dados não está correta: %v +invalid_repo_path=A raiz do repositório é inválida: %v +run_user_not_match=O usuário da execução não é o usuário atual: %s -> %s +save_config_failed=Falha ao salvar a configuração: %v +invalid_admin_setting=Configuração da conta de administrador está inválida: %v +install_success=Bem-vindo! Estamos contentes que você escolheu o Gogs, divirta-se e tenha cuidado. + +[home] +uname_holder=Nome de Usuário ou E-mail +password_holder=Senha +switch_dashboard_context=Trocar Contexto do Painel de Controle +my_repos=Meus Repositórios +collaborative_repos=Repositórios Colaborativos +my_orgs=Minhas Organizações +my_mirrors=Meus Espelhos +view_home=Ver %s + +issues.in_your_repos=Em seus repositórios + +[explore] +repos=Repositórios + +[auth] +create_new_account=Criar Nova Conta +register_hepler_msg=Já tem uma conta? Entre agora! +social_register_hepler_msg=Já tem uma conta? Junte-se agora! +disable_register_prompt=Desculpe, novos registros estão desabilitados. Por favor entre em contato com o administrador do site. +disable_register_mail=Desculpe, a confirmação de registro por e-mail foi desabilitada. +remember_me=Lembrar de Mim +forgot_password=Esqueci a Senha +forget_password=Esqueceu a senha? +sign_up_now=Precisa de uma conta? Cadastre-se agora. +confirmation_mail_sent_prompt=Um novo e-mail de confirmação foi enviado para <b>%s</b>, por favor, verifique sua caixa de entrada nas próximas %d horas para completar seu registro. +active_your_account=Ativar Sua Conta +resent_limit_prompt=Desculpe, você está enviando um e-mail de ativação com muita frequência. Por favor, aguarde 3 minutos. +has_unconfirmed_mail=Oi %s, você possui um endereço de e-mail não confirmado (<b>%s</b>). Se você não recebeu um e-mail de confirmação ou precisa reenviar um novo, clique no botão abaixo. +resend_mail=Clique aqui para reenviar seu e-mail de ativação +email_not_associate=Este endereço de e-mail não é associado à nenhuma conta. +send_reset_mail=Clique aqui para (re)enviar seu e-mail de redefinição da senha +reset_password=Redefinir Sua Senha +invalid_code=Desculpe, seu código de confirmação expirou ou não é válido. +reset_password_helper=Clique aqui para redefinir sua senha +password_too_short=O comprimento da senha não pode ser menor que 6. + +[mail] +activate_account=Por favor, ative sua conta +activate_email=Verifique seu endereço de e-mail +reset_password=Resetar sua senha +register_success=Registrado com sucesso. Bem vindo +register_notify=Welcome on board + +[modal] +yes=Sim +no=Não +modify=Alterar + +[form] +UserName=Nome de usuário +RepoName=Nome do repositório +Email=Endereço de e-mail +Password=Senha +Retype=Redigite a senha +SSHTitle=Nome da chave SSH +HttpsUrl=URL HTTPS +PayloadUrl=URL de carga +TeamName=Nome da equipe +AuthName=Nome de autorização +AdminEmail=E-mail do Administrador + +require_error=` não pode estar vazio.` +alpha_dash_error=` devem ser caracteres alfanuméricos ou hífen (-) ou sublinhado (_).` +alpha_dash_dot_error=` devem ser caracteres alfanuméricos ou hífen (-) ou sublinhado (_).` +size_error='deve ser o tamanho %s.' +min_size_error=` deve conter pelo menos %s caracteres.` +max_size_error=` deve conter no máximo %s caracteres.` +email_error=` não é um endereço de e-mail válido.` +url_error=`não é uma URL válida.` +include_error=` deve conter '%s'.` +unknown_error=Erro desconhecido: +captcha_incorrect=O captcha não correspondeu. +password_not_match=Senha e confirmação da senha não são as mesmas. + +username_been_taken=Nome de usuário já foi tomado. +repo_name_been_taken=Nome do repositório já foi tomado. +org_name_been_taken=Nome da organização já foi tomado. +team_name_been_taken=Nome da equipe já foi tomado. +email_been_used=Endereço de e-mail já foi usado. +illegal_team_name=O nome da equipe contém caracteres não permitidos. +username_password_incorrect=Usuário ou senha incorretos. +enterred_invalid_repo_name=Por favor certifique-se que informou o nome do repositório corretamente. +enterred_invalid_owner_name=Por favor, verifique se o nome do proprietário está correto. +enterred_invalid_password=Por favor, verifique se a senha que você digitou está correta. +user_not_exist=O usuário informado não existe. +last_org_owner=O usuário a ser removido é o último membro na equipe de proprietários. Deve haver um outro proprietário. + +invalid_ssh_key=Desculpe, não conseguimos verificar a sua chave SSH: %s +unable_verify_ssh_key=Gogs não pode verificar sua chave SSH, mas assumimos que é válida, por favor, verifique a chave pessoalmente. +auth_failed=A autenticação falhou: %v + +still_own_repo=Sua conta ainda tem propriedade do repositório, você tem que excluir ou transferí-la primeiro. +still_has_org=Sua conta ainda faz parte da organização, você deve sair ou excluí-la primeiro. +org_still_own_repo=Esta organização ainda tem a propriedade do repositório, você deve excluir ou transferí-la primeiro. + +still_own_user=Esta autenticação ainda é usada por alguns usuários, você deve movê-los e depois apagar novamente. + +target_branch_not_exist=O branch de destino não existe. + +[user] +change_avatar=Altere o seu avatar em gravatar.com +change_custom_avatar=Altere seu avatar nas configurações +join_on=Inscreveu-se em +repositories=Repositórios +activity=Atividade Pública +followers=Seguidores +starred=Favorito +following=Seguindo + +form.name_reserved=O nome de usuário '%s' não pode ser usado. +form.name_pattern_not_allowed=Não é permitido usar o padrão '%s' para o nome de usuário. + +[settings] +profile=Perfil +password=Senha +ssh_keys=Chaves SSH +social=Contas Sociais +applications=Aplicativos +orgs=Organizações +delete=Deletar Conta +uid=Uid + +public_profile=Perfil Público +profile_desc=Seu endereço de E-mail é publico e será usado para qualquer notificação relacionada à conta, e qualquer operação na web feita através do site. +full_name=Nome Completo +website=Site +location=Localização +update_profile=Atualizar o Perfil +update_profile_success=O seu perfil foi atualizado com sucesso. +change_username=Nome de Usuário Alterado +change_username_prompt=Essa alteração afetará os links para a sua conta. +continue=Continuar +cancel=Cancelar + +enable_custom_avatar=Habilitar Avatar Customizado +enable_custom_avatar_helper=Habilite para desativar a busca no Gravatar +choose_new_avatar=Escolha um novo avatar +update_avatar=Atualizar configuração de Avatar +uploaded_avatar_not_a_image=O arquivo enviado não é uma imagem. +no_custom_avatar_available=Nenhum avatar personalizado disponível, não pode habilitá-lo. +update_avatar_success=Sua configuração de avatar foi atualizada com sucesso. + +change_password=Mudança de senha +old_password=Senha Atual +new_password=Nova Senha +retype_new_password=Digite novamente a nova senha +password_incorrect=A senha atual não está correta. +change_password_success=A senha está alterada com sucesso. Você pode agora entrar com a senha nova. + +emails=Endereços de E-mail +manage_emails=Gerenciar endereços de e-mail +email_desc=Seu endereço de e-mail principal será usado para notificações e outras operações. +primary=Principal +primary_email=Definir como principal +delete_email=Deletar +email_deletion=Exclusão do email +email_deletion_desc=Ao Excluir este endereço de e-mail será removido informações relacionadas com a sua conta. Você deseja continuar? +email_deletion_success=O E-mail foi excluído com sucesso! +add_new_email=Adicionar novo endereço de e-mail +add_email=Adicionar e-mail +add_email_confirmation_sent=Um novo e-mail de confirmação foi enviado para '%s'. Por favor, verifique sua Caixa de Entrada dentro das próximas %d horas, para concluir o processo de confirmação. +add_email_success=Seu novo endereço de E-mail foi adicionado com sucesso. + +manage_ssh_keys=Gerenciar Chaves SSH +add_key=Adicionar chave +ssh_desc=Esta é uma lista de chaves SSH associadas com a sua conta. Como essas chaves permitem que qualquer um que as usem tenham acesso aos seus repositórios, é altamente importante que você reconheça elas. +ssh_helper=<strong>Precisa de ajuda?</strong> Confira nosso guia para <a href="%s">gerar chaves SSH</a> ou solucionar <a href="%s">problemas comuns com SSH</a>. +add_new_key=Adicionar Chave SSH +ssh_key_been_used=Uma chave pública com esse mesmo conteúdo já está em uso. +ssh_key_name_used=Uma outra chave pública já existe com esse mesmo nome. +key_name=Nome da Chave +key_content=Conteúdo +add_key_success=A nova chave pública '%s' foi adicionada com sucesso! +delete_key=Deletar +ssh_key_deletion=Exclusão da chave de SSH +ssh_key_deletion_desc=Ao Excluir esta chave de SSH será removido todos os acessos para sua conta. Você deseja continuar? +ssh_key_deletion_success=A chave de SSH foi excluída com sucesso! +add_on=Adicionado em +last_used=Última vez usado em +no_activity=Nenhuma atividade recente +key_state_desc=Usada a pelo menos 7 dias +token_state_desc=Este token é usado em pelo menos 7 dias + +manage_social=Gerenciar Contas Sociais Associadas +social_desc=Esta é uma lista de contas sociais. Remova qualquer ligação que você não reconheça. +unbind=Desvincular +unbind_success=A conta social foi desvinculada. + +manage_access_token=Gerenciar Tokens de Acesso Pessoal +generate_new_token=Gerar novo Token +tokens_desc=Tokens gerados por você que podem ser usados para acessar a API do Gogs. +new_token_desc=Por enquanto, todo token terá acesso completo à sua conta. +token_name=Nome do Token +generate_token=Gerar Token +generate_token_succees=Novo token de acesso gerado com sucesso! Certifique-se de copiar seu novo token de acesso pessoal agora. Você não poderá vê-lo novamente! +delete_token=Excluir +access_token_deletion=Exclusão do Token de acesso pessoal +access_token_deletion_desc=Ao Excluir este token de acesso pessoal será removido todos os acessos do aplicativo. Você deseja continuar? +delete_token_success=O Token de acesso pessoal foi removido com sucesso! Não se esqueça de atualizar seus aplicativos também. + +delete_account=Deletar Sua Conta +delete_prompt=A operação deletará sua conta permanentemente, e <strong>NÃO PODERÁ</strong> ser desfeita! +confirm_delete_account=Confirmar Deleção +delete_account_title=Deleção da Conta +delete_account_desc=Esta conta será deletada permanentemente, você quer continuar? + +[repo] +owner=Dono +repo_name=Nome do Repositório +repo_name_helper=Nomes de repositórios bons são pequenos, memorizáveis e únicos. +visibility=Visibilidade +visiblity_helper=Este é um repositório <span class="ui red text"> privado</span> +visiblity_helper_forced=O adminstrador forçou todos os novos repositórios para serem <span class="ui red text">Privados</span> +visiblity_fork_helper=(A alteração desse valor irá afetar todos os forks) +clone_helper=Precisa de ajuda com a clonagem? Visite a <a target="_blank" href="%s">Ajuda</a>! +fork_repo=Fork o Repositório +fork_from=Fork de +fork_visiblity_helper=Não é possível alterar a visibilidade de um repositório forkado. +repo_desc=Descrição +repo_lang=Linguagem +repo_lang_helper=Selecione arquivos .gitignore +license=Licença +license_helper=Selecione um arquivo de licença +readme=Leia-me +readme_helper=Selecione um modelo de leia-me +auto_init=Inicializar este repositório com os arquivos selecionados e modelo +create_repo=Criar Repositório +default_branch=Branch padrão +mirror_interval=Intervalo de Espelho (hora) +watchers=Watchers +stargazers=Stargazers +forks=Forks + +form.name_reserved=O nome de repositório '%s' não pode ser usado. +form.name_pattern_not_allowed=Não é permitido usar o padrão '%s' para o nome de repositório. + +need_auth=Precisa de Autorização +migrate_type=Tipo de Migração +migrate_type_helper=Este repositório será um <span class="text blue"> espelho</span> +migrate_repo=Migrar Repositório +migrate.clone_address=Endereço de Clone +migrate.clone_address_desc=Isto pode ser uma URL de HTTP/HTTPS/GIT ou um caminho de diretório local. +migrate.permission_denied=Você não pode importar repositórios locais. +migrate.invalid_local_path=Caminho local inválido, não existe ou não é um diretório. +migrate.failed=Migration failed: %v + +forked_from=forkado de +fork_from_self=Você não pode criar fork de um repositório que já é seu! +copy_link=Copiar +copy_link_success=Copiado! +copy_link_error=Pressione ⌘-C ou Ctrl-C para copiar +copied=Copiado com sucesso +unwatch=Deixar de Observar +watch=Observar +unstar=Remover favorito +star=Favorito +fork=Fork + +no_desc=Nenhuma Descrição +quick_guide=Guia Rápido +clone_this_repo=Clonar este repositório +create_new_repo_command=Criar um novo repositório na linha de comando +push_exist_repo=Push um repositório existente na linha de comando +repo_is_empty=Este repositório está vazio, por favor volte mais tarde! + +branch=Branch +tree=Árvore +filter_branch_and_tag=Filter branch or tag +branches=Branches +tags=Tags +issues=Problemas +pulls=Pull Requests +labels=Etiquetas +milestones=Marcos +commits=Commits +releases=Versões +file_raw=Cru +file_history=Histórico +file_view_raw=Ver cru +file_permalink=Link permanente + +commits.commits=Commits +commits.search=Pesquisar commits +commits.find=Buscar +commits.author=Autor +commits.message=Mensagem +commits.date=Data +commits.older=Mais Antigo +commits.newer=Mais Novo + +issues.new=Novo problema +issues.new.labels=Etiquetas +issues.new.no_label=Sem etiqueta +issues.new.clear_labels=Limpar +issues.new.milestone=Marco +issues.new.no_milestone=Sem marco +issues.new.clear_milestone=Limpar +issues.new.open_milestone=Marcos abertos +issues.new.closed_milestone=Marcos fechados +issues.new.assignee=Responsável +issues.new.clear_assignee=Limpar +issues.new.no_assignee=Não atribuída +issues.create=Salvar +issues.new_label=Nova etiqueta +issues.new_label_placeholder=Nome da etiqueta... +issues.create_label=Salvar +issues.open_tab=%d aberto +issues.close_tab=%d fechados +issues.filter_label=Etiqueta +issues.filter_label_no_select=Nenhuma etiqueta selecionada +issues.filter_milestone=Marco +issues.filter_milestone_no_select=Nenhum marco selecionado +issues.filter_assignee=Atribuído +issues.filter_assginee_no_select=Sem atribuição +issues.filter_type=Tipo +issues.filter_type.all_issues=Todos os problemas +issues.filter_type.assigned_to_you=Atribuídos a você +issues.filter_type.created_by_you=Criado por você +issues.filter_type.mentioning_you=Mencionando você +issues.filter_sort=Ordenação +issues.filter_sort.latest=Mais novos +issues.filter_sort.oldest=Mais antigos +issues.filter_sort.recentupdate=Mais recentemente atualizados +issues.filter_sort.leastupdate=Menos recentemente atualizados +issues.filter_sort.mostcomment=Mais comentados +issues.filter_sort.leastcomment=Menos comentados +issues.opened_by=%[1]s foi aberto por <a href="%[2]s">%[3]s</a> +issues.opened_by_fake=aberto %[1]s por %[2]s +issues.previous=Página anterior +issues.next=Próxima página +issues.open_title=aberto +issues.closed_title=fechado +issues.num_comments=%d comentários +issues.commented_at=`comentado <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.no_content=Nenhum conteúdo textual. +issues.close_issue=Fechar +issues.close_comment_issue=Comentar e fechar +issues.reopen_issue=Reabrir +issues.reopen_comment_issue=Comentar e reabrir +issues.create_comment=Comentar +issues.closed_at=`fechado em <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.reopened_at=`reaberto em <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.commit_ref_at=`citou este problema em um commit <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.poster=Autor +issues.admin=Administrador +issues.owner=Proprietário +issues.sign_up_for_free=Cadastre-se gratuitamente +issues.sign_in_require_desc=para participar nesta conversa. Já tem uma conta? <a href="%s">Faça login para comentar</a> +issues.edit=Editar +issues.cancel=Cancelar +issues.save=Salvar +issues.label_title=Nome da etiqueta +issues.label_color=Cor da etiqueta +issues.label_count=%d etiquetas +issues.label_open_issues=%d problemas abertos +issues.label_edit=Editar +issues.label_delete=Excluir +issues.label_modify=Alteração de etiqueta +issues.label_deletion=Exclusão de etiqueta +issues.label_deletion_desc=Excluir uma etiqueta a retirará de todos os problemas que ela estiver marcando. Quer mesmo continuar? +issues.label_deletion_success=A etiqueta foi excluída com sucesso! + +pulls.new=New Pull Request +pulls.compare_changes=Comparar mudanças +pulls.compare_changes_desc=Comparar os dois branches e criar pull request com as mudanças. +pulls.compare_base=base +pulls.compare_compare=comparar +pulls.filter_branch=Filtrar branch +pulls.no_results=Nada encontrado. +pulls.nothing_to_compare=Não há nada para comparar porque o branch base e o head estão iguais. +pulls.has_pull_request=`Já existem pull requests entre esses dois alvos: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>` +pulls.create=Criar Pull Request +pulls.title_desc=quer mesclar %[1]d commits de <code>%[2]s</code> em <code>%[3]s</code> +pulls.merged_title_desc=mesclou %[1]d commits de <code>%[2]s</code> em <code>%[3]s</code> %[4]s +pulls.tab_conversation=Conversação +pulls.tab_commits=Commits +pulls.tab_files=Arquivos alterados +pulls.reopen_to_merge=Por favor reabra esse pull request para executar a operação de mescla. +pulls.merged=Merge realizado +pulls.has_merged=Este pull request foi mesclado com sucesso! +pulls.data_broken=Dados deste pull request foram quebrados devido à deleção de informação do fork. +pulls.is_checking=A verificação do conflito ainda está em progresso, por favor recarregue a página em instantes. +pulls.can_auto_merge_desc=Você pode realizar uma auto-mescla neste pull request. +pulls.cannot_auto_merge_desc=Você não pode realizar uma auto-mescla porque há conflitos entre os commits. +pulls.cannot_auto_merge_helper=Por favor, utilize linha de comando para solucionar isto. +pulls.merge_pull_request=Merge Pull Request +pulls.open_unmerged_pull_exists=' Você não pode executar a operação de reabrir porque já existe uma solicitação de pull aberta (#%d) do mesmo repositório com as mesmas informações de merge e está esperando pelo merge.' + +milestones.new=Novo marco +milestones.open_tab=%d abertos +milestones.close_tab=%d fechados +milestones.closed=Fechado %s +milestones.no_due_date=Sem prazo +milestones.open=Reabrir +milestones.close=Fechar +milestones.new_subheader=Crie marcos para gerenciar seus problemas. +milestones.create=Salvar marco +milestones.title=Título +milestones.desc=Descrição +milestones.due_date=Prazo (opcional) +milestones.clear=Limpar +milestones.invalid_due_date_format=Formato inválido. O valor de data deve ser algo como 'aaaa-mm-dd'. +milestones.create_success=O marco '%s' foi configurado com sucesso! +milestones.edit=Edição de marco +milestones.edit_subheader=Descreva bem a proposta do marco, assim as pessoas não ficarão confusas. +milestones.cancel=Cancelar +milestones.modify=Salvar alterações +milestones.edit_success=O marco '%s' foi alterado com sucesso! +milestones.deletion=Exclusão de marco +milestones.deletion_desc=Excluir este marco removerá a informação dele em todos os problemas aos quais estiver associado. Você quer mesmo continuar? +milestones.deletion_success=Marco excluído com sucesso! + +settings=Configurações +settings.options=Opções +settings.collaboration=Colaboração +settings.hooks=Webhooks +settings.githooks=Hooks do Git +settings.basic_settings=Configurações Básicas +settings.danger_zone=Zona de Perigo +settings.site=Site Oficial +settings.update_settings=Configurações de Atualização +settings.change_reponame_prompt=Este mudanças vai afetar os links para este repositório. +settings.transfer=Transferir Propriedade +settings.transfer_desc=Transferir este repositório para outro usuário ou para uma organização onde você tem direitos de administrador. +settings.new_owner_has_same_repo=O novo dono já tem um repositório com o mesmo nome. Por favor, escolha outro nome. +settings.delete=Deletar Este Repositório +settings.delete_desc=Uma vez que você deleta um repositório, não tem volta. Por favor, tenha certeza. +settings.transfer_notices_1=- Você vai perder acesso se o novo dono for um usuário individual. +settings.transfer_notices_2=- Você vai continuar tendo acesso se o novo dono é uma organização e você é um dos membros. +settings.transfer_form_title=Informe a seguinte informação para confirmar a sua operação: +settings.delete_notices_1=-Esta operação <strong>NÃO PODERÁ</strong> ser desfeita. +settings.delete_notices_2=- Esta operação irá apagar permanentemente o tudo deste repositório, incluindo os dados do Git, problemas, comentários e acessos dos colaboradores. +settings.delete_notices_fork_1=- Se este repositório é público, todos os forks se tornarão independentes após a deleção. +settings.delete_notices_fork_2=- Se este repositório é privado, todos os forks serão removidos imediatamente. +settings.delete_notices_fork_3=- Se você deseja manter todos os forks, por favor muda a visibilidade do repositório para pública primeiro. +settings.update_settings_success=As opções do repositório foram atualizadas com sucesso. +settings.transfer_owner=Novo Dono +settings.make_transfer=Fazer Transferência +settings.transfer_succeed=A posse do repositório foi transferido com sucesso. +settings.confirm_delete=Confirmar Deleção +settings.add_collaborator=Adicionar um Novo Colaborador +settings.add_collaborator_success=O novo colaborador foi adicionado. +settings.remove_collaborator_success=O colaborador foi removido. +settings.search_user_placeholder=Search user... +settings.user_is_org_member=O usuário é um membro da organização que não pode ser adicionado como um colaborador. +settings.add_webhook=Adicionar Webhook +settings.hooks_desc=Hooks da web ou Webhooks permitem serviços externos serem notificados quando certos eventos acontecem no Gogs. Quando acontecem os eventos especificados, enviaremos uma solicitação POST para cada uma das URLs que você fornecer. Saiba mais no nosso <a target="_blank" href="%s"> Guia de Webhooks</a>. +settings.webhook_deletion=Deletar Webhook +settings.webhook_deletion_desc=Deletar este Webhook vai remover sua informação e todo o histórico de entrega. Deseja continuar? +settings.webhook_deletion_success=Webhook deletado com sucesso! +settings.webhook.request=Solicitação +settings.webhook.response=Resposta +settings.webhook.headers=Cabeçalhos +settings.webhook.payload=Payload +settings.webhook.body=Texto +settings.githooks_desc=Hooks do Git são ofertados pelo próprio Git, você pode editar arquivos de hooks suportados na lista abaixo para aplicar operações personalizadas. +settings.githook_edit_desc=Se o hook não estiver ativo, o conteúdo de exemplo será apresentado. Deixar o conteúdo em branco irá desativar esse hook. +settings.githook_name=Nome do Hook +settings.githook_content=Conteúdo do Hook +settings.update_githook=Atualizar Hook +settings.add_webhook_desc=Enviaremos uma solicitação <code>POST</code> para o URL abaixo com detalhes de quaisquer eventos inscritos. Você pode também especificar qual formato de dados você gostaria de receber (JSON, <code>x-www-form-urlencoded</code>, <em>etc</em>). Mais informação pode ser encontrada em <a target="_blank" href="%s">Webhooks Guide</a>. +settings.payload_url=URL de carga +settings.content_type=Tipo de Conteúdo +settings.secret=Secreto +settings.slack_username=Nome de usuário +settings.slack_icon_url=URL do ícone +settings.slack_color=Cor +settings.event_desc=Quais eventos você gostaria de acionar a esse webhook? +settings.event_push_only=Apenas o evento <code>push</code>. +settings.event_send_everything=Preciso de <strong>tudo</strong>. +settings.event_choose=Deixe-me escolher o que eu preciso. +settings.event_create=Criar +settings.event_create_desc=Branch ou Tag criado +settings.event_push=Push +settings.event_push_desc=Git push para o repositório +settings.active=Ativar +settings.active_helper=Enviaremos detalhes do evento quando este hook for acionado. +settings.add_hook_success=Novos hooks de web foram adicionados. +settings.update_webhook=Atualizar Webhook +settings.update_hook_success=Webhook atualizado. +settings.delete_webhook=Excluir Webhook +settings.recent_deliveries=Entregas Recentes +settings.hook_type=Tipo de Hook +settings.add_slack_hook_desc=Adicionar <a href="%s">Slack</a> de integração para o seu repositório. +settings.slack_token=Token +settings.slack_domain=Domínio +settings.slack_channel=Canal +settings.deploy_keys=Chaves de Deploy +settings.add_deploy_key=Nova chave +settings.no_deploy_keys=Você ainda não adicionou chaves para implantação de software. +settings.title=Título +settings.deploy_key_content=Conteúdo da chave +settings.key_been_used=Uma chave de implantação com esse mesmo conteúdo já está em uso. +settings.key_name_used=Uma chave de implantação já existe com esse com mesmo nome. +settings.add_key_success=A nova chave de implantação '%s' foi adicionada com sucesso! +settings.deploy_key_deletion=Exclusão de chave de deploy +settings.deploy_key_deletion_desc=Excluir esta chave de implantação removerá permissões de acesso a este repositório. Quer mesmo continuar? +settings.deploy_key_deletion_success=Chave de implantação excluída com sucesso! + +diff.browse_source=Ver Código Fonte +diff.parent=pai +diff.commit=commit +diff.data_not_available=Dados de Diff não disponíveis. +diff.show_diff_stats=Mostrar estatísticas do Diff +diff.stats_desc=<strong> %d arquivos alterados</strong> com <strong>%d adições</strong> e <strong>%d exclusões</strong> +diff.bin=BIN +diff.view_file=Ver Arquivo + +release.releases=Versões +release.new_release=Nova Versão +release.draft=Rascunho +release.prerelease=Versão Prévia +release.stable=Estável +release.edit=editar +release.ahead=<strong>%d</strong> commits para %s depois desta versão +release.source_code=Código fonte +release.new_subheader=Publish releases to iterate product. +release.edit_subheader=Detailed change log can help users understand what has been improved. +release.tag_name=Nome da tag +release.target=Destino +release.tag_helper=Escolha uma tag existente, ou crie uma nova tag em publicar. +release.title=Title +release.content=Content +release.write=Escrever +release.preview=Visualizar +release.loading=Carregando... +release.prerelease_desc=Esta é uma versão prévia +release.prerelease_helper=Vou salientar que esta versão é identificada como não pronta para produção. +release.cancel=Cancel +release.publish=Publicar Versão +release.save_draft=Salvar Rascunho +release.edit_release=Editar Versão +release.delete_release=Delete This Release +release.deletion=Release Deletion +release.deletion_desc=Delete this release will delete corresponding Git tag. Do you want to continue? +release.deletion_success=Release has been deleted successfully! +release.tag_name_already_exist=Já existiu versão com esse nome de tag. +release.downloads=Downloads + +[org] +org_name_holder=Nome da Organização +org_full_name_holder=Nome completo da organização +org_name_helper=Nomes de grandes organizações são curtos e memoráveis. +create_org=Criar Organização +repo_updated=Atualizado +people=Pessoas +invite_someone=Convidar Alguém +teams=Equipes +lower_members=membros +lower_repositories=repositórios +create_new_team=Criar Nova Equipe +org_desc=Descrição +team_name=Nome da Equipe +team_desc=Descrição +team_name_helper=Você usará este nome para mencionar esta equipe em conversas. +team_desc_helper=Do que trata essa equipe? +team_permission_desc=Que nível de permissão esta equipe deve ter? + +form.name_reserved=O nome de organização '%s' não pode ser usado. +form.name_pattern_not_allowed=Não é permitido usar o padrão '%s' para o nome de organização. + +settings=Configurações +settings.options=Opções +settings.full_name=Nome Completo +settings.website=Site +settings.location=Localização +settings.update_settings=Atualizar Configurações +settings.update_setting_success=Configuração da organização atualizada com sucesso. +settings.change_orgname_prompt=Esta mudança vai afetar os links para esta organização. +settings.update_avatar_success=A configuração de avatar da organização foi atualizado com sucesso. +settings.delete=Deletar Organização +settings.delete_account=Deletar Esta Organização +settings.delete_prompt=A operação deletará esta organização permanentemente, e <strong>NÃO PODERÁ</strong> ser desfeita! +settings.confirm_delete_account=Confirmar Deleção +settings.delete_org_title=Deleção da Organização +settings.delete_org_desc=Esta organização será deletada permanentemente, você quer continuar? +settings.hooks_desc=Adicionar Webhooks que serão acionados para <strong>todos os repositórios</strong> dessa organização. + +members.public=Público +members.public_helper=tornar privado +members.private=Privado +members.private_helper=torar público +members.owner=Dono +members.member=Membro +members.conceal=Ocultar +members.remove=Remover +members.leave=Sair +members.invite_desc=Comece digitando um nome de usuário para convidá-lo como novo membro para %s: +members.invite_now=Convidar Agora + +teams.join=Juntar-se +teams.leave=Deixar +teams.read_access=Acesso de Leitura +teams.read_access_helper=Esta equipe poderá ver e clonar os repositórios dela. +teams.write_access=Acesso de Escrita +teams.write_access_helper=Esta equipa será capaz de ler os seus repositórios, bem como fazer push para eles. +teams.admin_access=Acesso do Administrador +teams.admin_access_helper=Esta equipe será capaz de fazer push/pull em seus repositórios, bem como adicionar-lhes outros colaboradores. +teams.no_desc=Esta equipe não tem descrição +teams.settings=Configurações +teams.owners_permission_desc=Donos tem acesso total a <strong>todos repositórios</strong> e também <strong>direitos de administrador</strong> para a organização. +teams.members=Membros da Equipe +teams.update_settings=Atualizar Configurações +teams.delete_team=Deletar Esta Equipe +teams.add_team_member=Adicionar Membro da Equipe +teams.delete_team_title=Deleção da Equipe +teams.delete_team_desc=Este equipe será deletada, você quer continuar? Membros desta equipe poderão perder acesso a alguns repositórios. +teams.delete_team_success=A equipe dada foi deletada com sucesso. +teams.read_permission_desc=Essa equipe concede acesso para <strong>Leitura</strong>: membros podem ver e clonar os repositórios da equipe. +teams.write_permission_desc=Esta equipe concede acesso para <strong>escrita</strong>: Membros podem ler e fazer push para os repositórios da equipe. +teams.admin_permission_desc=Esta equipe concede acesso de <strong>Administrador</strong>: Membros podem ler, fazer push e adicionar outros colaboradores para os repositórios da equipe. +teams.repositories=Repositórios da Equipe +teams.add_team_repository=Adicionar Repositório da Equipe +teams.remove_repo=Remover +teams.add_nonexistent_repo=O repositório que você está tentando adicionar não existe, por favor, crie-o primeiro. + +[admin] +dashboard=Painel de controle +users=Usuários +organizations=Organizações +repositories=Repositórios +authentication=Autenticações +config=Configuração +notices=Sistema de notificações +monitor=Monitoramento +first_page=Primeira +last_page=Última +total=Total: %d + +dashboard.statistic=Estatística +dashboard.operations=Operações +dashboard.system_status=Status do Monitor de Sistema +dashboard.statistic_info=O banco de dados do Gogs contém <b>%d</b> usuários, <b>%d</b> organizações, <b>%d</b> chaves públicas, <b>%d</b> repositórios, <b>%d</b> observadores, <b>%d</b> estrelas, <b>%d</b> ações, <b>%d</b> acessos, <b>%d</b> questões, <b>%d</b> comentários, <b>%d</b> contas sociais, <b>%d</b> seguidores, <b>%d</b> espelhos, <b>%d</b> versões, <b>%d</b> origens de login, <b>%d</b> Hooks da Web, <b>%d</b> milestones, <b>%d</b> labels, <b>%d</b> tarefas hook, <b>%d</b> equipes, <b>%d</b> tarefas de atualização, <b>%d</b> anexos. +dashboard.operation_name=Nome da Operação +dashboard.operation_switch=Trocar +dashboard.operation_run=Executar +dashboard.clean_unbind_oauth=Limpar OAuthes não acoplados +dashboard.clean_unbind_oauth_success=Todos OAuthes desvinculados foram excluídos com sucesso. +dashboard.delete_inactivate_accounts=Excluir todas as contas inativas +dashboard.delete_inactivate_accounts_success=Todas as contas inativas foram excluídas com sucesso. +dashboard.delete_repo_archives=Excluir todos os arquivos dos repositórios +dashboard.delete_repo_archives_success=Todos os arquivos dos repositórios foram excluídos com sucesso. +dashboard.delete_missing_repos=Delete all repository records that lost Git files +dashboard.delete_missing_repos_success=All repository records that lost Git files have been deleted successfully. +dashboard.git_gc_repos=Fazer coleta de lixo nos repositórios +dashboard.git_gc_repos_success=Em todos repositórios, a coleta de lixo foi realizada com sucesso. +dashboard.resync_all_sshkeys=Reescrever o arquivo '.ssh/authorized_keys' (atenção: chaves que não sejam do Gogs serão perdidas) +dashboard.resync_all_sshkeys_success=Todas as chaves públicas foram reescritas com sucesso. +dashboard.resync_all_update_hooks=Reescrever todos os hooks de atualização dos repositórios (necessário quando o caminho de configuração customizado é alterado) +dashboard.resync_all_update_hooks_success=Os hooks de atualização de todos os repositórios foram reescritos com sucesso. + +dashboard.server_uptime=Servidor Ligado +dashboard.current_goroutine=Goroutines Atuais +dashboard.current_memory_usage=Uso de Memória Atual +dashboard.total_memory_allocated=Total de Memória Alocada +dashboard.memory_obtained=Memória Obtida +dashboard.pointer_lookup_times=Nº de Consultas a Ponteiros +dashboard.memory_allocate_times=Nº de Alocações de Memória +dashboard.memory_free_times=Nº de Liberações de Memória +dashboard.current_heap_usage=Uso Atual da Heap +dashboard.heap_memory_obtained=Memória de Heap Obtida +dashboard.heap_memory_idle=Memória da Heap Ociosa +dashboard.heap_memory_in_use=Memória da Heap em Uso +dashboard.heap_memory_released=Memória da Heap Liberada +dashboard.heap_objects=Objetos na Heap +dashboard.bootstrap_stack_usage=Uso de Pilha Bootstrap +dashboard.stack_memory_obtained=Memória de Pilha Obtida +dashboard.mspan_structures_usage=Uso de Estruturas de MSpan +dashboard.mspan_structures_obtained=Estruturas de MSpan Obtidas +dashboard.mcache_structures_usage=Uso de Estruturas de MCache +dashboard.mcache_structures_obtained=Estruturas de MCache Obtidas +dashboard.profiling_bucket_hash_table_obtained=Perfil Obtido da Bucket Hash Table +dashboard.gc_metadata_obtained=Metadados do GC Obtidos +dashboard.other_system_allocation_obtained=Outra Alocação de Sistema Obtida +dashboard.next_gc_recycle=Próxima Reciclagem do GC +dashboard.last_gc_time=Desde da Última Vez do GC +dashboard.total_gc_time=Pausa Total do GC +dashboard.total_gc_pause=Pausa Total do GC +dashboard.last_gc_pause=Última Pausa do GC +dashboard.gc_times=Nº Execuções do GC + +users.user_manage_panel=Painel de Gerenciamento do Usuário +users.new_account=Criar Nova Conta +users.name=Nome +users.activated=Ativado +users.admin=Administrador +users.repos=Repositórios +users.created=Criado +users.send_register_notify=Enviar notificação de registro para ao usuário +users.new_success=Nova conta '%s' foi criada com sucesso. +users.edit=Editar +users.auth_source=Fonte da autenticação +users.local=Local +users.auth_login_name=Nome de login da autenticação +users.password_helper=Deixe em branco para não mudar. +users.update_profile_success=O perfil da conta foi atualizado com sucesso. +users.edit_account=Editar Conta +users.is_activated=Esta conta está ativada +users.is_admin=Esta conta tem permissões de administrador +users.allow_git_hook=Esta conta tem permissões para criar hooks do Git +users.allow_import_local=Esta conta tem permissões para importar repositórios locais +users.update_profile=Atualizar Perfil da Conta +users.delete_account=Deletar Esta Conta +users.still_own_repo=Sua conta ainda é proprietária do repositório, você tem que excluir ou transferi-lo primeiro. +users.still_has_org=Sua conta ainda faz parte da organização, você deve sair ou excluí-la primeiro. +users.deletion_success=Conta deletada com sucesso! + +orgs.org_manage_panel=Painel de Gerenciamento da Organização +orgs.name=Nome +orgs.teams=Equipes +orgs.members=Membros + +repos.repo_manage_panel=Painel de Gerenciamento do Repositório +repos.owner=Dono +repos.name=Nome +repos.private=Privado +repos.watches=Observadores +repos.stars=Favoritos +repos.issues=Problemas + +auths.auth_manage_panel=Painel de gerenciamento da autenticação +auths.new=Adicionar nova fonte +auths.name=Nome +auths.type=Tipo +auths.enabled=Habilitado +auths.updated=Atualizado +auths.auth_type=Tipo de autenticação +auths.auth_name=Nome da autenticação +auths.domain=Domínio +auths.host=Host +auths.port=Porta +auths.bind_dn=Vincular DN +auths.bind_password=Vincular senha +auths.bind_password_helper=Atenção: Esta senha é armazenada em texto plano. Não use uma conta com muitos privilégios. +auths.user_base=Base de pesquisa do usuário +auths.user_dn=Usuário do DN +auths.attribute_name=Atributo primeiro nome +auths.attribute_surname=Atributo sobrenome +auths.attribute_mail=Atributo e-mail +auths.filter=Filtro de usuário +auths.admin_filter=Filtro de administrador +auths.ms_ad_sa=Ms Ad SA +auths.smtp_auth=Tipo de autenticação SMTP +auths.smtphost=Host SMTP +auths.smtpport=Porta SMTP +auths.allowed_domains=Domínios autorizados +auths.allowed_domains_helper=Deixe em branco para permitir qualquer domínio do host SMTP. Vários domínios devem ser separados por vírgula ','. +auths.enable_tls=Habilitar Criptografia TLS +auths.skip_tls_verify=Ignorar verificação de TLS +auths.pam_service_name=Nome de Serviço PAM +auths.enable_auto_register=Habilitar Registro Automático +auths.tips=Dicas +auths.edit=Editar a configuração de autenticação +auths.activated=Esta autenticação foi ativada +auths.new_success=Nova autenticação '%s' foi adicionada com sucesso. +auths.update_success=A configuração da autenticação foi atualizada com sucesso. +auths.update=Atualizar a configuração da autenticação +auths.delete=Excluir esta autenticação +auths.delete_auth_title=Exclusão da autenticação +auths.delete_auth_desc=Esta autenticação esta prestes a ser deletada, deseja continuar? +auths.deletion_success=Autenticação deletada com sucesso! + +config.server_config=Configuração do Servidor +config.app_name=Nome do Aplicativo +config.app_ver=Versão do Aplicativo +config.app_url=URL do Aplicativo +config.domain=Domínio +config.offline_mode=Modo Offline +config.disable_router_log=Desabilitar o Log do Roteador +config.run_user=Usuário de Execução +config.run_mode=Modo de Execução +config.repo_root_path=Caminho Raiz do Repositório +config.static_file_root_path=Caminho Raiz para Arquivo Estático +config.log_file_root_path=Caminho Raiz para Arquivo de Log +config.script_type=Tipo de Script +config.reverse_auth_user=Usuário de Autenticação Reversa +config.db_config=Configuração do Banco de Dados +config.db_type=Tipo +config.db_host=Host +config.db_name=Nome +config.db_user=Usuário +config.db_ssl_mode=Modo SSL +config.db_ssl_mode_helper=(apenas para "postgres") +config.db_path=Caminho +config.db_path_helper=(para "sqlite3" e "tidb") +config.service_config=Configuração do Serviço +config.register_email_confirm=Requerer Confirmação de E-mail +config.disable_register=Desabilitar Registro +config.show_registration_button=Mostrar Botão de Registo +config.require_sign_in_view=Requerer Entrar no Gogs para Ver +config.enable_cache_avatar=Habilitar Cache de Avatar +config.mail_notify=Notificação de Correio +config.disable_key_size_check=Desativar verificação de tamanho mínimo da chave +config.enable_captcha=Habilitar o Captcha +config.active_code_lives=Ativar Code Lives +config.reset_password_code_lives=Redefinir Senha de Code Lives +config.webhook_config=Configuração de Hook da Web +config.queue_length=Tamanho da fila +config.deliver_timeout=Intervalo de Entrega +config.skip_tls_verify=Pular Verificar TLS +config.mailer_config=Configuração de Correio +config.mailer_enabled=Habilitado +config.mailer_disable_helo=Desabilitar HELO +config.mailer_name=Nome +config.mailer_host=Host +config.mailer_user=Usuário +config.oauth_config=Configuração do OAuth +config.oauth_enabled=Habilitado +config.cache_config=Configuração de Cache +config.cache_adapter=Adaptador de Cache +config.cache_interval=Intervalo de Cache +config.cache_conn=Conexão de Cache +config.session_config=Configuração da Sessão +config.session_provider=Provedor da Sessão +config.provider_config=Configuração do Provedor +config.cookie_name=Nome do Cookie +config.enable_set_cookie=Habilitar Uso de Cookie +config.gc_interval_time=Tempo de Intervalo do GC +config.session_life_time=Tempo de Vida da Sessão +config.https_only=Apenas HTTPS +config.cookie_life_time=Tempo de Vida do Cookie +config.picture_config=Configuração da Imagem +config.picture_service=Serviço de Imagens +config.disable_gravatar=Desativar Gravatar +config.log_config=Configuração de Log +config.log_mode=Modo do Log + +monitor.cron=Tarefas Cron +monitor.name=Nome +monitor.schedule=Cronograma +monitor.next=Próxima Vez +monitor.previous=Última Vez +monitor.execute_times=Nº de Execuções +monitor.process=Processos em Execução +monitor.desc=Descrição +monitor.start=Hora de Início +monitor.execute_time=Tempo de Execução + +notices.system_notice_list=Sistema de Notificações +notices.type=Tipo +notices.type_1=Repositório +notices.desc=Descrição +notices.op=Op. +notices.delete_success=Aviso do sistema foi deletado com sucesso. + +[action] +create_repo=repositório criado <a href="%s"> %s</a> +rename_repo=renomeou o o repositório <code>%[1]s</code> para <a href="%[2]s">%[3]s</a> +commit_repo=pushed para <a href="%[1]s/src/%[2]s">%[3]s</a> em <a href="%[1]s">%[4]s</a> +create_issue='questão aberta <a href="%s/issues/%s">%s#%[2]s</a>' +create_pull_request=`criou o pull request <a href="%s/pulls/%s">%s#%[2]s</a>` +comment_issue='comentou sobre a questão <a href="%s/issues/%s">%s#%[2]s</a>' +merge_pull_request=`mesclou o pull request <a href="%s/pulls/%s">%s#%[2]s</a>` +transfer_repo=repositório transferido de <code>%s</code> para <a href="%s">%s</a> +push_tag=Foi feito push na tag <a href="%s/src/%s">%[2]s</a> para <a href="%[1]s">%[3]s</a> +compare_2_commits=Ver comparação desses 2 commits + +[tool] +ago=atrás +from_now=a partir de agora +now=agora +1s=1 segundo %s +1m=1 minuto %s +1h=1 hora %s +1d=1 dia %s +1w=1 semana %s +1mon=1 mês %s +1y=1 ano %s +seconds=%d segundos %s +minutes=%d minutos %s +hours=%d horas %s +days=%d dias %s +weeks=%d semanas %s +months=%d meses %s +years=%d anos %s +raw_seconds=segundos +raw_minutes=minutos + +[dropzone] +default_message=Arraste e solte arquivos aqui, ou clique para selecioná-los. +invalid_input_type=Você não pode enviar arquivos deste tipo. +file_too_big=O tamanho do arquivo ({{filesize}} MB) excede o limite máximo ({{maxFilesize}} MB). +remove_file=Remover + diff --git a/conf/locale/locale_ru-RU.ini b/conf/locale/locale_ru-RU.ini index 1238e51f..08b3041d 100755 --- a/conf/locale/locale_ru-RU.ini +++ b/conf/locale/locale_ru-RU.ini @@ -1,992 +1,1009 @@ -app_desc=Удобная служба для собственного Git-репозитория, написанная на языке Go
-
-home=Главная
-dashboard=Панель мониторинга
-explore=Обзор
-help=Помощь
-sign_in=Войти
-sign_out=Выход
-sign_up=Регистрация
-register=Зарегистрироваться
-website=Веб-сайт
-version=Версия
-page=Страница
-template=Шаблон
-language=Язык
-create_new=Создать...
-user_profile_and_more=Профиль и остальное
-signed_in_as=Вы вошли как
-
-username=Имя пользователя
-email=Эл. почта
-password=Пароль
-re_type=Повтор
-captcha=Captcha
-
-repository=Репозиторий
-organization=Организация
-mirror=Зеркало
-new_repo=Новый репозиторий
-new_migrate=Новая Миграция
-new_fork=Новый проект из репозитория
-new_org=Новая Организация
-manage_org=Управление Организацией
-admin_panel=Панель администратора
-account_settings=Настройки аккаунта
-settings=Настройки
-your_profile=Ваш профиль
-your_settings=Ваши настройки
-
-news_feed=Лента новостей
-pull_requests=Pull Requests
-issues=Вопросы
-
-cancel=Отмена
-
-[search]
-search=Поиск...
-repository=Репозиторий
-user=Пользователь
-issue=Проблема
-code=Код
-
-[install]
-install=Установка
-title=Установочные шаги для первого запуска
-docker_helper=Если вы используете Gogs в Docker-контейнере, пожалуйста прочтите <a target="_blank" href="%s">эти советы</a>, перед тем как что-либо изменить!
-requite_db_desc=Gogs требует MySQL, PostgreSQL, SQLite3 или TiDB.
-db_title=Настройки базы данных
-db_type=Тип базы данных
-host=Хост
-user=Пользователь
-password=Пароль
-db_name=Имя базы данных
-db_helper=Для MySQL используйте тип таблиц InnoDB с кодировкой utf8_general_ci.
-ssl_mode=Режим SSL
-path=Путь
-sqlite_helper=Путь до базы данных SQLite или TiDB.
-err_empty_db_path=Путь к базе данных SQLite3 или TiDB не может быть пустым.
-err_invalid_tidb_name=Название базы данных TiDB не может содержать символы "." и "-".
-no_admin_and_disable_registration=Вы не можете отключить регистрацию, не создав аккаунт администратора.
-err_empty_admin_password=Пароль администратора не может быть пустым.
-
-general_title=Общие параметры Gogs
-app_name=Имя приложения
-app_name_helper=Укажите здесь название вашей потрясающей организации!
-repo_path=Путь корня репозитория
-repo_path_helper=Все удаленные репозитории Git будут сохранены в этой директории.
-run_user=Пользователь
-run_user_helper=У пользователя должен быть доступ к пути к корню репозитория и к запуску Gogs.
-domain=Домен
-domain_helper=Влияет на URL-адреса для клонирования по SSH.
-ssh_port=SSH порт
-ssh_port_helper=Номер порта, который использует SSH сервер. Оставьте пустым, чтобы отключить SSH.
-http_port=Порт HTTP
-http_port_helper=Номер порта, который приложение будет слушать.
-app_url=URL приложения
-app_url_helper=Этот параметр влияет на URL для клонирования по HTTP/HTTPS и на адреса в электронной почте.
-
-optional_title=Расширенные настройки
-email_title=Настройки службы электронной почты
-smtp_host=Узел SMTP
-smtp_from=Из
-smtp_from_helper=Почта от адреса, RFC 5322. Это может быть email адрес или формат "Имя" <email@example.com>.
-mailer_user=Электронная почта отправителя
-mailer_password=Пароль отправителя
-register_confirm=Включить подтверждение регистрации
-mail_notify=Разрешить почтовые уведомления
-server_service_title=Сервер и другие настройки служб
-offline_mode=Включение офлайн режима
-offline_mode_popup=Отключить CDN даже в производственном режиме, все файлы ресурсов будут раздаваться локально.
-disable_gravatar=Отключить службу Gravatar
-disable_gravatar_popup=Disable Gravatar and custom sources, all avatars are uploaded by users or default.
-disable_registration=Отключить самостоятельную регистрацию
-disable_registration_popup=Запретить пользователям самостоятельную регистрацию, только администратор может создавать аккаунты.
-enable_captcha=Включить капчу
-enable_captcha_popup=Запрашивать капчу при регистрации пользователя.
-require_sign_in_view=Разрешить требовать авторизацию для просмотра страниц
-require_sign_in_view_popup=Только авторизированные пользователи могут просматривать страницы, посетители смогут увидеть только ссылку на авторизацию вверху страницы.
-admin_setting_desc=Вы не должны создать учетную запись администратора прямо сейчас, пользователь с ID = 1 получит доступ с правами администратора автоматически.
-admin_title=Настройки учётной записи администратора
-admin_name=Имя пользователя
-admin_password=Пароль
-confirm_password=Подтвердить пароль
-admin_email=Эл. почта
-install_gogs=Установить Gogs
-test_git_failed=Не удалось проверить 'git' команду: %v
-sqlite3_not_available=Ваша версия не поддерживает SQLite3, пожалуйста скачайте официальную бинарную версию от %s, а не версию gobuild.
-invalid_db_setting=Настройки базы данных не правильные: %v
-invalid_repo_path=Недопустимый путь к корню репозитория: %v
-run_user_not_match=Текущий пользователь не является пользователем для запуска: %s -> %s
-save_config_failed=Не удалось сохранить конфигурацию: %v
-invalid_admin_setting=Указан недопустимый параметр учетной записи администратора: %v
-install_success=Добро пожаловать! Мы рады, что вы выбрали Gogs. Веселитесь и берегите себя.
-
-[home]
-uname_holder=Имя пользователь или E-mail
-password_holder=Пароль
-switch_dashboard_context=Переключить контекст панели управления
-my_repos=Мои репозитории
-collaborative_repos=Совместные репозитории
-my_orgs=Моя Организация
-my_mirrors=Мои зеркала
-view_home=Показать %s
-
-issues.in_your_repos=В вашем репозитории
-
-[explore]
-repos=Репозитории
-
-[auth]
-create_new_account=Создать новый аккаунт
-register_hepler_msg=Уже есть аккаунт? Авторизуйтесь!
-social_register_hepler_msg=Уже есть учетная запись? Свяжите ее с соцсетью!
-disable_register_prompt=Извините, возможность регистрации отключена. Пожалуйста, свяжитесь с администратором сайта.
-disable_register_mail=К сожалению подтверждение регистрации по почте отключено.
-remember_me=Запомнить меня
-forgot_password=Забыли пароль
-forget_password=Забыли пароль?
-sign_up_now=Нужен аккаунт? Зарегистрируйтесь.
-confirmation_mail_sent_prompt=Новое письмо для подтверждения было направлено на <b>%s</b>, пожалуйста, проверьте ваш почтовый ящик в течение %d часов для завершения регистрации.
-sign_in_to_account=Войдите свой аккаунт
-active_your_account=Активируйте свой аккаунт
-resent_limit_prompt=Вы слишком часто отправляете письмо с активацией. Подождите 3 минуты, пожалуйста.
-has_unconfirmed_mail=Здравствуйте, %s! У вас есть неподтвержденный адрес электронной почты (<b>%s</b>). Если вам не приходило письмо с подтверждением или нужно выслать новое письмо, нажмите на кнопку ниже.
-resend_mail=Нажмите здесь, чтобы переотправить активационное письмо
-email_not_associate=Этот адрес электронной почты не связан ни с одной учетной записью.
-send_reset_mail=Нажмите сюда, чтобы отправить письмо для сброса пароля
-reset_password=Сброс пароля
-invalid_code=Извините, ваш код подтверждения истек или не является допустимым.
-reset_password_helper=Нажмите здесь, чтобы сбросить свой пароль
-password_too_short=Длина пароля не менее 6 символов.
-
-[mail]
-activate_account=Пожалуйста активируйте свой аккаунт
-activate_email=Подтвердите адрес своей электронной почты
-reset_password=Восстановите ваш пароль
-register_success=Регистрация окончена. Добро пожаловать!
-
-[modal]
-yes=Да
-no=Нет
-modify=Изменить
-
-[form]
-UserName=Пользователь
-RepoName=Имя репозитория
-Email=Адрес эл. почты
-Password=Пароль
-Retype=Введите пароль еще раз
-SSHTitle=Имя SSH ключа
-HttpsUrl=URL HTTPS
-PayloadUrl=URL обработчика
-TeamName=Название команды
-AuthName=Имя авторизации
-AdminEmail=Электронная почта администратора
-
-require_error=` не может быть пустым.`
-alpha_dash_error=«должен быть допустимым символьным, числовым или dash(-_) значением.»
-alpha_dash_dot_error=«должен быть допустимым символьным, числовым или dash(-_) символами, включая точку.»
-size_error=` должен быть размер %s.`
-min_size_error=«должен содержать по крайней мере %s символов.»
-max_size_error=` должен содержать максимум %s символов.`
-email_error=«не является адресом электронной почты.»
-url_error=«не является допустимым URL-адресом.»
-unknown_error=Неизвестная ошибка:
-captcha_incorrect=CAPTCHA не совпадает.
-password_not_match=Пароль и подтверждение пароля не совпадают.
-
-username_been_taken=Имя пользователя уже принято.
-repo_name_been_taken=Имя репозитория уже принято.
-org_name_been_taken=Название организации было уже принято.
-team_name_been_taken=Название команды было уже принято.
-email_been_used=Адрес электронной почты уже используется.
-illegal_team_name=Имя группы содержит недопустимые знаки.
-username_password_incorrect=Имя пользователя или пароль не правильный.
-enterred_invalid_repo_name=Пожалуйста, убедитесь, что введенно правильное имя хранилища.
-enterred_invalid_owner_name=Убедитесь, что введенное имя владельца верное.
-enterred_invalid_password=Убедитесь, что введенный пароль верен.
-user_not_exist=Данный пользователь не существует.
-last_org_owner=Удаляемый пользователь является последним в команде владельцев. Должен быть хотя бы один владелец.
-
-invalid_ssh_key=К сожалению, мы не смогли проверить ваш SSH-ключ: %s
-unable_verify_ssh_key=Gogs не может проверить ваш SSH-ключ, но мы допускаем, что он действителен. Пожалуйста, удостоверьтесь самостоятельно, что ключ действителен.
-auth_failed=Ошибка аутентификации: %v
-
-still_own_repo=На вашем аккаунте все еще остается как минимум один репозиторий, сначала вам нужно удалить или передать его.
-still_has_org=Вы находитесь в организации, сперва Вам необходимо покинуть ее или удалить.
-org_still_own_repo=Данная организация все еще является владельцем репозиториев, необходимо удалить или переместить их в начале.
-
-still_own_user=Эта проверка подлинности по-прежнему используется некоторыми пользователями, вы должны переместить их и затем снова удалить.
-
-target_branch_not_exist=Целевая ветка не существует
-
-[user]
-change_avatar=Измените ваш аватар на gravatar.com
-change_custom_avatar=Измените ваш аватар в настройках
-join_on=Присоединилась к
-repositories=Репозитории
-activity=Активность
-followers=Подписчики
-starred=Избранное
-following=Подписан
-
-form.name_reserved=Имя пользователя '%s' зарезервировано.
-form.name_pattern_not_allowed=Имя пользователя «%s» не допускается.
-
-[settings]
-profile=Профиль
-password=Пароль
-ssh_keys=SSH ключи
-social=Учетные записи в соцсетях
-applications=Приложения
-orgs=Организации
-delete=Удалить аккаунт
-uid=UID
-
-public_profile=Открытый профиль
-profile_desc=Адрес вашей электронной почты является публичным и будет использован для любых уведомлений, связанных с аккаунтом, а также для любых действий, совершенных через сайт.
-full_name=ФИО
-website=Веб-сайт
-location=Местоположение
-update_profile=Обновить профиль
-update_profile_success=Ваш профиль был успешно обновлен.
-change_username=Имя пользователя изменено
-change_username_prompt=Это изменение может повлечь за собой изменение ссылок относительно вашего аккаунта.
-continue=Далее
-cancel=Отмена
-
-enable_custom_avatar=Включить собственный аватар
-enable_custom_avatar_helper=Включите эту опцию, чтоб отключить загрузку с Gravatar
-choose_new_avatar=Выбрать новый аватар
-update_avatar=Обновить настройку аватара
-uploaded_avatar_not_a_image=Загружаемый файл не является изображением.
-no_custom_avatar_available=Собственный аватар недоступен, включить его невозможно.
-update_avatar_success=Настройка вашего аватара обновлена успешно.
-
-change_password=Сменить пароль
-old_password=Текущий пароль
-new_password=Новый пароль
-retype_new_password=Подтверждение нового пароля
-password_incorrect=Текущий пароль не правильный.
-change_password_success=Пароль сменен успешно. Теперь вы можете войти с новым паролем.
-
-emails=Адреса электронной почты
-manage_emails=Управление адресами электронной почты
-email_desc=Ваш основной адрес электронной почты будет использован для уведомлений и других операций.
-primary=Основной
-primary_email=Установить как основной
-delete_email=Удалить
-email_deletion=Удаление адреса электронной почты
-email_deletion_desc=Удаление этого адреса электронной почты, приведет к удалению связанной с вашим аккаунтом, информации. Вы точно хотите продолжить?
-email_deletion_success=Адрес электронной почты успешно удален.
-add_new_email=Добавить новый адрес электронной почты
-add_email=Добавить электронную почту
-add_email_confirmation_sent=Новое подтверждение по электронной почте было отправлено '%s', пожалуйста, проверьте свой почтовый ящик в течение следующих %d часов, чтобы завершить процесс подтверждения.
-add_email_success=Новый адрес электронной почты успешно добавлен.
-
-manage_ssh_keys=Управление SSH ключами
-add_key=Добавить ключ
-ssh_desc=Это список ключей SSH связанных с вашей учетной записью. Удаляйте любые неизвестные вам ключи.
-ssh_helper=<strong>Нужна помощь?</strong> Ознакомьтесь с нашим путеводителем по <a href="%s">созданию SSH-ключей</a> или посмотрите решения <a href="%s">частых проблем, связанных с SSH</a>.
-add_new_key=Добавить SSH ключ
-ssh_key_been_used=Будет использован публичный ключ.
-ssh_key_name_used=Публичный ключ с таким же именем уже существует.
-key_name=Имя ключа
-key_content=Содержимое
-add_key_success=Был успешно добавлен новый ключ SSH «%s»!
-delete_key=Удалить
-ssh_key_deletion=Удаление ключа SSH
-ssh_key_deletion_desc=Удалить этот SSH ключ удалит все связанные с ним доступы для вашей учетной записи. Вы хотите продолжить?
-ssh_key_deletion_success=SSH ключ был успешно удален!
-add_on=Добавлено
-last_used=Последний раз использовался
-no_activity=Еще не применялся
-key_state_desc=Этот ключ использовался за последние 7 дней
-token_state_desc=Этот токен использовался за последние 7 дней
-
-manage_social=Управление привязанными учетными записями в соцсетях
-social_desc=Это список привязанных учетных записей в соцсетях. Удаляйте любые неизвестные вам привязки.
-unbind=Отвязать
-unbind_success=Социальная учетная запись отвязана.
-
-manage_access_token=Управление Токенами Персонального Доступа
-generate_new_token=Создать новый token
-tokens_desc=Созданные вами токены могут использоваться для доступа к Gogs API.
-new_token_desc=Пока что каждый токен будет иметь полный доступ к вашей учетной записи.
-token_name=Имя маркера
-generate_token=Генерировать маркер
-generate_token_succees=Успешно создан новый токен доступа! Пожалуйста сделайте копию вашего нового токена персонального доступа. Вы не сможете увидеть его снова!
-delete_token=Удалить
-access_token_deletion=Personal Access Token Deletion
-access_token_deletion_desc=Delete this personal access token will remove all related accesses of application. Do you want to continue?
-delete_token_success=Personal access token has been removed successfully! Don't forget to update your application as well.
-
-delete_account=Удалить свой аккаунт
-delete_prompt=Этим действием вы удалите свою учетную запись навсегда и <strong>НЕ СМОЖЕТЕ</strong> ее вернуть!
-confirm_delete_account=Подтвердите удаление
-delete_account_title=Удаление аккаунта
-delete_account_desc=Эта учетная запись будет удалена насовсем. Вы хотите продолжить?
-
-[repo]
-owner=Владелец
-repo_name=Имя репозитория
-repo_name_helper=Лучшие названия репозиториев коротки, запоминаемы и <strong>уникальны</strong>.
-visibility=Видимость
-visiblity_helper=This repository is <span class="ui red text">Private</span>
-visiblity_helper_forced=Site admin has forced all new repositories to be <span class="ui red text">Private</span>
-visiblity_fork_helper=(Change of this value will affect all forks)
-fork_repo=Ответвить репозиторий
-fork_from=Ответвление от
-fork_visiblity_helper=Ответвленному репозиторию нельзя поменять уровень видимости
-repo_desc=Описание
-repo_lang=Язык
-repo_lang_helper=Выберите файлы .gitignore
-license=Лицензия
-license_helper=Выберите файл лицензии
-readme=Readme
-readme_helper=Выберите шаблон для файла readme
-auto_init=Инициализировать этот репозиторий выбранными файлами и шаблоном
-create_repo=Создать репозиторий
-default_branch=Ветка по умолчанию
-mirror_interval=Интервал зеркалирования (час)
-
-form.name_reserved=Имя репозитория '%s' зарезервировано.
-form.name_pattern_not_allowed=Шаблон имени репозитория '%s' не допускается.
-
-need_auth=Требуется авторизация
-migrate_type=Тип миграции
-migrate_type_helper=This repository will be a <span class="text blue">mirror</span>
-migrate_repo=Перенос репозитория
-migrate.clone_address=Скопировать адрес
-migrate.clone_address_desc=This can be a HTTP/HTTPS/GIT URL or local server path.
-migrate.invalid_local_path=Недопустимый локальный путь. Возможно он не существует или является не папкой.
-
-forked_from=forked from
-fork_from_self=Вы не можете форкнуть репозитарий, так как Вы уже его владелец!
-copy_link=Скопировать
-copy_link_success=Скопировано!
-copy_link_error=Press ⌘-C or Ctrl-C to copy
-click_to_copy=Скопировать в буфер обмена
-copied=Успешно скопировано
-clone_helper=Нужна помощь в клонировании? Посетите страницу <a target="_blank" href="%s">помощи</a>!
-unwatch=Перестать следить
-watch=Следить
-unstar=Убрать из избранного
-star=В избранное
-fork=Ответвить
-
-no_desc=Нет описания
-quick_guide=Краткое руководство
-clone_this_repo=Клонировать репозиторий
-create_new_repo_command=Создать новый репозиторий из командной строки
-push_exist_repo=Отправить существующий репозиторий из командной строки
-repo_is_empty=This repository is empty, please come back later!
-
-
-branch=Ветка
-tree=Дерево
-branch_and_tags=Ветки и метки
-branches=Ветки
-tags=Метки
-issues=Обсуждения
-pulls=Pull Requests
-labels=Метки
-milestones=Этапы
-commits=Коммиты
-releases=Релизы
-file_raw=Исходник
-file_history=История
-file_view_raw=Посмотреть исходник
-file_permalink=Постоянная ссылка
-
-commits.commits=Коммиты
-commits.search=Поиск коммитов
-commits.find=Найти
-commits.author=Автор
-commits.message=Сообщение
-commits.date=Дата
-commits.older=Раньше
-commits.newer=Новее
-
-issues.new=Новая задача
-issues.new.labels=Метки
-issues.new.no_label=Не метка
-issues.new.clear_labels=Отчистить метки
-issues.new.milestone=Milestone
-issues.new.no_milestone=No Milestone
-issues.new.clear_milestone=Clear milestone
-issues.new.open_milestone=Open Milestones
-issues.new.closed_milestone=Closed Milestones
-issues.new.assignee=Assignee
-issues.new.clear_assignee=Clear assignee
-issues.new.no_assignee=No assignee
-issues.create=Create Issue
-issues.new_label=Новая метка
-issues.new_label_placeholder=Имя метки...
-issues.create_label=Create Label
-issues.open_tab=%d Открыть
-issues.close_tab=%d Закрыть
-issues.filter_label=Метка
-issues.filter_label_no_select=Нет выбранной метки
-issues.filter_milestone=Этап
-issues.filter_milestone_no_select=No selected milestone
-issues.filter_assignee=Назначено
-issues.filter_assginee_no_select=No selected Assignee
-issues.filter_type=Тип
-issues.filter_type.all_issues=Все задачи
-issues.filter_type.assigned_to_you=Назначено Вам
-issues.filter_type.created_by_you=Созданные вами
-issues.filter_type.mentioning_you=Вы упомянуты
-issues.filter_sort=Сортировать
-issues.filter_sort.latest=Новейшие
-issues.filter_sort.oldest=Старейшие
-issues.filter_sort.recentupdate=Recently updated
-issues.filter_sort.leastupdate=Least recently updated
-issues.filter_sort.mostcomment=Most commented
-issues.filter_sort.leastcomment=Least commented
-issues.opened_by=opened %[1]s by <a href="%[2]s">%[3]s</a>
-issues.opened_by_fake=opened %[1]s by %[2]s
-issues.previous=Предыдущая страница
-issues.next=Следующая страница
-issues.open_title=Open
-issues.closed_title=Closed
-issues.num_comments=%d comments
-issues.commented_at=`commented <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.no_content=There is no content yet.
-issues.close_issue=Закрыть
-issues.close_comment_issue=Закрыть и комментировать
-issues.reopen_issue=Reopen
-issues.reopen_comment_issue=Reopen and comment
-issues.create_comment=Комментировать
-issues.closed_at=`closed <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.reopened_at=`reopened <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.commit_ref_at=`referenced this issue from a commit <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.poster=Poster
-issues.admin=Администратор
-issues.owner=Владелец
-issues.sign_up_for_free=Зарегистрируйтесь бесплатно
-issues.sign_in_require_desc=to join this conversation. Already have an account? <a href="%s">Sign in to comment</a>
-issues.edit=Изменить
-issues.cancel=Отмена
-issues.save=Save
-issues.label_title=Имя метки
-issues.label_color=Цвет метки
-issues.label_count=%d меток
-issues.label_open_issues=%d открытых задач
-issues.label_edit=Редактировать
-issues.label_delete=Удалить
-issues.label_modify=Изменение метки
-issues.label_deletion=Удаление метки
-issues.label_deletion_desc=Удаление ярлыка затронет все связанные задачи. Продолжить?
-issues.label_deletion_success=Метка была удалена успешно!
-
-pulls.compare_changes=Сравнить изменения
-pulls.compare_changes_desc=Compare two branches and make a pull request for changes.
-pulls.compare_base=base
-pulls.compare_compare=compare
-pulls.filter_branch=Filter branch
-pulls.no_results=No results found.
-pulls.nothing_to_compare=There is nothing to compare because base and head branches are even.
-pulls.has_pull_request=`There is already a pull request between these two targets: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>`
-pulls.create=Create Pull Request
-pulls.title_desc=wants to merge %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code>
-pulls.merged_title_desc=merged %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> %[4]s
-pulls.tab_conversation=Обсуждение
-pulls.tab_commits=Коммиты
-pulls.tab_files=Измененные файлы
-pulls.reopen_to_merge=Please reopen this pull request to perform merge operation.
-pulls.merged=Merged
-pulls.has_merged=This pull request has been merged successfully!
-pulls.data_broken=Data of this pull request has been broken due to deletion of fork information.
-pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments.
-pulls.can_auto_merge_desc=You can perform auto-merge operation on this pull request.
-pulls.cannot_auto_merge_desc=You can't perform auto-merge operation because there are conflicts between commits.
-pulls.cannot_auto_merge_helper=Please use command line tool to solve it.
-pulls.merge_pull_request=Merge Pull Request
-pulls.open_unmerged_pull_exists=`You can't perform reopen operation because there is already an open pull request (#%d) from same repository with same merge information and is waiting for merging.`
-
-milestones.new=New Milestone
-milestones.open_tab=%d Open
-milestones.close_tab=%d Closed
-milestones.closed=Closed %s
-milestones.no_due_date=No due date
-milestones.open=Open
-milestones.close=Close
-milestones.new_subheader=Create milestones to organize your issues.
-milestones.create=Create Milestone
-milestones.title=Title
-milestones.desc=Description
-milestones.due_date=Due Date (optional)
-milestones.clear=Clear
-milestones.invalid_due_date_format=Due date format is invalid, must be 'year-mm-dd'.
-milestones.create_success=Milestone '%s' has been created successfully!
-milestones.edit=Edit Milestone
-milestones.edit_subheader=Use better description for milestones so people won't be confused.
-milestones.cancel=Cancel
-milestones.modify=Modify Milestone
-milestones.edit_success=Changes of milestone '%s' has been saved successfully!
-milestones.deletion=Milestone Deletion
-milestones.deletion_desc=Delete this milestone will remove its information in all related issues. Do you want to continue?
-milestones.deletion_success=Milestone has been deleted successfully!
-
-settings=Настройки
-settings.options=Опции
-settings.collaboration=Сотрудничество
-settings.hooks=Автоматическое обновление
-settings.githooks=Git хуки
-settings.basic_settings=Основные параметры
-settings.danger_zone=Опасная зона
-settings.site=Официальный сайт
-settings.update_settings=Обновить настройки
-settings.change_reponame_prompt=This change will affect how links relate to the repository.
-settings.transfer=Передать права собственности
-settings.transfer_desc=Передать репозиторий другому пользователю или организации где у вас есть права администратора.
-settings.new_owner_has_same_repo=У нового владельца уже есть хранилище с таким названием.
-settings.delete=Удалить этот репозиторий
-settings.delete_desc=Как только вы удалите репозиторий — пути назад не будет. Удостоверьтесь, что вам это точно нужно.
-settings.transfer_notices_1=- You will lose access if new owner is a individual user.
-settings.transfer_notices_2=- You will conserve access if new owner is an organization and if you're one of the owners.
-settings.transfer_form_title=Please enter following information to confirm your operation:
-settings.delete_notices_1=- This operation <strong>CANNOT</strong> be undone.
-settings.delete_notices_2=- This operation will permanently delete the everything of this repository, including Git data, issues, comments and accesses of collaborators.
-settings.delete_notices_fork_1=- If this repository is public, all forks will be became independent after deletion.
-settings.delete_notices_fork_2=- If this repository is private, all forks will be removed at the same time.
-settings.delete_notices_fork_3=- If you want to keep all forks after deletion, please change visibility of this repository to public first.
-settings.update_settings_success=Настройка репозитория обновлена успешно.
-settings.transfer_owner=Новый владелец
-settings.make_transfer=Выполнить передачу
-settings.transfer_succeed=Владение репозиторием было успешно передано.
-settings.confirm_delete=Подтвердить удаление
-settings.add_collaborator=Добавить нового соавтора
-settings.add_collaborator_success=Был добавлен новый соавтор.
-settings.remove_collaborator_success=Соавтор был удален.
-settings.user_is_org_member=Пользователь является членом организации, члены которой не могут быть добавлены в качестве соавтора.
-settings.add_webhook=Добавить Webhook
-settings.hooks_desc=Webhooks позволяют внешним службам получать уведомления при возникновении определенных событий на Gogs. При возникновении указанных событий мы отправим запрос POST на каждый заданный вами URL. Узнать больше можно в нашем <a target="_blank" href="%s">Руководстве по Webhooks</a>.
-settings.webhook_deletion=Delete Webhook
-settings.webhook_deletion_desc=Delete this webhook will remove its information and all delivery history. Do you want to continue?
-settings.webhook_deletion_success=Webhook has been deleted successfully!
-settings.webhook.request=Request
-settings.webhook.response=Response
-settings.webhook.headers=Headers
-settings.webhook.payload=Payload
-settings.webhook.body=Body
-settings.githooks_desc=Git Hooks are powered by Git itself, you can edit files of supported hooks in the list below to perform custom operations.
-settings.githook_edit_desc=If the hook is inactive, sample content will be presented. Leaving content to an empty value will disable this hook.
-settings.githook_name=Название Hook'a
-settings.githook_content=Перехватить содержание
-settings.update_githook=Обновить Hook
-settings.add_webhook_desc=Мы отправим запрос <code>POST</code> на указанный ниже URL с информацией о событиях. Можно также указать формат, в котором вы бы хотели получить данные (JSON, <code>x-www-form-urlencoded</code>, <em>и т.д.</em>). Дополнительную информацию можно найти в <a target="_blank" href="%s">Руководстве по Webhook</a>.
-settings.payload_url=URL обработчика
-settings.content_type=Тип содержимого
-settings.secret=Secret
-settings.slack_username=Username
-settings.slack_icon_url=Icon URL
-settings.slack_color=Color
-settings.event_desc=На какие события этот webhook должен срабатывать?
-settings.event_push_only=Просто <code>push</code> событие.
-settings.event_send_everything=I need <strong>everything</strong>.
-settings.event_choose=Let me choose what I need.
-settings.event_create=Create
-settings.event_create_desc=Branch, or tag created
-settings.event_push=Push
-settings.event_push_desc=Git push to a repository
-settings.active=Активен
-settings.active_helper=Details regarding the event which triggered the hook will be delivered as well.
-settings.add_hook_success=Был добавлен новый webhook.
-settings.update_webhook=Обновление Webhook
-settings.update_hook_success=Webhook обновлен.
-settings.delete_webhook=Удалить автоматическое обновление
-settings.recent_deliveries=Недавние рассылки
-settings.hook_type=Тип перехватчика
-settings.add_slack_hook_desc=Добавить интеграцию с <a href="%s">Slack</a> в ваш репозиторий.
-settings.slack_token=Token
-settings.slack_domain=Домен
-settings.slack_channel=Канал
-settings.deploy_keys=Ключи развертывания
-settings.add_deploy_key=Add Deploy Key
-settings.no_deploy_keys=You haven't added any deploy key.
-settings.title=Title
-settings.deploy_key_content=Content
-settings.key_been_used=Deploy key content has been used.
-settings.key_name_used=Deploy key with same name has already existed.
-settings.add_key_success=New deploy key '%s' has been added successfully!
-settings.deploy_key_deletion=Delete Deploy Key
-settings.deploy_key_deletion_desc=Delete this deploy key will remove all related accesses for this repository. Do you want to continue?
-settings.deploy_key_deletion_success=Deploy key has been deleted successfully!
-
-diff.browse_source=Просмотр исходного кода
-diff.parent=Родитель
-diff.commit=Сommit
-diff.data_not_available=Данные Diff не доступны.
-diff.show_diff_stats=Показать статистику Diff
-diff.stats_desc=<strong> %d измененных файлов</strong> с <strong>%d добавлено</strong> и <strong>%d удалено</strong>
-diff.bin=BIN
-diff.view_file=Просмотреть файл
-
-release.releases=Релизы
-release.new_release=Новый релиз
-release.draft=Черновик
-release.prerelease=Предрелиз
-release.stable=Стабильный
-release.edit=Редактировать
-release.ahead=<strong>%d</strong> коммитов %s начиная с этого релиза
-release.source_code=Исходный код
-release.tag_name=Имя тега
-release.target=Цель
-release.tag_helper=Выберите существующий тег, или создайте новый.
-release.release_title=Название релиза
-release.content_with_md=Содержимое с <a href="%s">Markdown</a>
-release.write=Запись
-release.preview=Предварительный просмотр
-release.content_placeholder=Напишите что-нибудь
-release.loading=Загрузка...
-release.prerelease_desc=Это предварительный релиз
-release.prerelease_helper=We’ll point out that this release is not production-ready.
-release.publish=Опубликовать релиз
-release.save_draft=Сохранить черновик
-release.edit_release=Редактировать релиз
-release.tag_name_already_exist=Релиз с этим именем тега уже существует.
-
-[org]
-org_name_holder=Название организации
-org_name_helper=Лучшие названия организаций коротки и запоминаемы.
-create_org=Создать Организацию
-repo_updated=Обновлено
-people=Люди
-invite_someone=Пригласить кого-нибудь
-teams=Команды
-lower_members=Участники
-lower_repositories=Репозитории
-create_new_team=Создать Новую Команду
-org_desc=Описание
-team_name=Название команды
-team_desc=Описание
-team_name_helper=Вы будете использовать это имя для упоминания этой команды в обсуждении.
-team_desc_helper=What is this team all about?
-team_permission_desc=Какой уровень разрешений должен быть у этой команды?
-
-form.name_reserved=Наименование организации '%s' зарезервированно.
-form.name_pattern_not_allowed=Шаблон организации '%s' не допускается.
-
-settings=Настройки
-settings.options=Опции
-settings.full_name=Полное имя
-settings.website=Сайт
-settings.location=Местоположение
-settings.update_settings=Обновить настройки
-settings.update_setting_success=Настройки Организации были успешно обновлены.
-settings.change_orgname_prompt=This change will affect how links relate to the organization.
-settings.update_avatar_success=Organization avatar setting has been updated successfully.
-settings.delete=Удалить Организацию
-settings.delete_account=Удалить Эту Организацию
-settings.delete_prompt=Это действие безвозвратно удалит эту организацию навсегда.
-settings.confirm_delete_account=Подтвердить удаление
-settings.delete_org_title=Удаление Организации
-settings.delete_org_desc=Эта организация будет удалена навсегда. Хотите всё-равно продолжить?
-settings.hooks_desc=Добавьте автоматическое обновление, который будет вызываться для <strong>всех репозиций</strong> под этой Группой.
-
-members.public=Публичный
-members.public_helper=Сделать Приватным
-members.private=Приватный
-members.private_helper=Сделать Публичным
-members.owner=Владелец
-members.member=Участник
-members.conceal=Скрыть
-members.remove=Удалить
-members.leave=Покинуть
-members.invite_desc=Начните вводить имя пользователя чтобы пригласить нового члена %s:
-members.invite_now=Пригласите сейчас
-
-teams.join=Объединить
-teams.leave=Выйти
-teams.read_access=Доступ на чтение
-teams.read_access_helper=Эта команда будет иметь возможность просматривать и клонировать ее репозитории.
-teams.write_access=Доступ на запись
-teams.write_access_helper=Эта команда будет в состоянии прочитать ее репозитории, а также посылать изменения.
-teams.admin_access=Доступ администратора
-teams.admin_access_helper=Эта команда будет иметь возможность выполнять push/pull в его репозиториях, а также добавлять других сотрудников к нему.
-teams.no_desc=Эта группа не имеет описания
-teams.settings=Настройки
-teams.owners_permission_desc=Владельцы имеют полный доступ ко <strong>всем репозиториям</strong> и имеют <strong>права администратора</strong> организации.
-teams.members=Члены группы разработки
-teams.update_settings=Обновить настройки
-teams.delete_team=Удалить эту группу разработки
-teams.add_team_member=Добавление члена группы разработки
-teams.delete_team_title=Удалить группу разработки
-teams.delete_team_desc=Эта команда будет удалена. Вы хотите продолжить? Члены этой группы могут потерять доступ к некоторым репозиториям.
-teams.delete_team_success=Данная команда была удалена успешно.
-teams.read_permission_desc=Эта команда предоставляет доступ на <strong>Чтение</strong>: члены могут просматривать и клонировать репозитории команды.
-teams.write_permission_desc=Эта команда предоставляет доступ на <strong>Запись</strong>: члены могут получать и выполнять push команды в репозитории.
-teams.admin_permission_desc=This team grants <strong>Admin</strong> access: members can read from, push to, and add collaborators to the team's repositories.
-teams.repositories=Репозитории группы разработки
-teams.add_team_repository=Добавить репозиторий группы разработки
-teams.remove_repo=Удалить
-teams.add_nonexistent_repo=Вы добавляете в отсутствующий репозиторий, пожалуйста сначала его создайте.
-
-[admin]
-dashboard=Панель управления
-users=Пользователи
-organizations=Организации
-repositories=Репозитории
-authentication=Авторизация
-config=Настройки
-notices=Системные уведомления
-monitor=Мониторинг
-first_page=First
-last_page=Last
-total=Total: %d
-
-dashboard.statistic=Статистика
-dashboard.operations=Операции
-dashboard.system_status=Статус системного монитора
-dashboard.statistic_info=В базе данных Gogs записано <b>%d</b> пользователей, <b>%d</b> организаций, <b>%d</b> публичных ключей, <b>%d</b> репозиторий, <b>%d</b> подписок на репозитории, <b>%d</b> добавлений в избранное, <b>%d</b> действий, <b>%d</b> доступов, <b>%d</b> обсуждений, <b>%d</b> комментариев, <b>%d</b> социальных учетных записей, <b>%d</b> подписок на пользователей, <b>%d</b> зеркал, <b>%d</b> релизов, <b>%d</b> источников входа, <b>%d</b> веб-хуков, <b>%d</b> вех, <b>%d</b> меток, <b>%d</b> задач хуков, <b>%d</b> команд, <b>%d</b> задач по обновлению, <b>%d</b> присоединенных файлов.
-dashboard.operation_name=Наименование Операции
-dashboard.operation_switch=Переключить
-dashboard.operation_run=Запуск
-dashboard.clean_unbind_oauth=Удалить не привязанные OAUth
-dashboard.clean_unbind_oauth_success=Не привязанные OAuth аккаунты успешно удалены.
-dashboard.delete_inactivate_accounts=Удалить все неактивированные учетные записи
-dashboard.delete_inactivate_accounts_success=Все неактивированные учетные записи удалены успешно.
-dashboard.delete_repo_archives=Удаление всех архивов репозиториев
-dashboard.delete_repo_archives_success=Все архивы репозиториев были успешно удалены.
-dashboard.git_gc_repos=Выполнить сборку мусора на репозиториях
-dashboard.git_gc_repos_success=Сборка мусора на всех репозиториях успешно выполнена.
-dashboard.resync_all_sshkeys=Переписать файл «.ssh/authorized_keys» (осторожно: не Gogs ключи будут утеряны)
-dashboard.resync_all_sshkeys_success=Были успешно переписаны все открытые ключи.
-dashboard.resync_all_update_hooks=Rewrite all update hook of repositories (needed when custom config path is changed)
-dashboard.resync_all_update_hooks_success=All repositories' update hook have been rewritten successfully.
-
-dashboard.server_uptime=Время непрерывной работы сервера
-dashboard.current_goroutine=Текущий Goroutines
-dashboard.current_memory_usage=Текущее использование памяти
-dashboard.total_memory_allocated=Всего памяти выделено
-dashboard.memory_obtained=Memory Obtained
-dashboard.pointer_lookup_times=Pointer Lookup Times
-dashboard.memory_allocate_times=Memory Allocate Times
-dashboard.memory_free_times=Memory Free Times
-dashboard.current_heap_usage=Текущее использование кучи
-dashboard.heap_memory_obtained=Heap Memory Obtained
-dashboard.heap_memory_idle=Heap Memory Idle
-dashboard.heap_memory_in_use=Кучи памяти в работе
-dashboard.heap_memory_released=Heap Memory Released
-dashboard.heap_objects=Heap Objects
-dashboard.bootstrap_stack_usage=Bootstrap Stack Usage
-dashboard.stack_memory_obtained=Stack Memory Obtained
-dashboard.mspan_structures_usage=MSpan Structures Usage
-dashboard.mspan_structures_obtained=MSpan Structures Obtained
-dashboard.mcache_structures_usage=MCache Structures Usage
-dashboard.mcache_structures_obtained=MCache Structures Obtained
-dashboard.profiling_bucket_hash_table_obtained=Profiling Bucket Hash Table Obtained
-dashboard.gc_metadata_obtained=GC Metadada Obtained
-dashboard.other_system_allocation_obtained=Other System Allocation Obtained
-dashboard.next_gc_recycle=Next GC Recycle
-dashboard.last_gc_time=Since Last GC Time
-dashboard.total_gc_time=Total GC Pause
-dashboard.total_gc_pause=Total GC Pause
-dashboard.last_gc_pause=Last GC Pause
-dashboard.gc_times=GC Times
-
-users.user_manage_panel=User Manage Panel
-users.new_account=Создать новый аккаунт
-users.name=Имя
-users.activated=Активирован
-users.admin=Администратор
-users.repos=Репозитории
-users.created=Создано
-users.send_register_notify=Send Registration Notification To User
-users.new_success=New account '%s' has been created successfully.
-users.edit=Редактировать
-users.auth_source=Authentication Source
-users.local=Локальный
-users.auth_login_name=Authentication Login Name
-users.password_helper=Leave it empty to remain unchanged.
-users.update_profile_success=Профиль учетной записи обновлен успешно.
-users.edit_account=Изменение учетной записи
-users.is_activated=Эта учетная запись активирована
-users.is_admin=У этой учетной записи есть права администратора
-users.allow_git_hook=Пользователь имеет право создать Git перехватчик
-users.update_profile=Обновить профиль учетной записи
-users.delete_account=Удалить эту учетную запись
-users.still_own_repo=На вашем аккаунте все еще остается как минимум один репозиторий, сначала вам нужно удалить или передать его.
-users.still_has_org=This account still has membership in at least one organization, you have to leave or delete the organizations first.
-users.deletion_success=Account has been deleted successfully!
-
-orgs.org_manage_panel=Управление группами
-orgs.name=Имя
-orgs.teams=Команды
-orgs.members=Участники
-
-repos.repo_manage_panel=Repository Manage Panel
-repos.owner=Владелец
-repos.name=Имя
-repos.private=Приватный
-repos.watches=Следят
-repos.stars=В избранном
-repos.issues=Вопросы
-
-auths.auth_manage_panel=Authentication Manage Panel
-auths.new=Add New Source
-auths.name=Имя
-auths.type=Тип
-auths.enabled=Включено
-auths.updated=Обновлено
-auths.auth_type=Authentication Type
-auths.auth_name=Authentication Name
-auths.domain=Домен
-auths.host=Хост
-auths.port=Порт
-auths.bind_dn=Bind DN
-auths.bind_password=Bind Password
-auths.bind_password_helper=Warning: This password is stored in plain text. Do not use a high privileged account.
-auths.user_base=User Search Base
-auths.user_dn=User DN
-auths.attribute_name=First name attribute
-auths.attribute_surname=Surname attribute
-auths.attribute_mail=E-mail attribute
-auths.filter=User Filter
-auths.admin_filter=Admin Filter
-auths.ms_ad_sa=Ms Ad SA
-auths.smtp_auth=SMTP Authentication Type
-auths.smtphost=Узел SMTP
-auths.smtpport=SMTP-порт
-auths.allowed_domains=Allowed Domains
-auths.allowed_domains_helper=Leave it empty to not restrict any domains. Multiple domains should be separated by comma ','.
-auths.enable_tls=Включение шифрования TLS
-auths.skip_tls_verify=Skip TLS Verify
-auths.pam_service_name=PAM Service Name
-auths.enable_auto_register=Включить автоматическую регистрацию
-auths.tips=Советы
-auths.edit=Edit Authentication Setting
-auths.activated=Эта аутентификация активирована
-auths.new_success=New authentication '%s' has been added successfully.
-auths.update_success=Authentication setting has been updated successfully.
-auths.update=Update Authentication Setting
-auths.delete=Delete This Authentication
-auths.delete_auth_title=Authentication Deletion
-auths.delete_auth_desc=This authentication is going to be deleted, do you want to continue?
-auths.deletion_success=Authentication has been deleted successfully!
-
-config.server_config=Конфигурация сервера
-config.app_name=Имя приложения
-config.app_ver=Версия приложения
-config.app_url=URL приложения
-config.domain=Домен
-config.offline_mode=Автономный режим
-config.disable_router_log=Отключение журнала маршрутизатора
-config.run_user=Запуск пользователем
-config.run_mode=Режим выполнения
-config.repo_root_path=Repository Root Path
-config.static_file_root_path=Static File Root Path
-config.log_file_root_path=Log File Root Path
-config.script_type=Тип сценария
-config.reverse_auth_user=Reverse Authentication User
-config.db_config=Конфигурация базы данных
-config.db_type=Тип
-config.db_host=Хост
-config.db_name=Имя
-config.db_user=Пользователь
-config.db_ssl_mode=Режим SSL
-config.db_ssl_mode_helper=(только для «postgres»)
-config.db_path=Путь
-config.db_path_helper=(for "sqlite3" and "tidb")
-config.service_config=Service Configuration
-config.register_email_confirm=Require E-mail Confirmation
-config.disable_register=Отключить регистрацию
-config.show_registration_button=Show Register Button
-config.require_sign_in_view=Для просмотра необходима авторизация
-config.enable_cache_avatar=Кешировать аватар
-config.mail_notify=Почтовые уведомления
-config.disable_key_size_check=Disable Minimum Key Size Check
-config.enable_captcha=Enable Captcha
-config.active_code_lives=Active Code Lives
-config.reset_password_code_lives=Reset Password Code Lives
-config.webhook_config=Настройка автоматического обновления репозиции
-config.queue_length=Queue Length
-config.deliver_timeout=Задержка доставки
-config.skip_tls_verify=Пропустить TLS проверка
-config.mailer_config=Настройки почты
-config.mailer_enabled=Включено
-config.mailer_disable_helo=Отключить HELO
-config.mailer_name=Имя
-config.mailer_host=Сервер
-config.mailer_user=Пользователь
-config.oauth_config=Конфигурация OAuth
-config.oauth_enabled=Включено
-config.cache_config=Настройки кеша
-config.cache_adapter=Cache Adapter
-config.cache_interval=Cache Interval
-config.cache_conn=Cache Connection
-config.session_config=Session Configuration
-config.session_provider=Session Provider
-config.provider_config=Provider Config
-config.cookie_name=Имя файла cookie
-config.enable_set_cookie=Enable Set Cookie
-config.gc_interval_time=GC Interval Time
-config.session_life_time=Время жизни сессии
-config.https_only=Только HTTPS
-config.cookie_life_time=Время жизни файла cookie
-config.picture_config=Настройка изображения
-config.picture_service=Picture Service
-config.disable_gravatar=Отключить Gravatar
-config.log_config=Конфигурация журнала
-config.log_mode=Режим журналирования
-
-monitor.cron=Задачи cron
-monitor.name=Имя
-monitor.schedule=Расписание
-monitor.next=В следующий раз
-monitor.previous=Предыдущий раз
-monitor.execute_times=Execute Times
-monitor.process=Запущенные процессы
-monitor.desc=Описание
-monitor.start=Момент начала
-monitor.execute_time=Время выполнения
-
-notices.system_notice_list=Система уведомлений
-notices.type=Тип
-notices.type_1=Репозиторий
-notices.desc=Описание
-notices.op=Op.
-notices.delete_success=Системное уведомление успешно удалено.
-
-[action]
-create_repo=создан репозиторий <a href="%s"> %s</a>
-rename_repo=renamed repository from <code>%[1]s</code> to <a href="%[2]s">%[3]s</a>
-commit_repo=pushed to <a href="%s/src/%s">%[2]s</a> at <a href="%[1]s">%[3]s</a>
-create_issue=`opened issue <a href="%s/issues/%s">%s#%[2]s</a>`
-create_pull_request=`created pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-comment_issue=`commented on issue <a href="%s/issues/%s">%s#%[2]s</a>`
-merge_pull_request=`merged pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-transfer_repo=transfered repository <code>%s</code> to <a href="%s">%s</a>
-push_tag=pushed tag <a href="%s/src/%s">%[2]s</a> to <a href="%[1]s">%[3]s</a>
-compare_2_commits=Просмотреть сравнение двух коммитов
-
-[tool]
-ago=назад
-from_now=from now
-now=сейчас
-1s=1 second %s
-1m=1 минута %s
-1h=1 час %s
-1d=1 день %s
-1w=1 неделя %s
-1mon=1 month %s
-1y=1 год %s
-seconds=%d секунд %s
-minutes=%d минут %s
-hours=%d часов %s
-days=%d дней %s
-weeks=%d weeks %s
-months=%d months %s
-years=%d years %s
-raw_seconds=секунд
-raw_minutes=минут
-
-[dropzone]
-default_message=Drop files here or click to upload.
-invalid_input_type=You can't upload files of this type.
-file_too_big=File size({{filesize}} MB) exceeds maximum size({{maxFilesize}} MB).
-remove_file=Remove file
-
+app_desc=Удобная служба для собственного Git-репозитория, написанная на языке Go + +home=Главная +dashboard=Панель мониторинга +explore=Обзор +help=Помощь +sign_in=Войти +sign_out=Выход +sign_up=Регистрация +register=Зарегистрироваться +website=Веб-сайт +version=Версия +page=Страница +template=Шаблон +language=Язык +create_new=Создать... +user_profile_and_more=Профиль и остальное +signed_in_as=Вы вошли как + +username=Имя пользователя +email=Эл. почта +password=Пароль +re_type=Повтор +captcha=Captcha + +repository=Репозиторий +organization=Организация +mirror=Зеркало +new_repo=Новый репозиторий +new_migrate=Новая Миграция +new_fork=Новый проект из репозитория +new_org=Новая Организация +manage_org=Управление Организацией +admin_panel=Панель администратора +account_settings=Настройки аккаунта +settings=Настройки +your_profile=Ваш профиль +your_settings=Ваши настройки + +news_feed=Лента новостей +pull_requests=Pull Requests +issues=Вопросы + +cancel=Отмена + +[search] +search=Поиск... +repository=Репозиторий +user=Пользователь +issue=Проблема +code=Код + +[install] +install=Установка +title=Установочные шаги для первого запуска +docker_helper=Если вы используете Gogs в Docker-контейнере, пожалуйста прочтите <a target="_blank" href="%s">эти советы</a>, перед тем как что-либо изменить! +requite_db_desc=Gogs требует MySQL, PostgreSQL, SQLite3 или TiDB. +db_title=Настройки базы данных +db_type=Тип базы данных +host=Хост +user=Пользователь +password=Пароль +db_name=Имя базы данных +db_helper=Для MySQL используйте тип таблиц InnoDB с кодировкой utf8_general_ci. +ssl_mode=Режим SSL +path=Путь +sqlite_helper=Путь до базы данных SQLite или TiDB. +err_empty_db_path=Путь к базе данных SQLite3 или TiDB не может быть пустым. +err_invalid_tidb_name=Название базы данных TiDB не может содержать символы "." и "-". +no_admin_and_disable_registration=Вы не можете отключить регистрацию, не создав аккаунт администратора. +err_empty_admin_password=Пароль администратора не может быть пустым. + +general_title=Общие параметры Gogs +app_name=Имя приложения +app_name_helper=Укажите здесь название вашей потрясающей организации! +repo_path=Путь корня репозитория +repo_path_helper=Все удаленные репозитории Git будут сохранены в этой директории. +run_user=Пользователь +run_user_helper=У пользователя должен быть доступ к пути к корню репозитория и к запуску Gogs. +domain=Домен +domain_helper=Влияет на URL-адреса для клонирования по SSH. +ssh_port=SSH порт +ssh_port_helper=Номер порта, который использует SSH сервер. Оставьте пустым, чтобы отключить SSH. +http_port=Порт HTTP +http_port_helper=Номер порта, который приложение будет слушать. +app_url=URL приложения +app_url_helper=Этот параметр влияет на URL для клонирования по HTTP/HTTPS и на адреса в электронной почте. + +optional_title=Расширенные настройки +email_title=Настройки службы электронной почты +smtp_host=Узел SMTP +smtp_from=Из +smtp_from_helper=Почта от адреса, RFC 5322. Это может быть email адрес или формат "Имя" <email@example.com>. +mailer_user=Электронная почта отправителя +mailer_password=Пароль отправителя +register_confirm=Включить подтверждение регистрации +mail_notify=Разрешить почтовые уведомления +server_service_title=Сервер и другие настройки служб +offline_mode=Включение офлайн режима +offline_mode_popup=Отключить CDN даже в производственном режиме, все файлы ресурсов будут раздаваться локально. +disable_gravatar=Отключить службу Gravatar +disable_gravatar_popup=Отключить Gravatar и пользовательские источники, все аватары по-умолчанию загружаются пользователями. +disable_registration=Отключить самостоятельную регистрацию +disable_registration_popup=Запретить пользователям самостоятельную регистрацию, только администратор может создавать аккаунты. +enable_captcha=Включить капчу +enable_captcha_popup=Запрашивать капчу при регистрации пользователя. +require_sign_in_view=Разрешить требовать авторизацию для просмотра страниц +require_sign_in_view_popup=Только авторизированные пользователи могут просматривать страницы, посетители смогут увидеть только ссылку на авторизацию вверху страницы. +admin_setting_desc=Вы не должны создать учетную запись администратора прямо сейчас, пользователь с ID = 1 получит доступ с правами администратора автоматически. +admin_title=Настройки учётной записи администратора +admin_name=Имя пользователя +admin_password=Пароль +confirm_password=Подтвердить пароль +admin_email=Электронная почта администратора +install_gogs=Установить Gogs +test_git_failed=Не удалось проверить 'git' команду: %v +sqlite3_not_available=Ваша версия не поддерживает SQLite3, пожалуйста скачайте официальную бинарную версию от %s, а не версию gobuild. +invalid_db_setting=Настройки базы данных не правильные: %v +invalid_repo_path=Недопустимый путь к корню репозитория: %v +run_user_not_match=Текущий пользователь не является пользователем для запуска: %s -> %s +save_config_failed=Не удалось сохранить конфигурацию: %v +invalid_admin_setting=Указан недопустимый параметр учетной записи администратора: %v +install_success=Добро пожаловать! Мы рады, что вы выбрали Gogs. Веселитесь и берегите себя. + +[home] +uname_holder=Имя пользователь или E-mail +password_holder=Пароль +switch_dashboard_context=Переключить контекст панели управления +my_repos=Мои репозитории +collaborative_repos=Совместные репозитории +my_orgs=Моя Организация +my_mirrors=Мои зеркала +view_home=Показать %s + +issues.in_your_repos=В вашем репозитории + +[explore] +repos=Репозитории + +[auth] +create_new_account=Создать новый аккаунт +register_hepler_msg=Уже есть аккаунт? Авторизуйтесь! +social_register_hepler_msg=Уже есть учетная запись? Свяжите ее с соцсетью! +disable_register_prompt=Извините, возможность регистрации отключена. Пожалуйста, свяжитесь с администратором сайта. +disable_register_mail=К сожалению подтверждение регистрации по почте отключено. +remember_me=Запомнить меня +forgot_password=Забыли пароль +forget_password=Забыли пароль? +sign_up_now=Нужен аккаунт? Зарегистрируйтесь. +confirmation_mail_sent_prompt=Новое письмо для подтверждения было направлено на <b>%s</b>, пожалуйста, проверьте ваш почтовый ящик в течение %d часов для завершения регистрации. +active_your_account=Активируйте свой аккаунт +resent_limit_prompt=Вы слишком часто отправляете письмо с активацией. Подождите 3 минуты, пожалуйста. +has_unconfirmed_mail=Здравствуйте, %s! У вас есть неподтвержденный адрес электронной почты (<b>%s</b>). Если вам не приходило письмо с подтверждением или нужно выслать новое письмо, нажмите на кнопку ниже. +resend_mail=Нажмите здесь, чтобы переотправить активационное письмо +email_not_associate=Этот адрес электронной почты не связан ни с одной учетной записью. +send_reset_mail=Нажмите сюда, чтобы отправить письмо для сброса пароля +reset_password=Сброс пароля +invalid_code=Извините, ваш код подтверждения истек или не является допустимым. +reset_password_helper=Нажмите здесь, чтобы сбросить свой пароль +password_too_short=Длина пароля не менее 6 символов. + +[mail] +activate_account=Пожалуйста активируйте свой аккаунт +activate_email=Подтвердите адрес своей электронной почты +reset_password=Восстановите ваш пароль +register_success=Регистрация окончена. Добро пожаловать! +register_notify=Welcome on board + +[modal] +yes=Да +no=Нет +modify=Изменить + +[form] +UserName=Пользователь +RepoName=Имя репозитория +Email=Адрес эл. почты +Password=Пароль +Retype=Введите пароль еще раз +SSHTitle=Имя SSH ключа +HttpsUrl=URL HTTPS +PayloadUrl=URL обработчика +TeamName=Название команды +AuthName=Имя авторизации +AdminEmail=Электронная почта администратора + +require_error=` не может быть пустым.` +alpha_dash_error=«должен быть допустимым символьным, числовым или dash(-_) значением.» +alpha_dash_dot_error=«должен быть допустимым символьным, числовым или dash(-_) символами, включая точку.» +size_error=` должен быть размер %s.` +min_size_error=«должен содержать по крайней мере %s символов.» +max_size_error=` должен содержать максимум %s символов.` +email_error=«не является адресом электронной почты.» +url_error=«не является допустимым URL-адресом.» +include_error=` должен содержать '%s'` +unknown_error=Неизвестная ошибка: +captcha_incorrect=CAPTCHA не совпадает. +password_not_match=Пароль и подтверждение пароля не совпадают. + +username_been_taken=Имя пользователя уже принято. +repo_name_been_taken=Имя репозитория уже принято. +org_name_been_taken=Название организации было уже принято. +team_name_been_taken=Название команды было уже принято. +email_been_used=Адрес электронной почты уже используется. +illegal_team_name=Имя группы содержит недопустимые знаки. +username_password_incorrect=Имя пользователя или пароль не правильный. +enterred_invalid_repo_name=Пожалуйста, убедитесь, что введенно правильное имя хранилища. +enterred_invalid_owner_name=Убедитесь, что введенное имя владельца верное. +enterred_invalid_password=Убедитесь, что введенный пароль верен. +user_not_exist=Данный пользователь не существует. +last_org_owner=Удаляемый пользователь является последним в команде владельцев. Должен быть хотя бы один владелец. + +invalid_ssh_key=К сожалению, мы не смогли проверить ваш SSH-ключ: %s +unable_verify_ssh_key=Gogs не может проверить ваш SSH-ключ, но мы допускаем, что он действителен. Пожалуйста, удостоверьтесь самостоятельно, что ключ действителен. +auth_failed=Ошибка аутентификации: %v + +still_own_repo=На вашем аккаунте все еще остается как минимум один репозиторий, сначала вам нужно удалить или передать его. +still_has_org=Вы находитесь в организации, сперва Вам необходимо покинуть ее или удалить. +org_still_own_repo=Данная организация все еще является владельцем репозиториев, необходимо удалить или переместить их в начале. + +still_own_user=Эта проверка подлинности по-прежнему используется некоторыми пользователями, вы должны переместить их и затем снова удалить. + +target_branch_not_exist=Целевая ветка не существует + +[user] +change_avatar=Измените ваш аватар на gravatar.com +change_custom_avatar=Измените ваш аватар в настройках +join_on=Присоединилась к +repositories=Репозитории +activity=Активность +followers=Подписчики +starred=Избранное +following=Подписан + +form.name_reserved=Имя пользователя '%s' зарезервировано. +form.name_pattern_not_allowed=Имя пользователя «%s» не допускается. + +[settings] +profile=Профиль +password=Пароль +ssh_keys=SSH ключи +social=Учетные записи в соцсетях +applications=Приложения +orgs=Организации +delete=Удалить аккаунт +uid=UID + +public_profile=Открытый профиль +profile_desc=Адрес вашей электронной почты является публичным и будет использован для любых уведомлений, связанных с аккаунтом, а также для любых действий, совершенных через сайт. +full_name=ФИО +website=Веб-сайт +location=Местоположение +update_profile=Обновить профиль +update_profile_success=Ваш профиль был успешно обновлен. +change_username=Имя пользователя изменено +change_username_prompt=Это изменение может повлечь за собой изменение ссылок относительно вашего аккаунта. +continue=Далее +cancel=Отмена + +enable_custom_avatar=Включить собственный аватар +enable_custom_avatar_helper=Включите эту опцию, чтоб отключить загрузку с Gravatar +choose_new_avatar=Выбрать новый аватар +update_avatar=Обновить настройку аватара +uploaded_avatar_not_a_image=Загружаемый файл не является изображением. +no_custom_avatar_available=Собственный аватар недоступен, включить его невозможно. +update_avatar_success=Настройка вашего аватара обновлена успешно. + +change_password=Сменить пароль +old_password=Текущий пароль +new_password=Новый пароль +retype_new_password=Подтверждение нового пароля +password_incorrect=Текущий пароль не правильный. +change_password_success=Пароль сменен успешно. Теперь вы можете войти с новым паролем. + +emails=Адреса электронной почты +manage_emails=Управление адресами электронной почты +email_desc=Ваш основной адрес электронной почты будет использован для уведомлений и других операций. +primary=Основной +primary_email=Установить как основной +delete_email=Удалить +email_deletion=Удаление адреса электронной почты +email_deletion_desc=Удаление этого адреса электронной почты, приведет к удалению связанной с вашим аккаунтом, информации. Вы точно хотите продолжить? +email_deletion_success=Адрес электронной почты успешно удален. +add_new_email=Добавить новый адрес электронной почты +add_email=Добавить электронную почту +add_email_confirmation_sent=Новое подтверждение по электронной почте было отправлено '%s', пожалуйста, проверьте свой почтовый ящик в течение следующих %d часов, чтобы завершить процесс подтверждения. +add_email_success=Новый адрес электронной почты успешно добавлен. + +manage_ssh_keys=Управление SSH ключами +add_key=Добавить ключ +ssh_desc=Это список ключей SSH связанных с вашей учетной записью. Удаляйте любые неизвестные вам ключи. +ssh_helper=<strong>Нужна помощь?</strong> Ознакомьтесь с нашим путеводителем по <a href="%s">созданию SSH-ключей</a> или посмотрите решения <a href="%s">частых проблем, связанных с SSH</a>. +add_new_key=Добавить SSH ключ +ssh_key_been_used=Будет использован публичный ключ. +ssh_key_name_used=Публичный ключ с таким же именем уже существует. +key_name=Имя ключа +key_content=Содержимое +add_key_success=Был успешно добавлен новый ключ SSH «%s»! +delete_key=Удалить +ssh_key_deletion=Удаление ключа SSH +ssh_key_deletion_desc=Удалить этот SSH ключ удалит все связанные с ним доступы для вашей учетной записи. Вы хотите продолжить? +ssh_key_deletion_success=SSH ключ был успешно удален! +add_on=Добавлено +last_used=Последний раз использовался +no_activity=Еще не применялся +key_state_desc=Этот ключ использовался за последние 7 дней +token_state_desc=Этот токен использовался за последние 7 дней + +manage_social=Управление привязанными учетными записями в соцсетях +social_desc=Это список привязанных учетных записей в соцсетях. Удаляйте любые неизвестные вам привязки. +unbind=Отвязать +unbind_success=Социальная учетная запись отвязана. + +manage_access_token=Управление Токенами Персонального Доступа +generate_new_token=Создать новый token +tokens_desc=Созданные вами токены могут использоваться для доступа к Gogs API. +new_token_desc=Пока что каждый токен будет иметь полный доступ к вашей учетной записи. +token_name=Имя маркера +generate_token=Генерировать маркер +generate_token_succees=Успешно создан новый токен доступа! Пожалуйста сделайте копию вашего нового токена персонального доступа. Вы не сможете увидеть его снова! +delete_token=Удалить +access_token_deletion=Удаление персонального токена доступа +access_token_deletion_desc=Удаление этого персонального токена доступа приведет к удалению всех связанных прав доступа к приложению. Вы хотите продолжить? +delete_token_success=Персональный токен доступа успешно удален! Не забудьте изменить настройки вашего приложения. + +delete_account=Удалить свой аккаунт +delete_prompt=Этим действием вы удалите свою учетную запись навсегда и <strong>НЕ СМОЖЕТЕ</strong> ее вернуть! +confirm_delete_account=Подтвердите удаление +delete_account_title=Удаление аккаунта +delete_account_desc=Эта учетная запись будет удалена насовсем. Вы хотите продолжить? + +[repo] +owner=Владелец +repo_name=Имя репозитория +repo_name_helper=Лучшие названия репозиториев коротки, запоминаемы и <strong>уникальны</strong>. +visibility=Видимость +visiblity_helper=<span class="ui red text">Личный</span> репозиторий +visiblity_helper_forced=Все новые репозитории являются <span class="ui red text">Личными</span> по желанию администратора сайта +visiblity_fork_helper=(Изменение этого значения затронет все форки) +clone_helper=Нужна помощь в клонировании? Посетите страницу <a target="_blank" href="%s">помощи</a>! +fork_repo=Ответвить репозиторий +fork_from=Ответвление от +fork_visiblity_helper=Ответвленному репозиторию нельзя поменять уровень видимости +repo_desc=Описание +repo_lang=Язык +repo_lang_helper=Выберите файлы .gitignore +license=Лицензия +license_helper=Выберите файл лицензии +readme=Readme +readme_helper=Выберите шаблон для файла readme +auto_init=Инициализировать этот репозиторий выбранными файлами и шаблоном +create_repo=Создать репозиторий +default_branch=Ветка по умолчанию +mirror_interval=Интервал зеркалирования (час) +watchers=Watchers +stargazers=Stargazers +forks=Forks + +form.name_reserved=Имя репозитория '%s' зарезервировано. +form.name_pattern_not_allowed=Шаблон имени репозитория '%s' не допускается. + +need_auth=Требуется авторизация +migrate_type=Тип миграции +migrate_type_helper=Этот репозиторий будет <span class="text blue">зеркалом</span> +migrate_repo=Перенос репозитория +migrate.clone_address=Скопировать адрес +migrate.clone_address_desc=Это может быть HTTP/HTTPS/GIT адрес или локальный путь на сервере. +migrate.permission_denied=У вас нет прав на импорт локальных репозиториев. +migrate.invalid_local_path=Недопустимый локальный путь. Возможно он не существует или является не папкой. +migrate.failed=Migration failed: %v + +forked_from=форк от +fork_from_self=Вы не можете форкнуть репозитарий, так как Вы уже его владелец! +copy_link=Скопировать +copy_link_success=Скопировано! +copy_link_error=Нажмите ⌘-C или Ctrl-C для копирования +copied=Успешно скопировано +unwatch=Перестать следить +watch=Следить +unstar=Убрать из избранного +star=В избранное +fork=Ответвить + +no_desc=Нет описания +quick_guide=Краткое руководство +clone_this_repo=Клонировать репозиторий +create_new_repo_command=Создать новый репозиторий из командной строки +push_exist_repo=Отправить существующий репозиторий из командной строки +repo_is_empty=Этот репозиторий пуст, пожалуйста, возвращайтесь позже! + +branch=Ветка +tree=Дерево +filter_branch_and_tag=Filter branch or tag +branches=Ветки +tags=Метки +issues=Обсуждения +pulls=Пулл реквесты +labels=Метки +milestones=Этапы +commits=Коммиты +releases=Релизы +file_raw=Исходник +file_history=История +file_view_raw=Посмотреть исходник +file_permalink=Постоянная ссылка + +commits.commits=Коммиты +commits.search=Поиск коммитов +commits.find=Найти +commits.author=Автор +commits.message=Сообщение +commits.date=Дата +commits.older=Раньше +commits.newer=Новее + +issues.new=Новая задача +issues.new.labels=Метки +issues.new.no_label=Не метка +issues.new.clear_labels=Отчистить метки +issues.new.milestone=Этап +issues.new.no_milestone=Нет этапа +issues.new.clear_milestone=Очистить этап +issues.new.open_milestone=Открыть этап +issues.new.closed_milestone=Завершенные этапы +issues.new.assignee=Ответственный +issues.new.clear_assignee=Убрать ответственного +issues.new.no_assignee=Нет ответственного +issues.create=Добавить задачу +issues.new_label=Новая метка +issues.new_label_placeholder=Имя метки... +issues.create_label=Добавить метку +issues.open_tab=%d Открыть +issues.close_tab=%d Закрыть +issues.filter_label=Метка +issues.filter_label_no_select=Нет выбранной метки +issues.filter_milestone=Этап +issues.filter_milestone_no_select=Этап не выбран +issues.filter_assignee=Назначено +issues.filter_assginee_no_select=Ответственный не выбран +issues.filter_type=Тип +issues.filter_type.all_issues=Все задачи +issues.filter_type.assigned_to_you=Назначено Вам +issues.filter_type.created_by_you=Созданные вами +issues.filter_type.mentioning_you=Вы упомянуты +issues.filter_sort=Сортировать +issues.filter_sort.latest=Новейшие +issues.filter_sort.oldest=Старейшие +issues.filter_sort.recentupdate=Недавно обновленные +issues.filter_sort.leastupdate=Давно обновленные +issues.filter_sort.mostcomment=Большего комментариев +issues.filter_sort.leastcomment=Меньше комментариев +issues.opened_by=%[1] открыта <a href="%[2]s">%[3]s</a> +issues.opened_by_fake=%[1]s открыта %[2]s +issues.previous=Предыдущая страница +issues.next=Следующая страница +issues.open_title=Открыта +issues.closed_title=Закрыта +issues.num_comments=комментариев: %d +issues.commented_at=` прокомментировал <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.no_content=Пока нет содержимого. +issues.close_issue=Закрыть +issues.close_comment_issue=Прокомментировать и закрыть +issues.reopen_issue=Открыть снова +issues.reopen_comment_issue=Прокомментировать и открыть +issues.create_comment=Комментировать +issues.closed_at=`закрыл <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.reopened_at=`открыл снова <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.commit_ref_at=`упомянул эту задачу в коммите <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.poster=Автор +issues.admin=Администратор +issues.owner=Владелец +issues.sign_up_for_free=Зарегистрируйтесь бесплатно +issues.sign_in_require_desc=чтобы присоединиться к обсуждению. Уже есть аккаунт? <a href="%s">Войдите чтобы прокомментировать</a> +issues.edit=Изменить +issues.cancel=Отмена +issues.save=Сохранить +issues.label_title=Имя метки +issues.label_color=Цвет метки +issues.label_count=%d меток +issues.label_open_issues=%d открытых задач +issues.label_edit=Редактировать +issues.label_delete=Удалить +issues.label_modify=Изменение метки +issues.label_deletion=Удаление метки +issues.label_deletion_desc=Удаление ярлыка затронет все связанные задачи. Продолжить? +issues.label_deletion_success=Метка была удалена успешно! + +pulls.new=New Pull Request +pulls.compare_changes=Сравнить изменения +pulls.compare_changes_desc=Сравнить две ветки и создать пулл реквест для изменений. +pulls.compare_base=родительская ветка +pulls.compare_compare=сравнить +pulls.filter_branch=Фильтр по ветке +pulls.no_results=Результатов не найдено. +pulls.nothing_to_compare=Нечего сравнивать, родительская и текущая ветка одинаковые. +pulls.has_pull_request=`Уже существует пулл-реквест между двумя целями <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>` +pulls.create=Создать пулл-реквест +pulls.title_desc=хочет смерджить %[1]d коммит(ов) из <code>%[2]s</code> в <code>%[3]s</code> +pulls.merged_title_desc=слито %[1]d коммит(ов) из <code>%[2]s</code> в <code>%[3]s</code> %[4]s +pulls.tab_conversation=Обсуждение +pulls.tab_commits=Коммиты +pulls.tab_files=Измененные файлы +pulls.reopen_to_merge=Пожалуйста пересоздайте пулл-реквест для слияния. +pulls.merged=Слито +pulls.has_merged=Слияние этого пулл-реквеста успешно завершено! +pulls.data_broken=Содержимое этого пулл-реквеста было нарушено, вследствии удаления или клонирования информации. +pulls.is_checking=Продолжается проверка конфликтов, пожалуйста обновите страницу несколько позже. +pulls.can_auto_merge_desc=Вы можете провести операцию автоматического слияния для этого пулл-реквеста. +pulls.cannot_auto_merge_desc=Вы не можете произвести операцию автоматического слияния, потому как существуют конфликты между коммитами. +pulls.cannot_auto_merge_helper=Используйте командную строку для решения этого. +pulls.merge_pull_request=Слить пулл-реквест +pulls.open_unmerged_pull_exists=`Вы не можете произвести операцию переоткрытия, потому что уже существует пулл-реквест (#%d) из этого же репозитория, с такими же параметрами слияния, который ожидает слияния.` + +milestones.new=Новая контрольная точка +milestones.open_tab=%d открыты +milestones.close_tab=%d Закрыт +milestones.closed=Закрыт %s +milestones.no_due_date=Срок не указан +milestones.open=Открыть +milestones.close=Закрыть +milestones.new_subheader=Создавайте контрольные точки для трекинга ваших вопросов. +milestones.create=Создать контрольную точку +milestones.title=Заголовок +milestones.desc=Описание +milestones.due_date=Дата окончания (опционально) +milestones.clear=Очистить +milestones.invalid_due_date_format=Некорректная дата окончания. Правильный формат - 'гггг-мм-дд'. +milestones.create_success=Контрольная точка '%s' успешно создана! +milestones.edit=Изменить контрольную точку +milestones.edit_subheader=Используйте лучшее описание контрольной точки, во избежание непонимания со стороны других людей. +milestones.cancel=Отмена +milestones.modify=Изменить контрольную точку +milestones.edit_success=Изменения контрольной точки '%s' успешно сохранены! +milestones.deletion=Удаление контрольной точки +milestones.deletion_desc=Удаление этой контрольной точки приведет с удалению всей информации, во всех вопросах (Issues). Вы действительно хотите продолжить? +milestones.deletion_success=Контрольная точка успешно удалена! + +settings=Настройки +settings.options=Опции +settings.collaboration=Сотрудничество +settings.hooks=Автоматическое обновление +settings.githooks=Git хуки +settings.basic_settings=Основные параметры +settings.danger_zone=Опасная зона +settings.site=Официальный сайт +settings.update_settings=Обновить настройки +settings.change_reponame_prompt=Это изменение повлияет на отношения ссылок к этому репозиторию. +settings.transfer=Передать права собственности +settings.transfer_desc=Передать репозиторий другому пользователю или организации где у вас есть права администратора. +settings.new_owner_has_same_repo=У нового владельца уже есть хранилище с таким названием. +settings.delete=Удалить этот репозиторий +settings.delete_desc=Как только вы удалите репозиторий — пути назад не будет. Удостоверьтесь, что вам это точно нужно. +settings.transfer_notices_1=- Вы можете потерять доступ, если новый владелец является отдельным пользователем. +settings.transfer_notices_2=- Вы сохраните доступ, если новым владельцем станет организация, владельцем которой вы являетесь. +settings.transfer_form_title=Введите сопутствующую информацию для подтверждения операции: +settings.delete_notices_1=- Эта операция <strong>НЕ МОЖЕТ</strong> быть отменена. +settings.delete_notices_2=- Эта операция перманентно удалит всё из этого репозитория, включая данные Git, связанные с ним вопросы, комментарии и права доступа для сотрудников. +settings.delete_notices_fork_1=- Если данный репозиторий является публичным, все склонированные репозитории останутся независимыми, после его удаления. +settings.delete_notices_fork_2=- Если данный репозиторий является приватным, все его форки будут удалены вместе с ним. +settings.delete_notices_fork_3=- Если вы хотите сохранить все форки после удаления репозитория, то сначала сделайте его публичным. +settings.update_settings_success=Настройка репозитория обновлена успешно. +settings.transfer_owner=Новый владелец +settings.make_transfer=Выполнить передачу +settings.transfer_succeed=Владение репозиторием было успешно передано. +settings.confirm_delete=Подтвердить удаление +settings.add_collaborator=Добавить нового соавтора +settings.add_collaborator_success=Был добавлен новый соавтор. +settings.remove_collaborator_success=Соавтор был удален. +settings.search_user_placeholder=Search user... +settings.user_is_org_member=Пользователь является членом организации, члены которой не могут быть добавлены в качестве соавтора. +settings.add_webhook=Добавить Webhook +settings.hooks_desc=Webhooks позволяют внешним службам получать уведомления при возникновении определенных событий на Gogs. При возникновении указанных событий мы отправим запрос POST на каждый заданный вами URL. Узнать больше можно в нашем <a target="_blank" href="%s">Руководстве по Webhooks</a>. +settings.webhook_deletion=Удалить веб-хук +settings.webhook_deletion_desc=Удаление этого веб-хука приведет к удалению всей, связанной с ним, информации, включая историю. Хотите продолжить? +settings.webhook_deletion_success=Веб-хук успешно удален! +settings.webhook.request=Запрос +settings.webhook.response=Ответ +settings.webhook.headers=Заголовки +settings.webhook.payload=Содержимое запроса +settings.webhook.body=Тело ответа +settings.githooks_desc=Git-хуки предоставляются Git самим по себе, вы можете изменять файлы поддерживаемых хуков из списка ниже чтобы выполнять внешние операции. +settings.githook_edit_desc=Если хук не активен, будет подставлен пример содержимого. Пустое значение в этом поле приведет к отключению хука. +settings.githook_name=Название Hook'a +settings.githook_content=Перехватить содержание +settings.update_githook=Обновить Hook +settings.add_webhook_desc=Мы отправим запрос <code>POST</code> на указанный ниже URL с информацией о событиях. Можно также указать формат, в котором вы бы хотели получить данные (JSON, <code>x-www-form-urlencoded</code>, <em>и т.д.</em>). Дополнительную информацию можно найти в <a target="_blank" href="%s">Руководстве по Webhook</a>. +settings.payload_url=URL обработчика +settings.content_type=Тип содержимого +settings.secret=Secret +settings.slack_username=Имя пользователя +settings.slack_icon_url=URL иконки +settings.slack_color=Цвет +settings.event_desc=На какие события этот webhook должен срабатывать? +settings.event_push_only=Просто <code>push</code> событие. +settings.event_send_everything=Мне нужно <strong>все</strong>. +settings.event_choose=Позвольте мне выбрать то, что нужно. +settings.event_create=Создать +settings.event_create_desc=Ветка или тэг созданы +settings.event_push=Push +settings.event_push_desc=Push в репозиторий +settings.active=Активен +settings.active_helper=Подробности о событии, вызвавшем срабатывание хука, также будут предоставлены. +settings.add_hook_success=Был добавлен новый webhook. +settings.update_webhook=Обновление Webhook +settings.update_hook_success=Webhook обновлен. +settings.delete_webhook=Удалить автоматическое обновление +settings.recent_deliveries=Недавние рассылки +settings.hook_type=Тип перехватчика +settings.add_slack_hook_desc=Добавить интеграцию с <a href="%s">Slack</a> в ваш репозиторий. +settings.slack_token=Token +settings.slack_domain=Домен +settings.slack_channel=Канал +settings.deploy_keys=Ключи развертывания +settings.add_deploy_key=Добавить ключ развертывания +settings.no_deploy_keys=Вы не добавляли ключи развертывания. +settings.title=Заголовок +settings.deploy_key_content=Содержимое +settings.key_been_used=Содержимое ключа развертывания уже используется. +settings.key_name_used=Ключ развертывания с таким заголовком уже существует. +settings.add_key_success=Новый ключ развертывания '%s' успешно добавлен! +settings.deploy_key_deletion=Удалить ключ развертывания +settings.deploy_key_deletion_desc=Удаление ключа развертывания приведет к удалению всех связанных прав доступа к репозиторию. Вы хотите продолжить? +settings.deploy_key_deletion_success=Ключ развертывания успешно удален! + +diff.browse_source=Просмотр исходного кода +diff.parent=Родитель +diff.commit=Сommit +diff.data_not_available=Данные Diff не доступны. +diff.show_diff_stats=Показать статистику Diff +diff.stats_desc=<strong> %d измененных файлов</strong> с <strong>%d добавлено</strong> и <strong>%d удалено</strong> +diff.bin=BIN +diff.view_file=Просмотреть файл + +release.releases=Релизы +release.new_release=Новый релиз +release.draft=Черновик +release.prerelease=Предрелиз +release.stable=Стабильный +release.edit=Редактировать +release.ahead=<strong>%d</strong> коммитов %s начиная с этого релиза +release.source_code=Исходный код +release.new_subheader=Publish releases to iterate product. +release.edit_subheader=Detailed change log can help users understand what has been improved. +release.tag_name=Имя тега +release.target=Цель +release.tag_helper=Выберите существующий тег, или создайте новый. +release.title=Title +release.content=Content +release.write=Запись +release.preview=Предварительный просмотр +release.loading=Загрузка... +release.prerelease_desc=Это предварительный релиз +release.prerelease_helper=Отдельно отметим, что этот релиз не готов к использованию в продакшене. +release.cancel=Cancel +release.publish=Опубликовать релиз +release.save_draft=Сохранить черновик +release.edit_release=Редактировать релиз +release.delete_release=Delete This Release +release.deletion=Release Deletion +release.deletion_desc=Delete this release will delete corresponding Git tag. Do you want to continue? +release.deletion_success=Release has been deleted successfully! +release.tag_name_already_exist=Релиз с этим именем тега уже существует. +release.downloads=Downloads + +[org] +org_name_holder=Название организации +org_full_name_holder=Полное название организации +org_name_helper=Лучшие названия организаций коротки и запоминаемы. +create_org=Создать Организацию +repo_updated=Обновлено +people=Люди +invite_someone=Пригласить кого-нибудь +teams=Команды +lower_members=Участники +lower_repositories=Репозитории +create_new_team=Создать Новую Команду +org_desc=Описание +team_name=Название команды +team_desc=Описание +team_name_helper=Вы будете использовать это имя для упоминания этой команды в обсуждении. +team_desc_helper=Что это за команда? +team_permission_desc=Какой уровень разрешений должен быть у этой команды? + +form.name_reserved=Наименование организации '%s' зарезервированно. +form.name_pattern_not_allowed=Шаблон организации '%s' не допускается. + +settings=Настройки +settings.options=Опции +settings.full_name=Полное имя +settings.website=Сайт +settings.location=Местоположение +settings.update_settings=Обновить настройки +settings.update_setting_success=Настройки Организации были успешно обновлены. +settings.change_orgname_prompt=Это изменение затронет все связанные с организацией, ссылки. +settings.update_avatar_success=Аватар организации успешно обновлен. +settings.delete=Удалить Организацию +settings.delete_account=Удалить Эту Организацию +settings.delete_prompt=Это действие безвозвратно удалит эту организацию навсегда. +settings.confirm_delete_account=Подтвердить удаление +settings.delete_org_title=Удаление Организации +settings.delete_org_desc=Эта организация будет удалена навсегда. Хотите всё-равно продолжить? +settings.hooks_desc=Добавьте автоматическое обновление, который будет вызываться для <strong>всех репозиций</strong> под этой Группой. + +members.public=Публичный +members.public_helper=Сделать Приватным +members.private=Приватный +members.private_helper=Сделать Публичным +members.owner=Владелец +members.member=Участник +members.conceal=Скрыть +members.remove=Удалить +members.leave=Покинуть +members.invite_desc=Начните вводить имя пользователя чтобы пригласить нового члена %s: +members.invite_now=Пригласите сейчас + +teams.join=Объединить +teams.leave=Выйти +teams.read_access=Доступ на чтение +teams.read_access_helper=Эта команда будет иметь возможность просматривать и клонировать ее репозитории. +teams.write_access=Доступ на запись +teams.write_access_helper=Эта команда будет в состоянии прочитать ее репозитории, а также посылать изменения. +teams.admin_access=Доступ администратора +teams.admin_access_helper=Эта команда будет иметь возможность выполнять push/pull в его репозиториях, а также добавлять других сотрудников к нему. +teams.no_desc=Эта группа не имеет описания +teams.settings=Настройки +teams.owners_permission_desc=Владельцы имеют полный доступ ко <strong>всем репозиториям</strong> и имеют <strong>права администратора</strong> организации. +teams.members=Члены группы разработки +teams.update_settings=Обновить настройки +teams.delete_team=Удалить эту группу разработки +teams.add_team_member=Добавление члена группы разработки +teams.delete_team_title=Удалить группу разработки +teams.delete_team_desc=Эта команда будет удалена. Вы хотите продолжить? Члены этой группы могут потерять доступ к некоторым репозиториям. +teams.delete_team_success=Данная команда была удалена успешно. +teams.read_permission_desc=Эта команда предоставляет доступ на <strong>Чтение</strong>: члены могут просматривать и клонировать репозитории команды. +teams.write_permission_desc=Эта команда предоставляет доступ на <strong>Запись</strong>: члены могут получать и выполнять push команды в репозитории. +teams.admin_permission_desc=Эта команда дает <strong>административный</strong> доступ: участники могут читать, пушить и добавлять соавторов к ее репозиториям. +teams.repositories=Репозитории группы разработки +teams.add_team_repository=Добавить репозиторий группы разработки +teams.remove_repo=Удалить +teams.add_nonexistent_repo=Вы добавляете в отсутствующий репозиторий, пожалуйста сначала его создайте. + +[admin] +dashboard=Панель управления +users=Пользователи +organizations=Организации +repositories=Репозитории +authentication=Авторизация +config=Настройки +notices=Системные уведомления +monitor=Мониторинг +first_page=Первый +last_page=Последний +total=Всего: %d + +dashboard.statistic=Статистика +dashboard.operations=Операции +dashboard.system_status=Статус системного монитора +dashboard.statistic_info=В базе данных Gogs записано <b>%d</b> пользователей, <b>%d</b> организаций, <b>%d</b> публичных ключей, <b>%d</b> репозиторий, <b>%d</b> подписок на репозитории, <b>%d</b> добавлений в избранное, <b>%d</b> действий, <b>%d</b> доступов, <b>%d</b> обсуждений, <b>%d</b> комментариев, <b>%d</b> социальных учетных записей, <b>%d</b> подписок на пользователей, <b>%d</b> зеркал, <b>%d</b> релизов, <b>%d</b> источников входа, <b>%d</b> веб-хуков, <b>%d</b> вех, <b>%d</b> меток, <b>%d</b> задач хуков, <b>%d</b> команд, <b>%d</b> задач по обновлению, <b>%d</b> присоединенных файлов. +dashboard.operation_name=Наименование Операции +dashboard.operation_switch=Переключить +dashboard.operation_run=Запуск +dashboard.clean_unbind_oauth=Удалить не привязанные OAUth +dashboard.clean_unbind_oauth_success=Не привязанные OAuth аккаунты успешно удалены. +dashboard.delete_inactivate_accounts=Удалить все неактивированные учетные записи +dashboard.delete_inactivate_accounts_success=Все неактивированные учетные записи удалены успешно. +dashboard.delete_repo_archives=Удаление всех архивов репозиториев +dashboard.delete_repo_archives_success=Все архивы репозиториев были успешно удалены. +dashboard.delete_missing_repos=Delete all repository records that lost Git files +dashboard.delete_missing_repos_success=All repository records that lost Git files have been deleted successfully. +dashboard.git_gc_repos=Выполнить сборку мусора на репозиториях +dashboard.git_gc_repos_success=Сборка мусора на всех репозиториях успешно выполнена. +dashboard.resync_all_sshkeys=Переписать файл «.ssh/authorized_keys» (осторожно: не Gogs ключи будут утеряны) +dashboard.resync_all_sshkeys_success=Были успешно переписаны все открытые ключи. +dashboard.resync_all_update_hooks=Перезаписать все апдейт-хуки этого репозитория (необходимо, когда изменен путь до папки конфигураций) +dashboard.resync_all_update_hooks_success=Апдейт-хуки всех репозиториев успешно перезаписаны. + +dashboard.server_uptime=Время непрерывной работы сервера +dashboard.current_goroutine=Текущий Goroutines +dashboard.current_memory_usage=Текущее использование памяти +dashboard.total_memory_allocated=Всего памяти выделено +dashboard.memory_obtained=Памяти использовано +dashboard.pointer_lookup_times=Запросов указателя +dashboard.memory_allocate_times=Выделений памяти +dashboard.memory_free_times=Освобождений памяти +dashboard.current_heap_usage=Текущее использование кучи +dashboard.heap_memory_obtained=Получено динамической памяти +dashboard.heap_memory_idle=Не используется динамической памяти +dashboard.heap_memory_in_use=Кучи памяти в работе +dashboard.heap_memory_released=Освобождено динамической памяти +dashboard.heap_objects=Объектов динамической памяти +dashboard.bootstrap_stack_usage=Использование стека загрузчика +dashboard.stack_memory_obtained=Память, занятая под стек +dashboard.mspan_structures_usage=Использование структур MSpan +dashboard.mspan_structures_obtained=Получено структур MSpan +dashboard.mcache_structures_usage=Использование структур MCache +dashboard.mcache_structures_obtained=Получено структур MCache +dashboard.profiling_bucket_hash_table_obtained=Хеш-таблиц получено при профилировании +dashboard.gc_metadata_obtained=Получены метаданные сборщика мусора +dashboard.other_system_allocation_obtained=Получено других системных выделений памяти +dashboard.next_gc_recycle=Следующая очистка сборщика мусора +dashboard.last_gc_time=Прошло с последнего сбора мусора +dashboard.total_gc_time=Итоговое время GC +dashboard.total_gc_pause=Итоговая задержка GC +dashboard.last_gc_pause=Последняя пауза сборщика мусора +dashboard.gc_times=Количество сборок мусора + +users.user_manage_panel=Панель управления пользователями +users.new_account=Создать новый аккаунт +users.name=Имя +users.activated=Активирован +users.admin=Администратор +users.repos=Репозитории +users.created=Создано +users.send_register_notify=Отправить пользователю уведомление о регистрации +users.new_success=Новая учетная запись '%s' успешно создана. +users.edit=Редактировать +users.auth_source=Источник аутентификации +users.local=Локальный +users.auth_login_name=Логин для авторизации +users.password_helper=Оставьте пустым, чтобы оставить без изменений. +users.update_profile_success=Профиль учетной записи обновлен успешно. +users.edit_account=Изменение учетной записи +users.is_activated=Эта учетная запись активирована +users.is_admin=У этой учетной записи есть права администратора +users.allow_git_hook=Пользователь имеет право создать Git перехватчик +users.allow_import_local=Пользователь имеет право импортировать локальные репозитории +users.update_profile=Обновить профиль учетной записи +users.delete_account=Удалить эту учетную запись +users.still_own_repo=На вашем аккаунте все еще остается как минимум один репозиторий, сначала вам нужно удалить или передать его. +users.still_has_org=Эта учетная запись все еще является членом как минимум одной организации. Для продолжения, покиньте или удалите эту организацию. +users.deletion_success=Учетная запись успешно удалена! + +orgs.org_manage_panel=Управление группами +orgs.name=Имя +orgs.teams=Команды +orgs.members=Участники + +repos.repo_manage_panel=Панель управления репозиторием +repos.owner=Владелец +repos.name=Имя +repos.private=Приватный +repos.watches=Следят +repos.stars=В избранном +repos.issues=Вопросы + +auths.auth_manage_panel=Панель управления аутнентификациями +auths.new=Добавить новый источник +auths.name=Имя +auths.type=Тип +auths.enabled=Включено +auths.updated=Обновлено +auths.auth_type=Тип аутентификации +auths.auth_name=Имя аутентификации +auths.domain=Домен +auths.host=Хост +auths.port=Порт +auths.bind_dn=Привязать DN +auths.bind_password=Привязать пароль +auths.bind_password_helper=Внимание: Этот пароль сохранен в небезопасном виде. Не используйте высоко-привилегированную учетную запись. +auths.user_base=База для поиска пользователя +auths.user_dn=DN пользователя +auths.attribute_name=Имя аттрибута +auths.attribute_surname=Фамилия аттрибута +auths.attribute_mail=Электронная почта аттрибута +auths.filter=Фильтр пользователя +auths.admin_filter=Фильтр администратора +auths.ms_ad_sa=Ms Ad SA +auths.smtp_auth=Тип аутентификации SMTP +auths.smtphost=Узел SMTP +auths.smtpport=SMTP-порт +auths.allowed_domains=Разрешенные домены +auths.allowed_domains_helper=Оставьте пустым чтобы не ограничивать домены. Несколько доменов должны быть разделены запятыми ','. +auths.enable_tls=Включение шифрования TLS +auths.skip_tls_verify=Пропустить проверку TLS +auths.pam_service_name=Имя службы PAM +auths.enable_auto_register=Включить автоматическую регистрацию +auths.tips=Советы +auths.edit=Изменить параметры канала аутентификации +auths.activated=Эта аутентификация активирована +auths.new_success=Новый канал аутентификации '%s' успешно создан. +auths.update_success=Настройки канала аутентификации успешно сохранены. +auths.update=Обновить параметры аутентификации +auths.delete=Удалить этот канал аутентификации +auths.delete_auth_title=Удаление канала аутентификации +auths.delete_auth_desc=Этот канал аутентификации будет удален. Вы уверены что хотите продолжить? +auths.deletion_success=Канал аутентификации успешно удален! + +config.server_config=Конфигурация сервера +config.app_name=Имя приложения +config.app_ver=Версия приложения +config.app_url=URL приложения +config.domain=Домен +config.offline_mode=Автономный режим +config.disable_router_log=Отключение журнала маршрутизатора +config.run_user=Запуск пользователем +config.run_mode=Режим выполнения +config.repo_root_path=Путь до корня репозитория +config.static_file_root_path=Статичный путь до файла +config.log_file_root_path=Путь до папки с логами +config.script_type=Тип сценария +config.reverse_auth_user=Заголовок с именем пользователя для авторизации на reverse proxy +config.db_config=Конфигурация базы данных +config.db_type=Тип +config.db_host=Хост +config.db_name=Имя +config.db_user=Пользователь +config.db_ssl_mode=Режим SSL +config.db_ssl_mode_helper=(только для «postgres») +config.db_path=Путь +config.db_path_helper=(для "SQLite3" и "TiDB") +config.service_config=Сервисная конфигурация +config.register_email_confirm=Требуется подтверждение по электронной почте +config.disable_register=Отключить регистрацию +config.show_registration_button=Показать кнопку регистрации +config.require_sign_in_view=Для просмотра необходима авторизация +config.enable_cache_avatar=Кешировать аватар +config.mail_notify=Почтовые уведомления +config.disable_key_size_check=Отключить проверку на минимальный размер ключа +config.enable_captcha=Включить капчу +config.active_code_lives=Время жизни кода для активации +config.reset_password_code_lives=Время жизни кода сброса пароля +config.webhook_config=Настройка автоматического обновления репозиции +config.queue_length=Длина очереди +config.deliver_timeout=Задержка доставки +config.skip_tls_verify=Пропустить TLS проверка +config.mailer_config=Настройки почты +config.mailer_enabled=Включено +config.mailer_disable_helo=Отключить HELO +config.mailer_name=Имя +config.mailer_host=Сервер +config.mailer_user=Пользователь +config.oauth_config=Конфигурация OAuth +config.oauth_enabled=Включено +config.cache_config=Настройки кеша +config.cache_adapter=Адаптер кэша +config.cache_interval=Интервал кэширования +config.cache_conn=Подключение кэша +config.session_config=Конфигурация сессии +config.session_provider=Провайдер сессии +config.provider_config=Конфигурация провайдера +config.cookie_name=Имя файла cookie +config.enable_set_cookie=Включить установку cookies +config.gc_interval_time=Интервал работы сборщика мусора +config.session_life_time=Время жизни сессии +config.https_only=Только HTTPS +config.cookie_life_time=Время жизни файла cookie +config.picture_config=Настройка изображения +config.picture_service=Сервис изображений +config.disable_gravatar=Отключить Gravatar +config.log_config=Конфигурация журнала +config.log_mode=Режим журналирования + +monitor.cron=Задачи cron +monitor.name=Имя +monitor.schedule=Расписание +monitor.next=В следующий раз +monitor.previous=Предыдущий раз +monitor.execute_times=Количество выполнений +monitor.process=Запущенные процессы +monitor.desc=Описание +monitor.start=Момент начала +monitor.execute_time=Время выполнения + +notices.system_notice_list=Система уведомлений +notices.type=Тип +notices.type_1=Репозиторий +notices.desc=Описание +notices.op=Op. +notices.delete_success=Системное уведомление успешно удалено. + +[action] +create_repo=создан репозиторий <a href="%s"> %s</a> +rename_repo=репозиторий переименован из <code>%[1]s</code>на <a href="%[2]s">%[3]s</a> +commit_repo=запушил <a href="%[1]s/src/%[2]s">%[3]s</a> в <a href="%[1]s">%[4]s</a> +create_issue=`открытый вопрос <a href="%s/issues/%s">%s#%[2]</a>` +create_pull_request=`созданный пулл-реквест <a href="%s/pulls/%s">%s#%[2]s</a>` +comment_issue=`прокомментировал(а) вопрос <a href="%s/issues/%s">%s#%[2]s</a>` +merge_pull_request=`слил пул реквест <a href="%s/pulls/%s">%s#%[2]s</a>` +transfer_repo=перенес репозиторий <code>%s</code> в <a href="%s">%s</a> +push_tag=запушил тэг <a href="%s/src/%s">%[2]s</a> в <a href="%[1]s">%[3]s</a> +compare_2_commits=Просмотреть сравнение двух коммитов + +[tool] +ago=назад +from_now=с этого момента +now=сейчас +1s=1 секунду %s +1m=1 минута %s +1h=1 час %s +1d=1 день %s +1w=1 неделя %s +1mon=1 месяц %s +1y=1 год %s +seconds=%d секунд %s +minutes=%d минут %s +hours=%d часов %s +days=%d дней %s +weeks=недель %s: %d +months=месяцев %s: %d +years=лет %s: %d +raw_seconds=секунд +raw_minutes=минут + +[dropzone] +default_message=Перетащите файл сюда, или кликните для загрузки. +invalid_input_type=Вы не можете загружать файлы этого типа. +file_too_big=Размер файла ({{filesize}} МБ) больше чем максимальный размер ({{maxFilesize}} МБ). +remove_file=Удалить файл + diff --git a/conf/locale/locale_zh-CN.ini b/conf/locale/locale_zh-CN.ini index 8abd9fca..1caa9699 100755 --- a/conf/locale/locale_zh-CN.ini +++ b/conf/locale/locale_zh-CN.ini @@ -1,992 +1,1009 @@ -app_desc=基于 Go 语言的自助 Git 服务
-
-home=首页
-dashboard=控制面板
-explore=探索
-help=帮助
-sign_in=登录
-sign_out=退出
-sign_up=注册
-register=注册
-website=官方网站
-version=当前版本
-page=页面
-template=模板
-language=语言选项
-create_new=创建...
-user_profile_and_more=用户信息及更多
-signed_in_as=已登录用户
-
-username=用户名
-email=邮箱
-password=密码
-re_type=确认密码
-captcha=验证码
-
-repository=仓库
-organization=组织
-mirror=镜像
-new_repo=创建新的仓库
-new_migrate=迁移外部仓库
-new_fork=创建新的派生仓库
-new_org=创建新的组织
-manage_org=管理我的组织
-admin_panel=管理面板
-account_settings=帐户设置
-settings=帐户设置
-your_profile=个人信息
-your_settings=用户设置
-
-news_feed=最新活动
-pull_requests=合并请求
-issues=工单管理
-
-cancel=取消
-
-[search]
-search=搜索...
-repository=仓库
-user=用户
-issue=工单
-code=代码
-
-[install]
-install=安装页面
-title=首次运行安装程序
-docker_helper=如果您正在使用 Docker 容器运行 Gogs,请务必先仔细阅读 <a target="_blank" href="%s">官方文档</a> 后再对本页面进行填写。
-requite_db_desc=Gogs 要求安装 MySQL、PostgreSQL、SQLite3 或 TiDB。
-db_title=数据库设置
-db_type=数据库类型
-host=数据库主机
-user=数据库用户
-password=数据库用户密码
-db_name=数据库名称
-db_helper=如果您使用 MySQL,请使用 INNODB 引擎以及 utf8_general_ci 字符集。
-ssl_mode=SSL 模式
-path=数据库文件路径
-sqlite_helper=SQLite3 或 TiDB 的数据库路径。
-err_empty_db_path=SQLite3 或 TiDB 的数据库路径不能为空。
-err_invalid_tidb_name=TiDB 数据库名称不允许包含字符 "." 或 "-" 。
-no_admin_and_disable_registration=您不能够在未创建管理员用户的情况下禁止注册。
-err_empty_admin_password=管理员密码不能为空。
-
-general_title=应用基本设置
-app_name=应用名称
-app_name_helper=快用狂拽酷炫的组织名称闪瞎我们!
-repo_path=仓库根目录
-repo_path_helper=所有 Git 远程仓库都将被存放于该目录。
-run_user=运行系统用户
-run_user_helper=该用户必须具有对仓库根目录和运行 Gogs 的操作权限。
-domain=域名
-domain_helper=该设置影响 SSH 克隆地址。
-ssh_port=SSH 端口号
-ssh_port_helper=SSH 服务器的监听端口号,留空表示禁用 SSH 功能。
-http_port=HTTP 端口号
-http_port_helper=应用监听的端口号
-app_url=应用 URL
-app_url_helper=该设置影响 HTTP/HTTPS 克隆地址和一些邮箱中的链接。
-
-optional_title=可选设置
-email_title=邮件服务设置
-smtp_host=SMTP 主机
-smtp_from=邮件来自
-smtp_from_helper=邮件来自地址,遵循 RFC 5322 标准。可以是一个单纯的邮箱地址或使用 "Name" <email@example.com> 的格式。
-mailer_user=发送邮箱
-mailer_password=发送邮箱密码
-register_confirm=启用注册邮箱确认
-mail_notify=启用邮件通知提醒
-server_service_title=服务器和其它服务设置
-offline_mode=启用离线模式
-offline_mode_popup=在部署模式下也禁用从 CDN 获取文件,所以的资源都将从本地服务器获取。
-disable_gravatar=禁用 Gravatar 服务
-disable_gravatar_popup=禁用 Gravatar 和自定义源,仅使用由用户上传的或默认的头像。
-disable_registration=禁止用户自主注册
-disable_registration_popup=禁止用户自行注册功能,只有管理员可以添加帐号。
-enable_captcha=启用验证码服务
-enable_captcha_popup=要求在用户注册时输入预验证码
-require_sign_in_view=启用登录访问限制
-require_sign_in_view_popup=只有已登录的用户才能够访问页面,否则将只能看到登录或注册页面。
-admin_setting_desc=创建管理员帐号并不是必须的,因为 ID=1 的用户将自动获得管理员权限。
-admin_title=管理员帐号设置
-admin_name=管理员用户名
-admin_password=管理员密码
-confirm_password=确认密码
-admin_email=管理员邮箱
-install_gogs=立即安装
-test_git_failed=无法识别 'git' 命令:%v
-sqlite3_not_available=您所使用的发行版不支持 SQLite3,请从 %s 下载官方构建版,而不是 gobuild 版本。
-invalid_db_setting=数据库设置不正确:%v
-invalid_repo_path=仓库根目录设置不正确:%v
-run_user_not_match=运行系统用户非当前用户:%s -> %s
-save_config_failed=应用配置保存失败:%v
-invalid_admin_setting=管理员帐户设置不正确:%v
-install_success=您好!我们很高兴您选择使用 Gogs,祝您使用愉快,代码从此无 BUG!
-
-[home]
-uname_holder=用户名或邮箱
-password_holder=密码
-switch_dashboard_context=切换控制面板用户
-my_repos=我的仓库
-collaborative_repos=参与协作的仓库
-my_orgs=我的组织
-my_mirrors=我的镜像
-view_home=访问 %s
-
-issues.in_your_repos=属于该用户仓库的
-
-[explore]
-repos=探索仓库
-
-[auth]
-create_new_account=创建帐户
-register_hepler_msg=已经注册?立即登录!
-social_register_hepler_msg=已经注册?立即绑定!
-disable_register_prompt=对不起,注册功能已被关闭。请联系网站管理员。
-disable_register_mail=对不起,注册邮箱确认功能已被关闭。
-remember_me=记住登录
-forgot_password=忘记密码
-forget_password=忘记密码?
-sign_up_now=还没帐户?马上注册。
-confirmation_mail_sent_prompt=一封新的确认邮件已经被发送至 <b>%s</b>,请检查您的收件箱并在 %d 小时内完成确认注册操作。
-sign_in_to_account=登录到您的帐户
-active_your_account=激活您的帐户
-resent_limit_prompt=对不起,您请求发送激活邮件过于频繁,请等待 3 分钟后再试!
-has_unconfirmed_mail=%s 您好,系统检测到您有一封发送至 <b>%s</b> 但未被确认的邮件。如果您未收到激活邮件,或需要重新发送,请单击下方的按钮。
-resend_mail=单击此处重新发送确认邮件
-email_not_associate=您输入的邮箱地址未被关联到任何帐号!
-send_reset_mail=单击此处(重新)发送您的密码重置邮件
-reset_password=重置密码
-invalid_code=对不起,您的确认代码已过期或已失效。
-reset_password_helper=单击此处重置密码
-password_too_short=密码长度不能少于 6 位!
-
-[mail]
-activate_account=请激活您的帐户
-activate_email=请验证您的邮箱地址
-reset_password=重置您的密码
-register_success=注册成功,欢迎使用
-
-[modal]
-yes=确认操作
-no=取消操作
-modify=确认修改
-
-[form]
-UserName=用户名
-RepoName=仓库名称
-Email=邮箱地址
-Password=密码
-Retype=确认密码
-SSHTitle=SSH 密钥名称
-HttpsUrl=HTTPS URL 地址
-PayloadUrl=推送地址
-TeamName=团队名称
-AuthName=认证名称
-AdminEmail=管理员邮箱
-
-require_error=不能为空。
-alpha_dash_error=必须为英文字母、阿拉伯数字或横线(-_)。
-alpha_dash_dot_error=必须为英文字母、阿拉伯数字、横线(-_)或点。
-size_error=长度必须为 %s。
-min_size_error=长度最小为 %s 个字符。
-max_size_error=长度最大为 %s 个字符。
-email_error=不是一个有效的邮箱地址。
-url_error=不是一个有效的 URL。
-unknown_error=未知错误:
-captcha_incorrect=验证码未匹配。
-password_not_match=密码与确认密码未匹配。
-
-username_been_taken=用户名已经被占用。
-repo_name_been_taken=仓库名称已经被占用。
-org_name_been_taken=组织名称已经被占用。
-team_name_been_taken=团队名称已经被占用。
-email_been_used=邮箱地址已经被使用。
-illegal_team_name=团队名称包含非法字符。
-username_password_incorrect=用户名或密码不正确。
-enterred_invalid_repo_name=请检查您输入的仓库名称是正确。
-enterred_invalid_owner_name=请检查您输入的新所有者用户名是否正确。
-enterred_invalid_password=请检查您输入的密码是否正确。
-user_not_exist=被操作的用户不存在!
-last_org_owner=被移除用户为最后一位管理员。请添加一位新的管理员再进行移除成员操作!
-
-invalid_ssh_key=很抱歉,我们无法验证您输入的 SSH 密钥:%s
-unable_verify_ssh_key=Gogs 无法验证您输入的 SSH 密钥,但我们假设那是有效的密钥,请您自行确保其有效性!
-auth_failed=授权验证失败:%v
-
-still_own_repo=您的帐户仍然是某些仓库的拥有者,您必须先转移或删除它们才能执行删除帐户操作!
-still_has_org=您的帐户仍旧是某些组织的成员,您必须先离开或删除组织。
-org_still_own_repo=该组织仍然是某些仓库的拥有者,您必须先转移或删除它们才能执行删除组织操作!
-
-still_own_user=该授权认证依旧被部分用户使用,请先删除该部分用户后再试!
-
-target_branch_not_exist=目标分支不存在。
-
-[user]
-change_avatar=到 gravatar.com 上修改您的头像
-change_custom_avatar=到个人设置中修改头像
-join_on=加入于
-repositories=仓库列表
-activity=公开活动
-followers=关注者
-starred=已点赞
-following=关注中
-
-form.name_reserved=用户名 '%s' 是被保留的。
-form.name_pattern_not_allowed=用户名不允许 '%s' 的格式。
-
-[settings]
-profile=个人信息
-password=修改密码
-ssh_keys=管理 SSH 密钥
-social=社交帐号绑定
-applications=管理授权应用
-orgs=管理组织
-delete=删除帐户
-uid=用户 ID
-
-public_profile=公开信息
-profile_desc=您的邮箱地址将会被公开,并被用于接收帐户的所有提醒和通知。
-full_name=自定义名称
-website=个人网站
-location=所在地区
-update_profile=更新信息
-update_profile_success=您的个人信息更新成功!
-change_username=用户名将被修改
-change_username_prompt=该操作将会影响到所有与您帐户有关的链接
-continue=继续操作
-cancel=取消操作
-
-enable_custom_avatar=启动自定义头像
-enable_custom_avatar_helper=激活该选项来禁止从 Gravatar 获取头像
-choose_new_avatar=选择新的头像
-update_avatar=更新头像设置
-uploaded_avatar_not_a_image=上传的文件不是一张图片!
-no_custom_avatar_available=未上传过自定义头像,无法激活该选项。
-update_avatar_success=您的头像设置更新成功!
-
-change_password=修改密码
-old_password=当前密码
-new_password=新的密码
-retype_new_password=重新输入新的密码
-password_incorrect=当前密码不正确!
-change_password_success=密码修改成功!您现在可以使用新的密码登录。
-
-emails=邮箱地址
-manage_emails=管理邮箱地址
-email_desc=您的主要邮箱地址将被用于通知提醒和其它操作。
-primary=主要
-primary_email=设为主要
-delete_email=删除
-email_deletion=邮箱删除操作
-email_deletion_desc=删除该邮箱地址将会移除所有相关的信息。是否继续?
-email_deletion_success=邮箱删除成功!
-add_new_email=添加新的邮箱地址
-add_email=添加邮箱
-add_email_confirmation_sent=一封待确认的电子邮件已发送到 '%s',请在 %d 小时内检查您的收件箱,并完成确认过程。
-add_email_success=新的邮箱地址添加成功!
-
-manage_ssh_keys=管理 SSH 密钥
-add_key=增加密钥
-ssh_desc=以下是与您帐户所关联的 SSH 密钥,如果您发现有陌生的密钥,请立即删除它!
-ssh_helper=<strong>需要帮助?</strong> 请查看有关 <a href="%s">如何生成 SSH 密钥</a> 或 <a href="%s">常见 SSH 问题</a> 寻找答案。
-add_new_key=增加 SSH 密钥
-ssh_key_been_used=公开密钥已经被使用!
-ssh_key_name_used=使用相同名称的公开密钥已经存在!
-key_name=密钥名称
-key_content=密钥内容
-add_key_success=新的 SSH 密钥 '%s' 添加成功!
-delete_key=删除
-ssh_key_deletion=删除 SSH 公钥操作
-ssh_key_deletion_desc=删除该 SSH 公钥将删除所有与您帐户相关的访问权限。是否继续?
-ssh_key_deletion_success=SSH 公钥删除成功!
-add_on=增加于
-last_used=上次使用在
-no_activity=没有最近活动
-key_state_desc=该密钥在 7 天内被使用过
-token_state_desc=该令牌在 7 天内被使用过
-
-manage_social=管理关联社交帐户
-social_desc=以下是与您帐户所关联的社交帐号,如果您发现有陌生的关联,请立即解除绑定!
-unbind=解除绑定
-unbind_success=社交帐号解除绑定成功!
-
-manage_access_token=管理个人操作令牌
-generate_new_token=生成新的令牌
-tokens_desc=您可以使用这些已生成的令牌来操作 Gogs API。
-new_token_desc=目前为止,任何令牌都对您的帐户拥有完整的操作权限。
-token_name=令牌名称
-generate_token=生成令牌
-generate_token_succees=新的操作令牌生成成功!您必须立即复制到一个安全的地方,因为该令牌只会显示一次!
-delete_token=删除令牌
-access_token_deletion=删除个人操作令牌操作
-access_token_deletion_desc=删除该个人操作令牌将删除所有相关的应用程序的访问权限。是否继续?
-delete_token_success=个人操作令牌删除成功!请更新与该令牌有关的所有应用。
-
-delete_account=删除当前帐户
-delete_prompt=删除操作会永久清除您的帐户信息,并且 <strong>不可恢复</strong>!
-confirm_delete_account=确认删除帐户
-delete_account_title=帐户删除操作
-delete_account_desc=该帐户将被永久性删除,您确定要继续操作吗?
-
-[repo]
-owner=拥有者
-repo_name=仓库名称
-repo_name_helper=伟大的仓库名称一般都较短、令人深刻并且 <strong>独一无二</strong> 的。
-visibility=可见性
-visiblity_helper=该仓库为 <span class="ui red text">私有的</span>
-visiblity_helper_forced=网站管理员已强制要求所有新建仓库必须为 <span class="ui red text">私有的</span>
-visiblity_fork_helper=(修改该值将会影响到所有派生仓库)
-fork_repo=派生仓库
-fork_from=派生自
-fork_visiblity_helper=派生仓库无法修改可见性
-repo_desc=仓库描述
-repo_lang=仓库语言
-repo_lang_helper=请选择 .gitignore 文件
-license=授权许可
-license_helper=请选择授权许可文件
-readme=自述文档
-readme_helper=请选择自述文档模板
-auto_init=使用选定的文件和模板初始化仓库
-create_repo=创建仓库
-default_branch=默认分支
-mirror_interval=镜像同步周期(小时)
-
-form.name_reserved=仓库名称 '%s' 是被保留的。
-form.name_pattern_not_allowed=仓库名称不允许 '%s' 的格式。
-
-need_auth=需要授权验证
-migrate_type=迁移类型
-migrate_type_helper=该仓库将是一个 <span class="text blue">镜像</span>
-migrate_repo=迁移仓库
-migrate.clone_address=克隆地址
-migrate.clone_address_desc=该地址可以是 HTTP/HTTPS/GIT URL 或本地服务器路径。
-migrate.invalid_local_path=无效的本地路径,不存在或不是一个目录!
-
-forked_from=派生自
-fork_from_self=无法派生已经拥有的仓库!
-copy_link=复制链接
-copy_link_success=复制成功!
-copy_link_error=请按下 ⌘-C 或 Ctrl-C 复制
-click_to_copy=复制到剪切板
-copied=复制成功
-clone_helper=不知道如何操作?访问 <a target="_blank" href="%s">此处</a> 查看帮助!
-unwatch=取消关注
-watch=关注
-unstar=取消点赞
-star=点赞
-fork=派生
-
-no_desc=暂无描述
-quick_guide=快速帮助
-clone_this_repo=克隆当前仓库
-create_new_repo_command=从命令行创建一个新的仓库
-push_exist_repo=从命令行推送已经创建的仓库
-repo_is_empty=该仓库不包含任何内容,请稍后再进行访问!
-
-
-branch=分支
-tree=目录树
-branch_and_tags=分支与标签
-branches=分支列表
-tags=标签列表
-issues=工单管理
-pulls=合并请求
-labels=标签管理
-milestones=里程碑
-commits=提交历史
-releases=版本发布
-file_raw=原始文件
-file_history=文件历史
-file_view_raw=查看原始文件
-file_permalink=永久链接
-
-commits.commits=次代码提交
-commits.search=搜索提交历史
-commits.find=查找
-commits.author=作者
-commits.message=备注
-commits.date=提交日期
-commits.older=更旧的提交
-commits.newer=更新的提交
-
-issues.new=创建工单
-issues.new.labels=标签
-issues.new.no_label=未选择标签
-issues.new.clear_labels=清除选中标签
-issues.new.milestone=里程碑
-issues.new.no_milestone=未选择里程碑
-issues.new.clear_milestone=取消选中里程碑
-issues.new.open_milestone=开启中的里程碑
-issues.new.closed_milestone=已关闭的里程碑
-issues.new.assignee=指派成员
-issues.new.clear_assignee=取消指派成员
-issues.new.no_assignee=未指派成员
-issues.create=创建工单
-issues.new_label=创建标签
-issues.new_label_placeholder=标签名称...
-issues.create_label=创建标签
-issues.open_tab=%d 个开启中
-issues.close_tab=%d 个已关闭
-issues.filter_label=标签筛选
-issues.filter_label_no_select=无筛选标签
-issues.filter_milestone=里程碑筛选
-issues.filter_milestone_no_select=无筛选里程碑
-issues.filter_assignee=指派人筛选
-issues.filter_assginee_no_select=无筛选指派人
-issues.filter_type=类型筛选
-issues.filter_type.all_issues=所有工单
-issues.filter_type.assigned_to_you=指派给您的
-issues.filter_type.created_by_you=由您创建的
-issues.filter_type.mentioning_you=提及您的
-issues.filter_sort=排序
-issues.filter_sort.latest=最新创建
-issues.filter_sort.oldest=最早创建
-issues.filter_sort.recentupdate=最近更新
-issues.filter_sort.leastupdate=最少更新
-issues.filter_sort.mostcomment=最多评论
-issues.filter_sort.leastcomment=最少评论
-issues.opened_by=由 <a href="%[2]s">%[3]s</a> 与 %[1]s创建
-issues.opened_by_fake=由 %[2]s 于 %[1]s创建
-issues.previous=上一页
-issues.next=下一页
-issues.open_title=开启中
-issues.closed_title=已关闭
-issues.num_comments=%d 条评论
-issues.commented_at=`于 <a id="%[1]s" href="#%[1]s">%[2]s</a> 评论`
-issues.no_content=这个人很懒,什么都没留下。
-issues.close_issue=关闭
-issues.close_comment_issue=关闭并评论
-issues.reopen_issue=重新开启
-issues.reopen_comment_issue=重新开启并评论
-issues.create_comment=评论
-issues.closed_at=`于 <a id="%[1]s" href="#%[1]s">%[2]s</a> 关闭`
-issues.reopened_at=`于 <a id="%[1]s" href="#%[1]s">%[2]s</a> 重新开启`
-issues.commit_ref_at=`在代码提交 <a id="%[1]s" href="#%[1]s">%[2]s</a> 中引用了该工单`
-issues.poster=发布者
-issues.admin=管理员
-issues.owner=所有者
-issues.sign_up_for_free=免费注册
-issues.sign_in_require_desc=并加入到对话中来。如果您已经注册,可以直接 <a href="%s">登录并评论</a>
-issues.edit=编辑
-issues.cancel=取消
-issues.save=保存
-issues.label_title=标签名称
-issues.label_color=标签颜色
-issues.label_count=%d 个标签
-issues.label_open_issues=%d 个开启的工单
-issues.label_edit=编辑
-issues.label_delete=删除
-issues.label_modify=修改标签
-issues.label_deletion=删除标签操作
-issues.label_deletion_desc=删除该标签将会移除所有工单中相关的信息。是否继续?
-issues.label_deletion_success=标签删除成功!
-
-pulls.compare_changes=对比文件变化
-pulls.compare_changes_desc=对比两个分支间的文件变化并发起一个合并请求。
-pulls.compare_base=基准分支
-pulls.compare_compare=对比分支
-pulls.filter_branch=过滤分支
-pulls.no_results=未找到结果
-pulls.nothing_to_compare=基准和对比分支代码已经同步,无需进行对比。
-pulls.has_pull_request=`已经存在目标分支的合并请求:<a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>`
-pulls.create=创建合并请求
-pulls.title_desc=请求将 %[1]d 次代码提交从 <code>%[2]s</code> 合并至 <code>%[3]s</code>
-pulls.merged_title_desc=于 %[4]s 将 %[1]d 次代码提交从 <code>%[2]s</code>合并至 <code>%[3]s</code>
-pulls.tab_conversation=对话内容
-pulls.tab_commits=代码提交
-pulls.tab_files=文件变动
-pulls.reopen_to_merge=请重新开启合并请求来完成合并操作。
-pulls.merged=已合并
-pulls.has_merged=该合并请求已经成功合并!
-pulls.data_broken=该合并请求的数据由于派生仓库的相关信息被删除而被破坏。
-pulls.is_checking=该合并请求正在进行冲突检查,请稍后再刷新页面。
-pulls.can_auto_merge_desc=您可以实现该合并请求的自动合并操作。
-pulls.cannot_auto_merge_desc=因为代码提交存在冲突,您无法对该合并请求执行自动合并操作。
-pulls.cannot_auto_merge_helper=请使用命令行工具来解决冲突。
-pulls.merge_pull_request=合并请求
-pulls.open_unmerged_pull_exists=`由于已经存在来自相同仓库和合并信息的未合并请求(#%d),您无法执行重新开启操作。`
-
-milestones.new=新的里程碑
-milestones.open_tab=%d 开启中
-milestones.close_tab=%d 已关闭
-milestones.closed=于 %s关闭
-milestones.no_due_date=暂无截止日期
-milestones.open=开启
-milestones.close=关闭
-milestones.new_subheader=创建里程碑来更好地组织您的工单。
-milestones.create=创建里程碑
-milestones.title=标题
-milestones.desc=描述
-milestones.due_date=截止日期(可选)
-milestones.clear=清除
-milestones.invalid_due_date_format=截止日期的格式错误,必须是 'year-mm-dd' 的形式。
-milestones.create_success=里程碑 '%s' 创建成功!
-milestones.edit=编辑里程碑
-milestones.edit_subheader=使用更加清晰的描述来帮助人们更好地理解里程碑的作用。
-milestones.cancel=取消
-milestones.modify=修改里程碑
-milestones.edit_success=里程碑 '%s' 的修改内容已经生效!
-milestones.deletion=删除里程碑操作
-milestones.deletion_desc=删除该里程碑将会移除所有工单中相关的信息。是否继续?
-milestones.deletion_success=里程碑删除成功!
-
-settings=仓库设置
-settings.options=基本设置
-settings.collaboration=管理协作者
-settings.hooks=管理 Web 钩子
-settings.githooks=管理 Git 钩子
-settings.basic_settings=基本设置
-settings.danger_zone=危险操作区
-settings.site=官方网站
-settings.update_settings=更新仓库设置
-settings.change_reponame_prompt=该操作将会影响到所有与该仓库有关的链接
-settings.transfer=转移仓库所有权
-settings.transfer_desc=您可以将仓库转移至您拥有管理员权限的帐户或组织。
-settings.new_owner_has_same_repo=新的仓库拥有者已经存在同名仓库!
-settings.delete=删除本仓库
-settings.delete_desc=删除仓库操作不可逆转,请三思而后行。
-settings.transfer_notices_1=- 如果您将仓库转移给个人用户,您将会丢失操作权限。
-settings.transfer_notices_2=- 如果您将仓库转移给您是所有者的组织,您的操作权限将被保留。
-settings.transfer_form_title=请输入以下信息以确认您的操作:
-settings.delete_notices_1=- 此操作 <strong>不可以</strong> 被回滚。
-settings.delete_notices_2=- 此操作将永久删除该仓库,包括 Git 数据、 工单、 评论和协作者的操作权限。
-settings.delete_notices_fork_1=- 如果该仓库为公开的,则在删除仓库后所有的派生仓库都将转换成独立的仓库。
-settings.delete_notices_fork_2=- 如果该仓库为私有,则会同时删除所有的派生仓库。
-settings.delete_notices_fork_3=- 如果您想要保留派生仓库,请先将可见性修改为公开的后再进行删除操作。
-settings.update_settings_success=仓库设置更新成功!
-settings.transfer_owner=新拥有者
-settings.make_transfer=确认转移仓库
-settings.transfer_succeed=仓库所有权转移成功!
-settings.confirm_delete=确认删除仓库
-settings.add_collaborator=增加新的协作者
-settings.add_collaborator_success=成功添加新的协作者!
-settings.remove_collaborator_success=被操作的协作者已经被收回权限!
-settings.user_is_org_member=被操作的用户是组织成员,因此无法添加为协作者!
-settings.add_webhook=添加 Web 钩子
-settings.hooks_desc=Web 钩子允许您设定在 Gogs 上发生指定事件时对指定 URL 发送 POST 通知。查看 <a target="_blank" href="%s">Webhooks 文档</a> 获取更多信息。
-settings.webhook_deletion=删除 Web 钩子
-settings.webhook_deletion_desc=删除该 Web 钩子将会删除与其有关的信息和推送历史。是否继续?
-settings.webhook_deletion_success=Web 钩子删除成功!
-settings.webhook.request=请求内容
-settings.webhook.response=响应内容
-settings.webhook.headers=头信息
-settings.webhook.payload=推送内容
-settings.webhook.body=响应体
-settings.githooks_desc=Git 钩子是由 Git 本身提供的功能,以下为 Gogs 所支持的钩子列表。
-settings.githook_edit_desc=如果钩子未启动,则会显示样例文件中的内容。如果想要删除某个钩子,则提交空白文本即可。
-settings.githook_name=钩子名称
-settings.githook_content=钩子文本
-settings.update_githook=更新钩子设置
-settings.add_webhook_desc=我们会通过 <code>POST</code> 请求将订阅事件信息发送至向指定 URL 地址。您可以设置不同的数据接收方式(JSON 或 <code>x-www-form-urlencoded</code>)。 请查阅 <a target="_blank" href="%s">Webhooks 文档</a> 获取更多信息。
-settings.payload_url=推送地址
-settings.content_type=数据格式
-settings.secret=密钥文本
-settings.slack_username=服务名称
-settings.slack_icon_url=图标 URL
-settings.slack_color=颜色代码
-settings.event_desc=请设置您希望触发 Web 钩子的事件:
-settings.event_push_only=只推送 <code>push</code> 事件。
-settings.event_send_everything=请把 <strong>一切</strong> 都给我
-settings.event_choose=我的命运自己主宰
-settings.event_create=创建
-settings.event_create_desc=创建分支或标签
-settings.event_push=推送
-settings.event_push_desc=Git 仓库推送
-settings.active=是否激活
-settings.active_helper=当指定事件发生时我们将会触发此 Web 钩子。
-settings.add_hook_success=Web 钩子添加成功!
-settings.update_webhook=更新 Web 钩子
-settings.update_hook_success=Web 钩子更新成功!
-settings.delete_webhook=删除 Web 钩子
-settings.recent_deliveries=最近推送记录
-settings.hook_type=钩子类型
-settings.add_slack_hook_desc=为您的仓库增加 <a href="%s">Slack</a> 集成。
-settings.slack_token=令牌
-settings.slack_domain=域名
-settings.slack_channel=频道
-settings.deploy_keys=管理部署密钥
-settings.add_deploy_key=添加部署密钥
-settings.no_deploy_keys=您还没有添加任何部署密钥。
-settings.title=标题
-settings.deploy_key_content=密钥文本
-settings.key_been_used=部署密钥已经被使用!
-settings.key_name_used=使用相同名称的部署密钥已经存在!
-settings.add_key_success=新的部署密钥 '%s' 添加成功!
-settings.deploy_key_deletion=删除部署密钥
-settings.deploy_key_deletion_desc=删除该部署密钥会移除本仓库所以相关的操作权限。是否继续?
-settings.deploy_key_deletion_success=删除部署密钥成功!
-
-diff.browse_source=浏览代码
-diff.parent=父节点
-diff.commit=当前提交
-diff.data_not_available=暂无可用数据
-diff.show_diff_stats=显示文件统计
-diff.stats_desc=共有 <strong> %d 个文件被更改</strong>,包括 <strong>%d 次插入</strong> 和 <strong>%d 次删除</strong>
-diff.bin=二进制
-diff.view_file=查看文件
-
-release.releases=版本发布
-release.new_release=发布新版
-release.draft=草稿
-release.prerelease=预发行
-release.stable=稳定
-release.edit=编辑
-release.ahead=在该版本发布之后已有 <strong>%d</strong> 次代码提交到 %s 分支
-release.source_code=源代码
-release.tag_name=标签名称
-release.target=目标分支
-release.tag_helper=选择或创建一个已经存在的标签
-release.release_title=发布标题
-release.content_with_md=使用 <a href="%s">Markdown</a> 编辑内容
-release.write=内容编辑
-release.preview=效果预览
-release.content_placeholder=请输入内容
-release.loading=正在加载...
-release.prerelease_desc=这是一个预发行版本
-release.prerelease_helper=我们会告知用户不建议将本次发布投入生产环境使用。
-release.publish=发布版本
-release.save_draft=保存草稿
-release.edit_release=编辑发布信息
-release.tag_name_already_exist=已经存在使用相同标签进行发布的版本。
-
-[org]
-org_name_holder=组织名称
-org_name_helper=伟大的组织都有一个简短而寓意深刻的名字。
-create_org=创建组织
-repo_updated=最后更新于
-people=组织成员
-invite_someone=邀请他人加入
-teams=组织团队
-lower_members=名成员
-lower_repositories=个仓库
-create_new_team=创建新的团队
-org_desc=组织描述
-team_name=团队名称
-team_desc=团队描述
-team_name_helper=您可以使用该名称来通知该组全体成员。
-team_desc_helper=一句话描述这个团队是做什么的。
-team_permission_desc=请选择该团队所具有的权限等级:
-
-form.name_reserved=组织名称 '%s' 是被保留的。
-form.name_pattern_not_allowed=组织名称不允许 '%s' 的格式。
-
-settings=组织设置
-settings.options=基本设置
-settings.full_name=组织全名
-settings.website=官方网站
-settings.location=所在地区
-settings.update_settings=更新组织设置
-settings.update_setting_success=组织设置更新成功!
-settings.change_orgname_prompt=该操作将会影响到所有与该组织有关的链接
-settings.update_avatar_success=组织头像更新成功!
-settings.delete=删除组织
-settings.delete_account=删除当前组织
-settings.delete_prompt=删除操作会永久清除该组织的信息,并且 <strong>不可恢复</strong>!
-settings.confirm_delete_account=确认删除组织
-settings.delete_org_title=组织删除操作
-settings.delete_org_desc=该组织将被永久性删除,您确定要继续操作吗?
-settings.hooks_desc=在此处添加的 Web 钩子将会应用到该组织下的 <strong>所有仓库</strong>。
-
-members.public=公开成员
-members.public_helper=设为私有
-members.private=私有成员
-members.private_helper=设为公开
-members.owner=管理员
-members.member=普通成员
-members.conceal=隐藏身份
-members.remove=移除成员
-members.leave=离开组织
-members.invite_desc=请输入被邀请到组织 %s 的用户名称:
-members.invite_now=立即邀请
-
-teams.join=加入团队
-teams.leave=离开团队
-teams.read_access=读取权限
-teams.read_access_helper=这个团队将拥有查看和克隆所属仓库的权限。
-teams.write_access=写入权限
-teams.write_access_helper=这个团队将拥有查看、克隆和推送所属仓库的权限。
-teams.admin_access=管理权限
-teams.admin_access_helper=这个团队将拥有查看、克隆、推送和添加其他组织成员到团队的权限。
-teams.no_desc=该团队暂无描述
-teams.settings=团队设置
-teams.owners_permission_desc=管理员团队对 <strong>所有仓库</strong> 具有操作权限,且对组织具有 <strong>管理员权限</strong>。
-teams.members=团队成员
-teams.update_settings=更新团队设置
-teams.delete_team=删除当前团队
-teams.add_team_member=添加团队成员
-teams.delete_team_title=团队删除操作
-teams.delete_team_desc=删除操作会永久清除有关该团队的信息,您确定要继续操作吗?团队成员可能会失去对某些仓库的操作权限。
-teams.delete_team_success=指定团队删除成功!
-teams.read_permission_desc=该团队拥有对所属仓库的 <strong>读取</strong> 权限,团队成员可以进行查看和克隆等只读操作。
-teams.write_permission_desc=该团队拥有对所属仓库的 <strong>读取</strong> 和 <strong>写入</strong> 的权限。
-teams.admin_permission_desc=该团队拥有一定的 <strong>管理</strong> 权限,团队成员可以读取、克隆、推送以及添加其它仓库协作者。
-teams.repositories=团队仓库
-teams.add_team_repository=添加团队仓库
-teams.remove_repo=移除仓库
-teams.add_nonexistent_repo=您尝试添加到团队的仓库不存在,请先创建仓库!
-
-[admin]
-dashboard=控制面板
-users=用户管理
-organizations=组织管理
-repositories=仓库管理
-authentication=授权认证管理
-config=应用配置管理
-notices=系统提示管理
-monitor=应用监控面板
-first_page=首页
-last_page=末页
-total=总计:%d
-
-dashboard.statistic=应用统计数据
-dashboard.operations=管理员操作
-dashboard.system_status=系统监视状态
-dashboard.statistic_info=Gogs 数据库统计:<b>%d</b> 位用户,<b>%d</b> 个组织,<b>%d</b> 个公钥,<b>%d</b> 个仓库,<b>%d</b> 个仓库关注,<b>%d</b> 个赞,<b>%d</b> 次行为,<b>%d</b> 条权限记录,<b>%d</b> 张工单,<b>%d</b> 次评论,<b>%d</b> 个社交帐号,<b>%d</b> 个用户关注,<b>%d</b> 个镜像,<b>%d</b> 个版本发布,<b>%d</b> 个登录源,<b>%d</b> 个 Web 钩子,<b>%d</b> 个里程碑,<b>%d</b> 个标签,<b>%d</b> 个钩子任务,<b>%d</b> 个团队,<b>%d</b> 个更新任务,<b>%d</b> 个附件。
-dashboard.operation_name=操作名称
-dashboard.operation_switch=开关
-dashboard.operation_run=执行
-dashboard.clean_unbind_oauth=清理未绑定社交帐号
-dashboard.clean_unbind_oauth_success=所有未绑定社交数据清除成功!
-dashboard.delete_inactivate_accounts=删除所有未激活帐户
-dashboard.delete_inactivate_accounts_success=所有未激活帐号清除成功!
-dashboard.delete_repo_archives=删除所有仓库存档
-dashboard.delete_repo_archives_success=所有仓库存档清除成功!
-dashboard.git_gc_repos=对仓库进行垃圾回收
-dashboard.git_gc_repos_success=所有仓库垃圾回收成功!
-dashboard.resync_all_sshkeys=重新生成 '.ssh/authorized_keys' 文件(警告:不是 Gogs 的密钥也会被删除)
-dashboard.resync_all_sshkeys_success=所有公钥重新生成成功!
-dashboard.resync_all_update_hooks=重新生成所有仓库的 Update 钩子(用于自定义配置文件被修改)
-dashboard.resync_all_update_hooks_success=所有仓库的 Update 钩子重新生成成功!
-
-dashboard.server_uptime=服务运行时间
-dashboard.current_goroutine=当前 Goroutines 数量
-dashboard.current_memory_usage=当前内存使用量
-dashboard.total_memory_allocated=所有被分配的内存
-dashboard.memory_obtained=内存占用量
-dashboard.pointer_lookup_times=指针查找次数
-dashboard.memory_allocate_times=内存分配次数
-dashboard.memory_free_times=内存释放次数
-dashboard.current_heap_usage=当前 Heap 内存使用量
-dashboard.heap_memory_obtained=Heap 内存占用量
-dashboard.heap_memory_idle=Heap 内存空闲量
-dashboard.heap_memory_in_use=正在使用的 Heap 内存
-dashboard.heap_memory_released=被释放的 Heap 内存
-dashboard.heap_objects=Heap 对象数量
-dashboard.bootstrap_stack_usage=启动 Stack 使用量
-dashboard.stack_memory_obtained=被分配的 Stack 内存
-dashboard.mspan_structures_usage=MSpan 结构内存使用量
-dashboard.mspan_structures_obtained=被分配的 MSpan 结构内存
-dashboard.mcache_structures_usage=MCache 结构内存使用量
-dashboard.mcache_structures_obtained=被分配的 MCache 结构内存
-dashboard.profiling_bucket_hash_table_obtained=被分配的剖析哈希表内存
-dashboard.gc_metadata_obtained=被分配的 GC 元数据内存
-dashboard.other_system_allocation_obtained=其它被分配的系统内存
-dashboard.next_gc_recycle=下次 GC 内存回收量
-dashboard.last_gc_time=距离上次 GC 时间
-dashboard.total_gc_time=GC 执行时间总量
-dashboard.total_gc_pause=GC 暂停时间总量
-dashboard.last_gc_pause=上次 GC 暂停时间
-dashboard.gc_times=GC 执行次数
-
-users.user_manage_panel=用户管理面板
-users.new_account=创建新的帐户
-users.name=用户名
-users.activated=已激活
-users.admin=管理员
-users.repos=仓库数
-users.created=创建时间
-users.send_register_notify=向用户发送注册通知邮件
-users.new_success=新的用户 '%s' 创建成功!
-users.edit=编辑
-users.auth_source=认证源
-users.local=本地
-users.auth_login_name=认证登录名称
-users.password_helper=将值留空使其保持不变。
-users.update_profile_success=该用户信息更新成功!
-users.edit_account=编辑用户信息
-users.is_activated=该用户已被激活
-users.is_admin=该用户具有管理员权限
-users.allow_git_hook=该帐户具有创建 Git 钩子的权限
-users.update_profile=更新用户信息
-users.delete_account=删除该用户
-users.still_own_repo=该帐户仍然是某些仓库的拥有者,您必须先转移或删除它们才能执行删除帐户操作!
-users.still_has_org=该帐户仍旧是某些组织的成员,您必须先使其离开或删除组织。
-users.deletion_success=用户删除成功!
-
-orgs.org_manage_panel=组织管理面板
-orgs.name=组织名称
-orgs.teams=团队数
-orgs.members=成员数
-
-repos.repo_manage_panel=仓库管理界面
-repos.owner=所有者
-repos.name=仓库名称
-repos.private=私有库
-repos.watches=关注数
-repos.stars=点赞数
-repos.issues=工单数
-
-auths.auth_manage_panel=认证管理面板
-auths.new=添加新的源
-auths.name=认证名称
-auths.type=认证类型
-auths.enabled=已启用
-auths.updated=最后更新时间
-auths.auth_type=认证类型
-auths.auth_name=认证名称
-auths.domain=域名
-auths.host=主机地址
-auths.port=主机端口
-auths.bind_dn=绑定 DN
-auths.bind_password=绑定密码
-auths.bind_password_helper=警告:该密码将会以明文的形式保存在数据库中。请不要使用拥有高权限的帐户!
-auths.user_base=用户搜索基准
-auths.user_dn=User DN
-auths.attribute_name=名字属性
-auths.attribute_surname=姓氏属性
-auths.attribute_mail=邮箱属性
-auths.filter=用户过滤规则
-auths.admin_filter=管理员过滤规则
-auths.ms_ad_sa=Ms Ad SA
-auths.smtp_auth=SMTP 认证类型
-auths.smtphost=SMTP 主机地址
-auths.smtpport=SMTP 主机端口
-auths.allowed_domains=域名白名单
-auths.allowed_domains_helper=将值留空表示不对域名做任何限制。多个域名之间需要使用逗号 ',' 分隔。
-auths.enable_tls=启用 TLS 加密
-auths.skip_tls_verify=忽略 TLS 验证
-auths.pam_service_name=PAM 服务名称
-auths.enable_auto_register=允许授权用户自动注册
-auths.tips=帮助提示
-auths.edit=编辑认证设置
-auths.activated=该授权认证已经启用
-auths.new_success=新的授权源 "%s" 添加成功!
-auths.update_success=认证设置更新成功!
-auths.update=更新认证设置
-auths.delete=删除该认证
-auths.delete_auth_title=删除认证操作
-auths.delete_auth_desc=该认证将被删除。是否继续?
-auths.deletion_success=授权源删除成功!
-
-config.server_config=服务器配置
-config.app_name=应用名称
-config.app_ver=应用版本
-config.app_url=应用 URL
-config.domain=应用域名
-config.offline_mode=离线模式
-config.disable_router_log=关闭路由日志
-config.run_user=运行用户
-config.run_mode=运行模式
-config.repo_root_path=仓库根目录
-config.static_file_root_path=静态文件根目录
-config.log_file_root_path=日志文件根目录
-config.script_type=脚本类型
-config.reverse_auth_user=反向代理认证
-config.db_config=数据库配置
-config.db_type=数据库类型
-config.db_host=主机地址
-config.db_name=数据库名称
-config.db_user=连接用户
-config.db_ssl_mode=SSL 模式
-config.db_ssl_mode_helper=(仅限 "postgres" 使用)
-config.db_path=数据库路径
-config.db_path_helper=(用于 "sqlite3" 和 "tidb")
-config.service_config=服务配置
-config.register_email_confirm=注册邮件确认
-config.disable_register=关闭注册功能
-config.show_registration_button=显示注册按钮
-config.require_sign_in_view=强制登录浏览
-config.enable_cache_avatar=开启缓存头像
-config.mail_notify=邮件通知提醒
-config.disable_key_size_check=禁用密钥最小长度检查
-config.enable_captcha=启用验证码服务
-config.active_code_lives=激活用户链接有效期
-config.reset_password_code_lives=重置密码链接有效期
-config.webhook_config=Web 钩子配置
-config.queue_length=队列长度
-config.deliver_timeout=推送超时
-config.skip_tls_verify=忽略 TLS 验证
-config.mailer_config=邮件配置
-config.mailer_enabled=启用服务
-config.mailer_disable_helo=禁用 HELO 操作
-config.mailer_name=发送者名称
-config.mailer_host=邮件主机地址
-config.mailer_user=发送者帐号
-config.oauth_config=社交帐号配置
-config.oauth_enabled=启用服务
-config.cache_config=Cache 配置
-config.cache_adapter=Cache 适配器
-config.cache_interval=Cache 周期
-config.cache_conn=Cache 连接字符串
-config.session_config=Session 配置
-config.session_provider=Session 提供者
-config.provider_config=提供者配置
-config.cookie_name=Cookie 名称
-config.enable_set_cookie=启用设置 Cookie
-config.gc_interval_time=GC 周期
-config.session_life_time=Session 生命周期
-config.https_only=仅限 HTTPS
-config.cookie_life_time=Cookie 生命周期
-config.picture_config=图片配置
-config.picture_service=图片服务
-config.disable_gravatar=禁用 Gravatar 头像
-config.log_config=日志配置
-config.log_mode=日志模式
-
-monitor.cron=Cron 任务
-monitor.name=任务名称
-monitor.schedule=任务安排
-monitor.next=下次执行时间
-monitor.previous=上次执行时间
-monitor.execute_times=执行次数
-monitor.process=运行中进程
-monitor.desc=进程描述
-monitor.start=开始时间
-monitor.execute_time=已执行时间
-
-notices.system_notice_list=系统提示管理
-notices.type=提示类型
-notices.type_1=仓库
-notices.desc=描述
-notices.op=操作
-notices.delete_success=系统提示删除成功!
-
-[action]
-create_repo=创建了仓库 <a href="%s">%s</a>
-rename_repo=重命名仓库 <code>%[1]s</code> 为 <a href="%[2]s">%[3]s</a>
-commit_repo=推送了 <a href="%s/src/%s">%[2]s</a> 分支的代码到 <a href="%[1]s">%[3]s</a>
-create_issue=`创建了工单 <a href="%s/issues/%s">%s#%[2]s</a>`
-create_pull_request=`创建了合并请求 <a href="%s/pulls/%s">%s#%[2]s</a>`
-comment_issue=`评论了工单 <a href="%s/issues/%s">%s#%[2]s</a>`
-merge_pull_request=`合并了合并请求 <a href="%s/pulls/%s">%s#%[2]s</a>`
-transfer_repo=将仓库 <code>%s</code> 转移至 <a href="%s">%s</a>
-push_tag=推送了标签 <a href="%s/src/%s">%[2]s</a> 到 <a href="%[1]s">%[3]s</a>
-compare_2_commits=查看 2 次提交的内容对比
-
-[tool]
-ago=之前
-from_now=之后
-now=现在
-1s=1 秒%s
-1m=1 分钟%s
-1h=1 小时%s
-1d=1 天%s
-1w=1 周%s
-1mon=1 月%s
-1y=1 年%s
-seconds=%d 秒%s
-minutes=%d 分钟%s
-hours=%d 小时%s
-days=%d 天%s
-weeks=%d 周%s
-months=%d 月%s
-years=%d 年%s
-raw_seconds=秒
-raw_minutes=分钟
-
-[dropzone]
-default_message=拖曳文件到此处或单击上传
-invalid_input_type=您不能上传该类型的文件
-file_too_big=文件体积({{filesize}} MB)超过了最大允许体积({{maxFilesize}} MB)
-remove_file=移除文件
-
+app_desc=基于 Go 语言的自助 Git 服务 + +home=首页 +dashboard=控制面板 +explore=探索 +help=帮助 +sign_in=登录 +sign_out=退出 +sign_up=注册 +register=注册 +website=官方网站 +version=当前版本 +page=页面 +template=模板 +language=语言选项 +create_new=创建... +user_profile_and_more=用户信息及更多 +signed_in_as=已登录用户 + +username=用户名 +email=邮箱 +password=密码 +re_type=确认密码 +captcha=验证码 + +repository=仓库 +organization=组织 +mirror=镜像 +new_repo=创建新的仓库 +new_migrate=迁移外部仓库 +new_fork=创建新的派生仓库 +new_org=创建新的组织 +manage_org=管理我的组织 +admin_panel=管理面板 +account_settings=帐户设置 +settings=帐户设置 +your_profile=个人信息 +your_settings=用户设置 + +news_feed=最新活动 +pull_requests=合并请求 +issues=工单管理 + +cancel=取消 + +[search] +search=搜索... +repository=仓库 +user=用户 +issue=工单 +code=代码 + +[install] +install=安装页面 +title=首次运行安装程序 +docker_helper=如果您正在使用 Docker 容器运行 Gogs,请务必先仔细阅读 <a target="_blank" href="%s">官方文档</a> 后再对本页面进行填写。 +requite_db_desc=Gogs 要求安装 MySQL、PostgreSQL、SQLite3 或 TiDB。 +db_title=数据库设置 +db_type=数据库类型 +host=数据库主机 +user=数据库用户 +password=数据库用户密码 +db_name=数据库名称 +db_helper=如果您使用 MySQL,请使用 INNODB 引擎以及 utf8_general_ci 字符集。 +ssl_mode=SSL 模式 +path=数据库文件路径 +sqlite_helper=SQLite3 或 TiDB 的数据库路径。 +err_empty_db_path=SQLite3 或 TiDB 的数据库路径不能为空。 +err_invalid_tidb_name=TiDB 数据库名称不允许包含字符 "." 或 "-" 。 +no_admin_and_disable_registration=您不能够在未创建管理员用户的情况下禁止注册。 +err_empty_admin_password=管理员密码不能为空。 + +general_title=应用基本设置 +app_name=应用名称 +app_name_helper=快用狂拽酷炫的组织名称闪瞎我们! +repo_path=仓库根目录 +repo_path_helper=所有 Git 远程仓库都将被存放于该目录。 +run_user=运行系统用户 +run_user_helper=该用户必须具有对仓库根目录和运行 Gogs 的操作权限。 +domain=域名 +domain_helper=该设置影响 SSH 克隆地址。 +ssh_port=SSH 端口号 +ssh_port_helper=SSH 服务器的监听端口号,留空表示禁用 SSH 功能。 +http_port=HTTP 端口号 +http_port_helper=应用监听的端口号 +app_url=应用 URL +app_url_helper=该设置影响 HTTP/HTTPS 克隆地址和一些邮箱中的链接。 + +optional_title=可选设置 +email_title=邮件服务设置 +smtp_host=SMTP 主机 +smtp_from=邮件来自 +smtp_from_helper=邮件来自地址,遵循 RFC 5322 标准。可以是一个单纯的邮箱地址或使用 "Name" <email@example.com> 的格式。 +mailer_user=发送邮箱 +mailer_password=发送邮箱密码 +register_confirm=启用注册邮箱确认 +mail_notify=启用邮件通知提醒 +server_service_title=服务器和其它服务设置 +offline_mode=启用离线模式 +offline_mode_popup=在部署模式下也禁用从 CDN 获取文件,所以的资源都将从本地服务器获取。 +disable_gravatar=禁用 Gravatar 服务 +disable_gravatar_popup=禁用 Gravatar 和自定义源,仅使用由用户上传的或默认的头像。 +disable_registration=禁止用户自主注册 +disable_registration_popup=禁止用户自行注册功能,只有管理员可以添加帐号。 +enable_captcha=启用验证码服务 +enable_captcha_popup=要求在用户注册时输入预验证码 +require_sign_in_view=启用登录访问限制 +require_sign_in_view_popup=只有已登录的用户才能够访问页面,否则将只能看到登录或注册页面。 +admin_setting_desc=创建管理员帐号并不是必须的,因为 ID=1 的用户将自动获得管理员权限。 +admin_title=管理员帐号设置 +admin_name=管理员用户名 +admin_password=管理员密码 +confirm_password=确认密码 +admin_email=管理员邮箱 +install_gogs=立即安装 +test_git_failed=无法识别 'git' 命令:%v +sqlite3_not_available=您所使用的发行版不支持 SQLite3,请从 %s 下载官方构建版,而不是 gobuild 版本。 +invalid_db_setting=数据库设置不正确:%v +invalid_repo_path=仓库根目录设置不正确:%v +run_user_not_match=运行系统用户非当前用户:%s -> %s +save_config_failed=应用配置保存失败:%v +invalid_admin_setting=管理员帐户设置不正确:%v +install_success=您好!我们很高兴您选择使用 Gogs,祝您使用愉快,代码从此无 BUG! + +[home] +uname_holder=用户名或邮箱 +password_holder=密码 +switch_dashboard_context=切换控制面板用户 +my_repos=我的仓库 +collaborative_repos=参与协作的仓库 +my_orgs=我的组织 +my_mirrors=我的镜像 +view_home=访问 %s + +issues.in_your_repos=属于该用户仓库的 + +[explore] +repos=探索仓库 + +[auth] +create_new_account=创建帐户 +register_hepler_msg=已经注册?立即登录! +social_register_hepler_msg=已经注册?立即绑定! +disable_register_prompt=对不起,注册功能已被关闭。请联系网站管理员。 +disable_register_mail=对不起,注册邮箱确认功能已被关闭。 +remember_me=记住登录 +forgot_password=忘记密码 +forget_password=忘记密码? +sign_up_now=还没帐户?马上注册。 +confirmation_mail_sent_prompt=一封新的确认邮件已经被发送至 <b>%s</b>,请检查您的收件箱并在 %d 小时内完成确认注册操作。 +active_your_account=激活您的帐户 +resent_limit_prompt=对不起,您请求发送激活邮件过于频繁,请等待 3 分钟后再试! +has_unconfirmed_mail=%s 您好,系统检测到您有一封发送至 <b>%s</b> 但未被确认的邮件。如果您未收到激活邮件,或需要重新发送,请单击下方的按钮。 +resend_mail=单击此处重新发送确认邮件 +email_not_associate=您输入的邮箱地址未被关联到任何帐号! +send_reset_mail=单击此处(重新)发送您的密码重置邮件 +reset_password=重置密码 +invalid_code=对不起,您的确认代码已过期或已失效。 +reset_password_helper=单击此处重置密码 +password_too_short=密码长度不能少于 6 位! + +[mail] +activate_account=请激活您的帐户 +activate_email=请验证您的邮箱地址 +reset_password=重置您的密码 +register_success=注册成功,欢迎使用 +register_notify=欢迎使用 + +[modal] +yes=确认操作 +no=取消操作 +modify=确认修改 + +[form] +UserName=用户名 +RepoName=仓库名称 +Email=邮箱地址 +Password=密码 +Retype=确认密码 +SSHTitle=SSH 密钥名称 +HttpsUrl=HTTPS URL 地址 +PayloadUrl=推送地址 +TeamName=团队名称 +AuthName=认证名称 +AdminEmail=管理员邮箱 + +require_error=不能为空。 +alpha_dash_error=必须为英文字母、阿拉伯数字或横线(-_)。 +alpha_dash_dot_error=必须为英文字母、阿拉伯数字、横线(-_)或点。 +size_error=长度必须为 %s。 +min_size_error=长度最小为 %s 个字符。 +max_size_error=长度最大为 %s 个字符。 +email_error=不是一个有效的邮箱地址。 +url_error=不是一个有效的 URL。 +include_error=必须包含子字符串 '%s'。 +unknown_error=未知错误: +captcha_incorrect=验证码未匹配。 +password_not_match=密码与确认密码未匹配。 + +username_been_taken=用户名已经被占用。 +repo_name_been_taken=仓库名称已经被占用。 +org_name_been_taken=组织名称已经被占用。 +team_name_been_taken=团队名称已经被占用。 +email_been_used=邮箱地址已经被使用。 +illegal_team_name=团队名称包含非法字符。 +username_password_incorrect=用户名或密码不正确。 +enterred_invalid_repo_name=请检查您输入的仓库名称是正确。 +enterred_invalid_owner_name=请检查您输入的新所有者用户名是否正确。 +enterred_invalid_password=请检查您输入的密码是否正确。 +user_not_exist=被操作的用户不存在! +last_org_owner=被移除用户为最后一位管理员。请添加一位新的管理员再进行移除成员操作! + +invalid_ssh_key=很抱歉,我们无法验证您输入的 SSH 密钥:%s +unable_verify_ssh_key=Gogs 无法验证您输入的 SSH 密钥,但我们假设那是有效的密钥,请您自行确保其有效性! +auth_failed=授权验证失败:%v + +still_own_repo=您的帐户仍然是某些仓库的拥有者,您必须先转移或删除它们才能执行删除帐户操作! +still_has_org=您的帐户仍旧是某些组织的成员,您必须先离开或删除组织。 +org_still_own_repo=该组织仍然是某些仓库的拥有者,您必须先转移或删除它们才能执行删除组织操作! + +still_own_user=该授权认证依旧被部分用户使用,请先删除该部分用户后再试! + +target_branch_not_exist=目标分支不存在。 + +[user] +change_avatar=到 gravatar.com 上修改您的头像 +change_custom_avatar=到个人设置中修改头像 +join_on=加入于 +repositories=仓库列表 +activity=公开活动 +followers=关注者 +starred=已点赞 +following=关注中 + +form.name_reserved=用户名 '%s' 是被保留的。 +form.name_pattern_not_allowed=用户名不允许 '%s' 的格式。 + +[settings] +profile=个人信息 +password=修改密码 +ssh_keys=管理 SSH 密钥 +social=社交帐号绑定 +applications=管理授权应用 +orgs=管理组织 +delete=删除帐户 +uid=用户 ID + +public_profile=公开信息 +profile_desc=您的邮箱地址将会被公开,并被用于接收帐户的所有提醒和通知。 +full_name=自定义名称 +website=个人网站 +location=所在地区 +update_profile=更新信息 +update_profile_success=您的个人信息更新成功! +change_username=用户名将被修改 +change_username_prompt=该操作将会影响到所有与您帐户有关的链接 +continue=继续操作 +cancel=取消操作 + +enable_custom_avatar=启动自定义头像 +enable_custom_avatar_helper=激活该选项来禁止从 Gravatar 获取头像 +choose_new_avatar=选择新的头像 +update_avatar=更新头像设置 +uploaded_avatar_not_a_image=上传的文件不是一张图片! +no_custom_avatar_available=未上传过自定义头像,无法激活该选项。 +update_avatar_success=您的头像设置更新成功! + +change_password=修改密码 +old_password=当前密码 +new_password=新的密码 +retype_new_password=重新输入新的密码 +password_incorrect=当前密码不正确! +change_password_success=密码修改成功!您现在可以使用新的密码登录。 + +emails=邮箱地址 +manage_emails=管理邮箱地址 +email_desc=您的主要邮箱地址将被用于通知提醒和其它操作。 +primary=主要 +primary_email=设为主要 +delete_email=删除 +email_deletion=邮箱删除操作 +email_deletion_desc=删除该邮箱地址将会移除所有相关的信息。是否继续? +email_deletion_success=邮箱删除成功! +add_new_email=添加新的邮箱地址 +add_email=添加邮箱 +add_email_confirmation_sent=一封待确认的电子邮件已发送到 '%s',请在 %d 小时内检查您的收件箱,并完成确认过程。 +add_email_success=新的邮箱地址添加成功! + +manage_ssh_keys=管理 SSH 密钥 +add_key=增加密钥 +ssh_desc=以下是与您帐户所关联的 SSH 密钥,如果您发现有陌生的密钥,请立即删除它! +ssh_helper=<strong>需要帮助?</strong> 请查看有关 <a href="%s">如何生成 SSH 密钥</a> 或 <a href="%s">常见 SSH 问题</a> 寻找答案。 +add_new_key=增加 SSH 密钥 +ssh_key_been_used=公开密钥已经被使用! +ssh_key_name_used=使用相同名称的公开密钥已经存在! +key_name=密钥名称 +key_content=密钥内容 +add_key_success=新的 SSH 密钥 '%s' 添加成功! +delete_key=删除 +ssh_key_deletion=删除 SSH 公钥操作 +ssh_key_deletion_desc=删除该 SSH 公钥将删除所有与您帐户相关的访问权限。是否继续? +ssh_key_deletion_success=SSH 公钥删除成功! +add_on=增加于 +last_used=上次使用在 +no_activity=没有最近活动 +key_state_desc=该密钥在 7 天内被使用过 +token_state_desc=该令牌在 7 天内被使用过 + +manage_social=管理关联社交帐户 +social_desc=以下是与您帐户所关联的社交帐号,如果您发现有陌生的关联,请立即解除绑定! +unbind=解除绑定 +unbind_success=社交帐号解除绑定成功! + +manage_access_token=管理个人操作令牌 +generate_new_token=生成新的令牌 +tokens_desc=您可以使用这些已生成的令牌来操作 Gogs API。 +new_token_desc=目前为止,任何令牌都对您的帐户拥有完整的操作权限。 +token_name=令牌名称 +generate_token=生成令牌 +generate_token_succees=新的操作令牌生成成功!您必须立即复制到一个安全的地方,因为该令牌只会显示一次! +delete_token=删除令牌 +access_token_deletion=删除个人操作令牌操作 +access_token_deletion_desc=删除该个人操作令牌将删除所有相关的应用程序的访问权限。是否继续? +delete_token_success=个人操作令牌删除成功!请更新与该令牌有关的所有应用。 + +delete_account=删除当前帐户 +delete_prompt=删除操作会永久清除您的帐户信息,并且 <strong>不可恢复</strong>! +confirm_delete_account=确认删除帐户 +delete_account_title=帐户删除操作 +delete_account_desc=该帐户将被永久性删除,您确定要继续操作吗? + +[repo] +owner=拥有者 +repo_name=仓库名称 +repo_name_helper=伟大的仓库名称一般都较短、令人深刻并且 <strong>独一无二</strong> 的。 +visibility=可见性 +visiblity_helper=该仓库为 <span class="ui red text">私有的</span> +visiblity_helper_forced=网站管理员已强制要求所有新建仓库必须为 <span class="ui red text">私有的</span> +visiblity_fork_helper=(修改该值将会影响到所有派生仓库) +clone_helper=不知道如何操作?访问 <a target="_blank" href="%s">此处</a> 查看帮助! +fork_repo=派生仓库 +fork_from=派生自 +fork_visiblity_helper=派生仓库无法修改可见性 +repo_desc=仓库描述 +repo_lang=仓库语言 +repo_lang_helper=请选择 .gitignore 文件 +license=授权许可 +license_helper=请选择授权许可文件 +readme=自述文档 +readme_helper=请选择自述文档模板 +auto_init=使用选定的文件和模板初始化仓库 +create_repo=创建仓库 +default_branch=默认分支 +mirror_interval=镜像同步周期(小时) +watchers=关注者 +stargazers=称赞者 +forks=派生仓库 + +form.name_reserved=仓库名称 '%s' 是被保留的。 +form.name_pattern_not_allowed=仓库名称不允许 '%s' 的格式。 + +need_auth=需要授权验证 +migrate_type=迁移类型 +migrate_type_helper=该仓库将是一个 <span class="text blue">镜像</span> +migrate_repo=迁移仓库 +migrate.clone_address=克隆地址 +migrate.clone_address_desc=该地址可以是 HTTP/HTTPS/GIT URL 或本地服务器路径。 +migrate.permission_denied=您没有获得导入本地仓库的权限。 +migrate.invalid_local_path=无效的本地路径,不存在或不是一个目录! +migrate.failed=迁移失败:%v + +forked_from=派生自 +fork_from_self=无法派生已经拥有的仓库! +copy_link=复制链接 +copy_link_success=复制成功! +copy_link_error=请按下 ⌘-C 或 Ctrl-C 复制 +copied=复制成功 +unwatch=取消关注 +watch=关注 +unstar=取消点赞 +star=点赞 +fork=派生 + +no_desc=暂无描述 +quick_guide=快速帮助 +clone_this_repo=克隆当前仓库 +create_new_repo_command=从命令行创建一个新的仓库 +push_exist_repo=从命令行推送已经创建的仓库 +repo_is_empty=该仓库不包含任何内容,请稍后再进行访问! + +branch=分支 +tree=目录树 +filter_branch_and_tag=过滤分支或标签 +branches=分支列表 +tags=标签列表 +issues=工单管理 +pulls=合并请求 +labels=标签管理 +milestones=里程碑 +commits=提交历史 +releases=版本发布 +file_raw=原始文件 +file_history=文件历史 +file_view_raw=查看原始文件 +file_permalink=永久链接 + +commits.commits=次代码提交 +commits.search=搜索提交历史 +commits.find=查找 +commits.author=作者 +commits.message=备注 +commits.date=提交日期 +commits.older=更旧的提交 +commits.newer=更新的提交 + +issues.new=创建工单 +issues.new.labels=标签 +issues.new.no_label=未选择标签 +issues.new.clear_labels=清除选中标签 +issues.new.milestone=里程碑 +issues.new.no_milestone=未选择里程碑 +issues.new.clear_milestone=取消选中里程碑 +issues.new.open_milestone=开启中的里程碑 +issues.new.closed_milestone=已关闭的里程碑 +issues.new.assignee=指派成员 +issues.new.clear_assignee=取消指派成员 +issues.new.no_assignee=未指派成员 +issues.create=创建工单 +issues.new_label=创建标签 +issues.new_label_placeholder=标签名称... +issues.create_label=创建标签 +issues.open_tab=%d 个开启中 +issues.close_tab=%d 个已关闭 +issues.filter_label=标签筛选 +issues.filter_label_no_select=无筛选标签 +issues.filter_milestone=里程碑筛选 +issues.filter_milestone_no_select=无筛选里程碑 +issues.filter_assignee=指派人筛选 +issues.filter_assginee_no_select=无筛选指派人 +issues.filter_type=类型筛选 +issues.filter_type.all_issues=所有工单 +issues.filter_type.assigned_to_you=指派给您的 +issues.filter_type.created_by_you=由您创建的 +issues.filter_type.mentioning_you=提及您的 +issues.filter_sort=排序 +issues.filter_sort.latest=最新创建 +issues.filter_sort.oldest=最早创建 +issues.filter_sort.recentupdate=最近更新 +issues.filter_sort.leastupdate=最少更新 +issues.filter_sort.mostcomment=最多评论 +issues.filter_sort.leastcomment=最少评论 +issues.opened_by=由 <a href="%[2]s">%[3]s</a> 与 %[1]s创建 +issues.opened_by_fake=由 %[2]s 于 %[1]s创建 +issues.previous=上一页 +issues.next=下一页 +issues.open_title=开启中 +issues.closed_title=已关闭 +issues.num_comments=%d 条评论 +issues.commented_at=`于 <a id="%[1]s" href="#%[1]s">%[2]s</a> 评论` +issues.no_content=这个人很懒,什么都没留下。 +issues.close_issue=关闭 +issues.close_comment_issue=评论并关闭 +issues.reopen_issue=重新开启 +issues.reopen_comment_issue=评论并重新开启 +issues.create_comment=评论 +issues.closed_at=`于 <a id="%[1]s" href="#%[1]s">%[2]s</a> 关闭` +issues.reopened_at=`于 <a id="%[1]s" href="#%[1]s">%[2]s</a> 重新开启` +issues.commit_ref_at=`在代码提交 <a id="%[1]s" href="#%[1]s">%[2]s</a> 中引用了该工单` +issues.poster=发布者 +issues.admin=管理员 +issues.owner=所有者 +issues.sign_up_for_free=免费注册 +issues.sign_in_require_desc=并加入到对话中来。如果您已经注册,可以直接 <a href="%s">登录并评论</a> +issues.edit=编辑 +issues.cancel=取消 +issues.save=保存 +issues.label_title=标签名称 +issues.label_color=标签颜色 +issues.label_count=%d 个标签 +issues.label_open_issues=%d 个开启的工单 +issues.label_edit=编辑 +issues.label_delete=删除 +issues.label_modify=修改标签 +issues.label_deletion=删除标签操作 +issues.label_deletion_desc=删除该标签将会移除所有工单中相关的信息。是否继续? +issues.label_deletion_success=标签删除成功! + +pulls.new=创建合并请求 +pulls.compare_changes=对比文件变化 +pulls.compare_changes_desc=对比两个分支间的文件变化并发起一个合并请求。 +pulls.compare_base=基准分支 +pulls.compare_compare=对比分支 +pulls.filter_branch=过滤分支 +pulls.no_results=未找到结果 +pulls.nothing_to_compare=基准和对比分支代码已经同步,无需进行对比。 +pulls.has_pull_request=`已经存在目标分支的合并请求:<a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>` +pulls.create=创建合并请求 +pulls.title_desc=请求将 %[1]d 次代码提交从 <code>%[2]s</code> 合并至 <code>%[3]s</code> +pulls.merged_title_desc=于 %[4]s 将 %[1]d 次代码提交从 <code>%[2]s</code>合并至 <code>%[3]s</code> +pulls.tab_conversation=对话内容 +pulls.tab_commits=代码提交 +pulls.tab_files=文件变动 +pulls.reopen_to_merge=请重新开启合并请求来完成合并操作。 +pulls.merged=已合并 +pulls.has_merged=该合并请求已经成功合并! +pulls.data_broken=该合并请求的数据由于派生仓库的相关信息被删除而被破坏。 +pulls.is_checking=该合并请求正在进行冲突检查,请稍后再刷新页面。 +pulls.can_auto_merge_desc=您可以实现该合并请求的自动合并操作。 +pulls.cannot_auto_merge_desc=因为代码提交存在冲突,您无法对该合并请求执行自动合并操作。 +pulls.cannot_auto_merge_helper=请使用命令行工具来解决冲突。 +pulls.merge_pull_request=合并请求 +pulls.open_unmerged_pull_exists=`由于已经存在来自相同仓库和合并信息的未合并请求(#%d),您无法执行重新开启操作。` + +milestones.new=新的里程碑 +milestones.open_tab=%d 开启中 +milestones.close_tab=%d 已关闭 +milestones.closed=于 %s关闭 +milestones.no_due_date=暂无截止日期 +milestones.open=开启 +milestones.close=关闭 +milestones.new_subheader=创建里程碑来更好地组织您的工单。 +milestones.create=创建里程碑 +milestones.title=标题 +milestones.desc=描述 +milestones.due_date=截止日期(可选) +milestones.clear=清除 +milestones.invalid_due_date_format=截止日期的格式错误,必须是 'yyyy-mm-dd' 的形式。 +milestones.create_success=里程碑 '%s' 创建成功! +milestones.edit=编辑里程碑 +milestones.edit_subheader=使用更加清晰的描述来帮助人们更好地理解里程碑的作用。 +milestones.cancel=取消 +milestones.modify=修改里程碑 +milestones.edit_success=里程碑 '%s' 的修改内容已经生效! +milestones.deletion=删除里程碑操作 +milestones.deletion_desc=删除该里程碑将会移除所有工单中相关的信息。是否继续? +milestones.deletion_success=里程碑删除成功! + +settings=仓库设置 +settings.options=基本设置 +settings.collaboration=管理协作者 +settings.hooks=管理 Web 钩子 +settings.githooks=管理 Git 钩子 +settings.basic_settings=基本设置 +settings.danger_zone=危险操作区 +settings.site=官方网站 +settings.update_settings=更新仓库设置 +settings.change_reponame_prompt=该操作将会影响到所有与该仓库有关的链接 +settings.transfer=转移仓库所有权 +settings.transfer_desc=您可以将仓库转移至您拥有管理员权限的帐户或组织。 +settings.new_owner_has_same_repo=新的仓库拥有者已经存在同名仓库! +settings.delete=删除本仓库 +settings.delete_desc=删除仓库操作不可逆转,请三思而后行。 +settings.transfer_notices_1=- 如果您将仓库转移给个人用户,您将会丢失操作权限。 +settings.transfer_notices_2=- 如果您将仓库转移给您是所有者的组织,您的操作权限将被保留。 +settings.transfer_form_title=请输入以下信息以确认您的操作: +settings.delete_notices_1=- 此操作 <strong>不可以</strong> 被回滚。 +settings.delete_notices_2=- 此操作将永久删除该仓库,包括 Git 数据、 工单、 评论和协作者的操作权限。 +settings.delete_notices_fork_1=- 如果该仓库为公开的,则在删除仓库后所有的派生仓库都将转换成独立的仓库。 +settings.delete_notices_fork_2=- 如果该仓库为私有,则会同时删除所有的派生仓库。 +settings.delete_notices_fork_3=- 如果您想要保留派生仓库,请先将可见性修改为公开的后再进行删除操作。 +settings.update_settings_success=仓库设置更新成功! +settings.transfer_owner=新拥有者 +settings.make_transfer=确认转移仓库 +settings.transfer_succeed=仓库所有权转移成功! +settings.confirm_delete=确认删除仓库 +settings.add_collaborator=增加新的协作者 +settings.add_collaborator_success=成功添加新的协作者! +settings.remove_collaborator_success=被操作的协作者已经被收回权限! +settings.search_user_placeholder=搜索用户... +settings.user_is_org_member=被操作的用户是组织成员,因此无法添加为协作者! +settings.add_webhook=添加 Web 钩子 +settings.hooks_desc=Web 钩子允许您设定在 Gogs 上发生指定事件时对指定 URL 发送 POST 通知。查看 <a target="_blank" href="%s">Webhooks 文档</a> 获取更多信息。 +settings.webhook_deletion=删除 Web 钩子 +settings.webhook_deletion_desc=删除该 Web 钩子将会删除与其有关的信息和推送历史。是否继续? +settings.webhook_deletion_success=Web 钩子删除成功! +settings.webhook.request=请求内容 +settings.webhook.response=响应内容 +settings.webhook.headers=头信息 +settings.webhook.payload=推送内容 +settings.webhook.body=响应体 +settings.githooks_desc=Git 钩子是由 Git 本身提供的功能,以下为 Gogs 所支持的钩子列表。 +settings.githook_edit_desc=如果钩子未启动,则会显示样例文件中的内容。如果想要删除某个钩子,则提交空白文本即可。 +settings.githook_name=钩子名称 +settings.githook_content=钩子文本 +settings.update_githook=更新钩子设置 +settings.add_webhook_desc=我们会通过 <code>POST</code> 请求将订阅事件信息发送至向指定 URL 地址。您可以设置不同的数据接收方式(JSON 或 <code>x-www-form-urlencoded</code>)。 请查阅 <a target="_blank" href="%s">Webhooks 文档</a> 获取更多信息。 +settings.payload_url=推送地址 +settings.content_type=数据格式 +settings.secret=密钥文本 +settings.slack_username=服务名称 +settings.slack_icon_url=图标 URL +settings.slack_color=颜色代码 +settings.event_desc=请设置您希望触发 Web 钩子的事件: +settings.event_push_only=只推送 <code>push</code> 事件。 +settings.event_send_everything=请把 <strong>一切</strong> 都给我 +settings.event_choose=我的命运自己主宰 +settings.event_create=创建 +settings.event_create_desc=创建分支或标签 +settings.event_push=推送 +settings.event_push_desc=Git 仓库推送 +settings.active=是否激活 +settings.active_helper=当指定事件发生时我们将会触发此 Web 钩子。 +settings.add_hook_success=Web 钩子添加成功! +settings.update_webhook=更新 Web 钩子 +settings.update_hook_success=Web 钩子更新成功! +settings.delete_webhook=删除 Web 钩子 +settings.recent_deliveries=最近推送记录 +settings.hook_type=钩子类型 +settings.add_slack_hook_desc=为您的仓库增加 <a href="%s">Slack</a> 集成。 +settings.slack_token=令牌 +settings.slack_domain=域名 +settings.slack_channel=频道 +settings.deploy_keys=管理部署密钥 +settings.add_deploy_key=添加部署密钥 +settings.no_deploy_keys=您还没有添加任何部署密钥。 +settings.title=标题 +settings.deploy_key_content=密钥文本 +settings.key_been_used=部署密钥已经被使用! +settings.key_name_used=使用相同名称的部署密钥已经存在! +settings.add_key_success=新的部署密钥 '%s' 添加成功! +settings.deploy_key_deletion=删除部署密钥 +settings.deploy_key_deletion_desc=删除该部署密钥会移除本仓库所以相关的操作权限。是否继续? +settings.deploy_key_deletion_success=删除部署密钥成功! + +diff.browse_source=浏览代码 +diff.parent=父节点 +diff.commit=当前提交 +diff.data_not_available=暂无可用数据 +diff.show_diff_stats=显示文件统计 +diff.stats_desc=共有 <strong> %d 个文件被更改</strong>,包括 <strong>%d 次插入</strong> 和 <strong>%d 次删除</strong> +diff.bin=二进制 +diff.view_file=查看文件 + +release.releases=版本发布 +release.new_release=发布新版 +release.draft=草稿 +release.prerelease=预发行 +release.stable=稳定 +release.edit=编辑 +release.ahead=在该版本发布之后已有 <strong>%d</strong> 次代码提交到 %s 分支 +release.source_code=源代码 +release.new_subheader=发布版本对产品进行迭代。 +release.edit_subheader=详细的变更日志可以帮助用户更好地了解产品做了哪些改进。 +release.tag_name=标签名称 +release.target=目标分支 +release.tag_helper=选择或创建一个已经存在的标签 +release.title=标题 +release.content=内容 +release.write=内容编辑 +release.preview=效果预览 +release.loading=正在加载... +release.prerelease_desc=这是一个预发行版本 +release.prerelease_helper=我们会告知用户不建议将本次发布投入生产环境使用。 +release.cancel=取消 +release.publish=发布版本 +release.save_draft=保存草稿 +release.edit_release=编辑发布信息 +release.delete_release=删除此次发布 +release.deletion=删除版本发布操作 +release.deletion_desc=删除该版本发布将会移除相应的 Git 标签。是否继续? +release.deletion_success=版本发布删除成功! +release.tag_name_already_exist=已经存在使用相同标签进行发布的版本。 +release.downloads=下载附件 + +[org] +org_name_holder=组织名称 +org_full_name_holder=组织全名 +org_name_helper=伟大的组织都有一个简短而寓意深刻的名字。 +create_org=创建组织 +repo_updated=最后更新于 +people=组织成员 +invite_someone=邀请他人加入 +teams=组织团队 +lower_members=名成员 +lower_repositories=个仓库 +create_new_team=创建新的团队 +org_desc=组织描述 +team_name=团队名称 +team_desc=团队描述 +team_name_helper=您可以使用该名称来通知该组全体成员。 +team_desc_helper=一句话描述这个团队是做什么的。 +team_permission_desc=请选择该团队所具有的权限等级: + +form.name_reserved=组织名称 '%s' 是被保留的。 +form.name_pattern_not_allowed=组织名称不允许 '%s' 的格式。 + +settings=组织设置 +settings.options=基本设置 +settings.full_name=组织全名 +settings.website=官方网站 +settings.location=所在地区 +settings.update_settings=更新组织设置 +settings.update_setting_success=组织设置更新成功! +settings.change_orgname_prompt=该操作将会影响到所有与该组织有关的链接 +settings.update_avatar_success=组织头像更新成功! +settings.delete=删除组织 +settings.delete_account=删除当前组织 +settings.delete_prompt=删除操作会永久清除该组织的信息,并且 <strong>不可恢复</strong>! +settings.confirm_delete_account=确认删除组织 +settings.delete_org_title=组织删除操作 +settings.delete_org_desc=该组织将被永久性删除,您确定要继续操作吗? +settings.hooks_desc=在此处添加的 Web 钩子将会应用到该组织下的 <strong>所有仓库</strong>。 + +members.public=公开成员 +members.public_helper=设为私有 +members.private=私有成员 +members.private_helper=设为公开 +members.owner=管理员 +members.member=普通成员 +members.conceal=隐藏身份 +members.remove=移除成员 +members.leave=离开组织 +members.invite_desc=请输入被邀请到组织 %s 的用户名称: +members.invite_now=立即邀请 + +teams.join=加入团队 +teams.leave=离开团队 +teams.read_access=读取权限 +teams.read_access_helper=这个团队将拥有查看和克隆所属仓库的权限。 +teams.write_access=写入权限 +teams.write_access_helper=这个团队将拥有查看、克隆和推送所属仓库的权限。 +teams.admin_access=管理权限 +teams.admin_access_helper=这个团队将拥有查看、克隆、推送和添加其他组织成员到团队的权限。 +teams.no_desc=该团队暂无描述 +teams.settings=团队设置 +teams.owners_permission_desc=管理员团队对 <strong>所有仓库</strong> 具有操作权限,且对组织具有 <strong>管理员权限</strong>。 +teams.members=团队成员 +teams.update_settings=更新团队设置 +teams.delete_team=删除当前团队 +teams.add_team_member=添加团队成员 +teams.delete_team_title=团队删除操作 +teams.delete_team_desc=删除操作会永久清除有关该团队的信息,您确定要继续操作吗?团队成员可能会失去对某些仓库的操作权限。 +teams.delete_team_success=指定团队删除成功! +teams.read_permission_desc=该团队拥有对所属仓库的 <strong>读取</strong> 权限,团队成员可以进行查看和克隆等只读操作。 +teams.write_permission_desc=该团队拥有对所属仓库的 <strong>读取</strong> 和 <strong>写入</strong> 的权限。 +teams.admin_permission_desc=该团队拥有一定的 <strong>管理</strong> 权限,团队成员可以读取、克隆、推送以及添加其它仓库协作者。 +teams.repositories=团队仓库 +teams.add_team_repository=添加团队仓库 +teams.remove_repo=移除仓库 +teams.add_nonexistent_repo=您尝试添加到团队的仓库不存在,请先创建仓库! + +[admin] +dashboard=控制面板 +users=用户管理 +organizations=组织管理 +repositories=仓库管理 +authentication=授权认证管理 +config=应用配置管理 +notices=系统提示管理 +monitor=应用监控面板 +first_page=首页 +last_page=末页 +total=总计:%d + +dashboard.statistic=应用统计数据 +dashboard.operations=管理员操作 +dashboard.system_status=系统监视状态 +dashboard.statistic_info=Gogs 数据库统计:<b>%d</b> 位用户,<b>%d</b> 个组织,<b>%d</b> 个公钥,<b>%d</b> 个仓库,<b>%d</b> 个仓库关注,<b>%d</b> 个赞,<b>%d</b> 次行为,<b>%d</b> 条权限记录,<b>%d</b> 张工单,<b>%d</b> 次评论,<b>%d</b> 个社交帐号,<b>%d</b> 个用户关注,<b>%d</b> 个镜像,<b>%d</b> 个版本发布,<b>%d</b> 个登录源,<b>%d</b> 个 Web 钩子,<b>%d</b> 个里程碑,<b>%d</b> 个标签,<b>%d</b> 个钩子任务,<b>%d</b> 个团队,<b>%d</b> 个更新任务,<b>%d</b> 个附件。 +dashboard.operation_name=操作名称 +dashboard.operation_switch=开关 +dashboard.operation_run=执行 +dashboard.clean_unbind_oauth=清理未绑定社交帐号 +dashboard.clean_unbind_oauth_success=所有未绑定社交数据清除成功! +dashboard.delete_inactivate_accounts=删除所有未激活帐户 +dashboard.delete_inactivate_accounts_success=所有未激活帐号清除成功! +dashboard.delete_repo_archives=删除所有仓库存档 +dashboard.delete_repo_archives_success=所有仓库存档清除成功! +dashboard.delete_missing_repos=删除所有丢失 Git 文件的仓库记录 +dashboard.delete_missing_repos_success=所有丢失 Git 文件的仓库记录删除成功! +dashboard.git_gc_repos=对仓库进行垃圾回收 +dashboard.git_gc_repos_success=所有仓库垃圾回收成功! +dashboard.resync_all_sshkeys=重新生成 '.ssh/authorized_keys' 文件(警告:不是 Gogs 的密钥也会被删除) +dashboard.resync_all_sshkeys_success=所有公钥重新生成成功! +dashboard.resync_all_update_hooks=重新生成所有仓库的 Update 钩子(用于自定义配置文件被修改) +dashboard.resync_all_update_hooks_success=所有仓库的 Update 钩子重新生成成功! + +dashboard.server_uptime=服务运行时间 +dashboard.current_goroutine=当前 Goroutines 数量 +dashboard.current_memory_usage=当前内存使用量 +dashboard.total_memory_allocated=所有被分配的内存 +dashboard.memory_obtained=内存占用量 +dashboard.pointer_lookup_times=指针查找次数 +dashboard.memory_allocate_times=内存分配次数 +dashboard.memory_free_times=内存释放次数 +dashboard.current_heap_usage=当前 Heap 内存使用量 +dashboard.heap_memory_obtained=Heap 内存占用量 +dashboard.heap_memory_idle=Heap 内存空闲量 +dashboard.heap_memory_in_use=正在使用的 Heap 内存 +dashboard.heap_memory_released=被释放的 Heap 内存 +dashboard.heap_objects=Heap 对象数量 +dashboard.bootstrap_stack_usage=启动 Stack 使用量 +dashboard.stack_memory_obtained=被分配的 Stack 内存 +dashboard.mspan_structures_usage=MSpan 结构内存使用量 +dashboard.mspan_structures_obtained=被分配的 MSpan 结构内存 +dashboard.mcache_structures_usage=MCache 结构内存使用量 +dashboard.mcache_structures_obtained=被分配的 MCache 结构内存 +dashboard.profiling_bucket_hash_table_obtained=被分配的剖析哈希表内存 +dashboard.gc_metadata_obtained=被分配的 GC 元数据内存 +dashboard.other_system_allocation_obtained=其它被分配的系统内存 +dashboard.next_gc_recycle=下次 GC 内存回收量 +dashboard.last_gc_time=距离上次 GC 时间 +dashboard.total_gc_time=GC 执行时间总量 +dashboard.total_gc_pause=GC 暂停时间总量 +dashboard.last_gc_pause=上次 GC 暂停时间 +dashboard.gc_times=GC 执行次数 + +users.user_manage_panel=用户管理面板 +users.new_account=创建新的帐户 +users.name=用户名 +users.activated=已激活 +users.admin=管理员 +users.repos=仓库数 +users.created=创建时间 +users.send_register_notify=向用户发送注册通知邮件 +users.new_success=新的用户 '%s' 创建成功! +users.edit=编辑 +users.auth_source=认证源 +users.local=本地 +users.auth_login_name=认证登录名称 +users.password_helper=将值留空使其保持不变。 +users.update_profile_success=该用户信息更新成功! +users.edit_account=编辑用户信息 +users.is_activated=该用户已被激活 +users.is_admin=该用户具有管理员权限 +users.allow_git_hook=该用户具有创建 Git 钩子的权限 +users.allow_import_local=该用户具有导入本地仓库的权限 +users.update_profile=更新用户信息 +users.delete_account=删除该用户 +users.still_own_repo=该帐户仍然是某些仓库的拥有者,您必须先转移或删除它们才能执行删除帐户操作! +users.still_has_org=该帐户仍旧是某些组织的成员,您必须先使其离开或删除组织。 +users.deletion_success=用户删除成功! + +orgs.org_manage_panel=组织管理面板 +orgs.name=组织名称 +orgs.teams=团队数 +orgs.members=成员数 + +repos.repo_manage_panel=仓库管理界面 +repos.owner=所有者 +repos.name=仓库名称 +repos.private=私有库 +repos.watches=关注数 +repos.stars=点赞数 +repos.issues=工单数 + +auths.auth_manage_panel=认证管理面板 +auths.new=添加新的源 +auths.name=认证名称 +auths.type=认证类型 +auths.enabled=已启用 +auths.updated=最后更新时间 +auths.auth_type=认证类型 +auths.auth_name=认证名称 +auths.domain=域名 +auths.host=主机地址 +auths.port=主机端口 +auths.bind_dn=绑定 DN +auths.bind_password=绑定密码 +auths.bind_password_helper=警告:该密码将会以明文的形式保存在数据库中。请不要使用拥有高权限的帐户! +auths.user_base=用户搜索基准 +auths.user_dn=User DN +auths.attribute_name=名字属性 +auths.attribute_surname=姓氏属性 +auths.attribute_mail=邮箱属性 +auths.filter=用户过滤规则 +auths.admin_filter=管理员过滤规则 +auths.ms_ad_sa=Ms Ad SA +auths.smtp_auth=SMTP 认证类型 +auths.smtphost=SMTP 主机地址 +auths.smtpport=SMTP 主机端口 +auths.allowed_domains=域名白名单 +auths.allowed_domains_helper=将值留空表示不对域名做任何限制。多个域名之间需要使用逗号 ',' 分隔。 +auths.enable_tls=启用 TLS 加密 +auths.skip_tls_verify=忽略 TLS 验证 +auths.pam_service_name=PAM 服务名称 +auths.enable_auto_register=允许授权用户自动注册 +auths.tips=帮助提示 +auths.edit=编辑认证设置 +auths.activated=该授权认证已经启用 +auths.new_success=新的授权源 "%s" 添加成功! +auths.update_success=认证设置更新成功! +auths.update=更新认证设置 +auths.delete=删除该认证 +auths.delete_auth_title=删除认证操作 +auths.delete_auth_desc=该认证将被删除。是否继续? +auths.deletion_success=授权源删除成功! + +config.server_config=服务器配置 +config.app_name=应用名称 +config.app_ver=应用版本 +config.app_url=应用 URL +config.domain=应用域名 +config.offline_mode=离线模式 +config.disable_router_log=关闭路由日志 +config.run_user=运行用户 +config.run_mode=运行模式 +config.repo_root_path=仓库根目录 +config.static_file_root_path=静态文件根目录 +config.log_file_root_path=日志文件根目录 +config.script_type=脚本类型 +config.reverse_auth_user=反向代理认证 +config.db_config=数据库配置 +config.db_type=数据库类型 +config.db_host=主机地址 +config.db_name=数据库名称 +config.db_user=连接用户 +config.db_ssl_mode=SSL 模式 +config.db_ssl_mode_helper=(仅限 "postgres" 使用) +config.db_path=数据库路径 +config.db_path_helper=(用于 "sqlite3" 和 "tidb") +config.service_config=服务配置 +config.register_email_confirm=注册邮件确认 +config.disable_register=关闭注册功能 +config.show_registration_button=显示注册按钮 +config.require_sign_in_view=强制登录浏览 +config.enable_cache_avatar=开启缓存头像 +config.mail_notify=邮件通知提醒 +config.disable_key_size_check=禁用密钥最小长度检查 +config.enable_captcha=启用验证码服务 +config.active_code_lives=激活用户链接有效期 +config.reset_password_code_lives=重置密码链接有效期 +config.webhook_config=Web 钩子配置 +config.queue_length=队列长度 +config.deliver_timeout=推送超时 +config.skip_tls_verify=忽略 TLS 验证 +config.mailer_config=邮件配置 +config.mailer_enabled=启用服务 +config.mailer_disable_helo=禁用 HELO 操作 +config.mailer_name=发送者名称 +config.mailer_host=邮件主机地址 +config.mailer_user=发送者帐号 +config.oauth_config=社交帐号配置 +config.oauth_enabled=启用服务 +config.cache_config=Cache 配置 +config.cache_adapter=Cache 适配器 +config.cache_interval=Cache 周期 +config.cache_conn=Cache 连接字符串 +config.session_config=Session 配置 +config.session_provider=Session 提供者 +config.provider_config=提供者配置 +config.cookie_name=Cookie 名称 +config.enable_set_cookie=启用设置 Cookie +config.gc_interval_time=GC 周期 +config.session_life_time=Session 生命周期 +config.https_only=仅限 HTTPS +config.cookie_life_time=Cookie 生命周期 +config.picture_config=图片配置 +config.picture_service=图片服务 +config.disable_gravatar=禁用 Gravatar 头像 +config.log_config=日志配置 +config.log_mode=日志模式 + +monitor.cron=Cron 任务 +monitor.name=任务名称 +monitor.schedule=任务安排 +monitor.next=下次执行时间 +monitor.previous=上次执行时间 +monitor.execute_times=执行次数 +monitor.process=运行中进程 +monitor.desc=进程描述 +monitor.start=开始时间 +monitor.execute_time=已执行时间 + +notices.system_notice_list=系统提示管理 +notices.type=提示类型 +notices.type_1=仓库 +notices.desc=描述 +notices.op=操作 +notices.delete_success=系统提示删除成功! + +[action] +create_repo=创建了仓库 <a href="%s">%s</a> +rename_repo=重命名仓库 <code>%[1]s</code> 为 <a href="%[2]s">%[3]s</a> +commit_repo=推送了 <a href="%[1]s/src/%[2]s">%[3]s</a> 分支的代码到 <a href="%[1]s">%[4]s</a> +create_issue=`创建了工单 <a href="%s/issues/%s">%s#%[2]s</a>` +create_pull_request=`创建了合并请求 <a href="%s/pulls/%s">%s#%[2]s</a>` +comment_issue=`评论了工单 <a href="%s/issues/%s">%s#%[2]s</a>` +merge_pull_request=`合并了合并请求 <a href="%s/pulls/%s">%s#%[2]s</a>` +transfer_repo=将仓库 <code>%s</code> 转移至 <a href="%s">%s</a> +push_tag=推送了标签 <a href="%s/src/%s">%[2]s</a> 到 <a href="%[1]s">%[3]s</a> +compare_2_commits=查看 2 次提交的内容对比 + +[tool] +ago=之前 +from_now=之后 +now=现在 +1s=1 秒%s +1m=1 分钟%s +1h=1 小时%s +1d=1 天%s +1w=1 周%s +1mon=1 月%s +1y=1 年%s +seconds=%d 秒%s +minutes=%d 分钟%s +hours=%d 小时%s +days=%d 天%s +weeks=%d 周%s +months=%d 月%s +years=%d 年%s +raw_seconds=秒 +raw_minutes=分钟 + +[dropzone] +default_message=拖曳文件到此处或单击上传 +invalid_input_type=您不能上传该类型的文件 +file_too_big=文件体积({{filesize}} MB)超过了最大允许体积({{maxFilesize}} MB) +remove_file=移除文件 + diff --git a/conf/locale/locale_zh-HK.ini b/conf/locale/locale_zh-HK.ini index c01b8792..9924f849 100755 --- a/conf/locale/locale_zh-HK.ini +++ b/conf/locale/locale_zh-HK.ini @@ -1,992 +1,1009 @@ -app_desc=基於 Go 語言的自助 Git 服務
-
-home=首頁
-dashboard=控制面版
-explore=探索
-help=幫助
-sign_in=登錄
-sign_out=退出
-sign_up=註冊
-register=註冊
-website=官方網站
-version=當前版本
-page=頁面
-template=模版
-language=語言選項
-create_new=Create...
-user_profile_and_more=用戶信息及更多
-signed_in_as=已登錄用戶
-
-username=用戶名
-email=郵箱
-password=密碼
-re_type=確認密碼
-captcha=驗證碼
-
-repository=倉庫
-organization=組織
-mirror=鏡像
-new_repo=創建新的倉庫
-new_migrate=遷移外部倉庫
-new_fork=新的派生倉庫
-new_org=創建新的組織
-manage_org=管理我的組織
-admin_panel=管理面版
-account_settings=帳戶設置
-settings=帳戶設置
-your_profile=個人信息
-your_settings=用戶設置
-
-news_feed=最新活動
-pull_requests=合併請求
-issues=問題管理
-
-cancel=取消
-
-[search]
-search=搜尋...
-repository=倉庫
-user=用戶
-issue=工單
-code=程式碼
-
-[install]
-install=安裝頁面
-title=首次執行安裝程序
-docker_helper=If you're running Gogs inside Docker, please read <a target="_blank" href="%s">Guidelines</a> carefully before you change anything in this page!
-requite_db_desc=Gogs requires MySQL, PostgreSQL, SQLite3 or TiDB.
-db_title=數據庫設置
-db_type=數據庫類型
-host=數據庫主機
-user=數據庫用戶
-password=數據庫用戶密碼
-db_name=數據庫名稱
-db_helper=如果您使用 MySQL,請使用 INNODB 引擎以及 utf8_general_ci 字符集。
-ssl_mode=SSL 模式
-path=數據庫文件路徑
-sqlite_helper=The file path of SQLite3 or TiDB database.
-err_empty_db_path=SQLite3 or TiDB database path cannot be empty.
-err_invalid_tidb_name=TiDB database name does not allow characters "." and "-".
-no_admin_and_disable_registration=You cannot disable registration without creating an admin account.
-err_empty_admin_password=Admin password cannot be empty.
-
-general_title=應用基本設置
-app_name=應用名稱
-app_name_helper=為您的組織取個響亮而又偉大的名稱
-repo_path=倉庫根目錄
-repo_path_helper=所有 Git 遠程倉庫都將被存放於該目錄。
-run_user=執行系統用戶
-run_user_helper=該用戶必須具有對倉庫根目錄和執行 Gogs 的操作權限。
-domain=域名
-domain_helper=該設置影響 SSH 複製地址。
-ssh_port=SSH 埠
-ssh_port_helper=您的 SSH 服務正在使用此埠號,若要禁用SSH 功能請保持欄位空白。
-http_port=HTTP 端口號
-http_port_helper=應用監聽的端口號
-app_url=應用 URL
-app_url_helper=該設置影響 HTTP/HTTPS 複製地址和一些郵箱中的連結。
-
-optional_title=可選設置
-email_title=電子郵件服務設定
-smtp_host=SMTP 主機
-smtp_from=郵件來自
-smtp_from_helper=郵件來自地址,遵循 RFC 5322 標准。可以是一個單純的郵箱地址或使用 "name" <email@example.com> 的格式。
-mailer_user=發送郵箱
-mailer_password=發送郵箱密碼
-register_confirm=啟用註冊郵箱確認
-mail_notify=啟用郵件通知提醒
-server_service_title=伺服器和其他服務設置
-offline_mode=啓用離線模式
-offline_mode_popup=在部署模式下也禁用從 CDN 獲取文件,所有的資源將從本地伺服器獲取。
-disable_gravatar=禁用 Gravatar 服務
-disable_gravatar_popup=禁用 Gravatar 和自定義源,僅使用由用戶上傳或默認的頭像。
-disable_registration=禁止用戶自主註冊
-disable_registration_popup=禁止用戶自主註冊功能,只有管理員可以添加帳號。
-enable_captcha=Enable Captcha
-enable_captcha_popup=Require validate captcha for user self-registration.
-require_sign_in_view=啓用登錄訪問限制
-require_sign_in_view_popup=只有已登錄的用戶才能夠訪問頁面,否則將只能看到登錄或註冊頁面。
-admin_setting_desc=創建管理員帳號並不是必須的,因為 ID=1 的用戶將自動獲得管理員權限。
-admin_title=管理員帳號設置
-admin_name=管理員用戶名
-admin_password=管理員密碼
-confirm_password=確認密碼
-admin_email=管理員郵箱
-install_gogs=立即安裝
-test_git_failed=無法識別 'git' 命令:%v
-sqlite3_not_available=您所使用的發行版本不支持 SQLite3,請從 %s 下載官方構建版,而不是 gobuild 版本。
-invalid_db_setting=數據庫設置不正確:%v
-invalid_repo_path=倉庫根目錄設置不正確:%v
-run_user_not_match=執行系統用戶非當前用戶:%s -> %s
-save_config_failed=應用配置保存失敗:%v
-invalid_admin_setting=管理員帳戶設置不正確:%v
-install_success=您好!我們很高興您選擇使用 Gogs,祝您使用愉快,代碼從此無 BUG!
-
-[home]
-uname_holder=用戶名或郵箱
-password_holder=密碼
-switch_dashboard_context=切換控制面版用戶
-my_repos=我的倉庫
-collaborative_repos=參與協作的倉庫
-my_orgs=我的組織
-my_mirrors=我的鏡像
-view_home=訪問 %s
-
-issues.in_your_repos=屬於該用戶倉庫的
-
-[explore]
-repos=探索倉庫
-
-[auth]
-create_new_account=創建帳戶
-register_hepler_msg=已經註冊?立即登錄!
-social_register_hepler_msg=已經註冊?立即綁定!
-disable_register_prompt=對不起,註冊功能已被關閉。請聯系網站管理員。
-disable_register_mail=對不起,註冊郵箱確認功能已被關閉。
-remember_me=記住登錄
-forgot_password=忘記密碼
-forget_password=忘記密碼?
-sign_up_now=還沒帳戶?馬上註冊。
-confirmation_mail_sent_prompt=一封新的確認郵件已經被發送至 <b>%s</b>,請檢查您的收件箱並在 %d 小時內完成確認註冊操作。
-sign_in_to_account=Sign in to your account
-active_your_account=激活您的帳戶
-resent_limit_prompt=對不起,您請求發送激活郵件過於頻繁,請等待 3 分鐘後再試!
-has_unconfirmed_mail=%s 您好,您有一封發送至( <b>%s</b>) 但未被確認的郵件。如果您未收到激活郵件,或需要重新發送,請單擊下方的按鈕。
-resend_mail=單擊此處重新發送確認郵件
-email_not_associate=您輸入的郵箱地址未被關聯到任何帳號!
-send_reset_mail=單擊此處(重新)發送您的密碼重置郵件
-reset_password=重置密碼
-invalid_code=對不起,您的確認代碼已過期或已失效。
-reset_password_helper=單擊此處重置密碼
-password_too_short=密碼長度不能少於 6 位!
-
-[mail]
-activate_account=Please activate your account
-activate_email=Verify your e-mail address
-reset_password=Reset your password
-register_success=Register success, Welcome
-
-[modal]
-yes=確認操作
-no=取消操作
-modify=確認修改
-
-[form]
-UserName=用戶名
-RepoName=倉庫名稱
-Email=郵箱地址
-Password=密碼
-Retype=確認密碼
-SSHTitle=SSH 密鑰名稱
-HttpsUrl=HTTPS URL 地址
-PayloadUrl=推送地址
-TeamName=團隊名稱
-AuthName=認證名稱
-AdminEmail=管理員郵箱
-
-require_error=不能為空。
-alpha_dash_error=必須為英文字母、阿拉伯數字或橫線(-_)。
-alpha_dash_dot_error=必須為英文字母、阿拉伯數字、橫線(-_)或點。
-size_error=長度必須為 %s。
-min_size_error=長度最小為 %s 個字符。
-max_size_error=長度最大為 %s 個字符。
-email_error=不是一個有效的郵箱地址。
-url_error=不是一個有效的 URL。
-unknown_error=未知錯誤:
-captcha_incorrect=驗證碼未匹配。
-password_not_match=密碼與確認密碼未匹配。
-
-username_been_taken=用戶名已經被佔用。
-repo_name_been_taken=倉庫名稱已經被佔用。
-org_name_been_taken=組織名稱已經被佔用。
-team_name_been_taken=團隊名稱已經被佔用。
-email_been_used=郵箱地址已經被使用。
-illegal_team_name=團隊名稱包含不合法字符。
-username_password_incorrect=用戶名或密碼不正確。
-enterred_invalid_repo_name=請檢查您輸入的倉庫名稱是正確。
-enterred_invalid_owner_name=請檢查您輸入的新所有者用戶名是否正確。
-enterred_invalid_password=請檢查您輸入的密碼是否正確。
-user_not_exist=被操作的用戶不存在!
-last_org_owner=被移除用戶為最後一位管理員。請添加一位新的管理員再進行移除成員操作!
-
-invalid_ssh_key=很抱歉,我們無法驗證您輸入的 SSH 密鑰:%s
-unable_verify_ssh_key=Gogs 無法驗證您輸入的 SSH 密鑰,但我們假設那是有效的密鑰,請您自行確保其有效性!
-auth_failed=授權驗證失敗:%v
-
-still_own_repo=您的帳戶仍然是某些倉庫的擁有者,您必須先轉移或刪除它們才能執行刪除帳戶操作!
-still_has_org=您的帳戶仍舊是某些組織的成員,您必須先離開或刪除組織。
-org_still_own_repo=該組織仍然是某些倉庫的擁有者,您必須先轉移或刪除它們才能執行刪除組織操作!
-
-still_own_user=該授權認證依舊被部分用戶使用,請先刪除該部分用戶後再試!
-
-target_branch_not_exist=目標分支不存在
-
-[user]
-change_avatar=到 gravatar.com 上修改您的頭像
-change_custom_avatar=到個人設置中修改頭像
-join_on=加入於
-repositories=倉庫列表
-activity=公開活動
-followers=關註者
-starred=已讚好
-following=關註中
-
-form.name_reserved=用戶名 '%s' 是被保留的。
-form.name_pattern_not_allowed=用戶名不允許 '%s' 的格式。
-
-[settings]
-profile=個人信息
-password=修改密碼
-ssh_keys=管理 SSH 密鑰
-social=社交帳號綁定
-applications=管理授權應用
-orgs=管理組織
-delete=刪除帳戶
-uid=用戶 ID
-
-public_profile=公開信息
-profile_desc=您的郵箱地址將會被公開,並被用於接收帳戶的所有提醒和通知。
-full_name=自定義名稱
-website=個人網站
-location=所在地區
-update_profile=更新信息
-update_profile_success=您的個人信息更新成功!
-change_username=用戶名將被修改
-change_username_prompt=This change will affect the way how links relate to your account.
-continue=繼續操作
-cancel=取消操作
-
-enable_custom_avatar=啟動自定義頭像
-enable_custom_avatar_helper=激活該選項來禁止從 Gravatar 獲取頭像
-choose_new_avatar=選擇新的頭像
-update_avatar=更新頭像設置
-uploaded_avatar_not_a_image=上傳的文件不是一張圖片!
-no_custom_avatar_available=沒有任何自定義頭像,無法激活該選項。
-update_avatar_success=您的頭像設置更新成功!
-
-change_password=修改密碼
-old_password=當前密碼
-new_password=新的密碼
-retype_new_password=Retype New Password
-password_incorrect=當前密碼不正確!
-change_password_success=密碼修改成功!您現在可以使用新的密碼登錄。
-
-emails=電子郵件地址
-manage_emails=管理電子郵件地址
-email_desc=您的主要邮箱地址将被用于通知提醒和其它操作。
-primary=主要
-primary_email=设为主要
-delete_email=刪除
-email_deletion=E-mail Deletion
-email_deletion_desc=Delete this e-mail address will remove related information from your account. Do you want to continue?
-email_deletion_success=E-mail has been deleted successfully!
-add_new_email=添加新的電子郵件地址
-add_email=添加電子郵件
-add_email_confirmation_sent=一封待確認的電子郵件已發送到 '%s',請在%d 小時內檢查您的收件箱,並完成確認過程。
-add_email_success=新的邮箱地址添加成功。
-
-manage_ssh_keys=管理 SSH 密鑰
-add_key=增加密鑰
-ssh_desc=以下是與您帳戶所關聯的 SSH 密鑰,如果您發現有陌生的密鑰,請立即刪除它!
-ssh_helper=<strong>需要幫助嗎?</strong> 請查看有關 <a href="%s"> 如何生成 SSH 密鑰</a> 的指南或 <a href="%s"> SSH 的常見問題</a> 的疑難排解。
-add_new_key=增加 SSH 密鑰
-ssh_key_been_used=公共密鑰已經被使用
-ssh_key_name_used=使用相同名稱的公共密鑰已經存在!
-key_name=密鑰名稱
-key_content=密鑰內容
-add_key_success=新的 SSH 密鑰 '%s' 添加成功!
-delete_key=刪除
-ssh_key_deletion=刪除 SSH 公鑰
-ssh_key_deletion_desc=刪除該 SSH 公鑰將刪除所有與您帳戶相關的訪問權限。是否繼續?
-ssh_key_deletion_success=SSH 公鑰刪除成功!
-add_on=增加於
-last_used=上次使用在
-no_activity=沒有最近活動
-key_state_desc=該密鑰在 7 天內被使用過
-token_state_desc=此token在過去七天內曾經被使用過
-
-manage_social=管理關聯社交帳戶
-social_desc=以下是與您帳戶所關聯的社交帳號,如果您發現有陌生的關聯,請立即解除綁定!
-unbind=解除綁定
-unbind_success=社交帳號解除綁定成功!
-
-manage_access_token=管理個人操作令牌
-generate_new_token=生成新的令牌
-tokens_desc=您所產生的token將被用來存取Gogs APIs
-new_token_desc=目前為止,任何令牌都對您的帳戶擁有完整的操作權限。
-token_name=令牌名稱
-generate_token=生成令牌
-generate_token_succees=新的操作令牌生成成功!您必須立即複製到一個安全的地方,因為該令牌只會顯示一次!
-delete_token=删除令牌
-access_token_deletion=刪除個人的連接token
-access_token_deletion_desc=刪除此連接token將會刪除與相關應用程式的連結。您想要繼續嗎?
-delete_token_success=您的連接token已成功刪除。請記得更新您的應用程式。
-
-delete_account=刪除當前帳戶
-delete_prompt=刪除操作會永久清除您的帳戶信息,並且 <strong>不可恢復</strong>!
-confirm_delete_account=確認刪除帳戶
-delete_account_title=帳戶刪除操作
-delete_account_desc=該帳戶將被永久性刪除,您確定要繼續操作嗎?
-
-[repo]
-owner=擁有者
-repo_name=倉庫名稱
-repo_name_helper=偉大的倉庫名稱一般都較短、令人深刻並且 <strong>獨一無二</strong> 的。
-visibility=可見度
-visiblity_helper=該倉庫為 <span class="ui red text">私有的</span>
-visiblity_helper_forced=Site admin has forced all new repositories to be <span class="ui red text">Private</span>
-visiblity_fork_helper=(修改該值將會影響到所有派生倉庫)
-fork_repo=派生倉庫
-fork_from=派生自
-fork_visiblity_helper=派生倉庫無法修改可見性。
-repo_desc=倉庫描述
-repo_lang=倉庫語言
-repo_lang_helper=Select .gitignore files
-license=授權許可
-license_helper=請選擇授權許可文件
-readme=Readme
-readme_helper=Select a readme template
-auto_init=Initialize this repository with selected files and template
-create_repo=創建倉庫
-default_branch=默認分支
-mirror_interval=鏡像同步周期(小時)
-
-form.name_reserved=倉庫名稱 '%s' 是被保留的。
-form.name_pattern_not_allowed=倉庫名稱不允許 '%s' 的格式。
-
-need_auth=需要授權驗證
-migrate_type=遷移類型
-migrate_type_helper=該倉庫將是一個 <span class="text blue">鏡像</span>
-migrate_repo=遷移倉庫
-migrate.clone_address=複製地址
-migrate.clone_address_desc=該地址可以是 HTTP/HTTPS/GIT URL 或本地服務器路徑。
-migrate.invalid_local_path=無效的本地路徑,該路徑不存在或不是一個目錄!
-
-forked_from=派生自
-fork_from_self=無法派生已經擁有的倉庫!
-copy_link=複製連結
-copy_link_success=Copied!
-copy_link_error=Press ⌘-C or Ctrl-C to copy
-click_to_copy=複製到剪切簿
-copied=複製成功
-clone_helper=不知道如何操作?訪問 <a target="_blank"href="%s"> 帮助説明</a> !
-unwatch=取消關註
-watch=關註
-unstar=取消讚好
-star=讚好
-fork=派生
-
-no_desc=暫無描述
-quick_guide=快速幫助
-clone_this_repo=複製當前倉庫
-create_new_repo_command=從命令行創建一個新的倉庫
-push_exist_repo=從命令行推送已經創建的倉庫
-repo_is_empty=This repository is empty, please come back later!
-
-
-branch=分支
-tree=目錄樹
-branch_and_tags=分支與標籤
-branches=分支列表
-tags=標籤列表
-issues=問題管理
-pulls=Pull Requests
-labels=標籤
-milestones=里程碑
-commits=提交歷史
-releases=版本發佈
-file_raw=原始文件
-file_history=文件歷史
-file_view_raw=查看原始文件
-file_permalink=永久連結
-
-commits.commits=次代碼提交
-commits.search=搜索提交歷史
-commits.find=查找
-commits.author=作者
-commits.message=備註
-commits.date=提交日期
-commits.older=更舊的提交
-commits.newer=更新的提交
-
-issues.new=創建問題
-issues.new.labels=標籤
-issues.new.no_label=未選擇標籤
-issues.new.clear_labels=清除已選取標籤
-issues.new.milestone=里程碑
-issues.new.no_milestone=未選擇里程碑
-issues.new.clear_milestone=清除已選取里程碑
-issues.new.open_milestone=開啟中的里程碑
-issues.new.closed_milestone=已關閉的里程碑
-issues.new.assignee=指派成員
-issues.new.clear_assignee=取消指派成員
-issues.new.no_assignee=未指派成員
-issues.create=創建問題
-issues.new_label=創建標籤
-issues.new_label_placeholder=標籤名稱...
-issues.create_label=創建標籤
-issues.open_tab=%d 個開啓中
-issues.close_tab=%d 個已關閉
-issues.filter_label=標籤篩選
-issues.filter_label_no_select=無篩選標籤
-issues.filter_milestone=里程碑篩選
-issues.filter_milestone_no_select=無篩選里程碑
-issues.filter_assignee=指派人篩選
-issues.filter_assginee_no_select=無篩選指派人
-issues.filter_type=類型篩選
-issues.filter_type.all_issues=所有問題
-issues.filter_type.assigned_to_you=指派給您的
-issues.filter_type.created_by_you=由您創建的
-issues.filter_type.mentioning_you=提及您的
-issues.filter_sort=排序
-issues.filter_sort.latest=最新創建
-issues.filter_sort.oldest=最早創建
-issues.filter_sort.recentupdate=最近更新
-issues.filter_sort.leastupdate=最少更新
-issues.filter_sort.mostcomment=最多評論
-issues.filter_sort.leastcomment=最少評論
-issues.opened_by=opened %[1]s by <a href="%[2]s">%[3]s</a>
-issues.opened_by_fake=由 %[2]s 於 %[1]s創建
-issues.previous=上一頁
-issues.next=下一頁
-issues.open_title=開啟中
-issues.closed_title=已關閉
-issues.num_comments=%d 條評論
-issues.commented_at=`於 <a id="%[1]s" href="#%[1]s">%[2]s</a> 評論`
-issues.no_content=尚未有任何內容
-issues.close_issue=關閉
-issues.close_comment_issue=關閉及評論
-issues.reopen_issue=重新開啟
-issues.reopen_comment_issue=重新開啟及評論
-issues.create_comment=評論
-issues.closed_at=`於 <a id="%[1]s" href="#%[1]s">%[2]s</a> 關閉`
-issues.reopened_at=`於 <a id="%[1]s" href="#%[1]s">%[2]s</a> 重新開啟`
-issues.commit_ref_at=`referenced this issue from a commit <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.poster=發佈者
-issues.admin=管理員
-issues.owner=所有者
-issues.sign_up_for_free=免費註冊
-issues.sign_in_require_desc=及加入到對話當中。如果您已經註冊,可以直接 <a href="%s">登錄及評論</a>
-issues.edit=編輯
-issues.cancel=取消
-issues.save=保存
-issues.label_title=標籤名稱
-issues.label_color=標籤顏色
-issues.label_count=%d 個標籤
-issues.label_open_issues=%d 個開啓的問題
-issues.label_edit=編輯
-issues.label_delete=刪除
-issues.label_modify=修改標籤
-issues.label_deletion=刪除標籤
-issues.label_deletion_desc=刪除該標籤將會移除所有問題中相關的訊息。是否繼續?
-issues.label_deletion_success=標籤刪除成功!
-
-pulls.compare_changes=對比文件變化
-pulls.compare_changes_desc=對比兩個分支間的文件變化及發起一個合併請求。
-pulls.compare_base=base
-pulls.compare_compare=compare
-pulls.filter_branch=Filter branch
-pulls.no_results=未找到結果
-pulls.nothing_to_compare=There is nothing to compare because base and head branches are even.
-pulls.has_pull_request=`There is already a pull request between these two targets: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>`
-pulls.create=Create Pull Request
-pulls.title_desc=wants to merge %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code>
-pulls.merged_title_desc=merged %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> %[4]s
-pulls.tab_conversation=Conversation
-pulls.tab_commits=Commits
-pulls.tab_files=Files changed
-pulls.reopen_to_merge=Please reopen this pull request to perform merge operation.
-pulls.merged=Merged
-pulls.has_merged=This pull request has been merged successfully!
-pulls.data_broken=Data of this pull request has been broken due to deletion of fork information.
-pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments.
-pulls.can_auto_merge_desc=You can perform auto-merge operation on this pull request.
-pulls.cannot_auto_merge_desc=You can't perform auto-merge operation because there are conflicts between commits.
-pulls.cannot_auto_merge_helper=Please use command line tool to solve it.
-pulls.merge_pull_request=Merge Pull Request
-pulls.open_unmerged_pull_exists=`You can't perform reopen operation because there is already an open pull request (#%d) from same repository with same merge information and is waiting for merging.`
-
-milestones.new=新的里程碑
-milestones.open_tab=%d 開啟中
-milestones.close_tab=%d 已關閉
-milestones.closed=於 %s關閉
-milestones.no_due_date=暫無截止日期
-milestones.open=開啟
-milestones.close=關閉
-milestones.new_subheader=創建里程碑來更好地組織你的問題
-milestones.create=創建里程碑
-milestones.title=標題
-milestones.desc=描述
-milestones.due_date=截止日期(可選)
-milestones.clear=清除
-milestones.invalid_due_date_format=截止日期的格式錯誤,必須是 'year-mm-dd' 的形式。
-milestones.create_success=里程碑 '%s' 創建成功!
-milestones.edit=編輯里程碑
-milestones.edit_subheader=使用更加清晰的描述來幫助人們更好地理解里程碑的作用。
-milestones.cancel=取消
-milestones.modify=修改里程碑
-milestones.edit_success=里程碑 '%s' 的修改內容已經生效!
-milestones.deletion=刪除里程碑
-milestones.deletion_desc=刪除該里程碑將會移除所有問題中相關信息。是否繼續?
-milestones.deletion_success=里程碑刪除成功!
-
-settings=倉庫設置
-settings.options=基本設置
-settings.collaboration=管理協作者
-settings.hooks=管理 Web 鉤子
-settings.githooks=管理 Git 鉤子
-settings.basic_settings=基本設置
-settings.danger_zone=危險操作區
-settings.site=官方網站
-settings.update_settings=更新倉庫設置
-settings.change_reponame_prompt=This change will affect how links relate to the repository.
-settings.transfer=轉移倉庫所有權
-settings.transfer_desc=您可以將倉庫轉移至您擁有管理員權限的帳戶或組織。
-settings.new_owner_has_same_repo=新的倉庫擁有者已經存在同名倉庫!
-settings.delete=刪除本倉庫
-settings.delete_desc=刪除倉庫操作不可逆轉,請三思而後行。
-settings.transfer_notices_1=- You will lose access if new owner is a individual user.
-settings.transfer_notices_2=- You will conserve access if new owner is an organization and if you're one of the owners.
-settings.transfer_form_title=Please enter following information to confirm your operation:
-settings.delete_notices_1=- This operation <strong>CANNOT</strong> be undone.
-settings.delete_notices_2=- This operation will permanently delete the everything of this repository, including Git data, issues, comments and accesses of collaborators.
-settings.delete_notices_fork_1=- If this repository is public, all forks will be became independent after deletion.
-settings.delete_notices_fork_2=- If this repository is private, all forks will be removed at the same time.
-settings.delete_notices_fork_3=- If you want to keep all forks after deletion, please change visibility of this repository to public first.
-settings.update_settings_success=倉庫設置更新成功!
-settings.transfer_owner=新擁有者
-settings.make_transfer=確認轉移倉庫
-settings.transfer_succeed=倉庫所有權轉移成功!
-settings.confirm_delete=確認刪除倉庫
-settings.add_collaborator=增加新的協作者
-settings.add_collaborator_success=成功添加新的協作者!
-settings.remove_collaborator_success=被操作的協作者已經被收回權限!
-settings.user_is_org_member=被操作的用戶是組織成員,因此無法添加為協作者!
-settings.add_webhook=添加 Web 鉤子
-settings.hooks_desc=Web 鉤子允許您設定在 Gogs 上發生指定事件時對指定 URL 發送 POST 通知。查看 <a target="_blank" href="%s">Webhooks 文檔</a> 獲取更多信息。
-settings.webhook_deletion=Delete Webhook
-settings.webhook_deletion_desc=Delete this webhook will remove its information and all delivery history. Do you want to continue?
-settings.webhook_deletion_success=Webhook has been deleted successfully!
-settings.webhook.request=Request
-settings.webhook.response=Response
-settings.webhook.headers=Headers
-settings.webhook.payload=Payload
-settings.webhook.body=Body
-settings.githooks_desc=Git 鉤子是由 Git 本身提供的功能,以下為 Gogs 所支持的鉤子列表。
-settings.githook_edit_desc=如果鉤子未啟動,則會顯示樣例文件中的內容。如果想要刪除某個鉤子,則提交空白文本即可。
-settings.githook_name=鉤子名稱
-settings.githook_content=鉤子文本
-settings.update_githook=更新鉤子設置
-settings.add_webhook_desc=我們會通過 <code>POST</code> 請求將訂閱事件信息發送至向指定 URL 地址。您可以設置不同的數據接收方式(JSON 或 <code>x-www-form-urlencoded</code>)。 請查閱 <a target="_blank" href="%s">Webhooks 指南</a>.
-settings.payload_url=推送地址
-settings.content_type=數據格式
-settings.secret=密鑰文本
-settings.slack_username=Username
-settings.slack_icon_url=Icon URL
-settings.slack_color=Color
-settings.event_desc=請設置您希望觸發 Web 鉤子的事件:
-settings.event_push_only=只推送 <code>push</code> 事件。
-settings.event_send_everything=I need <strong>everything</strong>.
-settings.event_choose=Let me choose what I need.
-settings.event_create=Create
-settings.event_create_desc=Branch, or tag created
-settings.event_push=Push
-settings.event_push_desc=Git push to a repository
-settings.active=是否激活
-settings.active_helper=當指定事件發生時我們將會觸發此 Web 鉤子。
-settings.add_hook_success=Web 鉤子添加成功!
-settings.update_webhook=更新 Web 鉤子
-settings.update_hook_success=Web 鉤子更新成功!
-settings.delete_webhook=刪除 Web 鉤子
-settings.recent_deliveries=最近推送記錄
-settings.hook_type=鉤子類型
-settings.add_slack_hook_desc=為您的倉庫增加 <a href="%s">Slack</a> 集成。
-settings.slack_token=令牌
-settings.slack_domain=域名
-settings.slack_channel=頻道
-settings.deploy_keys=管理部署密鑰
-settings.add_deploy_key=添加部署密鑰
-settings.no_deploy_keys=您還沒有添加任何部署密鑰。
-settings.title=標題
-settings.deploy_key_content=密鑰文本
-settings.key_been_used=部署密鑰已經被使用!
-settings.key_name_used=使用相同名稱的部署密鑰已經存在!
-settings.add_key_success=新的部署密鑰 '%s' 添加成功!
-settings.deploy_key_deletion=刪除部署密鑰
-settings.deploy_key_deletion_desc=刪除該部署密鑰會移除本倉庫所有相關的操作權限。是否繼續?
-settings.deploy_key_deletion_success=刪除部署密鑰成功!
-
-diff.browse_source=瀏覽代碼
-diff.parent=父節點
-diff.commit=當前提交
-diff.data_not_available=暫無可用數據
-diff.show_diff_stats=顯示文件統計
-diff.stats_desc=共有 <strong> %d 個文件被更改</strong>,包括 <strong>%d 次插入</strong> 和 <strong>%d 次删除</strong>
-diff.bin=二進制
-diff.view_file=查看文件
-
-release.releases=版本發佈
-release.new_release=發佈新版本
-release.draft=草稿
-release.prerelease=預發佈版本
-release.stable=穩定
-release.edit=編輯
-release.ahead=在該版本發佈之後已有 <strong>%d</strong> 次代碼提交到 %s 分支
-release.source_code=源代碼
-release.tag_name=標籤名稱
-release.target=目標分支
-release.tag_helper=選擇或創建一個已存在的標籤
-release.release_title=發佈標題
-release.content_with_md=使用 <a href="%s">Markdown</a> 編輯內容
-release.write=內容編輯
-release.preview=效果預覽
-release.content_placeholder=請輸入內容
-release.loading=正在加載...
-release.prerelease_desc=這是一個預發佈版本
-release.prerelease_helper=我們會告知用戶不建議將本發佈投入生產環境使用。
-release.publish=發佈版本
-release.save_draft=保在草稿
-release.edit_release=編輯發佈信息
-release.tag_name_already_exist=已經存在使用相同標籤的發佈版本。
-
-[org]
-org_name_holder=組織名稱
-org_name_helper=偉大的組織都有一個簡短而寓意深刻的名字。
-create_org=創建組織
-repo_updated=最後更新於
-people=組織成員
-invite_someone=邀請他人加入
-teams=組織團隊
-lower_members=名成員
-lower_repositories=個倉庫
-create_new_team=創建新的團隊
-org_desc=組織描述
-team_name=團隊名稱
-team_desc=團隊描述
-team_name_helper=您可以使用該名稱來通知改組全體成員。
-team_desc_helper=一句話描述這個團隊是做什麼的。
-team_permission_desc=請選擇該團隊所具有的權限等級:
-
-form.name_reserved=組織名稱 '%s' 是被保留的。
-form.name_pattern_not_allowed=組織名稱不允許 '%s' 的格式。
-
-settings=組織設置
-settings.options=基本設置
-settings.full_name=組織全名
-settings.website=官方網站
-settings.location=所在地區
-settings.update_settings=更新組織設置
-settings.update_setting_success=組織設置更新成功!
-settings.change_orgname_prompt=This change will affect how links relate to the organization.
-settings.update_avatar_success=Organization avatar setting has been updated successfully.
-settings.delete=刪除組織
-settings.delete_account=刪除當前組織
-settings.delete_prompt=刪除操作會永久清除該組織的信息,並且 <strong>不可恢復</strong>!
-settings.confirm_delete_account=確認刪除組織
-settings.delete_org_title=組織刪除操作
-settings.delete_org_desc=該組織將被永久性刪除,您確定要繼續操作嗎?
-settings.hooks_desc=在此處添加的 Web 鉤子將會應用到該組織下的 <strong>所有倉庫</strong>。
-
-members.public=公開成員
-members.public_helper=設為私有
-members.private=私有成員
-members.private_helper=設為公開
-members.owner=管理員
-members.member=普通成員
-members.conceal=隱藏身份
-members.remove=移除成員
-members.leave=離開組織
-members.invite_desc=請輸入被邀請到組織 %s 的用戶名稱:
-members.invite_now=立即邀請
-
-teams.join=加入團隊
-teams.leave=離開團隊
-teams.read_access=讀取權限
-teams.read_access_helper=這個團隊將擁有查看和複製所屬倉庫的權限。
-teams.write_access=寫入權限
-teams.write_access_helper=這個團隊將擁有查看、複製和推送所屬倉庫的權限。
-teams.admin_access=管理權限
-teams.admin_access_helper=這個團隊將擁有查看、複製、推送和添加其他組織成員到團隊的權限。
-teams.no_desc=該團隊暫無描述
-teams.settings=團隊設置
-teams.owners_permission_desc=管理員團隊對 <strong>所有倉庫</strong> 具有操作權限,且對組織具有 <strong>管理員權限</strong>。
-teams.members=團隊成員
-teams.update_settings=更新團隊設置
-teams.delete_team=刪除當前團隊
-teams.add_team_member=添加團隊成員
-teams.delete_team_title=團隊刪除操作
-teams.delete_team_desc=刪除操作會永久清除有關該團隊的信息,您確定要繼續操作嗎?團隊成員可能會失去對某些倉庫的操作權限。
-teams.delete_team_success=指定團隊刪除成功!
-teams.read_permission_desc=該團隊擁有對所屬倉庫的 <strong>讀取</strong> 權限,團隊成員可以進行查看和複製等只讀操作。
-teams.write_permission_desc=該團隊擁有對所屬倉庫的 <strong>讀取</strong> 和 <strong>寫入</strong> 的權限。
-teams.admin_permission_desc=該團隊擁有一定的 <strong>管理</strong> 權限,團隊成員可以讀取、複製、推送以及添加其它倉庫協作者。
-teams.repositories=團隊倉庫
-teams.add_team_repository=添加團隊倉庫
-teams.remove_repo=移除倉庫
-teams.add_nonexistent_repo=您嘗試添加到團隊的倉庫不存在,請先創建倉庫!
-
-[admin]
-dashboard=控制面版
-users=用戶管理
-organizations=組織管理
-repositories=倉庫管理
-authentication=授權認證管理
-config=應用配置管理
-notices=系統提示管理
-monitor=應用監控面版
-first_page=First
-last_page=Last
-total=Total: %d
-
-dashboard.statistic=應用統計數據
-dashboard.operations=管理員操作
-dashboard.system_status=系統監視狀態
-dashboard.statistic_info=Gogs 數據庫統計:<b>%d</b> 位用戶,<b>%d</b> 個組織,<b>%d</b> 個公鑰,<b>%d</b> 個倉庫,<b>%d</b> 個倉庫關註,<b>%d</b> 個贊,<b>%d</b> 次行為,<b>%d</b> 條權限記錄,<b>%d</b> 個問題,<b>%d</b> 次評論,<b>%d</b> 個社交帳號,<b>%d</b> 個用戶關註,<b>%d</b> 個鏡像,<b>%d</b> 個版本發佈,<b>%d</b> 個登錄源,<b>%d</b> 個 Web 鉤子,<b>%d</b> 個里程碑,<b>%d</b> 個標籤,<b>%d</b> 個鉤子任務,<b>%d</b> 個團隊,<b>%d</b> 個更新任務,<b>%d</b> 個附件。
-dashboard.operation_name=操作名稱
-dashboard.operation_switch=開關
-dashboard.operation_run=執行
-dashboard.clean_unbind_oauth=清理未綁定社交帳號
-dashboard.clean_unbind_oauth_success=所有未綁定社交數據清除成功!
-dashboard.delete_inactivate_accounts=刪除所有未激活帳戶
-dashboard.delete_inactivate_accounts_success=所有未激活帳號清除成功!
-dashboard.delete_repo_archives=刪除所有倉庫存檔
-dashboard.delete_repo_archives_success=所有倉庫存檔清除成功!
-dashboard.git_gc_repos=對倉庫進行垃圾回收
-dashboard.git_gc_repos_success=所有倉庫的垃圾回收已成功完成!
-dashboard.resync_all_sshkeys=重新生成 '.ssh/authorized_keys' 文件(警告:不是 Gogs 的密鑰也會被刪除)
-dashboard.resync_all_sshkeys_success=所有公鑰重新生成成功!
-dashboard.resync_all_update_hooks=重新生成所有倉庫的 Update 鈎子(用於被修改的自定義配置文件)
-dashboard.resync_all_update_hooks_success=已成功重新生成所有倉庫的 Update 鈎子!
-
-dashboard.server_uptime=服務執行時間
-dashboard.current_goroutine=當前 Goroutines 數量
-dashboard.current_memory_usage=當前內存使用量
-dashboard.total_memory_allocated=所有被分配的內存
-dashboard.memory_obtained=內存佔用量
-dashboard.pointer_lookup_times=指針查找次數
-dashboard.memory_allocate_times=內存分配次數
-dashboard.memory_free_times=內存釋放次數
-dashboard.current_heap_usage=當前 Heap 內存使用量
-dashboard.heap_memory_obtained=Heap 內存佔用量
-dashboard.heap_memory_idle=Heap 內存空閒量
-dashboard.heap_memory_in_use=正在使用的 Heap 內存
-dashboard.heap_memory_released=被釋放的 Heap 內存
-dashboard.heap_objects=Heap 對象數量
-dashboard.bootstrap_stack_usage=啟動 Stack 使用量
-dashboard.stack_memory_obtained=被分配的 Stack 內存
-dashboard.mspan_structures_usage=MSpan 結構內存使用量
-dashboard.mspan_structures_obtained=被分配的 MSpan 結構內存
-dashboard.mcache_structures_usage=MCache 結構內存使用量
-dashboard.mcache_structures_obtained=被分配的 MCache 結構內存
-dashboard.profiling_bucket_hash_table_obtained=被分配的剖析哈希表內存
-dashboard.gc_metadata_obtained=被分配的垃圾收集元數據內存
-dashboard.other_system_allocation_obtained=其它被分配的系統內存
-dashboard.next_gc_recycle=下次垃圾收集內存回收量
-dashboard.last_gc_time=距離上次垃圾收集時間
-dashboard.total_gc_time=垃圾收集執行時間總量
-dashboard.total_gc_pause=垃圾收集暫停時間總量
-dashboard.last_gc_pause=上次垃圾收集暫停時間
-dashboard.gc_times=垃圾收集執行次數
-
-users.user_manage_panel=用戶管理面版
-users.new_account=創建新的帳戶
-users.name=用戶名
-users.activated=已激活
-users.admin=管理員
-users.repos=倉庫數
-users.created=創建時間
-users.send_register_notify=Send Registration Notification To User
-users.new_success=New account '%s' has been created successfully.
-users.edit=編輯
-users.auth_source=Authentication Source
-users.local=本地
-users.auth_login_name=Authentication Login Name
-users.password_helper=Leave it empty to remain unchanged.
-users.update_profile_success=該用戶信息更新成功!
-users.edit_account=編輯用戶信息
-users.is_activated=該用戶已被激活
-users.is_admin=該用戶具有管理員權限
-users.allow_git_hook=該帳戶具有創建 Git 鉤子的權限
-users.update_profile=更新用戶信息
-users.delete_account=刪除該用戶
-users.still_own_repo=該帳戶仍然是某些倉庫的擁有者,您必須先轉移或刪除它們才能執行刪除帳戶操作!
-users.still_has_org=該帳戶仍舊是某些組織的成員,您必須先使其離開或刪除組織。
-users.deletion_success=Account has been deleted successfully!
-
-orgs.org_manage_panel=組織管理面版
-orgs.name=組織名稱
-orgs.teams=團隊數
-orgs.members=成員數
-
-repos.repo_manage_panel=倉庫管理界面
-repos.owner=所有者
-repos.name=倉庫名稱
-repos.private=私有庫
-repos.watches=關註數
-repos.stars=讚好數
-repos.issues=問題數
-
-auths.auth_manage_panel=Authentication Manage Panel
-auths.new=Add New Source
-auths.name=認證名稱
-auths.type=認證類型
-auths.enabled=已啟用
-auths.updated=最後更新時間
-auths.auth_type=Authentication Type
-auths.auth_name=Authentication Name
-auths.domain=域名
-auths.host=主機地址
-auths.port=主機端口
-auths.bind_dn=綁定DN
-auths.bind_password=綁定密碼
-auths.bind_password_helper=Warning: This password is stored in plain text. Do not use a high privileged account.
-auths.user_base=User Search Base
-auths.user_dn=User DN
-auths.attribute_name=名子屬性
-auths.attribute_surname=姓氏屬性
-auths.attribute_mail=電子郵箱屬性
-auths.filter=使用者篩選器
-auths.admin_filter=管理者篩選器
-auths.ms_ad_sa=Ms Ad SA
-auths.smtp_auth=SMTP Authentication Type
-auths.smtphost=SMTP 主機地址
-auths.smtpport=SMTP 主機端口
-auths.allowed_domains=Allowed Domains
-auths.allowed_domains_helper=Leave it empty to not restrict any domains. Multiple domains should be separated by comma ','.
-auths.enable_tls=啟用 TLS 加密
-auths.skip_tls_verify=Skip TLS Verify
-auths.pam_service_name=PAM 服務名稱
-auths.enable_auto_register=允許授權用戶自動註冊
-auths.tips=幫助提示
-auths.edit=Edit Authentication Setting
-auths.activated=該授權認證已經啟用
-auths.new_success=New authentication '%s' has been added successfully.
-auths.update_success=Authentication setting has been updated successfully.
-auths.update=Update Authentication Setting
-auths.delete=Delete This Authentication
-auths.delete_auth_title=Authentication Deletion
-auths.delete_auth_desc=This authentication is going to be deleted, do you want to continue?
-auths.deletion_success=Authentication has been deleted successfully!
-
-config.server_config=服務器配置
-config.app_name=應用名稱
-config.app_ver=應用版本
-config.app_url=應用 URL
-config.domain=應用域名
-config.offline_mode=離線模式
-config.disable_router_log=關閉路由日志
-config.run_user=執行用戶
-config.run_mode=執行模式
-config.repo_root_path=倉庫根目錄
-config.static_file_root_path=靜態文件根目錄
-config.log_file_root_path=日志文件根目錄
-config.script_type=腳本類型
-config.reverse_auth_user=反向代理認證
-config.db_config=數據庫配置
-config.db_type=數據庫類型
-config.db_host=主機地址
-config.db_name=數據庫名稱
-config.db_user=數據庫用戶
-config.db_ssl_mode=SSL 模式
-config.db_ssl_mode_helper=(僅限 "postgres" 使用)
-config.db_path=數據庫路徑
-config.db_path_helper=(for "sqlite3" and "tidb")
-config.service_config=服務配置
-config.register_email_confirm=註冊電子郵件確認
-config.disable_register=關閉註冊功能
-config.show_registration_button=顯示註冊按鈕
-config.require_sign_in_view=強制登錄瀏覽
-config.enable_cache_avatar=開啟緩存頭像
-config.mail_notify=郵件通知提醒
-config.disable_key_size_check=Disable Minimum Key Size Check
-config.enable_captcha=Enable Captcha
-config.active_code_lives=激活用戶連結有效期
-config.reset_password_code_lives=重置密碼連結有效期
-config.webhook_config=Web 鉤子配置
-config.queue_length=隊列長度
-config.deliver_timeout=推送超時
-config.skip_tls_verify=忽略 TLS 驗證
-config.mailer_config=郵件配置
-config.mailer_enabled=啟用服務
-config.mailer_disable_helo=禁用 HELO 操作
-config.mailer_name=發送者名稱
-config.mailer_host=郵件主機地址
-config.mailer_user=發送者帳號
-config.oauth_config=社交帳號配置
-config.oauth_enabled=啟用服務
-config.cache_config=Cache 配置
-config.cache_adapter=Cache 適配器
-config.cache_interval=Cache 周期
-config.cache_conn=Cache 連接字符串
-config.session_config=Session 配置
-config.session_provider=Session 提供者
-config.provider_config=提供者配置
-config.cookie_name=Cookie 名稱
-config.enable_set_cookie=啟用設置 Cookie
-config.gc_interval_time=垃圾收集周期
-config.session_life_time=Session 生命周期
-config.https_only=僅限 HTTPS
-config.cookie_life_time=Cookie 生命周期
-config.picture_config=圖片配置
-config.picture_service=圖片服務
-config.disable_gravatar=禁用 Gravatar 頭像
-config.log_config=日誌配置
-config.log_mode=日誌模式
-
-monitor.cron=Cron 任務
-monitor.name=任務名稱
-monitor.schedule=任務安排
-monitor.next=下次執行時間
-monitor.previous=上次執行時間
-monitor.execute_times=執行次數
-monitor.process=執行中進程
-monitor.desc=進程描述
-monitor.start=開始時間
-monitor.execute_time=已執行時間
-
-notices.system_notice_list=系統提示管理
-notices.type=提示類型
-notices.type_1=倉庫
-notices.desc=描述
-notices.op=操作
-notices.delete_success=系統提示刪除成功!
-
-[action]
-create_repo=創建了倉庫 <a href="%s">%s</a>
-rename_repo=renamed repository from <code>%[1]s</code> to <a href="%[2]s">%[3]s</a>
-commit_repo=推送了 <a href="%s/src/%s">%[2]s</a> 分支的代碼到 <a href="%[1]s">%[3]s</a>
-create_issue=`創建了問題 <a href="%s/issues/%s">%s#%[2]s</a>`
-create_pull_request=`created pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-comment_issue=`評論了問題 <a href="%s/issues/%s">%s#%[2]s</a>`
-merge_pull_request=`merged pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
-transfer_repo=將倉庫 <code>%s</code> 轉移至 <a href="%s">%s</a>
-push_tag=推送了標籤 <a href="%s/src/%s">%[2]s</a> 到 <a href="%[1]s">%[3]s</a>
-compare_2_commits=查看 2 次提交的內容對比
-
-[tool]
-ago=之前
-from_now=之後
-now=現在
-1s=1 秒%s
-1m=1 分鐘%s
-1h=1 小時%s
-1d=1 天%s
-1w=1 周%s
-1mon=1 月%s
-1y=1 年%s
-seconds=%d 秒%s
-minutes=%d 分鐘%s
-hours=%d 小時%s
-days=%d 天%s
-weeks=%d 周%s
-months=%d 月%s
-years=%d 年%s
-raw_seconds=秒
-raw_minutes=分鐘
-
-[dropzone]
-default_message=拖曳文件到此處或單擊上傳
-invalid_input_type=您不能上傳該類型的文件
-file_too_big=文件大小({{filesize}} MB)超過了最大允許大小({{maxFilesize}} MB)
-remove_file=移除文件
-
+app_desc=基於 Go 語言的自助 Git 服務 + +home=首頁 +dashboard=控制面版 +explore=探索 +help=幫助 +sign_in=登錄 +sign_out=退出 +sign_up=註冊 +register=註冊 +website=官方網站 +version=當前版本 +page=頁面 +template=模版 +language=語言選項 +create_new=創建... +user_profile_and_more=用戶信息及更多 +signed_in_as=已登錄用戶 + +username=用戶名 +email=郵箱 +password=密碼 +re_type=確認密碼 +captcha=驗證碼 + +repository=倉庫 +organization=組織 +mirror=鏡像 +new_repo=創建新的倉庫 +new_migrate=遷移外部倉庫 +new_fork=新的派生倉庫 +new_org=創建新的組織 +manage_org=管理我的組織 +admin_panel=管理面版 +account_settings=帳戶設置 +settings=帳戶設置 +your_profile=個人信息 +your_settings=用戶設置 + +news_feed=最新活動 +pull_requests=合併請求 +issues=問題管理 + +cancel=取消 + +[search] +search=搜尋... +repository=倉庫 +user=用戶 +issue=工單 +code=程式碼 + +[install] +install=安裝頁面 +title=首次執行安裝程序 +docker_helper=If you're running Gogs inside Docker, please read <a target="_blank" href="%s">Guidelines</a> carefully before you change anything in this page! +requite_db_desc=Gogs requires MySQL, PostgreSQL, SQLite3 or TiDB. +db_title=數據庫設置 +db_type=數據庫類型 +host=數據庫主機 +user=數據庫用戶 +password=數據庫用戶密碼 +db_name=數據庫名稱 +db_helper=如果您使用 MySQL,請使用 INNODB 引擎以及 utf8_general_ci 字符集。 +ssl_mode=SSL 模式 +path=數據庫文件路徑 +sqlite_helper=The file path of SQLite3 or TiDB database. +err_empty_db_path=SQLite3 or TiDB database path cannot be empty. +err_invalid_tidb_name=TiDB database name does not allow characters "." and "-". +no_admin_and_disable_registration=You cannot disable registration without creating an admin account. +err_empty_admin_password=Admin password cannot be empty. + +general_title=應用基本設置 +app_name=應用名稱 +app_name_helper=為您的組織取個響亮而又偉大的名稱 +repo_path=倉庫根目錄 +repo_path_helper=所有 Git 遠程倉庫都將被存放於該目錄。 +run_user=執行系統用戶 +run_user_helper=該用戶必須具有對倉庫根目錄和執行 Gogs 的操作權限。 +domain=域名 +domain_helper=該設置影響 SSH 複製地址。 +ssh_port=SSH 埠 +ssh_port_helper=您的 SSH 服務正在使用此埠號,若要禁用SSH 功能請保持欄位空白。 +http_port=HTTP 端口號 +http_port_helper=應用監聽的端口號 +app_url=應用 URL +app_url_helper=該設置影響 HTTP/HTTPS 複製地址和一些郵箱中的連結。 + +optional_title=可選設置 +email_title=電子郵件服務設定 +smtp_host=SMTP 主機 +smtp_from=郵件來自 +smtp_from_helper=郵件來自地址,遵循 RFC 5322 標准。可以是一個單純的郵箱地址或使用 "name" <email@example.com> 的格式。 +mailer_user=發送郵箱 +mailer_password=發送郵箱密碼 +register_confirm=啟用註冊郵箱確認 +mail_notify=啟用郵件通知提醒 +server_service_title=伺服器和其他服務設置 +offline_mode=啓用離線模式 +offline_mode_popup=在部署模式下也禁用從 CDN 獲取文件,所有的資源將從本地伺服器獲取。 +disable_gravatar=禁用 Gravatar 服務 +disable_gravatar_popup=禁用 Gravatar 和自定義源,僅使用由用戶上傳或默認的頭像。 +disable_registration=禁止用戶自主註冊 +disable_registration_popup=禁止用戶自主註冊功能,只有管理員可以添加帳號。 +enable_captcha=Enable Captcha +enable_captcha_popup=Require validate captcha for user self-registration. +require_sign_in_view=啓用登錄訪問限制 +require_sign_in_view_popup=只有已登錄的用戶才能夠訪問頁面,否則將只能看到登錄或註冊頁面。 +admin_setting_desc=創建管理員帳號並不是必須的,因為 ID=1 的用戶將自動獲得管理員權限。 +admin_title=管理員帳號設置 +admin_name=管理員用戶名 +admin_password=管理員密碼 +confirm_password=確認密碼 +admin_email=Admin E-mail +install_gogs=立即安裝 +test_git_failed=無法識別 'git' 命令:%v +sqlite3_not_available=您所使用的發行版本不支持 SQLite3,請從 %s 下載官方構建版,而不是 gobuild 版本。 +invalid_db_setting=數據庫設置不正確:%v +invalid_repo_path=倉庫根目錄設置不正確:%v +run_user_not_match=執行系統用戶非當前用戶:%s -> %s +save_config_failed=應用配置保存失敗:%v +invalid_admin_setting=管理員帳戶設置不正確:%v +install_success=您好!我們很高興您選擇使用 Gogs,祝您使用愉快,代碼從此無 BUG! + +[home] +uname_holder=用戶名或郵箱 +password_holder=密碼 +switch_dashboard_context=切換控制面版用戶 +my_repos=我的倉庫 +collaborative_repos=參與協作的倉庫 +my_orgs=我的組織 +my_mirrors=我的鏡像 +view_home=訪問 %s + +issues.in_your_repos=屬於該用戶倉庫的 + +[explore] +repos=探索倉庫 + +[auth] +create_new_account=創建帳戶 +register_hepler_msg=已經註冊?立即登錄! +social_register_hepler_msg=已經註冊?立即綁定! +disable_register_prompt=對不起,註冊功能已被關閉。請聯系網站管理員。 +disable_register_mail=對不起,註冊郵箱確認功能已被關閉。 +remember_me=記住登錄 +forgot_password=忘記密碼 +forget_password=忘記密碼? +sign_up_now=還沒帳戶?馬上註冊。 +confirmation_mail_sent_prompt=一封新的確認郵件已經被發送至 <b>%s</b>,請檢查您的收件箱並在 %d 小時內完成確認註冊操作。 +active_your_account=激活您的帳戶 +resent_limit_prompt=對不起,您請求發送激活郵件過於頻繁,請等待 3 分鐘後再試! +has_unconfirmed_mail=%s 您好,您有一封發送至( <b>%s</b>) 但未被確認的郵件。如果您未收到激活郵件,或需要重新發送,請單擊下方的按鈕。 +resend_mail=單擊此處重新發送確認郵件 +email_not_associate=您輸入的郵箱地址未被關聯到任何帳號! +send_reset_mail=單擊此處(重新)發送您的密碼重置郵件 +reset_password=重置密碼 +invalid_code=對不起,您的確認代碼已過期或已失效。 +reset_password_helper=單擊此處重置密碼 +password_too_short=密碼長度不能少於 6 位! + +[mail] +activate_account=Please activate your account +activate_email=Verify your e-mail address +reset_password=Reset your password +register_success=Register success, Welcome +register_notify=Welcome on board + +[modal] +yes=確認操作 +no=取消操作 +modify=確認修改 + +[form] +UserName=用戶名 +RepoName=倉庫名稱 +Email=郵箱地址 +Password=密碼 +Retype=確認密碼 +SSHTitle=SSH 密鑰名稱 +HttpsUrl=HTTPS URL 地址 +PayloadUrl=推送地址 +TeamName=團隊名稱 +AuthName=認證名稱 +AdminEmail=管理員郵箱 + +require_error=不能為空。 +alpha_dash_error=必須為英文字母、阿拉伯數字或橫線(-_)。 +alpha_dash_dot_error=必須為英文字母、阿拉伯數字、橫線(-_)或點。 +size_error=長度必須為 %s。 +min_size_error=長度最小為 %s 個字符。 +max_size_error=長度最大為 %s 個字符。 +email_error=不是一個有效的郵箱地址。 +url_error=不是一個有效的 URL。 +include_error=` must contain substring '%s'.` +unknown_error=未知錯誤: +captcha_incorrect=驗證碼未匹配。 +password_not_match=密碼與確認密碼未匹配。 + +username_been_taken=用戶名已經被佔用。 +repo_name_been_taken=倉庫名稱已經被佔用。 +org_name_been_taken=組織名稱已經被佔用。 +team_name_been_taken=團隊名稱已經被佔用。 +email_been_used=郵箱地址已經被使用。 +illegal_team_name=團隊名稱包含不合法字符。 +username_password_incorrect=用戶名或密碼不正確。 +enterred_invalid_repo_name=請檢查您輸入的倉庫名稱是正確。 +enterred_invalid_owner_name=請檢查您輸入的新所有者用戶名是否正確。 +enterred_invalid_password=請檢查您輸入的密碼是否正確。 +user_not_exist=被操作的用戶不存在! +last_org_owner=被移除用戶為最後一位管理員。請添加一位新的管理員再進行移除成員操作! + +invalid_ssh_key=很抱歉,我們無法驗證您輸入的 SSH 密鑰:%s +unable_verify_ssh_key=Gogs 無法驗證您輸入的 SSH 密鑰,但我們假設那是有效的密鑰,請您自行確保其有效性! +auth_failed=授權驗證失敗:%v + +still_own_repo=您的帳戶仍然是某些倉庫的擁有者,您必須先轉移或刪除它們才能執行刪除帳戶操作! +still_has_org=您的帳戶仍舊是某些組織的成員,您必須先離開或刪除組織。 +org_still_own_repo=該組織仍然是某些倉庫的擁有者,您必須先轉移或刪除它們才能執行刪除組織操作! + +still_own_user=該授權認證依舊被部分用戶使用,請先刪除該部分用戶後再試! + +target_branch_not_exist=目標分支不存在 + +[user] +change_avatar=到 gravatar.com 上修改您的頭像 +change_custom_avatar=到個人設置中修改頭像 +join_on=加入於 +repositories=倉庫列表 +activity=公開活動 +followers=關註者 +starred=已讚好 +following=關註中 + +form.name_reserved=用戶名 '%s' 是被保留的。 +form.name_pattern_not_allowed=用戶名不允許 '%s' 的格式。 + +[settings] +profile=個人信息 +password=修改密碼 +ssh_keys=管理 SSH 密鑰 +social=社交帳號綁定 +applications=管理授權應用 +orgs=管理組織 +delete=刪除帳戶 +uid=用戶 ID + +public_profile=公開信息 +profile_desc=您的郵箱地址將會被公開,並被用於接收帳戶的所有提醒和通知。 +full_name=自定義名稱 +website=個人網站 +location=所在地區 +update_profile=更新信息 +update_profile_success=您的個人信息更新成功! +change_username=用戶名將被修改 +change_username_prompt=This change will affect the way how links relate to your account. +continue=繼續操作 +cancel=取消操作 + +enable_custom_avatar=啟動自定義頭像 +enable_custom_avatar_helper=激活該選項來禁止從 Gravatar 獲取頭像 +choose_new_avatar=選擇新的頭像 +update_avatar=更新頭像設置 +uploaded_avatar_not_a_image=上傳的文件不是一張圖片! +no_custom_avatar_available=沒有任何自定義頭像,無法激活該選項。 +update_avatar_success=您的頭像設置更新成功! + +change_password=修改密碼 +old_password=當前密碼 +new_password=新的密碼 +retype_new_password=Retype New Password +password_incorrect=當前密碼不正確! +change_password_success=密碼修改成功!您現在可以使用新的密碼登錄。 + +emails=電子郵件地址 +manage_emails=管理電子郵件地址 +email_desc=您的主要邮箱地址将被用于通知提醒和其它操作。 +primary=主要 +primary_email=设为主要 +delete_email=刪除 +email_deletion=E-mail Deletion +email_deletion_desc=Delete this e-mail address will remove related information from your account. Do you want to continue? +email_deletion_success=E-mail has been deleted successfully! +add_new_email=添加新的電子郵件地址 +add_email=添加電子郵件 +add_email_confirmation_sent=一封待確認的電子郵件已發送到 '%s',請在%d 小時內檢查您的收件箱,並完成確認過程。 +add_email_success=新的邮箱地址添加成功。 + +manage_ssh_keys=管理 SSH 密鑰 +add_key=增加密鑰 +ssh_desc=以下是與您帳戶所關聯的 SSH 密鑰,如果您發現有陌生的密鑰,請立即刪除它! +ssh_helper=<strong>需要幫助嗎?</strong> 請查看有關 <a href="%s"> 如何生成 SSH 密鑰</a> 的指南或 <a href="%s"> SSH 的常見問題</a> 的疑難排解。 +add_new_key=增加 SSH 密鑰 +ssh_key_been_used=公共密鑰已經被使用 +ssh_key_name_used=使用相同名稱的公共密鑰已經存在! +key_name=密鑰名稱 +key_content=密鑰內容 +add_key_success=新的 SSH 密鑰 '%s' 添加成功! +delete_key=刪除 +ssh_key_deletion=刪除 SSH 公鑰 +ssh_key_deletion_desc=刪除該 SSH 公鑰將刪除所有與您帳戶相關的訪問權限。是否繼續? +ssh_key_deletion_success=SSH 公鑰刪除成功! +add_on=增加於 +last_used=上次使用在 +no_activity=沒有最近活動 +key_state_desc=該密鑰在 7 天內被使用過 +token_state_desc=此token在過去七天內曾經被使用過 + +manage_social=管理關聯社交帳戶 +social_desc=以下是與您帳戶所關聯的社交帳號,如果您發現有陌生的關聯,請立即解除綁定! +unbind=解除綁定 +unbind_success=社交帳號解除綁定成功! + +manage_access_token=管理個人操作令牌 +generate_new_token=生成新的令牌 +tokens_desc=您所產生的token將被用來存取Gogs APIs +new_token_desc=目前為止,任何令牌都對您的帳戶擁有完整的操作權限。 +token_name=令牌名稱 +generate_token=生成令牌 +generate_token_succees=新的操作令牌生成成功!您必須立即複製到一個安全的地方,因為該令牌只會顯示一次! +delete_token=删除令牌 +access_token_deletion=刪除個人的連接token +access_token_deletion_desc=刪除此連接token將會刪除與相關應用程式的連結。您想要繼續嗎? +delete_token_success=您的連接token已成功刪除。請記得更新您的應用程式。 + +delete_account=刪除當前帳戶 +delete_prompt=刪除操作會永久清除您的帳戶信息,並且 <strong>不可恢復</strong>! +confirm_delete_account=確認刪除帳戶 +delete_account_title=帳戶刪除操作 +delete_account_desc=該帳戶將被永久性刪除,您確定要繼續操作嗎? + +[repo] +owner=擁有者 +repo_name=倉庫名稱 +repo_name_helper=偉大的倉庫名稱一般都較短、令人深刻並且 <strong>獨一無二</strong> 的。 +visibility=可見度 +visiblity_helper=該倉庫為 <span class="ui red text">私有的</span> +visiblity_helper_forced=Site admin has forced all new repositories to be <span class="ui red text">Private</span> +visiblity_fork_helper=(修改該值將會影響到所有派生倉庫) +clone_helper=不知道如何操作?訪問 <a target="_blank"href="%s"> 帮助説明</a> ! +fork_repo=派生倉庫 +fork_from=派生自 +fork_visiblity_helper=派生倉庫無法修改可見性。 +repo_desc=倉庫描述 +repo_lang=倉庫語言 +repo_lang_helper=Select .gitignore files +license=授權許可 +license_helper=請選擇授權許可文件 +readme=Readme +readme_helper=Select a readme template +auto_init=Initialize this repository with selected files and template +create_repo=創建倉庫 +default_branch=默認分支 +mirror_interval=鏡像同步周期(小時) +watchers=Watchers +stargazers=Stargazers +forks=Forks + +form.name_reserved=倉庫名稱 '%s' 是被保留的。 +form.name_pattern_not_allowed=倉庫名稱不允許 '%s' 的格式。 + +need_auth=需要授權驗證 +migrate_type=遷移類型 +migrate_type_helper=該倉庫將是一個 <span class="text blue">鏡像</span> +migrate_repo=遷移倉庫 +migrate.clone_address=複製地址 +migrate.clone_address_desc=該地址可以是 HTTP/HTTPS/GIT URL 或本地服務器路徑。 +migrate.permission_denied=You are not allowed to import local repositories. +migrate.invalid_local_path=無效的本地路徑,該路徑不存在或不是一個目錄! +migrate.failed=Migration failed: %v + +forked_from=派生自 +fork_from_self=無法派生已經擁有的倉庫! +copy_link=複製連結 +copy_link_success=Copied! +copy_link_error=Press ⌘-C or Ctrl-C to copy +copied=複製成功 +unwatch=取消關註 +watch=關註 +unstar=取消讚好 +star=讚好 +fork=派生 + +no_desc=暫無描述 +quick_guide=快速幫助 +clone_this_repo=複製當前倉庫 +create_new_repo_command=從命令行創建一個新的倉庫 +push_exist_repo=從命令行推送已經創建的倉庫 +repo_is_empty=This repository is empty, please come back later! + +branch=分支 +tree=目錄樹 +filter_branch_and_tag=Filter branch or tag +branches=分支列表 +tags=標籤列表 +issues=問題管理 +pulls=Pull Requests +labels=標籤 +milestones=里程碑 +commits=提交歷史 +releases=版本發佈 +file_raw=原始文件 +file_history=文件歷史 +file_view_raw=查看原始文件 +file_permalink=永久連結 + +commits.commits=次代碼提交 +commits.search=搜索提交歷史 +commits.find=查找 +commits.author=作者 +commits.message=備註 +commits.date=提交日期 +commits.older=更舊的提交 +commits.newer=更新的提交 + +issues.new=創建問題 +issues.new.labels=標籤 +issues.new.no_label=未選擇標籤 +issues.new.clear_labels=清除已選取標籤 +issues.new.milestone=里程碑 +issues.new.no_milestone=未選擇里程碑 +issues.new.clear_milestone=清除已選取里程碑 +issues.new.open_milestone=開啟中的里程碑 +issues.new.closed_milestone=已關閉的里程碑 +issues.new.assignee=指派成員 +issues.new.clear_assignee=取消指派成員 +issues.new.no_assignee=未指派成員 +issues.create=創建問題 +issues.new_label=創建標籤 +issues.new_label_placeholder=標籤名稱... +issues.create_label=創建標籤 +issues.open_tab=%d 個開啓中 +issues.close_tab=%d 個已關閉 +issues.filter_label=標籤篩選 +issues.filter_label_no_select=無篩選標籤 +issues.filter_milestone=里程碑篩選 +issues.filter_milestone_no_select=無篩選里程碑 +issues.filter_assignee=指派人篩選 +issues.filter_assginee_no_select=無篩選指派人 +issues.filter_type=類型篩選 +issues.filter_type.all_issues=所有問題 +issues.filter_type.assigned_to_you=指派給您的 +issues.filter_type.created_by_you=由您創建的 +issues.filter_type.mentioning_you=提及您的 +issues.filter_sort=排序 +issues.filter_sort.latest=最新創建 +issues.filter_sort.oldest=最早創建 +issues.filter_sort.recentupdate=最近更新 +issues.filter_sort.leastupdate=最少更新 +issues.filter_sort.mostcomment=最多評論 +issues.filter_sort.leastcomment=最少評論 +issues.opened_by=opened %[1]s by <a href="%[2]s">%[3]s</a> +issues.opened_by_fake=由 %[2]s 於 %[1]s創建 +issues.previous=上一頁 +issues.next=下一頁 +issues.open_title=開啟中 +issues.closed_title=已關閉 +issues.num_comments=%d 條評論 +issues.commented_at=`於 <a id="%[1]s" href="#%[1]s">%[2]s</a> 評論` +issues.no_content=尚未有任何內容 +issues.close_issue=關閉 +issues.close_comment_issue=關閉及評論 +issues.reopen_issue=重新開啟 +issues.reopen_comment_issue=重新開啟及評論 +issues.create_comment=評論 +issues.closed_at=`於 <a id="%[1]s" href="#%[1]s">%[2]s</a> 關閉` +issues.reopened_at=`於 <a id="%[1]s" href="#%[1]s">%[2]s</a> 重新開啟` +issues.commit_ref_at=`referenced this issue from a commit <a id="%[1]s" href="#%[1]s">%[2]s</a>` +issues.poster=發佈者 +issues.admin=管理員 +issues.owner=所有者 +issues.sign_up_for_free=免費註冊 +issues.sign_in_require_desc=及加入到對話當中。如果您已經註冊,可以直接 <a href="%s">登錄及評論</a> +issues.edit=編輯 +issues.cancel=取消 +issues.save=保存 +issues.label_title=標籤名稱 +issues.label_color=標籤顏色 +issues.label_count=%d 個標籤 +issues.label_open_issues=%d 個開啓的問題 +issues.label_edit=編輯 +issues.label_delete=刪除 +issues.label_modify=修改標籤 +issues.label_deletion=刪除標籤 +issues.label_deletion_desc=刪除該標籤將會移除所有問題中相關的訊息。是否繼續? +issues.label_deletion_success=標籤刪除成功! + +pulls.new=New Pull Request +pulls.compare_changes=對比文件變化 +pulls.compare_changes_desc=對比兩個分支間的文件變化及發起一個合併請求。 +pulls.compare_base=base +pulls.compare_compare=compare +pulls.filter_branch=Filter branch +pulls.no_results=未找到結果 +pulls.nothing_to_compare=There is nothing to compare because base and head branches are even. +pulls.has_pull_request=`There is already a pull request between these two targets: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>` +pulls.create=Create Pull Request +pulls.title_desc=wants to merge %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> +pulls.merged_title_desc=merged %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> %[4]s +pulls.tab_conversation=Conversation +pulls.tab_commits=Commits +pulls.tab_files=Files changed +pulls.reopen_to_merge=Please reopen this pull request to perform merge operation. +pulls.merged=Merged +pulls.has_merged=This pull request has been merged successfully! +pulls.data_broken=Data of this pull request has been broken due to deletion of fork information. +pulls.is_checking=The conflict checking is still in progress, please refresh page in few moments. +pulls.can_auto_merge_desc=You can perform auto-merge operation on this pull request. +pulls.cannot_auto_merge_desc=You can't perform auto-merge operation because there are conflicts between commits. +pulls.cannot_auto_merge_helper=Please use command line tool to solve it. +pulls.merge_pull_request=Merge Pull Request +pulls.open_unmerged_pull_exists=`You can't perform reopen operation because there is already an open pull request (#%d) from same repository with same merge information and is waiting for merging.` + +milestones.new=新的里程碑 +milestones.open_tab=%d 開啟中 +milestones.close_tab=%d 已關閉 +milestones.closed=於 %s關閉 +milestones.no_due_date=暫無截止日期 +milestones.open=開啟 +milestones.close=關閉 +milestones.new_subheader=創建里程碑來更好地組織你的問題 +milestones.create=創建里程碑 +milestones.title=標題 +milestones.desc=描述 +milestones.due_date=截止日期(可選) +milestones.clear=清除 +milestones.invalid_due_date_format=截止日期的格式錯誤,必須是 'yyyy-mm-dd' 的形式。 +milestones.create_success=里程碑 '%s' 創建成功! +milestones.edit=編輯里程碑 +milestones.edit_subheader=使用更加清晰的描述來幫助人們更好地理解里程碑的作用。 +milestones.cancel=取消 +milestones.modify=修改里程碑 +milestones.edit_success=里程碑 '%s' 的修改內容已經生效! +milestones.deletion=刪除里程碑 +milestones.deletion_desc=刪除該里程碑將會移除所有問題中相關信息。是否繼續? +milestones.deletion_success=里程碑刪除成功! + +settings=倉庫設置 +settings.options=基本設置 +settings.collaboration=管理協作者 +settings.hooks=管理 Web 鉤子 +settings.githooks=管理 Git 鉤子 +settings.basic_settings=基本設置 +settings.danger_zone=危險操作區 +settings.site=官方網站 +settings.update_settings=更新倉庫設置 +settings.change_reponame_prompt=This change will affect how links relate to the repository. +settings.transfer=轉移倉庫所有權 +settings.transfer_desc=您可以將倉庫轉移至您擁有管理員權限的帳戶或組織。 +settings.new_owner_has_same_repo=新的倉庫擁有者已經存在同名倉庫! +settings.delete=刪除本倉庫 +settings.delete_desc=刪除倉庫操作不可逆轉,請三思而後行。 +settings.transfer_notices_1=- You will lose access if new owner is a individual user. +settings.transfer_notices_2=- You will conserve access if new owner is an organization and if you're one of the owners. +settings.transfer_form_title=Please enter following information to confirm your operation: +settings.delete_notices_1=- This operation <strong>CANNOT</strong> be undone. +settings.delete_notices_2=- This operation will permanently delete the everything of this repository, including Git data, issues, comments and accesses of collaborators. +settings.delete_notices_fork_1=- If this repository is public, all forks will be became independent after deletion. +settings.delete_notices_fork_2=- If this repository is private, all forks will be removed at the same time. +settings.delete_notices_fork_3=- If you want to keep all forks after deletion, please change visibility of this repository to public first. +settings.update_settings_success=倉庫設置更新成功! +settings.transfer_owner=新擁有者 +settings.make_transfer=確認轉移倉庫 +settings.transfer_succeed=倉庫所有權轉移成功! +settings.confirm_delete=確認刪除倉庫 +settings.add_collaborator=增加新的協作者 +settings.add_collaborator_success=成功添加新的協作者! +settings.remove_collaborator_success=被操作的協作者已經被收回權限! +settings.search_user_placeholder=Search user... +settings.user_is_org_member=被操作的用戶是組織成員,因此無法添加為協作者! +settings.add_webhook=添加 Web 鉤子 +settings.hooks_desc=Web 鉤子允許您設定在 Gogs 上發生指定事件時對指定 URL 發送 POST 通知。查看 <a target="_blank" href="%s">Webhooks 文檔</a> 獲取更多信息。 +settings.webhook_deletion=Delete Webhook +settings.webhook_deletion_desc=Delete this webhook will remove its information and all delivery history. Do you want to continue? +settings.webhook_deletion_success=Webhook has been deleted successfully! +settings.webhook.request=Request +settings.webhook.response=Response +settings.webhook.headers=Headers +settings.webhook.payload=Payload +settings.webhook.body=Body +settings.githooks_desc=Git 鉤子是由 Git 本身提供的功能,以下為 Gogs 所支持的鉤子列表。 +settings.githook_edit_desc=如果鉤子未啟動,則會顯示樣例文件中的內容。如果想要刪除某個鉤子,則提交空白文本即可。 +settings.githook_name=鉤子名稱 +settings.githook_content=鉤子文本 +settings.update_githook=更新鉤子設置 +settings.add_webhook_desc=我們會通過 <code>POST</code> 請求將訂閱事件信息發送至向指定 URL 地址。您可以設置不同的數據接收方式(JSON 或 <code>x-www-form-urlencoded</code>)。 請查閱 <a target="_blank" href="%s">Webhooks 指南</a>. +settings.payload_url=推送地址 +settings.content_type=數據格式 +settings.secret=密鑰文本 +settings.slack_username=Username +settings.slack_icon_url=Icon URL +settings.slack_color=Color +settings.event_desc=請設置您希望觸發 Web 鉤子的事件: +settings.event_push_only=只推送 <code>push</code> 事件。 +settings.event_send_everything=I need <strong>everything</strong>. +settings.event_choose=Let me choose what I need. +settings.event_create=Create +settings.event_create_desc=Branch, or tag created +settings.event_push=Push +settings.event_push_desc=Git push to a repository +settings.active=是否激活 +settings.active_helper=當指定事件發生時我們將會觸發此 Web 鉤子。 +settings.add_hook_success=Web 鉤子添加成功! +settings.update_webhook=更新 Web 鉤子 +settings.update_hook_success=Web 鉤子更新成功! +settings.delete_webhook=刪除 Web 鉤子 +settings.recent_deliveries=最近推送記錄 +settings.hook_type=鉤子類型 +settings.add_slack_hook_desc=為您的倉庫增加 <a href="%s">Slack</a> 集成。 +settings.slack_token=令牌 +settings.slack_domain=域名 +settings.slack_channel=頻道 +settings.deploy_keys=管理部署密鑰 +settings.add_deploy_key=添加部署密鑰 +settings.no_deploy_keys=您還沒有添加任何部署密鑰。 +settings.title=標題 +settings.deploy_key_content=密鑰文本 +settings.key_been_used=部署密鑰已經被使用! +settings.key_name_used=使用相同名稱的部署密鑰已經存在! +settings.add_key_success=新的部署密鑰 '%s' 添加成功! +settings.deploy_key_deletion=刪除部署密鑰 +settings.deploy_key_deletion_desc=刪除該部署密鑰會移除本倉庫所有相關的操作權限。是否繼續? +settings.deploy_key_deletion_success=刪除部署密鑰成功! + +diff.browse_source=瀏覽代碼 +diff.parent=父節點 +diff.commit=當前提交 +diff.data_not_available=暫無可用數據 +diff.show_diff_stats=顯示文件統計 +diff.stats_desc=共有 <strong> %d 個文件被更改</strong>,包括 <strong>%d 次插入</strong> 和 <strong>%d 次删除</strong> +diff.bin=二進制 +diff.view_file=查看文件 + +release.releases=版本發佈 +release.new_release=發佈新版本 +release.draft=草稿 +release.prerelease=預發佈版本 +release.stable=穩定 +release.edit=編輯 +release.ahead=在該版本發佈之後已有 <strong>%d</strong> 次代碼提交到 %s 分支 +release.source_code=源代碼 +release.new_subheader=Publish releases to iterate product. +release.edit_subheader=Detailed change log can help users understand what has been improved. +release.tag_name=標籤名稱 +release.target=目標分支 +release.tag_helper=選擇或創建一個已存在的標籤 +release.title=Title +release.content=Content +release.write=內容編輯 +release.preview=效果預覽 +release.loading=正在加載... +release.prerelease_desc=這是一個預發佈版本 +release.prerelease_helper=我們會告知用戶不建議將本發佈投入生產環境使用。 +release.cancel=Cancel +release.publish=發佈版本 +release.save_draft=保在草稿 +release.edit_release=編輯發佈信息 +release.delete_release=Delete This Release +release.deletion=Release Deletion +release.deletion_desc=Delete this release will delete corresponding Git tag. Do you want to continue? +release.deletion_success=Release has been deleted successfully! +release.tag_name_already_exist=已經存在使用相同標籤的發佈版本。 +release.downloads=Downloads + +[org] +org_name_holder=組織名稱 +org_full_name_holder=Organization Full Name +org_name_helper=偉大的組織都有一個簡短而寓意深刻的名字。 +create_org=創建組織 +repo_updated=最後更新於 +people=組織成員 +invite_someone=邀請他人加入 +teams=組織團隊 +lower_members=名成員 +lower_repositories=個倉庫 +create_new_team=創建新的團隊 +org_desc=組織描述 +team_name=團隊名稱 +team_desc=團隊描述 +team_name_helper=您可以使用該名稱來通知改組全體成員。 +team_desc_helper=一句話描述這個團隊是做什麼的。 +team_permission_desc=請選擇該團隊所具有的權限等級: + +form.name_reserved=組織名稱 '%s' 是被保留的。 +form.name_pattern_not_allowed=組織名稱不允許 '%s' 的格式。 + +settings=組織設置 +settings.options=基本設置 +settings.full_name=組織全名 +settings.website=官方網站 +settings.location=所在地區 +settings.update_settings=更新組織設置 +settings.update_setting_success=組織設置更新成功! +settings.change_orgname_prompt=This change will affect how links relate to the organization. +settings.update_avatar_success=Organization avatar setting has been updated successfully. +settings.delete=刪除組織 +settings.delete_account=刪除當前組織 +settings.delete_prompt=刪除操作會永久清除該組織的信息,並且 <strong>不可恢復</strong>! +settings.confirm_delete_account=確認刪除組織 +settings.delete_org_title=組織刪除操作 +settings.delete_org_desc=該組織將被永久性刪除,您確定要繼續操作嗎? +settings.hooks_desc=在此處添加的 Web 鉤子將會應用到該組織下的 <strong>所有倉庫</strong>。 + +members.public=公開成員 +members.public_helper=設為私有 +members.private=私有成員 +members.private_helper=設為公開 +members.owner=管理員 +members.member=普通成員 +members.conceal=隱藏身份 +members.remove=移除成員 +members.leave=離開組織 +members.invite_desc=請輸入被邀請到組織 %s 的用戶名稱: +members.invite_now=立即邀請 + +teams.join=加入團隊 +teams.leave=離開團隊 +teams.read_access=讀取權限 +teams.read_access_helper=這個團隊將擁有查看和複製所屬倉庫的權限。 +teams.write_access=寫入權限 +teams.write_access_helper=這個團隊將擁有查看、複製和推送所屬倉庫的權限。 +teams.admin_access=管理權限 +teams.admin_access_helper=這個團隊將擁有查看、複製、推送和添加其他組織成員到團隊的權限。 +teams.no_desc=該團隊暫無描述 +teams.settings=團隊設置 +teams.owners_permission_desc=管理員團隊對 <strong>所有倉庫</strong> 具有操作權限,且對組織具有 <strong>管理員權限</strong>。 +teams.members=團隊成員 +teams.update_settings=更新團隊設置 +teams.delete_team=刪除當前團隊 +teams.add_team_member=添加團隊成員 +teams.delete_team_title=團隊刪除操作 +teams.delete_team_desc=刪除操作會永久清除有關該團隊的信息,您確定要繼續操作嗎?團隊成員可能會失去對某些倉庫的操作權限。 +teams.delete_team_success=指定團隊刪除成功! +teams.read_permission_desc=該團隊擁有對所屬倉庫的 <strong>讀取</strong> 權限,團隊成員可以進行查看和複製等只讀操作。 +teams.write_permission_desc=該團隊擁有對所屬倉庫的 <strong>讀取</strong> 和 <strong>寫入</strong> 的權限。 +teams.admin_permission_desc=該團隊擁有一定的 <strong>管理</strong> 權限,團隊成員可以讀取、複製、推送以及添加其它倉庫協作者。 +teams.repositories=團隊倉庫 +teams.add_team_repository=添加團隊倉庫 +teams.remove_repo=移除倉庫 +teams.add_nonexistent_repo=您嘗試添加到團隊的倉庫不存在,請先創建倉庫! + +[admin] +dashboard=控制面版 +users=用戶管理 +organizations=組織管理 +repositories=倉庫管理 +authentication=授權認證管理 +config=應用配置管理 +notices=系統提示管理 +monitor=應用監控面版 +first_page=First +last_page=Last +total=Total: %d + +dashboard.statistic=應用統計數據 +dashboard.operations=管理員操作 +dashboard.system_status=系統監視狀態 +dashboard.statistic_info=Gogs 數據庫統計:<b>%d</b> 位用戶,<b>%d</b> 個組織,<b>%d</b> 個公鑰,<b>%d</b> 個倉庫,<b>%d</b> 個倉庫關註,<b>%d</b> 個贊,<b>%d</b> 次行為,<b>%d</b> 條權限記錄,<b>%d</b> 個問題,<b>%d</b> 次評論,<b>%d</b> 個社交帳號,<b>%d</b> 個用戶關註,<b>%d</b> 個鏡像,<b>%d</b> 個版本發佈,<b>%d</b> 個登錄源,<b>%d</b> 個 Web 鉤子,<b>%d</b> 個里程碑,<b>%d</b> 個標籤,<b>%d</b> 個鉤子任務,<b>%d</b> 個團隊,<b>%d</b> 個更新任務,<b>%d</b> 個附件。 +dashboard.operation_name=操作名稱 +dashboard.operation_switch=開關 +dashboard.operation_run=執行 +dashboard.clean_unbind_oauth=清理未綁定社交帳號 +dashboard.clean_unbind_oauth_success=所有未綁定社交數據清除成功! +dashboard.delete_inactivate_accounts=刪除所有未激活帳戶 +dashboard.delete_inactivate_accounts_success=所有未激活帳號清除成功! +dashboard.delete_repo_archives=刪除所有倉庫存檔 +dashboard.delete_repo_archives_success=所有倉庫存檔清除成功! +dashboard.delete_missing_repos=Delete all repository records that lost Git files +dashboard.delete_missing_repos_success=All repository records that lost Git files have been deleted successfully. +dashboard.git_gc_repos=對倉庫進行垃圾回收 +dashboard.git_gc_repos_success=所有倉庫的垃圾回收已成功完成! +dashboard.resync_all_sshkeys=重新生成 '.ssh/authorized_keys' 文件(警告:不是 Gogs 的密鑰也會被刪除) +dashboard.resync_all_sshkeys_success=所有公鑰重新生成成功! +dashboard.resync_all_update_hooks=重新生成所有倉庫的 Update 鈎子(用於被修改的自定義配置文件) +dashboard.resync_all_update_hooks_success=已成功重新生成所有倉庫的 Update 鈎子! + +dashboard.server_uptime=服務執行時間 +dashboard.current_goroutine=當前 Goroutines 數量 +dashboard.current_memory_usage=當前內存使用量 +dashboard.total_memory_allocated=所有被分配的內存 +dashboard.memory_obtained=內存佔用量 +dashboard.pointer_lookup_times=指針查找次數 +dashboard.memory_allocate_times=內存分配次數 +dashboard.memory_free_times=內存釋放次數 +dashboard.current_heap_usage=當前 Heap 內存使用量 +dashboard.heap_memory_obtained=Heap 內存佔用量 +dashboard.heap_memory_idle=Heap 內存空閒量 +dashboard.heap_memory_in_use=正在使用的 Heap 內存 +dashboard.heap_memory_released=被釋放的 Heap 內存 +dashboard.heap_objects=Heap 對象數量 +dashboard.bootstrap_stack_usage=啟動 Stack 使用量 +dashboard.stack_memory_obtained=被分配的 Stack 內存 +dashboard.mspan_structures_usage=MSpan 結構內存使用量 +dashboard.mspan_structures_obtained=被分配的 MSpan 結構內存 +dashboard.mcache_structures_usage=MCache 結構內存使用量 +dashboard.mcache_structures_obtained=被分配的 MCache 結構內存 +dashboard.profiling_bucket_hash_table_obtained=被分配的剖析哈希表內存 +dashboard.gc_metadata_obtained=被分配的垃圾收集元數據內存 +dashboard.other_system_allocation_obtained=其它被分配的系統內存 +dashboard.next_gc_recycle=下次垃圾收集內存回收量 +dashboard.last_gc_time=距離上次垃圾收集時間 +dashboard.total_gc_time=垃圾收集執行時間總量 +dashboard.total_gc_pause=垃圾收集暫停時間總量 +dashboard.last_gc_pause=上次垃圾收集暫停時間 +dashboard.gc_times=垃圾收集執行次數 + +users.user_manage_panel=用戶管理面版 +users.new_account=創建新的帳戶 +users.name=用戶名 +users.activated=已激活 +users.admin=管理員 +users.repos=倉庫數 +users.created=創建時間 +users.send_register_notify=Send Registration Notification To User +users.new_success=New account '%s' has been created successfully. +users.edit=編輯 +users.auth_source=Authentication Source +users.local=本地 +users.auth_login_name=Authentication Login Name +users.password_helper=Leave it empty to remain unchanged. +users.update_profile_success=該用戶信息更新成功! +users.edit_account=編輯用戶信息 +users.is_activated=該用戶已被激活 +users.is_admin=該用戶具有管理員權限 +users.allow_git_hook=該帳戶具有創建 Git 鉤子的權限 +users.allow_import_local=This account has permissions to import local repositories +users.update_profile=更新用戶信息 +users.delete_account=刪除該用戶 +users.still_own_repo=該帳戶仍然是某些倉庫的擁有者,您必須先轉移或刪除它們才能執行刪除帳戶操作! +users.still_has_org=該帳戶仍舊是某些組織的成員,您必須先使其離開或刪除組織。 +users.deletion_success=Account has been deleted successfully! + +orgs.org_manage_panel=組織管理面版 +orgs.name=組織名稱 +orgs.teams=團隊數 +orgs.members=成員數 + +repos.repo_manage_panel=倉庫管理界面 +repos.owner=所有者 +repos.name=倉庫名稱 +repos.private=私有庫 +repos.watches=關註數 +repos.stars=讚好數 +repos.issues=問題數 + +auths.auth_manage_panel=Authentication Manage Panel +auths.new=Add New Source +auths.name=認證名稱 +auths.type=認證類型 +auths.enabled=已啟用 +auths.updated=最後更新時間 +auths.auth_type=Authentication Type +auths.auth_name=Authentication Name +auths.domain=域名 +auths.host=主機地址 +auths.port=主機端口 +auths.bind_dn=綁定DN +auths.bind_password=綁定密碼 +auths.bind_password_helper=Warning: This password is stored in plain text. Do not use a high privileged account. +auths.user_base=User Search Base +auths.user_dn=User DN +auths.attribute_name=名子屬性 +auths.attribute_surname=姓氏屬性 +auths.attribute_mail=電子郵箱屬性 +auths.filter=使用者篩選器 +auths.admin_filter=管理者篩選器 +auths.ms_ad_sa=Ms Ad SA +auths.smtp_auth=SMTP Authentication Type +auths.smtphost=SMTP 主機地址 +auths.smtpport=SMTP 主機端口 +auths.allowed_domains=Allowed Domains +auths.allowed_domains_helper=Leave it empty to not restrict any domains. Multiple domains should be separated by comma ','. +auths.enable_tls=啟用 TLS 加密 +auths.skip_tls_verify=Skip TLS Verify +auths.pam_service_name=PAM 服務名稱 +auths.enable_auto_register=允許授權用戶自動註冊 +auths.tips=幫助提示 +auths.edit=Edit Authentication Setting +auths.activated=該授權認證已經啟用 +auths.new_success=New authentication '%s' has been added successfully. +auths.update_success=Authentication setting has been updated successfully. +auths.update=Update Authentication Setting +auths.delete=Delete This Authentication +auths.delete_auth_title=Authentication Deletion +auths.delete_auth_desc=This authentication is going to be deleted, do you want to continue? +auths.deletion_success=Authentication has been deleted successfully! + +config.server_config=服務器配置 +config.app_name=應用名稱 +config.app_ver=應用版本 +config.app_url=應用 URL +config.domain=應用域名 +config.offline_mode=離線模式 +config.disable_router_log=關閉路由日志 +config.run_user=執行用戶 +config.run_mode=執行模式 +config.repo_root_path=倉庫根目錄 +config.static_file_root_path=靜態文件根目錄 +config.log_file_root_path=日志文件根目錄 +config.script_type=腳本類型 +config.reverse_auth_user=反向代理認證 +config.db_config=數據庫配置 +config.db_type=數據庫類型 +config.db_host=主機地址 +config.db_name=數據庫名稱 +config.db_user=數據庫用戶 +config.db_ssl_mode=SSL 模式 +config.db_ssl_mode_helper=(僅限 "postgres" 使用) +config.db_path=數據庫路徑 +config.db_path_helper=(for "sqlite3" and "tidb") +config.service_config=服務配置 +config.register_email_confirm=註冊電子郵件確認 +config.disable_register=關閉註冊功能 +config.show_registration_button=顯示註冊按鈕 +config.require_sign_in_view=強制登錄瀏覽 +config.enable_cache_avatar=開啟緩存頭像 +config.mail_notify=郵件通知提醒 +config.disable_key_size_check=Disable Minimum Key Size Check +config.enable_captcha=Enable Captcha +config.active_code_lives=激活用戶連結有效期 +config.reset_password_code_lives=重置密碼連結有效期 +config.webhook_config=Web 鉤子配置 +config.queue_length=隊列長度 +config.deliver_timeout=推送超時 +config.skip_tls_verify=忽略 TLS 驗證 +config.mailer_config=郵件配置 +config.mailer_enabled=啟用服務 +config.mailer_disable_helo=禁用 HELO 操作 +config.mailer_name=發送者名稱 +config.mailer_host=郵件主機地址 +config.mailer_user=發送者帳號 +config.oauth_config=社交帳號配置 +config.oauth_enabled=啟用服務 +config.cache_config=Cache 配置 +config.cache_adapter=Cache 適配器 +config.cache_interval=Cache 周期 +config.cache_conn=Cache 連接字符串 +config.session_config=Session 配置 +config.session_provider=Session 提供者 +config.provider_config=提供者配置 +config.cookie_name=Cookie 名稱 +config.enable_set_cookie=啟用設置 Cookie +config.gc_interval_time=垃圾收集周期 +config.session_life_time=Session 生命周期 +config.https_only=僅限 HTTPS +config.cookie_life_time=Cookie 生命周期 +config.picture_config=圖片配置 +config.picture_service=圖片服務 +config.disable_gravatar=禁用 Gravatar 頭像 +config.log_config=日誌配置 +config.log_mode=日誌模式 + +monitor.cron=Cron 任務 +monitor.name=任務名稱 +monitor.schedule=任務安排 +monitor.next=下次執行時間 +monitor.previous=上次執行時間 +monitor.execute_times=執行次數 +monitor.process=執行中進程 +monitor.desc=進程描述 +monitor.start=開始時間 +monitor.execute_time=已執行時間 + +notices.system_notice_list=系統提示管理 +notices.type=提示類型 +notices.type_1=倉庫 +notices.desc=描述 +notices.op=操作 +notices.delete_success=系統提示刪除成功! + +[action] +create_repo=創建了倉庫 <a href="%s">%s</a> +rename_repo=renamed repository from <code>%[1]s</code> to <a href="%[2]s">%[3]s</a> +commit_repo=推送了 <a href="%[1]s/src/%[2]s">%[3]s</a> 分支的代碼到 <a href="%[1]s">%[4]s</a> +create_issue=`創建了問題 <a href="%s/issues/%s">%s#%[2]s</a>` +create_pull_request=`created pull request <a href="%s/pulls/%s">%s#%[2]s</a>` +comment_issue=`評論了問題 <a href="%s/issues/%s">%s#%[2]s</a>` +merge_pull_request=`merged pull request <a href="%s/pulls/%s">%s#%[2]s</a>` +transfer_repo=將倉庫 <code>%s</code> 轉移至 <a href="%s">%s</a> +push_tag=推送了標籤 <a href="%s/src/%s">%[2]s</a> 到 <a href="%[1]s">%[3]s</a> +compare_2_commits=查看 2 次提交的內容對比 + +[tool] +ago=之前 +from_now=之後 +now=現在 +1s=1 秒%s +1m=1 分鐘%s +1h=1 小時%s +1d=1 天%s +1w=1 周%s +1mon=1 月%s +1y=1 年%s +seconds=%d 秒%s +minutes=%d 分鐘%s +hours=%d 小時%s +days=%d 天%s +weeks=%d 周%s +months=%d 月%s +years=%d 年%s +raw_seconds=秒 +raw_minutes=分鐘 + +[dropzone] +default_message=拖曳文件到此處或單擊上傳 +invalid_input_type=您不能上傳該類型的文件 +file_too_big=文件大小({{filesize}} MB)超過了最大允許大小({{maxFilesize}} MB) +remove_file=移除文件 + diff --git a/config.codekit b/config.codekit index f11369f0..49003dfe 100644 --- a/config.codekit +++ b/config.codekit @@ -464,7 +464,7 @@ "ignore": 0, "ignoreWasSetByUser": 0, "inputAbbreviatedPath": "\/public\/less\/gogs.less", - "outputAbbreviatedPath": "\/public\/css\/gogs.min.css", + "outputAbbreviatedPath": "\/public\/css\/gogs.css", "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 1, "outputStyle": 1, diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 4e330895..00000000 --- a/docker-compose.yml +++ /dev/null @@ -1,12 +0,0 @@ -web: - build: . - links: - - mysql - ports: - - "3000:3000" - -mysql: - image: mysql - environment: - - MYSQL_ROOT_PASSWORD=gogs - - MYSQL_DATABASE=gogs diff --git a/docker/build.sh b/docker/build.sh index cc66f778..2e59616d 100755 --- a/docker/build.sh +++ b/docker/build.sh @@ -1,4 +1,6 @@ #!/bin/sh +set -x +set -e # Set temp environment vars export GOPATH=/tmp/go diff --git a/docker/s6/gogs/setup b/docker/s6/gogs/setup index e64a36d6..40bd82b2 100755 --- a/docker/s6/gogs/setup +++ b/docker/s6/gogs/setup @@ -20,3 +20,4 @@ ln -sf /data/gogs/data ./data ln -sf /data/git /home/git chown -R git:git /data /app/gogs ~git/ +chmod 0755 /data /data/gogs ~git/ diff --git a/docker/s6/openssh/setup b/docker/s6/openssh/setup index f263516b..6df5ef70 100755 --- a/docker/s6/openssh/setup +++ b/docker/s6/openssh/setup @@ -23,4 +23,5 @@ fi # Set correct right to ssh keys chown -R root:root /data/ssh/* -chmod 600 /data/ssh/* +chmod 0700 /data/ssh +chmod 0600 /data/ssh/* diff --git a/docker/s6/syslogd/run b/docker/s6/syslogd/run new file mode 100755 index 00000000..f7bdbe36 --- /dev/null +++ b/docker/s6/syslogd/run @@ -0,0 +1,7 @@ +#!/bin/sh + +if test -f ./setup; then + source ./setup +fi + +exec gosu root /sbin/syslogd -nS -O- diff --git a/docker/start.sh b/docker/start.sh index 42bdb3c5..042bdd05 100755 --- a/docker/start.sh +++ b/docker/start.sh @@ -1,40 +1,56 @@ #!/bin/sh -# Cleanup SOCAT services and s6 event folder -# On start and on shutdown in case container has been killed -rm -rf $(find /app/gogs/docker/s6/ -name 'event') -rm -rf /app/gogs/docker/s6/SOCAT_* +create_socat_links() { + # Bind linked docker container to localhost socket using socat + USED_PORT="3000:22" + while read NAME ADDR PORT; do + if test -z "$NAME$ADDR$PORT"; then + continue + elif echo $USED_PORT | grep -E "(^|:)$PORT($|:)" > /dev/null; then + echo "init:socat | Can't bind linked container ${NAME} to localhost, port ${PORT} already in use" 1>&2 + else + SERV_FOLDER=/app/gogs/docker/s6/SOCAT_${NAME}_${PORT} + mkdir -p ${SERV_FOLDER} + CMD="socat -ls TCP4-LISTEN:${PORT},fork,reuseaddr TCP4:${ADDR}:${PORT}" + echo -e "#!/bin/sh\nexec $CMD" > ${SERV_FOLDER}/run + chmod +x ${SERV_FOLDER}/run + USED_PORT="${USED_PORT}:${PORT}" + echo "init:socat | Linked container ${NAME} will be binded to localhost on port ${PORT}" 1>&2 + fi + done << EOT + $(env | sed -En 's|(.*)_PORT_([0-9]+)_TCP=tcp://(.*):([0-9]+)|\1 \3 \4|p') +EOT +} -# Create VOLUME subfolder -for f in /data/gogs/data /data/gogs/conf /data/gogs/log /data/git /data/ssh; do - if ! test -d $f; then - mkdir -p $f - fi -done +cleanup() { + # Cleanup SOCAT services and s6 event folder + # On start and on shutdown in case container has been killed + rm -rf $(find /app/gogs/docker/s6/ -name 'event') + rm -rf /app/gogs/docker/s6/SOCAT_* +} -# Bind linked docker container to localhost socket using socat -USED_PORT="3000:22" -while read NAME ADDR PORT; do - if test -z "$NAME$ADDR$PORT"; then - continue - elif echo $USED_PORT | grep -E "(^|:)$PORT($|:)" > /dev/null; then - echo "init:socat | Can't bind linked container ${NAME} to localhost, port ${PORT} already in use" 1>&2 - else - SERV_FOLDER=/app/gogs/docker/s6/SOCAT_${NAME}_${PORT} - mkdir -p ${SERV_FOLDER} - CMD="socat -ls TCP4-LISTEN:${PORT},fork,reuseaddr TCP4:${ADDR}:${PORT}" - echo -e "#!/bin/sh\nexec $CMD" > ${SERV_FOLDER}/run - chmod +x ${SERV_FOLDER}/run - USED_PORT="${USED_PORT}:${PORT}" - echo "init:socat | Linked container ${NAME} will be binded to localhost on port ${PORT}" 1>&2 - fi -done << EOT -$(env | sed -En 's|(.*)_PORT_([0-9]+)_TCP=tcp://(.*):([0-9]+)|\1 \3 \4|p') -EOT +create_volume_subfolder() { + # Create VOLUME subfolder + for f in /data/gogs/data /data/gogs/conf /data/gogs/log /data/git /data/ssh; do + if ! test -d $f; then + mkdir -p $f + fi + done +} + +cleanup +create_volume_subfolder + +LINK=$(echo "$SOCAT_LINK" | tr '[:upper:]' '[:lower:]') +if [ "$LINK" = "false" -o "$LINK" = "0" ]; then + echo "init:socat | Will not try to create socat links as requested" 1>&2 +else + create_socat_links +fi # Exec CMD or S6 by default if nothing present if [ $# -gt 0 ];then exec "$@" else - exec /usr/bin/s6-svscan /app/gogs/docker/s6/ + exec /bin/s6-svscan /app/gogs/docker/s6/ fi @@ -4,7 +4,7 @@ // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. -// Gogs(Go Git Service) is a painless self-hosted Git Service written in Go. +// Gogs (Go Git Service) is a painless self-hosted Git Service. package main import ( @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.18.1029 Beta" +const APP_VER = "0.7.20.1121 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/access.go b/models/access.go index fe8bf2c1..5eef3281 100644 --- a/models/access.go +++ b/models/access.go @@ -36,19 +36,19 @@ func accessLevel(e Engine, u *User, repo *Repository) (AccessMode, error) { mode = ACCESS_MODE_READ } - if u != nil { - if u.Id == repo.OwnerID { - return ACCESS_MODE_OWNER, nil - } + if u == nil { + return mode, nil + } - a := &Access{UserID: u.Id, RepoID: repo.ID} - if has, err := e.Get(a); !has || err != nil { - return mode, err - } - return a.Mode, nil + if u.Id == repo.OwnerID { + return ACCESS_MODE_OWNER, nil } - return mode, nil + a := &Access{UserID: u.Id, RepoID: repo.ID} + if has, err := e.Get(a); !has || err != nil { + return mode, err + } + return a.Mode, nil } // AccessLevel returns the Access a user has to a repository. Will return NoneAccess if the @@ -67,9 +67,8 @@ func HasAccess(u *User, repo *Repository, testMode AccessMode) (bool, error) { return hasAccess(x, u, repo, testMode) } -// GetAccessibleRepositories finds all repositories where a user has access to, -// besides he/she owns. -func (u *User) GetAccessibleRepositories() (map[*Repository]AccessMode, error) { +// GetRepositoryAccesses finds all repositories with their access mode where a user has access but does not own. +func (u *User) GetRepositoryAccesses() (map[*Repository]AccessMode, error) { accesses := make([]*Access, 0, 10) if err := x.Find(&accesses, &Access{UserID: u.Id}); err != nil { return nil, err @@ -80,7 +79,7 @@ func (u *User) GetAccessibleRepositories() (map[*Repository]AccessMode, error) { repo, err := GetRepositoryByID(access.RepoID) if err != nil { if IsErrRepoNotExist(err) { - log.Error(4, "%v", err) + log.Error(4, "GetRepositoryByID: %v", err) continue } return nil, err @@ -92,11 +91,28 @@ func (u *User) GetAccessibleRepositories() (map[*Repository]AccessMode, error) { } repos[repo] = access.Mode } - - // FIXME: should we generate an ordered list here? Random looks weird. return repos, nil } +// GetAccessibleRepositories finds all repositories where a user has access but does not own. +func (u *User) GetAccessibleRepositories() ([]*Repository, error) { + accesses := make([]*Access, 0, 10) + if err := x.Find(&accesses, &Access{UserID: u.Id}); err != nil { + return nil, err + } + + if len(accesses) == 0 { + return []*Repository{}, nil + } + + repoIDs := make([]int64, 0, len(accesses)) + for _, access := range accesses { + repoIDs = append(repoIDs, access.RepoID) + } + repos := make([]*Repository, 0, len(repoIDs)) + return repos, x.Where("owner_id != ?", u.Id).In("id", repoIDs).Desc("updated").Find(&repos) +} + func maxAccessMode(modes ...AccessMode) AccessMode { max := ACCESS_MODE_NONE for _, mode := range modes { diff --git a/models/action.go b/models/action.go index e38cf593..8dd80074 100644 --- a/models/action.go +++ b/models/action.go @@ -14,6 +14,7 @@ import ( "time" "unicode" + "github.com/Unknwon/com" "github.com/go-xorm/xorm" api "github.com/gogits/go-gogs-client" @@ -136,6 +137,26 @@ func (a Action) GetIssueInfos() []string { return strings.SplitN(a.Content, "|", 2) } +func (a Action) GetIssueTitle() string { + index := com.StrTo(a.GetIssueInfos()[0]).MustInt64() + issue, err := GetIssueByIndex(a.RepoID, index) + if err != nil { + log.Error(4, "GetIssueByIndex: %v", err) + return "500 when get issue" + } + return issue.Name +} + +func (a Action) GetIssueContent() string { + index := com.StrTo(a.GetIssueInfos()[0]).MustInt64() + issue, err := GetIssueByIndex(a.RepoID, index) + if err != nil { + log.Error(4, "GetIssueByIndex: %v", err) + return "500 when get issue" + } + return issue.Content +} + func newRepoAction(e Engine, u *User, repo *Repository) (err error) { if err = notifyWatchers(e, &Action{ ActUserID: u.Id, @@ -147,7 +168,7 @@ func newRepoAction(e Engine, u *User, repo *Repository) (err error) { RepoName: repo.Name, IsPrivate: repo.IsPrivate, }); err != nil { - return fmt.Errorf("notify watchers '%d/%s': %v", u.Id, repo.ID, err) + return fmt.Errorf("notify watchers '%d/%d': %v", u.Id, repo.ID, err) } log.Trace("action.newRepoAction: %s/%s", u.Name, repo.Name) @@ -187,8 +208,48 @@ func issueIndexTrimRight(c rune) bool { return !unicode.IsDigit(c) } +type PushCommit struct { + Sha1 string + Message string + AuthorEmail string + AuthorName string +} + +type PushCommits struct { + Len int + Commits []*PushCommit + CompareUrl string + + avatars map[string]string +} + +func NewPushCommits() *PushCommits { + return &PushCommits{ + avatars: make(map[string]string), + } +} + +// AvatarLink tries to match user in database with e-mail +// in order to show custom avatar, and falls back to general avatar link. +func (push *PushCommits) AvatarLink(email string) string { + _, ok := push.avatars[email] + if !ok { + u, err := GetUserByEmail(email) + if err != nil { + push.avatars[email] = base.AvatarLink(email) + if !IsErrUserNotExist(err) { + log.Error(4, "GetUserByEmail: %v", err) + } + } else { + push.avatars[email] = u.AvatarLink() + } + } + + return push.avatars[email] +} + // updateIssuesCommit checks if issues are manipulated by commit message. -func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string, commits []*base.PushCommit) error { +func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string, commits []*PushCommit) error { // Commits are appended in the reverse order. for i := len(commits) - 1; i >= 0; i-- { c := commits[i] @@ -322,7 +383,7 @@ func CommitRepoAction( repoID int64, repoUserName, repoName string, refFullName string, - commit *base.PushCommits, + commit *PushCommits, oldCommitID string, newCommitID string) error { u, err := GetUserByID(userID) @@ -337,12 +398,18 @@ func CommitRepoAction( return fmt.Errorf("GetOwner: %v", err) } + // Change repository bare status and update last updated time. + repo.IsBare = false + if err = UpdateRepository(repo, false); err != nil { + return fmt.Errorf("UpdateRepository: %v", err) + } + isNewBranch := false opType := COMMIT_REPO // Check it's tag push or branch. if strings.HasPrefix(refFullName, "refs/tags/") { opType = PUSH_TAG - commit = &base.PushCommits{} + commit = &PushCommits{} } else { // if not the first commit, set the compareUrl if !strings.HasPrefix(oldCommitID, "0000000") { @@ -351,12 +418,10 @@ func CommitRepoAction( isNewBranch = true } - // Change repository bare status and update last updated time. - repo.IsBare = false - if err = UpdateRepository(repo, false); err != nil { - return fmt.Errorf("UpdateRepository: %v", err) + // NOTE: limit to detect latest 100 commits. + if len(commit.Commits) > 100 { + commit.Commits = commit.Commits[len(commit.Commits)-100:] } - if err = updateIssuesCommit(u, repo, repoUserName, repoName, commit.Commits); err != nil { log.Error(4, "updateIssuesCommit: %v", err) } @@ -488,7 +553,7 @@ func transferRepoAction(e Engine, actUser, oldOwner, newOwner *User, repo *Repos IsPrivate: repo.IsPrivate, Content: path.Join(oldOwner.LowerName, repo.LowerName), }); err != nil { - return fmt.Errorf("notify watchers '%d/%s': %v", actUser.Id, repo.ID, err) + return fmt.Errorf("notify watchers '%d/%d': %v", actUser.Id, repo.ID, err) } // Remove watch for organization. diff --git a/models/error.go b/models/error.go index f6973258..069346be 100644 --- a/models/error.go +++ b/models/error.go @@ -18,7 +18,7 @@ func IsErrNameReserved(err error) bool { } func (err ErrNameReserved) Error() string { - return fmt.Sprintf("name is reserved: [name: %s]", err.Name) + return fmt.Sprintf("name is reserved [name: %s]", err.Name) } type ErrNamePatternNotAllowed struct { @@ -31,7 +31,7 @@ func IsErrNamePatternNotAllowed(err error) bool { } func (err ErrNamePatternNotAllowed) Error() string { - return fmt.Sprintf("name pattern is not allowed: [pattern: %s]", err.Pattern) + return fmt.Sprintf("name pattern is not allowed [pattern: %s]", err.Pattern) } // ____ ___ @@ -51,7 +51,7 @@ func IsErrUserAlreadyExist(err error) bool { } func (err ErrUserAlreadyExist) Error() string { - return fmt.Sprintf("user already exists: [name: %s]", err.Name) + return fmt.Sprintf("user already exists [name: %s]", err.Name) } type ErrUserNotExist struct { @@ -65,7 +65,7 @@ func IsErrUserNotExist(err error) bool { } func (err ErrUserNotExist) Error() string { - return fmt.Sprintf("user does not exist: [uid: %d, name: %s]", err.UID, err.Name) + return fmt.Sprintf("user does not exist [uid: %d, name: %s]", err.UID, err.Name) } type ErrEmailAlreadyUsed struct { @@ -78,7 +78,7 @@ func IsErrEmailAlreadyUsed(err error) bool { } func (err ErrEmailAlreadyUsed) Error() string { - return fmt.Sprintf("e-mail has been used: [email: %s]", err.Email) + return fmt.Sprintf("e-mail has been used [email: %s]", err.Email) } type ErrUserOwnRepos struct { @@ -91,7 +91,7 @@ func IsErrUserOwnRepos(err error) bool { } func (err ErrUserOwnRepos) Error() string { - return fmt.Sprintf("user still has ownership of repositories: [uid: %d]", err.UID) + return fmt.Sprintf("user still has ownership of repositories [uid: %d]", err.UID) } type ErrUserHasOrgs struct { @@ -104,7 +104,7 @@ func IsErrUserHasOrgs(err error) bool { } func (err ErrUserHasOrgs) Error() string { - return fmt.Sprintf("user still has membership of organizations: [uid: %d]", err.UID) + return fmt.Sprintf("user still has membership of organizations [uid: %d]", err.UID) } // __________ ___. .__ .__ ____ __. @@ -114,6 +114,19 @@ func (err ErrUserHasOrgs) Error() string { // |____| |____/|___ /____/__|\___ > |____|__ \___ > ____| // \/ \/ \/ \/\/ +type ErrKeyUnableVerify struct { + Result string +} + +func IsErrKeyUnableVerify(err error) bool { + _, ok := err.(ErrKeyUnableVerify) + return ok +} + +func (err ErrKeyUnableVerify) Error() string { + return fmt.Sprintf("Unable to verify key content [result: %s]", err.Result) +} + type ErrKeyNotExist struct { ID int64 } @@ -124,7 +137,7 @@ func IsErrKeyNotExist(err error) bool { } func (err ErrKeyNotExist) Error() string { - return fmt.Sprintf("public key does not exist: [id: %d]", err.ID) + return fmt.Sprintf("public key does not exist [id: %d]", err.ID) } type ErrKeyAlreadyExist struct { @@ -138,7 +151,7 @@ func IsErrKeyAlreadyExist(err error) bool { } func (err ErrKeyAlreadyExist) Error() string { - return fmt.Sprintf("public key already exists: [owner_id: %d, content: %s]", err.OwnerID, err.Content) + return fmt.Sprintf("public key already exists [owner_id: %d, content: %s]", err.OwnerID, err.Content) } type ErrKeyNameAlreadyUsed struct { @@ -152,7 +165,22 @@ func IsErrKeyNameAlreadyUsed(err error) bool { } func (err ErrKeyNameAlreadyUsed) Error() string { - return fmt.Sprintf("public key already exists: [owner_id: %d, name: %s]", err.OwnerID, err.Name) + return fmt.Sprintf("public key already exists [owner_id: %d, name: %s]", err.OwnerID, err.Name) +} + +type ErrDeployKeyNotExist struct { + ID int64 + KeyID int64 + RepoID int64 +} + +func IsErrDeployKeyNotExist(err error) bool { + _, ok := err.(ErrDeployKeyNotExist) + return ok +} + +func (err ErrDeployKeyNotExist) Error() string { + return fmt.Sprintf("Deploy key does not exist [id: %d, key_id: %d, repo_id: %d]", err.ID, err.KeyID, err.RepoID) } type ErrDeployKeyAlreadyExist struct { @@ -166,7 +194,7 @@ func IsErrDeployKeyAlreadyExist(err error) bool { } func (err ErrDeployKeyAlreadyExist) Error() string { - return fmt.Sprintf("public key already exists: [key_id: %d, repo_id: %d]", err.KeyID, err.RepoID) + return fmt.Sprintf("public key already exists [key_id: %d, repo_id: %d]", err.KeyID, err.RepoID) } type ErrDeployKeyNameAlreadyUsed struct { @@ -180,7 +208,7 @@ func IsErrDeployKeyNameAlreadyUsed(err error) bool { } func (err ErrDeployKeyNameAlreadyUsed) Error() string { - return fmt.Sprintf("public key already exists: [repo_id: %d, name: %s]", err.RepoID, err.Name) + return fmt.Sprintf("public key already exists [repo_id: %d, name: %s]", err.RepoID, err.Name) } // _____ ___________ __ @@ -200,7 +228,7 @@ func IsErrAccessTokenNotExist(err error) bool { } func (err ErrAccessTokenNotExist) Error() string { - return fmt.Sprintf("access token does not exist: [sha: %s]", err.SHA) + return fmt.Sprintf("access token does not exist [sha: %s]", err.SHA) } // ________ .__ __ .__ @@ -220,7 +248,7 @@ func IsErrLastOrgOwner(err error) bool { } func (err ErrLastOrgOwner) Error() string { - return fmt.Sprintf("user is the last member of owner team: [uid: %d]", err.UID) + return fmt.Sprintf("user is the last member of owner team [uid: %d]", err.UID) } // __________ .__ __ @@ -259,6 +287,62 @@ func (err ErrRepoAlreadyExist) Error() string { return fmt.Sprintf("repository already exists [uname: %s, name: %s]", err.Uname, err.Name) } +type ErrInvalidCloneAddr struct { + IsURLError bool + IsInvalidPath bool + IsPermissionDenied bool +} + +func IsErrInvalidCloneAddr(err error) bool { + _, ok := err.(ErrInvalidCloneAddr) + return ok +} + +func (err ErrInvalidCloneAddr) Error() string { + return fmt.Sprintf("invalid clone address [is_url_error: %v, is_invalid_path: %v, is_permission_denied: %v]", + err.IsURLError, err.IsInvalidPath, err.IsPermissionDenied) +} + +type ErrUpdateTaskNotExist struct { + UUID string +} + +func IsErrUpdateTaskNotExist(err error) bool { + _, ok := err.(ErrUpdateTaskNotExist) + return ok +} + +func (err ErrUpdateTaskNotExist) Error() string { + return fmt.Sprintf("update task does not exist [uuid: %s]", err.UUID) +} + +type ErrReleaseAlreadyExist struct { + TagName string +} + +func IsErrReleaseAlreadyExist(err error) bool { + _, ok := err.(ErrReleaseAlreadyExist) + return ok +} + +func (err ErrReleaseAlreadyExist) Error() string { + return fmt.Sprintf("Release tag already exist [tag_name: %s]", err.TagName) +} + +type ErrReleaseNotExist struct { + ID int64 + TagName string +} + +func IsErrReleaseNotExist(err error) bool { + _, ok := err.(ErrReleaseNotExist) + return ok +} + +func (err ErrReleaseNotExist) Error() string { + return fmt.Sprintf("Release tag does not exist [id: %d, tag_name: %s]", err.ID, err.TagName) +} + // __ __ ___. .__ __ // / \ / \ ____\_ |__ | |__ ____ ____ | | __ // \ \/\/ // __ \| __ \| | \ / _ \ / _ \| |/ / diff --git a/models/git_diff.go b/models/git_diff.go index 2335e468..4b1ec09e 100644 --- a/models/git_diff.go +++ b/models/git_diff.go @@ -37,6 +37,7 @@ const ( DIFF_FILE_ADD = iota + 1 DIFF_FILE_CHANGE DIFF_FILE_DEL + DIFF_FILE_RENAME ) type DiffLine struct { @@ -57,12 +58,14 @@ type DiffSection struct { type DiffFile struct { Name string + OldName string Index int Addition, Deletion int Type int IsCreated bool IsDeleted bool IsBin bool + IsRenamed bool Sections []*DiffSection } @@ -94,7 +97,7 @@ func ParsePatch(pid int64, maxlines int, cmd *exec.Cmd, reader io.Reader) (*Diff var i int for scanner.Scan() { line := scanner.Text() - // fmt.Println(i, line) + if strings.HasPrefix(line, "+++ ") || strings.HasPrefix(line, "--- ") { continue } @@ -158,17 +161,27 @@ func ParsePatch(pid int64, maxlines int, cmd *exec.Cmd, reader io.Reader) (*Diff // Get new file. if strings.HasPrefix(line, DIFF_HEAD) { - beg := len(DIFF_HEAD) - a := line[beg : (len(line)-beg)/2+beg] + middle := -1 + + // Note: In case file name is surrounded by double quotes (it happens only in git-shell). + // e.g. diff --git "a/xxx" "b/xxx" + hasQuote := line[len(DIFF_HEAD)] == '"' + if hasQuote { + middle = strings.Index(line, ` "b/`) + } else { + middle = strings.Index(line, " b/") + } - // In case file name is surrounded by double quotes(it happens only in git-shell). - if a[0] == '"' { - a = a[1 : len(a)-1] - a = strings.Replace(a, `\"`, `"`, -1) + beg := len(DIFF_HEAD) + a := line[beg+2 : middle] + b := line[middle+3:] + if hasQuote { + a = string(git.UnescapeChars([]byte(a[1 : len(a)-1]))) + b = string(git.UnescapeChars([]byte(b[1 : len(b)-1]))) } curFile = &DiffFile{ - Name: a[strings.Index(a, "/")+1:], + Name: a, Index: len(diff.Files) + 1, Type: DIFF_FILE_CHANGE, Sections: make([]*DiffSection, 0, 10), @@ -180,16 +193,17 @@ func ParsePatch(pid int64, maxlines int, cmd *exec.Cmd, reader io.Reader) (*Diff switch { case strings.HasPrefix(scanner.Text(), "new file"): curFile.Type = DIFF_FILE_ADD - curFile.IsDeleted = false curFile.IsCreated = true case strings.HasPrefix(scanner.Text(), "deleted"): curFile.Type = DIFF_FILE_DEL - curFile.IsCreated = false curFile.IsDeleted = true case strings.HasPrefix(scanner.Text(), "index"): curFile.Type = DIFF_FILE_CHANGE - curFile.IsCreated = false - curFile.IsDeleted = false + case strings.HasPrefix(scanner.Text(), "similarity index 100%"): + curFile.Type = DIFF_FILE_RENAME + curFile.IsRenamed = true + curFile.OldName = curFile.Name + curFile.Name = b } if curFile.Type > 0 { break @@ -244,10 +258,10 @@ func GetDiffRange(repoPath, beforeCommitId string, afterCommitId string, maxline cmd = exec.Command("git", "show", afterCommitId) } else { c, _ := commit.Parent(0) - cmd = exec.Command("git", "diff", c.Id.String(), afterCommitId) + cmd = exec.Command("git", "diff", "-M", c.ID.String(), afterCommitId) } } else { - cmd = exec.Command("git", "diff", beforeCommitId, afterCommitId) + cmd = exec.Command("git", "diff", "-M", beforeCommitId, afterCommitId) } cmd.Dir = repoPath cmd.Stdout = wr diff --git a/models/issue.go b/models/issue.go index 077e945c..cee8c36a 100644 --- a/models/issue.go +++ b/models/issue.go @@ -718,32 +718,28 @@ func GetIssueStats(opts *IssueStatsOptions) *IssueStats { if opts.AssigneeID > 0 { baseCond += " AND assignee_id=" + com.ToStr(opts.AssigneeID) } - if opts.IsPull { - baseCond += " AND issue.is_pull=1" - } else { - baseCond += " AND issue.is_pull=0" - } + baseCond += " AND issue.is_pull=?" switch opts.FilterMode { case FM_ALL, FM_ASSIGN: - results, _ := x.Query(queryStr+baseCond, false) + results, _ := x.Query(queryStr+baseCond, false, opts.IsPull) stats.OpenCount = parseCountResult(results) - results, _ = x.Query(queryStr+baseCond, true) + results, _ = x.Query(queryStr+baseCond, true, opts.IsPull) stats.ClosedCount = parseCountResult(results) case FM_CREATE: baseCond += " AND poster_id=?" - results, _ := x.Query(queryStr+baseCond, false, opts.UserID) + results, _ := x.Query(queryStr+baseCond, false, opts.IsPull, opts.UserID) stats.OpenCount = parseCountResult(results) - results, _ = x.Query(queryStr+baseCond, true, opts.UserID) + results, _ = x.Query(queryStr+baseCond, true, opts.IsPull, opts.UserID) stats.ClosedCount = parseCountResult(results) case FM_MENTION: queryStr += " INNER JOIN `issue_user` ON `issue`.id=`issue_user`.issue_id" baseCond += " AND `issue_user`.uid=? AND `issue_user`.is_mentioned=?" - results, _ := x.Query(queryStr+baseCond, false, opts.UserID, true) + results, _ := x.Query(queryStr+baseCond, false, opts.IsPull, opts.UserID, true) stats.OpenCount = parseCountResult(results) - results, _ = x.Query(queryStr+baseCond, true, opts.UserID, true) + results, _ = x.Query(queryStr+baseCond, true, opts.IsPull, opts.UserID, true) stats.ClosedCount = parseCountResult(results) } return stats @@ -1375,8 +1371,8 @@ func ChangeMilestoneAssign(oldMid int64, issue *Issue) (err error) { } // DeleteMilestoneByID deletes a milestone by given ID. -func DeleteMilestoneByID(mid int64) error { - m, err := GetMilestoneByID(mid) +func DeleteMilestoneByID(id int64) error { + m, err := GetMilestoneByID(id) if err != nil { if IsErrMilestoneNotExist(err) { return nil diff --git a/models/login.go b/models/login.go index 79a262c5..011d946a 100644 --- a/models/login.go +++ b/models/login.go @@ -225,10 +225,9 @@ func DeleteSource(source *LoginSource) error { // |_______ \/_______ /\____|__ /____| // \/ \/ \/ -// Query if name/passwd can login against the LDAP directory pool -// Create a local user if success -// Return the same LoginUserPlain semantic -// FIXME: https://github.com/gogits/gogs/issues/672 +// LoginUserLDAPSource queries if name/passwd can login against the LDAP directory pool, +// and create a local user if success when enabled. +// It returns the same LoginUserPlain semantic. func LoginUserLDAPSource(u *User, name, passwd string, source *LoginSource, autoRegister bool) (*User, error) { cfg := source.Cfg.(*LDAPConfig) directBind := (source.Type == DLDAP) diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index c3f7a59b..0d17cf26 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -11,6 +11,7 @@ import ( "io/ioutil" "os" "path" + "path/filepath" "strings" "time" @@ -66,6 +67,7 @@ var migrations = []Migration{ NewMigration("generate issue-label from issue", issueToIssueLabel), // V6 -> V7:v0.6.4 NewMigration("refactor attachment table", attachmentRefactor), // V7 -> V8:v0.6.4 NewMigration("rename pull request fields", renamePullRequestFields), // V8 -> V9:v0.6.16 + NewMigration("clean up migrate repo info", cleanUpMigrateRepoInfo), // V9 -> V10:v0.6.20 } // Migrate database to current version @@ -454,7 +456,7 @@ func trimCommitActionAppUrlPrefix(x *xorm.Engine) error { pushCommits = new(PushCommits) if err = json.Unmarshal(action["content"], pushCommits); err != nil { - return fmt.Errorf("unmarshal action content[%s]: %v", actID, err) + return fmt.Errorf("unmarshal action content[%d]: %v", actID, err) } infos := strings.Split(pushCommits.CompareUrl, "/") @@ -465,7 +467,7 @@ func trimCommitActionAppUrlPrefix(x *xorm.Engine) error { p, err := json.Marshal(pushCommits) if err != nil { - return fmt.Errorf("marshal action content[%s]: %v", actID, err) + return fmt.Errorf("marshal action content[%d]: %v", actID, err) } if _, err = sess.Id(actID).Update(&Action{ @@ -653,3 +655,50 @@ func renamePullRequestFields(x *xorm.Engine) (err error) { return sess.Commit() } + +func cleanUpMigrateRepoInfo(x *xorm.Engine) (err error) { + type ( + User struct { + ID int64 `xorm:"pk autoincr"` + LowerName string + } + Repository struct { + ID int64 `xorm:"pk autoincr"` + OwnerID int64 + LowerName string + } + ) + + repos := make([]*Repository, 0, 25) + if err = x.Where("is_mirror=?", false).Find(&repos); err != nil { + return fmt.Errorf("select all non-mirror repositories: %v", err) + } + var user *User + for _, repo := range repos { + user = &User{ID: repo.OwnerID} + has, err := x.Get(user) + if err != nil { + return fmt.Errorf("get owner of repository[%d - %d]: %v", repo.ID, repo.OwnerID, err) + } else if !has { + continue + } + + configPath := filepath.Join(setting.RepoRootPath, user.LowerName, repo.LowerName+".git/config") + + // In case repository file is somehow missing. + if !com.IsFile(configPath) { + continue + } + + cfg, err := ini.Load(configPath) + if err != nil { + return fmt.Errorf("open config file: %v", err) + } + cfg.DeleteSection("remote \"origin\"") + if err = cfg.SaveToIndent(configPath, "\t"); err != nil { + return fmt.Errorf("save config file: %v", err) + } + } + + return nil +} diff --git a/models/models.go b/models/models.go index 802bc942..2249fee4 100644 --- a/models/models.go +++ b/models/models.go @@ -90,7 +90,7 @@ func init() { new(Team), new(OrgUser), new(TeamUser), new(TeamRepo), new(Notice), new(EmailAddress)) - gonicNames := []string{"UID", "SSL"} + gonicNames := []string{"SSL"} for _, name := range gonicNames { core.LintGonicMapper[name] = true } diff --git a/models/publickey.go b/models/publickey.go index 6c0ffc0c..b5646a55 100644 --- a/models/publickey.go +++ b/models/publickey.go @@ -13,7 +13,6 @@ import ( "io" "io/ioutil" "os" - "os/exec" "path" "path/filepath" "strings" @@ -33,25 +32,8 @@ const ( _TPL_PUBLICK_KEY = `command="%s serv key-%d --config='%s'",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty %s` + "\n" ) -var ( - ErrKeyUnableVerify = errors.New("Unable to verify public key") -) - var sshOpLocker = sync.Mutex{} - -var ( - SSHPath string // SSH directory. - appPath string // Execution(binary) path. -) - -// exePath returns the executable path. -func exePath() (string, error) { - file, err := exec.LookPath(os.Args[0]) - if err != nil { - return "", err - } - return filepath.Abs(file) -} +var SSHPath string // SSH directory. // homeDir returns the home directory of current user. func homeDir() string { @@ -63,16 +45,9 @@ func homeDir() string { } func init() { - var err error - - if appPath, err = exePath(); err != nil { - log.Fatal(4, "fail to get app path: %v\n", err) - } - appPath = strings.Replace(appPath, "\\", "/", -1) - // Determine and create .ssh path. SSHPath = filepath.Join(homeDir(), ".ssh") - if err = os.MkdirAll(SSHPath, 0700); err != nil { + if err := os.MkdirAll(SSHPath, 0700); err != nil { log.Fatal(4, "fail to create '%s': %v", SSHPath, err) } } @@ -114,17 +89,7 @@ func (k *PublicKey) OmitEmail() string { // GetAuthorizedString generates and returns formatted public key string for authorized_keys file. func (key *PublicKey) GetAuthorizedString() string { - return fmt.Sprintf(_TPL_PUBLICK_KEY, appPath, key.ID, setting.CustomConf, key.Content) -} - -var minimumKeySizes = map[string]int{ - "(ED25519)": 256, - "(ECDSA)": 256, - "(NTRU)": 1087, - "(MCE)": 1702, - "(McE)": 1702, - "(RSA)": 1024, - "(DSA)": 1024, + return fmt.Sprintf(_TPL_PUBLICK_KEY, setting.AppPath, key.ID, setting.CustomConf, key.Content) } func extractTypeFromBase64Key(key string) (string, error) { @@ -228,9 +193,9 @@ func CheckPublicKeyString(content string) (_ string, err error) { tmpFile.Close() // Check if ssh-keygen recognizes its contents. - stdout, stderr, err := process.Exec("CheckPublicKeyString", "ssh-keygen", "-l", "-f", tmpPath) + stdout, stderr, err := process.Exec("CheckPublicKeyString", "ssh-keygen", "-lf", tmpPath) if err != nil { - return "", errors.New("ssh-keygen -l -f: " + stderr) + return "", errors.New("ssh-keygen -lf: " + stderr) } else if len(stdout) < 2 { return "", errors.New("ssh-keygen returned not enough output to evaluate the key: " + stdout) } @@ -242,7 +207,7 @@ func CheckPublicKeyString(content string) (_ string, err error) { sshKeygenOutput := strings.Split(stdout, " ") if len(sshKeygenOutput) < 4 { - return content, ErrKeyUnableVerify + return content, ErrKeyUnableVerify{stdout} } // Check if key type and key size match. @@ -251,9 +216,10 @@ func CheckPublicKeyString(content string) (_ string, err error) { if keySize == 0 { return "", errors.New("cannot get key size of the given key") } - keyType := strings.TrimSpace(sshKeygenOutput[len(sshKeygenOutput)-1]) - if minimumKeySize := minimumKeySizes[keyType]; minimumKeySize == 0 { - return "", errors.New("sorry, unrecognized public key type") + + keyType := strings.Trim(sshKeygenOutput[len(sshKeygenOutput)-1], " ()\n") + if minimumKeySize := setting.Service.MinimumKeySizes[keyType]; minimumKeySize == 0 { + return "", fmt.Errorf("unrecognized public key type: %s", keyType) } else if keySize < minimumKeySize { return "", fmt.Errorf("the minimum accepted size of a public key %s is %d", keyType, minimumKeySize) } @@ -321,9 +287,9 @@ func addKey(e Engine, key *PublicKey) (err error) { if err = ioutil.WriteFile(tmpPath, []byte(key.Content), 0644); err != nil { return err } - stdout, stderr, err := process.Exec("AddPublicKey", "ssh-keygen", "-l", "-f", tmpPath) + stdout, stderr, err := process.Exec("AddPublicKey", "ssh-keygen", "-lf", tmpPath) if err != nil { - return errors.New("ssh-keygen -l -f: " + stderr) + return errors.New("ssh-keygen -lf: " + stderr) } else if len(stdout) < 2 { return errors.New("not enough output for calculating fingerprint: " + stdout) } @@ -382,6 +348,19 @@ func GetPublicKeyByID(keyID int64) (*PublicKey, error) { return key, nil } +// SearchPublicKeyByContent searches content as prefix (leak e-mail part) +// and returns public key found. +func SearchPublicKeyByContent(content string) (*PublicKey, error) { + key := new(PublicKey) + has, err := x.Where("content like ?", content+"%").Get(key) + if err != nil { + return nil, err + } else if !has { + return nil, ErrKeyNotExist{} + } + return key, nil +} + // ListPublicKeys returns a list of public keys belongs to given user. func ListPublicKeys(uid int64) ([]*PublicKey, error) { keys := make([]*PublicKey, 0, 5) @@ -540,6 +519,7 @@ type DeployKey struct { RepoID int64 `xorm:"UNIQUE(s) INDEX"` Name string Fingerprint string + Content string `xorm:"-"` Created time.Time `xorm:"CREATED"` Updated time.Time // Note: Updated must below Created for AfterSet. HasRecentActivity bool `xorm:"-"` @@ -554,6 +534,16 @@ func (k *DeployKey) AfterSet(colName string, _ xorm.Cell) { } } +// GetContent gets associated public key content. +func (k *DeployKey) GetContent() error { + pkey, err := GetPublicKeyByID(k.KeyID) + if err != nil { + return err + } + k.Content = pkey.Content + return nil +} + func checkDeployKey(e Engine, keyID, repoID int64, name string) error { // Note: We want error detail, not just true or false here. has, err := e.Where("key_id=? AND repo_id=?", keyID, repoID).Get(new(DeployKey)) @@ -574,18 +564,19 @@ func checkDeployKey(e Engine, keyID, repoID int64, name string) error { } // addDeployKey adds new key-repo relation. -func addDeployKey(e *xorm.Session, keyID, repoID int64, name, fingerprint string) (err error) { - if err = checkDeployKey(e, keyID, repoID, name); err != nil { - return err +func addDeployKey(e *xorm.Session, keyID, repoID int64, name, fingerprint string) (*DeployKey, error) { + if err := checkDeployKey(e, keyID, repoID, name); err != nil { + return nil, err } - _, err = e.Insert(&DeployKey{ + key := &DeployKey{ KeyID: keyID, RepoID: repoID, Name: name, Fingerprint: fingerprint, - }) - return err + } + _, err := e.Insert(key) + return key, err } // HasDeployKey returns true if public key is a deploy key of given repository. @@ -595,39 +586,52 @@ func HasDeployKey(keyID, repoID int64) bool { } // AddDeployKey add new deploy key to database and authorized_keys file. -func AddDeployKey(repoID int64, name, content string) (err error) { - if err = checkKeyContent(content); err != nil { - return err +func AddDeployKey(repoID int64, name, content string) (*DeployKey, error) { + if err := checkKeyContent(content); err != nil { + return nil, err } - key := &PublicKey{ + pkey := &PublicKey{ Content: content, Mode: ACCESS_MODE_READ, Type: KEY_TYPE_DEPLOY, } - has, err := x.Get(key) + has, err := x.Get(pkey) if err != nil { - return err + return nil, err } sess := x.NewSession() defer sessionRelease(sess) if err = sess.Begin(); err != nil { - return err + return nil, err } // First time use this deploy key. if !has { - if err = addKey(sess, key); err != nil { - return nil + if err = addKey(sess, pkey); err != nil { + return nil, fmt.Errorf("addKey: %v", err) } } - if err = addDeployKey(sess, key.ID, repoID, name, key.Fingerprint); err != nil { - return err + key, err := addDeployKey(sess, pkey.ID, repoID, name, pkey.Fingerprint) + if err != nil { + return nil, fmt.Errorf("addDeployKey: %v", err) } - return sess.Commit() + return key, sess.Commit() +} + +// GetDeployKeyByID returns deploy key by given ID. +func GetDeployKeyByID(id int64) (*DeployKey, error) { + key := new(DeployKey) + has, err := x.Id(id).Get(key) + if err != nil { + return nil, err + } else if !has { + return nil, ErrDeployKeyNotExist{id, 0, 0} + } + return key, nil } // GetDeployKeyByRepo returns deploy key by given public key ID and repository ID. @@ -636,8 +640,13 @@ func GetDeployKeyByRepo(keyID, repoID int64) (*DeployKey, error) { KeyID: keyID, RepoID: repoID, } - _, err := x.Get(key) - return key, err + has, err := x.Get(key) + if err != nil { + return nil, err + } else if !has { + return nil, ErrDeployKeyNotExist{0, keyID, repoID} + } + return key, nil } // UpdateDeployKey updates deploy key information. diff --git a/models/pull.go b/models/pull.go index 0300c083..dfd80635 100644 --- a/models/pull.go +++ b/models/pull.go @@ -166,43 +166,49 @@ func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository) (err error var stderr string if _, stderr, err = process.ExecTimeout(5*time.Minute, - fmt.Sprintf("PullRequest.Merge(git clone): %s", tmpBasePath), + fmt.Sprintf("PullRequest.Merge (git clone): %s", tmpBasePath), "git", "clone", baseGitRepo.Path, tmpBasePath); err != nil { return fmt.Errorf("git clone: %s", stderr) } // Check out base branch. if _, stderr, err = process.ExecDir(-1, tmpBasePath, - fmt.Sprintf("PullRequest.Merge(git checkout): %s", tmpBasePath), + fmt.Sprintf("PullRequest.Merge (git checkout): %s", tmpBasePath), "git", "checkout", pr.BaseBranch); err != nil { return fmt.Errorf("git checkout: %s", stderr) } // Add head repo remote. if _, stderr, err = process.ExecDir(-1, tmpBasePath, - fmt.Sprintf("PullRequest.Merge(git remote add): %s", tmpBasePath), + fmt.Sprintf("PullRequest.Merge (git remote add): %s", tmpBasePath), "git", "remote", "add", "head_repo", headRepoPath); err != nil { - return fmt.Errorf("git remote add[%s -> %s]: %s", headRepoPath, tmpBasePath, stderr) + return fmt.Errorf("git remote add [%s -> %s]: %s", headRepoPath, tmpBasePath, stderr) } // Merge commits. if _, stderr, err = process.ExecDir(-1, tmpBasePath, - fmt.Sprintf("PullRequest.Merge(git fetch): %s", tmpBasePath), + fmt.Sprintf("PullRequest.Merge (git fetch): %s", tmpBasePath), "git", "fetch", "head_repo"); err != nil { - return fmt.Errorf("git fetch[%s -> %s]: %s", headRepoPath, tmpBasePath, stderr) + return fmt.Errorf("git fetch [%s -> %s]: %s", headRepoPath, tmpBasePath, stderr) } if _, stderr, err = process.ExecDir(-1, tmpBasePath, - fmt.Sprintf("PullRequest.Merge(git merge): %s", tmpBasePath), - "git", "merge", "--no-ff", "-m", - fmt.Sprintf("Merge branch '%s' of %s/%s into %s", pr.HeadBranch, pr.HeadUserName, pr.HeadRepo.Name, pr.BaseBranch), - "head_repo/"+pr.HeadBranch); err != nil { - return fmt.Errorf("git merge[%s]: %s", tmpBasePath, stderr) + fmt.Sprintf("PullRequest.Merge (git merge --no-ff --no-commit): %s", tmpBasePath), + "git", "merge", "--no-ff", "--no-commit", "head_repo/"+pr.HeadBranch); err != nil { + return fmt.Errorf("git merge --no-ff --no-commit [%s]: %v - %s", tmpBasePath, err, stderr) + } + + sig := doer.NewGitSig() + if _, stderr, err = process.ExecDir(-1, tmpBasePath, + fmt.Sprintf("PullRequest.Merge (git merge): %s", tmpBasePath), + "git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email), + "-m", fmt.Sprintf("Merge branch '%s' of %s/%s into %s", pr.HeadBranch, pr.HeadUserName, pr.HeadRepo.Name, pr.BaseBranch)); err != nil { + return fmt.Errorf("git commit [%s]: %v - %s", tmpBasePath, err, stderr) } // Push back to upstream. if _, stderr, err = process.ExecDir(-1, tmpBasePath, - fmt.Sprintf("PullRequest.Merge(git push): %s", tmpBasePath), + fmt.Sprintf("PullRequest.Merge (git push): %s", tmpBasePath), "git", "push", baseGitRepo.Path, pr.BaseBranch); err != nil { return fmt.Errorf("git push: %s", stderr) } @@ -218,6 +224,7 @@ var patchConflicts = []string{ } // testPatch checks if patch can be merged to base repository without conflit. +// FIXME: make a mechanism to clean up stable local copies. func (pr *PullRequest) testPatch() (err error) { if pr.BaseRepo == nil { pr.BaseRepo, err = GetRepositoryByID(pr.BaseRepoID) @@ -243,14 +250,23 @@ func (pr *PullRequest) testPatch() (err error) { return fmt.Errorf("UpdateLocalCopy: %v", err) } - pr.Status = PULL_REQUEST_STATUS_CHECKING + // Checkout base branch. _, stderr, err := process.ExecDir(-1, pr.BaseRepo.LocalCopyPath(), + fmt.Sprintf("PullRequest.Merge(git checkout): %s", pr.BaseRepo.ID), + "git", "checkout", pr.BaseBranch) + if err != nil { + return fmt.Errorf("git checkout: %s", stderr) + } + + pr.Status = PULL_REQUEST_STATUS_CHECKING + _, stderr, err = process.ExecDir(-1, pr.BaseRepo.LocalCopyPath(), fmt.Sprintf("testPatch(git apply --check): %d", pr.BaseRepo.ID), "git", "apply", "--check", patchPath) if err != nil { for i := range patchConflicts { if strings.Contains(stderr, patchConflicts[i]) { log.Trace("PullRequest[%d].testPatch(apply): has conflit", pr.ID) + fmt.Println(stderr) pr.Status = PULL_REQUEST_STATUS_CONFLICT return nil } @@ -385,16 +401,18 @@ func (pr *PullRequest) UpdateCols(cols ...string) error { var PullRequestQueue = NewUniqueQueue(setting.Repository.PullRequestQueueLength) // UpdatePatch generates and saves a new patch. -func (pr *PullRequest) UpdatePatch() error { - if err := pr.GetHeadRepo(); err != nil { +func (pr *PullRequest) UpdatePatch() (err error) { + if err = pr.GetHeadRepo(); err != nil { return fmt.Errorf("GetHeadRepo: %v", err) } else if pr.HeadRepo == nil { log.Trace("PullRequest[%d].UpdatePatch: ignored cruppted data", pr.ID) return nil } - if err := pr.GetBaseRepo(); err != nil { + if err = pr.GetBaseRepo(); err != nil { return fmt.Errorf("GetBaseRepo: %v", err) + } else if err = pr.BaseRepo.GetOwner(); err != nil { + return fmt.Errorf("GetOwner: %v", err) } headRepoPath, err := pr.HeadRepo.RepoPath() @@ -407,6 +425,22 @@ func (pr *PullRequest) UpdatePatch() error { return fmt.Errorf("OpenRepository: %v", err) } + // Add a temporary remote. + tmpRemote := com.ToStr(time.Now().UnixNano()) + if err = headGitRepo.AddRemote(tmpRemote, RepoPath(pr.BaseRepo.Owner.Name, pr.BaseRepo.Name)); err != nil { + return fmt.Errorf("AddRemote: %v", err) + } + defer func() { + headGitRepo.RemoveRemote(tmpRemote) + }() + remoteBranch := "remotes/" + tmpRemote + "/" + pr.BaseBranch + pr.MergeBase, err = headGitRepo.GetMergeBase(remoteBranch, pr.HeadBranch) + if err != nil { + return fmt.Errorf("GetMergeBase: %v", err) + } else if err = pr.Update(); err != nil { + return fmt.Errorf("Update: %v", err) + } + patch, err := headGitRepo.GetPatch(pr.MergeBase, pr.HeadBranch) if err != nil { return fmt.Errorf("GetPatch: %v", err) diff --git a/models/release.go b/models/release.go index 027491d9..ef1d640d 100644 --- a/models/release.go +++ b/models/release.go @@ -5,7 +5,7 @@ package models import ( - "errors" + "fmt" "sort" "strings" "time" @@ -13,18 +13,14 @@ import ( "github.com/go-xorm/xorm" "github.com/gogits/gogs/modules/git" -) - -var ( - ErrReleaseAlreadyExist = errors.New("Release already exist") - ErrReleaseNotExist = errors.New("Release does not exist") + "github.com/gogits/gogs/modules/process" ) // Release represents a release of repository. type Release struct { - Id int64 - RepoId int64 - PublisherId int64 + ID int64 `xorm:"pk autoincr"` + RepoID int64 + PublisherID int64 Publisher *User `xorm:"-"` TagName string LowerTagName string @@ -47,12 +43,12 @@ func (r *Release) AfterSet(colName string, _ xorm.Cell) { } // IsReleaseExist returns true if release with given tag name already exists. -func IsReleaseExist(repoId int64, tagName string) (bool, error) { +func IsReleaseExist(repoID int64, tagName string) (bool, error) { if len(tagName) == 0 { return false, nil } - return x.Get(&Release{RepoId: repoId, LowerTagName: strings.ToLower(tagName)}) + return x.Get(&Release{RepoID: repoID, LowerTagName: strings.ToLower(tagName)}) } func createTag(gitRepo *git.Repository, rel *Release) error { @@ -64,7 +60,7 @@ func createTag(gitRepo *git.Repository, rel *Release) error { return err } - if err = gitRepo.CreateTag(rel.TagName, commit.Id.String()); err != nil { + if err = gitRepo.CreateTag(rel.TagName, commit.ID.String()); err != nil { return err } } else { @@ -84,11 +80,11 @@ func createTag(gitRepo *git.Repository, rel *Release) error { // CreateRelease creates a new release of repository. func CreateRelease(gitRepo *git.Repository, rel *Release) error { - isExist, err := IsReleaseExist(rel.RepoId, rel.TagName) + isExist, err := IsReleaseExist(rel.RepoID, rel.TagName) if err != nil { return err } else if isExist { - return ErrReleaseAlreadyExist + return ErrReleaseAlreadyExist{rel.TagName} } if err = createTag(gitRepo, rel); err != nil { @@ -100,22 +96,35 @@ func CreateRelease(gitRepo *git.Repository, rel *Release) error { } // GetRelease returns release by given ID. -func GetRelease(repoId int64, tagName string) (*Release, error) { - isExist, err := IsReleaseExist(repoId, tagName) +func GetRelease(repoID int64, tagName string) (*Release, error) { + isExist, err := IsReleaseExist(repoID, tagName) if err != nil { return nil, err } else if !isExist { - return nil, ErrReleaseNotExist + return nil, ErrReleaseNotExist{0, tagName} } - rel := &Release{RepoId: repoId, LowerTagName: strings.ToLower(tagName)} + rel := &Release{RepoID: repoID, LowerTagName: strings.ToLower(tagName)} _, err = x.Get(rel) return rel, err } -// GetReleasesByRepoId returns a list of releases of repository. -func GetReleasesByRepoId(repoId int64) (rels []*Release, err error) { - err = x.Desc("created").Find(&rels, Release{RepoId: repoId}) +// GetReleaseByID returns release with given ID. +func GetReleaseByID(id int64) (*Release, error) { + rel := new(Release) + has, err := x.Id(id).Get(rel) + if err != nil { + return nil, err + } else if !has { + return nil, ErrReleaseNotExist{id, ""} + } + + return rel, nil +} + +// GetReleasesByRepoID returns a list of releases of repository. +func GetReleasesByRepoID(repoID int64) (rels []*Release, err error) { + err = x.Desc("created").Find(&rels, Release{RepoID: repoID}) return rels, err } @@ -150,6 +159,36 @@ func UpdateRelease(gitRepo *git.Repository, rel *Release) (err error) { if err = createTag(gitRepo, rel); err != nil { return err } - _, err = x.Id(rel.Id).AllCols().Update(rel) + _, err = x.Id(rel.ID).AllCols().Update(rel) return err } + +// DeleteReleaseByID deletes a release and corresponding Git tag by given ID. +func DeleteReleaseByID(id int64) error { + rel, err := GetReleaseByID(id) + if err != nil { + return fmt.Errorf("GetReleaseByID: %v", err) + } + + repo, err := GetRepositoryByID(rel.RepoID) + if err != nil { + return fmt.Errorf("GetRepositoryByID: %v", err) + } + + repoPath, err := repo.RepoPath() + if err != nil { + return fmt.Errorf("RepoPath: %v", err) + } + + _, stderr, err := process.ExecDir(-1, repoPath, fmt.Sprintf("DeleteReleaseByID (git tag -d): %d", rel.ID), + "git", "tag", "-d", rel.TagName) + if err != nil && !strings.Contains(stderr, "not found") { + return fmt.Errorf("git tag -d: %v - %s", err, stderr) + } + + if _, err = x.Id(rel.ID).Delete(new(Release)); err != nil { + return fmt.Errorf("Delete: %v", err) + } + + return nil +} diff --git a/models/repo.go b/models/repo.go index 197415c6..b628e752 100644 --- a/models/repo.go +++ b/models/repo.go @@ -17,12 +17,14 @@ import ( "regexp" "sort" "strings" + "sync" "time" "unicode/utf8" "github.com/Unknwon/cae/zip" "github.com/Unknwon/com" "github.com/go-xorm/xorm" + "gopkg.in/ini.v1" "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/bindata" @@ -48,7 +50,7 @@ var ( Gitignores, Licenses, Readmes []string // Maximum items per page in forks, watchers and stars of a repo - ItemsPerPage = 54 + ItemsPerPage = 40 ) func LoadRepoConfig() { @@ -319,7 +321,7 @@ func (repo *Repository) UpdateLocalCopy() error { } } else { _, stderr, err := process.ExecDir(-1, localPath, - fmt.Sprintf("UpdateLocalCopy(git pull): %s", repoPath), "git", "pull") + fmt.Sprintf("UpdateLocalCopy(git pull --all): %s", repoPath), "git", "pull", "--all") if err != nil { return fmt.Errorf("git pull: %v - %s", err, stderr) } @@ -379,11 +381,11 @@ func (repo *Repository) CloneLink() (cl CloneLink, err error) { } if setting.SSHPort != 22 { - cl.SSH = fmt.Sprintf("ssh://%s@%s:%d/%s/%s.git", setting.RunUser, setting.SSHDomain, setting.SSHPort, repo.Owner.LowerName, repo.LowerName) + cl.SSH = fmt.Sprintf("ssh://%s@%s:%d/%s/%s.git", setting.RunUser, setting.SSHDomain, setting.SSHPort, repo.Owner.Name, repo.Name) } else { - cl.SSH = fmt.Sprintf("%s@%s:%s/%s.git", setting.RunUser, setting.SSHDomain, repo.Owner.LowerName, repo.LowerName) + cl.SSH = fmt.Sprintf("%s@%s:%s/%s.git", setting.RunUser, setting.SSHDomain, repo.Owner.Name, repo.Name) } - cl.HTTPS = fmt.Sprintf("%s%s/%s.git", setting.AppUrl, repo.Owner.LowerName, repo.LowerName) + cl.HTTPS = fmt.Sprintf("%s%s/%s.git", setting.AppUrl, repo.Owner.Name, repo.Name) return cl, nil } @@ -537,6 +539,17 @@ func MigrateRepository(u *User, opts MigrateRepoOptions) (*Repository, error) { return repo, fmt.Errorf("create update hook: %v", err) } + // Clean up mirror info which prevents "push --all". + configPath := filepath.Join(repoPath, "/config") + cfg, err := ini.Load(configPath) + if err != nil { + return repo, fmt.Errorf("open config file: %v", err) + } + cfg.DeleteSection("remote \"origin\"") + if err = cfg.SaveToIndent(configPath, "\t"); err != nil { + return repo, fmt.Errorf("save config file: %v", err) + } + // Check if repository is empty. _, stderr, err = com.ExecCmdDir(repoPath, "git", "log", "-1") if err != nil { @@ -563,20 +576,20 @@ func MigrateRepository(u *User, opts MigrateRepoOptions) (*Repository, error) { func initRepoCommit(tmpPath string, sig *git.Signature) (err error) { var stderr string if _, stderr, err = process.ExecDir(-1, - tmpPath, fmt.Sprintf("initRepoCommit(git add): %s", tmpPath), + tmpPath, fmt.Sprintf("initRepoCommit (git add): %s", tmpPath), "git", "add", "--all"); err != nil { return fmt.Errorf("git add: %s", stderr) } if _, stderr, err = process.ExecDir(-1, - tmpPath, fmt.Sprintf("initRepoCommit(git commit): %s", tmpPath), + tmpPath, fmt.Sprintf("initRepoCommit (git commit): %s", tmpPath), "git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email), "-m", "initial commit"); err != nil { return fmt.Errorf("git commit: %s", stderr) } if _, stderr, err = process.ExecDir(-1, - tmpPath, fmt.Sprintf("initRepoCommit(git push): %s", tmpPath), + tmpPath, fmt.Sprintf("initRepoCommit (git push): %s", tmpPath), "git", "push", "origin", "master"); err != nil { return fmt.Errorf("git push: %s", stderr) } @@ -587,7 +600,7 @@ func createUpdateHook(repoPath string) error { hookPath := path.Join(repoPath, "hooks/update") os.MkdirAll(path.Dir(hookPath), os.ModePerm) return ioutil.WriteFile(hookPath, - []byte(fmt.Sprintf(_TPL_UPDATE_HOOK, setting.ScriptType, "\""+appPath+"\"", setting.CustomConf)), 0777) + []byte(fmt.Sprintf(_TPL_UPDATE_HOOK, setting.ScriptType, "\""+setting.AppPath+"\"", setting.CustomConf)), 0777) } type CreateRepoOptions struct { @@ -687,7 +700,7 @@ func initRepository(e Engine, repoPath string, u *User, repo *Repository, opts C // Init bare new repository. os.MkdirAll(repoPath, os.ModePerm) _, stderr, err := process.ExecDir(-1, repoPath, - fmt.Sprintf("initRepository(git init --bare): %s", repoPath), "git", "init", "--bare") + fmt.Sprintf("initRepository (git init --bare): %s", repoPath), "git", "init", "--bare") if err != nil { return fmt.Errorf("git init --bare: %v - %s", err, stderr) } @@ -898,9 +911,9 @@ func TransferOwnership(u *User, newOwnerName string, repo *Repository) error { } // Remove redundant collaborators. - collaborators, err := repo.GetCollaborators() + collaborators, err := repo.getCollaborators(sess) if err != nil { - return fmt.Errorf("GetCollaborators: %v", err) + return fmt.Errorf("getCollaborators: %v", err) } // Dummy object. @@ -936,9 +949,9 @@ func TransferOwnership(u *User, newOwnerName string, repo *Repository) error { } if newOwner.IsOrganization() { - t, err := newOwner.GetOwnerTeam() + t, err := newOwner.getOwnerTeam(sess) if err != nil { - return fmt.Errorf("GetOwnerTeam: %v", err) + return fmt.Errorf("getOwnerTeam: %v", err) } else if err = t.addRepository(sess, repo); err != nil { return fmt.Errorf("add to owner team: %v", err) } @@ -1104,7 +1117,7 @@ func DeleteRepository(uid, repoID int64) error { return err } else if _, err = sess.Delete(&Milestone{RepoID: repoID}); err != nil { return err - } else if _, err = sess.Delete(&Release{RepoId: repoID}); err != nil { + } else if _, err = sess.Delete(&Release{RepoID: repoID}); err != nil { return err } else if _, err = sess.Delete(&Collaboration{RepoID: repoID}); err != nil { return err @@ -1304,7 +1317,7 @@ func DeleteRepositoryArchives() error { repo := bean.(*Repository) repoPath, err := repo.RepoPath() if err != nil { - if err2 := CreateRepositoryNotice(fmt.Sprintf("DeleteRepositoryArchives[%d]: %v", repo.ID, err)); err2 != nil { + if err2 := CreateRepositoryNotice(fmt.Sprintf("DeleteRepositoryArchives.RepoPath [%d]: %v", repo.ID, err)); err2 != nil { log.Error(4, "CreateRepositoryNotice: %v", err2) } return nil @@ -1313,32 +1326,110 @@ func DeleteRepositoryArchives() error { }) } +// DeleteMissingRepositories deletes all repository records that lost Git files. +func DeleteMissingRepositories() error { + repos := make([]*Repository, 0, 5) + if err := x.Where("id > 0").Iterate(new(Repository), + func(idx int, bean interface{}) error { + repo := bean.(*Repository) + repoPath, err := repo.RepoPath() + if err != nil { + if err2 := CreateRepositoryNotice(fmt.Sprintf("DeleteRepositoryArchives.RepoPath [%d]: %v", repo.ID, err)); err2 != nil { + log.Error(4, "CreateRepositoryNotice: %v", err2) + } + return nil + } + + if !com.IsDir(repoPath) { + repos = append(repos, repo) + } + return nil + }); err != nil { + if err2 := CreateRepositoryNotice(fmt.Sprintf("DeleteMissingRepositories: %v", err)); err2 != nil { + log.Error(4, "CreateRepositoryNotice: %v", err2) + } + return nil + } + + if len(repos) == 0 { + return nil + } + + for _, repo := range repos { + log.Trace("Deleting %d/%d...", repo.OwnerID, repo.ID) + if err := DeleteRepository(repo.OwnerID, repo.ID); err != nil { + if err2 := CreateRepositoryNotice(fmt.Sprintf("DeleteRepository [%d]: %v", repo.ID, err)); err2 != nil { + log.Error(4, "CreateRepositoryNotice: %v", err2) + } + } + } + return nil +} + // RewriteRepositoryUpdateHook rewrites all repositories' update hook. func RewriteRepositoryUpdateHook() error { return x.Where("id > 0").Iterate(new(Repository), func(idx int, bean interface{}) error { repo := bean.(*Repository) - if err := repo.GetOwner(); err != nil { - return err + repoPath, err := repo.RepoPath() + if err != nil { + if err2 := CreateRepositoryNotice(fmt.Sprintf("RewriteRepositoryUpdateHook[%d]: %v", repo.ID, err)); err2 != nil { + log.Error(4, "CreateRepositoryNotice: %v", err2) + } + return nil } - return createUpdateHook(RepoPath(repo.Owner.Name, repo.Name)) + return createUpdateHook(repoPath) }) } -var ( - // Prevent duplicate running tasks. - isMirrorUpdating = false - isGitFscking = false - isCheckingRepos = false +// statusPool represents a pool of status with true/false. +type statusPool struct { + lock sync.RWMutex + pool map[string]bool +} + +// Start sets value of given name to true in the pool. +func (p *statusPool) Start(name string) { + p.lock.Lock() + defer p.lock.Unlock() + + p.pool[name] = true +} + +// Stop sets value of given name to false in the pool. +func (p *statusPool) Stop(name string) { + p.lock.Lock() + defer p.lock.Unlock() + + p.pool[name] = false +} + +// IsRunning checks if value of given name is set to true in the pool. +func (p *statusPool) IsRunning(name string) bool { + p.lock.RLock() + defer p.lock.RUnlock() + + return p.pool[name] +} + +// Prevent duplicate running tasks. +var taskStatusPool = &statusPool{ + pool: make(map[string]bool), +} + +const ( + _MIRROR_UPDATE = "mirror_update" + _GIT_FSCK = "git_fsck" + _CHECK_REPOs = "check_repos" ) // MirrorUpdate checks and updates mirror repositories. func MirrorUpdate() { - if isMirrorUpdating { + if taskStatusPool.IsRunning(_MIRROR_UPDATE) { return } - isMirrorUpdating = true - defer func() { isMirrorUpdating = false }() + taskStatusPool.Start(_MIRROR_UPDATE) + defer taskStatusPool.Stop(_MIRROR_UPDATE) log.Trace("Doing: MirrorUpdate") @@ -1386,11 +1477,11 @@ func MirrorUpdate() { // GitFsck calls 'git fsck' to check repository health. func GitFsck() { - if isGitFscking { + if taskStatusPool.IsRunning(_GIT_FSCK) { return } - isGitFscking = true - defer func() { isGitFscking = false }() + taskStatusPool.Start(_GIT_FSCK) + defer taskStatusPool.Stop(_GIT_FSCK) log.Trace("Doing: GitFsck") @@ -1455,11 +1546,11 @@ func repoStatsCheck(checker *repoChecker) { } func CheckRepoStats() { - if isCheckingRepos { + if taskStatusPool.IsRunning(_CHECK_REPOs) { return } - isCheckingRepos = true - defer func() { isCheckingRepos = false }() + taskStatusPool.Start(_CHECK_REPOs) + defer taskStatusPool.Stop(_CHECK_REPOs) log.Trace("Doing: CheckRepoStats") @@ -1680,25 +1771,21 @@ func WatchRepo(uid, repoId int64, watch bool) (err error) { return watchRepo(x, uid, repoId, watch) } -func getWatchers(e Engine, rid int64) ([]*Watch, error) { +func getWatchers(e Engine, repoID int64) ([]*Watch, error) { watches := make([]*Watch, 0, 10) - err := e.Find(&watches, &Watch{RepoID: rid}) - return watches, err + return watches, e.Find(&watches, &Watch{RepoID: repoID}) } // GetWatchers returns all watchers of given repository. -func GetWatchers(rid int64) ([]*Watch, error) { - return getWatchers(x, rid) +func GetWatchers(repoID int64) ([]*Watch, error) { + return getWatchers(x, repoID) } -// Repository.GetWatchers returns all users watching given repository. -func (repo *Repository) GetWatchers(offset int) ([]*User, error) { - users := make([]*User, 0, 10) - offset = (offset - 1) * ItemsPerPage - - err := x.Limit(ItemsPerPage, offset).Where("repo_id=?", repo.ID).Join("LEFT", "watch", "user.id=watch.user_id").Find(&users) - - return users, err +// Repository.GetWatchers returns range of users watching given repository. +func (repo *Repository) GetWatchers(page int) ([]*User, error) { + users := make([]*User, 0, ItemsPerPage) + return users, x.Limit(ItemsPerPage, (page-1)*ItemsPerPage). + Where("repo_id=?", repo.ID).Join("LEFT", "watch", "user.id=watch.user_id").Find(&users) } func notifyWatchers(e Engine, act *Action) error { @@ -1778,13 +1865,10 @@ func IsStaring(uid, repoId int64) bool { return has } -func (repo *Repository) GetStars(offset int) ([]*User, error) { - users := make([]*User, 0, 10) - offset = (offset - 1) * ItemsPerPage - - err := x.Limit(ItemsPerPage, offset).Where("repo_id=?", repo.ID).Join("LEFT", "star", "user.id=star.uid").Find(&users) - - return users, err +func (repo *Repository) GetStargazers(page int) ([]*User, error) { + users := make([]*User, 0, ItemsPerPage) + return users, x.Limit(ItemsPerPage, (page-1)*ItemsPerPage). + Where("repo_id=?", repo.ID).Join("LEFT", "star", "user.id=star.uid").Find(&users) } // ___________ __ @@ -1856,9 +1940,6 @@ func ForkRepository(u *User, oldRepo *Repository, name, desc string) (_ *Reposit } func (repo *Repository) GetForks() ([]*Repository, error) { - forks := make([]*Repository, 0, 10) - - err := x.Find(&forks, &Repository{ForkID: repo.ID}) - - return forks, err + forks := make([]*Repository, 0, repo.NumForks) + return forks, x.Find(&forks, &Repository{ForkID: repo.ID}) } diff --git a/models/update.go b/models/update.go index 0cf62db4..14e56ce8 100644 --- a/models/update.go +++ b/models/update.go @@ -10,7 +10,6 @@ import ( "os/exec" "strings" - "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/git" "github.com/gogits/gogs/modules/log" ) @@ -28,6 +27,7 @@ func AddUpdateTask(task *UpdateTask) error { return err } +// GetUpdateTaskByUUID returns update task by given UUID. func GetUpdateTaskByUUID(uuid string) (*UpdateTask, error) { task := &UpdateTask{ UUID: uuid, @@ -36,7 +36,7 @@ func GetUpdateTaskByUUID(uuid string) (*UpdateTask, error) { if err != nil { return nil, err } else if !has { - return nil, fmt.Errorf("task does not exist: %s", uuid) + return nil, ErrUpdateTaskNotExist{uuid} } return task, nil } @@ -46,10 +46,10 @@ func DeleteUpdateTaskByUUID(uuid string) error { return err } -func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName string, userId int64) error { - isNew := strings.HasPrefix(oldCommitId, "0000000") +func Update(refName, oldCommitID, newCommitID, userName, repoUserName, repoName string, userID int64) error { + isNew := strings.HasPrefix(oldCommitID, "0000000") if isNew && - strings.HasPrefix(newCommitId, "0000000") { + strings.HasPrefix(newCommitID, "0000000") { return fmt.Errorf("old rev and new rev both 000000") } @@ -59,23 +59,23 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName gitUpdate.Dir = f gitUpdate.Run() - isDel := strings.HasPrefix(newCommitId, "0000000") + isDel := strings.HasPrefix(newCommitID, "0000000") if isDel { - log.GitLogger.Info("del rev", refName, "from", userName+"/"+repoName+".git", "by", userId) + log.GitLogger.Info("del rev", refName, "from", userName+"/"+repoName+".git", "by", userID) return nil } - repo, err := git.OpenRepository(f) + gitRepo, err := git.OpenRepository(f) if err != nil { return fmt.Errorf("runUpdate.Open repoId: %v", err) } - ru, err := GetUserByName(repoUserName) + user, err := GetUserByName(repoUserName) if err != nil { return fmt.Errorf("runUpdate.GetUserByName: %v", err) } - repos, err := GetRepositoryByName(ru.Id, repoName) + repo, err := GetRepositoryByName(user.Id, repoName) if err != nil { return fmt.Errorf("runUpdate.GetRepositoryByName userId: %v", err) } @@ -83,7 +83,7 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName // Push tags. if strings.HasPrefix(refName, "refs/tags/") { tagName := git.RefEndName(refName) - tag, err := repo.GetTag(tagName) + tag, err := gitRepo.GetTag(tagName) if err != nil { log.GitLogger.Fatal(4, "runUpdate.GetTag: %v", err) } @@ -99,16 +99,16 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName actEmail = cmt.Committer.Email } - commit := &base.PushCommits{} + commit := &PushCommits{} - if err = CommitRepoAction(userId, ru.Id, userName, actEmail, - repos.ID, repoUserName, repoName, refName, commit, oldCommitId, newCommitId); err != nil { + if err = CommitRepoAction(userID, user.Id, userName, actEmail, + repo.ID, repoUserName, repoName, refName, commit, oldCommitID, newCommitID); err != nil { log.GitLogger.Fatal(4, "CommitRepoAction: %s/%s:%v", repoUserName, repoName, err) } return err } - newCommit, err := repo.GetCommit(newCommitId) + newCommit, err := gitRepo.GetCommit(newCommitID) if err != nil { return fmt.Errorf("runUpdate GetCommit of newCommitId: %v", err) } @@ -121,7 +121,7 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName return fmt.Errorf("CommitsBefore: %v", err) } } else { - l, err = newCommit.CommitsBeforeUntil(oldCommitId) + l, err = newCommit.CommitsBeforeUntil(oldCommitID) if err != nil { return fmt.Errorf("CommitsBeforeUntil: %v", err) } @@ -132,7 +132,7 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName } // Push commits. - commits := make([]*base.PushCommit, 0) + commits := make([]*PushCommit, 0) var actEmail string for e := l.Front(); e != nil; e = e.Next() { commit := e.Value.(*git.Commit) @@ -140,15 +140,15 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName actEmail = commit.Committer.Email } commits = append(commits, - &base.PushCommit{commit.Id.String(), + &PushCommit{commit.ID.String(), commit.Message(), commit.Author.Email, commit.Author.Name, }) } - if err = CommitRepoAction(userId, ru.Id, userName, actEmail, - repos.ID, repoUserName, repoName, refName, &base.PushCommits{l.Len(), commits, ""}, oldCommitId, newCommitId); err != nil { + if err = CommitRepoAction(userID, user.Id, userName, actEmail, + repo.ID, repoUserName, repoName, refName, &PushCommits{l.Len(), commits, "", nil}, oldCommitID, newCommitID); err != nil { return fmt.Errorf("runUpdate.models.CommitRepoAction: %s/%s:%v", repoUserName, repoName, err) } return nil diff --git a/models/user.go b/models/user.go index 4109f4d9..750f59e5 100644 --- a/models/user.go +++ b/models/user.go @@ -14,6 +14,7 @@ import ( "image" "image/jpeg" _ "image/jpeg" + "image/png" "os" "path" "path/filepath" @@ -75,9 +76,10 @@ type User struct { LastRepoVisibility bool // Permissions. - IsActive bool - IsAdmin bool - AllowGitHook bool + IsActive bool + IsAdmin bool + AllowGitHook bool + AllowImportLocal bool // Allow migrate repository by local path // Avatar. Avatar string `xorm:"VARCHAR(2048) NOT NULL"` @@ -107,6 +109,22 @@ func (u *User) AfterSet(colName string, _ xorm.Cell) { } } +// HasForkedRepo checks if user has already forked a repository with given ID. +func (u *User) HasForkedRepo(repoID int64) bool { + _, has := HasForkedRepo(u.Id, repoID) + return has +} + +// CanEditGitHook returns true if user can edit Git hooks. +func (u *User) CanEditGitHook() bool { + return u.IsAdmin || u.AllowGitHook +} + +// CanImportLocal returns true if user can migrate repository by local path. +func (u *User) CanImportLocal() bool { + return u.IsAdmin || u.AllowImportLocal +} + // EmailAdresses is the list of all email addresses of a user. Can contain the // primary email address, but is not obligatory type EmailAddress struct { @@ -242,14 +260,12 @@ func (u *User) ValidatePassword(passwd string) bool { // UploadAvatar saves custom avatar for user. // FIXME: split uploads to different subdirs in case we have massive users. func (u *User) UploadAvatar(data []byte) error { - u.UseCustomAvatar = true - img, _, err := image.Decode(bytes.NewReader(data)) if err != nil { - return err + return fmt.Errorf("Decode: %v", err) } - m := resize.Resize(234, 234, img, resize.NearestNeighbor) + m := resize.Resize(290, 290, img, resize.NearestNeighbor) sess := x.NewSession() defer sessionRelease(sess) @@ -257,19 +273,20 @@ func (u *User) UploadAvatar(data []byte) error { return err } - if _, err = sess.Id(u.Id).AllCols().Update(u); err != nil { - return err + u.UseCustomAvatar = true + if err = updateUser(sess, u); err != nil { + return fmt.Errorf("updateUser: %v", err) } os.MkdirAll(setting.AvatarUploadPath, os.ModePerm) fw, err := os.Create(u.CustomAvatarPath()) if err != nil { - return err + return fmt.Errorf("Create: %v", err) } defer fw.Close() - if err = jpeg.Encode(fw, m, nil); err != nil { - return err + if err = png.Encode(fw, m); err != nil { + return fmt.Errorf("Encode: %v", err) } return sess.Commit() @@ -356,6 +373,15 @@ func (u *User) DisplayName() string { return u.Name } +// ShortName returns shorted user name with given maximum length, +// it adds "..." at the end if user name has more length than maximum. +func (u *User) ShortName(length int) string { + if len(u.Name) < length { + return u.Name + } + return u.Name[:length] + "..." +} + // IsUserExist checks if given user name exist, // the user name should be noncased unique. // If uid is presented, then check will rule out that one, @@ -717,9 +743,9 @@ func UserPath(userName string) string { return filepath.Join(setting.RepoRootPath, strings.ToLower(userName)) } -func GetUserByKeyId(keyId int64) (*User, error) { +func GetUserByKeyID(keyID int64) (*User, error) { user := new(User) - has, err := x.Sql("SELECT a.* FROM `user` AS a, public_key AS b WHERE a.id = b.owner_id AND b.id=?", keyId).Get(user) + has, err := x.Sql("SELECT a.* FROM `user` AS a, public_key AS b WHERE a.id = b.owner_id AND b.id=?", keyID).Get(user) if err != nil { return nil, err } else if !has { @@ -980,7 +1006,7 @@ func GetUserByEmail(email string) (*User, error) { return GetUserByID(emailAddress.UID) } - return nil, ErrUserNotExist{0, "email"} + return nil, ErrUserNotExist{0, email} } // SearchUserByName returns given number of users whose name contains keyword. diff --git a/models/webhook.go b/models/webhook.go index b4d7dc9c..cbc874a9 100644 --- a/models/webhook.go +++ b/models/webhook.go @@ -178,8 +178,8 @@ func GetActiveWebhooksByRepoID(repoID int64) (ws []*Webhook, err error) { return ws, err } -// GetWebhooksByRepoId returns all webhooks of repository. -func GetWebhooksByRepoId(repoID int64) (ws []*Webhook, err error) { +// GetWebhooksByRepoID returns all webhooks of repository. +func GetWebhooksByRepoID(repoID int64) (ws []*Webhook, err error) { err = x.Find(&ws, &Webhook{RepoID: repoID}) return ws, err } diff --git a/modules/auth/admin.go b/modules/auth/admin.go index c2d47a44..1530212b 100644 --- a/modules/auth/admin.go +++ b/modules/auth/admin.go @@ -24,16 +24,17 @@ func (f *AdminCrateUserForm) Validate(ctx *macaron.Context, errs binding.Errors) } type AdminEditUserForm struct { - LoginType string `binding:"Required"` - LoginName string - FullName string `binding:"MaxSize(100)"` - Email string `binding:"Required;Email;MaxSize(254)"` - Password string `binding:"MaxSize(255)"` - Website string `binding:"MaxSize(50)"` - Location string `binding:"MaxSize(50)"` - Active bool - Admin bool - AllowGitHook bool + LoginType string `binding:"Required"` + LoginName string + FullName string `binding:"MaxSize(100)"` + Email string `binding:"Required;Email;MaxSize(254)"` + Password string `binding:"MaxSize(255)"` + Website string `binding:"MaxSize(50)"` + Location string `binding:"MaxSize(50)"` + Active bool + Admin bool + AllowGitHook bool + AllowImportLocal bool } func (f *AdminEditUserForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { diff --git a/modules/auth/ldap/ldap.go b/modules/auth/ldap/ldap.go index 74a36d5e..a00bcf85 100644 --- a/modules/auth/ldap/ldap.go +++ b/modules/auth/ldap/ldap.go @@ -130,7 +130,7 @@ func (ls *Source) SearchEntry(name, passwd string, directBind bool) (string, str l, err := ldapDial(ls) if err != nil { - log.Error(4, "LDAP Connect error, %s:%v", ls.Host, err) + log.Error(4, "LDAP Connect error (%s): %v", ls.Host, err) ls.Enabled = false return "", "", "", false, false } diff --git a/modules/auth/org.go b/modules/auth/org.go index 0642d1cb..084ad43a 100644 --- a/modules/auth/org.go +++ b/modules/auth/org.go @@ -17,7 +17,7 @@ import ( // \/ /_____/ \/ \/ \/ \/ \/ type CreateOrgForm struct { - OrgName string `binding:"Required;AlphaDashDot;MaxSize(30)" locale:"org.org_name_holder"` + OrgName string `binding:"Required;AlphaDashDot;MaxSize(35)" locale:"org.org_name_holder"` } func (f *CreateOrgForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { @@ -25,7 +25,7 @@ func (f *CreateOrgForm) Validate(ctx *macaron.Context, errs binding.Errors) bind } type UpdateOrgSettingForm struct { - Name string `binding:"Required;AlphaDashDot;MaxSize(30)" locale:"org.org_name_holder"` + Name string `binding:"Required;AlphaDashDot;MaxSize(35)" locale:"org.org_name_holder"` FullName string `binding:"MaxSize(100)"` Description string `binding:"MaxSize(255)"` Website string `binding:"Url;MaxSize(100)"` diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index ac43ba5d..8e10dc24 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -5,8 +5,14 @@ package auth import ( + "net/url" + "strings" + + "github.com/Unknwon/com" "github.com/go-macaron/binding" "gopkg.in/macaron.v1" + + "github.com/gogits/gogs/models" ) // _______________________________________ _________.______________________ _______________.___. @@ -37,8 +43,8 @@ type MigrateRepoForm struct { AuthPassword string `json:"auth_password"` Uid int64 `json:"uid" binding:"Required"` RepoName string `json:"repo_name" binding:"Required;AlphaDashDot;MaxSize(100)"` - Private bool `json:"mirror"` - Mirror bool `json:"private"` + Mirror bool `json:"mirror"` + Private bool `json:"private"` Description string `json:"description" binding:"MaxSize(255)"` } @@ -46,6 +52,34 @@ func (f *MigrateRepoForm) Validate(ctx *macaron.Context, errs binding.Errors) bi return validate(errs, ctx.Data, f, ctx.Locale) } +// ParseRemoteAddr checks if given remote address is valid, +// and returns composed URL with needed username and passowrd. +// It also checks if given user has permission when remote address +// is actually a local path. +func (f MigrateRepoForm) ParseRemoteAddr(user *models.User) (string, error) { + remoteAddr := f.CloneAddr + + // Remote address can be HTTP/HTTPS/Git URL or local path. + if strings.HasPrefix(remoteAddr, "http://") || + strings.HasPrefix(remoteAddr, "https://") || + strings.HasPrefix(remoteAddr, "git://") { + u, err := url.Parse(remoteAddr) + if err != nil { + return "", models.ErrInvalidCloneAddr{IsURLError: true} + } + if len(f.AuthUsername)+len(f.AuthPassword) > 0 { + u.User = url.UserPassword(f.AuthUsername, f.AuthPassword) + } + remoteAddr = u.String() + } else if !user.CanImportLocal() { + return "", models.ErrInvalidCloneAddr{IsPermissionDenied: true} + } else if !com.IsDir(remoteAddr) { + return "", models.ErrInvalidCloneAddr{IsInvalidPath: true} + } + + return remoteAddr, nil +} + type RepoSettingForm struct { RepoName string `binding:"Required;AlphaDashDot;MaxSize(100)"` Description string `binding:"MaxSize(255)"` @@ -181,12 +215,12 @@ func (f *CreateLabelForm) Validate(ctx *macaron.Context, errs binding.Errors) bi // \/ \/ \/ \/ \/ \/ type NewReleaseForm struct { - TagName string `form:"tag_name" binding:"Required"` + TagName string `binding:"Required"` Target string `form:"tag_target" binding:"Required"` - Title string `form:"title" binding:"Required"` - Content string `form:"content" binding:"Required"` - Draft string `form:"draft"` - Prerelease bool `form:"prerelease"` + Title string `binding:"Required"` + Content string + Draft string + Prerelease bool } func (f *NewReleaseForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { diff --git a/modules/avatar/avatar.go b/modules/avatar/avatar.go index e037703b..b25b1bfe 100644 --- a/modules/avatar/avatar.go +++ b/modules/avatar/avatar.go @@ -39,6 +39,8 @@ import ( "github.com/gogits/gogs/modules/setting" ) +//FIXME: remove cache module + var gravatarSource string func UpdateGravatarSource() { @@ -102,7 +104,7 @@ func New(hash string, cacheDir string) *Avatar { expireDuration: time.Minute * 10, reqParams: url.Values{ "d": {"retro"}, - "size": {"200"}, + "size": {"290"}, "r": {"pg"}}.Encode(), imagePath: filepath.Join(cacheDir, hash+".image"), //maybe png or jpeg } @@ -153,7 +155,7 @@ func (this *Avatar) Encode(wr io.Writer, size int) (err error) { if img, err = decodeImageFile(imgPath); err != nil { return } - m := resize.Resize(uint(size), 0, img, resize.NearestNeighbor) + m := resize.Resize(uint(size), 0, img, resize.Lanczos3) return jpeg.Encode(wr, m, nil) } @@ -192,7 +194,7 @@ func (this *service) mustInt(r *http.Request, defaultValue int, keys ...string) func (this *service) ServeHTTP(w http.ResponseWriter, r *http.Request) { urlPath := r.URL.Path hash := urlPath[strings.LastIndex(urlPath, "/")+1:] - size := this.mustInt(r, 80, "s", "size") // default size = 80*80 + size := this.mustInt(r, 290, "s", "size") // default size = 290*290 avatar := New(hash, this.cacheDir) avatar.AlterImage = this.altImage diff --git a/modules/base/base.go b/modules/base/base.go index 864ede05..c9875fb5 100644 --- a/modules/base/base.go +++ b/modules/base/base.go @@ -4,6 +4,12 @@ package base +import ( + "os" + "os/exec" + "path/filepath" +) + const DOC_URL = "https://github.com/gogits/go-gogs-client/wiki" type ( @@ -11,3 +17,16 @@ type ( ) var GoGetMetas = make(map[string]bool) + +// ExecPath returns the executable path. +func ExecPath() (string, error) { + file, err := exec.LookPath(os.Args[0]) + if err != nil { + return "", err + } + p, err := filepath.Abs(file) + if err != nil { + return "", err + } + return p, nil +} diff --git a/modules/base/markdown.go b/modules/base/markdown.go index 540ee58f..cf7a3193 100644 --- a/modules/base/markdown.go +++ b/modules/base/markdown.go @@ -14,6 +14,7 @@ import ( "regexp" "strings" + "github.com/Unknwon/com" "github.com/russross/blackfriday" "golang.org/x/net/html" @@ -99,12 +100,33 @@ func (options *CustomRender) Link(out *bytes.Buffer, link []byte, title []byte, options.Renderer.Link(out, link, title, content) } +var ( + svgSuffix = []byte(".svg") + svgSuffixWithMark = []byte(".svg?") +) + func (options *CustomRender) Image(out *bytes.Buffer, link []byte, title []byte, alt []byte) { - if len(link) > 0 && !isLink(link) { - link = []byte(path.Join(strings.Replace(options.urlPrefix, "/src/", "/raw/", 1), string(link))) + prefix := strings.Replace(options.urlPrefix, "/src/", "/raw/", 1) + if len(link) > 0 { + if isLink(link) { + // External link with .svg suffix usually means CI status. + if bytes.HasSuffix(link, svgSuffix) || bytes.Contains(link, svgSuffixWithMark) { + options.Renderer.Image(out, link, title, alt) + return + } + } else { + if link[0] != '/' { + prefix += "/" + } + link = []byte(prefix + string(link)) + } } + out.WriteString(`<a href="`) + out.Write(link) + out.WriteString(`">`) options.Renderer.Image(out, link, title, alt) + out.WriteString("</a>") } var ( @@ -159,7 +181,21 @@ func RenderSha1CurrentPattern(rawBytes []byte, urlPrefix string) []byte { return rawBytes } +func cutoutVerbosePrefix(prefix string) string { + count := 0 + for i := 0; i < len(prefix); i++ { + if prefix[i] == '/' { + count++ + } + if count >= 3 { + return prefix[:i] + } + } + return prefix +} + func RenderIssueIndexPattern(rawBytes []byte, urlPrefix string) []byte { + urlPrefix = cutoutVerbosePrefix(urlPrefix) ms := issueIndexPattern.FindAll(rawBytes, -1) for _, m := range ms { var space string @@ -209,11 +245,21 @@ func RenderRawMarkdown(body []byte, urlPrefix string) []byte { return body } +var ( + leftAngleBracket = []byte("</") + rightAngleBracket = []byte(">") +) + +var noEndTags = []string{"img", "input", "br", "hr"} + // PostProcessMarkdown treats different types of HTML differently, // and only renders special links for plain text blocks. func PostProcessMarkdown(rawHtml []byte, urlPrefix string) []byte { + startTags := make([]string, 0, 5) var buf bytes.Buffer tokenizer := html.NewTokenizer(bytes.NewReader(rawHtml)) + +OUTER_LOOP: for html.ErrorToken != tokenizer.Next() { token := tokenizer.Token() switch token.Type { @@ -225,17 +271,38 @@ func PostProcessMarkdown(rawHtml []byte, urlPrefix string) []byte { tagName := token.Data // If this is an excluded tag, we skip processing all output until a close tag is encountered. if strings.EqualFold("a", tagName) || strings.EqualFold("code", tagName) || strings.EqualFold("pre", tagName) { + stackNum := 1 for html.ErrorToken != tokenizer.Next() { token = tokenizer.Token() + // Copy the token to the output verbatim buf.WriteString(token.String()) - // If this is the close tag, we are done - if html.EndTagToken == token.Type && strings.EqualFold(tagName, token.Data) { - break + + if token.Type == html.StartTagToken { + stackNum++ + } + + // If this is the close tag to the outer-most, we are done + if token.Type == html.EndTagToken && strings.EqualFold(tagName, token.Data) { + stackNum-- + + if stackNum == 0 { + break + } } } + continue OUTER_LOOP + } + + if !com.IsSliceContainsStr(noEndTags, token.Data) { + startTags = append(startTags, token.Data) } + case html.EndTagToken: + buf.Write(leftAngleBracket) + buf.WriteString(startTags[len(startTags)-1]) + buf.Write(rightAngleBracket) + startTags = startTags[:len(startTags)-1] default: buf.WriteString(token.String()) } diff --git a/modules/base/tool.go b/modules/base/tool.go index b9a97c9c..78983b36 100644 --- a/modules/base/tool.go +++ b/modules/base/tool.go @@ -23,6 +23,8 @@ import ( "github.com/Unknwon/i18n" "github.com/microcosm-cc/bluemonday" + "github.com/gogits/chardet" + "github.com/gogits/gogs/modules/avatar" "github.com/gogits/gogs/modules/setting" ) @@ -43,6 +45,22 @@ func EncodeSha1(str string) string { return hex.EncodeToString(h.Sum(nil)) } +func ShortSha(sha1 string) string { + if len(sha1) == 40 { + return sha1[:10] + } + return sha1 +} + +func DetectEncoding(content []byte) (string, error) { + detector := chardet.NewTextDetector() + result, err := detector.DetectBest(content) + if result.Charset != "UTF-8" && len(setting.Repository.AnsiCharset) > 0 { + return setting.Repository.AnsiCharset, err + } + return result.Charset, err +} + func BasicAuthDecode(encoded string) (string, string, error) { s, err := base64.StdEncoding.DecodeString(encoded) if err != nil { diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index bb44aaa7..b4a9e44d 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -284,7 +284,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7a\x5d\x8f\xe3\x46\x76\xf6\x3d\x7f\x45\x59\x7e\xfd\x7a\x1c\x48\xea\x2f\xcf\x87\xdb\xee\xc4\x6a\x89\x52\x73\x47\x5f\x26\xa5\x19\x8f\x07\x0d\x36\x9b\x2c\x49\x74\x53\xa4\x86\x45\x76\xb7\x8c\x5c\xac\x91\x8b\x00\xb9\x4d\x90\xdc\x04\x41\x72\x11\x04\xd8\x7c\x20\x8b\xdc\xec\x26\xc8\x95\x91\xfb\x99\xff\xb0\xf0\x26\xff\x22\xcf\x39\x45\x4a\x54\x4f\xbb\x91\x05\x92\x5d\xa3\x45\x16\xab\x0e\xeb\x3c\x75\xce\x79\x9e\x2a\xce\x87\x62\x68\xbe\x30\x6d\xc1\x7f\x06\xa3\x8e\xd5\x7d\x25\x26\x67\x96\x23\xba\x56\xdf\x34\x3e\x14\xe3\xbe\xd9\x72\x4c\x31\x68\x3d\x37\x45\xfb\xac\x35\xec\x99\x8e\x18\x0d\x45\x7b\x64\xdb\xa6\x33\x1e\x0d\x3b\xd6\xb0\x27\xda\x53\x67\x32\x1a\xa0\x71\xd8\xb5\x7a\x7a\xa4\xf1\xb9\x68\xad\x56\x22\xf6\x96\x52\x64\x0b\x2f\x13\x6a\x91\xdc\x28\x91\xc4\x42\x5e\xcb\x74\x2d\x56\xde\x1c\x0f\xc2\x2c\x92\x46\x6b\x3c\x76\x87\xad\x81\x29\x4e\x44\x2f\x99\xab\x63\xfc\x15\xbd\x30\x13\x8e\x4c\xaf\x43\x5f\xc2\x52\x7b\xe1\xc5\xe8\x8e\xb6\x70\x26\xd6\x49\x2e\xd2\x3c\x16\x51\xe2\x7b\x51\xb4\x36\xec\xe9\xd0\x9d\x3a\x98\xfd\x89\x98\x87\x19\x7a\x9b\x61\xb6\x90\xa9\xa8\x05\xf2\xba\x56\x17\xb5\x55\x9a\x04\x35\x91\xa0\x21\x93\x2a\x43\x4b\x20\x67\x5e\x1e\xc1\x96\xd2\x7d\xd8\x02\x5c\xa7\x09\xe0\xde\x30\x5e\xa7\x72\x95\xa8\x30\x4b\xd2\xf5\xb9\x61\x8f\x46\x13\x71\x62\x38\x6d\xdb\x1a\x4f\xdc\xc9\xab\x31\x75\xbb\xf4\xd4\x02\x6f\xea\x14\x96\x5a\x43\xc7\x12\xfe\xc2\x4b\x95\xcc\x0c\xba\x71\x01\x95\xed\x98\x18\x28\xd0\xad\x9b\xa4\xbe\x2c\xfc\x8e\xe5\x8d\xd8\x9a\x17\x59\x22\x2e\xa5\x58\xa5\xe1\xb5\x97\x49\xa3\x3b\xb2\xdb\xa6\x3b\xb6\xad\x17\xad\x09\xbd\x66\xe6\x45\x8a\xfc\x1f\x7b\x99\xbf\x10\x34\x7d\xf1\x26\x97\xb9\x14\x91\x8c\xe7\xd9\xa2\x2e\x96\xde\x15\xc3\xe2\x29\x11\x79\x29\x20\xc2\x05\x6c\xab\xf0\x12\xb8\x8e\xa7\xfd\xbe\x6b\x9b\x5f\x4d\x4d\x67\xe2\xe2\xef\xd4\x74\xfb\xe6\xb0\x37\x39\x83\xe5\x83\x7d\xfc\x0f\x9e\xe6\xe1\x39\xec\x0f\xf3\xe5\x25\x10\x4b\x66\xdb\xa9\x85\x52\xe9\x75\xf3\x52\xc9\x6b\x27\x03\x11\xc6\x58\x3f\x38\x72\xbb\x8a\x12\xb4\xd2\x12\x1a\xe6\xd7\xe3\xfe\xc8\xc6\xa4\x5b\x3d\x44\x82\x3b\x9c\x0e\x60\xfd\x70\x7f\xc7\x68\xa8\x54\xfe\xd3\xe6\xd8\x8c\xe5\x38\xd3\x3b\x46\x0e\x76\x8d\x2c\xbd\xdb\x70\x99\x2f\x85\x9f\x2c\x97\x61\xa6\xee\x18\xf1\xfc\x2c\xbc\x0e\xb3\xb5\x98\x49\x19\x18\x5d\xd3\xec\xb8\x83\xd6\xd7\x6e\x7b\x34\x18\x58\x93\xc2\xe0\x63\xf6\xb7\xe9\x05\xcb\x30\xde\xf5\x3a\x57\x32\x7d\x78\x7e\x14\x60\xbb\xd3\x7b\xbc\xff\x3e\x70\x0f\x9a\xb0\xcd\xf1\xe8\x41\x13\x71\x92\x21\xdc\x1f\x36\x32\x1c\x4d\xac\xb6\xf9\xa0\x99\x24\x9d\x7b\x71\xf8\x9d\x97\x85\x48\xb6\x87\x6c\x8d\xec\xde\x7b\x86\x8c\xd7\x4b\x2f\xbd\x0a\x92\x1b\x46\xc8\x8c\x3d\x04\x92\x40\x60\x07\x22\x0a\x31\xee\x32\x95\xde\x15\x02\x20\x93\xb1\x82\x79\xc3\x1c\xb6\x4e\xfb\xa6\x8b\x60\xef\xb8\x7d\x6b\x68\xba\xa7\xb6\xd9\x7a\xbe\x89\x5c\xe3\x35\x80\x45\xd8\x9f\x1b\x63\x7b\x34\x19\xb5\x47\x7d\x3c\x5a\x64\xd9\xca\xe8\x8c\x06\x2d\x6b\x88\x3b\xce\xe2\x45\xa2\x32\x4e\x34\x77\x6a\x53\x97\x8f\x1e\x95\xfd\x3f\x51\xc7\x7b\x7b\x1f\x3d\xd2\xdd\x71\xf3\xd1\xa3\xb3\xc9\x64\xec\x8e\x47\xf6\xe4\x13\xb5\x67\xf0\x4d\xab\xd3\x41\xf2\x1b\x9b\x07\x30\x70\x44\xd1\x8d\xfc\x0c\x15\x3b\xe0\x38\x67\x08\x0c\x2f\xcb\x01\xc4\xcd\x42\xc6\x04\xb5\xf0\xae\xbd\x30\xa2\xc7\x46\xc7\x72\xd8\x0d\xea\x56\x4e\x1d\xd7\xa5\xb1\xc3\xc3\x8a\xa9\x76\x67\x48\x99\x1c\x13\x92\x45\x69\x59\x26\x01\xc0\xec\x76\x19\x80\xa2\x8e\x68\x23\xa5\x61\x7b\x34\x9d\x20\x7e\xfa\xa3\x5e\x25\xa9\x7b\x32\x96\x29\xb2\x5e\xa8\x4c\xae\xd4\x31\x5a\xfe\x9f\xf0\x03\x2c\x4d\xb6\xd8\xcb\x92\xbd\x39\x4a\xe1\x9e\x9f\xab\x2c\x59\xee\x11\x64\x8a\x3b\x34\xb9\x5d\xf8\x32\xcd\x44\xc3\xf7\x4e\xb2\x14\xd5\xa0\x11\xe4\x29\x2f\xf7\xc9\xb3\xa7\x4f\xf6\x17\xfb\xcb\x7d\x25\x1a\x84\xe9\xc9\x72\x4d\x3f\x4d\x79\xeb\x2d\x57\x91\x6c\x22\x77\x8c\xcf\x61\x67\x94\x8a\x59\x9a\x2c\x85\x27\x9a\xab\xd9\xad\x98\x85\x11\x67\x75\x92\x66\x08\x11\x7e\x82\x0a\x2a\x5e\x86\x71\x40\x35\x9b\x5e\x16\xce\x42\x5f\xcf\x95\x32\xff\x51\x90\xc0\x0a\x81\x38\x43\xb4\xc9\x8c\xca\x98\x1e\xcf\x03\x8b\x72\x26\xae\xe4\xfa\x13\xed\x57\xb2\x42\xc0\xa8\x48\xac\xae\x7c\x75\x70\x28\x1a\x00\x8f\xac\xf2\xdb\x1b\x49\x9e\x15\x77\x72\x29\x1a\x71\x82\x61\xea\x7f\x36\x0a\x3d\xcb\x41\xf4\x40\xd1\x45\x20\x95\xd1\x36\xed\x89\x4b\x34\x04\xb8\xab\x10\xee\x95\xaf\x31\x9e\x9b\xaf\xee\xed\x50\x58\xc4\xeb\xa7\xab\x15\xf2\x29\xc2\x5a\x47\x94\x55\x99\x04\x82\xe4\x94\x17\x07\x40\x01\x70\xfb\x1a\x37\x5a\x2f\x74\xaf\x90\x0a\x43\x80\x56\x0a\x35\x80\x45\x9c\x46\xcd\xf2\x56\xfa\x39\x00\x36\x9c\x49\x0b\x49\xec\x72\xbc\x8f\x5b\x54\x8e\x35\x59\x46\x04\x31\x25\xad\x7e\x69\xef\x1b\x6b\x2c\x54\xbe\x22\x58\xcb\x44\xe3\xb6\x6d\x08\xf5\x31\x99\x30\x9e\x6b\x32\xc5\x52\x60\x49\xe2\x46\x94\xcc\xe7\x58\x46\xae\x69\x75\xe1\x7b\x31\x31\x4c\x6d\x91\x2c\xa5\x66\xc1\xa2\x7c\xd7\x8c\x7e\x8b\xd9\x9b\x6a\x00\xe1\x40\x3d\x90\xb1\x81\x97\x79\xa0\x37\x79\x5e\x61\xd2\xe5\x5a\xbd\x89\x98\x4b\x11\x4d\xf3\x54\x2a\x6d\x09\x8d\x61\x26\x8f\xf0\x20\xcc\x3e\x56\x44\xcc\x29\x58\x30\x21\xce\xee\x9c\x96\x54\xc9\x63\x8d\xb3\x91\x43\xa9\x74\x70\xf8\xb4\xb9\x8f\xff\x1f\x1c\x1f\x1d\xed\x3f\x31\x0a\xd6\xa7\x90\x36\x0a\x0a\x4f\x93\x24\x33\xc6\x2d\xc7\x79\xd9\x61\x5c\xba\xf4\xa2\xca\x6b\xe3\x68\x5d\x17\xb2\x64\x78\x9d\x94\x34\xb3\x54\xbe\xc9\xc3\xb4\x70\x11\x25\x27\x9c\xad\x1b\xb3\x3c\x8a\x6a\xc8\xe4\xfe\x86\xdd\x75\xff\xd2\x6c\x39\x7f\x5e\xd3\x5a\x16\x06\x97\x35\x43\x2f\x88\x20\x14\x38\xd5\x9a\xc1\x25\x40\x29\x38\x83\xea\x99\x9f\xa7\xe0\x99\x73\xc3\x1a\x62\x1d\x41\xb0\xfd\x51\xfb\x79\x65\x49\x3e\xf8\x40\xab\x24\x2d\xa2\x26\x23\xf1\xdc\x34\xc7\xe2\xd5\x68\x6a\x0b\xf6\xb0\xd3\x9a\xb4\x84\xd3\xea\x9a\x1f\x7c\x60\x38\x66\xdb\x36\x27\x2e\x62\x11\x06\x3e\xf8\xf0\xcb\x6e\xc7\x7c\x69\xe3\xbf\xff\xff\x7b\x8f\x28\x22\xf2\x2c\xa1\xc5\x44\xd4\xa7\x72\x29\xb9\xbc\x07\x1e\x52\x03\x65\xc4\x1a\x82\xd8\x07\xe6\xe0\x14\x55\xa5\xd3\x7a\xe5\x60\xfc\x53\xa3\x3d\x1a\x3d\xb7\x4c\xd6\x42\x15\x60\x5d\xef\x46\x2a\x5a\xda\xe2\xf1\x66\x5c\xb5\x4f\x18\xfb\xa9\x0c\x42\x8d\x8d\x4d\x4a\x45\x51\x1a\x27\xb7\x6b\xe1\xe5\xc0\x3a\xce\xca\xd8\x5c\x48\x2f\xc0\x44\x58\xd7\x15\xcc\xc9\x37\xa0\x37\x28\x48\x87\xd4\xcb\xe8\xeb\x57\x6e\x6b\x3a\x39\x33\x87\x08\x73\x84\xfa\x68\xa3\xcf\xbe\x6e\xbc\x34\x4f\xe9\x51\x83\x1a\x0a\x7a\x40\xb8\x9c\x1b\xad\xf6\xc4\x7a\x61\x82\xaf\x3b\x10\x29\x74\x35\xb0\x86\xa8\x99\xe4\xd8\xc1\xb3\x7d\x18\x87\x98\x72\x75\x58\xfc\x64\x27\xe4\x2c\xcf\x06\x0a\x80\x0a\x92\x9f\xc4\xb3\x30\x5d\x0a\xd9\x58\xa2\xd0\x73\x7a\xa4\x72\x1e\xaa\x4c\xd7\x4a\xd8\xec\x59\x0e\x95\x65\x13\xdc\xd2\x77\x59\xbc\xda\x83\xca\x52\x76\x12\x90\x31\x33\x45\x14\x25\x37\xc5\x60\xbc\x80\xa2\x85\x03\x42\x00\x34\x2e\x09\xbe\x9f\xe4\x71\xc6\xc1\xb9\xad\xf9\x6c\xde\x66\xff\x2b\x46\x79\x8a\x4b\x94\x1c\xa1\xc2\x39\xb3\x08\xa6\x7a\x1d\x42\x15\x7a\xf1\x3a\x5b\x20\x9b\x9b\x06\x69\x36\x0b\x9a\xca\xb1\x7a\x43\xac\xf4\x0b\xcb\x7c\x59\xb1\xd0\xf6\x7c\x14\x18\xb0\x57\xe6\xa5\xac\xf7\x42\x9f\x88\xad\x2c\x11\xed\x56\xfb\xcc\x74\x5b\x50\x90\x2d\xbb\x32\x6a\x40\x18\x90\xc2\x98\x15\x2b\x59\xf6\x27\x45\xd1\x7d\xe5\x12\x06\xd5\xee\x54\xe6\x03\x99\x61\xd4\x31\x33\x36\xf1\x30\xe4\xf5\x22\xbf\x24\x16\xa1\xd4\x80\x08\xd3\x24\xa5\xe5\xdd\xde\xc1\x93\xc7\xa5\xcd\x87\x62\x61\xf3\x92\x9f\xea\x3b\xfa\x29\xe8\x3a\x09\xaf\x06\xbc\xf7\xaf\x04\xe0\x67\x39\x88\x82\x0d\x24\xbf\x03\xaf\x63\x72\x58\xf3\x14\x65\x62\x95\xe8\xb2\x98\xad\x57\x5b\x0e\x46\xac\x58\x83\xe9\x80\xb2\x0d\xc0\x7e\x03\xa0\xce\xcc\x9d\xcc\x2d\xc4\x8e\xef\xad\x20\xb6\x3d\x71\xed\x45\x61\xa0\x63\xfe\xbd\xd0\xd9\x40\x3d\x9e\x20\xdb\x61\x83\x68\x18\xe1\x7c\x23\x2f\x17\x49\x72\x45\xa5\xf3\x0c\xbf\x22\xf3\xd4\xd5\x8e\x62\x37\xee\x91\xe1\xbc\x8f\x88\x42\xe4\x1c\xf6\x43\x4b\x49\xbc\x86\xa8\x40\xa1\x81\x17\xca\xe8\x98\x14\xe9\xb6\x3b\xb1\x06\x26\x54\x04\xcb\x58\xd4\x06\x8e\xc8\x30\xe6\x72\x24\x2b\x0c\x4d\xb3\x73\x9e\x5b\x63\x77\xd2\x77\x5c\x8c\xa3\xed\xdc\xd6\xc5\xad\x48\x5c\x84\x8a\xf7\x1f\x61\x0c\xe7\x96\xda\x4d\xbc\x55\x22\xb6\xb4\x38\xbc\x2b\xc5\x49\x18\x82\xee\x20\xe5\xb4\xf3\x9d\x8a\xd9\xd3\x7c\x36\x63\xae\x24\x17\xc9\x3a\xf0\x8b\x63\x19\xd5\xb1\x3a\x72\x55\xec\x4f\x42\xe6\xc6\x62\xff\x16\x24\xf1\xc7\xa0\xef\x18\x4e\xdc\x90\x42\xe5\x87\x4d\x14\xc4\x61\xc7\x3d\x9d\x76\xbb\x24\x96\xcc\xa1\x06\x88\xe6\x4d\xd5\x06\xc5\x1b\x0c\xbc\xd6\x22\x96\x53\x5a\x6f\x1f\x9d\xe9\xe9\xcf\xcc\xf6\x84\x65\x63\xb9\x95\xfc\x44\x95\x21\xaf\x05\x28\xc9\xad\x25\xc7\xb2\x5a\x66\xab\xe6\x9c\xae\x29\x8e\x8f\x1f\x3f\x7b\x8a\x67\x5f\x7d\x55\x3c\x78\xf3\x86\x5b\x0f\x09\xe3\x61\x92\xc9\x3a\x4d\x98\xf9\x9c\xb4\x8d\xc4\x82\xe8\x38\xab\x7d\xfa\xe4\x31\x58\xc7\x19\x4c\xc6\x0e\x5a\xa2\x88\x38\x16\xb5\x30\x68\x22\xc1\x29\xf4\xc0\x0d\xf6\x04\x6b\x40\x1b\x5e\x1e\x8b\x17\x91\xff\xa9\xa4\xfd\x0b\x0c\xc1\x0d\xd2\x17\x76\xb7\x2d\x9e\x7c\xba\xff\x59\x53\x58\xfa\x45\x7a\xbe\x25\xef\xab\xad\x21\x40\xc4\x2f\xf2\xa2\x1b\x90\xc0\xe6\x7d\x25\xb3\x56\x24\xea\x99\xd9\x1f\x91\x76\xd2\xc1\xaa\x05\x2f\xc9\x40\xae\xd9\xb4\x17\x08\x42\x5a\x2f\x14\xf5\xe6\x26\x3b\x78\x0c\x5b\x69\xb3\x1c\xda\x0e\xa0\xe0\xdf\xb5\xb8\xb3\x83\x66\xb5\xa8\xd6\x28\x8c\x4b\xcc\x05\xfd\x5c\x9a\x50\xc1\x2d\xdb\xa4\xd5\x8c\xcc\x1e\x56\xe5\x64\x52\x75\xba\x29\x46\x28\xa0\xe4\x16\x1a\xc9\x34\xde\xac\x64\x34\x6b\x50\xa5\x04\x5e\x95\x81\x4a\x07\xf9\x26\xc0\x75\x61\x15\x7e\x14\xc2\xab\x6a\x47\x92\x15\x2e\xc9\x41\xab\x4b\xf5\x67\x2b\xcd\xef\x91\x88\x3a\xc0\x1f\xd2\x88\x45\x8f\xad\x48\xe4\x10\xd3\x52\x3a\x08\x50\x79\x20\xb8\x68\x45\x1f\x1f\x1d\x1e\x36\xc5\x84\x9c\x28\xf4\xd7\xb7\x54\xf1\x71\x29\x39\x70\x37\x9d\xe1\x21\xf9\x7f\x51\xa3\x08\xaf\x89\x2f\xf8\xf1\x97\x15\xb9\xfe\xfb\x17\x42\x27\xa8\x30\xba\xf6\x68\xc0\x92\x68\xc0\xb3\xd8\x52\x2f\x13\xd2\xca\x53\xea\x26\x49\x83\x42\x47\x6d\x25\x94\xf1\xda\x27\xc2\xd8\x91\x73\x72\x89\xdc\xd7\xaa\x09\x59\x55\xe3\x79\x50\x2b\xf7\xbc\x73\x42\x52\x74\x36\x5a\x1d\x54\x3b\x66\x71\xdd\x52\x8a\xa8\xe2\x79\xa1\xcc\x7a\x6d\x64\x27\x48\x12\xd5\xb3\x52\xc5\x76\x2c\x3e\xd9\x87\x76\x82\xa5\x17\x2d\x22\x9c\x27\xfb\xa5\x21\x3d\x17\xad\xc5\x2a\x73\x81\x81\x58\xfa\x5a\x7b\x24\x04\xa2\xc6\x0e\xa3\x78\xc0\x31\xf8\x3e\x83\xe3\x57\x27\x99\xbf\xaa\xd3\xc3\x93\xe3\x27\x47\x4f\x3f\xab\x97\x80\x9c\x2c\x3d\xdf\x4b\x11\xb5\xc1\xe5\xc9\x7e\x7d\x95\x24\x91\x4b\x7c\x71\x82\xca\x52\x0f\x83\x48\xba\x45\xd1\x3d\xd1\x12\xa2\x7c\xf3\xb1\xb8\xd8\x8a\xd5\x83\x83\xc3\x83\x83\x8b\x22\xd5\x58\xb6\x28\xda\xfe\xde\x8f\x29\xed\x0a\xb6\xd8\x6a\x68\x0b\xfd\x7c\x1f\xae\xe0\xbd\x17\x56\x67\x17\xd8\x71\x9a\x5c\x87\x24\xb3\x58\xc3\xcc\x91\x7a\xe4\xbf\xd2\xd3\x43\x97\x63\xce\xa9\x85\x77\x4d\x6b\xbf\x2e\x7b\xad\x25\x9d\x7e\xd1\xeb\x51\xcd\xf4\x0c\xb7\x5b\x14\x88\xe6\xe6\xbc\x29\x2e\x58\xd8\x16\x4f\xd5\xc5\xff\x19\x8a\xe4\xf0\x31\xb4\x65\x03\xbf\x8d\x20\x25\x76\xdb\xe3\x46\x11\xa8\xb8\x9c\x30\xf8\x14\xb5\xb2\x9c\x19\x29\xff\xe3\xf2\x7d\x5f\x96\x73\x74\x33\xaa\x69\x17\x1b\x98\xdc\xe2\x90\xb1\x90\xe8\xa5\x27\x78\xa7\x53\xb8\xec\x83\x79\x43\xa9\x45\x69\xa1\x79\x8b\x72\x14\xba\x51\x78\x25\x5d\xad\x5d\x30\xc2\xd2\x64\x44\x05\xa7\xc4\x0b\x31\xcb\x6a\xa7\x08\xe7\x6a\xa1\xd3\x65\x43\x1b\x84\x72\x9f\xda\xe6\xfb\xe2\x41\x61\x2f\xac\xdf\xbf\x33\x96\xe5\x41\x21\x1a\x48\xc8\x6a\x2b\xa5\x6e\xd8\x4e\x1d\xd9\x43\x38\x6e\x52\x68\xc7\xc8\x33\xf0\xc4\xbe\xd1\x6b\xbb\x65\xf6\xb0\x26\x80\x11\xfd\x60\x6b\x25\x0a\x67\x92\xed\xdc\x33\xdc\x31\x1d\x87\x04\x79\xdf\xea\x9a\xbb\xe3\x8d\xd7\x85\x90\xa4\xa8\x9e\x10\xe5\x45\x9e\x2f\x49\x9d\x16\xed\x0c\xf8\x76\xef\xa5\x6b\xb6\x8e\xef\x37\x10\x63\xf9\x9d\xf8\x2e\x9e\xe3\x8d\xf6\x0b\xab\x4d\xef\x29\xa8\x58\x4b\x53\x77\x3a\xee\x8f\x5a\x1d\xb7\xba\xdf\xd2\x9a\x56\xf1\x81\x6f\x18\x4b\x25\x8b\x83\x39\xaa\xa1\xd8\x57\x26\x68\xa8\x05\x79\xa2\x16\x79\x52\x43\x27\xbc\xd9\x2b\x2a\x73\x29\x87\x15\xb6\xa0\x3e\xfc\xa6\x75\xd6\xba\x15\xb2\xd5\x8f\x9b\xf3\x54\x77\x60\xed\xaa\x2f\xf7\x8c\x9e\x5d\x4c\xc5\xc1\xee\x8c\x67\x58\x76\xdb\xd0\x62\xd9\xa5\x72\xa2\xe5\x65\x19\xea\x03\x28\x3c\x23\xa0\x5e\x2e\x24\xc3\xb1\x6d\x55\x4c\xb1\x92\xe3\x01\x72\xa0\x38\x22\x56\x04\xe4\x05\x2d\xf7\x45\x11\x08\xdb\xd5\x1f\xd3\x59\x01\x91\x5d\xc5\xc8\x9d\x81\x1a\x9e\xed\xe3\x8b\x9d\x7d\x6a\xe5\x01\x1d\xee\xc4\x92\xa0\x59\x92\x82\xe7\x9d\x0b\x6d\x87\xa0\x84\x55\x91\x68\xe1\x12\xfa\x6e\xef\xdb\x95\x9c\xff\xa1\xbe\x5c\xc5\x73\x03\x3b\xd9\xd1\x4b\xb3\xc3\x9b\x76\xda\x4f\xdd\xdb\x89\xa8\xe7\x56\xab\x6d\x10\x37\x6b\x45\xaa\x2f\xbb\x73\x3d\x3a\x1c\x9c\x1a\x74\xf6\x4a\x22\x1b\x96\x3e\x2d\x86\xc5\x1b\xed\x49\x63\x14\xab\x9f\x7c\x15\x25\xde\x1d\x90\xa0\x35\x69\x34\x11\xaf\x53\x1c\xda\x52\x2c\x13\xd8\xce\x4a\xfa\xe0\x75\xa9\x8f\x58\x0a\x5e\x24\xe0\x68\xa3\xbf\x16\x28\x3f\x2b\x3a\x60\x21\x50\xe4\x1d\x04\xc1\xca\x28\xe2\x47\xa5\x11\xb0\x53\xa1\xb0\xd0\x1d\x89\x46\xc7\xd3\xb4\x6c\x74\x76\xdf\xae\x8b\x69\x1c\xde\x76\x3c\x92\x7f\x76\x7e\xb9\x2e\xae\xba\xed\x67\x87\x87\xe5\xef\x37\xfa\xe2\xf1\x7e\xbd\x34\xbd\xb9\xd0\x8f\x8e\x8e\x8e\x3e\xdb\x5c\x0c\xbd\x38\xa9\x8b\xe7\x21\x36\x16\x12\xf2\xc9\xc9\xc0\xef\xc5\xcf\x00\x9a\x2e\xdc\x5c\xfb\x69\xc2\x04\xc8\xb7\x34\xaa\x20\x47\x5e\xcc\xaa\x56\xf7\x2e\x69\x9f\x50\x81\x41\x49\x59\xc6\xfb\x3c\x89\x3c\x6c\x23\x93\x74\xbe\xb7\xba\x9a\xef\x11\x7a\x7b\x1f\xe2\xaa\x81\xb2\xab\x32\x8f\xa2\xa4\x3b\xb2\x07\x2d\xcd\x65\x51\x32\xd7\x1f\x39\xb6\x67\x51\x25\xa7\x51\xff\x44\x93\x59\x49\x6a\xc4\xc6\xf4\x4b\x6a\x59\xe7\x7e\x79\x5e\x74\x27\xfd\xcb\xb1\xa5\x32\x83\xea\xf5\x68\x21\x94\x5c\x79\x7c\xea\xb9\x44\xcf\x10\x2a\x87\x8f\x4f\xcb\xd8\x2c\x87\xd5\x39\x48\x6a\x46\x71\x6e\x53\xb4\xfe\x6f\x6e\x35\xee\xee\x32\xb8\x82\x96\x8e\x4f\x52\x94\x3e\x72\xb3\x23\x2f\xf3\x39\x5d\x58\xc0\x9e\x7e\x5f\x7a\x29\xfb\x6f\xa6\x69\x92\xd2\x45\x3b\x0d\xe9\x6c\xe4\x2e\xbb\x6b\x0b\x46\x1f\x9b\x5b\x52\x39\x7c\x6b\x94\x4a\xa7\xc4\x86\x5d\xd7\xa7\x06\xb4\x0c\xcd\xa2\xfd\xbc\x1c\xb6\x19\xc0\x60\xdc\xed\x4d\x8d\xdb\xae\x9f\x6b\xb9\xa9\xeb\x8e\xa2\x53\x9b\x04\x61\x81\xe8\x46\x57\x91\x26\x19\xae\x1f\xa9\x1b\x8a\x40\x4e\xc1\x84\x0a\x03\x6d\x54\x0a\x69\xf1\xc9\xfb\x7c\xd5\x1f\xf5\x5c\x7b\x34\xd1\xa2\xb9\x28\x55\x94\xc8\xfc\x21\x60\x9b\xcd\xb4\xdd\xc1\x2a\xd2\x6c\x76\x6c\x30\xa6\xfb\x3a\x99\xe9\x64\xdc\x29\x71\x66\xa4\x37\x85\x44\x2d\xc2\x59\xf6\x90\x9d\xc3\x67\x10\x3d\x5e\x0c\x83\xe2\x8b\x2f\x70\x57\x17\x87\x8f\x9f\x54\x4a\x8c\xeb\x9c\x59\x5d\x3e\xa6\x7f\xc6\x1c\x38\xa7\x3a\xc8\x5e\x07\xd0\xc9\xeb\xf7\xfd\xea\xb4\xac\xfe\xab\xf7\x3c\x33\x6f\x57\x61\xca\xb5\x03\x9b\x2b\x4c\x87\x0c\xd0\x5c\x1e\x05\x32\x92\x74\xc6\x33\xa3\xa3\x9f\x25\xa6\x4d\x3d\x76\xe1\x7a\xca\x93\xd9\x9c\xc3\x55\x96\x39\xbe\x6f\x8d\xe3\xea\xaa\xd9\xb2\x10\xb8\x5a\xdd\x52\x35\xd3\x1f\x0a\x0b\x3c\x96\x20\x75\xd4\xdf\x7b\xa4\x88\x6d\x42\x0a\x0d\xb1\xf3\x75\xc1\xe7\x03\xa7\xfa\x69\x61\xa2\xbf\x2c\xa6\x1b\xdb\xbc\x07\xac\x28\x69\x18\x89\xf0\xba\x87\xac\x56\xc5\x4d\x91\x16\xd0\x86\x14\xf2\x39\xaa\xa3\xce\xfd\x3c\x58\xdd\x89\x7b\xea\x52\xfd\xd8\x83\x7b\x3e\x0c\xa9\x08\xf7\xe2\x73\xcd\xe6\x10\x96\x2b\xc9\x1d\x94\xa8\xb1\x8a\xd2\x43\x07\x00\xbb\x13\xe8\x84\xde\x3c\xc6\xeb\x42\xbf\x84\xae\xd8\xa2\x92\xf8\xa8\x55\x0e\x0b\x1e\xec\x78\xe7\xf4\xa0\x10\xfe\xbf\xeb\xd6\x8b\x57\x57\x92\xf6\xdd\x1e\xc4\x27\x5b\x76\x2e\x6a\xde\xeb\xda\x41\x75\xc7\x57\xab\xd7\x0e\x77\xee\xcf\x69\x4d\x4c\x3a\x04\x72\x2a\xb0\x6d\xca\xee\x5d\xe8\xb6\xe7\xf7\x5b\xf8\x76\xcf\xf1\xc5\xce\x91\xba\xd1\xb1\xc9\x36\xf7\x3b\xc5\xb8\x80\x8e\x2c\x6e\x41\x2a\x7a\x7a\xc7\x7c\x22\x7f\x4c\x7f\xbe\xdc\x7c\xab\xe3\x73\xbf\x3f\x28\x3e\x78\x9f\xe4\xd9\xec\x99\x41\x51\xa3\x77\x9b\x69\x52\xfd\x76\x98\xe6\x71\x4c\x75\x86\x9a\xf9\x3c\x8c\x99\x3f\x4c\x82\x90\xbf\xde\x37\x2b\xc7\x49\x45\x26\xda\x79\x5c\xed\xcd\xa1\xcb\xdf\x50\xc0\x5d\x29\x94\x11\x7f\xae\x6f\x4d\x5c\x3e\x19\xd9\x0a\x33\xfa\x62\x13\x30\xb1\x84\x54\x9b\x95\x9e\x49\x33\xe7\x46\xb7\x68\x3c\x37\x9c\xf6\x99\xd9\x99\xb2\xfc\xfa\x52\x27\xda\xc1\xc2\xe0\x95\xda\x7c\x93\x5f\x48\x2f\xa2\xb3\x44\x3a\x67\x2c\xac\xd0\xd7\x5d\x57\xb7\xbb\xdc\x7e\x9f\xa1\xc3\x4f\xe9\x43\x50\x2b\x9d\xe7\x5a\x07\x52\x2e\x33\xef\x21\x46\x3e\xc6\x96\x43\xcc\x94\x7f\xf5\x71\x09\x6b\xad\xd1\xc8\xe3\x94\x44\x14\xe3\xd4\x68\x64\xde\x5c\x11\x5d\x12\x93\x33\xdf\x27\xf1\x86\xd1\xc3\xac\xa1\xfc\x25\xab\xd7\x20\xf1\x15\x37\x90\xb5\xbd\x83\xe6\xd3\xe6\x63\xa3\x65\xf7\xa8\xf4\x18\xac\x9c\xe9\x74\xb4\xf2\x2f\x0c\xf8\x5b\x15\x85\x79\x89\x08\xcf\xdf\x65\x8f\xe8\x19\x30\xb9\x03\x28\xaf\xc3\xfd\xee\x19\xaf\xf1\xe6\x73\x2e\x77\x3d\x6b\xe2\x76\xac\x6e\x77\xb7\xb8\x3f\x0c\xc0\xdc\xaf\xba\xef\xcd\x29\x00\x15\xf2\x03\xde\x13\x61\xfd\x2e\xde\xcf\xfd\xc2\x77\x6c\x88\x36\xee\xbf\x0e\x0f\x9e\x51\x75\x6d\x0d\xb9\x41\xc6\x8d\xa9\x53\xff\x6e\xd1\x68\x0f\xe9\xef\xd9\xf3\x7a\x20\x1b\x1d\xb3\x3e\x4b\x1b\x5d\xbb\x1e\x47\x8d\x61\xbf\x1e\x5d\x37\xfa\x2f\xea\x69\xde\xb0\xa7\xf5\x6f\xbd\xc6\xcf\xc6\x75\xa9\x1a\xa6\x53\x5f\x65\x8d\x53\xbb\xbe\x8a\x1a\xe3\x7e\xfd\x72\xde\x38\xed\xd5\xf1\x52\x6b\xc2\x9f\xac\xc8\xb6\x89\xea\x1c\xaa\x45\xfd\xb7\xff\xf4\xf3\xdf\xfc\xfb\x9f\xfe\xe6\x57\xff\xf8\xe3\x9f\xff\x71\xfd\xb7\xbf\xfe\xfe\xbf\xfe\xfe\xcf\x8a\x9b\x8e\xcc\x33\xe5\x2f\xea\xdd\xd4\x8b\x7f\xf8\x3b\x2f\x54\xf5\xa1\xc4\x9e\x1e\xda\x2c\x50\xf5\xbe\x97\x5d\x87\xf2\x3f\xfe\x26\xaf\xbf\xfd\xeb\x77\x7f\xf4\xee\xfb\x77\xdf\xbf\xfd\xd7\xb7\xbf\x7a\xfb\xeb\xfa\x8f\x7f\xf1\xb7\x3f\xfe\xe5\x3f\xfc\xe7\x2f\xfe\xaa\x6e\xaa\x95\xf7\xc3\x2f\x93\xa8\x3e\x86\x4c\xcd\xe7\xf9\x0f\xbf\x50\x10\x33\xe2\x34\xf5\x54\x48\x8d\x91\xba\x0a\xeb\x6f\x7f\xf9\xee\x4f\xde\xfe\xdb\xdb\x7f\x79\xfb\xcf\xef\x7e\xae\x6d\xd4\xad\xcc\x8b\x42\x92\x8e\x5a\x7a\x05\xbc\x0c\x94\x04\x24\x04\xb1\x97\xbb\x42\x41\x63\xa0\xa8\x54\x48\x92\x8a\xe7\x06\x23\xc5\x88\x19\x0c\x17\x2e\xbf\x5b\x18\x8c\x19\x5f\x36\x26\x2f\x0d\xc6\x8e\xff\x89\x8c\xc1\x00\x52\xea\xa5\x06\xa3\x88\xcb\x38\x32\x18\x4a\xfa\xa4\x7f\x6d\x30\x9e\xf4\x35\x2f\x37\x18\x54\x5c\x7e\xeb\x19\x8c\x2c\xbd\x45\x19\x0c\x2f\x2e\xf9\xd7\x60\x98\xe9\x2e\x32\x18\x6b\xfa\x17\x36\x73\x83\x01\xa7\xbd\x48\x86\x95\x4d\xa8\x82\x21\xeb\xce\x46\x2f\xdd\x2e\xd4\x2a\xb4\xdb\xa9\xad\x3f\x60\x6e\x6a\xc0\x7f\x07\x00\x00\xff\xff\x2e\x8b\x9f\x93\xcc\x24\x00\x00") +var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7a\x5d\x8f\xe3\x46\x76\xf6\x3d\x7f\x45\x59\x7e\xfd\x7a\x1c\x48\xea\x2f\xf7\xcc\xb8\xed\x4e\xac\x96\x28\x35\x77\xf4\x65\x52\x9a\xf1\x78\xd0\xe0\xb0\xc9\x92\x44\x37\x45\x6a\x58\x64\x77\xcb\xc8\xc5\x1a\xb9\x08\x90\xdb\x04\xc9\x4d\x10\x24\x17\x41\x80\xcd\x07\xb2\xc8\xcd\x6e\x82\x5c\x19\xb9\x9f\xf9\x0f\x0b\x6f\xf2\x2f\xf2\x9c\x53\xa4\x44\xf5\xb4\x1b\x59\x20\xd9\x35\x46\x64\xb1\xea\x54\xd5\x73\xbe\x9e\x53\xd5\x1f\x8a\xa1\xf9\xdc\xb4\x05\xff\x33\x18\x75\xac\xee\x4b\x31\x39\xb7\x1c\xd1\xb5\xfa\xa6\xf1\xa1\x18\xf7\xcd\x96\x63\x8a\x41\xeb\x99\x29\xda\xe7\xad\x61\xcf\x74\xc4\x68\x28\xda\x23\xdb\x36\x9d\xf1\x68\xd8\xb1\x86\x3d\xd1\x9e\x3a\x93\xd1\x00\x8d\xc3\xae\xd5\xd3\x23\x8d\xcf\x45\x6b\xb5\x12\xb1\xb7\x94\x22\x5b\x78\x99\x50\x8b\xe4\x46\x89\x24\x16\xf2\x5a\xa6\x6b\xb1\xf2\xe6\xf8\x10\x66\x91\x34\x5a\xe3\xb1\x3b\x6c\x0d\x4c\x71\x2a\x7a\xc9\x5c\x9d\xe0\x5f\xd1\x0b\x33\xe1\xc8\xf4\x3a\xf4\x25\x24\xb5\x17\x5e\x8c\xee\x68\x0b\x67\x62\x9d\xe4\x22\xcd\x63\x11\x25\xbe\x17\x45\x6b\xc3\x9e\x0e\xdd\xa9\x83\xd5\x9f\x8a\x79\x98\xa1\xb7\x19\x66\x0b\x99\x8a\x5a\x20\xaf\x6b\x75\x51\x5b\xa5\x49\x50\x13\x09\x1a\x32\xa9\x32\xb4\x04\x72\xe6\xe5\x11\x64\x29\xdd\x87\x25\x60\xeb\xb4\x00\xbc\x1b\xc6\xab\x54\xae\x12\x15\x66\x49\xba\xbe\x30\xec\xd1\x68\x22\x4e\x0d\xa7\x6d\x5b\xe3\x89\x3b\x79\x39\xa6\x6e\x97\x9e\x5a\x60\xa6\x4e\x21\xa9\x35\x74\x2c\xe1\x2f\xbc\x54\xc9\xcc\xa0\x17\x17\x50\xd9\x8e\x89\x81\x02\xdd\xba\x49\xea\xcb\x62\xdf\xb1\xbc\x11\x5b\xf1\x22\x4b\xc4\xa5\x14\xab\x34\xbc\xf6\x32\x69\x74\x47\x76\xdb\x74\xc7\xb6\xf5\xbc\x35\xa1\x69\x66\x5e\xa4\x68\xff\x63\x2f\xf3\x17\x82\x96\x2f\xde\xe4\x32\x97\x22\x92\xf1\x3c\x5b\xd4\xc5\xd2\xbb\x62\x58\x3c\x25\x22\x2f\x05\x44\x78\x80\x6c\x15\x5e\x02\xd7\xf1\xb4\xdf\x77\x6d\xf3\xab\xa9\xe9\x4c\x5c\xfc\x3b\x35\xdd\xbe\x39\xec\x4d\xce\x21\xf9\x60\x1f\xff\xc3\x4e\xf3\xf0\x02\xf2\x87\xf9\xf2\x12\x88\x25\xb3\xed\xd2\x42\xa9\xb4\xde\xbc\x54\xb2\xee\x64\x20\xc2\x18\xfa\xc3\x46\x6e\x57\x51\x82\x56\x52\xa1\x61\x7e\x3d\xee\x8f\x6c\x2c\xba\xd5\x83\x25\xb8\xc3\xe9\x00\xd2\x0f\xf7\x77\x84\x86\x4a\xe5\x3f\x2d\x8e\xc5\x58\x8e\x33\xbd\x23\xe4\x60\x57\xc8\xd2\xbb\x0d\x97\xf9\x52\xf8\xc9\x72\x19\x66\xea\x8e\x10\xcf\xcf\xc2\xeb\x30\x5b\x8b\x99\x94\x81\xd1\x35\xcd\x8e\x3b\x68\x7d\xed\xb6\x47\x83\x81\x35\x29\x04\x1e\xf3\x7e\x9b\x5e\xb0\x0c\xe3\xdd\x5d\xe7\x4a\xa6\x0f\xaf\x8f\x0c\x6c\x77\x79\xc7\xfb\xef\x03\xf7\xa0\x08\xdb\x1c\x8f\x1e\x14\x11\x27\x19\xcc\xfd\x61\x21\xc3\xd1\xc4\x6a\x9b\x0f\x8a\x49\xd2\xb9\x17\x87\xdf\x79\x59\x08\x67\x7b\x48\xd6\xc8\xee\xbd\x27\xc8\x78\xb5\xf4\xd2\xab\x20\xb9\x61\x84\xcc\xd8\x83\x21\x09\x18\x76\x20\xa2\x10\xe3\x2e\x53\xe9\x5d\xc1\x00\x32\x19\x2b\x88\x37\xcc\x61\xeb\xac\x6f\xba\x30\xf6\x8e\xdb\xb7\x86\xa6\x7b\x66\x9b\xad\x67\x1b\xcb\x35\x5e\x01\x58\x98\xfd\x85\x31\xb6\x47\x93\x51\x7b\xd4\xc7\xa7\x45\x96\xad\x8c\xce\x68\xd0\xb2\x86\x78\x63\x2f\x5e\x24\x2a\x63\x47\x73\xa7\x36\x75\xf9\xe8\x51\xd9\xff\x13\x75\xb2\xb7\xf7\xd1\x23\xdd\x1d\x2f\x1f\x3d\x3a\x9f\x4c\xc6\xee\x78\x64\x4f\x3e\x51\x7b\x06\xbf\xb4\x3a\x1d\x38\xbf\xb1\xf9\x00\x01\x47\x64\xdd\xf0\xcf\x50\xf1\x06\x1c\xe7\x1c\x86\xe1\x65\x39\x80\xb8\x59\xc8\x98\xa0\x16\xde\xb5\x17\x46\xf4\xd9\xe8\x58\x0e\x6f\x83\xba\x6d\x9d\xee\xc5\x42\x72\x1c\x81\x71\x88\xcb\x3c\x8c\x32\x60\x47\x3d\xf4\x96\x28\xa0\x40\x4a\xd3\x70\x26\x2d\x7b\x42\x43\x5d\x98\xc8\x73\x0e\x43\x5a\x02\x35\x15\xcb\x39\x3c\xac\x2c\xa6\xdd\x19\x52\x2c\x88\x49\x17\x45\x70\x5a\x26\x01\xd4\xd1\xed\x32\x84\x45\x24\xd2\x42\xca\xa5\xd9\xa3\xe9\x04\x16\xd8\x1f\xf5\x2a\x2b\xec\xc9\x58\xa6\x88\x1b\x42\x65\x72\xa5\x4e\xd0\xf2\xff\x84\x1f\x40\xb9\xd9\x62\x2f\x4b\xf6\xe6\x08\xa6\x7b\x7e\xae\xb2\x64\xb9\x47\xa0\x2b\xee\xd0\xe4\x76\xe1\xcb\x34\x13\x0d\xdf\x3b\xcd\x52\xc4\x93\x46\x90\xa7\x6c\x30\xa7\x4f\x9f\x3c\xde\x5f\xec\x2f\xf7\x95\x68\x90\x56\x4e\x97\x6b\xfa\x69\xca\x5b\x6f\xb9\x8a\x64\x13\xde\x67\x7c\x0e\x39\xa3\x54\xcc\xd2\x64\x29\x3c\xd1\x5c\xcd\x6e\xc5\x2c\x8c\x38\x2e\x24\x69\x06\x23\xe3\x2f\xc0\x4e\xbc\x08\xe3\x80\xa2\x3e\x4d\x16\xce\x42\x5f\xaf\x95\x62\xc7\xa3\x20\x81\x14\x52\xc3\x0c\xf6\x2a\x33\x0a\x84\x7a\x3c\x0f\x2c\x02\xa2\xb8\x92\xeb\x4f\xf4\xbe\x92\x15\x4c\x4e\x45\x62\x75\xe5\xab\x83\x43\xd1\x00\x78\x24\x95\x67\x6f\x24\x79\x56\xbc\xc9\xa5\x68\xc4\x09\x86\xa9\xff\xd9\x28\xf4\x2c\x07\xd1\x07\x45\x0f\x81\x54\x46\xdb\x84\x52\x29\x91\x01\xee\x2a\x84\x7b\xe5\x34\xc6\x33\xf3\xe5\xbd\x1d\x0a\x89\x98\x7e\xba\x5a\xc1\x4e\x22\xe8\x3a\x22\xbf\xcc\x24\x10\xa4\x4d\x79\x71\x00\x14\x00\xb7\xaf\x71\x23\x7d\xa1\x7b\x25\x2d\x31\x04\x68\x25\x63\x05\x58\x94\x15\xa9\x59\xde\x4a\x3f\x07\xc0\x64\x73\x08\x03\x2e\x7b\xcc\xb8\x45\x01\x5d\xa7\xdb\x88\x20\x26\xb7\xd7\x93\xf6\xbe\xb1\xc6\x42\xe5\x2b\x82\xb5\x74\x55\x6e\xdb\x9a\x50\x1f\x8b\x09\xe3\xb9\x4e\xc7\x33\xb6\xe9\xb8\x11\x25\xf3\x39\xd4\xc8\x51\xb1\x2e\x7c\x2f\xa6\x1c\x55\x5b\x24\x4b\xa9\xf3\x68\x91\x00\x6a\x46\xbf\xc5\xf9\x9f\xa2\x08\xe1\x40\x3d\xe0\xf3\x81\x97\x79\x48\x90\xf2\xa2\x92\x8b\x97\x6b\xf5\x26\xe2\x6c\x0c\x6b\x9a\xa7\x52\x69\x49\x68\x0c\x33\x79\x84\x0f\x61\xf6\xb1\xa2\xd4\x9e\x22\x8f\x26\x94\xf5\x3b\x67\x65\xb2\xe5\xb1\xc6\xf9\xc8\x21\x57\x3a\x38\x7c\xd2\xdc\xc7\xff\x0f\x4e\x8e\x8e\xf6\x1f\x1b\x05\x6f\x20\x93\x36\x0a\x12\x90\x26\x49\x66\x8c\x5b\x8e\xf3\xa2\xc3\xb8\x74\x69\xa2\xca\xb4\x71\xb4\xae\x0b\x59\x72\x04\xed\x94\xb4\xb2\x54\xbe\xc9\xc3\xb4\xd8\x22\x3c\x3c\x9c\xad\x1b\xb3\x3c\x8a\x6a\xf0\xe4\xfe\x86\x1f\xe8\xfe\xa5\xd8\x72\xfd\xac\xd3\x5a\x16\x06\x97\x35\x43\x2b\x44\x10\x0a\xec\x6a\xcd\xe0\x12\xa0\x14\x59\x87\x22\xa2\x9f\xa7\xc8\x54\x17\x86\x35\x84\x1e\x91\xa2\xfb\xa3\xf6\xb3\x8a\x4a\x3e\xf8\x40\xf3\x2c\x4d\xc3\x26\x23\xf1\xcc\x34\xc7\xe2\xe5\x68\x6a\x0b\xde\x61\xa7\x35\x69\x09\xa7\xd5\x35\x3f\xf8\xc0\x70\xcc\xb6\x6d\x4e\x5c\xd8\x22\x04\x7c\xf0\xe1\x97\xdd\x8e\xf9\xc2\xc6\x7f\xff\xff\xf7\x1e\x91\x45\xe4\x59\x42\xca\x84\xd5\xa7\x72\x29\x39\x41\x04\x1e\x5c\x03\x61\xc4\x1a\x82\x1a\x0c\xcc\xc1\x19\xa2\x4a\xa7\xf5\xd2\xc1\xf8\x27\x46\x7b\x34\x7a\x66\x99\xcc\xa6\x2a\xc0\xba\xde\x8d\x54\xa4\xda\xe2\xf3\x66\x5c\xb5\x4f\x18\xfb\xa9\x0c\x42\x8d\x8d\x4d\x5c\x47\x91\x1b\x27\xb7\x6b\xe1\xe5\xc0\x3a\xce\x4a\xdb\x5c\x48\x2f\xc0\x42\x98\x19\x16\xb9\x97\x5f\x90\x20\x11\x3e\x1d\xe2\x3f\xa3\xaf\x5f\xba\xad\xe9\xe4\xdc\x1c\xc2\xcc\x61\xea\xa3\x0d\xc3\xfb\xba\xf1\xc2\x3c\xa3\x4f\x0d\x6a\x28\x12\x0c\xcc\xe5\xc2\x68\xb5\x27\xd6\x73\x13\x19\xbf\x03\x9a\x43\x4f\x03\x6b\x88\x98\x49\x1b\x3b\x78\xba\x0f\xe1\xa0\x63\xae\x36\x8b\x9f\xec\x04\x9f\xe5\xd5\x80\x43\x50\x40\xf2\x93\x78\x16\xa6\x4b\x21\x1b\x4b\xa4\x0a\x76\x8f\x54\xce\x43\x95\xe9\x58\x09\x99\x3d\xcb\xa1\xb0\x6c\x22\x3b\xf5\x5d\xa6\xbf\xf6\xa0\xa2\xca\x4e\x82\x74\xce\xb9\x26\x8a\x92\x9b\x62\x30\x26\x20\x6b\x61\x83\x10\x00\x8d\x43\x82\xef\x27\x79\x9c\xb1\x71\x6e\x63\x3e\x8b\xb7\x79\xff\x15\xa1\xbc\xc4\x25\x42\x8e\x50\xe1\x9c\xb3\x08\x96\x7a\x1d\x82\x57\x7a\xf1\x3a\x5b\xc0\x9b\x9b\x06\xb1\x3e\x0b\xac\xcc\xb1\x7a\x43\x68\xfa\xb9\x65\xbe\xa8\x48\x68\x7b\x3e\x02\x0c\xf2\x5f\xe6\xa5\xcc\x18\x43\x9f\x52\x63\x19\x22\xda\xad\xf6\xb9\xe9\xb6\xc0\x41\x5b\x76\x65\xd4\x80\x30\x20\x8e\x32\x2b\x34\x59\xf6\x27\x4e\xd2\x7d\xe9\x12\x06\xd5\xee\x14\xe6\x03\x99\x61\xd4\x09\xe7\x7c\xca\xe4\x20\xe8\x8b\xfc\x92\xb2\x08\xb9\x06\x68\x9c\x4e\x52\x9a\x20\xee\x1d\x3c\x3e\x2e\x65\x3e\x64\x0b\x9b\x49\x7e\xaa\xef\xe8\xa7\xa0\xeb\x24\xac\x0d\xec\xde\xbf\x12\x80\x9f\x09\x25\x02\x36\x90\xfc\x0e\xcc\x00\x8b\x83\xce\x53\x84\x89\x55\xa2\xc3\x62\xb6\x5e\x6d\x73\x30\x6c\xc5\x1a\x4c\x07\xe4\x6d\x00\xf6\x1b\x00\x75\x6e\xee\x78\x6e\x41\x97\x7c\x6f\x05\xba\xee\x89\x6b\x2f\x0a\x03\x6d\xf3\xef\x99\xce\x06\xea\xf1\x04\xde\x0e\x19\x94\x86\xa9\x68\x82\x3b\xb0\xed\x21\x33\x90\xa5\x50\x26\x43\x16\x08\x41\xff\x89\xc5\x65\x49\x42\x4c\x0e\xe1\xbc\x34\xfc\x66\xb1\x0d\x17\x3d\x5d\xda\x86\xba\x30\xcc\xce\xe1\xf1\xf1\xc1\x67\x44\x3c\x8e\x1f\x1b\x66\xbb\xe3\xb4\x84\x28\xde\x86\x13\x7b\x2a\xf8\xed\x60\xff\xe9\x13\x63\xd0\x36\x45\xf1\xfa\x64\xff\xd0\x18\xf8\x3b\xaf\x36\x0f\xd4\x9d\x0f\x3f\x35\x3a\xbb\xaf\xc6\xab\x1b\x79\xb9\x48\x92\x2b\x0a\xf4\xe7\xf8\x15\x99\xa7\xae\x76\x2a\x14\xe3\x9e\xb2\x83\xeb\xa6\x28\x24\x0e\x95\x85\x4b\x49\x59\x18\x36\x8c\xb0\x08\xcc\x95\xd1\x31\xc9\x2f\x6d\x77\x62\x0d\x4c\x70\x1e\xa6\xed\x88\x64\xec\x3f\x61\xcc\xc1\x53\x56\xf8\x04\x61\xe9\x3c\xb3\xc6\xee\xa4\xef\xb8\x18\x47\xe5\xeb\x56\x21\x5b\x52\xbc\x08\x15\xd7\x5b\x61\x0c\x55\x2c\xb5\x52\x30\xab\x84\x27\x68\x32\x7c\xb7\xf4\x20\x22\x8c\xe4\x0c\xea\xaa\x55\xd5\xa9\x88\x3d\xcb\x67\x33\xce\xec\xb4\x45\x92\x0e\x6d\xc7\xb1\x8c\xea\x50\x97\x5c\x15\xf5\x58\xc8\x99\xbc\xa8\x57\x83\x24\xfe\x18\x64\x23\xc6\x26\x6e\x88\x91\xf3\x47\x70\x47\x73\xd8\x71\xcf\xa6\xdd\x2e\x51\x3b\x73\xa8\x01\xa2\x75\x53\x6c\x44\xaa\x01\x5f\x58\x6b\xd2\xce\x01\x48\x97\xcb\xce\xf4\xec\x67\x66\x7b\xc2\x34\xb9\x2c\x9d\x3f\x51\xa5\x83\x6a\x76\x4a\xe4\x70\xc9\x9e\xa7\x96\xd9\xaa\x39\xa7\x67\xf2\xba\x93\x63\xe8\xfc\x73\xf1\xd5\x57\xc5\x87\x37\x6f\xb8\xf5\x90\x30\x1e\x26\x99\xac\xd3\x82\x99\x7d\x10\x13\x93\x50\x88\xf6\x8a\xda\xa7\x8f\x8f\x91\x23\x9d\xc1\x64\xec\xa0\x25\x8a\x88\x11\x90\xa9\x36\x11\x8e\xc8\x51\x98\x05\x43\x07\x54\xe0\xf3\x58\x4c\x44\xfb\x4f\x25\xd5\x6b\x10\x84\x6d\x10\x1b\xb2\xbb\x6d\xf1\xf8\xd3\xfd\xcf\x9a\xc2\xd2\x13\x15\x6c\xba\x60\x29\x6a\x2b\x08\x10\xf1\x44\x5e\x74\x83\x94\xb5\x99\xaf\xe4\x01\x15\x42\x7d\x6e\xf6\x47\xc4\xf4\xb4\x6b\x69\x82\x4f\xa4\x95\x33\x0c\x79\x4d\x10\x92\xbe\x90\x82\x9a\x1b\x5f\xe6\x31\x2c\xa5\xcd\xe4\x6d\x3b\x80\x5c\x75\x57\xe2\xce\x89\x01\x73\x5b\xb5\x46\x18\x5f\x62\x2d\xe8\xe7\xd2\x82\x8a\x4c\xb8\x0d\x31\x9a\x3f\xf0\x0e\xab\xe4\x37\xa9\x6e\xba\x29\x46\x08\xf7\x5c\x5f\x20\x6c\x2b\x9e\x59\xc9\x68\xd6\xa0\xb8\x0e\xbc\x2a\x03\x95\x36\xf2\x8d\x81\xeb\x34\x20\xfc\x28\xc4\xae\xaa\x1d\x89\x04\xb9\x44\x5e\xad\x2e\x45\xcb\x6d\x21\x71\x0f\xa1\xd5\x06\xfe\x10\xa3\x2d\x7a\x6c\x29\x2d\x9b\x98\x26\xfe\x41\x80\x38\x09\x7a\x48\x1a\x3d\x3e\x3a\x3c\x6c\x8a\x09\x6d\xa2\x60\x8b\xdf\x52\x7e\xc2\xa3\x64\xc3\xdd\x74\xc6\x0e\x69\xff\xaf\x6b\x64\xe1\x35\xf1\x05\x7f\xfe\xb2\x52\x5c\xfc\xfe\x6b\xa1\x1d\x54\x18\x5d\x7b\x34\x60\x02\x37\xe0\x55\x6c\x89\x02\xa7\xcf\x95\xa7\xd4\x4d\x92\x06\x05\xeb\xdb\x12\x3e\xe3\x95\x4f\xe9\x6d\x87\x7c\xca\x25\x7c\x5f\x73\x3c\x78\x55\x8d\xd7\x41\xad\xdc\xf3\xce\x89\x50\xd1\xd9\x68\x75\x10\x9b\x99\x73\xe8\x96\x92\xf2\x15\xdf\x0b\x1e\xd9\x6b\xc3\x3b\x11\xa8\x11\xeb\x2b\x51\x6c\x47\xe2\xe3\x7d\x30\x3d\x48\x7a\xde\xa2\xf4\xf8\x78\xbf\x14\xa4\xd7\xa2\x99\x63\x65\x2d\x10\x10\x4b\x5f\x33\xa5\x84\x40\xd4\xd8\x61\x14\x0f\x38\x01\x3b\xc9\xb0\xf1\xab\xd3\xcc\x5f\xd5\xe9\xe3\xe9\xc9\xe3\xa3\x27\x9f\xd5\x4b\x40\x4e\x97\x9e\xef\xa5\xb0\xda\xe0\xf2\x74\xbf\xbe\x4a\x92\x88\xd3\xc2\x29\x22\x4b\x3d\x0c\x22\xe9\x16\x41\xf7\x54\x13\x9e\x72\xe6\x13\xf1\x7a\x4b\xad\x0f\x0e\x0e\x0f\x0e\x5e\x17\xae\xc6\x24\x4b\x51\xb9\x7f\x3f\xa6\x54\xc3\x6c\xb1\xd5\xd0\x16\x6c\xff\x3e\x5c\x91\xa5\x9f\x5b\x9d\x5d\x60\xc7\x69\x72\x1d\x12\x29\x64\xc6\x35\x87\xeb\xd1\xfe\x95\x5e\x1e\xba\x9c\xb0\x4f\x2d\xbc\x6b\xd2\xfd\xba\xec\xb5\x96\x74\xda\x47\xd3\x23\x9a\xe9\x15\x6e\x0b\x2a\x50\xfc\xe6\xbc\x29\x5e\x33\x0d\x2f\xbe\xaa\xd7\xff\x67\x28\xd2\x86\x4f\xc0\x84\x1b\xf8\x6d\x04\x29\x65\xb7\x3d\x6e\x14\x81\x8a\xcb\x05\x23\xfb\x23\x56\x96\x2b\xa3\x3a\xe5\xa4\x9c\xef\xcb\x72\x8d\x6e\x46\x31\xed\xf5\x06\x26\xb7\x38\x54\x2d\x0a\x8a\x72\x27\x98\xd3\x29\xb6\xec\x23\xf3\x86\x52\x53\xe8\x82\xa1\x17\xe1\x28\x74\xa3\xf0\x4a\xba\x9a\x69\x61\x84\xa5\x93\x11\x05\x9c\x12\x2f\xd8\x2c\x73\xb3\xc2\x9c\xab\x81\x4e\x87\x0d\x2d\x10\x75\xc6\xd4\x36\xdf\xa7\x3a\x0a\x95\xbb\x9e\x7f\x67\x2c\x93\x99\x82\xe2\x10\xed\xd6\x52\x4a\x96\xb3\x5d\x3a\xbc\x87\x70\xdc\xb8\xd0\x8e\x90\xa7\xc8\x13\xfb\x46\xaf\xed\x96\xde\xc3\x9c\x00\x42\xf4\x87\xad\x94\x28\x9c\x49\x96\x73\xcf\x70\xc7\x74\x1c\x2a\x1f\xfa\x56\xd7\xdc\x1d\x6f\xbc\x2a\x68\x2f\x59\xf5\x84\x52\x5e\xe4\xf9\xc4\xb0\x4a\x3a\xcc\x80\x6f\x2b\x45\x1d\xb3\xb5\x7d\xbf\x01\xe7\xca\xef\xd8\x77\xf1\xdd\xa0\x53\x20\xab\x4d\xf3\x14\xa9\x58\x13\x69\x77\x3a\xee\x8f\x5a\x1d\xb7\x5a\x1d\x6a\x06\xae\xf8\x80\x3b\x8c\xa5\x92\xc5\x41\x24\xc5\x50\x54\xc1\x09\x1a\x6a\x41\x9e\xa8\x45\x9e\xd4\xd0\x09\x33\x7b\x45\x64\x2e\xc9\xbb\x42\xc1\xec\x63\xdf\xa4\x67\xcd\xb2\x41\xb2\xfd\xb8\x39\x4f\x75\x07\x66\xda\xfa\x71\xcf\xe8\xd9\xc5\x52\x1c\xd4\x92\xbc\xc2\xb2\xdb\x26\x2d\x96\x5d\x2a\x27\x78\x5e\x96\x21\x3e\x20\x85\x67\x17\x95\x43\xb1\x6d\xab\xe2\x14\x2b\xd9\x1e\x40\x07\x8a\x23\x71\x45\x40\xbe\x26\x75\xbf\x2e\x0c\x61\xab\xfd\x31\x9d\x6c\x50\xb2\xab\x08\xb9\x33\x50\xc3\xb3\xfd\xfc\x7a\xa7\xaa\xae\x7c\xa0\xa3\xa8\x58\x12\x34\x4b\xaa\x37\xb8\xce\x22\x02\x0d\xde\xae\x0a\x47\x0b\x97\xe0\x77\x7b\xdf\xae\xe4\xfc\x0f\xf5\xe3\x2a\x9e\x1b\xa8\xbb\x47\x2f\xcc\x0e\x1f\x31\x50\xf5\x77\x6f\x27\x4a\x3d\xb7\xba\x36\x40\xe2\x66\xae\x48\xf1\x65\x77\xad\x47\x87\x83\x33\x83\xce\x9a\xa9\x24\x80\xa4\x4f\x8b\x61\xf1\x86\x7b\xd2\x18\xc5\xec\x27\x5f\x45\x89\x77\x07\x24\x70\x4d\x1a\x4d\x89\xd7\x29\x0e\xa9\xc9\x96\x09\x6c\x67\x25\x7d\xe4\x75\xa9\x0f\x84\x8a\xbc\x48\xc0\xd1\xb1\xc4\x5a\x20\xfc\xac\xe8\x38\x88\x40\x91\x77\x10\x44\x56\x46\x10\x3f\x2a\x85\x20\x3b\x15\x0c\x0b\xdd\xe1\x68\x74\x1c\x4f\x6a\xa3\xbb\x8a\x76\x5d\x4c\xe3\xf0\xb6\xe3\x11\xfd\xb3\xf3\xcb\x75\xf1\xd4\x6d\x3f\x3d\x3c\x2c\x7f\xbf\xd1\x0f\xc7\xfb\xf5\x52\xf4\xe6\x41\x7f\x3a\x3a\x3a\xfa\x6c\xf3\x30\xf4\xe2\xa4\x2e\x9e\x85\x28\x83\x24\xe8\x93\x93\x21\xbf\x17\x3f\x03\x70\xba\x70\xf3\xec\xa7\x09\x27\x40\x7e\xa5\x51\x45\x72\x64\x65\x56\xb9\xba\x77\x49\x75\x42\x05\x06\x25\x65\x69\xef\xf3\x24\xf2\x50\xf4\x26\xe9\x7c\x6f\x75\x35\xdf\x23\xf4\xf6\x3e\xc4\x53\x03\x61\x57\x65\x1e\x59\x49\x77\x64\x0f\x5a\x3a\x97\x45\xc9\x5c\x5f\xea\x6c\x4f\xce\xca\x9c\x46\xfd\x13\x9d\xcc\xca\xa4\x46\xd9\x98\x7e\x89\x2d\x6b\xdf\x2f\x4f\xb7\xee\xb8\x7f\x39\xb6\x64\x66\x60\xbd\x1e\x29\x42\xc9\x95\xc7\x67\xb4\x4b\xf4\x0c\xc1\x72\xf8\xb0\xb7\xb4\xcd\x72\x58\x9d\x8d\xa4\x66\x14\xa7\x4c\x45\xeb\xff\x66\xa9\x71\xb7\xca\xe0\x08\x5a\x6e\x7c\x92\x22\xf4\xd1\x36\x3b\xf2\x32\x9f\xd3\x83\x05\xec\xe9\xf7\x85\x97\xf2\xfe\xcd\x34\x4d\x52\x7a\x68\xa7\x21\x9d\xe4\xdc\xcd\xee\x5a\x82\xd1\x47\x29\x4e\x2c\x87\x5f\x8d\x92\xe9\x94\xd8\xf0\xd6\xf5\x19\x07\xa9\xa1\x59\xb4\x5f\x94\xc3\x36\x03\x18\x8c\xbb\xbd\xa9\x71\xdb\xf5\x73\x4d\x37\x75\xdc\x51\x74\xc6\x94\xc0\x2c\x60\xdd\xe8\x2a\xd2\x24\xc3\xf3\x23\x75\x43\x16\xc8\x2e\x98\x50\x60\xa0\x42\xa5\xa0\x16\x9f\xbc\x9f\xaf\xfa\xa3\x9e\x6b\x8f\x26\x9a\x34\x17\xa1\x8a\x1c\x99\x2f\x3e\xb6\xde\x4c\xe5\x0e\xb4\x48\xab\xd9\x91\xc1\x98\xee\x6b\x67\xa6\x73\x7c\xa7\xc4\x99\x91\xde\x04\x12\xb5\x08\x67\xd9\x43\x72\x0e\x9f\x82\xf4\x78\x31\x04\x8a\x2f\xbe\xc0\x5b\x9d\xca\xf6\x4a\x88\x71\x9d\x73\xab\xcb\x97\x0a\x4f\x39\x07\xce\x29\x0e\xf2\xae\x03\xf0\xe4\xf5\xfb\xfb\xea\xb4\xac\xfe\xcb\xf7\x76\x66\xde\xae\xc2\x94\x63\x07\x8a\x2b\x2c\x87\x04\xd0\x5a\x1e\x05\x32\x92\x74\x22\x35\xa3\xe3\x87\x25\x96\x4d\x3d\x76\xe1\x7a\xc2\x8b\xd9\x9c\x1a\x56\xd4\x1c\xdf\xa7\xe3\xb8\xaa\x35\x5b\x16\x04\x57\xb3\x5b\x8a\x66\xfa\x62\xb4\xc0\x63\x89\xa4\x8e\xf8\x7b\x0f\x15\xb1\x4d\x50\xa1\x21\x2a\x5f\x17\xf9\x7c\xe0\x54\x2f\x42\x26\xfa\x26\x35\xdd\xc8\xe6\x1a\xb0\xc2\xa4\x21\x24\xc2\x74\x0f\x49\xad\x92\x9b\xc2\x2d\xc0\x0d\xc9\xe4\x73\x44\x47\xed\xfb\x79\xb0\xba\x63\xf7\xd4\xa5\x7a\xb9\x85\x77\x3e\x0c\xa9\x10\xf7\xe2\x7a\x6a\x73\x64\xcc\x91\xe4\x0e\x4a\xd4\x58\x45\xe9\xa1\x03\x80\xdd\x05\x74\x42\x6f\x1e\x63\xba\xd0\x2f\xa1\x2b\x4a\x54\x22\x1f\xb5\xca\x61\xc1\x83\x1d\xef\x9c\x1e\x14\xc4\xff\x77\x2d\xbd\x58\xbb\x92\xb8\xef\xf6\xda\x20\xd9\x66\xe7\x22\xe6\xbd\xaa\x1d\x54\x2b\xbe\x5a\xbd\x76\xb8\xf3\x7e\x41\x3a\x31\xe9\x10\xc8\xa9\xc0\xb6\x09\xbb\x77\xa1\xdb\xde\x36\x6c\xe1\xdb\xbd\x75\x10\x3b\x17\x00\x46\xc7\xb6\xf8\x9a\x8e\xa2\xab\x47\xa7\x6d\xb0\x8f\x5b\x24\x15\xbd\xbc\x13\xbe\x3f\x38\xa1\x7f\xbe\xdc\xdc\x4d\xf2\x29\xe5\x1f\x14\x17\xfc\xa7\x79\x36\x7b\x6a\x90\xd5\xe8\x6a\x33\x4d\xaa\x77\xa5\x69\x1e\xc7\x14\x67\xa8\x99\xcf\xc3\x38\xf3\x87\x49\x10\xf2\x5f\x2b\x34\x2b\xc7\x49\x85\x27\xda\x79\x5c\xed\xcd\xa6\xcb\x37\x3e\xc8\x5d\x29\x98\x11\xff\x79\x42\x6b\xe2\xf2\xc9\xc8\x96\x98\xd1\xfd\x52\xc0\x89\x25\xa4\xd8\xac\xf4\x4a\x9a\x39\x37\xba\x45\xe3\x85\xe1\xb4\xcf\xcd\xce\x94\xe9\xd7\x97\xda\xd1\x0e\x16\x06\x6b\x6a\xf3\x37\x08\x0b\xe9\x45\x74\xf2\x49\xa7\xa2\x85\x14\xba\xcd\x76\x75\xbb\xcb\xed\xf7\x09\x3a\xfc\x94\xae\xad\x5a\xe9\x3c\xd7\x3c\x90\x7c\x99\xf3\x1e\x6c\xe4\x63\x94\x1c\x62\xa6\xfc\xab\x8f\x4b\x58\x6b\x8d\x46\x1e\xa7\x44\xa2\x18\xa7\x46\x23\xf3\xe6\x8a\xd2\x25\x65\x72\xce\xf7\x49\xbc\xc9\xe8\x61\xd6\x50\xfe\x92\xd9\x6b\x90\xf8\x8a\x1b\x48\xda\xde\x41\xf3\x49\xf3\xd8\x68\xd9\x3d\x0a\x3d\x06\x33\x67\x3a\xcb\xad\xfc\x45\x05\xdf\xac\x91\x99\x97\x88\xf0\xfa\x5d\xde\x11\x7d\x03\x26\x77\x00\x65\x3d\xdc\xbf\x3d\xe3\x15\x66\xbe\xe0\x70\xd7\xb3\x26\x6e\xc7\xea\x76\x77\x83\xfb\xc3\x00\xcc\xfd\xea\xf6\xbd\x39\x19\xa0\x82\x7f\x60\xf7\x94\xb0\x7e\x97\xdd\xcf\xfd\x62\xef\x28\x88\x36\xdb\x7f\x15\x1e\x3c\xa5\xe8\xda\x1a\x72\x83\x8c\x1b\x53\xa7\xfe\xdd\xa2\xd1\x1e\xd2\xbf\xe7\xcf\xea\x81\x6c\x74\xcc\xfa\x2c\x6d\x74\xed\x7a\x1c\x35\x86\xfd\x7a\x74\xdd\xe8\x3f\xaf\xa7\x79\xc3\x9e\xd6\xbf\xf5\x1a\x3f\x1b\xd7\xa5\x6a\x98\x4e\x7d\x95\x35\xce\xec\xfa\x2a\x6a\x8c\xfb\xf5\xcb\x79\xe3\xac\x57\xc7\xa4\xd6\x84\x2f\xd8\x48\xb6\x89\xe8\x1c\xaa\x45\xfd\xb7\xff\xf4\xf3\xdf\xfc\xfb\x9f\xfe\xe6\x57\xff\xf8\xe3\x9f\xff\x71\xfd\xb7\xbf\xfe\xfe\xbf\xfe\xfe\xcf\x8a\x97\x8e\xcc\x33\xe5\x2f\xea\xdd\xd4\x8b\x7f\xf8\x3b\x2f\x54\xf5\xa1\x44\x4d\x0f\x6e\x16\xa8\x7a\xdf\xcb\xae\x43\xf9\x1f\x7f\x93\xd7\xdf\xfe\xf5\xbb\x3f\x7a\xf7\xfd\xbb\xef\xdf\xfe\xeb\xdb\x5f\xbd\xfd\x75\xfd\xc7\xbf\xf8\xdb\x1f\xff\xf2\x1f\xfe\xf3\x17\x7f\x55\x37\xd5\xca\xfb\xe1\x97\x49\x54\x1f\x83\xa6\xe6\xf3\xfc\x87\x5f\x28\x90\x19\x71\x96\x7a\x2a\xa4\xc6\x48\x5d\x85\xf5\xb7\xbf\x7c\xf7\x27\x6f\xff\xed\xed\xbf\xbc\xfd\xe7\x77\x3f\xd7\x32\xea\x56\xe6\x45\x21\x51\x47\x4d\xbd\x02\x56\x03\x39\x01\x11\x41\xd4\x72\x57\x08\x68\x0c\x14\x85\x0a\x49\x54\xf1\xc2\x60\xa4\x18\x31\x83\xe1\xc2\xe3\x77\x0b\x83\x31\xe3\xc7\xc6\xe4\x85\xc1\xd8\xf1\x9f\x04\x19\x0c\x20\xb9\x5e\x6a\x30\x8a\x78\x8c\x23\x83\xa1\xa4\x3f\x61\xb8\x36\x18\x4f\xba\x7b\xcc\x0d\x06\x15\x8f\xdf\x7a\x06\x23\x4b\xb3\x28\x83\xe1\xc5\x23\xff\x1a\x0c\x33\xbd\x45\x06\x63\x4d\x7f\x51\x34\x37\x18\x70\xaa\x45\x32\x68\x36\xa1\x08\x06\xaf\x3b\x1f\xbd\x70\xbb\x60\xab\xe0\x6e\x67\xb6\xbe\x6e\xad\x64\x2a\x67\x01\x9a\x47\xf1\x56\xd7\xf2\x77\xf9\x32\xdf\xf4\x93\x35\xce\x13\xbe\x27\x62\xfa\x9c\x20\xb1\xef\xc8\xa5\x48\xab\xef\x49\xd8\x13\xfe\x3b\x00\x00\xff\xff\x26\xbc\x11\xb9\x12\x26\x00\x00") func confAppIniBytes() ([]byte, error) { return bindataRead( @@ -299,7 +299,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 9420, mode: os.FileMode(420), modTime: time.Unix(1445760015, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 9746, mode: os.FileMode(420), modTime: time.Unix(1447884920, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4304,7 +4304,7 @@ func confLicenseMozillaPublicLicense20() (*asset, error) { return a, nil } -var _confLocaleTranslators = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x54\x92\xcf\x6e\xd3\x40\x10\xc6\xef\x7e\x8a\x91\x7a\x66\x55\x21\x21\x81\x64\x59\x76\x83\x28\xa5\x49\x41\x4a\x11\xea\x71\x62\x8f\xbd\x83\xf7\x4f\xd8\x5d\xa7\x49\x6f\x3c\x09\xcf\xd0\x0b\xe2\xde\xf6\xbd\x18\x3b\x0d\x0d\x07\x5b\x33\x3f\xcf\xce\xcc\xf7\x79\x4f\xe0\x5a\x73\x84\x96\x0d\x81\xe1\x98\x22\xa0\x31\xf0\xe5\xeb\xd9\xfc\x62\x06\xec\x1a\xde\x70\x33\xa0\x89\xa0\x71\xc3\xae\x83\xda\xbb\x14\x78\x35\x24\x6a\xa6\x98\x5c\x82\xe4\x21\x69\x82\x14\xd0\x45\x83\x89\xbd\x53\xd9\x09\x7c\x0e\x0d\x05\xf0\x2d\x38\xb4\x04\x32\xc3\x12\x3a\x69\x61\x28\x46\x95\x65\x55\xcf\x9a\x83\x87\x9b\xea\xbc\x5a\x56\x97\x17\x90\xef\xb0\xeb\x76\x29\x51\x28\xad\xb7\x8c\x1d\xa9\xda\xdb\x22\xab\x0c\x6d\xd1\x8d\xbd\x96\x89\xd8\xe9\x87\xdf\xad\xc4\x79\x2f\xc3\xb1\x4f\xa5\xd9\xbe\x8a\xaa\xa1\x7f\x75\x81\x60\x81\x9d\xf3\x90\xe3\x01\x28\xbb\xb2\x65\x67\x91\xcd\xbe\xe3\x19\x86\xc7\xfb\xa7\x5f\x50\x85\x06\xe1\xe6\xf1\xde\x58\xbc\x93\x72\xc9\x76\x3c\xc6\x9d\x2c\x1c\x8e\x0f\xcc\x74\x10\x6b\xfc\x5a\xc3\x25\xc7\x96\x4c\x03\x79\x7d\x40\xaa\xdf\xa3\xe3\xfa\xf7\x22\x94\x0c\x2c\xd7\xc4\xb5\xa6\x90\x20\x6f\x26\x52\xc6\x03\x51\x6b\x53\x64\xe7\x81\x3a\x2f\xb2\xd0\x25\x37\x4a\xea\x1a\xda\x94\x86\x37\x34\xe9\xf9\x38\xb0\x65\x07\xdf\x50\x5c\xcf\x6f\xe5\xad\xed\xeb\xd3\xd3\x77\xa5\xf6\xe9\x79\x92\xfa\xbe\x2e\x32\x36\xbd\x68\xa5\x11\x15\xd9\xb5\xf6\x16\x23\x7c\x40\x37\x3a\x3d\xf5\xf4\x5d\x54\x69\xc2\x65\x7b\xc0\x0a\x53\x91\x3d\xfd\x1c\x7a\x8c\x77\xf0\x09\x1d\x5c\x31\x59\x1e\xcb\xcd\xc4\x4a\xb7\xcf\xa7\x2d\xe7\xd8\x06\xee\xa3\x7c\xdb\x07\xc7\x42\xe7\x43\x3d\xfe\x95\xb5\xd4\xdf\xc6\x9e\xc7\xf3\x75\x19\x5f\x80\x6a\x43\x91\x2d\xb8\x1b\xc4\x8d\x46\x2e\x18\xc2\x2c\x0c\xe2\xb5\x9d\x50\x69\xeb\xb0\x55\x56\xb4\x2e\x30\x48\xa3\x5a\xb3\x31\xe3\x16\x56\xd2\x32\x3e\xa7\x8a\x65\xd0\xc2\x07\xb9\x6a\xb0\x7c\xf8\x13\xc8\x45\x89\xf2\xde\xb0\x7d\xfb\x9f\xeb\x57\x98\x44\x4a\x65\x56\xc3\x8f\x81\x82\x3c\x90\xbb\x11\xe1\x0b\x79\x73\x54\xff\x37\x00\x00\xff\xff\x1c\xd1\x3b\x45\xfa\x02\x00\x00") +var _confLocaleTranslators = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x6c\x54\xcd\x4e\x1b\x31\x10\xbe\xe7\x29\x46\xe2\x5c\x84\x5a\x55\x2d\xd2\x0a\x29\x40\xf9\x0f\x54\x4a\x4a\xc5\x71\xb2\xeb\x5d\x0f\xeb\x9f\x60\x7b\xf3\x77\xeb\x93\xf4\x19\xb8\x54\xbd\x03\xef\xd5\x99\xdd\x10\x50\x93\x03\xec\xf8\xf3\x37\x9e\xf1\x7c\x9f\xb3\x03\x23\x4d\x11\x4a\x32\x0a\x0c\xc5\x14\x01\x8d\x81\xef\x3f\x0e\xaf\xce\x8f\x80\x5c\x41\x53\x2a\x1a\x34\x11\x34\x4e\xc9\x55\x90\x7b\x97\x02\x8d\x9b\xa4\x8a\x36\x56\x2e\x41\xf2\x90\xb4\x82\x14\xd0\x45\x83\x89\xbc\xdb\xed\xed\xc0\x37\x21\x2a\x3e\x2f\x28\x3e\x88\x8f\x9d\x68\x1c\xab\x44\x39\x1a\xf0\xa1\x50\x61\xb7\xd7\xeb\xd7\xa4\x29\x78\xb8\xeb\x9f\xf6\x87\xfd\xcb\x73\xc8\x16\x58\x55\x8b\x94\x54\x80\xfe\x08\xac\xb7\x84\x95\x82\xe3\x9b\x11\x17\xb3\x07\xbd\xbe\x51\x73\x74\x9c\x0b\xc3\xa4\xc8\xe9\xa7\x3f\x25\xc7\x59\xcd\x8d\x60\x9d\x24\xc5\xcc\x3f\xc4\x96\x5f\xa8\x35\x9d\x1b\x18\x60\xe5\x3c\x64\xb8\x06\x84\x62\xc7\x56\x52\x2a\x8b\x64\xde\xd5\x90\xfd\x05\x5c\xab\x20\xf7\xcd\xb0\x5b\x32\xcf\x75\xc8\x8a\xd8\x7e\xc7\x81\xf9\x21\xe9\x86\xdb\xe5\xab\xbb\x05\x3a\xce\xe8\x00\xd9\xef\xea\xe0\xeb\xd6\x66\xb1\x43\x0c\xcf\x8f\x2f\xbf\xa1\x1f\x0a\x84\xbb\xe7\x47\x63\x71\x29\x27\x14\xb8\x20\x89\x2b\xb4\xdd\x28\xfe\xcb\x3b\xd2\x81\xc5\xf2\x13\x0d\x97\x14\x4b\x65\x0a\xc8\xf2\x35\x24\xac\x7a\x05\x6f\xa6\x1e\xa3\x23\x65\x60\x38\x51\x94\x6b\x15\x12\x64\x45\x87\x30\x35\xae\x41\xa1\x4f\x0c\xb3\x2d\xb1\x8c\x3c\x0e\x5f\xe1\x02\x32\xab\x84\x96\x63\x9a\x69\x9f\xfb\xa2\xbb\x5f\x85\x07\xbd\xd3\xa0\x2a\xcf\xb2\xa0\x4b\x4e\x24\xa9\x0a\x35\x6d\xf5\xa0\xa9\x5a\xeb\x71\x86\x96\x0a\x38\x51\xb4\xc4\x31\x16\x04\x99\x16\xa0\x5c\x6e\x93\xe1\xac\x21\xcb\xb6\xf9\x89\x22\xc2\x8c\xff\x6b\xfb\x71\x6f\x6f\x5f\x98\xda\xa7\x77\xdc\xf6\x73\x3f\x39\xe8\x91\xa9\x7d\xef\x0a\xcb\x40\x75\x84\xcc\xac\x82\xcd\x93\xaf\xb0\x09\x04\x37\xf7\xec\x56\x9a\x36\x90\xcd\x85\x33\x57\xe9\x4b\x4b\xf1\xa1\x62\x4a\x93\x8b\xc3\x26\x3c\x97\x59\xac\xb9\x51\xc3\x80\xcc\xe7\x1d\x26\xe4\x92\xf5\x1f\x60\x60\x72\xae\xc9\x18\xb9\xb8\x95\xa5\x50\x5f\x11\xe1\x11\x97\x1d\x50\xd5\xf0\x94\x79\x66\x06\xe1\x28\x34\xac\xb3\xed\x20\x71\x7a\x1e\xe6\x9d\x27\x79\x4c\x03\x1f\xf8\x5d\xc1\xf0\xe9\x6f\x50\x2e\x72\x94\xd5\x86\xec\xd7\x6d\x62\x5e\x63\x12\x5f\x99\x71\xf3\xd0\xa8\xc0\x7f\x90\x39\x81\xf0\x0d\xf9\xbc\x25\xed\xa6\x20\xe3\x1d\x5c\x34\x8e\x58\xb4\xcc\x77\xcb\x76\x90\x2d\xb4\xff\x69\x4b\xd2\x48\x7b\x8b\x11\x4e\xd0\x39\x7e\x07\xad\xc8\xbe\xea\x1e\x5b\xea\xb6\x38\xa7\x5c\xef\xb6\xce\x4f\x9c\x26\x46\x76\x0e\x0e\x31\xd7\x90\xa5\xd5\x8a\xa9\xbe\x49\xc6\xfb\xfa\xad\xc0\xad\x61\x53\x58\x0a\x70\x4b\x31\xfa\xc6\x24\xb6\xe2\x94\xc5\x7f\x98\x29\xfe\x89\xd9\x6c\xe8\xee\x62\xe8\x4b\xf6\xef\xe2\x3e\xca\x97\x09\xab\xa8\x35\x6f\x67\xbb\x9a\x15\x7a\xf9\xd5\xd4\x18\x97\x70\xc1\xa3\xba\x26\x65\x49\x7a\x37\x1d\x26\xef\x7a\x05\xad\x2c\xff\x2f\x00\x00\xff\xff\x13\x05\xe1\x39\x12\x05\x00\x00") func confLocaleTranslatorsBytes() ([]byte, error) { return bindataRead( @@ -4319,12 +4319,12 @@ func confLocaleTranslators() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/TRANSLATORS", size: 762, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/locale/TRANSLATORS", size: 1298, mode: os.FileMode(420), modTime: time.Unix(1447011494, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_bgBgIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xdc\x7d\x6d\x8f\x1c\x45\x9a\xe0\xf7\x96\xfa\x3f\x24\x1e\x59\x03\x52\xbb\x10\x70\x6f\x42\x34\x1c\x03\xbb\x30\x27\x60\xb8\x31\x23\x9d\x84\x50\x91\x5d\x95\xdd\x9d\xeb\xaa\xca\x22\x33\xcb\xc6\xb3\x5a\xc9\xd8\xc3\xab\x4e\xeb\x59\x2f\x73\x83\x98\x01\x63\xd8\xd9\xbd\xfd\x56\x6e\x77\xb9\xcb\xed\xee\xf2\x5f\xc8\xfa\x0b\xf7\x4b\x2e\x9e\x97\x88\x78\x22\x32\x32\xab\xda\x30\xf7\xe1\xb4\x5a\xc6\x5d\x19\xef\xf1\xc4\xf3\xfe\x12\x8f\xc7\xdd\x7e\x52\xf4\xb6\xab\x7f\xaa\x66\xd5\x51\xf5\x68\x79\xad\x5a\x54\x77\xab\x87\xea\xaf\x13\xf5\xff\xa7\xd1\xf2\x23\xf8\x61\xf9\xd1\xf2\x7a\x75\x80\x3f\xbc\x96\x96\xea\xc7\xe5\x17\xaa\xe5\x01\xfc\x77\x73\x63\x73\x63\x3f\x1b\x26\xdb\xd5\x37\xd5\x74\xf9\x69\x35\x55\x9d\x17\x9b\x1b\xfd\xb8\xd8\xdf\xc9\xe2\xbc\xbf\x5d\x7d\xaf\x7e\xbb\x4b\xbf\x26\x1f\x8e\x07\x59\xae\xda\x7e\xa7\x7e\x3b\xaa\xee\xe1\x44\x87\xea\xdf\x0f\xd4\x20\xc9\x60\xbc\x5d\xdd\x56\xd3\x9d\x54\x8b\xe5\xe7\x9b\x1b\x45\xba\x37\xea\xa6\xa3\xed\xea\x96\x6a\x36\x57\xcd\xa7\xd5\x69\x35\xe3\xdf\xb3\x49\xb9\x5d\x7d\xa5\x7e\xac\x7f\x9a\x8c\x61\xfc\x99\x1a\x7d\x0e\xeb\x56\x0b\x9d\xab\xff\x57\x73\xa8\x3d\xcc\x60\x43\xaa\x61\x9e\xec\xa5\x45\x99\xe4\xe1\x96\x38\xd6\x95\x64\xa7\x48\x4b\xb5\xd6\x1f\x54\x0b\x75\x02\x34\xc2\xe6\xc6\xe5\x24\x2f\xd2\x0c\x97\x35\x5b\x5e\x53\xbf\xcf\x97\x37\x37\x37\xc6\xf1\x9e\x6a\x7a\x07\x07\x81\x01\xe6\xcb\x4f\xaa\xe9\xe6\x46\x99\x0c\xc7\x83\x18\x46\xf9\xdf\xfa\x14\xaa\xd3\xcd\x8d\x41\x3c\xda\x9b\x60\x8f\x3f\xa8\xc5\xcf\xab\xe3\xcd\x8d\x5e\x9e\xa8\x76\xdd\x51\x72\x05\x86\xf9\x42\xfd\x0c\xe7\x72\x40\xab\xe9\x74\x3a\x9b\x1b\x93\x22\xc9\xbb\xe3\x3c\xdb\x4d\x07\x49\x37\x1e\xf5\xbb\x43\x3c\x4a\x75\x62\x38\xab\x5a\xa4\x9a\x55\x6d\xb1\x7a\xa8\x16\x75\x5c\xcd\x23\xba\xce\xe5\xef\xd4\x04\x0f\x23\xfe\xbb\x43\x87\x94\xf4\xd5\xc9\x76\xe3\x02\x76\xf1\x08\x76\x0f\xf3\x44\xaa\xd7\x54\x8d\xb0\x80\x3b\x85\xd9\x46\xf1\x30\x3c\x81\xba\xc9\x61\x9c\x0e\x60\xf9\x0f\x3b\x6a\x5c\xb8\x30\xd8\xee\x38\x2e\x8a\x2b\x19\x5c\xfa\x6d\x35\x12\xc0\xd2\x43\xf8\x39\x4f\xba\xe5\xd5\xb1\x1a\xea\x96\xda\xd8\x01\x5e\xf9\x0c\x2f\x03\x7a\x2a\x30\x52\x53\xaa\xc6\xa7\x30\x71\x2f\x1e\x97\xbd\xfd\x78\xfb\x15\xfa\x5f\x58\x49\x9e\x8c\x33\x75\x13\x59\x7e\x75\xbb\xfa\x8b\x3e\x5e\xb8\x77\x35\xa7\xba\xa7\x2c\xdf\x8b\x47\xe9\x6f\xe3\x12\x2f\xe5\x5b\xd5\xe0\x1e\x37\x51\x60\xa1\x6e\x01\xaf\x67\x98\xe6\x79\xa6\x6e\xfb\x5b\x01\x73\x08\x91\xea\xbc\xbb\x30\x01\x80\xaf\x5a\x4a\xb5\x88\x96\x1f\xd7\xe7\x80\x56\xc3\x74\x2f\xc7\x9b\xa4\x86\xd3\x48\xc1\xe9\xbc\xba\x07\x8d\xf5\x2c\xd0\x6c\x37\xcb\x2f\x89\xc1\xae\x21\xa0\x1f\xd3\xc5\xc3\x03\x6a\x99\x41\xed\x44\x8c\xbe\x68\xd8\x49\x3c\x52\x80\x43\x6d\x7f\xc0\x1b\x06\x28\x79\x88\x43\xcf\xe1\x48\x4f\x1b\x3a\x57\xf3\xcd\x8d\xb8\x3f\x54\xd7\x3e\x8e\x47\x89\xba\xbb\xdf\xab\x53\x80\x2d\x9c\x1a\xe8\x87\xcb\x9f\xf3\x3b\x57\x57\x83\xa0\x07\x97\x1d\xf7\x7a\xd9\x64\x54\x76\x8b\xa4\x2c\xd3\xd1\x5e\x41\x6f\x9d\xfa\x2c\xaa\x07\x04\x6c\x38\xaf\x80\x38\xb8\xf8\x96\x0e\x9b\x1b\x57\xb3\x89\x81\x67\x80\xc3\xe9\xf2\x33\xd8\xe2\xf2\xba\x33\x0c\xb7\xb3\x23\xe9\x86\xd7\x79\xb3\xfe\xb0\x78\x96\x45\x77\x37\x49\xfa\x0c\xbb\xea\xdb\x31\x34\x85\x83\xc5\xed\x2a\x40\x9d\x0c\x06\xea\xde\x3f\x98\x24\x45\xa9\xc6\xfc\xa3\x1a\xe6\xa6\xfa\x8a\x1b\x51\xe7\x05\x58\xe2\x21\x1e\x05\x23\x83\xb4\x28\x54\x53\x35\x9e\x83\x20\x71\xb6\x5e\x3c\xea\xc1\x71\x7e\xab\x26\x3a\x86\xdb\x86\x1f\xdf\x2d\x92\x38\xef\xed\xbf\x07\x47\x00\xff\x50\x58\x10\x90\x25\x20\x1f\xf3\x9e\x57\xc0\x35\x3c\xc0\x86\xc7\x87\xab\xf1\x16\xa3\x16\x92\xf5\xd5\x8f\x5f\xab\x9f\x0e\x71\x09\xe9\xa8\x28\xe3\xc1\x40\xad\x81\xff\x05\x08\xf3\x14\x51\x39\x00\xbf\x81\xa8\x32\x2d\x07\x8c\xbb\xbe\x50\xb7\x6e\xce\x00\xce\xca\xb4\x36\x88\x91\x2e\x07\x91\x09\xd2\x00\x84\x6b\x8d\xf8\x11\xba\xb1\x8b\xda\xeb\x75\x89\x4d\xfb\x59\xef\x92\x42\x5f\x80\xe4\x61\x5b\xbf\x57\xd3\x2c\xa2\xd7\xb2\xbd\x22\x42\x9c\xec\x77\x89\xaa\x83\xe8\x55\xec\x02\x48\x49\x4d\x81\x5b\x7f\x00\x63\x2d\xaf\x6d\xc1\xd3\x53\xa8\x65\x79\x53\x43\xca\xa7\x84\x4f\x10\x26\x5e\x88\xa3\x32\xce\xf7\x92\x72\xfb\x5c\x77\x47\x21\xda\x4b\xe7\xa2\xfd\x3c\xd9\xdd\x3e\x77\xbe\x38\xf7\x22\xae\x55\x43\xcf\xf2\x06\x5d\x18\x23\xec\x9b\x2f\x3c\x1d\xbf\xa8\x26\xc6\x6b\x38\xc1\xc7\x30\xa3\x3d\x6d\xd1\x3c\x80\x36\xd4\xc6\x0f\x35\xa0\xc3\xc3\x63\x38\x24\xc2\x79\x42\xaf\x10\xd1\x5a\x00\x36\x0d\xc8\x46\x78\xa8\x0a\xf1\x47\xfa\xe1\x69\x8a\xf1\x04\x80\xc5\x07\x13\x45\x77\xba\xfd\x1d\x22\xcd\x74\x48\xf0\x8c\xe7\x88\xd7\x01\x39\xbc\x79\xf5\xe2\x7f\x7f\x63\x2b\x7a\x3b\x2b\xca\xbd\x3c\xc1\x7f\xab\xff\xa8\x5e\xcf\x45\x04\x42\xd1\x3b\xe9\xab\xbf\x50\x30\xa6\x06\xe1\xeb\x6d\x7a\xb1\x77\xe9\x04\x60\x45\xb8\x35\xf5\x2b\xbe\x10\xe8\x89\x38\xfb\x7b\x35\xe2\x23\xb7\xb1\xd3\x70\x5f\x2d\x02\x49\x96\xe5\x08\x5a\x40\xb7\x81\x42\xa8\xd9\x88\xd8\x7c\x05\x87\xd8\x32\x9b\x6a\xa8\x61\xe8\xcf\x04\x03\x5b\x74\x38\x8f\x70\xa8\x23\x7c\xb2\x44\xe9\x7f\xf9\xd6\x5b\xbf\x7a\xf5\x17\x51\x32\xda\x4b\x47\x89\x3a\xe9\x68\x52\xee\xfe\x97\xee\x5e\x32\x4a\xf2\x78\xd0\xed\xa5\x04\x59\x87\x12\xb4\x71\xda\x23\xbc\xb9\x4f\xf4\x33\xc0\xb3\x06\xb2\x59\x0c\x14\xc5\xed\x27\xc4\x32\xdc\x07\x18\x89\x2e\x5e\x7c\x03\xb6\x54\xee\xc3\x63\xfc\x02\xb8\x83\xe2\x83\x01\x5c\x9e\x5e\xe3\xbf\xc0\x6a\x80\xfa\xc2\xc8\x81\x2b\x0a\x6d\x52\xcd\x95\xe4\x79\x57\x71\x0e\xe5\x55\x80\x02\x31\x3e\x61\xc7\x43\x05\x5d\x6b\x8e\x15\xd1\xbe\xe0\xb9\xdc\x87\x7f\x20\xec\xce\x34\xf8\x1e\x01\xbc\xf2\x74\xe9\xe8\x72\x3c\x48\xfb\x0a\x5c\xf4\x5d\xd0\x98\xa7\x9a\x4c\x1f\xe1\x5b\x7f\x88\x78\x72\x1a\x9d\xeb\x9c\x03\x96\xe2\xdc\x85\x73\xf0\x54\xf1\xc1\xc0\xf3\x5b\xb4\x42\x95\x9a\x6a\x94\x75\x89\x08\x01\x03\xd3\x4f\x8b\x78\x47\x31\x33\xc4\x8d\xe5\x4c\xc2\xbf\x51\xab\x3a\x40\x0e\x88\x96\x0d\x48\x05\xaf\x58\x51\xd1\xe5\x3f\xaa\xb7\x7e\x20\xaf\x0b\x01\xec\x9e\x20\x61\x48\xea\xe8\xa9\xdd\x05\xa6\xd6\xbe\xdd\x03\x84\xb8\xb9\x7d\xd7\xe6\x3c\x80\xa1\x65\x8e\xeb\x50\x53\xbf\x05\xcd\x81\x8f\x1e\x7e\x99\xae\x20\x97\x96\x64\x39\x17\xa8\x49\x6e\x00\xec\xe9\x74\xf0\xbc\xc2\x83\x2b\x2a\xbe\xea\x02\x55\xef\x0e\x60\x7b\x0d\xd6\xfc\xda\xbf\x55\x1c\xeb\xe7\xfc\xc6\x1b\x09\xf5\x1c\xb9\x92\xfb\x9a\x75\x20\xce\x0f\x44\x82\xfa\x53\x5c\xd9\xdc\x40\x3c\xbc\x7a\x22\x1a\x07\x30\x99\x07\x18\x28\x46\x2c\x00\x8c\x1b\x59\x1c\xd5\x06\x10\x73\x74\x21\x52\xdf\x08\xe0\x4e\xa0\xbb\x5a\xca\x31\x5c\xe4\xf2\x73\xd5\xfd\xf3\x6a\xf1\x04\x51\x50\x7e\x1e\xdf\x2a\xdc\x48\x14\x9e\x6f\xe3\x0b\x78\x29\xc7\xea\x5a\x4f\xea\xfc\x16\x9e\xbc\xe8\x6e\x16\x7f\x0b\xd9\xf9\x4f\xe9\x9c\x80\x73\x20\x3e\x71\x06\x04\x06\x9f\x53\x7d\x28\xda\x17\x4a\x45\x9f\x23\xcc\xa9\x29\x0f\x61\x06\x92\x92\x74\x7b\x26\x0c\x07\x16\xf5\x33\xe6\x99\xa9\x45\x12\xff\xab\xf6\x0e\x5c\xc1\x44\x49\x30\x4d\xf8\x53\x33\xf6\x96\x24\x1e\xc3\x61\xdb\x5e\x66\x27\xdf\xe3\x8b\x25\x52\xe4\x8f\x02\x27\x7c\x4d\x1d\xeb\x5d\x62\x34\x0f\x89\xd6\x9f\xd0\xbf\xf1\xf6\x80\x11\x20\x3c\x03\x7f\xf3\xc1\x22\x8d\x5c\xeb\x68\xb5\xb0\x41\x02\x0c\xcd\xe0\xd3\x78\x24\xfe\x40\xa1\x32\x25\x49\xa8\x57\xff\x25\xd3\xcf\x07\x20\x1f\xd1\x8f\x62\x33\x7c\x64\x3e\x34\x4f\x23\xe4\x7d\xd5\xba\x34\xa4\xfe\xe6\xd7\x6f\xe0\x6b\x42\x48\xf9\x88\xd0\xf9\x34\x32\x0c\xb8\xc5\xf5\xcb\x4f\xf1\x50\x8e\x14\x0e\x7f\x1d\xb1\xfb\x7e\x77\x9c\xe5\xe5\xb6\xfa\x93\x0e\xed\x1a\xa2\x73\xfe\xd9\x2c\xe5\x1b\x5a\x26\x3d\xcc\xa9\x69\xc9\x08\x5e\xf5\x95\xb2\xb1\x7a\x9b\x11\x40\x26\x3f\x87\x99\xe5\x15\xe8\xe9\x2e\x22\x83\xae\x5d\x0c\xc7\xf8\xcb\xb9\x8d\x47\xce\x7a\xf7\xcb\x72\x4c\x0b\x7e\xfd\x9d\x77\xde\x16\x2b\x36\x1f\x9c\x17\xa9\x3e\x6d\xf1\x8a\x01\x76\x1e\xd0\x8b\x6c\x78\xd5\x04\xc9\xc0\x02\x2f\x6f\x28\x66\x09\x10\x0c\x3c\xf3\x49\x3e\xd8\x76\x8f\x77\x1d\xe4\xa0\x7a\xd5\x81\x32\x70\x8f\x82\x83\x52\x50\x06\x9b\x7a\x1a\xfe\x73\x71\xad\xdb\x54\x7b\x9b\x32\xce\x56\xa0\x00\x3b\xbc\xc7\x50\xe8\x74\xc6\xd5\xce\xa4\xc8\x8a\xb8\x33\x1b\x03\xe1\x91\xc8\xf3\x11\x52\x11\xe4\x6c\x91\x52\x84\x10\x29\xcb\xc0\xab\xf8\x2b\x9a\x08\x76\xf5\x11\x6e\x54\x1d\x29\x1e\x2c\xac\x50\xc1\xd7\x50\xdd\x16\x72\x50\x17\xdf\x54\xd7\xe8\x2a\x56\xf0\xe3\x6e\x9e\x0d\x49\x2d\x72\xa8\x59\x52\xf1\x45\x30\xd4\xde\x9d\xc8\x0e\xce\x52\xe8\x1f\xd1\xaf\xff\xf6\x95\xe8\x3f\x3e\xf7\xec\xb3\xea\x2c\xfe\xec\x10\x17\x42\x60\xea\x2f\x10\x2d\xe6\x6a\xcd\x02\xad\xfa\x37\xef\x9c\xa5\xe6\x45\x90\x78\x2b\x44\xf7\x3b\xc4\x6a\xc8\x48\x47\xe7\x88\x9a\x9c\x8b\x5e\xc0\x43\xfb\xaf\xc9\x87\xf1\x70\x3c\x48\x3a\xbd\x6c\xf8\x62\x07\x84\x5a\x25\x03\xe6\x8c\xf7\xfe\xe0\x0e\x7a\xa4\x1f\x07\xbe\x1b\xf8\x8d\x24\x0a\xee\x13\xa4\xac\xcd\xbd\xb4\xe2\xa7\xdb\xcb\x46\xbb\x69\x3e\x04\x79\xd2\xbc\x3a\xc6\x96\xfc\x78\xef\x13\x2f\x60\x5e\xc5\x0a\x76\x83\x56\xd4\x1d\x65\x65\xba\x7b\xd5\x1d\x56\xdd\x36\x69\x3d\x00\xc0\x59\x54\x47\x54\x8a\x8f\x90\x36\x4a\x24\x49\x1d\xc0\xe5\x04\xa4\xdd\xfc\x72\xda\x4b\x56\xc0\x96\x8b\x6a\x10\xdc\xd5\xf5\x20\x68\xcd\x25\x9c\x29\x50\xcd\x76\x77\x07\x8a\x0b\x66\x06\xd6\xd9\x32\x30\x2d\x0f\x91\x4d\x3d\xa5\xdd\xdd\x27\x62\xe0\x76\x52\x28\x65\x0c\x8a\xb5\xaf\x24\x96\x8a\x5e\x79\xf5\x2d\xc2\x52\xd7\x88\xb8\xf1\x2b\x3e\x04\x02\x6e\x9e\xd0\xcc\x19\x78\x0b\xe0\xc3\x52\x59\x02\x27\xb5\xd8\x6b\x48\x67\xe6\x00\x36\xc8\x32\x13\xd0\xd5\x88\xaa\xc6\x89\x80\x50\xd5\x53\xc7\xa7\x09\x6d\x8f\xb5\xfc\x09\x24\x85\xd9\xca\xbd\x3c\xbe\x1c\x2b\x59\xd0\x5f\xb5\xea\x79\x0d\xf9\x3d\x7c\x8f\x1f\x45\xaf\x71\xbb\x7a\xcf\xd0\xae\x81\xa2\xe9\x1e\x91\x06\xf7\x53\x85\x27\x4f\x89\xdf\x39\x42\x72\xfe\x29\x4b\x74\xf3\x2d\xa2\xf8\x38\xd5\xa7\xb0\x17\xb9\x7b\x22\x90\x44\x18\x61\xef\x35\xba\x4c\x78\x8b\xdf\xd5\x31\xca\xd9\xcc\x49\x2c\x50\x4f\x52\x27\xee\x9a\x76\x70\x1f\x1e\x84\x79\x78\x16\x90\xa0\xab\x3b\xb3\x01\x45\x7c\xe0\x40\x9d\xee\x5a\xec\x2a\x8e\xd4\xe5\xd4\xdd\x63\x45\x25\xe2\x09\x02\x43\xed\x89\x10\xc7\x17\x1e\x27\x0c\x5a\xa1\xbd\x11\x0a\x45\x0e\xa3\x7d\xb2\x2d\xf3\xbd\x95\xb5\x76\xb8\x6a\x21\x03\x1c\xf8\xaa\x2c\x94\xc9\x46\xb8\x72\xad\xa0\x74\x1e\x91\xd1\x56\xba\x8d\xe4\xce\xac\xf0\x8e\xf2\x0b\x68\x97\xa4\xe8\xa9\xc0\x90\x3b\x69\x05\x4b\xfb\x0e\x05\x4a\xaf\x01\x40\x87\x95\x08\x79\xd2\x65\x1d\x7a\xf7\x72\x0a\x7a\x65\xe7\xdd\x1f\x21\x36\xff\x42\x75\xb8\xef\xca\x44\x07\xac\x11\x36\x62\xd6\x91\x3e\x8e\x99\xd6\x9e\x1a\xfc\x23\x95\x17\xf3\xf0\xb4\xfa\x10\xee\xe8\x0b\x39\xb0\x1a\xe7\x86\x7b\x86\x9f\x4f\x88\x88\xd3\x93\xc7\x43\x9b\x23\x46\x66\xce\xda\x99\x18\x7a\x01\x0b\x80\xa4\x8a\xb4\x37\xa7\x46\x33\x83\x1c\xec\x0c\xd9\x4e\x33\xb8\x3b\x18\x2f\x2c\x34\x2a\x6b\x03\x1b\xae\x00\x1f\xff\xc7\xf0\x68\x3a\x5a\xb7\xca\x7a\x4a\xb6\xaa\x7c\x83\xc2\x0b\x70\x1e\x0a\x23\xde\xa7\x8d\x2c\x58\x34\x70\x35\xfc\xab\xe4\xc0\xa0\x4a\xff\x80\x8e\x89\x98\x26\xf5\x2a\xb6\x70\xb9\x20\x1c\x31\x7f\x17\x78\x42\x37\x71\x7a\xa1\xbe\x8b\x7e\xf9\x2a\x8e\xe4\x88\xec\x53\xd2\xca\xb3\x1a\x6c\x8e\xe8\x8c\x11\x04\x30\x85\x9f\xea\x47\xb2\x72\xbd\x82\x85\x35\x67\xb4\x8a\x63\x92\x5b\x6c\x3f\x15\x40\x29\x34\x66\xa3\xa9\x02\x17\xb2\x60\x41\xd4\x6a\xc0\x83\x5a\x28\xe6\x09\x9c\xcf\x41\x7e\xc0\xbc\x3e\x47\x96\xd7\xa3\x87\x6d\x23\xac\x84\xed\xee\x65\xa0\xc5\xfe\xaa\xa6\x5b\x7d\x80\x12\x11\x98\x8c\x8a\xb2\xbb\x97\x96\xdd\x5d\x60\x70\xfa\xa8\x0f\x41\x62\xfe\x48\xfd\xef\x67\x78\x0f\xa8\xeb\x24\x93\x1c\x02\x8f\x65\x4f\xce\xa9\x8e\xe7\x88\xc7\x3f\xc1\x6f\x0a\xc4\x9e\x8f\xce\x5f\xd6\x8a\xa9\xe7\x80\x3f\xe9\x2a\xe2\x95\x0e\x00\x51\x69\x6d\x3a\xdf\xfa\x81\xb5\x68\x09\xc5\xcf\x21\xa0\x09\xdc\xbf\x51\x61\x59\x0d\xec\x96\x26\x79\x8c\x1b\xe8\xd1\xe0\xf5\x21\x03\x40\x54\xd9\x28\x82\x40\x85\x44\xd0\xe4\x4f\x07\xcf\xe2\x7c\x41\x8c\x3c\x4c\xbd\x97\xed\x4c\xd2\x41\xdf\x69\x05\xa3\x74\xe0\x24\x49\x55\xd5\xdf\xd1\xcf\x2d\x00\x4c\x56\xd9\xda\xa0\x8c\x8a\xb4\x4c\x30\x83\xe3\x32\x92\xb8\xfa\x42\x07\xa6\x67\x09\x2a\x19\x4e\xad\xa5\x62\x0d\x69\x78\x46\xd3\x58\xbc\xaf\xc0\x88\x26\x31\x72\x3b\x5c\xcb\x30\x2e\xc1\x52\xd0\x28\xf7\xd3\x8c\x9e\xec\xdf\x2e\x83\xf1\x35\x5a\xb5\x33\xf4\xba\x01\xaa\x21\xe6\x3f\xfd\x99\xd4\xb2\x8a\xe8\xc2\x8b\xea\xbf\x0a\x64\xe2\xcb\x09\xf1\xc9\x7b\x2d\xc0\x88\x84\xe4\x11\x1e\xb1\x8b\xcb\x68\xa1\xbf\x43\x23\xd9\x0d\x8b\x36\xdd\xd3\x75\xb0\x66\xfb\x35\x9e\x09\x2f\x88\xdb\xb5\xc7\x2e\xee\x96\xde\x62\x31\xe9\xf5\x92\xa2\x20\xed\xc3\x5d\x38\x09\xc2\x58\x9f\x41\x87\x27\x22\x34\x53\xa3\xde\x10\x55\x61\x40\x47\xb6\x98\x8b\x03\xd1\xe2\x2e\x4e\xf8\x31\x2e\x11\xde\xee\x16\x52\x84\x5b\x4c\xd4\xf0\x22\x1e\x32\x86\x3f\x31\x86\x13\x84\x62\x96\x24\xc0\x22\xbc\xd0\x0a\x13\xe6\xe6\x0f\x51\xdb\xa4\x29\x23\x10\x09\x6d\x69\x78\x02\xad\x3a\x60\x6b\x7f\x6f\x73\x63\x42\x4a\xb7\x6c\xd0\x6f\x53\x15\x69\xbc\x67\xd8\xc1\x59\xd8\x5e\x2b\x06\x12\xe8\xb0\xb8\x92\x2a\x80\xec\x1a\x53\x3e\xc0\x42\x99\x7c\x58\x92\xe5\x69\x86\xf6\x32\xc3\x4e\x04\xc1\x12\x11\x1c\x5a\xbd\x49\x21\x30\xbc\x8a\xcf\xa9\x20\xe5\x3d\x5b\x61\x6a\x8f\x06\x10\xf1\x40\xe1\xa7\x0c\xf8\xc3\xcb\x89\xee\x72\x07\x8d\xc7\x27\x8c\xfa\xc2\xda\x38\x9c\x22\xcb\xf7\x9c\x19\x9a\xac\xa1\xaa\x29\xd9\x85\xbd\xd6\x8e\x8d\x58\x0d\x89\x5c\x0c\xf9\x38\xdc\xae\x73\x41\xf0\x52\xb4\x81\xb0\xa3\x60\x19\xcd\x95\xbc\x64\xb4\x77\x47\x8e\xc9\x32\xb4\x66\x75\xad\xec\x19\xf1\x1e\x9b\x05\xeb\x16\x41\x6a\x16\x4f\x4a\x30\x2a\x5a\x67\x81\x2e\xdb\x66\xa5\xd3\xc0\x03\x36\x76\x7a\x76\x54\x23\xfa\xee\x27\x63\x90\x9c\x87\xc5\x1e\x39\x31\x30\x40\xb3\xc9\xcb\xe9\xf5\x52\xc4\x0e\x02\x9f\x31\x6a\x47\x59\x02\xcd\x98\xf7\xd0\x5a\x55\x64\xbd\x34\x1e\x74\x1f\x73\xec\x3b\x86\xb4\x86\x47\x77\xc5\x05\x72\x7f\x18\x8e\x4b\x34\xd8\x12\x13\x75\x9f\x14\xb4\x4c\x96\xeb\x7c\x95\xb0\x49\xb0\x01\xb8\x41\x84\x8f\xf4\xab\xd6\x30\x8d\xb6\x7a\xd0\xdf\x81\xf4\xb9\xbc\xc6\x83\xf1\x1a\x19\xe1\xb7\x62\x20\xe6\x91\xd9\x1e\x35\xad\x49\x51\x70\x4c\xc8\x28\x34\x6c\xe6\x71\x95\x11\x0d\x3b\x01\x00\x18\x26\xc3\x1d\x98\x36\xc1\x49\x11\xc1\x9c\x10\xae\x41\xe6\x68\x57\xbd\x1c\x45\x87\x2c\xfb\x03\x8d\xee\x32\xfe\x99\xd5\x78\x1e\xea\x90\xac\xdf\xe1\x25\xe3\xa1\xa3\xe8\xdd\x15\x60\x8f\x99\x2b\x76\x8e\x76\xe1\x79\x00\xbc\x14\xad\x70\xe7\x31\x10\xd3\x31\x2c\x1c\x09\x96\xa8\x90\x29\x92\x51\x69\xe0\x46\xfb\x65\xb0\x08\x72\x62\x54\xb0\x0d\x67\x6d\xce\xf2\x11\x5f\x2d\x79\x70\xa0\x6a\xfc\x85\x9d\x17\xcf\x17\x2f\x3c\xbd\xf3\x22\xab\xd0\xac\x3d\x9a\x78\x16\xe1\xe3\x22\x35\x80\x5a\x7c\x05\x9c\xa9\xe8\xe2\x75\x22\xc5\x07\x44\x0f\x4e\x3c\x3b\xf1\x47\x8c\x89\x0e\x90\xad\xa7\x2f\xe7\xfb\x40\x83\xa6\x00\x59\x5b\x52\x81\x7c\x84\x5c\x3b\x78\x19\x7c\xe6\x98\xa5\x15\x54\x08\xfd\x67\x58\x96\xe9\x18\x77\xab\x6e\x99\x59\x9c\x72\x0b\xa7\x3f\xe2\x93\xb6\x88\xec\xa6\x87\x5a\xe2\x1e\x22\x6a\x44\x7d\xa6\xf3\xef\x91\x9f\x9a\xa3\x91\xdc\xb5\xb0\x7a\x68\x09\x6f\x68\x90\x0e\xd3\x72\xd5\xfb\x06\xe2\xaa\x9f\xf9\x01\xde\xfa\x09\x6b\x66\x99\x87\x5b\xb8\xb7\x35\x67\xea\x5c\xbb\xee\xa9\x59\x9b\x3e\x00\x71\x87\xc0\xd0\x7e\x4a\x3a\x1b\x86\xb2\xe7\xc8\xd9\xe7\x94\xee\x6b\xcb\xdc\x0b\x91\x3d\x7e\x91\x0b\x9c\xe5\xba\xe9\x84\x10\x45\x48\x07\x5e\xdf\x7e\x5c\x74\x27\x23\x86\xcf\xa4\x6f\xde\xfe\xa1\x79\x2e\xd4\x0d\x99\x60\x81\x31\x81\x85\x91\xd0\x79\xb8\x8e\x2a\xf6\x49\x03\x9c\x4f\xa9\x5f\xc9\xdb\x82\xf5\x0c\x06\x28\x59\x92\x63\xce\x60\xed\x07\xc1\xed\xe5\x0a\xad\x70\x6b\xd5\x4d\xce\x35\x68\xe4\x2b\x1f\x9e\xf0\xe2\x58\x7e\x8e\x67\x70\x6c\x70\xac\xc2\x21\x37\x50\xfe\xd4\x4a\x8e\x0b\xa8\x3c\x55\x0b\xee\x30\xc0\xe8\xf3\xfb\x77\xaf\x27\x19\x0f\xe5\xbb\x58\x73\x39\xed\xdb\xd6\xca\x7e\x94\x9e\x0a\x24\x7a\x65\x22\x0c\x1a\x2b\x14\xe3\xcc\x84\x83\x52\x05\x47\x46\x97\x93\x88\x5a\xcf\xc9\x22\xe3\x5b\x90\x71\x8f\xb0\xd5\x72\xed\x9d\xca\x4b\xc5\x26\x4f\x4a\x10\x7c\xaa\xbe\x59\xb8\xb8\x87\xf5\xd7\xe9\x4b\xb5\xb4\x0a\x8b\xe4\xbf\x59\xaf\x9b\x66\xf1\xc9\x2f\xa9\xf9\x45\x1b\x94\x82\xee\x18\xeb\xe1\x63\x66\x34\xbf\x40\xc7\x46\x66\x6d\x03\x42\x56\xc7\x5f\xbc\xb1\x97\xac\x71\x9a\xe2\x74\xf4\x9b\x71\x4d\xf7\x80\xc4\x05\x0f\x5d\x66\x59\xb7\xd8\x07\x93\x1c\xbb\xb7\xa2\x9d\x90\xe4\xc3\xd0\x09\x05\x4d\xfb\xc6\xfa\x82\x40\x0f\x32\xfc\x43\xf5\xcb\x31\x51\xc5\xff\xc4\xce\x29\x80\x99\xd0\x72\xf5\x2e\x80\xc6\x7b\x8c\x7f\x81\x23\x34\xc8\xd7\x20\xb3\xa9\x87\x85\x19\x37\xb5\x62\x72\x18\x89\x95\x18\xb7\x05\x3d\x5b\x05\xe7\x8f\x0d\x29\x86\x1f\x32\xf2\xd8\x0f\x42\xc4\x6c\xd5\xbf\x1d\x06\x04\x37\x3a\x99\xac\x1f\xc3\xd1\x5c\x4d\x50\xbc\x9b\x82\xeb\x09\x8a\xaf\x8a\xef\xcf\xfa\x68\xa2\xa1\xbd\xb1\xd3\x16\x76\x52\xfc\xcc\x50\xf5\xf9\x8d\x92\xc8\xdf\x5a\x53\xa1\xf4\x6b\xc5\xae\xbf\xe5\xfb\x4b\xd4\x3d\x3c\x49\xfe\xf9\x1b\x3a\x54\xdf\x58\xe7\x9d\xe2\xdb\x61\xed\xd4\xaf\x13\x72\xc8\x02\x5b\xa0\xf0\x99\x0d\x9c\xe7\xc5\x8b\xaf\xbf\x43\x3a\x36\xb1\x26\x34\x6c\x33\x4b\xb8\xb9\xf1\x7a\x59\x8e\x8b\xdf\xe4\x83\x6d\x32\xb2\xba\x76\x5d\x58\xc2\xd5\x41\x16\xf7\x7f\xd3\x64\xf2\x0d\x58\xd6\xde\x49\xe2\x61\xed\x20\x50\xb9\x32\x87\x15\x6e\x6e\xbc\xac\x64\x97\xfa\x49\xdd\x30\x16\x1d\xc3\x36\x55\xc2\x84\xfc\x32\xe8\x07\xfe\x26\xa0\x50\x5b\x47\x35\x68\x15\xd2\x09\xba\xff\xbe\xbf\xe2\xc9\x2d\xad\x53\xd4\xfb\xea\x29\x0c\xc6\xfb\x31\x4a\xbf\xa6\x7b\xdd\x40\x93\x44\x8e\x7e\x01\x87\xbb\x41\x8a\x7e\x54\x15\xcc\x91\x55\x58\x68\x2c\xb5\x24\xef\x87\xd9\x93\x17\xba\x4f\x79\x73\xf4\x15\x69\xf9\xd1\xf3\x6c\x39\x33\x88\x59\x17\x68\x71\x9a\xc2\x9c\x45\xfa\xdb\xa4\x65\x26\x62\xf5\xf8\x28\xc8\xd5\xe1\x7c\x01\xfd\x50\x51\xd3\xde\x17\x11\xbc\xd5\x16\x1a\x2f\xaa\xf3\x85\xc4\x5c\x30\x56\xfc\xe1\x59\xc7\x82\xde\x0f\x2e\xa0\xbc\x02\x12\xfa\xa2\x3e\x28\x91\x68\xf7\xaa\x67\x91\x4b\x11\x56\xa0\x30\x18\x06\x3c\x16\x56\x0c\xe2\xbe\x09\xec\x34\xba\xa4\x44\x9a\x11\x77\x44\x1f\xb6\x39\x6a\xc4\xb4\xb6\x42\xcd\x74\x0f\x9b\x7f\x06\xcb\x7d\xde\x78\xba\x2b\x96\xbb\x97\xe5\x79\xd2\x2b\xb5\xcf\xbb\x9d\xb4\xc6\xf6\x21\xda\x37\x04\xc7\xd1\x19\x7a\xa4\x65\x85\x2d\x7b\xf9\x8d\x61\x07\xbf\x40\x83\xcc\x94\xac\x21\x1d\xe9\xfa\xdf\xdd\x49\x12\x25\x0f\xc4\x97\x92\x51\x0b\x26\x24\xe6\x97\xd5\x4c\x07\x2c\xf2\xd7\x4c\x8e\xec\xef\xdc\xad\x8d\xfb\x95\xe7\x20\x16\xc4\x9c\xed\x03\x2b\x21\x74\xe5\xb8\x61\x5f\x33\xab\xf6\x6e\x1a\xbb\x54\x58\x6d\xf5\xe0\x06\xcb\xb5\x0f\x46\x00\x8a\x03\xa9\x33\xee\xaf\xcf\x3f\xb6\x0d\x9a\x0e\x06\xc9\x1e\x38\xaf\xe8\x95\xb6\x2d\xaf\xfe\xa8\xc8\x2d\xe1\x11\x28\x75\x91\x4f\x38\x21\xdb\x20\xbb\xc0\x76\x04\x34\x18\xb8\xb3\x10\xbb\x26\x54\x18\x11\x23\xc0\xff\x90\x64\x4a\x98\x9f\x9d\x5f\x47\x8a\x15\xc8\x31\x42\x45\x68\xe0\x69\x67\x9a\xad\x21\x8f\x0a\x23\x63\x4b\xcd\xec\x81\x8d\x31\x01\x54\xe1\x2c\x24\x0c\x61\xf4\xc0\x15\x34\x5c\x63\x45\x49\x6d\x05\xea\x65\x83\x8e\xfe\xa7\x5a\x02\x6b\x82\xaf\xa3\x4f\x84\xf1\xd1\x59\xb5\x08\xcb\x56\x9d\x79\x09\x7c\xde\x8f\xa4\x87\x8c\x98\x6e\xaa\xa3\x8b\x00\xa3\x24\x1f\xa6\xe0\xd0\xfd\x65\x35\xd5\x38\x83\x2d\x1d\x01\x47\x42\x83\x43\xf0\xa1\xa2\x45\x0a\xd7\x04\x03\x0e\xe2\xa2\x04\x55\x2c\x1d\x9e\x56\x9d\x82\xd0\xf8\xb1\x67\x28\x20\x13\x2d\x29\x3a\x4e\x1b\x2d\x13\xac\x18\x62\x58\x0e\x9e\xa1\xf1\x77\x76\x5d\x96\xe9\x16\x80\x34\xaa\x43\x79\x60\xa2\x9c\x22\x0e\x07\x99\x92\xbf\x4c\xa3\x4f\x64\xdd\x15\x38\x78\x7d\x07\x91\xf5\x1f\x6e\x44\x38\x88\x5f\xf5\x85\x82\x73\xe1\xa5\xe4\x6a\x93\x6c\xb4\x15\x55\xc6\xd8\x88\x97\x4b\x18\x96\xce\x1b\x19\x26\x72\x80\x31\x8c\x8c\xd4\x3d\x81\x77\xba\x60\xf2\x25\xf3\xf7\x3c\xaa\xac\x27\xe4\xa9\x70\x39\xc9\x15\x2f\x6c\x96\x42\xc1\x06\x01\x26\xe9\x91\x2b\x07\x84\x47\xc6\x15\x2f\xac\xc3\x35\x21\xaa\x29\x1e\xc3\x89\x85\x4d\x9f\x9c\x5a\xdd\xcb\x56\x50\x81\x76\x0f\xdf\x03\xa8\xbe\xdb\x6c\xa2\x35\x46\x92\x3c\xd5\x61\x33\x64\xf4\x51\x9c\x4f\xa9\x90\x25\xc0\x23\x87\x7c\x35\xc5\x1c\x79\x37\xcc\xfe\x20\x12\x0c\xc2\x61\x5c\x6a\x23\xb7\x8d\x59\x3d\x00\x50\xf7\x8c\x87\x10\xde\x10\x6f\x4f\x78\xea\x50\x0b\x3c\x3e\x78\x25\x38\xd6\x43\xc7\x08\xc6\x0e\x5e\xc1\x17\xd2\xd1\x3b\x04\x55\x13\x06\x88\x35\x6f\xf0\x40\xeb\x5a\x19\xff\xa9\x9b\x79\x48\xfc\xd1\x69\x60\xb3\x8d\xe0\xbc\x62\xc3\xf0\xb8\x90\xb4\x58\xcd\x8e\x51\x1f\x79\xa7\xe0\xd8\x48\x78\x31\xda\xc6\xcd\x34\xde\xbf\x3e\xe3\x16\x1c\xf6\x23\xf7\xf6\x58\xbf\xd2\xc7\xb9\xc0\xc5\xca\x0b\x5c\xac\x75\x81\xed\x18\xc2\xee\x94\x5c\x22\xbf\xaf\x28\x28\xb0\x0d\xc8\xa5\xa2\xcb\x32\x08\xd6\x51\xcc\xc7\x61\x01\xf8\xf1\xf4\xd8\x1a\x5b\x9f\x4a\x4d\x76\x83\xbb\x19\xdb\x43\x4e\x51\x50\x5f\x20\xff\xb9\x42\x1f\xaa\x78\x2b\x0c\xd3\xea\xee\xe4\xf1\xa8\xb7\x2f\x69\xcf\xbf\xe2\xc8\x33\xd4\x59\xb0\xcd\x1b\x1d\x7e\x5b\xe9\x8d\x12\xdf\xe1\xb0\xc0\x3a\xb6\x1f\x8f\xf6\x92\xae\x76\xfe\xbb\xc3\x22\xfe\xac\xa6\xf9\x10\x3e\x70\x74\x3b\xda\xef\x0f\xfc\x52\xcd\x38\xbd\x49\x51\x66\xc3\xb3\x0e\x77\xd0\x10\x00\xb6\xb9\xf1\x77\x99\x12\xa4\xc0\x7d\x2e\x18\x7a\x8c\xdd\x44\x70\x60\x9a\x84\x8d\x81\xa8\xa8\x49\x4b\x54\x63\xdc\x40\x1b\xab\xf1\xab\x00\xa4\xfa\x00\x19\x0f\x8c\x0d\xd8\xcd\x06\x83\xec\x4a\x02\x56\xce\xdb\x82\xd2\x2e\x78\xb5\x33\x52\x99\x14\x6a\x73\x39\xa0\xd6\xbf\x20\x93\x30\x63\x07\xad\x85\xee\x8f\xe6\xf9\x3b\xd6\x1c\x41\x42\x3f\x9a\x80\x86\x1d\xe4\x0f\x41\xf9\x93\x5f\x36\x51\x97\xab\xb8\xc2\x9f\x9f\x2f\x7e\x8e\xb4\xc0\xfa\x0f\x68\x43\x95\x1d\x73\x1c\x97\x8a\x0b\x1a\x91\xde\x15\xb7\x71\xb6\xe1\x35\x37\xe0\xf3\xb8\x04\x80\xef\xea\xa8\x52\x05\x34\x26\x10\xf5\xb6\x54\x87\x35\x38\x0a\x31\xb9\x2c\xb6\x25\xf5\xa3\x27\xa9\x4d\xa2\x70\x58\x0b\xe1\x02\x33\xf7\x3c\x0a\xd1\x3b\x7e\x90\xf6\xd0\x52\xc5\x91\xa5\x8e\x03\x07\x84\x66\x92\x25\x3b\x10\xd3\x8c\xa1\x70\xc9\x20\x29\x91\xdb\xd7\xf8\xe8\x81\xa7\xcc\x9b\xa4\xfd\xed\xdf\xfc\xf2\x55\xd8\xea\x78\xb2\xa3\x26\xeb\x8a\x5d\x5a\xa0\xf1\xe3\x97\xcc\x61\xb0\x17\x9b\x43\x45\x56\x48\x2a\x88\x68\xbd\xa1\xe7\x8e\x17\x6f\x1d\x47\x41\x1b\x54\xbb\x3a\x8e\xc1\x8e\xae\x1c\x7f\x70\x4f\x70\x4a\xae\x16\x4d\xbe\xd5\x73\x6f\xb8\x1b\x00\x2e\xda\x17\x48\x6b\x24\x19\x4b\xcd\x96\xc6\x78\xba\xa5\x89\x96\xb5\x61\xce\x6d\xac\x88\x63\xcd\xdd\x85\x18\x62\xf6\x3b\x43\x3f\xca\x53\xa1\x16\x6c\xca\x1e\x30\xc8\x7a\xec\x3c\xfb\x27\xf2\x5a\xd6\x51\xb8\x93\x71\x1f\xd4\xae\xe6\x82\xbe\x55\x4b\xd5\x16\x6b\x3f\xac\xda\x6d\x6b\xb5\xa6\xcd\xe4\xde\x7f\x66\x91\xcb\x3d\x75\x0c\xb2\x6b\x0d\xfb\x0f\x88\x76\x33\x27\x72\x83\x5e\x70\x6d\x30\x63\xd6\xb3\x51\x49\xd4\x07\x19\xd8\x29\x83\xc7\x11\xda\xf1\x00\x25\x9e\x92\x70\x22\xfc\xa4\xad\xc7\x36\x42\x06\x45\xfc\x7e\x4e\x36\x54\x24\x3c\x75\xc8\x20\x63\xb0\x7a\xde\x36\x54\xda\xb8\xbb\x36\x44\x6d\x6b\xef\x5d\x17\xe1\xa3\x32\x9f\x55\x37\x2d\x7e\xc9\xae\x37\x77\x78\x30\x1b\x68\x66\x8d\xf3\x6c\x7e\x30\xbc\x0c\x05\x9f\x20\x2f\xec\xda\x76\xef\x6a\xa0\x5d\x6a\xc7\xd4\x25\x79\xd5\x1f\x6a\x69\x0a\x48\xbd\x75\x66\xef\xed\x67\x59\xc1\x4e\x22\xc2\x0f\xfe\xae\xe6\xe1\xd9\x47\xc4\x59\x34\x43\x96\x6e\xef\x00\x61\x4b\x3c\xb3\x1c\x84\x00\x14\xb4\xc7\x4a\x76\xe5\x6d\x23\xfa\xee\xa6\x43\x4c\x79\xf1\xb5\x75\x63\x27\x6f\x54\xf6\xf8\xb7\xd8\x1a\xf0\xc3\x82\xf7\x6b\xdc\xd9\x28\x78\xd4\x3d\x4e\xe1\xc8\xd8\x18\x35\xea\x20\x1a\xb3\x60\xed\xb4\xcf\x2a\x41\xb3\x7a\xdf\x85\x56\x2f\xc9\x37\xa3\xd0\xa3\x71\x8e\xcb\xbe\xc3\x36\x2f\x36\xe7\xa4\x22\x13\xd4\x24\x28\xe0\xbc\xfe\x38\xcd\x8b\x12\xf4\x68\xe9\x45\x9c\x0b\xf2\x94\x0d\xa4\xb6\xe0\xfb\x4a\x3b\xfd\xf9\xee\x1b\x00\x1a\xc2\x58\xc3\x4c\xa6\xdb\x26\x47\xab\x43\xd7\x6d\x5a\x33\x41\x9c\x1a\x76\xc2\xef\x1f\xd2\x1a\xdd\x5a\xa9\x9c\x38\xf5\xb4\x32\xd3\x4e\xed\x08\x7c\xb4\xd7\xa0\xe3\xf0\xb1\xd3\xd4\x3f\xdd\xc8\xfa\x29\xb9\x22\x2f\x46\x16\xb2\xe3\xe8\x2c\x14\x65\x4e\xd8\xc8\xbc\xdc\xd3\xc0\xf9\xe1\xdd\xa1\xda\xaf\x10\x66\x1f\xe3\xea\xec\x19\x7e\x38\xb7\x87\x6e\xdf\x9c\xde\x63\xba\x6a\x24\xd2\x34\x06\xc8\xf7\xc2\x8d\x93\x6d\xa7\xe6\x3a\x0e\x30\x24\x56\x84\x03\xac\x8c\x51\xa7\x89\x26\xdb\x00\x25\x9f\xf2\x82\x66\x3b\x57\x28\x02\xd2\x61\x38\xd1\xbc\xe6\x77\x6d\x93\xfc\x23\x69\xab\x1d\x55\xce\xc2\xed\x41\xbc\x91\xee\x20\x38\x24\x7b\x34\xaa\x81\x0e\x62\xb1\xec\x53\xc3\x31\x52\x5b\x3e\xcf\xdb\x84\x3e\xad\x18\xe8\xc6\xa3\x1b\x78\x68\x3c\x4b\x4f\xb6\xf2\x59\x1d\xad\xc1\x47\xe7\x59\x1d\x42\xf7\x89\xf5\x92\x6e\xb0\xdd\xaa\xb9\xfe\x57\x45\x1e\xa7\x2c\x9a\x3c\x74\xb2\x55\x2c\xdc\x68\x8f\x97\x6a\xbb\x33\xef\xc9\xb1\xb3\xd1\x62\xee\xe2\x73\x99\x89\x5d\x93\x05\xdc\x79\x4a\x4f\x80\x03\x7c\x1f\x51\x05\x1f\x3c\xba\xd5\x56\x3a\x54\x6b\x26\x1d\xf1\x56\xda\x92\x61\x28\x7f\x98\x80\x0b\xab\x69\xd6\x75\x5c\xbf\xc0\xa7\xe8\xa7\x75\xf7\x02\x81\xe2\xff\x0f\x4f\x2f\x7b\x64\x2e\x0a\x5d\xef\x66\x8c\x3c\x75\x57\x73\xc8\x21\x7a\xc5\xa8\xcc\x08\x4a\xcd\xc8\x2c\x24\x42\xc1\x0a\x51\x33\xea\xdc\xbc\x31\x5e\xc3\xa8\xf4\x16\xb5\x62\x84\x5e\x11\xde\x32\xb9\x4b\x84\x47\xde\x0a\x8b\x15\x8e\x0c\x0f\x17\x77\x03\x5c\x99\xd5\x96\xbf\x77\x15\xc6\x08\x10\x47\x62\x29\x34\xaa\xa3\x6c\x26\x85\x8c\xf1\xf9\x20\x2f\xb5\x63\x14\x2c\x44\xe4\xb5\xd6\x04\xba\x38\xd5\x77\xe2\x09\xc4\xe3\x37\x85\x18\xdc\xc2\x19\xac\x71\x54\x2b\x59\xef\x57\x26\xcf\x05\xb9\x4a\x6a\x93\x01\x07\x4d\x11\xe1\xbb\x47\x6e\xb1\x53\x5e\x10\x59\x55\x59\x3d\xc0\xc1\xf1\xcc\xb9\xbe\x50\x94\x79\x36\xda\x7b\x11\xf8\x2d\x6d\x7e\x3d\xc1\x13\xaa\x8e\x5f\x7a\xe1\x69\xfe\x1a\x39\x7e\x23\x33\x0b\xe6\xaf\xa5\xe5\xeb\x93\x1d\x58\x05\x06\x4e\xb8\x5e\xba\x38\x08\xad\xf5\x85\x58\x24\xed\x71\xb3\x73\x68\x53\x07\x86\x92\xd4\xf2\xd3\xa9\x9f\xea\xd7\x4e\x89\x7d\xd8\x16\x4e\x8c\xbc\x17\x78\xe5\xcc\x67\xb3\x67\xb8\xf9\xf0\xe6\x30\x0e\xdf\xe3\x9c\x96\xec\x71\x0c\xb8\x4e\x72\xe9\x3a\x25\x20\x78\x64\x88\x45\x98\x11\xa5\x68\x7e\x8d\x36\x5d\x98\x97\x48\xd3\xf5\xde\xe0\x67\x25\x4d\x89\x77\xa4\x61\xaf\xf2\x1c\x85\x1d\x99\xfc\x54\x7b\x5b\xe1\x60\x51\x50\x20\xc7\x57\xac\x67\x41\x11\x8e\x66\xb9\x65\x0c\x91\x75\x1d\x5c\x40\xf2\xd7\x73\x80\x43\xc1\x75\xfd\x54\x51\x72\x54\xc3\xeb\xa1\x5d\x87\x11\x7d\x71\x53\x6a\x80\x21\x07\xda\xbd\xdd\xdb\x9f\xc1\x13\x92\xf3\x5e\x18\xad\xa1\x3c\x32\xab\x6d\x6a\xc3\x5c\x4f\x18\xc6\x01\x2f\xc2\x61\x1b\xf4\x61\x84\x19\x87\xf0\xf5\x9c\x95\x71\x20\xe1\xd8\x59\x77\x23\xdb\xc0\xa1\x8b\x0e\x32\x5b\x8a\xfc\x12\x96\x49\x73\x70\xc8\x11\x21\x8b\x9f\x86\x81\xa8\xed\x53\xdf\x83\xf3\x04\x1b\xd8\x87\x30\xf3\x90\x8d\x24\xd2\x9f\x19\x7d\x28\x5a\x13\x09\x06\x6f\x3b\xe6\xc2\x90\x94\xc7\x7d\x20\xd7\x90\xd1\x92\xea\x50\x4c\xeb\x2a\xcc\xce\x65\x42\xb4\x33\x2a\x53\x84\xa9\x12\x44\x3b\x4b\x66\x24\xde\x0f\x3f\x9a\xc8\xe4\xe8\xa8\x99\x34\xe1\x38\xff\x73\x44\x7f\x6c\x6e\x94\xd9\x25\xf5\x6e\x43\x13\x20\x10\x1c\xd3\xbe\x7f\xd4\x14\x96\x02\xb3\x36\xb2\x91\xfe\xd6\x28\xa2\xab\xa7\x24\x8b\xa3\xab\xca\x24\xe8\x38\x61\xf5\xc3\xdc\x44\x81\xac\x41\x93\x7f\xfc\x6c\x9d\xc8\x31\x25\x1b\x45\xbc\xd0\x17\xb9\x38\x1a\x59\xec\x66\xe2\x36\x19\xed\xa4\xa3\x3e\xc9\x1c\x07\x08\x79\x0b\xd6\xa9\x18\x2d\x37\x35\xb1\x58\xc6\xd3\xec\x7a\xef\x28\x22\x55\x8c\x1d\x4d\xbb\xa2\x9a\x3b\x89\x71\x9c\x2e\x82\x41\x9b\x98\x07\xd6\xe9\x43\x52\x3a\x60\x4e\x05\xad\x49\xb6\x50\x52\xcd\xeb\x8f\x5c\x27\x83\xe2\x00\x21\x9e\xe5\x9f\xd9\x68\x71\xad\xe6\x8e\x49\x4c\x9f\x1d\x93\xe1\xb3\xe0\xeb\xac\x77\x74\x17\x50\x27\x88\x22\x6c\x3b\x28\x3c\xc2\xc7\x3a\x66\x02\xee\xe6\xe5\xb7\x7f\x79\xc1\x52\x2d\xce\x10\x64\x36\xa1\xe5\x59\xcd\x52\xc9\xd7\x42\x2a\x44\x6d\xb1\x47\x3c\x85\x8f\xa8\x9e\xd0\xa8\x01\xf9\xe9\x57\x59\xa3\x48\x62\xaf\x53\x71\xb4\xab\x8e\x55\x9e\xa7\xdb\x89\xe0\x28\xf1\xbc\x5c\x89\x65\xbb\xe7\x0f\xe7\x60\x04\xff\xd0\xd4\x53\xf8\xa1\xc9\x03\x44\x3b\xfa\xdf\x23\xce\x8a\x8c\x71\xd7\xc8\xec\x1e\x70\x85\x38\xd5\x91\xea\x88\xee\x99\xad\x59\x5e\x37\xac\xcd\x3d\xed\x2f\x71\x58\xcd\x6b\xd6\x3c\x4b\x37\xf9\x54\x1c\xca\x29\xa1\xbd\x49\xee\x0e\x41\xfa\x6c\xc5\xee\x1b\x46\x3e\x1b\xb1\x7d\xac\x99\xdb\xa9\x72\xbb\x19\x43\x92\xe7\xb6\xc8\xdd\xb3\x53\x63\x79\x05\x16\x57\x7d\x15\xc6\x21\x98\x67\xad\x65\x87\x2b\x88\x75\xa4\xf9\x7f\x13\xee\xa5\xe0\xe7\x81\x80\x17\x3a\x16\x3f\x04\x58\x3a\xd3\x87\xb7\xad\x39\x4b\x92\x22\x79\x4b\xc6\xab\x5d\xc2\x8c\xcf\xf9\x7b\x26\x2c\xee\x6a\x2d\x0f\x56\xbf\x6e\xb5\x4e\x18\x7b\xe2\x6c\xd5\x33\xe9\x3a\x68\xfd\x88\x04\xd1\x4a\xbb\x0c\x91\xd7\xd0\xcd\x48\xc8\x44\x7f\x00\x05\xc1\xb7\xea\xe6\xfe\x20\x64\x21\x2f\xad\x92\x5a\xb0\x54\x47\x62\x9c\xa6\xa5\xe5\xbc\x21\xb5\x90\x27\x6c\x42\x02\xff\x1c\x6e\x3b\x8e\xa1\x21\x30\x5f\xa2\xf7\xb4\xdb\x4f\x27\x5e\x68\x36\x18\x7a\xed\x3d\xe6\x47\x1e\x86\x67\xd1\x5b\xf0\x55\x7f\x5a\x89\xb4\xa9\x0e\x04\x9d\x1d\x9e\x37\x37\xde\x05\x2b\xf8\x7b\x9b\x1b\xc2\x83\xcc\x73\xbb\x12\x5e\xa5\x6b\x39\xe0\x5b\x1f\x54\x6d\x89\xd1\x91\xdf\x6b\x39\x09\xce\xd9\x8d\x49\x78\x60\x01\xac\xb2\x5e\xee\x98\xa1\x9b\x38\x10\x52\xea\x63\x80\x25\xb6\x9a\x6b\x62\x08\xd2\x2f\xc9\x88\xc6\x32\x2c\xa5\x55\x54\x92\xde\x00\x71\xb3\x03\xa1\xc7\x45\xba\x93\x0e\x90\x83\xbd\x45\xd8\x17\x73\xc2\x20\x97\x8a\x1f\xe1\x9b\x93\x60\x2d\xec\xd9\x02\xcb\x7f\xa1\x18\xc7\xa3\xa8\xa7\x58\xe9\x62\xfb\xdc\x24\x8d\xf2\xa4\x1f\x41\x3c\xb7\x92\x78\xff\x8d\x2c\x16\x70\x6b\x0a\x70\x55\xb3\x17\xeb\xc3\x43\x6a\xeb\x9e\x62\xc0\x2f\xa6\x65\x12\x61\xdc\x7e\xb4\x1f\x17\x11\xfd\x1a\xc5\x83\x41\xa4\x28\x75\x24\x1d\x17\xa2\x32\x8b\x76\x92\x96\x79\xdf\xce\x31\xd8\x24\x30\x25\xa4\xd1\xd6\xdb\x7a\x52\x1b\x3b\xd8\x5c\xe8\xea\x59\xd9\x1b\xc6\x38\x3c\x48\xe4\xbc\xe0\x8c\x2e\x47\x46\x4f\xee\xe5\x9e\xf2\x93\x73\xab\x47\xff\x14\xfa\x1f\x5c\x62\x1f\xa3\xef\x9c\x26\x81\x90\x73\x06\x2c\xec\x42\xb9\xda\xbe\xab\x8f\xca\x6b\xe1\x66\xf5\x7b\xfb\xa6\x6e\x7d\x70\xf2\xe1\x31\x87\xeb\x02\xc0\xf2\xba\xd0\xf4\xad\x93\x65\x5c\xfb\x60\xd3\xb3\xfe\xb6\x12\x69\x78\x28\x35\x9a\xfa\x06\x99\xe9\x45\x56\x7a\xf3\x9b\x59\xaa\x35\x21\xd2\x33\xee\xec\xa5\x65\xba\x37\xca\xf2\xc4\x4b\xdd\xa5\x64\xb6\xb4\xa7\xd8\xc8\x04\x4c\xdd\x90\x0c\x04\x96\x75\x64\x7e\x6d\x1c\x10\x57\xcb\xad\x2b\x91\x41\x8c\x07\x87\x35\x29\xe0\x4b\xb6\x7f\x8d\xff\xa3\xff\x6c\x1c\x0e\x75\x3d\x77\xad\xff\xd0\x34\xca\xb9\x63\x3c\x29\xb3\x6e\x3a\x4a\x4b\x22\x92\x36\x5f\xc9\x5c\x78\x08\x48\x7e\xa1\xe1\x65\x81\x06\xd1\xa4\x83\x30\x02\x8b\x97\xc7\x0c\x40\x47\xac\xc4\x84\xf0\x13\x94\xc9\xd8\xfd\x50\x76\xf8\x7e\xb2\x1b\x4f\x06\xda\x55\x0a\x4c\xa8\xbc\x9f\xb6\xb4\x5d\x3a\xeb\xbd\xda\x63\x99\xe4\x97\x63\xce\xff\x7d\x1d\x0f\x07\x1d\x30\x8d\x6b\x3c\xbf\x12\xe1\x4c\xf6\x24\x2b\x9e\x71\xf5\x4f\x35\x39\xfa\xac\xe7\xbc\xff\xf8\x9e\x3e\x2b\x31\x3a\x63\x5e\x7a\x19\x53\xcf\xe9\xa7\xe6\x02\xdc\xa1\xec\xf0\x60\x97\x9e\x40\x3e\x17\x37\x2f\x57\x9b\x73\x1d\x9c\xe5\x1e\xb1\xf0\x32\x29\xb6\xae\x00\xe0\x9c\xb9\x6d\xb7\x0e\x5e\x76\x09\xa9\x83\x2a\x01\x47\x46\x3b\x83\x49\xa2\x10\xb4\x9b\x94\xc2\x22\x69\x3d\x1d\xc1\xd1\x9f\x9d\xf5\x84\x61\x89\x7b\x74\x7a\x83\x6c\xa4\x48\x7d\xbf\x9f\x23\x9f\x28\x62\xd2\x02\x39\x36\x1f\x34\xf4\xf3\x45\x7e\x3f\x4f\xb1\xcd\xe3\xf9\xf4\x6b\xbf\x7c\xc7\xb1\x2c\xb0\xbc\x6f\x93\xf7\xc9\xc4\xbd\xa4\x2a\x70\x32\xa9\xda\x15\x68\xff\x69\xf0\xa5\x19\x70\x6a\x1e\x34\xff\x57\x4e\xa0\x0f\x0d\x75\xa1\xd9\x69\xd0\xac\xc1\x7a\x89\x85\x32\xf2\x12\xd6\x56\x40\x83\xe8\x3d\x88\x6b\x05\x72\xc7\xac\x9c\x45\x32\xd8\x75\xb1\xba\x65\x8d\xbd\x01\x1a\xb2\x82\xcc\x64\x68\x39\xd9\x90\x0c\x67\x4a\x9c\xe1\xf8\x6a\x77\x90\x8e\x2e\x51\xc6\xff\x47\xf6\x9e\xcc\x17\x2b\x03\xc8\x16\xa4\x6a\xb3\x8d\x4c\xc0\x12\xc5\xcb\x5b\x4f\xdd\xff\xf3\x3f\xbf\xba\xf0\x8a\x3e\xa2\x57\xca\x7c\x00\x7f\x59\x1b\x94\x10\x29\x97\xe8\xd6\xd8\x53\x88\xfd\x12\x64\x0f\x80\xb1\xfd\x39\x67\xc8\xe6\x1e\xe3\xf5\x3c\xc2\xac\x37\xc0\xb8\x62\xa6\x97\x71\x0a\x2f\xdd\x13\x85\x8f\xdd\xde\x30\x3a\x40\x9d\xa1\x97\x2d\x89\x23\x2a\x2e\x20\x63\x74\xef\xb5\x6c\xb1\x2f\x45\xac\x43\x5c\xb7\x68\xc0\x6d\x3d\x26\x18\x00\x9e\x00\x7d\xd0\x15\x0a\xbb\xfa\x86\xe6\xa6\x87\x39\xdf\xdc\xe0\x9f\xef\xd8\x5f\x26\x90\x69\x88\x29\xbc\x92\x10\xb5\x6b\x25\xe6\x04\x22\xa7\x4b\xe9\x71\xc9\x3f\x53\x0d\x91\x20\x1f\x81\x18\x2c\xf3\xd3\xcb\x2d\x7c\x5a\xfe\xc1\x04\x2e\x63\x6f\x92\x42\xe8\xf5\x3f\x91\x00\x8a\xda\x38\x16\x3e\x39\x41\x25\x16\x9e\xc1\x93\x2d\xf7\xd3\x82\x91\xc8\xd7\xee\xcb\x6f\x64\x79\x44\x12\x1a\x64\x13\x7a\xd9\x70\x18\x8f\xfa\xa1\x4c\x34\x41\x76\xc4\xba\xd5\x39\xf9\xca\x58\x38\xc5\x08\x02\xf0\x5b\x84\xf0\x4b\x70\x0b\xe6\xd5\x91\xee\x8f\x49\x65\xe0\x51\x23\x3f\x1e\x7a\x4e\x8f\x56\x4f\x86\xdb\x50\xe7\x80\x99\xdb\x57\x71\xd3\x32\x8f\xf3\x6a\xbb\xf0\x05\x70\x54\x23\x1f\x05\x74\x10\xa9\x8e\x31\x9d\xd3\xe6\x86\x47\xd2\x37\x37\xca\x3c\x51\x77\xf6\xa5\x76\x43\xd7\x2d\x30\x61\x7e\x19\xef\x15\xf6\x82\x0c\x67\x81\xea\x87\x6b\x20\xcb\x03\xc4\xeb\x1e\x89\xdf\x14\x3c\xae\x29\x33\x92\xd3\xba\xb1\xb6\x09\x14\x49\x59\xa7\x38\xca\x20\xde\x49\xa0\xe1\x1f\x50\x8d\x7e\x8c\xbb\x86\xf4\x4a\xe9\x20\x29\x4a\x05\x5c\xfc\x09\x68\x3f\x78\xde\x29\x30\x49\xa1\xe8\xca\x77\x88\xb2\x91\xd9\xa2\xdc\x91\x83\x24\x2e\x92\x82\xc8\xf2\x21\xb3\x52\x37\xd5\x6b\x00\x1f\xc7\x3c\xc6\xba\x48\x37\xe8\x70\xf9\x47\x05\xb3\x54\x3e\xe5\x2b\x96\xc6\xae\x89\x1e\x98\xb5\x09\xbb\x81\xe0\x74\x3f\xa2\x2c\xb3\xa2\xb7\xc2\x24\xc3\x98\x50\xe8\x6d\x4d\xf7\x51\xc2\x60\x41\xc1\xe4\x88\x45\xff\x2b\x5a\x75\xa7\x69\xf5\xfa\x7b\xb0\xdc\x0b\x1b\xfd\x83\x1d\x76\x51\xf9\xfc\x4d\x35\xa5\x58\x5b\xf9\x09\x98\x14\xc0\xcd\xbf\xd7\xbe\x56\xf6\xd3\x50\xe1\x75\xae\x38\xf5\x05\x0a\xb0\x9f\x5b\x04\xa1\xdb\xf4\x31\x45\xc5\x97\x3a\x28\x5c\xff\x6c\x53\x86\x5d\xd0\x39\xd9\xe5\xa4\xea\x39\xeb\xcf\x0c\x37\x73\x91\xdf\x0a\xcb\x53\xa1\x91\xcd\x33\x8e\xca\x16\x9d\x06\x80\x10\x2d\x46\x20\x55\xec\x80\x03\xa6\xc1\x61\x33\xdb\xd8\x69\xda\x53\x60\x91\x77\xf5\x90\x5f\x61\x6e\x96\x39\x39\x72\x3b\x9d\xbc\x19\x0c\xf4\x19\xe0\xf3\x17\x20\x5a\x38\x8b\xf0\x9b\xd2\x02\x44\xeb\xc0\x1a\xfc\x3e\xd9\x38\x19\xc9\x2e\xdf\x2e\xa9\xf0\xc1\x35\xad\xb4\x9f\xd9\x07\xe1\x4c\x95\x15\x90\x1a\xc6\x76\xfc\x23\x5e\xdf\x1a\x5d\x15\xc7\x08\x75\xbd\x68\x79\xac\x01\x3f\xad\xdc\x92\x41\x72\x3f\x4e\x7b\xb9\x9d\xf9\x8a\xee\x60\x55\x33\x7d\xcd\xc1\xb5\xf5\x22\x42\x41\xaa\x96\x63\xd4\x00\x51\x04\xc1\x83\x16\x18\x32\xe0\x41\xb0\xd6\x00\x1c\xd4\xaa\x3b\x1e\xc4\xbd\x44\xa7\xb0\x73\xb2\x0f\x08\xf0\x98\x62\xd1\x25\x67\x49\x7a\x12\x87\x60\x85\xa6\xc2\xeb\x2c\xe3\x9d\xed\xf3\x7d\x52\xe0\x89\x0b\xb1\x63\xc2\xe5\x99\x56\x47\xfe\xc5\x99\x76\x0a\xf9\x40\xae\x0b\x9e\xfb\x0f\x81\xe9\x64\x0b\x25\x10\x01\x3b\x89\x7e\x93\xdf\x08\x0f\x25\x96\x36\xc3\xeb\xe5\x01\x5a\xde\x80\xdf\x42\x4e\xf3\x27\x60\xd2\x88\x1b\x09\xcc\x15\x18\x65\x3d\xd8\xb3\x8d\xa1\x20\x8f\x33\xa3\x03\x46\x66\xb6\x36\x98\xe2\xc1\x84\x34\x16\xfa\xd4\x81\x24\x8f\x9a\xbe\x39\xc5\x3d\x1e\xf9\xc4\x2e\xd4\xb9\xe0\x52\x79\x8a\xa9\xbd\x9a\x4d\xc8\x6f\xf5\x48\xea\xac\x19\xcc\x80\x2d\xff\x28\x38\x04\xc1\x59\xbf\xbb\x73\x95\x46\xb8\xe3\xd6\x99\xa9\xe6\xc2\xa5\x2f\x3c\xc2\x30\x19\x81\x55\x03\x72\x0a\xd3\x08\xcc\xe1\xa2\xf2\x58\x5b\xd3\xb4\x63\xc7\xc2\x1f\xa2\xc0\x74\x34\xb7\x59\x41\x00\x7c\xd3\x5d\x4c\xcd\x53\x6b\xd4\x81\x2a\x85\x45\x49\x94\xe8\x81\x40\xfd\x81\xa6\xf0\xd0\x6c\x53\x49\x44\x02\x8d\xf3\xa4\xa7\x76\x40\x8e\xd2\x01\xdb\xbd\xef\x9e\x1b\x1e\x04\x38\x03\x33\x06\xe0\x52\x32\xcf\x9e\x7a\x8a\xb2\x96\x11\x86\x59\x51\x02\x89\x63\xb7\x40\x2f\x95\x04\xf3\x84\x94\x46\xd9\x98\x39\x9b\x97\x52\x1f\x09\x24\xcf\xe3\xd5\x23\x01\x22\x41\x70\xd8\x76\xd1\x48\x74\xfe\xdd\x67\xde\x2b\x08\x18\xac\x2f\xd2\xbb\xcf\xbe\xa7\xc4\x8f\xf3\xef\x3e\xf7\x5e\x01\x92\x47\x7d\x94\xee\x6e\x7c\x29\x69\x19\x0a\x47\x30\xdd\xc6\x79\x72\x39\xcd\x26\x85\x65\xa2\xe7\xe4\x03\x21\x50\x2a\x64\xf7\xbc\xe3\xb8\x22\x4e\x3d\x2c\xc8\x35\x32\xda\x90\x60\x5f\xb7\xaa\x51\x2f\x3b\xd3\x64\xd8\xe5\x53\x2c\x10\x5f\xca\x73\xe3\x28\x02\x3d\x24\x35\x03\xad\x4d\xb9\xfd\x7e\xfd\x80\xe1\xc0\xd2\x3e\x1c\x97\xda\xb7\x96\xdb\x7e\x46\x7f\xbd\x88\x27\x00\x87\xf7\xbe\x9d\x3a\xb3\x5e\x45\xb7\x9c\x10\xd1\x53\xe3\x23\x52\x77\x36\xea\x78\x78\x9e\x6b\xf0\xc9\x1d\xfa\xa4\x80\x17\x1e\x6c\x1a\xe9\x9c\xa9\x2e\xac\x3c\x30\x43\xe4\x09\x1e\x37\xf7\xfd\x56\xf6\x04\x04\xe0\x14\xcd\x74\xbb\x78\xd3\xb6\x75\x5d\xb9\x0a\xa6\x93\x06\xde\xbf\x6e\x6b\x4b\x57\x8f\x97\x74\xe4\xec\xf5\x8c\x17\x44\xfb\xd0\x43\xd5\x96\xbc\x78\xfc\x91\x89\xc9\x55\x92\xe4\xae\x19\x9b\xa3\x89\xe6\xc2\x24\xec\xd0\x06\x7a\x48\x92\x7b\x07\x8b\xdf\xd9\xa6\x1d\x67\x54\x6b\xf6\x07\x52\xaa\xa2\x9d\x05\x65\x6f\xfe\x8e\xc6\x94\xa6\x82\x9c\xc8\xf7\xeb\x17\xd8\x62\x08\xe3\x26\x3a\xc1\xe6\x6e\x96\x77\x77\x51\x94\x0c\x85\x99\x3e\x60\x95\x09\x56\x48\x53\xc7\x40\x29\x39\x24\x30\xe9\x74\x90\x3a\x83\x12\x69\x1c\xbc\xac\x7a\x22\x03\x30\x9b\x28\xec\x31\xb2\x74\x7c\x8f\xe4\xff\xe5\x35\x19\x68\xd1\x94\x10\xd6\x75\xc3\x14\xd9\x27\xb7\x7c\xd5\x93\x03\x84\xd0\xc2\x41\x90\x49\x3f\x2d\x69\xe3\x40\x28\x8e\x75\x8c\x9d\x86\x82\x7a\xec\x97\xde\x74\x7c\xd9\xa4\x46\x9d\x0b\x82\x4c\x9c\x58\x59\xcb\xa9\xe5\x32\x98\x5e\xf3\x5e\x36\x00\xe9\xed\x5f\x31\x88\xe5\x7a\xbd\x43\xad\x39\x98\x76\x01\x15\x86\x85\x1a\x6a\x65\x91\x42\x11\x62\x46\x7d\xc6\xc6\x5f\x53\xfb\xc1\x50\x9b\x40\x5c\xa9\xd7\xc2\x4b\xa0\x26\xcd\x72\x2d\x1b\x6c\x0a\xb9\x58\xd9\xe1\x8c\x1e\x1d\x62\xc0\xb6\xa8\x8b\x2a\x10\x60\x41\x26\x35\xca\x8d\x58\x71\x24\x3b\x55\x33\x5a\xc3\xa9\x43\xb0\x93\x67\x37\x76\x87\x37\x6e\x43\x32\xec\x9e\x48\x41\xbe\xca\x97\x92\xb5\x37\x80\xf1\xc6\xb1\x7a\xbe\x14\x3c\x85\x59\xb4\xaf\x31\xef\x34\x77\x79\x27\x8e\x4e\x0f\x76\xe3\x1b\x30\x7d\xb9\x08\x24\xf3\x08\xd7\xa5\xbd\x60\x1a\x91\x4d\xd6\xa9\xa5\x72\x64\x54\x48\xd3\x90\x0a\xc9\x54\xd9\x98\x56\x54\xd0\xdb\x84\x46\x68\x5e\xf7\x3e\xd8\xc4\x11\x6f\x74\xfc\x25\xee\xc4\x45\xb2\x4d\x67\x5a\x39\x75\x62\x9c\xd2\x01\xb5\x8d\xd1\xff\x6e\xab\x95\x9a\xf3\xd0\x6d\x98\xdd\xd3\x9a\xb9\x7f\x01\xdc\x84\xe7\x7e\x8d\x0d\x6e\xc7\x5a\x57\x47\xed\x15\x43\x91\x27\xc5\x64\x00\x6a\x21\xe3\x66\x8a\xca\x46\x48\x7f\x88\xfc\xcc\x75\x8a\x6f\xe2\xe6\xe5\x3e\xb0\xf3\xa8\x2a\xa7\x55\x88\x42\x21\xa8\x60\x5c\xe8\x53\x72\x0f\xbc\x3a\xd5\x98\xd0\x04\x28\x06\x36\xee\xe7\x4c\xa0\x12\x45\xea\x20\x3e\x46\xd0\xa1\x00\x11\xce\xeb\x81\xa6\x2f\xbb\x34\x48\x1c\x22\x4b\x23\x2b\x12\xe9\xe2\xec\x35\xae\xd2\x5e\xd7\xd2\x84\x4b\x1c\xa2\xa6\x12\xad\xba\x0f\x21\x07\xbf\x60\x71\x15\xcd\x7c\x1a\x27\x7f\x1a\xf8\xdc\x3e\xd3\xcf\x9f\xe1\x1f\x4c\x45\xf9\xe6\x58\x8b\xe0\x08\xeb\x2b\x56\xa3\xfb\x22\xe6\xb6\x24\x0c\xbb\xa0\x2f\xd0\xdd\x8a\x13\x62\x08\xd3\x27\x02\x31\x2c\xac\xef\x29\xed\x98\x3d\x87\x7c\xa6\x9a\xca\xe3\xbf\x35\x8e\xd0\x5f\x9e\x33\x5f\xf4\xfc\xc3\x24\xdf\xd3\x5c\x31\x2f\x43\xcc\xad\x46\xfe\x69\xa6\x53\xc3\xfc\x07\xe0\xf7\x79\xd3\xf1\x0e\x30\xba\x50\xaf\x9e\x43\xce\xbf\x73\x29\xb2\xdb\x30\xac\xd7\xb4\x2d\x40\x67\x5a\xb8\x71\xa7\x1c\xad\xea\x99\xfd\xa9\x0b\x33\xa3\x0a\xc8\x71\xf3\x22\x23\x69\x0b\x43\xe7\x07\x43\xaf\x85\x37\x3c\x47\x53\x13\x18\xd5\x70\xbf\x1d\xf7\x52\x28\xc8\x59\xdf\xc4\x4c\xe2\x01\x78\x0d\xba\xd1\xf7\x6b\x2f\x69\xe6\xcc\x5b\x85\x62\x4e\x9f\xd0\x33\x28\x81\x36\x56\x78\x86\x9c\x26\xbf\xac\xb8\x32\xc9\x52\xfb\x57\x9e\xe1\x24\x96\xe1\x72\x17\xe4\x5a\x76\x0d\xf5\x0d\x73\x3f\x7a\x2f\x44\x01\x4d\x66\x60\x2a\xa3\x38\x0b\x3a\xc9\x88\x43\x4c\x0b\x45\x23\x92\xde\x25\x48\x0f\xf2\xce\x7e\x12\x81\xc7\xda\x20\xed\x95\x91\xfe\x35\x4a\x8b\x08\xd3\xd9\x44\xe9\x28\x1a\xe7\xd9\x1e\x98\x8d\xb7\xa2\x31\x2a\xfb\x23\x85\x04\xd4\xdf\xfb\xd1\x38\xde\x4b\xa0\xc1\x6e\x72\x25\x1a\x66\x28\x15\x5a\x44\x1f\x8f\xba\xe8\xab\x81\x77\xc1\xcf\xe7\xcf\x35\x0f\x55\x79\xf7\x07\x9a\xbb\xe4\x3a\x46\x17\xda\x9e\xfa\xda\x87\x2c\x57\x84\x6e\x0a\xfe\xa2\xc2\x06\x5f\x17\x2a\xd7\x59\x97\x8f\xe3\x43\x66\xae\xeb\xb6\xc0\x0a\x52\x4c\x52\xde\x0a\xe4\xeb\xe0\x92\xe5\xf5\xd6\xe5\xaf\x5b\x52\xbb\xe2\x92\xf0\x18\xc4\x6b\x58\x70\x13\xb9\x13\xb6\xab\x49\xd6\x1d\x5c\x4d\x64\x99\x2d\x2b\x02\x58\x96\xd5\x7d\xa0\x2e\x3d\x72\x1e\xeb\xea\x1b\xd3\x23\x21\x2a\x9a\x8c\x18\x0d\xe3\x88\x68\x53\x2c\x14\x81\x0b\x26\x0e\x68\xc0\x51\x53\xf4\x09\xa9\xdf\x50\x75\xd0\x1a\x17\xb5\xea\xf1\x3e\xf9\xb3\xf3\xfd\xa7\xf8\xc5\xb3\xfb\x2b\x5d\x7c\xc8\xd9\x08\xcc\x88\xba\x59\x5b\xa8\xf0\x11\x19\x86\xc3\xe0\x75\x5c\x51\x11\xe6\x45\xa4\x33\xdd\xfb\x6e\xaa\x12\x68\x11\x87\xbd\x8f\x01\x0c\xc6\xa6\xe7\x98\x82\x8c\x5e\x58\x7c\x6f\xd7\x99\x8b\x86\x2b\xf5\xe6\x7e\xdb\x7e\x4d\xb1\x84\x19\xed\xe4\xda\xb2\x6e\x7f\xa2\x5e\x25\x32\x0c\x86\xb7\x42\xff\x4c\x72\x26\xfb\x08\x41\xee\xb8\xb6\x60\x47\x5d\x52\x9f\xb9\xa6\xef\x71\xcf\x43\xf1\xeb\x3b\xfb\x49\x8c\x66\x08\xc1\xa6\x10\x94\x1b\xb3\x8d\xfb\x1e\x64\x6a\x1f\xcf\x3d\x5a\x08\x14\xfc\x7e\xe5\x7a\x42\xec\x50\xe8\x1e\xac\x2a\x0e\x5d\x88\xc8\x85\x79\xe6\x34\x69\x70\x08\x94\x2d\xcc\x69\x7e\x5d\x3b\x44\x48\x33\xef\x55\xcc\x55\x9f\x9f\xf2\x4e\x2f\xe1\xfc\x23\xd6\xd4\xe4\x34\x30\x35\xbd\x78\x22\xd0\x5f\x0c\xe3\x32\xe4\xd8\xe3\x14\x96\x65\xd4\x43\x4a\x0d\x8d\x76\x78\x61\x5b\xe1\xec\xc6\x3f\x57\xe7\x80\xff\x07\x7a\xdb\x13\xa8\x2c\x70\xf8\xf3\xd0\xd9\xba\xd2\x97\x3a\x56\xe3\xc8\xb6\xf4\xcb\xc5\xd7\xc8\xbb\x18\xcc\x17\xb9\x8d\xe2\x2c\x7c\x5d\xd0\x5c\xc2\x91\xc8\x95\xa1\x99\xa3\x85\x2e\x10\xe5\xb8\x7d\x98\x9a\x90\x06\xd0\x6a\x8a\x13\x9b\x25\x6e\xc1\x45\x6d\x8e\x99\x96\x50\x4d\x3f\xad\x9a\xd2\xd5\x0f\xbd\x53\xa9\xab\x4d\xc4\xd7\x55\x3a\x81\x86\x7d\xf2\x09\xdf\xf6\x05\xd1\x48\xa0\x15\x3a\xf7\x75\x52\xa5\x3c\xe1\x81\x75\xa3\xc2\xc1\x5f\xcd\x99\x54\x0d\x66\x5d\x3f\x81\x76\x61\xb1\x5e\xc0\xc8\x8f\xd2\x2d\x84\xf6\xe9\xc3\xf6\xba\x5a\x05\x9d\x31\x2d\x90\xe4\xc6\x7e\xec\x50\x45\xed\xc2\x96\xd2\x96\x1f\x45\x71\x2f\xb8\x9b\x3b\x30\x35\x32\x14\xc4\x36\x7c\xaa\xa9\x27\x28\x23\x4d\xa7\xfd\x2c\xbb\x54\x70\x36\x2d\xf0\xa5\xb9\xe1\xcd\xb8\x97\x96\xd4\x04\x2a\xf1\x07\xbe\xef\xc4\x45\xda\xeb\xda\xd5\x3b\xa5\xfc\x02\xb9\x8d\x44\xd7\x3e\xa8\x40\xf2\xee\x6f\xc9\x90\x8f\xd9\x5d\x3e\xaa\x4c\x9a\x8e\x23\x42\x7a\xa2\x3d\xe5\xfd\xfa\xd6\x29\x81\x48\xf8\xb2\xe2\x24\x60\xa6\x29\xe7\x0f\x12\xcb\x5a\x99\x70\x49\x1e\x24\x25\xc4\x01\xaf\x25\x2f\xcb\xd6\xb4\x5a\x3f\xcb\x96\x49\xac\xc5\xe8\xc2\x06\xf3\x19\xaf\x3a\x5e\xc9\x4d\xae\xbf\xdc\xe6\x0d\x0d\x9f\x3a\x62\x8d\x65\x1e\x8f\x8a\x5d\x93\xff\x57\x26\xc5\xf4\x53\x72\x32\xd5\xa9\x75\x15\x6f\x52\xf4\xd7\x01\x4c\x4d\x0e\x5a\x2b\xb3\xa5\x1a\xef\x4f\xce\x20\x16\xcc\xc6\xb9\xc5\x7e\x8b\x9a\x5b\xf2\x35\xd7\x32\x90\xab\xb1\x14\x81\x3c\x0f\xe0\x12\x28\x9b\x34\x48\x97\x05\xb9\x53\x8f\x33\x37\x72\xbd\x21\xc1\xb0\xab\x89\x59\xc9\x1c\xca\x44\x6d\x0a\x69\xd4\xfc\xec\x75\x2a\x9e\x85\x0d\xc9\xb7\x30\x5f\xd3\x01\xd7\x95\xad\xe1\x93\xaf\x0d\xa2\x75\x87\x95\xa9\x98\x34\xd5\x0b\x73\xf3\xa8\x86\x81\x69\x4b\xc4\x26\x22\xb0\x3a\xa9\x86\x10\x4b\x1e\x3a\x09\x84\x99\x83\x5d\xb2\x5f\xa8\x0e\x3d\x3b\x45\x35\x57\x1d\xb8\xa0\x5e\xbb\xc2\x84\xdd\x67\xb6\x2f\x98\xf2\x52\xfa\xa1\x40\x57\x0d\x30\x4e\x78\xdc\x16\x25\x0a\x31\x89\xaf\xda\xae\x6d\xd6\x1c\x63\xd8\x94\xc4\xb7\x71\x91\xcf\x86\x16\x49\xe4\xb0\xbe\x48\x92\x33\xe6\x67\x5c\x6b\x43\x2e\xdd\xb9\x19\xe5\xa0\xe2\x12\x5c\xc4\xd5\x56\x9c\x4f\x76\xd1\x30\xa8\x76\x70\xfe\x26\xb8\x31\xe0\xf2\xb4\x5d\xc5\x28\x88\x0e\x7c\x96\xc7\x7a\x0c\xac\x14\x78\x74\x0a\x95\xa5\x08\x8f\x63\x7d\x8a\x1b\xf8\x07\x03\x3d\x5f\x07\x56\x07\x1c\x1a\x83\x06\xff\x4a\x11\x7f\xf5\x17\xe8\xde\xfc\x59\x82\x18\x2d\x4f\xb1\x30\xba\xa4\xa6\x37\xbb\x55\xb3\xe4\x71\x00\x1f\x12\x53\x53\x31\x77\xab\xc6\x8b\x6c\xd5\xed\xf6\x64\xd9\x76\xc1\xb0\x32\xee\xfc\x92\xd0\x7f\xe2\xbe\x48\x6f\xc3\xe8\x4c\x8f\xb7\x40\xd5\xcb\x5a\x91\xfd\xcc\xcf\x70\x02\x68\xc3\x49\x20\xc9\x0c\x57\x75\xd0\x18\xf7\xc5\x87\xb8\xe0\xb2\xcc\xa7\x5a\xbc\x98\x55\x1c\xf7\x89\xc8\xe4\x84\x58\x34\xc6\x65\xc1\xb0\x4b\xc8\x55\x70\x63\xd5\xce\x9e\x5d\x7b\x67\x82\x31\x7f\xfc\x5d\x11\x2c\x9a\x8c\x34\x4e\xc0\x32\x6b\x09\x11\xbd\xe2\x17\x9b\x7e\x20\xb0\xbb\x55\x1b\x7b\xce\x6e\xcc\x54\xc0\x95\xca\xb0\x1a\xc6\x5a\x1d\x91\xb7\xd6\x81\x6f\x51\xc0\x07\xa5\xee\xae\x9c\x1c\xae\x2d\xd4\xa5\x06\x37\x9d\x66\xee\x6c\xad\xfc\x8e\x0d\xd3\xac\x99\xe7\xb1\x8e\x20\xd9\xe2\x2f\x5c\x6e\x6b\x86\x7f\xd3\x69\x18\x5f\x4a\xba\x2d\x0c\x57\x68\x7c\xca\x45\xd0\xf7\x7c\x0a\x2a\x2f\x7f\x50\xd3\xe1\x69\xc1\x47\xcc\xc2\xc1\x87\x8d\x3b\x73\x43\x9a\xd7\x0f\x65\x36\x03\x40\x96\x18\x2b\x42\x80\x85\xdd\x49\x12\xc6\xd9\x2c\x3c\x64\x03\xaa\x9e\xc6\x11\xbc\x32\xd0\x95\xc9\x3c\x33\x6b\x1e\x4e\x6e\x29\x4f\x86\x19\x56\xca\x0e\x0d\x79\xc7\xef\x69\x24\xad\xda\x43\x74\x60\x0f\xca\x71\xa4\x98\xc6\xbf\x4b\x55\x5b\xc3\x19\x79\x6f\xd2\x60\x5e\xfa\xfe\x96\x62\x37\xf3\x60\x79\x07\x43\xab\xdc\xf4\x48\x86\x59\x6b\x3f\x00\x38\xd0\x2b\xc9\x0e\x08\x60\xee\x6d\x50\xd6\x65\x2d\xaf\x4d\x7d\x79\x8e\x59\x43\x57\xa8\xa3\xb7\x24\x7c\xf3\x74\xa6\x80\x39\x45\x97\xeb\x2d\xc2\x21\x54\xc7\x95\x4d\x66\x09\x61\x66\xd1\xdb\xbf\xba\xf8\x4e\xc4\xf0\x73\x0f\x68\xa4\xe2\x0d\xbf\xae\x38\x27\x09\x67\x83\xa1\x10\x11\x2e\x1c\x6b\x52\xad\x1d\xe8\x1a\xde\xa7\x82\xbf\x72\xca\x46\x42\x85\xf7\x40\x66\x4b\x3e\x36\x2f\x5e\xcd\xcd\xf7\x26\x1c\x8d\x50\xb1\x12\x21\x0e\xb9\x61\xf2\xff\x92\xc2\x59\x33\xf8\x07\x2b\xe2\x91\xbe\x83\x7c\x3a\x64\xc5\x33\xec\x83\x36\x19\x3b\x27\x8e\x19\xcb\xe4\x4d\xf1\x2d\x35\xf8\x62\x34\x5f\x97\xdf\xef\x6c\xa9\x30\xbd\x71\x7f\x9c\xde\x84\xb8\xd1\xe5\x27\x4a\x28\x30\x85\x18\x3f\x46\x54\x7c\x8a\xf6\x8a\x05\x3a\x3b\xdd\x34\xc9\x6d\x74\x2e\xfc\xeb\x95\x53\x1c\x96\xa5\x88\xc7\x48\x7a\xd5\x78\x26\xb6\x7a\xa1\xb3\x5d\x5a\xfe\xcc\xb7\xbe\xd5\x94\x2b\xfe\xc0\x1d\x63\xf4\xb0\x11\x38\x81\x3b\x51\xcd\x8a\x71\x86\x71\xd6\xa0\x99\x13\xd6\xdd\x5a\x4b\xd2\x29\x16\xae\x32\xd8\x55\x76\xe8\xa6\x63\x2a\x00\xd8\x90\x77\xad\xd6\x7c\x27\xeb\x43\xc0\x14\xde\xc9\x22\xa0\x96\x21\x78\x91\xba\x99\xa5\x8d\xdb\x13\x7e\xde\x36\x7b\x22\xe6\xb2\x4e\xcb\x8e\x96\x77\x9a\xc3\xe3\xab\x50\xc0\x35\x0f\xcf\xc1\xd1\xee\x0e\xe8\x9e\x79\x1d\x9c\x71\xca\xa4\xa9\x62\xf9\xc1\x14\x9c\x75\x14\xa8\x35\x8f\x74\x9b\x48\xfa\xb4\xc6\x97\xbb\xec\x2d\x9f\x04\x7a\x60\xf1\xeb\x61\x2e\xc9\x07\x13\x00\x59\x99\x93\x0c\x0a\xfc\xb9\xd9\x36\xb8\xbe\x0e\x73\xaa\x07\x4c\x73\x19\x51\x52\x18\xd1\x29\x23\xa4\x9a\x1b\xab\x61\xce\x16\xa6\xbb\xbe\x8b\xa6\x0c\x82\x22\xd0\x0d\xeb\x0b\x2e\x84\xc9\xd4\x79\xd2\xae\xf5\x48\x96\x1f\x9f\x86\x8e\x22\x90\xfc\xcf\x1e\x45\xa0\x7d\x5b\x2e\xc0\xd6\x01\x98\x91\xe3\x71\x3c\x2d\x5b\xb8\x8b\x20\x69\x0c\xbb\x50\x19\x29\x40\x14\xd8\x0d\x03\xe8\x8e\xf1\xcf\x70\xec\x7d\xa4\x5e\xa2\x49\xb4\x52\x57\xa1\x27\xbf\xac\xe6\x11\x5a\x55\xb8\xb2\xd0\x47\x2d\x22\x2e\xde\x13\x31\x00\x73\xa3\x22\x11\x65\xa8\x67\x56\x71\x08\xd2\x17\xe6\xd8\x51\xb7\x7e\x87\x74\x42\xa1\x80\x64\x5a\x9a\xf9\xed\x80\x33\x71\xa2\x93\x89\x6b\x6c\x09\x31\xf4\x7e\xd1\x61\x2b\x2f\x5a\x35\x19\xd9\xbc\xd0\x58\xf2\x40\x17\xf5\xb1\x74\xc2\x79\x01\x4f\xfe\xb7\x8b\xbf\x7a\x6b\x2b\xfa\xf0\xc2\x95\x2b\x57\x2e\x80\x7a\xe0\xc2\x24\x1f\x24\x23\x38\xd9\xfe\x56\xf4\x3f\xde\x7c\xe3\x29\x12\x30\x91\xb2\x7f\x89\x96\x27\x27\x42\x84\x9e\x82\x17\x10\x1b\xb2\xca\x63\xe6\xd2\xca\xa4\x42\x35\x15\x5b\x3e\xe3\x83\xfc\x6b\x91\x60\xc6\xac\xdd\xc9\x19\x6a\xab\x4a\xee\x19\x9e\x80\x9b\x85\x40\x4b\xd7\xa1\xd7\x2b\xf5\xd2\x49\x2f\x4f\x58\x3d\x0c\x24\xd1\xd1\x59\x0f\xe2\xde\xa5\x75\x8a\x3f\xb0\xae\xb0\xd6\x35\x55\x2b\x6b\xdb\xd2\x71\x5d\x4d\x8e\xfd\x5c\x27\x59\xf1\x39\xb9\x9c\x98\x0c\x44\xcc\x66\x20\x54\x12\x5f\x29\xde\x00\xbc\x0b\xeb\x01\x54\x03\xb3\x46\x2e\xe4\xa5\xda\x64\x18\x6b\x9c\x8d\x06\x57\x41\x5b\x39\xa5\x6c\xd1\x04\xbd\xee\x9b\x33\xfa\x14\x38\x7d\x7a\xfe\xa6\xe4\x99\xc9\x1a\xc8\xc8\xa0\x53\x9b\x05\x0b\x7b\xab\x7f\xe6\x57\xd1\x0d\x50\xef\xce\xa8\x94\x84\x3c\x6c\x35\x4a\xee\x86\xeb\x83\x52\xad\x07\xb2\x96\x1e\x6b\x20\x22\x6d\xef\x54\x67\x27\xe2\xd3\xd3\x4a\x6c\x2c\xd7\xa4\xe3\xe8\x03\x23\xd6\xec\xcb\x07\x35\x68\x94\x2d\x8d\x8b\xa8\xd7\xdc\xa6\x75\x65\x6f\x44\x62\xb0\x44\xc4\x72\xf0\x1e\x64\xa0\x77\xd3\xc4\x78\x5f\x96\xb1\xa8\x5d\x81\xc1\xbd\x0d\x01\xec\x16\xd9\x43\x96\xd0\x04\x09\xb2\xa5\xba\xb5\xef\xc6\x4b\x46\x87\x53\x2d\x88\x8c\xe8\xc0\x49\x4e\x88\xc7\x41\xde\x6b\xa0\xe9\x3a\x4a\x7c\xe8\xf1\x03\x5b\x46\x97\x5f\xd7\xe3\xf8\x69\xca\xe7\xbe\x44\x86\xb4\xcb\xcb\x8c\xcb\xfc\xb2\xc7\x8f\xd7\x04\xbf\x1a\x7b\x1a\x50\x8b\x18\x81\x4f\x52\x53\x6f\xe4\x30\x1d\x76\x17\xd6\xc0\x2c\xbb\xba\x92\xb6\xf5\xb0\x16\xca\xac\xa7\x45\xa2\xf1\xd6\x43\xb1\x69\xc0\xc0\xa7\x50\x07\x31\x29\xfc\x00\xb5\x79\x1d\x1b\xa3\x2f\xb1\x23\xc6\xd6\x91\x71\x0b\x4f\x41\x58\xcf\xb2\x15\x0d\x29\xf2\xe7\x94\xa8\x07\x93\xb9\x18\x25\x2f\x59\x77\x9c\x18\x89\x8b\x30\x1c\xa5\xb7\x66\x3f\xf5\x5b\x82\x84\x05\x53\x40\x79\x08\x98\x33\x36\x42\xae\x03\xce\x56\xe9\x35\xe8\x67\xc3\x38\xe5\xac\xbc\x27\x24\x4d\xd5\xb1\xf8\x7e\x3c\x1a\x81\x6f\xc0\xd7\xa4\x39\x75\xd4\x52\xfd\x64\x3c\xc8\xae\x72\x1a\xf8\xaf\xdd\xc4\xe9\x54\xf6\x09\x59\xde\x43\x37\xdf\x8e\x73\x6a\x76\x88\x70\x4a\xf8\xb5\x06\xc2\xb4\x19\x62\x29\xe1\xd8\xaf\x4a\x5a\x5d\x59\xa3\x32\x17\x0c\xd1\xea\x29\x1d\x3d\x5e\x83\xf3\x4d\xe0\x70\x56\xa4\xba\x36\x3d\xce\x94\xf7\x5b\xe4\x60\x6e\x5a\xae\x89\x28\x0e\x24\x00\x97\x73\x8a\x2c\xe0\x5f\xaf\x3a\x02\x4e\xf8\x3d\x65\x16\x69\xca\x5c\x43\xbb\x9f\x9c\x8f\xbf\x1a\x13\x7b\xaf\xbe\x82\xb5\xd3\x7d\x87\xee\xa1\xc1\x6d\xe4\x2c\xa0\x16\x18\x6d\x85\xc6\x44\xe8\x5a\x4d\x20\xcb\xea\x6d\xfe\xd4\xd9\xc1\x57\x18\xf7\x7f\x84\xb2\x24\x74\x22\x22\x3f\x11\x6e\x94\x34\xa3\xab\xe0\xb4\xcd\x3b\xa5\x9f\xee\xee\x76\x76\xf2\xec\x4a\x01\x89\xaf\x27\x79\x2f\xd1\x7c\xc4\x3d\x6d\x41\x30\xae\xaa\x98\x7e\x08\x3b\x40\x08\x86\x7a\x77\x4b\x27\x94\x82\xbf\x91\x5f\xfc\xf6\xd2\x89\xff\xe3\x6f\xe8\xbd\x8d\x9e\xb4\xa2\x0c\x95\xc8\xa3\x4b\x52\x50\x28\xb8\xa5\xc3\x23\x14\xfb\xd9\x95\x2e\xfc\x0b\x93\x81\x13\xf9\x61\x61\x8c\x13\x1b\x72\x56\xa6\x25\x85\xff\x4c\x9b\x22\x65\xf4\x78\x30\x0a\x43\x5a\x2d\x2e\x9a\x8c\x10\x9a\xcf\x84\xda\x22\x5a\x63\x32\x35\x8c\xa6\xf1\x77\xb0\x2e\x20\xb6\x8b\xc7\x23\xcc\xa3\xf3\x7d\xc1\xa1\x32\xf3\x15\xf9\x13\x39\x6a\xaf\x70\x1f\x7d\x71\x8a\xcc\xfc\xe2\x97\x6f\xf1\x5f\x98\xbf\xc5\x96\x64\xf4\xae\xd0\xae\x1d\xee\x9d\x73\xc7\x74\x1a\x73\xc8\xe8\x06\x94\xac\x08\xff\x2d\xaa\xc3\xcc\x6d\x63\x4a\x84\x48\x8d\xfb\x79\xbc\xab\xd0\xf1\xbf\x69\x85\x4a\x75\x20\xf2\xd4\x40\x34\xb5\x19\x49\xf3\xaa\x07\x64\x02\x35\x92\xa8\x68\xae\xae\x06\x01\xe4\x0e\xe2\xc5\xbb\xf8\xa8\x9c\x06\xe8\x27\x68\x58\x58\xeb\x27\x78\x2a\x97\x14\x83\x0a\x6f\xdb\xde\xa1\x77\x96\x22\x76\x04\x83\x58\x0a\x6b\x3a\x5b\x8a\xfa\x0b\xc1\xdd\xd2\x7b\xe9\x82\xd4\x42\x98\xef\xe3\x8a\x53\x97\xf3\x7b\xb1\x4d\xcb\x78\x2f\xa0\xbc\x91\x49\x88\xa6\xb2\x31\x0a\xd1\x54\xd4\xd5\x1d\xa3\x31\x67\x63\x30\xaf\x93\x33\x83\x16\x24\x84\x2b\xe6\x03\x6d\x85\x43\x53\x99\xd3\x36\x68\xde\x34\x96\x3f\x64\xd7\x2c\xf1\xf6\x80\xa9\x1b\xa6\xe1\x42\x58\x3f\x74\x05\x6e\xdd\x5f\xcb\xea\x57\xd2\x72\xbf\x3b\x0c\x93\xea\xc8\x67\xe8\xde\x8c\xf3\x4b\xfd\xec\xca\x88\xc2\x59\xf5\x50\x57\xf2\x94\x6c\x65\x5a\xa7\x31\x73\xe0\x10\x9e\x8a\xf7\x4a\xea\xcb\x70\x92\xa4\x7c\x53\x91\x87\xe8\x67\x1a\x91\x53\xc0\x87\x96\x10\x43\xda\x04\x3b\x22\xa8\x2f\x50\x72\xfd\x63\xe5\x95\x20\xc4\x14\x2b\xf5\x07\x52\x2f\x0c\x60\x84\x35\xff\xc5\x34\xbf\x46\x31\x9c\x4d\x9b\x6a\x2d\x35\x20\x7d\xdd\xad\xa8\x6e\xf0\x7d\x60\x37\x74\x1e\xf4\x30\xdc\xdb\xa4\x7f\xb2\x98\x12\x2b\x52\x59\x8b\x23\xbd\x73\xa6\x72\x63\x50\x4b\x95\x44\x54\x1f\x82\x1e\x34\x3f\xaf\x58\x49\x90\x8c\x51\x4c\x80\x31\xe3\xb2\x4f\x05\x86\x99\xba\x18\xc1\x62\xab\xa0\x07\x71\xc3\x64\xfa\x81\x76\xe3\x01\x64\x3b\xbd\xaa\x0b\x2b\x7f\xe5\x1c\x41\xbd\x2a\x4b\xfd\x25\xaf\x64\xd9\x36\x37\xde\xcd\xf2\xbd\xf7\xa8\x42\x37\x65\x56\x0e\x24\xe2\x69\x34\x48\xca\x7e\x5e\x46\x66\x66\x58\xe6\x3a\xd9\x49\xdb\x50\x6c\x60\x17\x19\x98\x23\xad\x74\xac\xe7\x60\xee\x98\xdc\x75\x58\x24\xdd\xf1\xa0\x0f\x8e\xce\x99\xe1\x48\x7c\xed\x4b\x89\x17\x01\x66\x73\x63\x9c\x64\x63\xc0\x11\x7f\xa1\x60\x2b\x2c\xf1\x9f\x82\xeb\x40\x36\x4c\xd0\x6d\x54\xd3\xf5\x53\xf7\xbd\xa1\x85\x73\x73\xa3\x4c\xe2\x21\xd6\x5d\x3b\x06\x19\x12\x88\x02\x16\x6c\x66\xc3\x6f\xb1\xad\xad\xbb\x95\x4e\xac\x8b\x5f\x9d\x12\xd1\xf5\xba\x50\x4e\x82\x3e\x98\x21\x94\x98\x2f\x42\x7d\x11\x66\xcf\x81\x7b\x68\x08\x04\x80\xde\x01\x84\xcf\x5d\x61\x2a\x6c\xb1\xaa\xb7\xb9\xe1\x7f\x0f\x88\x1c\xcb\xeb\xde\x63\x3d\xb1\xca\x63\xe4\xf3\x9c\xa4\x37\x55\x28\xee\x9b\x96\x63\x2a\xac\x89\x48\x47\xe4\xb8\xcc\x1a\xcd\x3a\xbe\x66\x84\x87\x28\x89\xa2\x53\x97\x36\xa9\xb2\x3f\xf0\x4b\x3c\x04\xe4\x8d\x4b\x8b\xc2\xf2\xf4\x5f\x5b\xcd\xda\x29\x72\xf4\x5a\xfa\x72\x4a\x06\xd4\x43\x11\xd8\x8f\x33\x30\xcf\x5a\xd9\x76\x5b\xac\xfc\x3f\x49\xc6\xdd\x36\x2f\x82\xe6\xac\xbb\x74\xf4\x48\xca\x3f\xab\x6c\xd6\xdd\x9f\xc0\x6f\xbc\xb5\xde\xb2\xb4\x48\x06\x0b\x2f\x9b\x06\x8d\x15\x98\x7f\x22\xaf\x6c\xb7\xf7\x7a\x45\x61\x9b\x4f\xfa\xac\x8e\x43\xec\x13\xae\x1e\xf3\xff\xa3\xc2\xcb\x8d\x4b\x0f\xa8\x0c\x1f\xbf\x4e\xee\x4f\x7d\x4c\xc1\xda\xe9\x2d\x44\xca\x57\x36\x06\x2a\x52\x34\xc4\x94\x36\x10\x14\x7f\x40\x7d\x51\x81\x5a\xef\x7a\x8b\x35\x0b\xab\x13\xca\x1b\x74\x70\xfd\x2b\x96\xa6\x68\x70\xe8\x3a\x7b\x8d\x0a\xff\x24\x80\x0e\x85\x0a\x55\x9c\xe1\x76\x2c\x29\xfb\xbe\xf5\x1a\xce\x5e\xc5\x42\x81\xf5\xe3\xeb\x40\xa4\xcf\x53\xb3\x97\x94\x5b\x50\x29\xac\xf6\x77\x34\x75\x3a\x51\x40\xc0\x80\x14\x28\x17\x29\x2e\xff\x60\x15\x98\x52\xcd\x2a\x62\x42\x88\xeb\xed\x09\xa6\x97\xa2\xd0\xfc\x06\x86\xb8\x4a\x17\xcc\xb9\xf5\x62\x45\x15\xb3\xe9\x42\xf5\x1f\xb6\x45\xfd\x89\x79\xed\x6b\xc3\x88\x7e\xb5\x41\xdb\xaf\x2d\x4b\x92\x6e\xa3\x7d\xea\x6a\x29\x99\x74\x03\x05\xd6\xbd\x04\x72\xe6\xe3\x30\xc8\x59\x8a\xb0\x62\xdd\x8a\x5c\xff\xb6\xbd\x8a\x64\x62\x0f\x8a\x1f\xbf\x9c\xb0\xbc\x85\xe8\xc8\xf9\xca\x6c\x22\x81\x04\x49\x05\x14\xdc\xe7\x1a\xd8\x85\x9c\xd6\x54\x7d\x5e\x06\x7b\x6c\x79\xbe\xf0\xcc\x79\xb2\x9b\x87\xf1\x14\x3c\x88\xce\x17\xcf\xd7\xd6\x32\xca\xae\x48\x76\x15\x93\xbf\x22\x7f\xda\xf9\xbb\x0c\xcc\x00\x74\xaa\x20\x1f\xda\x30\x6c\xa0\x1e\xba\x55\x78\xc3\xf4\x0d\x64\x11\x2e\x7e\x86\x2f\xc0\x2d\x4b\xa8\x9d\xe1\xe8\x84\x6b\x3d\x9c\x64\xfa\x0e\xc3\x47\x6f\xc4\x2f\xde\x3d\x27\xb1\x34\xaa\xfc\x14\xe0\xa6\x78\xe8\x32\xe8\x17\x3c\xed\xe8\xc9\x51\xea\x6e\x5e\x2f\x93\x1b\xcc\x13\x55\xef\x70\xa6\xe5\x1a\x3f\xc0\x15\x4b\x43\xe5\x5a\x60\xb7\x8e\xe9\xd3\x98\x3d\xaf\x2b\xfc\xf8\xb1\xd9\x0d\x26\x19\x33\xbb\x69\xcc\x35\x46\x29\x64\xbc\x42\x5b\xf5\x11\xce\x76\x1b\x87\xd6\xc8\xc5\xca\xa4\x2d\x47\x43\x3a\x37\xc1\x29\xc1\x30\x01\xf6\xd1\x5a\xeb\xd2\x4c\x72\xf4\xda\xc2\xac\x89\xa7\x96\x2e\x9d\xba\xb6\xf2\xa8\xd4\x04\x51\x4b\x51\x17\x01\x02\xb8\x46\xca\xaf\xec\x78\xdf\x5c\x95\xee\xec\xc8\x7b\x6e\x47\x36\x9d\xd7\x8e\x48\x93\xae\x05\x2b\x58\x2b\x73\xb0\x5a\x18\x55\xb8\x5a\x08\xa3\x82\x63\xf3\xc4\xc1\xc7\xe4\xa3\xa9\xab\xae\x65\x86\x62\x6b\x5b\x10\x9a\xbc\x61\x0b\xa7\x7d\xec\x69\x1c\xa7\x1d\x62\xeb\x7a\x4a\xd7\x16\x2d\x66\x0e\xb2\x21\xad\x1d\x18\xf2\x6a\x55\xa3\x83\x4f\xc4\x25\xea\x9a\xc3\xd8\x8a\x5c\x69\x9f\x0e\xf8\x04\xb2\x5f\xb9\x6f\xca\xc4\xa7\x99\xb8\x4c\xaf\xd0\xa1\x56\x31\x84\x00\xe9\xec\x5c\x4c\x7d\xb3\x86\x8d\xaf\xbf\x34\xd8\x5d\x35\xa7\x18\xcb\x26\x83\x4d\xc7\xc1\xf1\xb5\x17\x55\x1f\x54\x23\x39\xe3\xb8\x48\x9e\x3f\x1e\x56\xd6\x8f\x41\x52\x13\x03\xec\xcf\x7b\x87\x5b\xaf\x57\xa9\x15\x07\x0f\xb5\x5a\x13\xaf\xc7\xa3\x20\xb0\x97\x86\x3a\xdc\x2e\x50\x79\xa4\xe4\x27\xdf\xa4\xc0\x63\xcd\x9b\x64\x08\xf2\x36\x4a\xc7\x63\x5c\x6d\xb5\x6c\x68\xa8\x08\x15\x34\x0b\xba\xcf\xb4\x6f\x95\xa8\xc4\x63\x6e\xd5\x6c\xac\x11\x75\x11\x7d\x72\x44\x18\x73\x38\x8f\xb3\xf3\xad\x10\x09\xb5\x9b\x37\xaf\xc2\x21\x61\xed\xc4\xea\xb1\x8e\xcd\xd1\xe6\x55\x7f\xa9\x53\xfe\x30\xba\x32\xb8\xce\xf4\xf7\x5c\x24\x1a\x63\xa3\x6b\x43\x71\x18\x8b\x2c\xb3\x21\x18\x5a\x3b\xdd\x28\x1b\xa1\x3a\x19\x8c\x0a\xd4\xd8\x5f\x6d\xdd\xdd\x49\x67\x9d\xa0\xac\x14\x26\x3d\x93\x7b\xb2\x56\xfe\x6f\xd0\x36\x3b\x55\x36\x4c\xac\xd7\x3d\x6d\xb0\x10\x66\x20\xb4\x06\xbf\x8b\xa0\xf8\xde\xe6\x46\x3f\x2e\xf6\x77\xb2\x38\xe7\x3c\x5e\x77\xc9\x49\x1d\xbc\x1d\x8b\xa0\xab\x23\xec\x57\xc9\x90\xf1\x28\xfd\x6d\xac\x15\x52\x75\xfa\x48\xc6\xbb\xd6\x5b\xc3\x22\x63\xfb\x90\xc1\x5b\xeb\x9c\x7e\xa8\x9a\x6a\x4c\xa1\x5a\x00\x85\xe9\x3d\xca\xb3\x2b\x0b\x67\x1a\xbd\x01\xc7\xda\x81\x87\xe2\x9c\xe5\xa9\x93\xca\x38\x2a\x1d\xf0\x81\x61\xd3\x61\x36\x4a\x4b\xae\xed\x03\x7b\x5e\xfe\x63\xc5\x49\xc7\x81\xce\x2a\x99\xbd\x28\xbb\x63\x2c\x22\x71\x9b\x0f\x53\xd7\xd9\xe6\x5f\x1d\x57\x28\x00\x93\xac\x04\x81\x88\xaa\xe3\x2f\x9e\x8f\xce\xf7\xd1\xe6\xae\x0f\x17\xad\xcf\x0a\x2e\xd2\x1e\x5b\x39\x5d\xd3\xb5\x6c\x99\x8d\x93\x3c\xb6\xaa\x3e\xe9\x33\xef\x0c\x78\x55\x41\xd9\x10\x6d\xe3\x93\x22\xb8\x0f\xed\xfc\xea\x1e\x06\x39\x4b\xe1\x0a\x80\xe6\x04\xd7\xd8\x4d\x47\xbb\x19\x79\x75\x23\xf4\x1d\xe9\xf7\x29\xd9\x52\x64\x17\x5f\xd8\x41\x43\xeb\xce\x8b\x41\xe9\x0b\xe4\x75\xd1\x22\xc0\x47\x79\x2d\xbc\x52\xfc\x6e\xf1\xc7\x99\x6c\x5a\xc7\x20\xce\x40\xa7\xe2\x38\xa6\x16\x88\xdc\x11\x2a\x59\x5a\xa8\xf6\xdd\x71\x3f\xac\x7f\xb3\x31\xbc\xfe\x16\xbc\x28\x60\xf1\xad\x16\x0f\xec\xac\xc7\x2b\xed\x1d\xb1\xc9\xd2\xe2\xf8\xc0\x79\x09\x30\xd4\x2e\x8c\x81\x73\x77\xea\xa3\xb9\x07\x35\x97\xbe\x00\xfe\x97\xa5\xc9\xa7\x43\xc8\x9b\xdd\x4f\x88\xb0\x9a\x84\x59\x62\x0b\xbe\xb2\x46\x0c\x67\x32\xef\xd4\x7e\x35\xe9\x7c\x9d\x2f\xe4\x00\x3a\xa5\xf8\x33\xe1\x38\xe8\xf5\xd7\x66\xa1\xe6\xbe\xec\x63\x8f\xc6\x41\xce\x2f\xe0\x24\xb1\xf0\xee\x0e\xdf\x23\x47\x66\xf8\xf9\x1b\x3b\xc1\x77\x1a\xb0\xfe\x04\xd4\x8d\xe1\xae\xc5\x95\x14\xab\x62\xdd\x66\x17\x05\x13\x68\x1e\x6e\x9e\x4f\x46\x5e\x1d\x09\xd9\x0e\x12\x49\x41\x2a\x37\x2c\xc8\x9e\x51\x19\xbf\xdb\x1c\x58\xc7\x7e\xb8\xa7\x04\xef\x4e\x12\x9d\x5f\xbd\x0c\x78\xb8\x68\x1f\xc9\x72\xb4\xb7\xbc\x20\xeb\xa6\xf1\x58\xef\xec\x7a\xb8\xd4\xd8\x5c\x3b\x27\xb3\xcf\xe9\x08\x3d\x8a\x63\xab\x2e\x2d\x3c\x29\xa3\x16\xe5\x2d\x03\x82\xe6\x5e\xd1\xfc\xf5\x66\x68\xde\x5d\xeb\xe0\x8f\xb9\x45\x34\x98\x42\x29\xa4\xf4\x72\xd2\xba\x39\x48\xa9\xf7\x31\xce\x3d\x6f\x88\x35\x9e\xae\x1a\xbe\x61\x67\x6b\x8c\x2c\x6c\x07\x6b\x6f\x70\x2f\x2d\xbb\x7b\x3d\xe2\xb7\x6a\xb0\xe7\x8e\x22\x69\xc9\x41\xc3\xf4\x4d\x43\x87\x37\x15\x50\x09\xd1\xf2\x1f\x89\x75\xc8\xc2\x22\x8d\x0b\x6a\xd9\x61\x9e\x14\x57\x47\x3d\xb0\x09\x76\x8b\x62\x9f\x9c\x65\xe9\xf1\x1e\xb9\x8e\x0b\xe7\x3a\xea\xfb\xd3\x54\xa6\x2a\xfd\x6d\x82\x2e\x9b\xc5\x39\x83\x50\xa2\x27\x09\xa2\x38\x2b\xa4\x22\xd7\xcf\x23\xbc\x5d\x20\xaa\xeb\xd0\xbd\xba\x4c\x6c\xf3\xaf\xe0\x7e\x9e\x6a\x5f\x61\x03\x0c\xb4\x13\x5b\x7d\x76\xee\xde\xf8\x89\xaf\x77\x40\xc2\xa5\xbd\xe9\x94\x5c\x78\xb7\x4a\xfe\x23\x34\x1b\x5b\x3c\xac\x75\x36\x41\x1c\xde\x0a\xc1\x4f\xe2\x2b\x06\xaf\x09\xf2\xd9\xc2\x12\xc1\xcc\x7f\xeb\xc0\x67\xf6\x12\xb5\x96\x83\x60\x01\x75\xeb\x81\xe9\x97\x6e\x17\x68\xbe\xe9\x2a\xe4\x59\x34\xdc\xc7\x5f\x61\xf7\x5b\x67\xbb\x45\x87\x19\x04\xc3\x7a\xae\xd6\x5d\xa6\xc3\xc4\xe7\x44\x17\xf8\x50\xa4\xdf\x98\x43\x3d\x26\x39\x38\x8d\x76\xf7\xb2\x3c\x9b\x94\xe9\x08\x03\x00\xa0\x72\xe8\x0d\xb4\x8e\xbe\xa6\x7f\x2e\x42\x9d\x86\x4a\xd2\xca\xaf\x76\x27\x54\xc2\xcd\xf6\x5b\x84\xcc\x3b\x53\xaa\x17\x88\xa6\x7f\x39\x18\x72\xe3\x7a\x28\xb0\xdf\xf7\x8c\x73\x8a\xc9\x20\x8e\xfc\xdd\x43\x6d\xcd\x0b\x0e\xc3\x03\x64\x3b\x65\xac\x96\xdb\x27\xdd\x3f\xc5\xf3\xb5\x75\x1b\x67\x58\x55\xb8\x3b\x50\x97\x3d\x19\x77\xe1\x00\x0b\xa8\x34\x89\xda\xbc\xc8\xc0\xe2\x7d\xcb\x78\xf1\x1d\x9a\x38\x48\x2b\x6a\xd5\x16\xa3\x77\x53\x1b\xd6\x6c\x09\xed\xd7\x36\xca\xbb\x6d\x67\x50\x04\xa3\xbe\x3e\x56\x27\xdf\x35\x6b\x3c\x70\xd7\x19\x1e\x52\x5f\xe0\x7e\x12\x8f\xd7\xbf\x3e\x0c\x09\xea\x34\x0c\x89\x43\xad\xbe\x84\xb5\xc7\x48\xfb\xda\x63\x96\x42\x76\xcf\xd4\x17\x83\x0a\x98\xfb\x7a\xec\x5d\xb0\x13\x5a\x9f\x92\xec\xe9\x53\x3e\x5c\x7f\x27\xd9\xce\xdf\x25\xbd\xb2\xd0\xc9\x7e\x39\xb5\xf1\xc1\x8a\xae\x3b\x59\x56\x16\x65\xae\xfa\x2b\x19\x0f\x83\x19\xf1\x7a\x6a\x7b\xe1\xd4\x55\xd5\x31\x21\x3a\xd3\xcd\x93\x12\xd5\x08\xb5\x5b\xf9\x63\xe3\x8b\x22\x0b\x05\x8d\xeb\xd2\xf4\x21\x14\x6a\x56\x4b\xca\x27\xbd\x72\xa2\x90\x65\xe3\xba\xd4\x1e\xdf\xbc\x08\xd5\x9f\xab\x85\xdd\x76\xeb\x48\x4d\xe0\xb2\x72\xa0\x5e\xdc\xdb\x4f\xd6\x5d\xd3\x2b\xd0\xf8\x0c\x63\xb5\xac\xaa\x7d\xa8\x71\x9e\xed\xa6\x03\xf0\x99\xd9\x99\xf4\x2e\x25\x25\x64\xc8\xdb\xef\xa2\xdb\x74\xcb\xa0\x6f\xeb\x5e\xd1\x2f\xb0\x57\xf4\xba\xea\x15\xbd\x03\xbd\x1c\xd6\xaa\xa7\xae\xb3\x8c\xd1\x65\xbf\x79\xb0\xd7\x5e\x89\xd8\xc7\x6a\x6a\x59\x25\x47\x4c\x51\x5c\x7f\xde\x65\xbd\x04\xa3\x29\x10\x5a\x5a\x5e\xae\x4e\xb3\x57\x53\x53\x34\x21\x19\x28\xc2\x45\x6c\x60\xef\x6a\x0f\x5d\xc6\x2b\x59\x8f\x0b\x6b\x3e\xcc\x90\x44\x61\x3d\x65\xa6\x89\x2c\x96\xbd\xf6\x8a\x1c\x0a\xb5\x39\x6a\x28\xa2\x6f\xb7\x96\xc6\x01\x5a\x97\x4a\x36\x92\x35\xd0\x7f\xb7\x2f\xd1\x17\xd3\xd9\x90\x15\xe1\x46\x7d\x54\x9b\xd0\x74\x1a\xc7\x88\x49\x4c\x2f\xc8\x9a\x79\xc3\x98\x4d\x1b\x96\xc9\x9d\x3c\xc5\xd3\x8a\xce\xbc\x42\x81\xdd\xe1\x3b\xab\xf7\x28\x8f\xce\x30\x1e\xc5\x90\x49\x3c\xc6\x18\xb5\x1f\x8c\x9d\xec\xa1\xab\x46\x0a\x1a\xd7\x6f\xea\x91\xc0\x8d\xd2\x38\xb7\x84\x3c\x29\x85\xd8\x64\xfa\x58\xa9\x59\xff\xa4\xe5\xb2\xbe\x0c\x37\xe5\x4b\x34\x6d\x56\xd6\x83\xa2\x76\x2c\x83\x04\xd4\x8e\xf4\x9d\xab\x0f\x06\x83\x78\xa9\x05\x06\x23\xe7\xc9\x1e\xa8\x73\x29\xcd\xa0\xce\xe1\x3b\x65\x39\xa8\x0a\xe6\xbb\x69\x3e\x2e\xe3\xb3\x19\xd0\xec\xb8\x87\x19\x8e\xed\x12\xa7\xb8\x5e\x14\x57\x47\x8f\xd9\x50\xdb\x88\x8f\x14\xe5\x7b\x0e\x09\xfa\x4a\xaa\x7d\x34\x21\x68\x2f\xff\x4f\xa3\x60\xc5\x79\xe3\x38\x48\xfe\x41\xce\x0c\x83\x6c\x2f\xd5\xca\x92\x55\x31\xf4\xeb\x4f\x3b\x8e\x8b\xe2\x4a\x96\xf7\x8d\xd1\xfd\x5b\x9b\xfa\x63\x29\xa2\xba\x8e\x0c\x13\xcd\x99\x8e\x44\x6c\x98\xd6\xca\xdd\x34\xe7\xc5\xec\x3a\xa1\xdd\xc4\xcb\xc5\x4c\x37\x60\x72\x55\x39\x9e\x75\x6d\x17\x60\x9f\x48\xd0\x5f\x3d\xf0\x46\xd2\xa2\x2b\xde\x84\xeb\xa8\xc8\x70\x00\x2b\x98\x36\x3d\x16\xe8\x4f\xef\x25\xdc\x97\xeb\xd6\x84\x0d\x4a\x8e\xce\x63\x4a\x2a\x70\xbe\x4e\xf0\x88\x85\x94\x21\x5d\x8a\x2a\x6e\x1b\x7c\xe9\xfb\xbc\xce\x8d\x63\x87\x5b\x08\xc9\x4d\x4e\x1c\xba\x06\xcf\x48\x2e\x55\x31\x66\x69\xcd\x3e\x88\x0f\xfc\x2a\x76\xee\x51\x63\x1d\x0e\x48\x29\xc7\x76\x9b\xf0\x9e\xdc\xac\xbc\x07\xda\x89\x88\xfc\x7b\x2b\xce\x50\x12\x8a\x0d\xbc\x6d\x6c\x32\x41\x67\xe7\x75\xb2\xbd\x9a\xfc\x00\xd8\xc7\xa4\xff\x72\xd2\xd8\x09\x97\x83\xb6\xfc\xbe\x1d\x77\xd7\x90\x6e\x17\xdd\xfd\x9b\x20\xcc\x73\x0c\xf0\xb6\xdc\xe4\x22\xb1\x6a\xdb\xe4\xb3\x46\x7e\x50\x33\xed\x10\xf2\xd0\x75\x87\x34\x89\xdd\x67\x8d\xbe\x78\xe8\xc0\x2e\x6e\xdf\x09\x9f\x0c\x3d\xd8\x15\x81\x92\xea\x24\x8a\x0e\xe6\x96\x5b\x93\x34\xb6\x07\x70\x78\x94\x0e\x7f\xa9\x07\x35\xe0\xcf\x61\x37\x12\x0a\xe2\x53\xd4\x0c\x69\xda\xba\xab\x6a\x4a\xec\x40\x23\xb5\xb9\x01\x52\x0b\x67\xd1\xf4\x93\xf1\x48\xfc\x53\x65\x4a\xea\xd2\x97\x2b\x71\x49\x35\xf5\xbf\x09\xdb\x5d\x74\x3b\x25\x3b\xc0\xf6\xfe\x52\xb7\xbc\xe8\x16\x8d\x05\xf7\xc9\x5c\xc8\xa4\x64\xdd\x33\x68\xa6\x1f\x38\x25\x8d\x88\xc5\x3a\x02\x79\x12\x5d\x0b\xc8\x7a\xa4\x90\x47\x94\x67\x47\x3f\x39\xc5\x98\xe9\xa7\x64\x04\x8c\xb8\xc3\xeb\xa0\xab\x26\x7d\x0d\x07\xd4\x38\xa7\x50\x4f\x74\xb3\xc6\xda\xb0\x67\xcd\x62\xb1\x4e\xcf\x60\xb2\x03\xfa\xb4\x9f\x15\xc4\xf8\x2d\x39\xc7\x9f\xfe\x30\xd6\x35\x96\xd5\x80\xd7\xf5\x8f\x68\x55\xe8\x8f\xf4\x02\x9e\x7c\xf5\xad\xa7\x4c\xe9\x17\xeb\x53\x3f\x75\x9a\x6b\x32\x0f\x83\x4d\x11\x36\x1e\x6a\x96\x77\x8d\x5e\x86\x39\xb8\x55\xd3\xb9\xda\x84\xf0\x62\x5c\x9b\x2f\x87\x08\x3b\xbb\x8d\xcd\xd8\xd5\xf5\xd1\xd2\x06\xa0\x3a\x96\xf7\x86\xca\x40\x01\x0c\xec\xa6\x40\x34\xde\x77\xcd\x94\xd8\xf7\x8d\xeb\x18\x40\x01\x2e\x1e\x0b\xfd\x55\xff\x44\xda\x23\x9d\xdb\x2d\x64\xba\x17\x7d\xfc\x1b\x68\xe2\x5b\x0d\xe4\x94\x65\x9e\xee\x4c\xc0\x0f\x16\xc1\xe7\xf7\x8c\xa2\xef\x2a\x1c\xaa\x35\xa3\x73\x09\xf3\xb6\x43\x31\xc9\x1b\xfb\xa0\x46\xfc\x84\xd1\xd4\xcd\x7a\x5f\x05\x74\x83\xf0\x64\x40\xc8\x68\xc5\x9f\xdb\x7b\xa7\x02\x85\x5e\x65\xc2\xa3\x86\xad\xd9\x13\x21\xcf\x9c\xe6\xce\x2d\xee\x82\x7a\x88\x21\x30\x5b\xdd\x22\xde\x7e\xb3\x88\x5e\xee\x47\x17\x5f\xd6\x1f\x8a\x61\x39\xee\xa2\x39\xee\xe2\x9b\xef\xbc\xbd\xd6\x5b\x83\x2e\xf8\xa8\xa8\xc7\x47\xf5\x97\x05\x2d\xf0\x75\x61\x0b\xdc\x9c\x78\x62\x1c\xb3\xc4\x09\x4a\x0a\x2e\x6f\x27\xb9\xb0\x88\x05\x17\x4a\x01\x39\x6f\xe8\xb8\x0e\x57\xbd\x68\x2a\xa3\x72\x4f\x53\x20\xac\xa3\x74\xa0\xdd\x8c\xc4\xac\x4b\xca\xf7\xf9\xc7\x6a\xaa\xb3\x9a\xde\xaf\x66\x36\x63\x98\xd3\xb6\xf1\x75\xd1\x33\x25\xbf\xa5\x9b\x4e\x12\x00\xd2\x47\x59\x9e\x47\xe2\xdd\x6e\x39\x00\x05\xbc\xb5\xb8\x46\xef\xbc\x71\x31\x0a\x3c\x70\x7b\x27\x97\xd2\x31\xf4\xea\x42\x3e\x1c\x5b\xce\xc5\x78\x72\x6b\x59\x02\xaf\x94\x12\x12\xc0\x93\x52\xc3\x1a\x6c\x08\x9e\x81\x49\x7e\x39\xed\x25\x75\x14\xfc\xf6\xcb\x6f\x12\x37\xf2\x90\x54\x22\xde\x72\xb1\x22\x99\x96\x46\xdd\x85\x57\x5c\x31\x8d\xcb\x2f\x10\x6d\x9e\x36\x4a\x99\x4c\x90\xd2\x31\x65\xe0\xe5\x2b\x35\x10\xd0\x52\x93\xa7\xe6\x96\xba\x3e\x49\xf4\xc4\x98\x83\x15\xdd\x3c\xb1\x06\x59\x0d\x43\xad\x7d\xe9\x98\x0b\x82\xb5\x0d\x17\x96\x96\x43\xc9\x98\x25\xf5\x5d\x19\x8d\xb5\x6a\xf7\xeb\xc6\x5e\xc9\x49\x57\xb9\x02\xaf\x7f\xe6\x6b\x17\xaa\x58\x7b\xac\x2e\xf1\x1d\x75\xd7\xdf\xb6\x21\x88\xef\xac\x0f\xe3\x06\xbe\xb7\x1f\x63\x73\x7c\xd7\xe2\xec\xee\xba\x62\x29\x5e\x6a\xda\xd6\x3d\xd4\xf2\xd4\xfa\xd0\x83\xd2\x03\x79\xa9\x69\xf3\x99\xf6\x59\x13\xac\x51\x75\x1a\xbc\x56\xd3\x33\x1e\x8f\x03\x1e\x25\x3a\xd1\x33\x62\x48\x62\x5e\xe8\x5c\x45\xaf\xcb\x84\x18\x4c\x5d\xdf\x33\x74\x6d\xcc\x4e\xb8\xaa\x73\x90\x29\xe4\x6f\xd9\xee\xee\x20\x1d\x25\x50\x12\x9b\x8b\xfe\xc0\x25\x3d\x00\x25\x09\x65\x46\x50\xdc\x82\x1d\x28\x2d\x10\xcf\x81\x6d\x10\x6d\x67\x7b\xa4\x73\x17\x68\xee\x3e\x17\x2b\x99\x82\x50\x6a\x83\xf1\x97\x9f\x81\xa4\x8b\x98\xe2\xc8\x50\xe5\xa9\x19\x38\x9f\xa0\xe5\x26\x6f\x56\x3a\xcd\xb5\x45\x17\x4d\x14\x70\x2d\x4e\x67\x5a\xfe\x77\x7a\xc5\x4e\x26\x4a\xf2\xc2\x31\x8e\x83\xba\x17\xc8\x69\x79\x96\x81\xb7\x20\x38\xe1\xd8\x82\x4a\xd2\x94\xdc\xe4\x0a\x6b\x61\x08\xfc\xf1\x7a\x98\xe7\x45\x8e\x76\xdb\xe9\x6e\x13\xe1\x90\x15\xdf\xaf\x38\xcb\x63\xa9\xf3\x6c\x1f\x48\x9e\xae\x5d\x41\x2f\x4f\xc7\xc1\x8c\x9a\x82\x50\x8a\xa3\x86\xd4\x8d\x05\x3f\xef\xf6\x33\x5f\x78\x61\xec\x15\xe5\x35\xe0\x4a\xfb\x2b\x50\x92\x06\x99\x1d\xf3\xbe\x6a\xf8\x99\x6f\x29\xec\xbd\x28\x47\x70\x04\x33\xfb\x73\x40\xa2\xb1\x1f\x1d\xf9\xce\xfe\xdc\xb8\x63\xd9\xa8\x28\x06\x04\x51\x17\x2f\xbe\x11\x7c\x07\xb6\x89\x66\xbe\x9e\x44\x8b\xfd\x89\x66\xb4\x94\x98\x5c\x42\xa5\xd8\xa7\x64\x1f\x71\xa3\xfe\xcf\x66\x18\xec\x7d\xae\xf8\x60\x90\x96\xc9\x73\xe7\xc0\x7d\xfb\x5c\x99\xf6\x77\xce\x3d\xe5\x60\xad\x14\x13\xdd\x84\x8f\x55\x87\xff\x0b\x36\xc5\x03\x00\xd6\x96\x27\xc0\xb5\x77\x39\xfc\x95\x1e\xf2\x1c\xef\x9d\x13\x81\xc8\x2a\x34\xf7\x7d\x97\x55\x8b\x84\xcc\x3d\x7a\xac\xbe\x8f\x33\x0c\x5b\xe4\x61\x0c\xe3\x8b\x1e\x74\xa5\xb4\xdb\x86\x54\x53\x34\x08\x3b\xda\x29\xc9\xa3\x04\x97\x64\x99\x73\x8a\x64\x8f\x0a\x33\x75\x1e\xb5\xf0\x57\xe6\x2c\x3e\x98\xa4\xb9\xe2\x21\xd2\xbd\x11\x58\x8f\x29\x11\x4d\xed\x24\x3c\x77\x4a\x2d\xab\x2c\x9d\x7c\x35\x3c\x24\xb3\x82\x64\x56\xa4\x80\x71\x8f\x13\x3c\x46\x5a\xe4\xd9\xbd\x2a\x19\x2f\x6e\x77\x8d\x57\xa4\xcd\x1a\x3f\x58\x5b\x86\xe4\xc2\x30\x39\x50\xfb\xe1\x63\x2a\xba\xf4\xb7\x09\xd5\x3a\xae\x5d\x41\x8d\x27\x66\x29\x0a\x85\x70\x2e\xfe\x46\xdc\xfa\x09\xe5\x54\x91\xb9\xf9\xea\x3b\x1f\x97\xbd\xfd\xd8\xdd\xf4\x2b\xf4\xa3\xa5\x67\x94\x91\x14\x92\x35\x75\x07\xe4\x62\xf7\x35\x1a\xd9\x65\x5e\xc5\x9a\xca\xdc\x41\xdf\x45\x52\x5a\xdd\x41\xfb\x40\x73\x51\xb6\xd3\x4d\xeb\x2a\x14\x0a\x66\x68\x9d\x36\x7b\x85\x2f\xbb\x51\xca\xb8\x15\xfd\x78\x90\x0f\x26\xc9\x44\xad\x28\x19\xed\xc1\x9b\xff\x52\x73\x37\x95\xc8\x03\x83\x93\x7f\x46\xfa\x10\x7d\x5f\x94\xc9\x13\x0d\x82\x8a\xc6\x3a\x26\xcf\x23\x52\x63\x72\xed\x4a\x83\x93\x03\xd9\x96\xf5\x8b\xf9\x11\xb2\x90\x00\x3f\xc1\x21\xb5\x9e\x04\xb3\x16\x0f\x1d\x44\xcc\x03\x34\xa9\xd1\xdc\x56\x1a\x5a\x15\x2e\xcc\x7c\x18\x7d\xfd\x6f\xde\xf8\x95\xdf\x3e\x84\xe2\xf9\x53\x33\x69\xe0\x06\xab\xe9\x00\xb9\xd4\xf2\xd6\xd1\x5f\xb6\xd1\xa9\xcc\xeb\x13\xd8\xed\xa9\xb8\x64\x42\x0d\xeb\x9d\x29\xe1\x0a\xbf\x6f\xdc\x57\xcf\x89\x12\xc0\xa8\xcf\x11\x1b\xfb\x81\xce\xcf\xc4\x4e\xa9\x2d\xba\x39\x5d\x8e\x07\xa6\x31\xa7\x66\x45\x95\xbf\xe4\x23\xcc\xb2\x46\xa6\x29\x7b\xff\x19\xbd\x9d\x43\x47\x8a\x84\xc2\xa3\xd6\x7b\x26\x1f\x11\xa9\x90\x08\x9d\xfb\x8f\xf3\xec\x72\xda\xe7\x30\x47\x13\x4a\xf5\x29\x69\x73\x1b\xfa\xea\x3e\x6b\x9e\xe2\xa1\x3f\xb0\xdd\xb4\x7a\xe8\x69\x40\xd0\x47\x78\x20\x0a\x30\xa7\x27\xe7\xec\x9d\x51\x1d\xa0\x20\x1a\xc1\x43\xf1\x75\x37\xaa\xa6\x71\xed\x9e\xf6\x7a\xe6\xae\xc8\x65\x01\x9c\x39\xd8\x29\xb0\xf9\xd6\xf4\x29\x0e\xd2\xdd\x84\x3d\x1d\x6e\x63\x33\x70\x00\xd4\xe9\x22\x6d\xfd\x61\x4e\xf7\xec\x1f\xec\xf2\xba\x78\x42\xfb\x65\x39\x2e\x28\x8f\x38\x94\xa4\xb9\x18\x69\xd6\xc6\x3f\xb5\xc7\x99\xb3\x7e\x00\xce\xdc\xe3\x14\xbd\x70\xd6\xbc\x57\x38\x66\xe6\x49\xb5\xe8\x23\x1e\xa3\x1e\x8b\x19\x26\xc8\x95\xa0\x39\xa2\xb9\xd1\x4a\x13\x95\x93\xf7\xa0\xb1\xd0\x5e\xae\xa9\xb7\x8b\x89\x5e\xe3\xdf\x1d\xb6\x7d\xbd\xf5\x86\xd8\x77\xe8\x1d\x96\x5e\x9c\xd6\x26\x1c\xaa\xd3\xcb\x15\xd3\xf3\x8a\xfa\x8f\x13\x43\x61\xbf\x3b\x58\x51\xff\x58\xa8\xb7\xdd\x9f\x80\x46\xe0\x9f\x71\x55\xbf\xa3\x57\x60\xfa\x24\x1f\x96\x9e\x9f\x0e\x8b\x40\xb6\x0d\xe6\xe9\xcb\x26\x85\xcd\x16\x39\x27\x3d\x65\xad\x65\xf2\x61\xd2\x9b\x04\xbc\x1f\x6b\xe2\x98\x88\xf2\x82\x27\x4d\x12\xbe\x08\x9d\xb0\x96\x20\x6d\xed\xfc\x84\x20\xd6\x76\x6b\x2a\xfd\xad\xf7\xad\x2e\xaa\x24\x1e\xf9\x53\xcb\xcb\x60\xca\x8c\xf0\x7a\xeb\x24\x37\x28\x44\x9a\x40\x36\x1d\xe3\x45\x7f\xaa\x27\x81\x74\xa7\x5a\x15\xdb\xa6\x7b\x3b\x92\x8d\xfc\xb1\xfb\x4c\x20\x2c\xd1\x36\x69\xd8\xb6\xfe\x9c\x8d\xb7\x7f\x85\xe6\x07\xdb\x1e\x75\x3a\xb6\xaa\x97\xb3\x42\x56\xce\x81\xad\x7f\x81\x0e\x4f\x86\xd5\x5f\xa1\x4d\xa1\xfc\x79\xc0\xcc\x65\x10\xa7\xc8\x09\xdb\xd0\x38\xbf\x74\x6a\x8c\x87\xc2\x38\x9d\xbc\x91\xd1\xf9\x42\xa7\x8c\x1c\xd9\xa2\xb2\x84\xfe\x38\x83\x1e\x05\x51\x06\x03\x42\x31\x7f\x0c\xd6\x2b\x38\xff\xee\x33\xef\x15\xa6\x90\x09\xbc\x23\x3b\xcd\xbb\xcf\xbe\xa7\x66\x3a\xff\xee\x73\xef\xf1\x5c\x94\x1c\xd7\x99\x4b\xaf\x97\x25\x6e\xb1\xc6\xa7\x8b\xbc\xf7\xf4\x79\x1c\xe0\x59\x1a\x80\x0b\x5d\xe9\xd1\x9f\xf1\x47\xa7\xd3\x40\x6b\xe9\xf6\xfb\x24\x4c\x91\x35\xc2\x8b\x40\x73\x66\x21\xe3\x2a\x4d\x54\xfc\x8c\xd6\x0c\xe3\xbd\x6f\x06\x1c\x43\x1e\x31\x5d\x5b\xe9\x7d\xef\x9c\x2b\xa7\x76\x0b\x23\xb9\x87\x42\xad\x28\xe7\x82\x91\xdc\xa9\xf4\x4c\xea\x60\xc0\x4f\x58\xaf\x5d\x06\xc5\x51\x0e\x92\xc7\xdb\xc1\x30\xc9\xf7\xfc\x0d\xb0\x3b\xa5\xce\xc5\xf2\xd3\x6c\xc0\xd4\x07\x14\x77\xeb\xd4\x6e\x0e\xc1\x23\x01\x90\x85\x9e\x1a\x08\x9c\x7b\x51\x43\x29\x96\x6e\x28\xe3\xbd\x1a\xd8\xc8\xd4\x93\x2b\x80\xc7\x1f\x9e\x00\xc8\x81\x4e\xc8\xec\xdc\x7d\xb6\x4b\x70\x8a\xa6\x00\xb2\xa1\x9f\xda\x17\x7a\x82\x54\xe3\x70\x79\xc3\x3a\x60\x3c\xeb\x25\xd3\xc5\x47\x5a\x66\xd9\x40\x3d\xd1\x78\x4f\x80\xba\xfa\xb2\x9b\x67\x43\xcc\x99\xa3\x3d\x16\x01\x67\xe0\x5f\x33\x32\x70\x3c\x53\x6c\x9f\x2f\xa2\x67\x90\x59\x40\x29\x07\x4a\x01\xc3\xef\x43\xfa\x9d\x64\x45\x94\xba\xe1\xd7\x7d\x6e\xcd\x28\xf6\x99\x3e\xb7\x3a\x24\x86\xff\x99\x2b\x62\x34\xb4\xd6\x29\x94\x8e\xa3\x29\xa2\xa6\xc7\x9b\x21\x63\xf2\x89\xfa\xf5\x2a\xff\x76\xaf\x5a\x30\x80\x60\xb6\x2c\x45\x3a\xfb\xb8\x2c\x48\x02\x2d\xd7\x05\x84\x21\x1d\x29\x5c\xae\xbf\x8a\xd5\xa9\x6f\xfb\xd9\x24\x37\xfd\x70\x85\xe4\xeb\x7c\xd5\x34\x3f\x24\xd5\xd3\x95\x24\xb9\xe4\x4c\xa0\x97\x4a\x94\xa7\xdc\x17\xe3\xf3\x6a\x61\xa4\xab\x49\x6c\xc6\x17\x6b\x86\x38\xeb\xf8\x4a\x57\xaf\xdb\x5f\x31\x7c\xd3\xab\x76\xd7\xab\xae\xad\x9f\x67\x63\xa8\xdc\x0e\x51\xe0\xc9\x6e\x3c\x19\x40\xf4\x45\x51\x70\xd8\xb3\xf4\xcb\x71\x95\x8a\x11\x86\xa1\x1c\x9b\x34\xc3\x9f\x23\xe4\x1c\x9b\xd6\x3a\x48\x06\xe8\xa2\x4d\x1d\x9c\x8e\x14\xf7\x99\xf6\x15\x23\x3a\x9e\x68\x95\x22\x94\x64\x39\x40\x1c\x43\xf9\x3b\xd0\x98\xe8\x74\xf4\x32\x5a\x8b\xd4\x05\xa6\x6e\x2f\xd6\xaf\xc1\x82\x33\x90\xc2\x11\x74\x9c\x0a\x1e\xbb\x3b\xc0\x32\x7d\xe7\x2b\x16\x6c\x6a\xec\xe8\xc9\xbf\xff\x7b\x68\x0c\xaa\x8b\x7f\xf8\x87\xe8\xcd\x5f\x90\x05\x1c\x59\x14\x60\x3e\xd8\xbb\xeb\x04\x35\x05\x1f\x19\x7d\x05\x47\x50\x4b\x8d\x85\x1a\x68\x18\x7f\xf8\xb7\xce\x58\x98\x11\x17\x53\x06\xc8\x2c\xdd\x26\x65\x80\x59\x07\xdc\xc3\xff\x0d\x00\x00\xff\xff\x76\x04\xc3\x99\x69\x0c\x01\x00") +var _confLocaleLocale_bgBgIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xdc\xbd\x6b\x8f\x1c\x55\x9a\x20\xfc\x3d\x7e\x45\xe0\x96\xd5\x20\x95\x13\x01\xf3\x5e\x84\x28\x78\x69\x98\x86\x7e\x17\x68\x16\xd3\x9a\x95\x2c\x2b\x89\xca\x8c\xaa\x8a\x71\x56\x46\x76\x46\xa4\x0b\x33\x1a\xc9\xd8\xcd\x55\xab\x71\x8f\x87\xde\x46\x4c\x83\x31\x6c\xcf\xec\x7c\x4b\x97\x9d\xae\x74\x5d\xd2\x7f\x21\xf2\x2f\xec\x2f\xd9\xf3\x5c\xce\x39\xcf\x39\x71\x22\x32\xcb\x4d\xef\x87\x55\xab\xb1\x9d\x71\xee\xe7\x39\xcf\xfd\x92\x8c\x46\xdd\x7e\x5a\xf4\x36\xab\x7f\xae\x66\xd5\x61\xf5\x78\x79\xbd\x5a\x54\xf7\xaa\x63\xf5\xaf\x13\xf5\xff\xd3\x78\xf9\x31\xfc\xb0\xfc\x78\x79\xa3\x3a\xc0\x1f\xde\xc8\x4a\xf5\xe3\xf2\x4b\xd5\xf2\x00\xfe\x1b\x45\xbb\xf9\x5e\xba\x59\x7d\x5b\x4d\x97\x9f\x55\x53\xd5\x75\x11\xf5\x93\x62\x77\x2b\x4f\xc6\xfd\xcd\xea\x07\xf5\xd3\x3d\xfc\x31\xfd\x70\x34\xc8\xc7\xaa\xe5\xf7\xea\xa7\xc3\xea\x3e\x4e\xf2\x40\xfd\xfd\x51\xb4\x9b\x0e\x46\x9b\xd5\x1d\x35\xd3\x49\xb5\x58\x7e\x11\x15\xd9\xce\xb0\x9b\x0d\x37\xab\xdb\xaa\xd1\x5c\x35\x9e\x56\xa7\xd5\x8c\x7e\xce\x27\xe5\x66\xf5\xb5\xfa\xad\xf6\x65\x32\x82\xb1\x67\x6a\xe4\x39\xac\x57\x2d\x70\xae\xfe\xaf\xc6\x57\x6b\x9f\xc1\x46\x66\xd1\x38\xdd\xc9\x8a\x32\x1d\x87\x1b\xc2\x48\xfb\xe9\x56\x91\x95\x6a\x95\x3f\xaa\x06\x6a\xdf\xd4\x3f\xba\x9a\x8e\x8b\x2c\xc7\x15\xcd\x96\xd7\xd5\xcf\xf3\xe5\xad\x68\x94\xec\xa8\x86\x77\x71\x04\xe8\x3d\x5f\x7e\x5a\x4d\xa3\x32\xdd\x1b\x0d\x12\x18\xe2\x7f\xe8\xbd\x57\xa7\xd1\x20\x19\xee\x4c\xb0\xfd\x1f\xd4\xaa\xe7\xd5\x51\xd4\x1b\xa7\xaa\x55\x77\x98\xee\xc3\x18\x5f\xaa\x5f\xe1\x30\x0e\x68\x1d\x9d\x4e\x27\x9a\x14\xe9\xb8\x3b\x1a\xe7\xdb\xd9\x20\xed\x26\xc3\x7e\x77\x0f\x8f\x4f\x1d\x13\xce\xa8\x96\xa7\x66\x54\x5b\xab\x8e\xd5\x7a\x8e\xaa\x79\x4c\xd7\xb7\xfc\x9d\x1a\xfe\x38\xe6\x7f\x77\xf0\x6c\xd2\xbe\x3a\xce\x6e\x52\xc0\xfa\x1f\xc3\xae\x61\x96\x58\x75\x9a\xaa\x01\x16\x11\x4e\x35\x4c\xf6\xc2\xa3\x47\xe9\x5e\x92\x0d\x60\xe1\xc7\x1d\x35\x26\xdc\x90\xda\xe6\x28\x29\x8a\xfd\x1c\xae\xf8\x8e\x1a\x05\xc0\xe6\x58\xfd\x3a\x4e\xbb\xe5\xb5\x91\x1a\xe7\xb6\xda\xd1\x01\x5e\xf0\x0c\x8f\x1f\xfa\x29\x80\x51\xb3\xa9\xb6\xa7\x6a\xce\x5e\x32\x2a\x7b\xbb\xc9\xe6\x6b\xf4\x67\xa4\xba\x8e\x72\x75\xf4\xf9\xf8\xda\x66\xf5\x67\x7d\xa2\x70\xcb\x6a\xba\x59\x94\x8f\x77\x92\x61\xf6\x51\x52\xe2\x2d\x7c\xa7\xbe\xdf\xe7\x16\x0a\x06\xd4\xb9\xc3\x7d\xec\x65\xe3\x71\xae\xee\xf6\x3b\x01\x5c\x00\x79\xea\x88\xbb\x30\x3a\x00\xa9\x5a\x44\xb5\x88\x97\x9f\xd4\x26\x80\x46\x7b\xd9\xce\x18\x6f\x8e\xda\x4d\x63\x05\x8f\xf3\xea\x3e\xb4\xe5\x29\xa0\xd5\x76\x3e\xbe\x22\x86\xba\x8e\xe0\x7c\x44\xf7\x0c\x4f\xa4\x79\x7c\xb5\x09\x31\xf6\x22\xbc\x89\x64\xa8\xc0\x84\x9a\xfe\x88\x37\x0a\x40\x71\x8c\x03\xcf\xe1\x20\x4f\x1b\xfa\x56\xf3\x28\xe9\xef\xa9\x6b\x1e\x25\xc3\x54\x5d\xd7\xef\xd5\xfe\x61\xf9\xa7\x06\xca\xe1\xb2\xe7\xfc\x8c\xd5\x7d\x20\xa0\xa9\xeb\x4d\x7a\xbd\x7c\x32\x2c\xbb\x45\x5a\x96\xd9\x70\xa7\xa0\xb7\x4c\x5d\x16\xd5\x23\x02\x2d\x9c\x55\xc0\x97\xba\xeb\x96\xf6\xd1\xb5\x7c\x62\x60\x17\x80\x6e\xba\xfc\x1c\x76\xb7\xbc\xe1\x0c\x42\xcd\xec\x38\xba\xdd\x0d\xde\xa7\x37\x28\x9c\x61\xd1\xdd\x4e\xd3\x3e\xc3\xa9\xfa\x72\x04\x0d\xe1\x40\x71\xa3\xd1\x68\x32\x18\xa8\xbb\xfe\xed\x24\x2d\x4a\x35\xe0\x1f\xd5\x18\xb7\xd4\x47\xdc\x82\x3a\x27\xc0\x02\xc7\x78\x06\xf4\xda\xb3\xa2\x50\x2d\xd5\x68\x0e\xde\x53\x33\xf5\x92\x61\x0f\x0e\xf1\x3b\x35\xc9\x11\x5c\x70\x14\x5d\x2a\xd2\x64\xdc\xdb\xbd\x1c\xd1\x9f\x0a\xb5\x01\xfa\x03\xb4\xa2\x1f\x6c\x3b\x04\xc3\x1b\x0b\xbf\x2f\x5c\x85\xb7\x88\xa8\x97\xf7\xd5\x6f\xdf\xa8\x5f\x1e\xa8\xb9\xb3\x61\x51\x26\x83\xc1\xe5\x88\xff\x02\x28\xf0\x14\xb1\x32\x80\xb8\x86\x9d\x32\x2b\x07\x8c\x91\xbe\x54\x17\x6c\x76\x0d\x87\x63\x1a\x1b\x5c\x47\x57\x81\x68\x02\xb1\x39\xc2\xaf\x46\xe2\x08\xc5\xd8\x45\xed\xf1\x86\x40\x90\xfd\xbc\x77\x45\xe1\x25\x40\xd9\xb0\x9f\xdf\xab\x59\x16\xf1\x1b\xf9\x4e\x11\x23\x92\xf5\x7b\xc4\xd5\x41\xfc\x3a\x76\x01\x74\xa3\x66\xc0\x3d\x3f\x82\xa1\x96\xd7\x37\xe0\x81\x29\xc4\xb1\xbc\xa5\xc1\xe2\x33\x42\x17\x08\x01\x2f\x25\x71\x99\x8c\x77\xd2\x72\xf3\x5c\x77\x4b\xe1\xcf\x2b\xe7\xe2\xdd\x71\xba\xbd\x79\xee\x7c\x71\xee\x65\x5c\xaa\x86\x95\xe5\x4d\xba\x24\xc6\xc2\xb7\x5e\x7a\x36\x79\x59\x4d\x8c\xc7\x7f\x82\x60\x3f\xa3\x2d\x6d\xd0\x3c\x80\x1a\xd4\xbe\x1f\x68\x98\x86\x17\xc6\x50\x47\x14\xf0\x84\x9e\x1b\x62\xad\x00\x24\x1a\x00\x8d\xf1\x4c\x15\x3e\x8f\xf5\x13\xd3\x64\xe0\xa9\x08\xa0\x50\x51\x92\x6e\x7f\x8b\x48\x2c\x9d\x11\x3c\xd7\x39\xe2\x6b\xc0\x01\x6f\x5f\xbb\xf8\x9f\xdf\xda\x88\xdf\xcd\x8b\x72\x67\x9c\xe2\xdf\xd5\x7f\x54\xaf\x17\x62\x82\x9c\xf8\xfd\xec\xf5\x5f\x74\x22\x35\x06\xdf\x6d\xd3\xd3\xbc\x47\xfb\x87\xf5\xe0\xc6\xd4\xaf\xf0\x1e\xa0\x23\xe2\xe3\x1f\xd4\x78\x8f\xdd\xb6\xb2\xdd\xae\x5a\x01\x92\x21\x43\xd6\x9b\xc1\x35\x8c\xf9\xd5\x4c\x44\x41\xbe\x86\xd3\x6b\x9e\x49\xb5\xd3\xb0\xf3\x27\xba\xfb\x0d\x3a\x95\xc7\x38\xd0\x21\xbe\x4d\x22\xd9\xbf\x7a\xe7\x9d\x5f\xbf\xfe\x8b\x38\x1d\xee\x64\xc3\x54\x9d\x70\x3c\x29\xb7\xff\xdf\xee\x4e\x3a\x4c\xc7\xc9\xa0\xdb\xcb\x08\xa2\x1e\x48\x88\xc6\x59\x0f\xf1\xc6\x3e\xd5\xd0\x8f\x87\xac\xe8\x60\x31\x50\x14\xb4\x9f\x12\xed\x7f\x08\xa0\x11\x5f\xbc\xf8\x96\xda\x4e\xb9\x0b\x8f\xef\x4b\x45\xe6\x8b\xdf\x0e\xe0\xca\xf4\x02\xff\x3b\x2c\x05\x68\x29\x0c\x1b\xb8\x98\xd0\x06\x3b\x51\x3a\x1e\x77\x15\x0f\x50\x5e\x83\xab\x17\xa3\x13\xfa\x7b\xa0\x20\x6a\xcd\xa1\x62\xda\x13\x3c\x91\x87\xf0\x17\x84\xd7\x99\x06\xd9\x43\x80\x51\x9a\x2d\x1b\x5e\x4d\x06\x59\x5f\xc1\x88\xbe\x05\x1a\xf2\x54\x13\xde\x43\x7c\xdd\xc7\x88\x0b\xa7\xf1\xb9\xce\x39\x60\x0f\xce\x5d\x38\x07\xaf\x13\xdf\x08\xbc\xb8\x45\x2b\x28\x75\xa2\x61\xde\x25\x02\x03\xbc\x48\x3f\x2b\x92\x2d\xc5\x97\x10\x47\x35\x66\xba\xfc\xad\x5a\xd3\x01\xf2\x32\xb4\x68\xc0\x22\x78\xb9\x8a\x3c\x2e\xff\x49\xbd\xee\x03\x79\x51\x08\x57\xf7\x05\x79\x42\x2a\x46\x8f\xeb\x1e\xf0\xa3\xf6\xb5\x1e\x20\xa4\xcd\xed\x4b\x36\xa7\x01\xbc\x28\xf3\x4e\x0f\x34\x65\x5b\xd0\x1c\xf8\xcc\xe1\x97\xe9\x0a\x52\x68\x29\x92\xbc\x3d\x4d\x4d\x03\xd0\x4e\x67\x83\xa7\x15\x1e\x5b\xd1\xe7\x55\xb7\xa7\x7a\x77\xa2\x48\x43\x33\x3f\xef\xef\x14\xcf\xf9\x05\x3f\xea\x46\x12\x3c\x47\x5e\xe3\xa1\x66\x09\x90\x85\x03\x4e\xbe\xfe\xfe\x56\xb5\x36\x90\x0e\xef\x9c\x08\xc4\x01\x4c\xe5\x81\x04\x32\xff\x0b\x80\xdf\x46\xbe\x45\xb5\x01\x2c\x1c\x5f\x88\xd5\x37\x02\xb5\x13\xe8\xae\x56\x72\x04\x77\xb8\xfc\x42\x75\xff\xa2\x5a\x3c\x85\x54\x92\x9f\xc5\x77\x0a\x11\x12\xf5\xe6\x7b\xf8\x12\x5e\xc8\x91\xba\xd0\x93\x3a\x0b\x85\x87\x6e\x7b\x9b\xa5\xdf\x46\x6e\xfc\x33\x3a\x23\x60\x0a\x88\xed\x9b\x01\x2d\xc1\x57\x54\x1f\x89\x76\x85\x92\xcc\x17\x08\x6c\x6a\xc6\x07\x30\x01\x49\x36\xba\x3d\xd3\x80\x03\x8b\xe5\x19\xd9\xcc\xd4\x1a\x89\x93\x55\x3b\x57\x74\x7f\xa2\x84\x8f\x26\x74\xa9\x79\x73\x4b\xfc\x8e\xe0\xa4\x4d\x27\xb3\x8f\x1f\xf0\x9d\x12\xcd\xf1\x07\x81\xd3\xbd\xae\x8e\xf4\x1e\x71\x8e\x0f\x88\xa6\x9f\xd0\xdf\xf1\xe6\x80\xe0\x13\x72\x81\x7f\xf3\xa9\x22\x31\x5c\xeb\x5c\xb5\xb8\x40\x12\x08\xcd\xe0\x13\x73\xa4\xf2\x8a\x16\xe5\x4a\x1c\x50\x6f\xfd\x2b\xa6\x93\x8a\x96\xf3\x6f\x62\x2b\x7c\x5c\x3e\x14\x4f\x63\xe4\x65\xd5\xaa\x34\x88\xfe\xe6\xbd\xb7\xf0\x0d\x21\x8c\x7c\x4c\xd8\x7b\x1a\x1b\x76\xda\xa2\xf6\xe5\x67\x78\x24\x87\x0a\x67\xbf\x09\xc8\x7c\xb7\x3b\xca\xc7\xe5\xa6\xfa\x17\x9d\xd8\x75\x40\xdf\xfc\xab\x59\xc8\xb7\xb4\x46\x7a\x8c\x53\xd3\x90\x11\xba\xea\x2a\x25\x59\xf5\x1e\x63\x00\x49\x7e\x06\x33\xcb\x10\xd0\x73\x5d\xc4\x06\x3f\xbb\x48\x8d\x51\x96\x73\x13\x8f\xe5\x6a\x77\xcb\x72\x44\xcb\x7d\xf3\xfd\xf7\xdf\xb5\xeb\x35\xbf\x3b\xef\x50\x7d\xd9\xe0\xf5\x02\xd0\x3c\xa2\x77\xd8\xf0\x94\x09\x82\x81\xad\x5d\xde\x54\xfc\x90\x42\x29\xf0\xb6\x27\xe3\xc1\xa6\x7b\xb2\x6b\x20\x04\xd5\xa9\x0e\x8c\x81\x1b\x14\x2c\x92\x82\x2e\xd8\xd1\xb3\xf0\x9f\x8b\x6b\xdd\xa3\xda\xd9\x94\x51\xb4\x02\x02\xd8\xdf\x7d\x86\x3e\xa7\x33\x2e\x76\x26\x05\x4e\x85\x2b\xf3\x11\x50\x19\x89\x2c\x1f\x23\xc9\x40\xbe\x15\xc9\x42\x08\x71\x92\xf8\xba\x8a\x7f\xa2\x59\x60\x4b\x1f\xe3\x2e\xd5\x69\xe2\x99\xc2\xf2\xa2\x62\x4f\xdd\x13\xb2\x48\x17\xdf\x56\xf7\xe7\xa8\x3f\xf0\xdb\xf6\x38\xdf\x23\x05\xc6\x03\xcd\x6e\xda\x0f\x82\x57\xf6\x2e\x43\xb6\x77\xd6\x41\x7f\x89\xdf\xfb\xe5\x6b\xf1\xff\xf5\xc2\xf3\xcf\xab\x53\xf8\x93\x43\x46\x08\x61\xa9\x7f\x81\xbc\x30\x57\x0b\x16\x58\xd4\xbf\x72\xe7\x14\x35\xcb\x81\x54\x5a\x21\xb6\xdf\x21\x16\x43\x1e\x39\x3e\x47\xa4\xe3\x5c\xfc\x12\x9e\xd8\xff\x97\x7e\x98\xec\x8d\x06\x69\xa7\x97\xef\xbd\xdc\x89\xe0\x27\x85\xad\x08\xcf\xfd\xc1\x1d\xf3\x50\xbf\x08\x7c\x2c\xf0\x1b\x8a\x0a\xdc\x25\x48\x41\x1b\x3b\x69\x15\x4d\xb7\x97\x0f\xb7\xb3\xf1\x1e\x48\x85\xe6\xa1\x31\x72\xe4\xf7\xfa\x90\x28\xbe\x79\x0a\x2b\x98\x0a\x5c\x4f\x77\x98\x97\xd9\xf6\x35\x77\x54\x75\xcd\xa4\xab\x00\xb0\x66\x51\x1b\x11\x27\x3e\x3c\xda\x25\x52\x1f\xb5\xf9\xab\x29\x48\xac\xe3\xab\x59\x2f\x5d\x01\x53\x2e\x6e\x41\x18\x57\x37\x83\x20\x35\x97\xf0\x35\x8f\xf2\xed\xed\x81\x62\x71\x99\x3d\x75\xf6\x0b\x7c\xc9\x31\xb2\xa1\xa7\xb4\xb5\x87\x84\xf8\x9d\x3e\x0a\x87\x8c\x40\xfb\xf5\xb5\x44\x4a\xf1\x6b\xaf\xbf\x43\x48\xe9\x3a\x51\x31\x7e\xb8\x0f\x80\x4e\x9b\x77\x33\x73\xc6\xdd\x00\xc0\xb0\xe4\x94\xe0\x48\x2d\xf5\x3a\x92\x94\x39\xc0\x0b\x72\xc4\x04\x6d\x35\xea\xa9\x51\x20\xe0\x4f\xf5\xba\xf1\x3d\x42\xdb\x23\x2d\x52\x2a\xea\xc1\x7c\xe3\xce\x38\xb9\x9a\x28\xf1\xce\x5f\xb4\xea\x78\x1d\x19\x3a\x7c\x84\x1f\xc7\x6f\x70\xbb\x5a\xc7\xd0\x9e\x81\x74\xe9\x0e\xb1\x86\xf2\x53\x85\x16\x4f\x89\xa9\x39\x44\xaa\xfd\x19\xcb\x68\xf3\x0d\x22\xec\x38\xd3\x67\xb0\x13\xb9\x77\xa2\x84\x44\x01\x61\xe7\x35\x02\x4c\x88\x8a\x9f\xd3\x11\x0a\xce\xcc\x30\x2c\x50\xcd\x51\xa7\xe2\x9a\x50\x70\x1f\x1e\x84\x59\x74\x16\x7d\xa0\xab\x3b\xb3\x81\x42\x7c\xd7\x40\x8a\xee\x59\x74\x6a\x0f\xd4\x65\xc4\xdd\x43\x45\x7d\xdf\x09\x42\x42\xed\x6d\x10\x57\x17\x1c\x26\x0c\x56\xa1\x9d\x11\xd2\x44\x46\xa2\x7d\xae\x0d\xf3\xbd\x95\x73\x76\x98\x66\xc1\xe1\x1f\xf8\x5a\x28\x10\xb7\x86\xb8\x70\xad\x4f\x74\x9e\x8f\x56\x2e\xba\x6d\xe4\xbe\xac\x2c\x8e\xb2\x09\x28\x87\xa4\x40\xa9\x20\x90\x3b\x69\x6d\x49\xfb\xfe\x04\x16\xaf\x5d\x7e\x87\x54\x02\xe3\xb4\xcb\xfa\xed\xee\xd5\x0c\x94\xbf\xce\x7b\x3f\x44\xfc\xfd\xa5\x6a\xff\xd0\x15\x77\x0e\x58\x71\x6b\x24\xa8\x43\x7d\x16\x33\xad\xee\x34\x68\x47\x6a\x22\xe6\xc1\x59\xf5\x11\xdc\xd5\x97\x71\x60\xf5\xc2\x0d\x77\x0c\x3f\x9f\x10\xbd\xa6\xa7\x8e\x47\x36\x47\x2c\xcc\xac\xb3\x33\x2f\xf4\x02\x6a\x8f\xb4\x89\x34\x31\xa7\x46\xcb\x82\x4c\xea\x0c\x39\x4b\x33\xb8\x3b\x18\x2f\x2c\x34\x2a\xab\xf2\x1a\x2e\x00\x9f\xfd\x27\xf0\x5c\x3a\xac\x10\x65\x05\x23\x5b\x3a\xbe\x45\xd1\x04\x78\x0c\x85\x08\x1f\xd2\x3e\x16\xcc\xfa\xbb\x4a\xf8\x55\x12\x5e\x50\xed\x7e\x40\xa7\x44\xec\x91\x7a\x10\x1b\xb8\x5a\x10\x7d\x98\x8f\x0b\xbc\x9e\x5b\x38\xbd\x50\xc4\xc5\xbf\x7a\x1d\x47\x72\x44\xf1\x29\xe9\xcf\x59\xa3\x35\x47\x3c\xc6\x98\x01\x98\xbf\xcf\xf4\xfb\x58\xb9\x5e\xc1\xa8\xea\x23\x5a\xc5\x1d\xc9\x1d\xb6\x1f\x8a\xc2\x25\x34\x64\xa3\x3d\x01\x97\xb1\x60\x21\x33\x6a\x91\xb2\x23\x66\x01\x9c\xaf\x41\xf2\x6f\x9e\x9d\x23\xa1\xf3\xd8\x41\xf3\x05\xeb\x51\xbb\x3b\x39\x28\x9e\xbf\xae\xe9\x47\x1f\xa1\xb4\x13\x95\x69\x51\x76\x77\xb2\xb2\xbb\x0d\xbc\x4c\x1f\x35\x1c\x48\xba\x1f\xab\x3f\x3f\xc7\x0b\x40\x7d\x25\xd9\xc7\x10\x6a\x2c\x2b\x72\x4e\x75\x3c\x47\x4c\xfc\x09\x7e\x53\xb0\xf5\x62\x7c\xfe\x2a\xab\x99\x5e\x00\x5e\xa4\xab\xa8\x55\x36\x00\xec\xa4\xd5\xdf\x7c\xdb\x07\xd6\xd0\x24\x14\x39\x0f\x00\x39\xe0\xde\x8d\x42\xca\x2a\x51\x37\x34\x8d\x63\x8c\x40\x6f\x05\xef\x0d\xe9\x3d\x11\x61\xa3\xd8\x01\x95\x10\x41\x91\x3f\x1d\x3c\x87\xf3\x05\xb1\xea\x30\xf5\x4e\xbe\x35\xc9\x06\x7d\xa7\x15\x8c\xd2\x89\xb4\xe6\xa9\xbf\xa5\x5f\x59\x00\x88\xac\xba\xb4\x41\xb7\x14\x6b\xa6\x7f\x06\x87\x65\x04\x6c\xf5\x05\x8f\x4b\x4f\x12\xd4\x1c\x9c\x5a\xbb\xc2\x1a\x52\xee\x8c\x66\xb1\xa8\x5e\x01\x10\xce\x61\xc4\x71\xb8\x93\xbd\xa4\x04\x05\x7f\xa3\x34\x4f\x13\x7a\x12\x7d\xbb\x84\xc5\x77\x68\xd5\xc6\xd0\xeb\x26\xe8\x7a\x98\xd1\xf4\x67\x52\xab\x2a\xe2\x0b\x2f\xab\xff\x46\x45\x72\x35\x25\x76\x78\xa7\x05\x0e\x91\x74\x3c\xc6\xf3\x75\xf1\x17\xad\xf3\x77\x68\xc9\xba\x69\x31\xa5\x73\xb4\x0e\xa2\x6c\xbf\xc2\x33\xe1\x02\x71\xb3\xf6\xcc\xed\xbd\xd2\x1b\x2c\x26\xbd\x5e\x5a\x14\xa4\x52\xb8\x07\xc7\x40\x38\xea\x73\x68\xff\x54\x8c\x06\x63\x54\x01\xa2\x66\x0b\x08\xc7\x06\x33\x6c\x20\x3e\xdc\xc3\xf9\x3e\xc1\x15\xc2\x9b\xdd\x40\x12\x70\x9b\xa9\x18\xde\xc2\x31\xe3\xf4\x13\x63\xf4\x40\xf8\x65\x71\x01\x8c\xb4\x0b\xad\x04\x61\xa6\xfd\x01\xea\x8f\x34\x29\x04\xb2\xa0\xcd\x04\x4f\x45\xd1\x25\xb0\x78\x5f\x8e\x26\xa4\x41\xcb\x07\xfd\x36\xd5\x8f\x46\x74\x86\xed\x9b\x05\xcd\xa8\x62\x1c\x8b\xff\x8a\xfd\x4c\x01\x62\xd7\x98\xd3\x01\x08\xca\xf4\xc3\x92\x6c\x45\x33\x34\x6c\x19\xce\x21\x08\x8e\x88\xd3\xd0\x06\x8d\x62\xfe\xde\x35\x7c\x44\x05\xe9\xde\xd9\x78\x52\x7b\x2a\x0a\xef\x0e\x14\x4a\xca\x81\x0b\xbc\x9a\xea\x1e\x77\xd1\xa2\x7b\xc2\xc8\x2e\xac\x58\x83\x09\xf2\xf1\x8e\x33\x7e\x83\xad\x52\xb5\x24\x7b\xad\xd7\xd8\xb1\xdd\x4e\x23\x64\x56\xc8\xc3\xe0\x4e\x9d\xd7\x51\x8f\x83\x6d\x78\x1d\x05\xbe\x68\x4d\xe4\xd5\xa2\xfd\x39\x76\x2c\x8a\x81\xe5\x46\x97\xd8\x2b\xe1\x72\xc4\xfd\x7c\xbb\x1d\xb4\x49\x26\xe5\xee\x65\x61\xaf\xef\xb2\xc5\x54\xda\xed\x1f\xb1\x1d\xd2\xb5\x6f\x1a\x61\x76\x37\x1d\x81\x28\xbc\x57\xec\x90\x0b\x01\x43\x2f\x1b\xa7\x9c\x4e\xaf\xc4\x6c\xa4\xff\x9c\x31\x38\xca\x08\x68\x67\xbc\x0f\x76\xa5\x22\xef\x65\xc9\xa0\xfb\x84\x43\xdf\x35\xc4\x33\x38\xb8\x2b\x06\x90\xff\xc1\xde\xa8\x44\x4b\x2a\x71\x48\x0f\x49\xbb\xca\x74\xb7\xce\x34\x09\x43\x02\x1b\x66\x1b\x44\xf2\x58\x3f\x60\x0d\xc3\x68\x3a\x07\x15\x1c\x48\x94\xcb\xeb\x3c\x18\x2f\x91\xf1\x7a\x2b\xae\x61\xf6\x97\xed\x47\x53\x5f\x36\x82\x43\x42\x4e\xa0\x61\x2f\x4f\xaa\x5b\x68\xd8\x88\xba\xfc\xbd\x74\x6f\x0b\x66\x4d\x71\x4e\xc4\x24\x27\x84\x54\x80\xf3\xd9\x56\x2f\x45\x11\x1b\xcb\xdc\x40\x9b\x7b\x8c\x67\x66\x35\x8e\x06\xdb\xa7\xeb\xb7\x7f\x45\x7b\xc5\x28\x92\xb6\x0f\x6c\x2f\x73\xbb\xce\xa9\x2e\x3c\x8b\xfc\x2b\xf1\x0a\x17\x1a\x03\x2b\x1d\xcd\x9d\x91\xa8\x88\xba\x95\x22\x1d\x96\x06\x62\xb4\x83\x04\x0b\x16\x27\x46\x7f\xda\x70\xcc\xe6\x18\x1f\xf3\xa5\x92\x2b\x05\xea\xb4\x5f\xda\x7a\xf9\x7c\xf1\xd2\xb3\x5b\x2f\xb3\x26\xcc\x5a\x8c\x89\x25\x11\x4e\x26\x52\x8b\xa7\x05\x52\xc0\x8e\x8a\xf4\xdd\x20\x62\x7b\x40\x48\xff\xc4\xb3\xe4\x7e\xcc\x78\xe7\x00\xb9\x75\xfa\x72\xbe\x0f\x84\x66\x0a\x30\xb5\x21\xb5\xbf\x87\xc8\x8c\x83\xf9\xff\x73\xc7\x70\xac\x00\x42\x28\x30\xc3\x12\x8a\x62\xb9\x7b\x88\x57\x11\x5d\x19\x54\xf2\x7b\x64\x79\xe6\x68\x89\x76\xcd\x99\x2e\x42\xc1\x33\x1e\x64\x7b\x59\xb9\xea\x6d\x02\x0d\xd4\x4f\xf4\x00\xaf\xed\x84\xd5\xa3\xcc\x65\x2d\xdc\xf3\x9e\x33\x11\xad\x5d\xd8\xd4\x2c\x4d\x6f\x41\xdc\x02\x70\x9c\x9f\x91\x16\x85\xc1\xe4\x05\x72\x9b\x39\xa5\x13\xdf\x30\x27\x4b\x24\x8a\x9f\xd3\x02\x67\xb9\x61\x3a\x21\x4c\x10\xc2\x50\x4f\x67\x37\x29\xba\x93\x21\x03\x58\xda\x37\xef\xf6\x81\x81\x76\xea\x85\x4c\xaa\xc0\x75\xc0\x67\x48\xf0\x7a\xb0\x8e\x4a\xf4\x69\x03\x5d\xcf\xa8\x5f\xc9\xa1\x81\x85\x7f\x03\x55\x2c\x61\x31\x09\x5f\x1b\xa2\xb9\xbd\x5c\xa1\x15\x3a\xad\xfe\xc7\xb9\x05\x8d\x37\xe5\xcb\x11\x8e\x12\xcb\x2f\xf0\x0c\x8e\x0c\x7a\x54\x28\xe0\x26\xca\x85\x5a\xf3\x70\x01\x15\x99\x6a\xc1\x1d\x02\x17\x7d\x7c\xff\xe1\x75\x24\x8b\x9d\x84\xeb\x35\x57\xd3\xbe\x6b\xd6\xb7\xa3\x6c\x53\x20\xb1\x2a\x53\x61\x50\x58\xa1\x9e\x66\x2e\x19\x14\x1d\x38\x30\xfa\x74\xc4\xd4\x7a\x4e\xf6\x10\xcf\x60\x8b\x3b\x84\x8d\x96\x6b\xef\x53\xde\x28\x36\x79\x5a\x82\xdf\x33\xf5\xad\xc2\xad\x1d\xd7\x1f\xa6\x27\x6e\xd2\x22\x2c\x7e\xfe\x76\xad\x5e\x9a\x05\x27\x87\x9f\xe6\xb7\xcc\x2e\x54\xec\xf4\xb0\x1e\x2e\x65\x76\xf0\x4b\xf4\x07\x64\xf6\x33\x20\x01\x75\xbc\xa5\x1b\x8b\xc5\x1a\x47\x29\x8e\x46\xbf\x16\xd7\x4c\x0e\xf8\xd7\xb2\xb9\x65\x9e\x77\x8b\x5d\x30\x85\xb1\x1f\x28\x9a\xe7\x48\x74\x0b\x1d\x4f\xd0\x8a\x6e\xcc\x1f\x08\xed\x20\x5b\x1f\xab\x5f\x8e\x88\x9c\xfd\xdf\xec\x00\x02\x18\xa9\xa3\xb8\x37\x00\x8a\xcb\x84\x73\x81\x7f\x33\x08\xd7\x60\xb0\xa9\x87\x79\x19\x21\x89\x13\x97\x18\xd8\x0c\xc4\x6a\x85\x3b\x82\x0a\xad\x02\xef\x27\x84\x10\xc3\xbe\x18\x41\xe9\x47\x21\xf9\xb5\x6a\xc2\x1e\x04\x24\x2a\x3b\x1e\xdb\x42\xfe\x2e\x1d\xf4\x14\x87\x1d\xe7\xc3\x18\xc5\x0c\x38\xb4\xbc\x9f\xa8\x53\xbb\x96\xa2\x54\x36\x8d\x86\xe8\x3c\x39\x8b\xd4\xef\x68\x3d\xa1\x5d\xb3\x9b\x94\x6a\xaf\x78\x93\xbd\xcb\xd1\x6f\x94\x00\xfd\xce\x7a\x6a\x9f\xf7\x14\xbb\xfd\x8e\xef\xaf\x50\x77\x9b\x44\xa9\xe5\x6f\xe9\xa4\x7d\xf3\x99\x7b\xb4\xef\x06\x35\x48\xef\xa5\xe4\xfe\x04\xa6\x39\xe1\x7d\x5a\x3f\xe3\x8b\x17\xdf\x7c\x9f\x74\x60\x62\x3d\x68\x5c\x66\xae\x2e\x7a\xb3\x2c\x47\xc5\x6f\xc6\x83\x4d\x32\x76\xba\xe6\x55\x35\xfd\xb5\x41\x9e\xf4\x7f\xd3\x64\x78\xad\x1b\xba\xde\x4f\x93\xbd\xda\x09\xa0\x06\x64\x0e\xab\x8b\x5e\x55\x52\x47\xfd\x84\x6e\x1a\x1b\x8b\x61\x7d\x2c\x97\x1a\xbd\x0a\x62\xfc\xdf\x06\xf4\x5d\x6b\x68\xed\x8c\x9e\x38\x45\x2f\xda\x0f\x56\xbc\xbc\xa5\xf5\x41\xfa\x20\x4a\x06\xa3\xdd\x04\xe5\x54\xd3\xbb\x6e\x30\x49\x63\x47\x07\x80\xa3\xdd\x24\xe5\x3b\xca\xf3\x73\x64\x14\x16\x1a\x53\x2d\xc9\xed\x60\xf6\xf4\x85\xee\x33\xee\x14\x7d\x45\x5a\xfe\xe2\x69\x36\x9c\x09\xc4\xa4\x0b\x34\x00\x4d\xd5\x94\x45\xf6\x51\xda\x32\x11\x99\x07\xf8\x1c\xc8\xcb\xe0\x7c\xa1\xba\xa1\x26\xa5\xbd\x2b\x62\x78\xab\xc9\x33\x2e\x4b\xe7\x0b\x89\xbc\xd4\x50\xc9\x87\x67\x1d\x0a\x3a\x3f\xba\x80\x72\x06\xc8\xd2\x8b\xda\x98\x44\x9e\xdd\x4b\x9e\xc5\x2e\x41\x58\x81\xc7\xd4\x28\xe0\x2c\xb0\x62\x0c\xf7\x1d\xa8\x3e\xd9\xb0\x37\x98\xf4\xcf\xb0\x19\xa1\xcd\xf8\xf9\xf9\xe2\xe7\x30\xed\xf0\x8a\x92\x66\x86\x3c\x04\xfa\x9b\xcd\x51\xe1\xa5\xb5\x12\x6a\xa0\xfb\x38\xe1\xe7\xb0\xdd\x17\xb5\x9b\x79\x57\xcd\x9d\x8f\xc7\x69\xaf\xd4\x0e\xe7\x76\xd5\x35\x86\x11\xe8\x86\x21\x58\x8e\x3e\xd0\x23\x4d\x2b\xec\xd1\xcb\x6f\x0d\x1f\xf9\x25\x1a\x58\xa6\x64\xdd\xe8\x58\x87\xfb\xee\x56\x9a\x0e\xbb\x65\x72\x25\x1d\xb6\x20\x4d\x62\x99\x59\x8d\x74\xc0\x32\x7e\xcd\x74\x48\x0e\xc8\xdd\xda\xb0\x5f\x7b\xce\x5c\x41\x24\xdb\x3a\xae\x12\x3c\x57\x0e\x1b\x76\x0b\xb3\xba\xec\x86\xa1\x4b\x85\x05\x57\x8f\x6d\xb0\x62\xeb\x58\x04\xd9\x38\x8e\x3a\xdf\xfe\xfa\x4c\x67\xcb\x98\xd9\x60\x90\xee\x80\xcb\x89\x5e\x67\xdb\xe2\xea\x6f\x91\x9c\x0a\x1e\x83\xaa\x16\x79\x8c\x13\xb2\xf1\xb1\x7f\x6a\xc7\xc2\x81\x81\x37\x0b\xa8\x6b\xc2\x83\x91\x49\x02\x7c\x13\xc9\xa2\x44\x27\xc8\x37\x75\xa8\xe8\xfe\x18\xc3\x41\x84\x4e\x9d\xf6\xa5\x19\x22\xf2\x86\x30\x42\xb5\xd4\xb7\x1e\xd8\xa8\x0e\xc0\x2f\xce\x3a\xc2\xb0\x45\x78\x41\x01\xc2\x75\x52\x8a\xd4\x16\xa0\x5e\x33\x70\x22\x3f\xd5\x0a\x58\xbd\x7b\x03\x3d\x1a\x8c\x6b\xcd\x8a\x35\x58\x86\xec\xcc\x2b\xe0\xc3\x7e\x2c\x3d\x5b\xc4\x6c\x53\x0e\xe3\x01\x2c\x92\x7e\x98\x81\x93\xf5\x57\xd5\x54\xe3\x09\x36\x5c\x04\xfc\xfd\x0c\xde\xc0\xf7\x89\xd6\x25\x5c\x92\x1a\x6f\x90\x14\x25\x28\x59\xe9\xe4\xb4\x5a\x14\x04\xcc\x4f\x3c\xc5\x3f\x59\x59\x49\xab\x71\xda\x68\x68\x60\x25\x10\x43\x71\xf0\x00\x8d\x2b\xb2\xeb\x4e\x4c\x57\x00\x84\x54\x1d\xc9\x23\x13\x4e\x14\x73\x34\xc6\x94\x1c\x5d\x1a\x3d\x17\xeb\x7e\xba\xc1\xbb\x3b\x88\xad\x73\x6f\x23\x9e\x51\x28\x55\x5f\x26\x38\x01\x5e\x49\xaf\x35\x89\x52\x1b\x71\x65\x4c\x86\x78\xb1\x84\x54\xe9\xb0\x91\xaf\x22\xcf\x15\xc3\xf2\x48\x35\x13\xf8\x8c\x0b\xc1\x40\xf2\x87\x60\xaf\x01\x93\x00\xe8\x1b\xaf\xa6\x63\xc5\x25\x9b\x95\x90\xe7\x7f\x80\x9b\x7a\xec\xca\x0e\xe1\x81\x71\xc1\x0b\xeb\x0a\x4d\xe8\x69\x8a\x67\x70\x62\xc1\xd2\x27\xbf\x56\x47\xb3\x11\x54\x95\xdd\x87\x97\x00\x9a\xed\x36\xd3\x66\x8d\xdb\x24\x0f\x72\xd8\x0b\x5a\x70\xa2\xa2\x54\x08\x12\x20\x91\x03\xac\x9a\x22\x7d\xbc\xbb\x65\x47\x0e\x09\x00\xe1\xb0\x29\xb5\x8b\x3b\xc6\x28\x1e\x00\xa5\xfb\xc6\xb1\x07\x6f\x87\xf7\x26\x1c\x6c\xa8\x05\x9e\x1d\xbc\x0f\x1c\xeb\xd8\xb1\x67\xb1\x4f\x56\xf0\x6d\x74\x78\x83\xa0\x8f\xc2\x88\xac\xe6\xfd\x1d\x68\x85\x2a\x23\x3d\x75\x2b\xc7\xc4\x4a\x9d\x06\xf6\xda\x08\xc7\x2b\xf6\x0b\xaf\x0a\xa9\x89\x55\xff\x18\x1d\x93\x77\x08\x8e\xe9\x83\x17\xa3\xed\xd4\x44\xd2\xfd\xcb\x33\x6e\xbb\x61\x0f\x6f\x6f\x8b\xf5\x0b\x7d\x92\xeb\x5b\xac\xbc\xbe\xc5\x5a\xd7\xd7\x86\x19\xec\x3e\xc9\x7b\xf1\x87\x8a\x22\xf0\xda\xc0\x5b\xea\xc2\x2c\x3f\x60\x7d\xbb\x7c\xcc\x15\x80\x1d\x4f\x55\xad\x71\xf4\xa9\x54\x56\x37\x78\x88\xb1\xb1\xe3\x14\xe5\xfa\x05\x32\x9a\xed\x0a\xd3\x88\x22\xa5\xba\x5b\xe3\x64\xd8\xdb\x95\xe4\xe6\xdf\x70\xdc\x19\x6a\x37\xd8\x6c\x8d\x2e\xb9\x6d\x24\x26\xba\x04\x07\x75\x39\x52\x6c\xf2\x70\x27\xed\x6a\x4f\xbd\xbb\x2c\xf0\xcf\x6a\x0a\x12\xe1\xb1\x46\xd7\xa2\xbd\xf4\xc0\x79\x54\x0f\xd3\x9b\x14\x65\xbe\x77\xd6\xd1\x0e\x1a\xe2\xaf\xa2\xbf\xcf\x95\x9c\x05\xbe\x6e\xc1\x50\x5e\xec\x65\x23\xf2\xb2\x34\x68\xdb\x43\x65\x4e\x56\xa2\x42\xe3\x26\xda\x49\x8d\x43\x04\x20\xd1\x47\xc8\x62\x80\xb7\xfe\x76\x3e\x18\xe4\xfb\x29\x18\x2b\xef\x08\xaa\xba\xe0\x95\xe2\xd5\x29\x38\x4b\x80\xad\x50\x13\x21\x37\x30\x63\x77\xaa\x05\xf7\x46\xcb\xfa\x5d\x6b\x65\x40\x2d\x00\x58\x75\xf6\x3a\xc8\x02\x82\x72\x68\x7c\xd5\x04\x37\xae\x62\xfc\x40\x22\x42\xb4\x6f\xed\xfe\x6c\x78\xb2\x43\x8e\x92\x52\xb1\x3a\x43\x52\xc6\xe2\x0e\xce\x36\xba\x26\xfa\x3e\x13\x0b\x10\x77\x49\xc7\x6d\x5e\x8e\x4c\xa0\xe7\x1d\xa1\x28\x0b\xbb\xf4\x30\x4d\x2c\x36\x25\x89\xa3\xe7\xc7\x96\x4d\x38\xa3\x85\xf0\x57\x99\x7b\x1e\x7f\xe0\xab\x3e\xc8\x7a\x68\x76\xe2\xd0\x4d\xc7\xdf\x62\x79\x2b\x22\x13\x74\x20\x48\x18\xe2\xcf\xd2\x41\x5a\x22\x17\xaf\xb1\x8e\xab\x50\x8e\x26\x59\x7f\xf3\x37\xbf\x7a\x3d\x8a\x46\x93\x2d\x35\x4f\x57\x6c\xce\x82\x88\x1f\x37\xa4\x8f\x80\x7d\xcc\x1c\x32\xb1\x42\xf8\x40\x54\xea\x8d\x3c\x77\x5c\x6b\xeb\x78\x08\xda\xa0\x0a\xd6\xf1\xd6\x75\x74\xe6\xf8\x83\x7b\x74\x53\x72\x8b\x68\xf2\x76\x9e\x7b\xc3\xdd\x04\x08\xd1\x2e\x3b\x5a\x47\xc9\x98\x68\xb6\x34\xe6\xcf\x0d\x4d\x95\xac\x21\x72\x6e\xa3\x35\xa4\x39\x76\x1b\x82\x73\xd9\x2d\x0c\x5d\x1c\x4f\xad\x3e\xb0\x21\xee\x7e\x90\xf7\xd8\xa3\xf5\x5f\xc9\x8f\x98\x23\x5d\x27\xa3\x3e\xe8\x60\xcd\xdd\x7c\xa7\x96\xa9\xcd\xcd\x5e\x98\xb2\xdb\xd4\xea\x50\x9b\x49\xb9\xff\xa6\x62\x97\x2d\xea\x68\x84\xd6\x1a\x35\x1f\x90\xd4\x66\x4e\xec\x04\xbd\x56\x7f\x2c\x63\xd4\xb3\xe1\x40\xd4\x05\xb9\xd2\x29\xc3\xc5\x21\x5a\xf1\x00\xed\x9d\x92\xb4\x21\xfc\x96\xad\x03\x35\x82\x04\xc5\xd4\x7e\x41\x36\x50\xa4\x2a\x75\x90\x40\x5b\xae\x7a\xcb\x36\x0a\xd9\xb8\xa0\x86\x22\xa1\xb5\x37\xad\x8b\xcf\x51\x9d\xcf\xaa\x97\x16\x2f\x61\xd7\xb3\x3a\x38\x96\x0d\xed\xb2\x26\x75\x36\x3f\x18\x0e\x85\x42\x3f\x90\xb9\x75\xcd\xb2\xf7\x34\xa0\x2e\xb5\xa7\xe8\x92\xdc\xdb\x1f\x68\xd9\x08\x48\xb8\x71\x2b\xef\xed\xe6\x79\xc1\x5e\x1d\xc2\x21\xfd\x9e\xe6\xc9\xd9\xa9\x43\x2e\x99\x01\x4a\x37\x77\x40\xaf\x25\x54\x58\x8e\x81\x60\x09\xfa\x62\x25\x84\xf2\x9e\x11\x45\x77\xb3\x3d\xcc\x11\xf1\x8d\x75\x27\x27\xe7\x50\xf6\xbb\xb7\x18\x19\x10\xc2\x82\x37\x6b\x1c\xcd\x30\x46\xd3\x3d\x4a\xe1\x5e\xd8\x18\x9c\xe9\x20\x16\xb3\x5c\xed\x3b\xcf\xea\x40\xb3\x76\xdf\xa1\x55\xaf\xc8\x37\xa3\xe0\x4b\x71\xce\xca\xbe\xbd\x36\xff\x32\xe7\x98\x62\x13\x4b\x24\x48\xdc\xbc\xf6\x20\xf5\x2b\x12\x34\x67\xe9\xc5\x71\x5b\x12\x94\x0f\xa4\xc4\xff\x43\xa5\x3d\xf1\x3c\x77\x0b\x00\x09\x61\xa9\x61\x9e\xd1\x69\x32\x46\xeb\x42\xd7\x6d\x59\x33\x35\x9c\x1a\x36\xc1\xeb\x1e\xd2\xf9\xdc\x5e\xa9\x5d\x38\xf5\x94\x2a\xd3\x8e\xbf\x7b\x1f\xc7\x35\xe8\x28\x7c\x5c\x34\xf5\x8f\x35\xb6\xfe\x44\xae\xdc\x8a\x31\x7c\xec\xc7\x39\x0b\x85\x6f\x13\xf2\x31\xaf\xf5\x34\x70\x78\xea\xd2\x50\x5f\x57\x08\xc3\x8e\xf1\x37\x76\x4d\x3b\x9c\x12\x43\x37\x6f\xce\x8a\x31\x5d\x31\x10\x29\x08\x03\x24\x7a\xe1\x06\xa2\xb6\x53\x6c\x1d\x71\x17\x12\x0f\xc2\x41\x4d\xc6\x76\xd3\x44\x77\x6d\x5c\x90\x4f\x5d\x3b\x8a\xb3\x50\x48\x01\x52\x4a\x38\xd1\xb2\xfa\x67\x6d\x86\xfc\x23\x29\x97\x1d\x35\x8c\xb3\x2b\x66\x7c\x74\x7b\xc1\xfe\x98\x63\x51\xdf\x75\xf0\x88\x65\x8d\xc2\x27\x48\x4d\xf9\x28\xef\x10\xaa\xb4\x72\x9c\x1b\xe5\x6d\xc0\xa0\xf1\x18\x3d\xf1\xc8\xe7\x64\xb4\xb6\x1d\xbd\x58\x75\xbc\xda\xa7\xd6\x55\xb9\xc1\x54\xab\xe6\xfa\x6f\x15\x39\x7f\xb2\x8c\x71\xec\x64\x7d\x58\xb8\x81\x16\xaf\xf8\x9b\x33\xaf\xc8\xb1\xa4\xd1\x5a\xee\xe1\x23\x99\x89\x4d\x93\xad\xdb\x79\x40\x4f\x45\x49\xbf\x8f\xd8\x81\x0f\x1d\xfd\x5b\x2b\x1d\x1c\x35\x93\x6e\x72\xab\x2c\xc7\x30\x92\x3f\x4a\xdd\x9b\xd4\xb4\xea\x3a\xce\x59\xe0\x33\xf4\xd3\x3a\x64\xa1\x39\xe6\xff\x08\x5f\x2c\x73\x62\x2e\xd2\x5c\xef\x5a\x8c\x70\x74\x4f\xf3\xbe\x75\xd2\xc4\xd8\xcb\x08\x3e\xcd\xf8\x2b\x20\x12\xc1\xf2\x50\x99\xe9\x5c\xba\x36\x49\xc3\x98\xf4\x04\xb5\x4a\x83\x1e\x0f\x5e\x30\x79\x44\x84\xc7\xdd\x08\x0b\x0b\x8e\x0c\x0e\x77\x76\x13\x3c\x8a\xd5\x76\x7f\x70\x15\xbc\x08\x0b\x87\x62\x25\x34\xaa\xa3\x1c\x26\x55\x8a\x71\xeb\x20\x07\xb4\x23\x14\x17\x44\x54\xb3\xd6\xdf\xb9\x58\xd4\xf7\xd1\x09\x44\xb9\x37\x39\xf8\xdf\xc6\x19\xac\xf5\x53\xeb\x45\x1f\x56\x26\x69\x04\xb9\x31\x6a\x05\x3f\xc7\x29\x11\x99\xbb\x4f\xde\xaa\x53\x5e\x10\x99\x4d\x59\xc4\xa7\xa0\x73\x66\x4d\x5f\x2a\xca\x71\x3e\xdc\x79\x19\x98\x2a\x6d\x5e\x3d\xc1\x03\xaa\x8e\x5e\x79\xe9\x59\xfe\x1a\x3b\xde\x21\x33\x0b\xe0\x6f\x64\xe5\x9b\x93\x2d\x58\x04\x46\x2d\xb8\xbe\xb3\x38\x08\x2d\xf5\xa5\x44\xa4\xbc\x71\x33\x5d\x68\xbb\x04\x46\x71\xd4\xd2\xb4\xa9\x9f\xea\xb7\x4e\x69\x71\xd8\xd0\x4d\x8c\xba\x17\xeb\xe4\xcc\x67\x93\x51\xb8\x69\xe1\xe6\x30\x0e\x5f\xe3\x9c\x96\xec\xb1\x07\xb8\x4e\xf2\xd7\x3a\x25\x18\x78\x6c\x48\x44\x98\xdb\xc4\x30\x79\x8d\x2d\x5d\x80\x97\xb8\xd2\x71\xc8\xe0\x17\x25\x0d\x7e\x77\xa5\xfd\xad\xf2\xbc\x77\x1d\x31\xfb\x54\xfb\x52\xe1\x58\x71\x50\xc6\x86\xe7\xab\x27\x41\xd9\x8c\x26\xb9\x6d\xac\x85\x75\xdd\x59\x40\x96\xd7\x53\x80\xaf\xc0\x0d\xfd\x4c\x51\x22\xec\x44\x7a\x64\xd7\x07\x44\x5f\xda\x14\xbf\xa3\xcf\xbf\x76\x36\xf7\x36\xa7\xf1\x83\xe4\xac\x17\x46\xd5\x27\x4f\xcb\xaa\x8b\xda\xd0\xd5\x53\x9a\x4b\xc0\x2b\x90\x3c\x82\x3e\x87\x30\x97\x10\xbc\x97\xb3\x72\x09\x24\xef\x3a\x8b\x6e\xe4\x11\x38\x46\xd0\x41\x61\x4b\x91\xaf\xc1\x32\x63\x0e\xe6\x38\x24\x14\xf1\x93\x70\x0b\xb5\x6d\xea\x3b\x70\x1e\x5e\x03\xaf\x10\xe4\x14\xf2\xa1\xc4\xf3\xda\x76\x40\x06\x3f\x02\xbd\x3b\x8e\x45\x2f\x24\xbe\x51\x17\x48\xd5\x63\x54\x9b\x3a\xe0\xd1\xfa\xfd\xb2\xdf\x98\x10\xd9\xb4\x9e\x13\x61\xa9\x04\x91\xcd\xd2\x15\x89\xe8\xc3\x0f\x25\x36\xe9\x2e\x6a\x36\x47\x38\xc9\xff\x27\xa6\x7f\x44\x65\x7e\x45\x3d\xd5\xd0\xf8\x78\xfd\x47\xb4\xe7\xbf\x64\x06\x43\x6d\x59\x95\xd8\x48\x6b\x6b\xf4\xcf\x55\x32\x92\x45\xd0\xd5\x43\x12\x54\x9c\xb0\x3a\x61\xae\x03\x31\xd6\x20\xc0\x7f\xf9\x64\x9d\xd8\xb1\xf3\x1a\xad\xb9\xd0\xfc\xb8\x18\x19\xd9\xe8\x46\x4a\x36\x19\x6e\x65\xc3\x3e\x89\x14\x07\x08\x71\x0b\xd6\x90\x68\xbd\x34\xb5\xb0\x78\xc5\xd3\xc9\x7a\x8f\x27\x26\xbd\x8a\x1d\x8c\xdd\x4a\xf5\x75\x24\x38\x4a\x17\xef\xbf\x4d\x80\x03\xb3\xf1\x03\xd2\x21\x60\x9e\x02\xad\x01\xb6\xe0\x51\xcd\xeb\xef\x9a\x93\x28\x71\x70\x0e\x4f\xf2\x2f\x6c\x5c\xb8\x5e\x73\xaf\x24\xc6\xce\x0e\x49\x60\x59\xf0\x45\xd6\xfb\xb9\xd3\xd7\x09\x9f\x08\x88\x0e\x4a\x85\xf0\xb1\x8e\x8a\x80\x89\x79\xf5\xdd\x5f\x5d\xb0\xf4\x89\xd2\xeb\x98\x2d\x68\x39\x55\x33\x4e\xf2\x8d\x90\x16\x50\xdb\xd1\x11\x2f\xe1\xd3\xa9\x27\x03\x6a\x40\x76\xfc\x14\x6b\xb4\x47\xec\x74\x6a\x8f\x75\xd5\x91\x8a\xb3\x74\xfb\x10\xfc\xa4\x9e\xc7\x2a\x71\x65\xf7\xfd\xd1\x1c\x24\xe0\x1f\x98\x7a\x00\x3f\x36\xb9\x64\x68\x3f\xfd\xfb\xc4\x3d\x91\xa5\xec\x3a\x19\xc3\x03\xde\x09\xa7\x3a\x00\x1c\x71\x3b\xb3\x2e\xcb\x1b\x86\x7d\xb9\xaf\x5d\x18\x1e\x54\xf3\x9a\xa9\xcd\x50\x48\x3e\x13\x49\x23\x25\x94\x37\x89\xd3\x21\x08\x9f\xad\xd8\x7b\x78\xe0\xb3\x91\xd5\x27\x9a\xb8\x9d\xfe\xb6\x1b\x1f\x24\x21\x6e\x0b\x8c\x3d\x33\xdd\x95\xe7\x6f\xf1\xd3\xd7\x61\xcc\x81\x89\xc9\x5a\x36\xb8\x82\x2c\xc7\x9a\xbf\x37\x81\x56\x0a\x76\x1e\x09\x58\xa1\x53\xf1\x23\x6c\xa5\x37\x7c\x78\xd7\x9a\x79\x04\x01\x91\x37\x64\x1c\xd3\x25\xbc\xf8\x7c\xbd\x6b\x74\xe2\x9e\xd6\x64\x60\xb5\xe3\x56\x87\x84\x31\x23\xce\x3e\x3d\x73\xab\x83\xc7\x0f\x49\xc6\xac\xb4\xfb\x0e\x79\xf0\xdc\x8a\x85\xc0\xf3\x07\x90\xfb\xbf\x53\xb7\xf6\x07\x21\xe8\x78\x69\x89\xd4\x7a\xa5\x62\x11\xe3\x22\x2d\xdd\xe6\xfd\xa8\x85\x3c\x65\x62\xfc\xfd\x53\xb8\xe3\x78\x65\x86\x20\x1c\xce\xd1\x3b\x3c\x9d\xc7\xa0\xd1\xb8\xe7\x35\xf7\x98\x1c\x79\x12\x9e\x01\x6e\xc1\x97\xfc\x59\x25\xd2\x89\x3a\xb0\x73\x66\x40\x8e\x2e\x81\x79\xfa\x72\x24\xfc\xb8\x3c\xe7\xa7\x48\x78\xe7\xad\x76\x93\xb7\xde\x9f\xda\x7e\xa2\xe3\xa9\xd7\x72\xd2\x9b\xb3\x37\x91\xf0\x83\x02\x00\x65\x15\xdb\x11\x83\x34\x31\x1a\xa4\x8f\xc7\x68\x46\x6c\x35\xd7\x94\x0f\x44\x5a\x12\xfc\x8c\xf1\x56\x8a\xa0\xa8\xea\xbc\x09\x32\x64\x27\xba\x9a\x15\xd9\x56\x36\x40\x16\xf5\x36\x61\x5b\xcc\xab\x02\x6c\x28\x7e\x83\x4f\x4e\x42\xb2\xb0\x8f\x09\x2c\xfe\xa5\x62\x94\x0c\xe3\x9e\xe2\x94\x8b\xcd\x73\x93\x2c\x1e\xa7\xfd\x18\x02\xa5\x95\x10\xfb\xef\x64\x6a\x80\xeb\x52\xe0\xaa\x9a\xbd\x5c\x1b\x1d\x32\x3a\xf7\x80\xbd\x6e\x4e\x99\xcc\x8c\x43\x2d\x17\x9a\x4c\xd7\xc2\xc8\xce\x31\xc6\x99\x10\xd8\x40\x0e\x42\xf1\x64\x00\x9d\xae\xb5\x87\x79\x7d\x0f\x90\x8e\x5a\x1f\xd3\xd3\xda\xee\xc1\xd6\x42\x57\x01\xcb\x9e\x2e\xc6\xab\x41\xa2\xf7\x05\xa7\x59\x39\x34\xaa\x73\x2f\x11\x94\x9f\xe4\x5a\xa1\x8e\x67\xa2\xde\x20\x1f\x5a\x70\x6b\x0b\x31\xad\x38\xb7\xbb\x51\x05\xd4\x32\xc3\xbd\x12\xb3\x78\xb3\x6e\x06\xe0\x3b\x7a\x4c\xd0\x47\x3c\x15\xe1\x39\x90\x23\xd3\xf7\xce\x6a\x03\xa7\x4f\x0f\x06\x7b\x50\xea\xb6\xef\xeb\xfb\xe3\xb5\x53\xab\x3a\x40\x7e\x5b\x37\x8b\x38\x89\xf1\x98\x3f\x77\x01\x7b\x79\x43\xe8\x23\xd7\x49\x1b\xce\x3e\xdd\x84\xa7\xbe\xab\x44\x8e\x1e\x4c\x95\xa6\x3e\x41\x62\x79\x9b\x54\xde\xfc\x64\xd6\x69\xad\x99\x74\xa6\x9d\x9d\xac\xcc\x76\x86\xf9\x38\xf5\xb2\x79\x45\x83\xac\xa7\xd8\xe0\x14\x4c\xed\x90\x2f\x04\x96\x74\xa8\x7f\x6c\x1c\x0e\x17\xca\x8d\x2b\x91\x52\x8c\x87\x56\x0b\x4a\xfa\x0a\x7d\xbd\x87\x7f\xf0\xbf\x1a\x07\x43\x85\xd4\x3d\xeb\x9f\x34\x8d\xa9\x03\xf8\x29\xe6\xdd\x6c\x98\x95\x44\xe8\x6d\x3a\x93\xb9\x70\x4d\x90\x2c\x4f\x03\xaa\x00\x25\xa7\xc9\x19\x61\xc4\x2c\x2f\xab\x19\x00\x8c\x58\x88\x0e\xfc\x27\xd0\x92\x11\xff\x81\x2c\xef\xfd\x74\x3b\x99\x0c\xb4\x1f\x16\x18\x72\x79\x33\x6d\x49\xbc\x38\x71\xbd\xda\x60\x99\x8e\xaf\x26\x9c\xdc\xfb\x06\x1e\x0c\xfa\x74\x1a\x0f\x7b\x7e\xa3\xc2\x4d\xed\x69\xd6\x89\xe3\xd2\x9f\x89\xf6\x21\x52\x01\xdc\x94\xfe\x8e\xff\x82\x4e\x49\x3b\xc9\x47\xf0\xdb\x45\xf3\x57\x04\xea\x62\xf3\x97\xf0\xdf\xb0\x0b\xd2\x7a\x41\x03\x4f\xec\x83\xb4\x92\x9a\x31\xde\xa0\xf7\x33\xf5\xdc\x91\x6a\x3e\xc8\x1d\xc8\x0d\x0f\xb6\xf4\x09\x24\x87\x71\xf3\x7a\xb5\x79\xf9\x45\x9c\xf1\xdf\x4d\x92\xad\x93\xfe\xcb\x0b\xb2\xcd\xd6\x21\x49\x2e\xf3\xe0\x60\x76\x40\xe9\xf1\xd6\x60\x92\x2a\x0c\xe6\x26\xbb\x30\xf4\x49\xcf\x46\x10\xf7\x27\x67\x35\x41\xa8\xe3\x0e\x1d\x42\xc7\x49\xbf\x3f\x46\x9e\x58\x04\xcc\x05\x92\x71\x3e\x0a\x77\xf3\xf5\x19\x7e\xfe\x62\x9b\xef\xf3\xd9\x37\x7e\xf5\xbe\x63\x1f\x61\x65\x86\xcd\xf8\x27\xb3\xfa\x92\x1e\xc4\xc9\xb6\x6a\x16\xa0\x8e\x73\x2f\x2b\x0a\x12\x6a\x86\x19\x3b\x23\x9b\x6b\x9b\x02\xb3\x6e\xd2\xb1\x78\xfa\x3d\xc0\xad\x4e\x5a\xd7\x4a\x66\x1c\x0c\x51\x5e\x3b\xaf\x76\x19\x07\x2f\xa3\x01\x67\x16\x42\x2f\x89\xca\x89\x85\xa2\x1d\x5c\x68\xf6\x98\x34\x5b\xb7\xfe\x72\x81\x34\xc1\x7a\x56\xf6\xb7\x7e\x1b\xff\xa9\xf6\x1c\xd3\x0f\xe4\x50\x0d\x0f\x53\x01\x32\x52\xa5\x20\x8d\xb0\x34\x09\x73\x8b\x16\xe9\x60\xdb\x25\x46\x56\x3a\xf1\xfa\x37\x64\x41\x99\xc9\xb8\x7c\x32\xd0\x19\xf9\x00\xf9\xf3\xd1\xb5\xee\x20\x1b\x5e\xa1\x62\x04\x8f\x0d\xf4\x98\x0f\x56\x08\x93\x0d\x50\xab\x69\xdb\x98\x80\x2d\xca\x34\x60\xfd\x97\xff\xe7\x7f\xfd\xfa\xc2\x6b\xfa\x00\x5f\x2b\xc7\x03\xf8\x97\xb5\xee\x09\x71\x1e\x9a\xc3\x88\x08\x1f\x9e\x3e\xe1\xc8\x99\x19\xd4\x57\xfb\x14\xb3\xf5\x2d\xf1\x21\xf4\xca\xe6\x11\xff\x7a\xd7\xfc\x30\x81\x1c\x44\x4c\xce\x95\x64\xab\xfd\x36\x31\x5b\x50\x44\x9f\xfe\xec\xfd\x4a\xf5\x3f\x82\x1c\x43\x04\x9a\x57\x2f\xcd\xdc\xc2\xa3\xda\xbf\x9d\x64\xbd\x2b\xdd\x9d\x49\x06\xe1\xde\xff\x4c\x32\x33\xea\x0c\x19\xb0\x39\x41\x25\x54\x88\xc1\x77\x59\xee\x66\x05\xa3\x82\x6f\xdc\x07\xdc\xc4\xd7\x88\x4c\x35\xc8\x0f\xf4\xf2\xbd\xbd\x64\xd8\x0f\xa5\xab\x09\x32\x1d\xd6\x7b\xcf\xc9\x5d\xc6\xe2\x34\x46\x21\x44\xa3\x09\xc4\x7a\x82\x8b\x31\xaf\x8d\xd4\x93\x4c\x18\x03\x6f\x04\x65\x89\x10\xf0\x3d\x5e\x39\x17\x6e\x42\x1d\x02\xa6\x65\x5f\x25\x0a\xc8\x84\xcd\xab\x2d\xd4\x17\xc0\x29\x8e\xdc\x24\xd0\x3b\xa5\x3a\x7a\x2a\x8a\x3c\xe2\x1d\x95\xe3\x54\x5d\xd5\x57\xda\x91\x3d\xda\xce\x06\x10\x3d\xcd\xbe\xd6\x90\x0d\xbf\x4c\x76\x36\x7f\x89\xbf\xc6\xf4\x6b\x9c\x8f\x15\xeb\xba\xc3\x43\xa5\x85\xbd\x3b\xe2\xb5\xd4\x37\xcc\x7b\x04\x90\x75\x44\x4a\xb0\xc6\x62\x24\x50\xd3\x64\x8d\x5a\x26\x83\x64\x2b\x85\x76\x7f\x40\x91\xe5\x08\x37\x39\x57\x48\x67\x90\x16\xa5\x82\x23\xfe\x02\x64\x7a\x1e\x01\x44\x64\x50\x20\xe5\x7b\xc4\x76\xc8\x45\x61\x60\xf8\x20\x4d\x8a\xb4\x20\x12\xfa\x80\x59\xa4\x5b\x11\x3a\x4e\x8e\x13\x2c\x54\x74\x93\xce\x91\x7e\x53\xa0\x49\xe5\x4e\xbe\x66\x91\xf1\xba\x6d\x8f\x99\x9b\xb0\x13\x48\x77\x0f\x63\x4a\x24\x6b\xfb\x02\xd2\x4f\x08\xb1\xdc\xd1\xf4\x19\xc5\x16\x96\x3e\x4c\x1a\xd8\x48\x2f\xb7\xd3\xb0\x6c\xfd\x39\x58\x98\x85\x7d\x0c\x42\xed\xb7\x51\x07\xfe\x6d\x35\xa5\xe8\x5d\xf1\x05\xf8\x08\x40\x57\xbf\xd7\x9e\x5c\xe6\xcb\x9e\x42\x74\x5c\xf6\xe9\x4b\x94\xae\xbf\x30\x6f\x5f\x37\xe9\x63\xc2\x8b\xaf\x38\xb0\x5c\xff\x6a\xd3\x84\x5d\xd0\x89\xd5\xc5\x84\xea\xad\xea\xaf\x5a\x66\x34\x99\xad\xb0\x42\x14\xda\xf5\x3c\x4b\xac\x68\xd0\x09\xdf\xbe\x68\x30\x04\xb9\x60\x0b\x3c\x39\x0d\x66\x9a\xd9\xb6\xb2\x65\x4f\x01\xc1\xb8\xab\x07\xfc\x1a\xf3\xbb\xcc\xc9\xf5\xdb\xe9\xe3\x8e\x6f\x00\xcd\xc0\x99\x37\xbb\x68\xe0\xac\xc0\x6b\x49\xb3\x8b\xc6\x81\x05\x78\x5d\xf2\x51\x3a\x94\x3d\xbe\x5b\x52\xbd\x82\xeb\xda\x60\x30\x33\x80\xef\x4c\x94\x17\x90\x5a\xc6\xf6\xfb\x23\x5e\xd9\xea\x9e\x8a\x8f\x83\x9a\x5a\xb4\x36\x56\xbf\x9f\x56\x4e\x35\x1f\xb9\x17\xa7\xb9\xdc\xca\xbc\xbd\x37\x18\xf1\x4c\x57\x73\x64\x2d\x9d\x08\xef\x93\xda\xe7\x08\x15\x51\x14\x67\xf0\xa8\x19\x6e\x0c\x4c\x10\x78\x85\x21\x82\x1a\x75\x47\x83\xa4\x97\xea\x34\x75\x4e\xce\x02\x01\x13\x53\x28\x84\xe4\xac\x47\x4f\xe1\x10\x9f\xc0\x44\x78\x8b\x65\xb2\xb5\x79\xbe\x4f\x0a\x44\x71\x11\x66\x44\xb8\x33\xd3\xe8\xd0\xbf\x2f\xdd\x8c\x11\x34\x4f\xfc\x87\xfa\x5c\xb2\x81\x12\x4c\x80\x8b\x42\xef\xcb\x6f\x85\xd7\x13\xcb\x88\xc1\xb5\x72\xff\x66\x98\xf7\x1b\xc8\x49\xfe\x15\xa4\x0c\xe2\x26\x02\x33\xd5\x07\x59\x0b\xdc\x6c\x5b\x28\x96\xe3\xcc\xe7\x80\x8e\x99\xab\x05\x8e\x78\x2c\x21\x13\x05\xbe\x74\x20\x73\xa3\x26\x59\x4e\x0d\x0e\xcf\x5b\x24\xd8\xb7\xe0\xaa\x74\x4a\xac\xbf\x96\x4f\xc8\xed\xf5\x50\xaa\xc9\x19\xb4\x80\x0d\xfd\x38\x34\x02\xc1\x56\xbf\xbb\x75\x8d\x06\xb8\xeb\x56\x81\xa9\xe6\xc2\x35\x30\x38\xc0\x5e\x3a\x04\xe6\x1b\xf2\x02\xd3\x00\xac\xa3\x42\x85\xb5\x36\xdb\x69\x5f\x91\x85\x37\x42\x81\x09\x6c\xee\xb0\x38\x0f\x6c\xcf\x3d\xc8\xe4\x53\x6b\xd3\x81\x42\x80\x45\x49\x44\xe6\x91\x45\xed\x81\x96\xf0\xae\x6c\x4b\x41\x22\x02\x6d\xc7\x69\x4f\xad\x9e\x7c\xab\x03\x4e\x01\xbe\x63\x6f\x70\x0c\xa0\xf4\x66\x08\xc0\x98\x64\xfd\x3d\xf5\x14\x59\xcd\x03\xec\xe5\x45\x09\xe4\x8b\x7d\x0b\xbd\xac\x13\xcc\xcd\x51\x12\x64\x63\x49\x6d\x5c\x48\x7d\x20\x90\xc0\x8e\x56\x0e\x04\x48\x03\xa1\x60\xd3\x45\x19\xf1\xf9\x4b\xcf\x5d\x2e\x08\x06\xac\x53\xd3\xa5\xe7\x2f\x17\xe7\x5e\x3e\x7f\xe9\x85\xcb\x05\xe8\x0c\x6b\x83\x74\xb7\x93\x2b\x69\xcb\x48\x38\x80\xee\x35\x1a\xa7\x57\xb3\x7c\x52\x58\xd6\x77\x4e\x7e\x15\x16\x73\x42\xa6\xce\xbb\x8e\x2b\xe3\xd4\xc5\x76\x5c\xc7\xa2\x05\xd9\xf5\x75\xa3\x1a\x71\x32\xd3\x4c\xf6\xba\x7c\x7c\x05\xa2\x45\x79\x60\x14\x6b\xa0\x07\xa4\x56\xa0\x27\x29\x37\x3f\xa8\x1f\x2c\x9c\x54\xd6\x87\x73\x52\x3b\xd6\xaa\xd6\x9f\xd1\xbf\x5e\xc6\xbd\xc3\xa9\x7d\x60\x26\xce\xad\x6f\xd2\x6d\x27\x34\xf4\xd4\x78\x9c\xd4\x5d\x96\x3a\x2e\x2e\xe7\xda\x77\x72\x77\x1e\xb6\xe7\x55\x73\xcb\xff\x54\x83\x86\x47\x31\x33\xc4\xf5\x01\xc6\x29\x1e\x33\xcf\x61\x8f\x99\xb3\xba\xca\x72\x94\x6e\x8f\xb5\xe6\xcc\xe5\x78\xc2\x44\xec\x91\x3f\x03\xda\xdf\xd4\x87\xf1\xae\x1a\xaf\xc5\xd9\xc9\x19\xaf\x84\x96\xaf\x47\xf2\xf6\x28\xa9\xea\x59\x07\x26\x3e\x55\x89\x7a\xdb\x66\x68\x8e\x2d\x9a\x0b\x1b\xb3\x83\xf9\xe9\xc9\x48\xd6\x1b\xcc\x88\x67\x9a\x75\x94\x53\xb1\xd6\x1f\x49\xc9\x49\x16\x10\x25\x18\xf3\x67\x4c\x5a\xdc\x64\xb5\x01\xa6\x5d\xbf\xb5\x66\x03\x1b\xb7\xd0\x99\x32\x95\x68\xdf\xdd\x46\x69\x2f\x14\x54\xfa\x88\x2d\x1a\x58\x9b\x4c\x1d\x01\xa5\xda\x10\xd0\xa3\x33\xec\xeb\x4c\x4a\xa4\x09\xf0\xd2\xeb\x89\xa4\xbd\x6c\x23\xb0\x27\xc8\xa2\xeb\x7d\x02\xa4\xe5\x75\x19\x82\xd1\x94\xd2\xd5\xf5\xd9\xbc\x8d\x87\x8f\x89\xdf\x36\x7c\x3d\x8a\x03\x7c\xd0\x42\x22\xc1\xb4\x9f\x95\xb4\x6d\x20\x04\x47\x1c\x67\xa7\xaf\xbf\x16\x04\xa6\x77\x9c\x5c\x35\xc9\x4d\xe7\x96\xd0\x12\x63\x55\xd6\x12\x6a\xb9\xac\xa2\xdb\xba\x97\x0f\x40\xe4\xfa\x37\x0c\x6c\xb9\x51\x6f\xef\xb7\x06\x2b\x31\xa0\xbb\xa0\x44\x42\x8d\xec\xeb\x2f\x42\x5c\xa5\xcf\xaa\x78\x0b\x6a\x3d\x11\x6a\x12\x08\x26\x75\x1b\x78\xf9\xd2\xa4\x59\xae\x79\x6f\x4d\x91\x18\xab\xda\x9f\xd1\x23\x44\x8c\xd7\x16\x8c\x51\x05\xe2\x2e\xc8\x8e\x45\xa9\x11\x2b\x8e\x51\xa7\x8a\x42\x6b\x38\x85\x08\xde\xf0\xcc\x36\xf3\xf0\xbe\x6d\xa4\x86\xdd\x12\x69\x9d\x57\x78\x5d\x92\x6e\x05\x25\xec\x77\xd2\xfd\xf8\x5d\xf5\xaf\xf8\x3d\xaa\x1e\xcb\x9f\x14\xe2\x1b\x25\xea\x29\x53\x88\x15\xa6\xc1\xbe\xce\x8c\xd2\xdc\x65\x94\x28\x2a\x3d\xd8\x8b\x2f\xc6\x74\xe5\x3a\x8c\xcc\x15\xdc\x90\xba\xf9\x69\x4c\x86\x5a\xa7\xe2\xc9\xa1\x51\xfd\x4c\x43\xaa\x1f\x53\x0f\x63\x5a\x51\x59\x6c\x13\x4c\xa1\x59\xda\x87\x60\x76\x47\x14\xd2\xf1\x56\xb8\x95\x14\xe9\x26\x9d\x74\xe5\x14\x73\x71\x92\xfd\xfb\xdb\xa2\x3f\x37\xd5\x3a\xcd\x61\x70\x13\x47\x37\x06\x15\x34\x15\x8e\xc2\xcb\xb8\xce\x36\x30\xde\xa8\x3e\xf9\x1c\x6c\x4e\x93\x01\x28\x75\x8c\x9f\x2a\xea\x03\x21\x33\x22\xe9\xfe\x31\x08\x8a\x5b\x97\xbb\xc0\xb0\x97\xb9\x59\x82\x28\xe7\x81\x3a\xc0\x85\x3e\x20\xf7\xac\xab\x53\x8d\x0f\x4d\xe0\x62\x60\xd3\x7e\x86\x04\xaa\x20\xa4\x0e\xe1\x13\x84\x26\x8a\x26\xe1\x04\x1e\x68\x5d\x32\x2b\x83\x04\x21\xb2\xf6\xb0\x22\x91\x2e\xe2\x5e\xe3\x12\xed\x45\x2d\x4d\x7c\xc5\x03\xb4\x48\xa2\x81\xf5\x18\xb2\xe6\x0b\x5e\x56\xd1\xcc\x67\x71\xf2\x67\x81\xa1\xed\x33\xfd\xfc\x19\xfe\x83\xa8\x28\x5f\x1a\x6b\x05\x1c\xf9\x7b\xc5\x62\xb8\x2b\x22\x70\x4b\xc5\xb0\x07\xba\x17\xdd\xab\x38\xf3\x85\xb0\x44\x22\xf0\xc2\xb2\xfa\x9e\xbe\x8d\xb9\x70\xc8\x6f\xaa\x69\x3c\xfe\x5d\xa3\x0c\xfd\xe5\x05\xf3\x85\xa7\xdf\x4b\xc7\x3b\x9a\x01\xe6\x55\x88\xa9\xd5\xc0\x3f\xcd\x6c\x6a\x98\xbf\x51\x6c\x3d\x6f\x39\xd9\x02\xae\x16\xea\xbd\x73\xe0\xf9\xf7\x2e\x49\x76\xda\x05\xd5\x91\xb6\x01\xe8\x39\x0b\x37\x16\x95\xe3\x57\x5d\xcb\x3b\xf5\x60\xde\x53\x01\x37\x6e\x5c\x64\x28\x6d\x61\xe4\xfc\xc0\xe8\xb5\x50\x85\xe7\xab\x6a\xa2\xa7\x1a\xae\xb6\xe3\xdc\x07\x45\x3c\xeb\x4b\x98\x89\xb7\x0f\x8f\x40\xb7\xf9\x61\xed\x05\xcd\x9c\x59\xab\x50\x24\xea\x53\x3c\x81\x12\x56\x13\x85\x5a\xc8\xf3\xf2\xab\x8a\xab\x87\x2c\xb5\x8f\xe6\x19\x8e\x61\x19\x2e\x4b\x41\x5e\x6a\xd7\x51\x8b\x30\xf7\x83\xfb\x42\x84\xd0\xe4\x07\xa6\x5a\x86\xb3\xa0\xa7\x8c\x3d\xc1\xac\x50\x24\x21\xed\x5d\xc1\x54\x20\x32\x36\x48\x07\xc8\x69\x43\x2d\xf9\x13\x22\x2e\xd7\x9e\x96\x33\x91\x5c\x08\x78\x46\x2a\x71\x24\x2c\x1c\x0b\x13\x88\xae\xdd\x6f\x9c\xd2\x49\x26\x02\x8f\x93\x71\x1b\x11\xdb\x90\x84\x64\xd8\x45\x47\x0b\xbc\x43\x7e\x70\x7f\xf2\x8d\x8a\x0e\xc4\x1c\x68\x8e\x94\x6b\x13\x5d\x68\xc3\x0d\x6b\xdf\x8e\x58\x10\x3a\x0d\xf8\x6b\x0a\x5b\x3b\x5d\x50\x5e\x67\x59\x3e\x41\x08\x59\xad\x6e\xd4\x6e\xa3\x9a\x3b\xa8\xda\x41\x3e\xcb\x1b\x6d\xab\x5f\xb7\xee\x75\xc5\xe5\xda\x31\x28\xd8\x30\xed\x26\x38\x28\x6c\x25\x93\xcc\x3e\x38\x8a\xc8\xcb\xb7\x42\x83\xe5\x75\x9d\x47\xed\xd2\x2e\xe7\x81\xaf\xbe\x2e\x1e\x08\x91\xd7\x64\xc8\x48\x1b\x07\x44\xfb\x60\xa1\x68\x61\x30\xf5\x40\x03\x56\x9b\xa2\x83\x46\xfd\x7a\xaa\x83\xd6\xb8\xab\x55\x2f\xfe\xe9\x9f\x9d\xef\x3f\xc3\x68\x82\x7d\x6f\xe9\xd6\x43\x5e\x42\x60\x13\xd4\xcd\xda\xa2\x8f\x0f\xc9\xc0\x1b\x86\xad\xa3\x8a\x4a\x26\x2f\x62\x9d\x20\xdf\x77\x93\x95\x10\x8b\x78\xef\x83\x48\x18\xec\x1c\xc3\x8f\x56\x0d\x8b\xcf\xad\x0a\x73\xd1\x6e\x95\xd2\xdc\x6f\xda\xaf\x29\x9b\x20\xb5\x9d\x5c\x57\xde\xed\x4f\xd4\x63\x44\xb6\xc2\xf0\x5f\xe8\x21\x4a\xce\x5f\x1f\x23\xa8\x1d\xf9\x8b\x75\x54\x30\xb5\x69\x7d\x25\x90\x7b\x10\x8a\xc7\xdf\xda\x4d\x13\xb4\x3d\x08\x4e\x86\x40\xdb\x58\x69\xdc\x47\x20\xd3\xff\x78\x2e\xd9\x42\x06\xa1\x37\x2b\x57\x13\x62\x98\x02\xe7\x6f\x15\x73\xe8\xc6\x43\x7e\xd3\x33\xd9\x22\xec\xb6\x27\x1b\x98\x63\xfc\xa6\x76\x7a\x90\x94\xde\x2b\x70\xab\x3e\x3f\xe3\x9e\x5b\xca\x09\x4b\xac\x59\x49\x7e\x37\xd5\xb9\x78\x1a\xd0\x6f\xec\x25\x65\xc8\xc9\xc5\xa9\x04\xcb\x98\x86\x94\x1e\x1a\xcb\xf0\xb2\x36\xc2\x99\x90\x7f\xae\xce\x00\xff\x07\xba\xdb\x13\x28\x41\xf0\xe0\xe7\x81\x53\x75\x45\x35\x75\xa0\xc6\x85\x6c\xe9\xd7\x71\xf7\x59\x00\x31\x96\x2f\x99\x0b\xb5\x5c\xe0\x9e\xa0\xb5\x04\x1f\x91\x62\x43\x33\x4f\x0b\xed\x5d\xe4\x38\x6b\x98\x72\x8e\x06\xbe\x6a\x6a\x15\x9b\x29\x6e\xc1\x55\x6b\x8e\x98\x6c\x50\x45\x3e\xad\xb4\xd2\xa5\x0b\xdd\x23\xa9\x69\x55\xc4\xc7\x55\x9a\x83\xf0\x26\xf9\x70\xef\xf8\x72\x69\x2c\x70\x08\x1d\xf9\x3a\x89\x55\x9e\x72\x81\xb9\x51\x2b\xe1\xad\xe5\x4c\xfa\x08\xb3\xaa\x9f\x40\x05\xb1\x58\x2f\x2a\xe5\x2f\x51\x40\x84\xb6\xe9\xc3\xf4\x7a\xaa\x07\x9d\x3e\x2d\x90\x0d\xc7\x7c\xeb\x50\xc9\xeb\xc2\xd6\xba\x16\xdf\x44\x95\x2e\xb8\x95\xbb\x30\x2d\xb2\x0c\xc4\x18\x7c\xa6\x29\x64\xb5\xb0\x7d\x76\xf3\xfc\x4a\xc1\x49\xb6\xc0\xf7\xe5\xa6\x3b\xdd\x4e\x56\x52\x0b\xa8\x8d\x5f\xff\xbc\x95\x14\x59\xaf\x6b\x17\xee\x54\xe1\x0b\x24\x3f\xb2\x3d\xfb\xa0\x07\x19\x77\x3f\x22\xfb\x3c\xe6\x81\xf9\xb8\x3a\xb5\x4c\x2f\x62\x38\xdb\x9c\x52\x81\x7d\xe7\x54\x2e\x24\xdc\x48\x48\xdf\xb6\xe4\x04\x43\x62\x4d\x2b\xd3\x31\x89\x13\xa4\xbc\x39\xe0\x5f\xe4\xe5\xde\x9a\x56\xeb\xe7\xde\x32\xe9\xb6\x18\x3b\xd8\xf0\x40\xe3\x00\xcf\x0b\xb9\xc5\x35\x92\xdb\x7c\x94\xe1\x53\xc7\x2e\xb1\x1c\x27\xc3\x62\xdb\xe4\xf9\x95\x49\x30\xfd\x14\x9c\x44\x5d\x6a\x3d\xc5\x2b\x14\xdd\x75\x60\x54\x93\x23\xd5\xca\xd4\xa8\xc6\xe7\x91\xb3\x8a\x05\x93\x6f\x6e\x20\xde\xb1\x8c\x90\xaf\xc4\x96\xf1\x61\x8d\xb5\x09\xc4\x69\x00\x23\x40\x09\xa3\x41\xd6\x2c\xc8\x65\x79\x94\xbb\x61\xef\x0d\x69\x84\x5d\x75\xcc\x4a\xb6\x4f\xa6\x6e\x53\x58\xa2\xe6\xf7\xae\x53\xf6\x98\x36\x02\xd8\x6b\x5a\xe1\xba\x06\x36\x7c\xee\xfe\x18\x5a\x71\x58\x99\x02\x4a\x53\xbd\x2c\x37\x67\x6a\x18\x8e\x36\x44\xb0\x23\xc2\xa9\x93\x90\x88\x82\x57\x9c\x3c\xc1\xcc\x99\xb2\xf8\x58\xe9\x78\xb6\x53\x50\x74\xd5\x01\x0b\xca\x87\x28\xc4\xd7\x7d\x6e\xf3\x82\x29\x36\xa5\x9f\x08\xf4\xd4\xc0\xe2\x84\xdc\x6d\x50\x6e\x11\x93\x17\xab\xed\xce\x66\xcd\x61\x8b\x0d\xd9\x7a\x1b\xd7\xf8\x7c\x68\x8d\x44\xf9\xea\x6b\x24\xe9\x61\x7e\xc6\xa5\x36\x64\xcd\x9d\x9b\x51\x0e\x2a\xae\xc7\x45\x4c\x6b\xc5\xb9\x63\x17\x0d\x83\x6a\x87\xdd\x6f\x43\xfb\x02\x4e\x4e\x1b\x58\x8c\x06\xe0\xc0\xe7\x6c\xac\x5b\xc0\x4a\x29\x46\xe7\x5c\x59\x8a\xa0\x3b\xd6\xac\xb8\xd1\x84\x30\xd0\x8b\x35\x40\x75\x60\xa1\x31\x10\xf1\xaf\x14\x45\x58\x7b\x7b\xee\xb5\x9f\x25\x2e\xd2\x72\x0f\x0b\xa3\x53\x6a\x7a\xad\x1b\x35\x63\x1e\x87\x05\x22\xf5\x34\xd5\x6d\x37\x6a\x5c\xc7\x46\xdd\x48\x8f\x91\x96\x1e\x0c\x56\xc6\x67\x5e\xd2\xf5\x4f\x9d\xc7\xe8\xed\x17\x1d\xc3\xf1\x0e\xa8\x8e\x59\x2b\x8e\x9f\xf9\x29\x51\x16\x1b\xb5\xf0\xb5\x19\x6b\x3e\x9b\x62\xc0\xf8\x0c\x75\xd9\xff\x53\x2d\x3f\xcc\x2a\x8e\x24\x45\x34\x72\x42\xbc\x18\x63\xb1\x60\x24\x27\x24\x3b\xb8\xb9\x62\x63\xcf\xaf\xbd\x31\xc1\x7b\x3f\xf9\xa6\x6c\x6c\x5e\x3d\xfa\x99\x75\x85\x88\x57\xf1\xcb\xcc\xa4\x30\x08\x6c\x6e\xc5\xbe\x5e\xb0\xfb\x32\xf5\x6a\xa5\x66\xab\x86\xab\x56\xc7\xe6\xad\x75\xdc\x1b\x14\xdb\x40\xe9\xb9\x2b\x27\x8b\x6b\x0b\x55\xa9\x41\x4d\xa7\x91\x1d\x5b\x2b\xe3\x63\xc3\x2c\xeb\x65\x7e\xac\x63\x46\xb6\xf6\x0b\x87\x59\xdf\xe8\x6f\xfa\xec\x25\x57\xd2\x6e\x0b\x87\x15\x18\x9d\x12\x1a\xf4\x3d\x6f\x82\xca\x06\x76\xb7\x6d\xc9\xc8\x36\x62\x12\x8e\xfc\x6b\xda\x96\x1b\x1e\xbd\x76\x58\xb4\xe9\x0f\x79\x65\xac\xa0\x00\x06\x76\x27\x93\x18\xe7\xc2\xf0\x70\x4c\x75\xd4\x3c\x80\x57\xad\xb9\x32\xa9\x6a\x66\xcd\xa3\x89\xfd\x8c\xd3\xbd\x1c\xab\x59\x87\x46\xbc\xeb\x77\x34\x92\x54\xed\xfd\x89\x21\xc9\xed\x9b\xaa\x77\x4b\x1f\xd5\x8b\xf8\x7b\x0c\xbf\x83\x53\xaa\x85\x51\x68\x98\x61\x42\xff\x2e\x55\x68\x0d\x27\xf0\xbd\x45\x73\x7b\x89\xfc\x5b\xca\xdc\xcc\x83\x45\x1e\x0c\x39\x73\x13\x2f\x19\x5e\xae\xf5\xb8\xe0\xf4\xf7\xd3\x2d\x10\xca\xdc\x9b\xa3\xec\xcc\x5a\x84\x9b\x7a\x12\x1e\xf3\x8d\xae\x98\x47\x2f\x4e\xb8\xe8\xe9\xdc\x04\x73\x8a\x6a\xd7\x1b\x84\x23\xa8\x8e\x2a\x9b\x0f\x13\xa2\xbd\xe2\x77\x7f\x7d\xf1\xfd\x98\x21\xed\x3e\x50\x51\xc5\x38\x7e\x53\x71\xf6\x13\xce\x38\x43\x31\x1e\x5c\x25\xd6\xe4\x6e\x3b\xd0\x65\xb9\x4f\x05\xfb\xe5\x14\x99\x84\x82\xed\x81\xe4\x98\x7c\x68\x5e\xd8\x98\x9b\x40\x4e\x38\x22\xa1\x7e\x25\x46\x4c\x73\xd3\xa4\x0c\x26\x2d\xb3\xe6\xfd\x0f\x56\x84\x14\x7f\x0f\x39\x7b\xc8\xd2\x67\xf8\x0b\x6d\x51\x76\x0e\x1c\x73\xa0\x89\x7b\xe2\x3b\x6a\x70\xdd\x68\xbc\x2c\xbf\xdb\xd9\x12\x6a\x7a\xc3\xfe\x65\x1a\x14\x62\x55\x97\x9f\x2a\x79\xc1\x54\x6e\xfc\x04\xd1\xf5\x29\x1a\x28\x16\xe8\x0e\x75\xcb\xe4\xd0\xd1\xd9\xf1\x6f\x54\x4e\x19\x59\x16\x30\xce\x9e\x4d\xab\xf1\x48\x6c\xd1\x43\x67\xb7\x4b\x5d\xcf\xbf\x3d\x03\xa7\x3f\x6e\xc7\x18\x39\x6c\x3c\x4d\xfd\x42\x54\xab\x62\x94\x63\x30\x34\x28\xe7\xac\xf1\xb7\xd6\x90\x94\x8a\x85\xab\x06\x76\x54\x1f\xba\xe5\x88\x2a\x04\x86\xf3\xb8\xd5\x5a\x6f\xe5\x7d\x08\x75\xc2\xdb\x58\xd4\x15\x34\x04\x28\x52\x4b\xb3\xb4\x11\xf7\xc2\xb5\xdb\x66\x61\xc4\xac\xd7\x59\xd9\xd1\x52\x50\x73\xec\x7a\x15\x8a\x8a\xe6\xe1\x39\x86\xd9\x5d\x3f\x5d\x30\xaf\x83\x93\x59\x99\x0c\x58\x2c\x56\x98\xa2\xb4\x8e\xfa\xb4\xe6\x84\x6e\xd3\x4e\x9f\xd6\x18\x76\x87\xef\xe5\x83\x40\x27\x2d\x7e\x35\xcc\x40\xf9\xf0\x01\xa0\x2a\x13\x9d\x41\x15\x40\x37\xb7\x07\x57\xd6\x61\x16\xf6\x80\x49\x32\xa3\x47\x0a\x0d\x3a\x65\x34\x54\xf3\x66\x35\x7c\xdb\xc2\x74\xd7\x57\xd1\x94\x8b\x50\x04\xa8\x61\x11\xc2\x85\xb0\x8c\x3a\x4f\xd9\x35\x14\xc9\xea\xe2\xd3\xc0\x49\x04\xf2\x08\xda\x93\xa8\x37\x6f\x4b\x2b\xd8\xd6\x9f\x39\x3c\x1e\xc6\xd3\xb7\x05\x7b\x08\x1a\xc6\x60\x0b\xf5\x90\x02\x64\x80\x7d\x33\x80\xd2\x18\xa7\x0d\xc7\xac\x47\xaa\x26\x9a\x43\xab\x74\x15\x4a\xf2\x0b\x6e\x1e\xa2\x25\x85\x4b\x0a\x7d\xdc\x22\xf4\xe2\x1d\x11\xc1\x9f\x1b\x8d\x89\x28\x52\x3d\xb3\x1a\x44\x90\xc8\x30\x8f\x8f\xba\xf1\xbb\xa4\x20\x0a\x45\xdc\xd2\xd2\xcc\x6f\x07\x9c\xcd\x13\x3d\x4f\x5c\x13\x4b\x88\xcf\xf7\xcb\x12\x5b\x19\xd2\xaa\xcc\xe6\x9c\x74\x04\x10\xb0\x2e\xe7\x63\x69\x83\x03\xfd\x4f\xff\xff\x17\x7f\xfd\xce\x46\xfc\xe1\x85\xfd\xfd\xfd\x0b\xa0\x30\xb8\x30\x19\x0f\xd2\x21\x9c\x6c\x7f\x23\xfe\x2f\x6f\xbf\xf5\x0c\x09\x9d\x48\xcb\xbf\x42\x6b\x93\x13\x0f\x42\xcf\xc0\x8b\x5f\x0d\x59\xde\x31\xfb\x69\x65\xb2\xa9\x9a\xa2\x2d\x9f\xf3\x41\xfe\x95\x88\x2e\x63\xd4\xee\x64\xfd\xa2\xab\x92\xaf\x06\xf0\x77\x03\xff\xb5\xbc\x1d\x7a\xb7\x92\xdf\xec\x8d\x53\xd6\x12\x03\x0d\x94\x7a\x6b\xc5\x7e\x5e\x59\xa7\x2e\x04\x2b\x0d\xfd\x9e\x99\x5a\x56\xdb\x76\x8e\x6a\x8a\x72\xec\xe6\xba\xce\xda\xaf\xe9\xd5\xd4\x24\x39\x62\x9e\x02\xc1\x91\x38\x48\x01\xfc\xf0\x20\xac\x4f\x50\x0d\xbe\x1a\x59\x8e\x57\xfc\xb9\x30\x2c\x38\x1f\x0e\xae\x81\xd2\x72\x4a\x39\xa6\x09\x6a\xdd\xb7\x66\x74\x2b\x70\xee\xf4\xec\x35\x1a\xae\x4c\x12\x42\x46\x02\x1d\x7f\x12\xac\xf8\xad\xfe\x3a\xbe\x86\xee\x80\x7a\x6f\x46\xb9\x24\xa4\x63\xab\x5b\x72\xb7\x5b\x1b\x93\xea\x40\x90\x65\xf4\x48\xc3\x0e\x29\x7c\xa7\x3a\x05\x12\x1f\x9d\x56\x63\x63\x85\x26\x9d\xf2\xa6\x3e\x60\xcd\x8a\x7c\xe0\xc3\xa0\x6c\x68\x5c\x44\xbd\xd6\x36\x25\x2c\xbb\x24\x12\x23\x75\x62\x23\x87\x43\x57\x20\xc3\xb1\x1b\xa6\xc5\x9b\xb2\x5c\x44\xed\xf0\x0d\xb6\x0d\xc7\x98\x5b\xec\x0e\x79\x46\x53\xa4\xbe\x96\xc4\xfa\x9f\x8d\xeb\x8b\x0e\x99\x62\x5f\x25\x1d\x09\xc9\xd1\x13\x1c\x88\xbd\x06\x5a\xae\xa3\xc0\x63\x8f\xf6\x6f\x18\x45\x7e\x5d\x9b\xe3\x27\x35\x9f\x7b\x12\x17\x92\x2a\x2f\xa5\x2e\xb3\xc4\x1e\xcb\x5d\x93\xeb\x6a\x2c\x68\x5d\x39\x62\xe4\x39\x49\x3a\xbd\x81\x83\x34\xd7\x5d\x56\x03\x3b\xec\x2a\x4c\x5a\x56\xc3\x8a\x28\xb3\x9a\x16\x81\xc5\x5d\x0d\x45\x9f\x01\x83\x9e\x41\xa1\xc3\xb4\xf0\x43\xd0\xe6\x75\xcc\x0b\x3e\xc4\x8e\x88\x5a\x47\xbc\xcd\xcc\x03\x21\x39\xcb\x3f\x34\xe4\xd1\x9f\x53\xd2\x1c\x4c\x96\x62\x34\xbc\x64\xd3\x71\x62\x24\x2e\xc2\x70\x94\x0b\x9b\x7d\xd6\x6f\x0b\x5a\x15\xca\xc1\xe4\xa1\x5b\x4e\xfd\x08\x79\x08\x28\xe9\xa5\xf7\xbd\x9f\xef\x25\x19\xe7\xf2\x3d\x21\x41\xa9\x86\xb1\x77\x93\xe1\x10\x6c\xff\xdf\x90\xd2\x54\x6a\xa5\xfa\xe9\x68\x90\x5f\xe3\x64\xf1\xdf\xb8\x09\xd6\xa9\xe8\x13\xf2\xb4\x0f\x9c\x44\x36\xce\x81\xd9\x11\xc2\x89\xe3\xd7\x19\x07\x13\x59\x88\x85\x84\x23\xbc\x2a\x69\x61\x65\x25\xc9\x5c\xf0\x3c\xab\x67\x94\x2a\xbc\xb0\x43\x4d\xe0\x60\xda\x93\x62\x9b\x0e\x67\xca\x0e\x2e\x32\x36\x37\xad\xd5\xc4\x06\xd7\xd3\x84\xcb\x29\x45\xae\xf0\x6f\x56\x6d\x9f\xd3\x82\x4f\x99\x03\xe2\x84\x36\xb3\x76\x6f\x37\x0f\x5d\x35\x26\x00\x5f\x7d\xfa\xeb\xa6\x05\x0f\xdd\x41\x83\x43\xc8\x19\x60\x2c\x30\xd8\x0a\x0d\x88\x50\xb1\x9a\x38\x96\xd5\x9b\xfc\xa9\xd3\x88\xaf\x30\xe1\x3f\xb9\xf2\x23\x74\x20\x22\xbb\x0e\xee\x93\x74\xa2\xab\x40\xb4\xd9\xef\xa4\x9f\x6d\x6f\x77\xb6\xc6\xf9\x7e\x01\x69\xb2\x27\xe3\x5e\xaa\xb9\x85\xfb\xda\x62\x60\x1c\x4d\xd5\x92\xa9\x3d\xc4\x5a\xa8\xe7\xb6\x74\x62\x26\xe8\x13\x79\xc1\x6f\x2e\x9d\x40\x3f\xfa\x84\xfe\xda\xe8\x04\x2b\xaa\x50\x89\xec\xbb\x24\xdb\x84\xc2\x57\x3a\x34\x40\xb1\x9b\xef\x77\xe1\x6f\x98\x34\x9c\x08\x0d\x4b\x58\x9c\xce\x90\xd3\x09\x2d\x29\xee\x67\xda\x14\x0a\xc3\xc3\xc1\x20\x0c\x61\xb5\x18\x67\x32\x38\x68\x26\x12\xaa\x8d\x68\x05\xc8\xd4\x70\x91\xc6\x9f\xc1\x3a\x78\xd8\x2e\x1e\x23\x30\x8f\xcf\xf7\x05\xfb\xc9\xec\x55\xec\x4f\xe4\xe8\xaf\xc2\x7d\xf8\xca\x14\x49\xf9\xc5\xaf\xde\xa1\x7f\x60\x72\x15\x5b\x73\xd1\xbb\x3b\xbb\xf2\x48\xe7\x74\xe9\x34\xe5\x76\xd1\xdf\x29\x5b\x10\xfe\x5d\x94\x8a\x99\xdb\xb6\x98\x70\x90\xda\xf6\xc7\xc9\xb6\xc2\xbd\xff\xae\x55\x23\x70\xef\xe6\xe3\x68\x9c\x9a\x71\x34\x17\x7a\x40\x36\x4e\x23\x56\xda\xd6\xea\x4a\x10\x2c\xee\x22\x12\xbc\x87\x8f\x48\x7e\x47\x57\x3f\xc3\x9b\x5a\x57\xbf\x53\xb1\x9c\x04\x94\x70\x9b\xf6\xe6\xbc\x13\x14\xa1\x21\x18\xa2\x52\x58\xdb\xd8\x52\x14\x64\x08\x6d\x94\xde\x47\x17\xc4\x10\xc2\x72\xe8\x74\xaf\xf5\xf7\x0b\xcc\x4d\x64\x8f\xcf\xfa\x18\xbe\x0b\xa5\x23\x8b\xdd\x58\x1f\x7a\x5c\xe6\x71\x56\x62\x62\xec\x78\x34\xce\xfb\x93\x5e\xd9\x71\xb6\x28\xfa\xbe\x9e\x96\x98\x0f\x2c\x26\xef\xa4\x78\x90\xef\xc4\xbd\x64\x18\x03\x0b\x8d\xc6\x8c\x22\x9e\x0c\x41\xe7\x58\x26\xc3\x7e\xbc\xbf\x9b\x94\xf1\x6e\x52\xc4\x40\xe7\xe2\x6c\x4f\x8d\x7e\x35\xed\xdb\xc1\xcb\x64\x27\xa0\x19\x12\xe2\x03\x96\x31\xd3\x6d\x51\x46\xa7\x92\xb1\xce\x08\x8d\x09\x1b\x83\x89\x9e\x9c\xf1\xb5\xc8\x22\xfc\x3b\x1f\x69\xdb\x1f\x5a\xe8\x9c\xb6\x41\x93\xaa\x31\x37\x22\x8b\x68\xf8\x06\xb3\x40\x64\x1b\xde\x87\xff\x9a\xdf\x34\x7f\xf0\x1a\xfd\x69\x7e\xdf\x1f\x67\x64\x45\xd3\x1a\x8d\x99\x84\x5b\x78\x55\xde\x83\x32\x9f\x41\xd3\x80\xc2\xe6\x1f\x2b\xaf\xa2\x20\x18\x97\xea\xc0\x5f\xaf\x0b\x60\x64\x2c\xff\x35\x34\xbe\x33\x31\x9a\x4d\x3b\x6a\x6d\x28\x20\x35\xdd\xab\xa8\xbc\xef\x43\xe0\x1b\x74\x3e\xf4\x30\x54\xdb\xf4\x74\xb2\x64\x12\x2b\x3b\x59\xdb\x22\xbd\x6a\xa6\x76\x5b\xec\xa9\xfa\x1a\xfe\x61\x97\x47\x50\x2e\x2a\xa3\x9a\x0b\x7a\xd4\xf8\xa2\x12\x25\x0d\x32\xfe\x30\x61\xc3\x8c\xb5\x3e\x13\xf8\x64\xea\x3e\x0f\x83\x51\x82\x4e\xbf\x0d\x58\x8a\x04\x1c\xdd\xf5\x75\xfc\x67\xfc\xfe\x6e\x56\xc4\xef\xd1\x6f\x6e\x53\x60\x65\xf8\x43\xfc\x3a\xff\x50\x6b\x41\xd7\xca\x63\x41\x6a\x36\xfd\xc6\xe3\xfd\x6c\x30\x88\x69\xce\x18\xcb\xf9\x81\x05\x01\x40\x06\xdd\x41\xd4\x2b\xea\xc4\xaf\xe7\xf1\xb5\x7c\x12\xef\x27\xc3\x12\x30\x82\x2e\xba\xf9\x4a\x7d\x16\x4d\xf4\xf5\x7a\xcc\x0b\xa7\x09\xfa\x31\x37\x80\x92\xaa\xd7\x9e\xaa\xbd\xf6\x6e\x32\x80\xcc\xa9\xd7\x74\x11\xe8\xaf\x1d\x38\xa8\x57\xa2\xa9\xa3\x85\x55\x0c\xa8\x59\x71\xbe\x3f\x84\xa7\x51\x6c\xbe\xae\xff\x16\x45\x97\xf2\xf1\xce\x65\x2c\x31\x4e\xe9\xa8\x03\x39\x83\x1a\xcd\xa8\xd8\xcd\x54\x8a\x35\x7d\xfd\x82\xb1\x6b\x0d\x13\x4c\x86\xcd\x0c\xde\x5c\xe7\x7a\x69\x1b\x89\x9d\x10\x44\xf2\xeb\x58\x2b\x60\xeb\xe9\xaf\x3b\x3a\xf1\x1e\x56\x8a\x77\xa2\x07\x82\x83\x53\x5e\x3b\x92\xed\xfb\x52\x1b\x80\x4f\x32\x1a\xa5\xf9\x08\x28\xe3\x9f\x29\x22\x2d\xca\x86\x57\x33\x70\xad\xc8\xf7\x52\xf4\xa2\xd5\xac\x90\xa9\x05\xa2\x83\xd0\xee\xab\xce\x65\x9a\xec\x61\xe5\xba\x23\x10\xb0\x15\x3d\xc5\xea\xd5\x6c\xee\x2e\x36\xb5\x4d\xbb\xe2\xcc\xbf\xf8\xd1\x29\x96\x5d\x4f\x9b\x29\xd3\x0a\xc2\xf0\xa1\x74\x82\x31\x6a\xcf\x20\x61\x10\x1c\x7f\x38\xfc\x01\xfa\x06\x48\x12\x77\x54\xf3\x60\x83\x15\x7d\xcd\xad\xfe\x47\x40\x24\x5b\xde\xf0\x90\xe0\x89\x55\x9e\x23\x33\xec\xe4\xf9\xa9\x42\xa1\xf1\xb4\x18\x53\x9f\x4e\xc4\x7f\x02\x6f\x6a\x56\x68\x96\xf1\x0d\xeb\x06\x11\xd1\x53\xb8\xee\xd2\xe6\x7a\xf6\xc7\x7d\x85\x46\x70\xd2\x9e\xc2\x76\xbf\xb1\x1a\xc6\x53\x94\x79\xb4\x6c\xea\xd4\x64\xa8\x87\x5f\xb0\x4b\x6b\x7d\x9a\x75\x52\xfb\xb6\x78\x34\xfc\x14\xe9\x7d\xdb\x1c\x26\x9a\x53\xfc\xd2\xa9\x23\x9f\xf1\xb9\x9e\xf3\x2f\xf7\x98\x6f\x2b\x40\x2d\x2d\xb0\xa1\x4a\xd4\xe6\x7b\x53\x49\xea\x9f\xc6\x25\xdd\xed\xbc\x5e\xc5\xdc\xe6\x13\x3e\xa3\x0f\x15\xfb\xc3\xab\xb7\xfb\xbf\xa9\x14\x75\xe3\xca\xeb\x5a\xd3\x27\x2f\x21\xfc\x13\x1f\x52\xb0\x80\x7c\x33\x1d\xf2\xf5\xad\x81\x32\x1f\x0d\x51\xb2\x61\xa2\xe1\x8f\xa7\x2f\x29\x50\xed\x5e\xef\xaf\x66\x4b\x76\x82\x9a\x83\x0e\xbe\x7f\xbd\x7a\x1f\x0d\x9e\x6d\x67\x2e\xfc\xe1\x9f\x03\x10\x9c\x50\xf5\x8f\xf5\x6f\xc6\x92\xac\x1f\x5a\xaf\xe0\xec\xa5\x41\x14\x3c\x3f\xb1\x4a\x48\xfa\x73\x35\x3b\x80\xb9\x65\xa9\xc2\x06\x0f\x47\x67\xa9\xf3\x24\x04\x6c\x66\x81\x94\xd9\xe2\xe2\x0f\x56\x41\x28\x54\xfd\x22\x36\x83\x04\x84\x9e\x90\x0f\x28\xcc\xce\xfb\x6e\x88\xa8\x74\x40\x9d\x5b\x17\x5e\xd0\xb0\x9b\x1e\xe3\xec\x2a\x9a\xd5\x44\x49\x0c\xff\x63\xc3\x78\x7e\x65\x46\xd3\xad\x25\x3d\x94\x6e\xa2\xdd\x04\xfd\x44\x54\xfa\xbb\x82\xe5\x5e\x0a\x89\xfb\x71\x10\xe4\x17\x6d\x78\xb4\x6e\x44\xae\x8f\x9b\x5e\x21\x37\xbb\x7c\xc5\x50\x5f\x4d\x29\x03\xde\x63\xc4\x3e\xf2\x23\x73\x7f\x04\x07\x24\x38\x51\xd0\xa2\xeb\x3f\x30\x67\x3b\xc6\x2c\x18\x20\x41\xb6\xe7\xa5\x0d\x6c\xd9\xf0\x9c\xff\x99\xa1\x64\x0f\x16\xe3\xf8\x78\x10\x9f\x2f\x5e\xf4\x97\x32\xcc\xf7\x25\x13\x3a\x8f\x88\xe9\xec\xfc\x7d\x0e\xb6\x0f\x3a\x4d\x90\xf9\x6d\x20\x39\xd0\x09\x6e\x14\xdc\x2b\x7d\x02\xc1\x85\x0b\xc6\x21\xc4\xbb\xd5\x1b\xb5\x63\x1f\x9e\x6c\xad\x83\x93\x9b\xdf\xe1\xe4\xe8\x49\xf8\x65\xcc\xe7\x24\xc5\xc7\x95\x5f\x90\xc4\x54\x56\x5d\x06\xfd\xa0\xa7\x1d\x9e\x1b\xf5\x09\xcd\xab\x65\xaa\x02\x99\xb1\xea\xed\xcf\xb4\x58\xe3\xd0\xb8\x62\x61\xa8\x5f\x0c\xec\xd5\xb1\xef\x1a\xdb\xee\x0d\x85\x0a\x3f\xd1\x7b\xc1\x74\x6a\x66\x2f\x8d\x59\xd5\x28\x53\x8e\x5b\xa0\xac\x3e\xc0\xd9\x6e\xe2\x81\x35\xe8\xb1\x62\x6d\xc3\x51\x10\xcb\x4a\x3a\x81\x78\x08\xf6\x39\x5b\xe7\xc2\x4c\x7e\xf6\xda\xba\xac\x4d\xcb\xcf\xd8\x4e\x3d\xdb\xb8\x4f\x6a\x81\x88\xa4\xa8\xb3\xf5\x01\xcc\x22\xa5\x50\x0e\x30\x68\x2e\xe2\x77\x76\x24\x3d\xb7\x23\x9b\xce\x6b\xc7\xdb\x49\xaf\x89\x15\xbc\x93\x3e\x55\x2d\x57\x2a\xb4\x2c\xe4\x4a\xc1\x91\xb9\xd2\xdd\x93\xf1\xc8\xd4\x53\x97\x7f\x43\x09\xb4\x2d\xc2\x4e\x5e\xae\x01\xd0\x3e\x76\x34\x6e\xdf\x0e\x41\x75\xfd\xbc\xfd\x15\x8b\x79\x83\x7c\x46\x5b\x7b\x86\xb8\x5a\x11\xed\xe0\xcb\x70\xc9\xb6\x66\x21\x36\x62\x57\x66\xa7\xb3\x3d\x81\xac\x5e\xee\x53\x32\xb1\x77\x26\xda\xd4\xab\x08\xa9\xd5\x04\xc1\xd2\x18\x67\x65\x53\xea\x7b\x35\x0c\x7a\xfd\x81\xc1\xe6\xaa\x39\x85\x8e\x36\x19\xa8\x3a\x12\xa9\xd7\x5e\x52\x7d\x4c\x8d\xd7\x8c\xfb\x25\xb9\x32\x79\x78\x58\x3f\x02\x49\x3d\x0c\x90\xbf\xe8\x1d\x6d\xbd\xaa\xa7\x56\x01\x1c\x6b\xb5\x2f\x5e\x8e\x47\x32\x60\x2b\x0d\x45\xc9\x5d\x80\x72\x69\xc7\x4f\xbe\x47\x81\xbc\x9a\xf7\xc8\xe0\xe3\xed\x93\x4e\xc7\xb8\x0b\x6b\x91\xcf\xd0\x0d\x2a\x04\x17\xf4\x0a\x6a\xdd\x29\x11\x86\x27\xdc\xa9\xd9\x57\x23\xc2\x22\x8a\xe4\x08\x27\xe6\x6c\x9e\x64\xe3\x1b\x21\x9a\x69\xf7\x6e\x5e\x84\x43\xb5\xda\xe9\xd3\x93\x9c\x9a\xa3\x8f\xab\xfe\x5c\xa7\xf4\x41\x3c\x65\x70\x9c\xe9\xee\x39\x81\x34\x46\x7b\xfb\x23\x71\xa8\x8e\x2c\xef\x61\x99\x56\x3b\xd9\x30\x1f\xa2\x96\x19\x7c\x82\xa8\xad\xbf\xd4\xba\x0b\x97\x4e\x99\x41\x29\x35\x4c\x16\x29\xf7\x54\xad\x48\xdf\xa0\x84\x76\xaa\x7b\x98\x30\xb6\xfb\xda\x83\x4c\x18\x9b\x9e\x8a\xa2\x4b\x08\x84\x97\xa3\x7e\x52\xec\x6e\xe5\xc9\x98\x73\x94\x61\x91\xaf\x08\xcd\x6a\x41\x77\x4d\xb5\x55\x25\x17\x26\xc3\xec\xa3\x44\xeb\x95\xea\xc4\x10\xed\x95\xad\x97\x05\x15\xcc\x76\x21\xe3\xb8\xd6\x1d\xfd\x58\x35\x15\xa5\x02\x21\x1f\x65\xe3\x1d\x4a\x19\x2c\x0b\x8b\x6a\x25\x00\x47\x0f\x82\x93\xe5\x9c\x65\xa4\x93\xca\x38\x5e\x1d\xf0\x39\x41\xcb\xbd\x7c\x98\x95\x5c\x79\x07\x36\xbb\xfc\xa7\x8a\x13\xa4\x2b\x8a\xaa\xe4\xef\xa2\xec\x8e\xb0\x9e\xc5\x1d\x3e\x41\xae\x37\xce\x3f\x3a\x7e\x5d\x0a\x30\xf2\x12\xa4\x9c\xef\xb0\xee\xc5\xe2\xc5\xf8\x7c\x3f\xb2\x07\x8a\xe6\x75\x05\x08\x59\x8f\xcd\xb9\xae\x69\x5e\x34\xcc\x47\xe9\x38\xb1\x6a\x3a\xe9\xe2\x2f\x87\xbb\xa6\x80\x6a\x0f\x2d\xff\x93\x22\xb8\x01\xed\xb1\xeb\x1e\x02\xb9\x7d\x51\xd9\x28\x45\x5b\x42\x0b\xec\x66\xc3\xed\x9c\xfc\xd0\x11\xd6\x0e\xf5\x4b\x94\x3c\x27\x32\x83\x2f\x6d\xa1\x41\x79\xeb\xe5\xa0\x40\x05\x72\xb7\x68\x11\xe0\x93\xbc\x16\x6e\xe4\xa4\x57\x1d\x73\x26\x9b\xd6\x71\x85\x33\xd0\xa9\x38\x8d\xa9\x85\x1c\x77\x84\x4a\x16\x2e\xaa\x7d\x77\x1c\x28\xeb\xdf\x6c\x24\xb2\xbf\x05\x2f\x96\x59\x7c\xab\x45\x35\x3b\xeb\xf1\x4a\x9c\xc7\x6c\x67\xb5\xd8\x3c\x70\x5e\x02\x00\xb5\x17\x66\xe0\xdc\x9d\x3a\x6a\xee\x41\xcd\xa5\xb7\x83\xff\x65\x69\x52\xff\x10\x9a\x66\xaf\x1a\xa2\xa0\x26\x93\x97\xd8\x82\xaf\x74\x11\xc3\x99\x24\x41\xb5\x5f\x4d\x76\x62\xe7\x0b\xb9\xb0\x4e\x29\x46\x4e\x38\x40\x7a\xfd\xb5\x05\xa7\xb9\x2f\x47\x05\xa0\x4d\x94\x33\x24\x38\x29\x38\xbc\xbb\xc3\xc7\xc8\x71\x24\x7e\x26\xca\x4e\xe8\x91\x06\x8c\x35\x01\x8d\x61\xb0\x67\xb1\x9f\x61\xbd\xad\x3b\xec\x88\x61\x82\xe5\x83\xad\xc7\x93\xa1\x57\xe3\x42\x34\x83\x5c\x57\x90\x5f\x0e\xcb\xd2\xe7\x54\xe8\xef\x0e\x07\xfe\xb1\x17\xf1\x29\xc1\xba\x93\xf0\xe7\xd7\xaf\x02\xe2\x2d\x5a\x07\xb2\x3c\xeb\x6d\x2f\x4e\xbc\x69\x38\xd6\x19\xbb\xae\x3b\x3e\x23\x6b\xa7\x64\xfe\x38\x1b\xa2\x37\x74\x62\xb5\x9d\x85\x27\x44\xd4\xe2\xd4\x65\xe0\xd2\xdc\x49\xfc\xed\x1c\x4e\xf3\x04\xcd\x7b\x6b\x1d\xfb\xc9\x36\x88\x06\x4d\x08\xba\xcd\xae\xa6\xad\x5b\x83\x1c\x7f\x9f\xe0\xd4\xf3\x86\x80\xe9\xe9\x8a\xd1\x1b\xf6\xb5\xc6\xc0\x42\xe7\x7f\xc6\xed\x21\xf7\x3a\xdc\x21\xce\x4a\xfb\x00\x24\x83\x41\x6c\x59\x2d\xf5\xd7\x5e\x3e\xee\x17\x71\x09\x7e\x39\x83\xbc\x28\xd1\xfa\x8f\x89\x60\x57\x0c\x68\x76\xf4\xea\xda\x23\xc6\xbb\xc9\xd5\xb4\xd9\x2f\x40\x6e\x61\x27\x2b\xbb\x3b\x3d\x5e\xba\xff\x70\xdc\x73\x90\x44\xf0\xa0\xe1\x00\x1b\x46\x0e\xdf\x4a\x40\x4b\x45\xe7\xff\x58\x2c\x43\x16\x6d\x69\x5c\x4f\xf3\x15\x8d\xd3\xe2\xda\xb0\x07\x16\xc8\x6e\x51\xec\x92\xcb\x32\x61\x1d\xa3\x82\x23\x80\x38\xd7\x51\xdf\x9f\xa5\x02\x5f\xd9\x47\x29\x7a\xcf\x16\xe7\x0c\x1e\x8c\x9f\xa6\xf7\xc0\x39\x36\x15\x93\xf1\x22\xbe\x96\x0b\xc4\x2c\x38\xe4\xba\x2e\xb0\xdb\xc4\x37\xb8\x9d\x67\x5a\x17\xd8\x00\xc2\xed\x2c\x82\x3e\x39\x77\x6b\x8c\x9d\xd6\x3a\x1e\x11\x4c\xd0\x74\x46\xee\x63\xb5\x16\x86\x43\xb4\x4f\x5b\xe2\xa1\x15\x49\x41\xc2\xd3\xfa\xfe\x9e\x46\x0c\x04\x0e\x19\xe4\x51\x87\x15\x92\x59\x44\xd0\x11\xe5\xec\xb0\x6b\xcd\x16\xc1\x6a\xf8\xd6\x1b\xd6\xaf\xc2\x2f\x88\x53\xc3\x45\xc8\xa3\x68\xb8\x8d\xbf\xc2\xe6\x37\xce\x74\x87\x92\x7d\x05\x03\xfe\x58\xad\xba\xcc\xf6\x52\x9f\x73\x5e\xe0\x13\x91\xde\x73\x92\xe6\x4d\xc6\xe0\xbf\xdb\xdd\xc9\xc7\xf9\xa4\xcc\x86\x18\x79\x01\xe5\x49\x6f\xa2\x39\xf6\x0d\xfd\x73\x11\xe8\xb3\xa7\xc4\xc0\xf1\xb5\xee\x84\xca\xde\xd9\x6e\x8b\x90\x59\x69\x4a\x55\x14\xd1\xc1\x40\x8c\x85\x72\x83\x1e\x09\xbc\x04\x7a\xc6\xe7\xc5\xe4\x6c\x47\x76\xf4\x58\x1b\x10\x43\xa3\x70\xff\x7c\xab\x4c\xd4\x5a\xfb\x64\x7d\xa0\x78\xc9\x96\x5e\xa3\x1c\xeb\x2a\x77\x07\xea\x96\x27\xa3\x2e\x9c\x5d\x01\x85\x37\x51\xb9\x18\x1b\x18\x7c\x68\xb9\x44\xbe\x3c\x13\x66\x6a\x24\xc1\xda\x52\xf4\x56\x6a\xa3\x9a\xfd\xa0\xad\xdc\xc6\xcd\xb7\x6c\x0b\xea\x8e\xd4\x57\xc7\x6a\xed\x7b\x66\x85\x07\xee\x2a\x83\x23\xea\xab\xdb\x4d\x93\xd1\xfa\x17\x87\xe1\x57\x9d\xf0\x88\x38\xd2\xea\xf3\x5f\x77\x88\xac\xaf\x3d\x97\x29\x10\xfa\x2c\x5d\x31\x9a\x83\xf9\xc4\x27\xdd\x02\x7b\xaf\xf5\x29\x85\xa1\x3e\xe0\x07\x6b\x6f\x23\xdf\xfa\xfb\xb4\x57\x16\x3a\x53\x32\x67\x85\x3e\x68\xef\xb9\x95\xe7\x65\x51\x8e\x55\x77\x25\x87\x62\x98\x28\x5e\x4c\x6d\x23\x9c\x21\xac\x3a\x22\xbc\x66\xba\xb9\x82\xac\x1a\xa0\x76\x1f\x7f\x6c\x7c\x45\x64\x21\xa1\x61\x1d\xea\xbd\x07\x25\xa7\xd5\x82\xc6\x93\x5e\x39\x51\xa8\xb1\x71\x55\x6a\x83\x6f\x5f\x84\x3a\xd6\xd5\xc2\xee\xb9\x6d\xa0\x26\x30\x59\x35\x4e\x2f\xe9\xed\xa6\xeb\xae\xe8\x35\x68\xbc\xfe\x50\x2d\x6b\x6a\x1d\x69\x34\xce\x15\xc3\x05\xac\xda\xd6\xa4\x77\x25\x2d\x21\xfd\xe0\x6e\x17\x5d\xd7\x5b\xc6\x7c\x57\xf7\x8a\x7f\x81\xbd\xe2\x37\x55\xaf\xf8\x7d\xe8\x25\xf9\xa7\x9e\xba\xc8\x32\xc1\x58\x89\xe6\xb1\xde\x78\x2d\x66\xb7\xad\xa9\xe5\x87\xa4\x14\xa5\xc4\x92\x71\x97\x55\x26\x8c\x96\x40\xa6\x6a\x79\xac\x3a\x83\x61\x4d\x83\xd2\x80\x55\xa0\x9e\x19\x71\x7a\xbd\x6b\x3d\xf4\xd9\xaf\x64\x69\x33\xac\xa8\x31\x43\x5a\x74\x84\xe4\xee\xba\x34\xc9\xbc\xf1\x9a\x18\x09\x35\x4c\x6a\x24\xa2\x63\xb7\x97\xc6\xdd\x9b\x52\xe1\x09\x99\x1f\x88\xbc\xd3\x95\x28\x89\xe9\x6b\x08\x88\xf0\x19\x3f\xf4\xa7\x33\x7d\x46\x09\xa2\x0e\xd3\x09\xd2\x90\xde\x34\x86\xda\xf0\x1a\xb9\x8f\xa7\x09\x6b\xef\xcb\xcb\x13\x88\x5c\x7d\x26\x25\x23\x65\x1f\xda\x4b\x86\x09\x64\x5d\x4f\x30\x06\xf0\x47\x63\x9b\x3b\x76\x35\x5b\x41\x1b\xfe\x2d\x1e\x08\xfc\x30\x8d\xd3\x4c\xc8\x15\x53\x08\x74\xba\x8b\x15\xe4\xf9\x17\x2d\x2f\xf6\x65\x00\x2f\x5f\x9d\x6e\xb2\xaa\xca\x16\x35\x63\xc9\xa2\xae\xf9\xa4\xcf\x5c\xaf\x31\x14\x0f\x4d\x0d\x30\xa8\x7b\x9c\xee\x80\x26\x99\xd2\x36\xea\xec\xc7\x53\x96\xce\xaa\x60\x82\xa0\xe6\x73\x32\x2e\x9f\x01\x35\x93\x73\x8a\xe1\xd8\x39\x71\x7c\xeb\x45\xc9\x75\x78\xc8\x70\xdd\x28\x3e\x4c\x54\x37\x70\xd4\xd5\xd7\x52\x01\xa5\xd1\x3d\xda\x0d\xc2\x9a\x61\x7d\x54\x58\xae\xde\xb8\x1f\x92\xbf\x91\x1c\x7f\x90\xef\x64\x5a\x6b\xb3\x2a\x03\xc1\xda\x93\x8e\x92\xa2\xd8\x57\x82\xa8\x31\xec\x7f\x67\xf3\xa5\x2c\x45\xc8\xdc\xa1\xe1\x8b\x39\x29\x94\x08\xbc\xd3\xca\xc1\x5b\xfa\xa8\x98\x01\x27\xf4\x9a\x7a\xf9\xab\xe9\xec\x4d\x0a\x30\xc7\x41\xaf\xe5\xe8\xed\xa3\x08\xc6\x0a\xd4\x5f\x45\x56\x74\xc5\x33\x70\x9d\x1d\xf9\xfe\x61\xfe\x69\xc3\xfb\x80\xee\xf4\x44\xc2\x5d\xb9\xfc\x4f\xd8\x7a\xe5\x68\x5f\xf0\x49\xe8\x8b\x04\x57\x5a\xc8\xb2\xd2\xa5\xe8\xec\xb6\xb1\x97\xbe\xb3\xec\xdc\x78\x8d\xb8\x85\xa4\x9c\xac\xce\x72\x9e\x6c\x6f\x94\x8f\xcb\x2e\x03\x56\xeb\x3e\xfc\xc0\x48\xf8\x19\x8b\xa6\x98\x04\x62\xc7\x02\x2e\x43\xc2\x7f\xf0\xee\x3d\x0f\x00\xa9\x8c\xd2\x1d\x9a\x1d\x28\x1f\xf9\x35\x08\x9d\xfb\x2d\xca\x4c\xc9\x7a\xf9\xfe\x90\xcd\x53\xe1\xed\xb9\xb9\x94\x0f\xb4\x43\x14\xf9\x23\x57\x9c\x4c\x26\x14\xea\x79\xc7\x98\x9e\x82\x9e\xd9\xeb\xe4\xe9\x35\x69\x1d\xb0\x8f\xc9\xcd\xe6\xe4\x22\x14\xce\x14\x6d\x69\x99\x3b\xce\xa6\x21\x4b\x32\x46\x23\x34\x41\xb5\xe7\xf4\xe0\xed\xb8\xc9\xf5\x63\xd5\xae\xc9\xf1\x8e\xdc\xba\x66\xda\xd1\xe5\xd8\xf5\xe5\x34\xb9\xf7\x67\x8d\xbe\x84\xe0\x6a\x2f\xae\xde\x09\x86\x0d\x61\x88\xd6\xb0\x57\x75\x0c\x45\x07\x53\xfe\xad\x49\x7b\x5b\x43\x4b\x5c\x5a\x8a\x3f\xd4\x42\x2e\xf0\xd7\xb0\x67\x4c\x44\xf6\x42\x24\x9a\xeb\x2e\xa8\x21\x11\x07\x0d\xd4\xe2\xc3\x48\x0d\xe4\x72\xe9\x17\xe3\x4a\xf9\xaf\x95\x2e\x72\x4c\x1f\xf6\x93\x52\xb1\xc2\x9e\xc5\x4d\x08\x9e\xdc\x4c\xc9\x20\xb0\xaf\x3f\xd7\x8d\x4c\xdc\x40\x17\x87\xbe\xe3\x1a\x8c\x22\xb4\x85\x32\xa9\x5a\x77\xef\xcd\xf4\x09\xe6\xa3\x01\xb1\x5c\x4a\x20\xbb\xa5\x6b\xe8\x59\x8b\xce\xf2\x80\xe2\xcc\xe8\x17\x59\x12\x9b\x7e\x49\x87\xc0\xce\x3b\xec\x13\xf8\x96\xd2\xc7\x70\x6c\x8f\xdc\x7f\x3d\xfd\xd0\xea\x65\x61\xc7\x9a\x4d\x66\x8d\x8e\xa1\xbc\x14\xf4\x65\x37\x2f\x88\x89\x5c\x72\x9a\x45\xfe\x7d\xa4\xeb\x5c\x03\x7a\xe7\xdf\xd0\x6e\xd2\x1f\xea\xc9\x9f\x7e\xfd\x9d\x67\x4c\xc1\x1d\xeb\xf0\x3f\x95\xad\x35\xef\x00\x43\x4d\x11\x1a\x8e\x35\xfd\x58\xdd\xc9\x30\x1c\xb7\x6b\x7a\x59\x9b\xa7\x5f\x0c\x6b\x73\x18\x11\xb7\xc0\x1e\x6f\x33\xf6\xca\x7d\xbc\xb4\x21\xc4\x8e\x0b\x41\x43\x2d\xa6\x00\x8e\x75\x33\x50\x1a\xb7\xc1\x66\x0a\xef\xbb\xf5\x75\x34\x7c\x80\x2c\x80\x15\x18\xab\x7f\x26\x55\x93\x4e\xb1\x17\x70\x43\x10\x5d\xfc\xd3\x6f\xe2\x81\x35\xc0\x94\xe5\x38\xdb\x9a\x80\xcf\x2e\x42\xcd\xef\x19\x05\xdf\x53\x48\xf2\x86\x20\xe3\xb3\x5a\xfb\x62\x32\x6e\xec\x82\x1a\xf3\x13\xc6\x46\xb7\x6a\x5d\x15\xa8\x0d\xc2\x53\x01\x95\xa2\xe5\x7e\x61\x6e\x9c\xca\x46\x7a\xf5\x22\x0f\x1b\xb6\x65\x0e\x83\xfc\x8a\x9a\xfb\xb6\xb8\x38\xf2\x08\x7b\xc0\xbc\x75\x8b\x64\xf3\xed\x22\x7e\xb5\x1f\x5f\x7c\x95\x7f\x2f\xf6\xca\x51\x17\x8d\x8c\x17\xdf\x7e\xff\xdd\x75\x1e\x17\xf4\xc0\x67\x44\x1d\x3e\xae\xbd\x25\x68\x80\xef\x09\x1b\x68\x9e\x49\xef\x84\x22\xa7\x38\x75\x4c\xc1\x55\x07\x25\x4b\x17\xb3\xe8\x43\x79\x37\xe7\xe1\x7e\xeb\x30\xe7\x8b\xa6\xfa\x35\xf7\x35\x7d\xc1\x72\x55\x07\xda\x3d\x4a\x4c\xba\xa4\x0c\xab\x7f\xac\xa6\x3a\x8f\xec\xc3\x6a\x66\x33\xb6\x39\x6d\x1b\x1f\x14\xbd\x4c\xf2\xb7\xba\xe5\xe4\x6b\x20\xd5\x95\x61\x64\x24\x82\xed\x96\x03\xd0\xcc\x5b\x03\x72\xfc\xfe\x5b\x17\xe3\xc0\x93\x36\xd7\x71\x25\x1b\x41\xa7\x2e\xa4\x28\xb2\x75\x74\x8c\xb3\xb9\x16\x48\x4c\xf9\x3d\x7a\x45\x6a\x54\x8d\xfa\xc0\x97\x31\x1d\x5f\xcd\x7a\x69\x1d\xd9\xbe\xfb\xea\xdb\xc4\x61\x1c\x93\x06\xc5\x5d\x2b\x96\x7c\xd3\xa2\xac\xbb\xea\x8a\x2b\xd2\x91\x73\x2e\x13\xde\x69\x93\x88\xca\x44\x27\x1b\x51\x6e\x64\xbe\x4d\x7d\xf7\x2d\x55\x90\x6a\x0e\xb4\x6b\xd3\x3c\x4f\x12\x3a\x58\xd1\xcb\x93\x8c\x80\x89\x30\xc4\xd8\x97\xab\xb9\xde\x5a\xdb\x68\x61\x39\x3b\x90\x1f\x5b\xd2\xd7\x95\x31\x61\xab\xb6\xbe\x66\x04\x98\x9c\x73\x95\xc3\xf2\xda\xe7\xbd\x76\xad\x90\x75\x87\xea\x12\x5f\x51\xf7\x50\x6e\x1b\x01\x39\xc9\xfa\x28\x6e\x0a\x83\xf6\x23\x6c\x0e\x32\x5b\x9c\xd9\xab\x58\xac\xc4\xcb\x00\xdc\xba\x83\x5a\x3a\x60\x1f\x6e\x94\x18\x40\x9e\x75\xda\x94\xa6\xfd\xec\x04\xe7\x53\x9d\x06\x2f\x54\x77\x4c\x46\xa3\x80\x3f\x8c\xce\xa4\x8d\x08\x91\xd8\x13\x3c\x52\xd1\xe9\x2a\xa1\x02\x53\x52\x79\xfd\x9e\x8d\xf9\x20\x57\xf4\x0d\xb1\x7b\xfc\x29\xdf\xde\x1e\x64\xc3\x14\xca\x93\x73\x9d\x25\xb8\x9c\x47\xa0\x57\xa1\xd4\x16\x8a\x1d\x30\xc3\x64\x05\x62\x35\x30\x11\xa2\x19\x6d\x87\x74\xf1\x02\xa9\x3d\xe4\x2a\x31\x53\x10\x2a\x6d\x26\x81\xe5\xe7\x20\xa8\x22\x6a\x38\x34\x94\x77\xaa\xc7\x1d\x4f\xd0\x92\x33\x6e\xd6\x51\xcd\xb5\x4d\x17\xcd\x16\x70\x1f\xb2\x2f\xad\xfd\x7b\xbd\x5c\x27\xe5\x27\xb9\x0f\x69\x37\x47\xdd\x09\x84\xad\x71\x9e\x83\x73\x23\x78\x0f\xd9\xea\x55\xd2\x94\xdc\xe4\xa9\x6b\x20\x07\x7c\x08\x7b\x98\x7b\x47\x0e\x76\xc7\xe9\x6d\x33\x13\x91\x0d\xdf\xab\xf7\xcb\x43\xa9\xa3\x6c\x1f\x47\x1e\xac\x99\xbf\x37\xce\x46\xc1\xbc\xa5\x82\x1a\xda\x43\x86\x34\x99\x05\x3f\xe7\xf6\xd3\x5e\x78\x91\xf2\x15\xa5\x4b\x80\x6d\x9c\xae\xc0\xdb\x06\x54\xb6\xcc\x8b\xaa\xa1\x62\xbe\x9f\xb0\xb7\xa5\x18\x40\x8a\x58\xf6\xd7\xba\x80\x62\xbf\x49\x31\xcd\xfe\xda\xb8\x59\xd1\xa6\x28\x06\x04\x46\x17\x2f\xbe\x15\x82\x7c\xdb\x42\x33\x56\x4f\xa3\x9d\xfe\x44\x33\x51\x4a\xcc\x2d\x77\xc6\x69\xf1\x8c\xe8\x22\xee\xd1\xfb\xd5\x0c\x82\x7d\xcf\x15\xbf\x1d\x64\x65\xfa\xc2\x39\x70\x28\x3f\x57\x66\xfd\xad\x73\xcf\x48\xf4\x94\x61\xe2\xa1\xf0\x69\xea\xc4\x02\x82\x05\x71\x6f\x9d\xd5\xe8\x29\x70\xe1\x5d\x8e\xb4\xa5\x67\x3b\xc7\xcb\xe6\x1c\x2d\xb2\xde\xcf\x43\xdf\xaf\xd6\xe2\x1b\x73\x7b\x2e\xeb\xee\x23\x08\xc3\xf1\x78\xe8\xc1\xb8\xc6\x07\xfd\x3d\xcd\x9e\x21\xd7\x17\x8d\xc1\xfe\x80\x4a\x8e\x28\xc1\x57\x5a\x26\xfd\x22\x49\xa2\xc2\x5c\xa8\x87\xcd\x9c\x93\x39\x88\xdf\x4e\xb2\xb1\xe2\x10\xb2\x9d\x21\x58\x8e\x29\xc1\x4f\xed\x18\x3c\x8f\x4f\x2d\x79\x2c\x65\x1e\x20\x1e\x91\x59\x3c\xb2\x2c\x52\x4c\xba\xc7\xe1\x1d\x21\xb5\xf1\xcc\x5f\x95\x0c\x49\x37\x5b\xc6\xdb\xd1\xa6\x8e\x1f\xad\x7d\x43\xf2\x57\x98\x11\xa9\xf5\xdc\x31\xfd\x5f\xf6\x51\x4a\xa5\xa5\x6b\xa7\x5f\xe3\x73\x59\x22\xaa\xa8\x00\xf4\x8c\x90\x3e\xbc\xca\x13\x4a\xfc\x22\xb3\x21\xd6\xb6\x3d\x2a\x7b\xbb\x89\xbb\xe3\xd7\xe8\x47\x43\xb2\x28\xe3\x2b\xe4\xcc\xea\x0e\xc8\x11\xf0\x1b\x34\xae\xcb\x14\x96\x35\x65\xba\x44\xd3\x45\x5a\x5a\xe9\xbf\x7d\x9c\xb9\x28\x7d\xea\x66\xcc\x15\x2a\x01\x3d\xb2\x4e\x42\xbe\xc2\xbb\xde\xe8\x53\x9c\x1a\x89\x3c\xc6\x6f\x27\xe9\x44\xad\x27\x1d\xee\xc0\x2b\xff\x4a\xf3\x2d\x95\x48\x24\x83\x53\x7f\x8e\xea\x0c\x7d\x53\x94\x2a\x15\x8d\x82\x8a\x8a\x3a\x26\xcf\x43\xd2\x35\x72\x05\x50\x83\x7c\xeb\xa9\xab\xf5\x33\x79\x72\xc1\x46\x40\x9d\xe0\x7d\x5a\x4f\x81\x19\x87\x63\x89\x72\xb9\x7f\x83\xe6\xcb\x6d\xa4\x61\x54\x61\xbe\xdc\x87\xcc\x37\xff\xf6\xad\x5f\x7b\xcd\x03\xa8\x9c\xbf\x34\x12\x00\xfe\xbe\x12\xdd\x93\xa7\x2f\x6f\x1a\xdd\x78\x1b\x3d\xc6\xdc\x2e\x81\x7d\x9e\xda\xab\x25\x44\xb0\xde\x59\x12\x66\xf0\xba\x26\x7d\xf5\x7c\x28\x85\x8c\xfa\x1a\xb3\x79\x1f\x88\xf8\xcc\x6e\x92\x9a\xa2\x1f\xd3\xd5\x64\x60\xda\x72\xc6\x5b\x54\xc4\x0b\x16\xc1\xac\x69\x68\x5a\xb2\x57\x9f\x51\xb4\x49\x6a\x51\xa4\x14\x94\xb5\xde\xb3\xf8\x98\x08\x82\xc0\xdb\xdc\x1d\x32\xcf\x65\x7d\x8e\xaa\x34\xf1\x5b\x9f\x91\xc6\x35\xdc\x55\x77\x59\xf3\xfc\x1e\xf8\xe3\x9a\x0d\xab\x57\x9d\x05\xc4\x74\x84\x02\xc2\xf3\x73\x7a\x61\x72\xdf\x8c\xd3\x00\xdb\xd0\x00\x1e\x22\xaf\x3b\x49\x35\x0d\x6b\x36\xb4\xd3\x33\x97\x44\x0e\x0a\xe0\xb6\xc1\x7e\x7e\x8d\xd7\xa5\x0f\x70\x90\x6d\xa7\xec\xd6\x70\x07\x5b\x81\x53\x9f\xce\xc6\x49\x29\xae\xe7\x64\x88\x82\x53\xf0\xcf\x14\x46\xd6\x23\xee\x96\xe5\xa8\xa0\x34\xec\x50\xbb\xe7\x62\xac\xb9\x16\xef\xc0\x9e\x64\xc6\xfa\xe6\xe5\xcc\xa3\x0c\x3d\x6d\xd6\xbc\x50\x38\x61\xe6\x32\xb5\x08\x63\x5f\x9f\x1e\x8a\x79\x21\x48\xbe\xa0\x99\x9d\xb9\xd1\x1d\x13\x1d\x13\x37\xa0\x11\xce\xce\x58\x13\x67\x17\xe9\xbc\xc1\xbf\x4b\x1e\x7c\xbd\xc5\x06\x78\x71\xe8\x1c\x16\x43\x64\x63\x1d\x83\xd5\xe9\x8d\x15\x37\xf3\x9a\xfa\x8f\x13\xc0\x61\x3e\x4b\xe4\xa7\x7f\x2b\xd4\x4b\xee\x4f\x40\x94\xff\x17\x5c\xd0\xef\x10\xec\x4d\x8f\xf4\xc3\xd2\x73\xc3\x61\x39\xc6\x34\xc1\xac\x86\xf9\xa4\xb0\xb9\x38\xe7\xa4\x51\xf4\x1b\xa6\x1f\xa6\xbd\x49\xc0\x93\xb1\x26\x50\xd9\xa0\x32\x78\xbf\x24\x98\x8b\xa0\x0d\x6b\x98\xd1\xc6\xc6\x4f\x09\x44\x4d\xaf\x86\xaa\xe8\x7a\xc7\xea\x72\x4a\xe2\x78\x3f\xb3\x0c\x0a\xa6\xdd\x08\xae\xb5\x4e\x4c\x43\x22\xa0\x8e\x98\xd3\x41\x65\xf4\x4f\xf5\x00\x90\xaa\x54\x2b\x82\xe8\x74\x67\x29\x9b\xc8\xdf\xba\xcf\x05\x82\x1e\x4d\x8b\xf0\x7e\xf5\xd7\x7c\xb4\xf9\x6b\xb0\x08\xd8\xd6\xa8\x7f\xb1\x35\xd1\x9c\xc5\xb1\x0e\x0d\xcc\xfa\x0b\xf4\x62\x32\x1c\xfb\x0a\xd5\x47\x07\x22\x20\x7b\xc0\x56\x5f\xd6\x89\xdc\xd0\x1a\xbe\x74\xca\xae\x87\x82\x43\x9d\xdc\xe9\xf1\xf9\x02\x32\xa7\x47\xe3\x74\x68\x8b\xef\x12\x82\xe3\x84\x7a\x14\x9b\x19\x8c\x32\xc5\x84\x33\x58\xd2\xe1\xfc\xa5\xe7\x2e\x17\xa6\xc6\x0b\xbc\x18\x3b\xcb\xa5\xe7\x2f\xab\x89\xce\x5f\x7a\xe1\x32\x4d\x45\xf9\x85\x9d\xa9\xf4\x6a\x59\x4c\x16\x7d\xd5\xb0\xcf\x16\xe3\xde\xb3\xfe\x28\x5c\xfa\x4b\x34\x83\x8f\x7f\xa3\xa7\xa0\x03\x41\x83\xe5\xe6\x07\x24\x13\x91\x99\xc0\x0b\x77\x93\x87\xf1\x2c\xd9\x37\x9f\x85\x63\x39\x5f\xfc\x8c\x66\x84\xe1\x3e\xd0\xe3\x8d\x20\xdd\x98\xae\x37\xf5\x81\x77\xd2\x95\x53\xd9\x86\xd1\xd9\xb1\xd0\xff\xc9\xa9\x60\x24\x77\x26\x9e\x48\x9d\x0d\x38\xfa\xea\x95\xcb\xf8\x3b\xca\x63\xf2\x44\xeb\xdf\x4b\xc7\x3b\xfe\xf2\xd9\x33\x52\xe7\x72\xf9\x49\x96\x6f\xaa\x2a\x8a\xcb\x75\x2a\x5c\x87\xc0\x91\x00\xc8\x42\x8f\x0f\x03\x38\x0b\x5e\x2b\x96\xb8\x28\x93\x9d\x1a\xd8\xc8\x3c\x97\x72\x9d\x08\x39\x08\x19\xcf\x6b\xb0\x09\x41\xd8\xb9\x97\x25\x70\x42\x6a\xec\xee\xf3\x5d\x02\x53\x54\xd4\x93\x09\xfb\xd4\xbe\xcd\x13\xa4\x0e\x0f\x96\x37\xad\xbf\xc3\xf3\x5e\x6e\x62\xf5\x3c\xcb\x3c\x1f\x5c\x8e\x92\x1d\x01\xe6\xf3\x68\x7b\x9c\xef\x61\xaa\x1d\xed\x7d\x18\xf1\x3f\x66\x68\x77\x78\xae\xd8\x3c\x5f\xc4\xcf\x21\x1f\x80\xa2\x0a\x54\x4b\x56\x3f\xef\xd1\xcf\x24\xeb\xa1\xc4\xac\x7e\xdc\xe5\xb6\x84\x4c\x9f\xeb\x73\x1b\x14\xfb\xa3\xe7\xf6\xc5\x48\x68\x36\x53\x88\x1b\x46\x52\x34\x4b\x8f\x35\x43\x76\xe3\xd3\xe8\xb9\x6b\xfc\xd3\xfd\x6a\xc1\x10\x01\xe9\xb4\x14\x55\xec\xab\xf5\xc0\xe1\xc5\x70\x50\x7d\x77\x59\x8a\x02\x64\x43\x85\xb6\xdd\x26\x62\x89\xf3\x68\x37\x9f\x8c\xbd\x11\x70\xb1\xe8\xb2\x7c\xcd\xeb\x88\xe1\xf5\xd1\x7e\x9a\x5e\x09\x4c\xaa\x77\x80\x64\xa7\xdc\xad\xcd\xc9\x5b\x51\x03\x5f\x4b\x13\x6f\x4e\xb1\xad\x79\x34\x4e\xf6\xbb\x7a\x6b\xde\x76\xe0\x93\xde\x92\xb3\x8d\xe8\x52\x7f\x9c\x8f\xa0\xd8\xfd\xe5\xa8\x9f\x6e\x27\x93\x01\x84\x51\x14\x05\x07\x5a\x4b\xc7\x18\x57\x33\x18\x63\x2c\xc9\x91\xc9\x99\xfc\x05\xc2\xd2\x91\x69\xad\x03\x5d\x80\x36\x9a\x3c\xc8\xd9\x50\xb1\x9b\x59\x5f\x71\x9e\xa3\x89\x56\x0c\x42\x19\x9b\x03\xc4\x37\x94\x1d\x04\xcd\x7e\x4e\x3f\x2f\x53\xb8\x48\x8e\x60\xaa\x1e\x63\xc1\x1f\x2c\xd1\xd3\x89\x50\x4f\xa9\x20\xb4\xbb\x05\x9c\xd2\xf7\xbe\xbe\xc0\x66\x1c\x8f\x9f\xfe\x87\x7f\xc0\xe0\xb4\xec\xa3\xf4\x1f\xff\x31\x7e\xfb\x17\x64\x9f\x46\xfe\x04\x58\x0f\xf6\xad\x3a\x41\x15\xc0\xc7\x46\x0d\xc1\x71\xdb\x52\x11\xa1\x06\xda\x4b\x3e\xfc\xa5\x33\x16\x24\x9e\xc5\xac\x04\x32\xf7\xb9\xc9\x4a\x60\x96\x11\x45\xff\x2b\x00\x00\xff\xff\x79\x24\x7d\xd5\xda\x0c\x01\x00") func confLocaleLocale_bgBgIniBytes() ([]byte, error) { return bindataRead( @@ -4339,12 +4339,12 @@ func confLocaleLocale_bgBgIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 68713, mode: os.FileMode(493), modTime: time.Unix(1446027988, 0)} + info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 68826, mode: os.FileMode(493), modTime: time.Unix(1448150136, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_deDeIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\xbd\xcb\x8e\xe4\xc6\x92\x26\xbc\x2f\xa0\xde\x81\xaa\x46\xfd\x92\x80\x8c\x10\x74\xf4\xcf\x05\x82\x42\x9a\xac\x7b\x1d\xd5\xad\x95\x25\x09\x90\x20\x84\x18\x41\x8f\x08\x76\x32\xc8\x10\x9d\xcc\x54\x66\xa3\x81\x59\xf4\x72\xd6\x83\x59\x0c\xd0\x1b\x61\x1e\x41\x2b\xed\xf2\x4d\xfa\x49\xc6\x3e\x33\xf3\x1b\xc9\xc8\xaa\x73\x34\xbd\x90\x2a\x83\x7e\x37\x37\x37\xb7\xbb\xe7\x87\xc3\xb2\x30\x76\xbd\x78\x5c\xd6\x99\x29\xeb\x4d\xbe\xde\x99\xf6\x24\xb3\xa6\x5a\xd9\x2e\xdb\x9a\x5d\x63\x3b\xd3\x99\x36\x7b\x5a\x76\xb3\x33\xd3\x5e\x94\x6b\x73\x42\xdf\xed\x7a\xd7\x96\x66\x65\xea\x8c\x1a\x3e\x6d\xee\xde\xb9\x7b\x67\xd7\xec\xcd\xe2\x19\xfd\xef\xee\x9d\x22\xb7\xbb\x55\x93\xb7\xc5\xe2\xe6\x7f\xaf\x4c\x6b\xcb\xf5\xae\xbb\x7b\xc7\xfc\x7a\xa8\x9a\xd6\x2c\x1e\xb7\xe7\x7d\x5d\x98\x9a\x9a\x98\xea\xb0\x78\x56\x56\x1b\x6a\x63\xcb\x6d\xbd\x2c\xeb\xc5\x69\xbd\x37\x15\x97\xf2\x97\xa6\xef\x16\xa7\xab\xe4\x53\x7f\x58\x7c\x63\xb6\xa5\xed\x68\x06\x2d\xbe\xb6\xfc\xcb\xb4\x83\xcf\x97\x66\x65\xcb\xce\x2c\xbe\xa7\x7f\x0d\xfd\x71\xf7\xce\x05\xe6\xd2\xd4\x8b\xef\xe4\xdf\xbb\x77\x0e\xf9\xd6\x2c\xce\xa4\xb0\x33\xfb\x43\x95\x53\xfd\xef\x9a\xb6\xa2\xef\x77\xef\x54\x79\xbd\xed\xb9\xc6\xa1\x05\x60\xee\xde\x59\xb7\x86\x6a\x2c\x6b\x73\x49\xab\xa0\x21\xab\xca\xd4\xf3\xf9\xfc\xee\x9d\xde\x9a\x76\x79\x68\x9b\x4d\x59\x99\x65\x5e\x17\xcb\x3d\x56\xfa\xc0\xd4\x7d\x77\x6d\x5a\x29\xc8\x68\xd5\xd9\xde\xec\x5a\x59\x87\x29\x68\xb9\xcb\xdc\x02\xf6\x5b\x53\x35\xdb\x6d\x97\xe5\x95\x05\x28\xd1\x5b\x9d\xef\x43\x07\xf8\x41\x00\xdc\xe7\x65\xb5\x78\x3c\x7b\x49\xff\x60\xee\xd6\x5e\x36\x04\xe3\x37\xf2\x47\x07\x40\x2c\xbb\xab\x83\xf1\x5f\xb2\x95\xb1\xdd\xcd\x6f\x5d\xb9\x05\x3c\xd6\xf9\xa1\x5b\xef\xf2\xc5\x43\xf9\x17\x03\xb5\xe6\xd0\x10\x8c\x9a\xf6\x8a\x60\xe7\xfe\xbc\x7b\xa7\x69\xb7\x79\x5d\x5e\xe7\x1d\x80\xf5\x9a\x7f\x58\xfe\x71\xf7\xce\xbe\x6c\xdb\xa6\x25\x88\x94\x86\x26\x7d\xf7\x0e\x81\x62\x89\x5e\x16\xaf\x4c\x6f\x6c\x16\xf7\x82\xa2\x7d\xb9\x6d\x01\x53\x94\x66\x2f\xf9\x07\x77\x83\xb2\x4d\xd3\x9e\x6b\xb3\x7c\x45\x28\x75\xc8\x2b\xe0\xda\xb8\x13\x9a\x8e\x74\x30\x98\x4a\x5e\xd3\xe6\x70\x69\x5c\x40\x38\x49\xfb\x7c\x89\xce\xa8\x52\x5e\xec\x09\xca\x87\xbc\x36\xd5\xe2\x14\x7f\xcf\xde\xe0\x6f\x2a\x58\xaf\x9b\xbe\xee\x96\xd6\x74\x1d\x6d\x80\x5d\x7c\xdd\xd4\x5d\x43\x67\x80\xb7\xb5\xaf\x19\x64\xbe\xf0\x71\xfa\xfd\xaa\xe9\xfd\x76\x2f\x1e\x51\xa3\xec\x0d\xff\xd0\x12\xdf\x0c\x45\x26\x1b\x34\xe6\x45\xd9\xe5\xc6\x98\x02\xcb\x2a\xb7\xe7\x40\x40\x60\x63\x5f\x55\x04\xcc\x5f\x08\x22\x9d\x5d\xbc\xa1\x5f\x04\x0a\xf9\x75\xf7\x4e\x69\x2d\xfd\xb5\x78\xce\xff\xa0\x93\x75\x5e\xaf\xb1\xa8\xd5\xaa\x35\x84\x9c\xdc\xf1\x8f\xd6\xe4\xed\x7a\xf7\x13\x66\x8e\x3f\x16\x67\x3d\x8a\x18\x45\x8f\xec\x35\x70\xcd\xe3\x99\x0e\xb3\xa0\xd5\xac\x2a\xb3\xa7\x41\x9a\xc2\x2c\x1e\xd2\xff\xb8\x77\xac\x23\xaf\x2a\xea\x5e\xff\x5a\x3c\x97\x7f\x75\x47\xba\xb2\x23\x78\xc4\xdf\xb2\xcd\xcd\x1f\x6d\x46\xc7\xad\xdb\xe7\x15\xd0\x30\x3b\xeb\x72\xa0\x6a\xd1\xac\xcf\xe9\xc8\x80\x02\xd0\xf8\xdf\x9b\x1a\x64\x64\x6b\x89\x9c\xd4\xa6\xdd\xe5\xd5\x2a\x7b\xc4\x35\xb2\xea\xe6\xb7\x7e\xd3\x9d\x64\x55\x49\x98\x51\x94\x6d\xb6\x2a\xbb\xce\xd0\x5f\x26\xfb\x22\xcf\xa8\xb3\xad\xe9\x16\xf7\x96\x2b\x3a\xac\xe7\xf7\xb2\x5d\x6b\x36\x8b\x7b\xf7\xed\xbd\x2f\x9f\xf6\x65\x61\x2a\x02\xbf\xfd\xe2\x93\xfc\x4b\x22\x59\x75\xde\x67\x45\x4f\x40\x39\xa1\x63\x71\xd1\xb4\xf4\x23\x2b\xa9\x75\x5d\x5c\xe6\x84\x81\xfd\x06\x7d\x12\x30\x32\xa6\x07\xd9\xcd\x6f\x44\xa3\x68\xde\x1f\x00\x72\xbf\xf4\xf4\x69\x59\xac\x84\x58\xf2\x44\x89\xf6\xdd\xfc\x4e\x27\xab\xcb\x5e\x5e\x9d\xfd\xe3\x8b\x93\xec\x0d\x91\xca\x6d\x6b\xf8\x6f\xfa\x1f\x35\xf8\x2c\x23\xc0\xb5\xd9\xdb\xf2\xd1\x03\x82\x3f\xb5\x16\xf8\x3c\xa2\x03\x51\xaf\x68\xba\x03\x64\x43\x05\x9c\x5e\x5f\x4e\xbf\x40\x56\x6d\x47\x64\xd5\x76\xa3\xad\x9a\x20\x00\xd4\x05\xd3\x0d\xdf\x85\x10\x0e\xfa\xac\x80\x7e\xc0\xc0\xc3\xf9\x30\x20\xc1\x99\x2d\x05\x94\xcf\xeb\xba\x79\xf4\x60\xf6\xb8\xde\x02\x61\xf7\x65\x97\xf5\xdd\xe6\xbf\x2e\x69\x5e\xa6\xcd\xab\xe5\xba\xcc\x7e\x30\x25\x50\x89\xce\xd8\xb5\x6c\x2a\x2f\x9b\xd6\x65\x6d\x45\xd4\x8e\xd0\xe4\xec\xec\xc5\xec\x65\x53\xf4\x16\x53\xeb\x76\x8b\x37\x9b\xbc\xa0\xe2\x5f\x2a\xc0\x4e\xc7\x7f\x44\xf0\xc0\xe4\xca\x03\x15\x66\xd7\x7d\x3b\x06\x55\xe6\x27\x4f\x9d\x9b\xb6\x5d\x12\x5d\xee\xae\x00\x7c\xee\xf5\x96\xfa\xdc\x67\x91\xb7\x9b\xac\xc6\x8d\x93\x55\x86\xaa\x10\xe9\xaf\xb5\xa3\xb2\xbe\x20\x24\x2c\x68\x1b\x3c\x9c\x46\x7d\xe0\xb3\xf4\x81\xed\xc9\xee\xcd\xef\x31\xd9\x96\x1f\xb3\x7b\x99\xa9\xbb\x1d\x93\x16\xea\xb3\x6e\x96\x42\x5e\x40\xf0\x0b\x22\x3f\x74\x66\x96\x72\x19\x09\x9d\x5b\x3c\xea\xb3\xf3\xbc\xa6\x5d\x66\x20\x87\xeb\x89\x76\x5c\xe7\x58\x98\xfc\xbc\x2b\x2f\xf8\xca\x3a\xc9\x9a\x1d\x41\x1f\x43\x31\xa9\x92\x7e\x88\x4a\x82\x32\x11\xb0\xf8\x1c\xc9\x9d\x13\x43\xc6\x91\x38\xc5\x86\x47\x84\xcd\x49\xf3\x99\xbf\x0e\x8e\xc0\xe6\xee\x1d\xb7\xcf\x82\xa0\xa7\x55\xb5\x35\xfb\x29\xd2\x05\x7e\x81\x01\x77\x5a\x03\x81\xe8\xab\x15\x0c\x73\x05\x6e\x9f\x9f\xd1\x82\x32\x20\x58\x4c\x99\xb9\xae\xf0\x19\x37\x7f\x6c\x79\x15\x20\x4a\xb2\xaf\x81\x26\x65\xdf\x34\x4d\x37\xa3\x3b\xfa\x1a\x28\x47\x8d\x0f\x8c\x48\xbe\xaa\x1b\x83\xa6\x69\x98\x2f\x09\x4d\x6d\x76\x69\xda\x42\xb8\x12\x3e\xcd\xfb\x2c\xea\x07\x7c\xcb\x81\xd1\xb8\xed\x30\x76\x4f\xbc\x04\x8e\xd4\x69\x6f\x69\x42\x44\x3a\x70\xe2\xb3\x70\xc0\x5c\x85\x18\x79\x5d\x69\xb6\xef\xad\xe5\x5d\xfd\xa1\xdf\xb6\xe5\x66\x63\x89\xd1\x21\x3a\x4c\x14\x01\x9b\xcb\x27\x84\xd8\xa0\xec\x96\x65\x65\xbb\x1c\x0c\x14\xd0\x0b\xe3\xe6\xd1\x2c\xc2\x30\x17\x8d\x12\x46\xdd\xab\xa2\x21\x26\x80\x10\x8b\xff\x71\x3f\xfd\x04\x41\x23\x77\x79\x97\xd1\x8a\x2e\x4b\xb0\x59\x5b\x47\xd8\xb2\xb3\xb3\x67\xd9\xba\xa2\xeb\x31\xfb\xf6\x9b\x17\x96\xcf\xed\x6e\x79\x20\xac\x58\xa0\xe4\x0d\x93\x0f\xf7\x29\xea\x8f\x4b\xea\x7e\xbf\xe7\xfd\x04\x39\x45\x4f\xcc\x0a\x12\x36\x12\x59\xce\x05\x0c\x96\x0a\x9e\x10\x97\xc6\x88\x75\x42\xdb\x40\x04\x9d\x08\x2c\xfa\x8e\x51\x3c\xdb\xdf\xfc\x4e\x40\xa2\x2b\x8d\x66\xb0\xeb\xba\x83\x4c\xe1\xd9\xdb\xb7\x6f\x74\x0e\xfe\xa3\xdf\xe6\x40\x99\x51\x23\x7b\x25\x93\xa1\xf5\x15\x02\x19\x3a\x09\x80\xe8\x2a\xf7\x08\x0d\x6c\xec\xdb\x2a\xc2\xd2\x19\x2d\xda\x7f\x7f\x1f\x70\x61\x46\x9f\xe0\x7f\x67\x11\xd4\x78\xaf\x64\x6b\xa9\x8a\x30\x62\x96\x0f\x50\x73\x00\x82\xfb\x13\xf4\x5a\x7f\x8e\x0e\x10\xb3\x70\x5a\x49\xda\x3b\xae\x7a\x58\xd3\xee\x09\x0e\x4c\xfc\xcf\x5e\x12\x70\xe4\x06\xe0\x8f\x9b\xb6\xd9\x13\x93\x5a\x47\x3f\x3d\xac\x88\xd3\x05\x12\xcf\x4e\x8b\xd6\x58\x6b\xb2\x9a\xf8\xd6\xec\x9b\x27\x0f\xb3\xff\xf4\xd9\x5f\xfe\x32\xcf\x1e\xd7\xdd\xa5\x01\xb2\xd5\x44\x79\xe5\x80\xf3\x24\x32\x57\x9f\xa9\x6a\xb9\xcf\x36\x4d\xb5\x95\x1b\xe2\x49\xd3\xee\xf3\xee\xf3\xec\xde\x2b\x3a\xbc\xf7\xb2\x2f\x78\x05\xff\xcd\xfc\x9a\x13\xb7\x6c\xe6\xeb\x66\xff\xe5\x1c\xac\x18\x31\x42\xad\x9c\xa6\x33\x39\x46\x8f\x67\x7b\x66\x53\xb5\xc8\x93\x27\x2d\x8e\x99\x56\xe1\xde\x97\xeb\xa6\xde\x94\xed\x7e\x91\x90\x49\xeb\x59\x58\xde\x1d\x8f\x48\xd2\xf1\xb2\x6e\xba\x72\x73\xe5\x40\x49\xa7\x26\x87\x60\xe2\x8e\x21\x4d\x3f\x6e\x61\x19\x69\x97\x56\x00\xae\xbb\x20\x98\x3c\xe3\xad\xb5\x44\xa3\xc0\x2c\x67\x84\x19\xd8\x8c\x74\x47\x9a\xcd\x06\xfc\x84\x5c\x76\xaf\xe5\x87\x5c\x78\xc9\x28\x71\x35\x42\xe4\x03\x89\x2b\x8f\xc2\x09\x60\xa2\xf0\xf0\xd1\x2b\x42\x34\xda\x19\x82\x34\xb1\x5a\x45\x7f\xce\xe4\x71\x8f\xbe\x4e\x48\x08\x20\xbc\xe1\x4b\x92\xe6\xaf\xf4\x0c\x64\x40\x09\x9a\x4c\x18\xe4\x82\x18\xf0\xd2\x6c\x84\x98\xb9\xeb\x87\x38\xec\x8b\x9c\xb8\xa2\xc5\x53\xfd\x63\x26\x6b\x49\x4e\xe1\xb8\xba\x4e\xd4\x35\x62\x68\xac\x94\x06\x15\x66\x43\x97\x09\x0d\x63\xb2\x7f\xec\xf9\xfa\x19\xdc\x5a\x3c\xe1\x53\x6e\x68\xdc\x84\x89\x05\xac\xe9\xba\x29\xf6\x37\xbf\xdd\xfc\x5b\xb9\xa5\x05\xec\xe9\xe4\x32\x49\xdb\x35\xeb\x1d\x4d\x3d\x47\x35\xc6\x37\x5b\xd2\x68\x67\xda\x40\x26\x60\xa2\x25\x25\x37\xaa\x23\x8c\x6d\x72\x97\x4e\x2f\x2e\x6e\x38\xb5\x13\x65\xa0\xb3\x49\x77\x27\x7c\x3c\x92\x3b\x94\xa6\x7a\x7e\xf3\x7b\x0d\xe1\xc2\x35\xc1\xad\x0c\x04\xab\x2b\x23\x77\x19\x21\x1f\x46\x1d\x88\x59\x09\x6e\xa4\x55\x74\x4e\x0f\x3c\x27\xa9\x4d\x66\x2c\x35\x1f\xda\x9b\x3f\x36\xfe\x2e\x49\x79\x07\xe6\x63\xfd\x4c\xe6\xca\xa2\x92\xf8\xa7\x52\xf4\x92\x06\x84\x88\x4a\x22\x56\x81\xa5\x8a\x50\xcd\x4b\xeb\xf7\xc4\xec\x31\x0b\x43\x53\xbf\xa6\x13\xbb\x13\x11\x7a\xdc\x5e\xa7\xf7\xc2\x14\xe5\xb6\xa2\x33\x45\xf5\xc1\x16\x90\x24\xde\x45\x17\x94\x03\x8b\xeb\x74\x65\x3a\x08\xcb\x1d\x10\xe3\xe9\xcd\x6f\x74\x80\x32\x1e\x83\x61\x0a\x90\x3b\x01\xff\x93\x58\x5a\x17\xa6\x7b\xee\xe4\x35\x15\xa0\x84\xdd\x3e\xa3\x46\xfb\x9b\x3f\x88\x3c\xd5\xd9\x3f\x99\xee\xba\xcb\x6a\xc2\x20\x66\xc9\xcc\x80\x53\x9a\x9d\x8a\x54\xe7\x77\x25\xc3\x9d\xcd\x6c\x53\x98\xf1\x47\xf7\x9e\x3f\x5a\x7c\x7a\xef\x63\xfa\xbe\xbb\xf9\xad\xa2\xca\x7d\x47\xd7\x68\x57\x5a\xea\x35\xea\x0e\x47\x92\xaf\xf4\x30\x2f\x21\x19\x2c\x29\xce\x12\x7a\xad\xb7\xc2\x70\x3e\xae\xdd\x84\x30\x3f\xe0\xda\x02\x3d\x54\x32\x38\x2e\x4a\xa5\x79\x69\x9f\xaa\x04\x54\x2a\x5b\x6e\xe9\x5a\x5c\xa8\x38\xc5\x5f\x14\xfd\x70\xef\x2e\xb7\x65\xb7\xdc\x80\x28\x17\x8b\x27\x66\x47\xb4\x99\xfa\x25\x3a\xf4\xd6\x30\x91\xb0\xd9\x87\x54\xe1\xc3\xec\xeb\x66\x4f\xf2\x75\xd1\xd8\xcf\xb3\xfb\x17\x8e\x8b\xff\x0c\xf4\x76\x49\x27\xb4\xac\x80\xc7\x8b\xe7\xc4\xad\xf0\x1d\x3c\x53\x8d\x0a\xd1\x8d\x0e\xd0\xbe\xf9\x03\xdb\xc4\x4c\xb3\xf2\xeb\x27\x2a\xb7\xe1\xd8\xb3\x18\x07\x54\x20\x52\x59\x5e\x97\x20\x29\x54\x5a\xdf\xfc\x46\xbd\xb9\x8e\x40\xf0\xee\xd3\xed\x0c\x7c\xef\xc0\x51\xbc\x7a\xfe\xf0\xd9\x5b\x6e\xb5\x6d\x56\x7d\x59\x15\x6e\xcc\x39\xd6\x2d\x8c\x3d\xb1\xf5\x8a\x39\x41\x02\x1a\xec\x13\xd3\x1a\x61\x81\xcf\x1b\x3a\xf6\xe7\x9d\x2c\xd0\x75\xf1\x5e\x0c\x69\x46\xfb\x4b\x4b\xdd\xde\xfc\x51\xd1\x6e\x48\x07\x9e\x59\x04\x88\x08\x9b\x48\xf8\x7e\x74\x94\xab\x43\x7b\xc7\xff\xb7\xa0\x10\x4c\x57\x7d\xf9\xe7\x58\xfa\xec\x4b\xfa\x3f\x41\x3e\xbf\x30\x72\x35\x6e\xa7\xb6\xed\x4c\x19\xda\x9a\x7b\xfa\x9a\xeb\xf5\x82\xbc\xe9\xc2\x92\x83\xa5\xaa\x10\x46\xe4\x6c\x02\x40\x83\xb5\x39\xbc\xb2\xfd\x7a\x4d\x6c\xc2\xe2\x19\x81\x82\x29\xc2\xf7\x65\x55\x9d\x13\xa6\x98\xfa\x03\xfa\x5b\x29\x39\x31\x24\x24\x63\x17\xcc\x18\x92\xc8\x8d\x7a\x7c\x3a\x84\x59\xab\x3b\x3a\x66\xa5\xc1\x51\xd9\xe5\xc4\x06\x72\xbb\xcb\x9b\x3f\x6a\x0b\xf1\x32\x23\xc2\x53\x01\x09\xb6\x35\x8b\x08\xd4\x0d\x09\xa3\xcc\x62\xfd\x08\x05\xe3\x4f\x24\x05\x8b\x9c\xd1\x10\x0d\x69\x93\x33\x25\x97\xc9\x50\x3d\xe6\x6a\x86\x03\x46\xbc\x1e\xed\xce\xd2\x2b\x29\x01\xdd\xce\xfc\xda\x41\x72\x92\x2f\x80\x23\xbe\xd0\x65\xb6\xde\x59\x53\x81\xdb\xb8\x62\xd4\xb0\x8b\x97\xcc\x36\x79\xe4\x28\xa1\x8c\x59\x37\x15\x1d\x88\x06\x60\xbf\x30\x5a\xef\x29\x4b\x50\xb4\xa8\x7c\xd3\x01\x56\xc3\x36\xd4\x61\xd3\x6e\x5d\x7f\xa9\x02\x8b\x4b\x45\xd3\xe6\x2a\x78\x85\x1b\x53\x66\xd6\xb5\xde\xb7\x11\xb1\x05\x84\x44\x45\x34\xa7\x6d\x66\x2d\x94\xcc\xe3\x79\x2d\x7c\x7b\x3d\x18\x9f\x00\xaa\x0a\xd9\x9f\x54\x37\xb4\x18\x55\x20\xc2\x08\x5d\x52\xd0\x7a\x2e\x55\x6b\xa6\x6a\x3b\xc1\x1f\x2f\x95\x46\xbc\xdc\xce\x1c\xc0\xf5\xed\xed\x16\x32\x30\x36\x3a\x83\x7c\x54\x76\x96\xc5\x5b\x6e\xf8\x55\xf6\x57\xa6\xe6\xb9\x5e\x08\x1f\xd0\xd6\x34\xeb\x32\xaf\x96\xef\xdb\x8d\x6d\xae\xa9\xba\x9b\x88\xeb\x8f\xb8\xa3\x73\xc2\x9e\xc3\x86\xbb\x4c\x99\x01\xd1\xd2\x92\xd8\xbc\x78\x6c\xb3\xae\xc7\x29\xb6\x24\xb2\x94\xc5\xc9\x84\x84\x7e\xd9\xb7\x20\x56\x9e\x65\x20\x64\x15\xfd\x09\x2b\x4f\x04\xb3\xf3\x7a\x4c\xf5\x47\xbc\x0b\x96\xc0\x74\x7a\x6a\xcc\x07\x31\x83\x0b\x0c\x4e\xf9\xdf\x99\x72\xe8\xe3\xc9\x00\xdc\x7b\xb3\x5f\xa1\x77\x48\xe4\xee\x72\xce\x68\xe0\x72\x85\xed\xa0\xeb\x7f\x4b\xd4\x68\x7c\x93\x10\x88\xb6\xe0\xf7\xb5\x8e\xb9\xb5\xce\x57\x5e\xef\x4e\xb4\xed\x12\x1b\x71\x49\xc7\x9e\xb6\x62\xb4\x93\x6d\x74\xa3\x7f\xe0\x6f\x32\xe1\xbf\x98\x5d\xa7\xde\x3a\xbf\x01\x40\xeb\x1a\x6a\xdd\x18\x02\x83\xf5\x12\x78\xbf\x58\x7d\x79\xdf\x7e\xf1\xc9\x0a\x3a\x3c\x96\x6e\x68\x1b\x30\x6a\xdb\xc8\xbd\xc6\xe8\xcd\xda\x37\x58\x2f\x22\x05\x22\xcb\x39\x37\xbf\xd1\x09\x06\x9f\x76\x1f\x2c\x26\xdb\x1d\x98\x07\x1a\xef\x76\xbe\x22\x6e\x68\xbd\xa3\x3e\x6f\xfe\x8d\xf9\x39\xc7\x0b\x75\x8d\x47\xfb\x97\x65\x27\xa7\x69\xaf\xb8\x9f\x7b\x6b\x45\xbe\xe6\xc3\xcf\x27\xcf\x55\x3f\x0d\xbc\xa6\x87\x15\x76\x8d\xc1\x50\x95\x44\xd9\x8e\x63\x63\x9f\xf1\x62\x09\xcc\xd7\x84\xf9\x50\x82\x12\x17\xed\x3a\x8c\x00\x65\x3d\x52\xe6\xe0\xd0\x3f\xcb\x5e\x96\x44\x12\x79\x01\x74\x5e\x96\x7d\xad\xbb\x60\x0a\xc1\xc1\x67\x44\xc8\x1b\xba\x59\x78\x08\x3e\x51\x4c\x5f\xfa\xda\x73\x17\x9d\x93\x0a\xbd\x14\xf9\x91\xdf\x83\x8f\x89\x5e\xab\x68\xcf\xfc\xd7\xf4\xde\xf1\x06\x74\x4a\xe1\x85\x2c\x1b\xbf\xdb\x4e\x71\x6a\xbb\x93\xec\x9c\x28\xe3\xb9\x51\xd6\x80\x45\x6f\xb0\x52\x5e\xf6\x7c\xd0\x77\x5d\x23\x6a\x22\x00\x43\x17\x00\xd5\x92\x34\xd4\xad\xe4\xbe\x27\x40\x43\xf3\xa0\x11\x19\x80\x50\x56\x18\x31\x3a\x19\x27\x38\x2e\x09\xd3\x41\x6f\x3a\xc3\x9a\x80\xd1\xaa\x71\x49\x43\x13\x7a\x1e\x6f\xb8\x27\x2e\x38\x7f\x3c\x29\xcc\xad\x3b\x36\x35\xaf\x26\xa0\x49\xec\xbd\xd0\x3b\xbb\xee\x89\xb9\x5f\x9f\x53\xc3\x6b\x28\xc4\xa6\xa6\x29\xdd\x8e\x8f\x65\xd2\x34\x5c\xef\xac\xa8\x1f\x63\x11\x6b\xac\xa2\x1d\x42\x35\x5e\x18\x2c\x2e\x15\x41\xdc\xc9\x60\xfe\xc6\x9f\x0f\x87\x4e\x54\x7a\xc9\xe2\x48\x92\x1d\x4e\x0b\x02\x85\x4c\xcc\x37\xef\x9a\x66\x69\x77\xd0\xf2\x3c\x8a\x1b\xb0\xfe\x8c\x88\x66\xc1\x92\x36\xcd\xf8\x3f\x3b\x15\x73\x06\xbb\x1b\xab\x72\xf8\x12\x02\x64\x7f\xd2\xf3\x85\x6b\xc8\x1d\x2e\xc1\xfa\x7c\xf2\x88\xf9\xca\xc2\x1f\x13\x3f\x51\x32\xa7\xa9\xd5\x86\x5b\x3d\x82\xf6\x19\x16\xa1\x84\x65\xb0\xc2\xe8\x92\x73\xec\x50\x4a\x47\x4c\x0b\x04\x66\x95\xd4\x49\xc4\x20\xc9\x5a\x9a\x22\xc7\x62\xae\x8c\x5d\xfc\x35\x87\x06\x99\x6e\x52\xac\x93\x0a\xa0\xc7\xb8\xf9\x57\x28\x47\xa4\x2e\x11\xe6\x3d\x55\xfd\x96\x78\xca\x57\x63\xf1\x01\x77\x35\x7f\x0e\x6c\xea\xec\x15\x97\x3c\x8e\x44\x82\xb0\xc0\x37\x63\x41\xe3\x1b\x73\x8b\xb1\xf0\xec\xec\xd9\x5b\xd1\x8f\x40\xdb\x47\x64\x91\x05\xb0\x4a\x06\x7f\xd6\x75\x07\xfb\x6d\x5b\xb1\xde\xee\x4c\x74\x6b\x6f\xf2\xab\xaa\xc9\x0b\x7c\xd5\x3f\xe5\xfb\x5b\x93\xef\x79\xa2\xf8\x43\x9a\x9f\x12\x5b\xc1\x9f\xf0\x07\x91\x42\xdd\x9b\xa0\x4d\xe6\xdb\x54\xd6\xc1\x7f\x7a\x65\x52\x10\x54\x0d\x9b\x21\x7f\x9e\x56\x69\xff\x4c\x18\x50\x1d\x48\xc0\x06\x8f\xe7\xab\x32\xc6\x11\x3f\xee\x88\xbc\xc8\xb4\xa8\x57\xf7\x7b\xc2\x10\x30\xa0\x1e\x07\xa1\x00\xb9\x37\x5b\xc6\x0a\xff\xb4\xd7\x82\x08\xc8\xdf\xdf\xf3\x7c\xd4\xb5\x2d\xaf\x4d\xda\x21\x88\xc7\xd3\xf6\xe6\x77\xba\x8e\x58\x14\x82\xb6\x18\x35\x99\x8f\x1f\xd5\xe6\xa3\x24\x27\x89\x2a\xbb\xc1\x92\x21\xf6\xf9\xaf\x69\x43\x06\xde\x0e\x1a\xd9\xdb\x1b\x0a\xc9\x74\xad\x40\x3e\x84\xf8\x2b\xc9\x18\x1e\x27\x34\x81\x9a\xf5\x96\x06\x84\x1a\x5c\xab\x3e\x27\x96\xa2\xd6\x9a\xdf\xd2\x1d\x04\x73\x09\xfc\x0d\x44\xc6\xf9\xdc\x5b\xad\xe9\x22\x5e\x43\x5e\x5b\x77\x5e\xb1\x62\xbb\x72\xbf\x77\x72\xd4\xcd\x1f\xcc\x18\xe2\xb2\xf0\x94\x27\x92\xc4\xa0\xc8\xc6\xe7\x9b\xdf\x5b\xf4\xce\x4d\xa1\x93\x18\xb6\x0d\xb6\xf7\xe5\xca\x18\xba\xfb\x73\xa2\x76\xa9\x94\x51\x46\x4c\x28\xf3\x48\xab\x60\xc9\x18\x36\x1c\x1c\xce\x63\x6d\x89\x05\x1b\x35\x1d\x19\x4e\x8e\x35\xee\xe8\x5c\x8d\x5a\xbb\xc3\x76\xac\x91\xec\x28\x37\xa0\x05\x17\x03\x72\x21\xca\xf5\xa8\xd9\xa5\xf0\x5d\x74\xdd\x10\x9f\xbf\x85\x9a\xdb\x0d\x1a\x46\x02\xc6\xb0\x3a\xc5\x5f\x25\x1e\xe7\xe7\x11\x58\xfd\xee\x84\x0d\x1d\x0b\x71\x9e\x26\x05\x41\x59\xa5\x75\xd6\xb3\x75\x50\xd8\x15\xcb\x44\x66\x17\x15\x0b\xdf\x09\x22\x8e\x64\xb6\x14\x67\x16\x91\x44\x85\x07\xd9\x1a\x86\x40\x24\x8c\xe9\xce\xa8\xd2\x18\x03\x4e\x0d\x41\x48\x0a\xd1\xfe\x6f\x1b\x83\x6e\xde\xd2\xaf\xeb\x1d\x03\xf8\xab\xe7\x96\xee\x73\x9b\x74\xef\x81\x94\x76\xed\x95\x10\xe6\x57\xfa\xc0\x72\x81\x34\x88\x8c\x57\x5c\x04\x21\x42\x80\x3b\x87\xaf\x8b\xed\x20\x90\xca\x4a\x59\x75\x01\x83\x63\xdd\x6d\xc0\x9d\x8c\x94\x17\x58\x6a\x05\x9e\x3f\xac\x92\x59\xbc\x36\x91\x64\xe7\x99\x30\x56\x4e\x7b\x77\xdd\x43\x56\x24\x3e\xbe\xba\xf9\xdd\x62\x53\x79\xb3\xf9\xf8\x91\xe4\xb4\xf5\xea\x6e\x3e\x88\x0e\x32\x30\x4a\x9d\x9b\xab\xc5\x0b\xe2\x68\x9c\xb2\x98\xf0\x53\xd1\xa2\x14\xc5\xc7\x0b\x6a\x7d\xe2\x04\xdd\xf4\xca\xc2\x3a\x78\x08\x56\xa8\x1a\xa8\x45\x2c\x6b\x11\x20\x9f\x5d\x80\x33\xb8\xf2\x63\xb0\x8a\x02\x24\xe8\x48\x57\x32\xe6\x45\x60\x27\x88\x13\xaa\x99\x0a\x11\x71\x6e\x49\x1a\xd0\xad\xa2\xbf\xf5\x0c\xf0\xa6\x64\xc9\xa6\x42\x8f\xef\x3c\xac\x64\x83\xa1\x5f\xa4\xab\xd0\xe9\x77\x46\xd7\x62\xb6\x21\x6a\xc8\x4e\x57\x70\x4c\x52\xc5\x0e\x5d\x19\x1d\x1d\x47\x6c\x98\x78\xe0\x3c\xf2\x0c\x10\xae\xf2\xd2\x2b\x4a\x63\xb1\xfe\x4f\xec\x88\x8c\x06\x99\x02\x1e\x37\x24\x05\xae\xf8\x70\x62\x04\x12\x8b\xb6\x74\xf1\x15\x13\x28\xe0\xf5\x7e\xdc\xbf\xa1\x01\x55\x24\x13\x73\x86\x6f\x2a\x8a\x12\xa5\x85\xc3\x85\x71\xcd\xb8\xd7\xff\x90\x05\xc6\x00\x65\x4b\x96\xf4\x34\xde\x0d\xa6\x8e\x3c\x32\xb4\x94\xb4\x66\x76\x6c\xf1\x54\x0c\xbe\x26\xf4\x57\xc7\xe6\x36\x3e\x3e\xba\xd6\xeb\x1e\x6e\x27\xb8\xff\x1d\x34\x84\xf3\xe7\xb1\xc5\x93\x65\xb9\x6a\xf3\x7a\xbd\x8b\xce\xef\x0f\xa5\xa9\x66\x0f\xf8\xeb\xf0\xd8\x32\x9b\x88\x99\x42\x47\xb3\x83\x76\x7e\xa9\xc6\x1f\xe1\x23\x1d\x07\xcb\xae\x49\xab\xb2\x2a\x58\xc4\x72\x26\x1f\xd8\xee\x7c\xbb\x75\x6f\xbb\x66\x3f\xd5\x1c\xca\x0d\xb1\x09\x95\xa2\xea\x18\xd8\x29\xff\xa9\x21\x76\xa4\xa9\x23\x26\xb8\x8b\x7c\x8d\x68\xdd\x03\xb5\x12\xb3\xe6\x65\x47\xbc\xee\xff\xdc\xd0\x69\x54\xdd\x98\x48\x6f\x60\x3f\xa1\x91\x20\x09\x95\x76\xc5\x2e\x9e\xb8\xbf\xb0\x35\x39\xe8\xe5\xe2\x65\xde\x9e\xcb\x18\x52\x0d\xca\x4c\xaa\xb6\x65\x60\x80\x65\x9e\xf3\x2d\x03\x7e\xbe\xbd\xa0\xfa\xb1\xcd\x9e\xe9\xf0\x87\xf7\xed\x87\x4c\xc2\xa4\x8a\x6a\x52\x42\xcb\x43\x4e\xe8\xda\xd6\x22\x20\xf2\xf0\x45\x72\x41\xd5\x76\xf6\xb2\x07\xfb\x9f\xc1\xcd\x28\xba\xa0\xae\xfb\xea\xe6\x37\x6b\x59\x82\x62\x4f\x2c\xf1\x01\xa3\xbd\x71\x8e\x62\xce\x47\x6c\x42\xe9\xaf\x04\xc8\x0e\xd8\x6d\xa7\x11\x5b\x9c\x89\xa6\x4b\x14\x93\xe2\x88\x41\x80\x13\xe6\x20\x98\xb9\xd9\xfc\x08\xa5\xe2\x50\x9d\x58\x18\x22\xd6\x6a\xb8\x70\xc8\x47\x9f\xfb\xb2\x58\x7c\x5b\x16\x98\xef\xa1\x5f\x51\x87\xde\xa7\x2d\xde\x1c\xeb\x9d\xdb\x9c\x83\x23\x9b\x65\x1e\x4d\x08\x52\x0c\x8e\x9b\xdf\x7d\x5b\x1c\x0e\x6b\xd8\x34\xdf\x0b\xd9\x56\xfb\xb9\x0a\x71\xf6\x60\xae\xe9\x60\xf1\x59\x98\x30\xde\x7a\xce\xe3\x24\xb3\xb4\xd5\x46\xdb\x82\x88\x5e\x9a\xd5\x6c\x95\x5b\x36\x4b\xd6\xd9\x13\x62\x24\x65\xad\xa2\x53\xe3\xf3\x2d\x6e\x0f\xec\xcc\xb5\x25\x7e\x07\x7b\xe4\xcf\xfa\x06\xae\x76\x7c\x9d\x7f\xd7\x40\x97\x05\x6f\x2f\x3a\xc5\x6d\x26\x32\xd4\xd8\x75\xb4\x6a\x04\xda\x0b\xb6\x53\xf2\x9e\xf5\x87\x02\x22\x66\xba\xbb\xac\xcc\xa7\x7b\xcb\xaa\xc9\x25\xad\xe4\x45\xc6\xe7\xbb\x56\xa1\xaa\x8a\xae\x48\x6a\x8c\xbb\x00\x6e\xea\x11\x9d\x74\x0a\xa5\x95\x89\xa3\x5a\x37\xaa\xe7\x54\x4b\x42\xc5\xe4\x48\x7b\xea\x65\x79\x1c\xf5\x75\x78\x51\xd6\xe7\x2b\x73\x0d\x85\x3b\x2e\x4b\x55\x70\x79\x53\x9a\x38\x47\x30\xd8\xa0\x29\x2f\xeb\x1e\x80\x21\xa8\xb4\xd3\x4e\x88\xce\xc8\x99\x90\x94\xa0\x0a\x1b\x9b\x95\x1d\x85\x99\x6e\xea\x7d\x1b\x62\xc3\xad\x0d\x9a\x1f\x4f\x9f\xf4\x72\x86\xc3\x8c\x33\x63\xd3\x6a\xd8\xce\x0c\xe0\x34\x8d\x55\x1d\xb6\xcc\x08\x2a\x6c\xdf\x16\x8b\xbc\xf9\x6d\x57\x45\x5b\xe6\x26\x2e\x56\xf4\x88\xea\x8d\xb7\x18\xd2\x2e\xf1\x72\x3a\x5f\xa6\x1c\xcb\x72\x0f\xcf\x61\x08\x1e\x91\xbd\x5b\xed\xfa\x5e\x22\x22\xc6\xa0\x2a\xc4\x93\x2c\x5d\x73\xb0\xb1\x7d\x8d\x6a\x63\x98\xb5\x6e\xe6\x74\x46\xe0\x4d\x45\x47\xec\x24\xd6\x81\x45\x84\x69\x7f\xf3\x3b\xdb\x6f\xe7\x83\xa5\x79\x64\x94\x93\x3c\xb1\x50\xd5\xc1\xa6\xe8\xe8\x11\x6d\xac\x9b\x12\x54\x04\x11\xaa\x22\x8e\xf6\x54\xcd\x5b\x36\x72\xfa\xc0\x3e\xf8\x0a\x62\x4c\x88\x3d\x42\xa0\x98\x58\xde\x52\xc7\xa9\xcc\x98\x1d\x5e\x25\xea\xa6\x20\x56\x8c\xc7\x9d\x14\x27\x06\xab\xf1\x50\xf1\x8d\xfc\x11\x23\xde\x22\xf2\xe7\xa3\x03\x24\xd6\xe8\x7d\x50\x0a\xd7\x8c\x53\xbe\xa5\xd3\x0e\x33\xd4\x58\xe4\xb2\x03\x49\x2b\xb8\x31\x4f\x17\xc7\xae\xcc\x22\xb3\x45\xb4\xf7\xd0\x96\x7b\x36\x9a\x4e\x49\x6f\x4c\x2a\x27\x68\x2a\xe8\x70\x2e\xd7\x7b\xa0\x9a\x89\x8c\x87\x6e\xf3\xf6\x8a\x08\x1a\x77\xef\x3f\xa8\x32\xed\xb4\xb2\x61\x64\x37\xa4\xf7\x28\x75\x77\x8d\x56\x7e\xe1\xef\x1a\x37\x7b\x2a\x04\x19\x55\xad\x68\x75\xa4\x5c\x97\x49\x12\x8f\xeb\xc1\xf9\x80\x0d\x1c\x96\x78\xad\x7c\x23\x3c\xaf\x37\x8d\x1a\x1b\x44\x7f\x21\x92\x8b\x5c\x08\xbc\x47\x93\x1d\x04\x85\x2e\x8b\x16\x73\x56\xd9\x61\x83\xfb\x8c\xfa\xeb\x36\x39\x6c\xb7\x5f\x8d\xe6\xe7\xb0\x64\x08\xfa\x11\x31\xf7\x9c\xe7\x07\xb0\xd9\x17\x8c\xd5\x02\x1b\x76\x69\x1f\xb4\xdf\x95\xf5\x75\x2f\xde\x91\x52\xdd\x4c\x68\xf3\x8e\xd4\x5a\x26\xf6\x16\xd8\x18\x8e\xd9\x58\xf6\x89\x81\x85\x39\x22\x67\x5b\x71\xfc\x7a\x2c\x31\x65\xf0\xc0\x80\xad\x5f\xcc\x2c\x38\x74\xd0\xd0\x06\x4b\x0b\x1b\xeb\xbd\x7d\xc5\x29\xbe\x13\xc3\xd6\xc8\xba\x12\xa6\x9d\x92\xa1\x7a\x02\x2a\x63\xa8\x32\x04\xb6\x06\x30\x10\x9a\xa4\xa7\xe8\x08\x1f\x95\x46\x04\x14\x2c\xeb\x0d\x6a\x24\x30\x45\x37\x82\x81\x90\xd5\x4a\x67\x24\x79\x01\xbd\x2f\x63\x5b\x3b\x90\x0c\x23\x2c\x9b\xb6\x16\x28\x72\x89\x20\xe8\x90\x53\x10\x77\xd8\x4b\xe1\x85\x5b\x55\x87\x49\x5b\x99\x95\x5e\x86\x5f\x10\xab\xdd\xd4\xdb\x2f\x21\x86\xb5\x70\x25\xa3\x29\x72\x20\xcd\x57\x5f\x7c\xa2\x45\x19\x2b\xec\xfd\xdc\x4f\xeb\x8a\xee\x6c\x6c\x05\x2c\x11\x5f\xe4\x91\xab\xfc\xe3\xf6\xda\xf4\x5b\xf5\x32\x1b\xe8\x7b\xd9\x79\x9e\x65\xa6\xa4\x89\x06\x08\x00\xb5\x4d\x14\x39\xc4\xad\xb5\xcc\xa0\xe9\x3c\x20\xfd\xfb\xc0\x9c\xea\x44\x4a\x29\x71\x29\x62\xa7\x94\x88\xa7\x04\x3e\xfa\x2e\xac\xe2\x46\x4c\xbf\x5c\x47\xcc\x04\x89\x76\x8b\xae\xd0\xb8\x87\x36\xea\x41\x37\x6d\xcf\x12\x39\xf5\xfd\x4a\x7c\x94\xbd\xa4\xa5\x5a\x30\xea\xd7\xf5\xb9\x18\xaa\xc3\x51\xc0\x3e\x04\x74\xe2\x64\xce\x1e\xcb\x3c\x72\xe3\xb0\x0f\x91\x46\x4e\xde\xed\xc8\xfd\x81\x27\xa8\x13\xf0\x0b\xd4\xd3\xad\xd9\xd3\xd7\x41\x4d\x4f\x0e\xc7\x55\x8f\x91\x5a\x3b\x98\xad\x8d\x68\x2d\xa6\xb7\xbb\xf9\xbd\x65\xc1\x77\xca\x01\x1a\x8e\x71\x6c\xce\x13\x06\x4d\x59\x49\x3f\x8b\x79\xf6\xd2\xf9\x01\x8f\x08\xed\x68\x7e\x0e\x84\x83\x25\xbd\x9b\xd4\x12\x18\x9e\x45\xa0\xcc\xf2\xbd\xea\xb9\x18\x29\x7e\xe8\x2b\xe7\x2e\x20\xa8\xc3\xe5\xf0\xe9\x77\x12\xea\xd7\x9e\x20\xd5\x91\x80\x0a\x18\xf2\xce\x76\x60\xa5\x3c\x95\x48\x91\x4a\x26\xa7\x12\xb3\x28\xca\xea\xec\xbf\x64\x6f\xf3\x44\xac\x21\xa9\xbf\x21\xc6\x7a\xd4\x95\xcd\xde\xe2\xfb\xed\xbd\x08\x4f\xd8\xc5\xc4\x4f\x64\xc5\xef\x3c\xd1\x31\xce\x43\x42\xe5\xc6\x98\x0c\xaa\xab\xc5\x51\x2a\x17\x48\x17\x94\x6e\xd2\x4d\xab\xfd\x4c\xd3\x31\x3f\x2e\xef\xff\x3b\x68\x59\x5f\xaf\xe8\x8f\x45\xdc\x26\x46\x52\x29\x0e\x57\x43\x99\x76\xcf\x34\x4c\x27\xe5\x74\x5e\x8a\x0f\xd2\x47\x72\x29\xe4\xdc\xc9\x92\x61\x8d\x11\x01\x02\x74\x42\x84\xd4\xde\xfc\x5e\x2b\x49\x20\x34\xce\x61\x3b\x66\xd0\x5b\x17\x13\xa1\x7e\x2f\xd2\x56\x44\x06\xd9\x1b\xa3\x44\x53\xf7\xd0\x0a\x24\xbf\x63\x3f\xdd\x36\xe3\xc6\xe2\x33\x2b\xd5\x9d\x9b\xa4\xee\x9a\x4a\xa2\x2c\xc5\x38\x31\x8c\x95\x8f\xa7\x6f\x9e\x5b\x5a\x1d\x21\x2d\xe1\xf4\x46\xc2\x4c\xdc\xf8\x32\xc4\xcb\x86\x08\x14\x09\xa1\x34\x83\x2a\xef\x57\x1d\x71\xa1\x1c\x0a\xc3\xc3\x5c\x34\xec\x9f\xab\x47\xd2\x9f\x41\x01\xd1\xdc\xe1\x9b\x28\xee\xf1\xa7\xda\x0c\xfd\x5a\x65\x9d\xd2\x97\x5b\x03\xd6\x98\x56\x90\x7d\x31\x8e\xaa\x25\x90\xf3\xe7\x92\xa5\x88\xee\x03\xe2\x0a\x26\x54\xd9\x3d\xa3\xb4\x82\xa6\x39\x30\xa5\x85\xb3\x00\xca\x39\x30\x6b\x57\x67\xf6\x80\xd3\xe6\xf0\x07\x81\x93\xc4\xad\x88\x2f\xa9\x30\xe1\x81\x36\xca\xb4\x03\xb3\x19\xef\x78\xc4\x73\x0a\x6e\x60\xeb\x71\xd3\xc5\xdb\xaf\x73\x39\xd2\xf2\x38\x89\x9c\xe8\xe3\x5d\x74\xd2\xb0\xc2\xda\xeb\x6c\xde\x8f\x28\xc6\xeb\x0c\x12\xca\x10\x7f\x99\x0c\x0f\xb6\x21\x90\x47\x77\x34\x3e\x60\xff\xba\x92\xb6\xc1\xb9\x20\x0a\x7f\xe0\x26\x44\x42\x73\x22\xe1\xf2\x51\xd2\x09\x38\xe3\xfb\x50\x93\xa4\xc5\x89\xca\xe1\x94\x85\x0b\x81\x46\x40\x42\xda\xe0\x1e\x6c\x23\xb1\x44\xae\xb9\x44\x58\x41\xeb\xee\xd8\x1a\x76\xf6\x0c\x9c\x0c\x1b\xde\xb7\x24\x85\x6d\xcb\xed\x40\x97\x13\xdc\x8c\x96\x83\x29\xbe\x18\x4e\xce\x45\x7c\x6a\x90\x93\xde\x49\xa3\x35\xb8\x6a\xb2\xe7\xaa\xe6\x2e\xf2\x15\x89\xed\xba\xe9\xc3\x75\x40\xcb\xa0\xbd\x9c\x84\x00\x17\xec\x21\x14\x27\xac\x07\x4b\x36\xf3\xee\x9d\x1f\xa1\x20\xfd\x89\xe4\x64\x36\xb6\x38\x0b\x4a\x64\x44\x1c\x9b\xf5\x83\x7d\x51\x59\xc0\xa7\x7d\x37\x32\x63\xa9\xfb\xe6\x79\xdf\x5e\x9f\x80\x98\x13\x03\xff\xdb\xd6\xe6\x7b\x86\xb0\x03\x2e\x7d\xbf\x2e\xb7\x79\x4b\x37\xb5\x07\xf1\x1c\x8e\x85\xb6\x5c\x95\x15\x2e\xbe\x33\xe0\xc5\x2a\x6f\x11\x98\xaa\x05\xf8\x1e\xc7\xcd\xc4\x43\xf3\xd5\xf1\x85\x3d\x10\x4d\x5a\x23\x1e\x68\x71\xaf\x2f\xb3\xd6\x14\x19\x7c\x28\xc1\x2b\xc2\x17\x83\x86\xa2\x0a\x5f\x8e\xbb\x43\x1c\xf0\x5a\x35\xb5\x89\x1b\x1d\x87\xe6\x6c\x08\x92\x74\xaf\x9b\x6d\xa7\xa4\x83\xcf\x95\xdc\xc9\xb1\x62\xf9\x96\xf1\x0f\xf1\xf8\xec\x20\xe0\xac\x03\xf1\x64\x10\x8d\xec\x16\xf8\x11\xcb\x4d\x41\x65\xa6\xfb\xfe\x3d\xe8\x39\x1f\xef\xf3\x2e\x68\xd0\x78\x42\x4f\xa8\x35\xbb\x00\x7c\xcc\xba\xe4\x73\x31\x5c\x44\x20\xca\x57\x12\xdf\x5c\x6b\x39\x07\xf1\xa0\x95\xb0\xdd\xfa\x75\x0a\xd4\x59\xbc\x1b\x4c\xb8\x88\x9f\xa1\xca\xdd\x10\x02\x41\xb9\x41\x77\xb7\xa8\x2c\xa8\x95\x33\x4d\x33\x3a\x3f\xe0\xc0\x7d\x53\xae\x68\x55\xfa\x1d\xce\x36\x21\xc0\xdd\x7f\x72\x13\x98\x6f\x4b\xc2\x93\xba\x69\x43\x48\x4a\xac\x2b\x23\xe4\x26\x8a\x67\x16\x2f\xca\x6b\x53\x5f\xfb\xdf\x3e\xae\x97\xeb\x39\xb6\x02\x55\xd0\x1a\xc3\xe4\x05\x23\x39\xfe\x71\x3f\x5d\x23\xf9\x9a\x69\x18\x7e\x32\x1c\x3c\xf5\x97\x84\x21\x5d\x0c\x5a\x30\xf0\x1c\x0d\xc3\xd5\x00\x16\x37\x53\x60\xbd\x76\x83\x90\x40\x5a\x49\xa4\xb6\x53\xaf\xd6\xe1\x46\x45\xde\xac\x85\xd9\xe4\x7d\xe5\x6c\x32\x0b\x17\xa1\xa2\xd6\x18\x17\x0b\x4f\xf3\xa1\x5b\xea\x02\x4a\x7a\xf1\xd1\x9d\x3d\xd7\x0f\x55\xf6\x11\x1c\xe0\x45\x2a\xfe\xf8\x88\x81\x62\x68\x88\xf6\xf6\x89\x09\xab\xfd\xed\x56\x8a\x41\x4f\x76\x2f\x66\x0a\xdf\xe1\x94\x99\xa2\x36\xd0\x5b\xf6\xdd\x0e\x46\x47\x42\x23\xab\xda\x43\x1f\xdd\x8c\x55\x6e\xe5\xe6\x87\xb3\x90\x0f\xe1\xb7\x1c\x9c\x1c\x97\x1d\xa5\x0e\x7c\x01\xe0\xd4\x25\x47\x94\xfd\xab\x57\x55\x6f\xee\x7d\xa9\x70\x8b\x4f\x68\xe8\x7a\xb8\x3f\xf8\xee\x22\xc0\xa4\xca\x9c\x03\xf4\x96\xc4\xf1\x43\x5b\xb0\x70\x4a\x03\x61\x2b\x8e\xd6\x8b\x38\x5f\xbe\x7a\x18\x47\x43\xd4\xdf\x27\x4f\x9f\xbf\x85\x97\x8a\xf7\x5e\xcc\xaa\xe6\x9c\x59\x60\x89\xbf\xe2\x58\x63\x0d\x37\x74\xfd\x3b\x8b\x35\x6c\x05\x95\x04\x11\xbc\xd0\x46\x88\x85\x4e\xa3\x06\x4e\xb2\xb1\x1d\x5e\xc3\xef\x9c\x72\xf8\x75\x5b\xd4\x6c\x1c\x16\xea\x40\x3b\xc5\x54\xe3\xa9\x1c\xff\x88\x6c\x70\x08\x20\x89\x1d\x1b\x8e\x95\x71\xac\xe6\x79\xea\xa9\x7e\x95\x71\x27\x35\x82\x33\x2b\x18\x5c\x88\xc7\x62\x2e\x0f\x0c\x4a\xc7\xf7\xe8\xe1\x6a\x59\x95\xf5\x39\xdd\xee\x0e\x74\xfe\x9b\x67\x3a\xa4\x2c\xa9\xaf\xee\x3b\x8f\xf8\x9a\x36\xd9\xbf\xff\x8f\xff\x35\x7b\x28\x4b\x39\xeb\xda\x2d\xfd\x0d\x6e\x3d\xea\x13\x3e\x84\xf0\xaa\x45\x07\xf0\x4f\xff\xe1\x92\x2d\x40\xd0\xfd\xe3\xc0\x9f\xc7\xa3\x97\x84\xd8\x3a\x64\xf6\xfa\x6b\x34\xc6\x1e\x3a\x54\x1b\x6a\x3f\x24\x26\xe2\x6b\xd4\xa9\xbf\x12\x05\xc8\xb6\x24\x16\x19\xf7\xc3\x6d\xc9\x02\xb8\x31\xf4\x15\x1f\x40\xf4\xb8\x64\x9f\xa1\x57\x81\xed\x5c\x99\x66\xe5\xdc\xec\xa5\xf0\x41\xf4\xa5\x47\x74\x44\xeb\x2c\x93\x1a\x44\xba\x13\xb5\x74\x5c\xe2\x68\x3f\x93\x7d\x3e\x7c\x4a\x95\xbf\x76\x9e\xb4\x11\x6d\xfe\xa5\x07\x90\xb6\x48\x62\xb0\xf8\x9a\xae\xf3\xdc\xa9\x6f\x1c\x08\xba\x5d\x69\x63\xf3\x78\xb4\xcf\xe7\x95\x58\xfd\x22\xbf\x7d\xa6\xeb\x6b\x89\xe9\xf1\xa9\x4b\x22\xa7\xdc\x94\x9c\x76\x90\xf6\x5d\x04\xd0\xb5\x29\x2b\x03\x03\x21\x5c\xe9\x80\xaf\x32\x2a\xc7\xa8\xb1\x09\x5d\xba\x71\xa8\xcc\xbe\x22\x51\x77\x1c\xb9\xc8\x92\x63\xd2\x1d\x4f\x88\x56\xc0\x21\xec\xcc\x5a\x0f\xf8\x09\x89\x23\x16\x65\x24\x3c\x28\xbd\x38\x70\x89\xe0\x91\xf6\x03\x00\xf0\xee\x1d\x25\xcd\x8e\x22\x77\xad\x31\x44\xa7\xdb\x9e\xf8\xd7\xd6\x95\x72\x78\x7e\x97\x6f\xad\x56\x23\x64\xf8\xff\x20\x43\x5b\x57\xc1\x84\x12\xd8\xe1\xa9\xa2\x94\x0e\x52\x6e\x20\x3d\x87\xa4\xe5\x98\x9d\xd6\x12\x59\xc7\xfb\x51\x11\x6f\x48\x05\x2f\xf0\x0f\x88\x41\x45\x2c\x0b\x6d\x00\x47\x6e\x54\x1a\x47\x8a\xdc\x31\xb4\x08\xa2\xe7\x8b\x87\xf2\x2f\x40\x50\x99\x9c\xf8\x0a\x88\xa4\x91\x76\x4a\xed\xb8\x6c\x2e\x6c\xf3\xcb\xc5\x37\xcd\x4e\x7f\xd1\x8e\x73\xfa\x8e\xef\x58\xf2\xdb\xe8\x57\x0e\x08\x41\xc5\xd3\x9a\x13\xed\x64\xa1\x01\x9d\x11\xa4\xdd\xa0\x13\xfd\xc6\xfd\xc5\xf6\x1b\x99\xc1\x7c\x34\x23\x57\xa0\xc9\x43\x1e\x21\xca\xd0\x22\x83\x48\x36\xaa\xb2\x81\xf4\xfe\xa4\x14\x95\xbf\xfb\x88\x8b\xa4\x69\xd9\x7f\x05\xb1\x6f\xee\x33\xdd\x45\x16\xc6\xb0\x57\xce\x16\x11\x8a\x0a\xf6\xbe\xce\xbb\x7e\x1f\xbe\x49\xbc\xce\xcd\xbf\x56\x62\x61\xd4\xaf\x84\xc5\x46\x8c\x76\x6d\x14\xeb\x82\x4c\x3c\x22\x84\xf2\x2e\xc5\xdf\xe7\xf1\xbe\xd8\xa4\xa4\x06\x8f\x43\x5f\xc5\xb8\xa6\x1b\x17\x95\xaf\x69\x63\xda\x65\xd2\x3e\x56\x4e\x44\x35\xfd\x6e\xc7\x9b\x3d\x1c\x2b\x54\xe2\xf1\x8e\xd5\x94\x51\x27\x7b\x3c\x32\x7a\x73\x20\x69\x30\x34\x78\x0d\x1c\x32\x59\x8a\x76\xc9\x00\x8d\x45\x18\x80\x6f\xf0\x94\x5d\x8a\x1a\xb0\xc2\xb7\x34\xcb\x2d\xa7\x2b\x32\x8b\x1f\xfa\x60\x28\x9f\x98\xf9\x54\xbd\x63\x33\x87\x9a\xcd\x55\x67\xa0\x4c\xf6\x2d\x04\x4c\x0e\x60\xcc\x98\x85\x8e\x74\x1f\xc5\x3a\x38\xda\x48\x29\x5d\x1e\xaa\x7c\x6d\x34\x0c\x8c\xeb\x30\x7f\xc4\x49\x71\x92\x81\xb4\x33\xae\x32\x31\x1c\x43\xbb\xcb\x57\x8b\xfb\x05\x22\x17\xa3\x12\x06\xac\x2b\xda\x06\xa0\xfa\x0a\x74\x1a\xe1\x30\x1e\xf5\x3f\x59\x44\xec\x1c\xae\x71\x18\x2f\x03\x66\x66\x8e\xb1\x1d\x36\xb9\x1d\xf7\x86\x95\x86\x7d\xc7\x1c\x73\x3b\x89\x93\xda\xc3\xed\xdb\x1f\x2a\x21\x73\xcc\x3b\x46\xb9\xad\x07\x66\x2f\xdf\x82\xa9\x1c\x7f\x9f\x23\xf8\x50\xa9\x31\x67\xfd\x70\x26\x86\xe9\xca\x56\xd3\x6b\x11\x8b\x71\xd5\xf4\x74\x3f\xb6\xac\x88\xb9\xc4\x3d\x39\x5a\x1e\x37\x91\xfd\x2f\x96\xab\x2b\x6e\xa1\x17\x64\xa7\x61\xf7\x93\x73\x9d\x43\x0b\x47\x8c\x30\xc2\x94\xa5\x0d\x96\x59\xb3\x6a\x08\x57\x51\xda\xc2\x72\xa2\x0d\xfa\x9f\xf2\x01\xe3\xd2\x39\x72\x8f\x59\x8d\xac\xeb\x46\x2b\xe3\x2a\x40\x61\xaa\xc2\xa4\xf1\x58\x9d\xd6\x90\x04\xd6\x89\xa1\xdf\xeb\xb8\x63\x13\xfe\xf4\xe0\x74\x13\xb9\x46\xa7\x7b\x24\x5d\xaa\xb7\x1c\x36\x25\x7c\xe9\x3b\xdb\xef\x1b\xdb\xad\x39\xce\xa1\x43\xfb\xbd\x29\xb9\xb5\x84\x3e\x74\xb7\x0f\x1b\xb5\xbb\x34\x75\xb9\x3d\xda\x12\x07\x90\x37\x69\x71\xff\xc7\x4f\x7f\x42\x3a\x17\x5c\x9b\xb5\x91\x7d\x0a\xf6\xa9\x1f\xff\xf2\x13\xf1\x74\xf7\x7f\xfc\xec\x27\xce\xfd\x34\x6e\xbf\xdc\xe4\xe7\x66\x21\xb7\x2e\x9a\x4b\x77\x6c\xc5\x44\x5b\xdf\xe0\xd0\x9a\x8b\xb2\xe9\x2d\x52\xc2\xed\x0c\xb4\x78\x99\x26\x8b\xf3\x34\xe6\x57\xda\x31\x8d\x31\x1b\x94\x09\xb9\x90\x74\x20\x63\x6a\x51\x68\xd1\xd3\x09\x6a\x51\xf7\xfb\xa5\x02\xc5\x82\xa2\x7c\x2d\x7f\xe7\x6d\xe8\x5c\x8b\x21\xbc\x75\x8b\x9f\x23\x60\xc1\x5a\x40\x90\x28\x0b\xc0\x81\x56\xe5\xb8\xdc\x7f\x90\x5f\x5f\xf2\x02\x01\x95\x9f\xc3\x70\x8d\xb7\x5e\x25\x1c\xf3\xaa\xb4\x13\xf1\xf6\x62\xe0\x9a\x0f\x68\x9f\xa4\x0d\x3b\xf3\x06\xde\x41\xb1\x4e\x77\x54\x4d\x34\x7f\x7e\xf6\x51\xbb\xd6\x30\xfc\xa4\xc1\xf7\xcc\xf2\xb9\xfd\x1a\x55\x4a\x7b\x1f\x54\x3e\x3e\x84\x12\x7d\x87\x7e\x5f\x4f\xd6\x91\xbd\x02\x90\x23\xba\xfe\x77\x00\x59\xa6\xaa\x5d\x5d\x26\x53\xfc\x7b\xf6\x4c\xb8\x22\xe2\xc4\x37\xdc\x61\x8b\x34\x20\xa6\xbe\x66\x0c\x50\x6d\x95\xdc\x9a\x44\x80\x33\xb1\x48\x0b\x0b\xf7\xb7\x0e\x74\x68\x38\xb3\xa2\x13\x19\x02\x29\xe4\x78\x72\x09\xcf\x09\x28\x3f\x50\x67\xea\x67\x17\x3d\x4a\x3c\x33\x89\xaa\xb8\xf1\xd1\x69\x4d\xb0\x8c\xe2\x27\xe3\xba\x65\xbd\x74\x71\x3e\x2c\x20\x89\x43\x81\x15\xfb\x13\x62\xe4\xd4\x07\xb8\xbc\xee\x89\xe3\x67\x83\xd4\xb3\x5c\x34\xae\x51\x78\x70\x30\x3c\x7e\x95\x1a\xaf\x5d\x06\x0a\x96\x4b\x63\xd4\x48\xa8\x85\x29\x4a\x84\x26\xe4\xed\x4a\xd3\xf3\x39\xd0\x8f\x5c\xde\xdc\xd4\xf3\x0b\xa4\x8a\xd4\x78\x7c\xff\x59\x6e\x76\x39\xed\x72\xa1\x8b\x42\x37\x29\x5e\x37\x55\xa3\xcc\x49\xf6\x04\x43\x8e\xca\xa1\xd2\x26\x5a\x30\xe0\x66\xa5\x34\x1c\x15\xeb\x99\x13\x93\x39\xb9\x25\xa9\x7a\x6c\x55\x52\xaa\x7e\xa2\x41\x75\x9e\x94\x6a\x90\x9a\xcc\xd2\x6b\x47\xa7\xba\x80\xb5\x45\xaa\x49\x57\xc7\xab\x4d\x98\x56\x24\xcb\x54\xca\x76\x33\x41\x02\x81\xce\xd9\xbe\x15\x19\x27\x6b\x5d\xe7\x6d\xd6\x93\xe9\x91\x9d\x46\x43\x26\x7a\xbb\x39\x59\xa5\x3f\x9c\xbb\x03\xd1\xe1\xa5\x38\x8d\xd9\x85\x87\x82\x4c\x6a\x5b\x49\xc0\xcb\x91\xea\x6a\x23\xf4\xf5\xb2\xeb\x4b\x53\x66\x5e\x2a\x05\xa5\x32\xb1\x6c\x5e\x67\x71\x12\xc8\x90\x79\x2a\x1a\x75\x3e\x1c\x6a\x45\x22\xe5\xe2\x41\x6e\xcd\x68\x0e\xf2\xef\x62\x62\x9a\x7a\x25\xab\x30\xfd\x84\x7f\x65\x4e\xa6\x96\x2a\x74\x49\xb4\xc6\xf6\x15\xdd\x48\xa2\xae\x78\x0c\xad\x64\x5d\xaa\x0b\x95\xba\x20\xce\x43\xf5\x6e\x07\xce\x88\xb5\x3c\x32\xee\xe3\x48\x43\x6d\x35\xd8\xd5\x4d\x84\xcd\x7e\x98\xb4\xe4\x61\x7a\x66\x72\xa7\x65\xcd\xa4\x8a\x33\x1b\x4b\xef\x08\x42\x88\x93\x65\x2e\x7e\xa6\xce\x47\x2e\x1b\xa2\x97\x18\xca\xeb\x04\xf3\x32\x32\xe1\x31\x19\x01\x2d\x80\x9f\x3d\x42\x2b\x22\x36\x82\x68\xe2\x27\x3c\xe0\x27\xe0\x25\x0a\xa5\x8f\xff\xc0\x3f\x94\x4a\x2a\x88\x45\x4e\x49\x36\x2b\x92\x1f\xa4\x12\x53\x00\xc1\x00\xb5\x11\x31\xdf\x51\x38\xd9\x5a\x98\x18\x04\xe8\x3a\x3a\xcc\x7f\x4b\x0a\x2f\xf7\xfd\xb3\xf0\xfd\xba\xb7\x39\x48\x97\xa6\x17\x71\xc3\xec\xa1\x2e\x56\xee\x42\x46\xfb\x53\xa3\xdc\xff\xf1\xff\xff\xc9\xfa\xb1\xd8\x93\x62\x07\x96\x4c\xd7\x94\xaf\xc0\x3b\x80\x24\x8b\x77\xf4\xd7\xd1\x8f\xb4\xd2\x40\xd5\x10\x8a\xa0\xa9\xb0\x0b\xa7\xb2\x8f\xfc\x99\xa5\x8a\xde\xf1\x84\x48\xbc\x32\x8d\x8f\x92\x80\x8a\xd1\xde\xa6\x17\x6b\x88\xc1\x7e\x89\xa6\xb3\xd7\x07\x23\xca\x6b\xdc\x8a\xec\x78\xb4\x6b\xa3\x13\x24\x90\x83\x98\x33\xb9\x56\x20\x9d\x56\x51\x7f\x0f\x1e\xde\xed\xf7\x98\x7e\x0c\x81\xf6\x81\xeb\x89\xb8\xec\x9c\x0e\x1b\xdb\xac\x61\xe0\xe1\x5c\x35\x3e\xc7\xdd\x70\x4d\x6c\xd1\x2b\xe8\x82\x3f\x87\x99\x63\xb3\x6d\x25\x61\x60\x20\x98\xb2\xa7\x50\x2a\xce\x12\x1f\x48\xbf\xb0\xd2\x12\x01\x32\xeb\x73\xce\x8b\x53\xb2\x33\xc8\xa6\x2a\xcf\x3b\x9f\x61\x0a\xe7\x12\x49\x27\xf9\x52\x70\xce\x1d\xb1\x0d\x38\x72\xa5\x2f\x6b\xe1\xd2\x69\xc6\xe2\x89\x10\xd3\xa0\xbc\x5e\xb2\x89\x86\xe1\xe4\x2d\xa8\xea\x32\x2b\x66\x66\x2a\x9e\xf1\x76\x64\xf1\x76\x6c\x8e\xed\x28\x67\xba\x1a\xee\x14\x8d\xc3\x86\x8f\xc1\x50\x8f\x55\x95\x7f\x7e\x7c\x24\xee\xce\x6d\x88\x77\xc2\x20\xe2\x23\x66\x5d\x06\x8b\x89\x48\x04\xfd\xe7\x0e\x0e\xd8\xe2\x5b\x66\x90\x24\x58\x55\x7f\x6d\xcd\x90\x11\x29\x3e\xeb\xae\x69\x2a\xf5\x5d\xaf\xfd\x88\xce\x82\x3c\x44\xc6\x94\xc8\x25\xe8\x76\xe4\xf4\xf3\x59\xe9\x6b\x25\x02\xdc\x9c\xe9\xa2\x5d\xfc\x9c\xe6\x22\x1d\x01\x5a\x04\xbd\xd1\x01\x22\xd0\x24\xe4\x54\x79\x8b\x51\xf3\x8f\xfe\xe1\x7e\xf1\x31\x73\x9b\x91\x2f\xdd\xc0\x48\x87\x25\x3b\x8a\xaf\x47\x72\xe0\xb4\xeb\x49\x38\x7b\x29\x03\x2b\x88\x31\x40\xcd\x12\x87\x1b\x09\x2e\x3a\x84\x0d\xc7\x5a\xd6\x48\x05\x98\x28\x31\xa2\x1a\x13\x8a\x9b\xa8\xf4\xb8\xf2\x66\x58\xa9\x88\xa5\x35\x8e\x22\x8c\xa7\xd1\x2c\x8b\x9e\x10\x11\x17\x01\xab\x3e\x9e\xdc\xfc\x56\x55\x92\xdc\xd9\x16\xa2\xe1\x1c\xcc\xc9\xc9\x85\xc3\x71\x52\xa1\x30\x5d\x2a\x71\x2d\xab\x1d\x5d\x8f\x11\x4f\x1e\xaf\x9b\x59\x5a\x8d\xfe\x91\xc4\x6a\x85\xd3\x8d\xda\x79\x3a\x92\xdc\x59\x89\x92\x31\x5c\x59\x51\x45\xe1\x5c\xdf\xd2\xd9\x4f\xb4\xdb\xf3\x09\x83\x72\x5c\xea\x60\x31\x02\x43\xf6\x91\x4b\x96\xf9\xf1\x60\xe9\xc4\x95\x52\x87\xad\x06\xd4\x25\x85\x3e\xc3\x97\x76\xbb\x14\xb4\x59\x48\x76\x4a\x26\x87\xa3\x81\x06\x69\xba\xe6\x19\xd1\x07\x09\xac\x27\xa4\xd2\x86\x1f\xfe\x95\x78\xc4\xd9\x7e\x3f\x2b\x8a\x0f\x35\xc2\x7e\x02\x4a\x9e\x55\x8c\xa1\x75\xc4\x79\xd3\x3b\x3e\x25\xfd\x30\xdb\x1d\xb7\x5e\x45\x2c\xf8\xa0\x5e\xb4\xc5\x0f\x02\x1d\x01\x51\x21\x84\x68\x53\x43\x51\xe0\x09\x63\xf5\x6d\x74\xef\x69\x5a\x2d\x67\xfb\x65\x0f\xc0\xb2\x6d\x47\xeb\x1c\x09\x35\x51\xa1\xf2\xfd\xf1\xf4\x7d\xa4\xc7\x78\xee\x02\xa9\x98\x31\xc6\xee\x44\x8d\x6d\x04\xba\x7a\xc0\x71\xfb\xfc\xbc\x1f\x0c\x70\x4d\x85\x8a\x78\x0e\xc1\x73\x67\xa2\xe6\x71\x97\xad\x64\x26\x47\x5c\xb5\x52\xb2\x54\x3a\xb1\x43\xce\x51\xec\xb1\xf5\xfd\xa4\x83\xcf\xd4\x7c\xa6\x50\xe8\xb8\xb4\x71\x2c\xf1\xbc\xfb\x3e\x97\x33\x64\x35\xd3\x6c\x52\x14\x65\x23\x23\x88\x39\x76\x46\xd0\x2d\xaa\xb6\x6b\x9a\x73\x8b\x08\x37\xfe\x23\x2a\xd8\x96\x9d\x94\x21\xb7\xf2\xb3\x41\x21\x62\xee\xd6\x21\xc1\xfd\x53\x70\x23\xe6\xc8\x1c\x0b\x08\x3d\xed\xf2\x5a\x4c\x0d\x02\x1d\xfc\x88\xaa\x70\x94\xdd\xeb\x90\x06\x30\x04\xdc\xf9\x2a\x1a\xb3\x34\x0d\x91\xcc\x06\x79\x3b\x00\x40\x22\x7a\x60\x62\x7c\x47\x20\x9c\xf3\xe3\x29\xf2\x96\x5d\x79\x90\x7e\x15\x71\x86\xfc\x11\x61\x71\x92\x18\x3e\x71\xb3\x59\x19\x9a\xab\x24\x35\xf0\x23\x76\x24\xab\xd8\x8d\xd7\x7d\xc4\xf1\xc5\x13\xb5\x04\x37\x23\x03\x6a\x31\xb4\xe0\x62\x50\x11\x00\x25\x54\x27\x44\x17\x47\xd9\x94\x92\x80\x68\x8d\x83\x27\xc9\x57\x52\xfb\x7d\xc3\x89\x2b\x25\xc5\x5e\x34\x05\x7e\x4e\x81\x73\x19\x80\x9d\xb5\xe2\x89\xc2\xb1\xe3\xad\x46\x5e\x00\xff\xbb\x9b\x3f\x90\x62\x19\xfe\x57\x71\xba\xb5\xd1\x75\xbe\x0f\xd7\x39\x7b\x9f\xc5\x23\xa9\x2a\x21\x6a\x13\x79\xab\xa7\x95\x04\x1e\x92\x57\x6a\x08\x89\x10\xb8\x5d\xc2\x3b\xd4\xe9\x26\x55\x19\xf9\xbd\xd9\xba\xbc\x3c\x3e\xc8\x9e\x24\xea\x95\xd9\xf5\x1d\x2d\x6e\x6a\x8b\x38\x65\x30\x9d\xc4\xe5\xa7\x8b\x59\xc6\xb9\xcc\x5a\x2b\xac\x89\xb8\xb1\x82\x42\x56\x1a\xda\x2f\x59\xac\x1d\x68\xe2\x44\x07\x04\xef\xa2\xbc\x28\x0b\x0e\x30\x6b\x93\xdc\x08\xb7\x0e\xfa\x97\x23\x83\xd2\x8c\xd9\x3b\xec\xb6\x31\x87\x3b\x6e\x85\x4d\xa2\x2d\x97\xb0\x7b\x4d\xf6\x24\xf5\x57\xc7\x66\x02\xc2\xa6\xda\x28\x01\x18\x81\x94\xef\x8a\x90\x76\x6b\xc0\x94\x95\x41\x8e\x0a\x8c\xf4\x75\x1f\xe7\x0b\xfa\x7c\xbc\xa7\x09\x98\x25\x80\xdf\x37\xfe\x3b\x7d\x3d\xc7\xe8\x95\xc2\x35\x99\xa0\xa7\xec\x38\xd2\xb9\x8d\x23\xc0\xd2\x9c\xf1\xd8\xf0\x95\x04\x2e\x95\xe2\x80\x3c\xf4\x4f\x3d\xa1\xdd\x3e\xaf\x7a\x5b\x5e\x88\xef\x2e\xcb\x6b\x27\x7a\x1b\x9c\x44\xea\x79\xde\x0f\xe7\x87\x2b\xa9\x63\x59\x36\xf3\x11\xbb\xb7\xac\x80\x1d\x79\x00\x2c\x7f\x0e\x64\xcf\xe3\xb8\x95\x81\x8f\xc4\x89\x4b\xb6\xcc\xc2\x3b\xa7\xc1\x70\xda\xb6\xd8\x2b\x11\xa9\x2e\x76\x02\xd0\x77\x8d\xff\x97\xf1\xf8\xe2\x3d\x39\x1e\xba\xc0\x1e\xea\xf8\x42\x05\x48\xc0\x41\xc2\x8b\x68\xe4\xc8\x19\xff\xd6\x61\x3f\x93\xc3\x1f\xb7\x74\x19\xe4\x34\x97\x61\x66\xd9\xb1\x5d\x87\x65\x2e\x4e\x33\x3b\x14\x43\x0f\x49\x49\xa1\x98\x90\xd2\x38\x22\x1d\x81\x6e\xc1\x01\x7f\x7e\xfc\xa2\x89\xd2\x7b\x79\xbf\x3a\x77\xdb\x0e\x63\x62\xc7\xc7\x4c\x54\xe1\x22\x97\x04\x85\xb8\xaf\xb7\xcf\xcf\x49\xe6\x70\xb7\xc6\x3b\xae\x0b\xf1\xb6\x67\xb5\x43\xe2\x57\x37\xe2\x3d\xa3\x7e\xe6\x09\x43\x10\x3b\x48\x47\xda\x5d\x5f\x03\xd1\x32\x81\x6d\x68\x5a\x24\x3a\x54\xfe\xb4\x1d\x44\x69\x1d\x6b\x12\x18\x9c\x61\x53\x0d\xbf\x89\xda\xb6\x66\xdf\x70\x56\xdb\x77\x34\x77\xf8\x13\x6f\x12\xb2\xdb\x94\x9c\x83\x64\x29\xc9\x2f\x17\x49\x62\x1a\xf1\x9b\x8b\x52\x27\xed\x5d\x6e\x12\xef\x64\xae\x26\xcd\xca\x66\xc7\xa6\x3a\x81\x1c\x58\xee\xa5\xf0\x4a\x8e\x67\x3a\x02\x18\xe6\x9d\xdc\x95\x26\xcc\x95\x86\x6a\x80\x98\xf2\x1b\x36\x27\x24\xe9\x76\x1c\x38\xa3\x89\xe6\x41\x4e\x4b\xa6\xba\xf1\xcd\x63\x3a\x10\x2e\x90\x59\xa4\x98\x81\x87\xaf\xe6\xa5\x49\x10\x1c\x81\xcb\x92\x9c\x54\xdf\x89\xe0\x58\xa6\xc2\xf9\x34\xd6\xd9\x9b\xd7\x67\x6f\xbd\xde\x20\xd7\x63\x96\xfb\xb4\x40\xb5\x3c\x08\x91\x3d\x6e\x99\x43\x13\x8f\xb7\x12\x76\x33\x48\x1b\xed\xed\x8e\x73\x7e\x85\xfc\xdc\x8e\x46\xfc\x79\x50\x28\xc0\x82\x4d\xc0\x41\x2e\x0e\x47\x3b\x56\xf9\x38\x07\xef\x07\x7d\x2f\xee\x5d\xd4\x65\x24\xb2\x38\x7e\x0b\x11\xb0\x17\xe2\x42\xf5\x6e\x56\xfe\xf8\xf4\x1c\xc2\xba\x35\xdd\x12\x70\x31\xee\x66\xee\x94\x3a\xa7\xf5\xa6\xe5\xc7\xc6\x26\x6a\x58\xe2\x5f\x2d\xb1\x50\xb8\x11\x35\x7f\xfb\x44\x3d\x11\x15\xd9\x31\x73\x23\x3a\xa6\x89\x4a\x07\x49\xc9\xb7\x40\x0a\x7e\x50\xb9\xa9\x3a\xab\xa6\xb8\xf2\xf1\x8b\x23\x69\x40\x9f\x3e\x72\x22\x41\xfc\x30\x01\x7d\x74\xf9\x8c\x84\x5d\xdc\x1a\x91\x81\xd3\x80\xf9\xe0\x41\x2e\x09\x27\x43\xa6\x70\xfa\x24\x9d\xba\x6c\x4e\x1c\x81\xd6\x73\xc8\x5a\x10\x94\x99\x0b\x31\xd8\xe1\xe8\x9e\x17\x06\xe5\xba\x5f\xb1\x2b\xda\x7c\x3c\x71\xb6\x78\x45\x1c\x26\x08\x04\x06\xa3\xb1\x38\x77\xa4\x5e\xa4\x12\xa4\xd2\xfa\x67\x08\x4a\x89\x3d\x5d\xb9\x54\x3e\x2f\x72\x58\x3a\x0a\x6f\x00\x57\xff\x44\x55\xe4\x71\x87\x9c\x3a\x23\x64\xfb\x9f\x9a\x0b\x87\x76\xa0\xb2\x06\x75\x8c\x2a\x78\x43\x3c\xea\x8c\xf6\x42\x6f\x28\xad\xcc\x09\x0e\xbc\x86\x16\x2d\xa6\xe9\x55\xf4\x68\x95\x12\x07\xa1\x0b\xa2\xed\x07\x75\x50\x65\x7f\x4c\x24\xb0\x5d\xb2\x01\xb4\x15\x3b\x76\xea\x84\x37\x34\xb8\xa8\x47\xa6\x43\xaa\x02\x8d\x83\x26\x02\x5e\xbb\x34\x1e\x8f\x69\xf3\xb7\x6c\x13\x8a\x77\x9e\x5f\xba\xc8\x25\x51\x83\x73\x3e\xb6\xc2\x44\x6d\x54\x7d\xd3\x87\x0b\x5f\x73\x0b\x7f\xf4\xd7\xb3\xd7\xaf\x4e\x74\x8e\xbf\xce\x2e\x2f\x2f\x67\xa8\x3c\xeb\x5b\x42\x70\x7c\x2c\x74\xd2\x27\x78\x92\xe4\x4b\xd3\xad\xbf\xf8\x84\xfe\xfd\x78\x4e\xf2\x3d\xd1\xaf\x94\x04\x6c\x24\x37\x22\x07\x96\xed\xff\x0c\x41\xd3\x63\xc4\x8f\xcb\x24\x59\x2e\xe3\xbb\x16\x1b\x28\xee\x4c\xb2\x81\xe2\x2a\x1f\x44\x5e\xb3\x6e\x69\xec\x33\xfe\x27\xfe\x5e\xe5\xeb\xf3\xe9\x2c\x2f\xa3\x5a\x25\x0d\xc3\x93\x78\x4e\x7f\x64\xe9\x0c\xa4\x86\x18\x94\xd5\x94\xec\xcb\xcc\x85\xa9\xfd\x61\x60\x27\xf0\xb0\x65\xca\x62\x39\xb3\x98\x23\x6b\x24\x13\x8b\x6a\xfa\xab\x51\x3f\xec\x12\xdc\xd4\xd5\x15\x91\x15\x79\xed\x48\xb6\x0b\xdf\x1d\x4a\xb9\xfe\xe7\xa3\xd6\x9c\x3c\x97\xfe\x6c\xaf\xd8\x54\x48\x4b\xd9\xa9\x37\xb7\xf1\xb2\x01\xf3\xef\x71\x90\xd2\xa0\x0f\xc9\xea\xb2\xc0\xe1\x24\xd4\xe4\x80\x1c\x17\x2c\x22\x5c\x7f\x19\x3a\x9d\x68\x2d\x2a\xd0\xc7\x41\xed\x39\x59\x41\x43\x67\xd8\x1c\xf9\xc9\xdb\x7c\xeb\x55\x7c\x93\x00\x59\xbc\xa1\xff\x4d\x83\xca\x51\xd0\x0c\xbf\xbc\x8c\x9f\x3c\x77\x18\xce\x2f\xa7\x93\x96\xa4\x37\xa3\xcf\xce\xd8\xe0\x80\x5b\xe8\x89\x54\x9a\x1c\x3f\x0d\xe3\x04\x4a\x91\x7c\xa2\x4d\x15\xc1\xba\x63\xca\x37\x64\x74\x98\x6a\x0c\xef\xb7\x23\xbc\x9c\xd2\xa4\x21\x6f\x34\xc8\x91\x33\xac\x3e\x39\xc2\x64\xba\x99\xa1\xe0\x30\x1c\x68\x42\xab\x20\x2e\x70\xb8\xa9\x4b\xa4\xea\x33\x76\xa1\xa9\x0a\xe1\x7f\x38\xa1\xa7\xe2\xc9\xf0\x81\x65\x3a\xfe\x36\x39\xae\x80\x87\x1c\xa9\x40\x4b\x9f\x70\xaa\xa4\xc4\xa7\xe4\x0c\x55\x40\x2e\x38\xfa\x67\x1b\xa4\xe4\x31\xc3\xc6\x80\x9c\x8f\x4e\x6c\x14\x7a\x3b\x2a\x1b\xbc\xfa\x35\x3c\xeb\x3b\x22\xb4\xf0\x66\xce\xeb\xbc\x4a\x20\x76\xa8\x9a\x2b\xc9\x87\xf1\x88\xff\x9e\x7d\x4d\x7f\x0f\x16\x17\x6a\x45\x95\x8e\xf0\xb6\x1c\xb1\x10\x75\xaa\x19\xc4\x83\x7f\x58\xa6\x5d\x0c\x93\x3c\x84\x54\x1d\x41\xbc\x89\xed\x0a\x13\x73\x1e\xa5\x54\xf0\x75\xd2\x2c\x11\xe3\x11\x27\x52\x42\xc4\x4d\xd3\xbc\x10\xe3\xe6\x5e\x53\xb0\xbf\x25\x19\x44\x02\xc2\x38\xd1\x03\xbf\x70\x38\xea\xf3\xfd\x32\x3d\x4c\x41\xc1\xf3\xce\xd1\xe6\x4c\x6a\xd2\x46\x2d\x04\x57\x5f\x8d\x75\x03\xca\x46\x47\x28\xe1\x28\x47\xc4\x46\x87\x70\xe5\x60\x9d\x8d\x90\x38\x0a\xca\x76\xf9\xa5\x24\x1c\x2a\x75\xc3\x99\x0e\x80\xbd\x75\xd6\x01\x90\x7e\xbd\xef\xf2\xcd\x29\x68\x9e\xf3\x55\xdb\x5c\x5a\x24\x41\xe8\xdb\xb5\x59\xf0\x4b\x55\x9c\xed\xbc\xf0\x51\x0c\xb5\xd6\x84\x3b\x0a\xe1\xd5\xb7\xad\x3d\x88\x03\x13\x7f\x15\x17\x05\xf5\x50\xd0\x6f\x6c\xa9\x4f\xdf\xbc\x11\xef\x97\x47\x54\x3a\x13\xbb\x7d\xe2\xfd\xc2\xad\xec\xae\xb9\x5c\xe2\x2f\x4e\xec\x80\xec\x05\x54\x99\x18\xcb\x0e\x68\x74\x8e\x67\x97\x8c\x18\xb8\xa4\x36\xea\xc8\x5e\xb9\x6b\x2f\x63\x4b\xa4\x3a\x42\x78\xb6\x39\xe8\xc8\xd8\x8f\x4f\x7f\x50\x55\x89\x86\xfd\x81\x79\xff\x50\x29\x0e\xf9\xe5\xfe\x14\x62\xe3\xaa\x0e\x80\x44\x61\x1e\x3c\x7f\xa5\xbf\x38\xac\x44\xde\xb7\xe5\x94\x65\x61\xd6\x3e\x72\x65\xee\x23\x58\xbe\xd1\x3f\x42\x91\x04\x1d\xf1\xdf\xfe\x69\x60\xfe\x15\xaa\x14\x6d\xbe\xe9\x10\x94\x4f\xdb\xbb\x09\x9f\x0f\x24\x74\x6a\xc3\x37\xad\x99\x8d\x9a\x11\xbc\xb0\x0f\x8f\xeb\xe2\xc2\x3d\xe3\xec\x8a\xd8\xca\x16\x5b\xd6\x5c\x41\x0e\x21\x69\x11\xa0\x11\xa0\xe4\xac\xfb\x44\xa9\xef\xf3\x23\x8b\xfe\xec\x8f\x07\x66\xcc\x92\x4c\xfb\x8c\x5e\x08\x61\x0c\xc5\x5d\xbe\xd5\xc4\x0a\xf9\xd6\xc7\x6c\xbb\x22\x66\x37\xe1\x62\x94\xd6\x1f\x85\xc9\xf2\x5e\x5a\x44\x27\xa9\xa2\x3f\x72\x07\xe3\xaf\x1c\xe0\x96\x06\x0c\x69\xfa\xe9\x64\x4b\x54\xc3\xab\x6b\x98\x29\x95\x75\x95\x1c\x93\x7a\x49\x82\xc4\x72\xef\x13\xed\xa8\x7b\x68\xb8\xd4\x10\xb8\x56\x34\x97\xea\x17\xe9\x5a\x5f\xb6\x30\xda\x9c\x89\x0d\x32\x86\x32\xbb\x4b\x9b\x4b\x78\x4b\x23\x9d\x6b\x3f\x1e\x30\x8e\xc4\x70\x1d\x10\x11\xc4\x42\xa1\xeb\x08\x0d\xc0\x59\x83\x29\x7c\x81\xac\x79\xff\xfe\xdf\xff\xcf\x14\x7a\x4c\xe5\x2e\x89\x30\x66\xf6\xdd\x10\x3d\xa2\xa6\x0e\xf0\x65\xeb\x02\xf6\x6b\x67\x04\x22\x9a\x7c\x69\x4a\x6b\x5c\x2e\x5f\xa5\x96\xda\xab\x12\x3e\xff\xdc\xd7\x41\x9f\xef\xbb\x30\x92\x19\x15\xcf\xe3\x6e\x4d\x91\xab\xc5\x22\xda\x19\xce\xb0\x69\x77\x6e\x4f\x38\x48\x3b\xde\xc4\x08\xd1\xf0\xe4\x53\x72\x3a\x62\x33\x57\x8c\xec\xfe\x88\xb9\x4e\xa7\x90\xdf\x21\xe6\x32\xaf\x10\x68\x7d\xa5\x89\x65\x1f\xb3\x45\x47\x9a\x45\x57\x1e\x33\xb8\x13\x17\xde\xdd\x3b\x3f\x36\xed\xf6\xa7\x28\x59\xb9\xee\x23\x47\x2d\x17\x83\xb4\xbf\x71\xb5\x28\x5d\x81\xdc\xa7\xd0\x19\x0c\x5e\xec\xf6\x69\x0b\xc4\x09\x32\x64\x2e\x98\xfb\x30\xc6\xe1\x3b\xdf\xe9\xbb\x43\x87\x66\x29\xac\x65\x11\x8b\xc5\x70\xde\x32\xcd\x01\xd9\x39\xa9\xb6\xd8\x49\xcb\xfa\x02\x0f\x12\xdb\x66\x6f\x60\x98\x0c\x39\xb1\xcb\x5a\x73\x45\x22\xb9\xb9\xe5\xc4\xe6\x16\x89\x3f\x2f\xf9\x81\x1d\xa8\x1a\x59\x3b\xc9\xda\x44\x28\x73\xa5\xe4\x96\x54\xb7\x51\xfc\x25\xba\x54\x3a\x88\x7e\xe3\xb9\x03\x50\x13\xbe\x14\xe3\x0c\xeb\xfa\xed\xb6\xba\x0e\xd8\xdf\x29\xef\xe3\x84\x39\x86\xbb\x5a\x71\x42\xe2\x4f\xeb\x66\xc3\xc6\x1c\x6f\xd5\xf4\xa3\xf8\x53\x92\xcb\x33\xa9\xc6\x26\x88\x82\x96\xe8\x09\xc6\xd2\xaf\xb4\x19\x22\x0e\x49\x98\xf4\xdc\x87\x4a\x99\x0f\xa2\xd4\x50\xd6\x76\xfd\x46\xa4\x4d\x96\x19\xb9\x1f\x76\xbd\xf8\xea\x48\x88\xfc\x38\x15\xfe\xdf\x1f\x24\x9f\xf4\x25\x39\x33\xde\x2b\x50\xfe\xcf\x18\xe4\xdf\x91\x6c\x36\x56\xc4\x0d\xb2\xce\xfa\xa2\x89\xf4\xb3\x7f\xc2\x40\x9e\xb6\xf0\x1c\x57\x02\x9b\xc4\xa8\x3f\x08\x00\x1a\x5a\xda\x09\x85\xff\x4c\xc6\xd9\x94\x74\x24\x09\x67\x87\x53\x1e\x64\x2e\xd5\x47\x47\xa3\x94\xa5\xde\x1f\x26\xe9\xf2\x9d\x39\x76\x87\x66\xeb\xa4\xf5\x71\xc3\xb5\xcb\x35\x33\x91\xa1\xfc\x78\xa3\x00\xa5\xc1\x24\x59\x07\xe9\xad\x8f\x9e\x61\x93\x94\xe6\x7f\x22\x41\xce\x11\x43\xd0\x44\xa6\x9c\xe1\x54\x41\x9b\x34\x84\xe9\xfd\xd6\xe6\x89\xd9\x04\x44\x8e\xad\x6f\x90\x33\x67\x5a\x52\x88\x74\xd0\x22\x7d\x7b\x45\x1d\xcb\x50\x92\x6d\x8c\x37\x3f\xd6\x1d\x05\x08\xc5\x6f\x84\xab\x32\x64\x88\x74\x5e\x23\x12\x12\xc2\x2b\xd9\x97\xbb\x7b\x1d\x67\xc5\x1e\x96\x39\x5a\x29\xc9\x6e\x32\xec\x00\x7b\x26\xb9\x4a\x62\x45\xd5\xe2\xd1\x77\xd7\x3a\x1a\x60\xd4\xc5\x30\xb8\xc6\x7d\x57\x2b\x98\xbb\x99\x42\x01\xed\xf6\xda\x48\x3e\xb8\x15\xc8\x63\xd4\x97\x18\xe0\x5c\x42\xac\xb8\x84\xf8\x01\x2a\xe0\x08\x73\x75\x3f\xd4\x02\xbd\x36\xf5\xf6\x89\xf2\xa1\xfb\x24\xbc\x7c\xbf\x20\x71\x17\x4c\x6b\xc2\xc7\xfa\x87\x01\x4a\x7e\xcd\x93\x35\xf5\x7c\xc9\x7e\x3e\xea\x18\x4f\xcb\xc9\x2b\x72\xe1\x22\xd6\xab\x78\x8e\x1c\xf3\x34\x68\x29\xc1\x3e\xee\xeb\x68\xaa\xf2\x19\x3c\x8e\xa6\x7c\x5b\xbc\xa0\x8d\xbe\x16\x39\x76\xa2\x38\xc9\x58\xa2\x17\x11\x23\x69\x8c\x2c\x92\xc1\xdc\xc5\x91\x71\x66\x05\x97\x61\x63\xee\xfa\x64\x8e\xd8\x8d\xa9\x7c\xed\x60\xd8\xb8\xca\xd1\x71\x8b\x32\x7d\x25\x32\x1d\x1c\x8a\xc5\xc4\xf0\x11\xde\x16\x1d\xcd\x48\x5e\xfb\xd4\x19\xb1\x47\xd0\x60\x3e\x71\x85\xa3\xf3\x81\xff\xb0\x44\x64\x40\x63\xe9\x7c\x8a\x3c\x89\x8d\xc1\x14\xde\xb2\x4f\x0c\xb8\xba\x95\xa3\xf9\xb9\xd4\x17\xf1\x90\x60\x31\xce\x27\x52\x61\x48\x8b\x63\x17\xb0\x94\xf2\xe1\xb0\x23\xf6\xc3\xbb\xc3\xc8\xf4\x26\xb2\xe3\xc5\xd4\x22\x5e\xd0\xb4\x1c\x2d\xaf\x51\x09\x1c\x42\x0d\x07\x90\x01\xc1\xf3\x8b\x75\xcc\x23\x56\xb9\x8f\x18\x48\x29\xbd\xfd\xfa\x1e\xe8\x51\xa5\x89\xcb\x06\x07\xa6\x32\x86\x60\xa0\xcb\x6e\x93\x0b\x79\xa9\x47\x69\x44\x3c\x81\x54\xc3\x37\xea\x57\xc9\xfe\x64\xb7\x71\xb5\xd1\x2e\x32\xe2\xbc\x07\x6d\xcf\x02\x2b\x1d\xf3\xa2\x36\xf8\x5f\x79\xc5\x12\x98\xd9\x12\x8f\x0b\x30\xaa\xab\xc7\xd4\x75\xef\x5f\xde\x48\xde\xff\x98\x9a\xa4\x63\x17\x78\x82\x7e\x6e\x09\x45\x18\x62\x4e\xbc\x24\x97\x68\xd1\x61\x41\x44\x55\x3c\x12\x7c\x1e\xaf\xc7\x65\xe0\x41\xeb\xd9\xf1\x03\x2d\xd4\x64\x40\x45\xfe\x96\x89\xa4\xa4\xe6\x4f\xcd\xe5\x16\xe2\x32\x20\x2a\x93\x13\x9c\x9e\x5f\x4c\x78\xa6\x67\x97\xec\xbc\x9b\x2a\xc8\x0e\xae\x13\x10\x1d\x6f\xc0\x57\x81\xe3\x88\x63\xca\x3c\x6c\x66\x24\x8e\xa5\x6b\x86\xe6\x7b\x70\x2e\x7c\xed\xab\x61\xdd\xa9\xe3\xa1\x6e\x2b\xec\x30\x19\x5d\x9d\xa1\xcf\x9a\x20\xf7\x2b\x47\xbe\x77\x3e\x35\x4f\x44\x54\x7c\xe6\x25\xbc\xbc\x19\xba\x0f\x47\xe4\x64\xf4\x30\x93\x4b\xb4\xda\x46\x6f\x07\x19\x75\x7d\x12\xa1\x9c\x37\x85\xc4\x72\xff\x9c\x71\x78\xc6\x58\xde\x82\xb2\xfe\xba\x66\x59\x93\xc8\xd3\xb5\xbe\x1b\x32\x7c\x25\x64\x5a\x94\x05\xd8\x72\x7d\x03\x47\x85\x90\xd1\x93\x38\x9a\x84\x71\xbb\x48\x1e\xa0\x46\x86\x23\xf6\xf2\x5a\x9c\x5d\xd1\xfc\xf7\xb3\x97\x58\x4c\xe9\x28\xf7\xbe\xa9\x4b\xf6\x35\x92\x7f\x4b\x74\xb3\x81\x63\x24\x09\x6e\x5b\x35\xcb\x69\xc2\x5e\xfe\xf0\x82\x8d\x38\xc8\x61\xda\x11\x57\xf3\x16\xff\xff\x3c\xbb\xcf\xaf\x97\xf8\xc5\xb3\x36\x15\x20\x5c\x2f\xbc\xc2\x35\x2e\x6e\x1c\x86\x43\x50\xf3\xc8\x9e\x74\xc0\x53\x65\xcd\x6d\x1f\x26\x2e\x53\x64\x25\x2e\xf2\xd7\x4d\x8c\xb7\x84\xff\xce\xe2\x69\xf3\xf4\x2c\xf3\x6f\x8f\xf3\x95\x86\xb7\x53\x0b\x7e\xbf\xd6\xed\xc3\x49\xf4\x2d\xdd\x83\xb8\x24\x71\xfc\x8b\x73\x84\x87\x2a\xd1\x1e\x9d\x24\xe3\x48\x72\x2a\xcd\xc3\x1b\x0a\x42\x8a\xaa\xf4\xfb\xe9\xf9\x78\x78\xa7\xfe\x8f\xbf\x39\x8f\xc7\xf0\x25\xf8\x3e\xc6\x5f\xd3\xac\xc3\x71\xc9\x13\x75\x32\x8d\xbf\x69\xfa\xb7\x74\x61\xa2\x4f\x8e\xbf\xbd\x68\xb6\x65\x3d\x63\xc5\x6b\xda\xa7\x93\x04\x92\x95\x7a\x0f\xfc\xa4\x0b\x8e\x29\x8e\xbf\xb0\x9f\xc5\xdb\xdc\xa6\xad\x99\x1c\x0d\x00\xe4\x6e\x61\x7e\x5f\x76\xd4\xe2\xb4\x66\x0f\x4b\x18\x99\x27\x90\x4d\x84\xff\xa0\x28\x73\xdf\xa7\x2b\xcb\xfb\xe4\x8b\x33\xfe\x67\xba\x0a\xcd\x82\x0e\xa1\xf5\xc1\x5f\xa1\x0e\xa2\x68\x10\x01\xc6\xe9\x93\x1b\xce\xec\x87\xed\x16\x07\x57\xe2\x4f\x70\x74\xad\xa8\x4d\x34\xca\xe6\xb6\xb6\x41\xd0\x06\xf1\x89\x3a\xaa\xa5\xa7\x99\xcb\x78\x2b\xb1\x1c\x41\x64\x8d\xbb\xd5\x9b\xb8\xac\x87\x4f\xb8\xda\x85\xfa\xe0\xf8\xfc\xd4\x51\x32\xd6\xf7\x68\x9e\xce\xce\xf5\x55\xbb\xce\x26\x03\x4c\x6e\x99\x20\x2b\x11\x91\xf8\x8a\x3a\xd1\x3e\x23\xd7\xcf\x53\x29\xb8\x6d\x8a\x49\x07\xe9\xe4\x26\x3a\xba\x15\x66\xdb\xb2\x5b\x6e\xd7\xfa\x84\xfb\x13\xde\xe6\xec\x29\x5d\x7c\x88\x16\x78\x08\x2e\x76\xed\x03\x27\x93\x3b\x3d\x4f\xa9\x53\xdc\x8d\x9f\xd0\x44\x3f\x6a\x79\xd7\x6c\xa6\x83\xbc\xa2\x89\xda\x04\x62\xb2\x44\x4f\x26\xf3\x6d\x8d\xbd\xaa\xd7\xd0\xb2\xe1\x09\x06\x36\x0e\xb3\xbf\x9d\x75\x4a\xfe\x0f\xe7\xf4\xfd\x13\x49\x10\x56\x5e\x1b\xb6\x99\xda\x0f\xf5\x39\x9c\x8f\xbe\xcf\x39\x2d\xf3\xe7\x19\x8c\x91\x22\xcb\xfb\x88\x25\x76\x5c\x12\xb3\xa4\xa4\x2b\x14\x9b\x1b\x5e\xae\x47\x52\xcd\xdb\xe6\x90\xee\x41\xfa\x86\x80\x98\x3d\xc7\x28\x42\x82\xab\x44\x01\xd2\xda\x45\xa1\x38\x39\x42\xe4\xc7\x30\x5c\x2a\x8b\x12\xe2\xcf\x96\xf8\x22\x03\x96\x1f\xf9\xc4\x9a\xea\x98\x21\xe1\x27\x3e\x43\xa4\xcb\x95\x17\xdd\xa2\x1a\x6b\xd5\x1d\x5b\x6b\x3c\x93\x24\x61\xba\x4c\x41\xbc\xb4\x92\x49\xb0\xb2\xfd\x96\x35\x67\x78\x07\xc7\xe5\x7d\x0e\x37\x1d\xe7\xbd\xa4\xe1\xba\x12\x6f\x20\xf0\xaf\xd9\xb7\xfc\x2b\x21\x22\x3d\xa2\xcb\x08\xed\x9a\xb6\xe9\x49\xa2\x31\xfe\x1d\x1e\xda\x49\xfd\x64\xa7\x1a\x90\x8c\x42\xc7\x63\xd9\x73\xaa\x38\xdf\xc6\xe7\xd3\xa0\x9b\x53\x6c\xb5\xbe\x21\xf3\x01\xae\x19\xf4\xbb\x6b\x56\xff\xd3\xc5\x65\xc0\x65\x80\x43\x7c\x6a\x6c\xbe\xef\x9c\x0a\x34\x6e\xac\xcd\x9a\x55\x97\xd3\x84\x90\x13\x51\xfc\xcf\xe0\x02\x38\x51\xfd\xd0\x70\x96\xd7\x65\x45\x30\xed\x0f\x4b\x2c\xda\x2e\xde\xc8\x47\xba\x99\xf0\x31\x7b\x8b\x8f\x13\x63\xb8\xa9\x69\xab\x97\xfc\x35\x3b\xd5\xaf\x47\x9b\x21\x53\x4a\xda\xe4\x09\x7d\x19\x57\x77\xf0\xdb\x99\xfc\x30\x84\xde\x33\xfa\x36\xa3\x8b\x02\x4c\xd4\x00\x7a\x5c\x7d\x08\x05\x13\xa0\xc0\x4d\x65\xe0\x63\xcd\xca\x82\x24\x44\x3c\x1c\xcf\x3e\x92\xef\xd9\x86\xbd\x36\x16\x7f\x53\x1b\x35\x64\x15\x8b\x0d\xfc\x9d\xfc\x6b\xa6\xb7\xb5\x6c\x56\xff\x44\xa4\xcd\x2e\xb8\xce\x6b\xfa\x71\xde\x25\x58\xba\x6a\x9a\x0e\x69\xa6\x0f\x60\xf4\xd8\xed\x0e\x70\x7b\xe0\xbe\x82\xd1\x5b\x9f\x1f\x81\x9c\xb4\xb8\x05\x74\xd2\x78\x3c\xb3\x3d\xf2\xdb\xd2\x80\x6d\xbf\xee\x7a\x3a\xc1\x3a\xea\xcb\x33\xfa\x3c\x3b\xf3\x9f\x8f\x0c\x3b\x6a\x3d\x1e\x3a\x1b\x76\x95\xb4\x5f\x43\xa1\x38\x31\xfc\x43\x7c\x7f\x8f\xf1\x47\xed\xa7\x26\x30\xec\x2c\x39\x44\xfc\xe0\x1d\x2c\x0e\xab\x7e\x7d\x6e\x3a\xc4\xa0\xed\x96\x6c\xce\x0f\x7d\xbd\x71\x95\xb2\x07\x5c\x09\x99\x7d\x76\xd9\x5b\x54\xca\x5e\x6b\xa5\xe4\x8a\x5b\xd3\x56\x74\x39\x7b\x6a\x4c\x4c\xe8\xe9\x43\xda\x08\x29\x4e\x58\x29\x12\x60\xda\xa5\xf2\xfa\x7a\x40\xc1\x58\xf9\x1e\xf4\x89\xac\xd0\x91\x4a\x02\x38\xb6\xe7\x08\x58\x48\x39\x00\x24\x02\x93\x9b\x76\x7d\x45\x6c\xd4\x42\x1f\x39\x05\x09\x7a\x38\xfb\xe1\x0a\xd1\x43\x71\x75\x16\x6a\xa8\x3a\x93\x52\x76\x3a\x10\x0f\xb5\xfd\x74\x75\xa1\x74\xae\xfe\x96\x89\x1a\x2f\xed\x07\x0e\xe9\x9c\xa8\x78\xc8\x71\xca\xa2\x9a\x6f\xf0\x61\x6a\x0a\x52\x53\x1d\xe4\xa6\x2a\xea\xb0\xc4\x37\x3c\x24\xbe\xf7\xbc\x73\x8f\x64\x6b\x2c\x86\xbe\xb1\x41\x78\x67\xaa\x48\xd2\x94\x1a\xfc\xdc\x9e\x5a\x19\xc4\xfa\x29\xb9\xf3\x23\xf3\xa7\x56\x74\x0c\xb2\xfb\xe0\x98\xbd\xc2\xbf\xfb\xd7\xf9\xa2\x38\xf3\x94\x7c\x12\x3e\x29\x11\x59\xa5\x40\x13\xfb\x2d\xe4\x89\x23\xdf\x05\xfb\x9e\xfa\x77\xfc\x21\xa5\x6e\xae\xe8\x4a\x93\xd4\xb5\xd1\x63\xfe\x76\x35\x78\x40\x0d\xae\xd1\x53\x8b\x8c\xbd\xbf\x38\x70\xcf\x3d\x2f\xf0\x8e\x28\xf1\xb9\xeb\x64\x94\x97\x49\xd7\xca\x4c\xb8\xb8\x34\x8d\x5f\xcb\xff\x85\xa9\xbc\xab\xcb\x69\xa7\x25\xe3\x74\xd2\xbc\x82\xe0\x24\x22\xc8\xa8\x8b\x19\x4b\x55\x75\x1d\x41\xde\x3f\x84\xa7\x5a\xe1\x17\x78\x56\x5f\x54\xec\xec\x80\x8f\x80\x32\x9f\x60\x5e\x52\x57\x70\xa1\x5f\xca\x91\x27\x2f\x79\xe7\x0f\xef\xf9\xe6\x65\x00\xca\xe0\xc9\x89\xd5\x08\x44\xa5\x5d\x06\x64\x79\x14\xbf\xd0\x00\x5b\x6e\x3e\xc4\x1e\x54\x67\x04\x4a\xaa\x42\x50\x4f\x1e\x1f\x90\xe8\x3d\x0f\x47\x58\x8f\xe1\x77\xcf\x6c\xd6\x78\x14\xff\xf4\x11\xb1\x75\x21\x44\x02\x2a\xca\x21\xa2\x0f\x1e\x0d\x8d\x81\x32\x7c\x56\x92\xeb\x4f\x19\x1a\xdd\xc8\xd1\x43\xae\x82\xd5\x13\xcf\x26\xdb\xff\xc0\x17\xa1\xe3\x51\xfd\xbb\xd0\x43\xd0\xbc\xef\x03\xd1\x26\x7d\x2b\x39\x7d\x17\x3a\x68\xbc\x22\xa8\x24\xce\x82\xb9\x4d\x9f\x01\x3a\xea\x2b\x88\xf7\x71\xe7\x1c\x3d\x16\x13\xae\x54\x0d\x73\xe1\xdf\x08\xd2\xfa\x11\x79\xe2\xdf\x89\x87\x08\x7f\x99\x72\x10\x51\x8d\x1a\x53\xa7\x74\xb8\x84\x52\x49\xa5\xa9\xa7\x40\x92\x81\xe5\xc3\xd0\x90\x28\x5f\x39\x29\x39\xd2\x58\xc7\x9a\x1f\x57\x88\x1c\xe4\x76\x11\xeb\x7e\x5c\xc9\x20\xc1\xb5\xe8\xf9\x94\x6a\x24\xf3\x0d\x8f\x26\x59\xfe\x10\x6c\x40\x13\xaa\x40\xe9\xc4\xa5\x65\xc9\x44\x63\x33\x78\xb3\x50\xaa\x84\xc5\xc9\x87\x90\x03\x56\x7e\xcb\x73\xb0\x74\x19\x87\x43\x2c\x05\xce\xd5\x27\x75\x4b\x88\x66\xcf\x3d\x8d\x09\x66\x17\xfa\xe6\x6a\xd3\x44\xd1\xd6\xd1\x9c\x06\xae\xd7\xf2\x71\xd7\x58\xc4\xe8\x58\x3f\xe8\x01\xf9\x5d\xdf\x34\x61\x16\xac\x43\x29\xa8\xdd\xab\x6c\xa5\x59\xb2\xa3\x82\xf1\xd3\xa9\xb7\x54\x0a\x6e\x38\x2a\x24\x03\xd9\x7d\x43\xb6\xb7\x70\xd2\x7b\xa4\xc7\xf9\xb5\x8b\x93\x68\xcc\xdd\x5d\xe5\xe2\xe5\xdd\xad\x04\x37\x9e\x5d\xb3\x0b\xb6\x30\x8d\x56\xe6\x87\x19\x05\xc2\xb8\xdb\x25\x97\x9c\x5e\x77\xb3\xb3\x7e\xbd\x9b\x3d\xc8\x6d\x69\x93\x4a\x45\x1d\x7c\xa8\x1e\xbd\xf2\xe0\xed\xe8\x0e\x5d\xf5\x30\xec\x8a\xe3\x8b\x3c\x57\x7c\xaa\x9f\xc7\xd5\x6c\xdf\x2a\x3e\xac\x77\xef\xa8\x1a\x3d\x89\x39\xaa\x25\xa9\xec\x06\x16\x6a\xc9\x68\xe7\x3b\x62\x33\x86\x56\x14\x8b\x5e\x5a\x61\x8f\x2b\x62\x69\xf3\xc5\x4b\x4b\x97\x42\x76\x76\xea\x0a\xec\xbe\x3b\xc8\x6b\x19\x67\x2f\xdf\xbe\x19\xe3\x7e\x8c\x5f\xa8\xcb\x68\x82\xaa\xb3\x18\x57\x50\xc2\xf8\xc2\x25\x31\xd2\xa8\x93\x92\xba\xfb\x5b\xe2\x5a\xd8\x9e\x62\x32\xc1\x3e\x7b\xa4\xde\xd4\x4d\xcd\x07\x54\xac\xa9\x30\x28\x12\x0f\x43\x17\xf6\xb9\xa4\x0c\xe4\x10\x29\x70\xb7\xda\xad\x37\xbc\xb0\xab\xb4\x24\xac\xca\xee\x9d\xdc\x23\x54\xea\xe8\x2a\xaa\x23\x97\x88\xf8\x5c\x2e\xbb\x8a\x68\xe0\x8b\x33\x76\xb4\xf4\xfa\x69\x7d\x20\x59\x83\xe0\xfc\x9a\xcf\xcb\x03\xea\x2f\x11\x90\x41\xbc\x16\x9a\xbd\x71\xe9\xc7\xf8\x72\xb1\x07\x58\x00\x42\x8b\x03\xec\x76\x78\xa0\x7d\xad\x28\xf4\xe6\xf4\xa5\x86\xcb\xc6\xc7\x53\xa7\xc2\x89\xb8\x1c\x43\xc7\x6f\x99\x20\xf8\xcb\x4a\xcc\x7c\xc4\xd0\x4d\x4c\xad\x2b\x0f\xb4\x8c\xf2\x70\xf0\xe0\x65\x5e\x6c\xbc\xb9\xa9\x47\x54\xcc\x88\xe8\xae\xa4\x5c\xc8\x18\x3d\x86\x0c\x89\x27\x94\xc9\x2b\x91\x13\xed\xde\x23\x7a\x60\x9e\x92\xc6\x44\x11\xf4\xae\xa5\x4c\x68\xc1\x06\xec\x58\xdc\xf5\x3b\x21\x33\xe0\x63\x94\x8c\x8a\x5f\xd5\x31\xc8\x04\x56\x26\xae\xbe\x14\x5a\x2e\xa9\x53\x7d\x10\x30\xde\x89\x3a\x76\xeb\xc4\xed\x22\xeb\xe4\x78\xc0\xf7\x35\x53\x27\x1d\xc7\x1c\xc7\x44\x97\xb7\x05\x00\x3b\x0b\x99\x53\xa3\xa9\xbd\x4c\xd5\x68\x03\xb3\x99\x56\xcd\x0f\x07\xbd\xa1\xdc\xdb\x6c\x7a\x33\x45\xe5\x17\x40\x77\x5f\xec\x3d\xe2\xa3\x1a\x08\x13\x0c\x35\x24\x5c\x51\x8b\x07\x77\x9b\x7e\x6d\x36\x1b\x92\xbf\x0d\xd2\xbd\x72\x6e\x1e\xfc\x98\xbd\x6c\x8a\xde\x86\x86\xc4\x2a\xe1\xd8\x41\x9f\xc7\x5a\xb1\xed\xe2\x1b\xfe\x13\xf2\x44\x12\x05\xeb\x9b\x10\x88\x38\xb8\x71\xf1\x22\xef\x11\xa7\xdc\xcd\x82\x1c\x15\x55\xe1\x41\x7d\x95\x74\x54\xe6\xa3\xda\xa6\xe9\xe4\x6d\x9d\x48\xa7\xfe\x1d\x5e\x63\x24\x88\xd7\x65\xa8\xcd\x96\xb9\xf5\x52\xde\xd1\xf0\x8d\xa2\x9a\x42\x23\xc5\x80\x07\x42\xa1\x61\x16\xbe\x03\x5a\xd5\xb0\x35\xad\x6e\x7a\xac\x75\x5b\x1e\x34\xe8\xf3\xec\x1c\x7f\xcf\x98\x8d\xf1\x13\xc7\xc6\x28\x5a\x32\x10\x5e\xc9\x7d\x89\x47\xe5\xbe\x91\xc2\xd9\x51\xa3\xea\xbc\x58\x39\x74\xf1\x96\xc5\xf3\x49\x84\xa1\x8a\x81\x85\x0a\xdf\x22\x6e\x25\x7c\x8c\x98\xaf\xf0\x91\xe7\x36\xda\x17\x2a\xb0\xb6\x92\xad\x39\x3b\x7b\x31\xc4\x85\x50\xea\xdf\x4f\xab\xfb\x56\xa0\x7b\x0f\xf9\xa3\xe9\x34\xd8\x7b\x1f\xc7\x0d\x86\x5b\x31\x2c\xf3\x1d\x49\x27\xf6\x97\x8a\x08\xed\x67\xf7\xd8\x15\xe0\x5e\x57\x16\xab\xa8\x3b\x77\x49\x44\x27\x8a\x7e\xce\x06\x6e\x42\x7e\x27\x54\xe6\x4f\x5e\xcc\x76\xef\x6b\x27\x2f\x56\xcb\xde\x44\x77\xc7\x18\xfb\xdd\x7d\x93\x5e\x31\x93\xe8\xcf\x31\x41\xd2\x40\x6d\x78\xc4\xb4\x74\xc8\xcf\x05\x95\xa6\x64\x31\x59\x43\xd7\xb4\xa9\xa0\x3a\x8a\xaf\xad\x64\xfa\x92\x15\xdb\x65\xc9\xe6\x70\x8b\x53\x75\xe3\x00\xe5\x69\x59\x26\x9f\x9e\xb6\x5e\x95\xa2\xc6\x13\x47\x5a\x75\xa0\x9d\xb1\xd6\x2e\x9b\x98\x36\x43\x49\xf5\x23\x1e\x48\xa9\x4a\x64\x04\x16\x8e\x86\x2b\xaf\x8d\x24\x1d\x5d\xf8\x6b\x1e\x84\xfb\xa5\x44\x62\x07\x76\x81\x5f\x1a\x30\x0e\x66\xc9\xd8\x7e\xbe\x07\x12\x6e\xf2\xc5\x43\xf9\x77\x6a\x96\x1a\x15\x8b\xc8\x9c\x65\x25\xd6\x3b\xad\x04\x92\xc7\x51\x60\x2f\xa0\x34\xb6\xec\x7d\x1a\x41\xd3\x9a\x2e\xb0\xd9\x51\x73\xc7\x5d\x1f\x6d\xea\x42\xeb\x15\xe9\xd4\x04\x7d\x04\xe9\x7e\xe9\xe9\x5a\x5f\x56\xa6\xde\x12\xd6\x7f\x0f\x36\x1d\xeb\x87\xe7\x74\x2d\xcb\x0f\x20\x94\x90\x55\x56\xb8\x11\x3d\x05\x72\x74\x55\x09\x6e\x9d\x0f\x42\x88\x5f\x0d\x78\x35\x66\xac\x32\xfe\xb3\x3c\x57\xeb\x51\xca\x5c\x45\xfb\x1a\x6e\xa1\x97\xfc\xeb\xc8\xec\xb5\xaa\x93\xc5\x22\x75\x5c\x5a\xc1\x6d\x3f\x1d\xdd\x66\xf1\xec\xf1\x8b\xd7\xd9\xa3\xa9\x83\xa0\xb5\xc7\xe4\x47\x0b\xc6\xc4\x4a\x0b\xa6\x69\x93\x98\xa9\x75\x1d\x62\x93\x9e\x5e\x86\x54\x3c\xbe\x0a\x39\x16\xda\x91\x68\xb1\xa7\x3b\xd2\xf3\x53\x10\x3a\xd2\x84\xa4\xe6\xa9\xfc\x1a\xd4\xf1\x0f\x03\x4a\x25\xff\x2c\xe0\x78\xcc\xda\xf5\xc3\xb6\xf7\x64\x7f\x8d\xb8\x5a\x79\xea\xc6\x3f\x8f\x4c\xcd\x55\x3e\xb4\xcd\x45\xc9\x31\x56\x5a\xfd\x8d\x7e\xf0\x35\x5d\x0d\xd7\xaf\xab\x70\x6c\xcd\x84\xdc\xa5\xf2\xe1\x0f\xf9\xef\x59\xb2\x77\x7a\x54\x71\x9c\xa4\xaa\xd6\x12\x27\xb3\xf5\x4e\x5f\xbe\xd4\xda\xdb\xb5\x07\x8d\x68\xb4\x9f\x3e\x0c\xc0\xb9\x66\x95\xf6\x60\x41\x55\xb9\x11\x5b\x98\x5f\xd1\xd4\xa1\xdc\x75\xdd\xc1\x4a\x42\x02\x5c\x40\xfc\x8e\xdf\x70\x09\xa1\x27\x5d\xc7\x54\x47\x87\x92\x8d\x17\x0e\x38\x0f\xca\x6a\x98\xe3\x70\x50\x51\xef\x20\xae\xa9\x7f\x8f\xc8\xe2\xb6\x55\x9a\xfb\x54\xff\x98\xbe\x28\xc0\x75\xe8\xb8\xe0\x36\xa6\xf7\x03\x95\x84\x53\xa2\x2a\x7a\x1d\x7b\x87\xaa\xf9\xba\xa5\x7b\xe5\x21\xfd\x4f\xfc\x54\x42\x41\x74\xe8\xdc\x27\x70\x3e\x45\x4f\xfc\x35\x48\xcd\x81\x88\x52\x54\x1b\x8f\x9b\x38\x43\x46\xe6\xdc\x4d\x24\xd1\xab\x56\xf1\x0f\xa4\xa8\xfd\x60\xb2\x92\xf9\xd5\xac\x7b\x6f\xfe\x3c\xad\xaf\xf3\x5d\x15\xd7\x8c\x7c\xc1\x80\x97\x9a\x93\xbf\xdf\xb0\x3a\x9e\x10\xf3\x1a\x79\x4f\x43\x95\xa9\xbc\xb3\x6e\x31\x04\xd5\x0e\x8e\x5f\x6d\x27\x68\x34\x35\x85\x45\x34\xb4\x95\x6a\xde\x51\xcd\x79\x7f\xc9\x4f\x42\x16\xc8\xef\x53\xbe\x6b\xae\x7e\x60\xb7\xe2\x2f\xcb\x4f\x17\x71\x52\x07\x57\x34\x31\x73\x57\xd4\x1c\x16\xaf\x0f\xf3\xb8\x2a\xcb\x31\xfe\xe9\xfb\xe1\x1c\x8e\x7a\xb5\xc0\x23\x90\x7d\x3a\x7e\x4a\x5f\x38\x85\x82\x3b\xf2\x6e\x4c\xc2\x3c\xef\xf3\x9b\x1f\x51\x5a\x0b\xc2\x47\x9f\x19\xb2\x48\x9f\xe6\x13\x21\xa7\xdf\xc3\x30\x02\xcd\x40\x9c\x4e\xfe\xd3\x38\x39\xfd\x6d\xef\xf1\xf8\xd7\x4b\x74\x62\x92\x7c\x3e\x4c\xe9\x13\xdb\xae\x3f\xb9\x1f\x3f\x48\xa2\x4f\xa4\x44\x99\xf9\xa3\x0e\x09\x00\x70\x15\xed\xfc\x8a\xe5\x21\x98\x9f\xd1\xb5\xbc\x82\x12\xf7\x2d\x4a\x4f\xe9\x1e\xc9\xfc\xdd\x08\xfe\x39\x96\x9f\x7d\x3f\xe9\x1b\x03\xa3\x9c\xd7\x0e\x60\x49\xf7\xfa\x60\xc0\xa0\xf7\x9f\x65\xd1\xe1\x95\x9a\xbf\x71\x72\xd1\x0b\x3f\x3f\x23\x74\x62\x94\x1c\xfc\xe7\x24\x3b\xf8\xbb\x27\x44\x3b\x94\x24\xa7\xff\x19\x8f\x27\x6a\xbe\xb9\x49\x84\x91\x3d\xf6\x1b\xec\x2a\xb3\xaf\x6a\x5e\x4f\x21\x94\xbe\x19\xd9\xe5\xdb\xff\xc7\x9b\xac\x0f\x5a\xfc\xc5\xbf\x2a\x20\x3c\xb4\x7f\x57\xc3\x05\xf8\xfc\x25\x3c\x5b\x48\xc7\x02\x99\xd7\xe9\x50\xe4\xdb\x66\x71\x81\xd7\x09\xf9\xd1\x54\x44\x9d\xe4\xab\xcc\x36\x1b\x56\xc3\xf9\x20\x94\xbb\x77\x3e\xb5\x8b\xfb\x36\xfb\x34\x3b\x33\xe7\x70\x79\xa3\x0f\x7b\xf9\x40\x2c\x6c\x0f\xcb\xd0\xa7\x3b\xad\xd0\x69\x79\x21\xbf\xdf\xe6\x74\xae\x3f\xbd\x94\x1f\xdf\x37\xfc\xac\xf2\xa7\x44\x88\xb4\x75\x53\x43\x6d\xff\xe9\x95\xfc\x44\xfa\x69\x44\x39\x11\x5d\x2f\x68\x40\x40\x42\x5f\x85\xd0\x71\x41\x1b\x79\xc0\xb4\x54\x26\x41\x85\xbb\xa6\x6f\x07\x0d\x3b\x6d\x57\xe4\x57\x69\xc9\x5b\x49\x30\x78\x69\xcc\x79\x5a\xc0\xb3\x14\x2a\xdc\xed\x06\x03\x61\xbe\x28\xbb\x32\xf9\x60\xa0\xbf\xe6\xe2\x7c\xd8\xe6\x97\x4b\xb7\x82\x30\x6b\x7c\x75\x33\xf7\xb3\xa5\x6d\x28\xda\xe6\x80\x24\xc0\x3f\x85\xf7\x95\xdd\xfb\x90\x4f\x5c\x50\xf5\xb7\x07\xc4\x7f\x67\xc8\x1c\x81\xf7\xb1\x1b\xf5\x14\x57\x6f\x31\x8e\x17\xc7\x95\x2a\x7e\xdf\x2e\x35\x78\x59\x1f\x7a\x15\xc1\x7d\x9e\x31\x4d\x74\x81\x9f\x54\x10\x14\x9d\xe2\x5c\xb6\x6b\xf0\x16\x80\x04\xa8\x78\x0d\x27\x4b\xfc\x84\x2b\xcb\x95\xca\xdb\xe5\x96\x08\xc3\xcd\xbf\x99\xec\xa3\x7f\xfe\x67\x7e\xab\x82\x44\x9b\x7f\xf9\x97\xec\xe5\x83\x8f\x95\xb7\x66\x72\xde\x19\x49\x71\xf6\x32\xff\xb5\xdc\xe7\x55\xd4\x66\x9f\xff\xfa\x24\x69\x36\x07\x81\x65\x4f\xf2\x28\xbd\x42\x94\x11\xef\xee\x9d\xff\x1b\x00\x00\xff\xff\x7c\xa9\xff\xe0\x97\xbb\x00\x00") +var _confLocaleLocale_deDeIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\xbd\x5b\x6f\xdc\xc6\xb6\x20\xfc\xce\x5f\x41\x7b\xc3\x48\x02\xa8\xdb\x70\x72\xbe\x6f\x06\x41\x98\x8c\x64\xf9\x16\x4b\xb6\x4e\xa4\x24\x40\x0c\xa3\xcd\x6e\x56\x77\x73\x37\x9b\xec\xb0\x48\xc9\xd2\xc1\x01\xf6\xc3\x79\x9c\xe7\xc1\xc1\x60\x80\xfd\x62\xcc\x4f\xc8\x53\xde\xf4\x4f\xf6\x2f\x99\x75\xab\x2b\xd9\xb2\x93\x8d\xb3\x81\x1d\xab\x8b\x75\x5d\xb5\x6a\xd5\xba\x57\xbe\xdb\xcd\x0a\xa5\x17\xd9\x93\xb2\x4e\x55\x59\x2f\xf3\xc5\x5a\xb5\x07\xa9\x56\xd5\x5c\x77\xe9\x4a\xad\x1b\xdd\xa9\x4e\xb5\xe9\xb3\xb2\x9b\x9c\xab\xf6\xb2\x5c\xa8\x03\x28\xd7\x8b\x75\x5b\xaa\xb9\xaa\x53\x68\xf8\xac\x49\x92\x75\xb3\x55\xd9\x73\xf8\x4f\x52\xe4\x7a\x3d\x6f\xf2\xb6\xc8\x6e\xff\xcf\x5c\xb5\xba\x5c\xac\xbb\x44\xbd\xdf\x55\x4d\xab\xb2\x27\xed\xa6\xaf\x0b\x55\x27\x6b\x55\xed\xb2\xe7\x65\xb5\x54\x89\x2e\x57\xf5\xac\xac\xb3\xc3\x7a\xab\x2a\xfc\x46\x05\x4d\xdf\x65\x87\x73\xbf\xa4\xdf\x65\x3f\xa8\x55\xa9\x3b\x18\xb9\x85\xc2\x96\x7e\xa8\x36\x2c\xbd\x52\x73\x5d\x76\x2a\xfb\x19\xfe\x55\xf0\x47\x72\x89\x73\x68\xea\xec\x27\xfe\x37\xd9\xe5\x2b\x95\x9d\xd3\xa7\x4e\x6d\x77\x55\x0e\x95\x7f\x6a\xda\x0a\x8a\x93\x2a\xaf\x57\x3d\x7d\xdf\xb5\x08\x8a\x64\xd1\x2a\xf8\x3e\xab\xd5\x15\x4c\x1d\x06\xab\x2a\x55\x4f\xa7\xd3\xa4\xd7\xaa\x9d\xed\xda\x66\x59\x56\x6a\x96\xd7\xc5\x6c\x8b\xab\x3b\x52\x75\xdf\xdd\xa8\x96\x3f\xa4\xb0\xd2\x74\xab\xd6\x2d\x4d\x5f\x15\xb0\xc6\x59\xae\x11\xd4\x2b\x55\x35\xab\x55\x97\xe6\x95\x4e\xa8\xab\x3a\xdf\xba\xd6\xf8\x23\x51\xdb\xbc\xac\xb2\x27\x93\x53\xf8\x07\xa6\xac\xf5\x55\x03\x10\x3d\xe3\x3f\x3a\x58\xfb\xac\xbb\xde\x29\x5b\x90\xce\x95\xee\x6e\x3f\x74\xe5\x0a\x40\xb0\xc8\x77\xdd\x62\x9d\x67\x8f\xf9\xdf\x04\x6a\xef\x1a\x00\x4a\xd3\x5e\x03\xac\xcc\x9f\x49\xd3\xae\xf2\xba\xbc\xc9\x3b\x84\xce\x6b\xfa\xa1\xe9\x47\xb2\x2d\xdb\xb6\x69\x01\x08\xa5\x82\xa9\x26\xb0\xfa\x19\x76\x91\xbd\x52\xbd\xd2\xa9\xd7\x05\x7e\xd9\x96\xab\x16\x61\x88\x1f\xd3\x53\xfa\x81\x7d\xe0\xa7\x65\xd3\x6e\xa4\x51\x3e\x07\xa4\xd9\xe5\x15\x62\xd3\xa0\x0b\x98\x09\x37\x0f\x67\x91\xd7\xb0\x15\xf4\xd1\x2f\x07\x9c\x83\x2d\xbd\xc2\xae\xea\x24\x2f\xb6\x00\xd5\x5d\x5e\xab\x2a\x3b\xc4\xbf\x27\x67\xf8\x77\x92\x2f\x16\x4d\x5f\x77\x33\xad\xba\x0e\xe0\xad\xb3\x97\x4d\xdd\x35\x80\xe1\xb4\x87\x7d\x8d\x60\xb2\xdf\x9e\x04\xc5\xd7\x4d\x6f\xb7\x36\x3b\x86\x26\xe9\x19\xfd\xe0\x0f\xb6\x11\x7e\x51\x69\xd8\x14\x17\xa3\x67\x4b\xa5\x0a\x5c\x4e\xb9\xda\x20\x96\x01\xc6\xf5\x55\x05\x00\xfc\x15\xe0\xd0\xe9\xec\x0c\x7e\x01\x00\xf8\x57\x52\x6a\x0d\x7f\x64\x2f\xe8\x9f\x04\xb6\xae\x5e\xe0\x52\xe6\xf3\x56\x01\xfe\x41\x97\x6f\xb4\xca\xdb\xc5\xfa\x6d\xc2\xff\x66\xe7\x3d\x96\x23\x0e\x8e\xef\x2a\xa2\x93\x45\x25\xee\x3e\x83\x05\xcc\x2b\xb5\x4d\x16\x4d\xa1\xb2\xc7\xf0\x1f\xe8\x16\x27\x9e\x57\xd5\xdb\x44\xfe\xc8\x5e\xf0\xbf\x0c\xfb\xae\xec\x60\xf5\x7e\x51\xba\xbc\xfd\xbd\x4d\xe1\x0c\x75\xdb\xbc\x42\x34\x4b\xcf\xbb\x1c\x30\xb1\x68\x16\x1b\x38\x0b\x78\x9e\x61\xe0\x9f\x55\x8d\xf4\x60\xa5\x81\x2e\xd4\xaa\x5d\xe7\xd5\x3c\x3d\xa6\x1a\x69\x75\xfb\xa1\x5f\x76\x07\x69\x55\x02\x02\x14\x65\x9b\xce\xcb\xae\x53\xf0\x97\x4a\xbf\xc9\x53\xe8\x6b\xa5\xba\xec\xfe\x6c\x0e\x67\x70\x73\x3f\x5d\xb7\x6a\x99\xdd\x7f\xa0\xef\x7f\xfb\xac\x2f\x0b\x55\x01\xb0\xf5\x37\x0f\xf3\x6f\x81\xf6\xd4\x79\x9f\x16\x3d\xc0\xe2\x00\xb0\xfe\xb2\x69\xe1\x47\x5a\x42\xeb\xba\xb8\xca\x01\xd1\xfa\x25\xf6\x09\x50\x48\xe9\x90\xa7\xb7\x1f\x80\xe0\xc0\xb4\xef\x25\xb8\x05\x50\x32\x2b\xe6\x4c\xf4\x68\x9e\x40\xc3\x6e\x7f\x83\x73\xd3\xa5\xa7\xd7\xe7\xff\x7a\x72\x90\x9e\x01\xc9\x5b\xb5\x8a\xfe\x86\xff\x40\x83\xaf\x52\x00\x59\x9b\x5e\x94\xc7\x47\xd3\x04\x1a\x33\x70\x8e\x01\xe9\xeb\x39\x4c\x36\xc4\x2a\xfc\x8e\x27\xd3\x7e\x86\x5f\x09\x92\x51\xa0\x8e\xba\x8b\xb6\x67\x78\xb0\xa1\x39\x11\x03\xdb\x9c\xa8\x01\x94\x0a\x80\x8f\x08\x68\x78\x00\x14\xd2\xd1\x54\x97\x0c\xc2\x17\x75\xdd\x1c\x1f\x4d\x9e\xd4\x2b\x44\xcb\x6d\xd9\xa5\x7d\xb7\xfc\xef\x33\x98\x91\x6a\xf3\x6a\xb6\x28\xd3\x5f\x54\x89\x98\x03\x87\xe8\x86\xf7\x92\xd6\x3b\x4d\xb4\xae\x80\x7a\x01\x62\x9c\x9f\x9f\x4c\x4e\x9b\xa2\xd7\x30\xad\x6e\x9d\x9d\x2d\xf3\x22\xd1\xbf\x56\x08\x31\x19\xfc\x18\xa0\x80\x13\x2b\x77\xf0\x2d\xbd\xe9\xdb\x21\x80\x52\x3b\xf1\x69\xa2\xda\x76\x06\x14\xb6\xbb\x46\x88\x53\x9f\x77\x54\xa7\x2e\x8b\xbc\x5d\xa6\x35\xde\x18\x69\xa5\xa0\x0a\x50\xf0\x9a\xfb\x29\xeb\x4b\x40\xbb\x02\x60\x6f\x21\x34\xe8\x02\x8b\xb9\x0b\xdc\x93\xf4\xfe\xf4\x3e\x91\x60\xfe\x31\xb9\x9f\xaa\xba\x5b\x13\xd9\x98\x26\x75\x33\x63\xd2\x81\xb4\xbb\x00\xca\x02\xe7\x63\xc6\x17\x0a\xd3\xaf\xec\xb8\x4f\x37\x79\x0d\x3b\x4b\xe0\x75\x57\x0c\xec\xb2\xcc\xb0\x50\xf9\xa6\x2b\x2f\xe9\xda\x39\x48\x9b\x35\xc0\x1d\x47\x22\x32\xc4\xfd\x00\xf9\x43\xb2\x03\x90\xa2\x83\xc3\xb7\x87\x07\x16\x43\xbd\x04\x09\x8e\x01\x7d\x83\xd6\x13\x4b\xde\xc7\x01\x93\x98\xed\x65\x8c\x3c\xac\xaa\x95\xda\x8e\xd0\x25\xbc\xe6\x09\x66\x87\x35\xa2\x0d\x14\x6a\x42\x2b\x53\x6e\xf6\xf7\x39\xac\x25\x45\xac\xf2\xe9\x2d\x55\x65\xee\xe0\xf6\xf7\x15\x2e\x00\x09\x0f\xef\xa7\xa3\x3b\xe9\x0f\x4d\xd3\x4d\xe0\x8e\xbd\x41\x34\x83\xb6\xb8\x9f\xae\xa6\x19\x01\xa6\xa8\x88\x97\x70\x2d\x75\x7a\xa5\xda\x82\x39\x09\x3a\xb8\xdb\xd4\xeb\x06\x79\x8d\x1d\x61\x6e\xdb\xc1\xc8\x3d\xb0\x01\x78\x82\x0e\x7b\x0d\xb3\x01\x22\x81\x67\x3b\xb5\xe7\xc9\x7c\xf7\x11\xd6\x7c\x4c\xb7\xbd\xd6\xb4\x99\xbf\xf4\xab\xb6\x5c\x2e\x35\x70\x27\x40\x64\xe1\xec\xe3\x9e\xd2\x91\x00\xde\x25\xbd\x63\x4d\xe9\x3a\x47\x96\x07\x91\x0a\x87\xcd\xbd\x49\xb8\x61\x2e\x1b\xa1\x80\xbc\x47\x45\x03\x37\x39\xa0\x13\xfd\x23\xbf\xec\xf4\x90\x14\xae\xf3\x2e\x85\xe5\x5c\x95\xc8\x1a\xad\x0c\xfd\x4a\xcf\xcf\x9f\xa7\x8b\x0a\xae\xbb\xf4\xc7\x1f\x4e\x34\x1e\xd3\xf5\x6c\x07\xa8\x90\xe1\x87\x33\x24\x15\xa6\xc4\xeb\x8d\x3e\xd4\xfd\x76\x4b\xfb\x88\x34\x13\xfb\x21\xc6\x0d\x10\x10\x68\x6f\xce\x20\xd0\xf0\xe1\x29\xb0\x56\x84\x4c\x07\xb0\x01\x40\xb5\x81\x8a\x62\xd7\x3e\x56\xa7\xdb\xdb\xdf\x00\x40\x70\x51\x4d\x93\x75\xd7\xed\x78\x02\xcf\x2f\x2e\xce\x78\x06\xb6\xcc\x6e\xaf\x23\xbe\x58\x21\x7d\xc5\x53\x81\xb5\x15\x0c\x13\xc0\x7d\x84\xe5\x3c\x37\x28\x8c\x28\xd8\xb7\x95\x87\x99\x13\x58\xaf\x29\xfe\x14\x40\xe1\x74\x1e\xe2\x7f\xce\x3d\x78\xd1\x1e\xf1\x96\x42\x15\x66\xa3\x00\x88\x49\xb3\x43\x94\xb6\x27\xe6\xb5\xfc\x8c\x0f\x0c\x71\x5f\x52\x87\x1b\x1b\xe6\x37\xaa\xa8\xb7\x00\x01\xa2\xee\xe7\xa7\x00\x15\x22\xf1\x54\xb6\x6c\x9b\x2d\xb0\x95\xb5\xfb\x65\x61\x04\x7c\x29\x62\xed\xe4\xb0\x68\x95\xd6\x2a\xad\x81\xd3\x4c\x7f\x78\xfa\x38\xfd\xff\xbe\xfa\xf2\xcb\x69\xfa\xa4\xee\xae\x14\xa2\x57\x0d\xf4\x95\x0f\x33\xcd\x20\x35\xf5\x89\x78\x96\xdb\x74\xd9\x54\x2b\xbe\x04\x9e\x36\xed\x36\xef\xbe\x4e\xef\xbf\x82\xa3\x7a\x3f\xfd\x86\xa6\xff\x3f\xd4\xfb\x1c\xd8\x5b\x35\x5d\x34\xdb\x6f\xa7\x09\x16\xc1\xc1\xa0\xd3\x73\xce\xc7\xe6\xc9\x04\x0b\xcd\x17\x4b\x86\xe4\xab\xc7\x6b\x32\x9f\x3d\x5b\x34\xf5\xb2\x6c\xb7\x59\x40\x0c\xb5\xe5\x3c\x69\x53\x2c\xee\x50\xb7\xb3\xba\xe9\xca\xe5\xb5\x81\x21\x9c\x91\x1c\x05\x07\x73\xe8\x60\xea\x5e\x03\x4d\x58\x3a\xd3\x0c\x68\x81\x3e\xa3\xee\x84\xf6\x53\x03\x31\x42\x0e\x37\x05\x74\xc0\x4d\x08\x76\xa2\x59\x2e\x91\x49\xe0\xab\xec\x35\xff\xe0\xeb\xcc\x1f\xc3\xaf\x05\x98\xbb\x03\x99\xe2\xd8\x21\x3c\x9d\xff\xc7\xc7\xaf\x00\xb7\x60\x4b\x00\xc4\xc0\x38\x15\xfd\x86\xa8\xe0\x16\xbb\x3a\x00\x96\x1d\x90\x85\xee\x40\x98\xbc\x10\x2e\x3c\xf1\x42\xb9\x78\xba\x48\x19\x80\x71\x2e\xd5\x92\xa8\x96\xb9\x5f\x80\x35\xbe\xcc\x81\xd1\xc9\x9e\xc9\x1f\x13\x5e\x48\x70\xe6\x06\xb5\x65\x9a\xa6\x0d\x41\x62\x2e\xc4\xa6\x50\x4b\xb8\x2d\x60\x10\x95\xfe\x6b\x4f\xd7\x4b\x74\x2b\xd1\x74\x0f\xa9\xa1\x32\xd3\x05\x9e\xae\x86\xfb\xa4\xd8\xde\x7e\xb8\xfd\x7b\xb9\x82\xe9\x6f\xe1\xa0\x12\xed\x5a\x37\x8b\x35\x4c\x3c\xc7\x6a\x84\x66\xba\x84\xd1\xce\xa5\x01\x4f\x40\xb9\x05\x05\x17\xa6\x21\x80\x6d\x70\x55\x8e\x2e\xcd\x6f\x37\xb6\x0b\xa5\x23\xa7\x41\x6f\x07\x74\x26\x82\x2b\x12\x26\xba\xb9\xfd\xad\x46\xa9\xc0\x34\xc1\x3b\x17\x31\xab\xae\x14\x5d\x57\x80\x74\x38\x68\x24\x15\xf9\x58\x11\xd6\x90\x19\x1d\x59\xc6\x50\x5a\x4c\x48\x9e\xdd\xb5\xb7\xbf\x2f\xed\x85\x11\xf2\x05\xc4\x95\xda\x79\x4c\x99\xe1\x04\x51\x4d\x24\xdc\x19\x0c\x87\x72\x24\x88\x45\x05\xae\x93\x05\x5e\x5a\x57\xbf\x05\x0e\x8e\x98\x13\x98\xf7\x0d\x1c\xd2\x35\x09\xb8\xc3\xe6\x32\xb9\x13\x55\x94\xab\x0a\x0e\x12\x54\xc7\x3b\x1f\xa4\xe4\xce\xbb\x83\x0c\x48\x4c\x9f\x73\xd5\xa1\x3c\xdb\x21\x4a\x3c\xbb\xfd\x00\xc7\x26\xa5\x21\x08\x9e\x08\x6e\x23\x7b\x3f\xf4\x65\x69\x66\xa0\xa7\x22\x64\x89\xe4\xc3\xac\xf3\x39\xb4\xd9\xde\xfe\x0e\xe4\xa8\x4e\xff\xaa\xba\x9b\x2e\xad\x01\x75\x88\xd5\x52\x11\x0b\x34\x39\x64\x59\xcc\x6e\x48\x8a\xb7\x32\xf1\x43\x6e\xc2\x9f\xdf\x7f\x71\x9c\x3d\xba\xff\x05\x94\xaf\x6f\x3f\x54\x50\xb9\xef\xe0\xaa\xec\x4a\x0d\xbd\x7a\xdd\xe1\x49\xa4\x4b\xdb\x4e\x8b\xc9\x04\x89\x77\x93\x80\x36\x0b\xf9\x8f\xa7\x23\xcd\x86\x12\x77\xc4\x8c\x59\xf2\x27\x54\x6f\xf8\x25\x90\xb9\xb9\x35\x4b\xed\xc1\x78\x42\xbd\x8d\x98\x35\x5b\xc1\x35\x98\x89\x84\x44\x25\x8c\x82\x78\xc9\xce\x56\x65\x37\x5b\x22\x35\x2e\xb2\xa7\x6a\x0d\x44\x19\x86\x00\x2a\x74\xa1\x88\x46\xe8\xf4\x33\xa8\xf0\x59\xfa\xb2\xd9\x82\x68\x5c\x34\xfa\xeb\xf4\xc1\xa5\x70\xe8\x5f\x21\xa5\x9d\xc1\x01\x2d\x2b\x44\xe5\xec\x05\x70\x25\x74\xe3\x4e\x44\xed\x01\x64\xa3\x43\x98\xdf\xfe\x8e\x9b\x45\x2c\xb1\x30\xe3\x07\x22\x88\xe1\xa9\x27\xb9\x0c\xf1\x01\xe8\x64\x79\x53\x22\x45\x81\xaf\xf5\xed\x07\xe8\xcd\x74\x84\xd4\xee\x01\xdc\xc6\x88\xf2\x1d\x72\x0f\xaf\x5e\x3c\x7e\x7e\x41\xad\x56\xcd\xbc\x2f\xab\xc2\x8c\x39\x4d\x0c\xd7\x0e\x3c\xbb\xa0\x8f\x13\x6c\xa2\xdd\x22\x4a\xc3\x1c\xee\xa6\x81\x63\xbf\xe9\x68\x79\xa6\x87\x4f\xe2\x39\x53\x00\x3a\x2c\x74\x75\xfb\x7b\x05\xbb\x42\xed\x2d\x47\x88\xf0\x01\x84\x02\x09\xfa\x78\x2f\xeb\x86\xcd\x0d\x6f\xdf\x22\x81\x20\x9a\x6a\xbf\x7f\x8d\xeb\x9e\x7c\x0b\xff\x4d\x74\x7e\xa9\xf8\x3e\x5c\x8d\xed\xd8\xb9\xb0\xac\x35\x75\xf4\x92\xea\xf5\x8c\xbe\xc1\xaa\x82\x93\x25\x0a\x0c\x42\xe5\x74\x04\x38\xe1\xc2\x0c\x3e\xe9\x7e\xb1\x00\xb6\x20\x7b\x0e\x60\x20\x82\xf0\x73\x59\x55\x1b\x40\x11\x55\xdf\x83\xbf\x85\x84\x03\x03\x02\xe2\x72\x41\xec\x1f\x48\xcf\x58\x8f\x8e\x07\x33\x65\x75\x07\xc7\xac\x54\x78\x56\xd6\x39\x30\x7b\xd4\xee\xea\xf6\xf7\x5a\xa3\xc4\x98\x02\xdd\xa9\x70\xfb\x57\x35\x09\x00\xd0\x0d\xc8\x97\xc0\x4c\xbd\x41\xa5\xdf\xdb\xa4\x67\x11\xa2\x01\xfa\xd1\x06\x47\x8a\xaf\x90\x48\x87\x65\x2a\xda\xf3\x05\x0c\x1d\xec\xca\xcc\xaa\x0d\x11\xac\x9d\x7a\xdf\xa1\x38\xc4\x25\x08\x40\x2c\x81\x0b\x6c\xb1\xd6\xaa\x02\xde\xe2\x9a\x10\x42\x67\xa7\xc4\x20\x59\x94\x80\x4b\x18\xce\x6b\x05\x67\xa0\x41\x68\x5f\x2a\xa9\xf6\x8c\xc4\x22\x58\x4d\xbe\xec\x10\x48\x51\x13\xe8\xae\x69\x57\xa6\xb7\x50\xd9\x84\x1f\x59\x1f\x66\xbe\x1b\xb5\x18\x91\x63\xd2\x7b\x3e\xd0\x1e\x85\x4d\x44\xa7\x33\x85\x9d\x25\x95\x11\x4f\xe1\x45\xcd\x1c\x79\x1d\x0e\x9d\xbc\x11\xd5\xe8\x5b\xd6\xe7\x64\xd1\x57\xa0\x83\xeb\xb7\x9e\x1a\x72\x26\x9a\x2d\x51\xab\x31\xb2\x58\xe1\xd2\xf1\x6a\x6b\xb5\x43\xa6\x6e\xab\x57\x28\xc9\xe2\xae\xa6\x28\xee\x94\x9d\x26\x21\x95\xda\x7d\x97\x7e\x4f\xa4\x3b\x17\xe2\x7f\x2f\xd1\xcd\xa2\xcc\xab\xd9\xa7\xf6\xa2\x9b\x1b\xa8\x6e\xa6\x61\xba\x03\x06\x68\x03\x98\xb2\x5b\x62\x8f\xe1\x95\xcf\x4a\x53\x90\x7d\xb3\x27\x3a\xed\x7a\x3c\xac\x1a\x64\x90\xb2\x38\x18\x91\xb2\xaf\xfa\x16\x29\x92\x65\x0c\x00\x2f\x59\xfb\x41\xaa\x0f\x46\xe2\xbc\x1e\x52\xf8\x98\x3f\xc1\x05\x90\x32\x75\x6c\xc8\x23\x9f\x7b\x45\x74\x0d\x99\xdb\x89\xf0\xde\xc3\xb9\x00\xa8\xb7\x6a\x3b\xc7\xce\x51\xae\x36\x97\x70\x0a\xe3\x96\xc0\x9e\x25\x70\xc9\xaf\x80\xe4\x0c\x6f\x0d\x00\xcf\x0a\xf9\x78\xae\xa2\xee\xac\xf2\x9d\xd1\x7c\x03\xf9\xba\xc2\x2d\xb8\x82\xc3\x0d\x9b\x30\xd8\xc2\xd6\xbb\xb6\xef\x99\x2b\x8b\xf9\x2b\xe2\xc3\xa1\xaf\xce\x82\x1e\x91\xb8\x46\x75\xab\xbf\xf8\x68\xa9\x00\xd8\x6f\xe6\xdf\x3e\xd0\xdf\x3c\x9c\xa3\xce\x8d\x44\x16\xd8\x00\x1c\xb4\x6d\xf8\xd2\x22\x7c\x26\x75\x19\x9a\x0d\x3c\x85\x1f\x09\x2f\xb7\x1f\xe0\xac\x22\x1f\xf6\x00\x19\x48\x52\xfa\x13\x9b\x33\xdc\xe7\x7c\x0e\x0c\xcf\x62\x0d\x7d\xde\xfe\x1d\xf9\xb5\x7c\x41\x27\x97\xce\x8e\xc1\xf6\x43\xc7\x1c\xda\xb5\xc3\x0e\xd0\xb2\xaa\x12\xc8\xd1\x7e\xbc\xea\x53\x9a\x3c\x40\xed\x06\x50\x18\x95\x90\xc0\xf3\x9a\xfe\xbc\x85\x6b\x8b\x5e\x39\xf2\xd3\x5f\xa5\xa7\x25\x90\x32\x9c\x10\xe0\xfd\xac\xaf\x05\xa8\xaa\x60\x6c\x7a\x0e\xc4\xb7\x81\xab\x80\x46\xa0\x93\x41\xc4\xa1\xaf\x2d\x57\xd0\x19\xc9\xcd\x4a\x7a\x9f\x5b\x90\x7e\x01\x34\x56\x84\x6e\xe2\x99\xc6\xb7\x82\xe0\xd9\x09\x55\x66\x6a\xaa\xec\xe6\x19\xc5\xa5\xee\x0e\xd2\x0d\x10\xb5\x8d\x92\x8b\x9c\x04\x63\xe4\x7f\xac\x7c\x78\xd4\x77\x5d\x43\x8a\x1b\x04\x85\xcc\x1f\x75\x3d\xdc\x4e\x36\x86\xba\x1e\x01\x0c\x4c\x03\x06\x24\xf0\xa1\x16\x81\xba\x14\x09\x99\x98\x0e\x4d\x54\xa3\x53\x24\xa5\x0f\xd6\x8c\x77\x2a\xaa\x23\x69\x99\x5b\x21\x58\x96\x44\xc0\x39\xa2\x29\xe1\xcc\xba\x7d\x13\xb3\x12\x3c\x4c\x61\x6b\xe5\xd2\xc9\x4d\x0f\xac\xf8\x62\x03\x0d\x6f\x50\x3f\x35\x32\x49\xee\x75\x78\xbe\x82\x96\xf6\x32\x26\xed\xf8\x10\x7f\x48\x85\xe4\x6d\x0e\x56\xa3\x55\xa1\x49\xa3\x02\x60\x1b\x59\xc9\xde\xcf\xd3\x68\xe0\x40\xbd\x16\xac\x0c\xc4\xcd\x78\x52\xc8\xfc\xd3\xb4\x6c\xeb\xae\x69\x66\x7a\x8d\x9a\x97\x63\xbf\x3e\xa9\xb3\x80\xec\x15\x24\x0b\xc3\x7c\xff\x7f\xa3\xe2\x4d\xd1\x8c\x45\xfa\x15\xb8\x40\x10\xa6\x6f\xf9\x4c\xe1\x15\x62\x0e\x14\xa3\x7a\x3e\x76\xac\x6c\x5d\xe6\x66\xe1\xe2\x2f\x89\x19\x94\x5a\xf1\x0e\xc7\x50\x3e\xc7\xe9\x0b\x6d\x88\xd6\xe6\xae\x27\xc3\xb5\x84\x94\x40\xb5\x88\xb3\xa4\x21\x3a\xf0\xf8\x18\xd7\x4c\xd4\x09\xee\x13\xd2\xa9\x23\x18\x15\x17\xda\x14\x39\xac\xf4\x5a\xe9\xec\xfb\x3c\xa9\xd1\x5a\x05\x00\x80\x52\x6c\x71\xfb\x1f\xa8\xd3\x40\x78\x00\xd1\xdd\xbe\x4d\x7e\x04\x96\xf0\xd5\x40\x04\xc0\xbb\x97\x4a\x1d\x8f\x39\xc1\xdf\xc9\x13\xcf\x1a\x67\xd7\x7d\x36\x10\x15\x7e\x50\xfb\x8d\x72\xe7\xe7\xcf\x2f\x58\xa3\x81\x0a\x39\x20\x77\x24\x3d\x55\x34\xee\xf3\xae\xdb\xe9\x1f\xdb\x8a\x54\x6b\xe7\xa4\x00\x3b\xcb\xaf\xab\x26\x2f\xb0\x50\xfe\xa4\xe2\x0b\x95\x6f\x69\x86\xf8\x07\xb5\x3d\x04\x06\x81\x4a\xf0\x0f\x20\x87\xb2\x57\x56\xc7\x4b\x57\xe3\x13\x27\x97\x18\xad\x8f\x95\x2e\x15\xd9\xfa\xde\x8d\xab\x98\xdf\x25\x79\xb5\x03\x91\x18\xb9\x33\x5b\x93\x30\x0f\x38\x68\x43\xb4\x59\x0e\xc5\x7a\x75\xbf\x05\x6c\x41\xae\xd1\xe2\x22\xaa\x2b\xee\x4f\x66\xbe\xf6\x3d\xe8\xb4\x00\x12\xf2\xe7\x3b\x9e\xc6\x3d\xeb\xf2\x46\x85\xfd\x21\xf9\x78\xd6\xde\xfe\x06\x97\x0b\xc9\x2d\xa8\xc2\x85\x8a\xc4\x78\x0f\x2a\xd3\x79\xe2\xe3\x04\x75\xcd\x50\xfe\x00\xdb\xfc\x7d\xd8\x8e\xe0\xb6\x46\x45\xe9\x9d\xed\x98\x60\x9a\x46\x48\x3f\x98\xf0\x0b\xcd\x88\x4f\x15\xb4\x40\xfd\xe7\x1d\xf5\x01\x1d\xa0\x52\x59\x2f\xaa\xbe\xb0\xb3\xe1\x15\xa3\xe8\xde\xcf\xf1\x5c\xc1\xa1\xfa\xc7\xdf\xfe\xf7\x03\xfd\x8f\xbf\xfd\x67\x30\x9b\xbe\xde\x00\x47\x51\x4b\xb3\x1f\xe1\xd2\x42\x63\x07\x1a\xfa\x59\x8c\xf9\xda\x18\x91\x67\x30\x00\x8a\x63\x8b\xce\x2a\x4e\x74\x57\x6e\xb7\x46\x50\xba\xfd\x9d\x18\x42\xb8\x5c\x2c\xbd\xf2\x24\x2d\xd4\x48\x63\xf1\xed\x6f\x2d\xf6\x4d\x2d\x51\xeb\x10\x35\xb5\x36\xf0\xd9\x5c\x29\x10\xe9\x73\x20\x90\xa1\x24\x51\x7a\x9c\x27\x71\x47\x73\x6b\x88\x88\xdb\x45\x67\x77\x4f\x53\x60\xbd\x06\x2d\x07\x56\x8f\x3d\x6d\x3b\x38\x7b\x83\xc6\xe6\x40\xee\x69\xc3\xdb\x4f\xf5\x61\xb1\x45\x44\x4b\x58\x43\xee\xb5\xba\x62\x7e\x2b\x01\x42\xa7\x56\xa8\xae\x36\x43\xba\x71\x70\x3b\x49\x55\x62\xef\x1d\x7b\x36\xa6\x0e\xa0\x76\x57\xdc\x3e\x0e\x45\x34\x4b\xb0\x9c\x00\x2c\x32\x38\x6a\xcf\x3a\xd4\xc2\x15\xb3\x40\x12\x67\xf5\x09\xdd\x21\x2c\x7a\xa4\xba\x64\xd7\x11\x96\x31\x99\x53\x59\x29\x5a\xbd\x27\x6d\xc9\x9e\x88\x0a\x18\xc7\x1b\x19\x01\x10\x13\x69\xfd\x1f\x1b\x02\xee\xe8\xd2\xae\xea\xee\xfe\xed\x55\x75\x47\xef\xb9\x0e\x7a\xb7\x10\x0a\x7a\xb6\x8a\x05\xf5\x1e\x7e\x93\x14\xc0\xf5\x3d\xab\x13\x7d\x42\x89\x81\x01\x3b\x4d\x2a\xe0\xe5\x50\xdc\xe4\x65\x92\x36\x02\xed\x83\x75\xb7\x44\x16\x66\xa0\x8f\xc0\x75\x56\xc8\xe3\xbb\x25\x12\x13\xd8\x06\x72\xea\x34\x65\xe6\xcb\xe8\xe4\x6e\x7a\x94\x09\x81\x71\xaf\x6e\x7f\xd3\xb8\x9f\xb4\xcf\x74\xe2\x40\x48\x5a\x59\xdd\x35\x9c\x3d\x03\x15\x34\x27\x6d\xd4\x75\x76\x02\x6c\x8f\xd1\xfc\x02\x5a\x0a\x3e\x94\xac\xca\x38\x81\xb6\x07\x46\x90\x0d\x6f\x32\x5c\x05\x0d\x40\x1a\x52\x85\x8a\x0e\x8d\xba\x01\x14\xc4\x2e\x91\x87\xb8\xb6\x43\x90\xd6\x01\x09\xce\x9e\x9e\x78\xc8\x4b\xc7\x78\x00\xbb\x54\x13\xd1\x01\xe2\xdd\xc2\x9d\x2f\xbb\x04\x7f\x0b\xea\xd3\x7e\xa4\xc1\x7e\xa2\x46\xde\x38\x32\xf1\xde\x82\x68\x01\x77\xa4\xd1\xd7\x0c\xee\xcb\x74\x09\xa4\x8f\x5c\x9b\xd0\x17\x88\x15\x35\x09\xec\x5d\x55\xe1\x56\xb1\x07\xcc\xb1\x65\x93\xf0\x72\x2f\xad\xe2\xd3\x97\xda\xff\xfc\x5e\xf0\x60\x28\x6e\xa0\xd3\x0b\x88\x7b\x73\x3a\x90\x38\xc0\x69\xd9\xad\xe0\x4e\x2c\x46\xf6\xde\x2a\xf0\xa8\x7b\x05\xe3\x89\xf0\xc5\x46\x09\xdb\x94\xd5\x1f\x4c\xfa\xe2\x65\x51\x45\xbf\xd3\xff\x8a\xe5\x79\xc0\x24\x33\x14\xf7\x33\xdc\x07\x22\x86\x34\x2e\xea\x1a\x61\xc1\xe4\x6e\x62\xc9\x16\xba\x80\xc0\x5f\x1d\x99\xca\xe8\xd0\xc8\x42\x6f\x7a\xf4\x06\x41\xbe\xc0\x80\x82\x85\x02\x18\x99\xdd\x4b\x66\xf3\x36\xaf\x17\x6b\xef\xc8\xfe\x52\xaa\x6a\x72\x44\xa5\xf1\x49\x05\x5e\x11\x67\xf9\x36\x01\xb0\xc1\xc1\x9e\x89\xed\x86\x39\x49\xc3\xe0\x92\x67\xd0\xbc\xac\x0a\x92\xba\x8c\xc9\x06\x4d\x6e\xa6\xd9\xa2\xd7\x5d\xb3\x1d\x6b\x8d\x7a\x0b\x36\xe9\x94\xac\xc5\x08\x4d\x8b\x7f\x6d\x80\x43\x69\x6a\x8f\x45\xee\x9c\xcb\x0f\xac\x37\xd4\x14\x11\xd3\x5e\x76\xc0\xe9\xfe\xaf\x25\x1c\x3e\xd1\x72\xb1\x34\x87\x3c\x68\x02\x9c\x75\xd5\xc0\x4e\xe8\xec\xa9\xf9\x0b\xf6\x23\x47\xc2\x98\x9d\xe6\xed\x86\xfa\xe7\x4a\xa8\x8b\x84\x4a\x2b\x00\x01\x72\xcb\x53\xba\x48\x90\xcb\x6f\x2f\xa1\xb2\x6f\x53\x27\x62\xfb\xd9\x03\xfd\x19\x91\x2a\xae\xc2\xda\x11\xd7\x70\x97\x03\x72\xb6\x35\xcb\x8a\x34\x72\x11\x5c\x41\xb5\x9e\x9c\xf6\xc8\xdd\xa7\xe8\xee\xe3\x5d\x41\x37\x7d\x75\xfb\x41\x6b\x94\xa7\xd0\x0b\x8a\xfd\xae\xde\x26\xc6\x35\x4b\xbc\xb2\x86\x0a\x7b\xa1\x32\x3a\xe2\xb4\x45\xb9\x95\x9d\xb3\xd2\x8a\x95\x8a\xe4\x1b\x01\xb0\xe2\x3b\xdf\x59\xa1\xd1\x54\x88\x1a\xc1\x48\x17\x58\x28\x20\xc5\x62\x6d\x30\x48\x56\x27\x7d\x59\x64\x3f\x96\x20\x83\xec\xfa\x39\xf4\x65\x9d\xc7\xfc\xad\xd0\xc6\x8b\xcc\x38\x0d\x92\x19\xe5\x78\x44\x9e\x22\x08\xdc\xfe\x66\x9b\xe2\x01\xd0\x8a\x4c\xe6\x3d\x93\x64\xb1\x6c\x8b\x28\xa7\x77\xea\x06\x0e\x0f\xe1\xfb\x88\x81\xd5\x32\x13\x07\xa9\x86\xad\x55\xd2\x16\x29\xe4\x95\x9a\x4f\xe6\xb9\x26\xfb\x61\x9d\x3e\x05\x9e\x90\x97\xc9\x9a\x31\x3a\xc1\xec\x8a\x40\x7e\x54\x2b\x60\x61\x70\x5b\xcc\x69\x5e\xa2\x57\x1b\x5d\xd2\x3f\x35\xa8\x94\x42\x3f\x2b\x38\xa8\x6d\x4a\x12\xd3\xc0\x0d\xb3\x6a\x18\xc8\x19\x59\x13\x71\x9f\xfa\x5d\x81\x52\x66\xb8\x9f\xa4\x75\x87\xfb\x48\xb3\x59\x24\xac\x63\xc5\xc6\x17\xeb\x56\xe0\x29\xea\x2a\x4f\x72\xf4\x7b\x00\x44\x94\x63\x38\xea\x65\x09\x6b\x62\xef\xb0\x2e\xae\x66\xd4\x49\x4c\xa2\xf8\xd4\x5a\xd2\xa4\x69\x14\x71\x3f\x38\x29\xeb\xcd\x5c\xdd\xa0\x66\x1c\x6f\xc0\x82\xd5\x1c\xd6\xe6\xc5\xfe\x0a\x08\x2f\x54\x6b\x97\x75\x8f\x20\x01\x78\xb4\x23\xae\x7e\xc6\x0c\x19\x50\x0c\xa7\xf9\x1a\x1a\x7d\x0d\x01\x19\x6d\x69\xfd\x0d\x7c\xbb\xaa\x76\xaa\x1e\x4b\x7d\xe4\xb6\x45\xb7\x15\x63\x63\x86\x85\x90\x11\x18\xc0\xd2\x34\x5a\x14\xcf\x3c\x1f\xd4\x3b\xdb\xa6\xb8\xbc\xdb\x0f\xeb\xca\xed\x94\x99\x35\xdb\xb7\x3d\x8a\x36\xd8\x58\x94\x69\x81\x29\x93\xc9\x12\x75\x98\x95\x5b\x74\xbe\x45\xb1\xc1\xb3\x44\x8b\xbd\xdd\xca\x40\x70\xcd\x57\x05\xb9\x70\x85\xeb\x75\xd6\xaf\x97\x58\x6b\x08\xae\xd6\x4c\x1b\xce\x04\xfa\x32\xc1\x91\x3a\xf0\x15\x5e\x1e\xed\xd9\xde\xfe\x46\xe6\xd5\x69\xb8\x2e\x8b\x80\x7c\x70\x47\x56\x29\xda\xd3\x00\x05\x0d\x72\x0d\x15\x51\x8c\x7d\x40\x6b\x2a\x8f\x2b\x3d\x14\xbb\x93\xd3\xf5\x90\x93\xac\xfd\xce\x9a\x7f\xcf\x3d\x03\x95\x0e\xb3\x3b\xaa\x18\xdd\x18\x31\xb4\x73\x5f\xb5\xe4\x84\x82\xe1\xa0\x63\xc2\x40\xb4\x10\x0b\x0e\xdb\xc6\x1e\x28\xe0\x12\x3c\x07\x3a\x38\x2f\x6c\x25\x46\x4d\xa0\x1c\x91\x9a\x10\xc9\xb6\x34\x46\x08\x00\x17\xc9\x4a\x3a\x12\x91\xac\x3f\xf0\xf8\x57\xcf\x27\x98\x45\x2d\x8f\xbe\xee\xda\x72\x4b\x26\xcc\x31\xa1\x8b\xc8\xe1\x08\xdd\x44\x5a\x9b\xf3\x65\xed\x28\xa3\x2f\x9a\x61\xaf\x79\x7b\x0d\x74\x8b\x7a\x37\xbf\x8d\x0d\xb8\xd2\x6e\x5c\x33\xa0\x75\xdb\x94\x8b\x44\xea\x9e\x98\x8b\xc4\xcc\x1c\xbe\x21\xa5\x14\xa5\x67\x35\xfe\x59\x56\x08\x82\x8a\x69\x6f\x5c\xaf\x22\x7f\x21\x5a\x26\x11\xfc\x17\xf5\xb2\x11\xb3\x00\x6b\x27\x58\xe4\x60\x7a\x4f\x5b\x33\xda\x81\xd3\xd6\x92\x54\x30\x25\xd5\x1c\xee\x6b\x9f\x42\x7f\xdd\x32\x47\x3b\xea\x77\xf1\xf4\x0c\x6e\xc4\x40\x1f\xd0\x6b\xcb\x39\xde\x4b\xf2\xa2\x20\x44\x66\xb8\x90\x4b\x78\xd4\x7c\x5d\xd6\x37\x3d\x3b\x22\x52\x6d\x35\xa2\x99\x1b\xaf\x34\x0b\xac\x22\x68\x39\xd8\x67\x09\xd9\x06\x66\x10\x62\x6f\x8c\x05\xc4\xf0\xda\xbe\xa0\x93\xa2\x33\x04\x1a\xdc\xd9\x18\x82\xa7\x0c\xf5\xaf\xce\x1e\x42\x16\x73\x6b\x05\x31\x2a\xed\xc0\xf2\x34\xb0\x81\xd8\x59\x87\x14\xa7\x1e\x01\xc9\x10\xa2\xb4\xfe\x95\x42\x08\x20\xf9\x91\x83\xb3\x87\x2f\x0a\xbc\xe9\x0b\x92\xcf\xa2\x0a\x3e\x38\xb1\x13\x46\x3c\x14\xaf\x4a\x63\xf6\x38\x41\xfd\x2c\x21\x59\x1b\x09\x73\x1e\x72\x8d\x5b\x00\x04\xa7\x58\x76\x33\x38\xc9\xf8\x1a\xf7\x52\x58\x71\x54\xf4\x55\xdc\x96\x26\x25\xb7\xdd\x37\xc0\x2a\x37\xf5\xea\x5b\x14\x9e\x5a\x74\xe3\x82\x19\x52\x98\xc9\x77\xdf\x3c\x94\x4f\x29\xe9\xe1\xed\xd4\x0f\xeb\x0a\x2e\x64\xdc\x04\xb4\x2e\x7c\x93\x7b\xae\xe7\x4f\xda\x1b\xd5\xaf\xc4\xc3\x2b\xd2\xdb\x92\x33\x3a\x89\x3a\x41\x13\x71\xb5\x47\x8c\x56\x5e\x48\x0d\xb5\x96\x6f\x0a\x9b\x4e\x2d\xae\x7f\x02\xc0\xa1\x8a\xa7\x3a\x62\xa7\x1e\x72\x08\xf1\xd8\x44\xc4\x43\xdb\x83\x16\xa4\xf0\xc8\x95\xe9\x87\xb8\x1b\x56\x41\xc1\x25\xe9\x77\xd0\x7a\x1d\xc8\x86\x6d\x49\x80\x86\xae\x5f\xb1\x0f\xb0\x95\x90\x44\x55\x35\x4d\x4c\x97\x59\xa4\xd2\xc6\x72\x32\xe4\xc3\x31\xe3\x09\x1b\xec\xb2\x18\x8d\xc7\x3b\xc6\x16\x3e\x6d\x77\x63\xf4\x3d\x43\x3d\x47\x20\x67\x69\xa5\x59\xae\x25\xa6\x51\x45\x4b\xfc\x06\x35\xf7\xd1\x55\x1d\x4d\x55\x7b\x84\x15\xe7\xb6\xbe\xfd\xad\x25\x41\x75\xcc\xbd\x18\x2d\x15\x64\x96\x63\xc6\x4b\xb8\x43\x3b\x89\x69\x7a\x6a\x3c\x6d\x63\xaa\x3a\x98\x9e\x01\x5f\xb4\xa0\x8f\xd2\x55\x80\xc1\x73\x0f\x8a\x69\xbe\x65\x55\x14\xe1\xc2\x2f\x7d\x65\x6c\xf7\x8c\x30\xf8\x19\x9d\xe4\x8d\x58\xf9\xd2\x92\x9f\xda\x93\x2a\x01\x7c\xb4\xa3\x1d\xb2\x48\x96\x2c\x84\x98\xc4\x13\x13\x11\x97\x35\x59\x75\xfa\xdf\xd2\x8b\x3c\x90\x4e\x92\xae\x01\x2e\x79\xd0\x93\x4e\x2f\xb0\xfc\xee\x4e\x98\xd3\xeb\x1c\xa1\x63\x41\xef\x27\x4b\x62\x94\xf1\x54\x10\xa1\xcf\x23\x79\xe2\xf1\xb0\x97\xa4\x39\x3a\x85\x3a\x31\xee\xa5\x95\x6e\xc6\x89\x96\x1d\x96\xb6\xfd\x6e\xc2\xd5\xd7\x73\xf8\x37\xf3\x9b\x78\x98\xc9\x5f\xdd\x0d\x50\x86\x9d\x13\xbd\x92\x29\x19\xa5\x94\x60\x01\x77\xe1\xd1\xfe\x9c\xba\x98\x11\x90\x71\x38\x5c\x3d\x76\x01\x24\x53\xdf\xfe\x56\xcb\xf9\x07\xcc\xcd\xd1\xee\x4b\x30\xd7\x12\x5d\x20\x7e\x27\xdc\x94\xb9\x7f\xde\x13\x25\xd4\x91\xb7\x4e\x33\x0c\x7f\x22\x5f\xd8\x36\xa5\xb6\xec\x99\xca\xb5\x8d\x4b\xa2\x6c\x96\x88\x91\x24\x8e\x18\x51\x8a\xd4\x82\x87\x67\x2f\x34\xac\x0c\xf0\x14\xb0\x78\x49\xb1\x1a\x66\x74\x1e\xe1\xb4\x01\x52\x04\x32\x24\x8c\x5f\xe5\xfd\xbc\x03\xce\x92\xa2\x49\x68\x94\xcb\x86\x9c\x60\xe5\x08\xda\x33\xc7\xd0\x99\x0a\x92\xb1\x1e\x1d\xff\x64\xeb\x9e\x5d\x27\xaf\x91\x7b\x32\x0b\x80\xf5\x85\xdf\x79\x3f\x94\xa1\x5f\x01\xcc\xec\x29\x24\x79\xa0\xbb\x07\x77\xfe\x88\x6e\xb9\x27\x2c\x16\xb0\x34\x3b\x22\xa8\x68\xe1\xc7\xef\x14\xcc\xb4\xae\x53\xbd\xc3\xe3\x65\xb0\x06\xa3\x08\x81\x17\x61\x9f\x4d\xe6\xaa\x2d\x15\xe4\x49\x5b\x1e\xd2\xdf\x69\x8f\x95\x64\x8c\xc0\x2d\xc7\xbb\xcc\xdf\x76\x99\xc9\x78\xc3\xfd\xc4\x70\xa4\x8b\x8f\x51\x44\x45\x2a\x64\xab\x63\xf9\x24\xf2\xe7\x2f\xd2\x89\x1b\x31\xd6\x12\xbd\x8d\xb6\xc0\x11\x42\x73\x1c\xee\x91\x13\x5b\x09\x5b\x60\x9c\xfc\xf8\xfe\x37\xf3\x01\xa9\x37\x10\x52\xe1\xf8\xc8\xf0\xc6\x6a\x1e\x29\x7e\xe4\x6b\xa0\x2b\x38\x24\x51\x81\x21\xe1\x50\x0f\x76\xb6\x47\x6e\x10\xd8\x1d\xd3\x9a\x63\x93\x50\x09\x6e\x78\x16\x72\xa4\x74\x6c\x0a\x99\xcc\x57\x20\x4f\xad\xca\x55\xa4\x7d\xb1\x2e\x3e\xb3\x68\x82\x27\xd1\xd4\x4c\x1c\xa4\x04\x08\xc9\xbd\x13\x2f\xc0\xd4\xe2\xcd\x16\xb5\x73\x91\xcf\x41\xe8\x96\xdd\x8e\x17\x81\x0a\x02\xe9\xe4\xc0\x45\x89\xe0\xe6\xa1\xba\x83\xd4\x56\xfe\x2e\x26\x6f\x50\x73\xf9\x36\x61\x93\x87\xb1\x63\x38\xfb\xdd\xc0\xe0\xee\x2c\x7b\xc2\xd7\x3d\xeb\xbb\x81\x19\x49\xfc\x22\x37\x7d\x7b\x73\x80\x34\x1b\xf8\xf1\x0f\x2b\x9d\x6f\x09\xb2\x06\xa8\x50\x7e\x53\xae\xf2\x16\xee\x61\x0b\xda\x69\x72\x09\x5b\x3c\x2f\x2b\xbc\xd9\xce\x11\x17\xe6\x79\x8b\xc1\x9a\x5c\x8e\xc5\x7e\xe4\x89\x3f\x30\xdd\x0f\xdf\xe8\x1d\xd0\x9f\x05\x46\xd3\x64\xf7\xfb\x32\x6d\x55\x91\xa2\x83\x22\xb2\x7f\xe8\x3a\x01\x03\x41\x85\x6f\x07\xbd\x61\x40\xec\x42\x54\xa8\xa1\x93\x30\xc6\xb6\x2c\x01\x82\x70\x67\xab\x55\x27\x84\x82\x0e\x12\x5f\xb9\xbe\xae\xf7\x8e\xe1\x77\xfe\xf0\x64\xc1\x37\x6a\x7a\x6f\x2e\x18\x95\x6b\x96\xf7\x39\x89\x40\x4e\xbf\x25\xdb\xfd\x33\x12\x6e\x3a\xce\x9b\xce\xa9\xbb\x68\x3e\x4f\xa1\x35\x19\xe9\xbf\x48\x28\xdc\xc6\x02\x2a\x66\xb8\xd9\x13\xf6\x25\xd6\xa9\xbf\x63\x9e\x7b\x55\x02\xb9\xc6\x05\xdc\x15\xef\x49\x8d\x91\x45\xbe\x97\xd0\x4c\xc9\x40\xe1\x6d\x40\x3e\xe7\x38\xe2\x9a\x3f\x53\xa0\x0d\x4e\x8a\xd9\x74\x2e\x1c\xdb\xc6\xd4\xdf\x68\xa2\x82\xc0\x09\x41\xe5\x2e\x06\xaf\xd3\x7b\xc0\xe5\xcf\xea\x0c\x68\x25\xd6\x66\x3a\x22\x47\x14\xff\xae\xca\x39\x80\x8c\x8b\xd1\xe3\xc6\x06\x8d\xdb\x12\x33\xfa\x74\x55\x02\xfa\xd5\x4d\xeb\x42\x47\x3c\xcd\x19\x9c\x16\xa0\x9d\x2a\x3b\x29\x6f\x54\x7d\x63\x7e\xda\x88\x5a\xaa\x65\x58\x12\xac\x81\x6d\x61\x8c\xbc\xa0\x73\x83\xff\xc8\x2f\xd3\x84\x0b\x53\x09\x6a\xf7\x87\x42\xaf\xfa\x19\xa0\x5d\xe7\x03\x14\x59\x7d\x0a\x58\xa1\x5a\x08\x0e\x33\x49\x3c\x47\xd2\x0b\x86\xe7\xc1\x22\x9c\x02\x4f\x5c\x52\xe3\xdd\x71\xae\xa8\x85\x5a\xe6\x7d\x65\x6c\x2e\x99\x09\x22\x11\x6b\x8b\xc4\x98\xc3\x64\xe0\x96\xbb\x44\xb5\x3c\x7b\xd5\x4e\x5e\x48\x41\x95\x7e\x8e\x3e\xea\x2c\x33\x7f\x91\x5c\xa1\x43\x01\x5a\x2f\x8e\x54\x33\x27\x47\xdb\x96\xcc\x17\xab\xfc\x06\x4b\xcf\xed\x9f\x84\x00\x9a\x30\x42\x8f\xda\x2f\x62\x5b\xb4\x35\x5f\x0c\x8d\xf6\x77\x1b\x31\xa2\x8e\xf4\x96\xad\x18\xb6\xbf\xa1\x15\xa3\x56\xa8\xf0\xec\xbb\x35\x1a\x1f\x01\xd9\xb4\xe8\x1d\x6d\x0c\x72\x22\xc1\xf4\x1c\x42\x6c\x83\xe9\x35\xc6\x10\xfb\x9f\xf6\x52\x27\xba\x76\xf0\xd8\x07\x34\x82\x9c\xa7\xe7\x55\xaf\xee\x7f\x2b\x60\xf6\x49\x84\xed\x39\xde\x4b\x2c\x97\x58\x2e\xae\x31\xe5\x13\x0f\xd2\x04\x6a\x1e\x32\xa3\x80\x60\x1e\x66\x5f\x35\x8f\xb7\xa6\xdb\x8e\x30\xd9\x05\xed\x3d\x7c\xf6\xe2\x02\x7d\x59\xac\x7b\x63\x5a\x35\x1b\x62\xb2\x39\x96\x8a\xe2\x82\x39\x56\xd0\x74\x0f\x2b\xdf\xc2\x2d\xce\xec\x49\x5d\xa2\x48\xbc\x46\xd6\x12\xed\xb7\xcc\xa0\x00\x48\x10\x45\x88\x43\x7e\xb1\xc5\x08\x45\x0e\x68\x31\x5d\x7b\xd1\xa7\xae\x5b\x63\x08\x47\x4b\x45\xc5\xb1\x06\x27\x52\x1f\x63\xa1\xc3\xe0\x82\x83\x74\x68\xdb\x97\xc8\x3c\xa3\xa6\x7e\xdd\x16\x35\x1a\x9d\x4d\xff\x62\x77\xb6\xbb\x9a\x72\x01\xdb\x99\x11\x6b\x01\x39\x88\x9a\x3d\x63\xba\xe4\xc8\x19\x85\x0f\x82\x2c\xb5\xa4\xb8\x1b\xc3\x49\x6f\x42\xdf\xf7\xeb\x94\xfa\xa8\x31\x9c\xb3\x42\x63\x50\x49\x40\x61\x36\xac\x43\x8e\x61\x77\x3d\xab\xca\x7a\x03\x5c\x8c\xec\x97\x2d\xb2\x9c\x15\x7f\xf2\x6b\x8b\x8b\xd0\x31\x71\x23\x2a\xfd\xc7\xff\xfc\xcf\xc9\x63\x5e\xe8\x79\xd7\xae\xe0\x6f\x84\xb1\xdf\x23\xee\x87\x74\x93\xbe\x7e\x09\x42\x0c\x1d\xdd\xec\x95\x63\x64\xe7\xe6\x08\xd7\x7c\xac\xdd\x99\x46\x99\x07\x4f\xb5\xb1\x48\x4a\x9c\xe7\x9a\xb4\xd6\xfe\x07\xa1\xfe\x74\xcc\x13\x14\x54\x09\xc9\x5e\x1a\x57\x5a\x47\x9d\x7f\xed\xcb\xc5\x66\xb6\xc2\x1c\x02\xd9\x4b\x60\x14\x72\xa3\xed\x91\xdb\xab\x5b\x97\xda\xb7\x81\x7b\xe0\xdc\xd0\xd5\xe5\xfb\xde\x13\x61\x5f\x70\xf8\x8d\xcd\x07\xe2\xb9\xe4\x86\x44\xb5\x43\x1d\x81\x09\xd6\xb9\x51\xb0\xd7\xc9\xae\x47\x37\x3a\xc4\x1a\x1e\x93\x22\xca\xc8\x4a\xce\xbd\x18\x84\x22\x37\x10\xaf\x37\x8a\x30\x24\xb9\xd3\xef\x8d\xa6\x03\xd3\xa7\x60\x72\x62\xd2\x23\x3e\x85\xa3\x7b\x59\x63\x89\xfe\x92\x56\xaa\xb8\xc2\x60\x8f\xf6\x5e\x92\x08\x71\x16\x9a\xdc\xb5\x4a\x01\x29\x6d\x7b\xe0\x82\xdb\x64\x59\x56\xe8\x73\x29\x36\x73\x0c\x94\xef\xf2\x55\xf6\x0a\x7d\xbd\x7f\xb9\x52\xc0\x93\x72\x14\x7f\xbe\x4a\xb9\x66\x2d\xbd\x81\x68\x74\x24\x7f\x24\xd0\x42\x67\x50\x25\x4e\x74\x81\x29\x31\x38\x15\xc6\xe4\xb0\xe6\x78\x38\xdc\x93\x0a\x78\x4e\x28\x3f\xc1\x7f\xe0\xdc\x54\xc0\x11\xc1\x1e\x50\xe0\x45\x25\x21\x9f\x2a\xc1\x0d\x00\x3a\x9d\x3d\xe6\x7f\x01\x0c\x95\xca\x81\x6b\x41\xb9\xd6\xd3\x67\xb1\x15\x97\xcc\x86\x6d\x7e\x95\xfd\xd0\xac\xf9\x07\x6c\x38\xe5\xcc\xf8\x89\xe4\xc7\x25\x17\x52\x2c\x07\x56\x3b\xac\x29\x61\x4d\x6a\xab\x23\xb1\xc9\xe9\xd8\x9c\x99\xbf\x12\x33\x85\x69\x3c\x15\x53\x2e\xb9\x3a\x8e\x31\x1e\x50\x63\xc2\x8e\x34\xae\xb1\x44\xb9\xff\x29\x79\xef\xda\x32\xbc\x19\x9a\x96\x1c\x53\x9a\xd6\x96\xc2\xcd\xa2\xd1\x2a\xf6\xca\x58\x28\xec\x97\x82\x9c\xae\xf3\xae\xdf\xda\x22\x8e\xad\xb9\xfd\x8f\x8a\x2c\x8c\x52\x08\xa8\xab\xd8\x70\xd7\xda\xe0\x14\xcc\x68\xc3\x02\x2c\xed\x88\x57\x3c\xf5\x37\x41\xfb\x1f\x6a\xe4\x6a\xa0\x90\xed\x6b\xbc\x49\xde\xe7\x05\x6c\x43\x3b\x0b\x5a\x7b\xca\x0c\xaf\xa2\xdd\x58\x7f\x5f\xa3\x81\x5c\x1d\x1a\x6c\x4f\x45\x1e\x72\xb4\xbf\xf1\xa1\x9b\x1d\x88\x91\xae\xfe\x6b\xc4\x16\x95\x06\xe8\x15\x74\xdf\x68\xf4\xf7\xb7\xf5\x9f\x91\x77\x50\x83\x0c\xf5\xfe\x56\xb9\xa6\x7c\x3f\x2a\xfb\xa5\x77\x56\xf1\xe1\xac\xc7\xaa\xed\x99\x35\x2a\xe2\x4c\x6d\x02\xc7\x58\xcf\x4c\xa7\xf8\x80\x79\x6c\x98\xeb\x46\x36\x8f\x6d\x83\xf1\xee\xf1\xc7\xd9\xae\xca\x17\x4a\x22\xb4\xa8\x0a\xb1\x36\x98\x6d\x26\x18\x45\xba\xa2\x1a\xc3\xb1\x08\xc8\x5d\x3e\xcf\x1e\x14\x18\x48\xe8\x3e\x10\x3c\xcd\x97\x95\x83\xa5\xf9\x2e\x14\xc7\xeb\x7c\xec\x0b\x30\x61\x78\x19\xa2\xd5\xd2\x21\x62\x6a\xd8\xd7\xa8\xc5\x9d\xb8\x16\xd7\x89\x7b\xf6\xb9\xe2\x76\x0c\x07\xa5\x83\x3b\x77\xdc\xd5\xc1\xd4\x2c\x1f\x19\xe3\x8e\x0e\x88\x25\xbc\x00\x46\x70\x58\x3c\xc5\x40\x40\x21\xb0\x94\x61\xc3\x58\x1a\x46\xeb\x6a\x49\x47\x05\xa2\xc0\x75\xd3\xc3\xbd\xd7\x92\xb6\xe6\x0a\xef\xbf\x78\x65\xd4\x82\xf7\xbc\x98\xcd\xaf\xa9\x81\x5c\x7c\x9d\xc4\xbd\x8f\xcd\x73\x8a\x2a\x3a\x60\x71\x30\x5e\x98\x9b\xe0\x0a\x6b\x62\xce\xe0\x9e\x09\x1b\x68\xca\x6a\x61\x78\xb4\x91\x8f\x53\xcc\xd1\xa5\x25\xe4\xad\x8b\x17\x45\x35\x10\x63\xa1\x06\x11\xbe\x3d\x55\x5a\x05\x72\x55\xc7\xe6\x7c\xab\xef\xf6\x0d\xf5\xa3\x23\xc3\xcd\x62\xda\x1c\x6e\x31\x87\x51\xbd\xa2\xa8\x26\x66\xf8\x3e\xd6\x7c\xdb\xe8\x6e\x41\x81\x0a\x1d\x36\xdf\xaa\x92\x1a\x73\xec\x42\x77\xe7\xa0\x5e\xb3\x2b\x60\x72\x57\xfb\x1a\xe2\x61\xa3\xbd\xc9\x1e\xbc\x79\xf4\x16\xf3\xa5\xe0\x1d\x58\x2b\xde\x1e\x67\x9b\x7a\xf3\xe5\x5b\x10\xae\x1f\xbc\xf9\xea\x2d\xe5\x51\x1a\x34\x9f\x2d\xf3\x8d\xca\xf8\x06\xc5\xd6\xdc\x1b\x99\x2e\xb1\xa9\xa9\xbf\x6b\xd5\x65\xd9\xf4\x1a\x53\xa6\x81\x3c\x86\x4e\xc7\x9c\x4b\xcd\x92\x92\xf7\xb0\x51\x12\xfc\x15\x7e\x62\xb2\xc0\x79\x37\x06\x54\xa1\x90\x2f\xcf\x86\x54\xa1\xee\xb7\x33\x81\x86\x46\xc2\xf1\x92\xff\xce\x5b\xdb\xb3\x7c\x45\xe1\xaa\xcb\xde\x79\x40\x42\x8b\x01\x80\xa0\x2c\x10\x00\xb0\x1e\xa3\x67\xf8\x0b\xff\xfa\x96\x96\x86\xe0\x78\x67\x07\x6b\xac\xd9\x2a\x50\x59\xcc\x4b\x3d\x12\xe8\xce\x96\xad\x69\x48\xdf\x38\xe7\xd6\xb9\xb5\xe6\x86\x5f\x65\xae\x52\xeb\xa5\x9d\xab\x88\xdb\x7a\xd0\xac\x55\x04\x38\xae\xff\x33\x31\x6e\x66\x97\xe2\x3a\x1f\xe9\xfb\x6a\xbc\xb1\x90\x74\x83\x70\x7e\xb3\x68\x8b\x10\xba\x1e\xd9\xfe\xe3\xd0\xe5\x79\x4a\x4f\xe1\x74\xfe\xc4\x5e\x31\x7f\x03\x9c\xf4\x92\xfa\x6b\x31\xdd\x86\xaa\x6f\x68\xe3\x45\x91\xc5\xb7\x21\xd0\xd8\x94\x8d\xcf\xcc\x86\xfd\xc1\x71\x76\x0d\xa5\x19\x34\x0c\xbf\x25\x78\x14\xbd\xcd\x51\x35\x16\xc7\x43\x05\xa7\x94\x9a\x20\x4e\x60\x74\x41\x96\xc3\x4b\x1c\x7b\xac\x01\x8a\xd6\xed\x25\xa8\x5a\xd6\x33\x13\x9d\x43\x72\x0d\x7b\x0c\x68\x36\x3c\x61\x78\x9b\x78\xe8\x96\x37\x3d\xb0\xec\x64\x89\x7a\x9e\xb3\xfa\xd5\x0b\xcf\x75\x86\xc6\xef\x42\x1b\xb5\x49\xf6\x40\xa2\xdb\xc6\xdb\x6e\x9f\x30\xa8\xa2\xc4\x50\x81\xbc\x9d\x73\x12\x3b\x03\xf3\xd8\x6b\xcd\xcc\x3b\xbf\xc4\xac\x89\x12\xf6\x6e\x4a\xf9\xbe\xe6\x93\xcd\xd7\x34\x69\x77\x83\xaf\x8b\xa6\x6a\x84\xd9\x48\x9f\xe2\x70\xf1\x67\xd4\x6b\xc3\xb1\x0f\xf9\x51\xfe\xe8\x4e\x86\xb6\xcc\x86\x4a\x45\xc6\x08\x6a\xee\x59\x0e\x7f\x14\xb7\x4e\xab\x3c\x0f\x3e\x4a\x04\x19\x4f\xd0\x6a\x4a\x47\x3a\x40\x3b\x0b\xd7\xe2\x8e\xf6\xd6\x1a\x31\xaa\x70\xae\xa6\x90\x69\x26\xba\x83\x04\x38\x27\x9b\x96\x67\x89\xac\x65\x89\x77\xd8\x4d\xc6\x07\x36\x62\x3e\x4f\xf3\x4e\x93\x31\x8b\x68\x9e\x9c\x40\xc2\x9a\xe4\x2d\x94\x8f\x70\x00\x77\x40\x86\x67\xec\x16\xa6\x33\x0b\x1d\x9e\xee\xaa\xe2\x70\x94\xf1\xda\x62\x2f\xb4\xd5\xd2\x1b\x10\x2a\x53\x23\x39\x12\xc1\x52\xbe\x88\x5d\xa7\x7e\xe6\x44\x97\xdc\xc9\x1b\x74\x1a\x8d\x34\x07\xb1\x30\x3b\x82\xff\xc4\x33\xe0\x7f\xb3\xe1\x1c\x03\x99\x17\xe4\x33\x62\xca\x44\x3a\x16\x80\x34\xa8\x4a\xec\x2b\xb8\x8b\x58\xdd\xf0\x04\xb5\x85\x75\x29\x8e\x52\xe2\x57\x38\xb5\xb5\xbb\x35\x32\x41\x5d\x63\x07\x7d\xe2\x69\x98\xb5\xc4\xab\x9a\x59\x90\x05\x10\x27\xcc\x09\x8f\x9e\xab\xdc\xe8\x4b\x53\xae\x22\x76\x63\xee\x1c\x03\x05\xfc\xdc\x92\xd9\x3b\xe8\x7b\xe0\xa3\xc1\x9a\x85\x58\xd4\x06\x68\x97\x9e\x3d\x8f\xa8\x09\x92\x04\x74\x88\xc7\xd8\x07\x8f\x71\x00\xaa\xf8\x90\x06\x7c\x88\xdc\x43\x21\x14\xf2\x2f\xf4\x83\xe9\xa4\x40\x97\x05\x90\x60\x97\x9c\x6c\xc0\x75\x88\x14\xf0\xce\x8b\xd5\x88\x18\x8d\xc2\xc8\xc7\xcc\xb4\x60\x88\xad\xa1\xc3\xf4\x37\xe7\xc8\x32\xe5\x5f\xb9\xf2\x9b\x5e\xe7\x48\xbf\x24\x99\x87\x8c\xb2\x45\x0d\xae\x70\x14\x3c\xd8\x3f\x35\xc8\x83\x37\xff\xf2\x56\xdb\xa1\xc8\x7f\x62\xdd\x9a\x33\x00\xd2\x0c\x72\x0c\x48\x95\xd9\xbf\xf9\xa5\xf7\x23\xa8\x13\xaa\x0a\xdc\x17\x54\x33\xe8\xcc\xe8\xdc\x9d\x4b\x32\xd7\x90\xab\x1d\x10\x88\x56\x25\x31\x4b\x1c\xf0\x30\xd8\xd4\xe8\x86\xb7\xe1\xd3\xa7\xd8\x74\xf2\x7a\xa7\x44\xf3\x08\x17\x22\x39\x18\xad\x5b\x77\x68\x18\x68\x28\xc2\x8c\x2d\x13\x71\x4d\x6a\x88\x8b\x87\x4f\x0f\x46\x48\x49\x0c\xae\x7b\xd2\x11\xb0\xd2\x39\x9c\x2f\x32\x5a\xa3\x55\x86\xf2\xc1\xd8\xa4\x71\xf1\x82\xc8\xc0\x57\xc0\xc5\xbe\x41\x1b\xc5\x72\xd5\x72\xee\x3d\x47\x39\x79\x33\x51\x0d\x38\x09\xbc\x1b\xcd\xaa\x4a\x0d\xf4\x46\x2d\x36\x94\x7a\xa6\x24\x07\x90\x65\x55\x6e\x3a\x9b\xc6\x09\xcf\x22\x66\x6d\xa4\x8b\xc1\x78\x74\xf8\x66\x60\xcf\x05\xbe\xac\x99\x17\x87\x09\xb3\x17\x82\x47\x72\xf2\x7a\x46\xd6\x15\x02\x92\xb5\xa4\x8a\x07\x2c\x1b\x9a\xe1\xf3\x84\x76\x22\xf5\x77\x62\xb9\x6f\x33\x29\x9b\x54\xb4\x49\x30\x0c\x99\x20\xa2\x91\x9e\x88\x6e\x7d\xb3\x7f\x20\xea\xcd\x6c\x86\xf5\xbe\x00\x72\xc3\xd6\x5d\x02\x8a\xf2\xa8\x02\xfc\xdf\x1c\x17\xe4\x81\xf7\x4f\x20\x48\x4c\x2a\x4e\xd7\x92\xa0\xc2\x53\x56\xd6\x5d\xd3\x54\xe2\x7c\x5e\xdb\x01\x8d\x1d\x39\xc2\xc2\x90\xaa\x05\x88\x36\x7e\xe0\xe9\x88\xf4\xb5\x9c\x7b\x6a\x4d\x74\x50\x67\xef\xc2\x3c\x9e\x03\x20\xb3\x1c\x37\x38\x37\x00\x97\x80\x7c\x0a\x67\x31\x68\xfe\xf9\x5f\x1e\x14\x5f\x10\x7f\xe9\x39\xcb\x45\xb6\x35\x5c\xb0\x21\xf0\x72\x12\x23\x47\x5c\x4b\xb2\xc9\xe9\x18\x31\x02\x78\x03\xac\x89\xf1\xbb\x94\x8e\xa2\x9b\xbe\x4b\x3c\x85\xa8\x77\x2d\xfb\x5a\x09\xaf\xc2\x50\x07\xe3\x7d\xdc\xab\x87\x89\xeb\x14\xbe\x3c\x86\xf1\x7c\xfe\x14\x9a\x59\xd1\x03\xfe\x21\xcd\x27\x4d\xc6\xd3\xdb\x0f\x55\xc5\x49\x8f\x75\x41\x5a\xc9\x68\x3e\x22\xf6\xc5\x83\x04\x32\x5f\xb8\x46\x60\x58\xe6\x6b\xb8\x04\x3d\xee\xdb\x5f\x30\x31\xb0\x12\xa2\xc3\x62\x4e\x61\x14\x9a\x64\xd7\x71\xe3\xf0\xd5\x14\xa8\x07\xed\xcd\xe4\xd5\x63\x4e\xf5\x02\xce\xba\xaf\x7e\x9e\x0e\x8d\xbe\xfe\x47\x03\x84\xc1\xfa\xd3\xcf\x4d\xba\xc9\x2f\xc2\x45\x03\x1b\x0a\xdd\xb5\x12\xd9\xe6\x7f\xb3\x09\xb3\xa4\xd3\x19\xe3\x49\xc6\x19\x1e\x89\xf2\x0d\x86\x89\xd2\x5e\x4d\x53\xa0\x06\x1c\x07\x0e\x58\x24\x0d\x3f\xfb\x1e\xfe\x37\xd9\x6e\x27\x45\xf1\x99\x84\xc0\x0f\xe1\x63\xd9\x43\x1f\x4e\x7b\x1c\x32\xad\x8b\x93\xdf\x0d\x31\xd9\x7e\xe3\xb9\x63\xb8\xa3\x6a\xde\xce\x1e\x39\x9a\x81\x04\x04\xd0\xa0\x0d\x8d\x38\x8e\xd7\xf3\x55\xae\xde\xe5\x26\x79\xaa\x8c\xc1\x95\xdc\xfb\xca\xb6\x8d\x17\x19\x8b\x2e\xde\x37\x61\xf2\xfd\xb9\x9b\xd8\x8c\xe1\xc4\x19\x48\x3e\xb3\x8b\xfb\xe2\xb5\xd5\x1e\xd4\xea\x88\xc1\xb6\xd9\x6c\xef\x85\x18\x26\x02\x84\x3f\x03\xeb\xa6\x33\x52\x71\xbf\x63\x56\x30\x8f\x3d\x0e\x59\x21\xfd\x29\x8d\x88\xc1\x27\xc7\xf7\xcb\xfa\x79\xcc\x9b\x67\x6c\x3a\x63\xa8\xb3\x4f\xb2\xd8\x93\x78\xdd\x14\x4f\xf9\xd4\x68\xc9\xce\xea\x7f\xf1\x72\x7b\x01\xac\x0c\xab\xc2\x38\xe6\x6a\xad\x9b\x66\xa3\x31\xf2\x8c\xfe\x70\xe5\xab\xb2\xe3\x4f\x98\x80\xf8\x79\xf8\x0d\xe3\xe0\x16\x2e\xbb\xfb\x33\x64\x34\xd4\xf8\xf4\x0a\x14\x5f\xda\xd9\x0d\x1b\x04\x18\x28\xf8\xc3\xd5\xa0\xc8\xb7\xd7\x2e\x85\x9e\x0d\x82\xb3\x35\x24\xaa\x68\x1c\x12\xa9\xb6\x72\xb4\x5b\x39\x47\xde\xa0\xc9\xef\x23\xf1\x69\xc6\x63\xa7\xc8\x5b\x72\xda\xc1\xac\xa5\x18\xf7\x47\x85\x18\xad\xc6\x39\xd2\x03\x97\x97\xb9\x82\x99\x52\xe2\x00\x3b\x60\x07\x62\x87\x5e\x5a\x65\x86\x1f\xd0\x3b\xac\xc4\xd8\xe8\x59\x33\x8b\xd8\x98\x8a\x43\xb2\x14\xc7\x41\x35\x2e\x9e\xd7\xcb\x6b\x14\x04\x20\x4b\xc4\x39\xc8\xb5\x9c\x17\x4f\x4c\xfa\x94\xa0\xce\xcd\x80\x9e\x0f\xa0\x7c\x01\xc8\xa1\x6a\xf6\xf4\xa0\x40\xed\x56\x82\x25\x10\xe1\xbb\xdb\xdf\x31\x0f\x31\x7a\x59\xf9\xf9\xcb\x06\x17\xf5\xd6\x5d\xd4\xe4\x60\xe6\x0d\x24\x3a\x02\xaf\x89\xf3\x35\x0f\xeb\x30\x30\x38\xbd\x53\x0c\x06\x17\x25\x5d\xa2\xbf\xa7\xd1\x2e\x8a\x3a\xf1\x67\xb5\x32\xa9\x72\x6c\x30\x3b\xc8\xc4\x73\xb5\xee\x3b\x58\xda\xc8\xee\x50\x46\x1c\x38\x78\xb3\x47\xd9\x24\xa5\xfc\x60\xad\x66\x8e\x83\xfd\x52\x91\x14\x56\x12\x41\xcf\x59\x9e\x0d\x5c\xfc\x64\x02\x00\xeb\xa2\xbc\x2c\x0b\x8a\x00\x6b\x83\xfc\x03\x77\x8d\xf9\xe5\x9e\x31\x61\xbe\xe4\xa0\x75\xd7\x90\xf1\x66\x6b\x66\x7e\x60\xb7\x39\xc0\x5d\xd2\x2e\x71\xfd\xf9\x9e\x89\x20\x11\x13\xed\x12\x43\x0b\xe0\x49\x57\x82\x4b\x7d\x15\x71\x5a\xa5\x93\x89\x1c\x6b\x7c\xd3\xfb\x99\x7a\xbe\x1e\xec\x67\x00\x63\x8e\x94\xb7\x6d\xff\xa4\x03\xe7\x00\xb1\x42\xa0\x06\xd3\xb3\x34\x1c\x0f\x72\xae\xfd\x40\xad\x30\x93\x3a\x6e\xf6\x9c\x63\x8c\x4a\xf6\x26\x8e\x7d\x4e\x0f\x60\xa7\x37\x55\xaf\xcb\x4b\xf6\xc5\x25\xe1\xeb\x40\xe8\xfe\x81\xa7\x59\xa7\xcd\x30\x8e\xb5\x9c\x70\x95\x04\x2d\x1b\x3d\xbb\x7f\x01\xe4\xb1\x82\xa0\xb2\x27\x80\xf7\xdb\x0f\x35\x89\x1c\x15\x0e\x4c\x6a\x62\x92\xc0\x29\xcf\x84\xd1\xa0\xf9\x4e\x87\x98\x4c\x62\xcd\xe0\xfc\xc8\xf0\x5f\x0e\x87\x67\xd7\xc8\xe1\xc8\x05\x6e\xa0\x0c\xcf\x87\x1f\xe4\x15\xcc\x28\xe1\x0d\xec\xfc\xe9\xef\x1c\xf5\x2b\x3e\xf4\x7e\x43\x93\xc0\x4d\xb2\x02\xa6\x9a\xfc\xd3\x65\x54\x62\xd2\x24\x7d\x42\x11\x3b\x28\x16\x81\x9b\x12\xd1\x4f\x3f\x28\x1c\x03\xd2\x9c\x1b\xfd\x74\xef\xcd\xe2\x65\xda\xb2\xde\x6a\xe6\x5e\x8d\xc2\x54\x87\xe7\x8b\xb5\xd9\x2c\x67\x58\x9d\xb6\xad\xb6\xcd\x37\x20\x44\x98\x6b\xe2\xee\xfb\x81\x7d\xe6\x49\x77\x10\xb8\xab\x0d\xf8\x4a\xaf\x9b\xa9\x7f\xef\xfb\xde\xce\x4e\x51\x6b\x2b\x60\x80\x8b\x63\x0e\x9a\x36\x3b\x2d\x3b\x61\x3d\xdb\x30\x9c\x6a\x5f\x0b\xc7\xc1\xc4\x2d\x25\x60\xc6\x35\x6d\xd5\xb6\xa1\xf4\xaf\x1f\x69\x6d\xd0\xc6\x63\x0c\xc8\x2f\x84\x13\xd2\xfa\xa6\x76\x4b\x71\xb5\x7d\xdd\xc5\x6d\x28\x56\x2e\x29\x25\xc8\x8c\x33\x4e\x66\x41\x82\x18\x76\x35\xf3\x32\x17\x6d\x4d\xaa\x10\xeb\x60\x2e\xc6\xca\x4a\xa7\xfb\x16\x37\xc4\x23\x84\xcf\x15\xb3\x50\x86\x95\x1a\x07\x24\xb1\x54\xe6\xce\x63\x96\x4b\x42\x33\x90\xe0\xd2\x53\x2f\x07\x20\xe2\x76\x14\x21\x23\x99\xdb\x91\xe4\x96\x44\x99\xfd\xbb\x49\x75\x48\xde\x90\x14\x63\xae\x17\xf4\xc4\x95\x04\x31\xc1\x49\xc0\xe0\x63\xce\x06\x2a\xaf\x2c\x50\xb8\x52\x61\x5c\x0b\xeb\xf4\xec\xf5\xf9\x85\xd5\x17\xe4\x72\x1e\x73\x9b\x9b\xa7\xe6\x07\x15\xd2\x27\x2d\xb1\x6e\xec\x92\x56\xa2\x85\x0c\x05\x8f\xf6\x6e\xe7\x64\xbb\x42\x7a\x95\x86\x03\xf9\x2c\x24\x04\x5c\xce\x1a\x60\xe0\xe6\x05\x9b\xed\xab\xbb\x9f\x9f\xb7\x43\x7e\x12\x2f\xcf\xfa\x31\x90\x5e\x0c\x2f\x86\x01\xad\x97\xec\xea\xf4\x51\xc6\x7e\xff\xec\x0c\x7a\x9b\x15\xdd\x11\x64\x31\xe8\x65\x6a\x14\x39\x87\xf5\x12\x0f\xf6\x58\x05\x0d\x6c\xad\x06\xee\x0a\x6f\x4c\x49\x8a\x3e\xac\xc6\xf2\x22\x39\x29\x2e\x59\xa9\x34\xac\xb3\xe3\x64\x79\x19\x26\xb4\x47\x42\x38\x52\x65\xde\x14\xd7\x26\x26\x71\x20\x1b\xc8\xcb\x40\x46\x40\xf0\x53\xfc\x43\xa1\xc9\x27\xc4\x4c\xe4\x4a\xb1\x0c\x1c\xc6\xba\x3b\x1f\x6f\x4e\x0a\xe9\xd2\x6e\x43\x11\x77\x6a\x92\x29\x51\x84\x59\x4f\x11\x69\x4e\x52\x26\x06\x45\xe1\xd6\x7a\x4c\x00\xf3\x2e\x37\xfd\x9c\x3c\xc6\xa6\x83\x79\x93\x7d\xcb\x63\x3c\x91\x28\xe0\x58\x30\x14\xe5\x78\x94\x5b\x96\x83\x52\x5a\x9b\xd1\xbf\xe4\x50\xd2\xb9\x49\xa8\x73\x92\xa3\x19\xa3\xb0\x96\x6d\xf1\x20\x14\xad\x1d\x75\x48\x39\x2e\x5c\xee\xfc\x91\xa9\x50\x40\x07\xd6\xe5\x50\x8e\xc1\x77\x6b\x5f\xc7\x2a\xf1\x3e\xc8\xf5\x25\x75\x29\x2d\x81\x55\xc4\x62\x83\x51\x02\xe5\x3d\xe7\x24\xe4\x80\x29\x01\xeb\xf2\x91\x1e\x88\x2a\xdf\x27\x0b\xb8\x53\x0c\x7b\xd8\x85\x35\x79\x5c\xa2\x1b\x32\x72\x57\xc7\xaa\xc3\x1c\x03\x12\xcf\x0c\x34\xbe\x36\xf9\x36\x9e\xc0\xbe\xaf\xc8\xd8\xe3\x6f\x3a\x3d\x17\x91\x73\x72\x05\xe3\x7e\xab\x99\xb9\x5a\x8a\xe2\xa6\x77\xbc\x80\xe4\xf0\xfd\xfc\xfb\xf3\xd7\xaf\x0e\x64\x8e\xef\x27\x57\x57\x57\x13\xac\x3c\xe9\x5b\x40\x6c\x2c\x2c\x64\xd2\x07\xf8\xa0\xc7\xb7\xaa\x5b\x7c\xf3\x10\xfe\xfd\x62\x0a\x12\x3e\x50\xac\xf0\xd8\x2f\x39\x6f\x21\x45\x8f\x6d\xff\x09\x12\x26\xc7\x87\x9e\x64\xf1\xf3\x4e\xfa\x37\x31\x6e\x1e\x7b\x23\xf1\xe6\x91\x77\xba\x77\xc5\x2d\x5a\x18\xf8\x9c\xfe\xf1\x8a\xe1\xb6\xdb\x8c\x67\x61\x89\x2b\x95\x30\x06\x4d\xe0\x05\xfc\x91\x06\xa3\x73\x05\xb6\x18\xb3\xad\xd8\x7e\x52\x97\xaa\xb6\x27\x80\xfc\x9f\xdd\x5e\x09\xdb\x65\x4c\x5d\x86\x88\x81\x68\xcc\xca\xe7\xef\xe2\x6e\xc8\x4f\xb7\xa9\xab\x6b\xa0\x23\xfc\x2a\x10\x6f\x13\x96\x1b\x54\x32\xdd\x4f\xe3\xc6\x94\xd0\x16\xfe\x6c\xaf\xc9\xf6\x07\xcb\x58\x4b\x68\x8c\xb2\x92\x02\xb1\xf3\x5e\x3c\x52\xd4\x05\xa7\x5d\xc9\xf0\x38\x02\x42\x52\xf8\x8d\x89\xe1\x60\x19\xa0\x74\x7d\x0e\x1b\xb3\xb2\xd3\xbe\x57\x38\xfe\x5d\x22\x59\xc8\xb8\xf8\x10\x9d\x78\x8d\x46\x6f\x0c\x16\xd9\x19\xfc\x67\x14\x48\x86\x5c\xa6\xf8\xcb\x4a\xf9\xfe\x03\x7f\xee\xc0\x52\x5e\x67\xce\x47\x13\x97\x1a\x2b\x82\x01\x6a\x21\x27\x50\xc8\xaf\xff\x9e\x8a\x91\x2a\x59\x02\xf2\xf6\x92\x65\xeb\x8e\xa8\x5c\xc4\xc8\x10\x91\x88\xef\xb0\x71\xe6\x4e\x08\x50\xcc\xfa\x84\xd9\x6b\xe2\xda\xa3\xfd\x8f\xa5\x82\x89\xe5\x87\x78\x98\xa1\x4e\x81\xdd\xd6\xf0\x26\x2e\x31\x21\x9e\xd2\x99\x64\x03\x44\x57\xc1\xa1\x72\x8a\x66\x42\x87\x93\xa8\xf5\x85\x7f\x34\x11\x12\x7c\x82\x1c\xd1\x7c\x4a\x89\x8b\x02\xf7\x90\x73\xac\x82\x74\x81\x62\x71\x56\x4e\x48\x1e\xf2\x62\x04\xc2\x69\x7c\x3e\xbd\x30\xda\xf8\x53\xf8\x1a\x56\x7c\xae\xd7\x40\x4e\xd1\xbd\x38\xaf\xf3\xca\x07\xd5\xae\x6a\xae\x39\x75\xc5\x31\xfd\x3d\x79\x09\x7f\x87\xeb\x72\x95\xbc\x3a\xe3\x0c\x2b\x45\x0b\x78\x5d\x4a\xfa\x6e\xe7\xd7\x95\x4a\x0f\x71\x46\x06\x9b\x51\xc3\xc9\x37\x9e\xbd\x60\x64\xbe\x71\x06\x04\x5b\x25\x4c\xe8\x30\x1c\x6e\x98\xbd\xc1\x6f\x19\xa6\x70\x18\xb6\xb6\x0a\x82\xed\xfe\xbc\x0d\x01\xf0\xfc\xac\x0c\xf4\xc6\xdf\xa0\xcb\x4f\x4a\xcb\x30\x06\x01\xcb\x0b\x7b\xbb\x32\xa6\x38\x1b\x34\x60\xf4\x7c\x35\x54\x08\x08\x5b\xec\x61\x82\xa1\x12\x1e\x5b\xec\x42\x8e\x9d\x81\xd5\xc3\x5b\x2f\xaa\xda\x64\x7a\xe2\x18\xa3\xd0\xa1\x66\x34\x96\xf5\xce\x49\x3b\x28\xda\xd5\xde\xed\x65\x53\xc0\x24\xa7\xf3\xb6\xb9\xd2\x98\xb7\xa0\x6f\x17\x2a\xa3\x97\x9c\x28\xcb\x78\x61\xe3\x07\x6a\xae\x88\x0e\x24\x80\x4e\x3f\xb6\x7a\x47\x4e\x48\x54\xc8\x9e\x05\xe2\x58\xc0\x45\x64\x64\x0f\x5f\x84\x61\x67\x95\x63\xf8\x3a\x61\x93\xbb\xef\xac\x42\x8d\xf4\xba\xb9\x9a\xe1\x5f\x94\x85\x01\xf3\x0d\x40\x5d\xe0\x14\x3b\x44\x9e\x0d\xbe\x4b\x44\x5c\xa9\x54\xc6\x2a\xbc\x47\xe6\x4e\x4b\xc9\x98\x28\xde\x0b\x96\x0b\x76\xea\x30\x72\xbc\x93\x1f\x50\x95\x03\x5b\x7f\x21\x3e\xde\x55\xf2\x43\x77\xa9\x3f\x01\xd5\xb0\xaa\x80\x0e\xa8\xc9\xd1\x8b\x57\xfc\x83\xa2\x38\xf8\xdd\x56\xca\x18\x66\xa7\x6c\x62\x44\xa6\x36\x56\xe4\x07\xf9\xc3\x7e\xe1\xf8\x1e\xfa\xdb\xbe\x73\x4b\xbf\x6c\x8d\xa2\xcd\x97\x1d\x46\xd2\xc3\x8e\x2e\x6d\xe9\x0e\x64\x46\x69\x76\xd6\xaa\x49\xdc\x08\xe0\x84\xd0\x7f\x52\x17\xf2\x0e\xb1\xfd\x42\xc6\x32\xcf\x40\x66\xca\x73\x14\x73\x32\x07\x03\x07\x1b\x63\x8f\x07\x52\xfc\x80\x9e\x17\xb4\xc7\x7c\x30\x2a\x61\x12\x67\xb4\x27\x74\xc2\x08\xc0\x60\xa9\xce\xfc\x26\x8f\xf5\x88\x15\xeb\xac\x6d\xfe\xaa\x36\x1c\x05\x19\x64\x97\x99\x06\x13\xf7\xda\x33\xb3\x5c\x71\xae\x07\x6b\x89\x00\x04\x6d\xe0\x1e\x40\xbe\x6b\xf0\x40\x57\x9d\xc2\x6d\xbf\xa4\x03\x4b\xc9\xfa\x89\xfd\x66\xbe\x06\x35\x98\x64\x01\x14\x97\x12\x37\x6a\x97\xaf\x24\x71\x43\xbe\x32\x31\xe2\xe6\x0b\xb1\xba\xe8\xb9\x14\xd4\x1e\x04\xd0\x12\xca\x69\x8a\x58\x62\x9b\x83\xe7\x5e\x46\xa5\x14\xb1\xfc\xd3\xde\x85\xfb\xd4\xde\x94\x45\x14\xde\x14\x5f\xb5\x68\x02\x3a\x67\x13\xa6\xb7\xb9\xe4\x3e\xad\xae\xd0\x7b\x1a\xd3\xb1\xf6\xf6\x03\x72\xda\xc8\x2c\x9e\x60\xc6\xbb\x7f\xfc\xed\xff\x8e\xe0\xd7\x58\x92\x12\x0f\xe5\xcc\xab\x4b\x63\x2d\x0d\x28\xca\xd6\x04\xeb\xd7\xc6\x3e\x04\x24\xfc\x4a\x95\x5a\x99\x9c\xba\x42\x5e\xa5\x53\xa1\x94\xf6\x29\xad\x9d\x3c\x88\x77\xa9\x38\x5d\x29\x3e\x26\xbb\x52\x45\x2e\x16\x0d\x07\xab\x81\xb1\xd5\xce\x0a\x73\x64\xea\xb5\x39\x80\x03\x3c\x73\x38\x8c\x4f\x2c\x05\x67\xce\xb3\x8b\x05\xb8\x68\xce\x9f\xe9\x72\xe4\x50\x09\xbb\x65\x6a\x1e\xd3\xcf\xf4\x62\x5d\x8e\x1c\x73\x73\x63\x99\xee\x8e\xa5\x60\x50\xc3\xe4\x98\xa3\xbe\x30\x90\x30\x95\x1a\x24\xe2\xa5\x3c\x66\x4a\x19\xf6\x50\xbf\x81\xfb\x4b\x4a\x04\x40\x4e\x90\x1e\x9b\xf4\xba\x81\x2b\x26\xaf\xa1\xa0\x49\x4d\x76\xc8\xef\x86\xa3\x38\x0d\x2e\x77\xbe\x26\x25\x19\x9d\x57\x1c\xa0\x48\xa5\x02\x26\xe4\xbc\xbe\x37\x38\x30\xb3\xbc\xc2\xf0\xf0\x6b\xc9\x78\xfb\x84\xec\x5e\xdc\x93\xc7\x28\x90\x04\x30\x64\x13\xec\x64\x9a\xab\x1a\x51\x14\x6e\x05\xf3\x57\x92\xbc\x69\xda\xd5\x5b\x97\x49\x5d\x74\x99\x14\x54\x5d\x44\x39\x8a\xa9\x96\xcd\x18\x6a\xaa\x8e\x24\x0e\x1d\x6f\x39\xc8\x04\xc1\x7c\x0d\x6a\x65\xa2\xa7\xc1\x6d\x46\x08\x76\x20\x75\x49\x21\xa6\x26\x90\x33\x7e\x4f\x3c\x78\x3d\x69\xd7\xcc\x98\xa5\x2f\x7c\xd5\x43\x97\xec\x54\xb3\xc3\x1c\xa5\x50\x97\x2c\xd2\x65\x7d\x89\xef\x22\xeb\x66\xab\xd0\x0c\xec\xb2\x7d\x97\x35\x27\xce\xc4\x84\xed\x9a\x92\xb5\xeb\x84\xb2\xed\x8a\xee\x96\x34\xc4\xa4\x9e\x55\xad\x7c\xd8\x9f\xd4\xd7\x0b\x3d\xc5\xfe\xe4\x5e\xc2\x4e\xbd\x49\x23\x7c\x86\x0e\x2a\xc3\x84\xf1\x5c\x74\x47\x4d\x03\xe0\x9f\x84\xed\x34\xe2\x32\xc1\x5a\xcc\x66\x2e\xf1\xa9\x36\x33\x21\xeb\x99\x31\x1f\xdb\x31\x2c\xc9\xc9\xf9\xe1\x56\xa5\x03\x6c\xc3\x86\xd8\x11\x1a\xa5\xbf\xe3\x56\x41\x54\xb7\x93\xe2\x8f\xbc\x2c\x5a\x5a\x77\xfd\x92\xa5\x79\x12\xca\xa9\x1b\xf2\x66\xf9\x6e\x34\xd4\x7f\x98\xd0\xff\x4f\x07\xfb\x07\x5d\x71\xf6\x91\x4f\x08\xf8\xff\xf3\x9e\x0e\x77\x67\xd7\xf5\x75\x9a\x61\x9a\x5d\xfb\x65\x98\x6f\xf7\xcf\x3b\x1f\x84\x0d\x2c\x41\x0a\x60\x12\x38\x4b\x84\x81\x51\xb1\x13\x03\x60\xec\x3f\x93\x63\x37\xa4\x0f\x7e\x8a\xdd\x78\xc2\x51\xd2\x56\x79\x07\xd5\xcb\xd6\x6a\x1d\x8b\x82\x1e\x3f\x96\x52\x38\xf6\x09\x08\x1a\xef\xf5\x0a\x30\x29\x7a\x46\x72\xad\xef\x6d\xe3\x20\x14\xcd\x90\x14\xb9\xd6\xbc\x6b\xb9\x64\xce\xcd\xfe\xe7\xb3\x0a\xed\x31\xb8\x0d\xd3\x0b\xc5\x13\x45\x22\x24\xa1\x5d\x9f\xb4\x30\x4b\xb4\x46\xa0\xb1\x6f\x71\x51\xa2\xa1\x51\x99\xcc\xd3\xe1\xb3\x66\xc3\x6a\x3b\x49\x54\xe5\x6c\x6c\xb4\xeb\xbe\x26\xce\x41\x27\xf0\x8a\x11\x15\x53\x8c\x6d\x56\xcf\x64\xd2\xda\x0b\x65\x67\xd6\x66\xe1\xa7\xfd\x8e\x3e\x19\xa2\xc8\x59\x82\x52\x84\x3d\x7a\x77\x99\x3a\x6c\xa1\x96\xaf\x71\xb1\x69\xeb\xf5\x1e\x77\x10\x05\x1f\x99\x62\x31\x1a\x9a\x7b\xc7\x96\xc3\x1e\x2f\x14\xe7\xc9\x9b\x23\x15\x74\x1d\xb1\x81\xd3\x24\x0d\xf3\x3e\x00\x33\x00\xe5\x14\x39\xcf\xde\x9a\x52\x2e\xd7\xa1\x5c\x2e\x5e\x6e\x77\x9b\x73\x98\xee\x0f\x4c\x6c\x86\x56\x48\xe6\xc3\xed\x93\x06\x25\x3d\x28\x4a\xf6\x0d\xba\x3c\xbf\x8e\xfb\xc5\xc7\xef\xf8\x9d\x3b\x7b\xbf\xf2\x05\x3b\xc5\x24\xf9\x30\x62\xc9\x61\x50\x52\x18\xcf\x92\x4b\x91\x09\x92\x3c\x78\xd9\x09\x6c\xec\x0d\x6b\x08\x86\x5f\x83\xe4\x2a\x72\xc9\x10\x4e\xfa\x6f\xd6\x73\x52\x76\x93\xc5\x8b\x32\x45\x18\x39\x67\x2a\x5d\x92\x0c\x60\x46\x14\x51\x20\x1c\xd4\xaf\xb1\x77\xd4\xa2\x0c\x5f\xab\x0c\x87\x46\xc5\x6c\x60\x26\x72\x2f\x9b\xc6\xf3\xe1\xc7\x46\x65\x3e\xe4\x53\x15\xce\xc6\xff\xbe\x77\x36\xe8\x5b\xcd\xc1\x29\xa8\xf0\x35\x4e\x59\x96\x8e\xfa\x20\x72\x8f\xe5\x07\x46\x71\xd9\xc1\x78\x76\x26\x87\x87\x3f\x22\x32\x0e\x9b\x61\x4e\x0f\x6e\xb0\xe7\x6e\xe5\x8f\x74\x14\xf4\x80\xa7\xb0\x1e\x45\x3c\xb7\x91\x6c\x81\x3e\x59\xf0\x57\x33\xae\xa1\xe0\x17\xb5\x18\x08\xae\x86\x81\x46\x44\xd8\xcc\x4a\x0d\x23\x88\x4b\xdc\x3a\x66\x90\x3f\xde\x7d\x37\x87\x5a\x68\x6e\x61\x32\xe4\x21\x83\xe8\x03\xcf\xd2\x5e\xb3\xbb\x05\xbf\x22\x24\xe4\xc0\x1f\x3d\xd0\x93\x0e\x7a\x15\xc2\x3e\xd6\xa9\x5f\x6b\xb0\x7b\x84\x2f\x9f\x40\xbd\x53\xc7\x11\xfb\x8c\xa5\x76\xbe\x6b\x56\x49\x87\x9c\x69\x89\x4f\x24\x10\x7e\x8b\xbb\xd9\x4d\x6f\xdf\x08\x09\xde\x29\x19\x99\xa3\xe1\x04\x68\x7e\x76\x6a\x3e\x09\x88\x31\xc6\x5f\x90\x49\x38\x69\x76\xdf\xa3\x22\x76\xf3\xbf\xf6\x57\x63\x14\x1f\xd8\x7a\xb2\xff\x0c\x33\xf9\x08\xc9\xc6\x1f\x99\x47\x48\x5b\xfe\xa9\xa9\xdc\x41\x4e\x42\x32\x32\x3a\xbf\xf1\xe9\xf9\xa4\x66\x7c\x72\xc1\xae\x9b\x99\x22\xa5\xc1\x7b\x03\xe9\x8c\x75\x6c\x10\xd1\x61\x8f\x77\xcf\xd4\xee\xa4\x27\x51\x85\x2b\xbe\xd6\xf1\x79\xb0\x95\xaf\xe3\xaa\x23\xc7\x42\x5c\x7f\xc8\xc5\xd4\x5d\x8f\xae\xc7\x1a\x80\xf6\x9e\x82\xfc\x3b\x9b\x55\xc8\x23\x23\x36\x37\x13\xbe\x19\xea\x3a\x77\x47\xe3\x60\xf0\x5e\x94\xc9\x31\xdb\x7a\xcf\x1a\x29\xf1\x1a\xc3\x87\x51\x68\x3b\xde\x26\xf6\xf9\x64\xf7\x6c\x32\x3d\x4f\xa5\xed\x7d\x8c\x82\x22\xd0\xa2\x1b\x79\xea\x24\x7a\xd9\x64\x5c\x08\x05\x68\xe5\xf2\x3c\x8f\x48\x13\x83\xd7\x7a\x38\x13\xe5\x2a\x0b\x1e\xb9\x4e\xc4\x2f\x2e\x3b\xbf\x86\x69\x6f\x27\xa7\xb8\x86\x52\x28\xf4\xb6\xa9\x4b\x72\xd1\xe2\x7f\x81\xcc\x25\x4b\x74\x21\x05\xb9\x6b\x25\x66\x4b\xce\x4c\x4c\xbf\x4f\xc8\xda\x95\x74\x4d\x07\xac\xca\x05\xfe\xf7\xeb\xf4\x41\x91\xb8\x05\x93\x2a\x1a\x61\xb6\xc8\xac\xb2\xda\xfb\xda\x18\x64\x46\x29\xcb\xe2\xb5\xdf\x9c\xa6\x48\x3a\xef\xde\x4d\x98\xe7\x46\xea\xef\x5e\x8f\x0d\x36\x43\xff\xa5\xec\x59\xf3\xec\x3c\xb5\x4f\x9a\xd3\x85\x85\x6f\xbc\x16\xf4\x6c\xae\x81\xfc\x81\x57\x16\x82\xdd\xff\x12\xf8\x47\xfa\x99\xcf\x5d\x15\x6f\x5f\x0e\x82\x71\x38\x7d\x96\x24\x1c\x76\x1f\x5c\x16\xad\xb0\xfc\x70\x33\x1c\xde\x18\x4c\xfc\x32\xe3\x17\xea\x4a\x9c\x87\xa8\x5f\x1a\x66\x57\xf6\xbf\x3c\x15\x47\x5c\xbf\x4c\x52\xd0\x85\x0b\x63\x6d\xbc\x5f\x76\xd2\xac\xca\x7a\x42\xda\xeb\xb0\x4f\xc3\xd2\x07\x2b\xb5\x21\x09\x41\x17\x14\x4f\xed\x97\x90\xcf\xc9\x45\xae\xc3\xd6\x44\x78\x22\x00\x99\x7b\x96\x1e\xc2\x1d\xb4\x38\xac\xc9\x11\x55\x4d\xc7\x30\x8d\xe5\x76\xa7\xcd\x32\xe5\xa3\x75\xf9\xf9\xf3\xec\x9c\xfe\x19\xad\x01\x53\x80\x63\x67\xc8\xb0\x57\x05\x03\x89\x30\xec\x8d\xb2\x44\x37\x94\x57\x10\xb7\x9a\x5d\x80\x81\xf7\xc0\xb3\xaa\x59\xd3\xc1\x81\x46\x77\x35\x75\x52\x32\x52\x19\xaf\x9f\x9a\x3b\x9a\x98\x14\xbf\x1c\xd4\xe2\x44\x4e\xaf\x57\xb9\x6a\xcb\x3a\x7e\x6e\x56\x67\xe2\x87\x64\x33\x70\xbb\x14\xb4\x9f\xd0\x3a\x9c\x9b\xe9\xaa\x36\x7d\x8d\xc6\xd9\xec\x9f\x1e\x69\xf9\xd0\x0f\x13\xfa\x90\x2e\x3d\xe7\xd8\x43\xfe\x70\xc7\x04\x83\xf6\xe1\xd4\x46\xfa\xf9\x04\x78\xd1\x45\x5a\xaf\xe4\xa1\x78\xeb\xff\x87\xb9\xfe\x22\x36\x94\x4d\x77\xfa\xf6\x03\x90\x95\x03\x52\xa8\x21\x8f\xd4\xb4\xb4\x4d\xe8\xb4\x26\x46\xb7\x8f\x8c\xb1\x77\xd2\x9f\xd8\xfd\x27\x43\x7c\x55\x76\xb3\xd5\x42\x16\xf6\x94\x10\x38\x7d\x06\x37\x37\x86\x88\x3c\x46\xe6\x7b\x61\x83\x60\x03\x9e\x24\x0f\x68\xae\xdf\x8b\x9d\xfa\x48\x37\xe2\x70\x21\x99\x6a\xa3\xac\xae\x81\x3a\x07\x85\x78\x8e\x84\xf5\x67\xdb\x2a\x7d\x5d\x2f\x50\xe5\x87\x6f\x65\x90\x73\x00\xb9\x51\x8a\xe8\xa1\xd2\xcf\xa6\x50\xfe\x90\xd3\xb4\x95\x37\x8a\x0c\xe7\xfa\x33\x79\x9e\xe8\xf3\x9f\x73\x4a\xb0\xfd\x75\x8a\x36\x69\xd6\x34\xd8\x88\x34\xf2\x4d\x63\xeb\x34\xe7\x64\x64\x03\x2c\xc1\xf6\x8b\x3b\xa7\x10\xee\x55\xf8\xe0\x03\x1b\xbf\x87\x7b\x01\xf2\x35\x87\x75\xc2\xca\x49\xb7\x39\x3a\x80\xe7\xbb\x12\x2f\x94\xd0\x8e\x7d\x15\x03\x3f\x74\x04\xe4\xe7\x36\x5b\xa9\x78\xe2\x70\xb4\x91\xcd\x92\x69\x32\x15\x7a\xec\x80\xc4\xd2\x75\x7b\x56\xea\x4f\x24\xc8\x76\xcf\x33\x60\x2f\xbc\x60\x0e\xa4\xe5\xbf\x63\xc5\x29\xbe\x4e\xc4\x09\xbc\xdd\xcd\x4d\xe9\x44\x61\xb0\xae\xc4\xe7\x2a\xe8\xd7\xe4\x47\xfa\xe5\x13\xc6\x1e\xe3\x06\x01\xdf\x9a\xb6\xe9\x41\x04\x53\xf6\x65\x24\xd8\x43\x29\xd2\x23\xf5\x41\xaa\x82\x03\x34\xeb\x29\x55\x9f\x6d\x62\x13\xa2\x00\x1f\x40\xf6\x7a\xdb\x8e\xf8\x19\xd3\x0a\x95\xcc\x0b\x32\x3a\xc0\x2d\xac\x90\x53\x42\xc6\xf6\x99\xd2\xf9\xb6\x33\xea\x58\xaf\xad\xb4\x6a\xe6\x5d\x0e\xb3\xc1\x4c\x94\xec\x59\x88\x8e\x9d\xc3\xda\xbb\x86\x72\xec\xce\x2a\x00\x66\xbf\x9b\xe1\x7a\x75\x76\xc6\x85\x70\xc9\x62\x61\x7a\x81\x85\xc3\x11\xcc\xbc\xa4\xd1\x29\x95\xa6\x87\x52\xba\xaf\x15\x66\xb8\x09\x5b\x3c\x85\x92\x41\x6d\x03\xb9\xb5\xca\x77\x31\xdc\x9e\x43\xd9\x04\xee\x3c\x64\x03\x43\xb8\x51\xed\x18\x00\xca\x01\x80\x5a\xf2\xb0\x7b\x5a\x95\x05\x08\xb3\xf8\x4c\x3f\xf9\xbc\x7e\x5a\x13\x72\xd4\xc9\xfe\x48\x13\x31\x9c\x15\xd9\x12\x3d\xda\xec\xb3\xb0\x77\x34\x6c\xe6\x7f\x05\x3a\xa6\x33\xaa\xf2\x7a\x8e\x56\x78\x1f\x31\xe7\x4d\xd3\x61\xb6\xf0\x1d\x72\xaa\xe4\x4a\x89\x10\x3b\x32\xa5\xc8\xa9\x2e\x36\xe3\x30\xe3\x06\x77\x00\x8d\xdb\x0e\xa6\xb5\xc5\x1c\xc1\x30\x5c\xdb\x2f\xba\x1e\xce\xab\x8c\x79\x7a\x0e\xc5\x93\x73\x5b\x3c\x3e\xe8\xa0\xf1\x70\xe0\x34\xee\xc9\x6f\xbe\x40\xdd\xe6\xc8\xe0\x8f\xb1\xfc\xe3\xa3\x0f\x9a\x8f\x0d\x1f\xf7\xe5\x9f\x1a\x7a\x5d\x10\x6f\xcc\x79\xbf\xd8\xa8\x0e\xc3\x0b\xd7\x33\x72\xe6\x70\x5d\x9d\x99\x4a\xe9\x11\x55\xc2\x2c\x4c\xeb\xf4\x02\x2b\xa5\xaf\xa5\x92\x7f\x8f\x2d\x60\x13\xba\x9c\x9c\x73\x46\xa6\xf3\xec\x31\x6c\x01\x7f\xf6\xf9\x40\x90\xb7\xda\x99\x08\x29\x72\x20\x91\x2b\xb4\x1d\xc8\x23\x65\xae\x1f\x11\x61\xf0\x98\x6e\x30\x36\x25\x60\x07\x30\x3f\x1b\x5f\xa6\x8b\x6b\x60\x02\x33\x79\x2a\x16\xc9\xcd\xe3\xc9\x2f\xd7\x18\x1c\xe6\xd5\x26\x31\x0c\x6a\x13\xc9\x24\x87\x13\x76\x3e\xdc\x8e\xd6\x66\x9a\x66\xaa\xaf\x88\x7c\xd1\xb2\x7e\xc1\xf0\xdc\x91\x7a\xbb\x1c\x8f\x95\x57\xf1\x0c\x0b\x46\xc6\xe7\x8a\xe2\xf8\x38\x52\x4f\xc6\x04\xae\xe0\x31\xf0\xea\x9b\x8e\x5f\x14\x97\xd8\x19\x79\x02\x05\x50\x4d\x55\x4e\x1a\xe6\x0a\xf4\xb0\xa1\x18\x37\xd8\xba\xca\x2f\x1d\x38\xf3\xaa\xd4\x33\x1c\xbd\xfc\x36\x2c\x6a\x61\x9f\x57\xec\xcc\x17\x2f\x29\x18\x97\x30\xf7\xe3\xcb\xd4\x5c\x2e\x69\x15\x33\x7e\x65\xca\xb4\x27\xef\xe1\x96\xde\x7c\x95\x50\xcb\xe5\x35\xdc\x56\x9c\x10\xd8\xbc\x04\x8b\x42\xc9\x3c\x7a\xb3\x0e\x7d\xda\x47\x56\xe7\xfb\xf5\x51\x14\xa6\x79\x04\xe2\x23\x81\xfd\x53\xe9\x23\x4e\x9c\x25\xab\x24\x89\x81\xfd\xd5\x06\x2a\x01\xfd\x2b\x51\x71\xa9\x4a\xe9\xb4\x39\x93\xb6\xdf\xb8\x42\xf1\x8e\x25\xa5\x41\x07\x13\x92\xfd\xea\xda\xc1\xdb\xbe\x38\x28\x7a\xe9\x13\x85\xcf\x62\x93\x7a\x9f\xc2\x25\x30\x38\xd0\x66\xeb\xe7\xb4\x22\xf4\xd1\xac\x62\xcf\x3b\xa2\xb4\xd9\xbb\x4f\x7b\x48\xd4\x81\x23\x7a\x0e\x64\x1e\x03\xa7\xd4\x33\x87\x1f\xc7\xfe\x03\x1a\x68\x25\xce\x23\x84\xc1\xda\x84\x33\x41\x4d\xd4\x24\x04\x4f\x44\x70\x10\xa6\x81\x20\x5a\xa5\x31\x48\x82\x98\xa6\xe1\x18\xf6\xe9\x29\xe0\xd1\x5c\x2c\x0b\x2a\x4a\x23\xbc\xe6\x8e\x4a\x4a\x91\xce\x89\xcf\xef\xee\x8c\x13\xa8\x07\x6a\x7e\x0c\xe5\x72\x29\xd6\x47\xe1\x1d\xc0\x39\x7a\x07\x94\xaa\x8f\x99\x48\xcd\x14\xdc\x33\xbb\x7c\x3e\x46\x5e\xae\xd6\xff\x75\x4f\x72\xfb\x83\xda\x87\xb9\x63\x08\x7d\xea\x0b\xdd\x2a\x7c\xaf\x3a\x7c\x98\xdb\xea\xf4\x3c\x90\x04\x2e\xa5\xb9\x0e\x1f\x79\xda\xe3\x51\x8a\xef\x16\x4f\x29\x58\xd0\xa7\x7b\xa1\xde\xe9\xd2\xbe\x00\xc5\xd5\x1d\x79\xa3\x9f\xbe\xf3\x0a\x15\x8c\xf8\xae\xb0\xc6\x90\x88\x5b\x38\x92\x4f\xe8\xb8\xce\xc8\xab\x2f\xfe\x90\xfc\x3b\xb2\x7e\x72\x21\xbf\xfa\xe0\x1e\x7d\x60\x05\x22\x7f\xc3\x74\xf0\x3a\xf3\x55\x5c\xf2\x21\xcc\x34\x4e\x0a\x4c\xa1\x39\xc1\x3c\xdd\x2b\x58\x9a\x0a\x9c\x11\x6b\xa8\xe3\xe4\x3e\x4c\xd2\x9d\x94\x95\x52\xe1\x33\x93\x5c\xc3\x2e\x8a\x7f\xdb\x9c\xbd\xfc\x93\x9f\xe9\x85\x2b\xdb\x92\x00\x2e\x37\x2e\x47\x81\xd7\x84\x37\x6f\xea\x66\x48\x66\x3b\xdb\x31\xd5\x1a\xa7\xa5\xe4\xf7\x22\xd5\x42\xef\x7b\x2e\x5b\x37\x1a\x43\xb1\xb4\x19\x10\x4f\x32\x88\x07\x76\x02\xa4\x21\x2a\xa0\xd1\xab\x94\x83\xcf\xfc\xf2\xe1\x8b\xb6\xfb\xeb\x38\x8f\x20\x11\x93\x11\xa1\x6d\x3b\x32\x16\xd1\x7b\x31\x98\xee\xe8\x7d\xe7\x67\x4a\x99\x9a\x7b\xcd\xe4\x49\x30\x57\x18\x6a\x28\xd6\xcd\xda\x99\xf0\x24\x54\xbd\x9e\x1a\xc0\xe2\xfd\xcf\x59\x00\xe5\x66\x9c\x9c\xf7\x8b\xf5\xe4\x28\xd7\xa5\xf6\xeb\x14\xb5\xf3\xe1\x3a\x7e\x65\xa0\xda\xc1\x65\x3b\xef\xd1\x00\xcd\x8e\x38\xfc\x68\xf4\xa1\x14\x0f\x6a\xe9\xbe\x15\x04\x58\xac\xef\xae\xe9\x3d\x5a\x1a\x57\xe2\x0c\x84\x91\x15\x9d\x13\x11\x9a\x6e\xc8\x00\x23\xf5\xd8\x02\x19\x7c\xdf\xe2\x85\x32\xd3\x79\x76\xaa\xe1\x0a\x49\xcf\x0f\xa5\x5c\x6f\xbb\x1d\xbf\x3e\x72\x7e\x7a\x71\x36\xc4\x72\x0f\x9f\xb0\x2a\x21\x06\xd6\x9c\x78\xd8\x81\x1f\x08\x43\xe8\x83\x87\x26\xe2\x27\x25\x01\x1e\x1a\x98\x1a\x32\x02\xa9\x94\x91\x4d\x8f\x57\x1b\xbb\xce\xe9\x18\xb2\xd5\x17\x8d\x9f\xc0\xe2\xc0\xad\xbe\xe1\xfc\x8e\x14\xfa\x86\xdc\xae\xf4\x6a\x8d\x45\xe4\x29\xcf\x19\xc7\xd2\xfb\x07\xf7\x01\x7b\x3a\xb8\x5d\x6a\xe7\xa4\xe1\x1f\xc0\x59\x57\x01\x75\x3b\x39\x27\x8f\x59\xab\x68\x97\x37\xaa\x25\xae\xd1\xac\x77\x53\xee\xb0\xfa\x0c\x63\x6f\x80\x11\xc3\x56\x67\x26\x75\x1c\xdd\x17\x7a\x87\x16\x0c\xdb\x60\x87\x56\x46\x7c\x05\x7f\x21\x58\x73\x76\x78\x2a\x51\xcf\xde\x41\x94\x79\x50\x16\x35\xc3\xeb\xd1\x9b\x30\x18\xd0\xa7\x39\x41\x82\xc7\xeb\x0d\xe7\xd5\x95\x3b\x58\x42\xb9\xdb\x19\xc0\x12\x9b\x36\xdc\xd2\xd0\x2b\xcb\xe3\x54\x64\x3b\x42\x36\x65\x88\x13\x11\xc7\x62\xe9\x60\xf0\x88\xe7\x48\xb3\x4f\x88\x17\x99\x06\xc4\x2f\xd0\xfb\x7c\x6c\x1d\x23\x2a\xaf\x90\x57\xf3\x7b\xfe\x28\x54\x42\x86\x44\x28\x25\x7b\x76\xed\x83\x8a\xe5\x49\xfc\xda\x33\xa6\xd5\x9c\xec\xd6\x06\x71\xe3\x53\x5f\x7b\xee\x13\xbf\x99\x67\x44\x1d\x0e\xf7\xa9\x96\x74\xbf\x5f\x9f\x75\x18\xe9\xf1\x8e\xf8\x6d\xb1\xe8\x19\x85\x99\xd8\xf7\x44\x61\x16\x9a\xf9\xa4\x66\xbe\xdb\xc9\xed\x63\xde\xd2\xe3\x5b\xc7\xfb\x7c\x89\x08\x6e\xbf\x9a\x58\x08\xaf\x02\x06\x7c\xba\x0a\x14\x74\x2a\x5f\xc3\x5b\x4b\x0a\x9b\xe5\x12\x04\x6f\x85\xd9\x79\x29\xd5\x12\xfe\x98\x9c\x36\x45\xaf\x6d\x33\xe0\x76\xf0\x90\xa1\xd2\x8e\xd4\x5f\xab\xec\x07\xfa\x13\xa5\x8b\x20\x86\xd9\xb4\x00\xc8\x50\x84\x6a\x76\x92\xf7\x18\x60\xde\x4d\xac\x3c\xe5\xd5\xa0\x11\x6d\x8d\x60\x48\x62\x86\xda\xa6\xe9\xf8\xf5\x20\x4f\xb1\xfe\x13\x3e\x96\x09\x60\x06\x16\xcc\x82\x17\x2d\x89\x8b\x19\x3f\x50\x62\xdb\x78\x15\x99\x12\xb2\xc1\x11\x49\x82\xd1\xed\x4b\x7b\x58\x50\xdc\x18\x16\x36\x3a\xd2\xa2\x2d\x77\x12\xb2\x7b\xbe\xc1\xbf\x27\xc8\x93\xd8\x49\xe3\x6e\x08\x1a\xd2\xf2\x5f\xf1\x3d\x88\xcf\xff\xfd\xc0\x1f\x27\xfb\xcc\xbe\xd3\x62\x6e\x10\xc4\x5a\x41\x37\x63\x28\x02\xf5\x2c\x33\xe4\x8a\x1c\xf3\xe1\xca\x1c\x0f\xe5\xca\x68\x5a\xf1\x66\x40\xb9\xd6\x15\xef\xc7\xf9\xf9\x49\xb4\xfb\xee\xa3\x7d\xeb\xae\xee\x5b\x86\xe9\x7d\xcc\xe8\x0d\x78\xaf\xef\x7f\xe1\xd5\x8f\xe1\x1f\x7d\xb2\xdd\x70\x17\xfa\xd7\x0a\x08\xe9\x57\xf7\xc9\x31\xe1\x7e\x57\x16\x73\xd7\x99\xb9\x00\xbc\xa3\x03\x3f\x27\xa1\xa3\x92\x05\xbf\x88\xfa\xc1\x23\xe5\xe6\x45\xf3\xe0\x91\x70\xde\x10\xef\x5e\x18\xa0\xba\xb9\x4a\xc2\xdb\x63\x0c\xd7\x29\xd8\x8b\xeb\x8b\x99\x11\x58\x90\x0e\x93\xaa\xa1\xba\x92\xd3\xd1\x2c\x50\xa3\xb4\xac\x50\x43\xe4\x5f\x48\xfe\xdc\x39\x49\xb9\x49\x5a\x4e\xa1\x2d\x87\xe2\x4e\x82\xc4\xa5\x25\x69\x7c\x74\xce\x72\x05\xb2\x9e\x8e\x1d\x75\xc5\x41\x77\x42\x6a\xb9\x74\x38\x67\x02\x90\x68\x44\x2c\x7c\x42\x25\x48\x0c\x11\x8a\x6c\x2c\x6f\x14\x27\x81\xcd\xec\xd5\x8d\x64\xf9\x94\x63\xe6\x1d\x07\x40\xaf\x3b\x28\x03\x2e\x7f\x64\x3b\xd9\x1d\xc8\x23\x79\xf6\x98\xff\x1d\x99\xa2\x44\x33\x63\xe0\xd5\xac\x62\xfb\xa2\xd4\x41\xaa\x46\x41\x7d\x27\xa8\x0a\xd6\xe4\xdf\xea\xe0\xa8\x55\xe7\x18\x65\xaf\xb5\xe1\x8f\xf7\xb5\x34\x09\x10\x04\xd3\xc4\x34\x3e\x8e\x69\xbf\xf6\x70\x57\xcf\x40\xf6\x5f\x01\x9e\xff\x8c\x6c\x36\x2e\x1d\x3d\xb2\x6b\x5e\xb9\x05\x1e\xc7\x1a\x93\x4a\x0d\x28\x26\xa2\x44\x57\x95\xc8\x6c\x13\xea\xbb\xc0\x63\x8b\x4c\x43\x2e\x29\xa5\x3f\xcb\x8d\xd8\x7f\x02\x4e\xc9\xdb\x4e\x77\xbf\x9c\xd2\xaf\xf1\x99\x4b\x4d\x23\x3e\x39\x95\x5b\xf8\xdd\x6c\x3a\x1c\xd4\x26\x7b\xfe\xe4\xe4\x75\x7a\x3c\x82\xf9\x52\x79\x40\x66\xa4\x7c\x40\x92\xa4\x7c\x94\x04\xb1\xe5\x5c\x56\xc0\x66\xf2\xd1\x05\x70\xbd\xbd\xf3\xe7\x43\x20\xdd\xb0\x52\x7a\xb4\x1b\x39\x2c\x05\xa0\x1f\x4c\x86\x2b\x1e\xf2\xaf\xb0\x8a\x7d\x55\x91\xeb\xd8\x37\x15\x07\x03\xd6\xa6\x17\xf2\x04\xf0\xb7\x54\xb1\x73\x97\x25\x61\xf4\x73\x7c\x5a\xa6\xee\xae\x6d\x2e\x4b\x8c\xeb\x31\xb5\xcf\xa4\xc0\x54\x34\x15\x4c\xaf\xe6\xfb\x9e\xd5\x02\x26\x97\xc2\x45\x3f\xa6\xbf\x27\xfe\x7e\xc9\x99\xc4\x93\xc3\x35\xa5\x12\x7b\xb4\x2d\x58\x1b\x6e\x2a\xaf\x16\x16\x26\xac\x9d\x7e\xf6\xd8\x41\x05\x2f\xf2\x78\x2d\x55\xb9\x64\x23\x96\x5d\xcc\xc8\xe9\x5b\x77\xdd\x4e\x73\x9e\x08\xbc\x5b\xe8\x3d\xc3\x68\xf6\xae\x1f\x59\xc2\x48\x37\xbb\x92\xcc\x0f\x06\x2a\x47\x65\x15\xa5\x9e\x8c\xea\xc9\xf5\x42\x15\xe5\xef\x98\xee\xad\x5a\x21\xa9\xcf\xe4\x8f\xd1\x4b\x00\x59\x08\x19\x14\x59\x87\xd1\x5d\xc0\x3a\xcc\xf2\x40\x0d\xbe\x62\x8d\x07\xd7\x74\xd1\xc2\x85\xf1\x18\xfe\xc3\x0e\x32\xb6\xdc\x9d\x2d\x53\x82\x0c\x4c\xd1\x03\x63\x8c\xb4\x64\x07\x44\xc7\xd5\xc5\x07\x63\x8c\x15\x22\x35\x7e\x2e\x94\x63\x57\x6a\xd8\x27\x67\x44\xff\x3f\x56\x47\xbd\x57\x8b\xde\x1a\x2a\x0f\xeb\x9b\x7c\x5d\xf9\x15\x9d\xdb\x19\x22\xa1\xbc\x81\xd0\x2f\x49\xad\x0e\x58\x78\x83\x31\xa7\xb6\xc6\x48\xba\x5f\xb3\x0c\x80\x64\x47\x8f\x8d\x76\x84\x34\x63\xc3\x67\xde\xb0\x9a\x6a\x19\x6f\x38\xe3\x6a\xc6\x3f\x01\x35\x50\xc0\x1e\x71\x90\x33\xd5\x2d\xc3\xe4\x17\xcc\x1e\x79\x7c\xa5\xfd\x32\x9c\xb2\xf9\xd2\xec\xb2\xd7\xbb\xa9\x57\x91\x64\x0e\x23\x19\x0c\x86\xdf\xe7\xd3\x91\xbc\xc9\xc9\xc9\xe2\x6d\xf0\xf0\x2b\x6a\xa9\x3d\x7f\xc9\x20\x8d\xc4\x03\x7a\x44\xc5\xa5\x15\x01\xbc\xb3\xd9\x39\x8b\xf0\xad\x42\x96\x46\xfa\x2d\x9a\x34\x50\x68\xf7\xf3\xf3\x3f\xf2\x93\xfd\xdf\xf1\x9e\x91\x7d\x0c\x46\xa6\xc5\xc9\xfc\xc3\x57\x0c\x74\xbb\x78\x18\x37\x94\x67\x67\xbc\x6a\xf8\xf1\x5f\xe4\xe3\x4a\xa1\xfb\x69\x67\x16\xcd\x0f\xeb\xbc\xc3\xfe\xf9\x65\x19\x6f\xc5\x0f\x59\xef\xf8\x90\xd7\xfe\x17\xfb\x8c\x4c\x6a\x5f\xb8\x79\x67\xba\x09\x1f\x6d\x18\x24\x15\x37\x20\x0b\x7a\x97\x17\x18\xa2\xce\xdf\x25\xe1\x9b\x3f\x7f\x70\x6a\xde\x53\x49\xef\x92\x91\xd4\xeb\xef\x82\xdc\xeb\x1f\x9f\x0e\x6c\x51\x90\xf4\xff\x5d\x62\x33\x00\x8e\xe2\x0b\xef\xb1\xdd\x60\x53\x99\xdc\x5f\xf3\x7a\x0c\x9f\xf8\x09\x4d\x7c\x88\x72\x64\x93\x65\x87\xfd\x47\x7c\xc6\xb7\xf7\xab\x78\x7b\xe5\x61\x90\x2f\xed\x33\x0d\xcc\x06\xdb\xd7\x49\x4c\x2c\xd0\x97\xf6\x21\xc7\xe4\x0d\x66\xb4\x7f\x9b\xe4\xab\x26\xbb\x6c\xda\x84\xde\x68\xc5\x40\x95\x7c\x9e\xea\x06\x85\xf2\xc4\x86\xad\x24\x8f\x74\xf6\x40\xa7\x8f\xd2\x73\xb5\x41\xa7\xba\xe4\xd1\x96\x7f\x03\x0b\x0a\x64\x23\x79\xb4\x96\xcf\x1d\x7f\x2d\xf8\xe7\x45\xbe\x4a\x1e\x5d\xf1\xdf\x3f\x37\xf8\xb2\xf4\x23\x20\x38\xd2\xb2\xa9\x73\xe8\xf7\x9a\x7f\x7d\x0f\xf2\x7f\xa2\x15\x90\xec\x02\x46\xc2\xb5\xcb\xb3\x1a\x32\x20\xa6\x90\xc6\x91\xc2\x8f\x3c\x7a\x9d\xac\x9b\xbe\x8d\x9a\xf1\xb3\xcb\x49\x91\x5f\x87\x1f\x2e\x28\xbf\xe3\x95\x52\x9b\xb0\x9c\xa6\x47\x34\xb6\x5b\x47\x83\xe0\x44\xe1\xd3\xb5\xca\xa3\x41\xbe\x27\xa5\x45\xd2\xe6\x57\x33\x33\x75\x3b\x5d\x2c\x34\x53\x36\xd3\x4c\xde\x14\x6d\xb3\xc3\x4c\xcb\x6f\xed\xe3\xd2\xe6\x71\xcc\xa7\x26\x40\xfd\xc7\x1d\x06\x27\xa7\x98\xb6\x03\x5f\x04\x6f\xc4\xbd\x5c\x7c\xb4\xd6\x25\xe5\xf3\xaa\x14\x39\x8b\x9b\x64\xeb\x65\xbd\xeb\x45\x3c\xb6\xa9\xdb\x24\xc9\x08\xfe\x84\x0f\x4e\xd1\xc8\x1e\x5d\xeb\x06\xdf\x52\xe0\x38\x16\xa3\x61\x24\x59\x1c\x70\x62\x36\x17\x61\xb8\x5c\xc1\xc1\xbf\xfd\xbb\x4a\x3f\xff\xb7\x7f\xa3\x37\x3e\x40\x0e\xf9\xf7\x7f\x4f\x4f\x8f\xbe\x10\x7e\x98\x88\x75\xa7\x38\x69\xdc\x69\xfe\xbe\xdc\xe6\x95\xd7\x66\x9b\xbf\x7f\x1a\x34\xc3\x70\x6c\x72\x3f\xf7\x52\x5c\xb8\xd4\x82\xc9\xff\x0b\x00\x00\xff\xff\x57\xaf\x38\x17\xcd\xbb\x00\x00") func confLocaleLocale_deDeIniBytes() ([]byte, error) { return bindataRead( @@ -4359,12 +4359,12 @@ func confLocaleLocale_deDeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 48023, mode: os.FileMode(493), modTime: time.Unix(1446117606, 0)} + info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 48077, mode: os.FileMode(493), modTime: time.Unix(1448150138, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xeb\x72\xdc\x48\xae\xe6\x7f\x3e\x05\xdb\x13\x5e\xdb\x11\x72\x39\xba\x7b\x6f\xd1\xd1\x76\xaf\x2c\xb5\x2f\x73\x2c\x4b\x63\xa9\x67\x76\xd6\xe1\x60\xb3\x8a\xac\x2a\x8e\xab\xc8\x6a\x92\x65\x59\x73\xe2\x44\xec\x03\xec\x03\xec\xbe\xde\x79\x92\x05\x3e\x00\x79\x21\x59\x92\xdd\x33\x71\xfe\x48\xac\x4c\xe4\x0d\x89\x44\x22\x91\x00\x32\xdf\xed\xb2\xa2\xec\x16\xe9\xd3\xf4\x38\xdd\xe5\x55\xbd\x29\xbb\x2e\xed\xca\xcd\xf2\xf1\xba\xe9\xfa\xb2\x48\x5f\x56\x3d\xfd\x6e\x3f\x55\x8b\x32\x49\xd6\xcd\xb6\x24\xd0\x57\xf4\x2f\x29\xf2\x6e\x3d\x6f\xf2\xb6\xa0\x84\x53\xfb\x4e\xca\xcf\xbb\x4d\xd3\x32\xd0\xcf\xf2\x95\xac\xcb\xcd\x8e\xcb\xd0\xbf\xa4\xab\x56\x75\x56\xd5\xf4\xf3\x92\xbe\xd2\xd7\xb5\xa4\x34\xfb\xde\x92\xce\xf7\xbd\xa4\xed\x77\x96\xf4\xcb\x2e\x69\xcb\x55\x45\xbd\x69\x29\xe9\x9d\x7e\x26\xd7\xe5\xbc\xab\x7a\x6e\xe9\x2f\xf2\x95\x7c\x2a\xdb\xae\x6a\xb8\xf6\x3f\xcb\x57\xb2\xcb\x57\x0c\x70\x41\xff\x92\xbe\xdc\xee\x36\x39\x0a\x5c\xe9\x67\xb2\xc9\xeb\xd5\x5e\x60\xde\xe8\x67\xb2\x68\x4b\xca\xca\xea\xf2\x9a\x52\x4f\xf0\x63\x36\x9b\x25\x7b\x42\x42\xb6\x6b\x9b\x65\xb5\x29\xb3\xbc\x2e\xb2\xad\x0c\xf3\x17\x4a\x4f\x35\x3d\xa5\xf4\x94\xd3\x31\x84\xb2\xa0\xa1\x66\x79\xa7\xe3\x20\x5c\xd2\xc8\xf3\x2e\x41\x55\x75\xbe\xb5\xd2\xfc\x99\x94\xdb\xbc\xda\x30\xd6\x1e\xf3\x07\x75\xbc\xeb\xae\x1b\xe0\xf6\x42\x3f\x09\x09\x59\x7f\xb3\x2b\x81\x83\xc7\x57\xf4\x95\x2c\xf2\x5d\xbf\x58\xe7\xdc\x4f\xf9\x4a\x08\x68\xd7\x10\x32\x9a\xf6\x06\x70\xf6\x23\x69\xda\x55\x5e\x57\x7f\xcf\x7b\x41\xd0\x79\xf0\x33\xd9\x56\x6d\xdb\x30\x6e\xcf\xf0\x91\xd0\xd0\x33\xae\x87\x52\xde\x12\x16\x82\x5a\x38\x67\x5b\xad\x5a\x41\x23\x67\x9e\xe1\x17\xd7\xc2\x79\xcb\xa6\xfd\xa8\x19\x2f\xf8\x73\x50\x94\x3a\xa1\xb9\x71\xfb\x79\x4d\x88\xd7\xdc\x33\xfc\x88\x00\xba\x24\x2f\xb6\x84\xca\x5d\x5e\x97\x8c\xa3\x63\xfe\x45\x78\xa1\x5f\x49\xbe\x58\x34\xfb\xba\xcf\xba\xb2\xef\xab\x7a\xc5\xc8\x3e\x96\xa4\xf4\x52\x93\x92\x20\xcf\xa5\xdd\x34\x7b\x37\x9d\x94\xfe\x57\xfa\x99\x5e\xc8\x4f\xc9\x0b\x0a\x21\xd3\x95\xe4\x91\x74\xd9\xb2\x2c\x0b\x19\x4b\x97\xbe\xa0\xef\x64\xb7\xdf\x6c\x08\x6b\xbf\xed\xcb\xae\xe7\x42\x17\xf4\x9b\xc6\x2f\xbf\x93\xaa\xeb\xe8\x83\x92\x5f\xe3\x23\xa1\xa9\xab\x17\x18\xcc\x09\x3e\x92\xe4\x7d\x57\xe6\xed\x62\xfd\x21\x91\xff\xe8\x2b\x7f\x30\xed\x1d\x9a\x54\x26\x24\x25\x22\x69\xc1\x1a\x48\x16\x4d\xc1\x3f\x4e\xe8\x1f\x55\x5d\xd5\x5d\x9f\x6f\x36\x1f\x12\xfd\x60\x30\xf9\x92\x09\xe8\xab\x1e\x58\xd0\xc4\xf4\xb2\x2f\x77\x1d\xcf\x60\xfa\xa2\x6a\xbb\xfe\x71\x5f\x11\xb1\xbe\xdb\xd7\x49\xd1\x2c\x3e\xd2\x32\xe0\x25\x8d\x96\x5f\x2f\x53\x42\xd6\x03\x5a\x08\xed\xbe\xae\x09\x3d\xe9\xcb\x86\x50\x46\xcd\x54\xd4\xfe\x29\xa0\x8f\xd2\xdd\xa6\xcc\x3b\x02\x29\xf3\x22\xfd\x31\x4f\xfb\xbc\x5d\x95\xfd\xd3\x7b\xd9\x9c\x96\xdf\xc7\x7b\xe9\xba\x2d\x97\x4f\xef\xdd\xef\xee\x3d\x7b\xb9\xa7\x62\x9b\xaa\x2e\xbb\x1f\x9f\xe4\xcf\xd2\x45\x4e\x39\x84\xc6\x9b\x74\x5e\x2e\x79\xb5\x51\x5b\x29\x51\x79\xbd\xe2\x95\x76\xd3\xaf\xb9\x41\xa2\x04\xfa\xe8\x52\x5e\xea\xdf\x24\x3c\x01\xc4\x0a\xb2\x62\x6e\x6c\x0d\x1d\x42\x72\x4b\x13\x70\x76\x73\xf9\xa7\x37\x47\xe9\x05\xf1\xb6\x55\x5b\xe2\x9b\xfe\x50\x89\xef\x53\x1a\xed\x55\x75\xfa\x7c\x96\x50\x59\x43\xc8\x69\xde\xe7\x73\xee\xbb\x9b\x7d\xce\x94\x45\xe8\xf2\xb0\x14\x99\x5b\x82\x33\x76\x7d\x34\x2d\x53\x0b\x99\xea\xd0\xe5\xef\xea\x78\xcb\x3c\x80\xd2\x1d\x66\x2f\x04\x67\x54\x55\xfa\xfa\xed\xdb\xf3\xd3\xe7\x69\x59\xaf\x08\x33\xe9\x75\xd5\xaf\xd3\x7d\xbf\xfc\xef\xd9\xaa\xac\xcb\x36\xdf\x64\x8b\x8a\x91\xd2\x12\xc1\xa6\x84\x25\x19\xe2\x2c\xe9\xba\x0d\xb1\x28\x50\xc1\xe5\xe5\x9b\xf4\x8c\x29\x61\x97\xf7\x6b\x74\xa4\x5f\x27\xdd\x6f\x1b\x46\x94\x6b\xf0\x6a\x5d\xa6\x58\x0c\x00\x6a\x96\x43\xbc\xa4\x85\xf6\x75\x96\x94\x6d\x9b\x11\x07\xed\x6f\x18\xcd\x5a\xe7\x21\x68\xa9\x8e\xa8\xbd\x6e\x7a\x9a\xc6\x14\xe5\xa4\x8a\xaa\xfe\x94\x6f\xaa\x82\x90\xed\x11\x12\x97\x45\x62\xd1\xd0\xbc\x71\x69\xa2\xcc\xe6\x1a\x43\xcd\x17\xb4\x01\x74\xe9\xbd\xd9\x3d\x70\xdc\x7b\x8f\xef\xcd\x92\xba\xc9\x84\x4b\x30\x6f\x2e\xaa\x2e\x9f\x13\x9f\x96\x7d\xa3\x35\xae\xf7\x57\xa6\x1f\xe9\x8a\x42\xa4\x11\x04\xe3\x96\xf7\x22\x6c\x01\x4c\x5c\x39\x31\x6c\x30\x1b\x65\x33\xe1\xd8\x8d\x27\xb9\xf9\x15\xb6\xe4\x12\x46\x63\x4e\x6c\xc2\x8c\xba\x8e\x77\xbb\x4d\xb5\x90\xa6\x5f\x4a\x9e\x27\x34\xde\x99\x15\x29\x21\x1c\x08\xc5\xf2\x02\x72\xa1\x5e\x33\xdb\x4a\x23\x3e\x8f\xf2\xeb\x92\x56\xce\x7a\xbf\x92\xdd\x69\xd3\xec\x8b\x6f\xc0\x50\x6c\xe6\x3c\x3f\x49\xdf\x35\xd4\x61\x50\x87\x03\xf0\x4d\x1c\x13\x63\x60\x61\xa0\x2d\xb7\x4d\xcf\x88\xd3\x62\x15\x4d\xcf\x75\x45\x99\x34\xd2\x2e\xff\x44\x6c\xb1\x6f\x64\x49\x16\xb4\xe4\x16\x5c\x31\x71\xb0\x3d\xed\xe8\xb2\x2c\x88\x8f\xc8\xd2\xb0\xb4\x98\x06\x01\xb5\xdd\xd3\x6a\x5a\x53\x65\x8c\x78\x96\x48\xa8\xca\xa9\x7e\x62\x48\x54\x0f\x56\x39\xad\xdc\x86\x36\x4f\x9e\xe8\x53\x7c\xe8\xef\xb0\x7e\xea\x55\xbe\x5c\x52\xaf\x3a\x5a\x15\xaf\xd2\xc5\xa6\xa1\x25\xf5\xcb\xbb\x37\x1d\x2f\x98\x75\xb6\x6b\x5a\x48\x22\x94\x75\x41\x9f\x2e\x2d\x40\x34\x43\xd4\xfb\xed\x9c\x7e\x5d\xaf\x2b\x62\xd4\x40\x3b\x97\x60\x29\x89\x52\xa9\x89\x7d\x47\x53\x78\x94\xd2\x12\xa6\x11\x10\xca\x40\x00\x3c\x06\xa3\x3a\x06\x5f\x12\x8d\xed\x5b\x5a\x4e\xeb\xbe\xdf\x59\xcb\xaf\xae\xae\x2e\xa4\x69\x97\x7a\x5b\xdb\x79\x40\x19\x98\x83\x0d\xcb\x46\x75\xda\xd4\x33\x10\xc9\xbe\xdd\x0c\xe8\x87\xc6\x6a\x39\x07\xf0\xc2\x5d\x78\xc2\x7f\x2e\x3d\x7a\x80\xe7\x8e\xa4\xbe\x6b\x50\x13\xe1\xb8\x84\x9c\x42\x44\xdd\xec\xb8\xde\x80\xaa\xcf\x35\xc1\x93\x32\x64\x1b\x97\x2f\x12\x0e\xe5\x42\xa6\x0c\x76\xe9\x2d\x0d\x58\xd9\xe8\xe5\x19\xa1\x01\xbc\x14\xa9\xcb\xb6\xd9\x52\xea\x0b\xfa\xe7\x13\x7c\xf7\xcf\xb8\x3e\xc0\xe4\x45\x41\x5c\xbe\x3b\x4a\xdf\xbd\x38\x49\xff\xcb\xf7\xdf\x7d\x37\x4b\x5f\xf7\xbc\x12\x99\x38\xff\xc6\x44\x45\x9f\x22\x6a\x39\x50\xe2\x58\x3d\xd1\xdd\x3d\x5e\x59\xf7\xd2\x1f\x91\xfb\x3f\xca\xcf\x39\x89\x88\xe5\x6c\xd1\x6c\x9f\x31\x57\xdd\xe6\xb4\xf6\x39\x87\xc8\x55\xe9\xf8\xb2\xac\x0b\xfa\x50\x81\x4d\xf3\x02\x76\xa0\xf9\x81\xf8\x26\x82\x6b\xb6\x68\xea\x65\xd5\xf2\x80\x7e\xae\x41\x0d\x26\xd2\xd2\x76\x8d\x1c\x93\x8a\x08\x69\xc4\x41\xaa\xe5\x8d\x07\xc5\x50\xdf\x72\xa2\x4e\x68\x22\x54\x97\xa9\x88\xee\xb0\x7c\x29\xc4\xc8\xf3\x76\x4e\xc3\x6b\x0d\xdf\x9d\x47\x78\xb3\x5c\xf2\x5e\x6b\xbb\x84\xb6\x70\x2e\xa9\xb2\x61\x84\x20\x44\x8c\x3b\x08\xe5\xa7\x4a\xc4\x27\xa7\x6f\xd3\xf2\x13\x51\x1b\x73\xbd\xb6\x29\xf6\x0b\x50\x18\xc3\x1e\x31\xb3\x26\x16\xd1\xd1\xda\x58\xc8\xbe\x12\x30\x09\xee\x1a\x73\xa2\x05\x01\x11\x6f\x30\x66\x4d\x82\xe4\x27\xe2\xfc\x6d\xd0\xc4\x4b\x4b\xd2\xde\x8f\x60\x47\x9d\x72\x25\x78\xe4\x0b\x9a\x71\xa2\x0a\xe9\x45\x27\x9d\x92\x6c\x22\x77\xa2\xe3\x3d\x9d\x50\xf2\x82\xfa\x32\xbf\x01\xdf\xe9\x98\x18\x8a\x72\x99\xef\x37\xbd\xef\xd7\x60\x13\xb1\x96\x2e\xf9\x90\x14\xe6\x4d\x16\x18\x75\x10\xd4\xd3\x0d\xcb\x12\x19\xd6\x24\xe7\xc8\x66\xc3\xf4\x2a\xa7\x10\xdb\x77\x88\x3d\x95\x98\x9e\xcc\x8b\xfc\x3a\x5f\x26\xf9\xc7\xf9\xae\xd9\x77\x22\xf9\xa4\xd8\x6a\xb9\x46\xab\x80\x45\x85\xe9\xbe\xcc\x12\x15\x97\x32\x3d\xae\x65\x9f\x2a\x1c\x86\x1c\xb9\x4a\x95\x7a\x84\x63\xbe\xf6\x67\x06\xe0\x53\x56\x37\x59\xd6\xf5\xe6\x9c\x07\xd9\xb9\xc3\x90\xe0\x9c\x87\x8b\x16\x58\x84\xa3\x59\xfa\x54\x81\xcd\x2b\xc1\x00\x2f\x44\x35\x68\x9a\x9a\xea\xca\x12\x35\x50\xf9\x27\x54\x27\xca\xcc\xf4\x80\xa0\x32\xbb\x89\x7e\xbc\xdd\x17\x0d\x64\x07\xec\x25\x54\xda\xd0\x3a\xd8\xd7\xd3\xb6\x5a\xad\x89\xb7\x36\xd7\x47\x82\x94\xeb\x75\x53\xf2\xfa\x79\x7d\xfa\xf4\x5b\xe9\xc7\x8a\x77\x16\x57\x88\xf7\xa4\x7c\x4f\xc4\x45\x18\x53\x32\x96\x2e\xb8\xbd\x1d\x90\xa3\xa3\x88\x00\x0d\x0f\x7f\x23\x51\xc2\x31\x0d\xe5\x15\x61\x9e\x32\x09\x0f\x23\xa5\xed\x00\x29\x0d\x2b\x57\x52\x79\x3f\x5b\x35\x38\xc8\x98\x7c\xcf\xbb\x25\x9d\x87\xbb\x3e\x5b\x55\x7d\xb6\x64\xd6\xc5\x35\xbf\xe0\x1a\x78\xf3\xa6\x9c\xf4\x01\x65\x3d\x48\x89\xff\xd1\xe9\xac\xf8\x21\xbd\xff\x49\x25\xc6\xef\x99\x27\x65\xb4\x8a\xaa\x0d\xa6\x44\x8f\x47\x6d\x29\x02\xab\x9d\xc1\x9d\xd4\xd6\xed\x77\xd8\xdb\x54\x40\x74\xa7\x81\xa2\xb9\xae\x79\xf5\x81\xf9\x12\x9f\xa9\x16\x15\xed\x19\xf3\xaa\xce\x69\x83\xb7\x5a\xc0\xd4\xef\x13\x4d\xbc\x3d\xbf\x02\xe0\xaa\x99\xef\xab\x4d\x61\x00\xb3\xc4\x84\x48\x12\x21\x75\xf6\x43\xb1\xda\x92\x2a\xe9\xcb\xa2\x69\x59\x22\xc1\x68\xac\xe0\x01\x51\xa8\x65\x11\x03\xc9\x15\x9f\x67\x00\x8b\x72\x4e\x6a\x61\x34\xd0\xf4\xe3\xa8\xc6\x32\x0d\xe8\xa6\xea\xea\x07\x3d\x7a\xba\xd8\x53\x5b\x34\xf5\x9c\x4c\x05\xbb\xf4\xf1\x33\xfa\x9b\xb0\x84\x24\x3b\xc0\x6a\x8c\x78\xce\x4c\x25\x73\x2f\x6b\x31\xea\x6a\x44\xe4\x6e\xaa\x8d\x84\x83\xb1\x86\xfd\x35\x12\xe8\xf6\x42\xb5\xac\x2e\xd9\xd0\xb4\x96\xdf\xd0\x07\x9f\xdc\x56\x1b\x4c\x42\xde\xeb\xf1\xaa\x21\xbc\x31\x81\x1c\xc9\xa2\x59\xd2\xd0\x98\x97\xf6\xf9\xc7\x12\x27\x32\xda\xf3\xdf\xb3\x1e\xe8\x43\xb2\x17\x19\xb4\xd9\x14\xee\xbc\x03\xca\x6e\xda\xa1\x1a\xc3\x03\x39\xaa\xed\x48\xd8\x5e\xac\x33\xa7\x45\x62\xa4\xf4\xe5\x67\xec\xfe\xc8\xf2\x4a\x25\x26\x79\xce\x4a\xb6\x37\x98\x2e\x1e\xc4\xd9\x8d\x9f\x2d\x92\x40\x69\xa1\xd0\x61\x76\xde\x30\xd6\x3e\x95\x0e\xea\x24\x4c\x8d\x0b\x50\x5d\x24\x2b\x6b\x55\xb1\xb6\x81\xb2\x44\x25\xa2\xb9\xa2\x16\xe9\x12\xb0\x32\x55\x81\x81\xe3\xd1\x7c\xea\xc9\x7e\x46\x13\x03\xb5\x81\xb5\x4c\x7c\xf1\x46\xd6\x45\xd0\x66\xf2\x5e\xd5\x63\x1f\x12\x83\x7b\x17\xe7\x13\x4f\x59\x7f\x08\x54\x50\x99\xcd\xae\xa9\xa2\xa0\x3d\x51\xb6\xe2\x45\x8a\x75\xb9\x63\xe9\x63\xdb\x81\x2c\x36\x7c\xd2\xbe\x51\xf9\xd9\x11\xc8\x4f\xc2\xb0\x89\x62\x88\xcd\x7d\x93\x74\x0d\x2f\xb8\xec\x2b\xab\x78\x5e\x11\x29\xa0\x7c\xbc\xd9\x89\x6e\x8c\xc4\x5c\x9e\x3e\x5a\x65\x37\x47\xf1\xc9\x6a\x9d\x77\xc4\xc4\x49\x56\xd0\x62\xc5\xcc\x4e\xb8\x3c\xed\x74\x9e\xc3\x9a\x81\x3e\x0f\x54\x2e\x25\x9b\x76\xb8\x0b\x73\x0f\x85\xcf\x69\x2b\x4e\x76\x82\x64\x14\x0a\x50\x13\x6d\x12\xc2\xb6\x25\x8b\xcf\xd9\x56\xd4\x68\xf2\x2b\x3d\x2b\x13\xda\x0e\x57\xb4\xa0\x8d\x60\x9f\xb2\xf6\x63\x85\x53\x86\xd2\x2b\x03\x94\x7d\xc8\x88\x15\xc2\x52\x7e\x32\xbd\x25\x71\x86\x6b\xa8\x86\x68\x6d\x8f\xd0\x4f\x5b\x16\x65\xcf\x8c\xb1\x8b\x8c\x00\x51\xaf\x23\x6e\xe1\x91\x78\x9c\xb2\x02\x32\x84\x52\x91\xdb\x0f\x8b\x0b\x30\xd7\xf8\x71\xfe\xec\x7e\xf7\xe3\x93\xf9\x33\xc7\x5b\x17\xeb\x72\xf1\x51\xe8\xaf\xaa\xe7\xcd\x67\x1c\x6c\xa1\x28\xa1\x33\x35\xaf\xb1\xfb\x45\x4a\x07\xdd\x16\xe7\x2a\xe2\x05\x54\x8c\x10\xcf\xb9\xd1\xa4\x51\x67\x98\x65\xcc\x4c\x6d\x9b\xf5\x4d\x40\x8f\x46\x4d\x54\x05\x5a\xd2\x9c\x84\x26\x93\x97\x20\x56\x83\x87\x3e\xe6\x54\xa6\x5f\xec\x16\x9e\x80\x31\xea\x4d\xb5\xad\xfa\x11\x01\x31\x3b\xca\x95\x10\x55\xb1\x66\x18\x45\x5d\xc0\x09\x50\x42\x4c\x9d\xaa\xa1\x4d\xd8\x88\xea\x3a\xa7\x53\xd7\xf7\x29\x11\xd2\x9e\x36\x33\x1e\x19\xf5\x93\xb8\x7a\xce\xbb\x38\x9d\xb8\xf2\x2e\xdb\xd7\x8a\xdc\xb2\x30\x92\x7a\x55\x61\xaf\xe1\x76\x8d\xf0\x03\x28\xc3\xbf\x1e\x1c\xd2\x87\x0e\xef\x8f\x66\xaa\x08\x43\x31\xde\x00\xb8\x43\x15\x0b\xb9\xf9\xe4\x14\x12\x83\xac\x4b\x39\x28\x03\x03\x0c\xc7\xd3\x4d\xa7\x2d\x3f\x87\x74\x64\xfb\x48\x29\x98\x96\xf9\xbe\xef\x1b\x3e\xc4\x6c\x98\x76\xa4\x8c\xf5\xfa\x04\x80\x38\x97\xf9\xfa\x74\x46\x3c\x9e\x84\x1f\x97\x76\xa8\xc8\x88\x68\x99\x01\x88\x3a\x9c\x8f\x7f\x83\xd1\xe9\x8e\xe9\xc0\x0a\x51\x3c\xe5\xf5\x8d\xd7\x85\xa0\x17\xdc\x60\x3f\xdd\x97\x87\x6d\xf9\xc8\xf7\xc6\xad\x1c\x94\xb0\x1e\x49\xf1\x60\x55\xbd\x43\xae\xe8\x63\x6d\xed\xd9\x06\xa8\x5a\x4d\x4f\x1f\x6d\x8c\x5e\xe4\xf3\xfa\x20\x36\x4b\x32\x68\x01\x44\xd3\x28\x50\x7a\x36\x68\xcb\x9f\x1f\xc7\x18\xec\xe3\x2e\xfb\x7d\xac\x6f\x9a\xac\x5b\xcb\x59\xdd\xba\x47\xe7\xfc\x7a\x15\x29\xb9\x70\x89\x02\xa2\xfb\xaf\xbc\x5b\xf2\x40\x3f\x24\x3a\x1b\x65\xb0\x28\x94\x5a\x2d\x67\x62\x1d\x31\xbc\x49\x76\x7f\x2e\x5b\x3e\x0b\x02\x28\x9e\xad\x43\x58\x8c\x07\xe1\x38\xa8\x17\x05\x1c\xf7\xd4\xa4\x23\x13\x0e\xb8\xd7\x4d\x91\x53\xb7\x6f\xa0\xb6\xfe\x2b\xed\x4e\x35\x2e\x04\x9a\x84\x32\xe4\x4c\x7a\x86\x0f\x02\xe5\x03\xf2\x87\x84\xf7\xff\xb7\x03\xc9\x96\xb7\x37\x4d\x0b\x84\x2b\x64\xfd\x1c\xdd\x78\xb8\xa1\x5c\x4c\x48\xc1\xef\x4a\x7f\xf1\x81\x2f\x37\xa6\xcb\xcb\x57\x57\x76\xe2\xbd\x7c\x95\x7e\x2c\xb5\xf2\x57\x7d\xbf\xeb\x7e\x81\xf6\x43\x54\x19\xac\xf7\xb8\xc8\x6f\x58\xe2\x94\x64\xfd\x81\x8c\xab\x32\xdf\x6a\x2f\xf9\x53\xaa\x38\xa6\xad\x58\x13\xf9\x93\x76\xe8\x40\xab\x96\x40\xf6\xfa\x79\x4a\xe6\x76\x27\xa0\x52\x6f\x55\x7e\x1d\xa9\x02\x7f\x4d\xf2\xcd\x8e\x0e\x69\x2c\xfc\x04\x60\xd0\x7a\xcd\xf5\xac\x96\x02\x04\x14\xbc\xdf\xd2\xcc\x2f\x70\x36\xa5\x02\x0f\x1f\x67\x8f\x02\x2d\x68\x5c\x59\x41\x4b\xfb\x77\x55\xc8\xdf\x2c\x21\x87\xf5\x76\xd5\xdf\x6d\x14\x51\x75\x9c\x4e\x9c\x92\x20\x20\x8f\x7a\x28\x07\x84\x4d\x9d\x65\xd3\x9e\x95\x60\x94\x40\xf2\x6f\x54\xf5\x36\xff\x7c\x57\xc1\x6d\x33\x51\x4e\x18\x98\x2f\x64\x6c\x4a\x87\x18\x2f\x0b\x82\x67\x35\xd7\x41\x68\x9a\x7a\x02\xa9\xea\xc5\x66\x5f\x1c\xec\x49\xb7\x9f\xd3\x86\xc8\x82\xf5\x83\xfb\xdd\x03\xae\xb2\xfe\x48\x3b\x78\xed\xe0\x7f\x91\xdf\x29\x7e\xff\x60\x77\x72\xb4\x5d\xea\x69\x23\x75\xb7\x73\x24\x88\x14\xbc\x3b\xe0\xd4\x30\xf3\x4c\x25\x3c\x49\x38\xf2\x87\xfe\x42\x8f\x7a\x6e\x61\xb3\xd2\x02\x87\x2a\x22\xc1\x99\xbf\x48\xcc\x58\x1e\xc8\x58\x42\xaf\x43\x39\xdc\x49\x0a\xb6\x8b\x02\x42\xae\x93\xb2\x71\xb9\xc1\x02\x3d\x58\x9c\xc4\x9e\x89\xd2\xe7\x63\xc5\xf3\x81\xf2\x3d\x2d\xb1\x89\x0a\xdc\xca\x3b\x58\x50\x26\x1f\x85\x68\xe4\xc5\x88\x77\x8c\x0b\x32\x18\x9d\x11\x37\x9b\x72\xc5\x1a\x4a\x6b\x38\x6a\x4d\x27\x9a\xb6\x3c\x01\x0b\x09\xce\x63\xd8\x4d\x56\x38\xaf\xe1\x89\xc7\xcd\x51\x7c\xd6\x64\xc5\x0d\x55\xd5\xe2\x32\x38\x38\x71\x6a\x37\x74\x07\xd8\xf2\xe1\xaa\xdb\xf3\x06\xc4\x07\x31\x91\xc4\xe2\xd9\x60\xf1\x02\x55\x95\x68\xe2\x70\xf5\x44\x8b\x7c\x3a\xbd\xab\x7e\x80\x7d\x65\xd5\xa1\x86\x62\x5c\xb1\x56\xee\x80\x0e\x55\xeb\x4e\xcf\xe5\xe7\x0a\xda\xde\x97\x15\x6b\x11\x71\x7e\x76\x6a\x03\xe4\xcd\x92\x0d\x31\x0f\x3e\xa7\xc9\xa8\x44\x66\x6f\x3e\xf1\x6a\xe4\xf6\x38\x57\xca\x89\xf6\x57\x07\xc5\xf3\xac\x27\x71\xdc\x19\x95\xc5\x11\x09\x32\x5c\x82\xfa\x89\xc5\x9d\x6f\xae\xf3\x9b\x0e\x6a\x25\xe3\x50\xac\xe9\x96\xe2\xcc\x7e\x48\xcc\x59\xa1\x57\xe1\x7d\x0a\xad\x38\xc3\x04\x5f\x0c\xf0\x66\xe3\x84\x91\x6b\x9c\xa5\xc1\x5d\x54\x51\xf5\x29\xd8\xae\x75\x6f\x62\x3d\x00\x9f\x9a\xf9\x3c\x23\xd9\x41\x45\xb8\xa8\xd4\x9d\x62\xa2\xec\x11\x0b\x81\xd4\x0c\x8b\x64\xc4\xbf\x05\xd7\x24\xe5\x12\x66\xd1\xa5\x40\xb1\xb2\xa7\xfa\x1f\xcb\x19\xa0\x22\x1c\xf2\x99\xd2\xeb\x1a\x78\x2f\xa3\x59\xb1\xfb\x00\x49\x87\xa6\x20\xe9\x7a\x5a\x02\x8c\x69\xbb\xfd\xff\x6b\x20\x8f\xa4\xc8\xc5\x12\x03\x9a\xba\x75\xb5\x4b\x1b\xe8\x98\x43\x14\x7a\xb2\x0d\x04\x69\xbe\xf9\x28\x71\xc6\x60\x65\x7b\x9b\xd7\xdd\xb2\x84\xd6\x7d\x9b\x2e\xf9\x82\x79\xa6\x4d\xb3\x5c\x2e\x56\x00\x07\x5a\x96\xf3\x1a\x9a\x0e\x77\x17\xcc\x5d\x30\x51\x71\xd3\x72\x0d\x03\xcd\x2e\xfa\x00\xac\xfa\x9a\x3a\xeb\x03\x93\xd9\x08\x05\x90\x8d\xa3\x4b\x35\xeb\xcd\xa7\x32\x44\xc4\xf2\xf7\x8e\x3c\xc0\xba\x5e\x2c\xc8\x6d\x4c\x3c\x4d\xd2\x28\x54\x3b\xb8\x13\x9e\xdf\xc4\xa3\xe7\xa2\xc1\x45\x3b\xad\x91\x52\x5b\xe1\x85\xc1\x6b\x65\x50\x21\x54\x3a\xfe\x44\x94\xc8\xa5\x7c\x36\xa7\x2e\x2e\xd6\xd1\xea\xbc\x42\x4e\x2a\x39\xa3\x05\x9a\xbc\xe7\xa6\x3f\x24\x72\x2d\x9f\x39\x0d\xfe\x89\x5c\xd3\x8b\x44\xab\x1a\xf9\x3e\x35\xb5\x3d\xdf\xab\x58\x11\x51\xd2\xdf\x5a\x92\xb7\x61\xd3\xa0\xfe\xad\x21\x99\x03\x8a\xf8\x3f\xd2\x17\xcb\xf8\x75\x12\xdd\x45\x0e\x74\x2a\x10\xa3\xab\x9e\x57\xd8\x05\x2d\x0c\x12\x7b\x8e\x35\x85\x8e\xf4\xe0\x0e\x50\xf3\xbc\xb0\x6f\x9a\x8f\x9c\x99\x1e\x2f\x6d\xf9\x52\x38\xd1\xb9\xbd\xb0\xef\x84\x35\x02\xdb\x19\x36\x07\x16\xbf\x71\xa7\x11\x6c\x09\x2c\x2d\xf0\x84\x59\xde\x2c\x80\xdf\xe5\x3d\xb1\xc5\x5a\x0e\x62\xc2\xa1\xc2\xa2\x9a\xed\xaa\x70\x97\xdf\x5c\x0b\x1b\x8a\x08\x2a\x3e\x24\xde\x7e\xc5\x4c\x57\xa6\x74\xc8\xca\x62\x3a\x95\x91\xff\x85\x3e\x55\xfb\x03\xf6\x85\x0f\x3d\x90\xe3\xda\xd9\xee\x0a\x61\x4b\x13\xfc\x4c\x54\x5f\x16\x2b\xcb\x94\xbc\x9f\xa6\xa7\xf2\x61\x47\xfb\x7d\x85\x31\x55\x45\x92\xec\x80\xf7\xc0\xda\x46\x27\xc2\x75\x5a\xad\xaa\xbc\xda\xbe\x1d\xee\xec\x6c\xe0\x21\x85\x98\x70\xed\x26\x09\x52\x00\x5f\x64\x04\xc7\x52\xd6\x44\xe3\xbc\x5a\x07\xb7\x64\x7c\xf7\xc3\xa7\x6c\x02\xbb\x2e\xe7\x29\xeb\x86\x89\x70\xe8\xf4\xa7\x03\xdd\xe6\x74\x70\xfc\x54\xe5\x4e\x0b\x45\xb3\xc5\xf6\x3c\xba\x8b\xbe\x60\x5b\x1e\xdc\xbc\x8f\x8d\xce\xf8\x1a\x4b\x6f\x86\xde\xe8\x67\xb2\xdf\xf1\x55\x4b\x30\xe0\x5f\x90\xe0\x06\x1c\xe7\x07\xe7\x31\x0c\xdd\x8a\x39\x69\x46\xc0\x0b\x3b\xa4\xc1\x24\x66\x66\xcb\x67\xc2\x98\x4c\x97\x50\x31\x04\xf1\x1a\x16\xb0\x18\xb5\xa4\x01\x32\xe5\xf2\x17\xc3\xa7\x9d\x31\x5d\x37\xd7\xe9\xa6\xaa\x3f\x76\x8a\xcd\xa1\x92\x07\xfa\x2b\x22\xc2\xbd\x18\x19\xc9\xe7\xd8\xa6\xc9\xee\xa4\x06\x2b\xdc\x6e\xae\xe4\x76\xee\x18\xc9\x93\xb0\xfe\x88\x6e\xb7\x67\xcb\x92\xc5\x64\x30\x35\xbb\xe9\xa3\x51\x36\x4d\xa7\xda\x52\xcf\x44\x38\x0d\x4a\x15\x85\x52\x9c\x3b\x08\x9d\x92\x63\xbb\x5f\xc4\x9a\x4a\xec\x46\xd0\x3a\x80\x15\x9a\x55\x5b\xb1\x11\xfc\xc5\xee\x0b\x31\x3f\xee\x34\x81\x6c\x58\xa0\xc4\xbd\x0f\x2f\x49\xde\x36\x76\x1b\x69\xdc\xd0\x32\x8f\x6c\xd3\x17\x0c\x60\xcb\x8e\x3a\x3b\xa4\x0f\xad\xc0\xf4\xfd\x77\x90\x89\x11\x41\x78\x83\x24\x13\xef\x18\x44\xb3\x89\x44\xbb\x13\xbd\xb9\x70\xf9\x8c\xd9\x20\xff\x2d\xee\xfa\x9c\x52\x81\x0f\xe4\xd9\x00\x44\x0f\xec\x11\xe4\xa4\x04\x6d\x6d\x1d\x94\x9e\x07\xbd\x1f\xad\x15\x2b\x77\x4d\x58\x08\x07\xae\xd4\x5d\xcc\xcc\xe8\x87\xd5\xae\x72\x71\x08\xeb\x0c\xb1\x50\xa9\x71\xeb\x28\x55\x10\xaa\x70\xc0\xe8\xfc\xb9\xe2\x58\xb8\x0f\xdf\x16\x88\x89\xa2\x03\x50\x2b\xc5\xf8\xbc\x59\x9a\xa9\x43\xc8\xc8\x76\x2d\x91\x07\x6d\xb4\x03\xfd\xda\x88\x85\x45\xec\x0a\xdc\xaa\xc1\xbd\xbd\xe7\x52\x74\x62\xd4\xba\x98\xdf\xe3\xcb\x52\x9c\x8e\x88\xe8\x98\x45\x5d\x4d\x56\xe6\xec\x72\x85\x45\xbb\x4e\xd2\x0f\x61\x5c\x3a\xdc\x53\x4d\x19\x00\xd8\x70\x94\xc1\xf7\x13\xda\x42\x8c\x46\xc5\x0e\xe3\xbf\x55\x2d\x76\x13\xee\x1e\x2f\x62\x20\xe9\x29\x38\x0a\xcd\x9b\x28\xb1\x8d\x9f\xfc\x34\x6c\xdc\x4f\xf8\xcf\x03\xfd\xb7\x0c\x2e\xa6\xf7\x6f\x12\xea\x12\xa8\xd1\xdf\x87\x16\x98\xe6\x81\xc6\x8c\xc1\x42\x10\x55\x47\xba\xe4\x2c\x52\xd0\x43\xd5\xfe\x55\x4a\x79\xde\xbb\xff\x09\xfa\xf8\xa8\x2d\xa7\x8f\xf7\xbd\x1c\x2c\x07\xee\xde\x60\xe7\x1c\x2d\x0c\xca\x80\x1c\xa1\x24\x1d\x48\x07\x4a\xd4\x4e\x48\xe0\x66\xe4\x6c\xc2\x18\xa2\x24\x88\x12\x4a\x0d\xd8\x42\x58\x50\x85\xcd\x11\x0c\x06\xe5\xa0\xd2\x8d\x94\xc6\xf1\xc4\x1f\xe3\x24\x46\x58\x11\x58\x18\xf5\xd1\xc6\x2c\x52\xac\x9e\xec\xb6\x8c\x08\xb9\x71\x77\xf6\x5f\xa3\xeb\xb4\x23\x3d\xfe\xac\xab\xd5\x9a\xc6\x55\x6d\xf9\x9e\x19\xe4\x64\x97\x99\xfe\x74\xca\xbf\x88\xa1\x34\xab\x9a\x75\x57\xdc\x82\x18\x7c\xb9\x0d\xe6\xc7\xae\x6f\x9b\x7a\xf5\xec\xb4\xe1\x63\x23\x6b\x74\x78\x13\xfc\xe9\xc7\x27\x9a\x4e\x4c\x93\xe7\x90\xad\x03\x5f\x56\xfd\xab\xfd\xfc\x41\x97\xae\xd8\x5c\x15\x37\x30\x79\x60\xc4\xaa\x26\x06\x62\x8d\x77\x5d\x3b\xb4\xc0\xa4\x95\x16\x7a\xd7\x6c\x68\x95\xc4\x45\x9a\xed\x56\xe6\x97\x36\x80\xad\x40\xa2\xff\xb0\x4a\x28\x6b\x60\xae\x6c\x15\x3f\x54\xe1\xcc\x91\xb9\x9f\x1f\x9d\x36\x13\xf7\x22\x3d\x89\x0a\x5c\x0c\x8c\x6b\xd6\xba\x0f\xb6\x0d\xd6\x91\xa4\xae\x18\x04\x85\x71\x31\x4c\x24\xab\x9d\xbc\x8a\xc6\x94\x2c\x38\x09\xa0\x0e\x2b\x4f\x45\xa9\x27\x22\x31\x71\x9a\xb5\x29\xb2\x42\xc9\xca\x6d\x21\xad\x80\x7e\x79\xaf\x30\x15\x2e\x04\x5f\xaf\xcc\x61\x82\x1d\xac\x72\x65\x6c\x32\x7a\x65\x6b\x36\x82\x80\xb1\x29\x4e\x3c\x67\x1b\xc2\x4c\xf1\x36\xeb\x45\xc8\xd4\xc4\x9c\x49\x18\x9b\x90\x24\x9d\x34\x98\x6d\x7f\x21\x53\x1b\xb5\xeb\x07\x6e\xcd\x7d\x01\x5f\xc3\x98\x8e\x81\x0e\x1a\x0b\x74\x23\x3a\x53\x6f\x54\x13\x82\x0c\x36\x85\xf5\xa7\x9e\xb7\x8d\xde\x8f\xa5\x96\x88\x39\xa1\x63\x4e\x5f\x46\x8b\x99\x3b\x01\xe3\x45\x31\xce\x81\x72\xe5\xbf\xa5\x45\x4e\x9c\xa0\x6f\x3e\x12\x31\x8d\x8b\x20\xfd\x50\x21\xc7\x61\xec\xac\xa1\xfc\xe5\xd8\xb3\x87\xe1\xe9\x43\x2f\xa5\x0f\xb2\x98\x80\xb3\x68\xad\xce\x40\x4a\x34\x43\x30\x0c\x67\x2b\x92\x42\x38\x89\x32\x02\xb5\x02\x72\x1c\x80\x24\xac\x9a\x81\xa0\xbe\xe5\x0f\xfd\x1d\x4e\x4b\x54\x7f\xb0\x5c\x88\x81\xef\xeb\x80\x81\x0a\x39\x64\x82\x0a\x37\xc8\x0b\x3a\x4a\xc2\x0a\xf2\x58\x2a\xbc\xe2\xec\x4e\x4d\x80\xf5\x6e\xdf\x8a\xbc\xd4\x44\xac\x01\x00\x0a\xc2\x3b\x87\x08\xfc\xf2\x5a\x05\xab\x45\xed\x36\xd4\xbe\x11\x73\x40\x54\x67\x2c\x73\x2d\x76\x1c\xe9\xf1\xc5\x6b\xda\x33\x5c\x83\x56\xe9\xcf\x39\x49\xd2\xd2\x85\x6b\xa7\xd1\x60\x62\x1b\xf2\x5c\x27\xf3\x4b\x71\x53\xa0\xa2\x24\x96\xb8\x1b\xd4\x68\x40\x32\x98\x38\x5f\x70\x5c\x76\x81\x96\x47\x5a\x43\x4f\x86\xbb\x95\x1b\xea\x37\x84\x59\xa7\x6b\xe4\xa5\xb5\xbb\x61\xfe\x1f\x18\x6e\xe5\x82\xa1\x6b\x70\xf0\x81\xc5\x18\x41\x42\xd3\x91\xf2\x12\x6e\x1d\xff\xb0\x0e\x2b\x07\x09\xa7\x32\x64\x23\x93\x93\xe9\x99\xca\x64\xb1\x29\xce\xb2\xb3\x7a\xe2\x31\xdf\xc5\x67\x98\xf0\xfd\x39\xfc\x16\x2e\x13\x8e\x2a\x20\xe5\x8b\xc9\x66\x1d\x45\x4b\xd3\x03\x7e\x93\xca\x46\x28\x56\x0f\xdc\x8a\x9c\x2e\x94\x22\x02\x83\x62\xaa\xe5\xba\xdc\xb0\x25\xb0\xb6\xee\xaf\x37\x75\xe8\xd1\x8d\xbf\x02\x05\x27\xd1\xd2\x8b\xb8\x82\x8a\x50\x4d\x67\x95\x11\x04\x2d\x37\x5c\xf2\xcb\x51\xde\xf6\xeb\x93\xe3\xb7\x6f\xcf\xaf\xfc\x36\xcd\xeb\xa0\x2e\x48\x98\xf8\xc6\xd9\xce\x8d\xfa\x65\x16\x74\x6e\x02\x63\x08\x6f\xc3\xa7\x25\x0e\xc1\x85\x6c\xca\x6a\xa7\xcf\x55\x03\xde\xd3\x70\x5f\x8c\x97\x47\xfd\x2f\x0e\xcd\x5f\xf2\x9e\xe5\x9b\x0f\x89\x29\xbb\xcf\xf9\x7f\x12\xde\x17\x04\x77\x34\x58\x7a\xfe\x2a\xc7\xdb\xe9\x53\x07\x9a\x62\x74\x7f\x00\x26\xbd\xcf\x71\x34\x22\xdc\x37\xd8\x2b\x96\x29\x2e\xb3\x8f\x58\x1d\xda\xb4\x58\x30\x8c\xdc\x7d\x5d\xfd\xb6\x87\x80\xc6\x07\x23\x62\x1e\x6c\x92\x39\xaf\x36\xb2\xa1\xfc\xd9\xfd\x90\x74\xfe\x1a\xd8\x92\x07\x8d\xd3\xaf\x1f\xbb\x1d\x5b\xb4\xd2\xde\xd0\x3d\xbd\xb7\xaf\x52\xd6\xae\xb1\x3d\xd7\xbd\x67\x74\x8c\xe1\x2b\x6e\x9a\x3e\x82\x78\x36\xaa\x8e\xfd\xc9\x16\xa2\x8a\x73\x96\x41\xa0\x5b\x4d\xe7\xd5\xc2\x22\x6f\xa4\xff\x13\xc4\xff\x8e\x36\xd9\x79\xcd\x8f\xe3\xa1\x9e\x92\x09\x47\x58\xbb\x9f\xf2\xcd\x3e\x56\x96\x70\xeb\x5c\xa6\x7b\x94\xa0\xa8\x6a\x8c\x87\x8e\x6f\xc8\x33\x0b\x76\xce\x83\x19\x3b\x52\x27\xd0\x17\xb8\xa8\xe4\x9b\x5e\x74\xc5\x69\x80\x7e\xe6\x05\x68\xb5\x0c\xa7\x58\xef\xf4\x1c\xcb\xe9\x16\x6d\x05\x33\x7c\x49\x67\x37\xc7\x34\x70\x71\x74\x89\xbe\xdd\x4b\x22\x54\x1a\xd3\x6c\x55\xf5\x74\x46\x66\x67\x2b\x18\x6d\x27\xb4\xce\x69\xeb\x81\x83\xa4\x7c\x59\xca\xa8\x28\xef\xd2\x02\x0b\x1d\x17\xcb\x86\x4a\xb2\xfc\xa1\xbf\x27\x4a\x29\xa0\xb9\x67\xf2\x75\x45\x93\x55\x75\xc5\x2b\xf5\x35\xfd\xa3\x5d\x58\x64\xf6\x98\xae\x44\x20\x45\x25\xaa\x90\x91\x53\xb3\xab\x47\x8d\xe8\x74\x56\xd4\x7a\x2e\x98\x17\xb5\xf3\x56\x95\x37\xd0\x86\x84\xf4\x39\x12\xd4\x2b\x92\x7a\x42\xb3\xf0\x49\xe4\x17\xf1\x93\x7c\x6d\x29\x0f\xf9\xcc\xf6\xe8\x80\x22\x78\x78\x9b\xfa\xf5\xfa\xe0\x61\x0d\xb7\xab\x85\xd9\xa0\x28\x63\x25\x7f\xaa\xa6\x67\x91\xd1\x42\xa2\x5e\x9b\xe6\xbc\xe6\xdc\x36\xc5\x7b\x2d\xcc\x3d\xbc\x94\x4d\x67\x91\xc7\xab\x0b\x56\x9b\x73\x5a\x1d\xf7\x9e\x09\xce\x6c\x69\x59\xad\x3a\x05\x67\xea\x38\x1a\xcc\x81\x42\xcc\xe0\x68\x92\xd9\x91\x95\x2d\x72\xf8\x38\xa8\xea\x97\x69\xa8\x88\xfb\xaa\x04\x94\x07\xce\x2b\x4f\x5e\xbe\xbe\x82\xeb\x0a\xcd\x18\x5c\x0d\xcc\x3f\x87\x8d\x7a\x67\xae\x4e\xbb\xd0\x03\x88\xd9\x01\xbf\x96\x44\x2d\xc7\x89\x38\x6b\xc6\x77\x1f\x66\x5c\x94\x87\x7e\x4e\x89\x2c\x4d\x5b\xef\xba\x50\x97\x6e\xc5\xc3\x71\x85\x2d\xee\xe3\xa5\x0e\xbf\xd9\x00\xd3\xa1\xe9\x1b\x6f\x06\x05\xef\x66\xbb\x9b\x8c\x75\xb2\xd8\xc0\x76\x37\x3e\x21\xd8\xe9\x29\xa3\x8a\x80\x9d\x95\xc2\x05\x30\xfb\xef\xff\xe7\xff\x3e\x3e\xe1\x8e\x9f\xf4\xed\x86\xbe\x54\x90\x4a\x60\x6c\xc6\xe6\x7d\x10\xab\xa4\x01\x64\x6e\xaa\x9d\xf8\x75\x2f\x50\xb3\x6b\x22\x3d\xff\x97\x44\xa6\xc3\x51\x0b\x88\x0e\xce\xde\x9c\x41\x5b\xe0\x4f\xd8\x29\xfa\xdb\x5d\x3e\xd9\x2d\x9c\xcf\xbb\xdf\x90\x04\x7e\xad\x36\x10\xbf\xc8\x57\x62\xbf\xff\x82\x5f\x7b\x36\x64\x16\x83\x0b\xfe\x48\xf4\x17\x5f\xd2\x24\xea\x77\xcc\xec\x35\xe1\xe3\x8f\xd2\x06\x1d\x7d\x42\x5e\xf8\xdb\x9e\x47\x29\xa7\xf6\xa7\xe9\x9f\xf8\x57\x0a\x97\x53\x1d\x0a\xb3\x18\xc7\x2f\x40\x81\x03\xa6\x13\x1a\xe6\x82\x87\xaa\x79\xbc\xe7\x2f\x79\xbc\x1f\xdd\x98\x01\x9f\x01\xb2\x37\x4d\xb2\xdb\xb3\xd9\x0f\xd3\x90\xb5\x76\x41\x29\x70\x4d\xe2\x44\x96\x1e\x82\x1a\xdc\x0d\x5e\x54\x07\x9a\xa7\xee\x8a\x6b\xd9\xe4\xb6\x8b\x2c\xaf\x83\x62\xbb\xe5\x79\x4e\x43\x56\x11\x38\x49\x1c\xe7\x53\x8e\xd7\xb7\x25\x24\x7b\xfa\xa7\x79\x70\xa6\xec\x73\x5c\xfb\x08\x10\xad\x80\xff\x94\x5e\x51\x8a\x42\x94\x61\x56\xa2\xa0\xc8\x1f\xba\x3c\xb3\x83\xf4\xd8\x31\x7a\x93\xcf\x4b\x24\xbf\xc1\x07\xad\x4b\x62\xe4\x3d\xe1\x1e\x0a\x29\xf7\x23\xe1\xc1\x57\xbd\xd0\x38\xbe\x12\xf5\x38\x90\x0b\x3f\xf9\x4c\x70\x9d\xd2\xe6\x6c\x7e\xfb\x2e\xbf\x96\x9f\x84\x18\xf5\x9c\x7e\x25\x5f\x92\x0c\x63\x6e\x01\x85\x2d\xb7\x83\x87\xa8\xa6\x0b\xed\xc2\xbe\x13\xeb\xc0\x6c\xdc\x11\xcb\x19\x38\x6e\xa7\x8b\x41\xfe\x52\x0e\x9c\x2f\xf8\xb8\x69\x69\x39\x98\x74\x6a\x26\x66\x2e\x7d\x4b\xab\x55\xee\x1c\xce\xe4\xcb\xe5\x14\x62\xb3\x79\x8a\x2d\x4e\xd3\xcc\xb8\xfe\x9c\xff\xbb\x54\xa2\x44\x5d\x98\xf4\xdf\x19\xaa\x4b\x5c\x03\x3e\x69\x8a\xa7\xb8\x4f\x9e\x0d\xe7\x22\xc8\xaa\x59\x5e\x98\xe3\x72\x87\x16\x15\xf2\xc3\xec\x05\xe1\xbf\xcd\x5c\xf9\x13\xfe\x99\x6e\x46\xb5\xb8\xc9\x0d\xe7\x76\xd0\x4c\x08\x43\x4d\x4d\x82\x49\x73\x21\xa4\xb4\xb8\x9d\x02\xa6\xd3\x45\x1d\xc1\x9e\x53\x42\x48\x5a\x51\xc5\x2c\x17\x0f\x6a\x86\xa8\x3c\x0d\x4f\xfb\x1f\x3b\x33\xe1\xb0\xa0\x9f\xe3\x7e\x06\x40\xd2\xcd\x7c\x02\x94\x75\x36\x1e\x8e\x06\x3e\x04\x52\xb5\xa2\xe3\x34\xc3\xd9\xf3\xf3\x43\x53\x3b\x9c\x20\xc9\xcc\x48\x30\x5a\x94\xce\x15\x03\x40\x10\x2d\x38\xc6\x40\xd4\x8c\xab\x4c\x1b\x8b\xea\x03\x42\xfb\x7c\x4e\xd9\xf7\x0b\x60\xd3\x15\x66\x5c\xf9\x2c\x41\x9d\x65\xd2\xe2\x62\xe3\x53\xab\x39\xaa\x32\xcc\x23\x29\x28\x13\xb9\x4e\x10\xe1\x64\xbc\xcd\x44\x89\x5b\x29\x6a\x08\x73\xb0\xe6\x11\xdd\x68\xc9\x5b\xa6\xd7\x43\xb0\x57\xfe\xe1\xaa\x0f\x94\x53\x31\x0c\xc2\xd7\x38\x67\xc6\x0e\x3b\x8e\x7f\x1e\xc3\xf2\x03\x3c\x74\x0a\xb4\xd3\x58\x23\xb4\x7b\xb3\xd8\xe0\xba\x5a\xa8\x02\x67\xaa\x90\xcc\x72\x91\xcd\x6f\xb4\x8c\xcc\x33\x1c\x21\x0f\x14\xd9\xb2\xf1\x08\xf6\x75\x2d\x72\xe6\x12\x26\x8a\x74\xea\x48\xcd\x9e\xcc\xe3\x9c\x19\x6f\x41\x30\x2e\x61\xde\xd4\x4d\x82\x30\x95\x02\xe4\x1c\x1f\x53\x20\xa2\xd6\x54\xc5\x04\xef\x02\xe2\x05\x60\x17\xa1\x93\x0d\xb3\xc5\x8c\x2b\xf1\x06\xf6\x33\xed\x17\x94\x63\x63\x54\xe6\xab\xa2\xc5\x3e\x6b\x60\x20\x8a\x9f\xb7\xb4\xe3\x0b\x48\x43\xa3\x12\xbc\x92\x30\x0b\x04\x22\xdf\xe9\xfd\xf7\xdf\x7e\xe8\x78\x1a\xfc\x05\xc1\xfb\xef\x3e\x90\xa0\x74\xff\xfd\xf7\x1f\x70\x33\x30\x2a\x9c\x2d\x59\x31\x36\xae\x01\x05\x0d\x7a\xd7\x96\x9f\xaa\x66\xdf\x89\x28\x88\x4f\xcf\x1f\x3e\xcb\x54\x7c\xee\xe3\x25\xee\x1c\xba\x07\x2b\xbc\x70\x59\xf1\x0a\xaf\xf7\xdb\x4c\xc7\xd8\x09\x07\xb0\x5f\xae\xb8\x61\x20\xcb\xb9\xc9\x5f\xdd\x6f\x1e\x6e\x55\xf0\x60\xa9\xf3\x26\x1f\xfe\x41\x7e\x3d\xc3\x40\x78\xe8\xbf\xba\x96\x9a\xe0\x4e\xe1\x4a\x7c\xd2\x59\x34\x77\xb7\x1b\x37\x65\x3f\x8b\xb9\x92\xc5\x47\x41\x97\xe3\x2c\xed\x45\x0c\xa2\x06\xb8\xc8\x31\xf0\xb6\x04\x62\x0c\xee\x1d\x7e\x0e\x32\x87\x95\x09\xd0\x54\x6d\xca\x6a\x3d\x95\x9c\x0c\xf2\x05\xd7\x8a\x29\xd9\x86\xbe\x0e\x4d\xd2\x25\x57\x87\xfd\xfc\xca\x5a\x44\x9e\x20\x51\x75\xe9\xea\x59\x12\xc6\xeb\x05\xf4\xcf\x50\xd1\xf3\x50\xd5\x04\x53\xa0\xbf\xb2\x89\x5d\xa3\xd1\x9d\x2e\xf0\x61\xc9\xa2\xf0\x51\xfb\x7a\x47\x9b\x91\x72\x4c\x13\xcd\xf5\x8a\x0e\x02\x74\xc6\x02\xc7\x36\x77\x2b\xbe\xa5\xe1\xa4\x08\xb4\xaa\x33\x33\xd3\xd7\xb3\x02\x31\x4b\x36\x2d\x93\x11\x11\x19\xb1\x87\xa9\xea\x5b\x0f\x7a\xc3\x45\x97\x78\x81\x3f\x94\x4e\x69\xb8\x5a\xcb\x02\x0a\x8d\x9f\xe9\x9f\xc3\xeb\xc0\x5c\xc6\xfa\xc7\xad\x50\xf7\xe9\x9f\x25\xc9\xbe\x68\x8b\xce\xef\xdb\x71\xfe\xa2\xd9\x34\x7e\x5f\xc7\xaf\x21\x80\xe8\x3f\xef\x17\x03\xd9\x4c\xb2\x3d\x6d\xeb\xea\x05\xe1\xc6\x3b\x8f\x40\x4e\x0c\x46\x32\x06\xc6\x60\x71\xa6\xf3\x1b\x91\x0e\xc2\x7b\xc4\xa2\x18\x8c\x6b\x51\x93\x2a\x80\x3a\x05\xec\x24\xd8\x94\xa6\x5d\xa4\x8c\x50\xb3\xce\x32\x7b\x68\x92\xc0\x77\xcb\x81\xb2\x5d\x6b\x3e\xac\x5b\x9f\x6e\xda\x1f\xbd\xa5\xa7\x77\x5c\xe2\xc9\x21\x88\x57\xd4\x2e\x27\xd2\x13\x1b\x15\x3d\x4b\x70\x8a\x9a\xe6\x74\xd3\x70\x36\x50\x03\xee\xaf\x9b\xd4\x9d\xc2\x10\x7a\x8c\x37\x82\x3c\xe5\xc2\xe6\x31\x07\xf2\xd7\xf2\xb3\x41\xb5\x70\x91\x7e\x0a\x6b\xb8\x61\x83\xda\xc2\xd3\x54\xbf\x34\x5f\xb7\x38\x77\x70\x7c\x81\xdf\xda\x09\x85\x21\xde\xdc\x96\xdd\x7e\x83\x3d\x00\x97\x8f\xf2\x63\x29\xd7\x66\x06\x84\xe8\x4d\xa2\x72\xb0\xb6\x02\x46\x2e\xb1\x9d\xd4\x1a\x82\x73\xe7\xe5\x22\x87\xe1\x6b\xae\xac\x79\xcd\xd1\xa4\xfc\xe8\x09\x84\x63\x51\x58\xfd\x6c\x49\x1c\x46\xe4\x62\xb6\xe5\xaa\x37\xcd\xca\x00\x53\xf3\xb2\xbf\xe6\xa9\x13\xeb\x04\x46\xae\xa8\x2d\xba\x1f\xc2\xcd\x98\x38\xd8\x13\xb4\xf1\x84\x77\xe4\x42\xb9\xd9\x1f\xf0\x43\x78\x9a\xa2\x72\x20\xaf\x87\xc7\x5e\x05\xc1\x82\xb6\x49\x65\x8a\x83\xf2\x7a\x5b\x52\xa3\xd8\xc5\x0b\x3b\x42\x0a\x6f\xfd\x91\xdd\xdb\x8c\x79\xe2\x9b\x88\x98\xad\x0f\x34\xfd\x7b\x97\xae\xf5\xa3\x26\xdd\xac\xad\x19\x49\xfb\xc7\xaa\xa7\xd2\xff\xf9\x83\xd1\x28\x49\xfb\x59\xc8\x2e\x41\x9f\xfe\x67\x04\x35\x3c\x39\xfb\x3c\xd1\xdf\x82\xa0\x4a\xb3\x4c\x2c\x34\x5f\x37\x56\x22\x15\x41\x8d\x73\x3e\x90\x0c\xbd\x5a\x0b\x67\x92\x7a\x4d\xa7\x78\x5e\xeb\x8a\x4d\x77\xc3\x34\x8b\x50\x03\x29\xb6\xf5\x2d\x31\xd5\xb8\x9c\xab\x51\xb5\x6e\x71\x2b\x4c\xbc\xb6\xa5\x0a\x8e\x5d\x45\xeb\xc3\xee\x15\xe9\x97\xbb\x41\x98\xae\x4b\x61\x8b\xbd\x37\x16\x67\x2c\x52\x21\x28\xb5\x02\x96\x65\x7d\xaf\xba\x0c\x06\x45\x62\x90\x7c\xa5\x56\x42\x9b\x6a\xd1\xa7\x2e\x9d\x9a\x53\x93\x71\x98\x95\xac\x24\xd4\x8d\xb3\x0f\xa7\xfd\xb0\x5b\x23\x76\x06\x03\x2c\xe9\xc4\xb8\x6d\x20\xa8\x39\x16\x91\xd7\x19\x14\xf1\x18\x6a\x18\x50\x83\x55\xad\x86\x5c\x86\x78\x3c\xc0\xb0\x68\xbc\x06\xc3\x0d\xaa\x85\x8e\xfb\x50\xcd\x0f\xfa\xdb\xeb\x36\x2e\x20\xae\x1c\xbc\xe8\x6d\xe8\x9d\x5b\xbe\xa6\xfe\x38\xd8\xe4\x54\x8c\xb5\x50\xb7\x46\xf3\xd0\x48\x38\x06\x58\xea\x54\x7d\x44\x34\x43\xb6\x02\x02\x9a\x5a\xdd\x20\xda\x7d\xad\x8b\x10\xa5\xa0\xde\x63\x32\xff\x75\x3c\x5e\x25\xe6\x43\x63\x0d\xd9\x56\x2d\x3b\x73\x44\x4f\x0f\xff\x70\xbf\x78\x24\x0b\x19\x56\x3a\xa3\x9b\x12\x4e\x14\x74\x86\xbb\x20\x8f\xb9\xea\xe0\x2f\xcd\x64\xc3\x9b\x05\x03\xd1\xf7\xec\xd7\x24\x50\xc6\x05\x6a\x23\x7f\xcc\x0e\xb2\x27\x74\x02\x41\xee\xb4\x5e\x60\x08\x50\x78\x6d\xcb\xfd\x2e\x6a\xbb\xc9\x68\x79\x64\x7a\x68\xa3\x2d\x85\x17\x0b\x7e\x0d\xbb\x60\xa7\x95\x61\xd5\x4e\xee\x8f\x47\x44\xdb\xf7\x9c\xf7\x11\xf1\x02\x16\x3e\x1d\x28\x20\x89\x04\xd4\xf3\x43\x6f\xa3\x55\x06\x88\xaa\x1f\xb0\xf9\x49\xec\x98\xe4\x06\x57\xd5\x30\x63\xe2\xc2\x2e\xcc\xf5\x83\x3e\xa5\x11\xb3\xca\x2f\x7d\x68\xf1\xb6\x1e\xc5\x83\x2c\xc5\xec\x99\xff\x87\x19\x2e\x3c\x8a\x56\x95\xc9\xd4\x6b\x8d\xa8\x5c\x53\x7c\xd8\x90\x23\xe7\xe8\xf9\xe0\x86\xaa\x7b\xbc\xdd\x3e\x2e\x8a\x07\x13\xa3\x0e\xa4\x1f\x37\xec\x81\xed\x96\x2a\x1a\x06\xac\x32\xa8\x29\x10\x25\xa7\x71\xc7\x00\xd1\x3c\xfd\xc2\x52\x40\xc9\x57\x61\x69\xe1\xf1\x26\xa4\xeb\xe7\xae\xe3\x2d\xa0\x21\x86\xe7\xed\x41\x98\x55\x88\x43\x60\x38\x92\x81\x10\x1e\x64\x0d\xfc\x9c\x6f\xed\x9e\xbb\x80\x51\x89\x8e\xd8\xf7\xf6\x00\x4a\x24\x46\xde\x41\x84\x04\xc2\xaf\x47\xaa\x13\x80\x27\x00\xa7\xc4\x5f\xdf\xf6\x3f\x53\x04\x9e\x6a\x7c\x8a\x04\xee\x12\x82\xa7\xe2\xb1\x5a\xda\x4c\xe8\x1b\x7e\x26\xf2\xe5\xb3\x82\x18\x2f\x2a\x67\x04\xbf\x3d\xd8\xba\x69\x3e\x4a\x9c\x9b\x39\x3e\x7d\xce\x8a\xe3\x3b\x4a\x26\x47\x32\x7c\x15\xe7\x92\x68\x59\x2d\xc2\xb8\xaf\xcf\x39\x61\xa2\x8b\x05\xcf\x71\x9b\xfd\x5d\xd4\x8e\xa7\xf8\x95\xfe\x2f\x26\x0c\x07\xa2\x4e\x22\xe7\x16\xd7\x88\xed\x17\x7c\xae\x9a\xf7\x07\x4d\xa9\x37\xc2\xb8\x2d\xb5\x7f\x67\x76\xfe\x65\x2e\x1c\x53\xae\x1b\xb1\x3f\xe9\xcc\xd7\xee\x3c\xd2\xf8\xd6\x47\x3f\xcf\xcd\xa9\x6d\x0c\xe6\xee\x5c\xbd\x23\x5b\x7c\xeb\xc4\xd6\x67\xb5\xd8\xad\xc3\x99\x8d\x9d\xde\x1a\x6c\x58\xa1\x07\x1d\xd1\x9d\x0b\x9d\xa8\x87\x6a\x1c\xf4\x61\xcb\xd5\x05\xdd\x43\xcc\x60\xb8\xb3\xb2\x64\xd6\xc9\x0d\xbb\xba\xe5\x89\x73\x87\x28\x03\x72\x77\x40\xef\x60\x50\x30\xb1\xf5\x41\xcd\xed\x62\xce\x88\x77\x88\x75\x15\x79\xc1\xf4\x0e\x3c\x9a\x80\xe9\xe0\xd2\x7a\x00\x68\x48\x39\x27\xfe\x21\xc6\x86\x52\x2c\x8f\x3c\x02\xfb\x40\x49\x25\x06\x42\x7c\x17\xe7\x7a\xc4\xec\xa9\x6c\x7b\xf8\xe2\x8d\xd1\xce\xbe\x01\xb4\x80\xb2\x6f\xa9\x99\xc7\x90\x95\x24\xd8\x23\x06\x21\xeb\xaf\x5a\x06\xf8\x80\xcd\x24\xdb\x40\x7e\xaa\x8a\x3d\x51\x1f\xcf\xc5\x6d\xf5\x7e\x17\xd7\x4b\x2b\x1e\x77\xe5\x07\xeb\x1e\xcc\x27\x84\x08\x17\x09\x18\xce\x98\x4b\xef\x63\xdc\x4d\xb5\xcc\x4c\xc8\x29\x34\x14\x07\xf0\x15\x4e\xbd\xb3\x5d\xc8\xaa\x84\x0f\xc1\x6a\x4b\x0c\xab\x4d\x4c\xfa\x21\x1d\xcd\x47\x8c\x2d\x71\xe0\x74\x52\xd5\x9d\x76\x63\x23\x42\x18\x60\x69\x50\x1f\x10\x16\x58\x77\xd9\xec\xf3\xf0\x39\x82\x9c\x46\x29\xb6\x33\x40\x48\x12\x12\x78\x00\x41\x93\xd9\xb8\x80\x8e\x0a\x47\xca\x83\x8f\x9c\xe2\x54\xdc\xd6\x02\x43\x40\xcf\x03\x9b\x08\xb3\x83\xbe\xc2\xd8\x40\x10\xf0\x7a\xd4\xb4\xf7\xa6\x3b\xf2\x46\x4c\xce\xba\x83\xe5\x4e\xb6\x17\xab\x8b\x72\xc7\x21\x2c\xd9\x70\x78\x29\xbb\xad\xf0\xfc\x3b\x5a\xfd\xee\xb6\x56\xc5\xf6\x6a\xaa\x59\xb3\x42\x54\xf7\x74\x2c\x5a\x8e\x3b\x7d\x47\x6b\xdf\x5b\x6b\xe1\x96\xf5\xb1\x2c\x77\x41\x13\x71\xf7\x03\xaf\x0c\x30\xcf\xd8\xb8\x6a\x82\xa3\xa9\xe3\xa1\x79\x2a\x1f\x60\xe2\x51\x54\x15\x7f\xfd\xaf\xbb\xd9\x1d\x4e\x5a\xe3\x05\x62\x5a\x4e\x04\x4b\x87\xa6\xd3\xc1\xb0\x96\x27\x0b\x38\x37\xec\x62\x8d\x25\x4f\x54\x25\xf6\xb6\x03\x8b\x22\xef\xba\xec\xba\x66\x05\xda\xc3\xdd\x8b\x4d\x2a\xd3\x09\x53\x4a\x07\xca\xf6\xea\x21\xb1\xa6\xe2\xa5\xc0\xe3\x39\x09\x92\x0f\x17\x18\xf8\x06\x44\x75\xc5\xbe\x01\x41\x07\x85\x8a\x0e\xd5\x73\x32\x59\x87\x52\x5e\x38\xb5\x1c\xa1\xa0\x82\x2f\x7a\xa6\x21\xc2\x34\xd0\xff\xd0\x19\x5c\x73\xaf\xd7\x4d\x10\xe4\x45\x1c\x16\xb0\x17\x85\x1d\x99\xc5\x63\xbd\x16\xf1\x44\xf1\xa2\xc2\xca\x40\x8a\xb1\xbd\xc5\x44\x19\x1c\x79\xb7\x7b\xda\x3a\x37\xd5\x47\x28\xc3\x88\x30\x25\x66\xf0\xf9\xe5\x15\x34\x60\xb4\x00\x68\x1f\x5d\x31\xdf\x4d\xff\xb2\x2e\x6b\x84\xb1\xe4\xd0\xbd\xca\x88\x16\x0b\xf6\x33\xaa\x6a\x8d\xf1\x77\x5d\x9a\xf5\x77\x5d\x6c\x84\x6d\x85\x9e\x68\x26\x3d\x88\x26\x2c\x45\x78\x5e\x5e\x69\xdd\xae\x5c\x90\x4c\x3c\xe3\x9b\xad\xb6\xc6\x9b\x07\x2e\x12\xfb\xad\xf6\x3e\x6e\x24\x30\xbc\x61\x85\x59\x80\x16\x45\x49\xa8\x00\xd6\x3d\x78\x84\x9e\x21\xe8\x94\x14\x6c\x18\xbe\x4d\x06\x06\x7f\x15\xa3\xe3\x8a\xd9\x75\xaa\xe6\x22\xb7\xf9\x72\x1c\xec\x43\x18\x63\x51\x9a\xbe\x43\x14\x1e\x56\x35\xf3\x7a\x05\x53\x26\x4c\x80\x74\xbb\x46\x4c\x32\xdf\xe9\xe7\x18\x48\x4e\x4b\xdc\x93\x57\xf2\x35\x06\xd9\x69\x00\x24\x17\x0a\x69\x0c\x32\x6f\x0a\x3e\xff\x3c\xa7\x7f\x63\x21\xda\x05\xd8\x37\x49\x1a\xc4\xb9\x63\x27\x7a\xb9\x48\xe6\x0c\x42\x77\xb9\x59\x4a\x40\x04\xd6\x1c\xe1\xb8\x27\xca\x3e\x36\x3e\x96\xd8\xa0\x6c\x37\x86\x0a\xd4\x25\x0e\xde\x1e\x88\x75\x16\x6a\xf2\xd4\x7d\x36\xf4\x87\x1c\xf6\x09\x17\x13\xd6\xaf\xd7\x22\x83\x60\x1a\x70\xb8\x95\xc0\x74\x47\xbc\xb5\xf0\xb9\xd0\xae\x0a\x6d\x03\xda\x49\x30\x3a\x76\x64\x22\xa2\x46\x8c\x11\x03\x11\x19\x56\x4c\xad\x02\x3b\x60\x8b\xe6\x0d\x62\x03\xc2\xc6\x3d\x52\xbb\x6d\x46\x90\x58\x6c\x8f\x20\xfc\x45\x26\x80\xcc\x43\x6a\xb8\xcf\x28\xb8\x3f\x2b\xbc\x8a\xd6\x43\xc0\x51\xa2\x97\x0f\xd0\x51\x0d\x31\x27\x9a\x5c\xe6\x14\xa6\xc8\x0d\x14\xa6\x8c\x2b\x36\x97\x0c\x56\x37\x6f\xd3\x24\x1c\x89\x14\xdd\x96\xab\xbc\x2d\x2c\xf2\x8a\x72\x1a\xf6\x3e\x01\x47\x09\x1d\x6d\xf3\x0d\x1d\xbe\xb5\x0a\xe2\x8c\x04\xf2\x91\x2d\x9f\x68\xbe\x59\xc6\x31\x7d\x03\x4b\x8b\x85\xb0\x31\xf6\xf5\x23\xe6\xb2\xdf\x31\xbf\x11\xe6\x65\xed\x60\xc8\x0f\xff\x78\x79\xfe\xf6\x28\xfd\xfc\xf8\xfa\xfa\xfa\x31\x17\x7f\xbc\x6f\x37\xec\x15\x57\x70\x64\x97\xff\x79\xf6\xe6\x28\x2d\xfb\xc5\xa3\x19\x1d\xd4\xdb\x58\xbd\xa5\x76\xa1\xb8\x7a\x60\xea\x62\xd1\xf1\xf7\xb3\x27\x5d\x31\x1a\x55\x3d\x0c\x20\x16\x6e\x90\x3c\x7b\x66\xdf\xa1\x93\x29\x76\x1e\xfe\x70\x58\x2e\xda\x12\xe6\x11\xf8\x08\x32\x36\x74\x26\x98\xf2\xe8\x1f\x82\x54\xd4\x8e\x76\xe3\xf5\x42\xa3\xba\x0f\x40\xec\x36\xf0\x04\xf7\x80\x2e\x13\x13\xe7\xb6\x15\x0e\x51\xd7\xad\x9b\xfd\xa6\x88\x39\x26\xe1\x4c\x27\xa2\x2c\x7e\x1a\x16\x86\xf9\x22\xc2\x32\x3f\x4d\xff\xc8\x9a\x22\x9e\x28\xa1\x2d\xce\x32\xda\x02\xf0\x6c\x58\x18\x31\x03\x03\xc1\x98\x06\x20\xb1\x10\x4d\x30\xf7\x79\x4e\x38\x1f\x55\xa2\xe7\x37\xb6\xab\xe8\xd3\xad\x3b\xcf\x81\xd6\xa4\xba\x71\x91\x58\x4f\x37\x9d\x6d\x78\x11\x7b\x46\x09\x0d\x9f\xaf\x4c\x89\x35\x85\x87\x54\x6c\x37\x27\x51\x14\xf0\x47\x80\x32\x17\x09\x8d\x49\xfd\xda\x05\x63\x4a\x35\x48\x66\x39\xcc\x08\xa2\x20\x94\x3d\xfc\xcf\xa7\xd6\xa2\x9c\xa8\xdd\xac\xf9\xd5\x63\xfc\x4d\x77\x38\x91\x4c\xc4\x65\x27\xe2\x1e\x60\x1d\xb1\xcc\x75\x3d\xdc\xc5\x86\xe2\x96\xf2\x26\x2f\xca\x28\x6f\x1a\x6d\xd7\x0a\x38\x68\x63\xb4\x4b\xaa\x74\x3c\x96\xf9\x7d\x0b\x87\x04\x02\xb1\xe2\xc9\x74\x94\x16\x08\x06\x7e\x8f\xa7\x2e\x2d\x16\xaf\x6c\x95\x82\xef\xc6\x4b\x94\x11\x22\xeb\x28\xe4\xa8\x2c\xa8\xc5\x77\xfe\x0c\x02\x77\x5d\x76\x13\x30\x93\xfa\x91\xb3\x72\x28\x42\x4b\xad\xe6\x78\x26\x0e\x72\x83\xcc\xe1\x33\x16\xc3\x95\x4d\xb2\x9a\x3c\x84\x74\x22\x5f\x21\xb6\x76\x9b\xe6\xc6\xfc\xb9\x4f\xf1\x4b\x03\xbe\x84\x23\xf3\x60\x3a\x28\x0f\x19\x28\x5f\x9a\x2c\xae\xee\xaf\x41\x80\x53\x15\x71\x6b\x3e\xef\xa2\x28\xc1\x84\xc7\x98\x48\xe1\x3d\xd1\xbd\x09\x97\x60\x07\x35\x74\x5e\x3e\x75\x2d\x1c\x70\x5e\x8e\x8b\x86\x0e\xcc\x41\xd1\x2f\x70\x60\x8e\x91\x34\x76\x4f\xf6\x43\xfd\x02\x0f\xe5\xa9\x41\x8f\xe5\xda\x29\xc4\x4f\x14\x98\x92\x6e\x8b\x70\x6c\x5f\xe0\xa9\x3c\x38\xd9\x7e\x89\x80\x3b\xd5\x13\x8f\x92\x00\xb9\x77\x69\x7c\x8b\x6a\xb9\x9c\xcd\xdb\xe6\xba\x63\x77\x60\xbc\x09\xc1\x5c\x96\x7f\xa7\x97\xf8\x2d\x20\x7c\xd5\x0f\xa2\x90\x0f\x49\x54\x8b\xa2\xa7\x7a\xb3\x27\x89\xb8\x67\x1d\x46\xa2\x3f\xa5\x1c\xb9\x73\x7d\x4b\x27\xb1\x63\xcb\x99\x49\x11\xda\xe8\xae\x33\xfe\x82\x23\x33\xb4\xcf\xac\x2c\x45\xa1\x4b\x4e\x51\x30\xfe\x34\x84\xdb\xae\x04\x63\x36\xb9\x95\x16\xf1\xd5\x6b\x8e\x40\x58\x06\x47\x60\x44\x0c\x15\xe4\x53\x0f\x12\x3a\x2c\x12\x84\xe1\xd2\x43\x28\x82\xb0\xe8\x9f\xbf\x7e\x2b\x3f\x61\xa1\xae\x01\x84\x60\xa2\xce\x97\xe3\x89\xd9\xbd\xcf\xa6\xec\xdf\x2d\x4f\x1c\x14\x44\xcd\x61\x8f\xb8\xe1\x97\x83\x28\xda\x7c\x89\x6b\x20\xfe\xef\x52\x49\x06\xf6\xc5\x2e\xda\xf2\xf1\xb0\x18\x21\x47\x50\x7d\x89\x0f\x97\xae\xd7\x38\xfc\xcf\xa5\xe5\x30\xd1\x78\x1a\x8c\xdc\x63\xc4\x6c\x01\x88\xee\xee\x77\x69\x57\xb1\xee\x54\x09\x74\xd0\x20\xa8\xc3\x47\xfe\x05\xed\xe0\x59\x33\x83\xa0\x1d\xda\xf9\x24\xd3\x66\x5d\x8b\x5b\xa4\xe5\xe1\xd8\x6a\x41\xcc\xa2\x32\x3e\xfc\xaf\x69\x83\xbd\xfb\x05\xe5\x63\xf7\x5f\x84\x5e\x1d\x2c\x0a\x70\x94\x06\x56\x07\x75\xeb\xd9\x70\x22\x9c\x3a\x53\x71\x96\xe2\xb7\x83\x32\xc9\x90\xc9\x25\xdb\x16\x81\x70\x28\x04\x14\x6e\x2b\x67\x79\xfb\x91\xdf\x47\x80\x01\x99\x55\x70\xdd\x6a\xe0\x29\xfe\x1f\xce\x98\xbe\xce\x71\x21\x5f\xa3\x06\x63\xa3\x6f\x94\x86\x3e\xc0\x98\xa9\x2b\xc0\xd2\xac\x88\x64\x6f\xe4\x4b\x9e\x9e\x1b\x52\xc6\xd8\x3b\x9f\xf2\x1e\x0f\xe7\x2d\x80\x77\x88\xfe\x4b\xf9\xef\xff\xfb\xff\xb1\xba\xb4\xa1\xdd\x12\xa1\x34\x34\x1a\xa5\x9f\x77\xf3\x6b\xf3\xef\xc9\x3c\x06\x8f\x0e\x3a\x22\xe8\x4f\x35\x3a\x05\x7d\x8d\x68\x94\x9f\x58\x30\xfa\x66\x33\xba\x01\x91\xe3\x90\xe8\xc9\x1c\x57\x8f\xc3\x3a\x8c\xa8\x32\xdd\x23\x5c\x34\x3c\x9b\x5c\x4c\x1a\x7a\xde\x2b\xd1\x4d\x6f\x29\xc9\xfb\xa6\x5d\x7d\xf0\x31\x53\xdd\x44\x44\xf1\x52\x71\x32\xf4\x30\x86\xb0\x97\x4c\x7e\xe3\x27\xbd\xe4\xa4\x2d\x61\xa8\x61\xf6\x65\xce\xbb\x33\x73\x50\x92\x20\x8a\x7a\x25\x1d\xbd\xb5\x08\xbf\x21\x53\x42\x9a\xbc\x56\x24\x7a\x57\xca\x1e\x2f\xfc\xc1\x71\x2e\xf9\x75\x38\xa6\x13\xb9\xe5\x7a\x8d\x04\x5a\x80\x48\x40\x0c\x57\x78\xfa\xf0\xff\x04\x91\xf3\x54\x53\xc6\xa9\xfa\xa5\xe9\x83\xe8\x7c\xd1\x8b\x08\x81\x43\x15\xa2\x76\x46\xcf\x1c\x70\xe5\xc0\xca\xc4\x35\xf9\x28\x96\x2b\x50\x88\xd4\xdb\xa0\x23\x47\xdb\x07\x1b\x5c\x8d\x68\x28\x28\x28\x9c\xd9\xfc\xaa\x16\x21\x0e\x73\x8b\x48\xa2\x75\x64\x0f\xda\xcd\x7c\x33\x01\x6d\xaf\xe5\x0e\xdd\x17\xc3\x63\x43\x73\xa2\xf2\x9f\x04\x9e\x2f\x09\xaa\xae\x0b\x76\x73\x94\xf1\xc9\xe9\x86\x24\xf9\x4d\x74\x1e\x43\x45\x2c\x73\xfd\x74\xc0\xcb\x74\x1c\x75\xf7\xeb\xfd\x4c\xc7\x75\xdc\xee\x69\xfa\x7b\xaf\x6f\xa7\x23\xea\x85\x4a\xa7\x41\x68\x3d\x97\x35\x15\x63\xef\xf7\x5c\xa6\xc6\xa0\x81\x28\x13\xa1\xc0\xd5\xf4\xa5\x4a\x7b\xbd\xa3\x25\x4a\xfd\xc7\xae\x68\xe3\x58\xb3\xc3\x5e\x8f\x82\xc1\x45\x9d\xfe\xba\xa0\x70\x07\xef\x3a\x23\x5e\x31\x3c\x84\x8d\x22\x3b\x60\x80\xb7\x16\x89\xe3\x3c\x84\x1d\x76\x6a\xb7\xe0\xee\x4c\x35\xf1\x12\xe1\x41\x74\xc9\x77\x87\x79\x38\x70\x39\x71\x5b\xbc\x87\x61\x2f\x99\xc7\x38\x6f\x87\xb0\x93\xb7\x96\x08\xf7\xc1\xf8\x7e\xfb\x1f\x89\x01\x31\x7d\x01\xc0\x87\xb4\x6b\xd3\x4d\x61\xd7\x34\xfc\xf9\x13\x3f\x0b\xf9\x86\x2f\x39\x05\x78\x46\xeb\x31\xb7\xc7\xab\x74\xfd\xb0\xd3\x1c\xcf\x46\xb8\xf6\x4c\xef\xbb\x2c\xfc\xd3\x20\xdd\xb3\x3c\x58\x1b\xeb\x8d\x9e\x07\x92\xdf\x90\x47\x26\x73\x86\xe5\xe3\x36\x62\xe3\x7e\x4b\x75\x77\x30\x67\xf8\x70\xe9\x84\xb5\x45\x09\xd7\xfc\x13\xf9\x72\x39\x7a\x18\xd2\x78\xd1\xbe\x13\x12\x0b\x18\x0e\x39\x41\xaa\xee\x76\x8a\x6b\xf6\x28\xa6\x49\xb9\xd9\xf1\x14\xe6\xa9\x53\xc7\xd1\x34\x09\xa0\xca\x83\xda\x2b\x88\xb0\x3f\x0c\xeb\x92\x37\x60\x74\xd7\x7c\xdb\x5c\x27\xb2\x65\xce\xe0\x63\x20\xb1\x6b\x35\x25\xee\x92\xa4\xb1\x10\xa1\x81\x85\x52\x89\xa0\xa0\xa1\x67\xc6\xf9\x03\x77\x7d\xec\x18\xce\x51\xdf\x42\x51\xb3\x84\x08\x0f\x14\x78\x35\xb3\xe0\x1d\x12\xc7\x4c\x6b\x85\x84\xe9\x9b\x15\x51\x31\x6a\x37\x84\xf8\x92\x86\xf1\xe4\xef\xb0\xb9\x23\x53\x40\x21\x52\xa1\x6a\xc6\x24\x24\x9b\xb4\xa2\xef\xb8\x5a\x3f\xdc\x53\x6a\xbe\x1f\x21\xc4\x97\xf4\x83\x5b\x81\xd5\x36\x26\xf1\xb6\xfe\xd0\xe9\x4d\x03\x2f\x46\x37\xed\xc3\x2e\x7a\x1f\xf3\xab\x60\x9f\x86\x75\x47\x31\x90\x3b\x58\xdf\x3b\xde\x30\x25\x47\x6e\x61\x27\x44\x03\x31\xc2\x99\x8c\xc9\x74\xf7\x12\x87\x79\x3c\x97\x74\xa0\x81\x79\x8d\x07\x9b\xdc\x75\xa4\x5f\x5e\x94\x83\x6c\x75\xa6\xf2\x9c\x64\xde\xbd\xe1\x0a\x9c\x45\x23\x12\xb9\x2e\xdc\x32\x20\xd8\xd9\x4c\x16\x12\x97\xdf\xad\x71\x66\x75\x41\xab\xe3\xca\x1c\xab\x06\x94\x63\xd1\x63\x38\xe3\x9d\xa1\x54\x16\x68\x43\x99\x29\x1f\x99\xac\xea\xee\xfe\x01\xb5\xcd\x6f\x22\xeb\x1a\x18\x03\x6f\xe3\x47\x6f\x6f\x51\xa0\x8c\xbb\xe2\x77\x6d\x09\x76\xef\x08\xe6\xa0\xd6\x64\x16\x2e\xf5\x31\x81\x78\xb2\x5b\xb5\xf0\x1c\xb0\xb9\x66\x66\x11\x90\x02\x2a\xfc\xc1\x8d\xd2\xbd\xb5\xe8\xb9\x01\xae\x77\xa9\xa2\x07\xb7\x31\x85\xaf\xe8\x00\xd8\xc6\xed\x3d\x00\x5b\x10\x7f\x31\xea\x46\xc0\x02\x6e\xeb\x88\x3e\x92\xf8\xe5\x1d\x01\xdf\xf8\xc2\x8e\x1c\x59\x2f\x34\x50\x74\x51\x4c\xae\xff\xdb\xfa\x37\x38\xe6\x80\x38\xa3\x48\xe4\x03\x82\x8f\x1e\x75\x77\x44\x1f\xd8\x99\x59\xb5\xb0\x68\x50\xbb\x37\xdd\xce\x7c\x55\x35\x4d\x21\xce\x9a\x75\x1f\xda\xc6\xc5\xb1\x44\xd8\x2c\xab\x6f\x6f\x54\x24\xe1\xc1\xc5\xa1\x4c\xbc\x49\x8c\x1c\xbe\x70\x47\x2b\xd1\xe9\xdf\x03\xed\x1f\x12\xf7\x4e\x1f\x2f\x65\xfb\x4e\xe4\x01\x4f\xb9\xa7\x42\x7c\x70\x1f\x18\x3c\x1d\x06\x0a\xbf\x35\x48\x7b\x1c\x9c\x7e\xf8\x4a\x41\x27\xb1\xbc\x56\x26\xcb\xd9\xeb\x88\x89\x9a\x02\x31\x63\xbd\x21\x1c\x6c\xf1\x34\xee\x82\xe3\xf5\x36\x75\x25\x46\x27\x67\xf2\x45\x63\x4f\x30\xa6\x6c\x27\x71\x15\xf0\xb2\xbd\xc4\x50\xd4\x14\x8e\xa1\x98\xf4\x4d\x0f\x81\xe2\x8a\xff\xff\x90\xde\x2f\x12\x3f\x74\xa8\x06\x59\x43\xa4\x52\x82\x7c\x07\xf9\x41\x44\x71\x18\xa2\xb7\x16\x23\xdd\xd7\x80\x6e\x42\x01\xb9\x0f\xba\xad\x9d\x44\xa5\xfb\x6e\xaa\xc5\x8c\xaf\x35\x53\xbd\xd4\x75\x0f\xa4\x33\x07\xe1\x67\xc8\x0a\x7e\x86\x4c\x9e\x53\x3d\x0a\x12\xa2\x09\x09\x33\x76\x2e\xb0\x67\x94\x1c\xef\x8a\x3e\x1d\x81\x58\xe2\x24\x8e\xbe\x12\x25\xe4\x8b\x51\x2b\xa6\x7e\x0e\xd3\xcc\xc0\xcd\xa7\x98\xa9\x5b\x54\x7b\x1c\xdc\x31\xcc\x12\xfb\xc0\x28\x49\x1f\x6b\x8c\x47\x22\x1a\xd1\x30\x6d\xd3\xac\xf8\x21\x01\x7b\x0c\x38\x18\x9e\x0a\xd6\x71\x9d\x66\xeb\x1c\x55\x01\xb7\xc9\x30\x05\xb7\x52\x7d\xde\xc5\xa5\xb1\x3e\xc3\x04\x75\x39\x1f\x01\xd2\x41\x3b\x5f\xac\xd5\xf5\x66\x82\x90\xec\xbc\xec\x88\x49\x0e\xcd\x53\x90\xf2\xa0\x66\x6a\xcf\x67\x4e\xc2\xf0\x53\xe9\x78\xad\x34\xc8\x65\xdf\x01\x76\x54\x41\xfc\xcb\x46\x23\x48\xb1\x23\x81\x8b\x75\x99\x9e\x63\x39\x76\xb7\x16\x0a\xb6\x38\x0e\x58\xa0\xf1\x35\xb5\xa4\x88\x23\xb7\xec\x75\xbe\x66\xdd\x35\xd5\x5c\x23\x78\x2f\xad\xf3\x42\x44\x0e\xc7\x26\xbd\x36\xb5\xec\x2f\xaa\x63\xd0\x4b\x0f\xe1\xaa\xf9\xfa\xae\x42\xa5\xc6\x11\x5f\xa8\x37\x83\x4e\x46\x3c\xcf\x40\xee\xa8\x61\xd0\xc5\xc9\x2a\xbe\xa2\x93\xfc\xc2\xef\x6a\xe1\xde\x25\x3d\xe5\xb8\xca\xed\x9c\x39\x1e\x6f\x70\xe5\xc2\x7c\xb6\x22\xb5\xdc\x74\xf1\xdb\x7a\x86\x0e\xf1\x81\x7c\xaa\xfa\x43\x7d\x6b\xcb\xee\xa6\x5e\x64\x78\x9e\xb6\x5b\xeb\x35\xe3\xbb\x52\x34\xdd\x0f\x66\x94\xf6\x24\xd7\x28\x66\x25\x2e\xe4\xba\x07\x12\x7a\xff\xe1\x82\xd2\x61\xfd\x4b\xfb\xdf\x63\xf0\x44\x94\x36\xe9\x8e\x64\xb7\xfe\xd1\xad\x0d\x0d\xc6\x12\x30\xc4\x00\xb7\x2d\xba\xc2\x0f\xea\x7f\xc1\x08\x82\x2b\xee\x70\x18\x4c\x06\xba\xfa\xc1\x2b\xc2\x97\x62\x18\x71\x0f\xd9\x5c\x81\x23\x65\xb3\x2d\x86\xda\x38\xe9\x6e\x67\xcf\x0f\xeb\xc5\xd3\x81\x01\x85\xed\xde\x32\x43\x0f\xa2\x5e\xdc\x3d\xc6\x70\x13\x92\x27\xe6\xf7\x3b\xb6\xc7\x4d\xdd\xdb\xf2\xbf\xe0\x77\xc8\x14\x24\x98\x7f\xb6\x6a\xda\x86\xa6\x47\xc2\xe7\x68\x80\xff\x97\x96\xd6\x4d\x14\x80\x02\xfb\x26\xdb\x6b\xc8\x23\x2b\x73\x86\x64\x12\x2e\x38\xfe\x91\x2f\x85\x2d\xda\xca\xb0\x5a\x72\xa1\xca\x6c\xec\xd9\x56\xea\xd8\x32\x82\x92\x5a\xa6\x99\xb3\xa1\xbd\xba\x7f\x02\xf8\x5c\x53\x02\x58\x5c\x52\x70\x4c\x1a\x42\xd7\x7e\x97\xf1\x50\x11\x3c\x43\x92\xd3\x37\x48\x4e\xaf\x38\x79\xdc\x82\xf5\xca\x15\x1b\x74\xea\x50\x39\x8e\x53\x30\x2c\xf3\x82\xc3\x19\x0c\xe1\x0d\x73\xeb\x32\xdf\x8d\xf0\xf6\x8a\x12\x47\x58\x03\xe4\x18\x01\x80\x3d\x8c\x85\xb0\x54\x55\xe0\xd4\x15\x96\x78\x4d\x49\x87\xa0\x71\x7f\x3f\x84\xaf\x59\x54\x3c\x50\x42\xf7\xec\x61\xaf\xf4\xc6\x65\xd4\xab\x66\xfe\xb7\x72\xd1\x77\x06\x7d\x2e\x3f\x03\xa8\x79\xd3\xf4\xfc\x96\xed\x8e\xc5\x2d\xd8\x55\x09\x9a\x9e\x5b\x3a\x8b\x5b\x8b\x8f\x23\x4c\x09\xf4\x18\x55\x02\x7d\x18\x57\x5b\x8e\x7a\x48\x6d\xb5\xfb\x45\xbf\xa7\x05\xea\x1a\x3c\xbb\xe4\x68\x89\x97\x2e\x63\xd4\xe2\xa8\x64\x48\xa1\xc3\xc2\x53\x2d\x2f\x48\x88\x28\x27\x9b\x3e\xe1\x9c\x5b\xdb\x1e\x95\x0d\x1b\x1f\x15\x9f\x5a\x29\x78\xaf\x86\x15\xea\xf3\xfd\xe2\x63\xd9\xb3\xb3\xce\x3a\xc3\xfd\x70\x58\xd7\x85\x81\xa5\xcf\x01\x96\xbe\x22\xb0\xf4\x0a\x2a\x9a\x89\x5a\x69\xd3\xd9\x96\x7d\x8e\x7b\xfe\xa0\x96\x97\x27\x34\x03\x9c\x5c\xe4\x53\xa5\xa0\xba\xc9\x54\xca\xd6\x55\xc8\x82\x4f\x50\xc3\x39\xb4\x3b\x2a\x78\x1f\x3b\x90\xa9\xda\x38\x32\x8e\xec\x7e\x8b\x9b\x85\x3c\xe3\xc2\xb1\x72\xa8\x0f\xef\x24\x25\x80\xc5\x49\x82\x60\x8d\x47\xe2\x4a\x1b\x61\xd9\x09\xfc\x2a\x66\x94\xc2\xc1\x3c\xb0\x30\x2e\x82\xbb\x60\x8f\xdf\x29\xc0\x5d\x2e\x8b\xe9\x20\xa4\x35\x6f\x80\xd6\xf2\x10\x4e\x1b\xed\x04\x95\xc2\x56\xe4\x18\x27\x56\xef\x1a\xd4\x9c\x68\x0e\x16\x46\x30\x7a\xb7\x90\xe6\x9c\xa6\xb0\x77\x3e\x4d\xae\x60\x22\xbd\x42\x66\x95\x14\x93\xb7\xf0\x14\x9d\x7d\x5b\x5e\x14\xee\x45\xd2\xa2\x77\xd2\x35\xcd\x9c\x4a\x5d\xd8\x2a\x4d\xd7\xf7\x88\xf5\x95\x5b\x98\xb1\xe3\x85\x3e\xb6\x7e\x7d\x17\x3e\x6c\xfd\x36\xb4\x70\xbf\x6a\x30\xca\x60\x60\xb1\xd5\x8f\x0d\xf3\x6e\xc7\xd6\x99\xd6\x11\x86\x47\xd1\x91\x41\x40\x36\xc3\x97\xc1\x13\x7c\x6a\x00\x23\x90\x12\x72\x54\xee\xb9\x36\x61\x69\x9c\x5e\xec\x38\x30\xa8\xe1\x0d\x4e\x36\x01\x96\xc7\x6f\x1c\x43\xbb\xcc\x07\x7b\xb1\x62\x86\x6e\x16\x56\x66\xfb\xda\x5e\xca\x31\x32\x38\xf4\x38\x95\x85\xc3\xfe\xc2\xf7\xa9\x3c\x2e\x02\x4a\xc1\x65\x7b\x4c\x23\x55\x97\x85\x44\x31\x8c\xa6\x9d\x0f\x88\x84\xc1\x95\x4e\x22\x50\xdc\xbe\x87\x4f\xc7\x07\x37\xab\x46\x38\xb8\xc3\x64\x4b\xea\x4c\x8d\x09\x47\x35\x04\x65\xa0\xd2\x13\xc2\x66\x13\x4e\x71\x25\x9d\x42\x91\x57\x80\x1a\x86\xdc\x3b\x5f\x80\xbe\xf5\xf6\x2c\xc6\xc5\xf4\xf3\x83\xff\x21\x2f\x30\x86\x1d\xf0\xef\x30\x1e\x68\xff\x9f\xf2\x0e\xe3\x50\xf9\xdc\xc5\x5d\x99\xb0\x38\x3b\x1e\x3e\xc6\x70\xc0\xdc\x8c\x1f\xaa\x9b\xc1\x79\x27\xe6\x66\xd1\xdd\x5e\xc4\xd5\x50\x22\xe4\x56\x48\x88\xad\x1c\x90\xe4\x35\xe3\xa6\x14\x17\xc5\x16\x18\xd5\xb0\xbd\xc0\xdf\x2a\x6a\x4d\x4a\x8c\xa3\xbc\xc7\x5d\x90\x94\xf1\x85\x9a\xa4\xab\x4e\x26\xd5\xf0\xb8\xa5\x2a\xd8\x66\x50\xcc\xe8\x2d\x96\xa5\x0d\x43\xb1\x42\xdf\xa6\x7c\x65\xd0\xe5\x01\x67\x89\xba\x2d\xa5\x24\x12\x84\xf9\x72\x29\xf3\xd2\xac\xa0\xf7\x92\x12\xc6\x39\x94\x14\x79\xe5\x0c\x8f\xf7\xca\x97\xa6\x8f\x6d\x52\x82\x4e\x6a\x35\x83\xce\x05\xb5\x02\x6a\x9a\x39\x06\xbd\x19\x1a\xd6\x4a\x2a\x9c\x9a\xd8\x0a\xb8\xeb\x35\x65\xa7\x0f\xbc\x73\xf4\x42\x49\x81\x9e\xa3\x80\x79\x1e\xab\x35\x4e\xdf\x86\xe9\xc1\xc3\x67\xc8\x75\x4f\x9e\x4d\xc0\x04\x16\x23\x79\xcb\xc1\x13\x7f\xd0\x40\x33\xc1\x03\x68\xec\x80\x24\xcf\xa9\xec\x36\xdc\x5f\x0e\xb0\x8d\xdb\x06\x56\xd8\xf2\xf6\x9e\xe3\xcd\x23\xdc\xbd\x12\x9b\x59\x89\xa5\xa7\xbc\xd1\xa1\xc8\xe4\xad\x5c\xc3\x3b\x61\x0b\xd7\x90\xb4\xcf\xd9\xc6\x29\x00\x29\xec\xbd\x68\x3f\xa2\xbc\xef\xdb\x6a\xbe\xe7\x2b\x4c\x35\xd5\xe0\x45\x29\x76\x21\x2e\x6f\x04\xdb\xed\xcd\x65\xe1\x52\xbf\x0e\xc3\x0e\xde\x7d\x1f\xc0\x49\x88\x29\xeb\x96\x04\x98\xb2\x2a\x70\x03\xe0\x00\xe4\x5e\x30\x82\xd8\xf2\xe6\x90\x75\x39\x2f\x4f\xe2\xad\x45\x7a\x79\xac\x39\xdd\xb6\xdf\x59\x78\xf4\xcb\xb3\xab\x8b\x5b\x68\x89\x41\x95\x26\x00\x19\x10\x06\x67\x29\x71\x20\x2b\xa0\x10\xb5\x8f\x51\xe3\x6d\x3d\x81\xc3\xc2\x46\x88\xad\x9b\x86\xbb\x6d\x87\x96\x27\x6b\xf8\xf5\x71\x0e\x94\xcf\xb6\xd6\x52\x66\x96\x9e\xed\x37\x7d\xc5\x06\x5b\xd6\x9a\x1a\x0d\xf1\xe3\xec\xe5\x2e\x6f\x2d\x96\x27\xc2\xda\xa4\x0f\x8e\x1e\xcc\xa2\xd5\x97\xf5\xf2\xca\x9d\x3c\x38\x78\xf5\xe6\x92\x3e\x17\xed\x8d\xdc\x59\xea\x48\x3f\x56\x3b\x06\xd3\x77\x8a\x79\xc0\x94\x02\xd8\x3f\x23\xc5\x96\x0a\x5f\x6e\x95\xed\xa7\x6a\xe1\x08\xe6\xe2\xf8\x0c\x2a\x02\x4a\x0a\x17\x9f\x36\x8d\x40\x3c\x26\xa4\xf9\x4e\xd0\x74\x34\x91\x90\x66\x0c\x84\x1f\xe8\x65\x43\xf2\x9d\x21\x30\x8c\x18\x32\x94\xa4\xf4\x15\x47\xc5\xf4\x48\xaa\x88\xa1\x03\xe1\xc2\xb3\xb6\xa1\xf0\x17\x17\xb9\xcb\xec\x7b\x16\x31\xb3\x70\xe7\x1a\x3c\xe7\xfb\x65\x66\x3a\x61\x65\x81\x94\x71\xdb\xa0\x27\x83\x17\xc4\x25\x22\xc8\x4c\xf8\xab\xbd\x78\x12\x57\xed\x5f\xb8\x19\x95\x88\xde\x3e\x19\xe1\x75\xc2\xfc\xe5\x16\x93\x97\xa0\xf6\xc1\x7e\x1f\x57\x7c\xd7\xb6\x2f\x6a\x33\x53\x57\xb9\x2b\x23\x55\x57\xc5\x37\x47\x0a\x9b\xef\x76\x6e\xdb\x08\x1e\xb5\x01\xd9\x06\x20\x9f\x84\xe1\x04\x10\xb4\x08\xba\x41\x3d\xe2\x8f\x15\x02\xb1\x5b\x96\x02\x0c\xb7\x1e\x4d\x6e\x96\x4b\x0e\x39\xc5\xb1\x11\x35\x5e\x08\x22\x50\x9d\xb1\x81\xb3\x95\x14\x2f\xc3\x8c\xf5\x67\xd0\x47\xf1\x98\xec\x3d\xd4\x77\x48\xe4\x03\x80\x81\xb7\x7b\xf7\x90\xf4\xbb\x7d\x2d\x47\x9b\x20\x4b\x1b\xe2\xac\xb0\x11\x48\x2f\x6d\xd3\xf4\xf6\x04\x42\x20\xba\xbc\xa3\x64\xda\xd3\xfa\xb5\x43\x30\x5f\x4a\x2d\x32\x09\xb6\x1e\x94\xc1\x95\xd8\x02\x66\xea\xe3\x42\xd4\xef\x71\x09\xea\xf7\x01\x70\xb1\xa1\xb0\x8d\xff\x12\xbf\x84\x49\xbb\x1e\xb3\x45\xa6\x52\xa3\x0d\x58\xd2\x86\x74\x13\xe2\xa0\x98\x7b\xc2\x38\xb5\x6b\xb4\x49\xd2\x20\xc8\x50\x7a\xf1\xa9\xa1\xbc\xe0\x53\x43\xd9\xc7\xa7\x6a\xc7\x06\x3d\xe8\xba\x8d\x4d\xc4\xe5\xe5\x9b\x78\xb6\x7d\x6e\xf0\x16\x0d\x9b\x76\xdd\xe3\x20\xa9\x1c\xc8\xed\x5e\xca\xce\x77\x8f\x82\x12\x8a\xcd\x10\x7f\x9a\x3a\xac\xa3\xfb\x6d\x53\xf5\xe5\xf7\xf7\x70\xcb\x7d\xaf\xaf\x8a\xf9\xbd\x47\xe1\xba\xa9\x60\x6b\x1f\x2c\x9c\x6a\x71\x00\x3d\xee\x9c\x1d\x3d\x97\x99\x8a\xe3\x72\xd5\x96\xb6\xbf\x9f\x04\x2f\x58\x8e\x48\xda\x6f\x03\x8e\xa0\xc3\x2d\xc0\x3a\xc6\x8e\x1b\x6d\x90\x91\x91\xbc\xd0\xcb\x03\x7f\x6c\x4b\xf9\xce\xaa\x79\x8e\x64\xdf\x43\x09\xf0\x6a\x01\x5f\xd5\x4e\xde\xfa\x87\x78\xad\xaf\x6b\xb8\x56\x58\x11\x7b\x84\x18\x2a\xb1\xd1\x7b\xc5\xd0\x85\xe9\x73\xc5\x5a\x00\x63\x77\x9a\x86\x33\x1e\x70\xa8\x5c\x18\x0e\x18\x3e\x45\xd5\xdf\x4b\x09\xe0\x17\x0c\xfb\x8c\xce\xad\xdb\xfd\x16\x8f\x15\x5e\x72\xbc\x31\x3c\x37\x39\xea\xd6\x8e\x24\xfd\x3c\xec\x11\x12\x1c\x13\x12\x77\x41\xf6\x95\xc8\x36\x7a\x19\x25\x2e\x85\xf0\x98\x48\xdf\xe0\xf6\xc9\x61\x87\x36\x21\x2f\x96\x46\x85\xde\x71\x9e\x13\x63\x27\x0a\x9b\xa7\xb1\x23\x15\xf3\xe4\x9b\x24\x95\xdf\xf6\xe5\x9e\x2a\x2f\xeb\x15\xc8\xf4\x4f\xfc\x93\xc4\x1d\xfe\xe9\x10\x24\x2e\x7a\xd0\x4d\xb1\x63\xc0\x53\x73\xda\x83\x8a\x8a\x52\x1c\x2d\xdc\x29\x97\x04\x33\x13\xee\x02\x67\xf8\x3d\xdd\x41\x85\x1d\x1f\x4d\xe2\x7c\x9b\x45\x5a\x53\x4d\x30\x77\xaf\x7e\x7e\x73\x3e\x80\x9c\x60\x06\x9a\x33\xc1\x3c\x34\x67\x82\x55\xc8\xc5\xaa\x1b\x02\x2e\x53\xa7\x47\x20\x90\x07\x07\x20\x04\xed\x8d\x28\x40\xc9\x93\x15\x29\xe9\x17\x44\x59\xe2\x1c\x23\x44\x2f\xbf\x63\xa0\xe0\x65\x24\x81\xb2\x87\x91\x46\xad\xd6\x61\x9b\xb5\x5c\x0a\x7a\xae\x23\xd6\x3c\x01\xd7\x11\x6b\xf8\xc9\xee\x19\xf4\xae\x6d\x3e\x55\x85\x3e\x24\x25\xf0\x17\x9a\x64\xa0\x06\xe2\x6b\x36\x08\xad\xda\x75\x93\x08\xb7\x72\xd2\xeb\x09\x7e\x45\x53\xa7\xcb\x8f\xd7\x8b\xc0\xfa\x15\xc8\xef\x2d\x4b\x09\x03\x5e\x2d\x1c\x62\x4c\xbd\xfb\xf2\xc4\xbf\x19\x05\x4d\xf0\x60\x30\x9b\x6a\x59\x3a\xbd\xb1\x8e\xe6\x0d\xa5\x45\xc0\xeb\xbe\xdf\x75\xe6\x76\x8d\x17\x8e\xd2\x73\xfa\x31\x18\x44\x58\x95\x8e\x64\x54\xd3\xae\x82\x2e\x3f\xc0\x8b\x24\x4c\x63\xdc\xa0\x75\x77\x08\xc0\x75\x7b\x18\xf2\xb8\x55\xeb\x18\xa7\xad\x10\xff\x54\xbb\x97\x05\x5c\xeb\x2c\x03\x4c\xb6\xcc\x50\xba\x4b\x32\x0c\x76\x49\x33\xec\x99\x2d\x5a\x09\x01\xc7\xff\xae\xd8\xaa\xc2\xe5\x84\x6b\xcf\xd2\x3a\xa2\xbd\x62\x2f\x8e\x6b\xfa\xe9\xe1\x7d\xf8\x7b\x41\x93\x65\x4c\x84\xcc\x8f\x01\xca\xcf\xe5\x62\x1f\x5c\xf2\xfd\x2c\xbf\x55\xab\xee\xab\x69\xcc\x8e\x77\x5f\xe3\xb9\x84\x0b\x49\x09\x60\xa6\xe2\x40\x5a\xd7\x61\x8d\x6c\x56\xc9\x07\xdb\x77\xcd\xe3\x30\xcb\x50\x66\x1c\x65\x36\x47\xf2\x33\xdb\x88\x1f\xd3\xc0\x5e\xca\x60\x43\x89\x27\x4c\x43\x2c\xa9\xc0\x36\xcd\xf2\x26\x3a\x6e\x59\xcd\x8e\x59\xd6\x6e\x16\xc0\xe2\xf8\x10\x3c\xb1\x2a\x7d\x90\xfc\xbb\xac\x21\x93\xf7\x62\x61\xf4\x61\xf0\xb0\x9b\x29\xe2\x03\x8b\xb7\xc8\x97\xee\x7e\xa7\x5e\x74\x75\x10\x3e\x4e\x7e\x15\xa3\x67\x96\x2c\xd6\xf1\xb7\x3e\xd6\x71\xf4\xbc\xf3\xf0\x29\x06\x17\x1a\x1f\xb5\xb2\x09\xa1\x3c\xbb\x11\xf4\xe0\x49\xd7\x2e\x9e\xdc\x0f\xa3\xde\xb3\xbe\x34\x0e\x28\x1d\x55\x29\xa3\xb3\xe7\x03\x7e\xd5\x90\xfd\xf2\x3b\xac\x57\x94\x7a\x52\x35\xc7\x9f\x76\x31\xf5\xb5\x86\x61\xf8\x6b\x43\x54\x14\x36\x36\xac\x50\xa3\x5a\x8f\xeb\x1b\xbc\x68\x10\xbc\xda\xd0\xd4\x5f\xd3\xb1\xc9\xf8\xb9\xbf\x6a\x30\xe5\xaf\xee\x96\x8b\x6f\xa5\xd8\xb7\xdf\x03\x5a\x90\x19\x9d\x9e\x4e\x4f\x1e\x08\xd8\xc0\x9e\x7c\x7e\x16\xe9\xc7\xed\xd3\x18\x53\xc6\x70\x1a\x35\x92\xfa\x77\x41\xd8\x6b\x38\xf1\x4a\x46\xd5\x69\xc8\x52\x09\x36\xfe\x9d\x7b\x2c\x2a\x79\xcf\xd1\x87\x3f\x24\xf9\x8a\xc7\x44\x7f\x13\x3c\x19\x27\xee\x04\xa0\x51\xfa\x4c\xe4\x27\x7f\x7d\xcb\x15\x7f\x9b\x76\x25\x31\x4d\xc4\xcd\xfd\x76\x8b\x84\x2d\x1d\xad\x89\x15\x71\xc2\x1a\x09\xfc\x56\x21\x7e\x16\xf8\x59\xe4\x37\xf8\x75\x8d\x5f\xd7\x65\xf9\x51\x0a\x83\xab\x52\x71\x3a\x9c\xaf\x91\x72\x83\xdf\x1c\x08\x96\x7f\x4a\x3b\xfa\x3e\x80\xfd\x40\xb4\x5e\x6e\x4e\xd3\xed\x07\xa5\xcb\xab\xf6\x4f\xfd\x03\xf7\xf7\xf9\x86\xfe\x46\x93\xf0\x45\x29\xdc\xbc\x26\xc9\xe7\x7d\xb0\xc6\x7e\x6d\x15\xca\x37\xa5\x72\x3f\x34\x51\x3e\x29\xad\xcd\xaf\x33\xdf\x2f\xfd\x42\xaa\xef\x95\x7e\x11\x7a\x8b\xb6\xd9\x71\xe4\xce\x0f\xee\x01\x48\xff\xd6\xd6\x29\xe5\x69\x74\x22\x84\x6b\x64\x0f\x60\x7e\x19\x4f\xde\xbf\x65\xff\xd8\x59\x62\x11\x75\xab\x7a\xb7\x77\xe7\x53\x1f\xce\x59\xc0\x7c\x88\x23\xb1\x29\xe7\x07\x74\xe4\x75\x31\x9a\xdd\x6c\x8e\x7d\x0f\xe7\x5e\x3e\x0c\x3c\xfc\xd7\x7f\x05\x38\x7d\xfe\xdb\xbf\xa5\x67\xcf\x1f\xa5\xe5\x67\x0e\xd8\xd6\xa5\xdb\xfc\x33\x4e\x05\x0a\x45\x3f\x5f\x44\x80\xec\x15\x0b\xeb\x60\xbd\x86\xd2\x27\xb0\x71\xf7\xf4\xff\x03\x00\x00\xff\xff\x69\x6e\x96\x1a\xda\xad\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xeb\x72\xdc\x48\xae\xe6\x7f\x3e\x05\xdb\x13\x0e\xdb\x11\x72\x39\xba\xfb\xec\x25\x3a\xda\xee\x95\xa5\xf6\x65\x8e\x65\x69\x24\xf5\xcc\xce\x3a\x1c\x6c\x56\x91\xaa\xe2\xb8\x8a\xac\x26\x59\x92\x35\x27\x4e\xc4\x3e\xc0\x3e\xc0\xee\xeb\x9d\x27\x59\xe0\x03\x90\x17\x92\x25\xd9\x3d\x13\xc7\x3f\x2c\x56\x26\xf2\x86\x44\x22\x91\x48\x00\x99\x6f\xb7\x59\x51\x76\x8b\xf4\x79\x7a\x98\x6e\xf3\xaa\x5e\x97\x5d\x97\x76\xe5\xfa\xea\xe9\xaa\xe9\xfa\xb2\x48\x5f\x57\x3d\xfd\x6e\xaf\xab\x45\x99\x24\xab\x66\x53\x12\xe8\x1b\xfa\x93\x14\x79\xb7\x9a\x37\x79\x5b\x50\xc2\xb1\x7d\x27\xe5\xe7\xed\xba\x69\x19\xe8\x67\xf9\x4a\x56\xe5\x7a\xcb\x65\xe8\x4f\xd2\x55\xcb\x3a\xab\x6a\xfa\x79\x41\x5f\xe9\xdb\x5a\x52\x9a\x5d\x6f\x49\xa7\xbb\x5e\xd2\x76\x5b\x4b\xfa\x65\x9b\xb4\xe5\xb2\xa2\xde\xb4\x94\x74\xae\x9f\xc9\x4d\x39\xef\xaa\x9e\x5b\xfa\x8b\x7c\x25\xd7\x65\xdb\x55\x0d\xd7\xfe\x67\xf9\x4a\xb6\xf9\x92\x01\xce\xe8\x4f\xd2\x97\x9b\xed\x3a\x47\x81\x4b\xfd\x4c\xd6\x79\xbd\xdc\x09\xcc\x3b\xfd\x4c\x16\x6d\x49\x59\x59\x5d\xde\x50\xea\x11\x7e\xcc\x66\xb3\x64\x47\x48\xc8\xb6\x6d\x73\x55\xad\xcb\x2c\xaf\x8b\x6c\x23\xc3\xfc\x85\xd2\x53\x4d\x4f\x29\x3d\xe5\x74\x0c\xa1\x2c\x68\xa8\x59\xde\xe9\x38\x08\x97\x34\xf2\xbc\x4b\x50\x55\x9d\x6f\xac\x34\x7f\x26\xe5\x26\xaf\xd6\x8c\xb5\xa7\xfc\x41\x1d\xef\xba\x9b\x06\xb8\x3d\xd3\x4f\x42\x42\xd6\xdf\x6e\x4b\xe0\xe0\xe9\x25\x7d\x25\x8b\x7c\xdb\x2f\x56\x39\xf7\x53\xbe\x12\x02\xda\x36\x84\x8c\xa6\xbd\x05\x9c\xfd\x48\x9a\x76\x99\xd7\xd5\xdf\xf3\x5e\x10\x74\x1a\xfc\x4c\x36\x55\xdb\x36\x8c\xdb\x13\x7c\x24\x34\xf4\x8c\xeb\xa1\x94\xf7\x84\x85\xa0\x16\xce\xd9\x54\xcb\x56\xd0\xc8\x99\x27\xf8\xc5\xb5\x70\xde\x55\xd3\x7e\xd2\x8c\x57\xfc\x39\x28\x4a\x9d\xd0\xdc\xb8\xfd\xbc\x26\xc4\x6b\xee\x09\x7e\x44\x00\x5d\x92\x17\x1b\x42\xe5\x36\xaf\x4b\xc6\xd1\x21\xff\x22\xbc\xd0\xaf\x24\x5f\x2c\x9a\x5d\xdd\x67\x5d\xd9\xf7\x55\xbd\x64\x64\x1f\x4a\x52\x7a\xa1\x49\x49\x90\xe7\xd2\x6e\x9b\x9d\x9b\x4e\x4a\xff\x2b\xfd\x4c\xcf\xe4\xa7\xe4\x05\x85\x90\xe9\x4a\xf2\x48\xba\xec\xaa\x2c\x0b\x19\x4b\x97\xbe\xa2\xef\x64\xbb\x5b\xaf\x09\x6b\xbf\xed\xca\xae\xe7\x42\x67\xf4\x9b\xc6\x2f\xbf\x93\xaa\xeb\xe8\x83\x92\xdf\xe2\x23\xa1\xa9\xab\x17\x18\xcc\x11\x3e\x92\xe4\x43\x57\xe6\xed\x62\xf5\x31\x91\xbf\xe8\x2b\x7f\x30\xed\xed\x9b\x54\x26\x24\x25\x22\x69\xc1\x1a\x48\x16\x4d\xc1\x3f\x8e\xe8\x0f\x55\x5d\xd5\x5d\x9f\xaf\xd7\x1f\x13\xfd\x60\x30\xf9\x92\x09\xe8\xab\x1e\x58\xd0\xc4\xf4\xa2\x2f\xb7\x1d\xcf\x60\xfa\xaa\x6a\xbb\xfe\x69\x5f\x11\xb1\x9e\xef\xea\xa4\x68\x16\x9f\x68\x19\xf0\x92\x46\xcb\x6f\xaf\x52\x42\xd6\x23\x5a\x08\xed\xae\xae\x09\x3d\xe9\xeb\x86\x50\x46\xcd\x54\xd4\xfe\x31\xa0\x0f\xd2\xed\xba\xcc\x3b\x02\x29\xf3\x22\xfd\x31\x4f\xfb\xbc\x5d\x96\xfd\xf3\x07\xd9\x9c\x96\xdf\xa7\x07\xe9\xaa\x2d\xaf\x9e\x3f\x78\xd8\x3d\x78\xf1\x7a\x47\xc5\xd6\x55\x5d\x76\x3f\x3e\xcb\x5f\xa4\x8b\x9c\x72\x08\x8d\xb7\xe9\xbc\xbc\xe2\xd5\x46\x6d\xa5\x44\xe5\xf5\x92\x57\xda\x6d\xbf\xe2\x06\x89\x12\xe8\xa3\x4b\x79\xa9\x7f\x93\xf0\x04\x10\x2b\xc8\x8a\xb9\xb1\x35\x74\x08\xc9\x2d\x4d\xc0\xc9\xed\xc5\x9f\xde\x1d\xa4\x67\xc4\xdb\x96\x6d\x89\x6f\xfa\x8f\x4a\x7c\x9f\xd2\x68\x2f\xab\xe3\x97\xb3\x84\xca\x1a\x42\x8e\xf3\x3e\x9f\x73\xdf\xdd\xec\x73\xa6\x2c\x42\x97\x87\xa5\xc8\xdc\x12\x9c\xb1\xeb\xa3\x69\x99\x5a\xc8\x54\x87\x2e\x7f\x57\xc7\x7b\xe6\x01\x94\xee\x30\x7b\x26\x38\xa3\xaa\xd2\xb7\xef\xdf\x9f\x1e\xbf\x4c\xcb\x7a\x49\x98\x49\x6f\xaa\x7e\x95\xee\xfa\xab\xff\x9e\x2d\xcb\xba\x6c\xf3\x75\xb6\xa8\x18\x29\x2d\x11\x6c\x4a\x58\x92\x21\xce\x92\xae\x5b\x13\x8b\x02\x15\x5c\x5c\xbc\x4b\x4f\x98\x12\xb6\x79\xbf\x42\x47\xfa\x55\xd2\xfd\xb6\x66\x44\xb9\x06\x2f\x57\x65\x8a\xc5\x00\xa0\xe6\x6a\x88\x97\xb4\xd0\xbe\xce\x92\xb2\x6d\x33\xe2\xa0\xfd\x2d\xa3\x59\xeb\xdc\x07\x2d\xd5\x11\xb5\xd7\x4d\x4f\xd3\x98\xa2\x9c\x54\x51\xd5\xd7\xf9\xba\x2a\x08\xd9\x1e\x21\x71\x59\x24\x16\x0d\xcd\x1b\x97\x26\xca\x6c\x6e\x30\xd4\x7c\x41\x1b\x40\x97\x3e\x98\x3d\x00\xc7\x7d\xf0\xf4\xc1\x2c\xa9\x9b\x4c\xb8\x04\xf3\xe6\xa2\xea\xf2\x39\xf1\x69\xd9\x37\x5a\xe3\x7a\x7f\x65\xfa\x91\xae\x28\x44\x1a\x41\x30\x6e\x79\x2f\xc2\x16\xc0\xc4\x95\x13\xc3\x06\xb3\x51\x36\x13\x8e\xdd\x78\x92\x9b\x5f\x61\x4b\x2e\x61\x34\xe6\xc4\x26\xcc\xa8\xeb\x70\xbb\x5d\x57\x0b\x69\xfa\xb5\xe4\x79\x42\xe3\x9d\x59\x91\x12\xc2\x81\x50\x2c\x2f\x20\x17\xea\x35\xb3\xad\x34\xe2\xf3\x28\xbf\x2a\x69\xe5\xac\x76\x4b\xd9\x9d\xd6\xcd\xae\xf8\x06\x0c\xc5\x66\xce\xf3\x93\xf4\xbc\xa1\x0e\x83\x3a\x1c\x80\x6f\xe2\x90\x18\x03\x0b\x03\x6d\xb9\x69\x7a\x46\x9c\x16\xab\x68\x7a\x6e\x2a\xca\xa4\x91\x76\xf9\x35\xb1\xc5\xbe\x91\x25\x59\xd0\x92\x5b\x70\xc5\xc4\xc1\x76\xb4\xa3\xcb\xb2\x20\x3e\x22\x4b\xc3\xd2\x62\x1a\x04\xd4\x66\x47\xab\x69\x45\x95\x31\xe2\x59\x22\xa1\x2a\xa7\xfa\x89\x21\x51\x3d\x58\xe5\xb4\x72\x1b\xda\x3c\x79\xa2\x8f\xf1\xa1\xbf\xc3\xfa\xa9\x57\xf9\xd5\x15\xf5\xaa\xa3\x55\xf1\x26\x5d\xac\x1b\x5a\x52\xbf\x9c\xbf\xeb\x78\xc1\xac\xb2\x6d\xd3\x42\x12\xa1\xac\x33\xfa\x74\x69\x01\xa2\x19\xa2\xde\x6d\xe6\xf4\xeb\x66\x55\x11\xa3\x06\xda\xb9\x04\x4b\x49\x94\x4a\x4d\xec\x3a\x9a\xc2\x83\x94\x96\x30\x8d\x80\x50\x06\x02\xe0\x31\x18\xd5\x31\xf8\x15\xd1\xd8\xae\xa5\xe5\xb4\xea\xfb\xad\xb5\xfc\xe6\xf2\xf2\x4c\x9a\x76\xa9\x77\xb5\x9d\x07\x94\x81\x39\x58\xb3\x6c\x54\xa7\x4d\x3d\x03\x91\xec\xda\xf5\x80\x7e\x68\xac\x96\xb3\x07\x2f\xdc\x85\x67\xfc\xdf\x85\x47\x0f\xf0\xdc\x91\xd4\x77\x03\x6a\x22\x1c\x97\x90\x53\x88\xa8\x9b\x2d\xd7\x1b\x50\xf5\xa9\x26\x78\x52\x86\x6c\xe3\xf2\x45\xc2\xa1\x5c\xc8\x94\xc1\x2e\xbd\xa1\x01\x2b\x1b\xbd\x38\x21\x34\x80\x97\x22\xf5\xaa\x6d\x36\x94\xfa\x8a\xfe\xf8\x04\xdf\xfd\x13\xae\x0f\x30\x79\x51\x10\x97\xef\x0e\xd2\xf3\x57\x47\xe9\x7f\xf9\xfe\xbb\xef\x66\xe9\xdb\x9e\x57\x22\x13\xe7\xdf\x98\xa8\xe8\x53\x44\x2d\x07\x4a\x1c\xab\x27\xba\x7b\xc0\x2b\xeb\x41\xfa\x23\x72\xff\x47\xf9\x39\x27\x11\xb1\x9c\x2d\x9a\xcd\x0b\xe6\xaa\x9b\x9c\xd6\x3e\xe7\x10\xb9\x2a\x1d\x5f\x94\x75\x41\x1f\x2a\xb0\x69\x5e\xc0\x0e\x34\x3f\x10\xdf\x44\x70\xcd\x16\x4d\x7d\x55\xb5\x3c\xa0\x9f\x6b\x50\x83\x89\xb4\xb4\x5d\x23\xc7\xa4\x22\x42\x1a\x71\x90\xea\xea\xd6\x83\x62\xa8\xef\x39\x51\x27\x34\x11\xaa\xcb\x54\x44\x77\x58\xbe\x10\x62\xe4\x79\x3b\xa5\xe1\xb5\x86\xef\xce\x23\xbc\xb9\xba\xe2\xbd\xd6\x76\x09\x6d\xe1\x54\x52\x65\xc3\x08\x41\x88\x18\xb7\x10\xca\x8f\x95\x88\x8f\x8e\xdf\xa7\xe5\x35\x51\x1b\x73\xbd\xb6\x29\x76\x0b\x50\x18\xc3\x1e\x30\xb3\x26\x16\xd1\xd1\xda\x58\xc8\xbe\x12\x30\x09\xee\x1a\x73\xa2\x05\x01\x11\x6f\x30\x66\x4d\x82\xe4\x35\x71\xfe\x36\x68\xe2\xb5\x25\x69\xef\x47\xb0\xa3\x4e\xb9\x12\x3c\xf2\x05\xcd\x38\x51\x85\xf4\xa2\x93\x4e\x49\x36\x91\x3b\xd1\xf1\x8e\x4e\x28\x79\x41\x7d\x99\xdf\x82\xef\x74\x4c\x0c\x45\x79\x95\xef\xd6\xbd\xef\xd7\x60\x13\xb1\x96\x2e\xf8\x90\x14\xe6\x4d\x16\x18\x75\x10\xd4\xd3\x0d\xcb\x12\x19\xd6\x24\xe7\xc8\x66\xc3\xf4\x2a\xa7\x10\xdb\x77\x88\x3d\x95\x98\x9e\xcc\x8b\xfc\x3a\x5f\x26\xf9\xc7\xf9\xae\xd9\x73\x91\x7c\x52\x6c\xb5\x5c\xa3\x55\xc0\xa2\xc2\x74\x5f\x66\x89\x8a\x4b\x99\x1e\xd7\xb2\xeb\x0a\x87\x21\x47\xae\x52\xa5\x1e\xe1\x98\xaf\xfd\x99\x01\xf8\x94\xd5\x4d\x96\x75\xbd\x39\xe5\x41\x76\xee\x30\x24\x38\xe7\xe1\xa2\x05\x16\xe1\x68\x96\xae\x2b\xb0\x79\x25\x18\xe0\x85\xa8\x06\x4d\x53\x53\x5d\x59\xa2\x06\x2a\xff\x8c\xea\x44\x99\x99\x1e\x10\x54\x66\x37\xd1\x8f\xb7\xfb\xa2\x81\xec\x80\xbd\x84\x4a\x1b\x5a\x07\xfb\x7a\xda\x56\xcb\x15\xf1\xd6\xe6\xe6\x40\x90\x72\xb3\x6a\x4a\x5e\x3f\x6f\x8f\x9f\x7f\x2b\xfd\x58\xf2\xce\xe2\x0a\xf1\x9e\x94\xef\x88\xb8\x08\x63\x4a\xc6\xd2\x05\xb7\xb7\x03\x72\x74\x14\x11\xa0\xe1\xe1\x6f\x24\x4a\x38\xa6\xa1\xbc\x22\xcc\x53\x26\xe1\x61\xa4\xb4\x1d\x20\xa5\x61\xe5\x4a\x2a\xef\x67\xcb\x06\x07\x19\x93\xef\x79\xb7\xa4\xf3\x70\xd7\x67\xcb\xaa\xcf\xae\x98\x75\x71\xcd\xaf\xb8\x06\xde\xbc\x29\x27\x7d\x44\x59\x8f\x52\xe2\x7f\x74\x3a\x2b\x7e\x48\x1f\x5e\xab\xc4\xf8\x3d\xf3\xa4\x8c\x56\x51\xb5\xc6\x94\xe8\xf1\xa8\x2d\x45\x60\xb5\x33\xb8\x93\xda\xba\xdd\x16\x7b\x9b\x0a\x88\xee\x34\x50\x34\x37\x35\xaf\x3e\x30\x5f\xe2\x33\xd5\xa2\xa2\x3d\x63\x5e\xd5\x39\x6d\xf0\x56\x0b\x98\xfa\x43\xa2\x89\xf7\xa7\x97\x00\x5c\x36\xf3\x5d\xb5\x2e\x0c\x60\x96\x98\x10\x49\x22\xa4\xce\x7e\x28\x56\x5b\x52\x25\x7d\x59\x34\x2d\x4b\x24\x18\x8d\x15\xdc\x23\x0a\xb5\x2c\x62\x20\xb9\xe2\xf3\x0c\x60\x51\xce\x49\x2d\x8c\x06\x9a\x7e\x1c\xd5\x58\xa6\x01\xdd\x54\x5d\xfd\xa8\x47\x4f\x17\x3b\x6a\x8b\xa6\x9e\x93\xa9\x60\x97\x3e\x7d\x41\xff\x27\x2c\x21\xc9\x0e\xb0\x1c\x23\x9e\x33\x53\xc9\xdc\xc9\x5a\x8c\xba\x1a\x11\xb9\x9b\x6a\x23\xe1\x60\xac\x61\x7f\x8d\x04\xba\x9d\x50\x2d\xab\x4b\xd6\x34\xad\xe5\x37\xf4\xc1\x27\xb7\xe5\x1a\x93\x90\xf7\x7a\xbc\x6a\x08\x6f\x4c\x20\x07\xb2\x68\xae\x68\x68\xcc\x4b\xfb\xfc\x53\x89\x13\x19\xed\xf9\x1f\x58\x0f\xf4\x31\xd9\x89\x0c\xda\xac\x0b\x77\xde\x01\x65\x37\xed\x50\x8d\xe1\x81\x1c\xd5\x76\x24\x6c\x2f\x56\x99\xd3\x22\x31\x52\xfa\xf2\x33\x76\x7f\x64\x79\xa5\x12\x93\x3c\x67\x25\x9b\x5b\x4c\x17\x0f\xe2\xe4\xd6\xcf\x16\x49\xa0\xb4\x50\xe8\x30\x3b\x6f\x18\x6b\xd7\xa5\x83\x3a\x0a\x53\xe3\x02\x54\x17\xc9\xca\x5a\x55\xac\x6d\xa0\x2c\x51\x89\x68\xae\xa8\x45\xba\x04\xac\x4c\x55\x60\xe0\x78\x34\x9f\x7a\xb2\x9f\xd1\xc4\x40\x6d\x60\x2d\x13\x5f\xbc\x95\x75\x11\xb4\x99\x7c\x50\xf5\xd8\xc7\xc4\xe0\xce\xe3\x7c\xe2\x29\xab\x8f\x81\x0a\x2a\xb3\xd9\x35\x55\x14\xb4\x27\xca\x56\xbc\x48\xb1\x2a\xb7\x2c\x7d\x6c\x3a\x90\xc5\x9a\x4f\xda\xb7\x2a\x3f\x3b\x02\xf9\x49\x18\x36\x51\x0c\xb1\xb9\x6f\x92\xae\xe1\x05\x97\x7d\x65\x15\x2f\x2b\x22\x05\x94\x8f\x37\x3b\xd1\x8d\x91\x98\xcb\xd3\x47\xab\xec\xf6\x20\x3e\x59\xad\xf2\x8e\x98\x38\xc9\x0a\x5a\xac\x98\xd9\x09\x97\xa7\x9d\xce\x73\x58\x33\xd0\xe7\x81\xca\xa5\x64\xd3\x0e\x77\x61\xee\xa1\xf0\x39\x6d\xc5\xc9\x4e\x90\x8c\x42\x01\x6a\xa2\x4d\x42\xd8\xa6\x64\xf1\x39\xdb\x88\x1a\x4d\x7e\xa5\x27\x65\x42\xdb\xe1\x92\x16\xb4\x11\xec\x73\xd6\x7e\x2c\x71\xca\x50\x7a\x65\x80\xb2\x0f\x19\xb1\x42\x58\xca\x4f\xa6\xb7\x24\xce\x70\x03\xd5\x10\xad\xed\x11\xfa\x69\xcb\xa2\xec\x99\x31\x76\x91\x11\x20\xea\x75\xc4\x2d\x3c\x12\x0f\x53\x56\x40\x86\x50\x2a\x72\xfb\x61\x71\x01\xe6\x1a\x3f\xce\x5f\x3c\xec\x7e\x7c\x36\x7f\xe1\x78\xeb\x62\x55\x2e\x3e\x09\xfd\x55\xf5\xbc\xf9\x8c\x83\x2d\x14\x25\x74\xa6\xe6\x35\xf6\xb0\x48\xe9\xa0\xdb\xe2\x5c\x45\xbc\x80\x8a\x11\xe2\x39\x37\x9a\x34\xea\x0c\xb3\x0c\xda\xda\x16\x58\x55\x20\x70\x4f\x90\x87\x9c\xca\x24\x89\x0d\xc0\xd3\x24\x06\xb2\xae\x36\x55\x3f\xa2\x09\xe6\x30\xb9\xd2\x96\xea\xca\x0c\x49\xa8\x0b\xc3\xc4\x28\x89\x4f\x53\x35\xb4\xaf\x1a\x9d\xdc\xe4\x74\x90\xfa\x3e\x25\xda\xd8\xd1\xfe\xc4\x9d\xa5\xf1\x10\xa3\xce\x79\x63\xa6\x43\x54\xde\x65\xbb\x5a\xf1\x55\x16\x46\x25\x6f\x2a\x6c\x1f\xdc\xae\xd1\x72\x00\x65\x28\xd5\xb3\x40\xfa\xd8\xa1\xf2\xc9\x4c\x75\x5b\x28\xc6\x3c\x9d\x3b\x54\xb1\xdc\x9a\x4f\xce\x0a\xf1\xbc\xba\x94\xb3\x2f\x30\xc0\x70\x3c\x83\x74\x80\xf2\xd3\x42\xa7\xb0\x4f\x94\x02\x4c\xcf\x77\x7d\xdf\xf0\xb9\x64\xcd\xe4\x20\x65\xac\xd7\x47\x00\xc4\x51\xcb\xd7\x87\xe9\x0c\xf1\x24\x2c\xb6\xb4\x73\x42\x46\x74\xc8\x6b\x5a\x34\xdc\x7c\xa2\x1b\x8c\x4e\x37\x41\x07\x56\x88\x2e\x29\xaf\x6f\xbd\x7a\x03\xbd\xe0\x06\xfb\xe9\xbe\x3c\x6e\xcb\x27\xbe\x37\x6e\x31\xa0\x84\xf5\x48\x8a\x07\x0b\xe5\x1c\xb9\xa2\x62\xb5\xe5\x64\x7b\x9a\x2a\x2a\x3d\x7d\xb4\x31\x7a\x91\xcf\x24\x4f\x9c\x93\xc4\xca\x02\x88\xa6\x51\xa0\xf4\x6c\xd0\x96\x3f\x12\x8e\x31\xd8\xc7\x5d\xf6\x5b\x53\xdf\x34\x59\xb7\x92\xe3\xb7\x75\x8f\x8e\xee\xf5\x32\xd2\x5b\xe1\x5e\x04\x44\xf7\x5f\x79\x03\xe4\x81\x7e\x4c\x74\x36\xca\x60\x51\x28\xb5\x5a\x8e\xcd\x9a\xac\x0d\x07\x6f\xc2\xda\x9f\xcb\x96\x8f\x77\x00\x8a\x67\x6b\x1f\x16\xe3\x41\x38\xa6\xe8\x77\x77\xc7\x10\x35\xe9\xc0\xf6\x7b\x0f\xec\x0e\x95\x9a\xc3\x24\x29\xb7\x37\x34\xb0\xa6\xc8\x69\x64\xb7\x50\x56\xff\x95\xf6\xa4\x1a\xd7\x00\x4d\x42\x19\x52\xe8\x04\x1f\x04\xca\xc7\xe2\x8f\x09\xef\xfa\xef\x07\xf2\x2c\x6f\x6a\x9a\x16\x88\x54\xc8\xfa\x39\xba\xe7\x70\xa3\x3d\x9b\x90\x7d\xcf\x4b\x7f\xdd\x81\x2f\x37\xec\x8b\x8b\x37\x97\x76\xce\xbd\x78\x93\x7e\x2a\xb5\xf2\x37\x7d\xbf\xed\x7e\x81\xce\x43\x14\x18\xac\xed\x38\xcb\x6f\x59\xce\x94\x64\xfd\x81\x8c\xcb\x32\xdf\x68\x2f\xf9\x53\xaa\x38\xa4\x0d\x58\x13\xf9\x93\xf6\xe5\x40\x97\x96\x40\xe2\xfa\x79\x4a\xd2\x76\xe7\x9e\x52\xef\x52\x7e\x1d\x29\x00\x7f\x4d\xf2\xf5\x96\x8e\x66\x2c\xf2\x04\x60\xd0\x75\xcd\xf5\x84\x96\x02\x04\x44\xbe\xdb\x10\x71\x2c\x70\x22\xa5\x02\x8f\x9f\x66\x4f\x02\xdd\x67\x5c\x59\x41\xab\xff\x77\x55\xc8\xdf\x2c\x17\x87\xf5\x76\xd5\xdf\x6d\x14\x51\x75\x9c\x4e\xcc\x94\x20\x20\x85\x7a\x28\x07\x84\xad\x9c\x25\xd2\x9e\x55\x5f\x94\x40\x52\x6f\x54\xf5\x26\xff\x7c\x5f\xc1\x4d\x33\x51\x4e\x78\x9c\x2f\x64\x9c\x4c\x87\x18\xaf\x1c\x82\x67\xe5\xd6\x5e\x68\x9a\x7a\x02\xa9\xea\xc5\x7a\x57\xec\xed\x49\xb7\x9b\xd3\x36\xc8\xe2\xf4\xa3\x87\xdd\x23\xae\xb2\xfe\x44\xfb\x76\xed\xe0\x7f\x91\xdf\x29\x7e\xff\x60\x37\x71\x74\xe0\xd5\x33\x46\xea\xee\xe4\x48\xfc\x28\x78\x03\xc1\x59\x61\xe6\xf9\x4e\x78\x7e\x70\xe4\x0f\xad\x85\x1e\xf0\xdc\xda\x67\x55\x05\x8e\x52\x44\x82\x33\x7f\x7d\x98\xb1\x14\x90\xb1\x5c\x5e\x87\xd2\xb7\x93\x0f\x6c\xa3\x05\x84\x5c\x22\x65\xe3\x72\x83\x05\xba\xb7\x38\x09\x3b\x13\xa5\x4f\xc7\xea\xe6\x3d\xe5\x7b\x5a\x62\x13\x15\xb8\x95\xb7\xb7\xa0\x4c\x3e\x0a\xd1\xc8\x8b\x11\xef\x18\x17\x64\x30\x3a\x19\xae\xd7\xe5\x92\xf5\x92\xd6\x70\xd4\x9a\x4e\x34\xed\x8a\x02\x16\x12\x9c\xc7\xb0\x9b\xac\x70\x5e\xc3\x73\x8e\x9b\xa3\xf8\x84\xc9\xea\x1a\xaa\xaa\xc5\x15\x70\x70\xce\xd4\x6e\xe8\x26\xb1\xe1\x23\x55\xb7\xe3\x3d\x8a\x8f\x5f\x22\x7f\xc5\xb3\xc1\x12\x08\xaa\x2a\xd1\xc4\xfe\xea\x89\x16\x99\xb3\xdf\x57\x3f\xc0\xbe\xb2\xea\x50\x2f\x31\xae\x58\x2b\x77\x40\xfb\xaa\x75\x67\xe6\xf2\x73\x05\x1d\xef\xeb\x8a\x75\x87\x38\x35\x3b\x65\x01\xf2\x66\xc9\x9a\x98\x07\x9f\xce\x64\x54\x22\xa9\x37\xd7\xbc\x1a\xb9\x3d\xce\x95\x72\xa2\xf3\xd5\x41\xf1\x3c\xeb\xf9\x1b\x37\x45\x65\x71\x40\xb2\x0e\x97\xa0\x7e\x62\x71\xe7\xeb\x9b\xfc\xb6\x83\x32\xc9\x38\x14\xeb\xb7\xa5\x38\xb3\x1f\x92\x84\x96\xe8\x55\x78\x8b\x42\x2b\xce\x30\xc1\xd7\x01\xbc\xd9\x38\x79\xe5\x06\x27\x68\x70\x17\x55\x4f\x5d\x07\x3b\xba\xee\x4d\x7c\xfa\xe7\xb3\x32\x9f\x62\x24\x3b\xa8\x08\xd7\x93\xba\x53\x4c\x94\x3d\x60\x39\x91\x9a\x61\xa9\x8d\xf8\xb7\xe0\x9a\x04\x61\xc2\x2c\xba\x14\xa8\x53\x76\x54\xff\x53\x91\xfc\x2b\xc2\x21\x9f\x24\xbd\x86\x81\xf7\x32\x9a\x15\xbb\x05\x90\x74\xe8\x07\x92\xae\xa7\x25\xc0\x98\xb6\x3b\xff\xbf\x06\x22\x4b\x8a\x5c\x2c\x31\xa0\xa9\x5b\x55\xdb\xb4\x81\x66\x39\x44\xa1\x27\xdb\x40\xd6\xe6\xfb\x8e\x12\x27\x0b\x56\xb1\xb7\x79\xdd\x5d\x95\xd0\xb5\x6f\xd2\x2b\xbe\x56\x9e\x69\xd3\x2c\xba\xcb\xdd\xff\x9e\x96\xe5\x94\x86\xa6\xc3\xdd\x05\x73\x17\x4c\x54\xdc\xb4\x5c\xbe\x40\x9f\x8b\x3e\x00\xab\xbe\xa6\xce\xfa\xc0\x64\x36\x42\x01\xc4\xe7\xe8\x2a\xcd\x7a\x73\x5d\x86\x88\xb8\xfa\xbd\x23\x0f\xb0\xae\xd7\x09\x72\x07\x13\x4f\x93\x34\x0a\x85\x0e\x6e\x82\xe7\xb7\xf1\xe8\xb9\x68\x70\xbd\x4e\x6b\xa4\xd4\x56\x78\x61\xf0\x5a\x19\x54\x08\x45\x8e\x3f\x34\x25\x72\x15\x9f\xcd\xa9\x8b\x8b\x55\xb4\x3a\x2f\x91\x93\x4a\xce\x68\x81\x26\x1f\xb8\xe9\x8f\x89\x5c\xc6\x67\x4e\x6f\x7f\x24\x97\xf3\x22\xf4\xaa\x1e\xbe\x4f\x4d\x59\xcf\xb7\x29\x56\x44\x54\xf3\x77\x96\xe4\x6d\xd8\xf4\xa6\x7f\x6b\x48\xe6\x80\xfa\xfd\x8f\xf4\xc5\xc7\x80\x3a\x89\x6e\x20\x07\x9a\x14\x48\xda\x55\xcf\x2b\xec\x8c\x16\x06\x89\x3d\x87\x9a\x42\x07\x79\x70\x07\x28\x77\x5e\xd9\x37\xcd\x47\xce\x4c\x8f\x97\xb6\x7c\x29\x9c\x68\xda\x5e\xd9\x77\xc2\x7a\x80\xcd\x0c\x9b\x03\x4b\xe8\xb8\xc9\x08\xb6\x04\x96\x16\x78\xc2\x2c\x6f\x16\xc0\x6f\xf3\x9e\xd8\x62\x2d\x67\x35\xe1\x50\x61\x51\xcd\x76\x55\xb8\x2b\x6f\xae\x85\xcd\x43\x04\x15\x1f\x13\x6f\xb5\x62\x06\x2b\x53\x9a\x63\x65\x31\x9d\xca\xc8\xff\x4a\x9f\xaa\xf3\x01\xfb\xc2\x87\x9e\xd9\x71\xd9\x6c\x37\x84\xb0\xa0\x09\x7e\x26\xaa\x25\x8b\x55\x64\x4a\xde\xcf\xd3\x63\xf9\xb0\xd3\xff\xae\xc2\x98\x2a\x3a\x4a\x6c\x81\xf7\xc0\xc6\x46\x27\xc2\x75\x5a\x6d\xa9\xbc\xb2\xbe\x1d\xee\xec\x6c\xd6\x21\x85\x98\x70\xed\xfe\x08\x52\x00\x5f\x5f\x04\x27\x57\xd6\x3f\xe3\x48\x5b\x07\x77\x63\x7c\xe3\xc3\x07\x71\x02\xbb\x29\xe7\x29\x6b\x84\x89\x70\xe8\x80\xa8\x03\xdd\xe4\x74\xb6\xbc\xae\x72\xa7\x7b\xa2\xd9\x62\x2b\x1e\xdd\x45\x5f\xb1\x05\x0f\xee\xdb\xc7\xa6\x66\x7c\x79\xa5\xf7\x41\xef\xf4\x33\xd9\x6d\xf9\x82\x25\x18\xf0\x2f\x48\x70\x03\x8e\xf3\x83\x23\x1b\x86\x6e\xc5\x9c\x34\x23\xe0\x85\x9d\xe3\x60\x08\x33\xb3\xe5\x33\x61\x42\xa6\x4b\xa8\x18\x82\x78\x25\x0c\x58\x8c\xda\xcf\x00\x99\x72\xe5\x8b\xe1\xd3\xce\x98\xae\x9a\x9b\x74\x5d\xd5\x9f\x3a\xc5\x26\xf3\xb1\xf0\xfc\x0a\xad\x15\x11\xe1\x4e\x4c\x8b\xe4\x73\x6c\xc9\x64\x37\x51\x83\x15\x6e\xf7\x55\x72\x27\x77\x88\xe4\x49\x58\x7f\x8a\xb7\x3b\xb3\xab\x92\xc5\x64\x30\x35\xbb\xdf\xa3\x51\x36\x4d\xa7\x3a\x52\xcf\x44\x38\x0d\x7a\x17\x85\x52\x9c\x3b\x08\x9d\x92\x43\xbb\x55\xc4\x9a\x4a\xec\x1e\xd0\x3a\x80\x15\x9a\x55\x1b\xb1\x0c\xfc\xc5\x6e\x09\x31\x3f\xee\x34\x81\x6c\xd8\x9d\xc4\xbd\x0f\xaf\x46\xde\x37\x76\x07\x69\xdc\xd0\x32\x0f\x6c\xd3\x17\x0c\x60\xcb\x8e\x3a\x3b\xa4\x0f\xad\xc0\xb4\xfc\xf7\x90\x89\x11\x41\x78\x6f\x24\x13\xef\x18\x44\xb3\x8e\x44\xbb\x23\xbd\xaf\x70\xf9\x8c\xd9\x20\xff\x3d\x6e\xf8\x9c\xde\x81\x0f\xe4\xd9\x00\x44\x0f\xec\x11\xe4\xa4\x04\x6d\x6d\xed\x95\x9e\x07\xbd\x1f\xad\x15\x2b\x77\x43\x58\x08\x07\xae\xd4\x5d\xcc\xcc\xd4\x87\x95\xad\x72\x5d\x08\x9b\x0c\xb1\x4b\xa9\x71\xd7\x28\x55\x10\xaa\x70\xc0\xe8\xfc\xb9\xe2\x50\xb8\x0f\xdf\x11\x88\x61\xa2\x03\x50\xdb\xc4\xf8\xbc\x59\x9a\x81\x43\xc8\xc8\xb6\x2d\x91\x07\x6d\xb4\x03\x15\xdc\x88\x85\x45\xec\x0a\xdc\xaa\xc1\x6d\xbd\xe7\x52\x74\x62\xd4\xba\x98\xdf\xe3\xcb\x52\x9c\x1a\x89\xe8\x98\x45\x5d\x4d\x56\xe6\xec\x72\x85\x45\xbb\x4e\xd2\x0f\x61\x5c\x3a\xdc\x63\x4d\x19\x00\xd8\x70\x94\xc1\xf7\x13\x0a\x45\x8c\x46\xc5\x0e\xe3\xbf\x55\x2d\xd6\x12\xee\xf6\x2e\x62\x20\xe9\x31\x38\x0a\xcd\x9b\xa8\xae\x8d\x9f\xfc\x34\x6c\xdc\x4f\xf8\xcf\x03\xad\xb7\x0c\x2e\xa6\xf7\x6f\x12\xea\x12\xa8\xd1\xdf\x82\x16\x98\xe6\x81\x52\x8d\xc1\x42\x10\xd5\x58\xba\xe4\x2c\x52\xcb\x43\xc1\xfe\x55\xaa\x78\xde\xbb\xff\x09\x5a\xf8\xa8\x2d\xaf\x85\x77\xbd\x1c\x2c\x07\xee\xde\x60\xe7\x1c\x2d\x0c\xca\x80\x1c\xa1\x24\x1d\x48\x07\x4a\xd4\x4e\x48\xe0\x66\xe4\x6c\xc2\x18\xa2\x24\x88\x12\x4a\x0d\xd8\x42\x58\x50\x85\xa5\x11\xcc\x04\xe5\xa0\xd2\x8d\xf4\xca\xf1\xc4\x1f\xe2\x24\x46\x58\x11\x58\x98\xf2\xd1\xc6\x2c\x52\xac\x9e\xec\x36\x8c\x08\xb9\x67\x77\x56\x5f\xa3\x4b\xb4\x03\x3d\xfe\xac\xaa\xe5\x8a\xc6\x55\x6d\xf8\x76\x19\xe4\x64\x57\x98\xfe\x74\xca\xbf\x88\xa1\x34\xcb\x9a\x75\x57\xdc\x82\x98\x79\xb9\x0d\xe6\xc7\xae\x6f\x9b\x7a\xf9\xe2\xb8\xe1\x63\x23\x6b\x74\x78\x13\xfc\xe9\xc7\x67\x9a\x4e\x4c\x93\xe7\x90\x6d\x02\x5f\x57\xfd\x9b\xdd\xfc\x51\x97\x2e\xd9\x48\x15\xf7\x2e\x79\x60\xba\xaa\x86\x05\x62\x83\x77\x53\x3b\xb4\xc0\x90\x95\x16\x7a\xd7\xac\x69\x95\xc4\x45\x9a\xcd\x46\xe6\x97\x36\x80\x8d\x40\xa2\xff\xb0\x45\x28\x6b\x60\xae\x6c\x15\x3f\x54\xe1\xcc\x91\xb9\x9f\x1f\x9d\x36\x13\xf7\x22\x3d\x89\x0a\x5c\x0c\x8c\xcb\xd5\xba\x0f\xb6\x0d\xd6\x91\xa4\xae\x18\x04\x85\x71\x31\x4c\x24\xab\x9d\xbc\x8a\xc6\x94\x2c\x38\x09\xa0\x0e\x2b\x4f\x45\xa9\x27\x22\x31\x71\x9a\xb5\x29\xb2\x42\xc9\xfa\x6f\x21\xad\x80\x7e\x79\xaf\x30\x15\x2e\x04\x5f\xaf\xcc\x61\x82\x1d\xac\x72\x65\x6c\x32\x7a\x65\x6b\x36\x82\x80\xb1\x29\x4e\x3c\x67\x1b\xc2\x4c\xf1\x36\xeb\x45\xc8\xd4\xc4\x88\x49\x18\x9b\x90\x24\x9d\x34\x98\x6d\x7f\x21\x53\x1b\xb5\xeb\x07\x6e\xcd\x7d\x01\x5f\xc3\x98\x0e\x81\x0e\x1a\x0b\x74\x23\x3a\x53\xef\x54\x13\x82\x0c\x36\x80\xf5\xa7\x9e\xf7\x8d\x5e\xa1\xa5\x96\x88\x39\xa1\x63\x4e\x5f\x46\x8b\x99\x3b\x01\x93\x45\x31\xc9\x81\x72\xe5\xbf\xa5\x45\x4e\x9c\xa0\x6f\x3e\x11\x31\x8d\x8b\x20\x7d\x5f\x21\xc7\x61\xec\xac\xa1\xfc\xe5\xd0\xb3\x87\xe1\xe9\x43\xaf\xa2\xf7\xb2\x98\x80\xb3\x68\xad\xce\x2c\x4a\x34\x43\x30\x07\x67\xdb\x91\x42\x38\x89\x32\x02\xb5\xfd\x71\x1c\x80\x24\xac\x9a\x81\xa0\xbe\xe5\x0f\xfd\x1d\x4e\x4b\x54\x7f\xb0\x5c\x88\x81\xef\xea\x80\x81\x0a\x39\x64\x82\x0a\x37\xc8\x33\x3a\x4a\xc2\xf6\xf1\x50\x2a\xbc\xe4\xec\x4e\x0d\x7f\xf5\x46\xdf\x8a\xbc\xd6\x44\xac\x01\x00\x0a\xc2\x3b\x87\x08\xfc\xf2\x5a\x05\xab\x45\xad\x35\xd4\xaa\x11\x73\x40\x54\x67\x2c\x73\x25\xd6\x1b\xe9\xe1\xd9\x5b\xda\x33\x5c\x83\x56\xe9\xcf\x39\x49\xd2\xd2\x85\x1b\xa7\xd1\x60\x62\x1b\xf2\x5c\x27\xf3\x4b\x71\x53\xa0\xa2\x24\x96\xb8\x1b\xd4\x68\x40\x32\x98\x38\x5f\x70\x5c\x76\x81\x96\x47\x5a\x43\x4f\x86\xbb\x95\x1b\xea\x37\x84\x59\xa7\x6b\xe4\xa5\xb5\xbd\x65\xfe\x1f\x98\x6b\xe5\x82\xa1\x1b\x70\xf0\x81\x9d\x18\x41\x42\xd3\x91\xf2\x12\x6e\x1d\xff\xb0\x0e\x2b\x07\x09\xa7\x32\x64\x23\x93\x93\xe9\x99\xca\x64\xb1\x29\xce\xb2\xb5\x7a\xe2\x31\xdf\xc7\x67\x98\xf0\xfd\x39\xfc\x0e\x2e\x13\x8e\x2a\x20\xe5\xb3\xc9\x66\x1d\x45\x4b\xd3\x03\x7e\x93\xca\x46\x28\xb6\x0e\xdc\x8a\x9c\x2e\x94\x22\x02\x33\x62\xaa\xe5\xa6\x5c\xb3\xfd\xaf\xb6\xee\x6f\x40\x75\xe8\x91\x51\x80\x02\x05\x27\xd1\xd2\x8b\xb8\x82\x8a\x50\x4d\x67\x95\x11\x04\x2d\x37\xd8\x01\xc8\x51\xde\xf6\xeb\xa3\xc3\xf7\xef\x4f\x2f\xfd\x36\xcd\xeb\xa0\x2e\x48\x98\xf8\xc6\x59\xcc\x8d\xfa\x65\x76\x73\x6e\x02\x63\x08\x6f\xb9\xa7\x25\xf6\xc1\x85\x6c\xca\x6a\xa7\xcf\x65\x03\xde\xd3\x70\x5f\x8c\x97\x47\xfd\x2f\xf6\xcd\x5f\xf2\x81\xe5\x9b\x8f\x89\x29\xbb\x4f\xf9\x6f\x12\xde\x17\x04\x77\x34\x58\x7a\xfe\x2a\xc7\x5b\xe7\x53\x07\x9a\x62\x74\x7f\x00\x26\xbd\xcb\x71\x34\x22\xdc\x37\xd8\x2b\xae\x52\xdc\x77\x1f\xb0\x3a\xb4\x69\xb1\x60\x18\xb9\xbb\xba\xfa\x6d\x07\x01\x8d\x0f\x46\xc4\x3c\xd8\x10\x73\x5e\xad\x65\x43\xf9\xb3\xfb\x21\xe9\xfc\x35\xb0\x20\x0f\x1a\xa7\x5f\x3f\x76\x5b\xb6\x63\xa5\xbd\xa1\x7b\xfe\x60\x57\xa5\xac\x5d\x63\x2b\xae\x07\x2f\xe8\x18\xc3\xb7\xe0\x34\x7d\x04\xf1\x62\x54\x1d\x7b\x91\x2d\x44\x15\xe7\xec\x81\x40\xb7\x9a\xce\xab\x85\x45\xde\x48\xff\x27\x88\xff\x1d\x6d\xb2\xcb\x9a\x1f\xc7\x63\x3d\x25\x13\x8e\xb0\x76\xaf\xf3\xf5\x2e\x56\x96\x70\xeb\x5c\xa6\x7b\x92\xc0\x3c\xde\x97\x85\xc1\x0f\xbc\x1d\x39\x83\xa8\xe1\x27\x20\xad\xbf\xdb\xe7\x89\xfd\x22\x59\xf4\xfb\x26\x41\x4f\x54\x01\x3d\xf4\x9e\x43\x9e\x99\xc1\x73\x1e\x6c\xe1\x91\x3a\x31\x1b\x81\x9f\x4b\xbe\xee\x45\xf5\x9c\x06\xb3\xc9\xac\x05\x83\x28\x43\x8a\xd1\x2b\x42\xc7\xc1\xba\x45\x5b\xc1\x96\x5f\xd2\xd9\x57\x32\x0d\xfc\x24\x5d\xa2\x6f\xf7\x82\xe8\x9e\x50\x34\x5b\x56\x3d\x1d\xb9\xd9\x63\x0b\x96\xdf\x09\xb1\x0d\xda\xc9\xe0\x65\x29\x5f\x96\x32\x2a\xca\x9b\xbe\xc0\x42\x65\xc6\xa2\xa6\xae\x00\xfe\xd0\xdf\x13\xa5\x14\xd0\x7c\x3c\xf9\xf6\xa3\xc9\xaa\xba\xe2\x85\xff\x96\xfe\xd0\xa6\x2e\x47\x80\x98\x4c\x45\xbe\x45\x25\xaa\xdf\x91\x43\xb8\xab\x47\x2d\xf1\x74\x56\xd4\x04\x2f\x98\x17\x35\x16\x57\x0d\x3a\xd0\x86\x84\xf4\x25\x12\xd4\xb5\x92\x7a\x42\xb3\x70\x2d\xe2\x90\x38\x5b\xbe\xb5\x94\xc7\x7c\x04\x7c\x92\xdc\xf0\x4d\xb0\x28\xa5\xff\xa2\x9f\xd0\x49\x2f\xf3\xbf\x4b\xea\x85\xfb\x81\x69\xef\x94\x10\xba\x3d\x1a\xe9\xe1\xb5\xee\xd7\x2b\xa6\x87\x35\xdc\xad\x9f\x66\xe3\xa7\x8c\x6f\x1b\x6c\x21\x44\xd6\x13\x89\x3a\x8d\x9a\xef\x9c\xf3\x1a\x15\xe7\xb9\x30\x77\x3f\x4f\x31\xe5\x49\x1e\x2f\x73\x18\x8d\xce\x69\x99\x3e\x78\x21\xd8\xb6\x35\x6e\xb5\xea\xe4\x9d\xa8\xdf\x6a\x30\x7b\x0a\x31\x93\x85\x6c\x67\x67\xb6\x1e\xe2\x73\xa9\xea\x81\xa6\xa1\xa2\x6d\x40\x45\xb1\x3c\xf0\x9d\x79\xf6\xfa\xed\x25\x3c\x67\x68\xae\xe1\xe9\x60\xee\x41\x6c\x53\x3c\x73\x75\xf2\x0e\x51\x75\x9d\x48\x0e\x75\x05\xc4\xf3\xea\xb5\x2b\x7f\x9b\x0e\x62\x6f\x72\xd2\xd5\xca\x42\xde\xe7\x6b\xb3\x7b\x4a\xc0\x98\x51\xf3\x5b\x49\xd4\x82\x9c\x88\x23\x74\x7c\xa5\x63\x66\x55\x79\xe8\xb4\x65\xd5\xba\x5b\x44\x3f\x6d\xe1\x05\xa2\x30\x12\xe3\x4e\xca\x56\xae\x1c\x7f\x82\xaf\x0e\x3b\x19\xc4\x8c\x09\xae\xc2\xc1\xec\x86\xa6\x81\xbc\x13\x16\xbc\x95\x6f\x6f\x33\x56\x48\x63\xf7\xde\xde\xfa\x84\x40\xcc\xa1\x8c\x2a\x02\x76\x26\x1a\x67\x98\xcd\xff\xf8\x3f\xff\xf7\xe9\x11\x0f\xef\xa8\x6f\xd7\xf4\xa5\x52\x24\xc3\x0b\xba\xa5\x82\xf4\xf4\x5f\xe9\x34\x70\xa3\xf6\x18\xbf\xc8\x57\x62\xbf\xb1\x24\x29\xbf\x53\x2d\x32\x3e\x12\xfd\xc5\x2b\x33\x51\xcf\x67\x5e\x92\x09\x1f\xc5\x94\x3c\xe8\x18\x16\x32\xd2\xdf\x76\xd5\xe2\x53\x26\x1a\x84\xe7\xe9\x9f\xf8\x57\x0a\xa7\x57\xdd\x4b\x98\x3f\x39\x66\x03\x22\x1c\x70\xac\xd0\x34\x18\x0c\x58\x0d\xf4\x3d\x73\xca\xe3\xbd\xf1\xd6\xec\x0d\x0d\x90\xfd\x79\x92\xed\x8e\x4d\x90\x78\xe2\xad\xb5\x33\x4a\x81\x73\x14\x27\xb2\x24\x13\xd4\xe0\x6e\x13\xa3\x3a\xd0\x3c\x75\x57\x9c\xdb\x26\x45\x00\x64\x79\x7d\x18\x9b\x9a\xcd\x73\x1a\xb2\x8a\xe3\x89\xe3\x9a\xca\x2d\xfb\xb6\xc4\x21\x83\xfe\x24\xc4\x8c\xd9\x56\x4d\xaf\x26\xd9\xa9\xb3\xcf\x71\x15\x87\x74\xbb\x98\xe4\xfb\xd5\x7c\xa9\x15\xe1\x74\xf1\x52\x3f\x13\x4a\xe7\xdf\x97\xf4\x67\xe4\x7e\xcd\xce\xda\x63\x27\xed\x75\x3e\x2f\x91\xfc\x0e\x1f\x44\xff\xb4\x1f\xf4\x34\x0b\x50\x93\xb9\x1f\x09\xa3\xa1\xea\x85\xf8\xf0\x95\xa8\xf7\x83\x5c\x43\xca\x67\x82\x4b\x9e\x36\x67\x53\xe0\xf3\xfc\x46\x7e\x12\x8a\xd4\x8b\xfb\x8d\x7c\x49\x32\x0c\xcb\x05\x14\x76\xe5\x0e\x1e\x02\xa4\xae\x80\x33\xfb\x4e\xac\x03\xb3\x71\x47\x2c\x67\xe0\x44\x9e\x2e\x06\xf9\x57\x72\x0c\x7e\xc5\x87\x60\x4b\xcb\xc1\xb1\x53\x33\x7c\x73\xe9\x1b\x5a\x46\x72\x13\x72\x22\x5f\x2e\xa7\x10\x63\xd3\x63\xec\x94\x9a\x66\x86\xfe\xa7\xfc\xd7\xa5\x12\x4d\xaa\x8c\x44\x7f\x9d\xd1\xbc\xc4\x58\xe0\xf3\xaf\x78\xad\xfb\xe4\xd9\x70\x2e\x82\xac\x9a\xc5\x8e\x39\xae\x9c\x68\x79\x21\x3f\xcc\x5e\x10\xfe\xdb\xcc\x95\x3f\xe2\x9f\xe9\x7a\x54\x8b\x9b\xdc\x70\x6e\x07\xcd\x84\x30\xd4\xd4\x24\x98\x34\x17\x42\x4a\x8b\x9b\x29\x60\x3a\xf3\xd4\x11\xec\x29\x25\x84\xa4\x15\x55\xcc\xd2\xfa\xa0\x66\x08\xf0\xd3\xf0\xb4\x19\xb2\x63\x15\x8e\x30\xfa\x39\xee\x67\x00\x24\xdd\xcc\x27\x40\x59\x93\xe4\xe1\x68\xe0\x43\x20\x55\x76\x3a\x9e\x33\x9c\x3d\x3f\x3f\x34\xb5\xc3\x09\x92\xcc\x8c\xe4\xab\x45\xe9\xdc\x42\x00\x04\x39\x83\xe3\x1d\x44\xcd\xb8\xca\xb4\xb1\xa8\x3e\x20\xb4\xcf\xe7\x94\xfd\xb0\x00\x36\x5d\x61\xc6\x95\xcf\x12\xd4\x59\xa6\x32\x17\xab\x39\xaa\x32\xcc\x23\x91\x28\x13\xf1\x50\x10\xe1\x44\xc5\xf5\x44\x89\x3b\x29\x6a\x08\xb3\xb7\xe6\x11\xdd\x68\xc9\x3b\xa6\xd7\x43\x70\x84\x80\xfd\x55\xef\x29\xa7\x32\x19\x24\xb1\x71\xce\x8c\x9d\x87\x1c\xff\x3c\x84\x3d\x0a\x78\xe8\x14\x68\xa7\x71\x4f\x48\xf8\xe6\xfd\xdc\x75\xb5\x50\xb5\xd2\x54\x21\x99\xe5\x22\x9b\xdf\x6a\x19\x99\x67\x38\x65\xee\x29\xb2\x61\x93\x16\x1c\xb1\xb4\xc8\x89\x4b\x98\x28\xd2\xa9\x53\x37\x7b\x55\x8f\x73\x66\xbc\x19\xc1\xe4\x85\x79\x53\x37\x09\xc2\x54\x0a\x90\x53\x7c\x4c\x81\x88\xb2\x55\xd5\x25\xbc\x0b\x88\xfb\x82\x5d\xcf\x4e\x36\xcc\x76\x3c\xae\xc4\x3b\x58\xf5\xb4\x5f\x50\x8e\x4d\x64\x99\xaf\x8a\x6e\xfd\xa4\x81\xd9\x2a\x7e\xde\xd1\x8e\x2f\x20\x0d\x8d\x4a\xf0\x4a\xc2\x2c\x10\x88\x7c\xa7\x0f\x3f\x7c\xfb\xb1\xe3\x69\xf0\xd7\x16\x1f\xbe\xfb\x48\x67\xd6\x87\x1f\xbe\xff\x88\xfb\x8a\x51\xe1\xec\x8a\xd5\x75\xe3\x1a\x50\xd0\xa0\xb7\x6d\x79\x5d\x35\xbb\x4e\x64\x34\x7c\x7a\xfe\xf0\x59\xa6\xe2\x73\x1f\x2f\x71\xe7\x5c\x3e\x58\xe1\x85\xcb\x8a\x57\x78\xbd\xdb\x64\x3a\xc6\x4e\x38\x80\xfd\x72\xc5\x0d\x03\x59\xce\x4d\xfe\xea\x7e\xf3\x70\xab\x82\x07\x4b\x9d\xb7\xa3\xfa\x1f\xe4\xd7\x0b\x0c\x84\x87\xfe\xab\x6b\xa9\x09\x6e\x3a\x2e\xc5\x3f\x9e\x25\x6b\x77\xe7\x72\x5b\xf6\xb3\x98\x2b\x59\xac\x16\x74\x39\xce\xd2\x5e\x78\x10\x9d\x37\x18\x06\x87\xe0\x6d\x09\xc4\x18\xdc\x39\x7e\x0e\x32\xef\xaa\xac\x8d\x0a\x28\xab\xf5\x54\xa2\xa0\x03\x5c\x2b\xa6\x64\x1b\xfa\x3a\x34\x49\x7b\xae\x0e\xfb\xf9\x95\xb5\x88\x3c\x41\x42\xeb\x95\xab\xe7\x8a\x30\x5e\x2f\xa0\x15\xc7\xc5\x01\x0f\x55\x0d\x43\x05\xfa\x2b\x9b\xd8\x36\x1a\x69\xea\x0c\x1f\x96\x2c\x6a\x28\xb5\xfa\x77\xb4\x19\xa9\xec\x34\xd1\xdc\xc0\xe8\x48\x40\x87\x1f\x70\x6c\x73\xfd\xe2\xbb\x23\x4e\x8a\x40\xab\x3a\x33\xe7\x01\x3d\x35\x10\xb3\x64\x83\x37\x19\x11\x91\x11\x7b\xbb\xaa\x16\x78\xaf\x67\x5e\x74\xb5\x68\x9e\x7e\x72\xb1\xcc\x13\x19\xae\xd6\xb2\x80\x5e\xe4\x67\xfa\xe3\xf0\x3a\x30\xe2\xb1\xfe\x71\x2b\xd4\x7d\xfa\x63\x49\xb2\x2f\xda\xa2\xf3\xfb\x76\x9c\xbf\x68\xd6\x8d\xdf\xd7\xf1\x6b\x08\x20\x5a\xd9\x87\xc5\x40\x36\x93\x6c\x4f\xdb\xba\x7a\x39\x61\xb0\xf3\x08\xe4\xc4\x60\x24\x63\x60\xa2\x16\x67\x3a\x6f\x16\xe9\x20\x7c\x5a\x2c\xa2\xc2\xb8\x16\x35\xf4\x02\xa8\x53\x0b\x4f\x82\x4d\xe9\xff\x45\xca\x08\xf5\xfd\x2c\xb3\x87\x86\x12\x7c\xe3\x1d\x5c\x01\x68\xcd\xfb\x35\xfe\xd3\x4d\xfb\x33\xb1\xf4\xf4\x9e\xab\x45\x39\x04\x05\x32\x78\x78\x18\xd2\x4c\xd6\x19\xe7\x44\x97\x62\x56\xa3\x07\x0d\x4e\x51\x6b\xa2\x6e\x1a\xce\xb0\x60\xc0\xfd\x4d\x93\xba\x23\x1a\x62\xa4\xf1\x2e\x91\xa7\x5c\xd8\xfc\x00\xb1\x36\xb4\xfc\x6c\x50\x2d\x7c\xb9\x9f\xc3\x80\x6f\xd8\xa0\xb6\xf0\x3c\xd5\x2f\xcd\x8f\x4e\x8f\xc3\x53\xa3\x8d\xbc\x61\x85\xd9\x6e\x8d\x0d\x02\xf7\xa5\xf2\xe3\x4a\x6e\xfa\x0c\x08\x61\xa6\x58\xa2\xf1\x6d\x05\x5c\x5e\x82\x50\xa9\x01\x07\xe7\xce\xcb\x45\x0e\x5b\x5d\xb8\x81\xd5\xac\x11\xce\x8b\x60\xf4\x04\xc2\x41\x33\xac\x7e\x36\x7e\x0e\x43\x87\x31\x4f\x73\xd5\x9b\x3e\x64\x80\xa9\x79\xd9\xdf\xf0\xbc\x8a\x41\x05\x23\x57\xd4\xcb\xdd\x0f\xe1\x4e\x4d\xec\xed\x19\xda\x78\xc6\xdb\x75\xa1\xac\xee\x0f\xf8\x21\x0c\x4f\x51\x39\x10\xe6\x27\xc8\x00\xab\xdd\x26\x95\xc9\x11\xfa\xf6\x4d\x49\x8d\x62\x8b\x2f\xec\x7c\x29\x8c\xf7\x47\x76\xda\x33\xce\x8a\x6f\xa2\x70\x36\x98\xd0\xf4\xef\x5d\xba\xd6\x8f\x9a\x74\x27\xb7\x66\x24\xed\x1f\xab\x9e\x4a\xff\xcb\x47\xa3\x51\x3a\x0a\x64\x21\x2f\x05\x7d\xfa\x9f\x11\xd4\xf0\x58\xed\xf3\x44\x47\x0c\x82\x2a\xcd\x98\xb2\xd0\x7c\xdd\x75\x89\x54\x04\x35\xce\x5f\x42\x32\xf4\x36\x30\x9c\x49\xea\x35\x1d\xf1\x99\x11\x28\x36\xdd\xa5\xd8\x2c\x42\x0d\x44\xdc\xd6\xb7\xc4\x54\xe3\x72\x2e\x47\xd5\xba\x95\xaf\x30\xf1\xc2\x97\x2a\x38\xc8\x16\xad\x0f\xbb\x0a\xa5\x5f\xee\xd2\x63\xba\x2e\x85\x2d\x76\xde\xbe\x9d\xb1\x48\x85\xa0\xfb\x0a\xf8\x99\xf5\xbd\xea\x32\xd8\x40\x89\x0d\xf5\xa5\x1a\x36\xad\xab\x45\x9f\xba\x74\x6a\x4e\xad\xdc\x61\x09\xb3\x94\x98\x3c\xce\xa4\x9d\x36\xcb\x6e\x85\x20\x1f\x0c\x70\x45\x5c\x6a\xd3\x40\x8a\x73\x2c\x22\xaf\x33\x28\xfb\x31\xd4\x30\xf2\x07\x2b\x65\x0d\xb9\x0c\xf1\x74\x80\x61\x51\x8c\x0d\x86\x1b\x54\x0b\x6d\xf8\xbe\x9a\x1f\xf5\x77\xd7\x6d\x5c\x40\xbc\x4f\x78\xd1\xdb\xd0\x3b\xb7\x7c\x4d\x37\xb2\xb7\xc9\xa9\x60\x70\xa1\x0a\x8e\xe6\xa1\x91\xb8\x11\x30\x2e\xaa\xfa\x88\x68\x86\x6c\x05\x04\x34\xb5\xba\x41\xb4\xbb\x5a\x17\x21\x4a\x41\x0b\xc8\x64\xfe\xeb\x78\xbc\x4a\xcc\xfb\xc6\x1a\xb2\xad\x5a\xb6\xed\x88\x9e\x1e\xff\xe1\x61\xf1\x44\x16\x32\x0c\x8b\x46\xb7\x31\x9c\x28\xe8\x0c\xb7\x48\x1e\x73\xd5\xc1\x0b\x9c\xc9\x86\x37\x0b\x06\xa2\xef\xd9\xaf\x49\xa0\xa9\x0b\xf6\x33\x7f\x06\x0f\xb2\x27\x14\x06\x41\xee\xb4\xd2\x60\x08\x50\x78\x55\xcc\xc3\x2e\x6a\xbb\xc9\x68\x79\x64\x7a\xa2\xa3\x2d\x85\x17\x0b\x7e\x0d\xbb\x60\x47\x99\x61\xd5\xee\x50\x10\x8f\x88\xf6\xf6\x39\xef\x23\xe2\xdb\x2c\x7c\x3a\xd0\x4e\x12\x09\xa8\xb3\x8a\x5e\xa0\xab\x80\x10\x55\x3f\x60\xf3\x93\xd8\x31\xb1\x0e\xde\xb5\x61\xc6\xc4\xa5\x60\x98\xeb\x07\x7d\x4c\x23\x66\x7d\x60\xfa\xd8\x02\x83\x3d\x89\x07\x59\x8a\xa5\x36\xff\x0d\x33\x5c\x1c\x17\xad\x2a\x93\xa9\xd7\x1a\x51\xb9\xa6\xf8\xf8\x26\x07\xce\x37\xf5\xd1\x2d\xfd\x7b\xba\xd9\x3c\x2d\x8a\x47\x13\xa3\x0e\x44\x23\x37\xec\x81\xb9\x99\x6a\x21\x06\xac\x32\xa8\x29\x90\x33\xa7\x71\xc7\x00\xd1\x3c\xfd\xc2\x52\x40\xc9\x97\x66\x69\xe1\xf1\x26\xa4\xeb\xe7\xae\xe3\x2d\xa0\x21\x86\xe7\x4d\x58\x98\x55\x88\x0f\x63\x38\x92\x81\x84\x1e\x64\x0d\x5c\xb3\xef\xec\x9e\xbb\x36\x51\x89\x8e\xd8\xf7\x66\x0f\x4a\x24\x98\xdf\x5e\x84\x04\x92\xb1\x47\xaa\x93\x8e\x27\x00\xa7\x64\x63\xdf\xf6\x3f\x53\x3e\x9e\x6a\x7c\x8a\x04\xee\x93\x90\xa7\x02\xc7\x5a\xda\x4c\xe8\x1b\xae\x31\xf2\xe5\xb3\x82\x60\x34\x2a\x67\x04\xbf\x3d\xd8\xaa\x69\x3e\x49\x40\x9e\x39\x3e\x7d\xce\x92\x03\x51\x4a\x26\x87\x5c\x7c\x13\xe7\x92\x68\x59\x2d\xc2\x00\xb5\x2f\x39\x61\xa2\x8b\x05\xcf\x71\x9b\xfd\x5d\x74\x92\xc7\xf8\x95\xfe\x2f\x26\x0c\x07\xa2\x7e\x2d\xa7\x16\x80\x89\x4d\x2e\x7c\xae\x7a\x24\x04\x4d\xa9\x03\xc5\xb8\x2d\x35\xd9\x67\x76\xfe\x65\x5e\x27\x53\xde\x26\xb1\x0b\xec\xcc\xd7\xee\x9c\xe8\xf8\x76\x48\x3f\x4f\xcd\x0f\x6f\x0c\xe6\x6e\x67\xbd\xef\x5d\x7c\x39\xc5\x06\x73\xb5\x98\xda\xc3\xff\x8e\xef\x91\x1a\x6c\x58\xa1\xd3\x1f\xd1\x9d\x8b\xf1\xa8\x27\x6e\x68\x01\x60\x7e\xd6\x05\xdd\x43\x70\x63\x78\xe0\xb2\x64\xd6\xc9\x5d\xbc\x7a\x12\x8a\x3f\x8a\x68\x0a\x72\x77\x7a\xef\x60\xb4\x30\xb1\xf5\x41\x07\xee\x82\xe3\x88\x43\x8b\x75\x15\x79\xc1\xf4\x0e\x9c\xb0\x80\xe9\xe0\x7a\x7b\x00\x68\x48\x39\x25\xfe\x21\xf6\x91\x52\x2c\x8f\x9c\x18\xfb\x40\x83\x25\x36\x4d\x7c\x65\xe7\x7a\xc4\xec\xa9\x6c\x7b\xb8\x0f\x8e\xd1\xce\xee\x0c\xb4\x80\xb2\x6f\xa9\x99\xa7\x90\x95\x24\x2a\x25\x06\x21\xeb\xaf\xba\x0a\xf0\x01\x33\x4f\x36\xdb\xbc\xae\x8a\x1d\x51\x1f\xcf\xc5\x5d\xf5\x7e\x17\xd7\x4b\x2b\x1e\xb7\xea\x7b\xeb\x1e\xcc\x27\x84\x08\x17\xb2\x18\xfe\xa3\x57\xde\x2d\xba\x9b\x6a\x99\x99\x90\xd3\x76\x28\x0e\xe0\xde\x9c\x7a\xff\xc0\x90\x55\x09\x1f\x82\xa1\x99\xd8\x82\x9b\x98\xf4\x43\x3a\x9a\x8f\x18\x5b\xe2\x73\xea\xa4\xaa\x7b\x4d\xdd\x46\x84\x30\xc0\xd2\xa0\x3e\x20\x2c\x30\x48\xb3\xd9\xe7\xe1\x73\xa8\x3b\x0d\xa7\x6c\x67\x80\x90\x24\x24\x56\x02\xa2\x3b\xb3\xe1\x00\x1d\x15\x0e\x94\x07\x1f\x38\xad\xaa\x78\xda\x05\xb6\x8b\x9e\x07\x36\x11\x66\x07\x7d\x85\x89\x80\x20\xe0\xed\xa8\x69\xef\x00\x78\xe0\xed\xae\x9c\x1d\x08\xcb\x9d\x6c\xe2\x56\x17\xe5\x96\x63\x6d\xb2\x62\xf3\x4a\x76\x5b\xe1\xf9\xf7\xb4\xfa\xdd\x5d\xad\x8a\xb9\xd8\x54\xb3\x66\x38\xa9\x1e\xf5\x58\xb4\x1c\x20\xfb\x9e\xd6\xbe\xb7\xd6\xc2\x2d\xeb\x53\x59\x6e\x83\x26\xe2\xee\x07\x8e\x24\x60\x9e\xb1\x01\xd7\x04\x47\x53\x5f\x49\x73\xae\xde\xc3\xc4\xa3\x58\x31\xde\x4a\x40\x77\xb3\x7b\xfc\xca\xc6\x0b\xc4\x54\xa0\x88\xea\x0e\x35\xa8\x83\x61\x2d\x4f\x16\x70\x6e\x98\xf2\x1a\x4b\x9e\xa8\x4a\x4c\x84\x07\xb6\x47\xde\xdb\xda\x75\xcd\x0a\xb4\xfb\xbb\x17\x5b\x81\xa6\x13\xd6\x9f\x0e\x94\x4d\xec\x43\x62\x4d\xc5\xb1\x82\xc7\x73\x14\x24\xef\x2f\x30\x70\x67\x88\xea\x8a\xdd\x19\x82\x0e\x0a\x15\xed\xab\xe7\x68\xb2\x0e\xa5\xbc\xa0\x16\xb9\xe6\x97\x78\x84\xf1\x85\xaa\xde\xfb\x83\xa1\xce\x42\x62\x60\xd0\x0a\x0e\xf7\x99\x46\x3f\xd3\x37\x0c\x86\x1e\xef\x9a\x7b\xb3\x6a\x82\x48\x36\xe2\x95\x81\xdd\x2b\xec\xfa\x2c\xc6\xce\x8d\x08\x34\x8a\x49\x15\x6f\x06\x72\x8f\xed\x46\x26\xfc\xe0\x90\xbc\xd9\x51\x9f\xd7\xd5\x27\xa8\xcf\x88\x94\x25\x1c\xf2\xe9\xc5\x25\x74\x66\xb4\x64\x68\xe7\x5d\x32\xa7\x4e\xff\xb2\x2a\x6b\x44\xe8\xe4\xa8\xc4\xca\xba\x16\x0b\x76\xa6\xaa\x6a\x0d\x5f\x78\x53\x9a\x89\x7b\x5d\xac\x85\xd1\x85\xee\x76\x26\x6f\x88\xee\x2c\x45\xe4\x61\x5e\x9b\xdd\xb6\x5c\x90\x14\x3d\xe3\x8b\xb2\xb6\xc6\x73\x0e\x2e\xc8\xfc\x9d\x96\x9c\x6e\x24\xb0\xe8\x61\x15\x5b\x80\x16\x45\x49\xa8\x4f\xd6\x5d\x7b\x84\x9e\x21\xe8\x94\xdc\x6c\x18\xbe\x4b\x6a\x06\x47\x16\xcb\xea\x8a\x19\x7c\xaa\xd6\x27\x77\x39\xac\xec\xed\x43\x18\x3e\x52\x9a\xbe\x47\x78\x1e\x56\x35\xf3\x9a\x08\x53\x3f\x4c\x80\x74\xdb\x46\x0c\x45\xcf\xf5\x73\x0c\x24\xe7\x2b\xee\xc9\x1b\xf9\x1a\x83\x6c\x35\xca\x93\x8b\xf7\x34\x06\x99\x37\x05\x9f\x98\x5e\xd2\x9f\xb1\xd8\xed\xde\x0e\x30\xd9\x1b\xc4\xb9\xe5\x48\x01\x72\x2f\xcd\x19\x84\xee\x72\x7d\x25\x51\x1f\x58\xd7\x84\x03\xa2\xa8\x07\xd9\xc2\x5a\xc2\x9e\xb2\x45\x30\x2a\x50\xbf\x3f\xb8\xb4\x20\xe6\x5b\xa8\xfb\x53\x1f\xe1\xd0\xe9\x73\xd8\x27\xdc\x73\x58\xbf\xde\x8a\xd4\x82\x69\xc0\x71\x58\x02\xf4\x1d\xf0\x66\xc4\x27\x49\xbb\x79\xb4\x2d\x6b\x2b\x41\xf9\xd8\x5b\x8b\x88\x1a\x81\x54\x0c\x44\xa4\x5e\xb1\xe1\x0a\x8c\x9d\x2d\x50\x39\x88\x0d\x08\x1b\xf7\x48\x8d\xd3\x19\x41\x62\x96\x3e\x82\xf0\xf7\xa2\x00\x32\x37\xb0\xe1\xce\xa4\xe0\xfe\x74\xf1\x26\x5a\x0f\x01\x47\x89\x1e\x75\x40\x47\x35\xd4\x9e\xe8\x7e\x99\x53\x98\xea\x37\x50\xb1\x32\xae\xd8\x14\x33\x58\xdd\xbc\xb1\x93\x38\x25\x72\x77\x5b\x2e\xf3\xb6\xb0\xf0\x32\xca\x69\xd8\xc5\x06\x1c\x25\xf4\x26\xce\xd7\x74\x5c\xd7\x2a\x88\x33\x12\xc8\x27\x36\xa4\xa2\xf9\x66\xa9\xc8\x34\x14\x2c\x5f\x16\xc2\xc6\xd8\xa1\x91\x98\xcb\x6e\xcb\xfc\x46\x98\x97\xb5\x83\x21\x3f\xfe\xe3\xc5\xe9\xfb\x83\xf4\xf3\xd3\x9b\x9b\x9b\xa7\x5c\xfc\xe9\xae\x5d\xb3\xeb\x5f\xc1\xe1\x6b\xfe\xe7\xc9\xbb\x83\xb4\xec\x17\x4f\x66\x74\xb4\x6f\x63\x85\x98\xda\x9c\xe2\xb2\x82\xa9\x8b\x85\xcd\xdf\xcf\x9e\x74\xc5\x68\xc0\xf8\x30\x4a\x5a\xb8\xa5\xf2\xec\x99\xb9\x88\x4e\xa6\x98\x8d\x04\x1b\xd2\xa2\x2d\x61\x6d\x81\x8f\x20\x83\x76\xa7\x4f\x53\x61\x0b\x86\x20\x15\xb5\xa3\xdd\x78\xbb\xd0\x80\xf5\x03\x10\xbb\x5c\x3c\xc2\xb5\xa2\xcb\xc4\xc4\xb9\x6d\x85\x43\xf5\x75\xab\x66\xb7\x2e\x62\x8e\x49\x38\xd3\x89\x28\x8b\x9f\x86\x85\x61\x17\x89\x88\xd3\xcf\xd3\x3f\xb2\x6e\x89\x27\x4a\x68\x8b\xb3\x8c\xb6\x00\x3c\x1b\x16\x46\xec\xc4\x40\x94\xa6\x01\x48\x4c\x48\x13\xe5\x7d\x9e\x13\xe7\x47\x95\xe8\x89\x8f\xcd\x34\xfa\x74\xe3\x4e\x80\xa0\x35\xa9\x6e\x5c\x24\xd6\xec\x4d\x67\x1b\x5e\xc4\x3c\xf2\x40\x0d\x27\x4d\xed\x35\x85\x87\x54\x8c\x42\x27\x51\x14\xf0\x47\x80\x32\x17\x09\xad\x54\xfd\xda\x05\x63\x4a\x35\x58\x68\x39\xcc\x08\x42\x3d\x94\x3d\x9c\xec\xa7\xd6\xa2\x9c\xc1\xdd\xac\xf9\xd5\x63\xfc\x4d\x77\x38\x91\x4c\xc4\x2f\x29\xe2\x1e\x60\x1d\xb1\x94\x76\x33\xdc\xc5\x86\x02\x9a\xf2\x26\x2f\xca\x28\x6f\x1a\x6d\xd7\x0a\x38\x68\x63\xb4\x4b\xaa\x3c\x3d\x3e\x25\xf8\x16\xf6\x09\x04\x62\x14\x94\xe9\x28\x2d\xda\x0d\x9c\x3b\x8f\x5d\x5a\x2c\x5e\xd9\x2a\x05\xdf\x8d\x97\x28\x23\x44\xd6\x51\xc8\x51\x59\x50\x8b\x4d\x08\x18\x04\x3e\xc9\xec\xbc\x60\x76\xdf\x23\x8f\xec\x50\xe8\x96\x5a\xcd\xbb\x4e\xbc\x00\x07\x99\xc3\x17\x3a\x86\x2b\x9b\x64\x35\x79\xe3\xe9\x48\xbe\x42\x6c\x6d\xd7\xcd\xad\x39\xad\x1f\xe3\x97\x46\xb5\x09\x47\xe6\xc1\x74\x50\x1e\x32\x50\xd7\x34\x59\x5c\xdd\x5f\x83\x40\xaf\x2a\xe2\xd6\x7c\x42\x46\x51\x82\x09\x0f\x3e\x91\x8a\x7c\xa2\x7b\x13\x7e\xcf\x0e\x6a\xe8\xa1\x7d\xec\x5a\xd8\xe3\xa1\x1d\x17\x0d\xbd\xb4\x83\xa2\x5f\xe0\xa5\x1d\x23\x69\xec\x83\xed\x87\xfa\x05\x6e\xd8\x53\x83\x1e\xcb\xb5\x53\x88\x9f\x28\x30\x25\xdd\x16\xe1\xd8\xbe\xc0\x1d\x7b\x70\x16\xfe\x12\x01\x77\xaa\x27\x1e\x25\x01\x72\xef\xd3\x11\x17\xd5\xd5\xd5\x6c\xde\x36\x37\x1d\xfb\x3c\xe3\xb9\x0b\xe6\xb2\xfc\x3b\xbd\xc0\x6f\x01\x61\xe3\x00\x10\x85\x7c\x48\xa2\x1a\x28\x3d\xd7\xbb\x40\x49\xc4\xcd\xec\x30\xc8\xfe\x31\xe5\xc8\x2d\xed\x7b\x3a\x89\x1d\x5a\xce\x4c\x8a\xd0\x46\x77\x93\xf1\x17\xbc\xb5\xa1\xaf\x66\xf5\x2a\x0a\x5d\x70\x8a\x82\xf1\xa7\x21\xdc\x76\x25\xd8\xc6\xc9\x3d\xb6\x88\xaf\x5e\xd7\x04\xc2\x32\x38\x02\x23\x62\xa8\x20\x9f\x7a\x90\xd0\x2b\x93\x20\x0c\x97\x1e\x42\x11\x84\x45\xff\xf2\xed\x7b\xf9\x09\x83\x77\x8d\x92\x04\x8b\x77\xbe\x4e\x4f\xcc\x8c\x7e\x36\x65\x4e\x6f\x79\xe2\xf9\x20\x8a\x11\x7b\x9f\x0e\xbf\x1c\x44\xd1\xe6\x57\xb8\x38\xe2\xbf\x2e\x95\x64\x60\x5f\xec\xac\x2d\x9f\x0e\x8b\x11\x72\x04\xd5\x17\xf8\x70\xe9\x7a\xf1\xc3\x7f\x5c\x5a\x0e\xa3\x8e\xe7\xc1\xc8\x3d\x46\xcc\x7a\x80\xe8\xee\x61\x97\x76\x15\x6b\x5b\x95\x40\x07\x0d\x82\x3a\x7c\x04\x64\xd0\x0e\x5e\x6c\x0b\xc7\x1a\xde\x28\x21\x32\x43\xb7\x4a\x1d\x7e\xd8\x2d\xa8\x17\xa7\x6b\x7d\x81\x65\x16\xf5\x3b\x2a\x2d\x5b\x6c\x69\xb3\x9d\xae\x9b\x25\xa4\x48\xb8\x2c\xca\x53\x1c\x3b\x7e\xb2\x86\x10\xc1\xd1\xb6\x58\xe2\x70\xc4\x5f\x6d\xa8\xfe\x6b\x09\xa1\x2e\xd5\x93\xf4\xe0\x9c\xc2\x49\x90\xa8\xc5\x2f\xd5\xf2\x70\xa4\xb6\x28\x72\x51\x19\x1f\xa2\xd9\x74\xdb\xde\xe7\x84\xf2\x21\x99\x2c\x42\x57\x16\x16\x53\x38\x4c\x86\x8c\x3d\xe8\x40\xc4\x88\x2d\x75\xcc\x7c\x2d\xe7\xa6\xd5\x10\x5e\xfc\x37\x24\x0b\x7d\xdd\xe4\x4c\xbe\x5c\x0e\x4b\xc0\x22\xc6\xbd\x93\x2f\x79\x89\x6f\x48\x4d\xe3\xb0\x05\x94\xf7\x74\x38\xd7\x01\xbc\x43\xc0\x5f\xca\xff\xf8\xdf\xff\x8f\x95\xb2\x0d\xed\xb0\x88\x31\xa2\x61\x3a\x3d\xad\x98\x9f\x9d\x7f\x5e\xe7\x29\xf8\xba\xef\xc8\xf0\x5a\xd0\x35\xa8\xa4\xe2\x89\x66\x44\xef\xfc\x12\x85\xad\x15\xb6\xf0\x1b\x2c\x18\xd0\x8f\x5f\x32\xb8\xf8\x1c\x2d\x35\x11\x61\x3c\x54\x7c\x13\x31\x01\x2c\x5b\x84\x66\x79\x6d\xdc\x10\x66\x6a\x57\xb0\x56\x42\x77\x71\x44\x8c\x62\x4d\x81\x53\x4f\x13\xb9\xdc\xc1\xff\x47\xed\x84\xca\x50\xa9\xfe\x1e\x86\x3f\xa4\xff\x4c\xb7\x5a\x17\x39\xf1\xdc\x75\x93\x98\x27\x3a\xde\xeb\xfa\x98\xde\x99\x5d\x97\xf4\x41\x14\xec\x3f\xf6\x9d\x24\x1f\x9a\x76\xf9\xd1\x47\xdf\x75\x0a\xbe\x28\xf2\x2e\x8e\xdf\x0c\xe3\xe2\xd7\xed\x01\xf4\x31\xed\x7c\x8d\x46\x8f\xaf\x79\xd5\x8d\x1f\x90\x13\xe5\x87\x44\x48\x87\xed\x9e\x39\x8d\xcf\xcc\x19\x4d\x82\x77\xaa\x5d\x41\xf4\xb2\x27\x7c\xc4\x4c\x93\x6c\x22\x74\x91\xe8\x85\x37\xfb\x34\xf1\x07\xc7\x57\xe5\xb7\x08\x59\x95\x27\x57\x95\x6f\x91\x40\x3c\x11\x09\x88\x1d\x0c\x5f\x2e\xfe\x9b\x20\x62\xa3\x2a\x2f\x39\x55\xbf\x34\x7d\x10\x15\x32\x7a\x7f\x23\x70\x9e\x43\xb4\xd8\xe8\x51\x0d\xae\x1c\x58\x99\xb0\x75\x18\xc5\x10\x06\x0a\x91\x7a\x17\x74\xe4\x91\xfd\x68\x8d\xfb\x2d\x0d\x41\x86\x5b\x03\xb6\xa1\xab\x45\xae\x06\x9d\x20\x82\x6d\x1d\x59\xfc\x76\x33\xdf\x4c\xc0\x3a\x56\x62\x08\xe1\x8b\xe1\x69\xab\x39\x31\x91\x9f\x04\x3e\x72\x2c\xd5\x13\x71\x2e\x11\x15\x24\x39\x5d\xd3\xe1\x6a\x1d\x1d\x91\x51\x11\x8b\xc1\x3f\xed\x71\x2a\x1e\x47\x7b\xfe\x7a\xb7\xe2\x71\x1d\x77\x3b\x16\xff\xde\x3b\xf8\xe9\x48\x8e\xa1\x1e\x70\x10\xd2\xd1\x65\x4d\xc5\x76\xfc\x3d\x37\xe2\x31\x68\xc0\x69\x22\x14\xb8\x9a\xbe\xf4\xe6\x45\x2f\xda\x89\x52\xff\xb1\x7b\xf6\x38\xc6\xf1\xb0\xd7\xa3\x20\x84\x51\xa7\xbf\x2e\x18\xe1\xde\x0b\xeb\x88\x57\x0c\xcf\xc5\xa3\x88\x22\x18\xe0\x9d\x45\xe2\xf8\x22\x61\x87\x9d\x26\x34\xb8\x00\xd5\xeb\x14\x89\x2c\x22\xea\xfd\xfb\xc3\x8b\xec\xb9\x61\xba\x2b\xce\xc8\xb0\x97\xcc\x63\x9c\x3f\x4b\xd8\xc9\x3b\x4b\x84\x62\x46\x6c\xa4\xf0\x8f\xc4\x1e\x99\xbe\x93\xe1\x73\xf3\x8d\xa9\x0b\x21\x94\x18\xfe\xbc\x12\x86\xcf\x5d\x86\x2f\x39\x98\x79\x46\xeb\x31\x07\x81\x52\x90\x3b\x88\xa9\xad\x5c\x7b\xe6\x43\x32\x67\x51\xbc\x91\x13\x1f\xf4\xd9\x87\x1e\xf9\xc1\x15\xd3\xbb\x4e\x8b\x56\x36\x48\xf7\x9c\x12\x96\xe6\x7a\x9b\xeb\x81\xe4\x37\x84\xbe\xc9\x9c\x61\xf9\xb8\x0d\x7d\x43\xa8\x6d\xd6\xa5\xeb\x68\x7a\x4e\xbf\x7c\xf7\x62\xc7\x90\xb8\xa0\x2b\xe3\xd2\xf5\x7c\xab\x71\xce\x7d\x6f\x24\x86\x35\x5c\xb6\x82\x54\xdd\x2d\x83\xb9\x12\x41\x59\x6b\xc7\xb9\xe3\x87\x21\xb4\xbc\x49\xa4\xfb\xea\xfb\xe6\x26\x91\x4d\x75\x06\x3f\x13\x89\xaa\xac\x29\x71\xa3\x92\xc6\x22\x8b\x86\xbc\x4a\x25\x18\x87\x06\x45\x1a\xe7\x0f\xe2\x37\x60\x4f\x71\x91\x1b\x2c\x48\x3a\x4b\xdc\xea\xd1\x54\xcb\xc5\x55\x1c\xd0\x40\x6a\x85\xc4\xee\x9b\x85\xe0\x1e\xb7\x1b\x42\x7c\x49\xc3\x78\x82\x7a\xd8\xdc\x81\x69\x0d\x11\x43\x53\xd5\x99\x12\x2c\x50\x5a\xd1\x77\x85\xad\x1f\xee\x69\x3f\xdf\x8f\x10\xe2\x4b\xfa\xc1\xad\xc0\x38\x5f\x4e\x70\x77\xf4\x87\x8e\xdc\x1a\x12\x34\x32\xa8\x18\x76\xd1\x47\x1c\xb8\x0c\x76\x72\x18\xf1\x14\x03\xc9\x84\x95\xf4\xe3\x2d\x55\x72\xe4\xb2\x7d\x42\x78\x10\x5b\xab\xc9\x68\x61\xf7\x33\x01\x78\x41\x70\x49\x07\x1a\x58\x51\x79\xb0\xc9\x7d\x49\xfa\xe5\x85\x3d\x48\x5f\xca\x1b\x34\xf3\xfe\x2d\x59\xe0\x2c\x4e\x96\x48\x7e\xe1\xa6\x02\xd1\xcf\x66\xb2\x90\x17\x23\xdc\x5a\xe5\x05\x16\xb4\x3a\xae\xcc\x31\x73\x40\x39\x26\x3e\x86\xb3\x15\x1b\xca\x6d\x81\x0a\x9b\xd9\xf6\x81\x49\xb3\xce\xc4\x03\x50\x9b\xfc\x36\x32\xa2\x82\xcd\xf7\x26\x7e\x84\xf9\x8e\x53\xcf\xb8\x2b\x7e\x5f\x97\x67\x18\x1c\xc1\xec\x3d\xf9\xcc\xc2\xa5\x3e\x26\x10\x4f\x76\xcb\x16\x0e\x22\x36\xd7\xcc\x2c\x02\x52\x40\x85\x3f\xb8\x51\xba\xb7\x3f\x3d\x37\xc0\x9d\x3c\x55\xf4\xe8\x2e\xa6\xf0\x15\x1d\x00\xdb\xb8\xbb\x07\x60\x0b\xe2\x33\x48\xdd\x08\x58\xc0\x5d\x1d\xd1\x47\x3b\xbf\xbc\x23\xe0\x1b\x5f\xd8\x91\x03\xeb\x85\x86\x30\x2f\x8a\xc9\xf5\x7f\x57\xff\x06\x07\x21\x10\x67\x14\x23\xdf\x98\x01\x4c\x48\xe4\x19\xcc\x29\x13\x92\x40\xaf\x3a\x9b\x0d\x57\x49\x60\x80\x14\xac\x94\xc0\x06\xd1\xfa\x02\x6b\x17\xb5\x89\xd4\x5d\xce\x57\x55\xd3\xbc\xe3\x38\x5c\xf7\xa1\xdd\x64\x1c\x1d\x86\x4d\xf6\xfa\xf6\x56\x25\x1d\xc6\x48\x1c\xc2\xc6\x9b\x4b\xc9\x99\x0e\xb7\xf1\xf2\xd8\xc2\x07\xcc\xd5\xc7\xc4\x3d\x36\xc9\xeb\xdf\xbe\x13\x51\x7d\xc9\x8d\x24\xc2\xdd\xfb\x38\xf7\xe9\x30\xee\xfd\x9d\x6f\x0e\xc4\x6f\x2d\x0c\x1f\xdd\xe8\x24\x34\xdd\xd2\x44\x44\x7b\xe2\x33\x51\x33\x31\xc6\xf8\x2d\xe1\x60\x83\xf7\x9d\x17\x1c\x7e\xba\xa9\x2b\x31\x48\x3a\x91\x2f\x1a\x7b\x82\x31\x65\x5b\x09\xc8\xf1\x8a\x7f\x48\x48\x50\x4d\xe1\x90\xa0\x49\xdf\xf4\x88\x35\x75\xc9\x7f\x7f\x48\x1f\x16\x89\x1f\x3a\x94\xc0\xac\x6f\x5b\x88\xaa\x53\xbe\x83\xfc\x20\x40\x3e\x9c\x14\x5a\x0b\xf9\xef\x6b\x40\x37\xa1\x6a\xde\x05\xdd\xd6\x4e\xa2\xd2\x5d\x37\xd5\x62\xc6\x17\xd8\xa9\x5e\xdf\xbb\x57\xfe\x99\xed\xf0\xc3\x7b\x05\x3f\xbc\x27\x8a\xc8\x83\x20\x21\x9a\x90\x30\x63\xeb\xe2\xd4\x46\xc9\xf1\x56\xea\xd3\x25\xc2\x56\x94\xc4\x01\x7c\xa2\x84\x7c\x31\x6a\xc5\x2e\x1a\xc2\x34\x33\x7e\xf4\x29\x66\x06\x19\xd5\x1e\xc7\x2a\x0d\xb3\xc4\x76\x34\x4a\xd2\x17\x47\xe3\x91\x88\x9a\x37\x4c\x5b\x37\x4b\x7e\x17\xc3\x5e\xb4\x0e\x86\xa7\xf2\x7a\x5c\xa7\xd9\xc1\x47\x55\xc0\xdf\x36\x4c\xc1\xfd\x63\x9f\x77\x71\x69\xac\xcf\x30\x41\x63\x15\x8c\x00\xe9\xfc\x9e\x2f\x56\xea\x96\x35\x41\x48\x76\x0c\x77\xc4\x24\x67\xf1\x29\x48\x79\x15\x36\xb5\x37\x60\x27\x61\xf8\xbd\x7f\x3c\xb9\x1b\xe4\xb2\x5f\x09\x3b\x31\x21\x9c\x6b\xa3\x71\xc8\xd8\xc9\xc4\x85\x6e\x4d\x4f\xb1\x1c\xbb\x3b\x0b\x05\xfb\x22\x47\xba\xd0\x70\xb1\x5a\x52\x64\x98\x3b\x36\x48\x5f\xb3\x6e\xb5\x6a\x98\x13\xbc\x10\xd8\x79\xc9\x23\x87\xd3\x9b\x5e\x90\x5b\xf6\x17\xd5\x31\xe8\xa5\x87\x70\xd5\x7c\x7d\x57\xc1\xff\x99\xdf\x53\x6f\x06\x9d\x8c\x78\x9e\x81\xdc\x53\xc3\xa0\x8b\x93\x55\x7c\x7d\x27\xb1\xd3\xd6\x4b\xf7\xc8\xee\x54\x27\x6f\x11\xef\xb7\x2d\xf4\xe0\xba\x66\xb3\xbe\xd7\x66\x99\x75\x4f\x95\xfb\x7a\x7d\x67\x9d\x5f\x31\x0c\x7e\x6d\x7b\xb9\xf0\xdd\xe7\x68\xe7\xed\x9c\x19\x37\x6f\xee\xe5\xc2\xdc\x12\x23\xa5\xe5\x74\xf1\xbb\x10\x8c\x0e\xb1\xba\x62\xaa\xfa\x7d\x7d\x6b\xcb\xee\xb6\x5e\x64\x78\x2a\xba\x5b\xe9\xbd\xf8\x79\x29\xb7\x26\x8f\x66\x94\xf6\x2c\xd7\x90\x7e\x25\x6e\x90\xbb\x47\xf2\x20\xc6\xe3\x05\xa5\xc3\xc0\x9d\xb6\xf1\xa7\x60\xed\x28\x6d\x92\x2d\x63\xeb\xc9\x9d\x0d\x0d\xc6\x12\xf0\xf5\x00\xb7\x2d\xba\xd2\x97\x5f\x34\x82\xc0\x26\x23\x1c\x06\x13\x8a\x32\x31\xb0\xbc\xf0\xfd\x26\x46\xdc\x63\xb6\xaf\xe1\xf8\xf5\x6c\x3c\xa4\x46\x79\xba\x69\xdb\x53\xe0\x7a\x53\xba\x67\x40\x61\xbb\x77\xcc\xd0\xa3\xa8\x17\xf7\x8f\x31\xdc\x4b\x11\x45\x90\x1a\x62\x93\x73\x08\x69\x88\x2a\xf8\x0b\x7e\x87\xbc\x4d\x9e\xd8\xc8\x96\x4d\xdb\xd0\xf4\x48\xf8\x28\x7d\x76\xe3\xb5\xa5\x75\x13\x05\xa0\xde\xbf\xcd\x76\x1a\xf2\xcb\xca\x9c\x20\x99\x64\x24\x8e\xff\xe5\x4b\x41\xd2\xb0\x32\xac\xb4\x5d\xa8\xaa\x1f\xa2\x87\x95\x3a\xb4\x8c\xa0\xa4\x96\x69\xe6\xec\x4b\xa2\x1e\xce\x00\x3e\xd5\x94\x00\x16\x37\x64\x1c\x93\x89\xd0\xb5\xdb\x66\x3c\x54\x04\x8f\x91\xe4\xf4\x1d\x92\xd3\x4b\x4e\x1e\xb7\x60\xbd\x72\xc5\x06\x9d\xda\x57\x8e\xe3\x74\x0c\xcb\xbc\xe2\x70\x1e\x43\x78\xc3\xdc\xaa\xcc\xb7\x23\xbc\xbd\xa1\xc4\x11\xd6\x00\x39\x46\x00\x60\xf7\x63\x21\x2c\x55\x15\x38\x71\x86\x25\xde\x52\xd2\x3e\x68\x18\x9c\x0c\xe1\x6b\x96\x78\xf7\x94\x50\xd1\x63\xd8\x2b\xbd\xdb\x1a\xf5\xaa\x99\xff\xad\x5c\xf4\x9d\x41\x9f\xca\xcf\x00\x6a\xde\x34\x3d\xbf\x2b\xbd\x65\xa9\x11\x86\x80\x82\xa6\x97\x96\xce\x52\xe3\xe2\xd3\x08\x53\x02\x3d\x46\x95\x40\xef\xc7\xd5\x86\x43\x80\x52\x5b\xed\x6e\xd1\xef\x68\x81\xba\x06\x4f\x2e\x38\x74\xe8\x85\xcb\x18\xb5\x38\x2a\x19\x52\xe8\xb0\xf0\x54\xcb\x0b\x92\x85\xca\xc9\xa6\x8f\x38\xe7\xce\xb6\x47\x65\xc3\xc6\x47\xc5\xa7\x56\x0a\x5e\x91\xe2\x0d\x6d\xbe\x5b\x7c\x2a\x7b\xf6\x47\x5b\x65\x30\x68\x08\xeb\x3a\x33\xb0\xf4\x25\xc0\xd2\x37\x04\x96\x5e\x42\x3d\x35\x51\x2b\x6d\x3a\x9b\xb2\xcf\x61\x98\x12\xd4\xf2\xfa\x88\x66\x80\x93\x8b\x7c\xaa\x14\xd4\x56\x99\x1e\x16\x74\x15\xb2\xfc\x16\xd4\x70\x0a\xcd\x96\x9e\x1f\x0e\x1d\xc8\x54\x6d\x1c\x19\x4a\x76\xbf\xc5\xed\x42\x1e\x57\xe2\x58\x51\xd4\x87\x73\x49\x09\x60\x71\x20\x22\x58\xe3\x91\xb0\xc1\xc0\x63\x09\x04\x7e\x19\x33\x4a\xe1\x60\x1e\x58\x18\x17\xc1\x9d\xb1\x53\xfb\x14\xe0\x36\x97\xc5\xb4\x17\xd2\x9a\x37\x40\x6b\x79\x08\xa7\x8d\x76\x82\x4a\x61\x2b\x72\x1a\x15\x37\x0d\x7d\x6a\x80\x68\x0e\x37\xfc\xf0\xd2\xb0\x87\x06\x38\x4d\x61\xf1\x04\x96\xbf\x7e\xf0\x37\x9a\xee\x51\x36\x01\x13\x21\x1c\xa2\xb7\xa4\x98\xd8\x88\x07\x22\xed\xdb\xf2\xa2\x70\x47\x92\x66\x72\x0b\x4e\xbd\x9a\x66\x7e\xd3\x2e\x6c\x9b\xa6\xeb\x43\xe2\xc3\x17\xa7\x2f\xd8\x5c\xfb\x3c\x7c\x64\xfe\x7d\xe8\x92\x71\xd9\x60\x94\xc1\xc0\x62\x33\x35\x1b\xe6\xfd\xbe\xdb\x33\xad\x23\x0c\x0f\xa4\x23\x83\x9c\x6f\x96\x5a\x83\x87\x31\xd5\x62\x4b\x20\x25\x62\xae\xdc\x02\xae\xc3\xd2\x38\x84\xd9\xa9\x66\x50\xc3\x3b\x1c\xd0\x02\x2c\x8f\x1f\x27\x87\x66\x9d\xf5\x13\x62\x76\x0f\xbd\x34\xcc\x22\x77\xb5\xbd\x5f\x65\x64\xb0\xef\xc9\x38\x0b\x52\xff\x85\xaf\xc6\x79\x5c\x04\x94\x02\x8b\x8e\x98\x46\xaa\x2e\x0b\x89\x62\x18\xe3\x3e\x1f\x10\x09\x83\x2b\x9d\x44\xa0\xb0\x73\xe0\x0c\x99\x66\x7e\x27\xd7\xa9\xc9\x8c\x70\x70\xc3\xcb\xa6\xff\x99\x5a\xbf\x8e\x6a\x08\xca\x40\x9d\x29\x84\xcd\x72\xb7\x78\x4b\x87\xf5\x48\x70\xe4\xcc\x66\xec\xbe\xba\xf6\xc6\x52\x9e\xc4\xbb\xd7\x28\x1b\xda\xdd\x93\x7e\x80\xbe\xf3\xc2\x32\x46\xf0\xf4\x4b\xa3\xff\x29\x8f\xad\x86\x1d\xf0\x4f\xae\xee\x69\xff\x9f\xf2\xe4\xea\x50\x9b\xdf\xc5\x5d\x99\xb0\xc1\x39\x1c\xbe\xbb\xb2\xc7\xe8\x92\xdf\xa4\x9c\xc1\x85\x2d\x66\x91\xd1\x75\x6a\xc4\x2a\x51\x22\x64\x81\x48\x88\x0d\x4b\x90\xe4\xaf\x1a\xec\x96\x41\x94\x7e\xe0\x7e\xc3\xf6\x02\x3f\xc5\xa8\x35\x29\x31\x7e\xd0\x21\xee\x82\xa4\x8c\x2f\x23\x25\x5d\xf5\x55\xa9\x05\x84\x57\xe5\xe3\x0c\x4a\x2b\x11\x81\x5a\x4b\x1b\xc6\x37\x86\x2e\x52\x99\xd5\xa0\xcb\x03\x76\x15\x75\x5b\x4a\x49\x04\x15\xf3\x81\x54\x8e\xa8\x59\x41\xef\x25\x25\x0c\x1e\x2a\x29\xf2\xa0\x21\xde\xe9\x96\x2f\x4d\x1f\x9b\x01\x05\x9d\xd4\x6a\x06\x9d\x0b\x6a\x05\xd4\x34\xc7\x0d\x7a\x33\x34\x2f\x97\x54\xb8\xf6\xb1\x2d\x7c\xd7\x6b\xca\x56\x42\x82\x9e\x71\x48\x50\x49\x81\x0e\xa8\x80\x91\x2a\xab\x7c\x8e\xdf\x87\xe9\xc1\x1b\x87\xc8\x75\xaf\x1b\x4e\xc0\x04\x46\x3a\x79\xcb\x11\x49\x7f\xd0\x00\x4d\xc1\x5b\x87\xec\x86\x27\x2f\x27\x6d\xd7\xdc\x5f\x0e\x61\x8f\xeb\x1b\x56\x66\xb3\xcc\x90\xe3\x79\x33\xdc\x5b\x13\x9b\x59\x8a\xbd\xb3\x3c\xc7\xa3\xc8\x64\xf9\x40\xc3\xa2\x41\x2e\x50\x65\xfd\x4b\x36\xb8\x0b\x40\x0a\x7b\x1a\xde\x8f\x28\xef\xfb\xb6\x9a\xef\xf8\x4e\x58\xad\x63\x78\x51\x8a\x29\x8e\xcb\x1b\xc1\x76\x3b\x73\xdc\xb9\xd0\xaf\xfd\xb0\xfa\xc0\x9e\x3d\x49\x37\x80\x93\xd0\x6c\xd6\x2d\x09\xcc\x66\x55\xe0\x4a\xc5\x01\xc8\x45\x6b\x04\xb1\xe1\x1d\x27\xeb\x72\x5e\x9e\xc4\x5b\x8b\xf4\xe2\x50\x73\xba\x4d\xbf\xb5\x07\x08\x2e\x4e\x2e\xcf\xee\xa0\x25\x06\x55\x9a\x00\x64\x40\x18\x9c\xa5\xc4\x81\xac\x80\x42\xd4\x24\x49\x5d\x18\xf4\x58\x0f\xa3\x26\x21\xb6\x6e\x1a\xee\xae\x6d\x5f\x5e\xa7\xa2\x3d\x92\x43\x62\xc1\xe3\x40\xca\xcc\xd2\x93\xdd\xba\xaf\xd8\x46\xce\x5a\x53\x3b\xad\x79\x99\x76\xe5\x36\x6f\x2d\x40\x2e\xc2\x41\xa5\x8f\x0e\x1e\xcd\xa2\xd5\x97\xf5\xf2\xa0\xa5\xbc\x2d\x7a\xf9\xee\x82\x3e\x17\xed\xad\x5c\x02\xeb\x48\x3f\x55\x5b\x06\xd3\x27\xc9\x79\xc0\x94\x02\xd8\x3f\x23\xc5\x96\x0a\xdf\x16\x96\xed\x75\xb5\x70\x04\x73\x76\x78\x02\xbd\x03\x25\x85\x8b\x4f\x9b\x46\x00\x2b\x93\xfc\x7c\x27\x68\x3a\x9a\x48\xf2\x33\x06\xc2\x6f\x71\xb3\x15\xef\xd6\x10\x18\x46\xda\x19\x8a\x67\xfa\x60\xab\x62\x7a\x24\xaa\xc4\xd0\x81\xc4\xe2\x59\xdb\x50\xa2\x8c\x8b\xdc\xe7\xfc\x30\x8b\x98\x59\xb8\x73\x0d\x5e\xee\xfe\x32\xcb\xa8\xb0\xb2\x40\xca\xb8\x6b\xd0\x93\x41\x3f\xe2\x12\x11\x64\x26\xfc\xd5\x1e\x37\x8a\xab\xf6\x8f\x59\x8d\x4a\x44\xcf\x1c\x8d\xf0\x3a\x61\x71\x74\x87\x95\x51\x50\xfb\x60\xbf\x8f\x2b\xbe\x6f\xdb\x17\x5d\x9c\xe9\xc0\xdc\x75\x9a\xea\xc0\xe2\x5b\x35\x85\xcd\xb7\x5b\xb7\x6d\x04\xef\x57\x81\x6c\x03\x90\x6b\x61\x38\x01\x04\x2d\x82\x6e\x50\x8f\x78\x25\x86\x40\xec\x9c\xa8\x00\xc3\xad\x47\x93\x9b\xab\x2b\x0e\xd5\xc6\x01\x47\x35\xce\x0e\x22\xb7\x9d\xb0\x99\xbf\x95\x14\x5f\xdb\x8c\x95\x72\x50\x72\xf1\x98\xec\xe9\xe3\x73\x24\xf2\xa9\xc2\xc0\xdb\x9d\x7b\x33\xfe\x7c\x57\xcb\x79\x29\xc8\xd2\x86\x38\x2b\x6c\x04\xd2\x4b\xdb\x34\xbd\x3d\x0b\x12\x88\x2e\xe7\x94\x4c\x7b\x5a\xbf\x72\x08\xe6\x0b\xbb\x45\x26\x2f\x18\x04\x65\x70\x5d\xb8\x80\xb3\xc6\xb8\x10\xf5\x7b\x5c\x82\xfa\xbd\x07\x5c\x8c\x52\x6c\xe3\xbf\xc0\x2f\x61\xd2\xae\xc7\x6c\x04\xab\xd4\x68\x03\x96\xb4\x21\xdd\x84\x38\x28\xe6\x9e\x30\x8e\xed\x8a\x71\x92\x34\x08\x32\x94\x5e\x7c\x6a\x28\x2f\xf8\xd4\x50\xf6\xf1\xa9\xda\xb1\x41\x0f\xba\x6e\x6d\x13\x71\x71\xf1\x2e\x9e\x6d\x9f\x1b\x3c\x3b\xc5\xd6\x74\x0f\x38\xf2\x30\x07\x40\x7c\x90\xb2\x0b\xea\x93\xa0\x84\x62\x33\xc4\x9f\xa6\x0e\xeb\xe8\x7e\x5b\x57\x7d\xf9\xfd\x03\x98\x0d\x3c\xe8\xab\x62\xfe\xe0\x49\xb8\x6e\x2a\x78\x9c\x04\x0b\xa7\x5a\xec\x41\x8f\x3b\xbc\x47\x2f\xe3\xa6\xe2\xbe\x5f\xb5\xa5\xed\xef\x47\xc1\x63\xb5\x23\x92\xf6\xdb\x80\x23\xe8\x70\x0b\xb0\x8e\xb1\xfb\x52\x1b\x64\x64\x24\x2f\xf4\xf2\x96\x27\x9b\xaf\x9e\x5b\x35\x2f\x91\xec\x7b\x28\x51\x93\x2d\x8a\xb2\x3a\x72\x58\xff\x10\x04\xf9\x6d\x0d\x07\x23\x2b\x62\xef\x8d\x43\xcf\x36\x7a\x9a\x1c\x0a\x36\x7d\x99\x5c\x0b\x60\xec\x4e\x7d\x71\xc2\x03\x0e\x35\x16\xc3\x01\xc3\xb3\xae\xfa\x7b\x29\x81\x2f\x83\x61\x9f\xd0\x61\x78\xb3\xdb\xe0\x5d\xd2\x0b\x8e\xd3\x87\x97\x65\x47\xdd\xda\x92\xa4\x9f\x87\x3d\x42\x82\x63\x42\xe2\x34\xcb\x1e\x43\xd9\x5a\x2f\xea\xc4\xb1\x16\x7e\x43\xe9\x3b\xdc\xcc\x39\xec\xd0\x26\xe4\xc5\xd2\xa8\xd0\x39\xe7\x39\x31\x76\xa2\xb0\xf9\xdb\x3b\x52\x31\x7f\xd6\x49\x52\xf9\x6d\x57\xee\xa8\xf2\xb2\x5e\x82\x4c\xff\xc4\x3f\x49\xdc\xe1\x9f\x0e\x41\xe2\xa8\x0a\x85\x17\xbb\xba\x3c\x37\xd7\x55\xe8\xbd\x28\xc5\xd1\xc2\xbd\x72\x49\x30\x33\xe1\x2e\x70\x82\xdf\xd3\x1d\x54\xd8\xf1\xd1\x24\xce\xb7\x59\xa4\x35\xd5\x04\x73\xf7\xe6\xe7\x77\xa7\x03\xc8\x09\x66\xa0\x39\x13\xcc\x43\x73\x26\x58\x85\x5c\x3a\xbb\x21\xe0\xa2\x79\x7a\x04\x02\xb9\x77\x00\x42\xd0\xde\xc0\x04\x94\x3c\x59\x91\x92\x7e\x41\x94\x25\x6e\x58\x42\xf4\xf2\x3b\x06\x0a\x5e\x2d\x13\x28\x7b\xb4\x6c\xd4\x6a\x1d\xb6\x59\xcb\x4d\xa3\xe7\x3a\x62\x1e\x15\x70\x1d\x71\x40\x98\xec\x9e\x41\xb3\xbb\x59\x65\x76\x48\x02\x7f\xa6\x49\x06\x6a\x20\xbe\x66\x83\xd0\xaa\x5d\x37\x89\x70\x2b\x27\xbd\x1e\xe1\x57\x34\x75\xba\xfc\x78\xbd\x08\xac\x5f\x81\xfc\xb4\xba\x94\x30\xe0\xe5\xc2\x21\xc6\x74\xc6\xaf\x8f\xfc\x7b\x6e\x50\x2f\x0f\x06\xb3\xae\xae\x4a\xa7\x8c\xd6\xd1\xbc\xa3\xb4\x08\x78\xd5\xf7\xdb\xce\x82\x0f\xe0\x0d\xb1\xf4\x94\x7e\x0c\x06\x11\x56\xa5\x23\x19\xd5\xb4\xad\x70\x41\x10\xe0\x45\x12\xa6\x31\x6e\xd0\xba\x3b\x04\xe0\xba\x3d\x0c\x79\xdc\xb2\x75\x8c\xd3\x56\xc8\x6b\x4d\x0a\x65\x01\xd7\x3a\xcb\x00\x93\x2d\x33\x94\xee\x92\x0c\x83\x5d\xd2\x8c\x9e\x66\x8b\x56\x42\x27\xf2\x9f\x4b\xb6\x38\x71\x39\xe1\xda\xb3\xb4\x8e\x68\xaf\xd8\x89\xfb\xa6\x7e\x7a\x78\xff\xa6\x84\xa0\xc9\x32\x26\xde\xa1\x88\x01\xca\xcf\xe5\x62\x17\xdc\x1c\xfe\x2c\xbf\x55\x55\xef\xab\x69\xcc\x30\x7a\x57\xe3\x0d\x92\x33\x49\x09\x60\xa6\xe2\xa7\x5a\xd7\x09\x6f\xbd\xea\x73\xfa\xfd\xed\xbb\xe6\x71\x98\x65\x28\x33\x1c\x33\x7b\x2c\xf9\x99\xad\xc5\x0d\x6d\x60\x4b\x66\xb0\xa1\xc4\x13\xa6\x21\x06\x5b\x60\xb7\x67\x79\x13\x1d\xb7\xac\x66\xcb\x2c\x6b\x3b\x0b\x60\x71\x7c\x08\x5e\x53\x96\x3e\x48\xfe\x7d\xe6\xa5\xc9\x07\xb1\xbe\xfa\x38\x78\x74\xd1\xb4\xfb\x81\x35\x46\x14\xa8\xe0\xa1\xbc\x44\xd2\x96\x75\x10\x76\x51\x7e\x15\xa3\x57\xcc\x2c\x46\xf8\xb7\x3e\x46\x78\xf4\x92\xfb\xf0\x7d\x13\xf7\xde\x04\x6a\x65\x9b\x4c\x79\xcb\x66\x10\x67\xbd\x6b\x17\xcf\x86\x65\x59\x6b\x1a\x83\x71\xe6\xbf\x58\xc5\x32\x46\x7b\x99\xe3\x57\x7d\x0d\x43\x7e\x07\xe3\x7b\x26\xaa\xbd\x67\x32\xd2\x3f\x04\xcf\x55\x68\x0d\xc3\xe0\xf1\x86\xae\x28\xe8\x72\x58\xa1\xc6\x84\x1f\xd7\x37\x78\x2c\x24\x78\x10\xa5\xa9\xbf\xa6\x63\x93\xd1\xa7\x7f\xd5\x50\xe4\x5f\xdd\x2d\x17\x1d\x4e\xe7\xc0\x7e\x0f\x28\x42\xe6\x75\x7a\x52\x3d\x91\x20\x78\x89\xbc\x23\x67\x73\x49\x3f\xc2\x6e\x60\x26\xc3\x77\x41\xc6\xb3\x3d\xa0\x0f\xbc\x43\xf0\x5d\x10\x34\x1e\x0e\xed\x92\x51\x75\x1a\xf0\x57\x42\xf5\x7f\xe7\xde\x61\x4b\x3e\x70\xec\xee\x8f\x49\xbe\xe4\x31\xd1\xff\x09\x9e\x49\x14\x2f\x0d\x50\x2a\x7d\x26\xf2\x93\xbf\xbe\xe5\x8a\xbf\x4d\xbb\x92\x58\x27\xa2\x4e\x7f\xbb\x41\xc2\x86\x0e\xd8\xc4\x90\x38\x61\x85\x04\x7e\x4d\x14\x3f\x0b\xfc\x2c\xf2\x5b\xfc\xba\xc1\xaf\x9b\xb2\xfc\x24\x85\xc1\x5b\xa9\x38\x1d\xd1\x57\x48\xb9\xc5\xef\x5b\x8e\xce\xfc\x90\x7d\xd8\xb8\x1d\x7d\x7a\xc3\x7e\x20\xd6\x35\x37\xa7\xe9\xf6\x83\xd2\xb9\x55\x4d\x95\xcf\x87\x7c\xf9\x7f\xab\x49\xf8\xa2\x14\x6e\x5e\x93\xe4\xf3\x21\x18\x64\xbf\xb2\x0a\xe5\x9b\x52\xb9\x1f\x9a\x28\x9f\x94\xd6\xe6\x37\x99\xef\x97\x7e\x21\xd5\xf7\x4a\xbf\x08\xbd\x45\xdb\x6c\x39\xee\xed\x47\xf7\x44\xab\x7f\xc6\xee\x98\xf2\xcc\x76\x8b\x83\x9d\xb2\xc7\xf9\x9a\x9f\x62\xc4\x83\xd7\xec\x77\x3b\x4b\x2c\x1e\x75\x55\x6f\x77\xee\x94\xea\x83\xa1\x0b\x98\x0f\xf7\x25\xa6\xfa\xfc\x36\x95\x3c\xdc\x47\xb3\x9b\xcd\x2b\x7d\xaf\xb0\x4c\xf9\x48\xf0\xf8\xdf\xfe\x0d\xe0\xf4\xf9\xef\xff\x9e\x9e\xbc\x7c\x92\x96\x9f\x39\xdc\x61\x97\x6e\xf2\xcf\x38\x1b\x28\x14\xfd\x7c\x15\x01\xb2\x8f\x30\xec\xa7\xf5\x32\x4a\xdf\xbc\xc7\x0d\xd4\xff\x0f\x00\x00\xff\xff\x7b\x4e\x01\x54\xc1\xb1\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4379,12 +4379,12 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 44506, mode: os.FileMode(420), modTime: time.Unix(1446167298, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 45505, mode: os.FileMode(420), modTime: time.Unix(1448170884, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_esEsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\xbd\xcd\x6e\x1c\xc7\xb2\x27\xbe\x17\xa0\x77\x28\xeb\x42\xb0\x8d\x3f\xd5\x86\xed\xff\x7c\xc0\x70\xfb\x0c\x45\xd1\x96\x07\xfa\xe0\x15\x29\x1f\xdc\x31\x84\x76\x75\x57\xb2\x59\x56\x75\x55\x9f\xca\x2a\x52\xd4\xc5\x5d\xcc\x7e\x1e\x60\x30\x3b\x2d\xbd\xd0\xe2\xe2\xec\xbc\x39\x80\xf9\x26\xf3\x24\x13\xbf\x88\xc8\xaf\xaa\xea\xa6\xec\x73\x2e\x0c\x58\xec\xca\xc8\xaf\xc8\xc8\xc8\x88\xc8\x88\xc8\x7c\xbb\x5d\x14\xc6\xae\xe6\x2f\xeb\xcc\x9a\xf6\xb2\x5c\x95\x4d\x56\x98\xec\xbb\xb2\xcb\xf2\xbe\x6b\xb2\xbc\x6a\x7e\xce\x8b\x26\xbb\xce\x6c\x59\x67\xab\x66\xb3\xad\xca\x55\x4e\x50\xb5\xb1\x77\xef\xdc\xbd\x73\xd1\x6c\xcc\xfc\xfb\x1a\xf5\xee\xde\x29\x72\x7b\xb1\x6c\xf2\xb6\x98\x9f\xe4\xb5\xa9\xd0\xd0\xaa\xa9\xbb\xb6\xa9\xee\xde\x31\x6f\xb6\x55\xd3\x9a\xf9\x31\xff\x9b\xb7\x54\xd5\x54\xdb\xf9\xe1\x75\x5f\xe4\x77\xef\xd8\x72\x5d\x2f\xca\x5a\x5a\xca\x5b\x1a\x8b\x2d\x6f\xfe\x5a\x6b\x41\xd3\x77\xf3\x23\xd3\xb6\xa3\x82\x7e\x3b\x3f\xed\xed\xaa\x2d\xb7\x2b\xf9\xda\x9a\x75\x69\x3b\xd3\xce\x5f\xf0\x1f\x2d\x0d\xea\xca\x2c\x6d\xd9\x99\xf9\xc9\xcd\xbb\x75\x59\xe7\xd9\x9f\xcd\xf2\xee\x9d\x4b\xd3\x5a\x9a\xc3\xfc\x07\xfc\xcb\x35\xb7\xf9\xda\xc3\xdc\xbd\xd3\x19\x9a\x68\x8e\x5a\x55\x5e\x77\x65\x55\xd1\x37\xfa\x6b\xdd\x03\xea\xfb\xa2\x6c\x36\xf4\x61\xd5\x1a\x02\x59\xd4\xe6\x6a\x7e\x44\x7f\xb6\xb3\xd9\xec\xee\x9d\x9e\xd0\xb8\xd8\xb6\xcd\x79\x59\x99\x45\x5e\x17\x8b\x0d\x66\x7d\x62\x5a\xfa\x00\x84\xf4\xb6\xcf\xdb\x12\x08\xdd\xdc\xbc\xb3\x32\x0f\x53\xd0\xdc\x17\xb9\xa5\x96\x0d\xf5\x76\x4e\x18\x26\x94\x13\xb2\x1b\xa0\x18\x2d\xd6\x39\xa1\xf9\x59\xb3\x59\xb6\x26\x6a\x84\xb0\xba\xc9\xcb\x6a\x7e\xd4\xb4\xad\x69\x32\x53\x99\x55\xd7\xd2\x6c\xca\x55\x83\x09\x59\x7b\xd5\xd0\x5a\x1c\x61\x09\x72\x6b\x6e\xfe\x3d\x07\x82\x16\xdd\xf5\x16\x4b\xb6\x6e\x8d\xe5\xc6\xea\xde\x5c\x12\xfc\x2a\xdf\x76\xab\x8b\x7c\x7e\x24\xff\xa2\xe7\xd6\x6c\x1b\xc2\x5d\xd3\x5e\x13\x3e\xf5\x4f\xf4\xda\xb4\xeb\xbc\x2e\xdf\xe6\x1d\x50\xf8\x5c\x7f\xe8\x0a\x6c\xca\xb6\x6d\xda\xf9\x53\xfe\xe7\xee\x1d\x42\xce\x02\xcd\xcc\x9f\xa1\x97\xac\x8d\x9b\x41\xd9\xa6\x5c\xb7\xc0\x33\x8a\xf3\xec\x29\x7e\x69\x43\x28\x3d\x6f\xda\xd7\x5a\xf3\x5b\xfa\x93\x46\x5b\x65\x2f\x86\x4d\xd0\x68\xb4\x7a\x33\x18\x4a\x5e\xd3\x72\x71\xf9\x61\xb1\x29\x6b\x10\x04\x91\x50\x80\x12\x22\xce\x51\xb6\xd8\x82\x62\x03\xdd\xe6\xbe\x82\x36\x96\xaf\x56\x4d\x5f\x77\x0b\x6b\xba\xae\xac\xd7\x16\x68\x3d\x2f\xd7\x7d\xab\xed\xa0\x52\x95\x67\xab\x9e\x56\x10\x04\xbd\x03\xec\xee\x9d\xeb\xa6\xf7\x04\x32\x3f\xeb\xb3\x2d\x93\x86\x7e\xf7\xd5\xa8\x60\x15\x6a\xf2\x08\x78\xb6\x76\x71\x6e\x4c\x31\xff\x96\xfe\xc7\x6b\xd7\x74\xd8\x30\xd4\xec\xb6\xaf\x2a\xc2\xf4\x5f\x7a\x63\x3b\x3b\x3f\xa1\x5f\x84\x29\xf9\x75\xf7\x4e\x69\x2d\xfd\x45\x8b\xbe\x2a\x89\xc2\xa4\x02\x56\xbc\x5e\xd1\x9c\x8f\xf8\x1f\xec\xc8\xbb\x77\x7e\xb4\x44\xc7\xab\x8b\x57\x98\x00\xfe\x98\x3f\xa4\xed\xa5\x94\xbd\x8b\x1a\x40\x9f\xf3\x97\x8e\x22\xb9\xab\xa8\x27\xea\xa6\x29\xcc\xfc\xe8\xe6\xaf\x45\xb9\x66\x7a\xfe\xb1\xac\x6d\x97\x57\x15\x75\xa2\x7f\x11\x38\xfe\x75\x13\xed\xca\x8e\x50\x73\x92\xdb\xc6\x61\xb5\x8c\xca\xb3\x6d\xd3\x66\xdb\xb6\xdc\x98\x36\xcf\x2e\xcd\x5b\x62\x3b\xcd\xea\x35\x6d\x3a\xf0\x13\x1a\xc9\x69\x99\xd1\xa4\x6f\xde\x65\xe6\x67\xb3\xea\x3b\xda\x82\x4d\xf6\x5d\xb3\xb6\xb4\x69\xf8\xef\x47\x0c\x7d\xc0\xcd\x9c\xe7\x97\xf4\xff\xca\xe4\xd9\xd7\x79\xd6\xe5\xed\xda\x74\xf3\x7b\x8b\x25\xed\xf4\xd7\xf7\xb2\x8b\xd6\x9c\xcf\xef\xdd\xb7\xf7\xbe\x41\x83\xb9\xcd\xb6\xc4\x11\x73\xfb\xf5\x67\xf9\x37\x19\x31\x05\x59\xf2\x55\xbe\x59\x82\x61\xd5\x79\x91\x67\xa6\x66\xc8\x6c\x2b\x6c\xe4\x23\xe0\xec\x2f\x3d\x31\x9f\x45\xb1\x14\x36\xcb\x03\xe1\x8f\x86\x76\x72\x4f\xec\x68\x99\xcb\x2e\x2c\xf2\x8e\xa6\xfb\xf4\xfa\xf4\x9f\x9f\x1c\x64\x27\x8d\xed\x68\x7f\xf2\xdf\xf4\x3f\x6a\xe1\xcb\xac\xc9\xce\xca\x47\x0f\x69\x1d\xa8\x2d\xc1\xd0\x51\x42\x20\x68\x24\x69\x4c\x20\xb1\xd9\xcf\xca\x6d\x33\x51\x7c\x41\xbd\xcc\x1f\xd3\xff\x86\x6b\x38\xcd\x3a\xa8\xb5\x01\x1b\xaa\xf2\x89\x1e\x75\x19\x4e\x3c\x7a\x7b\xe2\x9f\xe5\xca\x10\x7b\xca\x36\x0d\xd1\x4c\xf6\xfd\xb3\x67\xcf\x1f\x3d\x04\x7d\xf3\x8e\x19\xcd\x82\x08\x2e\x5f\x11\x13\x27\x0c\xf7\xdd\xf9\x7f\x5d\xac\x4d\x4d\x6b\x5d\x2d\x56\x25\x2d\x01\x2d\x3a\x23\x89\x10\x61\x6d\x45\xdc\x95\x88\xeb\x69\x43\xeb\x7a\x7a\xfa\x04\x23\xef\x2e\xe6\x2f\x7a\xde\x81\x7f\xa9\x80\x79\x1d\x0e\xbe\x31\xfb\x00\x55\x97\x97\x8d\xeb\x3d\x45\xff\x08\xd7\x74\xe8\x2c\xe8\x28\xe8\xae\xb1\x82\xdc\xf8\x93\x3c\x6b\xd1\x56\x7e\x5b\x6d\xda\x9b\xd9\xb6\x37\x54\x0a\x9a\x68\xb3\xcb\x7c\x75\xf3\x3e\xd7\x36\xcb\xfa\x32\xaf\xca\x82\x16\xd2\x61\xf5\xb8\xa2\x0a\xbb\x10\x3b\x68\x10\x87\x2a\x70\x92\x55\x54\x14\x61\xeb\xde\xec\x5e\x56\x97\xd9\xbd\x07\xf7\xa8\x9b\xba\x59\x08\x67\xc3\x21\x54\x94\x36\x5f\xd2\x81\x24\xe7\x63\x2b\x9c\xfb\x99\x6b\x8f\x48\xf3\x22\x5f\xd2\x2a\x61\x9c\x84\x23\x85\x6a\xe4\xcc\xc7\xd1\xc6\xa4\x2a\xbc\x2d\xe5\x8e\x45\xd3\x26\x68\x72\xcc\x54\x09\xe8\x49\x2e\x12\x80\xd0\xd0\xa8\xea\x4e\x1c\xdd\xbd\xe3\x16\x7d\x92\xd4\xbf\x93\x42\x96\x54\x68\x47\x11\x77\x26\x39\x66\x4c\x9c\x87\x2a\xac\x08\x03\x57\x90\x40\xa0\x75\x96\xff\xa5\xbf\x79\x8f\x19\x07\xd4\x77\x7d\x7a\x8c\x1c\x64\xbf\xbd\xcb\xab\x0e\x07\xf6\x8a\x98\x64\xf3\x91\x30\xc2\x85\xa7\x34\xa6\xaa\xe8\x5c\x43\x23\x2f\xf2\xf2\x6d\xf6\xc9\x8b\xa6\xe9\x3e\x8d\xc0\x5d\xcf\x67\x44\xae\x96\xd7\x2e\xaa\x86\x1f\xd8\x1e\xd6\x89\x5f\xb4\xfc\x24\x6e\xb4\x45\xde\xde\xbc\xab\x95\xb5\xd0\x08\xcb\x96\x0e\x79\x54\x00\x47\xee\x49\x04\xc2\xce\x3d\x16\x56\xd7\xb2\xcc\x90\xf9\x7d\xec\xca\x5d\xc7\x44\x63\x4e\xfc\xa8\xcd\x8a\x24\x29\x1a\xbd\x10\x12\x9d\x6e\xc6\x36\x42\xd4\x3c\xa9\x17\xf9\xcd\xfb\xb7\xc3\xf3\x96\x70\x60\x5c\x4f\xc0\x3b\x98\x11\x49\x42\x24\xb7\x3d\x6a\xb0\xaa\x8d\xfb\xed\x3b\xb4\x10\x21\xcf\x69\xc4\xb2\x61\x6c\xf6\xf2\xc5\x13\x2b\xbb\x78\x55\x35\x35\xb5\x03\x36\x7c\x7a\xfa\x98\xb7\xf3\xc5\x82\x7e\x75\x74\x78\x99\xb6\xc3\x86\x7e\x1c\x3e\xba\x16\x9f\xdd\xfc\x4a\x8c\x9f\x91\xbc\x15\x30\xfa\xcb\xf6\x22\xbc\x16\xd2\xd6\x41\x56\xdc\xfc\xf2\xb3\xa9\x1a\x60\x0d\xcc\x7c\xd5\x48\x97\x44\xe7\xb4\x55\xca\xcb\xdc\x75\x79\xd1\x75\xdb\xa4\xcf\xc7\x67\x67\x27\xd1\x67\x4f\x2b\x52\x8a\x45\xa8\x32\x3a\x54\x69\x2d\x56\x3d\x09\x49\xb4\x34\xc0\x58\x1e\xe8\x6c\x26\x84\xd6\xb7\xd5\x9c\xa6\xaa\x74\x98\x0f\xe9\x90\x8a\x7f\x27\x8a\x30\xb0\xcf\xf0\xbf\x53\x5a\x04\x82\xac\xd6\x7d\x8d\xcd\xcf\x92\x9f\x4d\x44\x3f\xcb\xfb\xa7\xd9\x62\x8f\xef\xda\x40\xcf\xb7\x2b\x2e\x55\x09\x72\xd7\x81\x52\x65\xa7\x91\x52\x20\x62\x26\xad\xc9\x86\xd0\xc3\x87\xc7\xe9\xd3\xb3\x93\x4c\x4e\x10\xfe\x78\xde\x36\x9b\xf9\x23\x63\x0b\x13\x7d\xf0\x2c\xd8\x6c\x88\x3d\xd6\x20\x62\x6a\x98\xfb\x3d\xc8\x5e\x7c\x7b\x94\xfd\xa7\x2f\xbf\xf8\x62\x96\x9d\x30\x1f\xa0\x75\xcc\x6c\x53\xd1\x3e\x05\x20\xb8\x0e\x53\x7c\x38\x1b\xc6\xa2\xee\x01\x31\x5c\x61\x1f\xb2\x3e\x24\x34\x6e\x88\x69\x66\xf7\x84\x17\xdc\xcb\xbe\xe6\xbe\xfe\x9b\x79\x93\x93\x50\x6f\x66\xb4\x47\xbe\x99\x41\x3a\x24\x01\xac\x95\xfd\x93\x0e\x4d\xc5\xe9\xe3\x44\x9c\x56\xf0\xa9\xa3\x51\xb7\x89\x36\x11\x94\x90\x05\x1f\x6d\xed\x66\xfe\xd8\x33\x57\x22\x86\x23\xf9\xa8\x38\x96\x21\x07\x6d\x85\x57\x03\x52\xdd\xf9\x75\x52\xcd\x66\xcf\x1a\xd1\x0c\x82\xb8\xe9\xd7\x83\xd6\xc8\x40\x76\xc4\x52\x99\x9d\xc2\xc1\xa9\xdb\x22\xd7\xd9\x73\xea\xcb\xfa\xb5\x25\xfe\xd9\x9c\x9f\x57\x65\x6d\xe4\x38\x3d\xd4\x3d\xc2\x07\x36\x4e\x56\x3a\x05\xa8\x39\xf3\x46\x08\x38\x86\xa5\x5d\xb2\x25\x25\xec\x51\xd8\x58\xc0\xdf\xa3\x67\x24\xb1\xad\xaa\xde\xba\x2d\xc3\xcd\x60\xcb\xb6\x4d\xd1\xaf\x94\xaf\x76\x11\x1b\x5c\xf5\x2d\xa4\x3d\x6b\x64\x23\x33\xcb\xab\x9a\x55\x5e\x31\x1d\x80\xcf\xe8\x01\x46\xfa\xc1\x65\x4e\x28\x19\x74\xe9\xc9\xf4\x3b\x2d\x1f\xd7\x18\x0f\xd5\xc1\x82\xb5\xf7\x79\xc5\x42\x59\xd6\xd0\xaa\x66\xe7\x3d\x13\x03\x51\xad\xc5\x2e\xa1\xb3\xa0\xc8\x67\x59\xe0\xdb\x52\x8f\x57\x61\x69\x58\x73\xc6\x31\xbc\xce\x51\x8e\xdd\x0a\x18\xe5\xb4\x36\x63\x24\x10\x8b\x2a\x0c\x76\x79\x83\x49\x6e\x1a\x56\x45\x20\xa4\x56\xda\x18\xe1\x86\xe8\x9f\xa8\x86\x18\x29\xb5\x13\x4d\x39\x39\xb3\xa3\xe1\x1f\x92\x7e\xfe\x20\x50\xce\x14\xf8\x78\xce\x50\xea\x1f\xf8\xf3\x1d\x84\xab\xe3\x3c\xc0\xb6\x6b\x78\x3c\xc9\x09\xbd\x6d\x0a\x8c\x53\xa4\x00\x91\x00\x2c\xab\x8c\x39\xf8\x8c\xa9\xb9\x4f\xa7\x3b\x3a\xca\x01\x99\x3b\x35\x32\x05\xd1\x11\xbd\x70\x22\x30\x8b\x41\x52\x43\x21\x84\xf5\x61\x1c\x83\xa1\xba\x91\xce\x54\xac\x26\x55\x56\xcd\x06\x8b\xcb\x92\x74\xf0\x88\x6c\xc5\x20\x21\x44\xcf\xfa\x7d\xd6\x2c\xab\x72\x9d\xcb\x29\xc6\x1d\x90\xe6\x9f\xa9\xba\x6f\xa7\x1b\xd4\xa1\x9e\x02\x2d\xc9\x82\x56\x8d\xae\x34\x38\x56\x4d\x3a\x48\xeb\x24\x7e\x7b\xc0\x90\x97\x25\x8e\x56\x56\x11\xf2\x1a\x0c\x64\x03\xda\x46\x3b\x82\x4d\xa9\x83\x4d\xed\xea\xf1\x41\xd1\xd0\x9f\x9f\xb9\x09\xcf\x9c\x62\xaa\x2a\xa1\xe8\x0f\xcf\xc0\xea\xe4\xf0\xe6\x63\xfc\x56\xe1\x2c\xcb\x2f\x1a\x9a\xed\xa6\xb4\x1b\x5a\xe2\xb0\xdc\x7c\x8a\x11\xbf\x5a\xe7\xd9\xf7\x8f\xe6\x9f\x13\x7e\xe8\x07\xaf\x34\xa9\x56\x97\xc4\xea\xd6\xa5\x88\x22\x83\xd6\x68\x4d\x36\x37\xef\x48\xe9\xcc\xdd\xce\x94\x51\xee\x62\x3a\xa0\x04\x3f\xb2\xc3\xb8\x2d\x57\x73\x97\x69\x63\x20\x49\x26\xaa\x88\x32\xd6\xa4\x94\x99\x6a\x9b\x25\x70\xd2\xc6\x1e\x23\x89\x2a\xa0\x8b\x35\x49\x33\x4e\x0b\x6d\x55\xa6\xa4\xe5\xeb\x16\xeb\xb2\x5b\x9c\x83\xf5\x93\xce\x4d\x80\x30\x88\x81\x8b\x2d\x85\xce\xe8\x28\x61\x9d\xf2\x63\x02\xfb\xf8\xab\xec\xfe\xa5\x53\x3b\xbe\x04\x0f\x5f\xd0\xce\x2e\x2b\x50\x3f\xd4\xf9\x4b\x35\x35\x41\xe6\xb5\x0d\xa4\x8b\xdc\x69\x0c\xb1\x32\x8a\x65\x06\x2b\x41\xf3\x4b\x22\x0d\xac\x55\x73\x0e\x25\x1f\xe2\x2e\x9d\xac\xd9\x7d\xa2\xb2\x67\xcf\x81\x59\xdf\x24\x7d\x5d\x37\xcb\xbe\xac\x8a\x19\xe6\x24\xba\x05\x69\x16\x4a\x3b\x2a\x86\x8f\x97\x26\x55\x32\x6a\x26\x2e\x3e\x61\x49\x1a\x91\xe9\xb8\xc6\x82\xcc\xeb\x14\x20\x69\xa1\xf5\x72\x62\x2c\x02\x53\x33\x54\xf1\xe6\x1d\xf6\xb6\xb4\xe3\x45\x51\xe0\x85\x8e\xe7\xd5\x45\x2c\x8d\x8a\x48\x35\x50\xda\x53\xc1\x49\x47\x17\x51\x30\xb1\x34\xe2\xda\xd4\xbc\xcd\x1e\x7c\x43\xff\x27\xdc\xe7\x97\x46\x0e\xdd\xb5\x5b\xb4\x63\x98\xa1\xb0\x68\x2a\x4b\x8f\x35\xce\x74\x9e\xc9\x9e\xdb\x89\xb7\xa9\xcd\xa6\xe7\xf9\x68\xe6\x8e\xc4\x6c\x0f\x19\xdb\xce\x1f\x96\xa6\xbe\x34\x35\x9d\xc4\x1f\x65\x24\xfc\xe5\xe0\x0d\xa6\x5e\x11\xbb\x60\xa6\x42\x6d\x02\x1b\x17\xf9\x35\x71\x05\xa2\x05\x62\x0a\x6a\xc0\x20\xb1\x96\x76\xe6\xcd\x2f\x6d\x47\xc7\x04\x9f\x59\x37\xef\x69\xe1\x0c\x8b\x7b\x3f\xc2\x10\xfb\x8a\x14\x79\x51\x71\x9a\xaa\x80\xb0\x3c\xdc\x55\x59\x33\x25\x40\x05\x85\xdf\x55\x4c\x36\x91\xbd\x2a\x69\xb9\x16\xde\xb8\xbb\x60\xf5\xf3\x4d\x37\x3f\x52\xdb\x07\x6f\x04\xfe\x24\x27\xca\x23\x07\x49\xe2\xcc\x35\x53\x8e\x9d\x3f\x2d\x6d\xac\x49\x58\xec\xe1\x8a\xf6\x46\x83\x83\xea\xd2\x28\x54\x0c\x41\x3b\xd9\x97\x03\x9e\x9a\x22\xc5\x4c\x5a\x7a\x3e\x30\xe1\x51\x99\xd8\x1d\xa5\x58\x8c\x8f\xf4\x9d\xd9\x38\x9b\xa8\xc1\xee\xef\xb3\xd5\x4b\x6c\x61\x33\x5a\x65\xb6\xb8\x49\xc7\xc7\x35\x29\x7e\xa9\x3e\xc6\x58\x55\xab\xf5\x2b\xb5\x7e\xcd\x5f\x0c\x01\x88\x21\xc2\x5a\x16\x4c\xc1\x0b\x35\x14\x8a\x49\x98\x59\xb3\x18\x27\x8f\xd4\x32\xe8\xa5\xc3\x0b\xb3\x85\x44\xb9\xb1\xeb\xf9\x6f\x7f\xfb\x17\xd2\xc4\x88\x30\x60\xf2\xf0\xcc\xfc\x4f\xa4\x7a\x8a\x41\xdc\x99\xbd\x49\xf9\xb4\x0d\x58\xc1\xe2\xf7\xb5\x72\x5c\x57\x37\xef\xde\x12\x6f\xfb\x68\x28\x27\x88\xb1\x9a\x54\xf7\xf9\x13\x48\x26\x75\x87\xb3\xea\x20\x31\x02\xc8\xc6\x8c\x6c\x04\x24\x9d\x64\xde\xbc\x73\xc0\x6b\x9f\x43\x7d\x81\x49\x65\x24\x3f\x80\x20\x08\x63\xe5\x58\xa2\xc1\xa8\xc1\x98\xa3\x8e\x67\xd9\x93\x48\xa9\x61\x11\x37\x16\x96\xa1\x59\x27\xa3\xaa\xd3\x61\x59\x16\x0d\x36\x66\xb3\x44\xdb\x86\x56\x8b\xf6\xc8\x2f\xb4\xed\x37\x24\x95\x93\x5a\xb0\x26\xde\xe3\x8f\x8c\xc7\x26\x6b\x2a\x12\x88\x61\x6a\xdf\x94\xb1\x99\x42\x60\x4d\x04\xfb\xdb\xdf\x1e\xd3\x6e\xf4\xe0\x5d\x1f\x83\xff\xc9\x5f\x46\x10\x73\xbb\x22\xd8\x67\xaa\x5b\xa7\xab\x40\x23\xbf\x79\xcf\x82\x99\x91\x43\x79\xe6\xcf\x31\x91\xd5\x58\xf4\x07\x26\xdc\x8a\xbc\xac\xc5\x36\xef\xf6\xac\x58\x7e\x22\x7c\x58\xf0\x09\x62\x1e\x97\x25\x46\x95\x67\x5f\x2f\xbf\xb9\x6f\xbf\xfe\x6c\xf9\xcd\x60\x7d\x36\xdb\xb6\x37\xcb\x1c\xe3\x5e\x12\x6b\x35\x3f\x33\xeb\x32\x98\x81\x58\x2d\x21\x8a\xd0\x1c\x48\x24\x63\xa1\xe5\x7e\x91\x61\x80\x4e\x0b\xc5\xa5\x8f\x51\xd3\x10\x0d\x8d\x2d\x05\x54\x3f\x92\x54\x9c\xd8\xd4\x35\x9e\xfc\x99\x70\x8d\x23\x5c\x15\x81\x9d\x75\x9c\xa5\x51\x23\x1b\xd0\x55\x10\xf1\x8d\x71\xeb\x77\x0a\x63\xa3\x2a\x49\xb3\x9a\xa6\x52\xd0\x00\x4b\x56\xd4\x97\x1c\x1a\x4c\xb8\x84\x91\x9b\xf7\xc2\x8b\x80\x54\xe6\xd3\xdc\xba\xa0\x0d\x74\x5a\x90\x50\x60\x4b\x4c\xff\x1c\xda\x07\x9b\xaa\x13\xac\x19\xbb\x85\x81\xf9\x4b\xa2\x8d\x9a\x84\x1e\x90\xd6\x45\x6e\x17\x7d\xad\x4b\x60\x0a\xa1\xde\xc7\xc4\xa5\xf8\x48\x66\xa2\x18\xf1\xd6\xec\x13\xbf\x28\x9f\xca\x11\x86\xcd\xe4\x96\x11\x3b\xe9\xb4\xc4\x77\x6a\x1b\x6a\x50\xb9\x04\xb7\xef\xeb\x9d\x4b\x1e\x2c\x37\x96\xcf\x09\x36\x72\x10\x9b\xdb\xc8\x7e\x61\x7a\x89\xc4\x89\x03\x6a\xf8\x6d\xb6\x22\xfc\xbc\x56\x55\xcc\x2f\x73\xb6\x6c\x3a\x31\x58\x30\x9e\xdd\x74\x3c\xb8\xd8\xc6\x98\x02\x18\xa3\xe0\xf4\x3b\xe6\x98\xe2\xd7\xd9\x14\x58\x02\xb2\xcc\xaf\x3a\x03\x3b\xc7\x07\xe8\xf2\x8a\x22\x3a\xf9\xb9\x5e\x01\x9b\x48\x4d\x27\x71\xd8\x48\xa0\x36\x8c\x16\x83\xee\xdc\x98\xd7\x39\x0f\x3a\x1e\xf3\x27\xad\xf9\x54\x47\xcd\xe7\x13\x77\xe5\x54\x8b\x16\x7d\x10\x27\x5a\x11\x69\x51\xa3\x8d\x3b\xd6\xd3\x9b\x32\x1b\xb3\x80\x17\xae\x0a\x0c\x14\x7d\x0a\xea\x84\x07\xbe\xe9\x48\x28\x14\x90\x72\xf3\x31\x5e\x4a\x6c\xdd\x37\xdb\x12\x6c\x32\xd3\x89\x8b\x3a\xd4\xcc\x86\xbd\x3b\x13\x0a\xcf\xf4\x68\x30\xd3\x76\xcf\xc8\x7c\x03\x5d\xd3\x2c\xec\x05\x2c\x5d\x24\xd3\x54\x4d\x4d\x02\x6b\x5f\x8c\xa7\x1d\x0c\xb2\xd0\x69\x49\xc4\x87\xf0\x94\xfd\x67\x11\x31\x80\xec\x57\xba\x79\x71\xda\xb9\x9d\x1b\xed\x1a\xd9\xd8\xa3\xad\x0e\x68\x91\xc2\xe9\x1c\x2e\xcf\x4b\x50\xae\x9d\xa4\xa5\x9d\x78\x7f\xbb\xca\x47\xb3\xf3\xe7\x88\x93\xad\xfc\xe9\xe0\x78\x56\x41\x9b\x61\xe9\x05\x2e\x99\x45\x53\xe4\x98\xc6\xb5\xb1\xf3\xd3\x9b\xf7\x30\x94\x93\xa0\x44\x32\x44\x53\xc0\xe8\x72\x5c\x94\x9d\xde\x85\xc1\x90\x44\x80\x2f\x09\x15\xcf\x76\x28\x29\x90\x07\xd2\xb2\x2a\xbd\xe3\x3c\xe6\x59\x3f\xba\x8d\xee\xef\xde\x39\x99\x54\x74\x5e\x18\xbe\xc0\xf9\xa1\x37\xd5\x25\xf6\x82\xc1\x65\xf7\xb2\x6c\x47\xd4\x7a\x7a\xfa\xf8\x8c\x55\xb0\xc4\x00\x7e\x54\x91\x44\xcc\x6a\x30\x6c\xa9\x8f\xbb\x6e\x6b\x5f\xb6\xb4\x61\xd8\x8e\xf8\xf2\xc5\x13\x74\x7b\x5d\x35\x79\xf1\x32\xd8\x2b\x59\xfb\xb8\x7b\xe7\xcc\xe4\x9b\xe1\xcc\xa0\x24\x6f\x69\xac\x87\x24\xf4\x0c\x30\x02\xc5\xb0\x0d\x57\xaf\xac\xe9\x1d\xef\xd2\xbb\xe4\x22\x26\x55\x06\x83\x0e\x6e\xf8\x02\xf9\xa7\xc9\xbb\x81\x66\xf6\x13\x91\x54\xb5\xbd\xc8\x59\x1e\xf5\xb0\x83\x8b\x90\x60\x96\x39\xac\xce\xf3\xba\xdf\x10\xd5\xad\xd8\x14\x83\x5a\x9f\x3c\x58\x7c\x3a\x68\xa7\x20\x5e\xe5\xda\x42\x65\xae\x0b\x36\xac\x6d\x92\x06\xc1\xed\x90\x34\x81\xcb\x23\x11\xf0\x89\xb6\x08\x84\xd8\x29\xd6\x95\xef\x08\x1a\x3a\x5f\x7f\x26\x9e\x4f\x1d\x64\xcc\xc6\x71\x30\xaa\xb1\xba\x26\x6d\x45\x4c\xc4\x3f\xe1\xc0\x7c\x6b\xc6\x1d\xe2\xfa\x21\xdf\xe4\x37\xff\xde\xd0\x89\x02\x30\xd6\x45\x46\xa0\xfe\xfa\x87\xd4\x1a\x6c\x51\x0b\x15\x28\xcc\x9e\x2b\xe6\x6f\xf6\x55\xe4\x6b\x02\xd2\xe3\xdf\x10\x97\x1a\x57\x16\xf6\x1d\x2d\x83\xca\x93\x93\xdc\x5b\x75\x1d\xd4\x83\x55\x7b\x5c\x0b\x64\x15\x03\xd5\xaf\x49\x4a\xaa\x15\x50\xd4\x33\xe8\xbc\x4d\x4d\x0c\xbf\x68\xbe\xf2\x8e\x08\x24\x4f\xa8\x2a\x0a\x4d\xd1\x19\x87\x94\x4d\x0a\xfe\x67\x11\x83\x0b\x7a\xe5\xf8\xce\x29\xe5\xbb\x35\xd8\x43\xc9\x17\xd4\xb3\xd8\xbf\x62\xb1\xa4\x63\x6e\xd1\xe5\xaf\x4d\x3d\xff\x17\xf0\x66\xf0\x16\x2c\xa2\x53\x9e\x58\xbe\xc5\x37\xb9\x2d\xd2\x2b\xf1\xc5\xde\xba\xb1\x56\x3c\xae\x4f\x62\xe6\xde\xea\x03\x97\x86\x89\x16\x3a\xda\xa6\xfb\x47\x20\x9b\x76\xa2\xaa\x2c\x33\x57\x23\x14\x14\x1f\x7a\x42\x5f\xe7\x4e\x55\x07\x66\xb0\x06\x65\x55\x99\x35\x6e\x1a\xdc\x58\x92\xcb\xcc\x2a\x1a\x01\x2b\x27\xf1\x46\x75\xba\x32\xcb\x57\x7e\x21\xfc\xa2\x06\x12\x98\x56\x65\xc3\x2a\x7b\xc8\x46\xcc\x92\xd4\x7c\xcb\x6e\x35\x91\xf9\x82\x87\x16\x1f\x56\x96\x44\xf2\x5f\x59\x20\xf7\x5a\x37\x86\xd4\xb1\x95\xba\x2c\x1a\x6f\x0b\x91\xdb\x08\x93\xcc\x2a\x5a\xd9\xa9\x1e\x89\xc6\x61\xed\xf8\x87\x76\x49\x32\xf0\xb6\x84\x24\x3e\xdd\xa5\x3f\x33\xff\x8e\x0e\x53\xd5\xc6\xf9\x33\x61\x73\x31\x45\xc5\x46\x9b\xb2\x2e\xc4\x51\x09\x7b\x92\xc9\x6d\x06\x27\x29\xdb\x41\x4f\x97\xf9\x0f\x6d\x3c\xa4\xb0\x94\x60\x41\x1d\xa4\xb0\x12\x96\xee\x56\x8d\x3a\x37\xbf\x56\x10\x99\x48\xda\x26\xed\x4d\x2d\xd3\x4a\x37\x72\x6f\xe0\x26\x4e\x3a\xe2\x23\xf0\x32\xee\xb1\x64\x7b\x7d\x33\x40\x4c\x10\xc8\x70\x7b\xf8\xda\x5c\xa7\x32\x19\xdb\xdf\x36\x7c\x60\x6c\xf3\x95\x5c\xa5\x5c\xb2\x58\xb2\x52\x11\x97\x4f\x4d\x3a\x32\xbf\x62\x93\x41\x2f\x06\x6c\x06\xb9\xf6\x4d\xb2\x27\x87\x3f\xa2\x2e\x69\x3a\xe3\xfa\x07\xb8\x41\x20\xc5\xcc\xf6\x1b\x36\x01\x8b\x99\xcb\x73\xc3\x6c\xef\x3a\xc1\x78\x6c\x6f\xde\xc3\xc2\x4a\xc7\x6d\x6a\xcf\x92\x03\x17\x33\x5a\xc5\x46\x2c\x3a\x57\xe0\xab\x06\xdc\x8b\xd3\xd5\x99\x93\xc3\xd0\x1a\xc9\x03\x01\x4f\xcc\x17\xfb\x1a\xdb\x08\x7e\x68\x89\xe5\xe3\xc0\x19\x11\x30\x8c\x65\x03\xbf\xbb\x8a\x0f\x4f\x22\x8b\xda\x9e\x13\x1e\xf8\xb7\xf8\xe0\xb0\xfa\xc7\xbd\x42\x3d\x82\xaf\x55\xd2\x69\x58\x4f\x61\x67\xd2\x5b\xea\x82\x95\xf4\x97\x43\x43\xc5\xb5\x27\x74\xd2\xc6\x93\x09\x1b\xcb\x7d\x87\x20\xb0\xc1\x54\x99\x7b\xa5\xdc\x12\x4b\xdb\xbb\x33\xe0\x43\xe6\xea\x3b\xdb\x3b\xdb\x18\xcb\x72\xfb\xce\x0a\x4b\xb2\x1e\x09\x8b\x64\x75\xcc\xdd\xd8\xba\x5b\x84\x03\x3e\x92\x09\x41\x0d\x11\x16\x3a\xb8\x0e\x4e\x45\x61\xd2\xdc\x9d\x38\x26\x2d\x96\x34\x9e\xd5\x45\xb4\x17\x61\x89\x25\x71\x21\x13\x0f\x8e\xae\xac\xa3\xad\xc8\x02\x2c\x46\x07\xe3\xd4\x45\x5e\xaf\xcd\x42\x2f\xce\xc4\x6a\x07\x3a\xd5\x8b\x27\x1a\xa4\xbb\x23\xc3\xdd\xa8\x87\x5f\xf5\xb6\x6b\x36\xfb\xaa\x8d\x6c\xa9\x77\xef\xfc\x4c\x27\xeb\xa2\xa9\x9d\x24\x0e\xf6\x60\xea\xc8\x77\xac\x34\x43\x23\x1a\x2b\x08\x65\x77\x2d\x06\x00\x18\x58\xb2\xed\xcd\xaf\x4b\x18\x7e\x61\x88\xa9\xaa\xe6\xca\xb4\x24\xaa\x1b\x12\xb4\x48\x52\x84\xb9\x0f\xf2\x20\x31\x3e\xdc\x6b\x75\x39\x58\x90\x75\x90\x30\xda\x9e\x8a\x86\x2b\xe2\x3e\x64\xf8\x19\x1f\x2a\xd0\x2b\xda\x4b\x6c\xa1\xc0\x93\x3e\xbe\x6f\x3f\xd6\xa5\x92\x62\xb9\x79\x0b\x95\xb6\x79\x47\x4c\xb6\x16\x5d\x96\x87\xc2\xf5\xe9\x73\xab\x47\x64\x3d\x3a\x98\xb8\x51\xaf\xea\x6f\x71\xa3\xd7\x89\xb0\xc2\xfe\x75\xe2\xe0\x47\xcb\xe2\x7c\x00\x4f\xd4\x01\x70\xfa\xaa\x43\xf9\x8d\x9d\xb3\x2c\x6f\xd5\x2b\x82\x8d\x80\x84\xc8\x02\x5f\xf8\x87\x11\x2f\x18\xa0\x0d\xd6\x24\x3b\x3f\x4c\x3c\x75\xd9\x74\x3a\x34\x9b\x12\x93\x35\x50\xcd\x1d\x2b\x76\x26\x4a\x42\xf4\xfc\xe5\xcb\xef\x1f\x61\xc4\xdb\x1e\x4b\xb1\x48\x07\x9b\x9d\xc8\x0a\x35\x7e\x16\x72\x3d\x75\x36\x6d\x1f\x30\xd6\x2d\x29\x3b\x12\x1b\x5c\x33\xf5\x16\xb4\xc1\x0a\x6c\x47\x1a\x99\x65\x1b\x54\x9d\xde\x71\xb7\xa6\xe2\x3f\x73\x94\x43\x80\x09\xd7\xb4\xca\x61\x92\x9b\x5b\x18\x6c\x54\xb5\x36\x90\x15\x73\x6c\xe1\xcb\x9b\x5f\x9c\x17\xe1\x95\x59\x62\x71\xe1\x28\x19\x5f\x3a\x1d\x89\xae\xb8\xcb\x55\x18\xd7\xd0\x7c\xf5\xfa\x04\xf7\xd1\x41\xc5\xe9\xb7\x30\xbe\x7b\xc4\x1c\xf2\x6d\x04\x15\xb7\x99\x5b\xd0\x14\xc2\x2b\xa9\xde\xe7\x53\xed\x77\xb9\xab\x39\x3c\x8c\x67\x7e\x2b\xee\x76\x01\xce\x58\x6d\xe5\x73\x78\x04\xed\x6c\x66\xc7\x10\xfb\xd8\x51\xd1\x79\x9a\x60\x01\x72\x56\x9a\x4c\x5d\xf1\x19\x28\x92\xc1\xca\x40\x62\x25\x9e\xc7\xf6\xb0\x2c\x0f\x8a\xbc\x18\x2b\x89\x74\x7b\xbe\xe5\xc3\x1f\xd0\x92\x27\x5c\x48\xdd\x7d\x6f\xc2\x3d\xdc\xdd\xec\xa1\xf0\x8e\x93\xe8\x62\xbd\x99\xae\xe2\x4c\x1e\x6a\x16\x34\x70\x93\x19\x3a\xf1\x0c\xae\xe2\xa3\xcb\xff\xd5\x45\xd3\x58\xb5\xc7\xcb\x08\x4e\x41\x91\x4c\x4c\x6a\x54\x75\xa0\xba\x4a\x61\xa0\x6e\x19\x27\xbc\x61\x0e\x7d\x1d\x28\xcd\x24\x7a\xe9\x58\x99\x3d\x2c\xca\x0d\xbc\xc3\x8f\x83\x8f\xa1\xb3\xcc\x06\x65\x88\x41\x6a\xf1\xce\x4b\xa7\x1b\xee\x0a\x9f\xc1\x1a\x78\xcd\x66\xaf\x9b\x5f\x6b\xef\x1e\x10\xa3\x8c\xc4\x74\xbb\x6d\xea\x92\xc0\x45\x9e\x31\x2a\x87\x78\x37\xbe\xd9\x60\x62\x9e\xfa\x26\xaf\xb4\x02\x57\xbf\x9d\x24\x3d\x99\x05\x7e\xa5\xf7\x40\x89\x41\xa2\xa9\x8a\x69\x67\x19\x69\x5b\x5c\xb7\x3d\x80\x5c\x91\x0c\x8c\x3b\x30\x7d\x2c\x12\xb0\x70\xcd\x5b\x8f\x2b\x4c\x68\x0d\xe3\x7e\x83\xa2\x90\xcf\x46\x33\x19\x20\xc9\x57\x15\xa4\x84\x9d\x36\xc0\x49\x46\xfa\x16\xa3\x1f\x82\x75\x12\xbf\xc0\x4c\x8b\x90\x3b\x1a\x2d\xe3\x91\x15\x30\xeb\x8c\x43\xce\xab\x67\xd2\x3a\xa4\xae\xec\x5a\xe3\x3b\x9c\xf6\xec\x1a\x56\x7c\x40\x5d\xd1\xf3\x1c\x7f\x9e\x54\xf0\x48\xb8\xa1\x0d\xbf\xcd\x99\x25\xb1\xbf\xee\x5b\xe6\x11\xbc\xe1\x26\x18\xf3\x35\xbb\xc9\x58\xc7\x72\xf1\x0d\xba\x38\x89\x48\x79\x7b\x3d\x3f\x71\xad\xf9\x4f\x6a\xfc\x7b\x4a\x1b\xc3\x39\x29\x6e\x03\x90\x1c\x43\x0a\xe3\x0e\xa3\x30\x6e\x2a\x04\xfb\xd5\x02\x3f\xf4\x49\x2f\xad\xb4\x8e\x4c\xfa\xb0\x8a\x95\x8d\x0f\xd2\x71\x6d\x90\xc1\x08\x0b\x38\x9f\xc4\x0b\x9d\x5d\xcb\xa4\x66\x64\xa0\xfe\xb0\x46\x67\xd9\x6f\x7f\x23\x81\xc5\xc8\x51\x26\x0c\xf4\x4f\xa3\x11\x3b\x0a\xfc\xed\xdd\x71\x35\x39\x34\x22\x44\x5b\x16\x5e\x30\x1e\x12\xe3\x47\x70\x7a\x28\x78\xd7\x08\x3e\x0f\x89\xda\x68\x6c\x4a\x82\xb7\x8e\x52\xaa\xa7\x55\xf7\x83\x2d\x92\x4b\x2c\xa8\x59\xb7\x5f\x5c\xf9\x49\xf8\xab\x2b\x08\x4d\x7f\xe4\xd6\x6a\x4b\x03\x7a\x43\x34\xf6\x21\x97\x56\xb3\x78\xd4\xd1\x69\x9c\x8c\x75\x48\x07\xe0\x86\x8c\x87\x49\x56\xa8\xfb\xd2\x0b\x69\x61\x67\xc6\xe2\x1a\x7a\x85\xce\xe8\x10\xca\x65\x22\xda\x31\x85\xb2\x02\x21\x1a\x5a\x55\x5a\x71\x2c\x58\xf9\xfa\x9e\xd4\xac\x63\x27\x7a\x24\x67\xba\x25\x62\xb1\x88\x55\x4f\x1c\xe6\x35\x82\x6d\x60\x55\x7b\xbb\x62\x4f\x2d\x74\xa6\x47\xea\xd7\x30\x91\xd7\xeb\x6f\xe2\x9b\xca\x1c\x71\x58\x7f\xfa\xfa\x33\x2d\xc2\xe1\x67\xfb\xaa\x63\xba\x5f\xf7\x37\xef\x73\x75\x4b\x7e\xdc\x2f\x05\xc1\x5f\xe7\x51\x80\x84\x38\x6b\xb7\xd1\xa0\x39\x4a\x02\x8a\x76\xd5\xaf\x04\x21\x49\x05\xb8\xd0\x54\xb8\x82\xc3\x42\xf5\xc4\x3e\x24\xaa\x02\x92\xb9\x77\xce\x75\x74\x1c\x63\xce\xab\xd6\x5e\x30\x8e\x0d\x58\xea\x87\x00\x53\xbf\xbb\xda\x60\x78\xa7\x4f\xe8\x7a\x2a\x83\x63\x91\xdc\xb5\xc2\xf2\x12\xb7\x92\xda\xdf\x06\x0d\xe8\x15\x37\xbb\x53\x05\x4b\x9a\x6b\x60\xc2\xf8\x2e\x85\x32\x2c\x39\x8f\xf4\x26\x42\x69\x22\xda\xf0\x7a\x06\xba\x19\x8a\x1e\xa1\xb4\x97\x8f\x76\xb9\x32\x4d\x20\x27\xb0\x4c\x37\x1b\xcf\x34\x1f\x42\x7b\x17\x6c\x1c\x8d\x51\x97\xf2\x49\x04\xce\x28\x41\x31\x47\x0b\x23\xa9\x9d\xe3\x5a\x76\xd9\x54\x70\x5d\xcb\x79\x9d\x2a\xf5\xd5\x83\xf3\x78\xc1\x5f\x83\xb8\xe8\x98\x5d\xc2\xeb\x46\xfd\x86\xc9\x3f\x89\xfb\x1b\xf2\x38\xc1\xfb\xcd\x2f\x6f\x48\x69\x54\x06\x47\x73\x3b\x74\xdb\x12\x0a\x26\xdb\x9d\x78\xfd\x5e\xba\xd5\x65\xb5\x5b\xec\x4a\x1c\x28\xc4\x70\x88\x8a\x70\x0a\xa7\x0a\x5a\xb9\xd7\x3b\x71\x01\x2b\x2e\xbc\xbc\x32\x1d\xc4\xa7\xb0\x41\x65\x7c\x6e\x6c\xd0\x5f\x84\x0b\x91\x10\xaa\xd6\x2b\x9b\xfd\x97\xac\xa0\xbd\x02\xe7\xb1\xe6\x35\x91\x65\xd4\xc4\x19\x3e\xa8\xd6\xb3\xb3\x56\x60\x28\xa2\xe0\x05\x76\x92\xaa\x7a\x81\x25\x78\x87\x90\x84\x91\x80\x72\x3d\x27\x01\x9b\xdc\x55\x7d\x8a\x87\x5c\xde\xbc\xaf\x57\x7d\xd5\x4c\xb2\x91\xbe\x5e\x96\x35\x6b\xde\x97\x25\xa0\x58\x1a\xe6\x6f\xb1\xf0\x44\xdd\x69\x67\x1e\x5f\x85\xaf\x51\xe4\x31\xeb\xe4\xc8\x03\xbb\x60\x7c\x45\xf3\x05\x7e\x18\x65\x2c\xd7\x1c\x4a\x78\x82\x93\x81\xa1\xbb\x0a\xcb\x51\x9f\x1b\x57\x5b\xb8\x90\xf0\x73\xae\xad\x0b\x61\xa3\x35\xb0\xb2\x08\x76\x40\xbb\x24\xdc\x9f\x7c\xef\x02\x4a\x66\x22\x9e\xca\x22\x72\x55\x76\x6a\x17\xbf\x8d\xd8\x73\x59\x5a\xcf\xd4\x77\xb2\x76\x71\x14\x7a\xfa\xe0\x60\xeb\x22\x0d\x4a\xda\xab\x07\xb7\x6a\x3a\x50\x3f\xa1\x74\x32\x93\xa5\x82\x6b\xc3\x1b\xa7\x11\x77\xdc\x30\x18\xbe\x8d\xe7\x61\x30\xbb\xab\x33\xa9\x3b\x92\x14\xb2\xc3\xc4\xe6\xb8\x6a\xb6\x7a\xc5\x2f\xf8\xe3\xd6\xa2\xc6\x1c\xf2\x69\x6b\xbf\x7b\xe6\x18\x82\xcd\xd8\x7a\xe5\x5d\x0f\x02\x63\x92\x59\x04\xd6\x14\xaf\xf3\x24\x7f\x3a\x73\xfd\xe9\x62\x3b\x1d\x71\x47\xd5\x29\x9e\x65\x76\x0e\x7a\xe8\x4c\xe8\xa5\x37\x02\x28\x8c\x3a\x62\xb3\xa9\xc6\x36\xa1\xfa\x34\x17\x8b\x27\x98\xca\x6b\x3b\x7b\x9f\x12\xda\x3c\x43\xcb\x9e\xf1\x4a\xb1\x77\x91\x51\x5f\x0a\xa7\x83\x76\x50\xad\x6e\x7e\x11\x59\x27\x8f\x2c\x3a\xd1\x16\xc6\x66\xd2\x31\xb9\x1b\x79\xb7\xa9\x23\x67\x1a\x85\x70\x6e\x34\x79\x6c\x2e\x89\x65\xdd\x3e\x72\x6e\x64\x71\x97\xd1\x92\xd7\x7c\x3b\x70\x4d\x6b\xef\xa4\x87\x67\xcf\x83\xb4\xe0\xf5\x4f\x76\xc7\x5a\x99\xf6\xa3\xe0\xa3\x3b\x18\x5a\x50\xe1\x62\x81\x7e\x38\x03\xf5\x27\x1e\xc9\xfc\xe9\x64\x1c\x70\xc4\xa3\x65\xec\x16\x8e\xe5\x59\x74\xc9\x10\xe6\xc0\xb4\x7f\x40\x0b\x2b\x0e\xe8\xa9\x30\x7e\xf7\xce\x8f\xb0\x54\xbe\x22\xf5\x95\xaf\x2f\x4e\xc2\xbd\x42\x74\xd9\x17\x6f\xde\x24\x12\x36\x5c\x07\xaa\xa4\x85\xcd\xb9\x6e\x21\xbc\x5a\x95\x16\xac\x78\x4e\x45\x6e\x8e\xb6\x61\x6f\x9f\x0e\x26\xe1\x8d\xd9\x10\x83\x59\x56\xac\x62\x39\x44\xdf\xfc\xca\x51\x3d\x1e\xdb\x33\xf8\x35\xda\x92\x15\xfd\xeb\xf9\x0f\xfa\x27\x9d\x5f\xfa\x1d\x9f\xa3\xe8\x22\x33\xf4\xcc\xfd\xda\x6e\x89\x29\xd0\x69\x46\x64\x7b\xaf\x2f\xa9\xb8\xc8\xe0\xbc\x79\xef\x1b\x52\xdc\x60\x01\xa5\x9e\x08\xe2\x9b\x71\x73\x88\xc7\x26\x76\x49\xbb\xae\x53\xcf\x57\xbe\x4d\x92\xaf\xc4\x42\xab\x8c\xb8\x66\x16\xdb\x7a\x69\x4b\x64\x4b\x73\x5b\x97\x9d\x99\xe8\x12\xb1\xdf\x6e\x1a\x9f\xec\x32\x61\x05\x4e\x0c\x70\xfb\x29\xdb\x6e\x5f\xcb\x8d\xc0\x63\x10\x62\x88\x1b\x4f\xdc\x32\x18\x8a\xa3\x95\x9c\x9b\xa6\x03\xe4\xd8\x25\x2e\x1e\x21\x53\x9c\xef\xd1\x0a\xad\x90\x8f\xfc\x85\x1f\x76\x58\x03\xb9\x6a\xe0\xc6\x94\x1e\xdc\xf1\x91\x64\x29\xa0\xef\x48\x27\xe0\x53\x09\xf8\x2f\x3e\x8a\xd9\x99\xab\x8c\xb7\x26\xcd\xd6\x65\x07\x77\x82\x96\x06\x88\x80\xda\xda\x9a\xf9\x13\xfc\xcb\x51\xd6\xfa\x65\x54\x3f\xc7\x70\x48\x75\xbf\xd0\xa8\xb9\xca\xd7\xa0\x89\x17\xec\x24\x89\x7f\xdc\xcf\x89\xfe\x21\x4c\x6c\x5d\x1a\x04\xe6\x4f\x3a\xa0\x56\x6b\xc2\xf7\x63\x51\xd6\xa5\x3a\xfd\x29\xeb\x62\xe3\x9c\x40\x22\xb0\xc7\x0d\xa7\xe0\xab\x0e\xdf\x9e\xdc\x77\x0c\xa8\xd4\xfb\xd3\xf2\x3a\xca\x0a\x25\x1b\xad\x30\xe7\x39\x69\x27\x7a\x25\x32\x7f\x81\x5b\x90\x2d\xdf\x8b\x71\x88\x8d\xcb\x42\xb0\xc0\x65\x63\x7b\x99\x23\xc0\x5c\xfe\x60\x14\x48\xe1\x27\xc4\xaa\x59\x61\xfc\x74\xf7\x3d\xc1\xf4\x75\xef\x3f\xe0\xda\x60\x7f\xd3\x3b\x2e\x0f\x6a\x03\x8b\x63\x8f\xb8\x53\x17\x3e\x73\x98\xba\xdd\x68\x36\x85\x34\xea\x3b\x4e\xaa\x10\x03\xec\xe4\x11\x6a\xa0\xaf\xd3\x6d\x8b\xfd\x9a\x2d\xab\xde\xdc\xfb\x46\x10\xe8\xf7\xac\x6b\x94\x57\x8b\x7b\x1b\x2c\x97\x02\xcc\x10\xcf\x48\x5c\xbb\x28\x5a\x1c\x99\x47\x12\xdd\x18\x7c\xa3\x76\x00\xca\x0e\x0a\xe1\x81\xce\xa9\x24\x84\x44\x7e\xf6\xdd\xf7\x67\xec\x6f\xa3\xa1\x09\x1c\x39\x26\x9e\xc7\x1a\xf3\x36\x0b\x6d\xbb\xbb\x61\x06\x0a\x61\xbc\x95\xd6\xf2\xde\xfb\x07\xe1\x32\x2d\x0b\x26\xdc\x34\x00\x57\x38\x05\xad\x0a\xb3\x12\xf9\x3b\xf3\x0c\x84\x83\x1f\x89\xf2\xcf\xe7\xc7\xad\xdc\x72\x47\xf7\xd4\xc3\x95\x47\x9c\xb1\xbb\x4e\xb6\x6c\x8a\x6f\x99\xa7\xf1\x49\xba\xbd\x5e\x54\x65\xfd\x9a\x0e\x4f\xc8\x68\xd1\x17\x2f\x7f\x70\x49\xd1\xc4\xd0\xea\x62\x73\x42\x7d\xf3\x3e\xfe\xbf\xff\xeb\x7f\x67\xff\x5f\x76\x44\x93\x39\xea\xda\xea\xc1\x91\x33\x94\x68\x93\x70\xfa\x84\x03\x2f\xea\x6b\x47\x1c\xec\x82\x40\x95\x6d\xbe\x35\x2c\x75\x03\xda\x14\xae\xb7\x54\xa0\x44\x1b\x58\x36\x25\xab\x91\x75\xc1\x29\xcf\x0c\x05\xaf\xf4\xd8\xc6\xb0\x37\xff\x02\x27\x89\x81\x85\xe0\x23\x28\x1b\x57\xec\xe5\xf3\xc8\xfc\x9c\xf3\x45\xf8\x65\xb9\x2e\x59\x0d\x91\xef\x3f\xb8\x9f\x3d\xe2\x2e\xda\x70\xb9\x55\xb8\xcb\x42\xb9\x3f\x74\x97\x87\xad\x2c\xd6\x5c\x38\x36\x2b\x88\x2a\x59\xd6\x59\xca\xb5\x69\xcb\x11\x86\x70\x0b\x69\xe6\xdf\xb1\x49\xe4\xc5\xcd\xbb\x6d\x89\xf4\x35\x32\xf1\xee\xa2\xb4\xca\xb2\x84\xb4\x77\xf2\x35\x97\x15\x85\x90\xbd\x41\x04\x51\x38\x85\xea\x61\x9a\x14\x0d\xfa\xa9\x48\x29\x33\xea\xcc\xc4\x31\x47\x9c\xf2\x03\x1e\x70\xa0\xd0\xf8\xc0\x3b\xa1\xaf\x7a\x0a\x25\x07\x3f\x53\xb2\x84\xb8\xee\x6a\x90\x87\x44\x73\xe0\x50\xfe\xf9\x19\x4d\x27\x34\x71\x9d\xd1\x2f\x2e\x38\x20\xee\x6d\x10\x38\x44\x15\x91\x53\x62\xf5\x3a\x43\xaa\x1c\xc8\x7c\xf8\x2f\xe2\xc9\xa4\xf1\xb4\xc6\xcc\x6f\xfe\x67\xbb\x44\x0a\x20\xbd\xc0\x46\x3e\x82\x2e\x5f\x5b\x06\xc1\x61\x70\xdc\xc1\x21\xb4\x83\x32\x2b\x20\x46\xcb\x70\xf5\x4d\x70\x51\xf9\x54\x22\x13\x64\x3e\x19\x65\x3c\xa9\xf2\xa5\xa9\x92\xaa\x9b\xb2\xc2\x25\x12\xc9\xce\xc4\xa3\xdc\x9f\xa0\xe8\x0d\xb1\x58\x6c\x20\xfe\x17\x48\xe0\xd9\xe1\x9a\x5a\xfe\x20\x02\xc1\xf5\x5d\x9b\x5f\xd1\xa8\xae\xf4\x17\xe1\x86\x33\xa1\x3c\xa6\x7f\x6f\xfe\xda\xb2\x49\x94\x0b\x38\xe4\x04\xb0\x88\x38\x09\xf0\x2c\x80\xf2\x1e\x3e\x71\x7f\xf1\x55\x8a\xf4\x3a\x1b\x8d\xc2\x15\x24\x69\x58\xb2\x51\xf1\x39\x94\x71\x29\x0c\x1f\x71\x44\xd0\xc6\xe7\xb3\x21\x7c\xdd\x10\x9b\xc0\xfd\xd4\x53\x12\x13\xf2\x9f\x4d\x28\xc0\x2d\xd1\xfc\x5b\xc3\xc1\x9a\xee\x9b\x84\x01\x1d\xe2\xd4\x2c\xe3\x46\x88\x70\x39\x75\x82\x75\x05\x3e\x9e\x06\x59\x90\xc4\x82\x15\xe7\x7e\x09\x85\xb3\xf1\x8a\x44\x85\x35\xa4\x1f\x2a\xe7\x6d\x67\x26\x41\x56\xb4\x1a\xed\x42\x5b\x79\x52\x6e\x98\x41\x4d\x83\xfa\xa5\x0e\x2b\x3d\xec\x2d\x80\xa0\xc7\x69\x30\xe9\x31\x40\xba\x4e\xa7\xa1\x49\x9f\xaa\x17\x13\x3d\x13\xf7\x5b\xd2\x59\x3d\x9e\x4e\x63\x11\x43\x30\x55\x61\x85\x5c\x57\xc5\xa0\x02\x1d\xc2\x48\x15\x65\xe6\x87\xf8\x97\xad\xe6\x13\xa3\xf5\x50\x6e\xb0\xb9\x42\x0f\x11\xe0\x01\x31\xff\x11\x90\xf0\x29\x65\x4b\xe5\xe4\x82\xea\x82\xc9\x9a\xbb\x55\x1d\x03\x2c\xb6\xb8\x60\x4e\x03\xd2\xdc\xaa\x71\x5a\xa1\xa4\x47\x6d\x54\xfa\x35\xc3\x46\x19\xc5\x5d\xbe\x9c\xdf\x2f\xc6\x48\x65\x84\xba\xd2\x11\x06\x69\x13\xc2\x51\x5c\x9a\x1f\x8d\x36\x2e\x25\xa1\x6d\xc1\xe2\x6a\x37\x7f\xa6\x91\x07\x6e\x20\xb1\x18\x3b\xaa\xbc\x8f\xe8\x86\x20\x83\x3e\x70\xcd\xeb\x2b\x25\xb2\xf2\xb0\x85\x21\x11\xe4\xd9\x68\x1c\x04\xb2\x2e\x09\x24\xea\x23\x2c\x71\x3b\x84\xf6\x92\xe2\x54\xc1\x0c\x71\x8b\xca\x72\xcf\xbc\x93\x46\x19\x33\xdf\xa9\x4a\x56\x73\x9a\x91\x30\x71\xdd\xf4\x7e\xa8\x16\xfa\x5a\x39\x59\x45\x16\xbf\x58\x2c\xaf\xb9\x06\x96\x1f\xf0\x10\xe9\x77\xd4\x80\xc4\x41\x28\x42\x60\x34\xd7\xe0\xf8\x2f\xb6\xf0\xa6\xc0\x16\x21\x0f\xcf\x5b\x1a\xef\x78\xee\x28\x9b\xe1\xe8\xb2\xdd\xfc\xa9\x38\x86\x89\xfd\x77\x34\x2f\x86\x04\x09\x3b\x48\x68\x2f\xeb\x7e\x8c\x00\x06\xa4\x66\xa8\x15\xb9\x7e\x0f\x0e\x05\x45\xee\xdb\x57\x71\x69\x6a\x34\x74\xe2\x4c\xd5\x14\x37\xef\xdb\xeb\x23\xb1\x00\x78\x35\x2e\x1b\x78\xa0\x38\xa3\x11\x59\xba\x63\xa8\xdc\x9f\xaf\x60\x24\xa5\xc8\xa8\x06\xf6\x1d\xaf\xce\x5c\x77\x5d\x76\xff\xc7\xcf\x5f\xc9\xfa\x84\x6b\x9d\x1f\xbf\x78\x45\xb2\xda\xfd\x1f\xbf\x7c\xc5\xb7\x39\xe3\xda\x8b\xf3\xfc\xb5\x99\x68\x82\x6b\x7a\xf0\x6d\x6b\x2e\xcb\xa6\xb7\xde\x0b\x27\x9c\x42\x9e\xb7\xbc\xe9\x7c\xe9\xa9\x8b\x67\x1a\x70\x09\xb6\x1f\x1d\x4a\x5f\x29\x8f\x28\x5c\xb0\xba\xf0\x88\xd0\x6c\xbf\x59\x28\x2a\x2c\xf3\x10\x41\x84\x78\xa9\xb9\x06\xa4\x1c\x7a\x58\x37\xff\xc9\xa3\x0a\x58\x28\x0b\xe0\x80\xe6\xe4\x24\xd7\x7f\x92\x5f\xdf\xf0\xf4\x80\x91\x9f\x42\x57\x8d\xbf\x12\x3a\xec\xeb\x48\xd1\xf0\xf7\x57\xb3\x01\x5f\x93\xb4\x6a\x92\x04\x71\x50\xa4\x63\x4a\x40\x48\xaa\x3a\xd2\xe1\x7b\xe8\xd6\x30\x66\x04\x8c\xb4\xfe\x65\x5b\x8e\x0a\xd3\xb6\x14\x68\xaa\x31\x65\xd7\x8e\x74\xc6\xe5\x82\x69\xc6\x92\xe0\xf9\xf7\xe2\x48\x46\xa4\x6d\x50\x6f\x4a\x36\xbf\xb3\x15\x11\x5c\x48\x3e\x3e\xe7\x76\x36\xe0\x5b\x8d\x24\x6b\x83\xbd\x30\xf0\x32\xf6\xd5\xe4\x0c\x97\x04\xff\x7b\x7b\xd9\xb2\x40\xe4\x24\x2e\xfd\xc8\x06\xb2\xf9\x20\xe7\x81\xa3\xd1\xb1\x79\x51\x4b\x5c\x28\x29\x29\x25\xa4\x40\x1a\x13\x62\x9a\xa0\xbe\xf6\x65\x37\x00\x2d\xeb\x85\x0b\x9c\x61\xbd\x85\x95\xba\xbe\x2e\x5b\x12\xd0\xdd\x45\x5e\x53\x23\x53\x80\x46\x9f\x64\x1c\x26\x2c\x0e\x44\xc6\xf9\xe5\xba\x20\xd5\xe4\x92\x76\x10\xc2\xe9\xee\xd5\x79\xa1\x93\x1d\x6e\x8a\xb2\xf3\x81\x53\x0e\xf1\x43\xcf\x30\x37\xe8\xfc\x12\xea\x13\x07\xe3\xfb\x8f\x72\xf0\x76\x71\x00\xd3\xe8\xf0\x17\x98\x55\x53\x35\x88\x4f\xa7\xff\xef\x06\x81\x9d\x99\x36\xf0\x58\x38\x14\x80\xb0\x0d\x78\x9f\x47\xe7\xd9\x58\xaa\x90\x1a\x53\x13\x94\x12\x75\xa1\xe4\x7b\x8c\x61\x59\x88\x28\xf3\x06\xec\x91\xe4\x11\xb5\x32\xb8\x0f\xb9\x05\xd4\xfb\xb6\x88\x83\x36\x74\xe8\x20\xa6\xf4\xa9\xaf\x8a\xd5\x1b\x0e\x77\x9b\x0a\x8f\xaf\xa9\xe3\x3c\x71\xb8\x84\x9f\xfd\xf0\xea\x63\x7a\x24\xce\x06\xe1\x46\x2c\x43\x1a\xde\xda\xaa\xa2\x86\x1d\x49\x94\x44\xac\x83\x7d\xaf\x58\xe5\x01\x65\x91\x72\xc3\xe6\x5d\xbb\x03\x4e\xe6\xeb\x81\x61\x46\x6c\x55\x7f\x74\xde\x07\xb4\x7d\x51\x35\xd3\x2c\x98\x9a\xe2\xcf\x12\xad\x3b\x8f\x46\xf6\x52\x4a\x5a\x47\x06\x8c\x39\xfe\x37\xea\x56\xfe\x9d\xaf\x5c\x8f\xd4\x9a\x83\xd1\x13\x54\x35\xdd\x6f\xe9\x17\x00\x5a\xd6\x78\x05\x82\x18\x7c\x6b\x60\xdc\xb0\x2c\x7c\xc9\xdf\x1a\xa1\xee\x20\xba\x0b\x48\x2f\x6c\x71\x91\xae\x9e\x01\x67\xb8\x74\x75\x7d\xce\xb2\x27\x18\xbe\x9f\xaa\x0b\x5b\xaa\x7d\x2b\xf0\xb9\x8f\x33\x7f\xce\x7f\x4a\x62\x7f\x12\x74\xc0\x73\xc6\x68\x2a\x4b\xdf\xe6\x57\xf1\x01\x4e\xec\xed\x33\x6e\xf7\x33\x9c\xe2\x85\xb2\xba\x7f\xe2\x1f\xca\xf0\x14\x49\xb1\x7a\x10\x6b\xde\x0e\x80\xb7\xb2\x2c\x59\xc1\x54\x74\xde\x5b\xb9\xd8\x45\x2f\x85\xb2\x59\x36\xfe\x7e\x8d\xa8\x59\xc7\x54\xf9\x6f\xb0\x62\xf7\xf5\x4b\xff\xd5\x35\xbd\x31\xed\xda\x9d\xe1\xd2\x83\xb6\x8d\x39\xfd\xe1\xd6\xa9\xe6\xff\xff\xca\xd3\x1e\x69\x11\x0b\xc7\x35\x79\x5f\x1e\xc5\x2c\x34\x85\x1a\x28\xee\xa1\x08\x7a\xbf\x9d\x1f\x3a\x13\x78\x70\x1f\xf4\x50\x7a\xe8\x12\x09\xf0\xa4\xa2\x9c\x99\x38\xef\x5a\xbd\xd3\x4c\x16\x91\x99\x30\xfb\x33\x15\x1c\xc7\xc7\x4e\xf8\xd1\x55\x1e\x6e\xed\x1c\x3a\x66\x29\xca\xe6\xdf\xf6\xa5\x75\x6a\x45\x20\x1f\x2d\xfc\xed\xdd\xf1\xa8\x33\x71\x97\x09\xb1\xb4\xe9\x86\x96\x26\x48\x54\xcd\x69\x27\xf0\x6d\x2f\xae\xbb\x24\x95\x8c\x33\xea\x27\xcd\x5d\xe7\xde\xb2\x5d\x47\x1e\xac\x2c\x04\x6a\x74\xd0\x45\x1e\xdd\x91\x0e\x5d\xee\x0a\x49\xee\xf6\xda\xcf\xab\xb4\xc4\x1d\xcc\xea\x35\xbc\xfe\xcf\x2e\xc4\xc9\xac\x2a\x57\xb4\xf3\xf5\x2b\x6c\x56\x1c\xac\x41\x0d\x01\x6b\xc8\x79\x6c\xbd\xfd\x8a\xa8\x9e\x7e\x5f\x64\x48\xfd\x0c\x80\x73\x73\x45\xab\xc4\xf2\x5f\xe0\x13\x79\xbd\xe0\xfb\x0d\x46\x53\x6c\x8a\xa6\x25\xd2\x8b\x8e\x64\x01\x38\x6b\x95\x5f\x02\x9f\xb7\x31\x46\x44\xdc\x38\xdf\x10\x0c\xda\xf7\x79\x39\x77\x74\xa1\xe1\xb6\x51\x2f\x8a\x40\xb5\xf1\x79\x3c\xb0\x7f\x37\x36\x7d\x25\x72\x3d\x9b\x70\x76\x77\x3e\xce\xdc\x6a\xd9\x91\x69\x6c\x2a\xf4\x81\xe7\xec\x0e\x54\x0d\x28\x2d\xe5\x48\xdf\xba\x9d\x3f\xc5\x27\x98\xfe\xfb\x5a\xf7\x34\xd7\xe3\x49\x58\x62\x64\x4d\x9f\xd1\x18\x3f\xee\xd8\x5b\x9e\xa8\x20\x93\xed\x22\x98\xc0\xae\xcc\x96\x66\x95\x63\x8c\xdd\x05\xee\x42\x68\xad\xf3\x0a\x9a\x23\x22\x69\x32\x06\x4d\xc8\xef\x93\x7f\xba\x5f\x7c\x9a\xc1\x28\x9f\xd9\x7c\x63\x62\xd3\xe6\x55\xd9\x5d\xc8\x47\x1e\x89\x23\x3b\xee\x84\x26\x8c\xa6\xaf\xf2\x12\x81\x1b\x20\x40\x06\xa2\xbf\x11\xce\x1a\xdb\x15\xbd\x0d\xac\x89\x4d\x44\x51\xf9\xb4\xfd\x22\x02\xd8\x61\xc3\x18\x42\x14\x4e\x77\xe1\xf8\xb4\x78\x00\xcd\xa2\xe8\x89\x8a\xc0\x9c\x4f\x99\xa2\x11\x07\x41\xeb\x87\xdc\x84\xa3\xa1\x90\x7a\xc4\x2a\xc0\xb0\x79\xaf\x66\xa4\x53\xa3\x73\x7e\x79\x41\xe8\x45\x7e\x20\x12\x4c\xb3\x50\x2a\xe4\xe0\x82\xaf\xda\xa1\x58\x31\x4b\xbb\x90\xb3\x63\x1f\x9e\x44\x10\x3c\xbb\x79\xdf\xf5\x55\x93\x94\x4c\x5c\xa6\xc6\xa5\x6e\xee\xdf\xc6\xf3\xce\x3e\x69\x34\xdb\xe5\xa7\x83\xb9\x9a\xe8\x7e\x20\x29\xf2\x29\xb4\xb4\xc1\x85\x90\x03\xee\xf0\x5c\x76\x49\xf1\xf1\x4b\x10\x9c\x06\x27\x1f\x84\xb8\xee\x8f\xaf\x1f\x6c\x36\x0f\x8a\xe2\xe3\x29\x4c\xa4\x2e\x24\xbe\x58\x6e\x02\x9d\xe3\x08\x40\x87\xfc\x37\x6a\x29\x92\x4f\x77\xa0\x14\x10\xd1\x02\xbe\xb4\x9a\x7d\x9a\xe4\x7e\x0e\xa9\xf0\x08\x75\x19\x1b\xfd\x38\x78\x6d\x39\x66\xba\x3e\xef\x6b\x38\x61\xe6\x92\x40\x23\xce\xc9\x37\x5c\xe3\xa1\xf0\x1f\x95\xa9\x54\xfc\x54\x8f\xc3\x5b\x06\xec\xfd\x03\x39\x5e\x93\x05\x44\x0e\x7b\x4f\xd1\xe4\x1c\x9d\x58\xad\xd8\x83\xa7\x54\xce\x6e\x43\x33\x93\x50\xea\x57\xa2\x22\xb6\x48\xe5\xcc\xcc\x43\xef\x91\xe7\xcc\x50\xe8\xbe\x1e\x49\xd7\x91\xd7\xdd\x94\x5f\xd1\xd4\x08\x76\xd0\xc6\x5e\x7f\x22\x8e\x50\x9c\x48\x3f\x2f\xcf\x26\x68\xc1\x4c\xf2\xc3\xda\xb9\x64\x82\xe5\xa8\x3a\x57\x14\x65\xe6\x62\xd1\x47\x7e\x0c\x1b\xb8\x68\x9a\xd7\x76\xfe\x67\xb3\xe4\x3f\xa2\x82\x35\x31\x53\x2e\x43\x16\xe3\xc7\x83\x42\x12\xb5\xcb\xd5\x64\x12\x7d\xe0\xec\xe1\xcd\x3b\xcb\x71\x7f\x1e\xbe\x80\xf0\xdf\x2e\xde\xc2\xae\xfa\x3f\x1a\xa6\xd5\xec\x84\xa6\xbd\x6e\x9b\x08\x8a\xa3\xb6\x4e\x91\x65\x2a\x7b\x2e\xb9\xf2\xa2\x42\x8d\x83\xf1\x7d\xee\x0c\xf1\x89\x51\x20\x81\x21\x38\x22\x7e\x6f\x24\x55\x3e\x0c\x0d\xf7\x8d\xba\x80\xd2\xf9\x99\x8f\x2c\x05\x0f\x11\x2b\x00\xfb\xef\x8c\x40\xd5\x6f\x31\xc0\x0f\xaf\x14\xa9\x73\x8e\x80\x76\xe1\x60\x83\xec\xd5\x24\xe8\xd7\x85\x26\x7a\xb4\xce\xc1\x6d\x90\xd7\xd1\xe5\x2d\xf6\x9d\xf3\xa3\x0a\x1c\xbe\x0e\xf9\xd0\x8a\x53\x04\x42\x6c\x2b\xbd\x9e\x8c\xaf\xb1\x25\xa4\x7f\x2a\xd3\xc1\xc8\x4d\x3a\x2c\xea\x20\xee\x90\x27\x95\x78\x0c\x0c\x40\xdd\x1b\x25\xe2\xc7\x0b\x9f\xa3\x40\xf9\x69\xd7\x07\x92\x4c\xe9\x3a\xbb\xec\x0d\xae\x96\xe1\x71\xf1\xce\xde\x1e\x6a\xad\xee\xae\xea\x14\x36\xb5\x6a\x9c\x95\x97\x16\x78\xf1\xf9\xfc\x01\x9c\x13\x77\xbb\x0d\xd2\xde\xe4\xc0\xfd\x11\xae\xa8\x9f\x78\xb1\xf6\xf6\xf2\x05\xf5\x82\x0b\x72\x78\x97\xb8\x8e\x7c\x66\xce\x0f\xeb\x6b\x9c\x3f\xe2\x9a\xba\xee\x4c\x21\x85\x72\x86\x71\x68\x73\x88\xae\xe7\x60\xe2\x12\x87\x5a\x52\x73\x72\xa8\x60\x76\x6a\xb4\x09\x32\xa3\xa6\x16\x40\xba\x1e\xb5\xb0\x45\x3c\x51\x4d\x48\xce\x03\x30\x11\x6b\xbf\x1a\xaf\x7a\x8c\x71\x89\xef\x0e\x42\x70\x70\x43\xcc\x4e\x5e\x1e\x3f\x3a\x0e\xce\x88\xad\x21\x99\xb4\x83\x01\x6c\x4c\x73\x09\x7a\x87\x4d\x46\xcc\x1c\x5e\x42\x39\xac\x0a\xb1\xf7\x23\x9c\xcd\x7c\xb2\x43\x17\x64\x30\xdc\x90\x07\x92\xfa\xf8\xda\x70\x0a\xcb\x58\x21\x22\xbe\x78\x30\x3c\x13\x0e\x9c\x68\xee\x2c\xcd\x38\x36\x9a\xc1\x4e\x5d\xb9\x8c\x6b\x02\x2b\xec\x98\x43\xa1\xf7\x4c\x90\x3d\x50\x80\x38\x79\x0f\x63\xe4\x05\xe8\x02\x72\x0f\x86\x3e\x74\x19\xdf\xec\xd7\x82\x43\x4d\x3d\x9f\x38\x2c\x96\xc4\x51\x48\x7a\x2c\x34\x59\x1c\x07\x82\x19\x7f\x48\xde\x36\xa4\x2f\xf6\x0c\x49\xdc\x0f\xa7\x46\x24\x03\x71\x7b\x1e\xc9\xea\x36\x7d\x05\x3d\xd2\xf8\x60\x9c\xbd\xbd\x7e\x29\xbd\x8a\x2d\x62\x93\x47\xcf\x27\x48\x0f\x83\x49\xc4\x09\x59\x81\x0b\x31\x3d\x8f\xc7\x5c\x87\xb8\x66\x1f\xbc\xef\x94\xf3\xd9\xee\x23\x28\x72\x95\x47\x0c\x9d\x8f\xdf\xab\x06\x6e\x58\x2c\xd4\xec\x8b\xc5\x1c\xef\x49\x31\x2c\x8b\x70\x9d\x98\x97\x3d\xe8\x26\x7f\x4d\x2a\xc6\xf8\x28\x9a\x6a\x4d\xdc\xcc\xf9\x19\x87\xad\x3b\xa5\x46\xe3\x74\xc2\x88\xcf\x97\x50\xb0\x09\x8a\xa8\x7e\x3c\xce\xd4\x29\x78\xa7\x33\xb0\x87\x47\xa8\x47\x10\x47\xe0\xd4\xa0\x81\x40\x32\xc3\xa3\xb0\x19\xf6\x54\xf2\xe8\x3e\x4d\xc3\xb9\x3c\xdf\x8c\xf6\x54\x3c\x58\x3c\xc8\xc0\x09\x65\x77\x36\x15\x4e\x21\x66\x0b\x93\xad\x70\x02\x95\x92\x53\x63\x2c\x24\x35\x65\x9c\x81\x20\x4d\x91\x51\xe5\xc3\xc7\x27\x92\x7c\x6c\x51\x20\xda\x66\xe7\xa8\x31\xfb\x2b\x91\xca\x3c\xb6\x54\x4a\x1b\x4a\x6f\x72\xac\x42\xb4\x76\x62\x9c\x7a\x1c\x12\x61\xe7\xfe\x3d\x30\xda\x18\x6f\xe0\xcd\xd8\xb8\x0c\x85\xed\x30\x1c\x74\xd5\x73\xee\x45\xc2\x0d\x11\x48\x9d\xad\xb0\x5d\x50\xed\x12\xb9\xf5\x20\x19\x49\x50\x45\x76\x94\xc2\x55\x31\x8c\xdd\x52\xdb\x6a\x1f\x3b\x90\xc0\xc0\x96\xb3\x1a\xb2\xfb\xa9\xe9\xd4\x86\x7e\xf2\xfc\xf4\x2c\x43\xae\xf0\x22\x97\x9c\x54\x26\xbc\x99\xa0\x09\x69\x20\x5f\x9f\xb0\x42\xba\x94\x6d\xce\x49\x3f\xe2\x73\x88\x73\x96\x8a\xeb\x59\x0d\xd3\x40\x7b\x8b\xff\xd9\x77\x2e\x00\xce\xa1\x09\xc6\xd0\x18\xe7\x8a\xef\x51\xb0\xea\x14\xe6\x87\xb0\x43\x43\x3e\x73\x19\x05\x1a\x04\xa2\x8e\x55\x0c\x3e\x92\xe8\xb3\xb8\x23\x95\x1c\x9d\x31\x15\x78\xb5\xb3\xf3\xa0\x60\xe8\x48\x77\xe9\x14\xc3\x26\x66\xce\xbe\x73\xe2\xd6\x66\x12\x06\x46\x3e\x8b\x4b\x2c\xbb\x05\x74\x3e\x01\x24\x2a\x29\x72\xf0\xae\xf2\xa5\x91\x8c\x00\x23\xa0\xad\xe4\xa9\x9b\x6b\xbe\xba\x09\x88\x65\x53\x5c\xcf\x8f\x7a\xd3\x6e\x35\xf3\xa7\xf3\x73\x1a\x29\x26\x81\xec\xbd\x86\xc2\x5e\xf8\xa0\x27\x52\x71\xc5\x56\x50\x3a\x56\xc7\x8c\xaf\x01\xe8\x81\xf3\xce\x34\xa2\x69\xf3\xf1\x21\x9e\xd5\xd6\x1d\xcf\x17\xda\x1a\xbb\x4d\x16\x42\xfc\x55\x1e\x65\xdd\x94\xb0\x2c\x89\x3d\xe2\x78\x8e\x36\x8e\xa2\x4e\x9f\x1c\x48\xce\x77\x1d\x3d\xdf\x45\x45\xc1\x2f\xdc\x63\xf0\x18\xe6\x60\x36\x24\xf3\x8f\x1f\x19\x48\x05\x96\x9f\xf1\xb6\x5d\x83\xeb\x9d\x9f\xa3\xe4\xcd\x5c\x2c\x39\xf6\xb2\xf8\x3d\x20\x88\x9e\xa0\x48\xc6\xf1\xc4\x70\x86\x01\x11\x8f\x53\x6a\x77\x60\xa3\x08\xc8\x29\x60\x3d\x26\xb5\x4e\xac\xa8\x0d\x00\x23\x1e\xa7\x4a\xfa\x2e\x7e\x21\x96\x7e\x70\x0d\x67\xe8\xcf\xd3\xf5\x80\x27\x31\x9b\xd1\x79\x0d\x91\xa9\x5b\x43\xe9\x7d\x3c\x9c\xb0\x28\xda\x65\x30\x92\x74\x84\xb8\x33\x17\x94\xe3\xc8\xc1\xf3\xae\x96\x14\x88\x9b\x5f\x62\x1b\x91\x48\x7f\x1d\xde\xf2\x81\xd7\x29\xf8\x88\x63\xa2\x9f\xfc\xf7\xd3\xe7\xcf\x0e\x74\x84\x6f\x1e\x5c\x5d\x5d\x3d\x40\xc5\x07\x7d\x5b\x91\x70\x48\x1f\x0b\x1d\xf2\x01\x5e\x30\xf9\xc6\x74\xab\xaf\x3f\xa3\x7f\x3f\xd5\xa7\x52\x38\x6b\x38\x67\x14\x98\xe0\x70\x4a\x76\x7f\x1f\x57\xd3\x3d\x17\x3f\x66\x33\xde\x7e\xba\xb0\xa9\xcb\x79\x14\xe7\x1a\x74\x74\xb3\x6a\x69\x20\xa7\xfc\x4f\x52\x40\x7a\xf3\xeb\x3d\x29\x4e\x46\xa0\x24\x6e\xd5\xf1\xa0\xf0\x7b\x0c\x15\xdd\x14\x47\x65\xbc\x98\x42\x33\xbf\xfd\xed\x9f\xb1\x58\xee\x04\x4a\xd6\x08\xba\x20\x84\x45\x62\x49\x70\x1d\xb2\xce\x8c\xaf\x44\xf7\xa7\x51\x8b\xec\x8b\xdb\xd4\xd5\xb5\xbc\x17\x81\xec\x65\x42\x36\xb2\xbc\x28\xd6\xd5\x9c\x8d\xea\x72\x3e\x5b\x28\x2d\xd7\x7c\x25\x38\x57\xbf\xe9\xc6\xeb\x38\xe0\xf2\x71\xf8\xcf\xa0\xbe\x24\x3b\x99\x3f\xc2\xa3\x47\x1b\x1c\x18\xa4\x22\xb6\x4e\xa3\xd5\x74\xc1\xcd\x44\xb5\xe8\x12\x6f\x47\xa1\x20\x8a\xc3\x2b\x9a\x70\xbd\xcc\xc6\xc8\x7c\x12\x05\x73\x78\x1f\x4f\x23\x47\xde\xbf\x23\x86\x8b\x5f\x59\x3e\xd0\xdb\xe3\xcd\xcd\x39\x64\x25\xf1\xcb\xf8\xbb\x8f\x5a\x08\x3b\x3e\xda\xb6\x1e\xed\x2a\x92\x78\xd6\x05\x86\x88\x2b\xa7\x3c\xb5\x44\x80\x91\x30\x17\xd9\x21\x22\x7a\x8f\x6c\x77\xca\x8c\xb9\x95\x97\xb5\x02\xb7\x1a\x1f\xfa\x0a\x3b\xd5\x55\x24\xde\xd3\xf0\xff\x3c\xee\x47\xf5\x19\xd7\x8f\x9a\x2e\xc7\x7d\x88\xdb\x19\x8e\xf6\x12\xb9\xea\x0c\x4e\x54\xe4\xc1\x46\xf4\xaf\xf7\x6b\x4b\x04\xc0\x74\xd3\x4e\xf0\x58\xd9\x49\x81\xcd\xb2\x3c\x29\x39\xfc\x5c\x4c\x09\x33\xcf\xc4\x6d\xe4\x14\x95\x24\x9e\x1f\xe1\x84\x3b\x8c\x61\xd2\xb4\x44\x89\x6a\x8c\xeb\xa0\x6c\xf8\xb4\xd8\x70\x7f\x93\x72\x54\x8b\x91\x39\x31\xf7\x91\x72\x5a\x35\xd7\x49\xce\x2c\x1a\x32\xc9\x44\x74\xda\x9a\x75\x6f\x06\x53\x0c\xe0\x69\x7a\x86\x9d\x95\x38\x40\x20\x74\xf1\x4c\x72\x77\x7b\x8a\xf1\xd9\xaa\x5d\x23\x85\x6f\x24\x51\xd8\xd2\x2b\x8e\x89\xd1\x4f\x25\x0d\xf0\x60\x69\xe2\x03\xa1\x24\x89\x2d\xaf\x6e\xed\xfa\xf6\x74\x07\x49\xd5\xdb\x8c\x79\xe3\x44\x06\x4f\x72\x97\xf0\x66\xd0\x1a\xf8\xd1\xf8\x5a\x23\xdf\x21\x68\x46\xa8\x18\xcb\xd5\xfb\xd7\x68\xa2\xea\x8e\x5c\x30\x53\x13\xb6\xc6\x87\x05\xd7\xd3\x06\xbe\x09\x5b\x00\x27\x95\x67\xc3\x19\x37\xb9\x23\xdb\xcb\xde\x11\x06\x0c\x1e\x4d\x8c\x6a\x47\x32\x04\xbc\xaa\x70\x7e\x3e\x23\x05\xf2\xca\x22\x6f\x40\xdf\xae\xc2\x23\xcb\xfc\x1a\x97\x7b\x79\x95\xe1\xc0\x00\x89\xa6\xb6\x79\x81\x30\x42\xfe\x24\x17\xc3\x73\xf9\x47\xbf\xf1\xad\x7e\xfa\x84\x4d\x7c\xb9\x5f\x65\x8f\x08\x6a\xfa\x36\x7f\xa6\x4d\xd8\x8b\xe6\x6a\x81\xbf\x38\x0b\x82\x9d\x3f\x15\x71\x94\xad\x6e\x05\x5e\x42\x20\x79\x49\xb6\x26\xc1\xb8\x3a\x80\x54\xe1\x56\xac\x1f\xee\x08\x8c\x92\x2f\xdd\x2f\xbc\xd4\x1d\x8c\x7e\xcc\x85\xf4\x07\x6e\x57\xe1\x73\xd5\x70\x5e\x11\x07\x71\x1d\x97\xab\x9d\x27\x14\x3b\x34\x12\xc3\x79\xf8\xfd\x33\xfd\xc5\xb1\x1c\x9c\xdd\x0d\xc1\x1c\xdf\x4a\xa7\x92\xaa\x9a\x3d\x08\x66\x13\xb1\x22\xae\x48\x42\x7c\xf8\x6f\xf5\x91\x57\x98\x00\x52\xb4\xf9\x79\xe7\x5c\xbe\xda\xf0\x7d\xdb\x1a\x57\xf3\xa4\x35\x0f\x46\xf5\x24\x21\x3a\x07\x3c\xd3\xbf\xe1\x3b\xdf\x02\x1a\xf5\x52\x73\x1f\x73\xa8\x57\xf3\x30\xf5\x18\x65\xe2\x25\x43\xb2\xcd\x7d\xab\x51\x41\xbc\x27\xda\x51\x87\x4c\x55\x8b\xf8\x21\xdf\xec\xdb\xde\x3d\x76\x27\x30\x5d\xbe\x9e\xc8\x81\x12\x5c\xf4\x02\x1c\xcb\xa3\x8f\x24\x61\x65\x5a\xdf\x07\x24\xae\x9a\xb5\xf0\x23\x2f\x73\x08\xaf\xe0\x6f\xc2\x5b\x10\x9a\xc6\xa9\x09\x39\xd7\xd9\x60\x41\x16\x09\x7b\xd5\xb1\x8c\xf0\xe8\x44\x57\xdc\xfe\x2f\x36\x45\xa4\x9b\x80\x9a\x9c\x10\x9f\x9c\x6d\x4f\xf3\xf6\x75\xd1\x5c\xd5\xe2\xfe\xe8\x1a\xba\x6a\x4b\x7e\xe1\x40\x72\xb3\x27\x0b\xc9\x2f\x93\xfd\xc0\x3a\xdf\x09\x7e\xe5\xe3\xee\xe3\x00\x09\x69\xc3\x20\x5b\xa8\x4b\x9b\xe4\x78\xbf\xab\x06\xf9\x1b\x52\xe2\x11\xf2\xb4\x93\x8c\xa3\x6f\x33\x0f\x49\x67\x9c\x10\x84\xca\x1e\x8c\x96\x36\xaa\x10\xc2\x41\x3d\x09\xa8\x52\xb9\x41\xde\x2e\x66\x3c\x7c\x02\x90\xe2\xea\x54\xd8\xe8\x41\xbf\x78\x14\x58\x18\x16\x06\x65\x81\xc6\xa8\xe7\x97\x9a\x84\xfe\xd5\x17\x34\x1b\xef\x03\xd6\x74\xdd\x4e\xd0\xdb\xed\x51\x4b\x8e\xee\x16\xea\xfb\xa1\xb9\x51\xd3\x63\x4d\x6b\xb9\x24\xd8\x81\xae\x24\x29\x67\xd3\xae\x5f\x45\xc9\xb8\x47\xaf\x27\x11\xf1\x0c\x5e\x39\x0f\xb0\x7b\x03\xfd\xd3\x3c\xb7\x51\xa8\x3f\x9e\x7f\xf7\xb1\xfe\x33\x1f\x17\x88\xf4\xb9\xe2\x54\x37\xe8\x8f\x23\xf3\x44\x88\x2c\xa2\xc0\x00\x38\x72\x99\x66\x2b\x79\x39\x61\x37\xb0\x9c\xfb\x18\xef\x1e\xdb\x66\x63\x70\x69\xfa\x3d\x7e\x22\x0e\x88\x33\xd0\x96\x9c\x12\xc5\xe4\x1b\x12\x0e\x39\xbb\x32\x42\xe5\x90\x60\x55\x4d\x93\x76\xae\xd6\x48\xff\x3d\xc9\xdc\x9a\xbe\x8f\x14\x05\x33\xa2\xc9\x10\xc4\x28\xc6\xd9\x63\x7d\x2d\x00\xb8\x9a\xf0\xdb\x08\xd9\xc2\x23\xeb\x81\xab\xc3\x85\xfb\x2a\x39\xc4\x6b\xb6\x9f\x38\xb5\xb9\x50\xa6\xf3\xf4\x6e\xdd\x61\xad\xd9\xa4\x35\x6f\x58\xf0\x89\xd6\xe4\x75\xbe\xc7\x10\xbf\x7a\x5c\x8b\x3a\x0f\x63\x21\x93\x52\xd4\xce\x9f\xb4\x86\xc8\x06\xd6\x0b\x18\xaa\x54\xd6\x24\x82\xf3\xbb\x33\xd1\x45\x0e\xa1\x17\xaa\xa5\xd8\x24\xd3\xa6\x6e\x8d\x3f\x1f\x59\x86\xff\xb1\xa9\x6b\xa7\x5b\xdf\x11\x86\xfe\x77\xf9\x16\xec\xc9\xbe\x1a\x5b\xf4\xc6\x69\x58\x7d\xe9\xae\x7c\xac\x7f\xd7\x7d\x7f\x5a\x67\x7f\xb2\xcc\x21\x37\xf8\x80\x9c\x99\x43\xbf\x02\x42\xf6\x3f\x28\x41\xeb\x70\xe5\x26\x14\xd4\x0f\x49\x00\xaa\xd9\x3f\xa7\x48\xc1\xc9\xea\x79\x14\x8e\x14\x24\xd0\x7d\xd7\xfa\x03\x1e\x36\x54\x68\x07\xc9\x6a\x54\x20\xbf\xa5\x52\xc0\xd8\xae\xab\x5b\x33\x4e\x04\x3e\x75\x9b\x7b\x30\x48\x66\x33\xbc\x45\x76\x99\x6c\xac\xf9\x68\xe7\xfd\xd5\xad\x49\x6d\x86\xa3\x07\x2b\x9c\xce\x6c\x33\x3e\x62\xa6\xea\x86\x33\xbd\x19\x52\xe0\x1f\xca\x77\x33\x75\x1d\xe4\xb4\xe0\x2b\x77\x25\x24\xae\xb9\xa2\x0c\xc9\xeb\x8c\xde\x03\x34\x36\x50\x8d\x5f\x34\x8f\x91\x39\xb1\x2c\x92\x05\x4c\x8e\x1d\x11\x19\x56\xf3\x90\x57\x3a\x2d\x70\x4c\xd9\x5f\x4c\xf3\xdd\xab\xdc\x17\x47\xb0\x92\x4c\x66\x7e\xb2\xa3\x60\xba\x95\x51\x97\x13\xc1\x39\xae\x48\x2f\xf0\x9e\xca\x21\x19\xbe\x53\x8b\x2b\x93\x57\xf3\xe7\x2b\xdc\x2a\xb5\xa1\x40\xee\x10\x63\x2f\x43\x2d\x20\x81\x04\x46\x2e\x97\xed\x3e\x14\xe8\xf9\xed\xc2\x1d\xe8\xc4\x7e\xcb\xa9\xac\x0d\xfb\x2b\xb2\x45\x6a\x94\x04\x9a\x17\xa3\xf4\x27\xbd\xb7\x5a\xb9\xab\x45\x38\x8a\x7e\x35\xea\x02\xaf\xd5\xa9\x78\xc0\x69\xe6\x21\x16\xcc\x90\xc0\x7d\xfe\x92\xe3\x87\xdc\xa7\xd1\x50\xe5\x33\xc4\x2d\x4d\xdf\x36\x3f\xf4\x3e\x0a\x4f\x88\x7d\x11\x67\x99\x00\x4a\xf2\x8d\xe8\x69\xec\xd2\x0a\x1a\x7e\x84\x59\xb2\x26\xd8\xc1\x43\x8c\x33\xd7\x16\x8b\xd9\xe3\x1e\x59\x66\x8e\xfb\x8c\xe1\xf6\x74\x5a\x19\x33\xee\xec\x80\x1f\x5d\x10\x49\x57\x92\x70\xb0\xb9\x92\x9d\x22\xab\x68\x2c\xf2\x4e\xe8\x68\x2c\x83\x68\xaf\x31\xec\x9e\xf1\x84\xee\x38\x08\x43\x9e\xcc\xdb\x3d\xba\xdc\x67\x67\x8d\x1c\x42\x98\x07\xc4\xe3\x74\xe9\x2c\xe2\xfe\x6a\xe7\xb5\x55\x8c\x64\x2b\x98\xe9\x77\x9c\xee\x52\xcc\x7b\xc3\x8e\xc4\x9e\x27\x43\x37\x22\xee\x60\x2a\x1f\xde\x87\xb2\x8c\x6b\xd7\x84\xab\x40\x22\xb9\x59\x5d\x4c\x3a\xaf\x85\x5a\x72\xed\x31\x64\x33\x32\x74\x27\xe1\xea\xe6\xb5\x23\x81\xf3\x77\x89\x0e\x52\xc1\xe5\x82\x83\xf8\xfb\x30\xba\xbf\x4d\x9b\x85\x89\x8c\xa5\x45\x65\x1f\x8e\xc5\x3e\x75\xdb\x73\x38\x8e\xa8\xd9\xf4\xbc\x68\xf7\x00\x8e\xd6\x99\x8f\x04\xf8\x0d\xf8\x2b\x5d\x9c\x03\xd6\xd0\x2c\x12\x6f\xb7\xe8\x48\xe0\xf7\x37\x37\x01\x41\x89\xe8\xac\xef\x5d\x8b\x6d\x2c\x98\xc2\xdc\xcb\x16\x93\x7b\x36\x1e\xa0\x8f\x13\x73\xd3\x1d\x45\x7c\x0c\xe5\xa6\x88\x87\x0c\x29\x2e\x9e\xa8\x50\x73\xec\x33\xe5\x88\x46\xb9\x91\x27\x90\xaf\x78\x4b\xf9\x09\x46\x2f\x78\x7b\xf6\x33\x24\xc9\x2c\x3c\x45\x33\xe0\x44\x7f\x6c\x48\x9e\x5d\xdd\x32\x28\x66\x4f\xd7\x31\x13\xca\x3f\x68\x6c\xfa\x6e\xf6\x1f\x1a\xdb\xe1\x8e\x7d\xb5\x7b\x84\x07\xf1\x00\xaf\x77\x32\xa5\x0f\x19\xf8\xce\x37\x42\x26\x36\xaa\xdf\x51\x21\x88\xc3\xef\xaa\x17\xb1\x77\xec\xb0\xa2\xfa\xf4\xa8\x3f\xab\x3b\x94\x43\xa3\x35\xe9\x2b\x9a\x29\xc7\x3b\xbd\xc6\x66\x5e\xff\x52\xb5\x75\x2f\x19\xe1\x9a\xc9\x4d\xdb\x07\x72\x27\x4f\x70\xae\xda\x9b\x5f\x90\x7a\x2c\x7e\x42\xe6\x47\x5e\xa6\x57\x77\xef\xf8\x67\x95\xe7\xd1\xb3\xc9\xb8\x0c\xb5\xf3\x97\xea\x5b\xcf\x2a\x34\x33\x34\x55\xab\x06\xcf\x78\xec\x7b\x5c\xa5\xef\x2e\xe4\x59\x1a\x56\x99\x0e\xc3\x23\x35\x2e\xfb\x0d\xb8\xda\x88\xd7\xab\xef\xdc\xfc\xf0\x52\x29\xa4\xca\x4e\x31\x2d\x04\x38\x6e\x9a\x1a\xcd\xcf\x9f\xca\xbf\x41\x60\x25\x09\xd8\xe2\xe1\xc6\x35\x0b\x60\x34\xd3\x5c\xd3\xf2\xf2\xa7\x9b\xff\xc3\x89\x78\x91\x04\xb5\x23\x41\xe9\x0c\xff\xff\x2a\xbb\x5f\xb0\x05\xdb\xcd\x9c\x0d\xc0\x78\xd7\x49\xa4\x5c\x6f\x26\x8e\x41\x7c\xf8\x0f\xf4\x4b\xef\x38\x91\x34\x72\x8d\xa1\xb2\xd9\xb9\xb7\xd2\x90\xb8\x1b\xe8\x90\xd3\xf9\x4c\x74\xbe\xc0\x55\x3a\x14\xa5\xf4\x7d\x74\x4d\x0e\x9b\xf9\x87\xcc\xf0\xb4\x6b\x81\xa7\x5d\xa3\x57\x7d\xc2\xb7\xe1\x23\x47\xa1\x44\xd3\x64\xbb\xac\xd2\x49\x59\x7a\xdc\x87\xef\x92\xe6\xaa\x48\x3f\xfa\x9c\x56\xc9\xd7\x7c\x35\xee\x52\xb8\x75\xf2\x29\x71\x43\x8d\x06\x17\x9c\x51\x93\xcf\x1c\x21\xae\xe9\x2b\x0b\x36\x66\x49\x32\xe1\x18\xc8\xfa\x47\x7a\xe2\xaf\xfa\x34\x77\x3a\x4b\xb1\x97\xc7\xdf\xce\x7b\xe3\x7c\x28\xab\x86\x14\xff\xb8\xcc\x29\x23\x69\xb3\x2e\x5e\x22\xfe\xea\x83\xbe\xe3\x8f\xa3\xba\xc2\x7a\x92\x4f\x78\x45\x04\x17\x79\x41\xcd\x4d\x11\x58\xfc\xdc\xd7\xf2\xba\xdc\x04\x2d\x4e\x98\xbe\x9f\x7b\xed\x74\xba\x86\x3c\xab\x2e\x99\x09\xdb\x7e\xcb\x99\x03\xa6\xe0\xda\xbe\x9e\x1f\x8b\xde\x95\x40\x40\x1d\x40\xec\x1c\xe7\x5e\x6e\x38\x2d\xa0\xcb\xf9\xa3\x0f\x22\xf7\x85\x60\xf3\x39\xde\xeb\x24\x25\xbe\x0e\xae\xd7\xfb\x1b\x4a\xfc\x53\x6f\x6f\xcc\x79\xaa\xee\x3e\xc7\x43\x67\x2a\x0f\x40\xf5\x4d\x5f\x91\xb5\x41\xc4\x09\xb1\xe9\x8e\xe8\x1c\xb8\xfd\xb0\xa6\x42\x72\xff\xdd\x2d\xfd\x81\x41\xb3\x11\x56\x52\x5a\x9a\x74\xb8\x2a\xc9\xfa\x74\x97\x83\x1c\xaf\xb7\xb5\x15\x8f\xf7\x96\xa6\x7e\xcf\xb0\xd7\x65\xb7\x58\xaf\xdc\x0b\xf7\x4a\x42\x20\x4d\x64\xf4\xae\xa2\x77\x20\x88\xcd\xf5\xad\x4f\x66\xbe\x6b\xe4\x71\x73\x13\x23\x4e\x46\xc9\x43\x74\xc6\x82\x6c\xf4\xa6\xa1\x0e\x40\x78\xb1\x76\x9f\xee\x2c\x62\x21\xd7\xf5\x0a\x86\x4b\x3c\xae\xc0\x37\xed\x2f\x8c\x7f\xfd\x16\x81\xc0\x9a\xd2\xf4\xe3\x19\x95\x7f\x26\x29\xcf\xca\xb7\x86\xef\xa2\xed\xc7\x9f\x10\x39\xd4\xfa\x32\x5e\x72\x9d\xcb\xb4\x20\xec\x57\xd3\x9b\x53\x19\x4c\xb2\x6f\x57\xf0\xb5\x66\x06\xff\xe9\xfe\x81\x4c\x51\xd7\x80\xa1\xbb\x55\x6a\x65\xc8\xdd\xbe\x55\x8a\x3a\x88\xbc\x44\x92\xe9\x06\x0a\x13\x8b\x4c\x9c\x23\x3a\x58\x90\x86\x6b\xf0\x09\xbb\xfe\xc8\xcb\xa5\xea\x78\x6b\x7c\x14\x3a\x93\x41\xdf\x85\xe7\x51\x83\x39\x30\x71\x41\xdc\x85\x8b\x78\xa8\x13\xc4\xf0\x7b\xc6\x79\x2b\xae\x92\x33\x1a\xb6\xf1\x96\xba\x27\x61\xc2\xcc\x5f\xf2\x3f\x72\x9e\x6b\xa6\xcf\x84\xb3\xf5\x2d\x6e\xbb\x17\xeb\xa6\x6d\x7a\xd2\x70\xcc\xfc\xbb\xa6\xc5\x1f\xb4\x42\xa2\xda\xa5\x82\x83\x83\xe7\xab\x99\xeb\x45\xcf\xf9\xf2\x5e\x8a\x66\xff\x14\xdf\xca\x5c\xeb\xc5\xb5\x58\xa0\x71\x75\x60\x69\x5f\xf1\x2d\x0d\x4b\x38\x71\xcd\x17\x6a\xa6\x4f\x64\x0e\xad\xd6\x2c\xbb\x9c\xc6\x57\xcc\x1d\xf0\xf3\x25\xdf\xfb\x25\xb0\xdb\x86\xf3\xd9\x2e\x2a\x42\x6e\xbf\x5d\x60\xea\x84\x73\x12\xca\xb7\xc2\x27\x1e\xde\xfc\x6a\x89\xa8\x25\xc1\xc7\x49\x0f\xd8\x74\x07\x0f\xc6\x38\x6e\x41\x87\x18\x8d\x7a\xa2\x3a\xb2\xd2\x8c\xab\x3e\x29\x97\xc6\x05\x49\x4e\xd4\x75\xa8\xbd\x30\xf9\x36\x45\xec\x63\xfa\x32\x81\x55\x06\xdc\x85\x1d\x57\x6d\x0a\x4b\x71\xc5\xb2\xa8\xcc\xa8\xd2\xf7\x7a\x04\xec\xac\xc4\x5e\x35\xa3\x6a\xc4\x1d\x69\xc4\xbb\x2a\xa9\x40\x33\x1e\xa2\xe2\x65\xdc\x5b\xb3\x24\xfe\x48\xc7\xde\x73\xfa\x57\xbd\xe4\xe1\x11\x4b\x45\x31\xe8\xb2\x69\x3a\xe8\x63\x5b\x88\xb3\xec\x26\x19\xa1\x0e\xc1\x83\xa5\xe4\x64\x7e\xe8\xe0\x06\x02\x2d\x55\xd9\x83\x44\xae\x3d\x85\xc4\x0d\x52\xfb\x52\x97\x6d\x0f\xfd\x99\x4e\xa8\xa4\xdf\x63\x57\x40\xfb\xe8\xe9\x29\x41\xee\xad\xea\x3b\x1e\x55\xf3\x5d\xa7\x54\x4a\xea\xc9\x85\xd9\xd9\xb9\x89\x5b\x39\x02\xe8\xfe\xca\xd3\xdd\x73\xc5\xe9\xfe\xe5\xbd\x3e\x5c\x03\x2d\xfb\xd5\x6b\xd3\x21\x0a\xf2\x62\xc1\xbe\x16\xa1\xb1\x13\x07\x94\x3d\x64\xa0\xec\x31\x01\x65\x67\x00\x72\xad\x26\xb4\x42\x07\xe7\x06\x39\x34\xe0\x57\x13\xad\x04\x7f\x51\x0d\xeb\x45\x72\x28\x3e\x94\x43\xd1\x37\x96\xea\x40\xc8\x78\xb0\x50\x3d\x47\xb7\x33\x64\x45\xdf\xf2\xf3\xae\x15\xbf\xbf\xbe\x1d\x28\x70\x99\x4b\x1f\x99\x34\x88\x94\x6a\x72\xb8\xaf\xae\x49\x1e\x9c\xfb\xac\x6a\xec\x3b\xb8\xaa\x9c\x06\x35\x39\xc6\xb8\x21\x56\xf8\xa8\x21\x66\xcf\xc2\x1e\x9c\x6b\x49\x95\x89\x0e\xd8\x64\xdf\x1d\x8d\xf9\xa7\xab\x73\x92\xd3\x6a\x67\xc2\x3c\xa1\x43\xef\x80\xdd\x22\xf1\xc3\x2d\xc0\x6e\x2c\x02\xab\x0a\x68\x26\x75\xc6\xd0\x3a\x00\x95\x94\xf4\xc6\x1e\x20\xaa\x8e\x4b\x20\x8f\xbe\x5a\x42\xc4\x6b\x2a\xea\xbe\x96\x5b\x5e\x7e\xb7\x44\xcf\xb7\xa0\xb5\x4b\x35\x7e\x83\xd0\xdd\x13\xf1\x0d\xb9\xb8\x03\xf9\xc7\x36\x05\x2a\xe8\x0f\xee\x93\x13\x6b\x0b\x7d\x03\x11\x04\xa5\x25\x53\x99\xc5\xa4\x48\x84\xbd\xd4\x08\x20\x25\x9a\x63\x51\x92\x2b\xfa\xa6\xd8\xf7\xb8\xe5\x14\x63\x1a\x7c\x8a\x8c\x55\xec\x5b\x1b\x45\xf9\xe8\xd4\x5a\x97\x8a\x2c\xaf\x82\x73\x76\x98\x65\x7c\xc3\x28\xef\x30\xec\x77\xf6\x9b\xb9\xca\x49\x7a\x2d\x9d\x22\xab\x21\xe2\xcd\x26\xae\x46\x6c\x5e\x4f\x1e\xd9\x75\xb0\x9c\xb8\x5b\xae\x83\x93\xea\xac\x45\x0e\x35\x33\x4e\x6a\xc6\x8c\xe4\x54\xf3\x9a\xed\x6c\xd7\x3f\x0b\xa8\x36\xfb\x47\x24\xd1\x72\xbc\x44\xbe\xd9\xfa\x58\x09\x5b\x66\x1c\x49\xcb\x21\x37\xe1\x49\x80\xf1\x23\xda\xde\xba\x3c\x7c\x0f\xf4\xb8\x72\xef\x81\x0a\x4b\x0f\x6f\x58\xdc\x72\xab\x1c\x90\x17\xee\x52\xc5\x4b\x26\xa5\xad\xd2\x2e\x02\x2d\x1d\x47\xcf\x64\x44\x21\x23\x7c\x42\x05\x70\x26\xb0\x18\x74\x6c\x33\xcc\xa7\xc8\x8f\x1d\x0d\x10\xc0\xc1\x92\xe1\xbe\x16\x24\x14\x98\xf7\x83\x17\x16\xbf\x83\xff\xe1\x14\xae\xc6\xaf\xab\x2a\xae\xd2\x89\xee\xbd\x58\x4e\x41\xa7\x5e\x8f\x0e\xaf\x56\xff\x07\xbd\x93\x1d\x77\xed\x5e\xcb\x1e\xf4\xfc\x1f\xf3\x5e\x76\x84\x9e\xd8\xd1\xf4\xd4\x3f\xf6\x32\xf5\xe2\x56\xfa\xde\x98\x3c\x21\x3c\xe3\x28\xc6\x5b\x79\xe0\xd8\x5b\x6a\xc0\xe1\xf8\xcb\xc0\x0f\x89\xbf\x0d\x2f\x69\xc4\xdb\x92\xca\x99\xb3\x7d\x40\xd7\x29\xeb\x93\xaa\x3b\x1e\x73\x19\x8c\x49\x3e\x8d\xee\x90\xe5\x33\x27\x97\xa7\xc3\x41\xd2\xcb\x8b\x2f\xbd\x94\x20\x64\x84\xad\x8c\x24\x02\x56\xb9\xff\x3c\x95\xa9\x5c\xec\xb1\xca\x9d\xa6\xa7\x32\xb0\xc0\x4f\x31\x27\x69\x03\xb9\x86\xd2\x60\xd8\xe7\x6d\xb9\x36\xa1\x3c\x9e\x9a\x7c\x8a\x72\xfd\xca\x07\x79\x77\xb7\xf0\xa1\x16\xf2\x75\xd2\xcd\x2c\x1a\x78\x12\x34\x30\x3d\x38\x86\x1b\x30\xde\x69\xc8\xa1\x93\xbf\x7c\xbd\x68\x6c\x37\x7f\xdc\x20\x4f\x94\x7c\x40\x38\x1d\xf2\x6e\xb5\x9d\x87\x61\x73\x55\x51\xcf\x1f\xd2\xbf\xd9\xa3\x67\xc9\xe7\xc9\x87\x67\x01\x38\x09\xe5\x9f\x1a\x2e\x2e\xd9\x16\x40\x8b\xf5\x55\x36\x7e\x02\x36\xaf\x36\xf0\xbf\x51\x37\x48\x3c\x87\xd1\xf0\x3b\x26\xcd\x0c\x2f\x38\xf1\xa3\x82\xab\x38\x9b\x26\x9f\x74\x21\x67\x03\xe2\xcb\xcd\xa5\xe6\x00\x54\x4c\x43\xa2\xe0\x0c\x84\x0f\xd5\xd0\x9c\xa8\x70\x41\x92\x88\xc0\x69\xc6\x8f\x9e\x45\xa5\x1e\xe5\x5d\xd7\x96\xcb\x1e\xd7\xfa\xc0\xfb\xa1\xfc\x72\x0e\xfb\x63\x28\x92\xdc\x52\x40\x3c\xf1\x50\x95\xc5\x44\x83\xf2\x18\xa8\x83\x9b\x7e\x0d\x94\xab\x48\x5e\x44\x49\x88\xd8\x4c\x8d\x91\xaf\xa6\x46\x50\x87\xc9\x41\x22\xa0\x1b\x1c\x42\x0b\x9b\xcf\x9f\x92\xaa\x5e\x64\xa7\x87\xae\xc0\x6e\xba\xad\x3c\x82\x32\x4d\x82\xd9\xe9\xd3\xb3\x93\x18\x98\x69\x09\x1f\xb3\x98\xa0\x50\x12\x11\x55\x52\x4b\xbd\xe5\x34\x00\xc5\x3a\xe2\xb4\x38\x7a\xc4\x0f\xce\xee\x00\xfd\x60\x49\x01\xf9\x93\x5a\xd2\x1e\x70\x67\xa4\x09\xc0\x0b\xe9\x45\x63\x97\x23\x00\x3e\x01\xe4\x14\x42\x5c\x27\x3c\xf8\x25\x5a\xd1\x0d\x6b\xa5\xb1\xab\xc8\xce\x96\x7d\x7c\xf0\xf1\x2c\xdd\xdf\x8b\xae\xb2\xf3\xc7\x2e\x9e\x33\x3b\x2a\xcf\x59\x4f\x3f\x7b\x72\xea\x91\xf1\xba\xdc\x02\x6a\x81\xb8\x21\x92\xff\x9e\x63\x96\xf2\xb2\x11\x3e\x78\xd4\x46\x55\xb6\xb8\xcf\xe5\x00\x71\x33\x72\xe2\x3c\xd5\xc0\xf1\xec\xe4\xf0\xe9\x60\x28\x9c\x6d\xce\x89\x9b\x18\x54\xa5\xa3\x42\xea\xdc\x07\x2e\xd5\xad\x67\x58\xe5\x96\xfd\x10\xac\xf9\x39\xa0\x3c\xce\x75\x05\x09\x60\xe4\xcb\xb6\x83\x25\xa5\x12\x50\x9e\x12\x4d\xe4\xe4\xa6\xb2\x90\xe7\xb2\x69\x60\xcb\xa0\x5e\x22\xe0\x46\x6f\x75\xc6\xaf\x55\x46\x4c\xf5\x16\x27\xbc\x9d\x63\x9a\x76\xbc\x8b\x5b\x8e\x25\xa4\xdf\x81\x95\xa1\xcb\xde\x3e\xa8\x85\x70\x7f\x76\x47\x88\xf2\xd4\xde\x5e\x25\x78\xad\x0d\x66\x38\xc8\x4b\xbb\x23\x66\x26\x6a\x70\xf4\x66\xe8\x0e\x94\xed\x8c\x95\x11\xa4\x3b\x2b\xe2\xe4\xed\xe7\xc0\x9a\xa8\x35\xf2\xed\x76\xe2\x8e\xe7\x30\x3c\x29\x98\x40\x52\xe3\x08\x19\xb1\x91\x77\xdf\x2e\xd0\x28\x8e\x75\x07\xd4\xf0\x88\xd4\xcf\xcd\xf9\x79\x45\xba\x3e\xb2\x0c\x1b\x64\x53\x23\x1e\x56\xd6\x58\x78\xf3\x26\xad\x5e\x5a\xde\x7a\x30\x81\xb2\xf1\x70\x0d\x9f\x6a\x1f\xdf\x9d\x3d\x69\xd6\xa2\xda\x73\xb9\xaf\xd6\xf6\x6c\x06\x6b\xdd\xc5\x81\x73\xff\xf7\x2c\x3d\x82\x0b\x43\x80\x71\x48\xd4\xe7\x78\x08\x2c\xba\xb5\x4d\xd3\x85\xe7\x96\xb2\xd1\xe3\x79\x6e\x69\x70\x09\xbb\x5a\xc8\x93\x2b\xc3\x2a\xcc\xf7\xbe\x75\x21\xf7\xc7\x50\x5f\x3a\xbc\x8d\xe7\x6b\xd3\xec\x3e\xa8\x2a\x0c\x96\xcd\x3a\x74\x0a\x37\xa8\x41\x0c\xf3\x29\x7f\x8b\xe6\x00\x7f\x71\xa5\x68\x46\xcc\xe0\xdc\xf9\x5e\x1c\xca\x93\x63\xcf\x2d\xc1\x72\x27\xa9\x61\xd1\xdd\xe1\xff\x08\xa6\xa0\xb8\x52\x24\xb0\x85\x8f\x91\x6c\x14\x3e\x26\xd2\x5e\xf8\xcc\xe3\x9c\x18\x8d\xb5\x55\x4c\x37\xa7\x4f\xa6\x0a\xfd\xe3\x7b\x16\x11\xcd\xac\xaf\xdd\x43\xa2\x73\x24\x51\xbd\xf7\x69\x5c\xc3\xe3\x79\xf8\xd1\x37\x21\xb5\xed\x5f\x88\xe4\xcc\x97\xf7\xb2\xeb\xec\x1e\x1d\xa3\xcb\xa8\x15\x77\x96\xdc\xb2\x25\x57\x31\xe5\x39\xab\x45\xf2\x0c\x39\xe2\xaf\x71\x5f\xe9\x5c\xb6\x42\xee\xa9\xa6\x9d\x7e\x33\x7e\xb8\x4f\xdc\xe9\x94\xec\x12\xa6\x56\x77\x3a\xb9\x31\x23\xc2\x4d\x6d\x22\x62\x7f\x23\x01\xa9\x6b\x6a\x1f\xea\xf6\xb0\xe9\xbc\x56\x32\xa8\xeb\x72\xb6\xbb\x1c\xee\x1c\x27\x14\x86\x4e\x54\xf1\x83\x7b\xbf\x77\x64\xb1\xf0\x8d\xe8\xa1\x2a\x26\x4f\x71\xe1\x56\x5b\x91\x1c\x02\xf4\xfd\xe6\x17\xe6\xd1\x5c\xe6\xeb\x31\xbe\xd4\xd6\xf3\x2c\x31\xf2\x7c\x28\x92\x38\xe0\xb3\x7c\x6b\x24\xff\x6e\x8a\xaa\x4a\x52\x06\xb7\xcd\x32\x50\xf9\x59\xbe\xa1\xd3\xb1\xc9\x9e\xde\xbc\xaf\x61\x01\x2c\x8c\x7b\x1e\x7b\x38\x95\x2d\xe9\x59\xb9\x9f\xc5\x91\xfc\x0e\x1c\x53\x62\xc0\x11\x89\xb6\xa8\xf8\x1a\x36\x08\x36\x3f\x94\x85\xb0\x15\x1f\xf1\xe8\x71\x6d\x4d\x17\xa4\xfd\xa8\xf2\x0b\x23\x31\x74\xf0\x60\x8a\x55\x05\x1a\xde\xce\xd6\x5c\xde\x89\x9d\x3b\x3a\xa4\x44\xd4\x1a\x24\xd0\xf7\xd4\xa3\xa9\xd7\x90\x5a\x15\x13\xc0\x40\x23\xb6\x7b\x09\xd3\x0e\x38\x96\x00\x6e\xb6\x46\x12\x4f\x26\x06\xc0\xff\x0a\x24\x69\x99\xeb\x80\x8e\xdd\x82\xdb\x0f\x63\xc1\x2d\x5a\xfc\xbd\x67\xdf\x53\x06\x18\xc2\x27\xba\x22\xab\x84\x69\xb9\xa3\x0c\xda\xf1\x0d\xe8\x21\xd7\x15\x7c\x7c\xfc\xe4\xf9\x10\x76\x8a\x5b\x69\xd1\x98\xbb\x69\xc1\x24\x2b\x13\x6f\x85\xe9\xa9\xb0\xa3\xc2\x00\x72\xe7\x24\x64\x0b\xed\x63\xd2\xb2\x99\x06\x15\xe8\x54\xdc\xf2\xc3\x0f\xf8\x17\xea\xcb\x3e\xe0\xe9\xc7\x28\x77\x41\xd3\x0f\x4e\x3b\x2e\xa7\xf9\x34\xa4\x35\xe2\xe1\xb7\x6f\xdc\x43\x9e\xe1\xea\xd0\xfe\xc4\x7b\xc3\x6c\x16\xb9\x34\x26\x8c\x7d\x58\xc1\x01\xee\xa1\x18\xdf\x44\x98\x03\x6d\x80\x72\xa8\x19\x88\x60\x8a\x82\xe1\xb6\xc7\xfe\x94\x2a\x7e\xe7\x6b\x74\xeb\xaa\x84\x07\x7c\xa7\xfb\x25\xa9\xbb\x5e\x79\x94\xca\xd5\x41\x82\xd7\xce\xdd\x3d\x54\x6c\xc4\x1f\xcc\xbe\x2a\xcf\xcd\xe0\x8e\xc2\xed\xf8\x29\x1c\x5c\x74\xdd\xd6\x6a\x7a\x8f\x9b\xbf\x52\x07\xfc\xec\xe4\x70\xb6\xb7\x34\x3a\x18\xfe\xb6\xe4\x0b\xaa\xdd\x8b\xf7\xfd\x26\x67\x7b\xce\x00\x5e\x4f\xca\xb9\xd7\xb2\x18\xf4\xe6\x5d\x0c\xeb\x36\xe3\xba\xd5\x53\x21\xda\x90\xdf\xe9\xb7\x44\x66\xda\xbd\xb6\xb1\x98\x04\xc8\x58\xd6\xd3\x52\xef\x13\x38\x5b\xb5\x74\xfa\x9d\x89\x23\x15\x16\xac\xc5\x9b\x09\xae\x30\xd9\xf5\xee\xa3\x25\x5a\x2f\x7a\x58\x78\x69\xfc\x45\x1e\x41\xf3\x23\x3f\x74\xfe\xbc\xc1\xa5\xcd\x0f\xe6\x6d\x28\xf2\x2f\x04\xd1\xd7\xe8\x75\x20\x57\x6c\xde\x40\x60\x35\xe3\xdb\x9c\xb8\x85\x86\x75\x88\x13\xfe\x57\x2e\x5f\x63\xb9\xd5\xc1\x4d\xa5\x9b\x76\x03\x27\x14\x82\x53\xb5\xd1\x19\x3d\x3d\x86\x88\x1a\x4c\xd4\x87\xf7\xb2\x74\xfe\x8a\xf2\x73\x81\x04\x51\xd1\xa9\xec\x53\x03\x7a\x87\x45\x57\x2d\x92\x0e\xe3\x4f\x8b\xcf\xe7\x89\x5c\xed\xca\x26\xe6\xe2\x8a\x9a\xed\xfc\xf9\x76\x16\x83\xb2\xf2\x16\x29\xab\xc3\xab\xa0\x2a\xb3\x7a\x9d\x78\x9b\x0b\x37\x5c\x5d\x57\x10\x8e\x5e\xa5\xaf\xfa\x26\xb9\x13\x24\xbb\x75\x12\x69\x7d\xdf\xba\x18\xeb\xda\x27\xa0\x8d\xeb\xd0\x77\x90\x92\x2a\xa1\xee\x41\x87\xcf\xc3\x83\x0e\xf9\xbe\xa7\xa9\xfc\xb3\x40\xd4\xea\x45\xf9\xb6\x71\x0e\xd6\xd1\x10\x3e\xb3\xed\xea\xb3\xfb\xf1\x7b\x3f\xfc\x72\x44\xf2\x5a\x46\xda\xa6\xcc\x4e\x9e\x4e\xfa\x29\x7a\x59\x28\x7a\xba\xc8\x37\x2e\xe6\x61\x69\x1f\x2f\x6c\x84\x27\x85\xb4\x99\xf4\x55\x0f\xc5\x50\x92\xcf\x3e\x6e\x4e\x5f\xed\x98\x68\x2d\x79\xd0\x49\x5f\xac\xba\xf9\xab\x06\x4a\x44\x83\xfc\xb0\xc1\x4d\xe4\xf7\xff\x29\x7a\x86\xe0\x77\x0f\xcf\x67\x9a\xe4\x95\x90\x5f\x65\x5b\x62\x80\xa9\xdf\xb5\x2e\xf0\xe4\xea\x46\xd4\xc2\x99\x86\xba\x7c\x1d\x2d\x2a\x88\x95\xbe\xdc\xb2\xb4\xf9\xde\x95\xd5\x37\x61\xbe\xf0\xcf\x7d\x20\x1f\x84\xca\xb9\x79\xc4\xb2\xe1\x8f\x6a\xb3\x2f\x5c\x6a\x05\xa6\xfe\xae\x69\x2a\xa2\xfd\x7c\x4d\x94\x96\xaf\xf0\x36\x30\x9e\x05\x46\xec\x95\xdc\x8b\xe7\x78\x84\x1a\x7b\xef\x6a\xae\x7f\x7e\x6e\xe7\x9f\xb3\x2b\x2d\x7c\xb6\x90\xe1\xff\xf3\x0d\x7d\xa0\xfd\x05\xf3\x2b\xff\xbe\xa0\xdf\x80\x95\x5f\x05\xfd\x2a\x10\x5a\xcc\xbf\xae\xb8\x32\x6e\x17\xb4\x2e\xb1\x64\xaa\x4d\x5c\x84\x7f\x5e\xd3\x0f\x16\x40\xef\x73\x58\x2e\x71\xf6\x82\x5f\x41\xd2\xfe\xac\x3e\x29\x40\x7d\xc9\xeb\x48\xd2\xad\x7c\xbe\x68\xfa\x96\x3f\xf2\xbb\xd9\xfc\xa9\xc8\xaf\xf9\x0b\xfa\x97\x2f\x57\xc6\xbc\xd6\x16\x31\x08\x6d\x90\x84\xeb\x0b\x69\x8f\x84\x71\xf9\x76\x6d\x72\x69\x0d\xc3\x91\x4f\x6d\x7e\xb5\x70\x63\x72\x03\x92\xaf\x6e\x44\x3a\x1c\xc6\x6c\xd1\x36\x5b\x24\x06\x7f\x15\x1e\x04\x77\x8f\x9c\x9e\xf6\x37\xbf\x54\x9d\x61\x4f\xca\xbf\xf4\x37\xef\x33\x26\x4e\xab\xb1\xe1\x2b\xa4\x4e\x68\xbd\x8f\xe5\x8c\x83\xe6\x39\xe1\x7f\x59\x6f\x7b\xb5\x03\x3c\x1b\x45\x3f\x0f\xeb\x65\x2e\x3e\xa6\x93\x30\x06\x36\x3c\xd0\x72\x2f\x96\x74\x94\x1e\x83\xea\x9c\xa8\x5f\xf9\x37\xd3\x3f\xf9\xd7\x7f\xe5\x77\x61\x48\x77\xfa\xb7\x7f\xcb\x9e\x3e\xfc\x34\x33\x6f\x90\x2e\x36\x33\x01\x9e\x0e\xf3\x37\x50\x92\x08\x76\x93\xbf\xf9\x36\x01\xe7\x2c\x0b\x1c\xc2\xc0\xf7\xa2\xde\x70\xa7\xed\x03\x2f\xff\x2f\x00\x00\xff\xff\xbf\xac\x31\x6e\xd4\xbf\x00\x00") +var _confLocaleLocale_esEsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7d\x4f\x6f\x1c\x47\xb2\xe7\xbd\x3e\x45\x59\x03\x41\x36\x96\x6a\xc1\xf6\xdb\x3f\x30\xdc\xf6\x52\x14\x6d\x79\x21\x51\x7c\x22\xe5\xc1\x5b\x43\x68\x67\x77\x25\x9b\x65\x55\x57\xf5\x54\x56\x91\x6a\x3d\xbc\xc3\xde\xf7\x03\x2c\xf6\xa6\xa3\x0f\x3a\x3c\xcc\x6d\x2e\x03\x98\xdf\x64\x3f\xc9\xc6\x2f\x22\xff\x56\x55\x93\xf2\xcc\x3c\x1f\x2c\x76\x56\xe4\xbf\xc8\xc8\xc8\x88\xc8\x88\x48\xb5\xdd\x2e\x0a\x6d\x56\xf3\x57\x75\x6e\x74\x7b\x55\xae\xca\x26\x2f\x74\xfe\x7d\xd9\xe5\xaa\xef\x9a\x5c\x55\xcd\x2f\xaa\x68\xf2\x5d\x6e\xca\x3a\x5f\x35\x9b\x6d\x55\xae\x14\x41\xd5\xda\x64\xd9\x65\xb3\xd1\xf3\x1f\x6a\xd4\xca\x0a\x65\x2e\x97\x8d\x6a\x8b\xf9\xa9\xaa\x75\x85\x56\x56\x4d\xdd\xb5\x4d\x95\xe9\xb7\xdb\xaa\x69\xf5\xfc\x98\xff\x55\x6d\x76\xa9\xab\xed\xfc\x70\xd7\x17\x2a\x33\xe5\xba\x5e\x94\xb5\xb4\xa2\x5a\x1a\x85\x29\x6f\xfe\x5c\x4b\x79\xd3\x77\xf3\x23\xdd\xb6\xc3\xf2\x7e\x3b\x3f\xeb\xcd\xaa\x2d\xb7\x2b\x2e\x6c\xf5\xba\x34\x9d\x6e\xe7\x2f\xf9\x8f\xb6\xc9\xae\xf5\xd2\x94\x9d\x9e\x9f\xde\xbc\x5f\x97\xb5\xca\xff\xa8\x97\xd9\x95\x6e\x0d\x0d\x7c\xfe\x23\xfe\x45\xb5\xad\x5a\x7b\x88\xac\xd3\x34\x37\x85\x2a\x95\xaa\xbb\xb2\xaa\x54\x46\x7f\xac\x7b\xc0\xfc\x50\x94\xcd\x46\x65\xab\x56\x13\xc0\xa2\xd6\xd7\xf3\x23\xfa\xb3\x9d\xcd\x66\x59\x4f\x68\x5b\x6c\xdb\xe6\xa2\xac\xf4\x42\xd5\xc5\x62\x83\x99\x9e\xea\x96\x0a\x80\x83\xde\xf4\xaa\x2d\x81\xc0\xcd\xcd\x7b\xc3\xc3\xd7\x05\x4d\x78\xa1\x0c\x35\xab\xa9\xa7\x0b\x42\x28\x61\x98\x70\xdb\x64\xdc\x5c\xad\x08\xab\x27\xcd\x66\xd9\xea\xa8\x85\x4c\x6f\x54\x59\xcd\x8f\x9a\xb6\xd5\x4d\xae\x2b\xbd\xea\x5a\x9a\x44\xb9\x6a\x68\x1e\xc6\x5c\x37\x84\xf9\x23\x20\x5c\x19\x7d\xf3\xef\x8a\x70\xb2\xe8\x76\x5b\x2c\xcf\xba\xd5\x86\x5b\xaa\x7b\x7d\xd5\x64\x2b\xb5\xed\x56\x97\x6a\x7e\x24\xff\x66\x04\xb9\x6d\x08\x59\x4d\xbb\x23\xfc\xd9\x3f\xa9\xbf\xa6\x5d\xab\xba\x7c\xa7\x3a\xe0\xec\x85\xfd\x21\xf8\xde\x94\x6d\xdb\xb4\xf3\xe7\xfc\x4f\x46\xf8\x58\xa0\x8d\xf9\x09\xda\xcf\xdb\xa8\x0d\x7c\xda\x94\xeb\x16\x78\xc5\x57\x95\x3f\xc7\x2f\x69\x05\x1f\x2f\x9a\xf6\x8d\xad\xf7\x1d\xfd\x49\xa3\xac\xf2\x97\x83\x06\x68\x20\xb6\x72\x93\x8e\x42\xd5\xb4\x38\xfc\xf9\xb0\xd8\x94\x35\x56\x9e\x28\x25\x00\x31\x91\x2a\x7c\x5a\x6c\x41\x93\x81\x32\x95\x87\x97\xa6\xd4\x6a\xd5\xf4\x75\xb7\x30\xba\xeb\xca\x7a\x6d\x80\xc9\x8b\x72\xdd\xb7\xb6\x15\xd4\xa9\x54\xbe\xea\x69\xc1\x88\x66\xf7\x40\x65\xbb\xa6\xf7\xc4\x30\x3f\xef\xf3\x2d\x93\x81\x14\xfb\x4a\x54\xbe\x0a\xf5\xd0\x3b\x66\x69\x16\x17\x5a\x17\xf3\xef\xe8\x7f\xbc\x54\x4d\x87\xfd\x60\xb2\x6d\x5f\x55\x84\xdd\x3f\xf5\xda\x74\x66\x7e\x4a\xbf\x08\x3f\xf2\x2b\x2b\x8d\xa1\x3f\x68\x85\x57\x25\x51\x12\x83\xd3\xea\xd6\x2b\x9a\xe9\x11\xff\x43\x5b\x2d\xfb\xc9\x10\xa5\xae\x2e\x5f\x67\xf2\xef\xfc\x31\x6d\x1c\x21\xdd\x3d\xeb\x0e\x12\x9c\xbf\xb2\x44\xc7\x5d\x44\x3d\x64\xab\xa6\xd0\xf3\xa3\x9b\x3f\x17\xe5\x9a\xc8\xf5\xa7\xb2\x36\x9d\xaa\xaa\xd7\x99\xfd\x83\x40\xf1\xaf\x9d\x58\x57\x76\x84\x88\x53\x65\x1a\x87\xc1\x32\xfa\x9c\x6f\x9b\x36\xdf\xb6\xe5\x46\xb7\x2a\xbf\xd2\xef\xb2\xa2\x59\xbd\xa1\xdd\x04\xee\x40\x43\x38\x2b\x73\x9a\xe5\xcd\xfb\x5c\xff\xa2\x57\x7d\x47\x7b\xab\xc9\xbf\x6f\xd6\x86\x36\x04\xff\xfd\x84\xa1\x0f\xb8\x95\x0b\x75\x45\xff\xaf\xb4\xca\xbf\x56\x79\xa7\xda\xb5\xee\xe6\xf7\x16\x4b\xda\xc0\x6f\xee\xe5\x97\xad\xbe\x98\xdf\xbb\x6f\xee\x7d\x83\x06\x95\xc9\xb7\xc4\xda\x94\xf9\xfa\x91\xfa\x26\xa7\xad\x2e\xab\xbb\x52\x9b\x25\xf8\x4f\xad\x0a\x95\xeb\x9a\x21\xf3\xad\xf0\x86\x4f\x32\x2c\x00\xb1\x93\x45\xb1\x14\x76\xc9\xe3\xe0\x42\x4d\x9b\xb4\x27\x06\xb3\x54\xb2\xc7\x0a\xd5\xd1\x64\x9f\xef\xce\xfe\xf9\xd9\x41\x7e\xda\x98\x8e\x76\x1f\xff\x4d\xff\xa3\x16\xbe\xcc\x9b\xfc\xbc\x7c\xf2\x78\x96\x51\x53\x82\x9e\xa3\x84\x18\xd0\x46\xd2\x16\x03\x62\x23\x9f\x97\xdb\x66\xfc\xf5\x92\xba\x98\x3f\xa5\xff\xa5\xeb\x36\xc9\x12\xa8\xa5\x01\x6f\xa9\xd4\xb8\x33\x8b\xfe\x53\x8f\xd6\x9e\xb8\x61\xb9\xd2\xc4\x73\xf2\x4d\x43\x34\x92\xff\x70\x72\xf2\xe2\xc9\x63\x50\x31\x6f\x8a\xd1\xf8\x89\xbe\xd4\x8a\xd8\x31\x61\xb6\xef\x2e\xfe\xdb\x62\xad\x6b\x5a\xe2\x6a\xb1\x2a\x09\xf5\xb4\xd6\x8c\x9d\x59\x66\x4c\x45\xdc\x92\xc8\xe9\x79\x43\xcb\x79\x76\xf6\x8c\x46\xdd\x5d\xce\x5f\xf6\xd8\x62\x7f\xaa\x80\x6f\x3b\x16\x14\x31\x6b\x00\x05\x97\x57\x8d\xeb\x3a\x45\xfa\x10\xc3\x74\x70\x2c\x88\xa9\x77\x3b\x2c\x1b\x37\xfd\x4c\xe5\x2d\x9a\x52\x77\x55\xa6\xfd\x97\x6f\x7b\x4d\x5f\x41\x07\x6d\x7e\xa5\x56\x37\x1f\x94\x34\x59\xd6\x57\xaa\x2a\x0b\x5a\x3d\x87\xcf\xe3\x8a\xe0\xf7\xa1\x74\xd0\x1e\xce\x44\xa0\x23\xaf\xe8\x53\x84\xa8\x7b\xb3\x7b\x79\x5d\xe6\xf7\x1e\xde\x9b\x65\x75\xb3\x10\xae\x85\xf3\xa4\x28\x8d\x5a\xd2\xd9\x22\x67\x5c\x2b\xec\xf8\xc4\x35\x47\xd4\x78\xa9\x96\xb4\x3e\x18\x25\x21\xc8\x42\x35\x72\x5c\xe3\x90\x62\xea\x14\xc6\x95\x72\xbe\xa2\x69\x63\x1c\x39\x3e\x69\xe9\xe6\x99\x92\xe3\x5b\x48\x67\x54\x73\x1f\x82\x32\xb7\xd6\x93\xb4\xfd\xbd\x7c\x64\x09\x83\x76\x50\x06\xf1\x63\x4c\x91\x87\x56\xc6\x60\xc6\x6c\x21\x02\x55\xd6\xb9\xfa\x53\x7f\xf3\x01\x93\x0d\x48\xef\xfa\xf4\x6c\x38\xc8\x7f\x7b\xaf\xaa\x0e\xc7\xee\x8a\xb8\x60\xf3\x09\x33\xbb\x85\xa7\x2f\x26\xa6\xe8\xa0\x42\x1b\x2f\x55\xf9\x2e\xff\xf4\x65\xd3\x74\x9f\x05\x68\xd7\xef\x39\x91\xa8\xe1\x35\x8b\x6a\xe1\x07\x76\x84\x71\x22\x13\x2d\x3b\x09\x0c\x6d\xa1\xda\x9b\xf7\xb5\xe5\x22\x34\xbe\xb2\xa5\xc3\x1a\x15\x88\xe7\xf6\x24\xbd\x60\xa3\x1e\x0b\x53\x6b\xf9\xdc\xcf\xdd\xb6\x75\x9f\x5d\xb7\x44\x59\x4e\x80\xa8\xf5\x8a\x44\x20\x1a\xba\x90\x0f\x9d\x58\xda\x34\x42\xc9\x3c\xa3\x97\xea\xe6\xc3\xbb\xe1\xf9\x49\xf3\xd7\xae\x23\x60\x9c\xd8\x0e\x09\x32\x24\x6e\x3d\x69\xb0\x98\x8d\xfd\xe9\xbb\x33\x10\xf9\x2e\x68\xb4\xb2\x47\x4c\xfe\xea\xe5\x33\x23\x9b\x76\x55\x35\x35\xb5\x02\x6e\x7b\x76\xf6\x14\xbb\xf7\x72\x41\x3f\x3a\x3a\x93\x74\xdb\x61\xff\x3e\xf5\x65\xae\xbd\x93\x9b\xbf\x10\x73\x67\xec\x6e\x05\x8a\xfe\x32\xbd\x88\x9a\x85\xb4\x74\x90\x17\x37\xbf\xfe\xa2\xab\x06\xf8\x02\xc7\x5e\x35\xd2\x21\x91\x36\x6d\x8e\xf2\x4a\xd9\x0e\x2f\xbb\x6e\x9b\xf4\xf8\xf4\xfc\xfc\x34\x94\x7a\x0a\x91\x8f\x40\x7e\x95\xd3\x41\x49\x6b\xb0\xea\x49\xce\xa1\x25\x01\xae\x54\x20\xae\x19\x53\x57\xdf\x56\x73\x9a\xa5\xa5\x3d\x35\xa0\x3d\xfa\xfa\x3b\x91\x83\x51\x3d\xc2\xff\xce\x08\xf9\x04\x59\xad\xfb\x1a\x5b\x9d\xe5\x36\x93\x08\x6e\xb4\x1c\x59\xb3\xc5\x86\xde\xb7\x61\x5e\x6c\x57\xfc\x55\x84\xbf\x7d\x07\x46\x95\x9f\x45\xb2\xbb\x48\x88\x99\xd9\x10\x62\xf8\x74\x38\x7b\x7e\x7e\x9a\xf3\x11\xc1\x65\x17\x6d\xb3\x99\x3f\xd1\xa6\xd0\xe1\xb7\x67\xb4\x7a\x43\x5c\xb0\x06\xd1\x52\xab\xdc\xe9\x41\xfe\xf2\xbb\xa3\xfc\x3f\x7f\xf9\xc5\x17\xb3\xfc\x94\x77\x3c\xad\x5e\x6e\x9a\x8a\x76\x25\x00\xc1\x5e\x98\xc2\x03\xfb\x1f\x8b\xa8\x07\xc4\x57\x85\x51\xc8\xba\x90\xd8\xb7\x21\xe6\x98\xdf\x93\x8d\x7f\x2f\xff\x9a\xfb\xfa\xef\xfa\xad\x22\x29\x5c\xcf\x68\x53\x7c\x33\xcb\x50\x44\x7b\x81\xf7\x4b\x3a\x32\x2b\x05\x1f\xc7\x52\xb0\x85\x9e\x3a\xf9\xec\xb6\xb0\x2d\x78\x75\x61\xc1\x47\x57\xbb\x99\x3f\xf5\x2c\x94\x48\xe0\x48\x0a\x2d\x76\x65\xbc\x5e\xaf\xe0\x65\x80\x70\x76\xb1\x4b\x6a\x99\xfc\xa4\x11\x51\x3e\x08\x8c\x6e\x21\x68\x6d\x34\xe4\x3f\x2c\x91\xde\x7b\xe8\x9f\xb9\x3d\xb1\xcb\x5f\x50\x4f\xc6\xaf\xa9\xc9\x9a\x8b\x8b\xaa\xac\xb5\x1c\x96\x87\x76\x4f\xf0\x69\x8c\x73\x93\x18\x3d\xb5\xa6\xdf\x32\xcd\xc6\xa0\xb4\x2d\xb6\xa4\x29\x3d\x09\xfb\x08\x98\x7b\x72\x42\x42\xd8\xaa\xea\x8d\xdb\x23\xdc\x0a\x76\x68\xdb\x14\xfd\xca\xb2\xcf\x2e\xe2\x77\xab\xbe\x85\x00\x67\xb4\xec\x5b\xe6\x6d\x55\xb3\x52\x15\x13\x00\xb1\x14\x7b\x42\x91\x60\x7f\xa5\x08\x1d\x83\x1e\x3d\x6d\x7e\x6f\xbf\x8f\x2a\x8c\x07\xea\x40\xc1\xbf\x7b\x55\xb1\x9c\x95\x37\xb4\x9c\xf9\x45\xcf\x44\x40\xc4\x6a\xb0\x31\x88\xe1\x17\x6a\x96\x07\xf6\x2c\xf5\x78\x01\x96\x9a\x95\x5a\x9c\xb2\x6b\x85\xef\xd8\x9e\x80\xb1\x2c\xd5\xe4\x8c\x02\xe2\x47\x85\xc6\xb6\x6e\x30\xc5\x4d\xc3\x5a\x04\xc4\xce\xca\x36\x46\x98\x21\xb2\x27\x7a\x21\x96\x49\xed\x84\x09\x27\x47\x72\x34\xfa\x43\xd2\x9c\x1f\x7a\x92\x99\x82\x1e\xcf\x18\xda\xf6\x43\x7f\x7a\x83\x5e\xed\x28\x0f\xb0\xd7\x1a\x1e\x4d\x72\x00\x6f\x9b\x02\xa3\x94\x33\x5e\xce\x77\xc3\x1a\x9e\x22\xb6\xa2\x6b\xee\xd2\xa9\x7a\x8e\x66\x40\xdd\x56\xeb\x4b\x21\xec\x78\x5e\x3a\x89\x96\x25\x1c\xa9\x60\x21\x84\xcf\x61\x14\x83\x81\xba\x71\xce\x44\x48\x26\xb5\xd3\xaa\xf4\x8b\xab\x92\x14\xe5\x88\x5c\xc5\x50\x20\xb4\xce\x0a\x78\xde\x2c\xab\x72\xad\xe4\xa4\xe2\xf6\x49\x35\xcf\xad\x42\x6e\x26\xdb\xb3\x03\x3d\x03\x4a\x92\xa5\xac\x1a\xbb\xc6\x60\x51\x35\xa9\x13\xad\x93\xde\xcd\x01\x43\x5e\x95\x38\x3d\x59\xdc\x57\x35\x58\xc6\x06\x34\x8d\x76\x04\x93\x52\x07\x3b\xd9\xd5\xe3\x23\xa1\xa1\x3f\x1f\xb9\xe9\xce\xac\x36\x69\x75\x39\xd1\x05\x4e\xc0\xda\xe4\x78\xe6\x83\xfa\x4e\xa9\x2b\x57\x97\x0d\xcd\x75\x53\x9a\x0d\xad\x6e\x58\x69\x3e\xad\x88\x43\xad\x55\xfe\xc3\x93\xf9\xe7\x84\x1d\xfa\xc1\x8b\x4c\x4a\xd2\x15\x31\xb7\x75\x29\xa2\xc6\xa0\x35\x5a\x90\xcd\xcd\x7b\xd2\x17\x95\xdd\x90\x32\xc8\x7d\x8c\x06\x44\xe0\x07\x76\x18\x37\x65\x2b\xee\xb1\x3f\x0c\x04\xc4\x58\xb1\xb0\x7c\x34\xf9\xc8\x3c\xb4\xcd\x63\x30\x69\x61\xaf\x1d\x43\x24\xfc\x64\x40\x56\xab\x5c\xac\x49\x76\x71\xaa\xa5\x48\x32\x19\x2d\x64\xb7\x58\x97\xdd\xe2\x02\x7c\x9f\x34\x67\x82\x83\xbd\x0a\x7c\x6c\x29\x04\x47\xa7\x08\x6b\x8a\x0f\x08\xec\xc1\x57\xf9\xfd\x2b\xab\x56\x7c\x09\x0e\xbe\xa0\xcd\x5d\x56\xd8\x04\xd0\xc8\xaf\xac\x4d\x08\x72\xad\x69\x20\x4f\x28\xa7\x12\xc4\x1a\x26\x16\x1c\xdc\x04\xad\x2f\x89\x46\xb0\x6a\xa4\xed\x93\x62\x0c\xa1\x96\x8e\xd4\xfc\x3e\x91\xdb\xc9\x0b\x20\xd9\x37\x49\xa5\xeb\x66\xd9\x97\x55\x31\xcb\x9c\xf2\x40\xaa\x83\x25\x22\x2b\x69\x8f\x17\x29\xd5\x22\x6a\xa6\x32\x3e\x5a\x49\x00\xe1\xc9\xb8\xb6\x82\x68\xeb\xf4\x1b\x69\xa0\xf5\x12\x61\x2c\xe9\x52\x2b\x54\xf1\xe6\x3d\x36\x38\x37\xe3\x65\x4e\x20\x85\x4e\xe5\xd5\x65\x2c\x76\x8a\x04\x35\x50\xc3\x53\x41\xc9\x8e\x2d\x22\x64\x62\x6a\xc4\xb5\xa9\x75\x93\x3f\xfc\x86\xfe\x9f\x19\x75\xa5\xe5\xb4\x5d\xbb\xf5\x3a\x86\xed\x08\xeb\x65\x25\xe6\xb1\x2a\x99\x4c\x32\xd9\x78\x7b\x71\x36\xb5\xe3\xec\x39\x3e\x9c\xb6\x23\x2d\xd3\x43\x92\x36\xf3\xc7\xa5\xae\xaf\x74\x4d\x47\xf0\x27\x39\x89\x7a\x0a\xec\x41\xd7\x2b\xe2\x18\xcc\x57\xa8\x49\xa0\xe2\x52\xed\x88\x31\x10\x15\x10\x5f\xb0\xf6\x08\x12\x60\x69\x77\xde\xfc\xda\x76\x74\x46\xf0\x81\x75\xf3\x81\xd6\x8c\xf6\x61\xf6\x13\x0c\xa4\xaf\xb3\x5e\x34\x98\xa6\x2a\x20\x13\x0f\x37\x56\xde\x4c\x49\x4c\x5e\x83\x77\xf5\xe2\x8d\x64\xae\x4b\x5a\xa6\x85\x37\xb9\x2e\x58\xab\x7c\xdb\xcd\x8f\xac\x15\x83\x89\x9f\x8b\x64\x57\x3d\x71\x90\xd9\x66\xc7\xf4\x62\xe6\xcf\x4b\x13\x6b\x0a\x86\x36\x71\x45\xdb\xa1\xc1\x01\x75\xa5\x2d\x50\x0c\x40\x5b\xd9\x7f\x27\x70\x6a\x88\x54\x2e\x69\xe7\x45\x6a\x72\xa3\x4f\x62\x21\x94\xaf\x62\x26\x34\x19\xf3\x6f\x36\x19\x83\xcd\x13\x55\x58\x03\xd6\x8c\x16\x96\x4d\x64\xd2\xe7\x71\x4d\xea\x5c\xaa\x67\x11\x26\xad\x0d\xf9\x75\x36\x1e\x18\x7d\x25\x1e\x78\xf9\x3a\xb2\xcf\x2e\xac\x41\x4f\xec\xb4\xcc\x8c\xc5\x82\x28\x9c\x2f\x48\x80\x97\x7a\x0b\xa1\x71\x63\xd6\xf3\xdf\xfe\xfa\x2f\xa4\x5c\x11\x15\xc0\x6c\xe1\xb9\xf7\xb7\xa4\x49\x8a\x6d\xda\x99\xa0\x3f\xc9\x4c\x83\x0d\xbf\xf8\x7d\x8d\x1c\xd7\xd5\xcd\xfb\x77\xc4\xbf\x3e\x19\x48\x04\x62\x3f\x26\x1d\x7c\xfe\x0c\x12\x48\xdd\xe1\x64\x3a\x48\x94\x79\xd9\x80\x91\xae\x4f\x52\x48\xee\x0d\x34\x07\xbc\xd6\x0a\x7a\x09\xec\x22\x23\x49\x01\x04\x40\xb8\x2a\x47\x92\x0b\xc6\x0c\x5e\x1c\xf5\x3b\xcb\x9f\x45\xca\x0a\x0b\xb1\xb1\x34\x0c\x35\x39\x19\x54\x9d\x8e\xca\x40\x0a\xd8\xe8\xcd\x12\x4d\x6b\x5a\x25\xda\x0c\xbf\xd2\xee\xde\xe8\x8c\x44\xfe\x35\x31\x18\x7f\x44\x3c\xd5\x79\x53\x91\xc4\x0b\xdb\xf7\xa6\x8c\x8d\x0d\x0c\xaa\x23\xd0\xdf\xfe\xfa\x94\x36\x9d\x87\xee\xfa\x18\xfa\x5b\x77\x25\x40\xfc\xeb\x9a\x40\x4f\xac\x9e\x9c\xe2\x9f\x46\x7d\xf3\x81\xa5\x2f\x2d\xc7\xef\xcc\x1d\x5a\x22\x8f\xb1\x5c\x0f\x24\xb8\xb5\x78\x55\x8b\xb9\xdc\xed\x4d\x31\xdd\x44\xa8\x30\x60\x06\xc4\x21\xae\x4a\x8c\x49\xe5\x5f\x2f\xbf\xb9\x6f\xbe\x7e\xb4\xfc\x66\xb0\x32\x9b\x6d\xdb\xeb\xa5\xc2\xa8\x97\xc4\x3c\xf5\x2f\xcc\x9e\x34\xc6\x2f\x96\x46\x88\x1c\x34\x05\x12\xbc\x58\x38\xb9\x5f\xe4\x18\x9f\x53\x2c\x71\xe3\xa2\xad\x71\x87\x86\xc6\x4a\x3f\xd5\x8f\x24\x92\x15\xef\x57\xde\x40\x8e\xea\x45\xe8\x62\x44\x39\x7a\xe7\xb9\x55\x25\xa9\x40\xd3\xd4\x86\xc5\x64\x79\x88\x48\x5d\x98\x3c\x13\x20\xcd\xef\xe6\x83\xf0\x10\xa0\x88\x39\x2b\x37\x2e\x48\x00\xbd\x15\x74\xa0\x9b\x12\x93\xb9\x80\xae\xc0\x66\xe2\x04\x07\xda\x6c\x61\xe1\xfd\x92\x96\xb9\x26\x59\x85\x68\xe4\x52\x99\x45\x5f\x5b\x7c\xea\x42\xa8\xf0\x29\xb1\x17\x3e\x3e\x79\x7d\xc7\xd2\xc1\xa7\x1e\xc3\x9f\xc9\x89\x83\x3d\xe1\xd6\x04\x1b\xe2\xac\x44\x39\xb5\x0d\x9d\xa5\x5c\x82\x3f\xf7\xf5\xde\xf5\x0b\x16\x15\xc3\x9c\x9d\x0d\x10\xc4\xa2\x36\x42\xf7\xbc\xf8\xd1\xd1\x7f\x40\x0d\xbf\x23\x3d\xbf\x5c\xbd\xb1\x7a\x93\x5f\xb3\x7c\xd9\x74\x6c\x4e\x60\x2c\xbb\xd9\x78\x68\x31\x57\xf1\x6a\x32\x3e\xc1\x9f\xf7\x4c\x31\xc5\xae\x55\xfa\x59\x56\x31\xcc\x73\x3a\x0d\x2b\xc4\x47\xe8\xdb\x16\x41\x74\x4c\x73\xbd\x02\x16\x8b\x9a\x0e\xce\xb0\x25\x66\x19\x8f\x15\x43\xee\xdc\x88\xd7\x8a\x87\x1c\x8f\xf8\xd3\x56\x7f\x66\xc7\xcc\x67\x0a\xf7\xe4\x54\x81\x16\x5d\x10\x3b\x59\x11\x59\x51\x9b\x8d\x3b\x84\x93\x5b\x28\x13\xef\xe4\x97\xae\x06\x4c\x08\xc9\x36\xf6\x07\x3d\x5f\x30\x24\xb4\x09\x40\xb9\x70\x18\xaf\x22\xb6\xe0\xdb\x6d\x09\x46\x97\xdb\x59\x8b\xf2\xd2\xcc\x06\x7d\x3b\x13\x07\x4f\xf3\x68\x30\xcd\x76\xff\xb8\x7c\xfd\xae\x69\x16\xe6\x12\xf6\x27\x92\x3e\xaa\xa6\x26\xa1\xb2\x2f\xc6\x53\x0e\x96\x51\xe8\x9e\x24\x91\x43\xca\xc9\xff\x0b\xa4\x01\xa0\xf9\xb5\x6c\x58\x9c\x53\x6e\xb7\x46\x5b\x45\x36\x33\x0f\x41\x36\xae\x07\x16\xa9\x99\x0e\xce\xf2\xa2\x04\xb9\x9a\x49\x0a\xda\x87\xef\x77\x2b\x35\x9c\x97\x3f\x02\x9c\x00\xe4\x19\xbb\xe3\x39\x05\xd1\xff\xd2\x4b\x45\xa1\x82\x35\x7f\x04\x81\x89\xe6\x47\x72\x41\x81\xfb\xa0\x4d\x53\x28\x9a\xe3\x4e\x9b\xf9\xd9\xcd\x87\xac\x6e\x48\xde\xc9\xa8\x10\x15\x8e\x0b\x18\x4b\x08\x08\xd6\x9f\xd7\xd9\x2b\xc2\xcf\xc9\xb4\xaa\x81\xd3\x3d\xfd\x94\xc8\xb0\xd9\x31\x23\xe3\xc9\x5d\xbb\x20\x3b\x9d\x52\x56\x5e\x6a\xbe\x4e\xf9\xb1\xd7\xd5\x15\xf6\x85\xc6\x45\xf2\xb2\x6c\x87\xa4\x7b\x76\xf6\xf4\x9c\x55\xa8\xc4\x38\x7d\x54\x91\x28\xcb\x3a\xec\xd9\xd3\xec\x69\xd7\x6d\xcd\xab\x96\xf6\x0e\xdb\xfb\x5e\xbd\x7c\x46\x5d\xee\xaa\x46\x15\xaf\x82\x55\x91\x15\x86\xec\x5c\xab\xcd\x70\x4a\xd0\x6f\xb7\x4d\x76\x48\xc2\xcb\x00\x11\xd0\xe9\x5a\x7f\xd1\xc9\x4a\xda\xf1\xef\x50\x9b\xbc\xea\xac\xf9\x9e\xf6\xe7\x49\x6b\x7d\x33\xfb\x39\x53\xd5\x96\x94\x7f\xc8\x91\x1e\x74\x70\x2f\x11\xcc\x28\x87\xd5\x85\xaa\xfb\x0d\x51\xe0\x8a\x4d\x27\xa8\xf5\xe9\xc3\xc5\x67\x69\x33\x05\x71\x2b\xd7\x14\xea\x72\x55\xb0\x61\xdb\x24\x49\xfc\xdc\x0c\x89\x05\xb8\xc8\x11\x89\x9c\x08\x8d\x40\x88\x9d\x62\x2d\xd9\x6e\xdf\xd0\x61\xf9\x0b\xf1\x7c\x6a\x3f\x67\x36\x8e\x43\xde\x1a\x92\x6b\x52\x2e\xc4\x80\xfb\x33\x9d\xfd\xef\xf4\xb8\x3f\xdc\x08\xa8\x8d\xba\xf9\xf7\x86\x0e\x14\x82\x62\xd5\x61\x04\xe9\xaf\x62\x48\x09\xc1\x3e\x35\xd0\x57\xc2\xd4\x51\x4f\xbd\xbd\xad\x1e\x9b\xee\x49\xf5\x7e\x4b\x7c\x6a\x54\x57\x98\x77\xb4\x00\x56\x22\x9c\xe4\xdd\x56\x31\xa1\x6a\x30\x38\x8f\x2b\x81\x94\x02\x0c\xdb\xef\x0a\x37\xaa\x07\xe9\xa0\x2a\xec\xf4\xe5\x4a\x15\x9a\xea\x3d\xb8\x6f\x1e\xcc\x1e\x90\x02\xf2\x86\x84\xa3\xda\x56\x10\xcd\x0b\xaa\x6c\x53\xd3\xe9\x50\x34\x5f\x39\x9f\x80\x05\xb5\x2c\x1a\x26\x54\x40\x67\xf9\xb1\x5c\x55\x56\x6a\x16\x18\x62\xd0\x17\xc7\x97\x45\x29\x97\xae\xc1\x54\x4a\xbe\x44\x9e\x05\x1f\x87\xc5\x92\x8e\xc3\x45\xa7\xde\xe8\x7a\xfe\x2f\xe0\xe3\x60\x2f\x58\x6b\xa7\x18\xb1\x34\x8b\x32\xb9\xe8\x91\x1b\xeb\xc5\xad\x55\x63\x4d\x77\x54\x9d\xc4\xca\x5b\x6b\x0f\x1c\x0c\xc6\x0d\x74\xb4\x89\x6f\xef\x5f\xb6\xf4\xb8\xa6\x50\x03\xd7\xa2\xe9\x17\x1f\x7b\x8c\xef\x94\x53\xbe\x81\x15\x42\x7e\x59\x55\x7a\x8d\xdb\x02\x37\x92\xe4\xf2\xb1\x8a\xfa\x67\x25\x24\xde\xc9\x4e\xfd\x85\x00\xe6\x97\xc0\x2f\x66\x58\xf9\x69\x05\x35\xac\xae\x87\x6c\xd8\xd0\x48\x8d\xb7\xec\xd1\x12\x19\x23\x78\x60\xf1\xb1\x66\x48\xfc\xfe\x0b\x0b\xdf\x5e\x8f\xc6\x80\x3a\x36\x39\x97\x45\xe3\x0d\x1b\x72\xa7\xa0\x93\x39\x45\x6b\x3a\xd1\x21\xd1\x35\xce\xa4\x7f\x68\x8f\x24\x21\x6f\x4b\x48\xdd\x93\x3d\xfa\xd3\xf5\xef\xe8\x2f\xd5\x61\xac\x1b\x11\x36\x14\x93\x52\x6c\x80\x29\xeb\x42\x1c\x84\xb0\x0d\x99\xce\x66\x19\xa9\x0c\x1d\xb4\x6f\x99\xfc\xd0\x5c\x43\x9a\x49\x09\x66\xd0\x41\x48\x2b\x61\xb4\x6e\xad\x7d\xe6\xe6\x2f\x15\x64\x2a\x12\xc4\x49\x45\xb3\x66\x66\x4b\x31\x72\x01\xe0\x66\x4d\x7a\xe0\x13\x70\x15\xee\xb0\x64\xd3\x7b\x93\x62\xc5\xcb\x6b\xb8\xf3\x7b\xa3\x77\xa9\xc8\xc6\x56\xb4\x0d\x9f\x24\x5b\xb5\x92\xeb\x90\x2b\x96\x5d\x56\x56\xfa\xe5\x63\x94\xce\x50\x18\x89\x60\x20\x81\x56\xca\x10\x3b\xdf\x22\x3b\x59\xf8\x93\xeb\x8a\xe6\x32\xae\x7e\x80\x9b\x00\x12\x40\x4c\xbf\x61\x83\xae\x98\xab\x3c\xaf\xcc\x6f\x5d\x22\x98\x82\xcd\xcd\x07\xd2\xa1\xe8\x04\x4e\xed\x52\x72\x06\x63\x3e\xab\xc8\x18\x95\x19\x38\x86\x01\xeb\xe2\xf0\x74\xee\xe4\x34\x34\x45\x8c\x37\x60\x88\x99\x60\x5f\x63\xef\xc0\xef\x2b\xb1\x66\x1c\x38\x03\x01\xc6\x40\x82\x53\xab\xda\x8a\x4f\x54\x22\x87\xda\x5c\x10\x12\xf8\xb7\x78\xc6\x10\xaa\xa5\x53\xe8\x4c\x70\x75\x4a\xfa\x0c\x0b\x29\xec\x4b\x3a\x4b\x3d\xa0\x92\xee\x14\x74\x50\xdc\x55\x42\xeb\x6c\x3c\x7d\xb0\xd9\xdb\xf5\x07\xc2\x1a\x4c\x94\xd9\x55\xca\x1c\xb1\xa8\xbd\x63\xf7\x1f\x33\x53\xdf\xd7\x6d\x73\x8d\x30\x2c\xd7\xe4\xac\xc4\x24\x2b\x91\x70\x44\x56\xd0\xdc\x1d\xab\xbb\x0c\x38\xe0\x73\x9a\xb0\xd3\x10\x45\xa1\xf9\x5d\xf0\xf3\x09\x33\xa6\xce\xc4\x53\x68\xb1\xa4\xb1\xac\x2e\xa3\xed\x07\x3b\x2a\xc9\x0f\xb9\x38\x58\x74\x65\x1d\xed\x3e\x92\x5f\x31\xb2\xd7\x19\x1d\x8d\xf5\x5a\x2f\xec\x9d\x97\x58\xde\x40\x9b\xf6\xd2\x88\xc6\xe7\xee\xb7\x70\x9d\xe9\xc0\x57\xbd\xe9\x9a\xcd\x6d\xb5\x46\x76\xd0\xec\x17\x3a\x3b\x17\x4d\xed\x24\x74\x30\x03\x5d\x07\xf7\xad\x52\x0f\xec\x61\xac\x34\x94\xdd\x4e\xec\x00\x30\x9a\xe4\xdb\x9b\xbf\x2c\x61\xb0\xcd\x2e\x9a\xaa\x6a\xae\x75\x4b\xf2\xb9\x26\x81\x8b\xa4\x45\x6d\x32\x08\x85\xc4\xe1\x70\x1f\xd5\x29\x30\x1b\x63\xe1\x60\x6b\x3d\x13\x3d\x17\xe2\x3d\x04\xf7\x19\x9f\x1b\xd0\x33\xda\x2b\x6c\x97\xc0\x7b\x20\x6c\xd8\xc5\x91\xcf\x7c\x59\x16\xea\x6c\x55\x47\x9c\xb4\x16\x85\x96\x47\xc1\xd5\xa9\xb8\xb5\x47\x60\x3d\x3a\x7a\xb8\x4d\xaf\xed\x6f\x71\x07\xd7\xb1\x14\x02\xbf\x36\x71\xa8\x7b\x9d\x39\x8f\x3b\xf1\xba\x9c\xf6\x7d\xb2\x4c\xc5\xcc\x59\x80\x37\xe2\xae\xc0\x76\x3c\xc2\x5d\x81\x02\xfe\xa1\xd9\x29\x05\x98\x82\x59\xc8\xcc\x0f\x63\x7f\x57\xb6\x77\x0e\x6c\x9d\xc4\x42\x35\xd4\x72\xc7\x68\xad\x81\x91\x30\x3b\x7f\xf5\xea\x87\x27\x59\xb6\xed\x81\xf8\x45\x3a\xc6\xfc\x54\xd6\xa3\x71\x63\x97\xab\xa4\xf3\x69\xb3\x80\x36\x6e\xfd\xd8\x11\x57\xe3\x4a\xa8\x37\x20\x03\x56\x5e\x3b\xd2\xb9\x0c\x9b\x91\xea\xf4\x0e\xba\xd5\x15\xff\xa9\xf0\x1d\x22\x49\xb8\x4b\xb5\x2c\x24\xb9\x5e\x85\x95\xc6\x6a\xd5\x1a\x72\x9f\xc2\x26\xbd\xba\xf9\xd5\xf9\xee\x5d\xeb\x25\x2d\x27\xfc\x11\xe3\x1b\xa2\x23\xd1\x16\xa7\x5d\x6e\x71\x4d\xcc\xb7\xa3\xcf\x70\x5f\xec\x15\x9a\x7e\x0b\x03\xb9\xc7\xc9\x21\x5f\x17\xd0\xd7\x36\xb7\x4b\x98\x02\x78\x15\xd5\xbb\x54\x5a\xeb\x9b\x72\x15\x87\xe7\xeb\xcc\x6d\xb7\xfd\xfe\xb4\x39\x6b\xa5\x7c\xb4\x0e\x81\x9d\x85\xec\x18\x12\x1c\x3b\x06\x3a\xc7\x0f\x60\x5e\xb1\x8a\xa4\xeb\x8a\x0f\x36\x39\xea\x57\x1a\xa2\x27\xb1\x33\xb6\x7e\xe5\x2a\x68\xf0\x6c\x67\x24\x3a\xed\xf9\x2a\x0e\x7f\x90\x0a\x3c\x72\xd2\x74\xb7\xb1\x09\x73\x70\x57\xa7\x87\xc2\x1a\x4e\xa3\x2b\xef\x66\xb2\x86\x33\x71\x58\xf3\x9f\x86\xc3\xca\xd0\x95\x66\x70\x47\x1e\x2e\xe5\x57\x97\x4d\x63\xac\xf1\x5c\xfa\x3f\x03\x11\x32\xfd\x58\x53\xa8\x85\xb4\x8b\x13\x46\xe9\x16\x6f\xc2\x31\xe5\xd0\x55\x81\x52\x4c\x32\x94\x1d\x28\xb3\x80\x45\xb9\x81\x73\xf5\x71\x70\xeb\x73\xd6\xd4\xa0\xf8\x30\x48\xcd\x2e\x71\xe9\x54\xc3\xed\xdd\x09\x6c\x7e\x3b\x36\x6f\xdd\xfc\xa5\xf6\x77\xf6\x31\xb6\x48\xd2\x36\xdb\xa6\x2e\x09\x5c\x64\x13\x6d\x85\x0a\xef\x3b\x37\x4b\x67\xe5\x29\x6e\xf2\xa2\x29\xb0\xeb\x3b\xc9\xd0\x91\x56\xe0\x49\xf6\x86\x26\xb6\x34\x34\x55\x31\xed\xb6\x22\x0d\xb3\x13\xb4\xff\x2e\xf7\x18\xa9\x25\x07\x06\x8d\x45\x02\x15\x2e\x60\xeb\x11\xfc\x84\xcc\x3f\xee\x34\x88\xf9\x6a\x36\x9c\xc4\x00\x3b\xbe\xa6\x60\x23\xec\xab\x01\x32\x72\xd2\x94\x18\xed\x10\x8c\x13\x6f\x7f\x66\x4e\x84\xd5\xd1\x58\x09\x81\xac\x39\x19\x67\xec\x71\xbe\x35\x53\xd6\x1e\xeb\x0f\x6e\x2b\x7c\x8f\x83\x9b\xbd\xb2\x8a\xbb\xab\x8a\x7a\xe6\x78\xf0\xa4\x5e\x46\x22\x0a\xed\xed\xad\x62\xde\xc3\x2e\xb1\xef\x98\x1d\xf0\x06\x9b\x60\xbe\x3b\xf6\x57\x31\x8e\xad\xa2\x8c\x74\x67\x92\x73\x54\xbb\x9b\x9f\xba\xc6\x5c\x89\xb5\xef\x3d\xa7\x9d\xe0\x7c\x02\x7d\x87\xf6\x8c\xb1\x20\xee\xa4\xf1\x63\xa6\x6f\xe0\xb0\xb6\xdc\x0f\x7b\xca\x45\x2a\xad\x22\xf3\x3d\xac\x62\x2d\xe1\xa3\xb4\x52\x13\xc4\x28\x42\x00\x8e\x1f\x71\xed\x66\xaf\x2e\xa9\x19\xd9\x9d\x3f\xae\xd1\x59\xfe\xdb\x5f\x49\xfc\xd0\x72\x52\x09\x9f\xfc\x76\x38\x60\x47\x77\xbf\xbd\x3f\xae\x26\x47\x46\xe4\x67\xca\xc2\xcb\xb5\x43\x12\xfc\x24\x53\x45\xc1\x1b\x45\x70\x79\x48\x24\x46\x23\xb3\x74\x77\xe7\x18\xb9\x76\x5a\xf3\x56\xa8\x45\x72\xc5\x04\xed\xe8\xee\x6b\x25\x3f\x03\x7f\xb1\xc4\x36\x9c\xbf\xe1\x4e\x69\x4b\xe3\x79\x4b\xc4\xf5\x31\x57\x4a\xb3\x68\xd0\xd1\x61\x9b\x0c\x75\x48\x02\x60\x7c\x8c\x85\x09\xae\x67\xb7\xa2\x17\xba\xc2\x66\x8c\xc4\x2f\x74\x09\x3d\xcf\xe1\x92\x3f\xb1\xa0\xc6\x84\xc9\xa2\xbf\xe8\x55\x55\x69\xe4\x56\x7f\xe5\x6b\x7b\x0a\x33\x8e\x79\xd8\xf3\x36\xb7\x1b\x21\x16\x76\x58\x5b\xc4\x49\x5d\x23\x3c\x05\x66\xaf\x77\x2b\xb8\x49\xa1\x2f\x7b\x66\x7e\x0d\xd3\x77\xbd\xfe\x26\xbe\x40\x54\x88\x50\xfa\xf6\xeb\x47\xf6\x13\xce\x37\xd3\x57\x1d\x53\xfb\xba\xbf\xf9\xa0\xac\xdf\xef\xd3\x7e\x29\xa8\xfd\x5a\x45\xc1\x06\xe2\x09\xdd\x46\x63\xe6\x88\x03\x68\xc6\x55\xbf\x12\x6c\x24\x15\xe0\xb8\x52\xe1\x32\x0d\x4b\xd4\x13\xbf\x90\x08\x05\x08\xd8\xce\x07\xd6\x91\x6f\x8c\x36\xaf\x0b\x3b\x19\x37\x36\x33\x59\x3f\x00\xb6\xd2\xdb\xab\x0a\x06\x77\xfa\x80\x5d\x48\xcb\xcf\x20\x58\xbb\x46\x58\x10\xe2\x46\x52\x13\xd9\xa0\xbe\xbd\x71\x66\x67\x26\x6f\xed\x72\xf5\x27\x4c\xe7\xfc\x4d\xc6\x24\xc7\x8e\x5c\x2e\x58\x5a\x88\x76\xb8\x3d\xe7\xdc\xe4\x44\x13\xb0\x04\xa7\x86\xdb\xda\x72\x48\xa0\xc5\xf3\x47\x37\x11\xcf\x21\x1f\x43\xd5\x16\x3c\x1c\x8d\x70\x96\x32\x45\xc4\x9e\x58\x32\x62\xf6\x15\x86\x51\x3b\x7f\xb1\xfc\xaa\xa9\xe0\x31\xa6\x78\x79\x2a\xeb\x20\x07\xb7\xec\x82\x4b\x83\x04\xe8\x38\x5b\xcc\xd8\x46\xdd\x86\x89\x3f\x8b\xbb\x1b\x32\x34\x41\xf8\xcd\xaf\x6f\x49\xd7\x13\x6e\x46\x13\x3b\x74\xdb\x90\xb4\x42\x36\x0d\xf1\xb2\xbd\x72\x6b\xca\x3a\xb2\x98\x7e\x38\xce\x06\x60\x08\x31\x70\x5a\xa2\x15\xa0\x94\x57\x16\x71\x7d\xca\x8e\xb2\xbc\x22\x1d\xc4\xa2\xb0\x23\x65\x6c\x6e\x5c\x50\x43\x84\xe3\x90\x5c\x69\xcd\x4b\x26\xff\xaf\x79\x41\xbb\xc3\x64\x5d\xf3\x86\x28\x31\x6a\xe1\x1c\x05\x56\x77\xd9\x57\xc9\x33\x0f\xd1\xce\x02\xeb\x48\xf5\xb4\xc0\x00\x9c\x3f\x46\xc2\x35\x40\xaa\x9e\x6d\x80\x1d\xee\xab\x3d\xc5\x30\xae\x6e\x3e\xd4\xab\xbe\x6a\xa6\x78\x46\x5f\x2f\xcb\x9a\x55\xe5\xab\x12\x40\x90\x6e\xb9\x28\x96\x8a\xa8\x33\xdb\x95\xc7\x54\xe1\x2b\x14\x2a\x70\x48\x76\xe3\x37\x0b\x46\x54\x34\x55\x20\x86\x71\xc5\x12\xcb\xa1\xf8\xfa\x3b\x91\x96\xb4\x4e\xe1\x2d\xd6\xd7\xc5\x55\x16\x76\x23\x3c\x9b\x2b\x0b\xfe\x4d\x84\x7a\x23\xb8\x37\x03\x62\x25\x39\xfd\xf4\x07\x17\x95\x31\xcb\x7c\xa3\x52\x93\x7d\xc5\xc5\x6b\x22\x76\x0c\x96\xc6\x73\xeb\xa3\x58\xbb\x88\x04\x7b\xbc\xe0\xe4\x0a\x4c\xd9\x52\x42\x3d\xb8\x00\x93\x51\xfa\xc9\xa4\x13\x99\xfa\x28\x38\xd6\xbc\x4d\x1a\x71\x77\x0d\x23\xe1\xdb\x73\x1e\x03\x33\xb5\x3a\x97\xba\x23\x21\x20\x3f\x4c\x2c\x81\xab\x66\x6b\xaf\xe4\x05\x75\xdc\x5a\xd4\x98\x43\x3b\xed\xe3\xf7\x27\x6e\xf7\x9b\x9c\x4d\x4b\xde\x53\xc0\xb3\x20\x99\x83\x67\x42\xf1\xfa\x4e\x72\xa2\x73\xd7\x9b\x5d\x64\xa7\xe5\x4d\xd7\x9c\xe2\x4e\x7a\xef\x88\x87\x7e\x7a\x5e\x28\x23\x80\x42\x5b\x1f\x67\xb6\xa9\x98\x26\x54\x9f\xe4\x57\xf1\xec\x52\x31\x6c\x6f\xe7\x53\xb2\x98\x67\x5d\xf9\x09\xaf\x12\xfb\xf4\x68\xeb\xf7\xe0\xd4\xc8\x0e\x2a\xd2\xcd\xaf\x22\xc5\xa8\xc8\x00\x13\x6d\xda\xcc\x8d\xc8\x5d\xa2\xbb\x4d\x1c\x7c\x5e\x2c\x80\xf3\x76\x51\xb1\x81\x23\x16\x5f\xfb\xc8\x6b\x90\x25\x58\x46\x89\xaa\xd9\x4e\xbf\xa3\x45\x77\xa2\xc1\xc9\x8b\x20\x0a\x78\x0d\x92\xdd\x9f\x56\xba\xfd\xc4\x3b\xc1\x0e\x06\x16\x34\xb1\x58\x42\x1f\x0c\xdf\x3a\xeb\x8e\x64\xf8\x64\x26\x0e\x36\xe2\xc5\x32\x70\x03\x87\xed\x3c\xb2\xf6\x87\x09\x30\xc5\x1f\xd0\x8a\x8a\x63\x77\x22\x5c\x67\x3f\xc1\x84\xf8\x3a\x93\x4b\x84\xd3\x60\xdd\x0f\xf7\x6c\xf1\x66\x8d\x63\x44\xc3\x45\x9c\x15\x9f\xb0\x1b\xd7\x2d\x64\x51\x63\xa5\x00\x23\x6e\x4a\x91\xff\xa0\x69\xd8\x1b\xa7\x83\x81\x76\xa3\x37\xc4\x4e\x96\x15\x2b\x4a\x0e\xc1\xa4\xbe\xe3\x6e\xd9\x63\x79\x96\xc1\x69\x9b\x35\xf4\xdd\xfc\x47\xfb\x27\x1d\x50\x52\x8c\xd2\x28\x36\x47\x0f\xbd\x5c\xbf\x36\x5b\xe2\x01\x74\x5c\x11\xa5\xde\xeb\x4b\xfa\x5c\xe4\xf0\x88\xbc\xf7\x0d\x69\x5f\xb0\x4d\x52\x3f\x04\xf1\xcd\xa8\x35\x04\x25\xaf\x44\x78\x4a\x1d\xe9\xae\xf5\x12\x54\x2d\x5e\xeb\x2c\x9b\x77\xd3\x61\x61\x96\x2f\x29\xbe\x8c\xde\x3f\x0e\xf6\xeb\x06\x3b\x1e\x8f\x04\x71\xd1\x6e\x72\x9f\xee\xb3\x43\x85\xde\x01\x6e\x3e\xcb\x10\x86\xe4\x97\x64\x24\xc9\x3a\x59\x8d\xa1\xe0\x92\x18\xcb\xb3\xb7\xc6\xcd\x72\xa8\x3e\xa4\xd1\x4f\x32\x1e\x18\xdf\x09\x3c\x05\xd9\x87\xa8\xed\xd8\x3f\x83\x81\x38\xce\xc8\xf9\x5f\x3a\x38\x44\x1d\xf1\xd7\xd1\x12\x8a\x1b\x3d\xda\x20\xaa\xf0\xe1\xb8\xf0\xa3\x0e\x0b\x2f\x57\x0d\xdc\x96\x90\xa0\x3b\x9f\xe2\x54\x00\x54\x8c\xc0\x7d\x17\xb4\xef\x0b\x7c\x5c\xb1\x33\x6b\x69\x6f\x77\x9a\xad\xcb\x0e\xfe\x05\xad\xce\x10\xe9\x5a\x1b\x3d\x7f\x86\x7f\x11\xf0\x6c\x0b\x46\xb5\x15\x46\x42\xfa\xfe\xa5\x0d\x70\xab\x5c\x05\x9a\x71\xc1\xbe\x8f\xf8\xc7\xfe\x9a\xe8\x1b\x02\xca\xd6\xa5\x1a\x60\x0e\x68\x07\x23\x35\x70\x27\xd5\x2c\x88\xf8\x3a\x9b\x1a\x41\x78\x23\x9b\xef\x04\x10\x11\x39\x6e\x2c\x05\x5f\x72\xf8\xe6\xe4\xa6\x63\xb0\x27\x9c\x7b\x2c\x2f\x9e\xac\x4b\xbc\xa5\x0b\x7d\xa1\x88\x18\xec\x65\xc8\xfc\x25\xee\x3f\xb6\x7c\x13\xc6\xb1\x31\x36\xe6\x7f\x81\x9b\xc5\xf6\x4a\x21\xd0\x5b\xfe\xe0\xc9\xcb\xc7\x4f\xe9\x20\x60\x45\xf3\xb3\xec\x1a\x7e\x01\xb8\x65\xf8\xa3\xfd\x83\xef\x18\xd6\xea\x1d\xdf\x3c\xf8\x3f\x99\x16\xcc\x1c\x0b\x6a\xf6\x5d\x2f\x4c\xdf\x04\xff\xfd\xb7\x0d\xb7\xb7\x3c\x79\xe7\x50\x6b\x98\x30\x7b\x04\x91\xba\x48\x99\xc3\xc4\x53\xc7\xe6\x3a\x48\x03\xb6\xa3\x94\x07\xf1\xf7\xbd\xbc\xcb\x1a\xf8\xeb\x94\x73\x80\x65\xe4\xcb\xaa\xd7\xf7\xbe\x11\x6c\x3b\xa6\xe1\xda\xe4\x75\xe5\xbe\xd2\x85\xb5\xdf\x67\xc2\x1c\x48\x65\x68\x71\x76\x1f\x49\xc4\x62\xf0\xa1\x9a\x86\x93\x1d\x16\xe2\xfe\x9c\x33\x4a\x88\x72\x7c\xf4\xfd\x0f\xe7\xec\xa2\x63\x63\x0f\x38\x32\x4c\x7c\x8e\x6d\x44\xdb\xcc\x37\x2d\xb2\x86\x11\x41\xa6\x2e\x69\x45\x68\xd7\x77\x7a\x88\xe9\xbc\xdc\x70\x04\x46\x9b\x72\x55\x6e\x19\x56\x34\xd7\x9c\xbb\x82\xe6\x0f\x21\xb8\xb7\xb2\x63\xf0\xfe\xfe\x07\xe1\xf6\x2e\x0f\xc6\xe5\x24\x2e\xd7\x35\x69\x2f\x81\x19\x8d\x10\xb8\x72\x29\x90\xdb\x5f\x10\x2b\x11\x00\x33\x36\xf9\x3b\x77\xec\x8c\x83\x28\x69\x3f\x5e\xcc\x8f\x5b\xb9\x6b\x8f\x6e\xcb\x87\x14\x86\xe8\x64\x77\xaf\x6d\xf8\xf6\xa0\x65\x0e\x0e\x19\x62\xbb\x5b\x54\x65\xfd\x86\xc4\x06\x48\xa5\xa1\xc0\x0b\x5d\xfc\xa1\x68\x22\x58\xeb\xd6\x73\x4a\x1d\x33\x67\xf9\x7f\xff\xfb\xff\xe4\xff\x29\x3f\xa2\xa9\x1e\x75\x6d\xf5\xf0\xc8\x99\x7d\x5c\x83\xc0\xbb\x6d\x25\x95\x8c\x49\x91\xe1\x7d\x4b\x1c\xf5\x17\xc5\x77\xe0\x57\xe5\xba\x84\x86\x23\xc5\x3f\xda\x5f\x3d\x42\x27\xda\x70\xe7\x55\xb8\x6b\x43\xde\xe4\xee\x16\xb1\x65\xcc\xf0\xde\xce\xa0\x6f\x5a\xd1\xb5\xce\x13\x7e\x4d\xdb\x68\xf5\x66\x81\x9b\x48\x3d\xff\x9e\x6d\x2a\x2f\x6f\xde\x6f\x69\xd1\xec\x61\xd6\x5d\x96\xc6\xb2\x2c\xa1\xd8\x7d\x6c\xcd\x65\x21\x59\x90\x02\x82\xb0\x9f\x70\xf4\xd4\xc3\xb4\x24\x36\x54\xa7\x22\x2d\x4f\x5b\x6f\x25\x0e\x14\x42\xb6\x0d\x78\xc2\x81\x52\xe2\x33\xee\x94\x4a\xed\xd1\x93\xc8\x18\x4c\x51\x12\x92\xba\xa7\x3d\x1e\x10\x4d\x80\x43\xec\xa7\xa4\x14\xd0\xbd\x78\xe3\x25\xbe\xc6\xbf\xbd\xbf\x12\xf7\x44\xbe\x52\x27\xa4\x16\xfa\x93\x2c\x8b\x58\x73\xd6\xb5\x5a\xcf\x6f\xfe\x57\xbb\x6c\xaa\xec\xa2\xac\xe0\x97\x69\xaf\xb1\x91\x34\xa0\x53\xeb\xf9\x77\x54\xda\xda\xa0\x64\xbe\xcd\xa6\xfe\x3a\xf8\x8e\x92\x44\x29\xa0\xb8\x37\xa6\x0f\xa4\xa7\xab\xb5\x99\x1f\xdb\x8f\x93\x79\x45\x90\x86\x64\x98\x7e\xa4\x52\x4b\x5d\xc5\xf5\x36\xb4\x55\x4c\x07\x49\x9d\x36\x90\xfb\x33\xc3\x7a\x94\x1d\x08\x97\xff\x25\x9c\x54\x5a\x19\xbe\xb3\x96\x3f\x32\xbe\xe3\x6b\xd5\x35\x8d\xe6\x5a\x7e\xd0\xa2\x73\x5e\x92\xa7\xf4\xef\xcd\x9f\xe1\x71\x28\xe5\x1c\x42\x02\x48\x44\x90\x78\x68\x16\x77\x79\xd7\x9c\xba\xbf\x32\xd7\xed\x6c\xd8\xbd\x2b\x4f\xd2\xa1\xe4\xc3\xaf\x17\xd0\xf1\xe5\x9b\x2f\x03\xe3\xa7\x7d\xc6\x1c\xdf\x17\x6e\x68\x4f\xe2\x16\xeb\x39\x09\x09\xea\x17\xed\xcb\x71\x99\x34\xff\x0e\xf7\xa8\xbe\x48\xe2\x78\x0e\x71\x6e\x96\x51\x0b\x44\xb8\x9c\xd8\xc0\xd8\x72\x17\x15\x83\x34\x43\x62\x04\x8b\xd2\xaf\x84\x6f\xb3\x11\xfa\xa3\x6f\x35\x44\x1e\xfa\xcc\xfb\x4d\x4f\x41\xac\x08\xf7\xed\xc2\xb6\xf1\x8c\x18\x2e\xbb\x78\x4f\x41\xfa\x55\x0d\x8b\x3a\xe8\x2a\x40\xa0\xbb\x49\x28\xe9\x2e\x00\xba\x1e\x27\x81\x49\x51\xab\x17\x13\xdd\x92\xe8\xb3\xa4\x43\x77\x34\x93\xc6\x20\x86\x60\x0a\x7e\x85\xe4\x51\x45\x0a\x4f\xa7\x29\x92\x30\xe9\xf9\x21\xfe\x65\x39\x7e\x3c\x52\x0f\xe4\x06\xaa\x2c\xf0\x60\xea\x1e\x0e\x33\x1f\xc2\x08\x67\xb2\x8c\xa8\x9c\x5a\x44\xbb\x4a\xb2\xcc\x6e\x25\x47\xdf\x17\x5b\xdc\x35\xa7\xf1\x63\x6e\xa9\x90\xc8\x27\xe9\xce\x36\x29\x9d\xea\x41\x93\x8c\xd9\x4e\x2d\xe7\xf7\x8b\x11\x2e\x19\x8f\xee\xe3\x10\x71\x96\xc5\x48\xdb\xc3\x81\xc6\x1f\x49\xde\x5a\xb0\x5c\xda\xcd\x4f\x6c\xc0\x81\x1b\x44\x2c\xaf\x0e\xeb\xde\x42\x64\x43\x88\x41\x0f\xb8\xf3\xf5\x75\x12\x91\x78\xd0\xc0\x70\xdd\x55\x3e\x1c\x04\x41\xac\x4b\x82\x88\x7a\x08\xcb\xda\x0e\x80\xbd\x88\x37\x51\x3e\x43\x60\xa1\xe5\xa2\xe7\xde\x3b\xa3\x8c\xf8\xe9\x54\x1d\x63\x93\x83\x91\xdc\xbf\x6b\x7a\x3f\x4c\xe8\x91\x5d\x39\x55\x43\x16\xbc\x58\x2c\x77\x5c\x01\x4b\x0e\x70\x30\xfc\xe9\x0a\x38\xe5\x09\x37\x08\x5d\xe6\x0a\x1c\xb3\x05\x73\x70\x0a\x6b\x10\xe4\xf0\xa2\x85\x07\xf1\x70\xd6\xf8\x34\x43\x9a\x34\xd3\xcd\x9f\x8b\xbb\x97\xd8\x8a\x87\x53\x62\x40\x50\xac\x03\x84\x6a\xb2\xee\x47\x53\x67\x38\x6a\x84\xda\x90\x1b\xf8\xe0\x50\x50\x28\xdf\xba\x88\x27\x53\x43\xa1\x13\x64\xaa\xa2\xf8\x73\xdf\x59\x1d\xd1\xfe\xe0\xc3\xb8\x8c\xe0\x51\xd2\x0f\x98\x54\xc6\x94\x1f\x7a\xf3\xf0\x5a\xf2\x7a\x0c\x2b\x60\x8f\xf1\xa2\xcc\xed\x0e\xcb\xef\xff\xf4\xf9\x6b\x59\x96\x70\xdf\xf3\xd3\x17\xaf\x49\xb1\xbe\xff\xd3\x97\xaf\xf9\x9a\x67\x54\x79\x71\xa1\xde\xe8\x89\x16\xb8\xa2\x83\xde\xb6\xfa\xaa\x6c\x7a\xe3\x7d\x6e\xfc\xe1\xe2\x59\xc8\xdb\xce\x7f\x3c\x73\x01\x4b\x29\x37\x60\xcb\xd3\xa1\x74\x94\xf0\x82\xc2\x85\x90\x0b\x2f\xf0\x6d\xf6\x9b\x85\xc5\x81\x61\x56\x21\x18\x60\xcf\x33\x57\x5d\x3e\x43\x59\xea\xe6\x3f\x7b\x14\x61\xfa\x65\x81\xc9\xd3\x6c\x9c\x7d\xe1\x0f\xf2\xeb\x1b\x9e\x18\x50\xf1\xb3\xef\xa8\xf1\x17\x45\x87\x7d\x1d\xc9\xf0\xfe\x4a\x6b\x96\xf2\x2e\x49\x56\x26\x09\x03\xd3\x2f\x76\x40\x0e\xc2\x8e\x18\xee\x4f\x09\x70\xab\x19\x25\x02\x45\x0a\xfc\xb2\x2d\x87\xdf\xf6\xb6\xd4\xa6\xe0\x96\x19\x3b\x62\x71\x80\x03\x04\x33\x7a\x04\xbd\xbf\x13\x39\x32\x1c\xdb\x04\xfa\x16\x42\xf9\x7d\x8d\x88\x08\x42\xa2\xee\x05\x37\xb3\x01\x73\x6a\x24\x03\x1a\xcc\x8b\x81\x61\xb1\xb7\x25\xe7\x7f\x24\xf8\xdf\xd9\xc9\x96\x25\x1b\x2b\x36\xd9\x32\xb6\xab\xcd\xd3\xe4\x03\x8e\x28\x47\xd6\x48\xfb\xc1\x85\x79\x92\x56\x41\xea\x96\xd6\x21\x60\x09\xba\x5a\x4f\x22\x75\x02\x59\xd6\x0b\x17\x05\xc3\x9a\x07\x2b\x41\x7d\x5d\xb6\x46\x3b\xa7\x04\xa2\x23\x04\xe9\xdb\x60\x92\x9c\x63\x77\xc5\x53\x48\x3b\x8f\x5a\x17\x3f\x9a\x5c\xd4\xb2\x41\x46\x7b\xe7\x15\x77\xab\xce\x0b\x1c\x6f\x66\x5d\x94\x9d\x8b\x7a\x72\x18\x1f\x78\x7e\xb9\x11\xab\x2b\xa8\x3f\x1c\x08\xef\xca\xe4\x38\xed\xe2\x10\xa4\xe1\x71\x2e\x20\xab\xa6\x6a\x10\x1f\x4e\xff\xdf\x0b\x01\x4b\x34\xed\xd5\x91\x80\x27\xdf\x03\xd5\xf3\x8e\x8e\x0e\xaa\x91\x94\x20\x15\x26\x66\x26\x1f\xac\x3b\x24\x5f\x70\x0c\x3e\x85\x28\x30\x6f\xdf\x1e\x0a\x12\x51\x1b\x83\x6b\x92\xdb\x21\xbd\x27\x8b\x78\x53\xc3\x6a\x18\x84\x8e\x3e\xf5\x4c\x31\xf6\xe2\xc3\xdd\xa7\xc2\x9f\x6b\xea\x88\x4e\xbc\x27\xe1\x0e\x3f\xb8\x11\x99\x1e\x88\xd3\xd2\xdd\x78\x65\x44\x83\x6b\x5b\xd1\xa6\x44\xc0\xd7\xd7\x79\xac\x55\xd9\x4f\xb8\x44\x53\x44\xb9\xe2\x78\xc5\xca\x0b\xa8\x8c\xf4\x14\xb6\x02\x9b\x69\x30\x41\x83\x87\x85\x51\x10\x8a\x1f\x4c\x83\xce\x19\x81\x36\x31\xaa\xe6\x36\xa3\xa4\x4d\xa4\x67\x88\xec\x9d\xf3\x22\xbc\x94\x92\xc6\x91\x87\x62\x8e\xff\x0d\x3b\x95\x7f\xe7\x2b\xd7\x1f\xb5\x65\x41\x12\x85\xd4\x2b\xa2\x18\x8b\x9b\x7a\x03\x13\x5f\x5f\xd1\x09\x02\x09\x4b\xfe\x96\xf8\x71\x07\x40\x8a\x3f\x89\x29\x5d\xe3\xfb\x39\x01\x1a\x71\x21\xeb\x3a\x9c\xe5\xcf\x30\x72\x3f\x4b\x17\x62\x54\xbb\x46\xe0\x32\x1f\xe7\xcf\x9c\xff\x9c\xc4\xea\x24\x88\x80\xf3\x8c\xb6\xf9\x21\x7d\x93\x5f\xc5\x07\x36\xb1\xb7\x47\xdc\xee\x23\x9c\xda\x85\x65\x75\x7f\xe0\x1f\xc2\xf0\x2c\x7e\x62\xa9\x7f\x62\x6d\x79\x47\xcb\x52\x15\x4c\x54\x17\xbd\x91\x5b\x5f\xf4\x51\x58\x26\xcb\x26\xdc\xaf\x11\x0c\xeb\x58\x2a\xff\x0d\x46\xec\x4a\xbf\xf4\xa5\xb6\xe5\x8d\x6e\xd7\xee\xd4\x96\x0e\x6c\xd3\x98\xd0\xdf\xdc\x38\xd5\xfc\xa7\xd7\x8e\xe2\x48\x3d\x58\x38\xb6\xc9\x7b\xf4\x28\xe6\xa1\x09\x50\xaa\x76\x87\x2f\x50\xd9\xcd\xfc\xd0\x19\xb1\x83\xbb\xa0\x03\xb2\x27\x2d\x2d\x3d\x4f\x28\xca\x44\xc9\x67\xac\xbd\xf4\x4c\x56\x8f\x59\x30\xfb\x32\x15\x1c\x97\xc7\x5e\xf4\xd1\x7d\x1f\xae\xf6\x1c\x2a\x66\x09\xb6\xe6\xdf\xf5\xa5\xfd\x10\x51\x8d\xfd\xf6\xdb\xfb\xe3\x51\x57\xe2\x30\x13\x62\x64\x93\x9d\x2d\x2d\x90\x34\xaa\x88\xf8\xf9\x26\x18\x17\x63\x92\xc1\xc5\x99\xe4\x93\xd6\x76\xca\x5b\x9a\xeb\xc8\x4b\x95\x65\x3d\x1b\xcb\x73\xa9\xa2\x2b\xd4\xa1\x9f\x5d\x21\xc9\xd4\xde\xb8\x49\x95\x86\x98\x81\x5e\xbd\x81\xe3\xfe\xf9\xa5\x38\x97\x55\xe5\x8a\x36\xba\x2d\xcd\x4b\x93\x73\x8c\x05\xb5\x03\x8c\x21\x39\xb0\x39\xc8\xb7\x6c\x8a\x81\x0f\x33\xfd\xbe\xcc\x91\x19\x19\x00\x17\xc4\x9e\x36\x7c\xb2\x05\xb6\xa0\xea\x05\xdf\x4d\x30\x8e\x62\xfb\x30\xad\x8e\xbd\xa4\x48\x70\xcf\x09\xa3\x3c\xf6\x7d\x56\xc4\x18\x0d\x51\xdb\x6c\xae\x1f\x34\xef\xb3\x5d\xee\xe9\xc1\x06\xcc\x46\x9d\x58\xec\x59\x0b\x9d\xc7\x02\xfb\x6d\x63\x9f\x57\x22\xb9\xb3\xfd\x65\x6f\xdf\xe3\x44\xa8\x86\xfd\x98\xc6\x76\x3e\x1f\x44\xce\x2e\x41\x55\x4a\x62\x29\x0b\xfa\xce\x6d\xf6\x09\xce\xc0\x64\xdf\xd7\x76\x1b\x73\x35\x9e\x81\x21\xc6\xd5\xf4\x39\x8d\xf0\x41\xc7\x0e\xf0\xb4\xfe\xb9\xec\x12\x41\x03\x5b\xaa\x97\x7a\xa5\x30\xc2\xee\x12\xf7\x12\xb4\xcc\xaa\x82\x42\x88\xd8\x97\x9c\x41\x13\xc2\xfb\xf4\x0f\xf7\x8b\xcf\x72\x98\xad\x73\xa3\x36\x91\x59\x72\x97\x5f\x97\xdd\xa5\x14\xf2\x48\x1c\xc1\x71\x27\x34\x5d\x34\x7d\xad\x4a\xc4\x5e\x80\xf4\x18\x88\xfe\x9e\xfd\x9c\x45\x06\x40\x6f\xbd\x6a\x22\x13\x4f\xf4\x79\xd2\x10\x11\x7d\x9f\x36\x46\x0c\x01\x0a\xa7\x9b\x20\x88\x2c\xee\xbc\x59\x14\x3d\x11\x0f\xf8\xf0\x19\x93\x31\xe2\x19\x68\xdd\x90\x01\x70\x38\x0c\xd2\x7d\x20\xb7\x0f\xdb\x76\x7a\x44\x3a\x27\x3a\xe0\x97\x97\x84\x55\x24\xe4\x21\x19\x34\x0f\x5f\x85\x06\x5c\x8c\x54\x3b\x14\x27\x66\x49\x07\x72\x44\xdc\x82\x1f\x11\xfb\xce\x6f\x3e\x74\x7d\xd5\xc4\x1f\xc6\x37\x9e\xf1\x47\x37\xe9\xef\xe2\x09\xe7\x9f\x36\x36\x8d\xe4\x67\xe9\x2c\x75\x64\xc4\x8f\xbf\xf8\x24\x55\xb6\xb9\x85\xac\x3f\xae\xcf\x5c\xe2\x46\xf1\xe8\x4b\xf0\x9a\xc6\x09\x1f\x84\x68\xec\x07\x3b\xfa\xef\xe1\x66\xf3\xb0\x28\x1e\x4c\xa0\x21\x75\x27\xf1\x9f\xe5\x1a\xce\x39\x91\x00\x74\xc0\x6b\xa3\x86\x22\x71\x74\x1a\x9d\x00\x88\x96\xee\x95\xb1\x49\x9b\x7b\x04\x49\x17\x11\x36\x5d\x4e\x44\x3f\x0a\x5e\x55\x8e\x5f\xae\x2f\xfa\x1a\xfe\x96\x4a\x12\x5f\xc4\xb9\xef\x06\xab\x3b\x90\xf1\xa3\x4f\x56\x06\x7e\x6e\xcf\xbc\xdb\x47\xeb\x1d\x02\x39\x8e\x92\xe5\x3e\x0e\x55\x4f\x31\xe4\x7c\x9d\x58\x79\xd8\x8f\xa2\x54\xa8\x6e\x43\x2b\x53\x40\xd6\xc5\xc4\xca\xd3\x22\x81\x33\xd3\x0e\x7d\x47\x1e\x34\x43\x09\x7b\x37\x12\xa5\x23\x67\xbb\x09\xdf\xa2\xa9\x01\xec\xa1\x89\x5b\x7d\x8a\xb2\xc9\xc4\xec\xfc\x68\x80\x2d\x9f\x49\xb6\x55\x33\x97\xbc\xaa\x88\x7c\x73\x5f\xa2\xec\x57\x2c\xd5\xc8\x8f\x41\xf5\xcb\xa6\x79\x63\xe6\x7f\xd4\x4b\xfe\x23\x94\xaf\x89\x63\xf2\x27\x24\x01\x7e\x9a\x7e\x23\xc9\xb9\x5c\x4d\x26\x96\x07\xae\x1e\xdf\xbc\x37\x08\xcb\xf3\xe0\x05\x24\xf9\x76\xf1\x0e\xa6\xd0\xff\xd9\x30\x75\xe6\xa7\x34\xdd\x75\xdb\x04\x20\x8e\xb3\x3a\x43\x4a\xa7\xfc\x85\x64\x9f\x0b\xdf\x6c\x1c\x8b\xef\x70\x6f\x7c\x4e\x34\x77\x09\xef\xc0\x11\xf0\x7b\xc3\x9f\xd4\x20\x3c\xdb\xb7\xe9\xe2\x3b\xe7\xe7\x3e\xd0\x13\x1c\x43\xf4\x7a\xf8\xf0\x8c\x20\xad\x9b\x62\x00\x1f\xde\xf4\x51\xd7\x1c\x87\xec\x02\xb8\x06\x39\x9f\x49\x6c\xaf\x0b\x9b\x40\xd1\x38\xb7\xb6\x41\xbe\x44\x9b\xf7\xd7\xf7\xcd\xcf\x0b\x70\x00\x39\xa4\x3e\x23\xae\x07\x88\x77\xad\xec\xad\x61\x7c\x8b\x2b\x11\xf5\x53\x49\x06\x86\xfe\xcf\x61\x35\x07\xd1\x81\x3c\xa5\xf8\x72\x7e\x00\xe9\x1e\xe3\x10\x3f\x5d\x84\x90\x07\x4a\x4f\x3b\x3e\x90\x5c\x47\xbb\x1c\x17\x85\x88\x91\xed\xe0\x95\x78\x77\xc0\xb3\x75\x6a\xb5\xee\x60\x13\x0b\xc6\xe9\x5d\x68\x69\x17\x9f\xcf\x1f\xc2\x1b\x71\xbf\xa3\x20\x6d\x45\x8e\x9b\x1f\x21\x8a\xba\x89\x17\xea\xb6\x4e\xbe\xa0\x4e\xe0\x86\x04\xff\x0d\xd7\x8f\x4f\x76\xf9\x71\x5d\x8d\xf3\x36\xec\xa8\xe7\x4e\x17\xf2\x51\xce\x2a\x8e\x31\x0e\xe1\xed\x1c\xd9\x5b\xe2\xf0\x4a\x6a\x4e\x8d\x14\x8c\xcd\x5a\x61\x82\x24\x68\x03\xfb\x91\x56\xc7\x5a\xca\x22\xfe\x67\xed\x41\xce\xed\x2f\x91\x55\xbf\x1a\xad\x78\x8c\x6e\x09\xb3\x0e\x82\x6d\xf0\x3c\xcc\x4f\x5f\x1d\x3f\x39\x0e\xfe\x87\xad\x26\x41\xb3\x83\x31\x6b\x44\x6d\x09\x6e\x87\x2d\x46\x6c\x1b\x6e\x3b\x0a\x56\x81\xd8\xdf\x11\x2e\x65\x3e\x7b\xa0\x8b\x1a\x18\x6e\xc4\x03\xc9\x20\xbc\xd3\x9c\x0b\x32\x56\x70\x88\x11\x1e\x0c\xb9\xff\x81\x93\xb6\x9d\x95\x18\x07\x44\x33\xd8\xa1\x2b\x97\xd8\x4c\x60\x85\xfb\x72\x70\xf2\xfe\xf9\xb1\xe3\x05\xd0\x26\x2f\x45\x8c\x1c\x00\x5d\xcc\xec\xc1\xd0\x51\x0e\x67\xa6\x28\xb1\x5d\xe9\x32\xb5\x27\x9e\x26\x25\x31\x12\x92\x0c\x0b\x9b\x92\x8d\xe3\xb8\xb4\x3f\x0d\xef\x18\xd1\x17\xb7\x8c\x48\xfc\xfd\xa6\x06\x24\xe3\x70\x9b\x1d\x19\xe1\x36\x7d\x05\xad\x50\xbb\xa0\x9a\x5b\x3b\xfd\x52\x3a\x15\x83\xc2\x46\x45\x6f\x0c\x48\x07\x83\x29\xc4\x39\x4d\x81\x09\x31\x1e\x8f\x87\x5c\x87\xc0\x63\x1f\x41\xef\xd4\xec\xd9\xde\x33\x27\xf2\x84\x47\xfc\x9b\x0f\xbd\xab\x06\x6e\x4e\x2c\xb8\xdc\x12\x3c\x39\xde\x8c\x62\x1c\x16\xb9\x39\x36\x11\x7b\xc8\x8d\x7a\x43\x6a\xc3\xf8\xec\x99\x68\x4b\x5c\xc9\xf9\xa5\x83\xad\x3b\x95\x46\x83\x74\x02\x87\x4f\x57\x50\xb0\x05\x89\xc8\x7d\x34\xc8\xd4\xff\x77\x9f\xdf\xaf\x07\x47\xec\x46\x10\x3a\xe0\x57\x60\xe3\x79\x64\x76\x47\x61\x0f\xec\xaf\xe3\x11\x7d\x96\x86\x63\x79\x56\x19\xed\xa4\x68\xa4\x78\xb5\x80\xf3\xb1\xee\x6d\x29\x9c\x3a\xcc\x0b\xa6\x1a\x11\xff\x09\xc9\x1c\x1b\xdf\x4f\x5b\x87\x0a\xc7\xfb\x67\x31\x99\x00\xb6\xe4\x34\x16\x0b\x49\x12\x19\xa7\x0f\x48\xd3\x59\x54\x6a\xf8\xa2\x43\x92\x57\x2d\x8a\x3c\xdb\xec\x9b\x26\xb0\x75\x2d\xb2\x9a\x47\xae\x95\xdd\x06\x22\x9d\x1c\xbb\x90\xb3\x9d\x6c\x67\x9d\xd1\x68\x03\x28\xff\x30\x16\x6d\xa0\xb7\x70\x29\x6c\x5c\x82\xc1\x76\x18\xf3\xb9\xea\x39\x73\x22\xe1\x92\x88\xa9\xce\x57\xd8\x56\xa8\x76\x85\xec\x78\x10\x9a\x24\xc0\x22\x3f\x4a\xe1\xaa\x18\xc6\x6c\xa9\x6d\x6b\x10\x3b\x90\x30\xc0\x96\x93\x12\xb2\xc3\xa8\xee\xac\xf5\xfc\xf4\xc5\xd9\x79\x8e\xec\xdc\x85\x92\xb4\x52\x3a\x3c\x49\x60\x53\xc6\x40\xdc\x3e\x65\xa5\x74\x29\xec\x80\x9d\x89\xe2\xa3\x8a\x33\x87\x8a\x0b\x70\x0d\xab\x40\x7b\x87\x1f\xf0\xf7\x2e\xe8\xcd\xa1\x09\x76\xcf\x08\xe3\x16\xdb\xa3\xa0\xd4\x09\xbc\x0f\x41\x87\x26\x7c\xe6\x45\x16\x68\x10\x70\x3a\xd6\x37\xf8\xd4\xa2\x62\x71\x1b\x2a\x39\x56\x63\x22\xe6\x6a\x6f\xdf\x41\xdb\xb0\xe3\xdc\xa3\x60\x0c\x5b\x98\x39\xab\xce\xa9\x5b\x97\x29\x10\x18\xf5\x0c\xae\xab\xcc\x16\xc0\x6a\x0c\x23\x6a\x29\x52\xdf\xae\xd4\x52\x73\x7c\xff\x08\x66\x2b\x89\xe5\xe6\x36\xc1\xdc\x18\x60\xd9\x14\xbb\xf9\x51\xaf\xdb\xad\xcd\xd7\x69\x3d\x92\x46\x5a\x4a\xa0\x76\xaf\xae\xb0\x6f\x3e\xc8\x88\x74\x5c\x31\x15\x94\x8e\x1b\x32\x6f\x6c\x00\x7a\xe0\x3c\x16\xb5\x68\xda\x7c\xba\x88\x03\xb4\x71\x47\xf7\xa5\x6d\x8d\xfd\x37\x0b\xa1\x79\x64\x24\xf3\xb9\x32\x25\x26\x4b\xc2\x8f\x38\xb4\xa3\x8d\x23\xa4\xd3\xbc\xfe\xf1\xd9\x6f\x07\xcf\x37\x4f\x51\x14\x0c\x77\x18\x9c\x75\x39\x86\x0d\x29\xf3\xe3\x44\xfe\xa9\x2c\xf3\x0b\xde\x79\x6b\x70\xa1\xf3\x4b\x94\x28\x99\x3f\x8b\x23\x5e\x1e\xbf\xa9\x03\x91\x14\x94\xc8\x18\x1e\x8f\x66\x18\x23\xf1\x34\xa1\x71\x07\x35\x0a\x77\x9c\x80\xb5\x47\xa8\xad\x12\x6b\x6d\x29\x5c\xc4\xd4\xac\x96\xbe\x8f\x43\x88\x25\x1f\x7c\xc2\x19\xf2\x55\xba\x14\xf0\xe3\x65\x53\x39\x2f\x1f\x92\x61\xdb\x00\x79\x1f\x07\x27\x4c\x89\x76\x16\x0c\x24\x1d\x21\xed\xdc\x85\xe6\x38\x4a\xf0\xdc\xaa\x25\x95\xe2\xe6\xd7\xd8\x3e\x24\x42\x61\x87\x27\x71\xe0\x16\x0a\xce\xe1\xd8\xe6\xa7\xff\xe3\xec\xc5\xc9\x81\x1d\xe1\xdb\x87\xd7\xd7\xd7\x0f\x51\xf1\x61\xdf\x56\x24\x33\x52\x61\x61\x87\x7c\x80\x87\x41\xbe\xd1\xdd\xea\xeb\x47\xf4\xef\x67\xf6\x05\x12\x4e\xcc\xcd\x49\x02\x26\x78\x9a\xa5\xb8\xbf\x8b\x8f\xd9\xbd\x16\xbf\x0d\x33\xda\x76\x76\x51\x53\x57\xef\x10\xd0\x1a\x9d\x93\xab\x96\x46\x71\xc6\xff\xc4\xe5\x74\x66\xbe\xb9\x25\x3f\xc9\x10\x92\x64\xb0\x3a\x1e\x10\x7e\x8f\x80\xa2\xab\xe0\xf0\x89\x57\x51\x88\xe5\xb7\xbf\xfe\x33\x56\xc9\x1d\x36\xc9\xe2\x40\x2d\x84\xfc\x58\x4b\xee\x40\xe3\x0c\xf5\x96\xda\xbe\x1d\x36\xc8\xbe\xb2\x4d\x5d\xed\xe4\x35\x06\xa4\x12\x13\x72\x91\x65\xc5\x67\xbb\x8a\xb3\x61\x55\x4e\x3d\x0b\x0d\x66\xc7\xb7\x7c\x73\x1b\xa8\xd2\x78\x85\x07\x0c\x3d\x0a\x03\x1a\x54\x97\x54\x25\xf3\x27\x78\x37\x68\x83\xa3\x81\x94\xc5\xd6\x69\xb6\x36\xab\x6f\x33\xae\x15\xdd\xcb\x4d\x7f\x13\x1c\xbd\x4c\x7d\x65\xc5\xf4\xa8\xa6\x66\x3f\x87\x63\xf0\x24\x5a\xe4\x91\x38\xe2\xae\xf8\x95\xab\x81\xee\x1e\xed\x66\xce\xf7\x2a\x09\x5b\x46\xc5\x3e\x40\x20\xec\xf0\x68\x9b\x7a\x74\x5b\xa1\xc3\xb3\x29\x30\x3f\xdc\x24\xa9\xc4\x12\x01\xbe\xc1\x4c\x63\x8f\xc8\xe8\xfd\xa4\xdd\x71\x32\x62\x4d\x5e\x94\x0a\xac\x69\x74\xaa\x5b\xd0\xa9\x8e\x22\x31\x9f\xc6\xfe\xc7\x51\x2f\x56\xab\x71\xbd\x58\x33\xe5\xa8\x07\x71\x15\xc3\xd1\x5d\x22\x5d\x9c\xc6\xa1\x89\x14\xd5\x08\xf0\x75\x9e\x68\x89\x70\x97\x6e\xd0\x31\x33\x95\x8d\x13\xf8\x29\x4b\x8a\x92\x41\xcf\x85\x6d\x30\x97\x4c\x3c\x40\xce\x50\x49\xc2\xf3\x11\x40\x38\x6d\x02\x93\x96\x25\x20\x54\x82\x59\x07\x9f\x06\x6f\x71\x0d\xf7\x32\x69\x47\xb5\xd8\x91\x63\xfb\x1e\x69\xa6\x55\xb3\x4b\x72\x59\xd1\x70\x49\xd8\xa1\xd3\x54\xaf\x7b\x9d\xce\x2e\x40\xa7\x69\x16\xf6\xd5\x61\x3f\xfd\xd0\xc1\x89\xe4\xd3\xf6\x54\xe2\x73\x48\xbb\x36\x0a\xdf\x46\xac\xae\x25\x97\x17\x13\x23\x9f\x48\x00\xe0\xa1\xd2\x04\x06\x42\x3c\x12\x30\x5e\xdd\xd5\xef\xdd\x69\x0b\x92\x9a\x77\xd8\xee\xc6\x29\x09\x9e\x29\x97\xa1\x66\xd0\x18\xf8\xce\xf8\xba\x42\x4d\xcb\x8e\x11\x1a\xc6\x72\xf2\xad\x8b\x33\x51\x73\x4f\x0e\x97\xa9\xd9\x1a\xed\xe3\x7e\xeb\x69\x7b\xde\x84\x05\x80\x13\xbc\xb3\xa1\x8c\x9b\x9c\xce\xd2\x72\xeb\x00\x03\xfa\x8e\x26\x06\x35\x9d\xd7\x20\x2b\xca\x8b\x8b\x19\x69\x82\xd7\x06\x79\x00\xfa\x76\x15\x1e\x0f\xe6\x47\xac\xec\xfb\xa3\x0c\x06\x46\x47\xa4\xb4\x55\x45\xab\xa5\x44\x6e\x76\xe7\xf2\x8f\x14\xf1\x95\x7c\xfa\xea\x4b\x7c\x33\x5f\xe5\x4f\x08\x6a\xfa\x2a\x7e\x26\x2d\x98\xcb\xe6\x7a\x81\xbf\x38\x9f\x81\x99\x3f\x17\xf9\x92\x2d\x6c\x05\xde\x16\x20\x21\x48\xb6\x22\xc1\xd8\x2a\x00\xb4\xc2\xaa\x18\x3b\xdc\xf9\x16\xe5\x48\xba\x5f\x78\x21\x3a\x98\xf7\x98\xe1\xd8\x1f\xb8\x21\x85\xcf\x54\xc3\x19\x41\x1c\xc4\x2e\xfe\x6e\xad\x3a\xe1\xb3\x45\x20\x31\x97\xc7\x3f\x9c\xc8\x0f\x0e\x9d\xe0\x74\x6b\x88\x9d\xf8\x4e\xba\xcc\x5c\x34\xc6\x6c\x1c\x95\xe1\xbe\x48\x60\x0d\xff\x6d\x1d\xd5\x2d\x88\x87\x28\x5a\x75\xd1\x39\x6f\xad\xd6\x17\x6f\x5b\xed\xea\x9d\xb6\xfa\xe1\xb0\x96\x64\x26\xe7\x40\x66\xfa\xd7\x17\xf3\x5d\x9e\x68\x18\xbe\x4c\x41\x41\x9a\x87\x09\xc7\x88\x12\x7f\x16\x12\x56\xee\x1b\x1b\x87\xc3\x3b\xa0\x1d\xf6\xc6\x54\xb4\x88\x9f\xaf\xcd\xbf\xeb\xed\x73\x70\x61\xa2\xe1\x8e\xf0\x14\x79\xfb\xe8\xf0\x76\x88\x21\x25\x33\x2f\x3b\xce\x45\x60\x9f\x4a\xeb\x66\xc9\xa0\xa3\xba\x4f\xe8\x98\x46\xd8\x58\x2e\x37\x2b\x78\x45\x0a\xb7\xf7\x39\x0e\x74\x78\x11\xb4\x90\xd5\xa1\xf1\xe1\xa5\x85\xfc\xfa\x52\x75\xcc\x66\xc1\xf6\x10\xfb\xd6\x36\x57\xba\x08\x8d\x77\x6a\x3d\x91\x4d\xc5\x7b\xfa\x05\x30\x16\x77\x11\x7d\x55\xd6\x4d\x52\xdb\x47\x1a\xae\x9a\xb5\xb0\x43\x2f\xdd\x08\xaf\xe2\x32\xe1\x6d\x78\x41\x89\x53\x16\x22\x29\x9a\x6f\x24\xe1\xe8\xae\x74\xcc\xc5\xdd\x97\xeb\xb6\xe4\xb7\x0a\x24\xb3\x7a\x4c\x11\xfc\x28\xd8\x8f\xac\x04\x9e\xe2\x57\x18\x3f\xc4\x6b\x08\x83\x47\x08\x0e\x25\x89\x46\x9e\x28\x1e\x92\xd2\x38\xcb\x07\x7d\x7b\x38\x5c\xed\x08\x3e\x44\x59\x7a\xa2\xb0\xca\xe2\x06\xc9\xb6\x98\xf3\x30\xfb\x27\x7d\xd4\x69\xa6\xd1\x53\x78\x61\x0c\xc3\x6b\x5d\xdf\x97\x10\x8a\x10\xcc\x8a\x83\x2f\x07\xa4\x87\xc7\x8f\x64\x8f\x58\x17\xcf\x7c\xb4\x57\x98\x80\xdc\x6e\xb1\x37\xd9\xa3\x6d\x26\x12\x92\x83\x7a\xc2\x3f\xf3\xf3\x4b\x7e\xc8\x67\x02\xb4\xe4\x94\xa1\x32\xe3\x27\xb6\x60\x04\xe1\x42\xa8\xb9\x2d\x04\xdb\x79\x24\x5d\xc3\x49\x48\xfa\x14\xc3\x2c\x38\x22\x56\x88\xcd\x06\x44\x56\xa4\x43\x37\xf9\xae\xe9\xf3\x6b\x55\x77\xd8\x1e\x2e\xd3\xe1\xb7\xe3\x5e\xc2\x23\x03\xd2\xb8\x27\x77\xe9\xa0\xc8\x2d\x00\xd2\x4b\xee\x3e\x19\x91\xfe\xc2\xfa\xb2\xd8\xfc\xac\xe9\xd1\xee\xda\xb4\x49\xb7\x03\x71\x87\xb5\x2b\x9a\xeb\x1a\xf4\x65\xd8\x75\x02\x04\x86\x57\x83\x9a\x76\xfd\x3a\x24\x05\x1f\xbd\xcf\x44\x9b\x2c\x7d\xf6\x1c\xa0\x3e\xff\xe5\x24\x7c\x33\x82\xff\x88\x24\x09\x69\xba\xde\x28\x4d\x02\x1e\x8d\xf7\x79\x12\x66\x2e\xd0\x11\x49\x80\xc5\xb9\x30\x1d\x1d\xc7\x1a\x8a\x00\x5e\x44\xb1\x10\x4d\xb6\xd5\xcd\x56\x32\x8f\xc2\xb4\x62\x90\xb9\x19\x6f\x2b\x9b\x66\xa3\x71\xcb\xfc\x03\x7e\x22\xc2\x89\xf3\xe8\x96\x48\x1b\xa3\xd5\x86\xe4\x6a\x4e\x0c\x6d\x32\x4e\x17\x6b\xed\xb5\x66\x6e\x4d\xb4\xae\x38\x49\x42\x9b\x3c\xd9\x14\x85\x65\xa2\xbd\x10\x8e\x29\xf6\x6d\x69\x9d\x51\x34\x76\x69\x09\xd9\xcd\x23\xdb\x8a\xad\xc1\xdf\x6e\xa9\xe2\x90\x6d\xd3\x1f\xc5\x69\xd8\x65\x73\x3b\x2f\xf7\xd6\xc9\x3b\x36\x03\xb6\x4d\x9b\x16\x9c\xc2\x25\x65\x9f\xef\x2f\xe4\x55\x38\xae\xc5\xd8\x01\xe3\x29\x53\x61\xd4\xcc\xb7\x52\x21\x89\x74\x0e\x8a\x77\x4d\x4a\x0b\x3f\xa2\x13\x5d\x7e\x11\x5a\xa1\x7e\x8b\x89\x36\x69\xe9\xae\x80\xf8\x11\xc5\xfd\x43\x53\xf0\x4e\x37\x3e\x19\x17\xff\x77\xf8\x5d\xec\xcf\x27\x1b\x1b\x38\x47\x89\x65\xfd\xc7\x3d\x19\x66\xff\x1e\x77\x88\xb4\xca\xed\xa9\x40\x87\x3c\xe2\xee\x8c\xa0\x43\xaf\x0b\xc2\xf1\x3f\x28\xe7\xec\x70\xc1\xc6\x2a\xfc\xc7\x24\x37\xb5\x99\x4d\xa7\x08\xc0\x69\x37\x2a\x0a\xb4\x0a\x62\xfb\x2d\x6e\x0f\x29\xa3\x1a\xaa\xfc\x83\x14\x3e\x56\x85\xb9\xbd\x4e\xc0\xd6\xbe\xeb\x6d\x3d\x4e\x59\x3e\x75\xe3\x7d\x30\x48\xf1\x33\xbc\x68\x77\xf9\x7d\x8c\xfe\x64\xdf\x55\xdf\x5d\xa9\x7e\x86\x63\x07\xcf\x9b\xce\xf7\x33\x3a\x71\xa6\xaa\x06\x01\xa8\x19\x52\xde\xdf\x92\x05\x68\xea\x26\xcc\x99\x0a\xae\xdd\x6d\x98\xb8\x22\x8b\xe6\x28\xcf\x40\x7a\xaf\xd7\xd8\x64\x37\x4e\x85\x13\x23\x72\x62\x49\x90\x08\x4d\x0e\x16\x11\xa3\x56\x73\x9f\x18\x3b\x2d\x77\xcc\xd7\x5f\xdb\xf3\xdd\xb4\x5c\xa7\x07\xd0\x96\xdf\x4a\x9a\x9f\x4e\x97\x4f\xb7\x31\xec\x6f\x1c\x7f\xe4\xbe\xd8\x2b\xcb\xe7\x72\x02\xfa\x62\x6a\x6e\xa5\x55\x35\x7f\xb1\xc2\x45\x5a\xeb\xcb\xe5\x96\x35\x72\xb0\xb4\xe5\x24\x91\xc0\xe4\xe7\x12\xf1\xfb\x72\x7b\x2c\xbb\x18\x0e\x3a\x88\xdf\x71\x0e\x6e\xcd\x8e\x9a\x6c\xa0\x1b\xe5\xb0\xe6\x15\x28\xfd\x01\xee\x8d\x78\xee\x22\x15\x8e\xb1\x5f\x0d\x7b\xc0\x3b\x79\xf6\xd0\xcf\xe4\xac\x9f\x21\xc3\xfc\xfc\x15\x07\x47\xd9\x92\xe1\x28\xa5\x14\x42\x98\xcd\x59\x37\x3f\xf4\x3e\x1b\xcf\x88\x4d\x11\x0b\x19\xc3\x24\x29\x4e\xec\x31\xeb\xb2\x27\x6a\x0e\xbf\x93\x9c\x0e\x66\xf0\xde\xe3\xcc\x36\xc5\x6a\xc4\xb8\x3f\xd6\x2b\xa2\x1e\x63\xb0\x5b\xba\xac\xb4\x1e\x77\x75\xc0\x4f\x40\x88\x0e\x20\x99\x38\xd8\x64\xcb\x6e\xa0\x55\x18\x89\x3c\x3f\x3a\x1a\x49\x1a\xc1\x36\x06\xbd\x65\x34\xa1\x33\x8e\x2a\x91\x97\xa8\xf7\x8f\x4d\xf9\x84\xb3\x91\x6f\x0c\xef\xf6\x68\x94\x2e\xcb\x46\xdc\x5d\xed\x1c\xd7\x8a\xa1\xb8\x84\xbb\x89\xe9\x73\x5b\xbe\xf2\x4e\x30\x23\x51\xe6\xd9\xd0\x97\x8a\x9b\x9f\xca\xff\xf7\xb1\xac\x61\xe7\x9a\x70\x15\x48\xae\xd6\xab\xcb\x49\xe7\xbd\x50\x4b\xee\x79\x06\xec\x44\x46\xee\x84\x55\xbb\x55\xcd\x50\x7e\xfc\x3d\x62\x81\xc0\xbb\xfc\x77\x90\x64\x1f\x47\x37\xd4\x49\xa3\xb0\x18\xb2\xf4\x67\x39\x85\x63\xa3\xcf\xdd\x6e\x1c\x0c\x22\x6a\x34\x3d\x10\xda\xfd\x70\xa3\xf5\x65\x9e\x0f\x97\x08\x7f\x65\x0d\x46\x6f\x34\xcd\x20\x71\xf5\x8b\x78\x3e\xbf\xf1\xb9\x09\xb8\x49\xc4\x60\xfb\x80\xb6\x98\x0a\x83\x65\xd0\xbd\xb1\x31\xb5\x4d\xe3\xf1\xf9\x00\x38\x37\xd7\x51\x08\xcb\x40\x1e\x8a\x98\xc6\x90\xd2\xe2\x69\x0a\x0d\xc7\x3e\x63\x8e\x58\x2c\xf7\xf1\x84\xf1\x15\xef\x23\x3f\xbd\xe8\x41\x70\xcf\x6f\x46\x09\xdb\xc2\x43\x38\x29\xeb\xf9\xdb\x46\xe4\xf9\xd3\x1d\x63\x62\x86\xb4\x8b\xd9\x8e\xfa\x98\xa1\xd9\x87\xb8\xff\xa6\xa1\x1d\xee\xd9\x4d\xfb\x07\x78\x10\x8f\x6f\xb7\x97\x0f\x7d\xc4\xb8\xf7\x3e\x58\x32\xde\x9e\x7e\x27\x85\xb0\x14\xbf\x9b\x5e\xc6\x1e\xc1\x83\x7a\xd6\xb3\xc9\xfa\xf0\xda\x83\x37\x34\x59\x93\xee\x61\x93\xf6\x78\x3f\xdf\xd8\xda\xed\x1f\xbb\x36\xee\x05\x25\xdc\xac\xb9\x29\xfb\x00\xf4\x24\x55\xcf\xaa\xbd\xf9\x15\x59\xd0\xc2\x13\x36\x3f\xf1\x02\xbd\xce\xfc\xf3\xcc\xf3\xf0\xfc\x32\x1b\xff\xe6\xaf\x6c\xd8\x40\xe6\xb8\x97\xd5\x8e\xd2\xa7\x45\x6e\x79\xe0\xa5\xef\x2e\xe5\x45\x1c\x56\x7d\x0e\xc3\xfb\x38\x36\xe3\x0e\x38\xd8\x90\xa9\x5b\x7f\xc1\xf9\xe1\x95\x25\x8a\x2a\x3f\xc3\x6c\x36\x2a\xdb\x34\x35\x9a\x9e\x3f\x97\x7f\xbd\xf8\x49\xd2\xac\xc1\x6b\x92\x6b\x96\xa9\x68\x7a\x4a\xf2\x0b\x73\xc9\xcd\xff\xe5\x8c\xc2\x59\xd7\x74\x24\xfd\x9c\xe3\xff\x5f\xe5\xf7\x8b\x2c\xcc\x9b\x0d\xe0\x78\x40\x4a\xe4\x55\x6f\x25\x8f\x20\x7c\xf8\x12\x74\x43\xef\x06\x12\x37\xb1\xc3\x10\xd9\xe6\xde\x1b\x69\x46\xdc\x27\xec\x58\x93\x79\x4c\xf4\xbc\x80\x6f\x00\x34\x9d\xf4\x39\x75\x9b\xeb\x36\x3c\x94\x86\xc7\x65\x0b\x3c\x2e\x1b\xbd\x22\x14\xca\x86\x2f\x2a\x85\x2f\x36\xbb\xb7\xcb\x87\x9d\x7c\x4b\xcf\xf2\x50\x2e\x59\xb5\x8a\xb4\xd0\x27\xd1\x4a\x4a\xd5\x6a\xdc\xa5\xf0\xe4\xa4\x28\x71\xb7\x8d\x06\x17\x9c\x6e\x93\x62\x0e\x6a\xb7\x09\x3a\x0b\x36\x39\x49\x56\xe4\x18\xc8\xf8\xe7\x81\xe2\x52\xfb\xae\x77\x3a\x4b\x31\x90\xc7\x65\x17\xbd\x76\xee\xa2\x55\x43\x4a\x7b\xfc\xcd\x29\x15\x69\xb3\x2e\x04\x24\x2e\xf5\xd1\xea\x71\xe1\xa8\xae\x30\x99\xa4\x08\xaf\x9b\xe0\xda\x32\xe8\xa9\x29\x02\x8b\x5f\xfa\x9a\x9f\xaf\x9b\x20\xc4\x09\x53\xfb\x0b\xaf\x60\x4e\x56\x90\xd7\xd8\x25\x21\x62\xdb\x6f\x91\xe6\x60\x0a\xac\xed\xeb\xf9\xb1\x28\x4f\x31\x00\xa4\x7b\x44\xfd\x71\x0a\xe9\x86\x93\x0b\xba\x9c\x43\xf6\x35\xe6\xbe\x10\x4c\xbe\xc0\x43\xa1\xa4\x81\xd7\xc1\xb9\xfc\xd6\x76\x12\x37\xdc\xbb\xdb\x72\x0e\xb9\x7b\x4f\xea\xd0\x97\x3d\xf0\xa1\xba\xa6\x6f\xd9\x9a\x20\xc1\x84\xa0\x7a\x47\x6e\x0e\xdc\x7c\x54\x4b\xe1\x1d\x82\xfd\x0d\xfd\xfe\x21\xb3\x91\x54\x12\x68\xea\x74\xb0\x56\x42\xf5\xc9\x35\x07\xd9\x6b\xef\x68\x2a\x1e\xed\x1d\x2d\xfd\xfe\x41\xf3\x39\x5f\xaf\xed\xfb\xf8\xd6\x56\xaf\xaa\x2a\x0e\xda\x44\x8a\xf2\xb6\x20\x61\x1c\x97\x49\xd4\x7d\xc7\x56\x7a\x8e\xb5\xbe\xa3\x41\x3f\xf4\xc3\x8f\x6e\x91\xc6\x7f\xa5\xf7\xdb\xef\xe3\x29\xac\xcb\x6e\xb1\x5e\xb9\xa7\xfd\x2d\xf9\x63\x53\xa1\xf9\x2a\x7a\x6f\x83\xf8\x73\xdf\xfa\x54\xf2\x7b\x50\x1f\xb7\x36\x81\xf2\x04\xcd\x8c\x63\x67\xac\xc8\x47\xcf\x3d\xda\xfe\xe5\x08\xb1\xbd\x27\x1c\x81\x38\xdf\xae\x5e\xc1\x4c\x8a\x77\x2c\xd8\x1d\xe2\xa5\xf6\x8f\x05\x23\xee\xda\x26\x7f\x7d\x30\xa3\xef\x8f\x24\x3b\x5c\xf9\x4e\xb3\xd7\x80\x79\xf0\x29\x11\x73\x6d\x9f\x0e\x4c\xae\xde\x99\x92\xe5\xd4\xb0\xe9\xe5\xe9\x1b\xac\xbf\xef\x70\x45\xa8\xf8\x5c\xfa\xec\xd6\x71\x4c\x6d\x8d\xc1\x31\xe4\x88\xac\x95\x11\x77\xb7\x10\x59\xd4\x7e\xe4\xbe\x93\x4c\x36\x6c\x0f\x31\x07\xc5\xf9\xba\x83\xf1\x6a\xb8\x00\x9f\xb2\x2b\x96\xbc\xe4\x6a\x1d\x9e\xb5\x0f\xf7\x67\x12\xe8\xbb\xf0\x58\x6c\x30\x42\x26\x3e\xa0\x7b\x30\x11\x8f\x74\x82\x10\x7e\xcf\x30\xef\xc2\x54\x2c\x55\xc0\x06\xdf\x52\xe7\x24\xf8\xe8\xf9\x2b\xfe\x47\x04\x10\x9b\xea\x34\xe6\xc7\x7d\x0b\xbf\x84\xc5\xba\x69\x9b\x9e\x14\x2f\x3d\xff\xbe\x69\xf1\x07\x2d\x8e\x68\x9b\xc9\xce\x74\xe0\x7c\xe1\xb3\x5b\xf4\x9c\x54\xf0\x95\x58\x19\x9e\xa3\xac\x54\xb6\x5a\x54\x89\x45\x2f\x57\x05\xf6\xfc\x15\x5f\xfe\xb0\x2c\x16\x57\x7c\x69\xef\x02\x62\x09\xc9\xd6\x6a\x96\x9d\xa2\xc1\x15\x73\x07\xfb\x62\xc9\x77\xb9\x31\xe8\xb6\xe1\xac\xbf\x8b\x8a\xb0\xda\x6f\x17\x98\x35\x21\x9b\x74\x85\xad\x70\xb7\xc7\x37\x7f\x31\x44\xca\x92\x4c\xe5\xb4\x07\x6c\xb2\x6b\x07\x03\x1c\x37\x60\xc7\x17\x0d\x79\x5c\x1b\x29\x7f\xc6\x35\x9f\x95\x4b\xed\x22\x54\xc7\x55\x1d\x52\x2f\xb5\xda\xa6\x28\x7d\x4a\x25\x63\x7c\x32\xdc\x3e\xc4\xb8\x5a\x13\x08\x8a\xeb\x95\x45\xa5\x47\x75\x7e\xb0\x27\xd6\xbe\x3a\xec\xed\x34\xaa\x45\xbc\x90\x86\xbb\xa7\x8e\x15\xbb\xc6\xe3\xb3\x28\x19\xf5\xd5\x2c\x89\x19\xd2\x09\xfd\x82\xfe\xb5\xd1\x08\xf0\x42\xa6\x4f\x11\xe4\xb2\x69\x3a\x68\x87\x5b\x48\xdc\xec\x9f\x1a\x21\x0d\xf1\x9b\xa5\x24\xab\x7e\xec\xe0\x52\x99\x9b\x6a\xdc\x82\x3e\xae\x3c\x81\xbe\x0d\x12\x19\x53\x87\x6d\x0f\x4d\x9e\x0e\xd3\xa4\xd7\x63\xf7\x81\x36\xce\xf3\x33\x82\xbc\xad\xa6\xef\x76\x54\xcb\x77\x9c\x50\x26\xe9\x4c\x97\x7a\x6f\xd7\x3a\x6e\xe4\x08\xa0\xb7\xd6\x9d\xee\x9c\xeb\x4d\xf6\x2e\xcf\x1b\xe2\x20\x5e\xf6\xab\x37\xba\x43\x10\xea\xe5\x82\xdd\x61\x42\x5b\xa7\x0e\x28\x7f\xcc\x40\xf9\x53\x02\xca\xcf\x01\xe4\x1a\x8d\x49\x84\x4e\xc7\x0d\xf2\x92\xc0\xdf\x29\x5a\x03\x2e\xb1\x5a\xdf\xcb\xe4\xe4\x7b\x2c\x27\x9f\x6f\x2b\xd1\xce\x90\x4b\x62\x61\x55\x30\xbb\x7d\x21\xca\xfa\x86\x5f\x74\xad\x78\x5e\xf6\xed\x40\xa7\xcc\x5d\x76\xcd\xb8\x3d\xa4\xa3\x93\xf3\x7b\xb5\x23\x79\x75\xee\x33\xd2\xb1\xf3\xe6\xaa\x72\xba\xdd\xe4\x08\xa3\x76\x58\x09\xa5\x76\x98\x0d\x0b\x37\x70\xbe\x3f\x55\x2e\x7a\x69\x93\x7f\x7f\x34\xe2\x94\xae\xca\xa9\xa2\x65\xce\x85\x4d\x42\x95\x9f\x06\xdd\x22\x9d\xc6\xed\xb0\x6e\x20\x02\x6a\x35\xe2\x5c\xaa\x8c\x80\x6d\xef\x56\x0c\xb2\xb7\xfd\x04\x21\x46\x01\x89\x8e\xb2\xcf\xc2\x10\xbd\xea\x8a\xba\xae\xe5\xb6\x98\x1f\x86\xb1\xe7\x97\xb7\x1d\x48\x2d\x7e\xaf\xd1\xdd\x3f\xf1\x15\xbb\xf8\x68\xb9\x77\x48\x05\x28\xa8\x34\xb6\xc4\x89\xdb\x85\x7d\x2c\x92\x68\xc8\x7e\x98\xc8\xcc\x26\x5f\x44\x84\x4b\xec\x10\xf2\xc1\xa6\xa1\x94\xfc\x93\xae\x1d\x76\xf1\x6e\x39\x43\x9b\x0d\xf7\x45\xee\x2f\xf6\x64\x8e\xa2\xa6\xec\x9c\x5a\x97\xc9\x4d\xf9\x70\xb0\x68\x7a\xf1\x75\xa5\x3c\x78\x71\xbb\xaf\xe5\xcc\xd6\x8d\x93\x94\xd9\xc9\xb1\x56\x24\xfe\x84\xe2\xfc\xc5\x46\xfc\xe4\x79\x61\x0b\xca\x29\xc4\xe5\x52\x39\xae\xcc\xda\xec\x50\x45\xe4\x7c\x70\xcc\x30\xce\x6c\x4a\xb8\x7d\xad\xfa\x17\x14\xed\xbd\xc0\x13\x12\x50\x39\x06\x45\x6d\xb6\x3e\xfe\xc4\x94\x39\x47\x2d\x73\xf8\x52\x78\x07\x61\xf4\x5e\xb8\xb7\x62\x0f\x9f\x49\x3d\xae\xdc\x33\xa9\xc2\xb4\xc3\x33\x21\xb7\x5f\x4d\x07\xb4\x85\x3b\x59\x71\x45\x4a\xa8\xa9\x34\x8b\x40\x3e\xc7\xd1\x3b\x24\x51\x0c\x0e\xce\x9f\x00\xcd\x34\x15\x43\x8e\x0d\x94\x6a\x82\xe2\xd8\x43\x01\x21\x31\x2c\xe7\xdd\xd6\x80\x84\x5c\x33\xf9\x7b\xd1\x8f\xb4\x95\xa4\x1d\x49\x2a\x2f\xc9\xe2\x93\xb6\xa2\x94\x7f\x69\x83\xb7\xa6\xa1\x9f\x5c\x82\xf1\x53\xb6\x76\x09\x12\x04\xde\x7a\xef\x9d\x40\x4e\x3d\xc3\x1d\x5e\xff\xfe\x8f\x79\x6e\x3c\xee\xd9\x3d\x3a\x3e\xe8\xf8\x3f\xe4\xd9\xf1\x08\x37\xb1\xc7\xd8\x99\x7f\x9f\x67\xea\x2d\xb4\xe4\x15\x38\x7e\xa0\x79\xc6\xd1\xa5\x77\xb2\xd1\x91\x67\x57\xca\x25\xb9\x20\xf5\x83\xe2\xa2\xe1\xcd\x52\x26\x56\x5a\x66\x8e\x1f\xd1\x6b\xc2\x3d\xa5\xe6\xf4\xeb\x3b\xe9\x68\xa4\x64\x78\xbd\x2d\xa5\xf2\xd2\x86\xb1\xc9\xf9\x39\xfe\x41\x3e\x20\xae\x87\x2d\xa6\x24\x29\x12\xa2\x6d\xe9\x44\x6e\x77\x36\x27\x5b\xfe\x36\x3d\x85\xc1\xad\xc1\x04\x7b\x93\x26\x90\xf4\x29\x0d\x63\x7e\xd1\x96\x6b\xed\x3f\x47\x53\x92\x92\x90\x44\x59\x7e\xcb\xab\xc6\x85\x0b\x88\x91\xc2\x29\x9f\xb6\x68\xc8\x49\x7c\xc7\xe4\xb0\x18\x6c\xc0\xb3\x27\x01\x07\x01\x19\x52\x78\xd9\x98\x6e\xfe\x94\xfe\x67\x7f\x83\x27\x20\xe3\x59\xdb\x39\x08\x36\xb9\x15\xf5\xfc\x31\xfd\x9b\x3f\x39\x89\x4b\x27\x9f\xf5\x05\xdc\x14\x90\x7f\xbf\xb9\xb8\x62\x8b\x00\xad\xce\x57\xf9\xf8\x8d\x5d\x55\x6d\xe0\xfc\x63\x1d\x57\xf1\x2e\x48\xc3\x4f\xbf\x34\x33\xbc\xaa\xc5\x4f\x39\xae\xe2\xec\xa5\x7c\x34\x86\xac\x1a\xc8\x03\xa0\xaf\x24\xd9\xa2\x45\x30\x24\x0f\x4e\xf3\xf8\xd8\x1a\xc9\x13\x8d\xce\x4b\x1c\x11\x34\xcd\xf6\xc9\x49\xf4\xd1\x61\xba\xeb\xda\x72\xd9\xc3\xc9\x00\xe8\x3e\x94\x5f\x2e\xb8\x62\x04\x44\x72\x5d\x0a\xa7\xb6\x44\xab\x65\x31\x6e\x4e\x1e\x5d\x75\x60\x93\xaf\xae\x72\x0d\xc9\x3c\x29\x29\x27\x9b\x89\xf1\xf1\xd5\xd9\x08\xe8\x30\x3e\x7b\x04\x72\x83\x63\x6b\x61\xd4\xfc\x39\xa9\xeb\x45\x7e\x76\x68\xcb\xcd\xa6\xdb\xca\x13\x30\xd3\x24\x97\x9f\x3d\x3f\x3f\x8d\x60\x99\x7a\x50\x96\x47\x24\x84\x0f\x11\x19\xc5\x75\xac\x57\x9e\x8d\x0d\x32\x8e\x16\x0d\x8e\x13\xf1\xb7\x33\xd3\x90\x1f\x2d\x52\x20\x79\x55\x4b\xfa\x04\x6e\xb4\x6c\xfe\xf4\x42\x3a\xb1\xe1\xe2\x11\x00\xf3\x75\x39\x5a\x10\x54\x8b\x50\x0b\x09\x17\x75\xa3\x5a\xd9\xb8\x61\x64\xc2\xcb\x1f\x1c\x3c\x98\x25\x1b\x79\xd1\x55\x66\xfe\xd4\xc5\xd2\xe6\x47\xe5\x05\xeb\xea\xe7\xcf\xce\x1c\x22\xde\x94\x5b\x00\x2d\x10\xcb\x45\x02\xe2\x0b\x4c\x51\x5e\x7d\x42\x81\x47\x6a\xa8\xb1\xc5\x1d\x33\x07\xe4\xeb\x91\x87\xe8\x99\x0d\xd4\xcf\x4f\x0f\x9f\xa7\xe3\xe0\xac\x7e\x4e\x1a\xc5\x88\x2a\x3b\x24\x64\x25\x7e\xe8\x12\x09\x3b\xa6\x54\x6e\xd9\x23\xc2\xe8\x5f\x3c\xb2\xe3\x0c\x63\x38\xce\x47\x6e\x73\xd3\x8c\x27\x15\x93\x54\x4a\x29\x91\x3b\x9d\x08\x4c\x9e\x89\xa6\x31\x47\x83\x6a\x89\xf0\x1b\x3d\x88\x1a\x3d\x0b\x1a\xb1\xcd\x3b\x9c\xfd\xf6\x8e\x68\xd2\xc1\x2f\x6e\x38\x16\x75\x3e\x1e\x23\x43\xcf\xc0\x5b\x80\x16\xc2\xdd\xd9\x2f\x22\xca\x04\x7c\x67\x8d\xe0\x1f\x37\x98\xdd\x20\xf3\xef\x74\x2c\x53\xd4\xde\xe8\x59\xd6\x3d\xd8\xda\x13\xc3\x24\xd8\x76\x36\xc3\xc9\x3b\xd9\xd4\x76\x68\x2b\xa8\xed\x76\xe2\x0e\xea\x30\xbc\xe3\x18\x03\x52\xd3\x88\xe7\x31\x91\x07\xe1\x1e\xc8\x28\x74\x78\x1a\x68\x70\xf8\xd9\xd2\xe6\xe2\xa2\x22\x55\x1f\xd9\x9b\x35\xf2\xd6\x11\xb3\x2a\x6b\xac\xb6\x7e\x9b\x54\x2e\x0d\x6f\x34\xd8\x3a\xd9\x52\xb8\x86\x7b\xb6\x0f\xa3\xcf\x9f\x35\x6b\xd1\xec\xf9\xbb\xab\xd5\xf6\x6c\xf8\x6a\xdd\xc5\x80\x0b\xc6\x70\x4c\x3b\x02\x0b\xfd\xc3\x24\x24\x0a\x74\xd4\x3f\xcb\x5f\x6d\xd3\x74\xe1\x19\xa8\x7c\xf8\x68\xa1\x5b\x10\x5c\x0d\xaf\x16\xf2\xe8\xcc\xb0\x06\x73\xb7\xef\x5c\x52\x83\x63\x28\x34\x1d\xde\x24\x74\x95\x69\x62\x1f\x55\x13\xa6\xc9\x66\xed\xbb\x84\xe3\xd5\x20\x54\xfc\x8c\xcb\xc2\xf8\xe1\x74\x6e\x29\x98\x51\x32\x38\x56\x7e\x10\xaf\xf4\xf8\x48\x73\xa8\x5f\xee\x25\x2e\xac\xb4\x3b\xd2\x9f\xc0\xfe\x13\xd5\x09\xa2\x57\x28\x0b\xa2\x4e\x28\x8b\x85\xb6\x50\xca\x43\x1c\x0f\xc4\x98\x2a\xa6\x94\xb3\x67\x13\xdf\xfc\xb3\x86\x06\x61\xe3\xac\x68\xdd\x43\x8e\x78\x64\xa2\xbd\xf7\x59\x54\xc1\x63\x77\x50\xe6\x1b\x90\xba\xe6\x4f\x44\x62\xfa\xcb\x7b\xf9\x2e\xbf\x47\xe7\xe3\x32\xb4\xe1\xce\x89\x3b\xf6\xde\x2a\xa2\x34\x67\xb0\x48\xde\x6f\x47\x80\x3b\x2e\x4f\x9d\x73\x58\xc8\xf4\xd5\xb4\x93\xef\xec\x0f\x37\x85\x3b\x78\x92\x2d\xc1\xd4\x69\x0f\x1e\x37\x60\xc4\x18\x5a\x63\x88\x58\xda\x48\xdc\xe9\x9a\xda\x07\x1b\x3e\x6e\x3a\xaf\x49\xa4\x55\x5d\xae\x7b\x97\xfb\x9e\xe3\xac\xc2\xb8\x89\x10\x7e\x74\xaf\x21\x8f\xcc\x15\xae\x0d\x7b\x58\x8a\x5d\x53\xfc\xc0\xad\x79\x48\x58\x3c\x95\xdf\xfc\xca\x3c\x98\xbf\xb9\x6a\x8c\x2a\x6b\xe1\x39\x49\x4c\x3b\x1f\x89\x1f\x8e\xb2\x2d\xdf\x69\x49\x5d\x9c\x62\xa9\x92\x5c\xcb\x6d\xb3\x0c\x54\x7d\xae\x36\x74\xee\x35\xf9\xf3\x9b\x0f\x35\x2c\x7d\x85\x7d\xd0\x7b\x34\x8f\x2d\xa9\x46\xca\x4f\xe1\x48\x7e\x7b\xa6\x28\x41\xf6\x88\x08\x5c\x54\x7c\x1d\x1c\x24\x95\x1f\xcb\x42\xf8\x87\x8b\x34\xf5\x58\x36\xba\x0b\xf2\x7a\x54\xf7\xa5\x96\x38\x46\xb8\x4a\xc5\xb2\x3e\x8d\x6d\x5f\x63\x2e\x8d\xc7\xde\xdd\xeb\x13\x4d\xda\x0a\x24\x91\xf7\xd4\x9f\xae\xd7\x10\x3f\x2d\x12\x30\xf9\x46\x8c\xf2\x12\x09\xef\xb1\x2b\x21\xf2\x6c\x73\x24\xae\x4b\x7b\x9d\xff\x15\x40\x52\x0a\xd7\x1e\x13\xfb\xa5\xb0\x1f\x47\x52\x58\xb4\xe6\xb7\x9e\x6a\xcf\x19\x60\x00\x9e\xa8\x77\x50\xe3\xd2\xcf\x8e\x1e\x68\x7f\x37\xa0\x02\x65\x17\xee\xe9\xf1\xb3\x17\x03\xd0\x09\xae\x64\xbf\x8c\x78\x98\x2d\x9f\xe2\x58\xe2\x26\x31\x3d\x09\xf6\x90\x48\x01\xf7\x0d\x5f\x36\xcc\x6d\x4c\x58\xb6\x4e\x0a\x4f\xa7\xdd\x96\x1f\xc6\xc0\xbf\xfc\xbe\xec\x7e\xd8\xe9\x57\x37\xf7\x00\xd3\x0f\xce\xcb\x2e\x27\xf4\x24\xa0\xd1\xe2\x39\x78\xdb\x98\x07\xcc\xc1\x55\x41\x74\x6a\x59\x88\xc9\xe2\x4a\xeb\x30\xee\x01\xbc\x83\xbb\x85\x46\x7c\x0b\x7e\xfc\x44\xed\xe5\x50\xae\x17\xe9\x12\x1f\x06\xfb\x1b\x5b\x51\x6a\xf8\x2d\x6e\x83\x89\x57\x25\xdc\xe7\x3b\xbb\x39\xe2\xaa\xeb\x95\xc7\xa5\x5c\x05\x24\x08\xed\xdc\x55\x42\x05\xbb\xfc\x60\xe2\x55\x79\xa1\x07\x37\x0e\x6e\x6b\x4f\x4c\xff\xb2\xeb\xb6\xc6\xa6\x47\xb9\xf9\x33\x35\xcf\x8f\x65\x0e\x26\x7a\x47\x93\xe9\xd0\xb7\x25\x5f\x33\xed\x5f\xb3\x1f\x36\x0a\xb6\x96\x01\xb8\x3d\x04\xe7\x5e\x39\x62\xc8\x9b\xf7\x11\xa8\xdb\x77\xeb\xd6\x32\xfd\x68\xef\x7d\x6f\xcb\x62\x01\x68\xff\x8a\x46\x32\x0f\x00\x63\xa1\x4d\x3e\x3a\x57\xc3\xd9\xaa\xa5\x63\xed\x5c\xfc\xb4\xb0\x4a\xf4\xd3\x7f\x8b\x37\xb7\x2b\x33\x44\xd9\x45\x0f\x0b\x2b\x0d\xbc\x50\x01\x96\x5f\x38\xa2\x83\xe5\x2d\x6e\x5e\x7e\xd4\xef\xfc\x17\xff\x38\x12\x15\x86\x87\x91\xdc\x57\xfd\x16\x12\xa7\x1e\xdf\xc8\x44\xf5\x1b\x16\xfd\x4f\xf9\x5f\xb9\x30\x8d\x04\x4f\x07\x36\x91\x90\xdb\x0d\x99\xd0\x06\x56\xd4\x46\xa7\xee\x64\xff\xd1\xea\xeb\xd0\x81\x73\xd8\x74\x2e\x90\xf2\x73\x81\x04\x5a\xd1\x31\xeb\x53\x2b\x3a\x1f\x48\x57\x2b\xc8\x77\x71\xc9\xe2\xf3\xf8\x06\xc7\x7f\x1a\x4f\xc2\x7d\x69\xb6\xf3\x17\xdb\x59\x04\xc8\x8a\x56\xa4\x54\x0e\x2f\x73\xaa\xdc\xd8\x1b\xc0\x3b\x1c\xbf\xb3\x9f\x40\x63\x4d\xfd\x3a\x79\x98\x38\x49\x3e\x21\x49\xbf\x93\xcc\x2b\xf7\xe5\xb9\xac\x56\xd7\x3e\x59\x6f\x5c\x85\xca\x41\x37\x56\x57\x74\x8f\x59\x7c\x1e\x1e\xb3\x50\xb7\xbc\xc1\xe5\x9f\x43\xa2\x46\x2f\xcb\x77\x8d\xf3\xc9\x1e\x3c\x02\x62\xda\xd5\xa3\x61\x5d\x7e\x3a\x23\x01\xc3\xc7\x7f\x72\x0d\xcb\x04\xe5\xcd\xa8\x9f\xa3\x67\x95\xa2\x67\x9b\xdc\x14\x1f\x89\x85\xf6\x91\x4c\xf6\x0f\xd1\x7b\x4a\xb6\x95\xf4\x45\x13\x8b\xa3\x24\xb7\x7f\xdc\x9a\x7d\xb1\x64\xdc\x58\xf2\x8e\x95\x7d\xa3\xeb\xe6\xcf\x36\xaa\x22\x1a\xe2\x47\x0d\x6d\xe2\xa1\x83\x9f\xa3\xd7\x18\x7e\xef\xe0\x7c\x8e\x4e\x5e\x0a\xf9\x55\xb6\x25\x86\x97\x3a\x6c\xdb\x05\x9e\x5c\xdd\x40\x2c\x9c\x92\x09\x4f\xa2\x86\x45\x05\x9d\x52\x49\x32\x1a\x5e\xd7\xf8\x09\xab\xd1\xd2\x0f\x88\x85\x9f\xc1\xf9\xc2\x3f\x75\x82\xbc\x1a\x56\x5c\x55\x11\x5b\x86\x63\xab\xc9\xbf\x70\xa9\x2a\x88\xee\xbb\xa6\xa9\x5e\x67\x6a\x4d\x54\xa6\x56\x3a\xe3\xb7\x83\x11\x94\x25\x57\xd8\x0a\x4f\x68\x67\xf8\x2d\x7f\x7d\x6e\xe6\xf7\x4d\xfe\x39\x3b\xe4\xd6\x24\x74\x7c\xbe\x91\xdf\xb4\xab\xfa\x8e\x7e\x5e\xca\x4f\x81\x2d\xe4\x47\x71\xf3\x81\x7e\x5c\xbb\x8a\xb0\xea\x53\x3d\xe2\xb8\x52\x93\xb8\xdc\xe7\x3b\xf9\x1b\x32\x64\x66\x34\x31\xed\x82\xfa\xa1\x99\x17\xf6\xb1\x39\xdb\x1d\xde\x55\xa0\x7e\x34\x0f\xe2\x7e\x61\x7b\x35\xd9\x65\xd3\xb7\xae\x8c\xdf\xfc\xce\x0a\xb5\x73\x05\xe8\xde\x64\xd7\x5a\xbf\x71\x25\x32\x06\x66\xae\xdd\xa5\x6f\x4b\x23\xcf\xc8\x4e\x2b\xdf\x12\x46\x63\xb2\x56\x5d\x2f\xdc\x90\xfc\x30\x50\xe8\x86\xe2\x06\x91\xfd\x54\xb4\xcd\x16\xb9\xd2\x5f\xfb\xf7\xcb\xdd\x83\xac\x67\xfd\xcd\xaf\x55\xa7\xd9\x13\xf3\x4f\xfd\xcd\x87\x9c\xe9\xd0\xd8\x20\x70\xce\x01\xd0\x7a\x1f\xcd\x59\xe6\xde\x3c\x28\xeb\x6d\x6f\x35\xf5\x93\x51\xa8\xf3\xb0\x5a\xee\x62\x67\x3a\x0e\x73\x60\xc3\x00\x2d\xee\x62\x49\xa7\xe3\x31\x08\xcc\x89\xe8\x95\x7f\xdd\xfd\xd3\x7f\xfd\x57\x76\xa1\x24\x75\xe7\xdf\xfe\x2d\x7f\xfe\xf8\xb3\x5c\xbf\x45\x3a\xdd\x5c\x07\x78\x3a\x9d\xdf\x42\xaf\x21\xd8\x8d\x7a\xfb\x5d\x02\x8e\x9c\x06\x1c\xe3\xc0\xd7\x8d\xde\x8e\x66\x9b\xcf\xb2\xff\x1f\x00\x00\xff\xff\x5e\x7e\x03\xa3\xd2\xbf\x00\x00") func confLocaleLocale_esEsIniBytes() ([]byte, error) { return bindataRead( @@ -4399,12 +4399,12 @@ func confLocaleLocale_esEsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 49108, mode: os.FileMode(493), modTime: time.Unix(1446027988, 0)} + info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 49106, mode: os.FileMode(493), modTime: time.Unix(1448150136, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_frFrIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xdd\x8e\x1c\xc7\x72\xe6\x3d\x01\xbe\x43\x1d\x1a\xdc\x21\x81\x61\x0b\x92\xf6\x0f\x82\x5a\x5a\x72\x48\x49\x3c\x18\x52\x3c\x1c\x92\xc6\xae\x20\xb4\x6a\xba\x72\x7a\x4a\xac\xae\x6a\x55\x56\x0d\x39\x34\x0c\xec\xed\x01\xf6\x01\xf6\xd2\xf0\xc5\xae\x68\x03\x7b\xe5\x3b\xdf\x9d\x79\x13\x3f\xc9\xc6\x17\x11\xf9\x5b\xd5\x43\x4a\x6b\x2f\xec\x23\x4e\x67\xe5\x6f\x64\x64\x64\xfc\x67\xb9\xdb\xad\x2a\x63\xd7\xcb\x97\x6d\x61\x4d\x7f\x51\xaf\x4d\x51\x99\xe2\xdb\x7a\x28\x6c\xd9\xda\x62\xd7\xd7\x96\x4b\x86\xab\x7f\x18\x4c\x51\x8e\x43\x77\xef\xfc\xea\xfd\xa9\xe9\x37\x57\xef\x8b\x75\x57\xd1\x7f\x4d\x5b\x7c\xdb\xdd\xbc\x71\xf3\xc6\x79\xb7\x35\xcb\xfb\xeb\xf5\x68\xea\xe6\xe6\x8d\xaa\xb4\xe7\xa7\x5d\xd9\x57\xcb\x17\xe5\x69\x63\xca\x11\xdd\x9c\x76\x7d\x75\xf3\x86\x79\xbb\x6b\xba\xde\x2c\x1f\xc9\xbf\x3d\x35\x35\xcd\x6e\x79\xbf\xae\xcc\xcd\x1b\xb6\xde\xb4\xab\xba\x5d\x1e\x75\x6d\x6b\xde\xd6\x5d\xab\x45\xdd\x38\x2c\x1f\x5e\xbd\x5f\x67\xc5\xe3\x6e\x79\xd4\x5f\xbd\x37\x7d\x31\xb6\x34\xa1\xed\x6e\xa0\x3e\x7a\xb3\xa9\xed\x60\xfa\xe5\xc9\x41\xdd\xda\x75\x5f\xf7\x54\xf8\xc6\x9c\xda\x7a\x30\xcb\x13\xfa\x4f\xf1\xd7\xe6\xf4\xe6\x8d\x0b\xd3\x5b\xea\x69\xf9\x4a\xfe\xbd\x79\x63\x57\x6e\xcc\xf2\x19\xfd\xe7\xe6\x8d\xc1\x6c\x77\x4d\x49\xd5\x9f\xd0\x22\x7f\x6d\xa8\xa4\x29\xdb\xcd\x88\x0a\xc7\xf8\x83\x0a\xd6\xbd\xa1\x0a\xab\xd6\xbc\xd1\x29\x2c\x16\x8b\x9b\x37\x46\x82\xe3\x6a\xd7\x77\x67\x75\x63\x56\x65\x5b\xad\xb6\x58\xea\x33\x2e\x28\xc6\xa1\x6e\x6a\x4b\xad\xc6\xbe\x30\x43\xb1\x6b\x46\x2b\xeb\x30\x15\xad\x79\x55\x5a\x59\xf6\x7a\x10\xb8\x0e\x65\x3b\x14\xbf\x60\x2c\xe9\xb7\x2d\x09\xc2\x4f\xbb\x6d\x51\x1d\x44\x3d\x11\x40\xb7\x65\xdd\x2c\x1f\xdd\xc3\x3f\x58\x85\xb5\x6f\x08\xd0\x34\xf5\x01\x40\xc7\x6f\x06\xca\x6a\xb8\xdc\x19\x8c\x70\x56\xf7\x5b\xf3\x8e\x56\x50\xee\x86\xf5\x79\xb9\x3c\x92\x7f\x31\x4c\x6f\x76\x1d\x81\xa9\xeb\x2f\x01\xed\xdd\xd5\x3f\x0d\x37\x6f\x74\xfd\xa6\x6c\xeb\x77\xe5\x00\x60\x7d\xcf\x3f\x2c\xff\xb8\x79\x63\x5b\xf7\x7d\xd7\x2f\x9f\xd4\x7d\x57\xd3\x44\x08\x16\x2b\xf4\x40\x93\x1c\x2f\xb0\xe7\xbe\x0f\x7c\xd9\xd6\x9b\x1e\x20\xe5\x8f\x4d\x63\x8a\x27\x5c\xc0\x1d\xe1\xfb\x59\xd7\xbf\xd6\x8f\x85\xd9\x9e\xf6\x65\xbb\x3e\x37\x5b\xd3\x6a\x73\x9a\x46\x68\x9a\x4d\xa3\x6c\x69\x67\xb8\xc6\xb7\x57\xef\x09\xa5\x8a\xc6\xd8\xa4\x0e\xc1\xb9\xac\xb6\x04\xe3\x5d\xd9\x9a\x66\x79\x1f\x7f\x13\x8e\xb8\xe1\xcb\xf5\xba\x1b\xdb\x61\x65\xcd\x30\xd4\xed\xc6\x12\x16\xf4\xe5\xf6\xea\xd7\xa1\xa7\x7e\xaa\xb1\x38\x52\xcc\x9a\xfb\x7e\xf3\xc6\x65\x37\xfa\x3d\x5f\xbe\xea\xa8\xb0\x90\x5f\xfa\xc9\xb7\x7a\xd5\xd1\x99\x8a\x5b\xf2\xca\xec\xea\xcc\x98\x6a\xf9\x4d\x33\xbe\xa5\x9d\x2d\xd7\xc3\x58\x36\x35\xa1\x00\x7d\xdf\x8d\x4d\x43\x10\x25\x1c\xb0\x03\x0d\x4a\xbf\x8a\xe7\xfa\xeb\xe6\x8d\xda\x5a\xfa\x0b\xb8\x75\xda\x5c\xfd\xba\x95\xfe\xd6\x04\x35\x2c\xb0\x6d\xc7\x06\x47\xeb\xe6\x8d\x1f\xac\x29\xfb\xf5\xf9\x8f\x98\x3d\xfe\x58\x3e\x37\x04\xd7\x1e\xff\x63\x8c\x9d\xdb\x72\x60\xdb\xf2\x65\x8c\x63\x3c\x58\x18\x8b\x06\xea\x2a\x20\x53\xc5\xd8\xf9\x03\x9d\xb3\xa1\x6c\x1a\x1a\x44\xff\x5a\x3e\x96\x7f\x15\xc0\x43\x3d\x10\x6c\x50\xd6\x8f\x6b\xde\x90\x62\x47\xa0\x29\x9a\x92\x40\x65\xb6\xf5\xd5\xaf\x04\x34\xf3\x96\x0e\xf8\x28\x0d\xaa\x6e\xfd\x9a\x4e\x12\x28\x03\x0e\x72\x5d\x5c\x74\xa3\x75\x35\xe8\x78\x7c\xdb\x6d\x6c\xb1\xe9\xaf\xfe\x9e\x48\xd6\xd5\xdf\x15\x0f\xb9\xfa\x61\xb1\xa5\x85\xd5\xc0\xfa\x86\x0e\x3d\x7a\xff\xb2\xa4\x63\xd4\x6f\xcc\xb0\xbc\xb5\x3a\xa5\x33\xfc\xfa\x56\x71\xde\x9b\xb3\xe5\xad\xdb\xf6\xd6\x57\xb4\x4b\xeb\xab\xf7\xd5\xd8\x9b\x2f\x3f\x29\xbf\x2a\xca\x61\x20\x6c\xab\x2f\x18\xe9\x8a\xf2\x02\xc7\x8f\xba\xda\x76\x55\x7d\x56\x13\x52\xfd\x32\x76\x35\xce\x63\x41\x63\xda\x8e\x88\x64\x05\x22\xb9\xa6\xdd\xc5\x29\xdb\x98\xe2\x0f\x80\xe6\x2f\x23\x51\x98\x55\x75\x2a\x94\x95\xe7\xc9\x85\xa6\x1f\x8a\x27\x97\x27\x7f\x3a\x3e\x2c\x9e\x75\x76\xd8\xf4\x86\xff\xa6\xff\x50\xfd\xcf\x8b\x6e\x2c\x5e\xd4\x0f\x1f\xd0\x86\x50\x53\x01\x57\x82\x84\xbc\x9a\xd3\x52\xe8\x71\x45\x64\x82\x48\x8e\x95\xca\x38\xd6\x2f\xe8\x3f\xf8\xf2\x40\x6b\x3c\xf4\x35\xce\x69\xb0\xe5\x77\xb4\xad\x66\x6e\x5f\x13\x6a\xf1\xd0\x14\xcf\x84\x5a\x50\xb7\x81\xda\xf0\xd0\xd3\x8e\xa9\x8e\x6e\xcf\x2b\x33\xd6\x74\x2a\xdf\x29\x81\xe3\xf3\x47\x60\x63\x3a\xf7\xf8\xe9\xd3\xef\x1f\x3e\x20\x68\x9a\x35\x4a\x7f\x36\x7c\x13\xac\x69\x69\x44\xe6\x7e\xc5\xd2\xc6\xe1\xec\x3f\xaf\x36\xa6\x35\x7d\xd9\xac\x68\xf7\x18\x31\x18\x52\x04\x0c\x6b\x1b\x22\xa1\x15\x13\x62\x53\x9c\x9c\x1c\x63\xca\xc3\xf9\xf2\x88\x48\x43\x8d\x5b\xe0\x97\x06\xe0\xd6\x89\x1c\x53\xcf\xfc\x01\x87\xf6\xac\x5e\x9f\x63\xdb\xe6\x41\x37\x03\x78\xd3\xf7\x2b\xa2\xfb\xc3\x25\x76\x8f\x47\x89\xfa\xfb\xa8\x4e\x8a\x96\x30\xc1\x8c\x43\x41\xf7\x25\xe1\xdf\x05\x5d\x69\xda\x6f\xdd\x5e\xd0\xa9\xae\x68\x67\x1d\x68\xa9\xef\xd6\x43\x77\xd2\xf1\x8b\xc7\xbe\xb7\xb7\x74\xb1\xb5\x84\x99\xb5\x90\xb5\x18\x74\xb7\x16\xb7\x30\xf4\xad\x7b\xb7\x68\x98\xb6\x5b\x09\x8d\xc3\xb5\x53\xd1\x0e\xd3\xbd\xbb\x92\xbb\x50\xe8\x1c\xd1\x1f\x3a\x43\xe8\x14\x64\xf4\x1d\x6e\x86\x82\xae\x70\x4b\xdd\x11\xd2\x53\xef\x07\xa6\xd5\xfa\x72\x04\x98\x09\x58\x67\xf7\x6b\xc1\x83\x24\xe0\x72\xa4\x55\x51\xe9\x98\x37\xdf\xdf\x3d\x05\x53\x5b\x0f\x1a\x8c\x9a\x80\xe7\xe6\x0d\xb7\xf9\x53\xb4\x27\x72\x4e\xf0\xe8\x4b\x90\x46\xc3\x87\x9e\x88\x35\x71\x2d\x09\x72\x1e\xdc\xdf\xed\x9a\x7a\xed\x68\xb9\x7e\x76\x38\xf1\x98\x59\x00\xac\xf7\x8c\xc9\x0c\xaf\xac\xf1\xc0\xbf\x60\x7a\xdd\x45\x77\x45\x51\x13\x12\xfe\x41\x08\xa3\xa0\xc1\x23\x30\x03\x6b\x69\xf9\xbc\x5c\xd7\xb4\x94\x2a\xba\xdc\x7c\x45\x37\xe4\x0b\xc0\x19\x7b\xa5\x55\x2c\xb3\x54\xb4\x25\xb8\xd1\x2d\x58\xad\x8e\xa1\x4b\xbb\xb0\x21\x16\x89\xb6\x00\x63\x82\x16\x8f\xc4\xd2\xe0\x8c\x3e\x6a\x87\x5e\x80\x9e\x9c\x56\xf7\xdd\xe3\x7b\xcc\x08\x10\xf2\xd4\x20\x5b\x74\x15\x17\x74\xa1\x5d\xfd\x6a\x41\x19\x09\xb9\xc2\x94\x9f\x5f\xbd\x3f\xc3\x05\x49\x54\x0e\x97\x2c\xe1\xe9\x7b\xa1\xa8\x34\x16\x80\x0b\xea\xd3\x11\x1b\xd1\x2e\x1f\xf2\x3f\xc6\xfd\x76\x03\x1e\x19\xea\xaf\x3c\x3b\x23\x1e\xc5\xf0\x0a\xab\x6e\x3c\x6d\x40\xce\xab\x83\x97\xcf\x8f\xe9\x80\x7e\xc7\x87\xf6\x7c\xb5\xeb\xfa\x61\xf9\x8c\xfe\x83\xb2\x50\xe4\x3b\x3a\xa0\x4b\x8c\xb7\x61\xdc\xd2\x8c\x3a\xc6\x16\xd4\x26\x4a\xc9\xff\xc3\x67\x59\x1c\x51\x7b\xba\x34\x75\xa3\xc0\xa6\x62\xad\xd4\xe9\x21\x9a\x37\x25\xdd\x4c\x34\x7b\xe0\x92\x50\x8e\x04\xa3\xcb\xe2\xac\x6b\xf9\xc2\x69\xe5\x52\xa5\xd9\x9d\x0f\xc3\x2e\x9a\xde\x77\x2f\x5e\x3c\x8b\x0a\xdd\x04\x9f\x4e\xe6\x05\x4c\x2b\x03\xa6\x15\xe0\x46\x01\xb9\x72\x21\x48\x37\xf6\xcd\x12\x30\x98\x47\x49\xfa\xfa\xb1\x40\xc4\x8c\x3e\xc1\x7f\x4e\xb0\x45\xb4\x48\x39\xff\x44\x38\x0f\x0c\x33\x79\x7c\x68\xba\x1d\x3a\x9f\x3d\x35\x67\xe5\x7a\x6c\x06\x1a\xfc\xcc\x2a\x77\x38\x77\xa3\x8c\xc5\x49\xe0\xf9\x9f\x18\x6b\xe9\x0a\xeb\x6b\x70\x39\x5b\x82\x45\xb8\x36\x8a\x93\x27\x80\x10\x97\x9e\xf5\xdd\x16\x5c\xc0\x85\x69\xe5\x76\x8c\xca\xdd\xf2\xee\x57\xd4\xbd\x90\x33\xa2\x28\x6f\x77\x74\xc3\xd6\xc0\xcf\xc3\xe2\xf9\x37\x47\xc5\x7f\xf8\xfc\xb3\xcf\x16\xc5\x09\x50\x75\x6c\x41\x4c\xa4\x32\x81\xb2\xef\x81\x94\xb6\xa6\xc3\x66\x0e\xe5\x82\x25\x16\x92\xb8\xc2\x6d\x39\x14\xb7\xe8\xb0\xdf\x2a\xbe\xe4\xc5\xfc\x17\xf3\xb6\x44\xa5\x05\x11\xa4\xaf\x16\x60\xff\x88\xf1\xea\xf5\xe0\x30\x80\x64\xec\x47\x61\x6c\x5f\x29\xe7\x8e\xf9\xbe\x9b\xa9\xee\x64\x88\xd5\x5a\xf8\x65\x92\x6c\x3c\x4a\x29\x0b\x2d\x58\x50\x1d\x3c\x4a\x88\xa6\x8c\xb4\x6a\x3b\x82\xfe\x65\xdc\xea\x29\x4a\x1c\xee\x10\x6f\x50\x3c\xa1\x7a\xe0\x0d\xae\xfe\x37\x8b\x01\x40\x6c\xf0\x8a\xbc\x25\xf3\xfb\xe5\x90\xdf\x0c\xdc\x01\xc9\x63\xf8\xa0\x4d\xa8\x8f\xee\xec\xac\xa1\x43\x2b\x17\xa6\x1f\x9a\x36\x17\x77\xe7\x79\xd7\xdb\x22\x92\x9f\xe2\xca\x84\xf9\x3b\x12\xa5\x1e\xc6\x47\xc7\x14\x47\x0f\x9f\x12\x47\x75\xf5\x0f\x5b\x03\x69\x84\x98\xa5\x4a\x78\xb7\x45\xf1\x02\x88\x2f\x24\x0e\xdb\x47\x7b\xb7\x36\x9e\xae\x81\xce\xf5\xf5\xe9\xc8\xf7\x18\x35\x6c\xba\x75\x09\x94\x75\x57\x12\x31\xfd\x17\x25\x31\x65\xf9\x70\x0e\x1b\xbf\xd5\xef\xd3\x16\x33\xd3\x74\x95\xe5\xa4\xd0\x1c\x74\x2e\x84\x88\x56\x0e\xbd\xc5\x3c\x0e\x8b\xc1\xd1\x64\xa9\x8f\x9a\x34\x57\xa2\x08\x0d\x9d\xe3\xf3\x12\x12\x2d\x33\xe7\x5c\x27\xa2\xaa\x16\x17\x2c\xca\x89\xae\x9c\x11\xc4\xa3\x85\x24\x77\x6b\xb6\x18\xa0\xed\x48\xc4\x89\x48\x56\xa5\x52\xe8\x4e\x39\xdb\x99\xd6\xf3\xf0\xdf\xd7\x07\x1d\x0e\x33\x36\xba\x9a\x20\xc9\xf0\x64\xe9\x8a\xbd\xc0\x35\xa5\xb7\x36\xd0\x44\xae\x6d\xd0\x76\x3a\xb4\x18\xd9\xc9\x7d\x82\x21\xef\x78\xab\x9d\x08\x98\x56\x71\xf3\xa2\x63\xd7\x0a\xa3\xc2\x5c\x8c\xe0\xb0\xb6\x51\x46\xfe\x80\xb5\x03\x19\x03\xc1\xe7\x2a\x02\xe6\x42\x19\x64\x12\x46\x55\xd0\x5f\x5d\xd4\x24\x40\xeb\x00\x3d\x93\x04\x8f\xa3\xd2\x33\x11\xca\x1a\xc2\x0a\xaf\x05\x6c\xb6\x9d\xef\x44\xe7\x7a\x42\xa0\x51\xd4\x54\x1c\x30\x8a\xf6\x10\xab\x4d\x80\x10\xdf\x93\x8d\xeb\x73\x51\x1c\xd3\x9f\x17\xb5\xad\x05\x8e\x65\xdb\xb5\x97\x24\x53\x29\xbb\xd4\x33\x66\x73\x13\xbe\x08\x5c\x33\xe6\x65\xdd\x7c\x3f\x49\x57\xbf\x70\x32\xa7\xca\x7f\x22\x10\x08\x0f\x76\x50\x3a\x06\xec\xd4\x10\xa5\x63\xfe\x72\x0f\xa3\x55\xa4\x97\x7c\x79\x09\xc2\xdb\x1c\x3c\x7e\x58\x2c\x8b\x4f\x89\x06\xf4\x25\x80\x2f\xf7\x3d\xb7\x60\x3d\x0d\xa8\x13\xcd\x34\x99\xc7\x2c\x4d\x11\xd1\xb6\xb8\x9f\xe0\x91\x6b\x11\x69\x1c\x12\x3e\x24\x63\xf8\x62\x5a\x0a\xc9\x90\xc9\x63\xf8\xec\x55\x0e\x42\x8b\xe2\xba\xd2\x51\xaa\xc0\x50\x09\x72\xb5\x21\x86\xc4\x89\x91\xca\x9f\x40\x31\x63\x87\xd5\xa6\x1e\x56\x67\xa0\xe7\xd5\xf2\x05\x2d\xb0\x04\x1a\xcb\x4e\x6c\x05\x51\x6f\x51\x8d\x5b\xb8\xa0\xcf\x3b\x90\xa1\xe2\x8b\xe2\xf6\x85\x93\x15\x3e\x07\x6d\x5e\x11\x15\xa8\x1b\xa0\xba\x0a\xec\xaa\x0c\x2a\x76\x74\x13\xd7\x68\x82\x7d\x27\x46\xa9\xe2\x4d\x22\x2a\xc6\x34\xc2\x38\x86\x7f\x51\x78\x99\x27\x22\x21\x42\xe8\x5d\x57\xa7\x75\xcb\x67\xb7\x03\x02\xd7\xac\xb6\x20\x7e\x4c\xc4\x45\x77\xed\xdd\xc6\xb1\x74\xb2\x01\x49\x06\x8a\x2a\xb9\xe8\x37\x11\x0f\xea\x76\xdd\xf5\x3d\xa1\xb4\xd5\xb5\xb9\x3e\x02\xd3\x2a\x12\x12\xcf\x06\x70\x27\xe4\xa2\xf3\x30\x74\x98\x51\x2f\x0c\xa1\xb6\x71\xe0\xf1\xcc\x25\xe0\x43\xf8\xb3\x3e\xcf\xf8\x4b\x02\x35\xf5\x42\xc8\x0b\xde\x0c\x60\x69\x52\xcc\x5c\x0f\x23\x5d\xe0\xd4\x99\x2d\xee\x7d\x45\xff\x25\x88\x13\x9a\xcb\x0d\xba\x71\x1b\x76\xe2\xb8\x5e\xa3\xa2\x8f\x7c\x1e\x7b\xcf\x54\x25\x7b\xe6\xd6\x95\x9c\xa4\x1c\x87\xe3\xf3\xe2\x71\xd8\x2f\x2f\x80\x48\xf0\xca\x8e\x6b\xba\x21\xec\xf2\x41\x6d\x5a\xa2\x04\x74\x9c\xff\x40\x97\xf3\x88\x1b\x61\x8b\x13\x7f\x4e\x8d\x21\x75\xe1\xa0\xb3\xd6\xa1\xbc\xa4\x6d\xa6\x69\x11\x71\x60\x2c\x3c\x2c\xca\x2d\x01\xea\xdd\x3d\xd1\x49\x0c\x8c\x28\x54\xc5\x1d\x64\x14\x33\x8b\xf6\x03\x74\xa2\x3f\x92\xd8\x2d\xf2\x48\xd7\x54\x60\x2c\xf3\xe3\x84\x0b\x26\x57\xde\xb9\xca\xe9\x69\xb1\x6f\x6a\xda\x95\x95\xd7\xad\xae\x98\x31\x7c\x3b\x2c\x49\x38\x5f\x43\xdf\xc3\xa4\x5c\xca\x98\xdf\x8f\x74\xaf\x0f\x58\xf7\xba\xbd\x64\x0c\xb1\x4b\xe2\xf7\x52\x69\xc0\xe2\xe0\x36\x74\x24\xba\x9e\xcf\x93\xd6\x4b\xeb\x14\x51\x15\xf0\x96\xd4\x1d\x49\x4e\xd2\x5b\xa6\x6e\xa3\x4f\xa2\x1d\x94\xaf\xa2\x22\xa4\x72\x26\xd5\xac\x2b\x7e\x05\x6a\x7a\x9b\xb5\x56\xa2\xca\x5a\xd0\x0e\xb3\xc2\x4c\x86\x7e\x08\xe9\xf3\xa2\x63\x19\x95\xa5\x28\x06\xa9\x6a\x8f\x7f\x54\xc5\xd5\x32\x5f\x04\x55\x21\xfa\x07\x75\x57\x50\xd0\xae\x54\xbf\x17\xe9\x8a\x9d\x86\xf2\x28\xd3\x19\x13\x13\xbb\x03\x9f\xb8\xb5\x1b\x5c\xc7\x3f\xd3\x89\xf5\x54\x9d\x70\xff\xeb\x42\x35\xb4\x6e\xf7\x49\x4e\xb4\xdd\xba\x2e\x9b\xd5\x5c\x0f\xcf\x3a\xda\x37\xfa\x7f\x88\x25\x07\x81\xb0\x7f\x5d\xdc\xb7\x68\x45\x9d\x34\xac\x35\x4a\x79\x02\xd1\x20\x53\x4d\x66\x08\x3a\xa2\x2e\x87\x7c\xe3\xa4\xd7\x0b\x31\x26\x2d\x04\x38\x68\xc3\xbc\xcc\x43\xff\x46\xa4\x09\xe8\x41\xc5\x2c\xda\x67\x87\x03\xdc\x24\x11\xb2\x09\x37\x83\x89\x83\x18\x47\x23\x67\x0c\x2f\x78\xa1\x27\xc2\x63\xdb\xe2\x51\x36\xa5\x72\x3a\x21\xc3\x97\xfe\xd6\x6c\x4f\xd1\xb7\xa1\x0b\x1a\x4c\xda\x05\xeb\x33\x20\x78\x74\xf5\xcd\x1b\xc4\xe9\x6c\x88\xe8\xcc\x33\xe7\x9d\x90\x64\xa9\x65\x3e\x50\xeb\x2f\x7f\xf7\xb5\x37\x0d\x10\x21\x7b\x43\xa4\x42\x2f\x69\x85\xbc\xa2\x00\x84\xda\x81\x85\x98\x85\xbf\xb1\x84\x15\x63\xf6\xdd\xd2\x6a\xdc\x26\xbc\x6c\x8b\x56\xb1\xc5\xc9\x16\x71\x03\x10\x75\x59\x34\x91\x93\xee\x92\xfe\xa5\x82\x2f\x4f\xbf\xba\x6d\xbf\xfc\xe4\xf4\xab\x68\x37\x08\x16\xbd\x28\x12\x45\x94\x3d\xed\xae\xfe\xcf\xc0\x54\x90\xa6\xb4\x36\x3b\x11\x0c\x80\xf4\x84\x29\x04\x40\xe2\xfc\xf0\xf1\x76\x25\x14\x49\x35\xa6\x58\x08\xed\xcb\xe0\xbb\x99\x30\x1d\x8e\x29\x1a\xba\x80\xf7\x29\xd2\xd2\x04\xa5\xad\xb3\x98\x08\xd3\x29\x87\xcf\xb5\x71\xf2\x83\xd4\x0c\xe7\x84\x41\xd3\xd4\xdb\x7a\x98\x62\x29\x4e\xeb\xe0\x6e\x64\x2b\xda\xec\xfa\x42\xc0\x24\xfc\x76\xdf\xed\x8a\x33\x5a\x2f\x11\xd7\x16\x4c\x69\x00\x0f\xf6\x85\x64\xd0\x4b\x70\x7a\x00\xc2\xe7\x05\x21\xec\x28\x8c\xeb\x79\x69\x57\x63\xab\x50\x37\x95\xa0\xe8\x83\xae\xfd\x19\x10\xb9\x6d\x0f\x75\x92\x13\x61\xf2\x8e\xdf\x87\xbb\xe0\xb9\x44\xf7\xc4\x7b\xa5\x7d\x01\x3d\x0b\xa7\x5d\x56\xae\x8c\x25\x32\x62\xa2\xd6\x7c\x60\xb5\xa7\x7c\xd3\x89\x66\x13\x16\x9f\x97\x74\x86\xd0\x82\x11\xa4\x51\x1d\x1a\xb1\x89\x74\x45\xec\x76\x23\xee\x0d\x3b\x32\x55\x3e\x25\x89\x89\x9a\xad\xeb\x7b\x15\x0b\x4c\x76\xa1\xb0\xd4\xc5\x1c\x35\x60\xd7\xde\xb1\xee\x89\xf7\xb9\x67\x6c\x12\x62\x35\x87\x76\x4e\xb0\x67\x66\x86\xa9\x09\x6c\x2b\x47\x09\x77\x21\xda\x02\xbd\xb0\xa5\x12\x6e\x56\xda\x7e\xb7\x3a\x6c\x2a\x50\x06\xf3\xc0\x74\x86\x3d\xb3\xb9\xd3\xdf\x75\xf3\x81\x6a\x57\xe7\x43\x5b\x46\x34\x65\xa8\xcb\xc6\xa9\xce\x88\xac\x6c\x33\xb3\x93\x8d\x8f\xec\xf3\xa8\x85\x93\x4d\xe3\x1b\xce\x5d\xf7\x6c\x5d\x08\x78\x85\x9f\x93\x2d\xf0\xec\x0b\xed\x05\xdd\x0a\x75\xcf\xda\x9d\x74\x40\xaf\x72\x99\x80\x37\x9d\x88\xe0\x4f\x3a\x75\xdf\xc7\xd0\x75\x2b\x7b\x0e\x85\x51\xae\xd9\x64\x8d\x9b\xd7\xce\xfe\xc7\x44\x37\x0b\x72\xbb\x1d\xb7\xc2\x08\x00\x62\x3f\xea\x39\xc3\xa5\xe4\x0e\x99\xc7\xfe\x32\x39\x6d\xc9\xb9\x44\x7d\xe1\x90\xf7\x92\x92\x74\xc3\x3f\x04\xf5\xb9\xc5\x7a\xea\xef\xb8\xa3\x93\x51\x44\x0a\xd1\xe2\x24\x34\xe6\xb0\xf0\xac\x93\x2c\xae\xab\x4a\xac\xee\xd2\xd8\xe5\xf7\x63\x0d\x4d\x34\x71\x39\xb0\xcb\xc1\x72\x72\x09\xd5\x3d\x4f\x96\x2b\x43\xa8\xa5\xba\x2f\x69\x22\x4f\xf7\x48\x17\xcf\xe9\x62\x0f\xdf\x46\x77\xff\xdf\xbc\xf1\x88\xa1\xe0\xf4\x4b\x8e\x67\x7a\x36\x2f\x86\x3c\x37\xa9\xbd\x73\x8a\x6c\x27\x27\xdf\xbd\x60\x91\x28\x58\x39\xd6\x84\x6e\xa2\xb0\xfc\x6e\x18\x76\xf6\xa5\xaa\xf4\x58\x19\x87\x91\x2e\x9b\xae\xac\x5e\x7a\x45\x9f\xf5\xe6\x10\xd6\xd3\x42\x34\x7d\x61\xca\x6d\xb4\x30\x50\xba\x7a\x47\x83\xdd\x27\xa6\x24\x2a\x87\x8c\xd6\x7b\x03\x26\x4b\x5f\x8f\x22\x29\x48\xc0\x5e\x66\x42\x59\x10\x7c\x0d\xdb\x5d\x7f\x2a\x9e\x4e\xec\x0d\xc5\x4f\x84\x36\xcd\x8e\x64\x77\xb0\x89\xbe\x22\x61\x2a\x4b\xbd\x52\xb1\xca\xec\x08\xdc\xe0\x10\xba\x58\xd3\xe3\xa0\xb0\xd2\x83\xf0\x9a\x8e\x9f\x29\xee\xdc\x5b\xdd\x2d\x1c\x2b\x9d\xf6\x5e\x11\xf1\xf9\x9d\x23\x1c\xce\xf7\xdf\x8d\x22\xe7\x13\x2b\x3d\xf0\x68\xb6\x7e\x67\xe2\x31\xdc\x00\xa2\xda\x1e\x4a\x1c\x08\xbe\x26\xed\xe2\x27\x18\xa4\x49\x48\x88\x5b\xdc\xb6\x73\x87\x12\x1d\x6f\xcb\xb7\xd7\x57\x2d\xdf\xba\xaa\x42\x69\x5d\xbd\x8c\xba\x7a\x32\x44\x15\xa1\xe4\x75\xd5\x80\x21\xc9\xb7\xf6\x35\xf1\x23\xad\x7e\x7f\x44\xd2\x1b\xcb\x28\xd0\x1e\x90\xa0\xf1\x85\x37\xc7\xaf\xbc\x6c\x07\x72\xe3\x94\x2c\xac\x17\xa1\x52\xbb\xeb\x44\x26\x5d\x44\x04\x2a\x12\xd8\x32\x02\x05\xad\x58\x99\x92\xcd\x2a\xab\x92\xf4\x8c\x0d\x94\xce\x83\xcb\xc1\xea\xd4\x18\xe2\x26\xca\xd7\xa6\x9d\x7a\x1f\xe0\x70\x82\x49\x86\xab\x88\x1a\x93\x57\xb3\x8d\x8c\x3b\xc6\xae\x85\x53\xee\x2f\xd8\xc3\x60\xbe\xd1\x41\x62\x97\x49\x87\x1a\xe8\xa0\xed\x69\xa5\x87\x2e\x6b\x20\xbb\xc8\x95\x69\x69\x95\xa7\x23\xba\x8f\xd9\xb4\x70\x2d\x02\xb7\x36\xd0\xb0\xbb\xa1\x62\xa3\x9d\x1f\x05\xf4\xbf\x16\x6d\x57\x8a\x41\xe0\x30\xfb\xaa\x1e\xec\x22\x02\xa6\xdf\xb4\xb0\xcd\x53\xa0\x76\xe9\x35\x1a\xc4\x7d\x56\xe2\x51\xaf\x3d\x7b\x8c\x44\x22\x3f\xcf\x6e\xe6\x7e\x10\x6d\x15\x4f\xda\x96\x10\x60\x03\x3d\x15\x15\xfb\x35\x1d\x13\xb6\x42\x1b\xf0\xe1\x9e\xa9\x4f\x62\x05\x09\xcc\xc4\x5b\xb1\xca\x43\x86\xfa\x50\xff\xfe\x7e\xda\xdf\x7b\x02\x85\xd9\x5e\xbd\xc6\xc2\xbc\x25\x4a\x09\x06\x28\x71\xb3\x21\xde\x07\xe5\x46\xb1\xba\x29\xed\x00\x91\x55\xd6\x96\xe9\x37\x20\xeb\xbd\x5d\x37\x23\x98\x6a\x31\x4e\x91\x08\xde\x62\x36\x90\x5e\x7a\x93\x6e\x7b\xb2\xe2\x45\xf1\xb8\x11\xea\x74\xa9\x16\xb8\xb1\x15\xfd\x7c\x56\x8f\xa5\x5d\x5d\x3f\x6c\x62\xaf\xcd\x65\xc4\xe7\xd4\x5b\x12\x69\x6d\x7d\x2a\x24\x4d\x68\x87\xe7\x09\xf4\x6a\x62\x05\x0b\xeb\x14\x20\xb5\x11\xcf\x40\x57\xac\xef\x8a\xdd\x0d\x98\xd3\x1d\x23\x60\x3a\xbd\x6d\xcd\xa2\x99\xc9\x3a\x74\x3a\x7e\x82\x6d\x0b\x36\x98\x04\xbc\x81\x8d\x51\xd8\x55\xc2\x3c\x2c\xf6\x97\xf1\x80\x15\x58\x8d\x78\x3e\x2c\x0a\xd8\xb0\xee\x51\x87\xc4\x7a\xfb\xcd\x63\x6d\x48\x0b\x46\x93\x40\x08\x5d\x2f\x04\x71\xa7\xf7\xb9\xfa\xf3\xfa\xdc\xac\xe5\xe6\x3b\x87\xb4\xee\x6d\x21\x5f\xa8\x12\xc0\xd2\x56\x34\xd8\x18\xf1\x21\x7a\x15\x71\x42\xfc\x0f\x31\x60\x06\x6a\x7c\x30\xfd\x56\x6e\x09\x07\x5a\xe8\xee\x03\x62\x93\x50\x81\xa9\x54\x06\xdc\x3c\x0d\x08\xb7\x33\x31\x0e\x8c\x3b\xaa\x4f\x37\x10\x0e\x18\x0a\xe8\x66\x6d\x2d\xab\x0f\x30\x5d\x99\x00\x64\x0d\x78\x12\x65\xe3\xeb\x19\xf7\xe3\x43\x1a\xa4\x4b\xca\xaa\x15\xeb\x9c\xa6\xa0\xc2\x20\x0a\x62\xba\x75\x28\x90\x91\xe9\xc0\x3b\x64\x90\x09\x84\xd9\x38\x26\x4e\x3b\x51\x8a\x98\xc1\x43\x58\xfb\x84\x20\xfe\x7f\x81\x4a\xbc\x31\x6c\x62\x53\x19\x23\xdf\xc6\xd2\x51\x50\xb6\x47\x01\x10\xbc\xd7\x7d\x66\x4e\x89\x24\x3e\x36\x7d\xd2\xe4\x60\x5b\xef\x09\x63\xeb\x30\x97\x77\x68\xaf\x52\x37\xcf\x41\x9c\x78\x56\xe2\x15\x16\x9d\xf7\xe3\xb2\x50\x4f\x31\x92\xad\x70\x6e\xb2\x03\x4f\x1c\x27\x26\x0d\x75\xd0\x79\xd9\x6e\xcc\x4a\x6d\x4f\x47\xfc\x8b\x01\x21\xf6\xa3\x8b\xba\x2c\x9c\x9d\x09\x86\x45\xdf\x60\x3d\xda\xa1\xdb\xa6\xed\xfc\x96\x49\x5b\x96\x57\xc5\x26\x10\x39\x77\xfd\x4c\xe8\xb1\xea\x5a\xba\x67\x68\x5f\xa1\x3c\x6a\x4c\xe4\x6d\x55\x9b\xa9\xee\x8a\xd9\xfd\x7a\x50\xb3\x21\xfb\x80\x89\x42\x1a\x0c\x13\xf4\x1f\x4d\xd3\xbd\x31\xbd\x5d\xde\x3f\x65\xb6\x13\x1a\x56\x1a\x9f\x68\x2a\xb0\x95\x7f\x4b\x1d\xe8\x48\xb9\x8e\xa8\x65\x00\x06\xf0\xdd\x0b\xbe\x81\x20\x1c\xf4\x17\xa6\x72\x97\xd9\xc1\x6d\x7b\xc0\x04\x8f\xe6\x88\x2f\x7c\x25\x87\xea\x3b\xb8\x45\xf5\xad\x08\x9a\x3c\x01\xe6\xb4\xeb\x33\x69\xe8\x2e\x39\x35\x03\xc1\x62\xd2\x6d\x6d\x7a\x9f\x2d\xd4\x0f\x4d\xdc\xe0\x68\x2f\x9c\xb3\xdc\x33\x75\x93\xdb\x63\x49\x50\xaa\x66\x49\x7c\x03\x28\xc4\x91\x80\xb5\x6d\x00\x9d\x35\x70\x0b\x39\xc1\xef\xf1\x2d\x1b\xd9\x9d\xc5\x9d\x00\x14\xfd\xe0\xd3\x64\x97\x99\x7e\xb2\x22\x71\x1d\xee\xa0\x1e\xf9\x9b\xa0\xe4\x18\xeb\x6a\xf9\xf8\x61\x2e\x96\xc0\x1d\x8f\xf6\x62\xbd\x4a\x67\x5f\x3c\xe3\x52\xbf\x28\x67\xe6\x99\xca\x65\x0c\x64\xb7\x9f\x60\xcd\x08\xda\x65\x60\x38\x62\x08\x86\x73\x05\x0b\x6b\xa3\xfa\x94\xd2\xa9\xba\x0f\x8b\x92\x48\x8f\x38\xa3\x71\xab\x01\x06\xd9\xa2\xdb\xc1\x57\x86\x4f\xe3\x5f\x9b\xd3\xc2\xb0\x8b\x01\x2b\xd3\x81\xdd\xa0\xdd\xa2\xf2\x3b\x83\x5b\xa1\xda\x76\x5a\x5e\x35\xc1\x62\xce\x45\x16\xa6\x5b\xb6\x6e\x1e\xc3\x86\xeb\xc5\x95\x71\x57\x41\x28\xf5\x2e\x8f\x7a\x4f\x61\xea\xe2\x2c\xe7\x21\x9f\xd6\xf4\xc2\xa5\x42\x6e\x5b\xb3\x2e\x8a\xb5\x38\xec\x20\x66\x45\xe8\x5c\xf8\xc3\x17\xb9\xbd\xb6\x19\x8f\x24\x23\x41\x2f\x98\xd5\x75\x6a\x29\xa1\x53\xf1\x84\x9c\xd3\x05\x4c\x66\x25\x31\xf8\xad\xf8\x1d\x56\x5d\x2b\xc6\xe3\x86\x48\x3c\xcc\xd8\x45\x4f\xc8\x04\xc2\x0a\x71\x26\xd5\x95\x89\xb6\x90\xf0\x78\x64\xd1\x92\xff\xe8\xe7\xdc\x2e\x9d\x21\x35\xa1\x1e\xde\x26\x7f\x70\x5f\x28\x47\x62\xa6\x9e\x6f\x14\xbc\x46\x98\xfe\xef\x1c\x2b\xac\x96\x62\x88\x89\x6c\x21\x85\x03\x22\xb6\x39\x98\xcf\xd7\xe7\x5d\x67\x55\x01\x2e\xe3\x9f\x5c\xbd\x6f\x8c\xb8\xc3\x88\x66\x49\xf4\x56\x85\x6b\xa1\xdb\xa5\xb5\x9f\xd0\x88\xbd\x09\x93\x25\x50\xfc\xb1\x1b\xb9\x1a\xc4\x60\xe2\xe4\x74\x86\x4c\x1a\x56\xf5\x96\xdd\xa3\x8d\x77\xbc\x4b\x8c\xeb\x91\xd9\x08\x17\x24\x57\x16\xa7\xb5\x74\xb5\xc1\x30\x77\x9f\x75\x54\xe5\x0c\xa0\xe0\x62\x40\xd2\x0a\xe8\xfd\x61\x11\xa9\x18\x03\xfb\xb4\xc8\xd6\xe2\x31\xef\x55\x4c\xb7\x9d\xb6\xfa\x1a\x3c\xf4\xd8\x15\x91\x28\x75\x07\x9d\xe8\x13\xba\xa6\xda\xa3\x9c\x16\xd3\x98\xf8\x31\xfb\x1a\xce\x04\x91\x76\xd2\xb3\xda\x62\x95\xd4\x7c\x6e\x86\x72\x27\x1a\x0c\xaf\x89\x9e\x57\x55\x05\xa1\x22\xf6\xfe\x76\xa6\xb9\x58\x8c\xc8\x96\xe5\x01\x94\xb4\x73\x67\x2c\x85\x8a\x30\x12\xea\x44\xc8\xf2\x15\x88\x31\xdb\xc7\x47\x6f\x6b\x37\xbd\xf7\xf9\x9c\x9b\x33\x83\x96\x25\x32\xeb\x04\x31\xeb\x35\x3a\xea\xcf\xad\x9f\x23\x97\xee\xd2\xd5\x74\x8a\x2e\x91\xe9\xf6\x53\x5c\x65\x60\xcb\xc6\x7c\x24\xb1\x85\x6b\x8d\x63\x5b\x02\x39\x65\x69\x9b\xae\x89\xb2\xbf\x24\xda\xe5\xba\xf4\x65\xaa\x9e\x23\x3e\xfe\xac\x86\x22\x10\x76\x68\x13\x8d\xed\x6e\x1b\xad\xe7\xef\x9c\x30\x7f\xfa\x0a\x32\xcb\x5f\x68\xfe\x2a\xa7\x43\x03\x24\xcb\xd9\xd2\x51\xca\x6b\xcb\xb2\xc3\x05\x96\x5a\x96\xd1\x22\xb0\x76\x25\x2f\xb5\x6e\xc5\x9b\x8a\x57\xea\xf5\xc1\x13\x7b\x00\x6f\x70\xe3\x8c\x05\x8e\xdc\xf5\xc5\xd7\x93\x19\x38\xa4\x39\x4e\x26\xea\xcf\x95\x0e\x0f\x70\xc7\x08\x04\x8b\x57\x59\x55\x8c\xe3\x02\x91\xfb\x3f\xb3\x27\x1d\x53\x86\xd6\xf9\xf8\xe7\xda\x7c\x69\x94\x37\x98\xfb\xbc\x4a\x0c\x3a\x40\xcd\xe5\xcb\xb8\xe7\x54\x1f\x72\x90\xe1\x4c\x39\x35\xe7\x80\xd3\x89\x25\x9d\x7f\x15\x4b\x0e\xcd\x7f\x5b\xb7\x42\x48\xe0\x89\x4e\x73\x18\x6d\xae\xe5\x5e\xc4\xcb\x4a\x89\x98\xb7\x4d\xb8\x09\x97\x00\x4a\x7e\x58\x71\xce\xf4\x3c\x79\x76\x2a\x3a\x51\xeb\xc0\x59\x61\x1c\xc8\x90\xf1\x66\x80\xf1\x12\x3e\x8c\x91\xed\xc8\xac\xd5\x33\xb3\x85\x8b\xbd\x1d\x54\xd1\xe7\x3a\xb9\x16\xa9\x4e\x3c\x6f\xbf\xc6\x2e\xd8\x60\x60\xa7\xce\x88\x2a\x81\xbc\xc3\x99\xf3\x9d\xb2\xee\x18\x55\xef\xbe\x2f\xed\xd0\x77\xed\xe6\xab\x07\xea\x2c\x73\x50\x12\xc3\xf1\xf5\x97\x9f\x68\x31\x0c\x94\x76\x6c\x60\x8a\x69\x79\xc8\xcd\xe8\xdd\x41\xbf\x2c\x23\x87\xff\x62\x23\xfe\xc4\xce\x33\xca\xcd\x9b\xdd\xff\x49\xfa\x01\x21\xeb\xc6\xaa\x17\x0f\x9f\xb4\xe9\xce\xc7\x59\x30\xe4\xd9\x93\x97\x5d\xd2\xb9\xf5\x22\xa0\xf4\x1c\x0c\x83\x13\x2c\x7d\x8d\x74\x50\xc7\x91\x73\x67\x50\x40\x7b\x1e\xd1\xed\x6c\xac\x94\x72\x9d\x30\xab\xc3\x9d\xbc\x6c\xf3\x66\x4a\x78\x45\xae\x07\x8f\xaf\x32\x91\x48\x68\xd4\x89\xeb\x20\x52\x7d\xcb\x56\xe3\x83\xcc\x88\xad\x86\x98\x99\xc7\x8c\x70\xdc\xcb\xe8\x2c\x39\xb5\x04\x4b\x03\x19\x2a\x4e\xcf\xbd\x12\x42\xc0\x28\x22\x83\x6e\x4d\x7b\x09\x61\xac\x99\xcf\x2b\xcf\xd3\x41\x3f\xaf\x88\x06\x06\x1f\x40\xef\x1e\xfd\x91\x74\x6f\x32\xa6\x03\xc5\x51\x36\xcc\x3e\x5a\x07\x39\x50\x8f\xa7\x44\x93\xd9\x41\x36\xef\x21\x54\x4c\xcc\x86\x3a\xe6\x16\x6b\x46\x1d\xf8\xf3\x7b\x81\x10\xbc\x90\x29\x4a\x27\x17\x0a\xa1\x69\x21\xac\xf0\xc6\x0c\x60\x75\xf4\x88\xfa\xd5\x4f\xb0\xa7\xa8\x18\x6f\x19\x04\xff\xc9\x29\xb7\x2c\xf3\x3d\x70\xad\xea\x5e\x13\x5a\xfe\xab\x74\x15\x48\x8e\x48\x6b\x11\xc1\xe9\x9d\xe0\x66\x45\x70\xf3\x24\xc3\x7a\x4f\x8a\x94\xd4\xd0\xde\x47\x94\x46\x7c\x19\x95\xd4\xee\xe9\x28\x25\x35\xb1\x27\xcf\x3c\xa1\x19\xdb\xd3\xba\xa5\x9d\xa8\xc5\x29\xa3\x77\x25\x61\x93\x45\x09\x14\x06\x95\x31\x1b\xf0\xa1\x32\x66\x4c\x66\x4b\x6e\xb4\x62\x70\xc6\x2b\xff\xd9\x88\x5a\xcd\x39\xeb\x39\xf7\x44\x48\xfe\x12\x01\xa1\xde\x2a\xbe\x65\xeb\x1a\x7b\x16\x8a\xfb\xd0\xad\xb2\x02\xa8\x3f\x72\xb7\x87\x91\xbb\x12\xd8\x32\x25\x74\x50\x2a\xc2\x9b\xde\x39\x3d\x8a\xed\xc4\xed\xa2\x5e\x44\x98\xcf\x7b\x08\x70\xb0\xa9\x1c\xdc\x7f\xf6\xd8\xc5\x02\xf8\xc9\xe8\x96\x08\x5b\x23\xee\x9e\xec\x4d\x05\x5b\x20\x31\x92\x18\x9a\x67\x26\xee\x88\xe0\xda\x65\x89\x6b\x11\x2d\x67\x84\x28\xe9\xb6\x8d\xac\x7c\xba\x34\x0f\x89\x19\x28\xcc\x56\x91\x5d\x32\xd6\xf3\xd3\x32\x13\x0f\x66\x87\xba\x1e\x22\xd9\xf9\x84\x2f\x0e\x5d\xca\x7a\xea\xf9\xfa\xdd\x85\xab\xbd\x9d\xef\xd4\xef\x5d\xec\x48\x52\xb8\xf8\x1a\x62\x35\xd5\xbb\xd3\xb4\x05\x5d\x18\xa3\xea\x8e\x81\x7d\xac\x1c\x0e\x84\x50\x56\x19\x91\xc2\x18\x7b\xf6\xd0\xc3\x7c\x36\x7b\x1a\x4d\xe9\x62\xbe\x8a\x6b\x48\x63\x95\x45\x3b\x5c\x43\x1b\xe3\x95\x84\x2b\x22\x1f\xec\x83\x3c\x61\xf1\xf4\x80\x7d\x78\x5c\x60\x12\x5d\x5f\x22\x7f\x96\x23\xad\xdb\xcb\x67\x70\x31\x89\x55\x3d\x7c\xf2\x74\x0a\xce\xaa\x3e\xab\xd4\xd1\x3a\xaa\x1c\x48\xb4\xbb\x2c\x1a\xf8\x89\xb1\xa7\x37\xdb\xcb\x35\x12\x90\x10\x78\xad\xc2\xb7\xd7\xaf\x80\x32\x39\xae\xe4\xf1\xf3\xe7\x57\x7f\x7e\xf5\xe8\xf9\xc9\xe3\x07\xc7\x8f\x02\x53\xf2\x87\xe0\x0a\x9b\xcd\xcf\xd9\xa4\x59\x33\x6f\xc3\xd6\xe6\x0b\x51\x8f\xdd\xec\x32\x5c\xa7\x0b\x72\x75\x95\x6a\x7e\xdc\x9a\xae\xd9\xce\x9b\x37\x7e\x80\x92\xf2\x47\x92\x67\xd9\x46\xf2\x2c\xb6\x5f\x44\x16\x3e\x77\x6e\x13\x25\x66\x6c\x01\x74\xf1\x57\x34\x34\xc9\x40\xe2\x38\xe0\x0c\x46\x07\xc2\x18\xef\x58\x22\xbc\xe8\x4b\x6f\xd6\x05\x6b\x35\xc0\x22\xf1\x7e\xdb\xf5\x50\x03\x00\xfa\x0e\xd0\x63\x0b\xf6\xc6\x43\x78\x01\x6f\x42\x12\xf7\x89\x98\xd1\x15\xf9\xca\xfd\x09\x36\x86\xcb\x51\x1c\xb4\x27\xde\xec\x25\x5b\xb7\x2b\xc1\x35\xd1\x9d\xb1\xbc\x45\xf4\xb1\x37\x55\x01\xaf\x49\xe6\xf3\xe0\xb5\x46\x83\x50\x8d\xaf\xa6\x3d\x21\x4c\x79\x0d\x3f\xd6\xda\x79\x9c\x16\xe7\x84\xae\x52\x5a\x94\x4d\x43\x04\xe0\x4d\x11\xab\x79\xe9\x6c\x15\xa7\xe6\x9a\x21\x49\xa2\x84\x93\xc7\xcc\x90\x08\x89\x76\x2b\xb8\x03\x07\x75\x91\xda\x9d\x6f\xbd\x60\xe5\x05\x41\x57\xfc\xe4\x55\xb7\xe5\xcf\x32\x9a\xdb\xbb\xac\xcc\x7d\x2d\x46\x84\x93\x75\xdd\x8a\xaa\x2e\x78\x55\xf0\x57\x0e\xec\x79\x14\x47\x5d\x73\x70\x0f\x7f\x9b\x00\xf3\x65\x1b\x6c\x88\xe8\x10\xda\x9d\x28\xba\x6f\xad\x3a\x72\x3a\xf3\xae\x29\xf6\x84\x31\x83\xb1\xf4\xa1\x89\xe2\x21\xb8\x18\xd1\xf5\x3e\xb2\xde\x97\xf8\xf0\xdf\x48\x6d\x25\x66\x03\x55\x31\xd9\x62\xb1\x21\x9c\xde\xb4\x1d\x50\x93\x68\x02\xdd\x8a\x66\x79\x8c\x7f\xd7\xa1\x60\xae\x1b\x16\x1d\xe3\x08\x51\xd7\xa6\x37\xb4\xa9\x66\xf9\x8d\x7e\x7a\xce\x3f\x5d\xf1\xfc\x84\xe0\xa1\x25\x69\x02\x98\x45\xd0\x16\xf0\xf0\x58\xe1\xc8\x2d\x1f\x47\xbe\x37\xeb\x80\x87\x9e\x4b\xd7\xb6\x1a\xc1\xe2\x97\x66\xc3\x20\xcc\x1d\xa9\x3f\xab\x18\x83\xbc\x23\xab\xdf\xc6\xca\x9c\x95\x24\x03\xa9\x89\x64\xf9\x40\xad\x22\x51\xe8\x8a\x8b\xd7\x5f\xb1\xce\x9e\xd0\x86\x66\x26\x7f\x34\xec\x2d\xbc\x65\x1f\xdd\xe2\x0e\x0b\xa9\x77\xaf\x37\x1a\x44\xf6\xfc\x7f\x1b\xfb\x81\xef\x7f\x21\x61\xf2\xd0\x36\x8e\xc3\xf9\xf2\x29\x18\x5f\x0b\x3d\x35\x0b\x57\xf7\x13\x3f\x1a\x4d\x31\x90\x86\x44\x47\x69\x06\xe2\xef\x33\x94\x41\x54\x44\x6d\x7a\x54\x71\x46\x8b\xd3\x66\x34\x44\x1b\x04\x42\xfe\xa0\xba\xee\x78\x4b\x30\x4c\x76\xb2\xf4\xfb\x62\xdd\x74\x2d\x11\xea\x8a\xf5\x0c\x21\x3e\x6e\x2c\xf8\xc3\x9e\x7a\x8e\xa0\x23\x44\x3e\xb8\xf8\x60\xcd\x69\x8c\xe0\x27\xdf\x3e\x7e\x01\xd9\x15\xaa\x10\x8d\x55\x76\xf7\xbb\x8b\xbc\x72\xfd\x3b\xc3\x33\x97\x27\x51\x02\x5c\x42\x90\x6f\xd5\xe8\x7c\xc8\x7f\xb3\xd4\x08\x2e\x9f\xba\x6f\x0f\x70\x05\xb4\x4e\x83\x5b\x54\xd0\xb4\xaa\x81\x10\x54\x82\xf6\x87\x69\x48\x05\xdd\xc8\x05\xdb\x99\x61\xd1\x8b\xc8\xcb\xca\x9a\xe6\x4c\xe3\x5f\xa6\x81\xc8\x56\x29\x53\x40\xe9\xc0\xd1\x42\xab\x0b\x0e\xf5\x1d\x0b\xb0\xa5\xdc\xac\xbb\xcb\x55\x53\xb7\xaf\xe9\x32\xdd\x31\xcf\xee\x4b\x22\xb6\x7d\x47\xf7\x56\x5c\x59\x9d\x6f\xee\x47\xbe\x99\xff\xf2\x3f\xfe\xe7\xbd\x23\x2c\xf0\x68\xe8\x1b\xfa\x4b\x9d\x6c\xb5\x4f\x22\x0b\xaf\xe1\x48\x8b\x1e\x74\x24\x67\xed\x2b\xf8\x4e\x36\xf7\x76\x25\x4a\xd9\x7d\x9e\xfe\xa8\x74\x54\xb4\xc5\x66\x2a\x92\x25\x8a\x0b\x87\xea\xbc\xfd\x50\xdb\x7f\x5d\xbc\xe2\xc0\xa3\x77\xd7\xa7\x2b\x00\x47\x06\x43\x0b\x6b\x2b\xfe\x00\x29\xe5\x0d\x3b\xfd\xc0\x09\xac\x41\xfc\xc2\x58\x5f\x70\xaa\x13\x2e\x3d\xd1\x5f\x23\x18\xf5\x1e\x3a\xe4\x5a\xf1\x93\x38\x5b\x23\x96\x43\xb0\x41\x58\x27\xa7\xde\x78\x94\xe6\xdc\x60\x01\x94\x71\x50\x85\xcf\x2a\xa6\xda\x24\x54\x10\x64\x58\xcf\x02\x2a\xe2\x63\x03\x61\x3a\xe1\x44\x2e\xb2\xfc\xe1\xbc\xb6\x4a\xb1\xf0\x3b\xa6\x7f\x89\x83\x3e\x93\x7c\x0d\xdf\x89\x88\x9b\xe3\xbe\xfd\xd5\x4d\x98\x8a\x74\x29\x71\xb0\x0f\xcc\x72\x70\x74\x03\xae\xea\x25\xd7\x8d\xca\x3a\x46\xc8\xe4\x71\x99\x63\xfc\xa6\x9d\xf0\x0c\x68\xb2\x1c\xd1\x0e\xa2\xd0\xa7\xb1\xd2\x44\xdf\x2e\xf8\x60\x78\x2d\x20\xf1\xf2\xec\xf6\xc9\xb0\x27\x60\x56\xd8\x13\xfc\x5f\x4a\x81\x49\xd6\xe9\x8d\x81\x39\x96\xf0\x45\x2f\x19\x35\x63\x23\x50\x7f\x28\x37\xd6\x55\xb5\xc5\xbf\x2b\x5e\x94\x08\x73\xd2\x9d\x08\x5f\x60\x01\xa7\x8a\xf2\x75\x26\xf3\x07\x32\x85\x4c\x32\x84\x34\xe5\x29\x49\x97\xcb\x47\x1c\x0a\x46\x54\x18\x61\x19\xf0\x52\x24\xbe\x9c\x9a\x5f\xfd\x19\x56\x05\x46\xdc\xed\xb6\x1e\x58\xcc\xdd\xd6\xcc\x66\x72\x88\x5d\x63\x4a\x8b\x51\xd8\xbc\xe9\x0c\x7a\x6c\xc6\xeb\xcb\x37\xcb\xe7\xe5\x1b\xfd\x45\x5b\xcc\xd9\x43\xbe\xe3\x7f\x6b\x4e\x58\xc3\x1f\x38\xd4\x03\x75\x5f\x49\xa8\x5d\x11\xda\xd0\x99\xd8\x96\x7c\x7c\x8f\x6b\xc4\x96\xe2\x67\xab\x68\xa7\xd3\x59\xcc\x4e\xcb\x7d\x9c\xe4\x32\x71\xea\x81\x69\xd5\x33\x08\xf7\x2f\x7a\xa0\x52\x1f\x4a\x71\x99\x80\x14\x8c\x62\xdc\x75\xc5\x5b\x89\x83\x5e\x6a\x3c\x74\xf8\x00\x63\xd2\xf2\x61\x39\x44\x45\x12\xa2\xf3\x0c\xaa\x18\x50\xa7\xad\x9c\x1b\xf7\x95\xd0\x9a\xbe\x3e\xc7\x75\xb5\x75\x27\x4a\xe3\x5c\x90\x33\xc8\x49\xab\x51\x4a\x95\xf0\x75\x31\xb3\x73\xd1\xd7\x16\xec\x11\x55\x90\xe0\x06\x10\x66\xad\x96\xd4\x5a\xd3\x06\xf6\x2b\xd7\xd3\xd9\x19\x7b\x59\xe0\x82\x0d\xf5\xd3\x6e\x3d\x6e\x28\x6a\xe4\x63\x86\xef\x7e\xdc\xbc\x96\x8c\x19\x2a\xfa\x61\xe7\x2a\x77\x3b\x12\x18\x43\xdd\xef\xc7\x8b\xbe\xde\x53\x95\xa8\x89\x85\xdf\x7f\x36\x43\xe2\x96\x0c\x3b\xf1\xa7\x0b\xa1\x7b\x1b\x07\x9c\x0e\x1d\xf3\xc4\xac\xc3\x9f\x99\xa6\xaf\x16\xcb\x8b\x6c\x18\xa1\xe2\x92\xe5\x9d\x09\xdc\x7d\x1b\x01\x41\x5c\xd7\x57\x15\xba\x16\x91\x31\x35\x27\xb3\xf1\x6b\x6e\xbb\x75\x37\x7d\x76\xa3\xf9\x0d\x95\x5a\x2b\x76\x97\x89\x63\xc9\xc4\x29\xcd\xb5\xe0\x9c\x3e\xc9\x44\xb4\x77\x3f\x9d\xd9\xfe\x79\x2f\x86\xf2\x74\x79\xbb\x2a\xbe\xc7\x49\x19\x42\x2f\x80\xbd\xfb\xf6\x0d\xc3\xdb\x7f\xa3\xc3\x0c\xa7\x71\x19\x81\xf6\x24\xef\x36\xfe\x4e\x1c\x20\x58\x00\x18\x27\xc5\xb4\x1b\xa6\x91\xf2\xba\x93\xe6\x7b\x11\x33\xff\x3e\x19\xe2\xe7\xb2\x41\xe8\x49\xdc\x7b\xde\x38\x20\x0b\xff\x31\x5b\x61\x53\x53\x85\xa8\xf3\xe9\xe6\x17\xf2\x65\x7e\x08\xcf\x8e\xce\x7d\x58\x20\x26\x51\x29\xba\x4f\x1c\xb2\x8b\x48\xfb\x5c\x13\xab\x59\xc3\x88\x35\xb9\xec\xc6\xe5\x9f\x46\x0d\x61\xe1\x20\x9b\x52\x17\x32\xdf\x56\x90\xa2\x5a\x9d\x5e\x72\x53\xa0\xc5\xd5\xfb\x3b\xc6\xde\xd5\x2c\x1b\xe3\x7c\x33\x90\x30\x5a\x1d\xe2\x98\xd1\x8c\xd9\x38\x2d\x83\xf2\x2b\x6f\x63\x11\x2e\xf1\xa2\x67\x2e\x6a\xfa\x65\x81\xdc\x6a\x96\xe0\x88\xab\x53\x55\xd9\xb3\xf5\x80\xe6\xae\x1e\x5d\x84\x74\x57\x7c\xd2\x4e\xa0\xc8\x35\x7b\x83\x4e\xc4\xe8\x4f\xbc\x78\x30\xe8\xf7\x11\x05\x9e\x9b\x09\xdd\x72\xbe\x19\x3b\xf4\x85\x06\xb1\x63\xc0\x6c\xe3\x6d\x67\x07\x36\xf6\xb6\x3a\x47\xfd\x31\x03\xfb\x30\x98\x6b\x20\xa3\xf9\x16\xc9\x51\xe4\xfd\x71\x14\xf1\xf6\x0f\x9f\xfe\x68\x8b\xd3\xcb\xc8\x20\xf5\xc3\x67\x3f\x12\x43\x78\xfb\x87\xcf\x7f\xb4\xe0\x06\xa7\x6d\x57\x67\xe5\x6b\xb3\xe4\x3b\x6f\xd0\x0e\xb0\xbd\xdc\xd0\xd7\x26\x0e\xf6\xa2\xa6\x8d\xe4\xa4\x77\x85\xbf\xc8\xda\x84\xee\xbc\x1d\xe4\x33\xf8\xc9\xb2\x9d\x90\x0c\xd6\x50\xcd\x51\x8c\x4a\xbf\x65\x14\xa3\x1d\xb7\x2b\x5d\xb3\x05\x41\xd1\xbf\x53\x62\xab\x85\x90\xf9\x86\xe5\x81\x07\x11\x47\xd6\x95\x45\x5d\x01\x02\xb4\x24\xc7\x1c\xff\x95\xfc\xfa\x4a\x96\x77\x90\x40\x04\x0e\x26\x6a\xcf\x7a\xdc\x24\xde\x81\xc4\x4d\xae\xbb\xde\xc5\x15\xc1\xd2\xb5\xc8\x68\x9e\x24\x3d\xc3\x02\x22\x34\x96\x4f\x3a\xa7\xa4\x0a\x2b\x0a\x75\xe6\xa1\x7e\x6f\x18\x50\x52\x91\xd8\x81\x8e\x37\x35\xff\x9c\xf6\xe7\xab\xcd\x77\xa9\x74\xdd\x21\x52\x92\x01\xd1\x01\x33\xdf\x0c\x02\xe4\x2d\xb9\x2c\x27\x50\x9c\x03\xe2\xad\x04\x88\x32\x49\xdd\x8e\x9e\x27\x07\xbc\xfa\x1d\xdb\x21\xdc\x11\xf1\xe9\x67\xe8\xeb\x27\xd1\x60\x31\xbf\xca\xc2\x83\xe3\xb9\xd7\x32\x4d\xb8\x22\xd7\x21\x76\x96\x5a\x7e\xc4\x80\x18\xef\xa7\x80\xe3\x1d\xa7\x82\x64\x2e\x36\x02\x21\x6b\xee\x24\x0f\x60\x40\xe8\x39\x7d\xa7\x7e\x73\x21\xa5\x24\x29\x91\x30\x6b\x4c\x48\x2b\x25\x2a\x54\x08\xd8\x48\xfc\x96\xd0\x19\x17\x89\xe9\xa2\x76\x58\x9a\xd2\xe8\x3e\x78\x87\xc2\xd0\xac\xd6\xca\xae\x45\xa0\x7e\x50\xb5\xab\x19\xc7\x05\x25\x44\xa1\xc3\x89\x55\x3a\x0b\xec\xf4\xa8\x92\xc0\xdc\x54\xf5\x10\x05\x61\xb9\x9d\xc8\x5c\xd6\xdc\x9c\x69\xdc\x65\x08\xeb\x0d\x1f\xe4\x0e\x1f\x42\xc0\xd4\x58\x1c\xa3\x28\xab\xb0\xee\x1a\x62\xab\x8f\xa0\x5d\x96\x30\xe3\xf9\x4a\x50\x83\xd3\xe9\x17\xee\x34\xfb\x1a\xce\x0b\x53\x88\xc8\xf0\x2e\x78\x97\xd7\xe7\xf5\x5d\xfd\x19\xa9\x7b\xf2\xe9\xe6\x5e\x9e\xd9\xe7\x24\x40\x6d\xed\x43\x18\xe7\xa6\xbc\xcf\x14\x73\x5d\xdd\xd8\x8c\x1a\xd9\x0e\x22\xb3\xcb\xd5\xfb\x8d\xea\xc6\xc5\x85\xd3\x4e\xfd\x74\x62\xf7\xcf\xb7\x11\x30\xae\x51\xe1\xcf\x4f\x26\x58\xef\x4f\x4d\x13\x99\x06\x72\x73\xb5\x0a\x93\x38\xaa\x74\xfe\x88\xcc\xb0\x3a\x57\xac\xa0\xa5\xf7\x1b\xf1\x8a\x68\xbb\xa7\xbe\xb7\x19\x4a\xa3\x0a\x86\x58\x27\xd6\x82\xac\x9d\x31\xdb\x24\x8a\x05\xc9\xda\xa1\xfe\x33\x63\x80\x14\xcb\xb3\x5e\x31\x18\x8d\xb9\xc8\x07\x45\x86\x0c\xa4\x41\x30\x93\xd9\xc8\xbf\x7e\x22\xee\xbb\x5e\xcb\x2a\xab\x7f\x43\xbf\xe4\x2a\x38\x75\x52\xbb\x54\xa3\xeb\x83\x36\x7b\x6c\xe8\xb2\x12\x8e\x12\x4a\x4e\x4e\xae\x85\x58\xe6\x51\x94\x9d\xae\xea\x70\x0e\xf6\x88\xd5\x45\x32\x28\xdf\x38\x97\x45\x59\xf4\x90\x72\xd5\x76\x53\x8a\x5d\x83\xfe\x5d\x1b\x9f\x4d\x26\x05\x8f\x95\xd0\x7e\xe0\x46\x58\x2a\x02\x13\xe2\x84\xa0\xcb\x9f\xa8\xfb\xcb\xe0\x77\x9f\x81\x52\xd4\x3d\xc8\xd9\x01\x22\xa3\x23\xb0\x8f\x3c\x12\x62\x44\xac\x04\x91\xce\x4f\x78\x84\x4f\xc0\x4f\x54\x60\x2b\x88\x8a\xfe\x15\xff\x50\x5a\xaa\x20\x75\x72\x8d\x51\x39\x22\x56\x37\xb8\x4a\x4c\x20\x64\xef\x2f\xa0\xb6\x3c\x1b\xad\x2a\xdc\x31\x52\xa5\x64\xdc\xc6\xd4\xdd\x14\x5f\x22\xc0\xf7\x2b\xa5\xde\xfc\xb7\xe4\x2d\x71\xe5\x9f\xfb\x72\x37\x0c\x9d\x9e\x8d\x63\x31\x64\x34\xea\x50\xc7\x22\x9c\xfe\x57\x19\x8b\x7a\xf9\xf7\x3f\x7a\xf4\x26\x01\x68\x15\x93\x69\x58\xf1\xfc\x8f\xb4\x52\xa4\xb7\x18\x92\xf6\xd0\x7d\x58\x67\x5b\xb0\xde\xbd\xd2\xd7\x51\x66\x80\x30\x88\xd7\x17\x02\xa3\x7a\x65\x07\xe4\xb6\x88\x76\x39\xde\x02\x39\x29\xea\xf5\xcd\x42\x77\x44\x74\xa8\xae\x80\x67\x91\x82\x70\xf9\x8d\x03\x5a\x8c\x67\xfa\x4d\x48\x57\x32\x86\xb3\xe3\x7a\x58\x4f\xfd\x5d\xa4\x1b\xe2\xa8\x4b\x3a\x5e\x6c\xdf\x3e\xe6\x24\x77\x1a\x29\xeb\x0d\x57\xb3\xfd\xc2\x3c\x3b\x4a\xe2\xb0\xbe\xac\xad\xf7\xff\xb1\x31\xd9\x3d\x48\x28\x24\x51\xe1\x6f\xba\xfe\xb5\x5f\x58\x6d\x57\x88\x35\x7a\x8d\x28\x88\x17\xe7\xe2\x4f\xd7\xd4\xeb\xa1\x70\xa5\x05\x22\x4d\x10\xd4\x42\x94\x16\x14\x75\x83\x8e\x0f\x8b\x1d\x6b\xbc\x88\xe0\xd2\x05\x6f\xcf\x25\xa5\x2b\x55\x38\x33\x6f\x68\xa7\x32\xb2\x53\xb6\x2b\x36\xf0\x30\xa0\xa2\xcc\x4e\xaa\xd1\x0e\x9b\x50\xcd\x6e\x42\x9c\xa3\x89\xd5\xd0\xd7\x6e\x6c\x3c\x2c\x9b\x51\xe6\x46\x0e\xea\xf4\x68\xf0\xc4\x8b\x75\xcf\xf0\x6b\x92\x0b\x6a\xa5\x24\x92\x2b\x8b\xa0\x35\x58\x25\x1d\x20\x17\x8a\xc9\xd7\x4c\x63\x7f\x22\xd8\x83\x0e\x7f\xcf\x6a\x6e\xbd\x1e\xdc\xbb\xdd\xa5\xb8\x99\x52\xbb\x6f\x3c\x21\x21\x6c\x98\xa3\x3c\x7c\x74\xc6\x56\x29\x03\xb7\x65\x66\xdf\x2e\x7f\xfa\xaf\x08\x67\x2e\xdb\x83\x01\x9a\x46\x60\x4e\x21\x27\x8d\x80\x63\x14\x36\xa7\x66\x5d\x8e\xb4\xfb\xc3\xb9\xa1\x55\xd7\x88\x58\x86\x25\x8f\xa0\xc2\xb5\x90\x19\x8a\x86\xd4\xc9\x14\x77\xfe\xea\x76\x75\xb7\x80\x55\xa3\xb0\xe5\xd6\x04\x7b\xef\x65\xf1\xa6\x1e\xce\xa5\x90\x67\x12\x5f\xe6\xd4\x57\x85\xae\xdf\x94\x35\x22\x61\x60\x9f\xe5\x4a\xf4\x37\x82\x97\x63\xed\x6c\xa2\x23\xfc\x23\xb4\x18\xc9\xd7\x39\x75\x4d\xf4\x79\x56\x65\x93\x7f\xaf\x96\xb7\x9d\xfe\x2c\x1d\xb9\x5b\x55\x23\x61\x16\x68\xbd\x53\xfd\x97\x40\xce\x03\x38\xf3\x5f\xbd\x2f\x59\x85\x9d\x4d\x46\x65\xd5\xe9\x28\x5e\x7c\x4a\xd7\x46\xdc\xc8\xe9\x39\xc1\x17\x06\x38\x88\x2f\xef\x18\xf7\x58\x5d\xa3\x5e\x49\x1a\xe9\x66\xc4\xe5\x23\xe2\x7b\xd2\x31\x72\x5d\xdb\x14\x56\xc2\xb2\xbe\xa8\x87\x3e\x9d\xf6\xd4\x14\x1d\x7f\x74\x10\x78\x98\x2f\xbd\xb8\x13\xd2\x6b\xde\xcd\xd6\x6b\xca\xde\xa9\x3c\x93\x2f\x3e\xc3\x97\xf6\xba\x12\x94\xe0\x60\x09\xc9\x6f\x29\x44\x6e\x02\x67\xb6\x3b\xb8\x28\xf2\x43\x1c\xd3\x28\x04\x5e\xdc\xcc\x2d\x89\x1d\xc5\x41\xc9\xc4\xf5\xde\x76\x7b\xef\xe7\x9f\x0f\xe6\x40\x14\x7b\xe6\x30\x8c\x52\x87\x4d\x4e\x3e\x37\xa1\xe4\x51\x2f\x31\x93\x8d\x33\x3b\x85\x33\x6a\x44\xdb\x2a\xb1\x53\x6c\x1e\x4f\x6c\x47\xb0\xab\x82\xf3\xf3\x6c\x5d\xbc\xe9\xad\x48\xe6\x24\x1a\x8d\xb5\x12\x9f\x0d\x62\x72\xe8\xfc\x19\x8e\x98\xcf\x96\x96\xc9\x30\xd1\xa7\x2c\xf7\xc4\xb5\x53\xbe\x0e\x30\xb3\x21\x10\x19\x6c\x52\xd9\xc0\x39\x1e\x4d\x87\xbb\xc6\x33\x4b\x46\x36\x82\x3b\x74\xdb\xe5\x52\x00\x1b\x1d\x87\xa9\x7a\x50\xc5\x83\xb3\xeb\xc4\x81\xb9\x19\x4c\x16\x3d\xf1\xcf\x9a\x91\x0b\xe6\xd3\xdf\xbb\xd2\x85\xc4\x26\xd9\xe5\xf7\x3b\x35\x16\xf9\x2f\x51\xda\x30\x66\x9c\xa2\x5f\x51\xad\xf3\xae\x7b\x6d\x97\x7f\x6d\x4e\xf9\x8f\xe8\xc3\x86\x48\x2a\x7f\x43\x1a\xe5\xef\xb2\x8f\xc4\xf9\xd7\xeb\x3d\x99\xfb\x25\x73\x5e\x54\xb9\x62\xcf\x94\xd5\x3b\xe8\x92\xff\x5b\x27\xd7\x91\x94\x45\x95\x42\x10\x9c\x4b\xdd\x17\x7d\xd4\xb0\xa2\x90\xd3\x5f\x82\xdf\xe2\xc5\x4a\x64\x0d\xae\x84\x34\x1c\x2d\xf6\xde\x09\xde\x3a\x2a\xb3\xc7\x01\x68\xe0\xfe\x69\x5f\xc1\x19\x7a\x2f\x91\xe0\x0d\xe1\x07\x92\x38\x5d\xe4\x9b\x0e\x01\xbb\x0e\x3d\x7c\x04\xf0\x4c\x7d\x41\x3f\x6d\xf4\x6b\x9f\x7a\xa5\x88\xb6\x41\x42\xd7\xb3\x94\x04\x79\x60\xb3\x04\xce\xe5\x16\x7a\xc0\xbd\xef\xc0\x40\x54\x59\x02\x93\x78\xee\xfc\xa2\x03\xe7\x17\x00\xbb\x69\xc5\xc5\x64\xd7\x89\x7b\x89\xdc\x7a\x69\x4a\x81\x48\xcc\xf1\x73\x6d\x09\x74\x40\x54\xc4\x42\xc6\x9d\x4f\x62\x3b\x69\x7d\x99\x9b\x5a\x56\x57\x0d\xdd\xf2\x00\x00\x42\xb6\x4b\xb1\x66\xd7\x3d\xd1\x45\x4e\xe8\x88\xa0\xb2\xe2\xa4\x63\xb7\x81\xab\x7f\x16\x59\x51\x13\xfd\x4d\x01\x8c\x98\x22\x3a\x5e\xab\x4f\x97\xf7\x84\x2b\x34\x7d\x05\x97\x50\x9f\xa8\xd3\xd6\xb1\x57\x6f\xba\x52\x89\xaf\x48\x80\x4f\xf4\xb0\xbe\xa8\xe9\xf6\x68\xae\x1d\xee\x33\x37\x9c\x7a\xe2\x98\xdf\x38\x66\xb6\xbd\x88\x50\x55\xbb\xc2\x25\x7c\x2e\x4b\x44\x44\x9a\x77\xb3\x53\x00\xa9\x52\xe5\x50\x10\x5a\x8c\xba\xd2\xd2\xb0\x92\x92\xd0\x8a\x0e\x99\xb0\x5f\x53\x9e\x7a\x47\x48\x4d\xc3\x1e\x78\xd5\x2f\xa6\x7b\x14\x41\xb5\x98\x28\x55\x9c\x8f\x60\xec\x88\x16\x7c\x31\xe5\xc2\x2c\x71\x4f\x68\x14\xc5\x9e\xbe\x09\x84\xd7\xe9\x6b\x72\xd7\xd0\x70\x30\x0f\x09\x46\x90\xee\xfb\xda\x6a\x4e\x6f\x15\x77\xbe\x45\x92\x84\x40\xb0\x0f\x13\x8d\x37\x60\xec\x3d\x6e\xe3\xf4\x8a\x1c\x2a\xbf\x7f\x9a\xec\x54\x43\x70\x38\xa9\xe3\xb3\xeb\xe3\x8b\xd7\x51\xbe\x63\x88\x46\xc8\xa3\xc8\x1e\x7d\xe2\xb1\xc0\x2e\x7b\xc4\xb4\x55\xbc\x17\x84\x2d\xf0\x15\x4a\x44\xac\x0f\x0d\xfd\xd9\xec\xd0\xec\xf8\x33\x19\xda\xa5\xbb\x77\x17\x8b\x78\x45\x73\x68\x0a\x9e\xd9\xf9\xe0\x32\x3f\xe7\xb1\xd4\xbc\xe5\x52\xae\x21\x79\x10\x63\x78\xe6\xed\xe8\x96\x13\xad\x25\x72\xd9\x80\x8e\xcd\xe7\x3e\xf0\xef\x7a\x34\xea\xa7\x28\xce\xa3\x22\x9f\xc6\x2e\x27\x02\xd2\xc5\xfe\x4b\xc0\xdf\xa6\x7a\xf3\xc1\x6e\x64\xf6\x86\x94\x4e\x0f\x8f\x28\x9e\x9f\xce\x9d\xcc\xa8\xfa\xb6\x7c\x4d\x3c\xfd\x0c\xcd\x9f\xeb\x52\x9c\xe2\x7d\x80\x51\x7f\xf5\x4f\xe2\xe3\xe7\x9d\x0f\xf5\xba\xf7\xb9\x1e\xa6\x71\x63\xd1\xed\x1d\x7b\x31\x5f\xe3\xbd\xec\x5b\x20\xe2\x25\xe0\x32\xdc\x2c\xe2\x78\xbd\x08\xc7\xaf\x69\xe3\x81\xea\xe0\x92\x34\x74\x11\x46\xf1\x3c\x7b\xb3\xed\x38\xdf\xec\x4c\x27\x47\x49\x63\x8f\x8b\xc9\xa6\x22\x93\x4c\xcd\xc9\x3f\x56\x92\xae\x72\x9a\x4d\x66\xf2\x86\x85\x8b\xb9\x8b\x9e\x6b\xca\x26\xaa\xe2\xf5\x19\x7c\x9c\x59\x0b\x65\xd8\x9e\x91\xd2\xda\x45\x06\x88\x37\xc2\x04\xc5\x70\x53\xbe\x28\xe7\x97\xe4\xe6\x72\x4c\x13\xeb\x88\x5d\x42\xf8\x02\x34\xb7\x47\xfe\x6b\x99\xab\x44\xba\x22\x02\xa9\xeb\xad\xbc\x63\xd3\x0f\xb8\x3c\x09\x17\xe8\xe0\x6a\xb2\x08\xc4\xbf\x73\xae\xf7\x9a\x63\x7a\xa1\x9c\xe0\x70\x90\xe2\x58\x5b\x89\x0b\x49\xdc\x80\x48\xe5\x5a\x14\x59\x69\xe3\x43\x71\xf4\xd3\xc4\x30\x17\x70\xbe\xd3\x84\x29\x4e\xd1\xf1\xec\xfb\x93\x17\x9c\x15\xf9\xbc\x84\x72\x15\x34\x10\xde\x8d\xde\xf3\xef\x8c\xce\x4f\xcb\xb1\x3a\x8b\xe2\xfe\x4e\xf2\xec\xde\x83\x2a\x95\x5f\xe7\x81\x82\x86\x19\x63\x89\xfa\xbb\xde\x79\xce\x83\xe8\x5b\x38\xad\x69\xcc\x9e\x87\xa5\x02\x7c\x35\xcf\xca\x4f\x61\x9f\xd7\x9f\x61\xe9\xb5\x4a\x71\x51\x46\x29\x56\x26\x8c\x3d\xbc\x7e\x0f\xce\xbd\xeb\x94\xf8\x22\x5f\x88\xea\xeb\xba\x80\xb4\xbd\x13\x89\x38\x7b\x37\x83\x8f\x88\xc7\xcd\xfb\x5b\x38\xb5\x0b\x94\x2c\x78\xfd\x6d\xb6\x0a\xa2\xf0\x2d\x9b\x2b\xf9\x8f\x99\x3a\x22\x0c\x5a\x3c\x68\x82\x5e\xec\x5f\xfe\x6e\xa6\xd2\x4e\xf2\xea\x2d\x35\xbf\xde\x4c\x8d\xd3\xae\x82\xff\x65\xbf\x9b\x13\x0b\x04\xf6\xd0\x31\x7e\x27\x1b\x8c\xf7\xeb\xd8\x11\xa2\xa9\xd5\x1a\xcf\xc6\x6f\x94\x37\x63\x2d\x77\x8f\x24\x7c\x97\x06\xac\x95\x1f\x44\x35\xce\x0d\xe5\x6a\x28\xb9\x40\xdc\x3d\x5d\x10\x5a\x48\xe0\x99\x6b\x5b\x53\x5d\xdb\xe4\x05\x82\xc5\x74\xe2\x6c\xb8\x52\xc4\xa9\x71\xc4\x31\x1b\x95\xf8\xc1\x7f\x9e\x1d\xa2\xd0\xbc\xc5\x5b\x74\xb1\x99\x5a\xef\x42\xf0\x23\xb8\x2b\x3a\x24\x51\x2b\x10\x04\xaa\x9f\xf9\x4d\x14\xda\x6e\x4e\x07\x08\x1b\x24\xae\x39\xdf\xbf\xf6\x3d\x37\x9f\x38\xac\xe3\xbb\x14\xdf\x5d\x95\x2c\x36\x74\xa6\xa6\xde\x8d\xda\xc0\x27\x91\x30\x32\xba\xf7\xa6\x98\x23\x77\x02\x8b\xa7\x1f\xa0\x19\xa2\xa8\x07\xe5\x70\x7a\x7a\x8e\x5b\x03\xdd\x88\x76\x47\xe5\x26\xce\x30\x34\xf0\x4b\x1b\x95\x09\xbc\x42\x4a\xbf\xa8\x74\xdd\xd7\x83\xc9\x53\x1b\x04\xe3\x9c\x23\x71\x92\x99\xac\x89\xb4\x36\x9e\xcf\xcb\x18\x14\xf8\xa3\x70\xac\xd7\x9d\x3f\x9e\x7c\xff\xf4\x50\x67\xfd\xf6\xde\x9b\x37\x6f\xee\x85\x87\x1d\xec\xbd\xb1\x6f\xe0\x87\x50\x99\x4a\x57\x73\x88\x57\x4e\xbe\x32\xc3\x7a\xf1\xe5\x27\xf4\xc7\xdd\x45\xc1\x9e\x25\x99\xce\x1b\x9a\x4a\x76\x69\x6c\x07\xef\x90\x7c\x3d\xfd\x63\xb2\xa7\x61\x68\x8e\x16\xe6\x54\x50\x0f\x62\xf4\x94\xcd\x4c\x86\xcb\x98\x2f\x00\x2e\xa4\xde\xf6\x6b\x17\x34\x1c\xc4\x69\xb3\xee\x8d\x06\x3d\x55\x13\xf9\xcb\x36\xe5\xfa\xf5\xea\xba\xe7\x0d\xb3\xaa\x35\x8d\x90\xbe\xb5\x53\xaf\xaf\xfe\xa9\x35\x93\x8a\x89\x25\x3a\xfa\x0a\x26\x58\x8f\xdd\x9f\xb0\x97\xc0\x85\x5f\x05\x17\x40\xb6\x15\x36\xac\x68\xbb\x27\x79\x01\xd7\xd8\xa2\xf3\x8c\xf0\x4a\x37\xec\x7b\xdc\xb5\xcd\xe5\xf2\x65\xeb\x1e\x5c\x90\xe0\x71\xde\x4c\x7c\x76\x58\x7a\x87\x90\xc3\x79\xa7\xde\x5d\x4c\x7a\xe2\x1c\xbc\xf4\x67\x7f\xc9\x66\xc4\xe5\x1f\x0f\xca\x3a\x7a\x1d\xc2\xc9\x37\x60\x61\xe3\x08\xa8\xac\x17\xc9\xf9\xb2\x7c\x06\xa5\xeb\x00\xbf\x80\x6d\xc7\xb9\x07\x24\x7d\xbd\x48\xfa\xa0\x70\x3f\x87\xde\x67\x3a\x89\x95\xaa\x7b\xbe\x0a\x00\xc5\x3d\xf9\x90\xdf\x3f\x2b\x37\xac\x45\xe4\x84\x01\x53\x20\x2d\x9f\xd1\x7f\xe6\xc1\x27\x0f\xe5\x81\x3d\xa2\x5f\x62\x8c\x8b\x03\x5b\x02\xa5\xe0\x84\x37\x9c\x44\xe7\x6c\x52\x1c\x9e\x80\x8b\x8e\xbc\x7b\x91\xe6\xea\x3d\xee\x54\xdc\x03\x81\xf5\x11\x7a\x64\x55\xaa\x93\x2d\x4e\x19\x42\x50\x26\x26\x4b\x39\x27\xea\x50\x64\x86\x07\x55\xea\xe7\xf8\xb7\x40\xfd\x5c\x9b\x29\x01\xd4\x26\xc9\x48\xae\x76\xe4\x80\x36\x23\x26\xb9\x51\x3e\xc0\xab\x88\x6b\x1c\x38\x04\x24\x1f\x42\xe2\xb1\x63\xc7\x61\x78\xef\xbb\xe4\x60\xf3\x54\x92\x53\x9d\xd1\x78\x40\x46\x0e\x59\x20\xdb\x8f\x71\xd1\x72\x08\x4c\x9a\x37\xe1\x04\xf5\x38\x64\xc1\x47\x01\xcf\xe8\xb2\xa4\x37\x89\x86\xfd\xa3\x84\xf9\x66\xdf\xf2\x87\xc9\xf2\xd3\x7e\x5e\x22\x1e\x77\x79\x54\xd2\x95\x9b\x80\x6a\xd7\x74\x97\x71\x1a\x31\x0d\x2d\x6a\xba\x5a\xbd\x75\x92\x65\x85\xfa\xd3\x24\x0e\xd4\xf2\xe1\x7c\x4b\x0e\x95\x08\x03\xc5\x8f\xbc\xf8\xac\x1c\x62\x4a\x59\x6b\x47\xf1\x14\x12\xa1\x30\xb6\x56\xcc\xac\x62\x9a\x9d\xc1\x57\xfa\x98\xd4\x12\xd9\xc8\x93\xc0\xfe\x45\xd6\x5f\x9c\x65\x62\x7e\xf2\x1f\x91\x6d\x22\x01\xf0\xb5\x89\x24\xf2\xbe\x3f\x2e\xa9\xc4\x1c\x98\xe6\x18\xf9\xf2\x43\xdb\x38\xd3\xfe\x9a\xec\x12\xf9\x64\xbd\xf6\x3e\x0f\xa6\x76\x3a\x7a\x0d\x2e\xca\x62\x4b\x3e\x86\xcb\x9f\x9b\x58\x04\xc4\x6b\xb7\xf6\x1a\xae\x1f\xaf\x3f\x9c\x9d\x2d\x4e\xfb\xee\x8d\x45\xb2\x06\xbc\x9d\x05\x0d\x3a\xa2\x70\x6b\x06\xd8\x09\x97\x69\x3d\xf8\xb4\xc0\xd3\x95\xff\xd1\x32\xf1\x76\x90\xdc\x00\x03\x23\x2d\x17\xb3\xf5\x3f\x7d\x68\xc7\x33\x12\x0f\xa9\x02\xab\x34\x5d\x12\x2f\x7e\x77\x10\xad\xec\x79\xf7\x66\x85\xbf\x38\x0d\x85\x85\xff\xbe\xbc\xfd\xc4\x9c\x39\x8a\xb8\xb1\xab\x8d\x02\xd9\x1f\x77\x3b\x22\xc7\xce\xd9\xc4\xbd\x22\xe8\x01\x19\x00\xae\x32\xd5\x65\x94\x8a\xbe\x47\xc1\xc6\xf4\x35\x52\x6e\x84\x3a\x0e\x66\x44\x8b\x1e\x3c\x7e\xaa\xbf\x38\xd4\x45\xdf\xff\x95\x58\x17\x9d\x85\x24\xed\x66\xc7\x82\x85\x0f\xa9\xd1\x17\xa7\x43\x94\xcd\x42\x62\xa0\xf8\xef\x10\x06\x70\xe1\x1e\xa6\x76\xb5\xaa\xbe\x3c\x1b\xe8\xce\xed\xa0\xce\x8a\x3f\xd0\x2c\x5d\x6b\x78\xf1\xde\xdb\x85\x98\x9d\x50\x89\xc0\x85\x6d\x38\xe1\x7f\x42\x71\xea\x3d\xe7\x4a\x4b\x08\x6e\xcb\x00\x8b\x00\xa2\x28\xc6\x06\x14\xfd\xb6\xd5\x48\x3f\xf7\x10\xee\xec\xd0\x8c\x45\x2b\xff\x66\xb0\x47\x2b\x57\x81\x44\xf9\x44\xfa\xa0\xdf\xf1\x47\x66\x6a\x8f\x80\x2a\x90\x1f\xe3\x46\x2e\x88\x93\xd9\x1b\x2b\xe6\x46\xb4\x4e\x62\x17\xd9\xb8\xc9\x7a\x83\x28\xa6\x0c\x4e\x41\xe2\x14\xba\x98\x6c\xd1\x2a\xa2\xc2\x4a\x3d\x67\xd7\xe5\x38\x60\xd8\xfc\x57\xdb\xca\x4b\x45\x82\x66\xf1\x35\x48\x04\x67\x5b\xf6\xc4\x79\xdc\xb1\x77\xc5\x39\xd3\xf5\xf1\x06\x92\x07\xd2\xe3\xf6\x1a\x5f\xef\xb7\x94\x9f\x46\xc3\x7e\x5e\xd4\x76\x94\xf8\xe1\xe9\xd0\x71\x38\xc8\x73\xbc\x5f\x88\xc8\x6b\x7e\x13\x49\xaf\x07\xd7\x00\x8c\x3d\xf8\xca\x23\x7e\xa9\x0a\x14\xe2\x5f\xfe\xfb\xff\x9a\x43\x21\xbd\xce\x9b\xc2\x1e\x94\x1b\xbc\x5b\xca\xda\x2a\xff\x40\x56\x0f\x66\x6a\x2b\x6f\x5b\xcd\x36\x77\x0f\x68\xaa\x3c\xc4\x6e\x1f\x2c\xc4\x09\xdf\xc5\x21\xeb\xda\x19\x64\x5d\x68\x72\xeb\x8a\x35\x90\xce\xa4\xdd\xca\x38\x78\x73\x3e\xbc\x12\xed\x5f\x1f\x8c\x06\xc5\x9e\x30\x6b\xa9\xce\xbd\x1e\xdf\xf0\xee\x94\x9c\x96\xf0\xde\x14\x1f\xcb\x99\xc3\xc3\x52\xb8\x3b\x3e\xde\xc2\xbd\x67\xc7\x1d\xa2\xae\xd4\x3d\x44\xd3\xd0\xe2\x72\x8c\xea\x0b\x02\xac\x7d\xa8\x34\x10\xd2\x1b\xb0\xb8\x85\x58\x21\x6e\xde\xf8\xa1\xeb\x37\x3f\x46\x19\xd0\x93\x47\xa2\xba\xe4\x95\xf3\x50\x67\x26\xb1\x02\x23\xf6\x34\x63\xfa\x34\xb7\x02\x48\x5c\xc8\xae\xb0\xf0\x51\x98\x48\x79\x1c\x85\x08\xa5\x43\x73\x70\xa4\xf0\xa9\x55\x1c\x5c\x71\xf3\xc6\xce\x74\xbb\x46\x52\x61\x12\x1f\x6e\x39\xb9\x35\x1e\x64\xb6\xdd\xd6\xc0\xc8\xfa\x98\x7f\x8a\xd4\xfc\xcb\x48\x98\x24\x89\xdb\x11\x7d\xc8\x69\xb4\x11\xa5\x88\x9c\xb6\xaa\x71\xc5\x63\x51\x48\xb5\xed\x8b\xaf\xcd\x97\x1b\x05\x90\xa2\xd3\x78\xfe\x21\x96\xea\xcf\xfa\x00\x03\xc0\x37\x75\xf9\x08\xa9\xdd\x35\x75\xbc\xab\xce\x1f\xae\xa9\x1f\x85\x8f\x73\x72\xf5\x38\xbb\xa0\x60\xad\x8b\x8e\xd1\xf0\x37\x4d\x49\xef\x52\x05\xc7\xae\x84\x3e\x9d\x3d\xc6\x73\x1d\x3f\xd3\xac\x8a\xde\x75\xab\x09\x8f\x49\x70\x65\x04\x4d\x0a\x21\x8e\x84\xd9\xb6\x96\x80\x59\x67\xf4\x93\xf3\xe6\x47\x17\x7c\xb8\xc7\x90\x71\x36\x5b\xcd\xfa\x71\x4d\xac\x7f\x8a\x54\xff\x46\xf9\x82\x33\x75\xf8\xff\x83\xb7\xc1\x9e\xf4\xb6\xb1\x52\x31\xcb\x73\xeb\x3f\xed\x49\x78\xfb\x1b\xac\xff\x69\x8d\x90\xf1\x36\x76\x4b\x48\xe1\xe9\xd9\x94\xfd\x06\x18\xf1\x28\xa0\x56\x1f\x9d\xdf\xd6\x79\x15\x54\xfb\xd3\xda\x36\x39\xc8\xf3\x35\x64\xa9\x53\x8f\xd3\x04\xd7\x9a\x22\x48\x33\x60\x9b\xac\xbb\x8f\xc9\xad\xba\xdf\x5e\xdf\x64\xa4\x2f\x17\x7c\xa7\x89\x7e\x34\x41\xcf\xb5\xad\x3c\xdc\x9a\x32\xb6\xe9\x4e\x9b\x4e\xb3\xe5\x4c\x6c\xc2\x1f\x97\xff\x67\x8f\x09\x6d\x92\x08\xe8\xdd\x7e\x53\x9a\xb6\x00\xf5\x9a\xc9\x06\xf4\x01\x38\x79\x9a\x37\x93\x3c\xde\xce\xd9\xb3\x83\xac\xb0\x28\x8e\x66\x25\x91\x48\xe3\x2e\xf2\x31\xa3\x98\x37\xae\x20\xd9\x98\x6a\x5d\xdc\x83\x74\x9a\x87\x31\xe8\xaf\x84\x00\xa6\xc4\x3c\x80\xcd\xbb\x07\x4f\x08\x82\x5e\x11\x72\xed\xaf\x97\x2e\xef\x76\x5a\xec\xc8\xe7\x73\xc3\xe1\x35\x62\x93\x8e\x2a\x49\xae\x1d\x64\x71\x9d\x2b\xcf\x5b\x67\x43\xcc\x46\x08\xb9\x8f\x6a\x33\x94\x0b\x2c\x14\xd3\xd6\xaf\x4d\xd9\x2c\x9f\x94\x50\x3c\xf5\xe1\x83\x98\x2b\x97\x8f\xe4\xc9\x89\x50\x4e\x8c\x06\x15\xff\x49\x1e\x0a\x08\xc5\x7a\xb1\x8a\xef\x0e\xa7\x03\xf6\x77\x7e\x6c\xa2\x64\x60\xd7\x7a\xeb\x46\xec\xae\x3e\x61\x41\xd2\xd4\x3b\xf0\xec\x5f\x4c\x3a\xc6\x63\x79\xc7\xf0\xa7\x93\xec\x6e\x54\xa6\x48\xa5\x37\xf6\x02\x11\x4b\x04\x18\x0d\x5c\x72\xa5\xd9\x6c\xa5\x10\xac\x91\xe6\xc1\x5b\xde\x97\x8b\x88\x98\xef\x63\x58\x4a\x42\xcb\xa8\x52\x9a\xe3\xda\xdd\x56\xf2\xb6\x6d\x59\x48\x52\xe7\x60\x9d\x67\xb5\x3a\x12\xf5\x8e\x3b\xce\x77\x29\x56\xb5\x14\x9f\x16\x6e\x14\x66\xaf\xa7\x73\x61\x7e\x3b\x9e\x4d\x5c\x6f\x7e\x3a\x7c\x5f\xfe\x5a\xe1\xd8\x48\x4a\xb2\x53\x09\xea\x08\xfe\x4e\x50\xf4\xf1\x12\x99\xd5\x65\x3f\x4e\x19\x84\xad\xa8\xd7\x4c\x52\x5e\x37\x4d\x27\x99\xbf\xc8\x3b\xad\xf9\xc1\x69\xce\xce\xed\x30\x9e\x58\x9c\x48\xbe\x11\x07\xf2\x8e\x03\xee\x4a\xd5\x7d\xcd\x7a\xa5\xc8\x54\xae\x4b\x0f\x22\x35\xe6\x6f\x70\xf9\xc6\x47\xc9\x4e\x98\x98\xe3\xd8\x7d\x4d\x5c\x64\xdc\x82\xda\x40\x71\x9b\xfd\x4e\x66\x89\x2c\xcf\x2a\x06\x36\x63\x73\x08\xe1\x34\x2b\xe1\x6f\xa1\x4a\x93\xfb\x52\x16\x92\x31\xae\xa8\x79\x9c\xb2\x91\xd7\xb0\x0d\xf2\xd9\x65\xd0\x03\x0f\x9b\x5f\x69\x59\x4f\xd0\xa0\x31\xf7\xa7\xd4\x26\x72\x10\x70\x84\x67\xd2\xe7\x7c\x1a\xb9\x8c\x9d\x4c\x5b\x44\x97\x86\xc3\xab\x34\xa1\x9c\xda\x4f\xb7\xba\x68\x7e\x22\xbb\xe4\x17\x52\xc4\xd7\xad\x68\xe4\x19\x6d\x9f\x68\xd5\xfb\x1a\xb8\xd7\x5c\x17\x73\xe3\x3a\x5e\x43\x57\xbd\x4f\x77\xb5\x48\x68\x48\x8e\x43\xd9\x79\x60\x53\x48\x70\x83\x33\x6d\x84\x46\x7c\x22\xc2\x2e\x7f\x21\x6f\x18\xb8\x45\xc5\x2f\x85\xff\x36\x7a\xf3\xbb\xa7\xe4\x4f\xe6\x87\x26\xc5\xae\x24\x78\x9b\x87\xd3\x76\x7e\x90\xb6\xfc\xee\x09\xed\x3b\x5d\xfb\x41\x75\x18\xcf\x0d\xfe\x6d\x7b\x49\xc9\x07\x66\x7e\x8d\xec\xa7\x08\xbc\xe7\x6c\x84\x68\x8c\xf8\x7c\x3c\x0c\x1e\xae\x93\xa6\xea\x3a\x24\xe9\x83\x42\xb0\x68\xe8\xb7\xed\x5a\xd1\x6a\xb7\x9a\x64\xc8\xf5\x56\xb7\x4e\xd3\x14\xf9\x99\x85\xe7\x75\xf4\x55\x77\x91\xf5\x19\x96\x24\xed\xfb\x07\x9c\x97\xd1\x03\xcd\xa7\xfc\x40\x33\x0c\xa1\x76\x19\xbd\x3b\x22\xcf\x97\x10\xd9\x79\xa7\x4f\x9b\x64\xef\x98\x5c\xff\xa0\x8c\x3e\xd2\xa3\x42\xcd\xfd\xec\xcd\x1e\xab\x19\x2a\x37\xc2\x88\xba\x47\xb8\x91\xf9\x89\xfd\xef\x48\x7e\x42\x48\xea\xc9\xa5\x1d\x34\x17\xc5\xb6\x6b\x31\x16\x60\x04\x27\x23\xe1\x55\x89\x85\xb5\x78\x6d\x72\x03\xb6\xca\x6c\x39\x9b\xb1\xa6\x38\xe6\x42\x9f\xe2\x18\x69\x5f\x07\x62\x85\x5e\xe0\xbf\x78\xf7\xa9\x62\x15\xb4\x83\x06\x2b\x74\x09\x96\xc4\xdb\x9d\xe8\x5f\xf2\xf0\x4d\xa8\xe1\xe3\x75\x20\xf7\x79\x5f\x8b\xa4\x0f\x9a\xac\xd9\xb2\xfe\x78\x94\x1c\x47\x38\xb8\xc5\x13\x4c\x1c\xfc\x91\x5b\xcc\xec\xb8\x2b\xd8\xd8\xf9\x4d\xa1\xfc\xc1\x75\x7e\x58\xcb\xbf\x02\x85\x67\x65\x2b\x3c\x2b\x9b\x3c\x6d\x74\x18\x95\xc7\x57\x45\xf2\x41\x72\x8e\xfb\x57\x7d\xe2\x4f\xe9\xee\xc5\x5f\xe0\x37\x5b\x27\x25\xc8\xe1\x95\x14\x88\xc3\x72\x56\x84\xc3\x1c\x97\xc4\x6e\xa8\xd1\x94\x22\x87\xd4\xac\x7c\x5f\xb2\xe5\x64\x98\xf0\xd0\x50\x5c\x2c\xb9\xf2\xd2\xe1\xa3\x54\x52\xe9\x40\x2d\x4e\x91\x64\x47\x26\x4c\x46\xba\x95\xf8\xbb\xda\x39\xb3\xee\x5d\x50\x43\x5c\x2a\xf1\xe4\x71\xc9\x70\xf5\xf7\x1c\x52\x8b\x0e\xe2\x72\x25\x7d\xb3\x75\x91\x7b\xb6\xb6\xc6\xc9\xad\x71\x15\x67\x5c\x58\xcc\x62\x65\x9a\x53\xfd\x20\xa0\xe8\x7c\x6d\x79\xcf\xdd\xbf\xde\x3e\x5f\xa9\x1f\x5b\x92\x11\x10\x17\x3d\xa4\x55\x10\x6e\x84\x80\x37\x4e\x55\xdd\x49\x72\x44\xa2\xea\xfa\x48\xaf\x7b\xe0\x41\xfd\x45\xbe\xe7\xb3\x6f\xaf\x6f\xef\xaf\x5f\xce\x43\x23\x5f\x5c\xcb\xe8\xb5\xf1\xc8\x93\x37\xbb\x94\x43\xe7\x7a\xa9\x8b\xb3\x51\xfc\xe4\xad\x8d\x38\x1c\xcf\x75\x39\x4c\x53\xdf\x24\xfb\x71\x3d\xf9\xe9\x3e\x96\x6f\x1a\x45\x9f\x76\xf9\xbb\xa6\xcd\xfa\x4e\x24\x18\x43\xdc\x7d\x3a\x61\x17\xa3\xef\xbe\xea\xe9\x48\xc8\xee\xf5\xfd\xc5\x50\xfe\x70\x6f\xbf\x71\x01\x9b\x7a\x58\x6d\xd6\xfa\x82\x3e\x9c\x5e\xe5\x29\x16\x75\x84\x22\xec\x1e\xc4\xd3\x7c\xff\x94\xe3\x1e\x52\x84\x70\xef\xb5\x81\x7b\xe3\x69\xf9\x07\xa6\xe4\x91\x51\x19\x6c\xff\xdc\x88\xbc\x5c\xb6\x6b\x28\x05\xf1\x14\x05\x1b\xca\x89\xe4\xdd\x63\x96\x47\x9c\x24\x5c\x42\xd6\x83\x05\x55\xf8\x44\x52\xb4\xd5\xef\x0c\x1b\x8d\xed\x41\x71\xa7\x74\x01\x1a\xca\x7e\x08\x31\xa5\x4a\xf6\x1e\x13\x68\xf6\x72\x17\x65\x37\xd8\x50\xa2\xaf\x77\xaf\x9f\xc0\xdc\x5e\x64\x14\x3a\xda\x80\xde\xcd\x16\x55\x3f\x66\x99\x91\x6b\x47\xba\x56\x8f\xa6\xa2\x35\x51\x82\x13\x34\x65\x55\x0c\xea\x3b\x9c\x3f\x04\xba\x15\xc4\x8f\x36\xc6\xe7\xf9\x34\xfe\x71\x57\x77\x75\x67\xef\x24\x41\x4b\xe5\xd4\x8b\xfb\x20\x11\xcf\x31\xd1\xf5\xe5\x33\x2a\xc4\x2d\x6a\x82\x3c\x0c\x20\x3d\x19\x1e\x4e\xfb\xc0\x94\x5c\xbb\xec\xc0\x4f\x13\x18\xe8\x70\x2d\x1f\x8e\x6c\x01\x42\xc2\x56\x9c\x06\x53\x9c\xe0\xf3\x98\x92\x3c\x92\x32\xc0\x81\x6d\xba\x1e\x61\xc5\xad\x59\x7e\xeb\xfe\xb2\xfa\xc8\x51\x93\x11\x39\x6d\x41\x8c\x2a\xb1\x83\xab\x91\x93\xfb\xbd\x8c\x5e\x5a\x78\x02\x5b\x08\x07\x18\x69\xf3\xb8\x35\xb3\x2b\xae\x2d\x94\xd9\x6b\xb1\x80\xb8\x36\xfc\xdd\x20\xeb\x73\x37\x72\xde\xb2\xd0\x54\x1b\x75\xa7\x90\x7a\xe2\x36\x54\x22\x2f\x67\x87\xba\xfc\xda\x31\xd2\xa4\x11\x80\xc7\xdd\x0a\xe0\x00\xef\xe5\xde\x1c\xd5\xd7\x4d\x94\x92\x3f\xe3\xca\x29\x5c\xb2\x19\x66\x3d\x1c\xdc\x6f\x9c\x5e\xdb\x2f\x77\xa6\x35\xd2\xda\x4c\xc6\x3e\xae\x4f\xbd\xce\x73\xae\xad\x83\xef\xb9\x29\x77\x33\xd0\x7d\x51\x12\xfa\x7e\x47\xdf\x12\xec\xe3\xca\x7b\x01\x14\xda\xcc\xc1\x2a\x6e\x5b\x57\x24\xd6\xce\xb5\x23\x8e\x1a\x8f\x88\xdb\xbd\x0d\xd9\x47\x66\x1e\x0f\x3e\x3c\x65\xb5\x05\xce\x4f\xb9\x61\x80\x65\xc8\xc0\xad\xbb\xd3\x9f\x89\x3e\x12\xe3\x4a\xff\xd2\xa9\x9e\x1f\xe7\xb4\xeb\x06\x08\x5b\x3b\x70\xb0\xec\x18\x99\x83\xf4\x59\x0d\x33\xa6\xab\x96\xb1\xb1\xd4\x62\x2f\x5c\xb9\xe1\x0c\x44\xb7\xc8\x66\x4c\xc3\xf5\x23\x4b\xc3\x76\x66\x4c\x1c\xfa\x13\x5f\xa1\x78\x72\x42\x2d\xae\xed\xc2\x8f\x9e\xb7\x72\x13\x48\xb6\x66\xbb\x2e\xe9\xc0\xff\xb6\x29\x1c\x95\x9c\xa5\xe5\xba\x4e\x66\x27\xc1\xed\x66\x67\x21\x8f\x14\xc2\x68\x73\x3a\xae\x5f\x9b\x01\x91\x89\xe7\x2b\xf6\x96\x08\x5d\xc9\xcb\x85\x1c\x78\x00\x0a\x25\xa2\x1b\x4b\x71\xec\x26\x47\x2d\xf0\x4d\xba\x4f\x6e\xd5\x35\x6d\xcc\x50\xb2\x5b\x4c\xbc\x35\x54\xe4\x45\x8c\xa3\xd9\x69\x75\xc8\x48\xb0\x52\xb1\xa6\xf4\x27\x39\xf4\x12\x9d\x6e\x31\xc9\x70\xec\xa6\x93\x73\xe6\x76\x1c\x49\xdd\xe4\x8e\x5f\x5f\xae\xe1\xe7\x00\xa3\xa0\x18\x00\x68\x12\x1a\xa4\x17\x37\x60\x59\x8e\x1a\x08\xa1\x16\x77\x8f\xe8\x79\xe4\x6f\x8f\xa6\x44\xd3\xd5\x7e\xc6\x59\x15\xa8\x5b\xa1\x95\xb3\x15\x77\xa8\xe3\x6b\xce\x0d\x2c\x35\xc2\x5b\x39\x73\x75\x75\x44\x47\xbd\xf8\x56\x45\x0d\x15\xaa\x25\xbe\x47\xdf\x68\x21\x4c\x34\xcd\xf2\x5b\x4d\x3b\x56\xa9\x77\x73\x10\xb9\xa5\x05\xbf\x9c\xe8\x4c\x35\x93\xa4\xc4\xee\x1d\x06\xad\xab\x9c\xbf\xfb\xed\xb8\xd5\x4a\x1e\x7d\xe4\x48\x5c\xfd\x12\x52\x8f\x45\xea\x5d\xf9\x26\x7c\x9b\xea\x16\x7c\x0b\x4d\xd9\xa8\xb9\x1a\x7d\x31\x7b\x0c\x4b\xa2\x2e\x0d\x02\x3d\xbb\x5c\x3e\xc2\xab\x65\xde\x08\x1e\xbd\xcf\x5b\x1d\x18\x9f\xd5\x6b\xeb\x4d\x80\x89\xa7\x75\x58\xf5\x34\xf6\x8a\xb3\x8f\x4d\x52\x06\x4c\xa3\xc6\xa4\x8f\xd4\xa9\x48\xd7\xcd\x12\x86\xf8\x98\x89\xff\x8f\x9d\x79\x0e\xda\xd5\xe6\x8c\xe4\x62\x86\x35\x36\xe9\xa2\xe9\x48\x3e\x5c\xcd\x7b\x8b\x5f\xd3\xa1\x7f\xe9\xd0\x39\x0a\xcb\x1b\x40\xf7\xe0\x68\xe5\x93\x72\x6b\xfe\x01\x7d\xc1\xc0\x2f\xe7\x77\x3f\x63\x1a\xa0\xe1\x11\x29\xce\x48\x70\x94\xa0\x50\x6d\x57\x01\x6b\xc2\x4b\x1e\x9c\x1d\x47\x70\x28\xae\xc9\x58\x14\x6a\x39\x2d\x39\x63\x68\xe6\x04\x50\xce\xe2\x1a\x1b\xe7\x11\xa7\xc1\xbc\x5f\xd4\x95\x6a\xcd\xf9\x58\x94\x51\x7e\x7d\xe7\xbf\x28\x27\x81\xd5\x79\x7d\xe7\x44\x0a\x44\xd7\xcc\x83\x2b\x72\x82\x96\x92\xe0\x3d\x22\xd5\xaf\x31\xea\x66\x10\x9a\x3c\x89\x3d\x59\x7d\xf2\x12\xb6\x57\x35\xff\xce\xa7\xaf\xe3\x41\xdd\xb3\xe0\x61\xcc\x32\x0c\xb6\x0d\xba\xff\xd4\x4a\x70\x18\x3d\xc9\x44\xab\xde\x94\x23\xdf\x3e\x63\xf4\xd0\x75\x1c\x93\xba\x48\x40\x92\x45\x73\xf9\x61\x3f\x9c\xa8\x01\x0f\x1e\x2f\x38\x8e\x71\x1f\xb9\xcb\xb4\x88\xdc\x20\x90\x30\xfe\x99\xfb\xe9\x70\xe1\xc4\x4d\x47\x35\x90\x4c\xb9\xf6\x0f\x17\x28\x9a\xd4\xde\xfb\xb4\x4c\x3c\x0b\xf9\x9d\x5b\x6c\xa5\x94\x73\xdc\xb3\x6c\x5e\x5f\xd4\x50\x38\xbb\x0f\x48\x6b\xcf\x2f\x24\x1a\x3f\xd8\x4c\xba\x74\x51\x8d\x2a\x41\x49\x66\xfd\x0c\xff\x4d\xad\x4a\x6e\x11\x39\x65\xb1\xae\x17\xe4\xea\x99\x7d\xc2\x52\xa8\xdd\x2c\x51\xd2\x96\x7e\xb1\xf2\x3b\xca\x14\x2c\x05\xf2\x22\xb0\xbf\x44\x5c\xf1\xac\x2f\x56\xb4\xa4\xc8\x79\x7f\xef\xd8\x5c\x31\x55\x58\xed\xab\x9a\xfb\xde\x4b\xe9\x79\x67\x87\xe5\x77\xb4\xad\xbe\x04\xde\x25\xcb\x67\x1d\xb2\x11\x49\x01\xeb\x96\xaa\x76\xf9\x00\x9a\xa4\x87\x4f\x93\x62\xff\xbc\x2d\x7f\x4c\x1f\xb4\x9d\xa9\xe6\xe8\xf6\xfd\x57\x8f\x9e\xbf\x78\x7c\x72\xf2\xe8\xc9\xa3\xa7\x2f\x8a\x2f\x8a\x23\x93\xb4\x65\x72\x69\x87\x6e\xfd\x5a\xa3\x72\x39\xf1\x00\xe7\x9c\x59\x14\x4f\xf5\xae\xd0\x37\x27\x9a\xac\xa9\xcb\x33\xca\x44\xb0\x53\x6b\x33\xf0\xaf\x26\xbc\xd9\xb0\x78\xdb\x18\xf1\x77\xd2\x6d\x00\x4b\xc1\xa9\x07\x23\xf6\x01\x6c\x21\x09\xb0\x85\x64\x23\x8c\x2a\x12\x1c\xe2\x6a\x01\x1c\x25\xd1\xc7\xfa\x74\x84\x11\x1e\xdb\x71\x5f\x7f\x42\x6f\x0d\x77\xcb\x36\xe0\x47\xa8\x69\xc7\x7e\x52\x59\xbd\x0d\xcf\xca\x6d\xcd\x82\x6c\xde\x46\x9e\x4e\xf5\x0d\xb0\xe3\xee\x21\x5d\xa9\x2a\x49\x11\x93\x59\x7e\xc3\x45\xbe\x2f\x36\x26\x69\xb5\x94\x85\xc9\x6a\x6e\x71\x45\xad\x6c\xb9\x7c\x02\x53\x76\x71\x72\xdf\x7d\xb0\xdb\x61\x27\x4f\xb9\xec\xc1\xcf\xe2\xe4\xc9\x8b\x67\x71\xed\x80\x67\x93\x4f\x1e\xe1\x92\x2f\xea\x76\xa6\x21\x23\xd6\xe1\xad\xbf\xcd\x98\x87\x9a\xad\xfa\x31\xcc\x01\x91\x3d\xba\xce\x24\x7b\x2b\x9b\x08\xa4\x73\x89\xd3\xab\xd9\xae\xe5\xca\x10\x44\x16\xbd\xbb\x47\x03\x13\xa5\x72\xe1\xa8\xec\x55\x5b\xf7\x9b\x91\x06\xf9\xcb\x3f\x1e\x16\x7f\xf9\xe7\x45\x7a\xea\x57\x03\x1e\x47\x76\x4f\x86\xd3\x5d\x78\x5e\x9f\x9d\x29\xf3\xf6\xe2\xf8\xc4\xc3\xe1\x75\xbd\x43\xd5\x15\x82\x7b\x88\x03\x7c\x2a\xd3\x0c\x8f\xd4\x46\x75\x77\xb0\xb1\x4a\x78\x78\xe2\x6f\x7d\x22\x65\xc5\xb3\xfb\x4f\xb2\x39\x70\x92\x37\xc7\x64\x2e\x8f\x9c\xa6\x9e\x1f\xde\xd1\x0c\x72\x9e\x78\xd5\x3b\xe8\x1c\x5b\x6b\xea\xc6\x03\x38\x49\x3e\x2b\xd9\x69\x12\x57\xb8\xbd\xd4\x29\xf0\xcf\x39\x7e\x28\x33\x64\x22\xf2\x9b\x32\xac\xfc\x7a\x70\xde\xea\x2f\xff\x78\xdb\x12\x8c\xaf\x8f\x26\x59\xa4\x04\x76\x8f\xef\xdb\x1c\xd2\x7e\x84\xbf\x5b\xdc\xb3\x63\x8a\x5c\xd5\x0f\x03\xc6\x43\x74\x26\xbb\x0d\x3f\xfc\xbc\x8f\x76\x2b\x77\xc5\xd7\xc2\xbc\x23\xc0\xc7\x34\x8d\xac\xc6\x31\x4f\x38\x75\x0b\xf0\x6e\x63\x5f\x27\xdd\xd4\xe9\x73\xd1\xfb\xc0\x77\x6d\xb0\x8a\xa8\x3a\x9d\xde\x70\xce\x74\xe9\x70\x59\xdf\xf4\xe0\xea\xe5\x6e\x97\x5d\x73\xf7\xc3\xfb\x81\x49\xad\x0b\x4e\x61\xd8\x07\xc0\xec\xab\x98\x84\x9f\xce\x55\xca\x2f\x4c\x2d\xee\xce\xce\x1a\xfa\x8d\xbc\xc3\xc8\x36\xcf\x3a\xd5\xde\xde\x63\x17\xf9\xd0\x96\x40\x8b\x93\xd7\x33\x43\x01\x71\x07\x02\xa1\x3e\xf7\xcf\x9e\xe9\x78\x85\xbf\x2d\x83\x6a\x64\x2c\x9e\x77\xfe\x1d\x13\xee\xa3\x1f\x59\xc3\xd5\x23\xee\xbe\x17\xb1\xf5\x65\x2c\xe9\x45\xd5\xc2\x5c\xe0\xfd\x2c\x86\xa6\x78\x29\xcc\xd8\xf5\x5d\x37\xc8\x83\x51\x8f\xb6\x1c\x71\xe0\x9d\x4b\x03\x67\xe7\x76\x07\x8a\xca\xf5\x4a\x1e\x8a\x99\x6d\xf6\xbc\x5c\xd7\x2d\x67\x23\x71\xaf\xac\xb1\xb9\x97\x29\x89\x76\x42\x8b\xfe\x6d\x3d\x28\x48\xc2\x2c\xd8\x17\x29\x0d\x62\x3c\xe1\xb2\x68\x61\x70\xc0\x56\xf4\x66\x60\x69\x1e\x39\xec\x69\x8e\x9f\xbc\xd3\x73\x20\xac\x4e\xf7\x20\x22\x2b\xe7\x1f\xa8\x1d\xd9\xc5\x3e\xc5\xcd\x22\x5e\x2f\x14\xc6\x3c\x55\x28\x0d\x6c\x62\x28\xe3\x19\xef\x99\x91\xb5\x4d\xb4\xaf\x27\x27\xc7\x73\x1f\xfd\xc3\x82\xb7\x90\x23\x1d\x39\x50\x6f\x15\xa3\x0f\x62\xbe\x1b\x37\xc9\x37\x20\xff\xe6\xbb\xe2\x7b\xf2\x2f\xff\x58\xd8\x5f\x1a\x12\xfd\x3f\x07\xbd\x35\x03\x0a\x5e\x3c\x7e\xf8\x80\x7e\xdd\x4d\x0e\x71\xcd\x31\x41\xfb\x4f\x71\xbd\x36\xd1\x6e\xa9\x9e\x23\x79\xe1\x3d\x7f\x0e\x2e\x79\xd9\x1d\x97\x6c\x78\x1d\x3e\x3f\x5d\xee\x4a\x4b\xce\xd6\xc1\xa3\x44\x47\x12\x66\x8b\xc0\x34\xfd\x22\xea\x37\xe2\xa0\x06\xb8\x54\x84\x08\xb5\xe2\x94\x0e\xe1\x8c\xa2\x25\x5a\x82\xa4\x81\x77\x69\xe1\x39\xbe\x27\xdc\xa8\xdf\x9f\x12\x1d\x28\x87\xce\x27\x47\x7c\x15\x85\xfd\x68\x17\x7a\x29\x8b\xaa\x53\x7c\xaf\x13\x0e\x81\x95\x9b\xd5\xc1\x7d\xfe\xe2\x5b\x31\xc4\x54\x3f\xf4\x84\xfe\xd6\x8b\x38\x56\x0f\xd9\x09\x80\x38\x4e\xb3\x7e\x67\x24\x97\x6e\x4e\x82\x94\xbb\x58\xc7\xc8\x8e\x98\x6b\x4d\x54\xd1\xf0\x4d\xd8\xd6\x5b\x56\xf9\xe5\x93\xdf\x91\xec\x56\xea\xbc\xdf\xc9\xbc\xb9\x28\xd0\x58\x09\xe9\x46\xbc\xd8\xaa\x61\x1b\xec\x71\xbd\xad\xd5\x17\x81\x03\xc8\x34\x08\xdc\x43\xd6\x9a\x21\x48\x0a\x51\xbb\xe7\x57\xef\xeb\xe8\xf9\x45\x1a\xeb\x09\x71\xfc\x0f\xa1\x41\xb4\xaa\xe2\xc8\xba\xf6\x9d\xba\xa4\x14\xb3\x18\xea\xa3\xac\xb5\x32\x9d\x9a\x91\xc6\x34\xed\x86\x4e\xca\x71\x87\x87\x2c\xc5\x68\x46\x70\x01\x21\xc3\x85\xce\xc6\xcb\xe8\x5c\x4b\x3c\x36\x2b\x2d\x09\x73\x96\x8f\xde\xee\x6a\x87\xff\x07\x50\xe3\xd5\x01\xfd\x3e\x8a\xc5\x8b\x76\xfb\x9a\xeb\x91\x11\x60\xec\xf3\xea\x13\x41\x33\xfd\xec\xb0\x82\x0e\x7a\x97\xe0\xc2\x77\x8f\x8e\xbf\xcf\x2b\x4f\xc8\x95\x96\xcf\x10\x37\xfd\xb2\x97\x98\x89\x5f\xc2\xec\x5a\xd8\x31\x21\xab\xb8\x6f\x15\x72\x60\xf6\x81\x44\x6d\x09\x49\xdd\xb2\x22\x9c\x64\x21\x87\xfe\x55\xdd\xe2\x7c\xcd\xc9\x6b\x9a\x76\x5f\x4d\xf8\xb9\x10\x26\x6b\x5a\xeb\xbc\x8e\x15\x96\x6c\xef\x75\x72\xe2\x62\x03\xb2\xfa\xbb\xbe\x83\x8c\xd2\x2f\xbf\x71\xc9\x92\x04\xf3\xf2\xfa\xae\x5e\x3e\x80\x1c\x8b\xa8\x71\x98\x35\x61\x78\x9d\x0a\x0a\x47\x5c\x94\x1f\x69\x9c\x3e\xa9\x1c\x51\x23\xab\x95\x03\x69\xd9\xac\x3d\xb0\xc4\x38\x10\x20\x06\x45\x7d\xb6\xae\xa6\x3e\x33\xab\xcc\x34\x9c\xaf\xe9\x7c\x18\x76\x56\xf2\x6f\xf0\x63\x98\xd1\x05\x96\xaf\x22\x74\x17\x1f\xb4\xc9\x8a\x76\x35\x5b\x8a\xf6\xec\xc2\xc1\xe3\xad\xbe\x0a\x97\x54\xd6\xcb\x6c\xe9\xc4\x28\xad\xd7\xd7\x53\xae\x6e\xd3\x2b\xd9\x8e\x0f\xd1\xb7\x5a\x98\xf0\x3f\xfb\xb0\x35\x67\x75\x50\x37\x62\xe2\xa2\x0a\xde\x5f\x6f\xb1\xee\xe9\xae\x7a\xa1\xee\x4d\x47\x3d\xe7\xa5\xd5\x4f\xe1\xb0\xba\x12\x4b\xb5\x2a\x62\x84\x96\xcf\x9a\xb2\x8d\x84\x02\xdf\x02\x6f\x02\x9d\x38\x2b\x91\x2b\x0d\x8f\x09\x85\x77\x84\xc2\x57\xf3\xd6\xc0\x81\x29\xb7\x4c\x47\x0c\xa7\x8d\xbb\xea\x9c\x7e\x1d\xff\x72\x26\x20\xbe\xc9\x6d\xce\xa3\xba\x16\x33\xb9\x9c\xdd\x62\x08\xac\x44\x74\x8c\xbe\xc1\x2e\x71\xb8\x3d\x6f\xe2\xdc\xdc\x5c\xcd\x74\x18\xef\x11\xe9\xdc\x0b\xe5\xe7\x0a\x39\xa1\xa6\x4e\x92\xae\x6e\xc4\xe0\xc5\x45\xab\x4f\x9d\x81\x27\x94\x4f\xe7\xef\xbe\x74\xbb\x65\xec\x46\x16\x1a\xb0\x68\x16\xc4\x5e\x64\xd7\x74\x26\xbf\xfd\x5e\xd3\x70\x42\x65\x47\xc1\x1f\xd3\xf7\x84\x4b\x4d\x00\x1d\xf2\x59\xa6\xe1\xcb\xb7\xad\x0b\x5a\x6e\x7d\xaa\xd6\xde\x9c\x12\x69\x64\x3f\x93\xa8\x59\xf4\xc2\xc2\xa7\xe1\x25\x05\x79\x29\x68\xdf\xe3\x55\xfe\x51\x20\x9e\x89\xa4\xc9\x49\x9b\xd8\x4f\x6c\xbf\xfe\x84\x67\xe2\x9e\xf8\x91\x50\x96\xf4\x1d\x8b\xb4\x57\x59\x9f\xbc\xa8\xf4\x53\xa9\x8f\xc7\x40\x14\xf2\x6e\x90\xc9\x08\xa2\x26\x96\x41\xf0\xfc\x45\x78\x4a\x48\x7b\x4a\x1f\xdf\x48\xf2\xc1\x8b\x2d\xcc\x68\x16\x26\xdf\xa5\x3e\xab\x31\xd3\x63\xf2\xdc\xd3\x4f\x65\x78\x06\x4c\xcd\x24\xbf\x69\x7e\x33\xd9\xf2\xd3\xe9\x85\x87\x31\x3e\x76\x82\x3e\x91\xa4\x6e\x4a\x9c\x27\x32\x46\x12\xd9\xea\xf9\x7d\x8e\xf0\x86\xf3\xfc\x0c\xe5\x06\x3d\x95\x1b\xea\xe3\xfa\xad\x4d\xd1\x65\xb2\xb1\xfa\xb4\xcb\x67\xf1\x53\x1b\xf2\xca\x0c\x6c\x8a\x9f\xa5\xcf\x80\x12\xca\x0f\x5d\xd7\x10\xc2\x97\x1b\x5a\xc9\x08\x2d\x8b\x50\x2e\x7e\x94\x18\x61\x4f\xc9\xfb\x20\x90\xd8\x89\x51\xe3\x1a\xf8\x18\xff\xfe\xd4\x2e\x3f\x2d\xac\x21\xc2\x4b\x15\x6f\x53\xe7\x9f\x6e\xa9\x80\x18\x5d\xc4\xc1\xf1\xef\x73\xfa\xcd\xef\x67\xcb\xcf\x8a\x7e\xb2\x7e\x87\x7f\xbd\xe1\xd6\xac\x12\xd0\xd6\x44\x95\xa9\x7d\x47\xe8\xce\xbf\x2f\xe9\x57\xd9\xf2\xdf\x32\x0a\x3f\x80\xa4\x03\x4a\x1d\x19\x8c\xcb\xf5\x4f\x2e\x3e\x07\x75\x44\x21\x0f\x2e\x65\x55\x79\xc9\x45\x62\xa3\x42\xc9\x1b\x63\x5e\x6b\x97\xaa\xa0\xbc\x2d\x64\x77\x38\x97\x1e\xdd\x4c\x2e\x4d\x29\xdd\x21\x5c\x19\x05\x7d\xf9\x66\xe5\xa6\xe4\xe6\x23\xa5\x6e\x42\xfa\x2f\x03\xbc\xea\xbb\x1d\x72\x6c\xff\x18\x9e\x25\x77\x0f\xab\x82\xf4\x75\x36\x7f\xc6\xbd\x5e\xd7\x9c\xa8\x81\x5d\xee\xde\x89\xf8\x43\x87\xa1\x81\xcb\x22\xd2\x15\xc0\x1a\xe7\x92\xe8\xd7\xed\x6e\x54\xc9\xfe\xd5\xf4\x1d\xe9\xa4\x15\xf3\xf7\x7e\x10\x49\xec\xca\xaf\x19\xea\x33\xb4\x84\x18\xab\x53\xba\x63\x8f\x4d\xfc\x16\xbc\xca\x31\x77\xfe\xe6\x6f\xf8\xbd\x16\x92\x81\xfe\xf6\x6f\x49\x6c\xb8\xcb\x58\xcf\x62\x43\x10\x76\xb6\xe5\x5b\x16\x72\x50\x9b\xfe\xfe\x26\x6a\xf0\xe0\x2e\xa7\x2a\xe0\xc0\x02\xb6\x83\x26\x69\x9a\xa2\xfc\x20\xff\x37\x00\x00\xff\xff\x92\x9d\xd0\xa7\x87\xbf\x00\x00") +var _confLocaleLocale_frFrIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xdd\x8e\x1c\x47\x76\xe6\x7d\x3d\x45\x8a\x03\xa2\x49\xa0\x59\x84\x24\xef\x0f\x06\x2a\xcd\x36\x9b\x94\xc4\x41\x93\xea\x61\x53\xf4\x62\x05\xa2\x94\x5d\x19\x55\x9d\x64\x56\x66\x4d\x46\x66\x37\x9b\x86\x81\xbd\x1d\x60\x1f\x60\x2f\x07\xbe\xd8\x15\x6d\xc0\x57\xbe\xf3\x9d\xfa\x4d\xfc\x24\x7b\xbe\x73\x4e\xfc\x65\x66\x35\x29\xc1\x5e\xc3\x23\x76\x45\xc6\xef\x89\x13\x27\xce\x7f\xe4\xbb\xdd\xb2\x30\x76\xb5\xf8\xa1\xce\xac\x69\x2f\xcb\x95\xc9\xbe\x2d\xbb\x2c\xef\xbb\xe6\xc1\xc5\xcd\x87\x73\xd3\x6e\x6e\x3e\x64\x36\xaf\x6d\xb6\x6b\x4b\x6b\xb2\xc2\x64\xdd\xcd\x3f\x76\x66\x36\xbb\x68\xb6\x66\x71\xb4\x5a\xf5\xa6\xac\x66\x45\x6e\x2f\xce\x9b\xbc\x2d\x16\x2f\xf3\xf3\xca\xe4\x3d\x2a\x9e\x37\x6d\x31\x33\xef\x76\x55\xd3\x9a\xc5\x13\xf9\xb7\x9d\x5d\x98\x6a\xb7\x38\x2a\x0b\x33\xb3\xe5\xa6\x5e\x96\xf5\xe2\xb8\xa9\x6b\xf3\xae\x6c\x6a\x29\x69\xfa\x6e\xf1\xf8\xe6\xc3\x2a\x2d\xed\x77\x8b\xe3\xf6\xe6\x83\x69\xb3\xbe\xce\x56\xcd\x76\x47\x73\x68\xcd\xa6\xb4\x9d\x69\x17\x4f\x6b\xbb\x6a\xcb\x5d\x87\xda\x57\xe6\xdc\x96\x9d\x59\x9c\xd1\x7f\xb2\xbf\x35\xe7\xb3\x4b\xd3\x5a\xfa\xb0\x78\x25\xff\xce\x76\xf9\xc6\x2c\x4e\xe9\x3f\xb3\xce\x6c\x77\x55\x4e\x75\x9f\x35\xc5\xcd\xcf\x95\x99\x55\x79\xbd\xe9\xf1\xf9\x04\x7f\x98\xd9\xaa\x35\xf4\x79\x59\x9b\x2b\x1d\x7c\x3e\x9f\xcf\x7a\x82\xd4\x72\xd7\x36\xeb\xb2\x32\xcb\xbc\x2e\x96\x5b\xac\xef\x94\x0b\xb2\xbe\x2b\xab\xd2\x52\xa3\xbe\xcd\x4c\x97\xed\xaa\xde\xf2\xfc\x4d\x41\x2b\x5d\xe6\x56\x16\xbb\xea\x08\xaa\xa6\xce\xba\xbc\xee\xb2\x3f\xd3\x40\xdc\x69\x9d\x13\x44\x9f\x37\xdb\xac\x38\x88\xba\x99\x99\x6d\x5e\x56\x8b\x27\x0f\xf0\x0f\x4d\xde\xda\x2b\x82\x2b\x4d\xb9\x03\x8c\xf1\x1b\x80\x58\x76\xd7\x3b\x83\xce\xd7\x65\xbb\x35\xef\x67\xab\x7c\xd7\xad\x2e\xf2\xc5\xb1\xfc\x3b\xa3\x2a\xbb\x86\xe0\xd2\xb4\xd7\x00\xee\xee\xe6\x5f\xba\x59\xd3\x6e\xf2\xba\x7c\x9f\x03\x6c\x8b\xef\xf9\x87\xe5\x1f\xb3\x6d\xd9\xb6\x4d\xbb\x78\x56\xb6\x4d\xd9\xce\x68\xf9\x4b\x34\xa7\xb9\xf5\x97\xd8\x5b\xd7\x01\x3e\x6c\xcb\x4d\x0b\x10\xf2\xb7\xaa\x32\xd9\x33\x2e\x40\x2f\xf8\xbc\x6e\xda\xb7\xfa\x2d\x33\xdb\xf3\x36\xaf\x57\x17\x66\x6b\x6a\x69\x4c\x33\x08\x0d\xd3\x19\xe4\x35\xed\x03\x57\xf8\xf6\xe6\x03\xe1\x4d\x56\x19\x9b\x54\xb1\xb3\xbc\xd8\x12\x4c\x77\x79\x6d\xaa\xc5\x11\xfe\x26\x64\xd0\xa1\xf3\xd5\xaa\xe9\xeb\x6e\x69\x4d\xd7\x95\xf5\xc6\xd2\x7e\xb7\xf9\xf6\xe6\xe7\xae\xa5\x5e\x8a\x3e\x3b\x16\x04\x9a\xfa\x3c\xbb\x6e\x7a\xbf\xbf\x8b\x57\x0d\x95\x65\xf2\x4b\xbe\xf8\x36\xaf\x1a\x3a\x14\x51\x3b\xac\xc8\x2e\xd7\xc6\x14\x8b\x6f\xaa\xfe\x1d\xed\x62\xbe\xea\xfa\xbc\x2a\x69\xb3\xed\x6c\xd7\x57\x15\x41\x91\x36\xdb\x76\x34\x1e\xfd\xca\x5e\xe8\xaf\x59\x69\x2d\xfd\x01\x14\x3a\xaf\x6e\x7e\xde\xa2\xaf\x15\x01\x0a\xcb\xaa\xeb\xbe\xa2\x43\x33\xfb\xd1\x9a\xbc\x5d\x5d\xbc\x9e\xc9\xbf\x8b\x17\x86\xe0\xd8\xe2\x7f\x40\xc9\x89\xcd\x05\x42\x2d\x7e\x88\xd0\x88\x07\x09\x63\xcc\x56\x4d\x01\x84\xa1\x73\x38\xfb\xb1\xac\x6d\x97\x57\xd5\xeb\x99\xfe\x81\x03\x85\x7f\x05\x98\x5d\xd9\x11\x24\x50\xd4\xf6\x2b\x06\x7d\xb6\x23\x48\x64\x55\x4e\x80\x31\xdb\xf2\xe6\x67\x02\x91\x79\x47\x47\xb6\xe7\xfa\x45\xb3\x7a\x4b\x47\x04\x07\x9d\xe6\x70\x56\x66\x97\x4d\x6f\x5d\x05\xf3\x3e\xfb\xb6\xd9\xd8\x6c\xd3\xde\xfc\x03\x51\x9b\x9b\xbf\x66\x8f\xb9\xfa\x61\xb6\xa5\xf5\x94\xc0\xe9\xaa\xa4\xfe\xa8\xf3\xaf\x72\x3a\x20\xed\xc6\x74\x8b\x3b\xcb\x73\x3a\x9a\x6f\xef\x64\x17\xad\x59\x2f\xee\xdc\xb5\x77\xbe\xa6\x2d\x59\xdd\x7c\x28\xfa\xd6\x7c\xf5\x30\xff\x3a\xcb\xbb\x8e\x90\xaa\xbc\x64\xdc\xca\xf2\x4b\x1c\x2c\xea\x6a\xdb\x14\xe5\xba\x24\xec\xf9\x73\xdf\x94\x38\x69\x19\x8d\x69\x1b\x22\x71\x96\x16\xb0\xa2\xad\xc4\x11\xda\x98\xec\xb3\x19\xf6\x86\x48\xc6\xb2\x38\x17\x92\xc8\xb3\xe4\x42\xd3\x76\xd9\xb3\xeb\xb3\x3f\x9d\x1c\x66\xa7\x8d\xed\x36\xad\xe1\xbf\xe9\x3f\x54\xff\xcb\xac\xe9\xb3\x97\xe5\xe3\x47\xf3\x19\xb5\x14\x50\x25\xc8\xc6\x4b\x39\xcf\x85\x76\x16\x74\xfa\x89\x8e\x58\xae\x8b\x13\xfb\x92\xfe\x83\x0f\x8f\xb4\xc2\x63\x57\xe1\x82\x46\x5a\x7c\x47\x3b\x69\xc6\x5b\x99\x10\x81\xc7\x26\x3b\x65\x22\x40\x5d\x06\x0a\xc2\xa3\x8e\x3a\xa5\x2a\xba\x2b\xaf\x4c\x5f\xd2\xa1\x7b\xaf\x04\x8b\xcf\x17\x41\x8b\xe9\xd6\xd3\xe7\xcf\xbf\x7f\xfc\x88\x80\x68\x56\x28\x7d\x63\x98\x9a\xaf\x68\x51\x44\xb7\x7e\xc6\xa2\xfa\x6e\xfd\x5f\x97\x1b\x53\x9b\x36\xaf\x96\xb4\x69\x8c\x0e\x0c\xa2\xf9\xcc\xda\x8a\x28\x62\xc1\x44\xd5\x64\x67\x67\x27\x34\xdd\xee\x62\x71\x4c\xc7\xbe\x24\x5a\xfe\xe7\x0a\x40\xd6\x59\x9c\x50\xb7\x5c\x8e\x33\xb9\x2e\x57\x17\xd8\xaa\x69\x88\x8d\xc1\x6d\xda\x76\x49\x04\xbc\xbb\xc6\x96\xf1\x18\x51\x77\x9f\xd4\x47\x56\xd3\xee\x9b\xbe\xcb\xe8\x46\x23\x94\xbb\xa4\x4b\x49\xba\x2d\xeb\x4b\x3a\xb7\x05\x6d\xa7\x03\x2a\x75\x5d\x7b\xb8\x8e\xfa\x4d\x3a\xa3\x8b\x8b\x70\xb1\x14\x8a\x15\x43\xed\xce\xfc\x0e\x46\xbe\xf3\xe0\xce\x7c\x56\x37\x4b\x21\x5f\xb8\x40\x0a\xda\x58\xba\x35\x97\x72\x9f\x09\x09\x23\xf2\x42\x87\x06\x7d\x82\x3e\xbe\x07\xa1\xcf\x0a\x22\x24\xd4\x1b\x61\x39\x75\x7e\x60\x6a\xad\x2f\x38\xcf\x97\xf4\x6a\x70\x45\x66\x79\xa0\x8b\xb4\xb5\x31\xd0\x1c\xf5\x54\x54\x3a\xe1\xed\xf7\x57\x0a\x36\x64\xb2\x8b\x49\x98\xcd\x1c\x2e\x8c\xf1\x9f\xa8\x37\xc1\xa8\xcd\x41\x10\x0d\x1f\xfd\x19\xb8\x8e\x04\x53\x0f\x8e\x76\xbb\xaa\x5c\x29\xe9\xd6\xaf\x0e\x47\xe4\x6e\x07\x08\xd6\x4c\x69\x78\xb1\x95\xdf\x8e\x4b\x26\xd0\x4d\x74\x31\x64\x25\x61\xe4\x67\x4c\x13\x05\x2d\x9e\xe0\x96\x5f\x49\xc3\x17\xf9\xaa\xac\x79\x75\x8e\x50\xfa\x7a\x6e\xc0\x97\x00\x3c\xf6\x4e\x6b\x58\x66\x89\x68\x8f\x70\x5b\x5b\xf0\x49\x0d\x83\x9b\xb6\x65\x43\x1c\x0f\xed\x09\x46\x24\x22\xdc\x13\x97\x82\xa3\xfa\xa4\xee\x5a\xd9\x84\xf8\xd0\xba\xcf\x1e\xf7\xe3\x4b\x9e\x50\x09\x6c\xd7\x25\x5d\xb7\x19\xdd\x5d\x37\x3f\x5b\x50\x46\x42\xb5\x30\xdf\x17\x37\x1f\xd6\xb8\x09\x89\xca\xe1\x2e\xa5\x0d\xf8\xa0\x14\xb5\x65\xb0\x12\xfd\x69\x88\x45\xa8\x17\x8f\xf9\x1f\xa3\x3f\xdd\x70\xc7\x86\x7a\xcb\xd7\x6b\xe2\x3d\x0c\xaf\xae\x68\xfa\xf3\x0a\xb4\xbc\x38\xf8\xe1\xc5\x09\x1d\xd4\xef\x70\x76\x2f\x96\xbb\xa6\xed\x16\xa7\xf4\x1f\x14\xf9\x12\xdf\xcd\x01\xdd\x58\x0c\xfe\x7e\x4b\xb3\x69\x18\x61\x50\x99\xe8\x64\x86\x4f\xb2\x28\x62\x6f\xe8\x6a\xd4\xcd\x01\x67\x89\x35\x52\x7f\x87\x68\x5a\xe5\x74\x17\xd1\xac\x81\x3b\x42\x3a\x12\xc4\xce\xb3\x75\x53\xf3\x3d\x53\xcb\xe5\x39\x9f\x5d\x74\xdd\x2e\x9a\xd8\x77\x2f\x5f\x9e\x86\x32\x37\xb5\xe7\xa3\x19\x01\xb5\xf2\x80\x5a\x19\x98\x4a\xc0\x2b\x9f\x33\x96\xf5\x6d\xb5\xc0\xd2\x27\x51\x90\x3e\x7e\x2a\xe8\x30\x9d\x87\xf8\xcf\x19\xb6\x85\x16\x28\x14\x80\xa8\xe6\x81\x61\xae\x8d\x0e\x48\xc3\xcc\xe9\xe4\x09\x59\xe7\xab\xbe\xea\x68\xe4\xb5\x15\x5e\x6f\xea\x16\xe9\xb3\x33\xe5\xcf\x69\xb6\xcf\x8c\xb5\x74\x69\xb5\x25\x71\x30\x5b\x82\x42\xb8\x2b\xb2\xb3\x67\x04\x1a\x2e\x5c\xb7\xcd\x16\xd7\xfd\xa5\xa9\xe5\x32\x0c\xc5\x6e\x61\x47\x05\xf5\x2d\xa4\x8c\xc8\xc9\xbb\x1d\xdd\xa7\x25\xb0\xf1\x30\x7b\xf1\xcd\x71\xf6\x9f\xbe\xfc\xe2\x8b\x79\x76\x06\xc4\xec\x6b\x90\x01\xa9\x4c\x20\x6c\x5b\xa0\xa0\x2d\xe9\x5c\x99\x43\xb9\x4e\x89\x2b\x24\x56\x6f\x9b\x77\xd9\x1d\x3a\xd5\x77\xb2\xaf\x78\x25\xff\xcd\xbc\xcb\x51\x69\x4e\xa4\xe4\xeb\xf9\x0c\x45\x74\x00\xe4\x90\x30\x64\x64\xe8\x27\x61\x68\x57\x67\xc8\xe7\x9e\xe6\x7e\xa2\x71\x6d\x27\x01\x2c\x57\xc2\xf9\x92\x40\xe2\xb1\x48\x99\x61\xd9\xfa\xe2\xe0\x49\x42\x2e\x79\x9c\x65\xdd\x10\xd4\xaf\xe3\x46\xcf\x51\xe2\xf0\x85\xf8\x80\xec\x19\xd5\x03\x1f\x70\xf3\x7f\xc1\xc9\x03\x93\xc1\x02\xf2\x56\x4c\xef\x93\xc3\x76\xd3\x71\x7b\x12\xa5\xf0\x41\x9b\xd8\x59\xb3\x5e\x57\x74\x3a\xe5\x8a\xf4\x03\xd3\x9e\xe2\xb6\xbc\x68\x5a\x9b\x05\xc1\x27\xae\x4b\xa8\xbe\x23\x19\xe8\x71\x7c\x52\x4c\x76\xfc\xf8\x39\x31\x4e\x37\xff\xb8\x35\x10\x27\x88\x27\x2a\x84\x43\x9b\x67\x2f\x81\xe9\x42\xc7\xb0\x6f\xb4\x69\x2b\xe3\x89\x17\x88\x59\x5b\x9e\xf7\x7c\x79\x51\xc3\xaa\x59\xe5\x84\xa5\xee\x1e\x22\x06\xfe\x32\x27\xd6\x6b\x38\x9a\x43\xc1\x6f\xf5\xfb\xa8\xc1\xc4\x24\x5d\x5d\x39\x1a\x34\x03\x9d\x09\xe1\x9f\x95\x13\x6e\x31\x8b\xc3\xac\x73\x64\x57\xea\xa3\x26\xcd\x94\x8e\x7f\x45\xc7\xf6\x22\x87\x20\xca\xfc\x36\xd7\x89\x48\xa7\xc5\x9d\x8a\x72\x22\x22\x6b\x82\x76\x58\x46\x72\x9d\x0e\x96\x02\x64\xed\x89\x10\x11\x79\x2a\x0e\xca\x48\x7c\x9c\x6a\x3c\x0d\xfb\x7d\x5d\xd0\x89\x30\x7d\xa5\x6b\x49\xee\x4e\xac\x9a\x6e\x0d\x5a\x96\xde\xd3\x40\x10\xb9\x65\x89\x7c\xd3\x39\xc5\xc0\x4e\x72\x13\xdc\x78\xcf\xbb\xac\x42\x5c\x5a\xc3\xcd\x8a\x4e\x5a\x2d\x7c\x09\x33\x2d\x82\xba\xda\x44\x19\xf5\x03\x16\xe8\x07\x0c\x03\x1f\xa6\x08\x90\x73\x61\x81\x49\x96\x54\xc1\x7c\x79\x59\x92\xe0\xab\xfd\xb7\x4c\x04\x3c\x6e\x4a\xc7\x44\x14\x4b\xc8\x20\xbc\x10\xf0\xd1\x76\xb2\x0f\x9d\xe9\x19\x81\x45\x51\x52\x77\xdf\x28\xb6\x43\x1e\x36\x01\x3a\x7c\x0d\x56\xae\xcb\x79\x76\x42\x7f\x5e\x96\xb6\x14\x18\xe6\x75\x53\x5f\x93\x90\xa4\xcc\x51\xcb\x18\xcd\x4d\x98\xe2\xbb\x66\xcc\xb3\xba\xe9\x3e\x4c\xd7\x3e\x57\xd9\x51\x65\x39\x61\xf8\x85\xe1\x3a\xc8\x1d\xb7\x75\x6e\x88\xb2\x31\x2b\x39\xcd\x55\xd1\xbc\x92\x2b\x3c\xbf\x06\x9d\xad\x0e\x9e\x3e\xce\x16\xd9\xe7\x84\x04\x19\x21\x4a\x9b\xb3\x32\x05\x54\x88\x66\x27\xc2\x49\xc7\x67\x8f\x79\x38\xbd\xeb\x87\x5c\x9a\xcc\x6e\x92\xbc\x88\xe4\x9a\x1d\x25\x2d\xb4\x41\xa4\x40\x88\x39\x8f\x01\xa7\x17\x53\xd4\x99\xd2\xcd\xf0\xd5\xab\x10\x84\x28\x45\x55\xa5\x9b\x58\x1b\x21\x28\x94\x4e\xde\x89\x90\xcb\x0d\xf1\x24\x4e\x8e\x54\x16\x65\x46\x78\xde\x2d\x37\x65\xb7\x5c\x83\xca\x17\x8b\x97\x04\x8f\x1c\x68\x2e\x9b\xb5\x15\x4c\xbe\x43\x35\xee\xe0\xb2\xbe\x68\x40\xa1\xb2\xdf\x67\x77\x2f\x55\x70\xf8\x12\x24\x7b\x49\x14\xa2\xac\x70\x14\x54\x3c\x57\x0d\x4f\xb6\xa3\x6b\xb9\x44\x0b\x60\x06\x71\x4a\x05\xef\x23\xd1\x37\xa6\x1f\xc6\xb1\xff\xf3\xcc\x4b\x3f\x11\x79\x11\xfa\xef\xba\x3a\x2f\x6b\x3e\xd9\x0d\x30\xbc\x64\xfd\x04\x31\x64\x22\x30\xba\x9b\xf0\x2e\x1d\x5a\x27\x29\x90\x9c\xa0\xc8\x34\x94\xfe\x46\xc2\x42\x59\xaf\x9a\xb6\x25\x9c\xb7\xb2\x32\xd7\x45\x60\x58\x45\x56\xe2\xb9\x60\x17\x08\xfb\xe8\xbc\x74\x0d\xe6\xd3\x0a\x3f\xa8\x6d\x14\x36\x9e\xb5\x04\x70\x08\xd5\x56\x17\x03\xee\x92\xc0\x4c\x9d\x10\x72\x83\x43\x03\x4c\xaa\x14\x73\x57\x5d\x4f\x17\x3a\xf5\x65\xb3\x07\x5f\xd3\x7f\x67\x96\x4e\x81\xdc\xa9\x1b\xb7\x57\x27\x79\xe0\x79\x8d\x0a\x42\x52\xa3\x17\x2a\x99\xe5\x7e\xcf\xd2\x85\x25\x67\x6d\x88\xcf\xd3\x42\x86\x5b\x9f\x07\x91\xe0\x94\xed\x57\x74\x77\xd8\xc5\xa3\xd2\xd4\x44\x29\xe8\xb8\x7f\x46\x37\x76\x8f\xbb\x62\x0b\x8a\x70\x41\x6d\x0d\x49\x1a\x20\x04\xac\x74\xc8\xaf\x69\x93\x69\x4e\x44\x3c\x18\x03\x0f\xb3\x7c\x4b\x90\x7a\xff\x40\x54\x12\x1d\xa3\x09\x55\x71\x27\x1d\xc5\xc4\xad\xfd\x08\xe5\xe6\xeb\x59\x2f\x72\x48\x53\x15\x60\x2f\x87\xe7\x0a\xf7\xce\x40\x2b\xe7\xea\x26\xe7\xc6\x5e\x95\xb4\x23\x4b\xaf\x22\x5d\x32\x7b\xf8\xae\x5b\x90\x78\xbe\x82\x76\x87\x49\xbc\x94\x31\xa7\x1f\xa9\x50\x1f\x41\x85\xba\xbd\x66\xdc\xb0\x0b\xe2\xfb\x52\x31\xc0\xd2\xf9\xad\xe8\x24\x34\x2d\x9f\x22\xad\x96\x56\xc9\xa2\x2a\xc4\x61\x52\x67\x24\x2c\x49\x5f\xa9\x3a\x8d\xbe\x88\xde\x4f\x3e\x8a\xf2\xcf\xce\x98\x80\xb3\xb2\xf7\x15\x68\x2c\x21\x87\xea\xab\xe6\xb4\xa9\xac\x11\x93\x51\x1f\x43\xfe\xbc\x6c\x58\x4a\x65\xb1\x89\xc0\xa8\xca\xdf\xd7\xb3\xa9\x89\xd1\x77\x22\x8d\x17\xaf\x23\x2d\xeb\x52\xf5\x76\x91\xaa\xd7\xe9\x1c\x8f\x53\x95\x2f\xb1\xb0\x3b\xf0\x89\x5b\xbb\xc1\xbd\xfc\x86\x0e\xa7\x27\xf1\x84\x7f\x7f\xc8\x54\xcf\xea\xb6\xfa\xb3\x99\x6d\x56\x65\x5e\x2d\xa7\x3a\x38\x6d\x68\x9f\xe8\xff\x21\x89\x1c\x04\x2a\xff\x87\xec\xc8\xa2\x15\xf5\x51\x41\x43\x94\xb2\x06\xa2\x04\xa6\x8a\xcc\x17\x34\x44\x46\x0e\xf9\xf2\x49\x6f\x1a\xe2\x4e\x6a\x88\x6a\x50\xf8\x7a\x29\x87\xfe\x8d\x68\x10\xd0\x81\x8a\xe5\x3e\x48\x8f\x01\xd8\x49\xa2\x58\x43\x96\x06\xd3\x06\x15\x8e\x06\x1e\xb0\xbb\xe0\x87\x9e\x09\x85\xb6\xd9\x93\xc1\x8c\xf2\xf1\x7c\x0c\x2e\xff\xad\xd9\x9e\xa3\x6b\x43\x37\x35\xf8\xb4\x4b\xd6\x62\x40\xde\x68\xca\x19\x71\x3b\x1b\xa2\x2e\xd3\x7c\x79\x23\x84\x97\x2b\x99\x8f\x54\xfa\xe5\xaf\x7f\x70\x1a\x7d\xa2\x57\x57\x44\x0f\xf4\xaa\x56\x98\xeb\xd6\x43\x76\xed\x58\x74\x99\xbb\x4b\x4a\x78\x31\x66\xdc\x2d\x2d\xc4\x81\xff\x87\x3a\xab\x15\x49\xdc\xa5\x14\x37\x00\xdd\x96\xf5\x12\xcd\x68\xae\xe9\x5f\x2a\xf8\xea\xfc\xeb\xbb\xf6\xab\x87\xe7\x5f\x47\xfb\x40\x60\x68\x45\x59\x28\x62\xeb\x79\x73\xf3\xcf\x1d\x53\x3a\x9a\xd1\xca\xec\x44\x24\x00\x96\x13\x8a\x10\xec\x88\xf5\xc3\xc7\xbb\x85\x90\x1d\x55\x8a\x62\x1d\xb4\x25\x9d\xef\x66\xc4\x79\x30\x5f\x27\x27\xc7\xa1\xbb\x93\x03\xa4\x85\x47\x75\x5e\x65\x55\x6e\xcb\x6e\x8c\x6a\x38\x69\x9d\xbb\x3e\xad\x28\x9b\xcb\x4b\x59\xb1\x70\xce\x6d\xb3\xcb\xd6\x34\x75\x22\x86\x35\x18\xcc\xb0\x52\x40\x98\x24\xc8\x6b\x30\x6e\x58\xcf\x97\x19\x61\x5d\xcf\x4c\xe8\x45\x6e\x97\x7d\xad\xf0\x33\x85\xe0\xd9\xa3\xa6\x7e\x83\xb5\xdd\xb5\x87\x3a\xc5\x91\x30\x78\xcf\x43\xf4\x3e\x78\x28\xbe\x64\x04\xea\xda\x17\x70\x2c\x73\xba\x60\xe5\xb2\x58\xaa\x22\xfe\x68\xc5\x67\x4e\x7b\x1a\x6e\x1f\x51\x59\xc2\xc5\x8b\xbc\xec\xb8\x05\x6f\x75\xa5\x0a\x30\xe2\xfa\x88\xa2\xef\x76\x3d\xc8\x3c\x34\xba\x15\xb6\x8d\xf8\x2d\xea\xaf\x7c\x50\xb0\xdc\x63\xe7\x02\x49\x5d\xcb\x71\x05\x46\xec\x3d\x2b\x89\x78\xc3\x5a\x46\x0b\x21\x36\x53\xf8\xa3\x32\x39\xf3\x1d\x4c\x0e\x60\xed\x38\x4e\x18\x01\x91\xf2\xf5\x7a\x95\x4a\xe0\x42\x08\xcf\xdc\xda\xb0\xa1\xf3\x19\xcf\x02\x93\xe9\xf6\xcc\xe5\x5e\x7b\xdf\xcd\x06\xea\x58\x9d\x0d\x6d\x17\x11\x85\xae\xcc\x2b\xa7\xe1\x22\xba\xb0\x4d\xed\x3f\x36\x3e\x76\x2f\xa2\x06\x4e\xba\x8c\x2e\x24\x77\x2f\xb3\x05\x20\x60\x14\x7e\x8e\xa0\xef\x19\x0d\xda\x06\xa2\xe6\x65\x0b\x75\x4c\x3a\x9c\x57\x93\x8c\x20\x9b\x4e\x43\x30\x27\x99\xb7\xef\xa2\x6b\x9a\xa5\xbd\x80\x82\x67\xa4\x87\x84\x76\xc1\xab\x54\xff\x73\xa2\x50\x05\xad\xdc\xf6\x5b\x5c\xd8\x80\xd5\xeb\x99\x9e\x01\xe3\x0f\x96\x47\xf9\x3c\x39\x61\x6a\x3f\xf4\xd5\x85\xa9\xdd\x4b\x09\xd2\x7d\xfe\x08\xb4\x27\x96\xe9\xa9\xb6\xe3\x5f\xce\x7a\xe1\xfb\x45\xf1\x92\x10\x88\xc3\xcc\x33\x37\xa1\x9d\xea\x29\x02\xdb\x43\xa8\xc5\xd6\x55\x5a\x78\x53\xe4\xb4\xf2\x6b\x63\x17\xdf\xf7\xe5\xac\x86\x95\xae\x9e\xb1\xdd\xe3\x1a\x2a\x78\x5e\x07\xd5\x83\xb4\xfa\x7a\xf6\x03\xcd\xf0\xf9\xb4\x94\xf0\x82\xae\xe8\xf0\xa9\x77\xd7\xf8\xec\x09\xc3\xc6\xa9\x8a\x94\xe1\x39\x9d\x14\x26\x5e\x98\xd4\x0a\x39\xc2\xbc\xb3\xb3\xef\x5e\xb2\x50\x13\x6c\x14\x2b\xc2\x3d\xd6\x34\x7e\xd7\x75\x3b\xfb\x83\xaa\xe4\x58\x9b\x46\xa3\x5c\x57\x4d\x5e\xfc\xe0\xf5\x74\xd6\x9b\x32\x58\xb5\x4a\xe2\xe6\x4b\x93\x6f\xa3\x05\x81\xda\x95\x3b\x33\x3b\x22\xc6\x22\x2a\x86\x08\xd6\x3a\xd3\x22\x8b\x4e\x4f\x3e\x26\xc6\x78\x41\xd6\xb0\x29\xf4\xa7\xec\xf9\x48\xef\x9d\xfd\x34\xcb\xab\x1d\x09\xe2\x60\xed\x7c\x3d\x42\x58\x16\x62\xa5\x5e\x31\xb0\x01\x70\x83\x43\x68\x4f\x4d\x8b\xe3\xc2\xda\x0b\x42\x6f\x3a\x83\x26\xbb\xf7\x60\x79\x3f\x73\x8c\x6f\xd2\x79\x41\xd4\xe7\x37\x0e\x70\x38\xdd\x7d\xd3\x8b\xd0\x4e\x8c\x6f\x87\xc1\x6c\xf9\xde\xc4\x43\xb8\xfe\x45\x0d\xdd\xe5\x38\x19\x7c\xdd\xd9\xf9\x4f\x33\xe6\xe7\xe3\x06\x77\xed\xd4\xc1\xa4\x6e\xb7\xf9\xbb\xdb\x6b\xe6\xef\xb4\xa6\x90\x59\x57\x6d\x40\x5a\x3d\x19\xfa\x69\x06\xc5\xac\xab\x05\xac\x88\x3e\x91\x64\x55\xf5\x85\x1f\x2b\x25\x1d\xb4\x0a\xdc\x06\x0f\x48\xd8\xbb\xf9\x67\x12\xa1\x0e\xee\xda\x03\x5a\x4a\x5f\xbf\x25\x2e\xa4\xd6\x36\x4f\x48\x30\x63\xf1\x03\x9a\x03\x3a\x67\xbf\x77\x86\xf4\xa5\x97\xda\x40\xa1\x9c\x76\x85\x35\x22\x54\x6a\x77\x8d\x08\x9b\xf3\x40\xd2\x22\x59\x6c\x40\xd2\xa0\x09\xcb\x53\x32\x5b\x0c\xaa\x24\x1d\x63\xb3\xb9\x6f\xef\x25\xb0\x3c\x37\xa6\x5e\x76\xf9\x5b\x53\x8f\x1d\x06\x70\x72\xc1\x0f\xc3\x61\x43\x4c\xc3\xcb\xc9\x36\xc6\x1d\x71\xd7\xc0\xa9\xee\xe7\xf0\x0c\x98\x6e\x73\x90\x18\x5a\x92\x81\x3a\x3a\x89\x7b\x1a\xe9\xa9\x4c\xeb\xcb\x7e\x73\x5d\x5a\x56\xe1\x29\x8c\xee\xf8\x60\x4e\x74\x7b\x02\x03\x37\xd0\xa0\xbb\x81\x62\xa3\x9c\x1f\x03\xfb\x5d\x8a\x7a\x2b\xc5\x34\xb0\x93\x6d\x51\x76\x76\x1e\xc0\xe8\x37\x2b\xec\xee\x18\x9c\x4d\x7a\xd9\x06\xf9\x1d\x2a\x3b\xea\xb3\x65\xdf\x8e\x48\x86\xe7\xb9\x4d\x5c\x26\xa2\x9e\xe2\x29\xdb\x1c\x12\x69\xa0\xb2\xa2\x44\xdf\xdf\x2f\x61\x28\xae\x81\x8f\x77\x4c\x5d\x12\xab\x48\x10\x26\xe6\x8b\x15\x18\x32\xd2\x47\xba\xf7\x77\xd9\xfe\xce\x13\x10\x4c\x75\xea\x15\x10\xe6\x1d\x51\x51\x70\x48\x89\x33\x0c\x31\x47\x28\x37\x82\xc9\x55\x6e\x3b\xc8\xa1\xb2\xb0\x81\xb6\x02\xb2\xdc\x3b\x3a\xc9\x60\x9e\xc5\xd8\x44\x32\x75\x8d\xb9\x40\x42\x69\x4d\xba\xe1\xc9\x72\xe7\xd9\xd3\x4a\xa8\xd7\xb5\x5a\xd3\x88\xfd\x62\x15\xfc\xa0\xde\xcc\x73\x41\xb0\x70\xbd\x35\xd7\x11\x23\x54\x6e\x49\x58\xb5\xe5\xb9\x10\x3c\xa1\x2e\x9e\x73\xd0\xeb\x8a\x95\x25\x50\x10\x40\x2a\x23\xc6\x82\x6e\x5b\xdf\x13\x7b\x0e\x30\x13\xdc\x47\x70\x74\xfa\xd9\x92\x45\x2f\x33\xe8\xcf\x69\xf1\x09\xac\x35\x38\x64\x12\xe0\x3a\xb6\x30\x61\x3f\x09\xe3\xb0\xd2\x3f\xf7\x07\xac\x88\xaa\xc4\x85\x61\x9e\xc1\x30\xf5\x80\x3a\x24\xae\xdc\xef\x1b\xeb\x35\x6a\x70\xa1\x04\x3f\xa8\x12\xe9\x26\x74\x2a\x9c\x9b\xbf\xac\x2e\xcc\x4a\xee\xc3\x0b\x48\xe1\xde\xd2\xc1\xab\x99\x59\xda\x84\x0a\x5b\x22\xee\x3e\xaf\x22\x5e\x89\xff\x21\xfe\xcc\x40\x4f\x0f\x61\xc0\xca\xf5\xe1\x80\x0a\xe5\x7c\x40\x67\x92\x35\x30\x8f\xc2\x80\xcb\xa7\xe1\xc0\xab\x88\xf6\xbf\xdf\x51\x7d\xba\x9a\x70\xaa\x50\x40\xd7\x6d\x6d\x59\x29\x40\x73\x95\xf1\x21\x82\xc0\xef\x67\x30\xbc\x1e\x6b\x3f\x3c\xc4\x3d\xba\xbc\xac\x1a\xa7\x2e\x68\x06\x2a\xed\xa1\x20\xa6\x53\x87\x02\x15\x99\x0d\x9c\x3c\x3a\x19\x3f\x4c\xc6\xb1\x79\xda\x89\x10\xc0\x01\x34\x84\xe5\x4f\xe8\xdf\xff\x0f\x98\x44\x9b\xc2\x76\x33\x95\x3c\x86\x1b\x98\x3b\x82\xc9\x86\x26\x40\x81\x77\xb9\x1d\xd8\x4a\x22\x21\x90\x0d\x99\x34\x35\x98\xc6\x5b\x42\xd5\x32\xcc\xe4\x3d\xda\xab\x4c\x4d\x33\x10\x27\x9c\xa5\x38\x6f\x45\x47\xfc\x24\xcf\xd4\xa1\x8b\xa4\x2d\x9c\x96\xf4\x8c\xcf\x7e\xc4\x84\x5f\xcf\xe8\xa2\xac\x37\x66\xa9\x26\xa5\x63\xfe\xc5\x10\x10\xbb\xd0\x65\x99\x67\xce\x7e\x04\x3b\xa1\xab\xbf\xea\x6d\xd7\x6c\xd3\x66\x7e\xa7\xa4\x29\x0b\xaf\xa2\xf0\x0f\x6e\x58\x6f\x08\x29\x96\x4d\x4d\xf7\x09\xed\x26\x74\x41\x95\x09\xfe\x51\xa5\x19\x69\xa1\x58\x08\x28\x3b\xb5\x02\xb2\xb3\x96\x28\x92\xc1\x3c\xcd\xd6\x4d\x55\x35\x57\xa6\xb5\x8b\xa3\x73\x66\x3d\x2d\x6d\x48\x0e\xe2\x09\xfc\xc4\x4f\xa9\x01\xcd\x26\xd7\x10\x1d\xcb\x0c\xaa\x90\xed\x9c\x2f\x19\x88\x0b\xed\xa5\x29\xdc\x75\x05\xc6\x83\x09\x1b\x4d\x0e\x5f\x70\xe1\x86\xda\x3b\x78\x32\xb5\xb5\xc8\x9b\x3c\x36\x33\xd9\xe5\x5a\xda\xb9\x5b\x4c\x0d\x3b\xb0\x82\x34\x5b\x9b\xde\x58\x73\x76\x17\x13\x2f\xb5\xd7\x33\xe7\xc9\x26\x0e\x8a\x23\x07\x42\xd5\x51\x0a\xe9\xb2\x24\xc4\x61\xfd\x6c\xf9\x67\x7d\x19\xa0\x65\x0d\xbc\x37\xce\xf0\xbb\x7f\x37\x8b\x0c\xea\x04\x94\xe8\xc7\x8c\xf5\x8a\xa9\x4e\xb1\x20\x51\x1d\xbe\x98\x1e\xc5\x2b\xaf\xde\xe8\xcb\x62\xf1\xf4\xf1\x40\x08\x99\x31\xe4\x57\xcb\x74\xd2\xd9\x29\x97\xba\xa5\x38\x73\xcd\x58\x34\x63\xb0\xba\xcd\x03\x9f\x45\xf0\xcd\x03\x0f\x11\x03\x2d\x9c\x1d\x18\x48\x2b\x55\xa3\xe4\x4e\x21\x7d\x98\xe5\x44\x5b\xc4\x65\x8c\x5b\x75\xb0\xa7\x66\xcd\x0e\xbe\x2c\x7c\xe2\xfe\xd6\x9c\x67\x86\x9d\x02\xd8\x48\x01\x34\x06\x61\x66\x75\xdd\x1a\xce\x7e\xde\x1a\x83\x05\x13\x18\xc6\x9e\xa9\x30\xbb\xb2\x71\xf2\x04\xf6\x57\x27\x9f\xf4\xbb\x02\x32\xa9\xf7\x40\xd4\xfb\x07\xd3\x16\x77\x36\x07\xef\xb4\xa2\x17\x2e\x15\x66\xdb\x92\x7d\x48\x58\x71\xc3\xae\x5c\x56\x84\xce\xb9\x3b\x60\x91\xcb\x69\x3d\x60\x79\x64\x9c\x9b\x0f\xc3\xaa\x4e\x0d\x25\x44\x28\x9e\x8d\xf3\x8f\x20\x70\xd3\x45\xb7\x25\x14\x60\xaf\xc0\xa2\xa9\xc5\xec\x5b\x11\xf1\x86\xf9\x39\x6b\x09\x7f\x40\x33\x21\xc0\xfc\x35\x11\xc7\x59\xcf\x47\x48\xdb\xb3\x04\xc9\x7f\xb4\x23\x3f\x48\x67\x02\x4d\x88\x83\x37\xa3\x1f\x1c\x09\x61\x48\x8c\xcb\x93\x6d\x82\x6f\x07\x53\xf5\x9d\xe3\x67\xd5\xc0\x0b\x79\x90\x6d\x9b\xf0\x0d\xc4\xd6\x7a\x93\xf7\xea\xa2\x69\xac\x2a\xab\x65\xf4\xb3\x9b\x0f\x95\x11\x7f\x15\xd1\x22\x89\x8a\x4a\x89\x94\xdb\x25\xad\xfc\x8c\xc6\x13\xa9\xea\x8d\x5a\x66\x5d\x2d\x48\xba\xc4\x92\xe9\xf4\xf8\xf8\x2f\xcb\x2d\x3b\x23\x1b\xef\x1b\x97\x98\xc3\x23\x7b\x0e\xae\x3c\xae\xcc\x9e\x65\xe9\x4a\x83\xb5\xec\x88\xb5\x51\xf9\x04\x8c\xe0\x11\x40\xa2\x06\xa8\xf8\x61\x16\x69\x12\x03\x2b\x34\x4f\x17\xe2\xb1\xed\x55\x4c\x90\x9d\x66\x79\x3f\xee\x39\x8c\x8a\xc8\x90\x7a\x68\x0e\x75\x05\x4d\x55\xec\x51\x24\x8b\xb9\x8a\x1d\x88\x7d\x05\x67\x26\x48\xba\x68\x59\x1f\xb1\x4c\x2a\xbe\x30\x5d\xbe\x13\xd5\x84\xd7\x1a\x4f\xaa\xa4\x82\x48\x10\xbb\x5a\x3b\x5b\x59\x24\x04\x0c\x56\xe4\x21\x93\x34\x73\x27\x2a\x05\x87\xb0\x04\xea\xe1\xc7\x92\x11\xa8\x2d\x9b\xb3\x7b\x6f\x1a\x37\xad\x77\xc5\x9c\x9a\x31\xc1\x94\x45\x29\xeb\x24\x28\xeb\x94\x34\xea\x43\xad\x5f\x23\x37\xea\xdc\x55\x54\x85\x96\x88\x62\xfb\xa9\xaa\x72\xa0\x79\x65\x3e\x91\xa0\xc2\xf7\xc5\xb1\x1f\x81\x64\x42\x3a\xa6\x5b\x20\x6f\xaf\x89\x46\xb9\x1e\x5d\x91\xea\xe0\x88\x0b\x5f\x97\x10\xd7\x61\x0d\x36\xd1\xc8\x7a\x95\x68\x35\x7f\xa1\xf8\xb9\xd3\x47\x50\x52\xfe\x40\x73\x57\xa1\x1a\x6a\x1d\x59\xca\x96\x4e\xce\xa0\xb2\xac\x38\xdc\x4d\xa9\x75\x17\x0d\x02\x6f\x96\xf3\x2a\xcb\x5a\x9c\x9c\x78\x91\x5e\xd1\x6b\x47\x94\x0c\xfb\x5a\x39\xd3\x93\xa3\x6a\x6d\xf6\x87\xe1\x04\x1c\xaa\x9c\x24\xd3\xf4\xc7\x48\x47\x07\xa0\x63\xb4\xc9\x3e\x9b\xe5\x45\xc1\x68\x2d\xd0\x38\x7a\xc3\x6e\x6d\x4c\x05\x6a\xe7\x4e\x3f\x54\xd1\x73\x9b\x61\xfd\x89\xaf\xcb\xc4\xda\x02\x6c\x5c\xfc\x10\xf7\x9b\xea\x2d\x0e\x06\xa8\x92\x8f\x6d\x2d\xe0\x5b\x62\x09\xe5\xdf\xc5\xcc\x42\xd3\xdf\x96\xb5\x90\x0d\xb8\x82\xd3\x1c\x7a\x3b\xd4\x5e\xcf\xa3\x55\xa5\xf4\xca\x5b\x1b\xdc\x7c\x73\x80\x64\x78\x3c\x67\xee\x08\x79\xf6\x28\x3a\x44\x2b\xcf\x29\x61\x10\xc8\x7d\xf1\x36\x80\x8f\x62\xae\x8a\x71\xec\xd8\xac\xd4\x3b\xb2\x86\x7b\xbb\xed\x54\x6f\xe7\xba\xb8\x15\x97\xce\x3c\x57\xbe\xc2\x06\xd8\x60\xdd\xa6\xce\x88\x04\x81\x88\xc3\xa1\xf2\xbd\xb0\xdd\x18\x54\x2f\xb7\xaf\x6c\xd7\x36\xf5\xe6\xeb\x47\xea\xc9\x72\x90\x13\x27\xf1\x87\xaf\x1e\x6a\x31\x4c\x86\xb6\xaf\x60\x57\xa9\x79\xc4\x4d\xef\x3d\x32\xbf\xca\x23\x5f\xfb\x6c\x23\x4e\xbc\xce\x63\xc9\x4d\x9b\x3d\xef\x49\x68\x01\xd5\x6a\xfa\xa2\x15\xef\x9b\xb4\xe9\xce\x07\x35\x30\xd0\xd9\x85\x96\xfd\xc2\xb9\xf5\xdc\x63\xf2\x14\x00\xbd\x07\x2a\x7d\x8c\x34\x45\x27\x91\x87\x65\xd0\x21\x7b\xb6\xcf\x6d\x69\xa4\x3a\x72\x7d\x30\x0f\xc3\x7d\xfc\x50\x0f\x5b\x29\x89\x15\x31\x1c\x7c\xba\xca\x32\x22\x57\xcd\x67\xae\x7d\xa4\xbb\xe6\x4d\x46\xb9\x4c\xa7\x63\xbe\x85\xa6\xe5\x30\x22\x9c\xef\x3c\x3a\x3f\x4e\x83\xc0\xfc\xfc\x00\xff\x46\x07\x5d\xa9\x1e\xa0\x13\x68\x9e\x5b\xce\x5e\xaa\x17\xa9\xd5\x87\x75\xa7\x89\x9e\x9f\x54\x44\xf0\x82\x43\x9e\x77\x48\xfe\x34\x22\x37\x1a\xd2\x81\xe1\x78\x30\xca\x1e\xc2\x06\xe1\x4d\x8f\x23\xc7\x64\xd9\x4e\xf6\xec\x31\xb4\x40\xcc\x56\x3a\x5e\x15\xeb\xa5\x2a\x70\xa6\xf7\x52\x1c\x78\x1c\x93\xe5\x4e\x98\x13\xaa\x42\xdb\xc2\x1b\x45\xb2\x5b\x67\xdc\x99\xf4\x0b\x1f\x61\x0c\x89\xed\x6d\xae\x9c\xeb\x7f\x71\xda\x27\xcb\xfc\x8c\x9d\x75\xcd\x5b\xc2\xc4\x7f\x8f\x9e\x3c\x79\x11\x51\x2b\x22\x2e\xad\x93\xba\xac\x48\x5d\x9e\x40\x58\xe7\xc7\x90\xd2\x15\xda\xf1\x88\xac\x88\x47\xa1\x92\xd4\x3d\xfd\xa4\x74\x25\xf6\x99\x99\xa4\x2a\x7d\x7d\x5e\xd6\xb4\x05\xa5\x78\x44\xb4\x5a\x10\xb6\x56\xd4\x34\x61\x48\x19\xb1\x02\x63\x29\x23\x06\x6a\x9a\x73\x93\x25\xc3\x31\x5e\xf4\x1b\x23\x2a\x2f\xe7\x15\xe7\x9c\x04\x49\x48\x97\xf8\x02\x75\x12\xf1\x0d\x6b\xd7\xd6\x33\x46\xdc\x85\xec\x90\x15\x10\xfd\x91\x3b\x3d\x8c\x5c\x82\xc0\x6b\x29\x41\x83\xb6\x0f\x8e\xeb\xce\xf1\x50\x4c\x1e\x6e\xf3\xf4\xaa\xc1\x6c\x3e\x40\x02\x83\x29\xe4\xe0\xe8\xf4\xa9\xba\xdb\xfb\xa9\xe8\x5e\x5c\xe4\x18\x83\xc7\x63\x67\x2f\xe6\x94\x6a\x77\x7a\x56\x22\x04\x8e\x85\x1e\xe9\xa2\x8e\x2c\x6f\xb2\x08\xbf\xe4\x89\xe5\x4e\xd5\x90\xad\x30\xd6\xb3\xc2\x6f\x64\x26\xde\xc7\x50\x51\xd3\x2f\x7d\x70\xf4\xe0\xec\x42\xf7\xab\x9e\x67\xbe\x49\x77\xe1\x96\xae\xa7\x3b\xf5\x5b\x14\xfb\x6b\x64\x2e\x74\x85\x98\x45\xf5\xa5\x34\x75\x46\x37\x40\xaf\xba\x5b\x20\x18\x2b\x67\x3d\x7d\x93\x35\x06\x0a\x17\xa3\xc8\x1e\x32\x37\x9c\xcb\x74\x9b\x31\xb9\x1b\x2e\xe1\x16\x8a\x57\x0c\x02\x08\xf6\x93\xbc\x78\x19\x81\xea\x0f\xc7\x1a\xf1\x75\xc3\x2d\x78\x7e\xc0\x4e\x32\x2e\xdc\x87\x6e\xa3\x54\x5c\x84\xd3\x47\xac\x7f\xa1\x33\xa5\x23\x3b\x83\xf7\x94\xa6\x45\xab\xa8\xec\x9e\xa8\x55\x99\x9d\x0f\xd3\x29\x84\xfb\xf6\x71\x74\x84\xaf\x2b\x15\x90\xbd\xde\x03\xe4\xc6\x31\x16\x4f\x5f\xbc\xb8\xf9\xcb\xab\x27\x2f\xce\x9e\x3e\x3a\x79\x12\xf8\x8a\xcf\xbc\x5b\xe9\x60\x76\xce\x32\x2c\xd6\xb8\xb0\x9b\x83\x55\xa8\xe7\xeb\xe0\x56\x5b\x25\xab\x71\x55\x95\x0e\x7e\xda\x82\xf6\x6f\xe0\xec\x47\xe8\x08\x5f\xcf\xc4\x1e\x71\x1a\xdb\x0a\x82\x09\xcd\x1d\xd0\x44\x83\x18\x59\xd8\x5c\xc4\x12\x8d\x4a\x12\x8b\x58\xf3\x9d\x5d\xe6\x40\xb8\xd9\x1d\x4b\x6e\x97\x6d\xee\x0d\xac\xe0\x8a\x3a\xa8\xff\x3f\x6c\x9b\x16\x62\x3a\xa0\xee\x00\xdc\xd7\x60\x4e\x3c\x64\xe7\x33\xb8\x41\x9f\x13\x79\xa2\x9b\xee\x95\xfb\x93\x98\x10\x2e\x46\x69\xd0\x6b\x78\xd3\x92\x6c\xd8\x2e\x07\xc7\x43\xe4\x7f\x71\x87\x08\x5e\x6b\x8a\x0c\xfe\x86\xcc\xa0\xc1\x01\x8c\x86\xa0\x1a\x5f\x8f\x3a\x42\x00\xef\x0a\x3c\xd7\x1e\xd7\xb4\x0c\xd1\x3a\x2d\x11\xc8\x70\x78\x94\x54\xbc\xf3\x8e\x80\xec\x81\xc5\x6b\xdd\x3f\x0d\x99\x85\x1d\x4f\x03\x01\xc4\x6e\x51\xf7\xe0\x08\x2e\xe2\xb6\xf3\x60\x17\xf4\xbc\x24\x70\x8b\x3b\xba\xea\xa0\xfc\x64\xd0\xdc\xde\x9f\xad\xaa\xa6\xf6\xfb\x93\xb0\xc3\x1a\x80\xd4\xef\x98\x0d\x24\x54\xc8\x5e\xb1\xa7\xf9\xfb\xdb\xc3\x4f\x2b\x6e\xcc\x0c\xf0\x67\x33\x9e\x23\x1b\x09\xce\x56\x65\x2d\xca\x3a\xef\x3f\xc1\x1f\x39\x18\xe7\x49\x1c\xff\x8c\x80\x1c\xfe\x34\xda\x3a\x62\x16\x2f\xc3\xd6\x0a\xe6\xb4\x49\xf0\x57\x71\x90\x84\x52\xfb\x90\x3c\x76\xba\xfa\x47\x71\x3f\x11\x75\x83\x51\x03\x30\x9f\x92\xc7\x26\x84\x39\x70\x29\xc2\xdd\x5d\xa8\xbb\x2f\xf0\x71\xbb\x91\x5a\x4b\xac\x05\xaa\x84\xb2\xd9\x7c\x43\x27\x6a\x53\x37\x74\x36\x88\x14\xd1\x55\x6b\x16\x27\xf8\x77\xe5\x7f\x4f\x75\xc2\xf2\x66\x1c\xe4\xa9\x4d\x5a\x43\xa8\x65\x16\xdf\xe8\x97\x17\xfc\x53\x4b\xa7\x27\x03\x4f\x2d\x89\xd8\x67\x86\x43\x1a\xc0\xc7\x63\x89\xb3\xbe\x78\x1a\x79\xe3\xac\xc2\x39\xf0\x1c\xbe\x36\xd5\x80\x14\xbf\x2a\x1b\xc6\x00\x9f\xa5\x5e\xa9\x62\xfb\xf1\xee\xa8\x6e\x57\x0b\xb3\xce\x49\x74\x52\xa3\xc8\xe2\x91\xda\x41\xa2\x38\x14\x0d\xa2\x5f\xb2\xc6\x9e\x10\x94\xa6\x25\x7f\x54\xec\xe4\xbb\x65\xf7\xda\xec\x1e\x0b\xb5\xf7\x67\x57\xf0\x14\x80\x99\xe1\xfb\x73\xd8\x04\xc4\x5a\xc3\xa6\x86\x4d\xfe\x1e\xe5\x67\xfe\x4f\x46\x1b\xbb\xf8\x06\xff\xbd\xcd\xce\x10\x19\xf8\xff\x43\x4c\x0e\xbe\xfb\x39\x42\xdf\xa1\xba\xec\xbb\x8b\xc5\x73\xb0\xdb\x96\x49\x03\xf8\xf0\xa3\xd8\xf3\x46\x73\x05\xa4\x91\xcf\x21\x5f\x40\xfc\x79\x82\x8e\x59\x65\xa8\x12\x22\x02\xea\x91\x9d\x57\xbd\x21\x4a\x26\x20\x75\x24\xc4\xf5\xc6\x1b\x88\x41\xd2\x63\xa9\x9f\xe7\x42\x19\x48\xec\xc0\x4d\x13\x22\xe2\xfa\x8c\x3f\x4c\x57\x73\x97\x0e\x02\xe0\x83\x4b\x10\x96\x9b\x86\x03\x3e\xfc\xf6\xe9\x4b\xc8\xc7\xd0\xb3\x68\x5c\xb2\xe3\x3a\x34\xe2\xca\x75\xbf\x83\x3a\x83\x6f\x3a\xea\x9b\x44\x84\xc2\x45\xa3\x20\xd7\x86\xe5\x83\xad\x3e\x4c\xa2\x53\x29\xc5\xf0\x28\xf2\xb8\xa7\xb3\xe8\xb4\x7f\x17\x7a\x75\x26\x6e\x1e\x2c\x09\x2d\xe0\x12\xda\xc7\x5a\xcd\xdb\x87\xfc\x37\x4b\xbc\x90\x56\x68\xce\x34\xf4\x07\xfe\x5b\xd4\xcb\xc4\xd1\xd2\xf4\x60\x90\x74\x9d\xab\x4d\xd9\x6f\x5f\x26\x05\xec\xaf\xcf\x28\x4a\x18\xc1\x64\xcf\xd1\x2a\x99\x39\x0c\xdb\xec\x55\x1c\x08\xe3\xd2\x9a\x6a\xad\x0b\x1e\x07\x3d\x5b\x25\xa9\xe1\xf0\x05\x5e\x1e\xca\x69\xf0\xe6\xef\x59\x4a\xcf\x99\xf1\xd8\x5d\x2f\xab\xb2\x7e\x4b\xbc\x06\xd8\xd7\x50\x10\x89\x2a\x3b\xa2\x8c\x51\x55\xf5\xfd\x39\x8a\xfc\x48\xff\xed\x7f\xfd\xef\x07\xc7\x00\xc3\x71\xd7\x56\xf4\x97\xba\xf6\xba\x1e\xb1\x41\xd2\x0d\xc9\x41\x7c\x74\x17\x70\x0f\xab\x10\x89\xd0\x97\x97\x44\x17\xa5\xf0\x4c\x7e\xf4\x08\x5f\x68\xa1\x7a\x2e\x15\x0b\x89\xa9\x36\x7c\xba\xc1\x8e\x51\x9f\x9c\x26\x23\xb9\x1f\x66\x90\x6a\x19\xcf\x54\xa2\x2d\x22\xea\x4d\x32\xcb\xea\xed\x92\xd5\x35\x20\x2b\x3e\xec\x0f\xd6\x15\x64\x56\x11\x6c\xed\x2e\x4a\xab\xf4\x0b\xbf\x63\x62\x18\xfb\xdc\x33\xe5\xd7\xe0\x9b\x88\xd2\x39\x8e\xdf\xb3\x11\x84\x35\x48\x64\x12\x87\xea\xcc\x76\x3d\x3c\xdf\x80\x36\x7a\xff\x35\xbd\xb2\xac\xa3\x4b\xcb\x23\x17\x5b\xca\xf2\x89\xce\x78\x22\x34\x65\x8e\x4f\xc7\xc9\x1f\x74\x60\x3b\x76\xbb\x8b\x74\x89\x24\x46\xb0\x6f\x17\x43\x9e\xa0\x59\x10\x06\xcc\x52\x92\x3c\xa3\xc9\x18\x98\x66\xe9\xe0\xca\x7d\xb3\x2e\x2b\xf8\x54\xaa\x39\x1b\xf1\xf7\x5d\xbe\xa1\xeb\x07\xa5\x6a\xd0\xce\x9a\x96\xba\xdb\x68\x57\x24\x53\x69\x67\x24\xfc\xe7\x1b\xbb\x78\x49\xff\x99\x48\xda\x81\x14\x1f\xc3\xd4\x1e\x55\x7e\x4e\xf2\xeb\xe2\x09\x87\x7f\x11\x99\xb5\x74\x7e\x88\x84\x92\x54\x40\x6d\x6f\xfe\x02\x5b\x04\x82\x38\xb6\xdb\xb2\x63\x21\x5a\xa9\x00\xe2\xe8\x2a\x93\x5b\x0c\xc0\xb6\x4f\x35\xf9\xb1\xa1\xaf\xcd\xaf\x16\x2f\xf2\x2b\xf9\x41\x7b\xcc\x79\x3f\xbe\xe3\x7f\x31\x8a\x94\x73\xd8\x06\x6a\xbe\x92\x60\xba\xcc\xb7\x00\xad\xc9\xf9\x88\x9c\x94\x08\x1a\xc5\xcf\x9a\x31\x4e\xe7\x31\x9f\x9a\x8f\xfb\x36\xca\x3f\xe2\x54\x0e\xa3\x9a\x6b\x28\x0c\x5e\xb6\x40\xa3\xd6\x17\xe2\x8e\xc0\x59\xeb\xd9\xdc\xeb\x4a\xb7\x12\xd0\xbc\xd0\xc0\x66\x5f\x0e\x83\xd3\xe2\x31\xfd\xc7\x97\x48\x7c\xcd\x29\x94\x3a\x38\xf8\x5b\x3e\x2a\xee\x23\x61\x33\x7d\x7c\x81\x1b\x48\x3e\xb8\x48\x15\x24\xf0\x71\x62\x71\xc8\x80\x12\x3e\xce\xc7\xdb\x14\x7d\xac\xc1\x18\xd1\x77\x09\x55\x00\x5d\xd4\x5a\x71\xa5\x15\x6d\x57\xbb\x74\xfd\xac\xd7\xec\x55\x81\xcb\x32\x54\x4f\x3a\xf5\x68\xa0\x58\x30\x18\x30\x7c\xf6\x83\x0e\x2a\xc9\x80\xa1\x9e\x1f\x73\xa2\x6e\xb3\x23\xb1\x34\x54\xfd\xbe\xbf\x6c\xcb\xe9\x9a\x44\x39\x2c\xdc\xfe\x07\xb3\x23\x36\xc9\xb0\x0f\x7f\xb2\x06\xba\x81\x71\x88\xe9\x78\x31\xe3\xcd\x04\x7e\x3c\x45\x5f\x2b\x96\x4d\xd9\x7c\x42\xc5\x39\x8b\x58\x43\x70\xfb\x26\xb2\xf8\xb8\xaa\xab\x29\x04\x2c\xa2\x57\x6a\x58\x66\xbb\xd8\xc4\x16\xeb\x16\xfa\x6c\x43\x93\xbb\x28\x95\x96\xec\x13\x13\x87\x7d\x89\xbf\x99\x6b\x80\x8c\x3b\xc9\x2c\xb4\x6f\x3f\x97\xa9\xde\x79\x0b\xba\xfc\x7c\x71\xb7\xc8\xbe\xc7\x91\xe8\x7c\x1f\x00\xb9\xfb\xf4\x0d\x83\xd9\x7d\x52\x52\x25\xdd\xd3\x4e\x0c\xfa\x8c\x3f\x13\xf7\x86\x7b\x14\xf6\x4a\x31\xf3\x86\x29\xa4\x9c\xed\xb0\xf5\x3e\x44\x1c\x7e\x1e\x0d\xf0\x26\xaf\x10\x6b\x12\xf7\x3d\x68\x1b\xf0\x83\xff\x98\xfa\xbe\x29\xe9\x7b\xd4\xf5\x78\xc3\x33\xf9\x32\x39\x80\x67\x24\x27\xca\xe7\x08\x18\x54\x22\xed\x53\x7a\x04\x6b\xc4\x64\x0b\xab\xa9\xba\x48\x92\xb8\x6e\xfa\xc5\x9f\x7a\x8d\x57\xe1\x80\x9a\x5c\x17\x31\xd9\x54\x10\xa1\x58\x9e\x5f\x73\x4b\xa0\xc2\xcd\x87\x7b\xc6\xde\xd7\x3c\x18\xfd\x64\x2b\x10\x29\x5a\x18\x42\x90\xd1\x8a\x59\x20\x2d\x83\x26\x6d\xd0\xc4\x22\x3e\xe2\x65\x0b\x1e\x64\xfc\x61\x8e\x44\x66\x96\x00\x88\xab\x50\x75\xde\x53\xd5\x80\xd5\xae\x1a\xdd\x69\x74\x03\x3c\xac\x87\xe0\xe3\x8a\xad\x41\x17\x62\xf4\x27\x2e\x2f\x18\xf4\xdb\x40\x5f\xa7\xa6\x41\xb7\x96\x6f\xc5\xfe\x79\xa1\x7e\xec\x17\x30\xd5\x76\xdb\xd8\x8e\xed\xbe\xb5\x4e\x50\x7f\x8c\x61\x1e\x86\x72\xf5\x65\x2c\xdf\x20\x3e\x76\xbc\x2d\x8e\xe8\xdd\xfd\xf1\xf3\xd7\x36\x3b\xbf\x8e\xcc\x54\x3f\x7e\xf1\x9a\x24\xfa\xbb\x3f\x7e\xf9\xda\x42\xa0\x1f\x35\x5d\xae\xf3\xb7\x66\xc1\xf7\x58\xa7\xed\xb1\xa9\xdc\xce\x55\xde\x11\x2b\x52\xd2\xf6\x71\x62\xb9\xcc\xdf\x4f\x75\x4c\x5e\xde\x75\xf2\x15\x5c\x61\x5e\x0f\x49\x03\xab\xbc\x26\x28\x43\xa1\x9f\x52\xca\x50\xf7\xdb\xa5\x2e\xd6\x82\x6e\xe8\xdf\x09\x31\xd5\x32\x48\x66\xdd\xe2\xc0\x83\x86\xe3\xdf\xf2\xac\x2c\xb0\x74\x5a\x8c\x53\x6b\xfc\x4e\x7e\x7d\x2d\x0b\x3b\x88\x41\x01\x9f\x12\x35\x71\x3d\xad\x12\x37\x3f\x62\x0b\x57\x4d\xeb\xe2\x86\x60\xfc\x9a\xa7\x74\x4d\xd2\x8e\x61\xf2\x01\x6d\xe5\x8b\x4e\x48\x6b\x1c\xeb\x64\x39\x51\xc4\x3a\xa9\xde\x1a\x86\x90\xd4\xa3\xdb\xbd\xe1\x9d\x1c\x7c\xbd\xa5\xb7\x76\xd8\x44\xa9\xb6\x43\x9d\x24\xaf\xa0\x83\xe2\x60\x0f\x08\x82\x77\xe4\x0a\x1c\x81\x6f\x0a\x7a\x77\x62\xe8\xc9\x0c\x75\x1b\x64\x32\xc0\xa4\x5f\xbf\x0d\xc2\xe7\x10\xa7\xbd\x46\x57\x3f\xe5\x81\x41\x86\x02\x6e\x15\x5d\x7c\xb1\xa4\xa5\x11\xad\xd4\xf2\x13\xc6\xc3\x70\x3f\x79\xa4\x6e\x38\xbb\x22\x73\xa0\x61\x3b\x58\x11\x28\x09\xf7\x3c\x06\x4f\x68\x4d\xf5\x93\x0b\xf5\x24\x09\x87\x84\x3d\x63\x42\x3e\x27\x51\xc2\x42\x7a\x44\xde\xb5\x98\x9e\xb8\xdc\x11\x2e\x04\x87\xc5\x20\x0d\xd6\x83\x7b\x27\x2c\xcd\x6a\xb7\x6c\x6a\x44\xc9\x07\xed\xbc\xda\x77\x5c\xf4\x40\x14\xcb\x9b\x98\xa5\x07\xd1\xc1\xee\xa4\xb4\x31\xb4\x4d\x51\x76\x21\x82\xca\x6d\x41\xea\x8f\xe6\x26\x4c\x83\x2e\x42\x98\xad\x2f\x97\x9b\xb9\x0b\x21\x4f\x7d\x76\x82\xa2\xf4\xfb\xaa\xa9\x88\x25\x3e\x86\x66\x5a\x14\xab\x93\x75\xa0\x3f\xa7\x83\x2e\x1c\x66\xfa\x31\x1c\x0f\xa6\x05\x91\xc9\x5d\x50\x6d\x50\x9d\x17\x76\xf3\x17\xa4\xd0\x19\xcc\x74\xe8\xae\x99\x7e\x4d\x82\xca\x56\x3e\x12\x71\x62\xb6\xfb\x2c\x36\xb7\x54\x8d\x4d\xa9\x91\xb5\x21\xb2\xce\xdc\x7c\xd8\xa8\x56\x5d\x9c\x31\xed\xd8\x25\x27\x76\xe4\x7c\x17\xc1\x61\xbf\xde\x7f\x7a\x2e\xc1\x6e\x7f\x6e\xaa\xbd\xe6\x9a\x99\x48\x7c\x22\x5d\x98\xab\x2c\x96\xfc\xf4\x13\xb0\x2f\x27\x0c\x16\xa5\xb5\x98\x49\x73\xef\x41\xe2\x35\xd9\x76\xba\xba\xc2\xc4\xb5\x29\x60\xa6\x75\x22\x29\x93\x49\xe6\x8f\x44\x39\x20\xa9\x33\xd4\x8b\xa6\x0f\x00\xe4\x49\x79\xcd\x5d\x34\xe4\x7c\x30\x26\xf2\x54\x20\x25\x81\x19\xce\x45\xfe\xf5\xd3\xd0\xcf\x89\x14\xcd\xd2\xb3\xdc\x02\x3a\x3f\x07\x9a\x06\x6a\xc9\xbe\xa2\x4b\x4a\x98\x46\x28\x20\x39\xdb\x15\xe2\x93\x7b\x56\x44\xba\x9a\xdd\x05\xf8\xa0\xae\xf1\x23\xf2\x55\x73\x9d\x11\x99\x83\x9c\xaa\x16\xa0\x5c\x6c\x24\xf4\xef\xca\xf8\x84\x2f\x29\x64\xac\x84\xdc\x03\x5b\xfc\x2a\x11\x54\x10\xa7\xe0\x5c\xfc\x44\xbd\x5f\x07\xb7\xf9\x01\x10\x45\x51\x83\xb4\x19\xa0\x34\x3a\x00\x3b\xb9\x23\x23\x45\xc4\x3a\x10\xe9\x7c\xc8\x23\x3c\x04\xff\x50\x80\x8d\x20\x2a\xfa\x3b\xfe\x21\xb4\x54\xa1\xe9\xc4\x15\xa3\x12\xc2\x04\xb2\x30\x9d\x90\x3d\xbf\x84\x5a\x71\xdd\x5b\x55\x9c\x63\x9c\x42\x89\xb8\x4d\xb4\x68\xd9\x57\x08\xdb\xfd\x5a\x69\x37\xff\x2d\x79\x43\x5c\xf9\x97\xbe\x5c\x47\xa1\xb3\xb4\x71\x4c\x85\x0c\x46\xfd\xe9\x50\x84\xe2\xff\x2e\x43\x51\x2f\x7f\xf3\xda\x21\x35\x49\x36\xcb\x98\x4e\xc3\x0a\xe8\x7f\x24\x75\x22\xad\x43\x17\xb7\x86\xda\xc2\x3a\x03\x81\xf5\xc6\x0d\x57\x45\x39\x00\xc2\x1c\x5e\x5b\x08\x62\x6a\xe5\xda\xd7\xbb\x22\xda\xde\x18\xf8\x72\x38\xd4\x93\x9b\xe5\xe7\x88\xfc\x50\x5d\x01\xcd\x3c\x81\xde\xe2\x1b\x07\xaf\x08\xbd\xf4\x93\x90\xb0\x64\x04\x67\xf7\xf5\x50\x1e\xb9\xbd\x48\x2f\xc4\x34\xe7\x74\xa2\xd8\x16\x7e\xc2\x79\xe6\x34\xd8\xd5\x1b\xba\x26\xbb\x85\x5d\xb7\x97\x44\x5e\x6d\x5e\x5a\xef\x03\x64\x63\xe2\x7b\x90\x10\x4a\xa2\xc5\xb0\x1f\xb8\x55\x95\x76\x89\xc8\xa0\xb7\x25\xdb\x83\xe0\xfe\x21\xca\x1d\xe7\x50\x57\x01\x17\x30\xa4\x0f\x74\x31\xe2\x3a\x68\x63\x65\x5c\xbe\xa6\xe1\x69\x8f\x24\x33\x2c\x38\x5d\x76\xe3\xa3\xc9\x56\x1c\xe9\xca\x59\x5c\x62\xca\x93\xd7\x4b\xb6\xda\x30\xe4\xa2\x24\x4c\xaa\xfd\x0d\x7b\x52\x4c\xee\x49\x9c\x59\x29\xca\xe7\xba\x67\x9f\xa3\x51\xd9\xd0\x31\x35\x70\xd0\x3c\x47\x63\x27\x3e\xac\x7b\x46\x5f\x91\x3c\x50\x2a\x41\x91\xa4\x56\x0a\x33\xa6\x20\xa0\x1a\x8a\xd5\xfb\x67\xb1\x3f\x31\xeb\x41\x83\xbf\x27\x15\xb0\x8e\xb2\x07\x17\xbc\x04\x51\x53\x92\xf7\x8d\xa7\x27\xb4\x3f\x13\xf4\x87\x4f\x51\x5f\x2b\x81\xe0\xa6\xcc\xe8\xdb\xc5\x4f\x7b\xa1\x03\x52\xe6\x59\x5a\xf8\x77\xc4\x90\x08\xa4\x15\x9d\x3d\xd0\x79\x28\x53\x62\xb2\x7b\xbf\xbb\x5b\xdc\xa7\xd5\x70\xec\x91\x77\xbd\x1b\x98\xeb\xac\x14\x0f\x2e\xfa\xb0\x0b\x46\x0c\xdc\x08\x79\xe3\x14\xc0\x26\x3a\xb3\x3f\xcd\x22\x6d\x6b\xa2\x04\xfc\x23\x74\x17\xf1\xc7\x09\xf5\x4c\xf4\x75\x4a\x45\x33\xfc\x5c\x2c\xee\x3a\x2d\x59\x32\x6a\xb3\x2c\x7a\xc2\x31\x50\x7f\xa7\xc9\xcf\x31\xcb\x03\xf8\xf1\xdf\x7c\x00\x3f\x39\x9c\x88\xca\xaa\xa3\x21\x9c\x18\x95\x2e\x8a\xb8\x95\xf3\x0b\x93\x43\x59\xc5\x92\xcc\x7b\x46\x41\xd6\xce\xa8\x07\x93\x06\xad\x19\x71\x20\x89\xd8\xa2\x64\x84\xa1\x42\x6d\x04\x23\xe1\x63\x5f\x96\x84\xd2\x71\xf1\xc8\xb6\x1c\x7f\x73\x4b\x7f\x3c\x5c\x73\x76\x2f\xe4\xbd\xbc\x9f\xae\xd4\xe4\xad\xd3\x66\xc6\x1f\x7c\xaa\x2d\xed\x73\x29\xf8\xc0\xe1\x11\x92\x7a\x52\xc8\xde\x08\xbc\x8c\x20\x2e\x4c\xfc\x10\xd8\x19\xc5\xb7\x8b\x9f\xb9\x25\x11\x24\x3b\x38\xa2\xff\x7b\xb0\xdd\x3e\x78\xf3\xe6\x60\x02\x34\xb1\x5f\x0f\xc3\x26\xf5\xe0\xe4\x24\x71\x43\xba\x1e\x75\x12\x73\xdd\xc0\xf6\x11\x78\x51\x21\xda\x4b\x09\x8b\x62\x6b\x77\x62\xfc\x81\xe5\x13\x6c\x9f\xe7\xe9\xe2\x9d\xae\x45\x28\x27\x11\xa9\x2f\x95\xf0\x6c\x10\x78\x43\xc7\xc3\x70\x68\x7b\xba\xae\x54\x98\x89\xbe\x0c\xf2\x47\xdc\x36\xdf\xdb\x60\x32\x19\xf5\x90\x82\x25\x15\x15\x9c\xe7\xd2\x68\xb0\x5b\xfc\xb9\x64\x5c\x23\x08\x43\xb7\xde\x88\x56\xe0\x12\xea\xc6\x1a\x40\x95\x16\xd6\xb7\x48\x07\x53\x13\x18\xad\xf8\x63\x5e\x5d\xb3\xe9\x34\xf3\xae\x70\x2e\xc1\x47\x76\xf1\xbd\xfc\x1b\x3e\x44\x89\xbb\x98\x6b\x8a\x7e\x85\x4a\x17\x4d\xf3\xd6\x2e\xfe\xd6\x9c\xf3\x1f\xa1\x7c\x53\x76\xf2\x09\xc9\x8b\xbf\x4b\xbf\x11\xab\x5f\xae\xf6\xe4\xc6\x97\x84\x75\xa1\x6e\xc1\x71\x97\xcb\xf7\x50\x10\xff\x8f\x46\x6e\x1f\x29\x0b\x75\x42\x54\x9b\x4b\x97\x17\xbe\x69\xd4\x50\xc8\x9a\x2f\xe1\x6c\xd1\x2a\x25\x7c\x06\xc6\xbf\x34\xc4\x2c\xf6\xf4\x09\x9e\x3d\x2a\xaa\xc7\x41\x65\x60\xf7\x69\x2f\xc1\x11\x7a\x27\x0f\xef\x9a\xe0\xc7\x91\xa8\x5a\xe4\x77\x0e\xe1\xb5\x0e\x23\x7c\xbc\xee\xb8\xba\x20\x9c\xb6\xf9\xb9\x4d\x5d\x4a\x44\xc5\x20\xf1\xe5\x83\x94\x01\xc3\x20\x64\x09\x85\x1b\x5a\xad\x01\xf1\xb6\x01\xa7\x50\x1c\x0c\x93\x40\xfa\xa9\xf0\x4b\x09\x9c\x00\x00\x6c\xa6\x15\x5f\x8f\x5d\x23\x7e\x1e\x72\x9f\xa5\x31\xff\xd1\xd5\xeb\xa7\x5a\x13\xdc\x80\x9a\x88\x6a\x8c\xfa\x1e\x05\x68\xd2\xea\x52\xf7\xb6\x41\x55\xb5\x49\x4b\xba\x7d\xc4\x56\xe7\x62\x79\x2e\x5b\xa2\x7f\x9c\x3d\x11\xc1\x62\xd9\x59\xc3\xa6\xf4\x9b\x7f\x6d\x43\x5a\xbd\x31\x6c\x11\x35\x44\x87\x69\xf9\xf9\xe2\x81\x30\x7e\xa6\x2d\xe0\x32\xea\x13\x63\xda\x32\xf6\xee\x4d\x57\x29\xf1\x14\x09\xdc\x89\xee\x95\x97\x25\x5d\x10\xd5\x6d\xa3\x7d\xe1\x46\x53\x6f\x18\xf3\x2b\x87\x1c\x6c\x2c\xc2\x4c\xd5\x4e\x70\x0d\xef\xcc\x1c\xd1\x8d\xe6\xfd\xd4\x0c\x40\x95\x54\x1d\x14\x84\x14\xa3\x8e\xb6\x34\xaa\xa4\x00\xb4\xa2\x1f\x26\xa4\xd7\xf4\xa3\xde\x6b\x52\x93\x9d\x07\x6e\xf4\xf7\xa3\xed\x89\x40\x9a\x8d\xb4\x29\xce\xad\x30\x76\x18\x0b\x6e\x9b\x72\x21\xe6\xb8\x0d\x24\x6a\x62\x4f\xd7\x04\xbf\xdb\xf4\x34\x43\x27\xd2\x70\x1a\x0f\x09\x40\x90\xe1\xdb\xd2\x6a\x1e\x6d\x95\x6f\xbe\x45\x0e\x83\x40\x99\x0f\x13\x75\x36\x00\xec\x1d\x72\xe3\x74\x86\x1c\xd0\xbe\x77\x96\xec\x5e\x42\x50\x38\x2b\xe3\x13\xeb\x03\x84\x57\x51\xc6\x61\x76\xa5\x22\xe0\xb2\x57\x9e\x78\x14\x10\x26\x21\xeb\x66\x5d\x70\xc0\x4a\x4e\xa8\x02\xa7\x9d\x44\xa6\xfa\xc8\xd0\x5f\x4c\x0e\xcd\x6e\x8e\xa3\xa1\x5d\x4e\x79\x77\x83\x88\xc3\x34\xb3\xc3\x78\xa3\xe6\x63\xab\xfc\x92\x87\x52\x4b\x95\x4b\x95\x86\xac\x3f\x8c\xdc\x03\x67\x48\xb7\x98\x68\x25\x91\x10\x07\xcd\x9a\xcf\x4e\xe0\x5f\xcf\xa8\x06\x2e\x89\x26\x59\x97\x26\x5e\x5d\xcd\xf7\x52\x7d\x7f\x69\xea\x1d\x07\x43\x90\xd9\x17\x22\x3a\x3e\x36\xa2\x5e\x7e\x3e\x75\x24\x43\xed\x6d\xfe\x96\x58\xf4\x09\x22\x3f\xd1\xa1\xb8\xca\xfb\x48\xa2\xf6\xe6\x5f\xc4\x29\xcf\xcb\x1e\x7a\xa5\xfb\x4c\x0c\xa3\xc8\xb0\xe8\x92\x8e\x3d\x9d\xf7\x7b\x38\xfb\x06\x88\x70\x09\x38\x0c\x5f\x88\x38\x1a\x2f\xc2\xed\xfd\x4d\x3c\x38\x1d\x48\x92\x76\x2e\x96\x28\x9a\x64\x6b\xb6\x0d\x27\x74\x9d\xe8\xe3\x38\x69\xeb\x51\x30\x6a\x2d\x2e\x1f\x92\x61\x36\x36\x8d\x47\x3e\x20\x29\x1d\x86\x81\x3c\xa0\x02\x9a\x95\x9c\xd2\x63\x29\x19\x26\xc7\xb9\x61\x46\xfe\xab\x2e\x1c\x2f\x7a\x23\x69\xb0\x48\x95\x33\xd7\x70\xa4\x66\x15\x95\x61\x4b\x47\x4a\x9b\xe7\x29\x0c\xaf\x84\x4b\x8a\x21\xae\x8c\xd3\x80\x9f\x92\x4b\x0e\x2a\x18\xc7\x58\x09\x97\xa1\xde\x76\x24\xa2\x40\xd3\x28\x09\x3f\xb2\xd3\xef\xcf\x5e\xb2\xd3\x5f\x36\xcf\x4e\x9a\xd6\x62\xae\x7f\xee\x0f\xd8\x04\x4f\x87\xbd\xd6\xe7\x39\x8c\xa4\x67\xc7\x53\x12\x60\x48\x25\x1b\xad\x44\x6c\x46\x79\x3c\xd8\xc9\x51\x83\x27\x8d\x66\x00\x3e\xb8\xe0\xd4\xfe\x92\x63\x03\x97\x56\xce\xe1\xdc\xd2\x2d\x91\xe0\x15\xf3\xd8\xf3\xec\x68\x27\xd9\x6c\x1f\x40\x5b\xca\x4f\xe0\x78\x1d\x0c\x35\xbc\xd5\x9d\xf9\x5b\x8e\xfc\x2b\xa2\x05\x4b\x74\x9e\x07\x8b\x82\x6e\x39\xcd\xae\x8f\xa0\x38\xac\x3e\xc1\xb6\x6b\x95\xec\x32\x8f\x32\xa0\x8c\x98\x77\x38\xe9\x1e\x5c\x78\xdf\x26\xf1\x1b\xbe\x14\x35\xd7\x2d\x11\x68\x7b\xe7\x11\x71\xef\x6e\x02\x1f\xe5\xdf\x87\xbd\xcd\x9d\x42\x05\xea\x13\x7e\x0c\x6d\xa2\x06\xc2\xe9\x2d\x9b\x2b\xf9\x8f\x71\x15\x11\xf3\x2c\x5e\x0b\x61\x27\xcf\x5f\xfe\x3a\xae\xb3\x93\x04\x78\x0b\x4d\x84\x37\xae\x70\xde\x14\xd7\x74\x82\xdb\xdd\x04\xe7\x1f\x90\x98\xd9\x7f\x7e\xc5\x44\x1c\x19\xaa\x52\xad\xea\x6c\xc7\x46\x79\xd5\x97\x72\xdf\x48\xb2\x75\x69\xc0\xea\xf6\x4e\x94\xde\xdc\x50\xee\x83\x9c\x0b\x04\xad\x5c\xd8\x59\xc8\xb6\x39\x54\xa7\xa6\xea\xb3\x51\xde\xff\xf9\x68\xde\x6c\x9e\x52\x7c\x29\x71\x44\x31\x19\x15\xe1\xc1\x6b\xae\x71\x6a\x32\xf3\x0e\x6f\xb7\xc5\x76\x67\xbd\xff\x70\x7e\x70\x43\x34\x48\x64\x96\x21\xcc\x53\x3f\xf3\xab\x23\xb4\xb9\x9c\xb9\x0f\x16\x46\x5c\x6d\xbe\x7f\xed\x7b\x62\x3a\x71\xe0\xc7\x77\x09\x92\xbb\x1a\x83\xe8\xcf\x71\x45\xbd\x0d\xb5\xbe\xcb\x01\x41\xb3\xe7\xa1\x9d\x43\xc4\x14\xa9\x72\xaf\xf3\x19\x7e\x89\x0a\x78\xa2\xda\x76\x10\x1d\xa7\x6c\xe7\x35\xf3\x55\x85\x6b\xd5\x11\x0d\xb8\x22\x07\xea\xc0\x6e\x34\x88\x96\x3c\x88\x89\x92\x52\xa4\x41\x1e\x82\x60\x67\x93\xcc\xd9\xfe\xb5\x83\xbc\x73\xfc\x05\x22\x67\xf5\x09\xb0\x38\x6a\x3b\xe6\xe9\xee\xfd\xf1\xec\xfb\xe7\x87\xd9\xbb\x07\x57\x57\x57\x0f\xd0\xfa\x41\xdf\x82\x6e\xd2\x94\x8b\xc3\xec\xbf\x3f\x3b\xa1\xb3\xbd\xba\x3f\xcf\x4e\xd1\x0f\x3b\x70\x8a\x8e\x9a\xa8\xa2\xe8\x3d\x7e\x15\xcd\xfa\x6e\x82\x66\xe9\xe9\x89\xde\x79\x19\xe7\x8f\x8c\xef\x71\x6c\x62\xea\x9b\xae\xb8\x13\x5f\x85\xab\xd6\x68\x1c\x53\x31\x14\x90\x2c\xdd\x8d\x6f\x97\xb7\xbc\xe4\x37\xa8\x59\x52\xf7\xe9\x23\x34\xe5\xea\xe6\x5f\x6a\x33\xac\x97\xd8\x87\xc3\x47\x70\xaa\x7a\x50\xfe\x84\x94\x14\xd8\xd8\x9f\x75\x63\x57\x9e\x26\xb3\xae\xeb\x81\x24\xd4\xd3\x7b\x2b\xa1\x90\xd2\x0b\xfb\xf1\x36\x75\x75\x4d\xb8\xe6\x1f\x2a\xe0\x60\x6e\x46\x31\x7c\x76\xd8\x76\x8f\x50\xc0\xf9\x7a\xde\x9f\x0f\x3b\xe2\x14\xb7\xf4\x67\x7b\xcd\xe6\xbc\xc5\x1f\x0f\xf2\x32\x7a\x49\xc1\x09\x20\x60\x33\xa3\xa8\xa6\x41\x27\x92\x63\x65\x71\x0a\x6d\x67\x07\x23\xfd\xb6\xe1\x1c\x00\x0e\x1d\x57\x9a\x58\xe6\x4d\xe8\x7c\xdc\x47\xac\xce\x9c\xfe\x28\xb0\x53\xd7\xde\x43\x7e\x14\x2c\xdf\xb0\x1e\x0f\xb1\xfb\x63\x00\x2d\x4e\xe9\x3f\x93\x90\x93\x07\xe3\xc0\x89\xd0\x2f\x39\x80\x51\xac\x48\x38\xd8\x9c\x5b\x86\xd3\xd5\xac\x87\xa5\xe1\x49\x34\x66\x31\x3a\x7e\x76\xc6\x3d\xd7\x72\xf3\x01\x97\x1e\x08\x76\xa5\x0c\xc6\x4a\x89\x87\x55\x89\x4b\xb6\x36\x61\xdb\x40\x46\x98\x86\x0c\xb9\x45\x87\x19\x63\x3e\x51\x09\x95\xe3\x93\x86\xc9\x6a\x26\x2e\x7a\x6d\x91\x8c\xe3\xfa\x8f\xbc\xbd\xc6\x02\x8c\x1b\xe3\x76\x3e\x42\x9c\xd0\x70\x7d\x23\xc1\x0f\xb2\x77\x9d\xb8\xdb\xdf\x7b\xb9\xc5\xa7\x98\xe7\x91\x1c\xe1\x94\x12\x03\x26\x72\xa8\x02\x75\x7d\x8a\xab\x90\xc3\x43\xd2\xcc\x05\x67\xa8\xc7\x11\x5e\x3e\x66\x77\xac\x55\x92\xce\x24\x7c\x95\x43\x7f\x87\x9f\x06\x8f\x72\x0d\x8f\xf6\x45\x8e\xe8\xd9\xc5\x71\x4e\x37\x62\x0c\xa3\x5d\xd5\x5c\xc7\x19\xb9\x34\xda\xa6\x6a\x4a\xf1\x94\x49\x56\x14\xaa\x8f\x53\x28\x50\xc3\xc7\x93\x0d\x39\xbc\x20\x0c\x13\xbf\x7e\xe2\x93\x61\x88\xbd\x62\xa5\xfd\xc4\x13\x88\xc5\xb4\xc8\x2c\x30\xb1\x82\x51\x72\x04\x5f\xe7\x53\xb2\x3a\x0c\x86\x1d\x05\xd8\xcf\xd3\xee\xe2\x04\x0f\xd3\x13\xff\x78\xa2\x87\x04\xb4\xb7\x66\x71\x18\x76\xfd\x49\x19\x1d\xa6\x40\x34\xc5\x55\xe7\x1f\xd9\xbf\x89\xe6\xb7\xe4\x76\x18\x4e\xd5\xab\xcb\x87\x31\xcf\x4e\x29\xae\x21\x2f\x83\x20\x8c\x4f\x60\xb9\xa7\xe6\x15\x41\xf0\xd6\x5d\xdd\x9f\x17\x62\x46\x9c\xe7\x7a\x7e\xde\x36\x57\x16\xf9\x12\xf0\x86\x14\xf4\xd6\xb0\x41\x8b\xbd\xf9\x8c\xcb\xa4\x1a\xbc\x47\xe0\x42\xca\xff\x48\x91\x38\x17\x88\x5f\x20\x88\x9a\x94\xb2\xc1\x3d\x7d\x51\xc6\x33\x08\x8f\xa9\x02\x2b\x14\x5d\x62\x2c\xbc\xb0\x87\x46\xf6\xa2\xb9\x5a\xe2\x2f\xce\x01\x61\xe1\xfc\x2e\x8f\x20\x31\x9f\x8c\x22\x6e\xab\x95\xf1\x5b\xf6\xc5\xdd\x7d\x48\x65\xb3\x1e\xf9\x32\x04\x35\x1c\xaf\xdc\x55\xa6\xba\x8c\x48\xd1\xf7\x28\x3c\x98\xbe\x46\x3a\x86\x50\x47\xa1\x45\x74\xe7\xd1\xd3\xe7\xf2\x83\xe3\x41\xf4\x49\x5b\xe5\xe8\x64\x0e\x33\x17\x6a\x32\xf7\x21\x27\xfa\x52\xb2\x0f\x42\x99\x4b\x98\x10\xff\x1d\x3c\xe8\xf5\xa9\x1c\x5f\xa9\x68\xf3\x75\x47\xd7\x69\x03\x55\x52\x54\x4e\xd3\x73\x6d\xe1\x17\xfb\x60\x17\x02\x5a\x7c\x1d\x02\x13\x80\x7f\xc6\xff\xf8\xd2\xc4\x51\xcd\x15\xe6\x10\x9c\x16\x01\x02\x01\x30\x51\x10\x0a\x48\xf6\x5d\xeb\x6c\xcb\xfa\xce\xeb\xd4\xb8\x8c\x35\x4b\xff\x16\xae\x43\xa3\x78\xe1\xc1\x24\xc7\x8e\x90\x74\xc1\x3b\x40\xd1\xe1\xc9\x30\x37\x18\x1c\xf5\xed\xb5\x79\x32\xf9\xa8\xed\x63\xd3\x71\x7c\x9c\x5a\x35\xe8\x22\x27\x56\x23\xaf\x33\x5c\xfb\x19\x78\x46\xb0\x0c\x10\x08\xbb\xbc\x2e\xb2\xab\x0b\xe2\xb5\x2f\xf8\x11\x2a\xc3\x59\xd8\xf0\x8e\x5f\x11\x3a\x27\xc9\x3e\x11\x4c\x10\xac\x14\xbe\x31\xc7\x7c\x0c\x9c\x25\xa1\x32\x6e\xe2\x82\x2a\x99\x8f\xb2\x62\x5c\x44\xdb\x24\xf2\x8f\x0d\x99\xac\x44\x88\xa2\xc0\xe0\x08\x24\x6e\xa0\xd1\x24\x22\xc2\xef\xca\x86\xc4\xde\x95\x5f\xb5\xb0\x11\xdd\xfc\x65\xd5\x96\x51\x6d\xf6\x9a\x36\x57\x8c\x17\x97\xa5\xed\x25\x68\xd7\x7f\x06\xf7\x0e\x26\xf2\x98\xdf\x67\x02\xa5\xf8\xb7\xff\xf9\x7f\x26\xf0\x4a\xef\xf1\x2a\xb3\x07\xf9\x06\x0a\x16\x56\x04\xf9\x57\xa1\x5a\xb0\x4f\x5b\x79\xd0\x69\xaa\xb5\x7b\x3f\x52\xf5\xa7\xec\x64\xd1\x36\xe2\xb9\xe2\x02\xcc\xb5\x2f\x88\xa1\x50\xac\x96\x05\x2b\x05\x9d\xf9\xb8\x96\x61\x20\x9e\x85\x97\x91\xfd\x5b\x7c\x01\x38\xa9\xbd\xd5\x4f\x45\xd0\xca\xfb\xd9\x7a\xe4\xc4\x23\x4c\x72\xaa\xce\xfc\xcb\x4b\x7c\x74\xc7\x87\x8c\xb1\xcd\x1d\x33\x6f\x65\xce\x27\x91\x5e\x39\x30\x57\xfb\x31\xff\xcc\x5e\x5e\xd0\x49\x79\x21\x65\x69\x55\x5c\x4c\xfa\x21\x7b\xac\x05\xa3\x1a\x2e\xc4\x9c\xfb\x42\xe4\xa1\x3b\x25\xd9\x15\xcd\x34\x93\x31\xa3\xa4\xe6\xb4\xaf\xac\x79\x20\xec\x9b\x93\x54\x96\x5d\x13\xe6\x5d\xe5\xec\xdb\xe9\xef\x95\x3f\x8c\x47\x71\x37\x89\x9b\x8f\x3f\x23\x32\x40\x91\x69\x05\x64\xe0\xbc\xfe\x6c\x74\x5e\x96\x79\x85\x70\xf1\x6b\xcd\x60\xfb\x43\x9d\x90\x05\x21\xbd\x2b\x1f\x3e\xed\x4f\x46\x60\x0e\xfc\x84\x9a\xab\x1a\xe8\x69\x17\x2f\xa3\x27\xc4\x34\xf7\xeb\x8f\x4d\xbb\x79\x1d\x92\xa8\x27\x0f\x48\xc5\xea\x49\xae\xe2\x73\x85\xc6\xf5\x5c\xb6\x18\x96\x0a\x47\x4d\xf6\x26\x9b\xe0\x03\x3b\x4e\xd3\x3e\xce\x37\x21\xde\xa3\xab\x52\xe5\x7c\x49\x3e\x21\x6f\x0c\xcd\x5d\x6c\x28\x72\x30\x47\x21\x4d\xc9\x2c\x38\x54\x53\x78\xff\x22\x0e\x0e\x99\xed\x4c\x43\x13\xe7\xe3\x4f\x72\x8d\x45\x96\x6d\xbc\xf7\x6c\x9b\xad\x81\x05\xf9\x29\xff\x6c\xd5\x27\x8c\x8e\x29\xa7\x8d\x47\x24\x24\x27\xf3\xb6\x33\x4e\xb6\xab\x7a\x62\xbc\x43\x85\x7c\xdf\xae\xf4\xb6\x2c\xbe\x51\x3c\x2b\x7a\x8c\x27\x1e\x42\xbe\x64\x10\x06\xe1\xc8\x69\x25\x64\x95\xd7\x9c\xf5\x5a\x99\xcb\xf7\xd7\x8e\xe2\xd4\x39\xaf\x7b\x9c\x1e\x51\x68\x81\x8b\xe7\xd1\xd0\x3c\xcd\x84\xef\x32\x17\xc7\x8e\x91\x2e\x89\x3e\x46\x73\xfd\x9e\x6a\x46\x48\xef\x7c\xe6\xfb\x90\xba\x49\xe0\xb8\xd3\x04\xd4\xa5\x44\xee\x3a\x93\xa6\xd0\x30\x3f\xb6\xa0\xc3\x03\x86\x89\xb3\x45\x73\x0e\x94\x5b\x72\x09\xa4\x18\xf5\x1f\x93\xc2\x38\xd5\xdc\xff\x56\xaf\x89\x38\xf7\x6e\xed\x73\xef\xc6\x9a\xd3\x34\x09\xaf\xff\x32\x9d\x8d\xf7\xd3\x1d\x19\xd2\x0a\x21\x1d\x6f\xec\x5d\x91\x82\xd1\x33\x7f\x7b\x8d\x4b\xe2\x1b\x41\x8d\x3e\x39\xfb\xae\xf3\x8f\x28\xf6\x27\xdd\xad\x0e\xf6\xd8\x48\xa6\x33\xbc\x9e\xa4\x09\xb6\x35\x2b\x92\x66\xe0\x1e\xd2\xa7\xe8\xb9\xb3\xfd\x49\x60\xf7\x7b\x1f\x0c\x88\xdd\x50\x69\x30\xce\x72\xa4\xe9\x89\x6e\x6b\xe4\xa1\x56\xe5\xb1\x99\x7a\xdc\x72\x9c\x2d\x68\x64\xe6\xfe\xa4\xe4\x47\x7b\x6c\x83\xa3\x2c\x48\xef\xf7\xda\x08\xb5\x01\x08\xd5\x44\x2a\xa4\xdb\x61\xe4\xa9\xdb\x44\xc2\x7a\x3b\x65\x9f\x0f\x42\xd7\x3c\x3b\x9e\x92\xe8\x22\x6b\x82\xa8\x17\x12\x43\x11\x27\x50\x53\x45\x95\x7b\xdd\x4e\x73\x48\x06\x65\x9f\x10\xbb\x94\x66\x07\x90\x79\xf7\xe6\x01\x05\xd0\x6b\x40\x18\xa4\x95\x46\xc2\x0f\x4a\x1d\xa1\x7c\x61\x38\x2c\x48\x0c\xec\xa1\x4e\xcb\x0f\x3c\x21\xdf\xec\x44\xf1\xb0\x6d\xda\xff\x54\x50\x93\xfb\xa6\x86\x4c\xb9\x9f\x7c\x29\xed\xf7\xca\xe4\xd5\xe2\x59\x0e\x1d\x5d\xeb\xcb\xc5\xfc\xba\x78\x22\x8f\x5a\xf8\x62\xe2\x24\xa8\xf4\x4f\xf2\x20\x81\x2f\xd5\x1b\x53\xdc\x8e\x38\x55\xb1\xbf\xd5\x63\x9b\x29\x43\xb8\xd4\xeb\x34\x62\xd4\xf5\x89\x0c\x12\x48\xdf\x43\x02\xfa\xfd\xb0\x5f\x3c\xb9\xf7\xc4\xbf\x78\x66\xa4\x0b\xc1\x24\xb9\x8b\xe7\x88\xb0\x22\x90\x68\xa0\x95\x16\xa6\x73\x95\x32\x70\x52\x9a\xcc\x6f\x71\x24\x37\x0d\x31\x62\x27\x30\xfc\xf8\x76\x51\x9d\x34\xe5\xb6\xbb\x8d\xf2\x5e\x52\x86\x4b\x9e\xe9\xe0\x60\xc0\xf9\xe1\xc0\x01\xf9\xcc\x4c\x76\x84\x41\x73\x1d\x84\x85\x8b\xf1\x4c\x58\xda\x88\xe6\x12\x57\x9b\x9e\x0c\xdf\x86\x3f\x17\x86\x5f\xed\xa5\xf9\x64\xe7\x12\x79\x12\xbc\xb4\x60\xb6\xe1\xf5\xb1\x70\xc0\x5e\xa6\x32\x06\x3b\xa0\xef\x9f\xa2\xbc\x81\x9a\x4e\x71\xf0\x86\xef\xb8\xe2\x47\x27\x39\x39\xb3\xc3\x78\x5a\x71\x1e\xfb\x4a\xfc\xb7\x1b\x0e\x0a\xcc\x55\x51\x38\xe5\x52\x23\x33\xb9\x25\xff\x88\x54\x98\xbc\xa0\xe5\x13\x9f\x1d\x3b\xe2\x4e\x4e\x62\x77\x3b\x71\xee\x71\xab\xa9\x03\x61\xad\xf6\x7b\xc5\x25\x5a\x10\x56\xcd\x70\xba\x6c\x8e\x71\x1c\x27\x5a\xfc\x35\x04\x68\x78\x29\xca\x3a\x06\x8c\x28\x2a\x9e\x24\xac\xe1\x7e\xbe\x40\xbe\xba\xc4\x80\xe0\x49\x87\xb7\x56\xda\x0f\xb4\x8d\xcc\xd2\x29\x6d\x89\x9c\x14\x94\xcc\x8c\x7a\x9c\xce\x93\x97\x72\x88\x69\x83\xe8\x62\x70\xe8\x94\x66\xcc\x53\x03\xf0\x56\xd7\xcb\xef\x6b\xe7\xfc\xf0\x8a\xf8\xe6\x65\x95\xbc\xc1\xed\x53\xc2\xae\x4c\xdb\x01\xc5\x7c\x16\xa2\xf9\xc4\xb0\x8e\x95\xd0\x15\xef\xd3\xf3\xcd\x63\xa2\x31\xc4\x9d\xc1\x21\x60\xdb\x50\xf0\xda\x33\x75\x84\x3e\x7c\x0c\xc2\xee\xfe\x5e\xc2\x08\xdc\x92\xe2\x47\xc6\x7f\x15\x81\xf9\xcd\x33\xf2\xa7\xf1\x63\x73\x62\x47\x16\xbc\xf5\xc3\xc9\x46\x3f\x46\x4d\x7e\xf3\x7c\xf6\x9d\xa9\xfd\x80\x3a\x8c\xa7\x06\x7f\xbc\xbd\xd4\xe3\xf6\x89\xdf\x22\xc2\x29\xea\x4e\x9f\x09\xdf\x2e\xb6\x70\xb0\x62\x5c\xdd\x70\x87\x2d\xd5\xe3\x49\x92\x12\xf9\x70\xd6\xd0\x6b\xdd\xd4\x22\xd9\xd7\x9a\xb9\xc8\xf5\x55\xd6\x4e\x17\x16\x79\xc5\x85\xe7\x7a\xf4\x2d\x78\x3c\xb1\xc2\x50\x7c\x3d\xf3\xef\x3a\x2f\xa2\x77\x9b\xf9\x71\x46\xd6\xea\x2d\xa2\xe7\x4d\xf8\x89\x14\xa2\x31\xef\xf5\xf5\x94\xf4\xad\x94\x5b\x1f\xa9\xd1\xf7\x7e\x54\x42\x39\x1a\x3c\xff\x63\x25\xe1\xe6\x46\x58\x4b\xf7\x20\xf7\x4c\x9d\x04\x49\x10\x42\xb4\xec\xd9\xb5\xed\x24\xf5\xc5\xb6\xa9\x31\x0e\x00\x83\xd7\x82\x98\xf7\x24\x8e\xd4\xe2\x51\xcb\x0d\x98\x25\xb3\xe5\x3c\xcb\x92\x7b\x99\xcb\x7c\xee\xe5\x59\xd7\x74\xc4\xe2\xbc\xc4\x7f\xf1\x6c\x54\x31\x0b\x10\x60\x6d\x37\x01\x8f\x78\xb5\x33\xfd\x8b\x1f\xd1\x09\x15\x9a\x9d\x69\xdd\xe2\x83\x53\x48\xdc\x03\x4d\xd2\x6c\x59\xb3\xde\x4b\x82\x24\x9c\xd0\xec\x19\x66\x0c\xb6\xc7\x2d\x62\x6a\xd0\x25\xdc\x07\xf8\x55\xa2\xe1\x93\xeb\xfc\x22\x97\x7f\x42\x0a\x4f\xd5\x16\x78\xaa\x36\x79\x1a\xe9\x30\x2a\x8f\xaf\x82\xe4\x83\xa4\x3e\xf7\xcf\x03\xc5\x9f\xd2\x1d\x8b\xbf\xc0\x9f\xb7\x4c\x4a\x90\xfe\x2b\x29\x10\x27\xea\x41\x11\x8e\x6d\x5c\x12\x3b\xc8\x46\x53\x8a\x5c\x65\x07\xe5\xfb\xb2\x40\x27\xc3\x84\x47\x8b\xe2\x62\xc9\xa5\x97\x0e\x1f\x25\xa2\x4a\x07\xaa\x71\x66\x24\x75\x33\x61\x2f\x52\xba\xc4\xdf\xd5\xd2\x3b\xe8\xde\x05\x56\xc4\xa5\x12\xdb\x1e\x97\x74\x37\xff\xc0\x21\xbd\xe8\x20\x2e\x57\x22\x37\x59\x17\x69\x73\xe1\x07\xa3\xb2\x67\x5c\xc5\x99\x5d\xe6\x53\x28\x99\x66\x77\x3f\x08\xf8\x39\x59\x59\x5e\x75\xf7\x6f\xb8\x4f\xd6\x69\xfb\x9a\x98\x7e\xc4\x63\x77\x49\x0d\x84\x38\x21\xd2\x8e\x33\x68\x37\x92\x36\x91\x68\xb7\xbe\xfb\xeb\x5e\x96\x50\x87\xa9\xef\xf9\xb0\xdb\x5b\x9b\xfb\x0b\x96\x13\xdd\xc8\x17\xd7\x30\x92\xc8\x23\xff\xe2\xf4\xda\x0d\x7d\xeb\xad\x2d\xee\x50\xf1\x53\xba\x36\x62\x5f\x3c\x3f\xe5\x70\x4c\xbd\xa7\xec\x27\x75\x94\x4e\x76\xaa\x9b\xdf\x34\x65\x56\x49\xc2\x51\x15\xf1\xff\xe9\x64\x5d\xae\x00\xf7\x55\xcf\x44\x4c\x60\x6f\xef\x2e\x9e\xf2\x44\x67\x76\xd0\xdb\xd4\xfc\xcd\x47\x17\xc0\x77\x79\xbd\x71\xcf\xe9\x8b\xc2\x3c\xaf\xaa\x2c\x5c\x7e\x1c\x2c\xd0\x16\x36\xeb\x60\x1f\xaa\x1a\xdb\xb1\x0e\x9d\xe3\xa3\x3f\xd2\xa1\x5f\xc2\xd1\x27\xf7\x98\x5d\xd0\x8c\xf7\x6b\xd7\xe3\x25\x6c\xca\x6e\xb9\x59\xe9\xd4\xe1\x51\x2c\xef\xd6\xe8\x1b\x73\x74\x2c\xbb\x29\x38\xed\xe9\x60\x8c\x20\x3e\xc3\x65\x23\xa6\x6b\x79\x74\x4b\x5e\x51\x95\xb1\xf6\x02\x97\xa8\xe2\x75\xbd\x82\x1e\x12\xaf\x78\xb0\xab\x03\x51\xea\x07\xcc\x92\x89\x13\x9e\x4b\x49\x7b\x30\xa7\x0a\x0f\x25\x41\x5d\xf9\xde\xb0\xed\xdf\x1e\x64\xf7\x72\x17\xeb\xa2\xfc\x91\xdc\x01\x54\xc9\x3e\xe0\x7b\x85\xe3\x06\x44\xb7\x0e\x1e\x99\xae\x85\xfb\xb7\x8e\x3f\x85\x4c\x83\x7b\x25\x42\xa0\xd6\x4d\xb6\xbb\x05\x83\xa2\x41\x22\x87\x9c\x74\xa5\xfe\xd0\x8a\xd6\x46\xa9\x64\x50\xd1\x25\x99\x44\xef\x71\xea\x15\xe8\x76\x60\x8d\xac\x8c\xcf\x5f\x6a\xfc\xd3\xb5\x8e\xcb\x18\x3c\x24\x05\x0d\x99\xd3\x6b\xee\x81\x43\x3c\xc5\x44\xcb\x38\x9c\x50\x26\x0e\x6c\xd3\xe7\x4b\xcf\xb5\x87\xd2\x1e\x20\xc5\x8c\x02\x87\x43\xd0\xf0\x1d\x11\x86\xc5\xe3\x9e\x0d\x78\xc8\x40\x9b\x73\xac\xfb\x19\x3e\xf7\x09\x9d\x26\xe1\x07\x0c\xe2\xa6\x69\x11\x82\x5d\x9b\xc5\xb7\xee\x2f\xab\x0f\x41\xa5\x07\xcf\x35\x20\x16\x9a\xce\xd6\xb2\xe7\xa4\x86\x3f\x44\x8f\x55\x3c\x83\xa1\x85\x43\xb4\xb4\x75\xd4\x98\x19\x2b\xd7\x14\x7a\xf3\x95\x58\x57\x5c\x13\xfe\xce\x14\xa1\xc1\x8b\x73\x51\x4b\x6d\xd3\x9c\x43\x12\x8b\x9b\x50\x09\x3f\x24\x1e\xaa\xf2\x7b\xcf\xc8\x19\x47\x90\xed\x77\x4b\x40\x02\xfc\xa1\x7b\x56\x55\x5f\x84\xd1\xab\xe7\x94\x2b\x27\x20\x19\x4c\x6f\xd0\xc1\xc1\x51\xe5\xb4\xe8\x7e\xa9\xe3\xc6\x48\x03\x34\x1a\xf9\xa4\x3c\xf7\x5a\xd6\x89\xa6\x0e\xb2\x17\x26\xdf\x4d\xc0\xf5\x65\x4e\x38\xfb\x1d\x7d\x8b\x51\x8e\xeb\xee\x85\x4d\x68\x32\x01\xa6\xb8\x69\x59\x90\x8c\x3d\xd5\x8c\x58\x7d\x3c\x9a\x6e\xf7\xb5\x63\xc7\xa6\xe9\xed\xff\xe8\x7c\xd5\xce\x38\x3d\xdf\x8a\x61\x95\xe2\x00\x37\x6e\xce\xdf\x10\x31\x44\x12\xe9\x37\xa0\xb8\x93\xa3\x9c\x37\x4d\x07\xd1\x6f\x07\x26\x9b\xfd\x55\x87\xc0\x3c\x2d\x61\x62\x76\xd5\x52\x4e\x9b\x1a\xec\x85\x28\xb7\x1b\xc3\x72\x8b\x7c\xcc\x34\x58\xdb\xb3\x5c\x6e\x27\x46\xc4\x11\x3f\xf3\x15\xb2\x67\x67\xd4\xe2\xb6\x1e\xfc\xd8\xc3\x46\x6e\xf8\x78\x4f\xb6\xab\x9c\x8e\xf7\xaf\x9b\xc0\x31\x9a\xdc\xda\xc7\xe4\x14\xb8\xd9\xd4\x1c\xe4\x8d\x46\x5c\xc6\xe7\xfd\xea\xad\xe9\x10\xc9\x79\xb1\x64\x6f\x97\xd0\x93\x3c\xdc\xc8\x31\x1b\xa0\x46\x22\x49\xb2\x50\xc9\x8e\x8c\xd4\x02\xdf\xa4\xf7\xf8\xea\x5c\xd1\x96\x74\x39\xfb\x32\xc5\x9b\x42\x45\x5e\xfe\x39\x9e\x9a\x54\x43\xec\x61\xbb\x54\x89\x2b\xf7\x27\x37\x74\x12\x9d\x66\x31\xfa\x70\xa0\xab\x13\xc1\x26\xb6\x1a\x39\xee\xe4\x1a\x5f\x5d\xaf\xe0\x1b\x02\x43\xa3\x58\x19\x68\x0a\x1a\xd7\x18\xd5\x67\xf9\x92\xea\x0b\x41\xf6\x89\x20\xdc\x73\xcf\xdf\x1e\x8f\xc8\xa3\xab\x7c\x9a\xd3\xd9\x42\xa7\x42\x15\xa7\xea\xed\x50\xc5\x57\x9c\x18\x55\x2a\x84\x57\x85\x26\xaa\xea\x70\x8e\x50\xf1\xb5\x49\x15\x44\xb4\x97\xd0\x26\x7d\xd4\x86\x90\xcf\x54\x8b\x6f\xe9\xfa\x73\xf8\x94\x08\xfe\xd2\x80\x5f\x8d\x74\x56\xa0\x51\xa6\x65\x7d\xe0\x42\xab\xaa\x30\xa2\x3f\x1d\x17\x5d\xc8\x63\x97\x08\x55\xd6\x0f\x21\x1b\x5b\x50\x25\xcb\x27\x65\x24\xf5\x4e\xd7\x42\x4d\x54\xa9\x19\x2a\x5d\x29\xbb\x6d\x4b\xfa\x32\x0d\x94\x5d\x5f\x27\x66\x82\xe7\x71\x90\x52\x71\x60\x7c\xae\xb3\xad\x37\x2a\xc6\x9e\xee\x61\xb9\xe3\x50\x35\xce\xc7\x36\x4a\x9d\x30\x8a\xb0\x93\x2e\x12\x17\x30\x5d\x31\x0b\x3c\xe2\x02\x28\xee\x5a\x76\xe2\x49\x6b\xad\xcc\x89\xce\xc5\xa2\x6b\x6c\xdc\x41\xd5\x90\x9c\xba\x9c\x76\xd4\xdf\xdf\x9d\x7f\xe4\xd1\xbf\xd5\xc0\x6e\x54\x0f\xe0\x0e\xe7\x1f\x93\xd0\x24\x0c\x62\xbc\x6d\xdd\x4a\x7e\xeb\x6b\xad\x01\x0e\x1e\x75\xe2\xb4\x0c\xc7\x31\xd2\x94\x76\x19\x10\x25\x3c\x8a\xc2\xc9\x82\x04\x6d\xa2\x8a\x8c\x38\xa1\x92\x53\xc4\x33\x46\x0e\x1c\x08\xf2\x29\xf4\x62\xd3\x3e\x82\x5a\x98\x93\x8b\x7a\x52\xbd\x3c\x1f\x82\x3c\xca\xff\xef\x7c\x4a\x05\xf1\x59\x75\xd8\x36\x4e\x36\x80\xd8\x91\x74\x2c\x29\xee\x25\x77\xfd\x9e\xce\x83\x02\xd4\x66\xb5\xbc\x3b\xc0\x61\xda\x8c\x8e\xd2\x7e\x2a\x41\xfe\xe4\x86\x4c\x38\xbb\xcb\x17\xad\x7d\x8b\x05\x3a\xdd\x83\xd1\xb3\xe1\x23\x00\x27\xaf\x85\x7b\xb5\xf9\x6f\x7b\x1e\x3c\x1e\xd3\x3d\x9c\x1e\x86\xcc\xc3\x58\xdb\x60\xc1\x48\x4d\x1d\x87\xd1\xb3\x58\xb4\xf8\x4d\xde\xf3\x1d\xd6\x47\xaf\x81\xc7\x41\xc1\xf3\x18\x1e\x83\x88\x3a\x3f\xea\xc7\x12\x62\xe0\xa5\xe8\x39\x07\x84\xee\x23\x9e\xa9\x6a\x94\xeb\x7b\x8a\xc8\xbf\x06\x7e\x43\x5c\x36\x74\x1b\x12\x95\x2a\xd3\xc1\xfd\x23\x79\xfa\x28\x95\xf7\x3d\x00\x14\x8d\x2f\x3f\x07\xa6\x65\x29\x94\x67\x3c\x2c\x27\xfe\x2f\xa1\x33\xd7\x72\xa4\xfa\xe7\xb7\x27\x8d\x1b\x67\x9c\x3e\x9e\x95\xbc\x4a\x9d\x92\xd9\x9e\xe2\xbf\xa9\x29\xcc\x4d\x7e\x48\xa6\xac\x76\x82\x5c\x47\x93\xaf\x82\x0a\xdd\x9c\x22\x70\xda\xd0\x2d\x52\x7e\x86\x04\xcb\xf2\x5b\x9e\x52\xf6\x97\x90\x96\x4e\x39\x82\x45\x8b\x89\xe2\x31\xf6\x0d\xcb\xf5\x52\xfd\xdb\x9e\x9a\x83\x78\x0a\x29\xbc\x68\x6c\xb7\xf8\x0e\x51\xb2\x5a\x80\xa3\xbf\x38\xa5\xff\xe8\x6f\x56\x95\x15\xf5\xe2\x11\x14\x63\x8f\x9f\xc7\xa5\xfe\x65\x60\xfe\x96\xbc\x05\x3c\x51\xcb\x11\xfe\x23\xa4\x88\x02\xed\xe7\xfb\xef\xf7\xd9\xb1\x49\x9a\x32\xc9\xb5\x5d\xb3\x7a\x2b\x41\xcc\x9c\xb3\x67\x9e\x3d\xd7\x5b\x46\x9f\xb6\xa8\x06\x8d\x5c\xaa\x56\xa6\x73\x8d\x1a\xc2\x81\x67\x25\xa1\xc8\x86\x85\xdd\xca\xe0\xee\x9f\x3b\xc0\x83\x01\xe1\xc4\x8d\x11\xb3\x01\xd6\x91\x04\xda\x8c\x73\x39\x46\xf5\x68\xf9\x71\x2d\x0f\x85\x9c\xe8\x5e\x79\xde\xc3\x37\x00\x1b\x70\xa4\x3f\xa1\x76\x87\xeb\x6c\xed\x91\x21\x54\xb4\x7d\x3b\xaa\xab\x3e\x93\xeb\x7c\x0b\x9b\xc9\xa8\x89\x3c\x3c\xeb\xeb\x63\x87\xf5\xf5\x61\xa9\x29\xf9\x24\x5d\x22\xc9\x98\x97\xd0\x9e\xd8\xe4\x95\xd6\x1a\x5c\x4b\x52\x71\x8b\xab\x6d\x69\xf3\xc5\x33\x58\xd8\xb3\xb3\x23\x2d\xb7\xdb\x6e\x27\x4f\xd4\xec\x41\xc5\xec\xec\xd9\xcb\xd3\xa8\x72\x40\xaa\xe1\x17\x8f\x5d\xf1\x07\xf5\x74\xd3\x80\x1f\xeb\x30\x34\x7a\xb8\xc5\x4e\xd7\xfc\x14\x5e\x82\xa8\x19\x2d\x58\x32\xdf\xb2\x61\x43\xfa\x9e\x67\x48\x93\x5d\x4a\x24\xba\x1b\xaf\x68\xca\xe8\x31\x43\x1a\x97\xc8\x90\x8b\xf5\x65\xbf\xe8\xb2\xdd\xf4\x34\xc8\x2f\xff\x74\x98\xfd\xf2\xaf\xf3\xe4\x64\x2f\x3b\xbc\x23\xed\x9e\x53\xa7\x9b\xed\xa2\x5c\xaf\x95\xc9\x7b\x79\x72\xe6\x60\xf0\xb6\xdc\xa1\xe6\x12\x31\x59\xc4\x28\x3e\x97\x49\x86\x97\x7d\x43\xd5\x1d\xac\xbf\x30\x32\xad\x4c\xe2\xb0\x7e\x26\x65\xd9\xe9\xd1\xb3\x74\x02\x9c\x11\xcf\x71\xa2\x8b\x63\x67\x5b\xe0\x87\x84\x34\xdb\x9e\xa3\x4d\xe5\x0e\xba\xc6\xda\x9a\xb2\x72\xa0\x4d\x72\xf6\x4a\x76\x9f\xc4\xfd\x6e\x1f\xf9\x09\xdc\xf5\x10\x29\x94\x6f\x32\x81\xb0\xa6\x2c\x2d\x3f\xb5\x3c\x6c\xf4\xcb\x3f\xdd\xb5\x04\xdb\xdb\x63\x81\xe6\x09\xf5\xdc\xe3\x6e\x37\x85\xa7\x1f\x7f\x65\x3d\xee\x78\xcc\xd8\x7c\x0c\x28\x0e\x98\x13\xb9\x81\xf8\x81\xec\x3d\x84\x59\x19\x24\xa6\xf8\xd3\x7e\x09\x9f\xd0\x32\x32\x64\x8f\xd6\x7d\x99\x3b\x9c\x8e\xbc\x15\x2e\xf7\xc4\x23\x45\x5d\x97\xe9\x4b\xdb\xfb\xc0\x79\x4b\xf0\x91\x28\x3c\x9d\x02\x71\xca\xd6\xea\x70\x5a\x5e\x35\xe1\xda\xf9\x6e\x37\xb8\xd2\x8e\xc2\xd3\x8d\x71\xa5\x4b\x4e\xfb\xd8\x06\x38\xed\xa9\x97\x84\x0a\x4f\xd4\x19\x5c\x8d\x5a\xda\xac\xd7\x15\xfd\x44\xf6\x66\x64\xe4\x67\xad\x6a\x6b\x1f\x70\x94\x83\x6f\x29\xae\xdf\xcb\x96\x39\x06\xc8\x46\x10\x1b\x6d\xee\x08\x41\x9e\xfd\xb1\x01\xc9\x0f\xfa\x92\x3e\x7b\xd1\xb8\x37\x5c\xb8\x8b\xb6\x67\x75\x57\x8b\x7c\x06\xad\xc8\xb5\xd1\x6d\x13\xd7\x0a\x13\x81\x97\xb5\x98\xc7\xa2\x55\x30\xb7\xd6\x36\x4d\x27\x0f\x56\x3d\xd9\x72\xca\x11\xef\xd3\xea\xd9\x35\xb7\x27\x50\x56\xae\x96\xf2\x30\xce\x64\xab\x17\xf9\xaa\xac\x39\xbd\x8b\x7b\x62\x8e\x8d\xd3\x20\x24\xda\x07\xad\xf7\xd7\x75\xa0\xd0\xf0\x73\x60\xc7\xa8\x34\xee\xf4\x8c\xcb\xc2\xa2\xe0\xe5\xad\x38\xce\x60\xd2\x20\x10\xec\xe4\x10\x21\x79\x7f\x27\x80\x57\x9c\xef\x41\x3d\x56\xca\x3f\x52\xa3\xb7\x0b\x60\x8b\x5a\x05\x2e\x2e\x94\x45\x2c\x53\x28\xf4\xdc\x5f\x28\xe2\xc9\x4e\x4f\xc6\xda\x2a\xda\xcc\xb3\xb3\x93\x89\x6f\xfe\xe9\xc6\x3b\x48\x26\xbf\x21\x72\x70\x27\xeb\x7d\x88\xf9\xfd\xa8\xc5\x10\xec\x83\x4f\xbe\x23\xbe\x16\x7f\xf9\xa7\xcc\xfe\xb9\x2a\x3b\xf3\x25\xc8\xac\xe9\x50\xf0\xf2\xe9\xe3\x47\xf4\xeb\x7e\x7c\x5a\x4b\x0e\xee\xda\x7f\x5c\xe9\x7b\xd8\x22\xd5\x7e\x24\xaf\xe0\x0f\xdf\xb3\x4b\x5e\xbf\xc7\x8d\xea\x1f\xd0\x1f\x1e\x25\x77\x85\x25\x07\xe9\xe0\x49\xa2\x38\xf1\x53\x45\x48\xa1\x7e\x10\x1d\x1c\x31\x49\x1d\x1c\x3d\x42\x6c\x61\x76\x4e\x07\x6e\x42\xf9\x12\xe6\x2f\xc9\xf2\x5d\xf2\x7c\x0e\xac\x0a\xf7\xe7\xf7\xe7\x74\xe2\xf3\xae\xf1\xa9\x23\x5f\x85\x78\x2b\xed\x41\x6f\x60\x51\x75\x8a\x83\x77\xc2\x0b\xb0\x72\xb3\x38\x38\xe2\x2f\xae\x11\x03\x4b\x15\x46\xcf\x10\xe1\x26\x37\x4c\xac\x2f\xb2\x43\xd8\x70\x50\x6d\xf9\xde\x48\xd2\xe1\x21\xa9\x51\x36\x62\x15\x23\x37\x62\xe7\x34\xdb\x47\xc5\x37\x5f\x5d\x6e\xa1\xf6\x1b\xce\x7c\x47\xe2\x57\xae\x93\x7e\x2f\x93\xe6\x22\x4f\x46\x25\xd6\x1e\xf1\x7e\xcb\x8a\x0d\xc5\x27\xe5\xb6\x54\x37\x09\x0e\x00\x94\xe0\x7c\x0f\x53\x6b\xba\xc0\xfb\x47\xcd\x5e\xdc\x7c\x28\xa3\x67\x26\x69\xa4\x67\xc4\xc9\x3f\x86\x12\xd1\xaa\x76\x62\xd0\xb3\xeb\xd3\x65\xf6\x98\x44\x4b\x17\x00\xaf\x75\xe9\x98\xf4\x34\xa2\xa9\x37\x74\x36\x4e\x1a\x3c\xd4\x29\x86\x31\x02\x09\x08\x16\x2e\x6f\xc9\x7a\xeb\x41\x2c\x91\xf2\xac\xb5\x24\x7c\x59\x3c\x79\xb7\x2b\x1d\xca\x1f\x40\xa1\x57\x7a\x9c\xfb\x14\x26\x2e\xda\xe4\x5b\x2e\x3e\xde\xf7\xbe\x1d\xd4\x1e\xca\x8a\xe9\x57\x87\x0b\x74\xac\x9b\x04\x03\xbe\x7b\x72\xf2\xfd\xa0\xee\x90\x2c\x69\xf1\x98\x84\xe9\x87\x7d\x34\x4b\x7c\x25\x26\x57\xc1\xce\x12\x69\xbd\x3d\xf3\x97\xe3\xb1\x0f\x14\x62\x38\x48\xaa\xe6\x05\xe1\x20\x28\x3e\xfe\xf5\x8f\xe7\x4e\x54\x1c\xbd\x14\x6a\xec\x9e\x9a\x70\xb9\x21\xcc\xd5\x64\xdf\x83\x2a\x56\x58\xae\xbd\x77\xc5\x99\x46\x1b\x0c\xaa\x23\xc4\x14\x8e\xab\x8b\x6f\x70\xb9\x41\x14\x11\x54\x1b\x54\x77\xd5\x86\xdd\xcb\x21\x88\xda\xfa\x19\x13\x3e\x97\x29\xf3\x7f\xcc\x45\x83\xc3\x8b\x93\x26\x75\x23\xa2\x63\xb5\xae\x27\x21\x9b\x95\x07\x93\x18\x02\x1c\xac\x60\xe4\x18\x2e\xa9\x2a\xd7\x66\x39\x30\xf6\x0e\x96\x73\xd1\x75\x3b\x2b\x99\x4f\xf8\xc9\xce\xe8\x72\x1a\x2c\x20\x74\x16\x9f\xa9\xe1\x62\x76\x25\xdb\x82\xf6\x00\xff\xe0\xe9\x56\x9e\xb7\x4b\xea\xea\x45\xb5\x70\x32\x91\x56\x6b\xcb\x11\x7f\xb6\x69\x95\x2c\xc7\x07\xe6\x5b\x2d\x8c\xb9\x99\x7d\xe8\x39\x60\x5c\x50\x35\x62\xc7\xc2\x77\xe7\x22\x38\x5f\xb5\x74\x0b\xbd\x54\xcf\xaa\xe3\x16\x49\x79\xf5\x8b\x3f\x94\xae\xc0\x52\x9d\x82\x78\x9a\xc5\x69\x95\xd7\x81\xc7\xf7\xf5\xf1\xfe\x91\x3e\x7d\xe4\x0b\xc3\xb3\x49\xe1\xc5\x24\xff\xd1\xbc\x33\xf0\x9c\x1a\xda\x98\x23\x9e\xd1\x46\x1d\x35\x4e\x9d\x8e\x7f\xfb\x90\xa1\x7e\xc0\x65\xba\x06\xe3\xac\xd5\x6e\x19\x04\x4a\x22\x2b\x46\x1f\xab\x27\x48\x6f\xf3\xb6\xc5\xb6\x4d\xcd\xcb\x55\x4c\xc6\x70\x8e\x97\xce\x9b\x51\x7e\x2e\x91\x2a\x6b\xe4\x8b\xe9\xaa\x06\x1e\x2d\x2e\x59\x7e\xee\xec\x37\xbe\x78\x34\x71\xf7\xa1\xd9\x45\x3e\x95\x51\x75\x16\xae\x82\xcc\x8a\x04\xa3\xce\x82\xb7\xd7\x0f\x7b\xf6\xa3\x78\x24\xbe\x4e\x9e\x41\xce\x35\xc9\x75\xc8\xe8\x99\xa6\x4c\xb9\x2b\xef\x67\xb5\xa6\xf6\x39\x6a\x5b\x73\x4e\x54\x8f\x3d\x43\xa2\x56\xd1\x63\x12\x9f\x87\x47\x23\xe4\x41\xa4\x3d\x8f\x72\xf9\xb7\x8f\x78\x1e\x92\x83\x68\xd0\x02\x6f\x71\xd8\x76\xf5\x70\xd8\x56\x82\x61\xd2\x8a\xf8\xfc\x37\xae\x6b\x59\xa2\xbc\x1c\xf5\x53\xae\xf9\xe9\x21\xc1\x84\xf7\x94\xa2\x75\x3e\x14\xd5\xed\x43\x59\xf1\xef\xa2\x67\x93\xb4\xa3\xf4\x9d\x11\xfc\xca\x5c\xea\x7b\xb1\x74\x19\xcd\x6d\xe5\x7b\xd4\x17\x44\xc6\x1d\x26\x8f\x5a\xfd\x94\x87\xf7\xcd\xd4\x3e\xf1\x6b\x66\x37\xf1\x22\x40\x3a\xb9\xf0\x08\xc8\x27\x4e\xcf\xe7\xd3\xd4\x5d\x89\xd3\x65\xc6\x38\x22\x5b\x3d\xbd\xcf\x01\x6d\x38\x93\x12\x9e\x62\xf5\xdb\x5b\x49\x08\x76\x3c\x15\xde\x5f\x7b\xe7\x6b\x3f\x8b\x31\x0e\x0c\xb0\x86\x1f\xb1\xf9\x22\x7e\x5d\x44\x5e\xd3\x81\xd9\xf0\x8b\xe4\xe1\xd2\xd9\x8f\x5d\xd3\x54\xaf\x67\xf9\x86\x16\xd3\x43\x47\xc2\xb4\x8a\x9f\x28\x46\xd8\x54\xf2\x18\x0a\x64\x6c\xe2\xbc\x50\x01\xdf\xa2\x9f\x9f\xdb\xc5\xe7\x99\x35\x44\x62\xa9\xda\x5d\x3b\xfb\x7c\x4b\xbf\x89\x63\x45\xe0\x1c\x7e\x5e\xd0\x4f\x7e\xf5\x9b\x7f\x15\xf4\x8b\xf5\x32\xf8\x71\xc5\x2d\x59\x7c\x97\x96\x44\x7c\xa9\x6d\x43\xb0\xc0\xcf\x6b\xfa\x91\xd7\xf8\x53\xba\xe7\xd7\x9e\x74\x24\xae\x21\xa3\x70\xb1\xfe\x89\xd2\x0b\x90\x41\x94\xf1\xa8\x5c\x54\xe4\xd7\x5c\x22\xb6\x21\x2a\xb8\x32\xe6\xad\x76\xa7\x6a\xc4\xbb\x4c\x5c\xbb\x0b\xe9\x4d\xa7\x70\x6d\x72\xe9\x0a\xf1\xcb\xf4\xbb\xcd\xaf\x96\x6e\x2e\x6e\x22\x5c\xe8\x66\xa2\xff\x12\x6c\x8b\xb6\xd9\x21\x8b\xf8\x6b\xff\x76\xba\x7b\xf5\x15\x14\xae\xb1\xc3\x47\xe6\xcb\x55\xc9\xd9\x28\xd8\x23\xee\xbd\xc8\x2c\x5d\x14\x6b\xdf\xce\x67\xee\x45\x80\xb2\xde\xf5\x2a\x7e\xbf\x1a\x3f\x20\x9d\x34\x62\xce\xdc\x8f\x21\x89\x6c\xf9\x29\x46\x79\x1b\x97\x10\x60\x79\x4e\x17\xe7\x89\x89\x5f\xaa\x57\xe9\xe3\xde\xdf\xfd\x1d\xfb\x45\x92\xe4\xf2\xf7\x7f\x4f\xfc\xfe\x7d\xc6\x70\xe6\xf7\x83\x88\xb2\xcd\xdf\xb1\x68\x82\xda\xf4\xf7\x37\x51\x83\x47\xf7\x91\x3f\x80\xe3\x12\xd8\xe2\x98\xa4\xbe\xf2\xd9\x58\xfe\x5f\x00\x00\x00\xff\xff\x32\xf8\x11\xf3\x94\xbf\x00\x00") func confLocaleLocale_frFrIniBytes() ([]byte, error) { return bindataRead( @@ -4419,12 +4419,12 @@ func confLocaleLocale_frFrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 49031, mode: os.FileMode(493), modTime: time.Unix(1446027988, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 49044, mode: os.FileMode(493), modTime: time.Unix(1448150136, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_itItIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\x7d\xcd\x8e\x1c\xc7\x93\xdf\x9d\x00\xdf\x21\xc5\x05\x4d\x09\x18\xb6\x20\xc9\x5f\x10\xd4\x92\x47\x43\x4a\xa4\x77\x48\xce\x9f\x43\x6a\xbd\x16\x84\x56\x76\x57\x4e\x77\x2d\xab\xab\x5a\xf5\x31\xa3\xd1\x62\x01\x3f\x80\x4f\x3e\xf9\xf8\x3f\xda\xc0\x9e\x7c\xf3\x59\x6f\xe2\x27\x71\xfc\x22\x22\xbf\xaa\xaa\x87\x94\x76\x2f\x33\x5d\x99\x91\x5f\x91\x91\x91\x91\x91\x11\x91\xf6\x70\x58\x15\xae\xdb\x2c\xdf\xd6\xa6\x73\xed\x75\xf9\x5b\xd9\x98\xef\xcb\xde\xd8\xa1\x6f\x1e\x37\xdd\xa1\xec\x6d\xdf\x98\x43\xdb\xd4\xf4\xcf\x56\xd5\xa3\xa1\x6b\xee\xdf\xbb\x7f\x6f\xd7\xec\xdd\xf2\x19\xfd\xb9\x7f\xaf\xb0\xdd\x6e\xdd\xd8\xb6\x58\x5e\xd8\xba\x76\x55\xd5\x98\xa2\x34\x1b\x2a\xd1\x36\xf4\x71\xff\x9e\xfb\xf5\x50\x35\xad\x5b\x3e\xed\xf0\xdf\x52\x61\x57\x1d\x96\xa7\x25\x35\x71\xff\x5e\x57\x6e\xeb\x55\x59\x2f\x4f\x37\x1b\x57\x94\xfa\xdd\x0c\x3d\x41\x6f\xfc\xe7\x70\x58\xbe\x76\xdb\xb2\xeb\x5b\xdb\x53\x5a\xcb\xbf\x5d\x9b\x25\xde\xb8\x75\x57\xf6\x6e\x79\x59\x52\x47\xff\xce\xad\xef\xdf\xbb\x76\x6d\x57\x36\xf5\xf2\x07\xf9\x4f\x3d\x3d\xd8\xad\xa3\x4e\x6e\xcb\x9a\x3a\xd1\xbb\xfd\xa1\xb2\x54\xe2\x8d\xfe\xb8\x7f\xaf\xb2\xf5\x76\x00\xcc\x79\x89\x1f\xf7\xef\x6d\x5a\x47\x19\xab\xda\xdd\x2c\xcf\xe8\xe7\x62\xb1\xb8\x7f\x6f\x20\x3c\xad\x08\x21\x57\x65\xe5\x56\xb6\x2e\x56\x7b\x8c\xed\x82\x13\x1a\x33\xf4\xae\xee\x9d\x71\x84\x2b\x1a\xbe\xf4\xdf\x15\x34\xc0\x95\xed\xa8\x6f\xf8\x30\x65\x6d\x6c\x07\x24\xa2\xaa\xda\x12\x22\x5f\x12\x22\xb5\x28\xa1\x6b\x6f\xcb\x6a\xf9\xf4\x31\xfe\xa1\xcf\x5d\x77\xd3\x30\x72\xe5\x07\xc6\xbf\xea\x6f\x0f\x6e\x79\xd6\xd4\x57\xae\xdd\xa3\x9f\xf6\xd0\x6f\x76\x76\x79\x26\xff\x51\x77\xeb\x0e\x0d\x21\xa4\x69\x6f\x09\x4d\xfe\xe7\xfd\x7b\x4d\xbb\xb5\x75\xf9\x1b\xa1\x8c\x30\xf3\x4a\x3e\x7e\xb3\xbf\x09\x7e\xf6\x65\xdb\x36\xed\xf2\x05\xff\xbb\x7f\x8f\x86\xbd\x42\x35\xcb\x97\x43\x73\xdd\x98\xb4\x1a\x64\xed\xcb\x6d\x0b\xfc\x21\xd7\x9a\x17\xf8\xd2\x7a\x90\x7b\xd5\xb4\xef\xb4\xe0\x77\xf4\x73\x52\x9a\x3a\xa2\x25\x9b\x71\x2f\x6c\x4d\x73\xc0\x00\xdf\xbb\xae\x2f\x89\x0e\x4c\xe5\x72\x30\x9a\x70\x5b\xec\x09\xab\x07\x4b\x14\x97\x11\x9e\xdd\x53\x3a\x93\x85\xd6\x67\x37\x9b\x66\xa8\xfb\x55\xe7\xfa\x9e\xe6\xb5\x5b\x3e\xdf\x53\x57\x7a\xa9\xc7\x14\x54\xee\x91\x82\xd0\x74\xcd\xc1\xdc\xbf\x77\xdb\x0c\x61\xce\xfd\x54\x6b\xea\x91\x12\x3c\xc8\x6e\x75\xe5\x5c\x41\xb3\xdb\xd3\xba\x02\xfd\x0d\x55\x45\x18\xfd\x65\xa0\x61\x75\xcb\x0b\xfa\x22\xb4\xc8\xd7\xfd\x7b\x65\xd7\xd1\x2f\xd4\xbe\xae\xdc\x9e\xab\xd8\xd8\x7a\x43\xa3\x3b\xad\x6b\x02\xe5\x59\xfd\xb1\x73\xb6\xdd\xec\x7e\x42\x4f\xf1\x63\xf9\xba\xdc\xb8\x76\x23\x94\x79\x64\xca\x41\x65\xcb\xb7\x4a\x5c\xdc\x8a\x6f\x04\x94\xd3\x14\x20\xa4\x82\xaa\xe1\xfa\xcb\x9a\xc6\x50\x55\xd4\x80\xfe\x5a\x3e\x97\xff\x1e\x9b\x7d\xd9\x03\x07\x44\x8c\x84\xbb\x47\x65\x9a\x69\x0e\xae\x35\x65\x45\xdc\xa2\xdc\x13\xb3\xb8\xbe\x2e\x09\x49\x45\xb3\x79\x47\x0b\x06\x4b\x9e\xba\x71\xe9\x0c\x15\x28\x89\xd6\xcb\x0a\x73\x59\x17\xc4\x6e\x9a\x6d\x67\xba\xc1\x3c\x61\xc8\x13\xae\xe5\xca\x5e\xd3\xaa\xa2\x69\xdf\x6e\x79\xf2\xbf\xb2\xa6\xb7\xed\xd6\xf5\xcb\x07\xab\x35\x2d\xd3\x77\x0f\xcc\xae\x75\x57\xcb\x07\x0f\xbb\x07\x5f\xd3\x6a\x75\xce\x6c\x87\xb2\xb0\x5f\x7d\x6a\xbf\x06\xeb\x31\xb6\xa7\x01\x6b\xaf\xa8\x3b\x96\x59\x92\xdd\xaf\x4b\x4b\xd5\xfe\x32\xd8\x6a\xd3\x74\x16\xad\x32\xfa\xad\x39\x30\x57\xf8\x08\x48\xfc\x65\x20\x3e\xb2\x2a\xd6\xc2\x18\xb9\x77\xb5\xdb\x38\x1a\x30\xc1\xbd\xb8\xbd\xfc\xcb\xf9\x89\xb9\xa0\xa9\xde\xb6\x8e\x7f\xd3\x1f\x2a\xf0\x85\x69\xcc\x9b\xf2\xc9\xb7\x34\x0f\x54\x54\xb0\x94\x11\xda\x13\xdb\xdb\xb5\xed\x9c\xe4\x63\xfd\xbe\x29\x0f\x4c\xb1\x45\xc8\xd9\x11\x38\x71\xd5\xae\x1f\xcd\xda\x0c\x13\xa0\x4a\x22\xeb\x20\x22\x4e\x6a\xa1\x2c\x45\xf7\x5b\x45\x33\x66\x65\xdf\xf4\x40\xe9\xf3\x97\x2f\x5f\x3d\xf9\x96\x71\x44\x73\x5f\x5e\x95\x1b\x4b\xb3\x71\xf5\x1f\x57\x5b\x57\xbb\xd6\x56\x2b\x5a\x6d\x98\x01\x1e\x28\x0d\xa6\xeb\x2a\xe2\x70\x44\x24\x2f\x9a\xc2\x56\x65\xff\xfb\x5f\xcd\xe5\xe5\x39\xba\xd4\xef\x96\x17\x44\x7b\x4d\x8b\x1d\xa1\xfb\xa5\x02\xd6\xb4\xdd\x37\x3b\x67\xb0\x56\x0c\xa0\x4c\x73\x15\x71\xd4\x32\x92\x42\x67\xa9\x01\xd7\xb6\x2b\xe2\xc0\xfd\x2d\x50\xce\xb5\x1e\x03\x96\xda\x68\x51\xd4\x4d\x6f\xd6\xc4\x64\x51\x4a\x6b\x28\xeb\x6b\xea\x5d\x41\x88\xf7\x88\xc9\x8b\x22\xc9\x14\x8d\xa3\xb9\xa4\xc2\x44\xb2\xcd\x8d\x21\x4e\xd9\xda\x0d\x6d\x24\x9d\x79\xb0\x78\x60\x88\x18\xcd\x83\xc7\x0f\xa8\xc2\xba\x59\x09\x77\x01\x7b\x2f\xca\xce\xd2\x62\x59\xb5\x61\xb3\x21\xce\xf9\xf7\xcd\xe0\x3b\xa2\xf9\x26\xcd\x37\x37\x65\xbf\xa3\x4d\xcc\xf0\x06\x42\xec\x81\x2a\x37\x5c\xa5\x51\x56\x93\x0d\xdc\xb3\x32\x9d\xe4\x53\x06\xf4\x9f\x33\x03\xbe\x7f\xcf\x4f\xd6\x0c\x9d\x11\x41\x7d\x8b\x11\x33\x63\x3b\x3d\x1c\x2a\x9a\x61\xcf\x09\x69\xb7\x8f\x44\x33\x9f\x17\x56\xea\xa6\x2d\xaf\x4b\x5a\x1e\x25\x88\xa7\x56\x2a\xab\x68\x1d\x0e\x63\x96\x6d\x88\xd7\xf3\x9e\xb7\xd9\xd1\xf2\x6a\x3e\x12\x4e\xb4\xca\x28\xc4\xbc\x6e\x80\x2b\x57\x65\x1b\x41\x80\x0b\x84\x33\x10\x37\x35\xa5\x89\xac\x8c\xa5\x91\xd6\x11\xf5\x96\xa6\xa3\xf9\x22\x5c\xd0\xff\xea\xda\x02\xae\xf6\xcb\xb7\x28\x5b\xb7\x01\x38\xd8\xe0\x40\x12\x03\x56\xcf\xd3\xce\x11\x53\x60\x52\x27\xb9\x45\x97\x92\xcf\xf5\x2d\x9e\x6b\x0e\xf5\xed\x9a\x76\x6d\x12\x1a\x1c\xe6\x88\x96\x3b\xe4\x1d\x2c\x05\xe9\x7f\xeb\xfb\x9f\x74\xcd\x31\x93\x03\x47\x01\x97\xc0\xca\x6f\x68\xd3\xae\x97\x4f\x1a\x6c\x41\x8d\xff\xf6\x4d\xfd\x05\x7d\x6d\x68\x21\xea\xb2\xa3\xfd\xea\xf2\xf2\x99\xd9\x54\xc0\xe1\xdb\xd7\xe7\x1d\x2f\xb7\xdd\xea\x40\xe8\x5c\x5e\xd0\x1f\x8b\xfc\x98\xe6\xeb\x41\x96\xa9\x87\xfd\x9a\x96\xe9\xcd\xae\xdc\xec\x0c\x76\x22\xae\x0b\x32\x1c\x98\x70\x67\x86\x8e\xc8\xee\x84\x78\x27\x0d\xc9\x10\x0a\x99\x76\x4c\xdf\x04\x7a\x05\xf8\x15\x51\xe7\xd0\x62\x15\xee\xfa\xfe\x90\x36\xfc\xec\xcd\x9b\x8b\x24\x35\x6d\x9a\x79\xa9\xed\x36\x4d\x85\xda\x78\xfb\x4c\x28\x69\x21\xa4\x34\xb4\xd5\x92\x86\x34\x43\x64\x94\x33\x42\x48\x59\x5f\x55\x03\x6d\xf3\xb4\x37\x0c\xdb\xaa\x04\x2a\xfc\x56\x02\xdc\x58\xda\x03\x1a\x43\x78\xe6\x4e\x7d\x8a\x3f\x97\x84\xfa\xc2\x0a\x1f\xdf\x81\x2f\x80\xfe\x6a\x26\x4f\x5e\x09\xc6\x55\xb4\x2d\x93\xd0\x4a\x4d\xf3\x7a\x69\x0e\x58\x96\xf3\x0b\xe6\x3b\x8b\xa1\x10\x3d\x5d\x7b\xe1\x6b\x0e\xca\xcb\x63\xdd\x9e\x50\x12\xf8\xb4\xb9\x7c\x01\x3c\x71\xe2\x55\xdb\xec\x97\x4f\x6c\xf2\xe5\xc7\xf9\x82\x4a\xa2\xbf\x65\x4d\x74\x4a\xcb\xa6\x39\x31\xaf\xbf\x3b\x33\xff\xee\x8b\xcf\x3f\x5f\x98\x8b\xe1\xf7\xff\x63\x88\xdc\x40\x78\x5d\x03\x11\xb2\x8e\x80\x86\xfb\x43\x5b\x0b\xfd\xa1\x55\xb6\x87\x30\xfe\x00\xab\xf7\x81\xf9\x8a\xb3\xfe\x93\xeb\x68\x66\xcb\x66\xb1\x69\xf6\x5f\x2f\x20\x3c\x11\xdb\x6d\x95\xfe\xb9\xcb\x4c\xb4\x2f\xca\x5e\xe9\x5f\x01\x26\x3b\xca\x08\xcc\xcb\xd8\x2b\x5a\x3d\x57\x65\xbb\x5f\x9e\xae\x69\x2b\x21\xcc\x7a\xa1\x13\x44\xe0\xe5\xef\x20\xb8\x11\xea\x88\x55\x95\x57\xb7\x01\x1c\xb2\x0f\x11\x3b\x4d\x12\x26\xf0\xa9\xe2\x90\xa9\x74\xc5\x07\x8e\x8d\x9b\x65\x62\xd4\x99\x4b\xa1\x65\x62\x54\x24\x4a\x97\xfc\x49\x62\x14\xcd\xe5\xd5\x55\x45\x3b\xbe\xec\x4a\xbe\x9d\xb8\x3b\xbd\x92\xec\x1c\x8e\x88\xf8\x40\xa7\x88\x27\xa0\x7d\x29\x40\x88\x39\x7b\xf2\x92\xf8\x32\xfa\x46\x8c\x64\x1f\x2a\x20\x39\xaf\x00\x1b\xba\xb6\x27\xc4\xec\x08\x21\x10\x40\xda\xb2\x23\x36\xe0\x22\x0b\x42\x6f\x90\xd5\x6c\x6c\xb5\x07\xce\xb0\xfc\x75\xab\x20\x49\x98\xf8\x93\x6d\xa5\x3d\x2a\xfd\xbd\x26\xc8\x20\x20\x6a\x8d\x41\xd3\x0e\xa6\x05\xb0\x29\x6d\x06\x5a\x25\x7b\x22\x8e\xa1\x25\xbe\x74\x82\xdd\xcb\x48\x76\x67\xc0\x7c\x06\x3a\x56\xd9\x82\x0e\x16\xeb\x5b\x83\x89\xef\xb0\x73\x16\xee\xca\x0e\x55\x9f\xf4\x2a\xdb\xc0\x12\x4c\x64\xb3\x68\x5e\xd8\x9a\x56\x95\x9b\x2f\x36\x45\x23\xad\xb8\x36\x2b\xbf\x97\xf2\xd4\x3e\x96\x32\xf3\xd6\xf2\x44\x08\x1b\x09\x51\x3a\x27\x0e\x5a\x62\xb5\x76\x0d\xa1\x13\xfb\xa4\x30\x5e\xbf\x39\xd6\xdc\xb8\x3f\xd8\x04\xea\xf3\x07\x9c\x3c\x5f\xfb\x05\x61\x9a\x36\x02\xc3\xa2\x00\x1d\x4d\x8c\x66\x63\xe9\x30\x66\x68\xda\xaa\xab\xc7\xe9\x88\x16\x2a\xf1\xd1\x99\x4a\x4f\xa2\xab\xeb\x92\x8e\x7b\xbe\x41\x92\xaf\x77\xa5\x6e\x31\xe6\x54\xf7\x05\x30\xa7\x1f\x5c\xe1\x58\x42\x35\x7c\xa0\x74\xf3\xf5\x68\xc7\x2e\xfd\xf0\x05\x1f\x44\x35\xdb\x2d\x36\x30\x3f\xfc\xeb\x50\x19\xcb\xa1\xee\x84\xb6\xc0\xeb\xb2\xe3\xc3\x37\x63\xa9\x17\xaa\x53\x38\xc6\x66\x00\x66\x76\xac\x3d\x73\xf9\x6c\x2c\xfc\x31\x49\x4f\x29\x22\xd2\xbe\xa4\x0d\x91\x76\x3b\x91\xf3\x08\x35\x24\x1f\x2a\xfe\x87\x20\x9f\xa8\xb4\x42\x6b\x81\xc4\x67\xda\x09\x0b\x54\x7f\x42\xb3\x4b\xdb\xe9\x7e\xa8\x69\xdb\x0d\x7b\xaa\x79\xfe\x64\xf9\x99\x69\x68\xa1\xb4\x2d\x2d\x1f\x3e\x4d\x71\x67\x88\xe3\x65\xd3\xed\x58\xab\x40\x3c\x8c\xb8\xb2\x5f\x32\xd2\xbd\x19\x0e\x70\xaa\xfd\x38\xcd\x6a\xf0\x05\xa6\xa7\xe6\x91\x0c\x15\x05\x65\x65\x60\x31\x2b\x70\xb0\x08\x23\x85\xf3\x83\xb7\x1e\x6d\x56\xdb\x06\x87\x3b\x3d\xe7\xe8\x56\x0f\xed\x41\xd7\xaf\xb6\x65\xbf\xba\x02\x3f\x2d\x96\xdf\x51\x2e\x34\x0f\xc4\x56\x90\xc5\x0c\x8c\x30\xc5\x07\x1c\x02\xfb\xd2\x3c\xbc\xf6\x42\xf2\x17\xe0\x91\x2b\x5a\xc0\x65\x05\x1a\x96\x5d\xd0\x1a\x55\x57\xd0\x3e\x46\xd3\xd3\x0d\x87\x83\x08\x00\x22\x0b\xd3\x0a\xa2\xe9\xa2\xb9\x65\x3a\xec\x36\xb6\x25\x1c\x82\x62\x92\x72\x6b\x3a\xc0\xb4\xc4\x64\x87\x2b\x62\xb8\x25\xaf\x41\x6b\x1e\x12\xbf\x78\xf9\xea\x65\x06\xb8\x6d\xd6\x43\x59\x15\x0b\x8c\x51\xa4\x66\x92\x99\x95\x42\x96\xe7\x98\x61\xc2\xd8\x76\xf0\x2b\x3a\x3d\x5c\x70\xe7\x7e\xff\x5f\x04\xd2\xb6\x54\xc0\xca\xb8\x7c\x35\x33\x62\xdf\x9c\xd8\xa4\xe0\x8d\x14\x0e\x02\x19\xb0\x42\xc4\x81\x43\x2d\xd1\x21\x2f\x57\x6d\x2d\x50\x1a\x37\x4b\x3f\xbe\x34\x34\x30\xf3\xf8\x6b\xfa\x4b\x58\x25\x09\x47\xb6\xa9\xed\xcc\x6c\x88\xac\x28\x32\x84\x08\xb0\xf9\xf0\xf2\x11\x64\xab\x25\x27\x48\xbf\x30\x44\x3a\x47\xcf\xb8\x48\xa8\x40\xa8\xa5\x1b\x98\xf8\x97\xdf\xba\xfa\xda\xd5\x44\xee\x1f\x99\xcb\xd2\xd2\x71\xf8\xca\x91\x1c\x44\xc2\x28\xed\x36\xfd\x60\xec\x9a\x4e\xa2\x34\x8f\x0e\x32\x14\x28\xea\xc4\xac\x07\x2c\x4b\x12\x42\xda\xbe\xc4\xea\x68\x58\x70\xf9\x11\x8a\x36\x3a\x8d\x0f\x22\x9b\x37\x15\x31\x00\x21\x7c\x39\x1b\x92\x68\x30\xd6\x14\x79\xa8\x48\xde\x1d\x1d\x47\x36\xbb\x55\x50\xd4\x01\x5b\xbd\xfb\xb5\x5f\x9e\xf1\x89\x98\x8e\xa6\x9a\x81\xdd\x1d\x19\xb4\x97\xdf\xf2\x6c\x12\xe5\x9b\x7d\xe9\xca\x4c\x6a\x27\x71\x89\x28\xb7\x69\x59\x64\x52\xb0\x98\x8f\x3a\x68\x18\xc4\xbd\xb8\x16\x3a\x2a\x74\xcb\x73\x87\x5a\xcc\xab\x91\x0a\x87\xb2\x45\xe5\x14\x9a\xf1\xaa\x27\xe6\x9d\xac\x63\xfc\x81\x7e\xf1\x34\x7b\x0d\xc9\x82\x26\x88\x35\x2f\xd2\xf0\x4b\x2a\xd5\x0f\x4d\x7a\x64\x60\xbc\xa9\xd2\xf1\x27\x55\x8b\x64\x1a\x11\xca\x26\x4e\x04\x2d\x4a\x54\xf0\xad\x74\x7e\x59\xd1\x07\x46\x58\xb3\xee\xea\xd4\x6b\x86\x82\x40\xb4\x73\x07\x08\x50\xfb\x6e\xbb\x7c\x66\x4b\x5a\xdc\xc4\xf3\x22\xdf\xfc\xc6\x88\x22\x93\xb6\x60\x68\x13\xba\x06\x2b\x71\xf5\xe1\x85\x3b\x29\xd1\x68\xf9\x7c\x13\x16\xc5\x23\x09\xf2\x4b\xa1\xa9\xee\x50\xda\x8d\x6c\xb0\xf9\x26\x4c\x6b\x86\xc8\x91\x37\x2d\xbf\x53\xf7\x76\x41\x94\x18\x79\x08\x48\xc0\xd2\x0a\x06\x13\x79\x34\x62\xd3\x58\xaf\xc0\xd5\x44\x78\x40\xd7\xc1\x23\x27\xcd\xeb\xb2\xf2\x82\x61\xde\x1b\x48\x7e\x2c\x02\x67\xdd\x62\x09\xab\xb7\xbc\x01\xef\x1d\x0e\x33\x2b\x9a\x6e\xda\x6f\x89\x64\x2d\xf4\x5f\xb4\x33\x6d\x89\x25\xcc\x48\xaa\xbc\x3e\x88\x01\xf6\x56\xa0\xdc\x7b\xa0\xbe\x09\x7a\x64\x62\x32\x37\xcb\x6f\x49\x96\xdb\xd6\xac\x7a\x49\x71\xff\xbc\xe3\x23\x6f\xcf\x73\xb7\x08\x1b\x87\x08\x3e\x2c\xdb\x76\x54\xa1\x9f\x81\xb7\xb5\x65\x12\xb1\x2a\xa2\x0b\x4a\x05\x03\x61\x9c\xc4\x56\x4a\xfc\xb7\xe6\xab\xf5\xd7\x0f\xbb\xaf\x3e\x5d\x7f\x7d\x02\x3e\xac\xe7\x3f\x39\x4c\x6f\x88\xaf\x82\x2f\x15\xa5\x3f\xbc\x40\x73\xce\xfb\x7b\x4b\xf2\x01\x0d\xc3\x3c\x2c\x0c\xe6\x05\xfb\x35\x6d\x2a\x44\x42\xbd\x32\xff\xf1\x6e\xef\x65\x8f\xbe\x09\xf4\xac\xf4\x48\x67\x59\x5a\x26\x26\x68\x3a\xed\x86\x57\x2f\xaf\xa4\x00\xca\x73\xc2\x7b\xd8\x90\x91\x3e\x0f\xbc\x2a\xf7\x65\x7f\x94\x00\x69\x7f\xa2\xbe\x43\x48\xe1\x41\x63\xdf\x73\x8f\x3d\x66\x64\xb2\x85\x1a\x68\x6c\xb4\xb7\x51\x51\xc8\x08\x39\x4d\xb2\xd2\x8e\x25\x9c\x2f\x88\x1d\x10\xf7\x2c\x71\x32\xb5\xdd\x6a\xa8\x75\x32\x5c\x21\x04\x78\x56\xda\x86\xf7\xb6\x9d\x2d\xf3\x03\x53\xc4\x62\x3c\x02\x32\xb7\xf6\xb3\x43\x0c\xf7\xe3\x30\x1b\x9f\x50\x07\x64\x53\x43\x45\xb4\xa9\xba\x6b\xe2\xd9\x54\xa3\x4d\x7a\x1f\xe6\x95\x04\x30\xe6\x34\x00\x73\x6d\xa5\x04\xc0\xa2\xcc\x89\xb9\xc2\x94\x6c\x88\xc9\xd3\xe6\x5d\x99\xc3\x50\x75\x16\xfc\x19\x0a\x94\x8e\x84\xa3\x66\xa1\x88\xf4\x23\x20\xc8\x8d\xe5\x6c\x3e\xeb\xd6\xa2\x48\x88\x35\xd2\xb2\x9c\x45\xa0\x3f\xa3\xb2\x10\x21\xec\xa2\x77\xf1\x28\x1d\x0e\x8e\x52\x56\x77\x50\x0f\x08\x49\x8e\x48\x61\x33\xa4\x8a\x28\xee\x14\xfa\xd6\xcf\x76\xed\xe3\xb6\xfc\xc4\x77\x4f\x49\x36\x76\xac\x75\x65\xdc\x24\x5d\x50\x5a\xc9\x58\x93\x65\xf9\xda\xc3\xf9\x2a\xe2\xee\xe4\xf7\x5e\x56\x45\x4f\xe8\x0a\x4a\x00\x56\x4f\x4f\x56\xd8\xc6\x16\x98\xab\x26\xee\xc5\x1e\xc7\xb1\x5d\x7f\x02\x1f\x0d\x29\xf4\x5a\x86\x14\x7b\x1d\xca\xf5\x4d\xb3\xea\x76\xd0\x87\x90\x40\x54\x0d\xf5\x76\xe7\xa0\x47\x15\x09\x22\xa8\xe6\xd0\xf2\x21\x39\xbf\xd3\xc4\x35\xe6\xdf\xd3\x8a\x6e\x41\xca\x6d\x29\x5b\x38\x70\xf5\x93\xae\x38\xec\x36\x7e\xb9\x5d\x54\x0e\x22\x95\x4f\x17\x2d\x4e\xbe\x40\x01\x2e\x62\xe9\x0f\x9e\x6b\xe8\xea\x1c\xcf\xf4\xfb\x31\x9e\xce\x8d\x32\x73\x2f\xad\xe4\x47\x40\xcf\x62\x7a\x66\xea\x46\x81\x48\xfa\x0f\x42\x8d\x0c\x0b\x27\x66\x1a\xd7\xad\xeb\x96\x97\xbf\xff\x33\xd4\xa6\x24\x99\xd0\xae\x0e\xfd\xd6\x2d\xf4\xc5\xdc\x61\x86\x85\xee\x82\x40\xdf\x12\x96\x5e\x4e\x44\x77\x6c\xcd\x31\x35\xdd\xa8\x59\x5f\x40\xc2\xb7\x1f\xaa\x17\x75\x2e\xa6\x62\xfe\x6b\xc7\x3a\x75\x1a\x75\x4d\x8d\xf0\xa5\x51\x1c\xf0\xe5\xe5\xb3\x37\x7c\xc4\xe0\x16\xa0\xa6\xbc\x76\xa2\x5b\x7b\xd6\xf7\x87\xee\xad\x2a\xab\x58\xb5\x84\xda\x6f\x71\xa0\xf6\xa9\xfa\x79\xff\xde\x1b\x67\xf7\xb1\x9f\xf8\xba\x7f\xef\x94\xe4\x88\x98\x86\xf3\x4d\x9b\x5c\x65\xb1\xac\x28\x83\x78\xea\x75\x31\xd5\x23\x4e\x95\x3b\x3a\x39\x31\x3a\xbe\x76\xfb\x79\x42\x4e\xc4\x6d\x88\x6f\xfc\x4c\xb4\x50\x1d\xe8\x90\x0b\xf9\x2d\xc0\xd2\x96\x8d\x2b\x09\x39\x0b\x06\x82\xa3\xb5\x7d\x45\x07\xf0\x3d\xfd\x24\x04\x34\x06\x3b\x3a\x89\xb2\xe5\xc7\x8f\x57\x9f\x8c\x2a\x2a\x88\x7f\xfc\xf9\xca\xe8\xf3\x40\x64\x5a\xa2\xd2\xae\xfc\xcd\x8f\xe1\x11\x6b\x51\xb5\xfb\x0f\xbb\xc5\x23\x5c\x2a\x92\x40\x1d\x21\x7e\x16\x45\x2b\x4b\xa0\x35\x2b\x5b\x2b\x5e\x35\x24\xcf\xc7\x65\xf3\x33\x94\x49\xbf\xde\x59\x6c\x8f\x1b\xa8\xfd\xb4\x9c\x30\xc7\x14\xa3\xc4\x2b\x72\x95\x9a\x30\x2f\xe5\x18\x54\x04\x1a\xc9\x69\x01\x4c\x7d\x02\x53\xbf\x23\xd1\xa1\x56\xb8\xa7\xf8\x4b\xe7\x70\xea\x4e\x43\x94\x46\xb3\xfe\x65\xb8\x84\xa5\xed\x97\x8f\x29\x9b\x7e\xf9\xbc\xf2\x0a\x0b\xdd\x81\x5a\x22\xcc\x03\x89\xc7\xd8\xaa\x03\xab\x89\xe7\x1e\x12\x93\x8b\xc1\xe5\xec\x25\x16\xa2\xb6\x16\xe9\xad\xf1\x6a\xed\x1c\xed\xf4\xf6\x9d\xab\xd1\x52\x1d\x97\x14\x46\x20\xa2\xa5\xde\xff\xe8\xee\x43\xa7\xb3\x63\x05\x73\xcd\xfc\x7c\x05\x24\x69\xdd\x55\xbe\x7a\x94\xdf\x27\x27\x95\xc4\x3a\x7a\x5a\x35\x77\x76\x02\xcb\x6a\xbe\x79\x99\x59\x2e\x46\x28\x28\x96\xe7\x8f\xca\x11\x63\x98\x2f\x57\x56\x15\xc9\x17\xd5\x2a\x34\x3d\x6d\x0f\x64\x55\x3a\xb0\xbe\x40\xfb\x61\x53\x29\x17\x09\xca\xc3\xa4\xc5\x49\x4e\x58\x19\x16\x85\x9f\x3b\x05\xe8\x59\x86\x41\x26\x7d\x14\xab\xec\xa4\xcc\x7d\xc9\xe4\x1f\x22\xe9\x0d\x1d\x4c\xe9\x9c\xce\x07\xc5\xe4\xe2\x25\x3f\x3f\x83\xc3\xd1\xd6\xd7\x95\xd6\x9f\xc4\x9b\xb9\x56\x88\x60\x71\xae\xfe\x23\xcd\x88\xc2\x07\xf2\x65\xd9\x7c\x78\x43\x61\xd3\xf1\xbb\x14\x44\xa1\x1d\xef\xad\x29\x46\xb8\x36\x9b\xd6\x66\xbd\x41\x05\x16\x81\xfb\x95\x36\xa1\x78\x21\x13\x5a\xc7\x54\xb8\x0e\x3b\xd6\x02\x36\x1a\x5d\x8f\x43\xa5\x0c\x2e\x42\xa3\x39\x1a\x0f\xb1\x4c\xd6\xd6\xee\x49\x8e\x02\x9b\x10\xed\x41\xd5\x83\x55\xe0\x94\xd1\x36\xaa\xd9\xc2\x60\x41\x11\x0b\x73\x56\x9a\x94\x6b\x41\x34\x82\xed\x46\x86\x0a\x5e\x78\x7e\xb4\xb8\x8f\x79\xe7\x6e\xa7\xb2\x0a\x6b\x6e\x38\x91\x1a\xd8\xb6\xb6\x60\x71\xf4\x3a\xe2\x04\xc7\xa4\xb0\xf9\x7c\xc9\xc7\xda\x41\x14\x99\x0c\x74\x1b\xaa\x96\x5b\x67\xbf\x1d\x1c\xab\x81\xf5\x71\x84\xde\x61\xcf\x8d\x0a\x0a\xac\xaa\x3f\x73\x95\x51\x52\xc5\x75\x03\x51\x1d\xfc\x1e\xfa\x37\xda\xbf\xbc\xd6\xe4\x54\xb4\x93\x7a\x5b\xc3\xcd\xb7\xe5\x40\xfc\xcd\xeb\x79\x88\xd5\xd3\xc2\xaa\x80\x7a\x31\x0c\x79\x9e\x1d\x2a\x58\x9d\x59\xba\xc2\x41\xab\x4e\x67\x28\xcf\xda\x09\xa3\x91\x7a\x4f\x4c\x41\x33\xd3\xfb\x6b\x79\x31\x71\xa8\x6c\x5b\xe9\x0e\xd3\x91\x80\x57\xb6\xb5\xc8\x65\x3a\x03\xbf\xff\x75\xe1\x9b\xc6\x69\x00\x96\x21\xa3\x96\x21\xe2\x6a\x9b\xb9\xa4\xab\x1d\x78\x94\xdf\x58\x9e\xf0\x09\x54\x20\x5b\x46\x13\xf5\x45\x39\xdc\x68\x88\xaa\x9d\x1b\xdd\x78\x12\x47\xd7\xf6\xb2\x6e\x8e\x56\x6a\x18\x6b\x1c\xa5\x4d\x47\x59\xc5\x96\x53\xd4\xf2\xe5\x8d\xb6\x6b\xf3\x39\x89\xe3\x2c\xa1\x22\x13\x1d\x6b\xc0\xb2\x2c\x85\xcc\x82\x42\x56\x02\x71\x43\x82\xc4\x4d\x5d\x5e\x1d\xf2\xa9\xf7\xd7\xd2\x03\xb1\xb0\x58\xad\x5b\x5c\x8a\x24\x2b\x92\x70\xdd\x82\xbe\x3e\x96\x9c\x4f\xd8\x66\x01\x96\x39\x75\x42\x29\x61\x81\x92\xb4\x87\x01\x40\xb9\xb2\xb3\xf5\xd6\xad\xf4\x2e\x44\x75\x4d\x2a\xbe\xea\xf5\x46\x37\x18\x7f\x03\x82\x1b\xac\x50\x46\xae\x3c\xee\x2c\x8a\xeb\x3e\x62\x12\x99\xd5\xcd\x3f\x34\x24\x6c\x34\x35\xb8\x1d\x6f\xe2\xa2\x03\x4c\x2c\x63\x4a\x97\x6b\x82\x58\xc8\x2e\xfb\x5b\x39\xfa\xca\xf5\xcf\xb0\x5e\x57\x2c\xb7\x5e\xc1\x7c\xed\xc6\xb5\x24\xde\xba\xed\x60\xd9\x1c\x8d\x5a\x26\xc6\xb7\xfc\xa1\xe9\xd9\x62\x4c\x40\xa0\x2b\x04\x48\xd9\xb3\xd9\x0e\x84\xdd\x05\x6f\x17\x10\xc9\xdb\x6b\xde\xab\xfc\x16\x62\x1e\x3d\xec\x1e\xa1\x77\xb4\xab\x53\x9e\x6c\x51\xb1\xc4\x81\xb7\x9f\x5a\x4e\x77\xdc\x7c\x81\x13\x08\x09\xe7\x43\xdf\x13\xcf\x66\x0a\x4b\xb7\x7a\xae\x2e\x68\x65\x6b\x9c\xd4\xcb\x5e\xe6\xf3\x47\x6f\x9b\x44\x73\x31\x31\x5e\x9a\xd1\x94\x2b\xf3\xe9\x96\x67\xe0\x30\xa5\x5e\x3e\xb3\x3e\x6a\xe9\xd5\xf1\x97\xfc\x59\xf2\x55\x2e\xb0\x04\xe5\x48\xb7\x4c\x6e\x79\x4b\x5e\x45\xdd\x72\xac\xeb\x2b\x70\x1e\x77\xcb\xa7\xd0\x22\xd0\xe9\x3a\x1c\x73\x86\xb2\x58\xbe\x2d\x0b\xf4\x97\x30\x4f\xb5\x8c\xed\xac\xfc\x84\x34\x61\x10\x72\x8b\xf1\x7c\xfe\x1c\x04\x3c\xf8\x12\x86\xef\xeb\x20\x0f\x74\x6c\xc5\x48\xcb\xa2\xd9\xd6\xd8\xdb\x7b\x3d\x4b\x41\x94\x04\x16\x73\xed\xc8\x89\x11\x5d\x0b\xee\x97\x89\xa1\x12\x83\x68\xe8\x53\x89\xfd\xc6\xad\x8d\xbb\xba\x22\xd4\x0e\xac\xda\xe9\x69\x39\x43\xb5\x2e\xda\x66\xd1\x9a\x5d\xc1\xd0\x2b\xde\x51\x9c\xc9\x81\xaa\x19\x59\x29\xde\xc0\x4a\x11\x17\x88\x7c\x23\x77\x41\x44\xa9\xc7\x86\xe1\x80\xdb\xab\x80\x88\x53\x28\xaf\x89\x78\x4c\x98\xbc\x1c\x20\x1c\xe3\x14\x25\x07\x45\x9c\xaa\xa1\x68\x58\x5a\x01\xfd\x4c\x0f\x74\x8b\xb0\xdc\x82\x21\xe2\x5b\x4f\xa5\xb2\xe4\xd0\xe5\x11\x88\x57\x00\xbd\xd9\x95\x9d\x91\x3c\x73\x53\xe2\x46\x92\x70\xb2\xe9\x4d\x4f\x9b\xd0\x8d\xbd\x35\xbb\xe6\xc6\x54\x65\xfd\xae\x23\x7e\x08\xeb\x4a\x98\x1e\xa4\x07\x5c\x51\xb0\x11\x79\x0e\x6c\xc8\x88\x1f\x76\xce\xe2\xcd\x5f\xf4\x65\x0c\xc1\xdf\xce\x29\x2b\x38\x00\xfd\xb5\x55\x91\x6f\xbe\x4c\xb4\x40\xab\x1c\xd0\x6c\x79\x86\xa3\x7e\xb4\x65\x39\x88\xa6\x75\xb3\x03\x53\xf5\x17\xb0\x18\x7f\xd3\x74\xaa\x22\x96\xd6\x2f\x37\x72\xb7\xe9\x75\xc4\x1e\x52\x67\xc5\xf7\xd1\xcf\xda\x88\x4b\x25\xe0\x72\x6d\xeb\x3b\xc8\x4b\x7e\x45\xdb\xc1\x96\x25\x54\xb6\x9f\x92\x8b\x1e\x95\x81\x98\xa5\x3d\x2a\xf7\x7b\xbe\xf6\x13\x3b\xa5\x7c\x8c\xf1\x52\xe9\x25\x4d\x30\x24\x99\x39\x04\x61\xd4\x74\xa0\x28\x69\xe0\xb8\x69\xdc\xf3\xb6\x8d\x0f\xe3\x71\x51\x81\x36\xb2\xe1\x04\x1a\x3b\xc7\xfd\xc5\xec\x88\x0c\x5f\x65\x82\xe2\x5c\xa4\x38\x37\xa6\xb8\x40\x50\xf1\x3e\x4e\xb8\x7b\xe4\x43\x4d\x55\xcc\xe8\x73\x2d\x16\x5c\xa5\xd6\xa5\x21\x5b\x4c\x48\x53\xdb\x58\xa8\x01\x56\x19\xcc\x6b\xf7\x38\x2a\x05\xe6\xd5\x3d\x51\x9c\x3f\x8f\xb5\xf9\x26\xc7\x97\x5e\x8b\xc9\x18\x22\x76\x72\x55\x4b\xd4\x04\x8b\xed\xe1\x48\xa3\xb2\x30\xaf\x88\xa3\x1f\xa0\x53\xc4\x9d\x29\x6b\x3e\x89\x55\x41\x77\xea\x95\x8b\xa1\x2a\x46\x1d\x1f\x81\xba\xa0\x10\x29\x83\xee\x47\x6d\x66\x35\x3f\x98\xcd\x96\x11\x50\xe0\xe4\x0c\x75\x27\xff\x64\x89\x04\xd2\xff\x98\x75\x32\x22\xbc\x35\x87\x18\x38\xbb\xc8\x18\x21\x4c\x4a\xd1\x5b\xe2\xdc\x52\x45\x48\x51\x1d\x96\xde\xa7\x41\xc1\xe4\x42\x3b\x7e\x6b\xf0\xd7\xaf\xb2\x41\xc4\xae\x52\x1e\xd8\xa3\x9e\xf0\x9e\xe8\xf7\x38\x5f\xc6\xc4\xb9\x44\xa0\xe0\x4d\x3a\x1c\x5b\x14\xb4\x0b\x77\xc2\xa3\x60\x47\x76\xed\x94\x23\xe1\x44\x22\x36\x35\xb0\xd8\x83\xbd\x4e\xce\xa0\xcc\x13\xe6\x58\xc4\xcd\x68\xdf\x13\xd6\xc9\xec\xea\x9b\x49\xdb\x7e\xf6\xb5\x8f\x24\xa3\x1a\x1c\x53\x8d\x0c\xac\xf0\xf3\x8d\x5d\xe1\xf6\x23\xdc\x36\x17\x4c\xa0\x32\x60\xf0\x89\xa1\xde\x26\xfc\x64\x7c\xac\x95\x12\x23\xe8\x49\xd6\x2a\xbb\xaf\x80\x1c\xf0\x47\xef\x28\x20\x4a\x64\xc2\xa3\xb7\xe1\x8f\x2a\x44\x9e\x3e\x58\x31\xb6\x6d\x49\x3d\x15\x19\xec\x3d\xd7\x14\x4c\x53\x8d\x9a\x04\x94\x33\x06\x0a\x7e\x00\xa3\x6d\x6c\x8c\x8c\xb8\xbf\xc7\x5d\x6d\xa8\xa7\x7b\x5a\x58\x0d\x41\x9e\x09\xeb\x61\x93\x08\x36\x68\x17\x47\xad\x80\x51\x96\x7a\x9c\x88\x41\x4c\x4d\x2a\x82\x33\xdb\x25\x14\x94\x6a\x05\x12\x2b\x09\x87\x8d\xb1\x00\xb1\x30\x17\x0d\x2d\x93\xdf\xff\xb7\xd8\x27\x3a\x5f\x46\x05\x34\xf0\x49\x3e\xc7\x89\x21\x05\x6e\x0b\x7b\xaf\x0d\x0b\xa6\x87\x95\x30\xda\xf4\x34\x41\x3d\xd9\xb3\xd5\x1d\xb8\x6f\xdb\x5b\x7f\xee\xed\x07\x31\x51\x12\x75\x94\x55\x33\x42\xdd\xf0\xbe\xea\x70\x0b\xb2\xfd\x1a\x56\x1f\x9d\x2d\x79\xf1\x7d\xf3\xd5\xa7\x9a\xca\x37\xbe\x61\x8e\xd9\x86\x1a\xfd\xf9\xbe\xec\x9f\x0d\x6b\xbe\xc9\xf8\xca\x26\xa6\xd6\x6a\x27\xa2\x7d\x8b\x98\x60\xbb\xeb\x86\xe1\x61\x29\x55\xf1\xd9\x3b\x2b\x79\x50\xbb\x76\x5a\x68\x30\x79\xa7\xa5\x24\xb6\xda\x30\xdf\x6b\x88\x93\x74\x6c\xcf\xc9\x14\x67\x23\x1b\xa4\xaa\x17\x71\xc1\xcc\x4c\x57\xb4\x90\xa4\xcc\x44\x39\x74\xc1\xb2\xa4\xa1\x44\xd5\x19\xf6\x71\x59\x02\x60\x11\x0b\xb1\x54\x33\x2e\x04\x03\x5e\x42\xd7\x5e\x2d\x87\x51\xd6\x56\x34\xf8\xe2\xd6\xf0\xa1\x88\x6b\xf0\xa5\x83\x11\x36\xa1\xd0\x53\x11\xf2\xb4\x65\x96\x6f\x54\x6f\xae\x54\x17\x68\xfd\xa5\xbb\x61\x4a\x42\x9b\x2c\xca\x87\x5e\x12\xe4\x94\x75\x28\xab\x04\x22\x02\xa3\xf4\xe3\x08\xac\x12\xf5\xfd\x2d\xd5\x17\x79\xe5\x18\x64\xca\x2d\x7d\x1f\x52\x36\x69\xf9\xa7\xb0\x4a\xa1\x4b\xd7\xb1\x29\xd5\x87\xb2\xc9\x49\xb3\x7e\xd4\xbe\xb5\x0f\xe1\x94\x34\xa0\x53\xbf\xd2\xc1\xf0\x58\x01\xc4\xd3\xf5\x56\xd4\x3a\x7e\xc9\x20\x13\x96\xdb\xfe\x48\x27\x22\x90\x95\xbb\x33\x3e\xda\xd1\x06\x2f\x37\x0e\x3c\x03\x10\x54\x04\x11\xcf\x12\x8f\x04\x6a\x45\x6d\x8a\x55\xcf\x52\x8b\xb0\x87\xb6\x4a\xf3\x1f\x0c\xcb\x35\x74\x9e\xe9\x9b\x77\x44\x6b\x49\x25\x2c\x10\x73\xaa\x98\xdf\x8a\xa3\x0f\x7a\x4b\xa5\x0a\x7b\xdb\xa5\x9c\x49\x0e\x55\x81\x2f\xa1\x85\xd1\x09\xcb\x9b\x02\xe0\x48\xa9\x56\x04\x13\xa6\x84\x3b\x4e\x5a\x32\x6a\x6b\xe7\x75\x21\x9d\x56\xe0\x99\x53\xb9\x30\xaf\x83\x3e\x2c\x1e\x69\x3c\x38\x56\xa0\x28\xae\x02\x07\x01\x5b\x1e\xea\x35\xb1\x5e\x36\xf5\x93\x7a\x7c\x52\x98\xc4\xd3\xac\x3d\x97\xa8\x54\xfa\x8c\x0d\xcb\xfc\xac\x18\x35\x89\x68\x62\xde\x30\xae\x12\xb3\xba\x0b\x95\x52\x9d\xb7\x6f\x57\xcb\x0c\x5f\x12\x49\x46\x5c\x8a\xb8\xac\x4e\x42\xa7\xf8\xe7\xdf\x4c\x8a\x3b\xcc\x9b\xaf\xa2\x20\x02\xb7\x3d\x54\x30\x30\xa1\xe7\x79\xe9\x3d\xd1\xf0\x69\x85\x75\x6d\xa7\x17\xcf\x61\x7e\x1d\x9a\xd3\x15\x62\x85\x18\x60\xb4\xcd\x36\x39\x27\x72\x80\x94\x69\xb6\xd7\x10\x90\x0e\x25\xb4\x2f\x89\xc9\x78\xba\x0f\x78\x3a\x89\x5c\x42\x7b\x1e\x06\x98\x0d\x6e\x36\x53\x10\xee\x3a\xf5\xa6\xea\x3d\xda\x7c\x93\x0a\x9d\xef\x83\x1f\x81\x7e\x82\x96\x97\x37\xfe\x43\xa9\xbb\x71\x3d\x5f\x8f\x3f\x24\xc0\xd5\xca\x7e\x29\x34\xc1\x22\x60\x3c\x1f\x5c\x97\xdd\x20\xa7\x08\x3a\x22\x24\x77\xd5\x91\x33\xc9\x70\x02\x6f\x4a\xe7\x3e\x32\x28\x3f\xd1\x3a\xf3\x4a\x09\x91\x5d\xcd\x96\x9a\xf2\x2c\xdf\xe1\x30\x99\x5c\xcd\x7b\x39\x58\x73\x65\x12\xe5\xc5\x5d\xfc\x2b\x1d\x53\x20\xfb\x8b\xd9\x56\x03\x27\x93\x96\x47\x9c\x8c\xda\xa8\x1f\xf5\x46\x6c\x55\xd0\x88\x9c\xad\x94\x91\xc6\xce\xd0\x9a\x35\x37\xb4\x8d\xf0\xf2\xd1\xd6\xfd\x6d\xb1\xd7\x9c\x04\xb3\x0c\xcd\xd7\xf3\xf8\xf9\xa3\x44\x47\xe1\x18\xd6\xf1\xe4\x41\xda\xab\x31\x49\xde\xaa\xc0\x2f\x7c\xda\xa0\xbd\x68\xf0\xea\xa5\xb9\x78\xf5\xe6\xf5\xef\xff\x2d\xca\x05\xaa\x0d\xb7\x72\x12\xef\x61\x8c\xe4\x2d\x29\x47\x1d\x0b\xf6\x94\xda\x43\x55\x62\xe4\x50\x6a\xe2\x99\x82\x44\x1d\xd0\x08\x34\xf2\xb9\xa8\xe0\x65\x1f\x2d\x58\x83\x4b\xb7\x64\x80\x96\x2d\x1e\x60\xba\x0d\x1e\x78\x55\xd6\x25\x71\x7a\x5a\xa3\x6c\xa5\xa1\xf3\x48\x34\xff\x0d\x2b\xc3\x20\x48\xfd\x44\x87\x4b\xbe\x36\xb8\x48\x74\xfb\xc9\xcd\xd8\xf4\x06\x3a\x5e\x9a\xa9\x38\x05\x43\x35\xe2\xb6\x0d\x5f\x11\xed\xa1\x08\xcd\xbc\x55\xf8\x0c\xbc\x6e\xdd\x75\x09\x8b\x90\x8d\x28\x5e\x71\xf3\x20\xf7\xc2\xe8\x7a\x40\xfb\x50\x53\x6f\x37\x65\xc0\xf9\x02\x76\x6f\xbc\xd2\xb0\x7d\xfd\xe0\x7f\xfe\xfe\x57\x4d\x47\x72\xf4\xb0\x2a\xbb\xec\x4e\xa8\xa3\x6a\x0f\xc4\xe3\x36\xb4\xe3\x74\xcb\x07\x03\x7a\x45\x9c\xce\xfd\xda\x3f\xf8\x9a\xce\x63\xb0\x24\xa0\x86\x08\xe2\xeb\x69\x6d\x70\xd6\xa4\xe3\x27\xb4\x52\x4e\xaf\x47\x40\xcf\x92\xca\x8b\x88\xf8\xa2\x49\x95\xa8\xa0\xe1\xb5\xfb\x53\x4d\xc2\x31\xd4\x8f\xe2\xe3\x33\x51\x20\xd1\x92\xe4\x15\x7d\x6d\xab\x21\x57\x27\xa1\x71\x94\xe8\x3e\x61\x2d\xe9\x3b\x51\xca\xc3\xa3\xd4\x66\xf3\xc4\x79\xec\x81\x21\x79\x85\xd5\xb4\x09\xe6\x5e\xf2\xad\x4a\x93\xb8\x03\xc2\x36\x36\x22\x5b\xcd\xc2\x12\xdc\xa2\x9e\xe4\x0a\x55\xf9\x10\xac\xc5\x94\xd4\x39\x19\xce\xc3\xc1\x71\x38\xa4\x4c\xd5\x4e\xac\xd7\x59\x6c\x89\x54\xb7\x35\x5b\x34\xd3\xe2\xa7\x8d\x0b\x4e\xc7\xf4\xff\x37\x1b\x12\x26\x45\xe5\x72\x8a\xcb\x53\x1f\x2b\x0f\x0e\xa9\x14\x96\x73\xfc\xcf\x7f\x4e\xdb\xa5\xa2\xde\xe5\xd9\x7b\xd7\xb4\x5a\x04\x66\x0b\x2b\xac\x9e\xe5\x73\x2c\x21\x70\x78\x65\xb1\x09\x16\x44\x22\xa6\xea\x36\xe0\xa6\xe8\x45\xc7\xde\x09\x7d\x70\x9f\x56\x63\x4a\x9e\x21\xb6\xa2\x4c\x27\x48\xfd\x11\xf4\x76\x61\xf9\x9a\x2f\x14\xbe\xd5\x0b\x85\x03\x11\x8e\xac\xdf\xc6\x7b\x21\x53\x7f\x7a\xe8\xc7\x61\xfe\x21\x3f\x68\xc7\x11\xf3\x50\xf3\x31\x11\x28\xa1\xee\x93\x23\xca\x76\x7f\xbd\x9b\x74\xfe\x61\xf7\xaf\xa1\x72\x1f\xdd\xc3\x3e\xec\x8e\x28\xde\x6b\x07\xad\xde\xd0\xb3\x7b\x6e\x74\x1f\x18\x5b\x87\xa8\x03\x75\xee\x0c\xba\x4f\xfc\xa8\x53\x80\x63\x0b\x9f\x17\x0b\x2d\x45\x9b\x2f\x46\xac\x42\xb3\xa6\xd5\xf4\xe0\x6b\xc1\x67\x58\x89\xbe\x52\x9e\x26\xf6\xda\xce\xe6\x49\xb3\x17\xec\x95\xb6\x52\xed\xc9\xf2\xc9\xc0\x7b\x94\x09\xa6\x38\x47\x00\x13\x51\x58\x05\xae\xd4\x6b\xeb\xd3\xef\x9f\xbf\x61\xbb\x0a\x9a\x43\x76\x9c\xf1\xfe\x6a\xb0\x19\x5f\xc4\x2a\xfd\x45\x2b\xc3\x8c\x0c\xca\x39\xcd\x25\x36\x5f\x27\xc9\xf5\x93\x49\x14\xa5\xd0\xb9\xb5\x3d\xce\x64\x0b\xa5\x93\x77\x34\x2b\xcc\x22\x74\x41\x47\x26\xc1\xce\x5a\xf0\x0d\x89\xdc\x81\x61\x44\x5e\x82\x40\xc7\x17\xa6\x4d\x82\x78\xde\x0f\x0f\xb7\x2b\xe8\xb8\x69\x0b\x3c\x94\x36\x49\x08\xc2\x02\x32\x5c\x91\xc2\xaa\x05\xc9\x05\x2b\xa5\xfe\xdf\x7f\xff\x9f\x8f\xcf\x80\x8d\xb3\xbe\xad\xe8\x17\x8b\x1f\x07\x98\x58\x13\xb6\xdf\xc1\x8a\x13\x9f\x52\xbd\x1e\x44\x48\x5a\x80\xdd\x0d\xd7\x48\x55\x2f\x5f\xfd\xad\x88\x76\xac\xaa\xe7\xa9\x50\x42\xc1\xa1\x66\x1d\x2d\x5d\x2d\xac\x54\x44\x8f\x67\xc5\xad\x8e\x89\xec\x1b\xf3\x03\xfb\x99\xdc\xed\x61\xcd\xb1\x1a\x70\x5e\xff\x08\xa7\x80\x1b\x36\x56\x61\x7d\x02\x2e\xbd\xa0\xf1\x29\x7f\xff\xbf\xf7\xef\x49\x3a\x5f\x84\x01\x0c\x77\x65\x24\x95\xa3\xd3\x30\xb7\x69\x38\xda\x03\xd2\x70\x79\x26\x88\x17\x66\xcd\x4b\x46\xf9\xaa\x3f\xb4\x15\x29\x7f\xfd\x65\x00\x36\xa0\x9c\x70\xcb\xef\x59\x45\xd1\xda\x43\x89\xd9\x93\x11\x83\x55\x29\xdb\xc1\xc0\xbc\xcc\x9e\x5a\x84\x27\x86\xde\xcc\x9b\x37\xcd\x1e\xce\x19\xc2\xa7\x44\x20\x4e\x16\x15\x5a\x28\xbd\x9d\x34\x3b\x71\xe0\x76\x0a\xd6\x57\x38\xfb\x4b\x53\x17\xf4\xed\x37\x0a\x25\x3f\x76\x23\x85\x9b\xc8\xb4\x34\x37\x4a\xbd\x64\x37\xcc\xb9\xdd\x9b\x33\x4e\xcc\x41\x6c\x02\x59\x43\xba\xb6\x9b\x77\x06\xac\xb5\xfd\x08\x28\xba\x7f\x6f\x8e\x77\xd2\x09\xa3\x75\x6e\x79\x5a\xad\x5d\x4b\xa9\x6f\xe8\xe3\x13\x0f\xc9\xfe\xcb\xbd\xdd\x76\x28\x52\x46\x76\xfb\x6f\xcc\x1b\xbb\xf5\x40\x6e\x94\x8b\x7b\x60\x2a\xc1\x10\x93\x98\x04\x88\x60\x30\x89\x5c\x50\xd9\xb5\xa3\xd4\xa7\x3d\x34\xc3\x3d\x3b\x19\x62\x77\xe8\x69\x6a\xa8\x9e\xd6\xd2\x8e\xd8\x16\x4c\xb1\xfb\x7d\xd9\x63\x51\xe0\x3f\x70\xc2\x83\xa5\xf6\x4b\x62\x5a\xb8\x5e\xe5\xdb\xac\xd6\xde\x2c\x5f\x11\x02\x4b\x39\x0a\x72\x1a\xe1\x8b\xe3\x1a\x9c\x91\xa0\xd4\x54\xcd\x16\xab\x8d\x33\xd8\x51\x00\x25\x7e\x10\xa3\xfb\xbc\x18\x0b\xbf\xbc\x42\x2f\xfc\x2f\xbe\x81\x90\x8e\x2c\xf2\x0e\x75\x31\x23\x0f\xae\xc0\xcc\xe4\x3a\x44\x11\xf1\x40\x57\x38\x1f\x9f\x01\x20\xa6\x81\xe9\xd3\xea\x3e\x1d\xc4\x59\xc9\x27\xc3\xba\x0e\xd7\x3a\x2f\xf8\xff\x16\x32\xa7\xcf\xc2\x39\x60\xf9\x84\x4d\xd9\x7d\x92\xba\x6f\xd0\x9a\xa2\x56\x37\xb4\x81\x24\xe0\x44\xc0\x3e\x2f\x68\x33\x82\x67\x04\xe2\x94\xc8\x21\x31\x06\x78\x88\x59\x8b\xe9\x3c\x25\x99\x35\xe4\x15\xca\x0f\x2b\xd0\x29\x58\x5e\xc7\x86\xa6\xac\x5d\x69\x4d\x44\x07\x3e\x3a\x87\x9b\xad\x34\xd0\x41\x20\x83\x66\xdc\x68\x04\x79\x89\xfd\x5d\x3f\x66\xda\x8c\x80\x67\xf8\x36\xfb\x59\x58\x3a\x04\xd5\x09\xe8\x2b\xfa\x8c\xb5\x76\xa3\x6a\x9b\x0e\xf6\xe4\x49\xbd\x48\x38\x06\x0e\xab\xa9\x6d\x8d\xa5\x46\x47\x90\x6d\x6d\xf5\xec\x30\xe9\x67\x80\x93\x6e\xfa\xcf\xf1\xb8\x03\x18\x0d\x7b\x02\x23\xdc\x8a\x99\x13\xfc\xeb\x90\x98\x96\xf7\x33\x25\xaa\xfd\xb9\x79\x12\x88\x15\x09\x66\x1b\x97\x3a\x0d\xb1\x99\x5e\x28\xc1\x51\x43\xb2\x26\xb5\x66\x6d\xf8\x1c\x1f\x01\x82\x51\xdb\xdb\xf5\xf2\x61\x61\x4e\x0f\x70\x53\x8a\x85\x81\x39\x9f\x77\xb6\x2b\x87\x2e\xe6\xd1\x42\x84\xa9\xb1\x54\xfc\x74\xd2\xd9\x34\x9b\x44\xb0\x95\x48\x98\x53\x2a\x64\xd1\x93\x25\xd9\x69\xe1\xbb\xc8\x6c\x0c\x92\xb6\xd1\x44\x79\x76\x4a\x4d\x5a\xf0\xee\x69\x8f\x40\xb8\x92\x3d\x56\xf9\xe9\x78\x7e\xb5\x58\x10\xfc\xe6\x32\x16\x70\x27\x53\x06\xec\xc3\x22\x1c\x02\x23\x9e\x83\xef\x34\xd8\x10\x89\x0d\xb7\xcd\x10\x3a\x4c\x7b\xbf\xe9\x67\xdb\xd6\x49\x2f\x56\xeb\x5b\x2e\xc1\xd3\xce\x07\xd6\x23\xf0\xec\x51\xd3\xd4\xf0\x24\x65\x78\xdc\x3d\x40\x6d\xc8\x38\xb7\xf5\x64\x1c\x1d\x0c\xe8\x2f\xe9\xcf\x5c\xc6\x02\x5b\x5b\x87\xa9\xbe\x71\xdd\x3c\x04\x28\x97\x20\x5e\xf1\xbf\x59\x08\x61\x82\xa2\x4e\xa1\x23\x10\x3e\xaa\x5b\x55\xaf\x14\xf3\xad\xd2\x9e\xe3\x0b\x9c\xe3\xb7\x32\xd2\xf7\x14\xdb\x37\x5d\x0f\x26\x0c\x7d\xfe\x0b\x78\xfe\xeb\xc7\x5d\xad\x78\x78\x69\x66\x5a\x00\x2b\x8a\xb1\xbf\x94\x5f\xe6\xe1\x8f\x9f\xfd\xd4\xc1\x8d\x3b\x5e\x9d\xfc\xf8\xf9\x4f\x24\x80\x3d\xfc\xf1\x8b\x9f\x3a\x08\x60\xd3\xb2\xab\x2b\xfb\xce\x4d\x2a\xe0\x72\x01\xf8\x00\x85\x44\x33\x74\x1a\xfc\x0a\xe7\x2d\x5c\x37\xd7\x19\xbb\xfe\xb5\xf7\xd9\x2a\xbd\xd2\x09\x7e\xb4\xf8\x59\x87\x03\x9e\x9a\xaf\xfc\x42\x73\x84\x81\xc6\x2a\x87\xfd\x4a\x07\xdd\x81\x31\xf8\xdf\xb1\xb0\xc7\xc8\xca\xf6\xcb\x9f\xc3\x17\x46\x5f\x16\x18\x3b\x0d\xc6\x8b\xa1\x7f\x23\x5f\x5f\xf3\xc0\x80\x89\x9f\x63\x3b\x4d\xb8\x69\x79\xb3\x83\x76\xa8\xc4\xc1\x2c\xdc\xfb\xdc\xba\x7e\x31\xe2\x54\x12\x05\x89\xbb\x3b\xca\xd1\x4e\xa4\x10\xe2\x83\x2f\xe9\x01\xba\x75\x8c\x11\x01\x7b\xcd\x1f\xe3\xbc\xbc\x2a\x81\x99\xad\x4b\x59\xaf\xa7\x96\x33\xf9\xdf\x8c\x71\xcc\x38\x92\x2d\xea\x0f\x22\x48\x3a\xa4\x55\xf8\x8f\x3f\x5a\x89\x48\x20\x24\xfb\x5e\x69\x35\x57\xb0\x9d\xda\xb0\x7e\x9d\x10\xce\x50\x72\x8b\xce\x17\xfc\x04\xfb\x47\x5b\xc0\xed\x32\xc7\x18\xc1\xbf\x90\xca\xfa\xa8\xe5\xd8\x0d\xdc\x93\xe5\x8c\x36\x4f\xb3\xbc\xc7\x1f\x9d\x33\xe8\x7c\xe7\x1c\x47\x5f\xa3\x25\xce\x37\x58\x48\xc8\x21\xcb\x7a\xe5\xdd\x31\xf8\x20\x42\xe7\x07\x58\x13\xca\xe0\x88\x94\x20\xff\xa9\xc2\xf8\x54\x2f\x02\xf9\x9a\xc1\x26\x1e\x84\xd9\x85\x27\x37\x87\x0a\x1a\x3f\xe1\xd9\xfa\x25\x71\xb5\x5f\x3e\x2d\xca\x84\x0c\xc4\xf6\xe9\x8c\xff\xc5\xce\x51\x23\xcb\x4b\xbe\x52\xd4\x14\xd9\x2a\xfb\xe8\xcf\x32\x95\x00\x04\x64\x43\x92\x72\x4b\xe4\x04\x3f\xd8\x3b\x80\xa0\xc3\xa5\xd5\x39\x95\xe0\x04\x20\xd2\x39\x2f\xe2\x70\x8f\x6b\x73\x11\x40\x80\x79\x54\xd1\xf3\x27\xcb\xcb\x2d\x00\x47\x99\x23\xa7\x21\x33\x15\x14\x92\x4a\xd8\x1e\x44\xd5\xe1\xef\x03\x94\xd9\x54\x68\x76\x76\x8d\x22\x85\x37\x13\x67\x1b\x2d\x90\xaf\x1a\x84\x88\x55\x13\xe6\x6e\xb4\xef\x8a\x09\x50\xc5\x77\x6a\x3f\x4c\x94\xcc\xf3\xed\x07\xe3\x90\xd0\xac\x57\x5e\xe7\xc6\x40\x1f\x89\x09\x24\x9d\xaf\xb0\xd4\x0e\x54\xe5\x4a\xac\x8c\xf8\x7c\x82\x6f\x23\xda\xd2\xee\x08\x98\x8c\xd4\xc3\xf6\x37\xd0\x43\xcb\x01\x8f\xb9\xce\x9e\xb6\x09\x03\x6b\x23\xbe\x13\xe1\xb3\x1b\x2f\x05\x2d\xbd\x18\xd7\x0a\x77\xff\xa5\x04\x14\x1b\x35\x27\xff\x97\xfa\xdf\x67\xeb\xee\xa7\x67\xd4\xef\xf8\x4b\x7b\xe0\x41\x88\x51\xb7\xae\x1b\x2a\xda\x0e\x5e\xe2\xbc\xcd\x3f\xa9\x13\x43\x5d\x2c\x22\x0c\xad\x38\x92\x2f\x58\xf7\x21\x0d\x25\x4c\x9d\xf3\x74\x49\xf1\x30\xd7\x6e\x63\x87\x0e\x67\x65\x65\xd4\x3b\x5a\x9a\xc9\xc0\x41\xf9\xd7\xae\x0e\xd5\xc3\x7e\x3c\x0d\xc3\xb7\xfc\x39\xd4\xee\xef\xf7\x47\x38\x5a\xbb\xfe\x06\x17\x3b\x3d\xd5\x27\x68\x15\x3d\x49\xf7\x65\xba\x4b\x13\x4f\xfb\x94\x5b\xf8\x14\x5b\x75\xa1\xfc\xed\x6f\xf8\x43\xb9\x9c\x62\x31\x8a\xf6\x26\x3d\x47\xfb\x7c\x5e\xd7\x32\x95\xb8\x91\x62\x4d\xfb\xde\x51\x83\xbc\xb7\x17\xca\x5a\x3b\xe1\xb4\x5f\xc1\x67\xd2\xb3\x52\xfe\x4d\x54\x4b\x05\x7c\xfa\x17\x21\xdd\x57\xcf\x55\xe9\x7e\x2d\xad\x48\xca\xbf\xac\x76\x2a\xfd\x6f\x7f\x0a\x74\x49\xe7\x80\x55\xca\x31\x71\x43\x14\x3e\x72\xa0\xd1\xf9\x3b\x66\xb1\x7e\x19\x54\xe4\xbc\x95\x69\xe1\xb3\x75\x7b\x25\x02\xe1\xae\x7b\x37\x4a\x49\xd6\x9b\xc1\x74\x02\x45\xed\x85\x85\xad\x88\xe4\x8b\x32\x0d\xfe\x92\x62\x85\x8e\xe7\x6d\xd2\x0e\x48\x45\x33\xde\x4c\x2a\x0d\xf7\x7d\x8a\xbe\x91\xe1\x82\xd4\x80\xa8\x19\xb4\x20\xf8\x4a\x14\x47\xfc\x70\xcf\x31\x5f\x95\x40\xb2\x0b\x98\x44\xd6\x62\x06\x82\x42\xd0\x95\xa5\xd6\x6a\xa1\xe3\x65\x47\xab\xdf\x6d\xde\xc1\x02\x1d\x41\xf7\x70\x45\x57\x95\x1b\xbe\xd5\xe7\x54\x10\x36\x7b\x16\x18\x89\xe6\xb2\x85\xde\x31\xa8\x99\x88\x78\xe9\x7b\x87\x40\x32\x1c\x04\xe9\xca\xdd\xe8\x4d\x77\xc2\x0f\x6c\xbd\xe2\x0b\x02\x1e\xa9\xd0\x8c\x86\xbf\x0b\x78\xe5\x68\xb1\x23\xe4\x9a\x66\x66\x32\xd2\x5a\x59\xdf\x3e\x5f\xf1\xa3\xfe\xee\xaa\xfd\xaa\xef\x79\xed\xda\x36\x0e\xbc\x0b\xeb\xd5\x6b\x4c\x8e\xb7\xe8\x63\x9a\x09\x2e\x06\x51\xbb\x41\x5f\x07\xc3\x65\xcc\x41\x53\x61\x22\xd8\x9c\xc9\x94\x7d\x4e\x2d\x39\x17\x79\x5b\xb3\x22\x64\x6e\x41\x33\xb1\x0e\xb5\x2e\x3c\x2e\xc5\x5a\xc4\x6e\xf9\xf3\x74\xb4\x4a\xc4\xc7\x46\x9a\x72\x29\x86\xaa\x73\x52\xfa\xf8\x6f\x1e\x16\x9f\xc8\xe2\x65\xdb\xa5\xc9\xf5\x0d\x12\x05\x99\xa9\xed\x23\x86\x4c\x55\xdf\xd8\x92\x63\x15\x62\x57\x00\x10\xfd\x86\xeb\x63\xaa\xce\x13\x15\x13\x51\x49\xa2\xa9\x49\x72\x53\x15\x81\x1c\x13\x92\xcc\x5c\x49\xa0\x47\x85\x71\x7e\xe1\xb5\x30\xf0\x8d\x4a\xdb\x6d\x56\xb4\x2e\x56\x7c\x6a\xa3\xbd\x03\x6b\xa4\xb0\xfd\xb4\xf5\xe5\x7c\xb3\x5e\xd6\xcf\x47\x42\x7b\xf3\x1a\xfb\x05\x1c\xc4\x45\xe3\x11\xf3\x31\xf3\xea\xf4\xa3\xf7\xf4\xba\xbd\xe7\x95\x67\x8a\x9a\x79\xa4\x88\xa4\xc6\xfe\xc7\x59\x7a\x72\x8f\x78\x10\xce\x98\x66\xfa\xc1\x3e\xa1\x91\x3e\x41\xe5\x1f\xfb\x18\x76\x9f\x8c\x86\xe7\xe0\x21\x83\xbf\x59\x7a\x08\xed\xa3\x15\xad\x64\xba\xb9\x3e\xb6\x3d\x90\x6f\xcc\xbb\x82\x9e\x98\xfd\xc0\xfb\x9d\x79\x74\x4b\xb5\x3d\xde\xef\x1f\x17\xc5\xa3\xb9\xf1\x06\x99\x26\x0c\x78\x64\xbb\xa6\x7a\x85\x31\x57\x4c\x2a\x0a\xe2\xef\x11\xa4\x21\x3f\x99\x9e\xb7\xd8\xe2\x21\x9c\xb6\x7a\x33\x70\x10\xa3\xdd\xa6\x4d\xa7\x8c\x8d\x58\x1a\xe2\x6d\xe6\x86\xed\x2d\xd6\xc2\x17\xd4\xde\x2f\x1d\x46\x2e\x6a\x27\x39\xa9\x1c\x7a\x7b\x77\xdf\xf4\x86\x47\xc4\x27\x70\xe9\xfd\x11\x6c\x40\x84\xbf\x0b\x17\x41\xa6\x8d\xe8\x8c\xb6\x30\x33\x70\x53\x4b\x98\xd8\x72\x6a\xfd\x82\x8d\x3c\x5d\xe6\xb0\xdb\x4d\x0c\x62\x94\x9e\xef\xb0\x7f\x99\x6b\x7b\x3a\xf5\xef\x33\xe2\x3b\x1a\x55\xd9\x27\x2f\x84\xb2\x3b\x5a\xbb\xe3\x9c\x24\xd4\x10\xcb\x11\xfa\xa5\xf7\x42\x01\x6c\xd7\x34\xef\xba\xe5\xdf\xb9\x35\xff\x48\x32\xb6\x88\xc3\x8a\x3c\x44\x11\x7d\x36\xca\x24\x99\xb1\xdc\x1c\x0b\x0b\x2d\x51\x54\x13\xe8\x02\xf3\xdc\xae\x7e\x83\x9a\xf1\xbf\xe2\x96\xe9\x02\x7e\xf1\x74\xb8\xea\x6c\x02\x15\xbd\x7b\xde\xfa\x30\x5c\x49\xae\xba\x54\x84\x26\x83\x8f\xc8\x11\xc4\xa8\x9b\x01\xd8\xf8\x87\xf8\xde\xcc\xf9\xdc\xc0\xc2\x2d\x6e\x03\x8b\xa4\x72\xc4\x94\x83\x1f\x22\x94\xa6\xec\x8f\xc8\x31\x13\x82\x2f\xe3\x0c\xa4\xde\xee\x26\xe0\x6a\x2a\x99\xec\x33\x36\x3a\xd0\x06\xa7\x68\x3b\xf5\xc0\xd4\x68\x9d\xbf\xb0\x7f\x05\x62\xaf\xe0\x5e\x19\x87\xad\x62\x14\x8c\x28\xed\x31\xc7\x0d\x67\x9f\x66\xc8\x66\x9d\x5c\xfa\x8b\x1b\xaa\x5c\xe1\x65\xde\xcb\x3b\x1b\xe2\x2b\x25\xfd\xe3\x68\xb0\xe1\x3e\x17\xd7\xfa\x0b\xcc\xa4\x37\x79\xef\x82\x6f\x8f\x8c\x81\x01\x52\x2a\xc8\xdd\xd8\x66\x6e\x1a\x47\xa0\x3e\xbc\xbe\x35\xd7\x88\x32\xca\xe6\x96\x18\xaf\x77\x09\x95\x28\x65\xa9\x95\x77\xed\xaf\xa0\x7b\x90\x06\x76\xfd\xba\xa0\x31\xb5\xa3\x60\x39\x1c\x6f\x26\x86\xb9\x9e\x9b\x59\x0e\xc6\x49\x4b\x71\xf5\xd9\xf2\xb1\x81\xb0\xc1\xc4\x22\x3a\x2d\x31\x5e\x2b\xaf\xd8\xb4\x87\x91\xca\xd2\x05\x37\x76\x5d\x16\x34\x2f\x1c\x82\xed\xce\x6a\x3f\x4f\xab\x65\x1b\x88\xf6\xfa\x78\xd5\xb5\x49\x83\xcf\x8b\xd0\x71\x05\xd6\xf3\x08\x7e\x24\xb5\x5a\x01\x39\x29\xd1\xcd\x36\x0c\x5e\xa6\x9a\x0f\x95\xda\xd8\x15\xdd\x04\x37\xcc\x8c\xdf\x09\x33\x83\xc9\x9a\x6c\xe0\x41\xaa\xfa\x72\x3a\x4b\x29\xa6\x78\x79\x45\x11\xcc\x9b\x6b\x9d\x9d\xbe\x7c\xf9\xea\x4d\xb4\x90\x83\x35\x29\xa2\x32\xcc\xd0\x47\x86\xa1\x51\x75\x8c\xac\x60\x95\x57\xdd\x2a\xdb\xe4\xa1\x23\xac\xd0\xad\x9c\x71\xfd\x51\x21\xa5\x8c\xb2\xde\x54\x43\x81\x5c\xb0\x33\x9c\x2e\x4e\x94\x8b\x9f\x04\xe5\x2a\xe3\x35\xb5\x75\x8c\x2c\xb4\xc9\xb1\x3a\xea\x2a\x1b\x42\x60\xf8\xcf\x27\x2d\x1b\x96\xe2\x61\x1b\x7f\x12\x0d\xb2\x82\xe5\x09\x44\xd4\x3d\x53\xa9\x3b\x20\x7c\x13\x82\x47\x5e\xc9\x4e\x2d\x7b\xc6\xfb\x1a\xfd\xfc\x78\xa3\x62\x45\x36\xd7\xaa\xb7\xb3\xb4\xe2\x72\xc8\x92\x2d\x02\xe7\xbd\xaf\xb1\x2f\xa4\xb1\x74\xc7\x7b\xe7\xdc\x21\x69\x21\xef\x7c\xbc\x92\x17\x7e\x1b\x2d\xf4\x66\xa6\x88\xcf\x9a\xe2\x44\x40\x64\xd7\xf5\x8b\xe3\xbc\x3f\x75\xa8\x6b\x64\xdf\x9b\xd8\x11\xbe\xcf\x97\x6e\xba\x40\x44\x1f\x1a\xee\x80\x13\xad\x68\x80\x85\x1e\x68\x35\xc7\xfb\xe7\xea\x13\xd3\xe3\x22\x68\x58\x27\x2e\xee\xc1\x99\x7d\xec\xda\x96\x6d\xe2\xa9\xdd\x68\xb4\x17\x75\x99\xbd\x68\x00\x87\xd1\x7f\x4a\xb4\xd1\xe5\x43\x98\x7c\x9a\x77\x57\xb9\xd4\x9f\x68\xa6\xe4\xd4\x91\x28\xed\xb3\x90\xd7\xd1\xfa\x8e\xd4\x84\x87\x0f\x46\x83\xe7\xe8\x16\x25\x07\x2d\x58\x49\x98\xbb\x18\xb3\x42\x8c\xf8\x35\x2c\x05\x5f\xcd\x8e\x36\x49\x6f\x9b\x9f\x06\x05\x4a\xdc\x9e\x10\xcb\x28\xed\xc8\x62\x84\x8d\x1b\x11\x88\x22\x02\x55\x42\x1a\x4b\x4e\xea\x10\xe8\xb3\x3b\xa1\x3e\x71\x35\xea\x68\x8e\x60\x76\x84\x9e\x42\x60\xaa\xbc\x4a\x0d\xb2\x45\x5b\x6e\x49\x26\x62\x0b\x2f\x73\xf1\xea\xf2\xcd\xc2\xbc\x82\x79\x7c\xdc\xe9\xe2\x4b\x0b\x31\x04\x05\xe4\x50\x09\x79\xd9\x4b\xb0\x15\x42\x35\xfb\x3b\x7a\xaf\x6c\x04\x2a\x40\x84\xed\x49\x9c\x81\xee\xe0\x36\x0c\x42\x73\x65\xde\x42\xc1\xc8\x76\xb8\x63\xad\xad\x0a\x25\x77\x5a\x34\x89\x19\x91\x0d\x28\xe1\xab\x88\x14\x7f\x8a\xbb\xa8\x70\x56\x79\x7b\x8a\xc2\x31\xe4\x54\x3c\x57\x88\x3b\x85\x73\x66\xdb\x15\x47\x88\x42\x0c\xd0\x5b\xa3\x26\x2f\x77\xfa\xd7\x1c\xed\x82\x27\x55\xed\xed\x7b\x65\xf4\x71\x4d\x0b\xaf\xd8\x08\xca\x8c\x19\x08\x38\x11\x77\xb8\xd9\x92\x1f\x33\x30\x72\x7a\xeb\x96\xcf\xe4\xff\x0c\xc4\x41\x82\x6b\x2d\x43\x90\xad\x09\xc4\xba\x29\x6e\x97\xdf\xd2\x9f\x19\xb1\x5e\x9f\xe8\x20\xfa\x64\xd9\x5e\x3d\xd7\x84\x7c\x61\x3d\x70\x35\xb0\x70\x64\x83\x61\x2f\xe7\xf6\x12\xcd\x8c\x65\x2c\x1f\x8c\x1f\x62\x96\x9a\xd6\xb2\x00\xa8\xeb\x40\xc3\xf0\x92\x5c\x5a\xb3\xe5\x84\xf8\xdb\x84\x98\x7e\xc1\xd5\xb1\xe4\x95\x29\x14\x98\x39\x5b\x67\x6b\x52\xbb\xcd\xb7\x24\xd2\xf5\x4b\x5c\x48\xf0\x0c\x11\x2f\xc0\x9d\x80\x18\xb0\xab\xdf\x85\x04\x5e\xb4\x1c\x90\x50\xaf\x33\x61\xc4\xe7\x43\xbe\x9b\x73\x58\x4d\xb1\x9f\x1c\x47\xc9\xf3\xf9\x1c\x36\x2c\xc4\xd8\x24\xb9\xa3\xf4\x72\x2a\x23\x74\xa6\x43\xd1\xf6\x7d\x44\xdb\x1e\x60\xe2\xc9\x36\x06\xd4\xdd\x4d\xe1\xe3\xc1\xe6\x59\x0e\x96\x70\xa5\xe4\x79\x15\xe8\xdc\xd8\x59\x01\x73\xd6\x06\x93\x59\xd1\x33\x83\xaf\x78\x35\x33\x38\x03\xec\x47\x23\x23\x80\x04\x54\x77\xa5\xdb\x3b\x71\x99\xcc\x78\x41\x37\x60\xce\x84\x57\xd9\x6b\x09\x5d\x87\x80\xfb\xf0\xb7\xe6\xb8\xef\xa1\x1e\xf5\x8c\x82\x08\x21\x66\xb8\x3e\xd8\x7e\x81\xb9\xbf\xc6\xad\x0f\x1c\x14\xa3\x9b\x26\x55\x5c\xd6\x74\x30\xde\x28\xe3\xe6\x39\xfc\xf8\x3f\x5f\xbe\x7a\x79\x62\x7e\x7d\x7c\x73\x73\xf3\x18\x35\x3c\x1e\x5a\xa6\x98\xc2\x15\x27\xe6\xbf\xbc\x38\x3f\x31\x6e\xb3\xf9\x44\xbb\xd0\x23\xf0\x8a\x1a\x4f\xe6\xfd\x96\xb3\x51\xdd\xe0\x0c\xf4\xc7\xd8\xd8\x98\x8b\xe9\xf2\xe2\xe7\x18\x74\x89\xc1\x00\x37\xdf\x9c\x31\xb3\xe1\x45\x29\xbe\x32\x7f\x43\x1f\xe9\xa1\xd6\x6d\x5a\x6a\xff\x92\xff\xa5\xe9\x95\xdd\xbc\x9b\x06\x8f\x98\x40\xc0\xad\x8c\xbb\xf0\x1c\x22\x42\xde\xbe\x40\x24\x57\x95\x49\x1e\x4f\x9d\x77\x07\x81\x4b\x1b\x27\x94\x88\xaa\xd3\xba\x35\x1b\x3c\xca\x24\xc8\xfc\x31\x89\x2b\x75\x7d\x33\xa9\x86\xed\x37\x9b\xba\xba\x95\x68\xec\x81\x30\x84\xca\x90\xab\x54\xb6\x98\x14\xe5\x00\x99\x51\x36\xa7\x9d\x12\x16\xde\xe1\x60\x10\x73\x52\x57\x8e\x51\x1d\x12\x46\x82\xa4\xbd\xde\x70\x08\x42\x7c\x99\x1b\x78\xa6\x49\x6d\x33\x25\x52\xdd\xe2\x91\x5c\x41\x8e\x58\x6e\x9e\xc0\x90\xb8\xb7\x5b\xaf\x7d\x9b\xc5\x00\x9b\xad\xce\xe3\x46\xd6\x23\x31\x48\x7c\xb1\x8f\xdc\xfc\xb9\x56\x22\xc7\x4a\xc4\x9c\x66\x92\xee\xb5\xea\xa7\xf2\xb0\x02\xad\x8e\x9e\xfa\x54\x25\x56\x42\x88\x7f\xef\x91\x2f\xa7\x61\x3f\x8b\x7d\xe3\xb9\xa1\x7f\x66\x41\x9c\xd3\xcb\xb1\x60\xc3\xfc\x63\x22\xde\xf9\x6d\xf6\x4e\xc1\x4e\x19\x55\x2a\x1a\x31\xa3\x9a\xee\xeb\x0a\x39\x6e\x6b\xb6\x15\x89\xae\x32\x73\xf6\xf0\xed\xc4\x0b\xe8\x69\x43\x62\x7f\xb4\xd2\x9d\x5f\x42\x14\x71\x44\x31\xa8\x01\x35\x69\x24\xb2\xe5\x3e\x03\x33\x4c\x56\x96\x55\xe4\xb3\x41\x04\xcc\x6c\x14\xcc\x25\xc0\xd8\x11\x1b\xee\x16\xde\xf3\xc0\x7b\x31\xce\xeb\x8d\xa4\x6a\x71\xf4\x53\x87\xc5\x51\xde\xf8\x19\x9c\xf1\x62\xdf\xf1\x73\x6d\x50\xbf\xe6\xea\x31\x3a\x40\x56\xcd\xad\xf8\xec\x3f\x29\x3b\xda\x55\xb7\xea\x50\x5d\x8e\x86\x17\x21\x97\xa7\x45\x41\x78\xc2\x27\x9c\x9e\x53\x6d\x51\xb3\x4a\x2b\xfc\x7b\x75\x0c\x85\x62\x58\x7c\xab\x6d\x8d\xc3\x37\x97\x24\x88\xec\x3c\x95\xaa\xec\x67\xba\x37\xda\x0f\x53\x9e\x98\xbb\xa1\x3f\x09\xd5\x1f\x77\x43\x4f\x4b\x46\x5f\xf4\xa4\xe4\x07\xf9\xa2\x67\xe8\x19\x7b\x98\xc7\x51\x7e\x88\x93\xf9\xdc\x80\xc7\x62\xf0\x2c\xc6\x67\xe0\xa7\xc2\x70\x91\x0e\xec\x03\x9c\xcd\x47\x47\xec\x0f\x92\x87\xe7\x3a\xe2\xf1\x91\x20\xf6\xfd\x9a\x6b\x12\x0e\xaf\x16\x74\x3a\xbb\xe9\xe0\xb4\x8d\xf7\x57\x96\x97\x57\x70\x69\xb0\x49\x60\xe2\x0e\x6e\x9d\x6c\x4b\xc7\xe0\xb0\x4b\x20\xd2\x90\x7f\x9a\x26\x97\x91\xcb\x8d\x5a\xbe\x73\x1a\xdf\x0e\xe7\x4f\x41\x3c\xa1\x74\x7e\x28\x8e\x4f\x7d\x49\x98\x9e\x85\x96\xe9\x76\xcd\xcd\x0a\xbf\xd8\xf3\xbc\x63\x4b\x44\x92\x11\xb8\xdc\x25\x52\x3c\x1c\x7e\x0b\xee\xfd\x2e\xf5\xb0\x00\xa7\xd5\x38\x34\x8d\x4a\xbb\x51\x9b\xb5\x49\x34\x5d\x04\xaa\xac\x33\x01\x70\x69\x76\x72\x74\x8f\xfe\x8b\x1e\x5d\xb4\xf4\xbf\x7d\xfe\x52\xbf\xd8\x40\x9f\xc3\x58\xb1\x85\x3e\x6e\xf4\x25\xf4\x2d\x6b\x55\x16\x53\x1f\x00\x9f\x23\xae\x1a\xfc\xdb\x3f\x40\x29\x20\x4d\x84\x29\x5a\x7b\xd5\xd3\xe1\xe0\x37\xf1\x83\x93\x44\x12\x9b\x7d\xb9\x8b\xd6\x3d\x9e\x96\x22\xe4\x00\xd9\x84\xaf\x35\xf7\xc6\xa7\xf3\x9d\xd4\x3e\x18\x2f\xf9\x64\x8b\x53\x4c\x82\xc6\x14\x67\x62\x2d\xc1\xef\x6c\xc8\x83\x54\xa2\x0e\x9e\x36\xc9\xb4\xb3\x4a\x5e\x5b\x34\x97\x81\x6a\x3c\x10\xed\x93\x89\x24\xde\xc3\x01\x23\x66\xb1\x04\xf8\x6a\xbd\x2e\x9d\xee\xbb\x69\xa9\xf0\x66\x9b\x57\x5e\x43\x0c\x88\x3e\x29\xf2\xbe\x4e\x0c\x30\x83\xdc\x21\x68\xa4\x7d\xc0\x3b\xf5\x70\xcc\xe6\x25\x35\x33\xd3\xa4\x08\xe3\x45\x47\xf0\xa7\xd5\xbe\x48\x0e\x07\x74\x08\xcf\xf6\x99\x17\xb6\x7d\x57\x34\x37\xb5\x58\xc0\xf9\xf2\x37\x2d\x5f\x96\x70\xd4\xfd\x6c\xfa\xe4\x05\x1e\xaa\x8c\x63\x04\x4d\x1b\x4c\xcd\xda\xc3\x3b\x75\xa2\x68\x88\xc0\x90\x75\x21\xac\x9d\x71\x08\x2d\x79\x51\x63\xb1\x98\x23\x93\xcc\xe1\x58\x74\x32\x94\xf9\x78\x3a\x8b\x49\x11\x6f\x3b\x40\x7b\x77\xd9\x85\xe8\x9b\xa3\xf9\xf7\xce\x68\xfc\x7c\xae\xf5\xce\x57\xfc\xbe\x94\xd7\xd9\x87\xaa\xa1\x35\x64\xf1\x4c\x26\x63\x86\xd8\xf9\x9d\x13\xa1\xf8\x4b\x3c\x6a\x62\x46\x74\xcf\xa7\x4a\x4f\xf9\xc1\x90\x6e\x5a\x8f\x27\xb3\x95\x6e\x22\x1a\xe5\xf1\x6d\x1d\xfb\x0d\x66\xa0\x63\x89\x94\xc4\xb7\x29\x12\x58\x90\x48\xf7\xa7\x24\x1e\xf0\xc4\xc3\x60\xfc\xb0\x6c\x84\xd4\x47\xf7\x5c\xf4\xa2\xce\xdf\x75\x35\x3b\x96\xfb\xd8\xb5\x9a\xdd\xa8\x8d\x13\xef\x69\x0e\x4d\xb6\x08\x8e\x5c\x88\x01\xca\x36\x54\xe3\xa6\xd8\xd1\x4a\x0d\xb9\x83\x74\x07\x63\x5a\xb9\x19\x96\x27\x35\x4b\x0e\xe6\x8a\x07\x2b\x3b\xea\x33\x6e\xf4\x9e\xe3\xd3\x1a\x1c\x33\x36\x03\x0c\xd9\x11\x1b\xb6\x5b\x4a\x90\x6f\x8e\x02\xa9\xda\xbb\x6e\xc9\xfa\xba\xd2\xa7\x66\xa1\x25\x8f\x78\x9c\xa1\x2e\xe9\xad\x46\xaf\xe0\x5a\x81\x94\xa9\x2f\x71\x8c\x52\x9c\x44\x19\xe7\xc4\x3b\x60\x3d\x5e\x7f\x90\x27\x98\x24\x66\x97\x4e\x20\x7b\xae\x72\xd0\xfb\x92\x83\x8e\x22\xf4\x47\x98\x5c\x04\x3f\xae\xfd\xab\x38\x6c\xa3\xe5\x63\x79\x85\x26\x83\xe3\x3b\x54\x10\x1d\x03\x0a\x39\x24\x75\x7c\xa3\xf0\xb8\xd6\x28\xbb\x2e\xec\xfb\x7f\xe1\x33\x35\x64\x58\xff\x38\x6f\xe6\x02\x1b\x0e\x72\xfa\xee\xa2\x2a\xee\x3a\x5a\xcc\x44\xe7\xdf\xbc\xc7\xbd\x77\xa4\x2b\xfd\xd7\x8a\xab\x39\xa7\x87\xbd\x23\xc8\xe6\x9f\xbf\xdb\x3e\x1a\x24\x32\x55\x81\x8d\xde\xb4\x0e\x59\x21\x6c\xe4\x6b\x5a\x9c\x85\x38\x82\xff\xe9\x6b\xe6\x1c\x3e\x1e\x76\x26\xef\x24\x8f\xd0\xf2\x01\x37\x13\x7a\x83\x4d\x05\xff\x25\x17\xd8\xe9\xc5\xe1\xcc\x61\x6e\x14\xa2\xf0\x55\x76\xcd\xa8\xb1\x09\xa5\x48\x22\x7d\x0b\x8b\xc8\x44\xbe\x3b\x2e\x7a\xc7\x8f\x54\x8f\xcf\x79\xe3\x28\x1d\xbf\xcc\x85\x0d\x9e\x16\x8b\xc1\x3b\x72\xcc\x5e\xcb\x42\x96\xfb\x04\x1b\x83\x5b\xf8\xc7\x46\xc2\x5a\x49\x82\x7e\x64\xd1\x3c\xde\xfe\xfe\x3f\xee\x8c\xe5\x71\xe4\x72\xe6\x7d\x41\x3d\xc6\xfd\x07\x0f\x9b\x89\xec\x31\x66\xca\x73\xc5\xd2\x68\x46\xa3\xd1\xbf\x37\xd8\x47\x0c\x6a\x32\x17\xec\x63\xee\x72\x23\x9c\x7f\x4b\x7f\x80\xef\x78\xc7\x06\xa2\x79\xc7\xd1\xf7\x88\xe4\x7d\x10\x8f\xca\x7e\xf2\x1c\x6d\x44\xaa\x28\x80\x67\xe7\x59\xa2\x1f\xc9\x76\x21\x3b\xfb\xc6\x6f\xec\xcd\x38\xc3\xb3\x57\x3a\x2c\x14\xa5\x5e\x78\xa6\x40\x72\x03\xba\xbc\x38\x92\x31\x2a\x3e\x69\x64\xce\x41\xc2\xe7\xe9\x75\xd4\x0b\xbe\x7f\x8a\xc9\x84\xcb\x8d\xb3\xd5\xf2\x25\xde\x78\xe5\xe7\x78\x62\x9e\x1c\xd6\x96\x21\x9e\x54\xcc\xe1\x87\x66\x97\xa7\xeb\x35\xf4\xd1\x30\xef\xf7\x19\xba\xd1\xca\xee\x55\x6e\xb1\xcb\x42\x10\x4d\x42\x18\xfb\xf7\x6f\x7a\x8d\x70\x21\x42\xaa\x8f\xd6\x4e\xa2\xf5\x97\x93\xda\xf0\x8c\x93\x6e\xd9\x24\x1a\x70\xf0\x6a\xec\xd7\x0b\xb8\x6c\x2c\xc3\x43\x4e\x3e\x75\xd2\x37\x49\x86\xf4\xa3\xd1\xa9\x96\x3e\x06\x15\x21\xf1\xdc\xf1\x8e\x30\x03\x35\x7a\xb7\x96\x77\x4f\x51\xd5\x67\xf1\xde\x63\x90\x24\x7e\x14\xb9\x92\xd0\x1d\x50\x47\x67\xcf\x94\x2d\x7c\x0b\x2c\x07\xcf\x74\x04\xa2\x6d\xd6\x95\x14\xf0\xc3\xfa\x82\x07\xd4\xdd\x5c\xe3\x27\x1a\x84\x73\x80\x02\x7a\xe8\x76\x08\xc0\x1e\x3a\xa4\x8f\x5f\xe7\x1d\x1a\x7b\xe0\x4c\x41\x3f\xac\x4b\xd2\x9a\x63\x6b\x79\xc1\x8b\x58\xed\x70\xe7\xd0\xad\xee\xf7\x7f\x96\xce\xc9\x19\x74\x2b\xfa\x76\x3c\x01\x9b\x5e\x76\xc6\xde\xfa\xd0\x01\x69\xb3\xf2\xa2\x93\xbc\x74\x34\x0a\x26\x20\x85\x8e\x6c\xdb\x92\x29\x16\x28\x13\x69\xe6\x79\x7a\xa5\xae\x82\xea\x28\xfa\xd7\x07\x71\x0e\xa7\x65\x3d\x6c\x30\x7d\x8a\xcf\xa3\x32\x8e\x63\x89\x7a\xba\xf9\x86\xe1\x7b\xb1\x94\x97\x71\x19\xde\xb4\xf0\xd9\x1f\x28\x0b\x08\xb0\x0f\x78\x05\x79\x75\x64\xe2\x94\xd6\x09\x15\x13\xcb\x7b\xca\x41\x4e\xe3\x44\xd1\xf2\x7d\xa1\x0b\x37\xef\x47\x52\xf5\xdc\x8e\x71\x0c\xd4\x8b\x91\xb8\xe4\x4a\x85\x56\xdd\x20\xc3\xd6\x80\x17\x53\xf7\x8a\x81\x72\x24\x48\x4a\x80\x49\xb9\x2f\xa0\x39\x95\xa7\x56\xc3\x2b\xa5\xfe\x41\xac\x6c\x69\xc2\xd2\xaa\x60\xc9\xaa\xb5\xf9\xe6\x32\xed\xa2\x17\x3b\xf8\x25\x91\xb8\x57\x8d\x24\xa2\x84\x99\x4c\xa5\xe4\x80\x61\xc3\xcc\xb7\x88\x71\x40\x69\x30\x9e\x4c\x94\x2f\x05\xaa\xf8\x32\x0e\x39\xbc\x23\x7b\x8c\xf5\xa4\xb1\x2d\x94\x40\x46\xec\xe7\x4f\x76\x2a\xf0\xa8\xbb\xba\xe5\xb9\x90\x67\x35\xef\xeb\x91\xbe\xe5\xfa\xe7\x7a\x94\xf3\xa9\x0f\xe9\x56\x79\x12\xfa\x65\x21\x5a\x25\x7c\x27\xe3\x38\xb8\x67\xbb\xab\xdb\x47\x5e\x19\x60\x56\x2e\x94\x38\x59\x40\xb1\xba\x74\x11\xdd\x59\x56\x2d\x53\xd8\xf0\x51\xf6\xe1\x32\xad\x96\x38\x9f\x28\x85\xeb\x3e\x18\x47\xa6\xe6\x8f\x3b\x16\xaf\x4a\x03\x00\x5e\x55\xe0\x3a\xb1\xe9\x18\x4b\xe7\x84\x95\x46\x88\xbf\x1f\x9e\xa8\xf8\x91\x27\x86\x4e\xfe\xe1\x25\xd1\xe5\x05\xab\xf2\xe5\x70\xe7\x43\xc9\x36\xf2\xa6\x4b\x17\xce\xda\xa9\xf8\x3e\x7d\x19\xe0\xf8\xe3\x0c\x03\xc9\xfe\xf2\x84\x23\x4e\x3a\xd9\xf3\x24\xa5\x86\xa3\xdb\xb2\xa4\x1a\x9f\x73\x45\x24\x19\xb6\xf6\x5a\x9e\x5e\xc3\x54\x8b\x9f\xcb\xc5\x70\xa0\x47\xda\x37\x88\x30\x45\x12\x8f\xfc\xd7\x48\x1c\x6c\xa9\xb5\x82\x0b\xcc\xf2\x3b\xfc\xd4\x10\xa3\x9c\x70\x6e\xf1\xdd\x37\x3d\xc9\x43\x6f\xf0\xf7\x4b\xf3\x90\xdf\x2a\x08\x18\x60\x55\x2b\x35\x40\x22\xde\xa5\xff\xb5\x73\x29\x40\x30\xfd\xc3\x21\xd0\x47\xcb\xce\x6a\xb8\x45\xff\x58\xa3\x3b\x74\x5c\x4b\x23\xaf\xb1\x4b\x37\x99\x06\xfc\x10\x66\xda\x5d\xe1\xee\x18\xd3\x1c\x1e\xe9\x85\xa1\x03\xee\xd5\x77\xf2\xee\x64\x81\x97\x0e\xc3\x53\xdc\x31\x25\xd7\xbc\xa4\x39\x1a\xd8\x57\xc5\xc9\x9d\x4b\xf3\x52\x19\x62\x5c\xbb\x90\x97\xdb\x0e\xb4\xbc\xd2\xdc\xeb\x26\x6f\x79\xda\xa2\x2c\xe4\x2c\xc9\x3b\x5d\x66\x1d\x13\x2b\xc7\x71\xd1\x34\xee\xe9\x4c\xaf\x3a\x79\x9b\x23\xcd\x91\xa0\x58\xd9\xb8\x44\xf9\x95\x26\x5d\x35\xb5\x6e\xcb\xfe\x05\xbc\x98\xa7\xa7\x88\x34\xa9\xf7\xa1\x6e\xd2\xc4\xe0\x56\x9b\x26\x96\x35\x07\xf6\xdf\x89\x9d\x49\x56\x07\x2d\xe4\x6c\x70\x21\x78\xad\xae\xd3\x86\xaf\xd8\x39\x14\x69\x02\xc5\x4f\x5c\xf1\x3d\xe9\x0c\xdd\x25\x4a\x86\x40\x80\xf3\x14\xba\x92\x97\x82\x35\x24\xff\x3c\x48\x3b\xd4\xcb\xa7\x9d\x04\x79\x8a\xf9\x70\x43\x81\x9b\x13\x47\x88\x6d\x38\xf6\x19\xa2\xc3\x10\x47\x79\x85\x27\xf2\x9c\x84\x4a\xb3\x31\xa6\xed\x5d\x45\xe3\x96\xca\x52\x14\x74\xda\xb3\xb5\x84\xdd\xb6\x1c\xef\xb6\xb1\x76\xdd\xa9\x09\x6a\xf4\xfc\x62\x17\x24\x9c\x3e\xb4\xe2\x49\x49\x2d\x71\xca\x0f\xab\x68\xa6\xbb\xe3\x8a\xfe\x40\x4f\x59\x81\x89\xf0\x43\xe5\xb5\x9b\xed\x23\x67\x8d\x03\x4f\xbe\xaf\xa2\xb9\x3e\x86\x8a\xaa\x59\xcb\xd3\x0f\xea\x34\x9e\x40\xdf\x6e\xf4\x2d\xe6\xef\xfc\x7b\x9a\x08\xf7\x5e\xb0\x56\x8d\x9a\xb2\xed\x1a\xee\x85\xd8\x4a\xdd\x86\x75\x32\xdd\x70\xac\xeb\x69\x75\xa3\x2e\x67\x7b\xaf\x08\xd0\x57\x16\x47\xf0\x0f\x68\xf0\x68\xf7\x5b\xd7\xdd\xd6\x9b\x15\xbf\xdc\xdd\xed\xf8\x9e\xf8\x75\x29\xc7\x47\x7e\x0e\x04\x06\x61\x8f\x16\x94\xf5\xa9\x44\x76\x2a\x7f\x73\x7c\xbb\xda\x3d\x32\x1f\x47\xdb\xfb\x2f\xe1\x3f\xae\x3c\x93\x09\xf4\x70\x40\xe8\xb9\x9a\x99\x8f\x15\x5e\xec\x2d\x1a\x60\x1d\x86\x08\x5d\x77\xf5\x21\x1b\xb9\x4b\x2a\x0f\x0c\x19\x5a\x4e\x96\xbc\x26\x9a\xb7\xd9\x7a\x13\x53\x86\x30\x40\xec\xf6\x91\xaa\x34\x20\x2d\x5b\x36\x8c\x42\x9a\x7e\x5c\x3b\x54\xce\x3e\x15\xbf\x0c\xde\xdc\xec\xe0\x03\xf2\xe9\xa3\x02\xc9\x83\xf1\x99\x01\x1c\x62\x6b\xe2\x65\x3d\x7f\xaf\xd6\x37\xc7\x06\x9f\x76\x72\x86\x5c\xef\xe8\xa1\x47\xc6\x84\x4e\xb3\xfd\x92\x43\x0d\x52\x2b\xb0\x12\x27\x61\x9d\x8e\x3f\x38\x97\xc6\x87\x9f\xb0\x0e\x2e\x19\x28\xe3\x4e\x03\x3f\x39\xbf\xda\x36\x6d\x33\xd0\x31\xc0\x2d\xbf\xf7\xbf\x48\xe0\xe1\xbc\x72\x0e\x9e\x2f\x2d\x6e\x57\x03\xc7\xfd\x7a\x2b\xc1\xc5\x19\x59\x2f\x38\x16\xac\xf5\x85\x33\x46\xcc\x82\x86\x2f\x0a\x35\xf5\x86\xaf\x31\x7c\x91\x53\x49\x41\x9c\xe8\x9e\x2d\x27\x62\x49\x2d\xd3\xac\x49\xb6\xab\x93\x22\xaf\x7a\xbe\x92\xcb\x78\xf9\xa1\xe1\xd8\x9a\xab\x8a\x50\x39\x1c\x56\xc0\x47\xa7\xb1\xce\x76\x12\xe4\xf2\x62\xa8\x7b\x3d\xe6\x4f\x9a\xf0\xdd\xd2\x72\xd2\x27\xd1\x11\x6b\xa3\x33\x85\x10\x6f\x43\x0b\x5c\xc2\x3c\x91\xb7\xb0\x32\x41\xc7\x1c\x0a\x77\xce\x1e\xc6\x08\x7c\x46\x69\xb3\xa8\x63\xe0\x63\x58\xe0\x52\x73\xa8\x48\x4b\x95\x45\xe5\xf2\x12\xcf\x85\x7b\x1f\x2f\xc1\x56\x1e\xe3\x32\xe6\x6d\xd7\x1c\x2b\xa1\x77\x70\xa3\x9e\xe9\x1d\x9d\x9d\xe9\x5b\xb3\xfe\x07\xe2\x61\x24\x39\xd2\x51\x85\x75\x04\xd0\x04\xa0\x50\x0a\xb9\x6e\x9a\x1e\x07\x9e\x03\x64\x48\xb6\xc8\xcb\x70\x76\x51\xca\xeb\xe2\xdf\x7a\xb0\x91\x18\x49\x25\x8e\x21\xee\x12\xb9\xb3\x98\xdb\x23\x9c\xe8\x0a\xf7\x27\x1b\x3a\xfe\xd1\x06\x33\x6a\xf4\x52\x6f\x56\x9c\x79\x71\x49\x90\x77\x16\x0d\xcd\x8e\x0a\xf9\x86\x73\x32\xdc\x58\x22\xd3\x3b\x5a\x86\xb8\x1c\xeb\x39\xb3\x23\x71\x7c\x5a\x7e\xae\x79\x2e\x36\xdb\xbe\xbc\xae\x85\x7b\x92\xf5\xb0\x79\xe7\x7a\xf8\xa2\xed\x56\x6c\x52\x10\x6b\x7a\x83\x18\x20\x82\xf5\x67\x94\xcd\x8b\xea\x5b\x06\x9f\x45\x26\x6d\x79\x7b\xd7\x5b\xb6\x08\x49\xe6\x40\x52\xf4\x61\x89\xef\xcf\xc4\xfc\x74\x54\xb4\x81\x67\xf8\x4a\x8f\x10\xba\x36\x21\xa6\x85\x6a\x4e\xf9\x9d\x9e\x74\x99\xc6\xf3\xc4\xec\x00\x11\x09\x4a\x36\xe1\xcd\xed\x46\xde\x61\x93\xa7\x76\x89\x45\x94\x9b\x8a\x85\x50\xea\x4d\x5a\x84\x0f\x4c\x54\x84\x59\xeb\x13\xb6\xd2\x95\xb7\x19\x72\x30\x61\x6f\x1e\xee\xc2\xd2\xc4\x29\x2b\x0b\x63\x9c\x05\x3f\xc0\x05\xfe\xfd\xf0\xbe\x17\x02\xce\x3d\xc0\xfb\x49\x43\x67\x67\xc1\xb5\x1f\x1d\xa4\xd9\xcd\x20\xa8\x01\x84\x9e\x5e\xc5\x73\x43\xdf\x30\x20\x62\x74\x55\x3c\xec\xf2\x2b\x06\xd8\xea\xfc\x09\x57\x4a\xf0\x1b\x61\xfe\x02\x25\x5e\xf7\x86\x88\xed\x0a\xe5\xa5\x71\x9f\xe0\x05\xca\x42\x1f\xe0\xef\x9b\x90\x33\x1b\xfb\x48\xf2\x44\xe4\xc2\x79\xd9\xa7\xa8\xdd\xa7\x58\x8c\x86\x54\x7d\xdd\x5d\x5f\xfc\x66\x27\x8b\xdb\xe5\x25\x25\x1a\xff\xea\x37\x8b\x48\x2f\xd5\xfb\x82\x3f\xde\x34\x06\xc6\xbc\xe9\xb8\x52\x73\x32\x2f\xdd\xbe\xdf\xe9\x7b\xe1\xab\x18\x05\x06\xd2\xe1\xb1\xac\x2f\x66\x55\xa7\xd9\x61\xdf\x5c\x72\xaa\x07\xe4\xa0\xbf\xcb\x73\x0e\xfd\x9b\x15\x46\x28\x50\x3d\xdf\x8c\x2a\x38\x47\x8e\x79\x69\x23\x9a\xc7\x6f\xc2\x9f\xe3\x56\xc0\x94\xbd\x84\x5e\x35\xec\xc6\x09\xbb\x45\x33\xd4\x1a\x71\x24\xf4\xfe\xc8\x7b\x7b\xfe\x85\x42\x66\xca\x1e\x29\xc7\x1f\xdb\x8b\x98\x08\x54\x12\xcc\x34\x46\x34\x52\x76\xab\x48\x15\xa3\x50\xf8\x78\x03\x74\x44\x27\x00\x67\x52\x19\x81\xee\xf8\x1e\x4d\xde\xf6\x4e\xb4\xcb\x39\x21\xf1\x75\x38\x2c\xf7\x59\xf4\x9a\xa9\x42\xa4\xbd\xbd\x57\xb4\xe9\x1b\x40\xbb\xc4\xe3\x62\x1e\x4f\x41\xd7\x4c\xd0\x1e\x55\xa3\x71\x1e\xb9\x3d\xd5\x3e\x8c\x80\xe7\x5e\x66\xfd\xc3\x8f\xcf\xc2\xa4\xe4\xce\xa7\x67\xab\x72\x91\x37\xe8\x9f\x9c\x1d\xb5\x27\x42\x3e\xcb\xb6\xbe\xc5\xbb\x1e\x9c\xa5\x59\x4b\xe4\x68\xe9\x81\xf5\x37\x52\x2d\x1e\xdd\xf0\xc7\x2d\xb6\xf6\x4b\xd0\x93\x1a\x2f\x9e\x86\x59\x79\x9f\xe5\x22\x1e\xe1\x5c\xb0\xd3\xd9\xdd\x1c\x6c\xac\x8d\xe3\x72\x09\x8b\xe2\xef\xd4\x18\x86\x13\xf2\x4b\x07\x31\xe8\x23\x24\x33\x53\x3a\xd2\xe2\xe8\x71\xf0\xf1\x23\x0b\xf3\x57\x95\x92\x93\x74\x47\x12\xf2\x5b\x51\xaf\x43\x5c\x70\x00\x6a\x27\xcf\xb5\x06\x58\x84\x9c\xee\x10\x73\x3a\x80\x4d\xa2\x1a\x8b\xaa\x51\x59\x4a\xd6\xfb\x11\x53\x79\xc1\x79\xe6\x02\x79\xbe\x10\x22\xa2\xc0\x06\x99\x5f\x72\x52\xae\xa5\x39\xb1\xdb\x92\x90\xc4\xfb\x94\x04\x79\xa8\xb2\x08\xb6\xf4\x92\x3a\x67\xbd\x94\x74\x90\x6b\x19\x75\x4c\x1c\x36\x12\xa0\x39\x96\x28\xcc\x50\x80\xc6\x26\xda\x92\x0a\xaf\xbb\xe5\xb3\x06\x3a\x4f\x49\x80\xf7\xd3\xf2\x02\x2e\x50\x3e\x85\xb5\x34\x45\xbd\xfc\x96\xfe\x9b\x27\x2f\xb3\xe4\xf0\xe2\x22\x67\xc6\x47\x19\x67\x40\x3c\x13\xfe\x3b\xdb\x22\x9c\xe8\x97\xe2\x25\x1d\xdf\x0a\x47\xd4\xa2\xa6\x95\x37\x94\x0e\x15\xb8\x32\x22\xda\xb3\xf1\x2f\x6d\x61\x1c\xac\xc7\x9a\x5d\xb9\xdd\xf1\x95\x39\x31\x9b\xad\xd8\x0d\xeb\xab\x3b\x8a\x48\xec\xe0\x1c\xc7\x0c\xbb\x19\x1d\xee\xa0\xf2\xd0\xb8\x0e\x09\x04\x8d\x86\xf3\xe3\x68\xf0\xa8\x6b\xb9\x1e\x70\xd1\xcc\x78\xd4\xcf\xc6\xa4\xb3\x19\x81\xba\xa1\x1d\xc1\x9d\x21\xec\xfa\x1c\xa8\x3c\xe2\x17\xe0\x9e\xea\x23\x7e\x0c\x25\x11\xd4\xa4\x2f\x12\x3f\x2d\x94\xe7\x0b\x11\xcd\x3f\xe5\x07\x3a\x72\x80\x3d\x36\x80\x55\x67\x97\x2f\x3a\x73\x5a\x98\xcb\x53\x9f\xd1\xed\xfb\x83\x3c\x45\x70\xf9\xe2\xcd\x85\xb9\x83\x6c\x00\x19\xe6\xdf\x00\x3a\xcd\x89\x84\x90\x65\xa9\x29\x95\x5a\xfc\xcb\x69\x90\xbe\x69\x9a\xf8\xfb\x08\xd8\xf1\x1d\x18\x73\x0b\x57\xab\x16\x31\xac\xd8\x3e\x5f\x4a\x2c\xcc\x0b\xbc\xc0\x85\xd0\x2e\x9a\x62\xba\x5d\x33\x54\x05\x5c\xc1\x3b\x77\xb0\xf2\xd2\xd3\xfa\x56\x42\x38\x99\x47\x27\x8f\x16\xf9\x22\x5b\xf5\x55\xe7\xdf\x8d\x45\x28\x3d\xe8\x0b\x9a\x6d\x6b\xaf\xe8\x94\xf3\xe6\xfc\x32\x8c\xf5\x5d\x79\x00\xa8\x3e\xc8\xbe\xbc\xa4\x6f\xe4\x1b\x7e\xd9\xfe\x36\xac\x0b\xdc\xfb\xb9\xf6\x9a\x0e\xcd\xf9\x0b\x70\xac\x41\xc0\x55\xb3\xb9\x38\x7d\x31\xea\x01\x87\x9e\xf2\x92\x58\xd2\x97\xd7\xe9\x8b\x88\x98\xa2\x06\x3e\xa1\x9b\xb0\xe4\x68\xdc\x88\x91\x56\x77\x30\x99\x0c\x75\x86\x00\x3a\x63\xc9\x49\x6e\x7a\x03\xea\x73\x31\xc2\x9a\xd3\xc9\x8b\xe2\xf2\x0e\xa4\xca\x14\x36\xe1\x6b\xb9\xd0\x97\x37\xf3\x3e\x3f\x82\x45\xce\xcd\xe2\x0e\x96\x57\xf3\xa1\x76\x59\x69\x5d\xcb\xb7\xa2\x0a\xba\x7b\xe0\x6a\xc0\xa5\xae\x07\xcc\x5e\xf2\x02\x39\xe0\x4a\x78\x2b\xdf\x4c\x8f\x2a\x4e\x1e\xa6\x9a\x14\x88\xef\x5d\x8c\xf0\x43\x29\xdb\x46\x83\x15\xae\x9d\xdf\xa7\xf1\x22\xfc\x31\xef\x85\xa4\xf2\x6c\xcb\xcf\xeb\x7d\xff\xce\x2f\xda\x38\xaf\xef\x9a\xbd\x25\x0b\x7a\x2e\x85\x25\x59\x26\x21\xe3\xe4\x35\x6f\x97\x81\x5c\x8b\x89\x69\x27\x74\x7a\x0c\x0a\x8e\x7e\x70\xd2\x9c\x05\x18\xef\x3b\x9a\xdc\x5c\x5d\x21\xe6\x1a\xc2\x80\xb2\xed\xb2\x7a\xec\xbe\x92\xe4\x58\x1a\xcf\x35\xe3\x89\x80\x66\x10\x05\xd6\x96\x1f\xa8\x63\xca\xa5\x85\x44\x32\x3f\xaf\xc1\xd7\x9c\x1d\x4a\xb5\x83\xbe\xa9\xff\x56\xec\x8d\xf8\xbc\xe7\x03\xf4\x07\x88\x51\xd3\xe1\x50\x98\x40\x41\xb8\x69\x9b\xa6\x1f\x3d\x49\xf2\x9a\x92\xa4\xdd\xd4\xfc\x57\x67\x01\x8a\xf4\xcd\x4a\x1e\x36\xb8\xa3\x28\xfc\x22\xd8\x83\x83\xad\xb7\xb4\x30\x8d\xef\x03\x4b\xc2\x6c\xa9\xd9\xc6\x56\x39\x42\x56\xee\x24\x76\xc9\x69\xc9\x60\x60\xee\xab\x54\xcc\xd8\x19\x31\x06\x45\xd6\x73\x31\x0b\x8e\x53\xb0\x3e\x42\x52\x4f\xf4\xf6\x31\x85\x4c\x04\x9e\x98\x98\x08\x19\x31\x31\x91\x95\x62\x62\x32\x69\x69\x72\xd7\x55\xe3\xd9\xba\xbc\x3c\x9f\x83\x08\xef\x4c\x75\x70\xf9\x84\x9d\xd9\x03\x18\xbd\x20\x08\xe2\x83\x4f\xd2\x02\x19\x6e\xc7\x19\xa1\x16\xb8\x23\x3d\xe8\x7e\xa1\x26\xdd\x17\x0f\xd8\x63\xff\x41\x5f\x16\xeb\xa4\x2a\xbf\x27\x1c\x5f\x75\xd8\x1b\x92\x49\xd0\x63\x79\xf6\x82\xaf\xbe\x1a\x54\xe0\x22\x26\xd8\x61\xf2\x19\x53\xc5\x85\xf1\x6a\xf0\x5b\xca\x93\xf0\x9a\x79\xbe\xa7\xc4\xee\xc1\x7d\xa8\x4d\x8e\xfd\x2b\x92\x42\x7a\x44\x1e\x13\x3f\xa2\x8b\xa1\xea\x6c\xed\x8e\x94\xf6\xf1\x91\x7d\xbc\x64\x76\xd3\xf0\x2f\x1c\x35\xe1\x19\x47\xa0\xf9\x07\x27\x76\x83\x5a\xd2\x3f\xc8\xce\x9a\xb7\xfc\x0d\x77\xec\xc5\x56\xf5\xce\xd5\xa3\x53\xff\xe8\xba\x94\x63\xac\xa8\xca\xe2\xa9\x7f\xc2\xd8\x6b\x2a\x26\x78\x60\xaf\xb7\xf2\x37\x27\x21\x31\x05\x1b\x15\xa2\xf2\xd5\xe5\x7e\xd8\xf3\x93\xa8\x97\x88\xe6\x77\x86\xec\x69\xdf\x0e\x74\x78\xb0\xcb\xa7\xfc\x49\x7d\xe2\xcf\xc8\xd8\xc4\xb9\x15\x0e\x3c\xab\x8a\x6f\xe6\x44\x57\x63\x7e\x28\x45\x43\x67\xc4\xad\x27\x41\x16\x6d\x6d\x51\xdc\x4d\x0a\xbe\x76\xfa\x78\x3a\x8e\xc5\x5e\xe0\x15\x05\xd5\xb1\xca\xbc\xcb\xfc\x3c\x59\x05\x8f\x52\x85\xfe\x65\x70\x03\x35\xe6\xea\x2d\x11\xf5\x5f\xf0\x61\xce\xf9\x23\x62\x4c\xfc\x4a\x59\xff\x45\xbc\x52\x6f\x43\xce\xe9\xf8\xd9\x3b\xb5\xe4\xe0\xb7\x03\x22\xe1\x8c\xc5\x22\x0b\xcf\x21\x8d\xe8\x41\x93\xc7\x12\x54\x32\x69\x47\x37\x9e\x17\x9c\x39\x86\x1d\x9f\x83\xf2\x5c\x3f\xbf\xb4\x0c\x9b\xc8\xef\xcd\xb3\xa7\xe7\xaf\xc6\xa0\x53\x36\xa2\x19\x53\xa6\xa3\x19\x73\x3c\x46\x2e\xa1\xe7\x07\xc0\x17\xd1\x23\xc8\x23\xdd\x17\x72\x9f\xaf\x46\xd5\xd2\x19\xa4\x2d\x88\xe8\x58\xc0\xa7\x11\x4a\x64\x99\x39\xb0\xb9\x87\xd1\xe6\xe0\xe8\x83\x43\xef\xd6\xae\xeb\x66\xda\xec\x24\xf9\x28\xab\xea\xba\x9c\x75\x28\xf8\xa1\x6d\xae\x61\x16\x87\xa7\x9b\xd8\x3c\x65\x06\xd6\xc3\xf8\xba\x33\x47\x82\x0b\xcd\x8c\xbd\x25\xda\x2d\xc7\x62\xf4\x19\x27\x8e\x17\x29\x96\x94\x80\x7b\xf6\x81\xcb\x16\xbe\x0e\x1c\x15\xd8\x6e\x02\x9e\x44\xdb\x9c\x20\xab\x28\xf9\xd1\xba\x26\xd1\x0a\x8f\x06\x59\x95\x57\x4e\x95\xd9\x84\x11\x9c\x79\xc6\x43\xdc\xf5\xfd\xa1\x4b\xc2\x09\xf0\xfb\x66\xe3\x21\x4d\xaa\x19\x75\xf2\x50\xf2\x0d\xc4\x91\x29\xf8\x8e\x5f\xcc\x1a\x81\xea\x06\xb3\x0c\xc7\x8c\xab\x14\xca\xaf\x14\x3a\xd7\x08\x93\x4d\x76\x84\xef\x35\x2d\x93\x2e\xe6\x5b\x4e\x45\x09\x40\x8d\x36\x5b\xce\x0e\xd6\x54\x8b\x4d\x4b\x1b\xc8\x73\xb1\x68\x91\xa7\x66\x5b\x0e\x5c\xa9\xd9\xc9\x92\xf4\x49\x1d\xd1\x61\x31\xb0\x82\xd0\xd5\x85\x4d\x60\xf1\x08\xc5\xb9\x35\x7a\xe5\x40\x0c\x11\x1e\x8a\x31\x3f\xbc\x63\x41\x30\x97\xd8\xab\x27\x10\xee\x57\xc8\x76\xfe\xae\xf1\xe5\xb0\x87\xd1\x27\xf5\x29\xea\xf8\xd3\xda\x1a\xaf\xc6\x65\xe3\x23\xe8\x1a\x52\xb1\xcf\xc3\x4d\x1d\xaf\xc2\x40\x08\x9f\xfd\xf2\x55\xcb\x3a\x3d\x18\x9c\x35\xf3\x3d\x51\x06\x9b\xf6\xc3\xc9\xab\x67\x6c\xab\xe6\x2d\xc0\xe4\x73\x85\x97\xe6\x13\xf3\xb5\x60\xfb\xe5\xa1\x13\xa9\x2a\x4d\x5a\x7d\x96\x59\xcf\xf9\xac\x69\xef\x7d\x4e\x73\x58\xbe\x3a\x2c\x52\x48\x3e\xd7\x84\x83\x07\x7a\xd0\x24\x06\x74\x69\xcc\xc2\xc9\x45\xfb\x8f\x96\x4d\x2d\x7e\xca\x9f\x81\x84\xc7\x31\xdf\x46\xe4\x41\x0e\x73\xef\xd0\x87\x9d\xf7\x0b\xad\x43\x48\x47\xf9\x5d\x64\xcf\x70\xa6\x31\xc9\x3f\x8b\xb1\xc7\x11\xc3\xe3\xf8\x73\x29\xe1\xd9\x0a\xe9\x0d\x1b\x7a\x42\xd1\xe0\xb2\x97\xed\x3f\xed\xda\xcd\xa7\x0f\xd3\x67\x29\x72\x1f\x56\xff\x66\x45\xac\x56\x06\x29\x6f\x7b\xfc\x0c\x53\x73\x3c\x87\x20\x96\x11\xfa\xf6\x56\x56\xbf\xe8\x1c\xa5\x09\x84\x85\x8f\x8f\x5f\x68\x4d\x79\x50\x7a\x4e\x1c\x05\xa2\x4f\xab\xd3\x50\xf3\x33\xb5\x65\x8f\x8e\xa0\x63\x9a\x62\xff\x54\xe7\x66\x42\x5d\xff\xac\x11\xcf\xff\x78\xdf\x42\x54\x39\x3f\x19\x21\x76\xdc\x84\x3c\x64\x96\xc3\x14\xdb\x79\x82\xe1\xb0\x25\xbd\xdd\xa6\x13\x8b\xf7\x1a\xed\xf6\x3d\x73\x6b\xef\x9c\x5a\x7d\xe7\xe0\xf3\x10\x9f\x9e\x3d\xd7\xc1\x0f\xe1\xc7\x2b\x02\x2e\x0f\xbb\x34\x9f\x1b\xef\xd2\x4f\x2b\x00\x01\xc3\x89\xfe\xed\xb6\x59\x5e\xe1\x7d\x3a\x3c\x2a\x09\x47\x15\x44\xe8\x29\xb0\x50\xb0\xd4\x6e\x96\xec\xb0\xf2\x59\xb7\xfc\xcc\x10\x2f\x68\x60\x4e\x83\x58\xd7\x9f\xed\x29\x81\x0e\xc5\xd0\x0a\xf2\xf7\x8e\xbe\x71\xab\xc0\x1f\x05\x7d\xb0\x32\x58\x33\x6f\xb8\x74\x8f\x1b\xce\x5a\x41\x88\xef\xa0\x06\x3c\x52\xc0\xdf\xb7\xf4\xc5\x16\x47\x0f\x39\x78\x08\x5a\xe2\x07\x3c\xe4\x67\xa9\x01\xb6\x71\xf9\xcb\xc9\xfc\x53\x52\x77\xcd\xd0\x72\x1a\x36\x77\x24\xe0\xf5\x7a\x7c\xcb\xdb\xf7\x9c\x74\xe3\xdc\x3b\xad\x4e\x7a\x21\x90\xd4\x89\x7e\x27\xf5\xb9\x4e\x20\x11\x4b\x9a\x53\xa8\x33\x92\xd2\xda\x9b\x95\xef\x90\xf6\x46\x12\x7d\x77\xa4\x2f\x8c\xd3\xa2\x6d\x0e\x08\xb9\xfb\x53\x7c\x41\xd6\x3f\xa6\xf7\x84\xb2\xf4\x1d\x5a\x0e\x8e\x8e\xb7\x2c\xf0\x6c\xa6\xbc\xaf\x0d\xf7\xef\x05\xbb\xf9\x72\x18\xec\xb2\x3e\x0c\x7a\x20\x8e\x51\xd7\x05\x4a\xeb\xf0\xd1\x1c\xf9\xa1\x2b\x7d\x3f\x90\x66\x74\xb5\xa6\xfd\x91\xcf\xd8\x38\x5a\x7c\xfc\x8f\xff\xc8\xd0\xf4\xf3\x9f\xfe\xc9\xbc\xf8\xf6\x13\xe3\x7e\x45\x80\x44\xc4\xb0\xfa\x95\x4f\x19\x0a\x45\x9f\xdf\x65\x80\xec\xeb\xcd\x96\xdb\x7c\x35\xf6\x5a\xa2\x5e\x5c\x69\x38\x84\xff\x1f\x00\x00\xff\xff\x32\x63\x02\xa2\x88\xb5\x00\x00") +var _confLocaleLocale_itItIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\x7d\x4b\x8f\x1c\xc7\x93\xdf\xbd\x3f\x45\x8a\x7f\x10\x94\x80\x61\x0b\xfa\x6b\xfd\x80\xa0\x96\x3c\x22\x29\x91\x5e\x3e\x66\x39\xa4\xfe\x5e\x0b\x44\xab\xba\x2b\xa7\x3b\x97\xd5\x55\xad\x7a\xcc\x68\xb4\x58\xc0\x1f\xc0\x27\x9f\x7c\xdc\xa3\x0d\xec\xc9\x37\x9f\xf5\x4d\xfc\x49\x1c\xbf\x88\xc8\x57\x55\xf5\x90\xfa\xef\xf2\xc0\xe9\xca\x8c\x7c\x45\x46\x46\x46\x44\x46\x46\x16\xc7\xe3\xba\xb4\xdd\x76\xf5\xb6\x36\x9d\x6d\xaf\xdd\x6f\xae\x31\x3f\xb8\xde\x14\x43\xdf\x3c\x6c\xba\xa3\xeb\x8b\xbe\x31\xc7\xb6\xa9\xe9\x4f\x51\x55\x0f\x86\xae\x59\x2c\xf6\xcd\xc1\xae\x9e\xd2\x7f\x8b\xb2\xe8\xf6\x9b\xa6\x68\xcb\xd5\x45\x51\xd7\xb6\xaa\x1a\x53\x3a\xb3\x25\xf0\xb6\xa1\x8f\x85\xfd\xf5\x58\x35\xad\x5d\x3d\xe9\xf0\xb7\x58\xec\x6d\x75\x5c\x9d\x3b\xaa\x7d\xd1\xb9\x5d\xbd\x76\xf5\xea\x7c\xbb\xb5\xa5\x93\xcf\x66\xe8\x09\x74\xab\x5f\xc3\x71\xf5\xda\xee\x5c\xd7\xb7\x45\xef\x16\x2d\xff\xb4\x6d\x9a\x76\x63\x37\x9d\xeb\xed\xea\xd2\x51\xf7\xfe\x62\x37\x8b\x6b\xdb\x76\xae\xa9\x57\x3f\xca\x5f\xbb\x38\x16\x3b\x4b\x7d\xdb\xb9\xba\x58\xf4\xf6\x70\xac\x0a\x02\x7f\xa3\x3f\x16\x55\x51\xef\x06\x40\x3c\x77\xf8\xb1\xd8\xb6\x96\x92\xd7\xb5\xbd\x59\x3d\xa2\x9f\xcb\xe5\x72\x31\x10\x5e\xd6\x84\x80\x2b\x57\xd9\x75\x51\x97\xeb\x03\xc6\x73\xc1\x09\x8d\x19\x7a\x5b\xf7\xd6\x58\xc2\x0d\x8d\x98\xbb\x6d\x4b\x1a\xd5\xba\xe8\xa8\x53\xf8\x30\xae\x36\x45\xb7\xe0\x7a\xea\x82\xf0\xf6\x92\xf0\xa6\xe5\x16\xf6\x50\xb8\x6a\xf5\xe4\x21\xfe\x50\x57\xbb\xee\xa6\x61\x54\xca\x0f\x1a\xf2\xba\xbf\x3d\xda\xd5\xa3\xa6\xbe\xb2\xed\x81\xfa\x57\x1c\xfb\xed\xbe\x58\x3d\x92\xbf\x0b\x82\x38\x36\x84\x81\xa6\xbd\x25\xb4\xf8\x9f\x8b\xa6\xdd\x15\xb5\xfb\x8d\x30\x44\xa8\x78\x25\x1f\xbf\x15\xbf\x31\x42\x0e\xae\x6d\x9b\x76\xf5\x82\xff\x2c\x68\xa4\x6b\xd4\xb1\x7a\x39\x34\xd7\x8d\x49\xea\x40\xce\xc1\xed\x5a\xe0\x0b\x99\x85\x79\x81\x2f\xa9\x04\x99\x57\x4d\xfb\x5e\x8b\x7d\x4f\x3f\xc7\x65\xa9\x0f\x5a\xae\x19\x75\xa0\xa8\x09\xe3\x9c\xff\x83\xed\x7a\x47\xd3\x6d\x2a\x9b\x43\xb9\x45\x51\x1e\x08\x8b\xc7\x82\x68\x2a\x23\xad\xe2\x40\xe9\x3c\xfd\x52\x5b\xb1\xdd\x36\x43\xdd\xaf\x3b\xdb\xf7\x34\x87\xdd\xea\xd9\x81\xba\xd1\x4b\x2d\xa6\xa4\x62\x0f\x14\x64\x31\x0b\xb2\xb8\x6d\x86\x30\xbf\x7e\x5a\x25\x71\x1e\x1e\x83\xeb\xd6\x57\xd6\x96\x34\x93\x3d\x2d\x18\xa2\xb1\xa1\xaa\x08\x8b\xbf\x0c\x34\x9c\x6e\x75\x41\x5f\x84\x0c\xf9\x5a\xb8\xae\xa3\x1f\xa8\x78\x53\xd9\x03\x15\xdf\x16\xf5\x96\xc6\x74\x5e\xd7\x04\x47\x33\xf8\x53\x67\x8b\x76\xbb\x7f\xb7\x90\xbf\xab\xd7\x6e\x6b\xdb\x2d\x93\xde\xfc\xe4\x82\x90\x56\x6f\x85\x7e\xb8\x76\x5f\x39\x91\x47\x53\x82\x58\x4a\xaa\x82\x2a\x76\x35\x75\xba\xaa\xde\x2d\xf4\xc7\xea\x99\xfc\x55\xcc\xf5\xae\xc7\x88\x89\xd6\x08\x4f\x0f\x5c\x9a\x67\x8e\xb6\x35\xae\xa2\x75\xef\x0e\xb4\xec\xaf\xaf\x5d\xb3\x28\x9b\xed\x7b\x5a\x09\x58\xc0\xd4\xfe\xa5\x35\x04\xef\x88\x8e\x5d\x85\x49\xab\x4b\xe2\x1b\xcd\xae\x33\xdd\x60\x1e\x33\xe4\x19\x57\x72\x55\x5c\xd3\x72\xa1\xf9\xdd\xed\x78\x96\xbf\x2e\x4c\x5f\xb4\x3b\xdb\xaf\xee\xad\x37\xb4\xfa\xde\xdf\x33\xfb\xd6\x5e\xad\xee\xdd\xef\xee\x7d\x43\x8b\xd0\x5a\xb3\x1b\x5c\x59\x7c\xfd\x79\xf1\x0d\xd8\x88\x29\x7a\x1a\xa9\x76\x8a\x7a\x53\x30\x7b\x29\x0e\x1b\x57\x50\xb5\xbf\x0c\x45\xb5\x6d\xba\x02\xad\x32\xbe\x0b\x73\xe4\xa5\xfe\xc9\x02\xd3\x41\x9c\x61\x5d\x6e\x84\xc1\x71\xe7\x6a\xbb\xb5\x34\x5c\x02\x7b\x71\x7b\xf9\x77\xcf\xcf\xcc\x05\xcd\xeb\xae\xb5\xfc\x9b\xfe\xa3\x02\x5f\x9a\xc6\xbc\x71\x8f\xbf\x5b\x2e\xa8\xa4\xa0\x28\xa3\xa8\xc7\x45\x5f\x6c\x8a\xce\x72\x36\xd6\xe6\x1b\x77\x64\xc2\x2c\x7d\xc6\x9e\x80\x89\x39\x76\x7d\x36\x53\xd3\xc5\x4d\x15\x44\x7e\x40\x84\x1a\x6b\xa0\x1c\x45\xf3\x5b\x45\x2f\x26\xe3\xd0\xf4\x40\xe5\xb3\x97\x2f\x5f\x3d\xfe\x8e\x71\x43\xd3\xed\xae\xdc\xb6\xa0\x59\xb8\xfa\x8f\xeb\x9d\xad\x6d\x5b\x54\x6b\x5a\x4e\xc0\x3c\x8f\x70\xb9\xe8\xba\x8a\x38\x16\x91\xc5\x8b\xa6\x2c\x2a\xd7\xff\xfe\xcf\xe6\xf2\xf2\x39\x75\xa7\xdf\xaf\x2e\x88\xd0\x9a\x96\x18\x7a\xf7\x4b\x05\x5c\x69\xa3\x6f\xf6\xd6\x60\x35\x18\x00\x99\xe6\x2a\x62\xa6\x65\xd4\x84\x8e\x2e\x17\xb6\x6d\xd7\xc4\x4b\xfb\x5b\xe0\x99\xeb\x3c\x05\x2b\x95\x11\xf1\xd7\x4d\x6f\x36\xc4\x31\x51\x4a\x2a\x70\xf5\x35\xf5\xac\x24\x6c\x7b\x94\xe4\x25\x91\x64\xca\xc6\xd2\xfc\x51\x59\x22\xd2\xe6\xc6\x10\xf3\x6b\x8b\x2d\xed\x06\x9d\xb9\xb7\xbc\x67\x88\xfe\xcc\xbd\x87\xf7\x96\x8b\xba\x59\x0b\xe7\x00\xa7\x2e\x5d\x57\xd0\xc2\x58\xb7\x61\xc3\x20\x76\xf8\x92\x10\x77\x1c\x1a\x9a\x30\xe4\x12\x7a\x7b\x50\x52\x55\x18\x0f\x25\xc4\xd6\x11\xd5\x15\x44\xfa\x84\x49\xde\x14\x88\xd5\xd7\x09\xf3\xc1\x54\xa4\xc3\xf7\xec\x4a\x27\xf9\x39\x08\x51\x7e\x2b\x0f\xca\x4a\xd2\x40\xb8\x13\x0f\x0c\x91\xa3\xa5\xef\xeb\xa1\xe9\x8b\xe5\x62\xe1\xe7\x70\x86\xf0\x88\xc4\xbe\x03\x36\xb8\xba\xf3\xe3\xb1\xa2\x89\x57\x16\x48\x9b\x78\xa4\xa4\xd9\xac\xb0\x6c\xb7\xad\xbb\x76\xb4\x56\x1c\x28\xaa\x56\xca\xa3\xc1\xf7\xc3\x98\x4f\x1b\xe2\xef\xbc\xb3\x6d\xf7\xb4\xd6\x9a\x4f\x98\x1b\xad\x33\xba\x31\xaf\x1b\x9a\x10\x90\x6e\xc2\x9e\x02\x58\x20\xa7\x81\xd8\xa8\x71\x26\x72\x33\x96\x30\x5a\x4b\x04\xed\x4c\x47\xf3\x48\x34\x41\x7f\xab\xeb\x02\x70\xb5\x5f\xc9\xa5\x6b\xed\x16\xe0\xc4\x08\x07\x12\x06\xb0\x98\x9e\x74\x96\xd8\x03\x13\x3f\x89\x22\xb2\xb2\x7c\xa6\x6f\xef\xb9\x66\x50\xc7\xae\x2d\xcf\x20\xfd\xbf\xc5\xc2\x87\x04\x83\xb5\x21\x9d\x6f\x7d\xe7\x93\x8e\x59\x66\x76\x20\x08\xf0\x0b\xe2\x01\x0d\xed\xcc\xf5\xea\x71\x83\xd9\x6b\xf4\xd3\x37\xf4\x77\xe8\x67\x43\xeb\x52\x57\x21\x6d\x50\x97\x97\x4f\xcd\xb6\x02\xf6\xde\xbe\x7e\xde\x61\xf5\xed\xd7\x47\xc2\xe3\xea\x82\xfe\x2b\x90\x1d\x92\x7c\x2d\xc8\x31\xf5\x70\xd8\x10\xa5\xdd\xec\xdd\x76\x6f\xb0\xf9\x70\x4d\x90\xc8\xc0\x88\x3b\x33\x74\xb4\x11\x9d\x11\x03\xa5\xe1\x18\x42\x1e\x13\x9d\xe9\x1b\xa3\x24\xce\xe0\x57\x44\xa6\x03\xc8\x72\xdf\xf7\xc7\xb4\xd9\xa7\x6f\xde\x5c\xc4\xc4\xb4\x61\x66\xa7\x45\xb7\x6d\x2a\xd4\xc5\x84\x9a\x90\xcf\x92\xe9\x67\x68\xab\x15\x8d\x66\x4a\x58\x94\x31\x42\x85\xab\xaf\xaa\x81\x36\x74\x5a\x3e\xc3\xae\x72\x40\x82\xdf\x4a\x80\x95\x82\x36\x81\xc6\x10\x7e\xb9\x47\x9f\xe3\xbf\x4b\x42\x79\x59\x08\x23\xdf\x83\x49\x80\xe6\x6a\x26\x49\xa6\x7d\x63\x2b\xda\x85\x49\xfc\xa4\x96\x69\x7d\x34\x47\xac\xe1\xf9\x05\xf2\x7d\x81\x61\x10\x0d\x5d\xab\x5c\x35\x07\xa4\xa2\x56\x77\x20\x64\x04\x46\x6d\x2e\x5f\x10\x82\x38\xed\xaa\x6d\x0e\xab\xc7\x45\xfc\xf0\x23\x7c\x41\xc5\xd0\x53\x57\x13\x5d\xd2\x22\x69\xce\xcc\xeb\xef\x1f\x99\x7f\xf7\xe5\x9f\xff\xbc\x34\x17\xc3\xef\xff\xc7\x2f\xe5\xae\xa9\x98\x57\x04\x40\xc3\x9d\xa1\x6d\x85\xfe\xa3\x35\x75\x00\x2f\xb9\x87\xa5\x7a\xcf\x7c\xcd\x59\xff\xc9\x76\x34\x9f\xae\x59\x6e\x9b\xc3\x37\xcb\x05\x92\x88\x9a\x85\xde\xb9\xbb\x4c\xa5\x2f\x5c\x2f\xf4\xae\xf9\x93\x0d\x25\x87\xf2\xd2\xf2\x9a\xd6\xca\x95\x6b\x0f\xab\x73\xe1\x75\xc6\xcb\x92\x98\xf9\xd7\x29\xcb\xe3\x8a\xd7\xc4\x62\xdd\xd5\x6d\x80\x86\x88\x43\xc4\x4d\x53\x83\x69\x7b\x22\xc8\x63\xb2\x5c\xb3\xbe\xb0\xb5\xb3\xbc\x8a\x7a\x72\x29\xc4\x4b\x0c\x89\x24\x63\xc7\x9f\x24\x2c\x2d\x9a\xab\xab\x8a\xb6\x79\xd9\x93\x7c\x2b\x71\x6f\x7a\x25\xd9\x19\x18\x51\xed\x91\x54\x81\xc7\x81\x5f\x03\x93\x8f\x1e\xbf\x24\xae\x8f\x8e\x11\xc7\x38\x84\xf2\x24\xc8\x95\xe0\x37\xd7\xc5\x19\xf1\x34\xc2\x05\x84\x8e\xd6\x75\xb4\xe2\x6d\xe4\x35\xe8\x0b\xb2\x9a\x6d\x51\x1d\x80\x2e\x5a\xe9\xba\x57\x90\x88\x4b\x7c\xa8\x68\xa5\x39\x2a\xfc\x83\x26\xc8\x08\x48\xb0\x1a\x43\xa6\xdd\x4b\xe1\xb1\x27\x6d\x07\x5a\x16\x07\xa2\x89\xa1\x25\x06\x74\x86\xcd\xcb\x48\x76\x67\xc0\x65\x06\xd2\x8a\x8a\x92\x94\x84\xcd\xad\xc1\x84\x77\xd8\x37\x4b\x7b\x55\x0c\x55\x1f\xfb\x94\xed\x5f\x09\x1a\xb2\xe9\x33\x2f\x8a\x9a\x56\x91\x9d\x2d\x35\x45\xe1\x64\xc3\x3b\x48\x71\x6a\x1d\x2b\x97\x59\xa8\x3b\x13\x6a\x46\x42\xb6\x81\x39\x2c\xce\xae\x21\x54\x62\x6f\x14\xfe\x0a\x11\x9b\x76\xc4\x9a\xdb\xf6\x7a\x4a\x20\x3a\xd5\x57\xf2\x6c\xed\x15\x64\x65\x87\x4d\x10\x52\x00\xa9\x1b\x46\xb3\xb1\x5a\x18\x2b\x34\x61\xd5\xd5\xc3\x74\x3c\x4b\x91\xef\x48\x3f\x52\x2d\x72\x7d\xed\x48\x67\xf3\xcd\x91\x0c\xbd\x77\xba\x89\x98\x73\xe5\xfd\x60\x44\x3f\xda\xd2\xb2\x38\x6a\x58\x25\xb4\xb3\xd5\x68\xb7\x2e\xfd\xd0\x05\x17\x44\x2d\xbb\x1d\x76\x28\x3f\xf4\xeb\x50\x17\xcb\x9c\xf6\x8c\xf6\xb8\x6b\xd7\xb1\xc6\xcc\x18\xea\x85\xda\x14\x8e\x31\x19\x80\x99\xef\x6a\xc7\x6c\x3e\x13\x4b\xd5\x7d\x54\xfd\x10\xf1\x15\x52\x0b\xed\x67\x22\xda\x11\x5e\x48\x36\x51\xd4\x43\x2c\x11\xec\x1b\x2e\x87\x25\x40\x92\x32\xed\x75\x25\x6a\x3f\xa3\x89\xa5\xfd\xf2\x30\xd4\xb4\xad\x86\x4d\xd3\x3c\x7b\xbc\xfa\xc2\x34\xb4\x3e\xda\x96\x56\x0d\xeb\x48\xdc\x17\xe2\x70\x23\x51\x05\x96\x00\xe2\x59\xc4\x7f\x75\xa5\x48\xef\x66\x56\xfd\xb9\x76\xe3\x3c\xab\x40\xe1\x27\xaa\xef\x48\x62\x0a\x62\xb1\xf2\xab\x98\x13\x18\x56\x00\x91\xa2\xa2\x3b\x9f\xf3\x98\x95\xad\xab\x12\xb3\xde\x35\xd0\xda\x54\xa3\xd1\xcd\x9c\xb4\xff\xae\x5f\xef\x5c\xbf\xbe\x02\x03\x2d\x57\xdf\x53\x26\xcc\x06\xc4\x4c\x90\xc5\x4c\x8b\x10\xc5\xaa\x0c\x81\x7d\x65\xee\x5f\xab\x60\xfc\x25\xb8\xe2\x9a\xd6\xad\xab\x40\xbe\xb2\xdb\x15\x46\x6d\x0d\x22\xcd\x75\xc3\xf1\x28\x7b\xbc\x08\xc0\xb4\x74\x68\xb2\x68\x62\x99\x06\xbb\x6d\xd1\x12\x06\x45\xd0\x0c\xe5\x36\xa4\xa9\xb4\xc4\x56\x87\x2b\x62\xb1\x8e\x17\x5f\x61\xee\x13\x9b\x78\xf9\xea\x65\x06\xb8\x6b\x36\x83\xab\xca\xe5\xc2\x8b\xca\x24\x28\x2b\x79\x40\xd4\x64\x94\xed\x06\xbf\x92\x53\x5d\x82\xfb\xf6\xfb\xff\x22\x90\xb6\xa5\x02\x05\x8f\xca\xd7\x32\x23\xd1\xcd\x09\x45\x0a\xde\x70\xd9\x20\x6d\x01\x25\x44\x17\xd0\x58\x89\x04\x79\x99\x6a\x5b\x81\xc8\xb8\x51\xfa\xf1\x95\xa1\x51\x99\x87\xdf\xd0\xff\x8b\x8e\x24\x18\xd9\x93\x76\x33\x13\x21\x52\xa0\xc8\x09\x22\x98\xe6\x63\xcb\xba\x9f\x2d\x93\x9c\x14\xfd\x8a\x10\xea\x40\xbf\xb8\x88\x2f\x2f\x54\xd2\x0d\x4c\xf4\xab\xef\x6c\x7d\x6d\x6b\x22\xf3\x4f\xcc\xa5\x2b\x48\xe1\xbd\xb2\x24\xe8\x90\x94\x49\x9b\x4b\x3f\x98\x62\x43\xca\x26\xcd\xa0\x85\x8c\x04\x4a\x3a\x33\x9b\x01\xcb\x91\x04\x8d\xb6\x77\x58\x15\x0d\x89\x26\x3f\xc1\x28\xf6\x6e\x31\x88\xb8\xdd\x54\xb4\xe8\x85\xde\x45\x01\xa4\xfd\x7f\x64\xe6\xf1\x40\x81\xac\xbb\x1b\x47\xe8\x5c\x07\x93\x1a\xd0\xd4\xdb\x5f\xfb\xd5\x23\xd6\x77\x49\xf5\xd4\x0c\xec\xe1\xc8\x58\x1c\x6e\x79\x0e\x89\xd6\xcd\xc1\x59\x97\x8a\xe1\x24\x0b\x11\xb1\x36\x2d\xcb\x43\x0a\x15\xb3\x51\x03\xf5\x9f\xb8\x15\xea\x20\xc1\xbf\x5b\x3d\xb7\xa8\xc3\xbc\xca\xcd\x30\x94\x2b\x06\xa3\xd0\x86\x1a\x8e\x98\x51\xb2\x1d\x90\x78\xaa\xc3\xcc\xaa\xa9\x63\x49\x73\xc2\xe6\x13\x69\xf3\x25\x15\xe9\xa1\x6e\x45\x82\x22\x5c\xa9\x59\xf0\xdd\x62\xdc\x31\xca\x23\x86\xb3\x7f\x97\x58\xe2\xd6\x3a\x99\x6c\x91\x03\xbb\xab\xd9\xe6\xa4\xdc\x26\x0a\x3a\x7b\x7b\x84\x5c\x74\xe8\x76\xab\xa7\x85\xa3\x25\x4c\x8c\x2d\x32\xc7\x6f\x8d\xd8\x19\x69\x83\x2d\x3e\x59\x74\x0d\xd6\xdb\xfa\xe3\xcb\x76\x52\xa2\x91\xe2\xf9\x16\x2b\xf6\x41\x92\xc8\x57\x42\x3e\xdd\xd1\x15\x5b\xd9\x3e\xf3\x2d\x96\xd6\x06\x51\x1e\xef\x4a\x7e\x1f\x26\xad\x8f\x88\x2e\x32\x0a\x4c\x79\xd1\x8b\x4a\x3a\x56\x1a\xb1\x2c\x81\xa5\xb1\x60\x80\x8e\x83\x15\x4e\x5a\xd7\xe5\xe3\xa5\xbd\xbc\x33\x90\xe7\x58\xa8\xcd\x7a\xc5\xa2\x13\x54\x51\x52\xcf\x2c\x74\x92\x35\xcd\x30\x6d\xa7\x44\x9f\xc5\xc1\x2d\x68\xe7\xd9\xd1\xba\x9f\x91\x3d\x79\x1d\x10\x8b\xeb\x0b\x06\xb2\x1f\x00\xfa\xd6\x5b\x78\x89\x8f\xdc\xac\xbe\x23\x01\x6d\x57\xb3\x19\x25\xc5\xfa\xb3\x8e\xd5\xd5\x9e\x27\x6d\xe9\x77\x06\x11\x68\x58\x58\x25\x25\xbd\xf7\xb8\x7f\x5b\x17\x4c\x19\x85\xca\xdb\x82\x4c\x19\x7c\x18\x22\xb1\x0e\x87\xbf\x85\xf9\x7a\xf3\xcd\xfd\xee\xeb\xcf\x37\xdf\x9c\x81\xcd\xaa\x02\x27\x7a\xf0\x96\xf8\x26\x58\x4f\xe9\xbc\x0e\x02\x6b\x36\xef\xdd\x2d\xed\xfd\x34\x08\x73\xbf\x34\x98\x11\x6c\xc6\xb4\x65\x10\xed\xcc\x1a\x11\x68\xaf\xdc\xf2\xf2\xe3\xf5\xe0\xc9\xf8\x9c\x71\xcc\xdb\xce\x90\x92\x31\x0f\xa6\x72\x07\xd7\x9f\x24\x27\xda\x52\xa8\x3f\x10\x2a\x78\x20\xd8\xa9\xec\x43\x3f\x5a\x99\x3b\x99\x5c\xea\x2f\x6d\x47\x54\x14\x9b\x7a\x4e\x61\x6c\x50\x63\x89\xe4\x4b\x5a\xd0\xc4\xf6\x1c\x29\x8c\x45\xb7\x1e\x6a\xc5\xaf\x2d\x85\x9c\x1e\xb9\xa2\xe1\xdd\x68\x5f\xb8\x5c\xa1\x89\x88\x89\xca\x19\x33\x59\x8f\x70\x62\x94\x9f\x06\x04\x7f\x46\xed\xcb\x3e\x84\x8a\x68\x1b\xb4\xd7\x03\x9b\x53\x8a\xa4\xf3\x61\xaa\x1a\xd8\x42\x14\xcc\xb6\x95\xce\x29\x8b\x1e\x67\xe6\x0a\x58\xde\x12\x73\xa6\xed\x96\x34\xf9\xa1\xea\x0a\xb0\x56\x98\x33\x3a\x12\x66\x9a\xa5\xa0\xd1\x0f\x80\x00\xb7\x05\xe7\xb2\x12\x5a\x8b\x66\x1f\x2b\xa4\x25\x36\x8b\x3e\x55\x1f\x79\xd3\x97\x85\xdf\xdb\xa8\xe2\x06\xb5\x4e\x8a\xea\xa6\xe7\x01\x21\x77\x91\x98\xbf\x8d\x74\xbc\x5c\x70\x97\xd0\xb3\x7e\xb6\x63\x9f\xb6\xee\x33\xdf\x39\x25\xc1\xd8\xad\xd6\xba\xb8\xb1\xd9\x60\x55\x5a\x48\x75\x61\x8d\xbd\xf6\x60\xbe\x86\xb0\xab\xf8\xdd\x92\x6d\xc3\x13\x8a\x82\x66\xce\xf6\xe2\xc9\x7a\xd9\x16\x25\xa6\xa9\x89\xbb\xa7\xa2\x37\xb6\xea\x75\xe3\xd1\x78\x42\x97\x65\x3c\xa1\xcb\xa1\x58\xdf\x34\xeb\x6e\x0f\xfb\x04\x09\x2f\xd5\x50\xef\xf6\x16\x36\x4e\xd9\xf0\x83\xdd\x4c\x6c\x64\x51\xb1\xa6\x29\x6b\xcc\xbf\xa7\xd5\xd9\x82\x84\x5b\x87\x3d\x17\x58\x7a\x27\xab\x0c\xbb\x85\x5f\x62\x17\xd1\xf2\x5c\x64\xab\xcd\x1f\x05\x84\x12\x22\x44\xfe\xe8\x39\x80\x82\x8d\x27\xf9\x83\xd8\x4e\xa6\x45\x39\xb2\x17\x2e\x72\x1d\xcd\x33\x8b\x9e\x39\xb3\x51\x20\x12\xd2\x83\x0c\x12\x6b\x50\x4d\xfc\x2f\xb6\xda\x42\x8c\x20\x70\xde\xfc\x31\x6a\xa8\xbb\xef\x16\xb7\xb6\x5b\x5d\xfe\xfe\x2f\x8b\xba\x21\x41\x63\xc1\x66\xa8\x5b\x98\x79\x79\x28\x04\x06\x63\xc3\xbb\xc5\x5b\x42\xde\xcb\xb1\xf0\x8d\x0d\x37\x26\x26\xdb\x2f\x6b\xf8\x24\x3a\xfb\xf1\xab\xcc\x72\x31\x11\xd3\x5f\x5b\xb6\x7e\x13\x26\x6a\x6a\x80\x0f\x71\x02\x12\x2e\x2f\x9f\xbe\x61\xf5\x80\x6b\x87\xfd\xf0\x9a\x2d\x54\x8b\xa7\x7d\x7f\xec\xde\xaa\x3d\x89\xcd\x3f\x54\xf3\x2d\x54\x60\x9f\xa8\x9f\x8b\x37\xb6\x38\xc4\x0e\xe2\x6b\x71\x4e\x72\x41\x4c\x82\x5a\xd2\xc6\x43\x25\x16\xf4\xa4\xf3\x4f\xbc\xc9\xa4\x7a\xc0\xa9\x8b\xa0\xe4\x59\x3e\xf9\xfa\x79\x42\x59\xb0\xbe\x36\xcb\x9f\x17\x45\x75\x24\xa5\x14\xf2\x57\x00\xa5\x2d\x18\x27\x06\xa2\xbd\x05\xd2\xa3\x05\x7e\x45\xea\xf2\x81\x7e\xd2\xb8\x1b\x83\x1d\x9a\x84\x50\xf7\xe9\xc3\xf5\x67\x79\x3d\x25\xf1\x90\xbf\xbe\x2e\xfa\x3c\x12\xb9\x3a\xaa\xb3\x73\xbf\xf9\x01\x3c\x60\xc3\xa6\xf6\xfd\x7e\xb7\x7c\xb0\x60\x39\x38\x02\xfc\x2c\xa6\x4f\x16\x1f\x6b\x36\x7f\x56\xbc\x78\x48\x08\x8f\xab\xe7\xe7\xc5\xa1\xf8\xf5\xce\x52\x07\x1c\x0d\x1d\x26\xc5\x84\x39\xa6\xb8\x24\x76\x91\x1b\xbc\x84\x7b\x29\xd3\xf8\x79\x01\x43\xe1\x14\x1e\xd3\x1d\x40\x5c\xbd\xad\x86\xf2\x64\x57\x68\x99\xd1\x22\x22\x31\xbf\x30\x0f\xee\x77\x0f\x50\x67\xfd\x9e\x24\x87\x5a\x0b\x3c\xc1\xff\xa4\x63\x53\x89\x86\x48\x91\x68\xe3\x2b\x7f\x56\x4a\x5a\x3d\xeb\x21\xdb\x7e\xf5\xac\xf2\x86\x08\xdd\xad\x5a\x22\xdc\x23\x49\xc2\xb4\x53\x07\xe6\x14\xf5\x1a\x92\x88\xcb\xc1\xe6\x0c\x29\x96\xa1\x96\x96\xf1\x54\x77\xbd\xb1\x96\x94\xe2\xe2\xbd\xad\xd1\x4c\x1d\xd7\x1a\x46\x2b\xf2\xa4\x9e\xe5\xc8\x36\x45\x9a\xd7\xa9\x72\xb9\x41\x7d\xb6\x3c\x49\x58\x77\x15\xaf\x1e\xe4\x87\xbe\x49\x1d\xa1\x8a\x9e\xd6\xd4\x9d\x5d\xc0\xa2\x9b\x6d\x5c\x08\x80\x4b\xd1\xf0\xcb\xd5\xf3\x07\x6e\xc4\x2f\x66\x8b\xb9\xaa\x22\x11\xa4\x5a\x87\x86\xa7\xad\x61\xc2\x9d\x05\x9f\x0c\xab\x23\xec\x3e\x6e\x19\x91\x1d\x26\x2b\xce\x6d\xc2\xdd\xb0\x6a\xfc\x9c\x29\x40\x0f\x29\x07\x79\xf4\xbb\x5c\x67\xfa\x2f\xf7\x24\x13\x90\x88\xea\xb7\xa4\x70\x92\xee\xcd\x2a\x60\x72\x50\x92\x6b\xc5\xe0\x7b\xb4\x43\x76\xae\xf0\xea\x75\x33\xd3\x08\x11\x29\x98\xf9\x1f\x69\x45\x2c\x38\x90\x29\x5d\xf3\xd1\xed\x84\xcd\xc9\x6f\x66\x10\x95\xf6\xbc\x74\x52\x74\x70\x65\x45\x5a\x59\xa1\x3e\x0e\x20\x7c\xfb\x2b\xed\x3d\xf1\x04\x25\xb4\x8d\x59\xb0\x1d\xf6\xa5\xe5\xa2\x2a\xba\x1e\x2a\xa3\x8c\x2c\x02\xa3\x31\x1a\x0c\x31\x53\x36\xb9\x1e\x48\xcc\xc2\xd2\x15\x83\x40\xd5\x83\x93\x40\xa5\x68\x1b\xb5\x53\x61\xa4\xa0\x85\xa5\x79\xe4\x4c\xca\xd2\x20\x3a\xc1\x9b\x22\xc3\x03\xad\x35\x3f\x52\x9c\xa0\xbc\xb7\xb7\x53\x61\x86\xed\x30\x9c\x48\xd5\xef\xda\xa2\x64\x51\xf5\x3a\xe2\x03\x0a\x51\xd8\x8d\xbe\x82\xd2\x3a\x88\x41\x92\x61\x6e\x43\xcd\x72\x58\xec\x77\x89\x53\x15\xb0\x69\x8d\x30\x3b\x1c\xb8\x4d\x19\x7f\xa1\x66\xcc\xdc\xfe\x93\x54\x71\xdd\x40\x88\xc7\x46\x40\xea\x01\x6d\x69\xde\x0a\x72\x2e\x66\x46\x3d\x60\xe1\xd6\x5b\x37\x10\x33\x53\xa3\xcd\xa2\xa3\xb5\x54\x01\xe9\xe2\xb0\xf1\x2c\x93\x68\xd8\x2a\xe9\x6c\x69\x61\x14\x27\x6d\xc9\xb3\x7c\xc2\x65\xa4\xd9\x33\x53\xd2\x9c\xf4\xfe\x24\x5d\x3c\x11\xaa\xa2\xad\x74\xdf\xe9\x48\xfa\x73\x6d\x2d\x52\x9b\xe2\xfe\xf7\x7f\x5e\x6a\xcb\x50\x12\xe0\xb4\x31\x6a\x18\xb2\xaf\x36\x99\x8b\xc0\xda\xfe\x83\xfc\x58\xf1\x8c\xd5\x4c\x81\x6c\x19\x45\xd4\x15\x61\x68\xa3\x01\xaa\x95\x6d\x74\x2a\x49\xbc\x5b\x9b\xcb\x3a\x39\x5a\x9d\x61\xa4\x71\x8c\x45\x3a\xc6\x2a\x34\x9c\xa0\x95\x4f\x5c\xb4\xd5\x22\x9f\x8d\x38\x48\x07\x5b\x97\xd8\x49\x03\x86\x65\x01\x64\x0e\x0f\x42\xff\xc4\xfc\x08\x12\xa7\x6a\x79\x75\xc8\xa7\xbe\x5f\xa3\x7d\x71\x87\x58\x6f\x5a\x9c\x66\x24\x8b\x90\xd0\xdc\x82\xac\x3e\x95\x9c\xcf\xd8\xc7\x00\xfe\x32\x75\x42\x21\x7e\x4d\x2e\x7e\x42\xe7\xdf\x2d\x68\x6b\xab\x77\x76\xad\x47\x18\x6a\x37\xf2\xb2\xaf\x1c\x4b\x74\x83\xf1\x27\x17\x38\x70\xf2\x45\xe4\xa4\xe2\xce\x92\x38\x96\x23\x9e\x90\x3a\xc3\xfc\x43\x43\x92\x47\x53\x83\xb3\xf1\xa6\x2e\x66\xbc\xe8\xb8\xe2\x6c\x66\xdc\x61\xb1\xdb\xf5\xb7\xa2\x03\xcb\x81\xcd\xb0\xd9\xe0\x58\x71\x71\x05\x7f\xb1\x1b\xdb\x92\x4c\x6b\x77\x43\x01\x1f\x30\x6a\x94\x38\xdc\xea\xc7\xa6\x87\xaf\x96\x00\xc0\xd4\x07\x00\xd7\xbb\x05\x2c\x0d\x87\x25\xef\x08\x10\xd0\xdb\x6b\xde\x8c\xfc\x2e\xc1\x92\x02\xba\x45\x1b\x36\xe5\xf1\x1e\x14\x0b\x1c\x79\x7f\xa9\x45\xc9\xe3\x96\xf9\xd4\x9e\xa4\x8c\xa1\xef\x89\x2f\x33\x41\xa5\xdb\x38\xd7\x16\xac\xa9\x35\xb4\x75\xc7\x67\xf6\x3f\x79\x3f\xa1\x77\x8b\xb1\x1b\xd1\xd4\xba\xad\x1c\xa6\x5b\x3d\x02\x1b\x71\x72\x22\xcc\xa6\xa5\x95\x37\x9f\x5f\xf2\xa7\x5b\xe8\x49\x2c\xac\x1d\xdd\x2a\x39\x7c\x75\x0b\xb6\xd7\x8d\x0c\x75\x25\x74\x71\xbb\x7a\x02\x03\x02\x69\xd6\x5e\xd1\x19\x5c\xb9\x7a\xeb\x48\x69\x20\x3c\x53\x05\x63\x47\x27\x8f\xfe\xc6\x77\x5d\x4e\x1b\x9e\xcd\xab\x41\x18\xba\x2f\x60\xf8\x38\x0d\x5b\x7c\xc7\x1e\x82\x44\xfa\xcd\xae\xc6\x7e\xdd\xab\x2a\x05\xc1\x0d\x88\x2b\x32\x7e\x71\x66\xc4\x6c\x82\x13\x5f\xe2\x96\xc4\x01\x1a\xfa\x54\x92\xbe\xb1\x1b\x63\xaf\xae\x08\x9f\x03\x5b\x69\x7a\x5a\xb0\x30\x82\x8b\x6d\x98\x4d\x5f\x57\xf0\xb5\x8a\x87\x09\x8f\x44\xa1\x6a\x72\x4f\x40\xfa\x58\xe0\x70\x8f\x0f\xcc\x2e\x88\xfa\x44\x49\x18\x8e\x38\x5e\x0a\x38\x38\x87\x99\x99\x48\xc5\xf8\xe9\xca\xf3\x83\x0a\xa7\xd8\x38\x2a\xca\xd4\x98\x44\x23\xd2\xf2\xf4\x33\x55\xe6\x96\x7e\x49\x05\x8f\xbf\xb7\x9e\x22\x65\x59\x51\x6f\x47\x10\xde\xe0\xf3\x66\xef\x3a\x23\x79\xe6\xc6\xe1\xac\x90\x90\xb1\xed\x4d\x4f\x5b\xcb\x4d\x71\x6b\xf6\xcd\x8d\xa9\x5c\xfd\xbe\x23\x56\x07\xff\x45\x78\x00\xb0\xb7\x40\x30\x35\xb0\x04\x55\x0f\xec\x32\x88\x1f\xc5\xc4\xdf\xcc\x1f\xc1\x65\xeb\xdd\x1f\x9c\xe9\x4a\x3f\x02\xe7\x75\xa1\xa2\xdb\x6c\x91\xe8\x08\x56\x59\x60\xb7\xe0\x59\xcd\x7c\x6a\x70\xde\x6d\x49\x90\x06\xb3\xf4\xa7\xa2\x34\xf2\xa6\xe9\xd4\xae\x2b\x6d\x5f\x6e\xe5\xc4\xd1\x1b\x76\x15\x50\x27\xc3\x77\xd0\xcf\xd5\x88\x03\x45\x68\x39\x48\xf5\xbd\xe3\x65\xbd\x26\x0e\xbf\x63\x31\x93\xdd\x99\xe4\x0c\x46\xa5\x19\x66\x57\x0f\xdc\xe1\xc0\xc7\x71\xec\x38\x94\x8f\x2f\x1e\xf7\xbc\xa4\x59\x85\x4c\x32\x87\x1b\x8c\x98\xb4\x01\x47\x83\xc6\x01\xe0\x81\xb7\x61\x7c\x18\x8f\x87\x8a\x08\x22\x1b\x4b\xa0\xab\xe7\x38\x5e\x98\x1d\x8e\xe1\x03\x46\x50\x99\x8d\x54\x66\x47\x54\xe6\x89\x28\x1e\x94\x09\xd3\x0e\xbc\xa6\xa9\xca\x19\x23\x6c\x81\xc5\x55\x89\x0b\x67\xc8\x15\x47\xcd\xc4\xef\x14\xca\xfd\x3a\x03\x79\x6d\x1f\x46\x55\x7f\xd6\xac\x13\x85\xf1\xe7\xb1\x2e\xdf\xde\xf8\x20\x6a\x39\xee\x7e\x44\x4b\x6e\x52\x89\xc6\x5b\x71\xfb\x1b\x99\x4e\x96\xe6\x15\x31\x6b\x76\xe8\xc2\x19\x26\x1b\x36\x89\x25\xc1\x34\xea\x8d\x87\xa1\x2a\xc2\x19\xeb\x2e\x5d\x30\x70\x38\x6f\xe0\x51\xa7\x54\xcd\x0e\x7e\xa9\x2e\xc2\x31\x98\xa8\x3e\x77\xf2\x48\x96\x2b\x20\xb8\x8f\xd9\x23\xe3\xc0\x7b\x53\x88\xc3\xb0\x8d\xcc\x8f\xa4\x41\x29\x79\x4b\xbc\x59\x6a\xf0\x09\x6a\xa4\xd2\x03\x2e\xc3\xd6\x20\xdf\x8a\xf2\x7d\x05\x51\xee\x1f\xba\x49\x59\xe0\x80\xaa\x94\x3d\xd6\xef\x51\xb6\x0c\x87\x33\x89\x20\xc1\x81\x74\x24\x45\x59\xd2\xb6\xda\x09\x27\x82\xbb\xd6\xb5\x55\xbe\x03\x45\x42\x5c\x59\xa8\xbc\x81\x9b\x4c\xce\x86\xcc\x63\xe6\x4b\xc4\xb3\x68\x3f\x13\xf6\xc8\x5c\xe9\xdb\x71\xd3\x7e\xce\xb5\x87\x24\x62\x1a\xe8\x95\x46\x46\x55\xfa\x59\x06\xd3\xbf\xfd\x64\x41\x1d\x62\x9a\xd4\x93\x5f\x5a\x18\x43\xbd\x4b\x38\xc7\x58\x0d\xe5\x02\x23\xe0\x71\xce\x3a\x3b\x55\xc0\xae\xfe\x47\x4f\x12\x20\x18\x64\xb2\x9f\xf7\x7e\x8f\xd6\x41\x9e\x37\xf8\x81\xb7\xad\xa3\x7e\x8a\x20\xf5\x81\xc3\x04\x26\xa5\x46\x4f\xe5\xdd\xd4\x45\xc0\xf7\x7f\xb4\x4b\x8d\x31\x11\x77\xee\xb8\x69\x0d\xf5\x64\xcb\xf2\x0b\x20\xc8\x27\x61\x09\x6c\xa3\xa0\x82\x46\xa1\x1e\x05\x64\xb2\x10\x63\x59\xa8\x61\x22\x52\xe1\x99\x79\x2b\x8d\xde\xa9\x07\x46\xac\x22\xe8\x08\x63\xb1\x60\x69\x2e\x1a\x5a\x18\xbf\xff\x6f\xf1\xfe\xb3\xbe\x8c\x4a\x5a\x60\x87\xac\x7a\x89\x1b\x03\x8e\xf1\x7a\x6f\xdb\x0a\xae\x7d\x95\xf0\xd3\x54\x0b\xa0\x9e\x1c\xd8\xb7\x0d\x4c\xb6\xed\x0b\xaf\xa7\xf6\x83\xf8\x05\x89\xbd\xa8\x10\x47\x3d\xdd\xd1\xbe\xee\x70\xa4\xb1\xfb\x06\x2e\x17\x5d\xe1\x78\xbd\x7d\xfb\xf5\xe7\x9a\xca\x67\xaf\x61\x76\xd9\x57\x19\xdd\xf9\xc1\xf5\x4f\x87\x0d\x1f\x4b\x7c\x5d\x24\x2e\xcd\xea\xa4\xa1\x5d\x8b\x88\x60\xff\xe6\x86\xe1\xe1\x9d\x54\xb1\xaa\x9c\x95\x3c\xaa\xc7\x38\x2d\x2f\xf8\x92\xd3\x02\x12\x9f\x68\x78\xc9\x35\xc4\x3a\x3a\x76\x96\x64\x5a\x2b\x22\xcf\xa3\xaa\x97\x61\x9d\xcc\xcc\x55\x70\x41\xa4\xbc\xc4\x84\x73\xc1\xd2\xa1\xa1\x44\x35\xba\xf5\x71\x2d\x02\x60\x19\xca\xb0\xb8\x32\x2e\x73\xe3\xfa\x3d\xe1\xea\xa0\xbe\xba\x28\x5a\x54\x34\xf2\xf2\xd6\xb0\x32\x83\x0a\x7c\xe1\xe0\xef\x4c\xe8\x53\xfa\x41\x96\x36\xcb\x72\x8b\x18\xc2\x95\xda\x02\x81\xbf\xb4\x37\x4c\x42\x68\x90\x85\xf1\xd0\x43\x82\x9c\xf0\x0a\xe5\x8b\x40\x81\xe7\x8a\x7e\x08\x81\x2f\xa2\xb6\xbf\xa5\xda\x02\x63\x1c\x43\x4c\x59\xa3\xef\x40\xca\x13\x0b\xfe\x29\x7c\x51\xa8\xd1\x76\xec\xbb\xf4\x91\x3c\x71\xd2\x6a\xb2\x13\x46\x6b\x83\xb1\x0f\xc2\x3e\x28\x3a\xed\x68\x27\x14\xfe\x48\xc3\x3a\xf7\x4b\x9c\xf8\x1c\x1b\x6b\x78\xba\xde\x8a\x09\xc6\x2f\x17\xca\x83\xaf\xb4\x57\xc8\x44\xc6\x29\xe4\xb8\x84\x15\x33\xda\xc8\xf9\xa8\x80\xa7\x00\x92\x88\x20\xe3\x69\xe2\xf4\x4f\x4d\xa8\xaf\xae\x76\xb3\x16\x49\x0e\x2d\x39\xf3\x1f\x0c\x0b\x2e\x6e\xd1\x37\xef\x89\xce\x92\x3a\xf4\x28\x8d\xd3\x79\x58\x05\xb3\xa6\xa4\xda\xf9\x8a\x02\x93\x12\x85\x29\xb0\x28\xc0\x8e\xb4\x27\x7f\x62\x4f\x5a\xa2\x9e\xf5\x4f\x18\x14\x4e\x2f\x69\xfd\xa8\xc3\x9b\x37\x67\x74\x5a\xde\x33\x2a\xb7\x34\xaf\x83\x2d\x2b\x2a\x2d\x1e\x1c\xcb\x51\xcc\x4e\x81\x9b\x10\x77\x1e\xea\x0d\x71\x60\x76\xb7\x93\x6a\x34\x25\xcc\xec\x79\xd6\x9a\x4d\x6c\x22\x7d\xc2\x8c\x65\xae\xd6\x8c\xa7\x44\x26\x31\x6f\x18\x71\x89\x6b\xdb\x85\xca\xa4\x56\x1d\xc8\xd5\x71\xc2\x17\x44\x92\x91\x9b\x3a\x5c\x54\x66\xa4\x13\x94\x70\x4a\xc7\xa4\xb9\xc7\x1c\xfa\x1a\x4a\x22\xf8\xa2\x07\xb1\xc1\x5d\x1f\x24\x04\xaa\x95\x2e\xb1\x42\xc2\x46\xb2\xf3\x8b\x67\xdd\x72\x11\x1a\xd3\x05\x53\x08\x5d\xc0\x37\x9a\xdd\x63\xce\x44\x37\x94\x09\x2f\xae\x21\x17\x1d\x1d\x8c\x27\x89\x5f\x76\xba\x19\x28\xc9\x44\x76\x21\xdd\x0e\x83\xcb\x06\x36\x97\x27\x88\xb6\x9d\xde\x4f\xea\x3d\xc2\x7c\x7b\x0a\x9d\xef\x82\x9f\x80\x68\x82\x51\x96\x77\xfd\xa3\xd3\xad\xb8\x9e\xaf\xc7\x2b\x03\xb8\xbe\x54\x7c\x25\x94\xc0\x62\x5f\xd4\x03\xae\x5d\x37\x88\xb6\x40\xaa\x40\x72\xf8\x1c\x58\x94\x0c\xc6\x33\xa9\x74\xce\x23\xa7\xf2\x13\xac\x33\xae\x14\x10\xf8\xd6\x6c\xa1\x29\xf3\xf2\xbd\x0d\xb3\xc8\xb5\x7c\x90\x95\x35\x57\x26\xb1\x45\xdc\xc1\xc8\xd2\x01\x05\x52\xbf\x98\x6d\x34\xf0\x6e\x69\x78\xc4\xbd\xa9\x89\xfa\x41\x6f\xc4\x91\x04\x6d\x88\x02\xa5\x0c\x35\xf6\x85\x56\x29\xe9\xfa\x55\x45\x4b\x46\xdb\xf6\x27\xc0\xde\x0e\xe2\xdd\x2b\x34\x5b\xf5\xec\xe7\x0f\x12\xa3\x83\x65\x50\xcb\xb3\x06\x19\xaf\xc6\xec\x78\xff\x00\xbf\xce\x69\x73\xf6\x62\xc1\xab\x97\xe6\xe2\xd5\x9b\xd7\xbf\xff\xb7\x28\x13\xa8\xe1\xba\x10\x1d\xbb\x2f\x3e\x09\x5e\x8c\xa3\x6e\x05\x5f\x46\xed\x9f\xd8\x25\x72\x20\x75\xad\x4c\x21\x82\x39\x67\x04\x99\x72\xd3\xc0\xc0\x7a\x51\xc5\xb5\x4f\x32\xba\x82\x3d\x17\xe0\x27\x0d\x7e\x77\xe5\x6a\x47\x6c\x9e\x96\x25\xfb\x5a\xe8\x04\x12\xa5\x7f\xbb\x58\xfc\x04\xf1\xe9\xdd\x42\x6c\xfb\x17\x89\x01\x3e\x9e\x59\x4d\x0e\x8d\xe3\x69\x96\x8a\x50\x70\x15\x23\xa6\xda\xf0\xf9\xcd\x01\x76\xcb\xec\xfa\x07\x6b\xb7\x9b\xd6\x5e\x3b\xb8\x74\x6c\xc5\x4a\x8a\xc3\x01\x39\xd1\x45\xaf\x03\xba\x87\x9a\x3a\xba\x75\x01\xd7\xcb\x05\xbc\xd6\x58\xb7\xbe\x5d\xfd\xe8\x7f\xfe\xfe\xcf\x92\x8c\xd4\x78\x8d\xc9\x75\xd9\x81\x4d\x47\x95\x1e\x89\x9d\x6d\x69\x53\xec\x56\xf7\x06\xf4\x89\x98\x9a\xfd\xb5\xbf\xf7\x0d\xe9\x5c\xf0\x07\xa0\x66\x08\xe2\x9b\x49\x65\xb8\xec\x48\xca\x25\xac\x4b\x56\x8f\x2f\x40\xc1\x92\xca\xab\x86\x58\xa0\x49\xcd\x9e\xa0\xda\x8d\xfd\x6b\x5a\xc4\xbd\x4a\x3f\x86\x4f\x1f\x89\x31\x88\x96\x20\xaf\xe0\xeb\xa2\x1a\x72\xd3\x10\xda\x46\x89\xee\xb3\x05\x5f\x3c\xf1\x25\xb1\x4f\x6f\xa2\x5b\x55\x81\x33\x51\x51\x43\x0b\xb9\x8b\xc1\x84\xf5\xad\xf9\x91\x3d\x96\xef\xbe\x97\xc7\xf7\x75\x21\x7d\x7e\xb2\xe0\xce\xb1\x79\x1e\x77\x3e\x8b\x94\x0a\x38\x8b\xef\x4f\x48\x56\x59\x48\xd2\x64\x62\xc2\x0d\xac\x70\x8f\x0f\xbe\xae\x71\x2a\xd5\x0d\x2c\x99\x3a\xd4\x13\xcf\x4d\x95\xaf\xc1\x39\x4c\xd6\x0f\xa7\xe2\x2a\xaf\xbf\xc6\x1b\x12\xa6\x56\x2a\xb6\x04\x2d\x77\x44\xff\x84\x99\xd6\x2e\x88\x95\xd0\xf6\x87\x0b\xc0\x5b\xdc\xf8\xf2\xdf\x93\x82\x72\x2e\xc5\xa5\xa9\x7b\x95\x42\x43\xc6\x85\x83\x1c\xff\xd1\xaf\x69\x9b\x54\xd0\x5f\x3d\xf6\xd7\x61\x04\x14\x07\x40\xcd\x1a\xab\x71\xf5\x0c\x4b\x12\xfb\x84\xf2\xea\x64\xf4\x22\x5d\x53\x6d\x5b\xb0\x65\x74\xa1\xe3\xcb\x05\xbe\x4e\xef\x2b\xc9\xd3\xc2\x4e\x92\xc9\xac\xe8\x65\x02\x3d\x5f\x58\xbd\xe6\x23\x85\xef\xf4\x48\xe1\x48\xe4\x28\xdc\xa0\xd1\x7b\xc1\xd4\x99\x1e\xc6\x72\xf8\x80\xc8\x0f\xda\xb4\xc4\xe5\xd3\x7c\x4a\x54\x4f\x28\xfb\x6c\x71\x83\xe3\x71\x58\xea\xff\xa2\x3f\xd8\x54\xbf\x2b\x7e\x63\xeb\x7d\xf8\xc9\xd3\xdf\x31\x35\x74\xb3\xb6\x7a\x7f\xfe\x9b\x8c\xf5\x7e\xf7\x6f\x60\xb1\x1f\x9d\xd4\xde\xef\x66\xed\xf6\xb5\x85\xb9\x70\xe8\xf9\xca\x6d\xbc\x2e\x30\x72\x2c\xd1\x2b\xd0\xf9\x5d\xcf\x43\xbc\x09\x9d\xe6\x9f\xe2\x3c\xbc\x5e\x89\x19\x14\x39\x3b\x00\x1f\x30\x1b\x5a\xd0\xf7\xbe\x11\xe4\x7b\x5e\xe0\xeb\xe4\x09\xe5\x5b\xd7\xe9\x8c\x6a\xee\x52\x96\xbb\x1a\x69\x56\x8f\x07\xde\x15\x4d\x70\xdd\x99\x87\x53\x99\x8f\xed\xcc\x22\xd9\xa5\x97\xb1\x3e\xff\xe1\xd9\x1b\xf6\xcb\xa0\xd9\xe6\xcb\x31\xfe\x0a\x1a\x9c\xc4\x97\xa1\x46\x6c\x93\xae\xeb\x44\xc6\xa8\x1d\xcd\xc3\xdf\x93\x3c\xc0\xbe\x75\xfe\x82\xa6\x48\x8b\xa2\x75\x6b\x55\x29\x77\x8c\x75\xf9\x43\x5d\x86\x19\x39\xa3\x73\x9a\x4d\x1c\xd0\xce\x92\x43\x2f\x93\xd8\x71\xa1\x13\xb5\x3d\x74\xa2\x58\xb1\x1e\xab\x32\xfa\xc4\x4c\xc5\x09\x72\x96\x0a\xca\xa4\xd9\x67\x6e\xa5\xcc\x25\xf0\x2b\xbe\xf5\x85\x1b\x27\x91\x51\x31\x88\x08\x82\x10\x53\xf9\xf8\xb6\x49\x66\x18\xfb\xfd\xf1\x76\x0d\xd3\x3c\x6d\xf1\x24\x34\xc6\xef\x20\x07\x71\x7a\xdf\x24\xa0\xea\xbb\x72\xc1\x46\xb6\xff\xf7\xdf\xff\xe7\xc3\x47\xc0\xfb\xa3\xbe\xad\xe8\x17\x0b\x56\x47\xf8\x71\x1f\x81\xe0\x57\x7f\x2b\xd2\x28\x2d\xd4\xa1\xe6\xf5\xc7\xbd\xe3\xeb\x90\xb0\x1d\xb9\xdf\xff\xaf\x2c\x4b\x39\x1c\x23\x20\x2c\x49\x12\xee\xa1\xdb\xc0\x17\xa7\x41\xc4\x05\x24\xe1\x34\x8d\x07\x2a\x6c\x7a\x01\x35\x50\xae\x98\xa8\x0a\x58\x26\x9c\xf5\x97\xc1\x6d\xdf\xaf\x61\xe5\xb0\xab\x1f\xd8\xd6\xd1\x16\x47\xfa\xa3\x7b\x0d\x38\x95\xb2\x1d\x6c\x29\x5e\xea\x4f\x5c\xbd\x13\x37\x6e\x66\xca\xdb\xe6\x80\x1b\x16\xc2\xa6\x44\xa8\x4e\x16\x0a\xea\x77\xde\x11\x9a\x6f\x62\x2c\x8e\x03\xbc\xb1\x60\x44\x90\x86\x2e\xe8\xdb\xef\x0e\x4a\x09\x7c\xd7\x13\x37\x3d\x26\x85\xb9\x49\xea\x22\x5f\x97\x9c\x13\x08\x38\xe3\xcc\x1c\x2b\x8b\xbb\x12\x6c\x59\xdd\x14\xdb\xf7\x06\x6c\xb5\xfd\x64\xb1\x98\xe3\x9a\x8b\xbe\xb5\x76\x75\x5e\x6d\x6c\x4b\x89\x6f\xe8\xe3\xb3\x05\x31\x65\xb8\xec\xe9\x21\x2e\xee\x1e\xf7\xc5\x6e\xf5\x3d\xa7\x1a\x49\xc5\xdc\x52\xa2\x56\x89\x73\xd1\x82\x24\xa3\x58\x69\xb1\xeb\x56\x6f\x28\x7f\x1c\x30\x00\xc1\x05\xc6\x41\x05\xaa\x62\x63\x29\xf1\x49\x0f\x5b\x72\x8f\x3b\x81\xd8\x14\x7a\x9a\x12\xaa\xa3\x2d\x68\x0b\x6c\x4b\xb7\x00\xae\x5d\x0f\xca\xc3\x5f\x42\x06\x8f\x92\x1a\x76\xc4\x7f\xb6\x6e\xc1\x87\x5c\x6d\x71\xb3\x7a\x45\x78\x73\xac\x3e\x72\x12\xa1\x89\x63\x0e\x3c\x22\x81\xab\xa9\x9a\x1d\x91\x33\xa7\xb3\xcb\x3f\xe0\x7f\x14\x3f\xfa\xac\x10\x8b\xce\xbc\x00\x2e\xfc\xaf\x85\xef\xc1\x32\xef\x49\x17\xd2\xf3\x90\x07\xbc\x90\xfd\x9d\x97\x00\x73\x05\x4d\xfa\x11\xf2\x43\x12\x98\x36\x2d\x9c\xf3\x81\xef\x17\xf9\x54\x38\xd7\xe1\xb8\xe7\x05\xff\xdd\x91\xc4\xea\x73\xa0\x3b\xac\x70\x71\x3f\xa4\xe8\xcd\x0b\x5a\x35\xd4\xe0\x96\xb8\x7f\x04\x26\x52\xf5\x59\xde\x04\xe2\x6f\x36\x20\x2c\x88\x28\x94\x21\xe2\x42\xcc\x59\x4e\x26\x25\xc9\xab\x21\x8e\x50\x76\x58\x64\x56\xa1\xb2\x1a\xb6\x34\x41\xed\x5a\xeb\xa1\x19\xf7\xa1\x31\xec\x5c\x95\x61\xca\xc3\x8c\x37\xa3\x16\x23\xc4\x4b\xec\xe1\xfa\x31\x6d\x30\xc2\x3d\xc2\xb7\x39\xcc\x81\x92\xc2\x54\x27\x90\xaf\xe8\x33\xd6\xd9\xe5\x95\x36\x1d\x7c\xc8\x93\x5a\x91\x70\x02\x1a\x7e\x50\xbb\x1a\x0b\x8a\xf4\x95\x5d\x5d\x88\xae\x31\xe9\x63\x00\x93\x2e\xfa\xcf\xd1\x88\x03\x14\x0d\x78\x0c\x22\x9c\x88\x19\x0f\xee\xbf\x21\x31\x29\xed\xa7\x47\xcc\xfe\x33\x93\x23\x00\x6b\x12\xb8\xb6\x36\xbd\xdd\xc3\xde\x76\xa1\x00\xa2\x76\x64\xed\x69\xbd\xda\xea\x73\x7c\x78\x00\xc6\x68\x5f\x6c\x56\xf7\x4b\x73\x7e\xc4\x55\xa2\x50\x14\x08\xf3\x59\x8f\xf6\x6e\xe8\x42\x96\x32\x1a\xa9\xf5\xc9\xb8\x9f\x69\x2e\xc9\x49\x6b\x11\x1a\xa7\x44\xc7\xd2\x24\xcb\xa6\x93\xb2\x77\x90\xd5\x18\x22\x6d\xa1\x89\x02\xea\x84\x7c\xb4\xdc\x9d\x33\x1d\x61\x70\x1c\x7b\xaa\xea\xf3\xd1\x9c\x6a\xa9\x20\x9b\xcd\xa4\x2f\x71\xd3\x4b\x79\xaa\x8f\x44\xe0\x4d\xeb\xb3\xe0\x9d\xc6\xf0\x21\xc1\xfc\xb6\x19\x42\x67\x49\x30\x34\xfd\x5c\xc3\x3a\xd1\xe5\x7a\x73\xcb\x05\x78\xaa\x59\xa1\x9d\x07\xe7\x2b\x30\x4d\x8d\x9b\x9d\x0c\x8e\xd3\x08\x18\x0f\x19\xd7\x45\x3d\x1e\x43\x07\x37\xf9\x57\xc4\xce\xeb\xf1\x4c\x21\x67\x89\x8d\xaa\xc3\x0c\xdf\xd0\x9f\x39\x00\x90\x2a\x01\xbc\xe2\x3f\x73\x00\xc2\xe4\xc4\xc0\x42\x8a\x0c\x3e\xaa\x5b\x35\xb8\x94\xb3\x4d\xd2\x2e\xe2\xe1\x9f\xe3\xb7\xf2\xc9\xbb\x4b\x1d\x9a\xae\x07\x8b\x85\x8d\xff\x05\xee\xdc\xeb\xc7\x1d\x6d\x78\x70\x69\x64\x02\x8f\xf5\xc3\x68\x5f\xc9\x2f\x73\xff\xa7\x2f\xde\x75\xb8\x49\x1d\xcf\x51\x7e\xfa\xf3\x3b\xd2\x5f\xef\xff\xf4\xe5\xbb\x0e\xfa\xeb\xa4\xe8\xfa\xaa\x78\x6f\x27\xe5\xb9\x98\x87\x3d\xc2\x4e\xd1\x0c\x9d\x06\x91\x82\xce\x84\x63\xe6\x3a\xe5\xc6\xbf\xf6\x3e\x57\xa5\x3d\x52\xed\xf3\x65\xce\x26\x1d\x30\xcd\x6c\x8d\x97\x9a\x21\x1c\x32\xd4\x37\x1c\xd6\x3a\xda\x0e\x1c\xc0\xff\x0e\x45\x3d\x26\xd6\x45\xbf\xfa\x39\x7c\x61\xd8\xae\xc4\xa0\x69\x18\x5e\x7d\xff\x93\x7c\x7d\xc3\x43\x02\x0a\x7e\x0e\xad\x34\xe1\xcc\xe5\xcd\x1e\x96\x22\x07\x35\x29\x1c\xff\xdc\xda\x7e\x99\xf3\x23\x89\x35\x04\x76\x54\x8e\x38\x95\x76\xc1\x43\xc8\x97\xdc\x7f\x47\xbe\x07\x6e\x2d\xe3\x42\xa0\x5e\xf3\xc7\x28\xeb\x74\x45\x6d\x06\xae\xbc\xd5\x13\x88\x02\x36\x23\xdc\x32\x76\x64\xef\xf9\x63\xa8\x91\xc6\xb4\x06\xff\xf1\x07\xeb\x10\x71\x82\x64\xd6\x2b\xad\xe5\x0a\xee\x50\x5b\x36\xab\x13\xa6\x19\x4a\x4e\xce\xf9\x44\x9f\x60\xff\x60\x03\x38\x54\xe6\x28\x1e\xf8\xe3\x13\xd9\x34\xb5\x1a\x5d\xc0\xf6\x84\x38\x35\xe9\x69\x8e\xbf\x8a\x47\x5a\x01\x69\x3f\xd6\x26\x11\xd6\xe0\x2b\xd8\x0f\xa4\x30\x1f\x52\x8a\xf7\xb7\xe5\xfd\xc5\x0a\xd6\x1f\x48\xf0\x87\x3b\xa0\x8c\x8f\xc8\x08\x92\x9c\x5a\x8c\xcf\xf5\x30\x90\x0f\x18\x8a\xe4\x86\x5f\x76\xe2\x89\x78\x69\xb0\x52\xb2\xea\xc3\x33\x9a\xae\x59\x92\x39\xfb\xd5\x13\xfa\x2f\x60\x58\x1c\x9b\x1e\xf1\x9f\xd0\x33\x6a\x61\x75\x89\x43\x45\x4d\x90\xbd\xb0\x8f\xd7\x51\x26\x9b\xbb\x40\x6c\x49\xd2\x6d\x89\x92\x70\x2d\xf5\x34\x0c\x6c\xb8\xb4\x22\x27\x02\x99\xe4\x47\xf2\xe6\x75\x1b\x4e\x70\x8b\x6c\x77\x17\x58\x1e\x4e\xb8\xac\x93\x65\xe5\xae\x7c\x79\xde\xe8\x96\x8f\x99\x88\x00\x49\x15\xec\xfa\xa1\x76\xf0\x0f\xc0\xc9\x0c\x2a\x30\xdf\x3d\x8d\xb2\x82\x77\xe5\x66\xdf\x2b\x50\xad\xfa\x7e\x88\xc3\x12\xe6\x6b\xb4\xad\x8a\x8f\x4f\xc5\x67\x67\x3f\x8e\x0d\xcc\xf3\xcd\x07\x3f\x90\xd0\xaa\xb7\x5b\x8f\xcf\x38\x45\x1f\x12\x51\xdc\xde\x98\x54\x2f\xd2\x2c\xf8\x50\x50\x53\x6b\xf1\x2f\x62\xa5\x03\xdf\x46\x4c\xa9\xdd\x3c\x94\x20\xc0\x83\xf6\x37\x8d\xf1\x7a\x1a\xb3\x9f\x03\x6d\x13\x06\x6e\x46\x7c\x3e\xc2\xad\xf1\x09\xaf\x96\x5e\x8e\x2a\xc5\xcd\xfb\x15\x87\xf2\x1a\x35\x26\x7f\x57\xfa\x57\x73\x33\xe5\x31\x57\x1a\xfd\x68\x1b\x18\xcd\x86\x8a\xf6\x83\x97\x50\x98\xf9\x27\x75\x60\xa8\xcb\x65\x00\xa1\x75\x47\x32\x45\xdf\x84\x56\x12\xb6\xce\x79\xba\xb0\x78\x84\x1b\xbb\x2d\x86\x0e\xda\x6e\x67\x79\x84\x7b\x5a\xa0\xc9\x98\xb1\x08\xae\x6d\xed\x6b\x87\xef\x77\x1a\xe5\x6e\xf5\x73\xa8\xdc\x1f\xf4\x8f\xb0\xb3\xb1\xfd\x0d\xce\x77\x7a\xaa\x4e\x10\x2a\xf6\xe5\xee\xab\x74\x7b\x26\xde\xf6\x39\xb7\xf0\x39\xf6\xe8\x52\xf9\xdc\x9f\xf8\x43\xb8\x9d\x22\x30\x0a\xef\x73\x53\xce\xcb\x5b\xa6\x10\xa7\x52\x6c\x7c\x3f\x58\x6a\x8e\xf7\xf4\x52\x19\x6c\x27\xfc\xf6\x6b\xdc\x84\xf4\x0c\x95\x7f\x13\x11\x53\x01\x9f\xfe\x65\x48\xd7\xda\xb9\x26\xdd\xaa\xa5\x11\x49\xf9\xd7\x55\x4e\xa5\xff\xe6\x9d\xa7\x46\x92\xf5\xd7\x29\xcb\xc4\x41\x51\xf8\xc8\x60\x72\x45\x3a\xe6\xb0\x59\x18\xc4\x63\xbd\x07\x69\xa9\xb9\xba\xb7\x12\x61\x70\xb7\x57\x17\x62\xec\x90\x64\x3d\x18\x4c\x67\x4e\xce\x09\xb0\xc4\x15\x87\x7c\x56\x26\x51\x57\x52\x84\x90\xa2\xdd\xc6\x56\x40\x21\x9a\xfe\x66\x52\x65\x38\xed\x53\xc4\xe5\xae\x1a\x52\x01\x22\x56\xd0\x1a\xe0\xc3\x50\xe8\xea\xe1\xcc\x63\xbe\x26\x81\xe4\x0b\x5a\x12\xba\x8a\x19\x09\x0a\xc1\xb6\x95\xfa\xa7\xf9\x5e\xbb\x8e\x16\xbb\xdd\xbe\x87\x07\x39\x42\xdc\xe1\x88\xae\x72\x5b\x3e\xc3\xe7\x54\x50\x33\xdf\x06\x30\x12\x45\x65\x07\xc3\x5c\x30\x0e\x11\xc5\xd2\xf7\x1e\xf1\x5b\x38\xe6\xd0\x15\x71\x1f\x39\xde\x8e\xcb\xbf\xa8\xd7\x6c\xd1\xe7\x61\x0a\xa9\xc0\x32\x0a\x4b\xab\x47\x29\x07\x56\x1d\xe1\x15\x77\x3b\x27\x43\x4d\x2a\x65\x8b\xf7\x7c\xbd\x0f\xfa\xbb\x6b\xf6\xeb\xbc\xe7\xe5\x5a\xb4\x71\xd8\x5d\x58\xa2\xde\xf2\x71\xb2\x41\x1f\x30\x4c\x10\x31\x88\xa5\x0c\x16\x36\x38\x23\x03\xff\x4d\x85\x49\x60\x37\x26\xe3\xfa\x8c\x4c\x72\xb6\xf1\xb6\x66\x9b\xc6\xcc\x12\x66\x1a\x1d\x6a\x5d\x6b\x5c\x88\xad\x7e\xdd\xea\xe7\xe9\x50\x95\x76\x4f\x0d\x33\xe5\x4a\x0c\x55\xe7\x44\xf4\xe9\x9f\xee\x97\x9f\xc9\x7a\x65\xa7\xa5\xc9\x59\x0b\x12\x05\x93\xa9\x9f\x23\x06\x4c\x55\xdf\x14\x0e\xee\xfe\xcc\xff\x01\x44\xbf\x97\x3f\x2f\x12\x13\x5c\xd8\x9c\xa2\xcd\x25\xc9\x4c\xd5\x7e\x56\x08\x92\xbc\x5c\xf1\x17\xa5\x60\x9c\x5d\x7a\x7b\xca\xfd\x2e\x6b\xb3\x59\xd3\x5a\x58\xb3\x56\x46\x7b\x04\xd6\x05\x7e\x8f\x5b\x5e\xcd\x36\x29\x55\x8e\x86\x40\x9b\xf2\x06\xbb\x02\x2e\x78\x8b\xf9\x22\xe6\x63\xba\xf5\x62\x8e\x9e\xca\xeb\xbe\x9e\x55\x9d\x59\x5c\x66\x91\x21\x72\x19\x5f\x16\x4e\x93\x93\x13\x3e\x0e\xf8\x96\xe5\xf9\x51\x3e\xa6\x21\x3e\x46\xcd\x9f\xfa\xa8\x70\x9f\xe5\x03\xb3\xb8\xc8\x82\xff\xd3\xe4\x10\x41\x47\xab\x59\xcb\xfc\x72\x6d\xec\x63\x20\xdf\x98\x68\x05\x3d\x33\x87\x81\x37\x34\xf3\xe0\x96\xfe\x3d\x3c\x1c\x1e\x96\xe5\x83\x99\x91\x06\x29\x26\x0c\x75\xe4\xa7\xa6\x96\x82\x11\xfb\x4b\xea\x09\x32\xee\x3c\xb6\x90\x9d\xcc\xca\x5b\xec\xdf\x90\x42\x5b\xb5\xd9\x1f\xe5\x9c\xa3\x69\xd3\x99\x62\x2f\x95\x86\x98\x98\xb9\x61\xa7\x8a\x8d\xb0\x00\xf1\xea\x4b\xc7\x90\x89\xd3\x49\x46\x2a\x72\xde\xde\xd9\x31\x3d\xe8\x10\x99\x08\xac\xf8\x70\x02\x11\x90\xd2\xef\x40\x43\x90\x5e\x23\x22\x83\xab\xcb\x0c\xd8\xd4\xd1\x25\xb6\x9b\x3a\xb7\x60\x93\x4e\xd7\x33\x1c\x72\x13\x7f\x17\xa5\xe0\xd3\xee\x2d\x73\x4d\x4f\xa7\xfc\x03\x3e\xcc\x27\xa2\x10\xfb\xd4\xa5\xd0\x72\x47\xeb\x74\x94\x91\x04\xf4\x61\xf9\x40\xbf\xe4\x9c\x26\x40\xed\x9b\xe6\x7d\xb7\xfa\x8b\xdd\xf0\x8f\x98\xbe\x23\xbe\xc6\x59\x08\xbd\xf9\x34\xcf\x23\x19\xd0\x6d\x4f\x05\x50\x96\xa8\xa3\x11\xb8\xc4\xe4\xb6\xeb\xdf\x60\x21\xfc\xaf\x38\xf3\xb9\xc0\xc5\x75\x52\x9b\xba\x22\x02\xc5\x9b\x38\x6f\x7d\x68\xab\x98\xa9\x97\x21\x42\x7b\xe1\x6a\xc7\x3c\x42\xf4\x9a\x00\x78\xf4\xc7\x5c\x95\x99\xbb\x22\x03\x6f\xb5\xc8\xe3\x97\xb1\x6e\x44\x68\xc3\x85\x40\xd8\x3a\xf9\x62\x20\x87\x31\x08\x97\x0a\xa7\x80\x7a\x7c\x9a\x40\xab\x03\x64\xb2\x85\x14\xf1\x02\x6b\xb8\x8f\x5c\x4c\x2f\x42\x6a\x94\xcb\x5f\xf8\x72\x04\x22\xa3\xe0\xdc\x16\x8a\x54\xf9\x60\x1c\x66\x36\x74\x83\xe3\x6a\xf3\x7d\x62\x88\x5b\x9d\x1c\xa6\xcb\x5d\x50\x39\x4b\xcb\x6e\x0e\xef\x8b\x10\xc8\x28\xe9\x1e\xc7\x4e\x0d\x67\x98\x38\x2f\x5f\x9a\x24\x5e\x46\x17\x6e\xe3\xc8\x10\x18\x20\x99\xfe\xfc\x9a\xd9\xf4\xc0\x6f\x04\xe9\xa3\xcb\x17\xe6\x1a\xc1\x39\xd9\x5f\x12\x83\x0d\x3e\xac\x8d\x78\x43\x44\x97\xed\xda\x1f\xba\xf6\x20\x0a\xec\xe6\x75\x49\x23\x6a\x47\x61\x6c\x38\x14\x4c\x0c\x0e\x3d\x33\xa9\x1c\x40\x83\x56\xde\xfa\x8b\xd5\x43\x03\x19\x82\xc9\x04\x1b\x9d\x77\x45\x73\x57\xec\xb6\xc3\x18\x65\xa1\x81\xdb\xba\x76\x25\xcd\x09\x47\x34\xbb\xab\xd6\x3f\xa7\xb5\xb2\x63\x41\x7b\x7d\xba\xe6\xda\xa4\x31\xd9\x45\x94\xb8\x02\x9f\x79\x80\x4b\x20\xb5\x7a\xf8\x58\x29\xd1\xcd\xb5\x0b\xbe\xa5\x76\x0c\x15\xc4\xf8\x0a\xb8\x09\xd7\x22\x33\xde\x26\x8c\x0b\x2e\x68\xb2\x3d\x07\x51\xe9\xab\xc9\x0c\xa5\x68\xe2\x55\x15\xc5\x2a\xef\x84\xf5\xe8\xfc\xe5\xcb\x57\x6f\xa2\xbf\x1b\x1c\x42\x11\x01\x61\x4a\x19\x19\x7a\x46\xb5\x31\xa6\x82\x8b\x5d\x75\xab\x1c\x92\xc7\x8d\x60\x3f\xb7\xa2\xa5\x7a\xb9\x3f\x25\x0a\x09\x0f\x81\x5c\xf0\x2f\xa8\x0a\x67\xca\xaf\xcf\x82\x79\x94\x91\x9a\x3a\x2d\x46\x8e\xd9\x64\x28\x1d\xf5\x94\x0f\xfd\x31\xf8\x67\x93\x86\x0d\xcb\xe4\x70\x73\x3f\x8b\x8e\x56\xc1\x9d\x03\x42\xe7\x81\xe9\xd3\x1e\x11\x52\x09\xa6\xca\x2b\xd9\x8d\x65\x77\xf8\x40\x9b\x7f\x3e\xdd\xa6\xf8\x86\xcd\x35\xea\xfd\x25\x0b\xb9\x15\xc8\xa2\x2a\x82\xd0\x7d\xa0\xad\x2f\xa5\xad\x74\x63\x7b\x6f\xed\x31\x69\x20\xef\x7a\x3c\x13\x17\x16\x1b\x9d\xee\x66\xe6\x87\x55\x46\xb9\x0d\x40\x14\xd7\xf5\xcb\x93\xcc\x3e\xbd\xfb\xd6\xc8\x0e\x37\x71\x0c\xfc\xc0\xb5\xb7\xe9\xca\x10\xc3\x66\x38\x98\x8d\xe6\xcd\x00\x0a\xf3\xcd\x7a\x8e\xd9\xcf\xd4\x26\x9e\xc3\x65\x30\x94\x4e\xee\x96\x87\x5b\xe4\xe3\x9b\x68\xe9\x5e\x9d\x7a\x7f\x46\xaf\x4f\x9b\x7a\x7d\x06\x68\xb8\xed\xa7\xb4\x1a\xef\x6c\x08\x53\x4f\xf3\xee\x28\x96\xde\x04\x9a\x29\x38\xbd\x02\x94\x74\x58\xa8\xea\x64\x75\x27\x2a\xc2\xeb\x00\xf9\xc0\xe5\x40\x5f\x02\x44\xa6\x47\xa5\x97\x9c\x2e\x3c\x75\x99\x92\x07\x00\x1d\xc7\x15\x58\x4b\xbc\xb9\x18\x4f\x42\x9c\xf4\x35\x64\x04\x1f\xb3\x8e\x36\x50\xef\x7b\x9f\x86\xf2\x49\xae\x37\x21\xf4\x50\xda\xef\x65\x8e\xba\x1b\x91\x91\x22\xb2\x55\x68\x1a\xc9\x52\x7a\xd9\xcf\xe7\x76\x42\xa3\x72\xa9\xa8\xa3\xd9\xc4\x55\x01\xf4\x13\x42\x54\xe5\xcd\x66\x90\x39\x5a\xb7\x23\x41\x89\x9d\xab\xcc\xc5\xab\xcb\x37\x4b\xf3\x0a\x3e\xf0\x71\x1b\x8c\x8f\x17\xc4\xf8\x10\x90\x49\x25\xc4\x64\x2f\x01\x50\x68\x5e\xf8\x1e\xa3\xbf\x55\x8d\x60\x02\x88\x5b\x3d\x89\x06\xd0\x1d\xed\x96\x41\x68\x5e\xcd\x5b\x98\x10\xd9\xfd\x76\x6c\xab\x55\x71\xe5\x4e\x77\x4f\x71\xf4\x29\x02\x46\xf8\xdc\x21\xc1\x9e\x62\x2e\x1a\x99\x55\xf4\x9e\x20\x70\x0c\x38\x15\xd4\x15\xe2\x4e\x31\x9d\xd9\x7a\xc5\x11\x9d\x10\x71\xf3\xd6\xa8\x7f\xca\x5d\x37\x6a\x4e\xf6\xc0\x13\xb5\xf6\xf5\x43\xd2\xfa\xb8\xa2\xa5\x37\x64\x78\xe3\xc5\x0c\x00\xee\x03\x77\x38\x43\x91\x1f\x53\x10\x51\xdf\xba\xd5\x53\xf9\x3b\x05\x38\x4a\x10\xac\x95\x0f\x86\x35\x01\xd8\x34\xe5\xed\xea\x3b\xfa\x6f\x2a\xe0\xeb\x6b\x17\x44\x96\x2c\xe5\xeb\xdd\x34\xa1\x5a\xf8\x00\x5c\x0d\x2c\x30\x15\xc1\xd3\x96\x73\x7b\x89\x42\xc6\x72\x97\x8f\x67\x0f\xd1\x4b\x1d\x5e\x59\x24\x54\xf2\xd7\x38\xb7\x24\xa8\xd6\xec\xfa\x20\x97\x68\x42\x08\xbe\x70\x8d\xd1\xf1\x72\x14\xc2\xcb\xee\x4c\xa7\x0b\x51\x7b\xcd\xa7\x21\xd2\xf3\x4b\x1c\x3e\xf0\xd4\xd0\xfa\xc7\x01\x80\x38\xaa\xeb\xad\x0a\x89\x92\xa8\xaf\x31\x6c\xfd\x55\x31\xe3\x03\xa8\x9b\xe7\x70\x6c\xe2\x8b\x70\x1c\xd8\xce\xe7\x73\x80\xaf\x10\xdf\x92\xe4\x11\xe7\x25\x57\x46\xe7\xb4\x3f\xd1\xcd\x3d\xa7\x68\x9f\x3f\xb9\xad\x36\x82\xd3\x6d\x4f\xc1\xa3\x8a\xf3\x34\x83\x4a\xd8\x50\xf2\x48\x09\x0c\x6b\x7c\x1b\x01\xd3\xd5\x06\xd7\x54\xb1\x20\x83\x93\x78\x03\x32\x78\x01\x9c\x35\xe3\xd2\x87\x54\x54\x77\xce\x1e\xac\x5c\x87\xcc\x56\x7f\x37\x60\xba\x84\x3b\x15\xd7\x12\x6d\x0e\xa1\xeb\x71\x73\x9a\x03\xa9\x87\x7a\xf4\xa6\x13\x04\x0b\xf1\x77\xf5\x61\xeb\x4b\x4c\xfb\x35\x4e\x77\x70\xfb\x30\x5e\xc1\xa4\x8a\x5d\x4d\x7a\xf1\x56\x19\x35\xcf\xdf\xa7\xff\xf9\xf2\xd5\xcb\x33\xf3\xeb\xc3\x9b\x9b\x9b\x87\xa8\xe1\xe1\xd0\x32\xb1\x94\xb6\x3c\x33\xff\xe5\xc5\xf3\x33\x63\xb7\xdb\xcf\xb4\x0b\x3d\xc2\xa1\xa8\x27\x63\xde\x6f\xd1\x93\xea\x06\xfa\xd0\x1f\x63\x5c\x23\xbe\xa5\xcb\x8a\x1f\x34\xd0\xa5\x05\x67\xd7\x6c\xdb\xc6\xac\x86\x37\x97\xf8\x20\xfc\x0d\x7d\xa4\x1b\xdc\xb6\xa5\xc6\x2f\xf9\x4f\x92\x4c\x7b\xdd\xfb\x69\xc0\x87\x31\x00\x6e\x88\x71\xf3\xcf\x20\x38\x64\x6d\x0b\x40\x72\x0a\x19\xb3\x78\xce\xfc\x5d\x0f\xdc\x4d\xe3\x04\x87\x10\x37\xad\xdd\xb0\x1b\xa2\x60\x5f\x26\x8e\xe9\x5a\xc9\xea\xdb\x71\x2d\xec\x4e\xd9\xd4\xd5\xad\x84\x37\x0f\x04\x21\xd4\x85\x5c\xa5\xae\xe5\xb8\x24\x07\xb1\x8c\x62\x3a\x6d\x89\x70\xa0\x0e\x2a\x42\xcc\x49\xae\x6a\x8c\xaa\x90\xd8\x0f\x24\xfb\xf5\x86\xe3\x02\xe2\xcb\xdc\xe0\x96\x99\x54\x36\x2d\x90\x5a\x10\xe7\x33\x05\x2f\xe2\x45\x79\xa6\x3e\x96\xde\xd0\x36\x37\x78\x76\x20\x9d\xc5\x8a\xac\x40\xe2\x86\xf8\xe2\xbb\x6e\xb3\x7a\xad\x84\x74\x95\x08\x36\xcd\x38\xd9\x9b\xca\xcf\xe5\x65\x02\x5a\x0d\x3d\xf5\xa7\x4a\xfc\x7b\x10\x48\xde\x23\x5d\x94\x61\x3f\x79\x7d\xe3\x39\x9f\x7f\xa7\x40\xee\x98\xbb\x91\xe0\xc2\xec\x62\x22\xeb\xf9\x9d\xf4\x2e\x29\x4f\xb9\x52\x2a\xf9\x30\x57\x9a\x6c\xdc\x0a\x38\x6e\x69\xb6\x0d\x89\x80\x32\x55\x3f\x7c\x2b\xf1\x50\x79\xd2\x8c\xf8\x0d\xad\x75\x63\x97\x58\x41\x1c\xca\x0b\xe6\x3e\x4d\xca\xc5\xb1\xdc\x0d\x7f\xca\x4d\x65\x15\x45\x86\x1a\x84\xbb\xcc\xd1\xc0\x5c\x02\x8c\xaf\x53\xe3\xba\x83\xf7\xe5\xf7\xb7\x10\x67\x4d\x45\x52\xb3\xdc\xd5\x93\x1b\x87\xa3\xac\xd1\x53\x31\xe3\x85\xbd\xe7\x37\xcc\x60\x5e\xcd\x8c\x61\xa4\x3a\x56\xcd\xad\x5c\xb9\x7f\xec\x3a\xda\x35\x77\x7a\x2d\xda\xe5\x23\x8b\x80\xab\xf3\xb2\x24\x04\xe1\x13\xb7\x97\x13\xeb\x50\xb3\x4e\xab\xfb\x7b\xbd\xd1\x09\xa3\xaf\xdc\x90\x2e\x6a\xe8\xdc\x5c\x90\x20\x52\x55\x2a\x31\xc3\xcf\x74\x6d\xb4\xdd\x25\x7c\x2f\xbf\x45\xfe\x38\xd4\x7d\xf2\x16\x79\x5a\x30\x5e\x25\x4f\x0a\x7e\xcc\x55\xf2\x0c\x31\xe3\x2b\xe2\x71\x80\x1f\x71\x4b\x7c\x6e\xb0\x63\xb1\x76\x0e\xd5\x33\xe0\x53\xe1\xb6\x4c\x47\xf5\x11\xd7\xc5\x47\x5a\xf5\xc7\xc8\xb7\x73\xfd\xf0\xc8\x48\x90\xfa\x21\x9b\x34\x09\x7c\x57\x4b\x52\xb3\x6e\x3a\x5c\xae\xc6\x5b\x25\xab\xcb\x2b\x5c\x1d\x28\x92\x00\xc1\x1d\x6e\x63\xc2\x09\x88\xa1\xe1\x45\x40\x14\x21\x7f\x24\x49\xce\x11\x57\xf2\x47\x92\xf8\x50\x37\x7f\x3c\xe1\x31\xa5\xf3\x2b\x6a\xac\xbb\x25\xe1\x73\x96\x52\xa4\xdb\x37\x37\x6b\xfc\xe2\x1b\xe3\x1d\x3b\x0b\xd2\xc6\xcf\xc5\x2e\x91\xa2\x60\xf8\x29\x38\xf7\x5b\xd0\xfd\x12\xdc\x54\xa3\xc4\x34\x2a\xbc\x46\xa3\xd5\x36\x31\x68\x11\xa8\xf2\xc7\x04\xc0\xa6\xd9\x89\xaa\x1e\x2f\x1f\x2a\xa2\x68\x99\x7f\xf7\xec\xa5\x7c\xb0\x53\x3c\x87\x93\x62\xaf\x78\x1c\xc0\x2f\xbc\xab\xfd\x72\xe2\x72\xef\x33\xe4\x3e\x04\xff\xf6\x2f\x2f\x0a\x44\x13\x40\xca\xb6\xb8\xea\x49\xc8\xff\x8d\xaf\x99\x49\x1a\xc9\xbf\xbe\xd4\x45\x6b\x1f\x4e\xca\x10\x52\x80\x62\x42\x13\x10\x1a\x92\xf9\x58\xc9\x8b\xf5\x21\xb5\x80\x1e\x92\x20\x2f\xc5\x94\x78\x34\xf0\x6b\x14\xf2\x3c\x93\x98\x79\x27\xed\x31\xad\xac\x93\x67\x07\xcd\xa5\xa7\x92\x74\xa8\xf1\xcc\x8a\x83\x46\xd0\xf6\xea\x31\xc3\xb7\x84\x7a\xbe\xb9\x2d\x6f\xf7\x6c\xfb\x65\xd6\xef\xa4\xec\x63\xdb\xf3\x15\x1e\x6f\x93\xaa\x9a\x1d\x1f\xad\x63\xcf\xd5\xd7\x73\x06\x88\xce\x08\x91\x5e\x8a\x5c\x11\x08\xdf\x1d\x10\x6f\x0f\xcc\xc3\x57\x4e\xfb\x72\x22\xe6\xe3\x66\x46\xcc\x61\x01\xf3\xd5\x66\xe3\xac\xec\xf2\x69\x99\xf0\x92\x9a\xb7\x93\x43\xe0\x88\x17\x51\xe4\x49\x9c\x18\x93\x06\xb9\x43\x30\x7f\xfb\x68\x77\x72\x97\x51\x2b\x4d\x98\xaf\x4f\x1b\x33\x5c\x9f\x7e\xd3\xf2\xc9\x0a\x87\xc5\x4f\xa9\x42\x5e\xbf\x21\x58\x8e\x0b\x14\x72\x20\xe2\x42\x56\x7b\xc4\x91\xaf\xe4\xa5\x8a\xe5\x72\x86\x9c\xb2\x9b\xc4\x62\x78\xa1\xcc\x87\x93\x09\x4f\x4a\x78\xa7\x00\xda\xc4\x5d\x17\x02\x60\x8e\x28\xc5\x5f\xd1\xe2\x07\x64\x0b\x7f\xff\x94\x27\x5a\xcd\xf6\x61\xc4\xd9\xf1\x63\x68\x4f\xc8\x05\x64\xc3\x78\x9b\x2e\x13\x7e\x4f\x44\xd6\xca\x25\x1e\x0f\x31\xf9\x8a\x61\x12\xf2\x6b\x26\x78\xcd\x4d\x17\x9b\xc8\x2c\x1e\x50\xb9\x38\xdb\xaf\x5f\x4b\x5a\x0e\x8a\xed\x41\x33\xe2\xd1\xe4\x18\x62\xba\x23\x28\x84\x6c\x07\x6a\xfd\x66\x67\x39\x8e\x28\xec\xcd\xdb\x44\x32\x77\xf0\xfe\x49\x2b\x31\xd2\xb8\x54\xfe\x01\x66\x3f\xa6\xff\xb5\x6e\xaf\x1a\x76\xf2\x6d\x1d\x27\x0f\x1c\x53\x27\x34\x12\x39\x9f\x29\xc5\x79\x2b\x9b\x9b\x1a\x64\x46\xfb\x8d\xff\xb5\x58\xfc\x44\x4c\xe0\x5d\x0c\x52\x3c\xb9\x2f\x31\x7a\x92\x16\x80\x21\xae\x9f\x87\x7e\x95\x9e\x97\x7c\x0f\xf7\x0d\x04\xff\x4e\x2a\xd5\xd7\xfe\x6c\xbc\x6b\x9e\x3f\x21\x6b\xf6\x2c\x44\xf3\x05\x74\xbe\x6c\x6e\xac\xdc\x31\xe7\xc8\x6c\x4b\x7f\x35\x0d\x21\x4d\xd9\xaf\x6c\xd4\x29\xbe\x3b\xa6\x0e\xed\x41\x54\xee\x9b\x85\x1c\xa6\xcb\xb3\x9e\x0e\x31\x69\xf1\x72\x66\x47\x43\xc3\x89\xe8\x33\x7c\x16\x06\x6a\xda\x76\xa8\x1b\x0e\xb2\xdc\xad\x38\x7c\x39\x07\xb7\x54\x23\x67\xb7\x62\xb3\xa6\xd3\xc4\x2c\x5c\xe6\xfc\xe5\x39\x54\x24\xdd\xd4\x38\x1e\xa8\x12\xb8\x98\x5c\x86\x8e\xe1\x95\x63\xe8\x74\x4e\x3b\x0d\xe9\x71\xf9\xa3\xbc\x06\x25\x21\xcb\x74\xe2\xf9\x42\x2d\x47\xf5\x77\x1c\x39\x15\xb1\x4f\x02\x51\x20\x66\x73\xed\x9f\xe9\x61\x7f\x35\x0d\x65\x16\x1a\x0c\x11\x01\x60\xae\xe9\x18\x4e\xa8\x28\xa9\xe2\x5b\x01\xcf\x6e\x95\xaa\xae\x4b\x4c\x9e\xf4\x00\xff\xf4\x6f\x76\x33\x37\xa8\xbf\xfa\xc4\xa3\x5a\x36\xbb\x5f\x86\x82\xd8\xc1\xb7\x77\x5e\x38\x1e\x19\x92\xff\x8d\x02\x85\xce\xd9\xa8\x4f\x46\x0d\xfd\x6b\xdd\x00\x4e\xc5\xbf\x4c\x6d\x84\xf9\x93\xd8\x21\x27\x44\xc4\x7c\x4d\x2b\xb9\xe4\xfb\xeb\x7f\xed\xa1\x7c\x0e\x1e\x75\xc4\xc9\xdb\xcb\x23\x74\x7c\xf8\x54\x47\x8f\xfb\xa9\xdc\xbf\xe6\xb4\x3f\x3d\x6c\x9d\x2a\xc0\xa3\x38\x8c\x19\xa7\xf1\x01\x18\xa5\x48\xa2\xbf\x08\x27\xc8\x98\xe9\xe9\x73\xf1\xd1\x93\xd7\x63\xdd\x78\x1c\xa5\xe4\x97\xb9\x50\xc7\x93\x52\x31\x78\x49\x8e\xd4\x6b\x59\xb6\x72\x1a\x53\xc4\xf8\x1e\xfe\xd5\x94\xb0\x36\x92\xa0\x27\x59\x34\x93\xb7\xbf\xff\x8f\xbb\x62\x99\x9c\x38\xd6\xfa\x40\x50\x93\x71\xef\xc1\xac\x66\x22\x9b\xbc\xba\x7b\xcc\x81\xc5\xcd\x47\x83\xfe\x60\xb0\x93\x18\xd1\x65\x26\xd8\xc9\xdc\x49\x4f\xb0\x18\x38\x6f\xee\xe8\x58\xb0\x01\x92\x79\x3f\xd1\x27\x92\xe4\xa9\x13\x8f\xc6\x7e\xf2\xc6\x6d\x44\xa8\x98\xc5\x67\xa7\x18\xa1\x9e\x64\x43\x10\x49\x67\xeb\x05\x9d\x66\x94\xee\xd9\x28\x29\x5b\xa5\xd3\xe3\xe1\x04\x46\x8e\x8b\x57\x17\xf3\xe9\xa3\xc2\xe3\x16\x66\xee\x85\xf8\x2c\x3d\x92\x7b\xc1\x67\x70\x21\x95\x50\xb8\xb5\x45\xb5\x7a\x89\x87\x63\xf9\x29\xa1\x90\x25\x2a\xee\x2a\x44\xcc\x0a\x19\xfc\x72\xed\xea\x7c\xb3\x81\x71\xbe\x2e\x42\xba\xee\x9f\xb2\x37\xb9\x1d\x36\x4f\x88\xce\x49\xdc\x65\xff\x74\x4f\xaf\x21\x38\x44\xac\xf6\x91\xe4\x49\x41\xf9\x6a\x5c\x19\x5e\x94\xd2\x8d\x98\x36\xfb\x85\x6c\xc2\x4b\xdc\x4d\x59\x85\x17\xa5\x34\x71\xdc\x2d\x49\x85\x3c\xa4\xc1\xb7\x56\x3e\xc4\x16\x61\xee\xb9\x65\x86\x3f\x05\x1a\xbd\x82\xcb\xdb\xa2\x1c\x58\x64\x71\xe8\x63\x20\x28\x7e\x56\xb9\x92\xa8\x22\x30\xcc\x67\xcf\xa3\x2d\xb5\x01\x96\xf5\x67\xba\x01\xe9\x3f\xed\x48\x0a\xf7\x71\x3d\xc1\x6b\xec\x76\xae\xe9\x33\x0d\x2e\x3a\xc0\x10\x3f\x74\x7b\x84\x86\xf7\xdd\xd1\x67\xb5\xf3\xee\x8c\x6e\x1a\x4d\x21\x3f\xae\x43\xd2\x96\xe5\xab\x00\x82\x13\x71\x64\xe2\xae\xa1\x53\xdd\xef\xff\x22\x5d\x13\xad\x7d\x27\xa7\x0e\x78\x57\x36\x3d\xe2\x0d\x7d\xf5\x21\x0d\xd2\x56\xe5\x01\x2a\x79\x9a\x29\x0f\x72\x20\x65\xe6\x37\x64\xc9\x13\xaf\x9c\x89\x84\xf2\x2c\x75\x37\x50\x71\x73\x14\xd7\xec\xa3\x38\x84\xd5\xb2\x1e\x36\x78\x82\xc5\x67\x57\x19\xbf\xb1\x44\x3d\xdd\x5b\xfd\xd8\xbd\x84\xc9\x8b\xd6\x85\xb7\x35\x34\xf7\xe3\xf6\x79\x81\xf5\xe1\xbc\x20\x7a\x8e\x1c\xbe\x92\x1a\x61\x83\x63\xf9\x4d\x99\xc5\x79\x9c\x21\x5a\xad\x2f\x74\x9d\x66\x9d\x48\x2a\x9e\xdb\x12\x4e\x40\x7a\xa1\x10\xa7\x7b\xa9\x00\xaa\xdb\x5f\xe0\xfd\x78\x87\xf5\xa0\x83\x77\x23\xb1\x50\x42\x67\xca\x99\x09\xcd\xa6\x3c\xe0\x1a\x1e\x3f\xf5\x2f\x77\x65\xab\x11\x5e\x67\x25\x0b\x4c\x6d\x91\xed\x1e\xd3\x1e\x7a\x81\x82\xdf\x32\x89\x7b\x51\x2e\xe9\x24\xdc\x63\x2a\xf1\x06\xe4\x1a\x66\xb2\x65\x0c\x6f\x4a\x43\xf1\xe4\xa1\x7c\x28\x50\xc3\x57\x71\xc0\xe1\x6d\xda\x53\xbc\x26\x0d\xb6\xa1\x94\x91\xf3\x9b\xbf\xb2\x4f\x81\x29\xdd\xd5\x2b\xcf\x77\x3c\x73\xf9\x40\x87\xf4\x85\xd8\xbf\xae\x43\x39\x67\xfa\x98\x5e\xb9\xb3\xd0\xad\x02\x42\x53\xc2\x6a\x32\x26\x83\x03\xc6\x3b\x7a\x7d\xe2\xed\x03\xe6\xdc\x42\x84\xe3\x85\x13\x2b\x4b\x17\xcf\x5d\x45\xd5\x5d\x87\x7d\x3f\x65\xaf\x75\x49\xa5\xc4\xe9\xc4\x54\x5e\xf7\xc1\x3d\x34\x75\x00\xdd\xb3\xdc\xe4\x0c\x00\x78\x35\x81\xcf\xc4\x86\x63\x88\x9d\x33\xb6\x65\xe1\x95\x00\x7d\x2b\xe3\x27\x9e\x92\x77\x8b\xf0\x44\xe9\xea\x82\x8f\x35\x44\x3f\xf3\x91\x71\x1b\x7e\x4f\xa6\xf3\x2a\x72\x2a\x8b\x4f\x9e\x2d\x38\xf9\x52\xc4\x40\x62\xbc\xbc\x15\x09\x8d\x25\x7b\x1c\xc5\x49\x74\xbd\x1d\x0b\x9e\xf1\x6d\xd8\x85\x3a\xbc\xad\xce\xaf\xe1\xad\xc6\xcf\xee\x62\x14\x07\x92\x36\x1a\x84\xb8\x22\x41\x46\xfe\x4a\x74\x10\x76\x55\x5b\xe3\x3a\xcf\xea\x7b\xfc\x94\x58\xa9\xfc\xfd\x9c\x7e\x2d\xfa\xa6\x27\x21\xe7\x0d\xfe\xff\xca\xdc\x2f\x17\x71\xd4\x6c\x7c\xa6\xaa\x49\x5e\xbb\xf4\xbf\xf6\x36\xc9\x0f\x3e\x8f\x50\xe0\x7c\x80\xef\xb4\xfc\x2d\xfa\xc5\x06\xee\x81\x23\x66\xc9\x15\x26\xa3\xfd\xe3\x09\xd7\xae\xcf\x34\xba\xc6\xf1\x38\x26\x35\x3c\xf2\x0b\x37\x0e\xb8\x0e\xec\xe5\x5d\xcb\x12\xcf\x2e\x86\x27\xbc\x63\x4a\x6e\x1f\x49\x73\x34\x30\xb1\xca\x86\x7b\x9b\xe6\xa5\xe2\xc1\xb8\x76\x21\x26\xbb\x1b\x68\x21\xa5\xb9\xd7\x4d\xde\xf2\xb4\x45\x59\xb2\x59\x92\xbf\x3f\x9a\x75\x4c\x9c\x3b\xc7\x45\xd3\x50\xad\x33\xbd\xea\xe4\x81\x90\x34\x47\x22\x6c\x65\xe3\x12\x33\x57\x9a\x74\xd5\xd4\xba\xed\xfa\x77\xf9\x62\x9e\x6a\x03\x69\x52\xef\x43\xed\xa4\x89\xe1\x6e\x70\x9a\xe8\x6a\x7e\x7c\x60\x2f\x5e\x34\x59\x1d\xb4\x6c\xb3\xc1\x85\x00\xbc\xba\x2a\x1b\xf6\x24\xe0\x20\xaa\x09\x14\xbf\xa5\x85\xa3\xe1\x19\xa2\x4b\xcc\x03\x81\xfa\x66\xa9\x73\x2d\x2f\x0e\xeb\xc3\x01\xb3\x10\xed\x50\xaf\x9e\x30\x3a\x93\x6c\x5c\xad\xc1\x65\x2d\x0e\x69\xdb\x70\x08\x35\x44\xab\x21\xde\xf1\x0a\x8f\xf4\x59\x89\xb7\x16\x22\xe8\xde\x59\x32\x6e\x9a\x2c\x20\xc1\xa6\x3e\x5b\x49\xd8\x4f\xdd\x68\x3f\x8d\x95\xeb\x56\x4c\x40\xa3\xf7\x20\xbb\x20\xbe\xf4\xa1\x11\x4f\x44\xea\x62\xe4\x3e\xaa\x9e\x99\xce\x8e\xeb\xf9\xf8\x7e\xb2\x81\x11\x6e\x91\xee\xda\xce\xf6\x90\xb3\xc6\xc1\x33\x3f\x50\xcf\x5c\x0f\x43\x3d\xd5\xac\xaf\xed\x1f\xe8\x32\x6f\xc4\xf5\x4e\x9f\x76\x56\xcb\xb6\x9c\x67\x86\x7a\x5b\x8b\xc7\x82\x3b\x89\x1e\x5c\xc1\x55\x11\x36\x6d\xbe\x9e\xfa\x81\x0a\x63\x74\xe4\x8f\xae\x51\x22\x0a\x9c\xb4\x76\xa7\x43\xc0\xcb\xef\xbb\xad\x76\xfd\x7b\xff\x36\x29\x22\xec\x97\x6c\xc5\x23\x64\x15\xed\x06\x97\x3b\xb1\xdb\xdb\x2d\x5b\x83\xba\xe1\x04\xee\xd3\xda\x46\x38\xcf\xa4\x03\x11\xec\xaf\x0a\x98\x00\x3e\xa2\xbd\x53\xf8\x6f\x6d\x77\x5b\x6f\xd7\xfc\x6a\x79\xb7\xe7\xe3\xfd\xd7\x4e\x74\x59\x7e\x66\x05\x5e\x7a\x0f\x96\x94\xf5\xb9\xc4\xc6\x72\xbf\x59\x3e\x19\xef\x1e\x98\x4f\xe3\x25\x89\xaf\x70\x83\x5f\x59\x3d\x2f\xae\xe3\x11\x61\xf3\x6a\xe6\x99\x85\x6c\x21\xde\xf7\x04\x2e\x7b\xf6\xb3\x3b\xbb\x90\x8d\xdb\x26\x75\x87\x6d\x04\x16\x55\x16\x0c\xc7\xe6\xbe\xd9\x6a\x13\xaf\x93\x30\x3c\x08\x24\x71\x49\x68\x18\x60\x76\x42\x19\xc5\x94\xfd\xb4\xb6\xa8\x9b\x2f\xbe\xfc\x32\x78\x17\xc0\xa3\x0f\x25\xa8\x6f\x38\x24\xaf\xe4\x67\x3e\x89\x88\x3f\x8a\x77\x07\xfd\x21\x69\xdf\x9c\x18\x7a\xda\xc7\x99\xb5\x76\x47\x07\x3d\x2a\xc6\x8b\x2c\xdd\xe1\x39\xd8\x22\xb5\x01\x87\x7e\xd2\x22\x48\x25\x83\x9a\x1c\x1f\xcb\xc2\x12\xbe\x64\xa0\x94\xa7\x0e\xfc\xca\xfe\x7a\xd7\xb4\xcd\x40\xda\x89\x5d\xfd\xe0\x7f\x91\x48\xc6\x79\x6e\x06\x9c\x8f\x42\x6e\xd7\x03\xc7\x4c\x7b\x2b\xa1\xd7\x19\x4f\x2f\x38\x0e\x6f\xe1\xcb\xa6\x3b\x07\x8b\x44\xbe\x24\x8c\xe1\x5b\x3e\x1d\xf1\x25\xce\x25\x05\x21\xb9\x7b\x78\xb9\xc4\x82\x5a\xa4\xd9\x90\xdc\x59\x27\x25\x5e\xf5\xec\x3e\x99\xee\x3d\xc7\x86\x43\x90\xae\x2b\xc2\xe1\x70\x5c\x03\x15\x9d\x46\x88\xdb\x4b\x68\xcf\x8b\xa1\x16\x7d\x78\xda\x80\xef\x93\x16\x93\x0e\x89\x39\x5a\x9b\x9c\x96\x41\xc4\x13\x85\xbf\x84\xa3\x28\xef\xb6\x2e\xc1\xc4\x0c\xf2\xf6\xb6\x38\x8e\x51\xf7\x94\xd2\xe6\x90\xc6\xb0\xa7\x10\xc0\x85\x66\xb0\x90\x16\x72\x65\x65\xf3\x02\xcf\x64\xb3\x39\x59\x80\xfd\x71\xc6\x45\xcc\xdb\xae\x39\x51\x40\x0f\xf3\x46\xdd\xd2\x53\xd2\x62\xda\xb1\x66\xf3\x0f\xc4\xb0\x48\xb8\x25\xcd\x89\x0d\x15\x30\x47\xa0\x4c\x02\xb8\x69\x9a\x1e\xea\xd7\x11\x62\x2e\x3b\x47\x66\xd8\xba\x70\xf2\xc2\xfa\x77\x1e\x2c\x97\x74\xa9\xc0\x29\x94\x5d\x22\x77\x0e\x67\x07\x44\x4f\x5d\xe3\x60\x66\x4b\x9a\x28\xed\x85\xa3\x26\x2f\xf5\xc8\xc6\x9a\x17\x97\x04\x79\x57\xc9\xd0\xe8\xa8\x8c\x6f\x36\x23\xbd\x6d\x41\x94\x79\x47\xbb\x90\xe6\x63\x35\x8f\x8a\x5c\x57\x98\x16\x9f\x6b\x9c\x4b\xcd\xb5\x2e\xaf\x92\x61\x0f\xdd\x0c\xdb\xf7\xb6\xc7\xcd\xc0\xfd\x9a\xfd\x40\x62\x45\x6f\x10\x6d\x45\xf0\xfd\x94\xb2\x79\x15\x7d\xc7\xe0\x73\x78\xa4\x7d\xed\x60\xfb\x82\x7d\x77\x12\xec\x4b\x8a\xbe\xdc\xf1\xc3\x23\x71\xff\xcd\x4b\x36\xb8\x7f\xbf\x56\xed\x46\xd7\x22\xa4\xc8\x50\xcb\x39\x3f\x7a\x94\x2e\xcb\xa8\xea\xcc\x8d\x0e\xa1\xb5\x64\x9f\xdd\xde\x6e\xe5\xd9\x3a\x79\x93\x98\x18\x82\xdb\x56\x2c\x1f\x53\x5f\x92\x12\xac\xc4\x51\x09\x66\xa1\x8f\xd9\x45\x5a\x1e\xbe\xc8\xa0\x84\x91\x79\xb0\x8b\x82\x66\x4c\x99\x56\x18\xdf\x1c\xf4\x11\x41\x06\x3e\x08\xee\xbb\x20\xd0\xdc\x3c\xde\xa0\x1a\xba\x62\x0e\x5a\x3b\xd1\x41\xcc\xde\x0e\x82\x14\x02\x10\x1d\x5a\x2e\xc8\xe8\x73\x10\x44\x7f\xb6\x8a\x1a\x37\x3f\x08\x81\x9d\x4c\xf5\x6c\x29\xc0\x0f\xab\xf9\x83\x99\x78\x5e\xec\xe3\xe0\x2b\x90\x57\x10\xf4\xdb\x0b\xba\xa5\xb8\xb5\x72\x94\x59\xc9\x98\x8b\x27\x25\x59\x22\x48\x41\x65\xd7\x04\x75\xba\x15\x6f\x5d\x9f\xa8\x4f\xdf\xe7\x4f\x9a\x5f\x52\xa2\x89\x31\xa6\x68\x3b\x7c\xa9\xf7\x5b\xf8\xe3\x4d\x63\xe0\x40\x9d\x0c\x28\xf5\xef\xf3\x02\xf7\x87\xaf\xd6\x2f\xb5\x86\x3c\xd4\x92\x0e\x8c\x55\x0f\x71\x75\x3b\xcf\x6c\x0d\xe6\x92\x53\x15\x8e\x43\x10\xaf\x9e\x73\x20\xe2\xb4\x28\xc2\xa2\xaa\xa2\x35\x2a\xfe\x1c\x39\xe2\xab\x20\xf0\xe3\xd7\xf2\x9f\xe3\xcc\xc1\x90\x04\xcb\xc1\x67\x0d\x5f\x9f\x85\xeb\xa8\x19\x6a\x0d\xdc\xe2\x3b\x7e\xe2\x3d\x42\xff\x76\x23\x73\x5d\x8f\x8e\x93\x8f\x11\x46\x1c\x04\xba\x08\x7e\x30\x39\x55\xb8\x6e\x1d\x09\x61\xf4\xaa\x00\x1e\x40\xcd\x49\x03\xd0\x4c\x1d\x23\xc8\x3d\x9f\xc8\xc9\x4b\xe7\x89\x01\x3b\xa3\x1d\x3e\x47\xc7\xed\x08\x16\xa4\x66\x6a\x10\xd1\xed\xe0\x8d\x7a\xfa\x8a\xd2\x3e\xb9\xd1\x92\xd5\x24\x71\xa6\x25\x86\xb4\x9c\x15\xc7\xba\xf8\xd9\x0b\xb5\x20\x76\x77\x06\xa5\x9e\xc5\x7a\xb0\x90\x53\xfb\x1e\xf1\x39\xda\x4e\x9c\xe9\xea\xa0\x72\xd8\xb9\x27\x6e\xff\xf0\x1b\xbe\x70\x65\xb9\xf3\x05\xdf\xca\x2d\xb3\xf6\xfc\xcb\xbd\xa3\xe6\x44\xfc\x67\xb9\xd7\x37\x78\xd7\xbb\xbd\x44\x02\x89\x8c\x2d\x1d\x28\xfc\xc9\x59\x8b\x27\x50\xbc\x22\x09\x5f\xce\x04\x37\xa9\x93\xd2\x79\x32\x2f\x77\x79\xa4\xe2\x89\xd3\x25\xdf\x0a\xbc\x9b\xf7\x8d\xcc\x89\x5c\x2c\x72\x37\xfe\x4c\x7c\x70\xf8\x3b\x3f\x20\x59\x88\x09\x92\xd9\xd9\x89\xc6\x46\x6f\xa9\x8f\x1e\xbe\x98\x3d\x40\x95\x8c\xd8\x11\xf9\xce\xcf\x69\xd5\xf8\xb9\x94\x68\xfa\xf2\xec\xad\x87\x44\xa4\xee\x0e\xa1\xba\x3d\xd0\x38\x2a\x34\x1b\x48\x95\x17\x65\xbd\x1e\x71\xa3\x17\x9c\x67\x2e\x90\xa7\x65\x10\x9d\x06\x2e\xe4\xfc\x9e\x96\xf0\x3a\xcd\x08\xdd\x95\xef\x18\x56\x55\xbe\xe5\x19\xd0\xd2\x5f\x7d\x90\xc4\x19\x0f\xa9\xa4\x6b\x5c\xc5\xa8\x4b\x7c\xa1\x26\x81\x99\x63\xa2\xcc\x3e\x05\x66\xe4\x57\x2f\x89\xb8\x02\xb9\x7a\x4a\xff\xe9\x37\x56\xf4\xea\x02\xf7\xd2\x34\x81\x0d\x4c\x65\xbd\xfa\x8e\xfe\x9a\xc7\x2f\xd3\xd4\xf0\xa2\x25\xe7\x85\x37\x2f\x67\x20\x3c\xc7\xfe\x4b\xd1\x22\x5e\xeb\x57\xe2\x10\x18\x1f\x53\x47\xb8\xa8\xa6\xe5\xd7\x10\xcd\xb1\x02\x0b\x47\x48\x7f\xf6\xdd\x43\x20\x7c\x04\x24\x2a\xcc\xde\xed\xf6\x7c\x62\x4f\xcc\x64\x27\x2e\xdf\xf2\xc6\x91\xe2\x0f\x1b\x3c\xc7\x8b\xc3\x9e\x67\xf4\xa2\x2c\xc7\xdc\x48\x00\x68\x24\x9c\x1d\x46\x82\xa7\x71\xdd\x66\xc0\x69\x37\xa3\x4f\x3f\x1b\x93\xcc\x5f\x84\xe9\x86\x76\x04\xf6\x08\x0f\x83\xcc\x40\xca\x63\x89\x01\xec\x89\x3c\x96\xc8\x40\x12\xa6\x4e\xfa\x21\x41\xea\x7c\x69\x3e\xa7\xd1\xec\x73\x7e\x1c\x25\xcb\x3f\x60\xa7\x58\x77\xc5\xea\x45\x67\xce\x4b\x73\x79\xae\xe9\xdd\xa1\x3f\xca\x03\x0c\x97\x2f\xde\x5c\x98\xd3\x64\x02\xc0\x30\xe3\x06\xc0\x49\x46\x9c\xfa\x34\x47\x3d\xb5\xf4\x56\x86\x68\x82\x78\x94\xe0\xb1\x7c\xcf\x43\x9d\xde\xa1\x31\x9d\xb8\xf4\xd6\x22\x5e\x18\x5f\xa3\x90\x12\x4b\xf3\x02\x8f\x94\x21\xba\x8e\xa6\x98\x6e\xdf\x0c\x55\x89\xab\xfa\x9d\x25\xfe\xca\x52\xc9\xe6\x56\x22\x66\x99\x07\x67\x0f\x96\xd9\x6a\x5a\xf7\x55\xe7\x5f\xdf\x45\x8c\x42\x58\x08\x9a\x5d\x5b\x5c\x91\xa2\xf3\xe6\xf9\xa5\x1f\xe7\x7b\x77\x04\xa4\xbe\x53\xbf\xba\xa4\x6f\x64\x1b\x7e\xeb\xff\xd6\x2f\x02\x1c\x41\xda\xf6\x9a\x74\xe5\xfc\xa5\x3d\xb6\x19\xe0\xb0\xdb\x5c\x9c\xbf\xc8\x9b\xe7\x28\x5f\x5e\x3e\x4b\x3a\xf2\x3a\x7d\x6e\x12\x53\xd3\xe0\x36\xee\xd6\x2f\x2f\x1a\x32\x82\xd0\xd5\x1d\x5c\x2f\x7d\x8d\x21\x78\xd1\x58\xa0\x92\xc3\x66\x8f\xf3\x5c\xc4\x28\xcc\xf9\xe4\xa9\x75\x79\xe6\x4e\xe5\x8d\x22\xb2\xad\x5c\x0e\xcc\x1b\xf9\xd0\x5d\x8f\x65\xc6\xaf\xe2\x7e\x94\xd7\xf2\x91\x6e\x5f\x69\x55\xab\xb7\x62\xf3\xb9\x73\xd0\xea\x1e\x96\xfa\x15\xe7\xf0\x19\xdc\x5a\x78\x27\x9f\x8c\x8f\xaa\x8d\x4f\x7e\x4d\xe0\xe3\xcb\x1e\x23\xd4\x50\xca\xae\x71\x12\xff\x71\x63\xfd\x8e\x8b\x27\xf2\x4f\xb8\x18\x27\x75\x67\x7b\x77\x5e\xed\x87\xb6\x70\xb1\xb7\x79\xa3\xd6\xec\x91\x9d\x37\x66\x29\x28\x09\x24\x09\xe1\x26\x4f\x9e\xdb\x14\xe2\x5a\x3c\x55\x3b\xa1\xcc\x13\x40\xb8\x64\x89\xbb\xb1\x73\xf9\xa3\x1d\x45\x53\x9b\xab\x2b\x44\xb3\x43\x84\x55\xf6\x14\xd7\x1b\xd2\xaf\x24\x39\x94\xc5\x03\xd7\x78\x36\xa1\x19\xc4\x48\xb5\xe3\x57\xfe\x98\x54\x69\xd9\x90\xf0\xcf\x0b\xee\x35\x67\xfb\x42\xed\xc0\x06\x99\x56\x4e\x44\xad\x61\x4d\x4f\xdf\x2e\x08\x00\xa3\x76\x83\x36\x18\x81\x20\xa1\xb4\x4d\xd3\x8f\x5e\x49\x79\x4d\x49\xd2\x68\xe2\x39\xac\xb8\x87\x79\x7f\xbb\x96\x87\x1e\xee\x28\x89\x5b\x2b\x7c\xb9\x06\x7e\x61\x5a\x96\x86\xf6\x91\x05\xe1\x1a\xd5\xec\x42\x9b\x1c\x88\x2c\xbf\xa8\x77\xc9\x69\x71\x20\x70\x15\x56\xaa\x65\xbc\x8c\x58\x80\xa2\xe9\x99\xb8\x14\x07\xd4\x6f\x4e\x10\xd1\x63\x3d\x06\x4d\x00\xa3\xe8\x12\xd3\xa2\xcc\x10\xd3\xa2\xc8\x13\xd3\x92\x99\x4a\x52\xbb\xae\x1a\x4f\xd1\xe5\xe5\xf3\x19\x80\xf0\x74\x57\x87\x0b\xb6\xf0\x5e\xbb\x07\xcf\x1a\x04\x93\xbc\xf7\x59\x02\x9f\x61\x74\x94\x1e\xea\xc0\xb5\xb0\x7b\xdd\x2f\xd4\x9e\xfd\xf2\x1e\x47\x42\xb8\xd7\xbb\x72\x13\x2b\xf2\xfc\xfe\xf4\xf2\x02\xdf\x8f\x98\x57\x45\x3c\x7b\xfa\x58\xdf\x3f\x2a\x71\x20\x14\x7c\x39\x59\xb9\x94\xed\x7f\x4c\xfa\x7e\xb7\x78\x1c\x1e\x7b\xcf\xb7\x8b\xd0\x37\xdc\xe4\x6a\x13\x35\x7f\x4d\x32\x45\x8f\xb0\x6e\x72\xa5\xeb\x62\xa8\xba\xa2\xb6\xf3\x85\x7d\x68\x69\x1f\x6a\x9a\x6f\xb8\xf8\x87\x9a\x9a\xf0\xf2\x25\xf0\xfb\x23\xbf\xfa\xed\x0b\xfa\xc7\xea\xd9\xaa\x96\x3f\x6f\x8f\x0d\xb6\x50\x2b\x72\xf5\xe0\x5c\x1f\xa4\x97\x62\x8c\x10\xb5\x4f\x3c\xf1\xcf\x3e\x7b\xb3\xc4\x18\x05\x7c\xe7\xd0\xfd\x66\x25\xa0\xa8\x20\xa2\x42\x88\xc3\xda\x1d\x86\x03\xbf\x29\x7b\x89\xc8\x88\x8f\x90\x3d\xe9\xd8\x91\xe4\xfd\x62\xf5\x84\x3f\xa9\x43\xfc\x19\x78\x97\x5c\x23\xc6\x8d\xaa\x75\xc5\x07\x83\x62\x91\x31\x3f\x3a\xb1\xbd\x19\xb9\x67\x15\xd1\x44\x5b\x56\x14\x58\x93\x72\xaf\xad\x3e\x2c\x0f\xc5\xd5\x8b\xac\x62\x7f\x3a\x51\x97\x0f\x45\x30\x4f\x4b\xfe\xf6\xae\x02\xff\x32\xd8\x81\x9a\xb2\xf5\x8e\xc8\xf8\xef\xf0\x61\x9e\xf3\x47\xc0\x95\x5c\xe1\x65\xe3\x16\x71\x43\x3d\xce\x78\x4e\x0a\x62\x6f\xd5\x5b\x84\x5f\x56\x08\xd4\x32\x96\x71\x0a\x5c\x98\xd2\xc0\x28\x34\x67\x90\x86\x92\xb9\x3a\xb9\xa5\xbc\xe0\xcc\x11\xe8\x48\x75\xc9\x33\xfd\xac\xd2\xa2\x6b\x22\x37\x37\x4f\x9f\x3c\x7f\x35\x82\x9c\xb0\x0b\x4d\x9f\xb0\x16\x4d\x9f\x61\x25\x72\xe8\x3d\xdf\x75\x3e\xf8\xce\x01\xe7\x3b\x2e\xc4\x3d\x5f\x89\xd8\x97\x33\xc0\xa2\x24\x22\x63\xd9\x9c\x86\x26\x31\x7c\x66\xa0\xe6\x5e\x7e\x9b\x01\xa3\x0f\x0e\x4f\x5c\xdb\xae\x9b\x36\xd8\x49\xea\x49\x7e\xd4\x75\x19\x87\x50\x68\xdc\xcd\x83\x83\x1d\x9e\xa4\x62\x0f\x98\x29\xa8\x07\xf1\x35\x67\x57\x0d\x2e\x34\x33\xf4\x94\x08\xd5\x8d\x85\xe0\x47\x9c\x38\x5a\x8d\x58\x3d\x02\xed\x99\x04\x8e\x49\xf8\xec\x2e\x87\xdf\x6d\x03\x82\xc4\x68\x9c\x60\xa9\x74\xfc\x16\x5f\x13\xcd\xbb\xa3\xf1\x55\xee\xca\xaa\x45\x9a\x70\x01\x4d\x65\x34\xba\x7d\xdf\x1f\xbb\x24\x2e\x03\xbf\xc6\x36\x1a\xcd\xa4\x92\xbc\x83\x47\xc7\xc7\x07\x27\x30\xff\x3d\xde\xff\x1a\x41\xea\xde\xb1\x0a\xda\xc1\x55\x02\xe4\x17\x05\xe9\x22\xc2\x43\x13\x6e\xff\x83\xa6\xa5\xa2\xc2\x7c\xb3\x89\x5c\x00\xa0\xd1\x06\x8a\x5c\xef\x9b\xb5\xdc\xb6\xb4\x33\x3c\x13\x3f\x19\x79\x7d\xb7\x45\xb8\x4f\xcd\x8d\x2b\xcf\xa7\x74\x44\x75\xe5\xc0\x06\x3a\x5b\x97\x45\x84\xc4\x6b\x1c\xcf\x0b\xa3\x47\x05\xc4\xed\x70\xf3\x32\x64\x87\xe7\x3c\x08\xe4\x12\x7b\xef\x18\xc0\xfe\x0a\xe1\xcc\x9f\x08\xbe\x1c\x0e\xf0\x15\xa5\xee\x44\xf3\x7c\x52\x57\xe3\x0d\xb2\xec\xcc\x04\x3b\x40\x22\xb7\x79\xb0\xc9\xc5\xab\x30\x04\xc2\x21\x1e\x77\x61\x83\x1a\xbc\xd6\x9a\xd9\x5e\x28\xeb\x4c\xfb\x60\x17\xde\xdb\xcd\xfb\x92\xc9\xe7\x1a\x6f\xee\x27\x0e\x70\xde\x8b\xcc\x03\x47\xb9\x28\x4d\x59\x7f\x91\xba\xde\xf9\x9c\x49\xb7\x7d\x46\x73\x5c\xbd\x3a\x2e\x13\x38\xd6\x41\x82\x96\x80\xc6\x9b\xc4\xfb\x2e\x8d\xf5\x38\x3a\xfa\xfe\xa9\x60\xb7\x87\x77\xd9\x0b\x96\xb8\xc3\xcd\x47\x08\x79\x64\xc8\x3c\x84\xc3\x7d\x79\xcf\xa5\xb5\x75\x08\x82\x29\xbf\xcb\xec\xdd\xd0\x34\x24\xfb\x17\x31\xf4\x3a\x02\x9e\x9c\x7c\x23\x26\xbc\xdc\x21\x7d\x61\x9f\x50\x7e\x92\xbc\x1a\x47\xae\xef\xda\xed\xe7\xe3\xe2\xa0\x81\x1c\x0c\x99\x7f\xe3\xeb\x96\x71\xca\xfb\x26\x3f\xc3\x1d\x1d\x4f\x43\x88\xab\x82\x3e\x29\x96\x8e\xf3\x73\x31\xfb\x7d\x2e\x23\xfe\x53\xf2\x08\x88\x56\x94\xc7\xe4\xe7\xc4\x51\x1c\xfe\xb4\x36\x8d\xb4\x3f\xad\x2c\x7b\x76\x05\xdd\xd2\x94\xe2\xaf\xe9\xda\x4c\xd8\xef\x9f\x35\xee\xfb\x1f\xee\x59\x88\xca\xe7\x67\x23\xc4\xde\x9b\x50\x87\xcc\x72\x98\xe2\x62\x96\x5e\x38\xd0\x0b\x9e\xe6\x4b\x26\x16\x8f\x3a\x16\xbb\xac\x3b\x3c\xb1\xe9\xab\x2b\x59\x75\x7e\x52\x13\x82\xe1\xd7\x1d\xfe\x1c\xc2\xf3\x73\x28\x00\xf0\x3d\x5c\x7b\x16\x21\x95\xc7\xec\xcc\x9f\xf5\x72\x3d\xd1\x3e\xc2\xa6\xbf\x5b\x14\xbb\x66\x75\x55\x2c\xf8\xd1\x49\x5c\x5c\x41\x00\xa3\x12\xcb\x63\x81\x2f\xdc\x5f\xf9\xa2\x5b\x7d\x61\x68\xe1\x37\xf0\x69\xb9\xdf\x2d\xbe\x38\xd0\x37\xa9\xae\xb0\xcf\xe1\x73\x4f\x9f\x30\xde\xe3\x77\x49\xbf\xd9\x0e\x2b\x59\x37\x5c\xb2\xc7\x01\x64\x2d\x00\xc4\x5f\x50\x1a\x6f\x32\xe0\xf3\x96\x3e\xd8\xdd\xe7\x3e\x02\xad\xa0\x09\x7e\xb9\x44\x7e\x3a\x09\x31\x8e\x23\x59\x4e\xe5\x9f\x9c\xb8\x6f\x86\x96\x93\xb0\x53\xdf\x87\x5f\xd7\x2d\x7f\xca\x3b\xfd\x48\xb9\xb1\xf6\xbd\x56\x25\xcd\x33\x1c\xb5\xde\xef\xa5\x2e\xdb\x31\xdc\xad\x2d\xa4\x26\xea\x05\x27\xb4\xc5\xcd\xda\xf7\x44\xbb\xc1\x69\xbe\x1f\xd2\x09\x42\x5f\xd9\x36\x47\x44\x21\x7e\x17\x9e\xb8\xf5\x0f\x00\x3e\xa6\x1c\xef\x1e\x06\xff\x21\xbc\xd3\x51\xb9\xed\x7b\x79\x48\x1c\x57\x94\x97\x0b\x1f\x06\xdc\xd5\xc7\x41\x95\xd5\x18\x66\x5e\x80\xb4\x0a\x1f\xee\x92\x1f\xef\x92\xb7\x0e\x69\xe6\xd6\x1b\xc7\xef\x3b\x5a\x03\x3d\xe0\xd3\x7f\xfc\x47\x06\xa6\x9f\xff\xf4\x4f\xe6\xc5\x77\x9f\x19\xfb\x2b\x82\x48\x22\x98\xd7\xaf\xac\x12\x28\x14\x7d\x7e\x9f\x01\xe2\x22\x35\xfb\x72\xf3\x59\xd3\x6b\x89\x10\x72\xc5\x41\x24\xfe\x7f\x00\x00\x00\xff\xff\x17\xe8\x8c\x01\x9c\xb5\x00\x00") func confLocaleLocale_itItIniBytes() ([]byte, error) { return bindataRead( @@ -4439,12 +4439,12 @@ func confLocaleLocale_itItIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 46472, mode: os.FileMode(493), modTime: time.Unix(1446027988, 0)} + info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 46492, mode: os.FileMode(493), modTime: time.Unix(1448150140, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_jaJpIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\x7b\x6f\x5c\xc5\xb2\x38\xfa\x7f\xa4\x7c\x87\xb5\x73\x94\x0b\x48\x89\x23\xe0\x5e\xe9\x0a\x31\x9c\x0b\x09\x1b\xb8\x3f\x12\x72\x70\x38\xe8\x27\x84\x86\xf1\xcc\xb2\x3d\x27\xe3\x59\xc3\xac\x99\x18\xef\xa3\x23\x79\xec\x3c\x9c\xd8\xd9\x0e\x84\xc4\x79\x91\x07\x24\x71\x62\x27\x76\x42\x60\x13\x62\x93\x7c\x97\x33\x9e\xb1\xfd\x17\x5f\xe1\x57\xaf\x7e\xae\xb5\xc6\x66\x1f\x24\x44\x3c\xab\xbb\xab\xbb\xab\xab\xab\xab\xaa\xab\xab\x0a\xb5\x5a\xbe\x14\xc6\xc5\xdc\x7b\xd1\xc6\xbd\xf1\x8d\x85\xeb\xed\xd6\x7c\x67\xe9\xc6\xc6\x0f\x27\xda\xad\xb9\x76\xeb\x46\x7b\x62\xa5\x3d\xb9\xd8\x9e\xbc\xd0\x9e\xbc\xda\x9e\xf8\xb5\x3d\x39\xf5\x5e\xb9\xd1\x9e\xf8\xb9\x3d\xb9\xda\x9e\x3c\x0f\x5f\x76\xee\xd8\xb9\x63\x38\x1a\x09\x73\x58\x01\x3f\xde\xdc\xb9\xa3\x54\x88\x87\x07\xa2\x42\xbd\x04\x1f\xc7\xdb\x93\x93\xed\x89\x5f\xda\x93\x77\xda\x93\xd7\xa8\xc2\xe9\x9d\x3b\xc2\xaf\x6a\x95\xa8\x0e\x6d\x26\xee\x21\xd0\x89\xe5\xf6\xe4\x5c\x7b\xf2\x21\x15\xdf\x07\x78\x61\xa5\x06\x4d\x2f\x51\xcf\x73\x3b\x77\xc4\xe5\xa1\x6a\xbe\x5c\xcd\x61\xbf\x13\xb7\xdb\x93\x4f\xf8\xff\x52\x10\x35\x1b\x76\xc9\xf7\xed\x89\xbb\x30\x4c\x29\x6c\xd6\xdc\x32\x18\x0c\x42\xac\x87\x43\xe5\xb8\x11\xd6\x73\xeb\x97\x57\x36\x67\x7e\xdc\xb9\x63\x34\x1c\x88\xcb\x8d\x30\xf7\xe9\xbb\xef\xa8\xfa\x00\xe2\x58\x58\x8f\xcb\x11\x74\x3c\x79\x0e\xc7\x36\xf1\xb4\x3d\x39\x4f\x1d\xd7\x0a\x43\x38\xe3\x2b\xfc\x75\xe7\x8e\x46\x38\x52\xab\x14\x1a\xf8\xed\x24\xf6\x84\xd3\x79\x40\xd3\x01\x28\x95\x42\x75\xa8\x89\x0d\x18\xc3\x3b\x77\x14\xeb\x21\xd4\xcd\x57\xc3\xd1\xdc\xda\x6f\xd7\xba\x53\xe7\xfa\xfa\xfa\x76\xee\x68\xc6\x61\x3d\x5f\xab\x47\x83\xe5\x4a\x98\x2f\x54\x4b\xf9\x11\x42\xd1\xe4\x5d\xea\xe4\x1f\x04\x8d\xb1\x74\xa1\x3d\x71\x8b\x86\xb8\xd8\x6e\x2d\xb4\x5b\xf7\x79\xae\x61\x09\x70\x94\x2f\xc4\x3e\x9a\xba\x4f\xa7\xda\xad\x17\xb8\x4e\xd8\x43\xb5\x30\x62\x01\xed\x9c\x3b\x0b\xab\x31\x52\x28\x57\x72\xef\xee\xc5\x7f\x70\x6a\x71\x3c\x1a\xd1\xda\x7d\x4d\x2b\xbe\xac\x56\xad\x1e\xe6\x1b\x63\xb5\x30\xd7\x39\x79\xb6\x73\xe2\x4e\xe7\xcc\x55\x98\x49\xa1\xd6\x28\x0e\x17\xa0\x4b\x18\xd6\x0f\x34\xbe\x16\xfc\x81\x9d\xd5\xc3\x5a\x04\x28\x8d\xea\x63\x00\x69\xa1\x3d\xf9\x1d\xa1\x6f\x0a\xfe\xde\xb9\x23\xaa\x0f\x15\xaa\xe5\xbf\x15\x1a\x88\xdc\xf5\x9f\x8f\xaf\xff\xfa\xed\xce\x1d\x23\xe5\x7a\x3d\xaa\x43\xe5\x1b\x40\x04\xd0\xe7\xce\x1d\x80\xa0\x3c\x82\xc9\x75\x2f\x3e\x22\x72\x3c\x9e\x80\x84\x55\x46\xca\x43\x75\xc4\xbd\xae\xb5\x3e\xbf\xb2\x71\x6b\x86\x0b\x07\xa3\xfa\x51\xbb\x3d\xe0\xee\x3e\xcd\x7d\xb9\xdd\x5a\x4a\x05\x07\x83\xb3\x40\xa9\xc1\x15\xaa\xb0\x82\x54\xc6\x9f\xda\x13\xdf\xac\x2f\xdd\x5a\x3f\x77\x72\xe7\x8e\x42\x69\x04\x10\x5f\x2b\x54\xc3\x4a\x8e\xbf\x6d\x8c\x9f\x40\xec\x4d\x9e\x85\x25\x82\xf2\x62\x31\x6a\x56\x1b\xf9\x38\x6c\x34\xca\xd5\x21\x5c\x20\x20\xd2\x45\xa2\x53\x20\x95\xa9\x8d\x7b\x0f\x3b\x4b\x57\x60\x11\x55\xb9\xfa\x30\x16\x35\x35\x45\xe4\xda\xad\x09\x5a\xed\x1b\x34\x6e\x9f\x10\xa4\xb2\xe9\xc2\xaa\xad\xc0\xd1\xf4\xe2\xfc\x60\x18\xe2\xe2\x4e\xd3\x96\x5c\xc5\x25\x46\x80\x00\xea\x07\xb5\xd0\xb5\x66\xa5\x02\x88\xff\xb2\x19\xc6\x0d\x00\x85\x9d\x2d\x22\xaa\x00\x67\xbc\x61\x91\xaa\xcb\x71\x0c\xe5\xb9\x8d\x85\x1f\x37\x11\xd7\x48\x0b\xd5\x22\x60\x40\x91\xc2\x13\x66\x1d\x58\xf2\x59\x1c\x16\xea\xc5\xe1\xcf\x71\x8a\xf8\x47\xae\x7b\xfb\xda\xfa\x4f\xdf\x13\xd5\xf7\x22\x13\xa4\x57\x43\xab\xd2\xa5\xee\xb1\x18\x95\x90\x83\x3c\x51\xa3\x86\x7e\xca\xd5\xb8\x51\xa8\x54\xa0\x23\xf9\x2b\xa7\x36\xc2\xaf\x04\x73\x95\x06\xd4\x28\x37\x00\x9f\x9d\xa9\xef\x3a\x57\xaf\x23\xaf\xbb\x35\x83\x18\x48\x54\xec\x9e\x9e\xde\xbc\x09\xcb\x5b\x8a\x8a\x47\x61\x67\x22\x53\x82\xe1\x7c\x30\x18\x00\xa6\x5f\xaa\x87\x41\xbd\x59\xad\x02\xae\x83\xf7\xa2\xa1\x38\x80\xfe\xca\xa5\x30\x38\x40\x75\xf7\x04\xb5\x4a\x58\x88\xa1\x4a\x58\x28\x05\x6f\x16\x82\x46\xa1\x3e\x14\x36\x72\xbb\xf2\x03\xc0\x0b\x8e\xee\x0a\x86\xeb\xe1\x60\x6e\xd7\xee\x78\xd7\x5b\xef\x35\xa1\x59\xa5\x5c\x0d\xe3\x37\xf7\x15\xde\x0a\x8a\x05\x28\x01\xec\x8f\x05\x03\x21\x50\x6e\x88\x7d\x05\xb0\xc1\xaa\x43\x61\x50\xa8\x8e\x35\x86\xb1\xc3\x72\x35\x80\x3f\xe2\x00\x99\xd0\x5f\x10\x83\x5f\x36\x81\x75\xe5\x4b\x03\x8a\x93\xc3\x78\xe8\x63\x3d\x8c\x83\x83\x63\xfd\xff\xf6\xe1\x9e\xe0\x70\x14\x37\x86\xea\x21\xfd\x0d\xff\x83\xfa\xaf\x07\x51\x3d\x38\x52\x3e\xf0\x0e\x2c\x02\x34\x65\xa4\xb4\x27\x4f\x11\xb2\x5f\xb4\x27\x2f\x33\x71\x28\xe2\xc1\x2a\xb8\xf9\x93\x35\x00\x79\xeb\xf7\x96\x36\x6f\x5d\xc7\x83\x20\x6e\xe4\xf4\x49\x91\x5c\xc0\x6c\xde\x02\xe0\x85\x33\xf9\xe0\x89\x45\x41\xb1\xe0\xff\xe0\x58\xfc\x65\x25\xf8\xe0\xd0\xa1\x8f\x0e\xbc\x13\x20\x39\xe2\xa2\x01\xc5\x3c\x09\x9a\x8d\xc1\xff\x37\x3f\x14\x56\xc3\x7a\xa1\x92\x2f\x96\x03\x18\x57\xf7\xe2\xa9\xce\xc3\x39\x22\xc4\x49\x5c\xd7\x89\x6f\xd6\x7e\x7b\xb1\xfe\xed\x3d\xda\xdb\x77\xdb\xad\xd9\x76\xeb\x66\xbb\x75\x01\x19\xc3\xf8\x04\x50\x67\x5c\x01\xa6\x0b\x54\xd5\xdf\xff\x61\xd0\x9e\xfc\x5e\xef\x87\x42\x63\x58\x86\x0c\x95\xbe\xac\x20\xb6\x65\x38\x47\x86\xc3\x00\xb7\x67\x80\x75\x82\x68\xd0\x47\x6e\x50\x2a\x34\x0a\x03\x40\x0b\x80\xe5\xb0\x5e\xcf\xc3\x39\xd1\x18\xc3\xa5\x22\x98\x59\x95\x19\x1a\x6c\xa8\x6a\xd4\x00\x4a\x08\xa8\x95\x40\x28\x57\x8f\x15\x2a\xe5\x12\x2c\x98\xc2\x99\xdb\x14\x3f\x05\xa5\x08\x96\x1e\x1b\xc3\x1e\x88\x46\x91\x82\xea\x85\x22\x9c\x77\x71\xb0\xab\x6f\x17\x50\x52\x29\xd8\xb5\x77\x17\x00\xac\x46\x79\xe6\x5e\x78\xde\x94\xca\x71\x61\x00\xce\x1e\x3e\x1c\xeb\xcc\x9d\xff\x37\x12\x20\x0f\x44\xca\x03\xbb\x3c\x18\x2d\x37\x86\xe1\x04\x0e\xe8\x4c\x43\xea\x2c\x54\x03\x02\x19\x08\xdb\x73\x26\xae\x58\xa5\x90\xc1\xdb\x54\x51\xfd\x4c\x99\xf0\xce\x1d\x6a\x41\x99\x3e\x89\xb6\x61\x61\x3b\x27\xee\x6d\x4c\x3d\x50\xb4\x89\x42\x0c\x53\x0f\x9e\xf0\x73\xc4\xaa\x1e\x13\xf5\xfc\xc2\x07\x36\xd1\x90\xaa\xa5\x96\x6e\xfd\xa7\x9b\xdd\xcb\x3f\xb5\x27\x4e\xdb\x9c\x1e\x6a\x02\x95\xc0\xf1\xd6\x9e\x98\xf1\x48\xe4\xf7\xd5\x16\xb3\xab\xbc\xd0\x83\xc3\xad\x88\x89\x2e\xf2\x91\xaf\x48\x45\x57\x56\x5d\xb6\x5b\x97\xdb\xad\x5f\x09\xee\x52\x00\x82\x54\x40\x40\x98\xce\xa6\x82\x04\x44\x38\xa2\xce\x13\xdc\x53\xc4\x9c\x1f\x90\xa0\xc4\x45\x8b\x6b\x2f\xbe\xeb\x3c\xbc\x84\x23\xc3\x81\x3e\x47\xc8\x48\xc2\xc0\x94\xf2\xb4\xeb\x84\xb1\x99\xbd\xa7\x4a\xf4\x58\x6c\xc1\x02\xba\x72\x3b\x0f\xbc\xc9\xb4\x5b\x4f\x89\x49\x7e\x4f\x87\xc0\x0a\x7e\x19\x6f\x75\x66\xcf\xb4\x5b\x4f\x78\x4d\x00\x69\xc2\x4a\x2f\xb7\x27\xa6\xbb\xf7\xee\x6f\x5e\x3e\x07\x1f\xbb\xa7\xc7\xbb\xd7\x4e\xf3\xc7\xce\x8b\x13\x1b\x77\x5b\xed\xd6\x0c\x1e\x4e\x13\x67\xac\x51\x97\x22\x90\x3d\x50\xcc\x3a\xdd\x9e\xbc\xa5\x84\x3b\xfe\x68\x50\x77\x9e\x66\xba\xdc\xdf\xff\x3e\xe1\x81\xa5\xc5\x27\x9f\x7c\xfc\x21\x60\xa3\xf3\xdb\xe3\xcd\x1b\x2f\xb8\x1b\xd9\xca\xc3\xf9\x5a\x54\x6f\xc0\x56\x7e\x3f\xc0\x89\x89\x2c\xa6\xbe\x2b\xb0\x87\xe1\xef\xa0\xda\x1c\x19\x08\xeb\xc1\xe8\x70\xb9\x38\x8c\x1c\xb7\x1e\x60\x2b\xc0\x15\xc8\x7f\x01\x30\xda\x66\x0c\x84\xbd\x27\x00\x9e\x7e\x2c\x0c\x60\xd5\x88\x3a\x83\x46\xa4\x77\x04\x56\x1f\x04\xfa\x6f\xd6\x71\x9f\x0f\x37\x1a\x35\xee\xfc\xfd\x23\x47\x0e\xdb\xbd\xeb\x12\x3d\xab\x0c\x82\x05\x24\x75\x9e\x83\x08\x7e\xab\x33\x0b\xb4\xf9\xb5\x4c\x4c\x01\x5a\xbf\xb0\xd0\x99\xfd\x85\xe6\x89\x44\xdd\xac\x57\x7a\x00\x5a\x0a\x00\x45\xba\xa2\x8d\x4e\x25\x19\xe0\xea\x8f\xb7\x68\xac\xfb\x02\xfc\xa7\x9f\x96\xda\xc3\xf1\x99\xf6\x04\xc8\x91\x4f\xa0\xe6\xda\xd3\xf1\xcd\xc9\x7b\x44\x98\xb7\xf8\xa8\x24\xd1\x7e\x92\x48\x43\x51\x0a\x92\xd3\x13\x92\xb2\xd4\xe2\x00\xf3\x7d\xfa\xf7\x76\x6b\xca\x5a\x77\x90\x04\x6b\xc8\x45\xf4\xfe\x6e\x4f\x2c\xe0\x34\xd4\xe8\xd5\x06\x27\x09\x55\xaa\xb0\x9c\x6a\xab\x20\x5a\x7e\x1a\x01\xec\xd2\x11\xd4\x7f\x90\xf0\xae\xcf\x21\x2a\x19\xac\x47\x23\xb9\xce\x2f\x4b\x9d\x53\xcf\xd6\x9e\x3d\xb3\x3e\x2a\x9c\x6c\xc2\xd4\x5e\xdc\x22\xd9\x4d\xcd\x0b\xb1\x7a\x9a\x76\x1e\xd2\xfb\xc7\x7f\xdd\x1f\xfc\x3f\xaf\xbf\xf6\x1a\x8c\xdd\x08\x92\x93\xd7\xe5\x70\xc1\x3d\x94\xd6\x0e\x90\xd1\x7a\x01\xad\x69\xde\x20\x8f\x2d\xef\x3a\x04\x5c\x68\x57\xf0\x26\xcd\xea\xff\x0b\xbf\x2a\x80\xee\x10\xf6\x15\xa3\x91\xb7\x08\x29\xf8\x15\xb6\x29\xed\x62\x33\xa4\xd6\xd2\xe6\xd5\x95\xce\xc3\x73\xba\x0f\x5d\x51\x73\x53\xbb\x72\x8a\xf0\xce\x1a\x4f\xbe\x18\x55\x07\xcb\xf5\x11\xd1\x7c\xf0\xf0\xfe\xfe\xd9\xc6\x02\x72\x3d\xd8\xa8\x9d\x33\x30\xde\x45\x26\x37\xee\x20\x0f\x1c\xb9\x3c\x88\xc2\x99\xf4\xbb\x39\x7e\x65\xfd\xc6\x9d\xb4\xea\xbc\x61\xf2\xf8\x4f\xb9\x18\xea\x15\xe5\x85\x22\x05\xaa\x05\x54\xf3\x1d\x74\xb9\xb6\x72\x91\x48\xcc\xac\xa1\x25\xa6\x46\x83\x83\x28\x10\xf1\x49\x4c\x04\x71\x01\x15\x02\x96\xcf\xd4\xa1\xcc\x9d\x77\x66\x2e\xba\xf5\x61\x73\xd5\x50\xe5\x13\xf9\x78\x9c\x48\x52\x88\xc9\x9c\xe8\xa0\xe3\xee\x3f\x70\x08\x79\xd6\xfa\xf1\x5b\x6a\x0e\x73\xb4\x44\x86\x3f\xd3\x5e\xfa\x4d\x44\x1c\x5b\xe5\x9a\xf8\x46\x36\x06\x88\xf0\xa8\x81\xcd\x77\x67\xcf\xad\x3d\xbf\x4a\xa7\x08\x52\x76\xc0\x2c\x4d\x0e\x53\x50\x4d\x8e\xc1\xd1\x5c\xcf\xbd\x27\x7f\xf8\x13\xf7\x06\x41\x20\x92\xcd\x65\x62\x07\x84\xe1\x28\x60\x74\x94\x17\x9b\x71\x23\x1a\x09\x62\x60\x5c\xc5\x30\xde\x83\x67\x7e\xc0\xc5\x71\x00\xf2\x64\xd0\x04\x65\xbb\x50\x0a\x4b\xc1\xc0\x58\x80\x54\x15\xa3\xbc\x51\x0a\x07\x0b\xcd\x0a\x9e\xce\xa9\xc7\xfe\xc6\xa9\x85\xce\x2f\x8f\x85\x46\x9c\x21\xf2\x5a\xa7\x35\x92\x31\x66\x37\x45\x14\x1b\x05\x89\xf7\x05\x9c\x06\xae\x36\xc4\x1a\x31\xa0\xb5\xdd\x3a\x4b\x5d\x85\x55\xea\x49\xa9\x9a\xfb\xf9\xdf\x34\x02\x74\x6b\xca\x70\x3e\x66\x49\x38\x20\xa9\x09\xd4\xc4\x40\x8a\x03\x90\xaf\x09\x1d\xc0\xe8\x2b\x83\x7b\xed\x89\xf4\x89\x50\x0d\x0a\xaf\x98\x1e\xf2\xc7\xca\xa0\xac\x7b\x8a\xb5\x58\x48\xf4\x39\xca\x13\x52\x46\x81\xcd\x8b\x3f\x6e\xdc\x9d\x87\x61\x6e\xdc\x7b\xdc\x99\x5d\x4e\x07\xa9\xe8\x75\x3b\x80\x01\x53\x0a\x36\x40\x15\xf0\x8c\x26\xc5\x51\x89\xa4\x9e\x92\xf4\x4c\x67\xba\x07\x76\x62\x82\x20\xcf\xba\x45\x62\x14\x31\xc0\xa9\xbb\x8d\xbb\xd3\x28\x1a\x39\xc2\x05\x4b\x6f\xa2\x63\xb2\xb2\xb1\xb6\x72\xc6\xac\xa8\xbb\x90\x24\x6d\xf3\x5a\xda\xa7\xff\xb2\x75\xfa\x03\x83\x3e\x0f\x90\x3f\x38\x10\xe4\x82\x57\x69\xcf\xc9\x94\x41\xc6\x5b\x46\x3a\x9a\xbe\xb0\x7e\xe5\x38\xac\xb0\x4d\x35\x5a\xb6\x58\x3f\xfb\x63\xe7\xf9\x9c\xde\x34\xd6\x10\x99\xf5\x64\x0e\xcc\xf0\x1a\xae\x9e\x62\x13\xf1\x04\xd5\x04\x3b\x15\x2e\x9a\x59\x83\x99\xaa\x82\xe3\x5a\x58\x44\x37\xcd\x0f\x81\xe0\x94\x53\xd2\x53\xaa\xa2\x0a\xfa\x77\x7e\xa8\xdc\xc8\x0f\x22\xa7\x2f\xe5\x5e\x02\x91\xf1\xa5\x80\x54\xde\xeb\x34\x95\xd3\x68\x6e\xe2\x26\x70\xcc\xde\x7e\xdc\xbd\x30\xf7\x46\xb0\xfb\x98\x52\x52\x5e\x47\xe6\x9d\x07\x56\x50\xae\xe0\xc6\xc8\x29\x71\x72\x81\xfe\x43\xc6\x16\x78\x96\x2d\x40\xbb\xd6\x60\x68\x50\x3f\x6b\xa1\x43\xe9\x4c\xc7\xed\x95\x1b\x8a\x06\x9a\xe5\x4a\x29\x09\x66\x9e\x16\x7a\x81\x34\xab\x56\xe7\xc4\x83\xce\xea\x2c\x75\x7d\x8e\xe6\x79\x86\x25\x4c\xb7\xcd\xc4\x37\xc1\x6e\x14\xee\x89\xee\x90\x75\xf3\x72\x3d\x54\x3c\x3b\x55\x65\x53\xda\x10\xe8\x42\x42\x97\xe9\x1a\xaa\x92\x74\x66\xba\x0f\x7f\x50\x9b\xc0\x21\x43\xc6\x9b\x02\xb7\x2d\x31\x3f\x50\xa2\xf1\x8c\xe2\x71\x30\xeb\xcb\x0c\x48\x4b\xdb\xb8\x02\x23\x05\x60\x38\xbe\x44\x2e\x5b\x14\x38\xe2\xec\xf3\xce\xb5\x7b\x36\xf5\x53\x91\xc1\x20\x40\x8c\xf7\xbe\x05\xff\x83\x75\x05\x09\x94\x4f\xf0\x21\x45\x14\xdd\xf9\x69\xda\x63\x4b\x4a\x23\x10\x42\x60\x26\xe2\x4e\xcb\xd9\xc0\x5b\xef\x8f\xd4\x99\x29\xea\x8d\x9b\x45\x38\x6d\xd0\x98\x05\x0d\x4e\x12\x69\x7d\x07\x2a\x52\x77\xea\xeb\x36\x6e\xd3\x65\xcb\x02\x35\x13\x28\x2a\xdf\x04\xe1\x10\x08\x07\xc1\xcd\xb2\x86\xd5\x79\x20\xfa\x17\xf7\x81\x10\xee\xfc\x46\x5f\x5e\xd0\xda\x80\x30\x78\x0a\xe0\x93\xf2\xb5\x73\xc7\x67\x68\x6a\xfe\x7c\xe7\x8e\x26\x2b\x72\x51\xa5\xe4\x69\x32\xa8\xbf\x29\x39\xeb\x5d\x4b\x56\x52\xfb\xd4\xb4\xf1\x36\x74\x0c\x8a\x6c\x71\x38\xaf\x4d\xd7\x88\xe5\x46\xf8\x55\xc3\x31\x61\x07\xda\x86\x4d\xa7\xf8\x13\xc2\xd7\x49\xb4\x78\xf1\x26\x04\x25\x68\xea\x54\xf7\xea\x0b\x10\x9d\xc6\x88\x86\xe2\xdc\xfa\x7c\x2b\xcd\xd0\x58\x8c\x2a\xb0\x27\x23\x3c\x6f\x8e\x85\x52\xb5\x73\xe2\x71\xe7\xdc\x4c\xa2\x2a\x80\x8a\xea\x43\x0a\x92\x36\x48\x8e\xe5\xd9\x60\x6a\xba\xd0\x76\x53\x3a\x59\xc4\x28\x7f\x9e\xcd\x7c\x44\x3d\xca\x68\xd7\x07\x44\x40\xe6\x42\xee\xd7\xb5\x2c\x7a\xbd\x03\xce\xc5\x5a\xff\xb9\x18\xeb\x92\x76\x3a\xa8\x53\x68\x36\xd0\xbe\x67\x2c\xdb\x79\x51\xff\xd1\x94\xba\x71\x77\x36\xeb\x6c\xb0\x04\xd3\xe1\xb0\x86\xe2\xec\x48\x3c\xc4\x7a\xf2\x3c\x9e\xec\x89\x66\xa0\x88\x74\x67\x60\xbe\xb7\x98\x5e\x80\x5d\xfc\xbe\x7a\x03\x4e\x21\xfa\xfb\x1c\xb2\x8b\x89\x47\xcc\x4b\x03\xa2\x99\x38\x2a\x96\x0b\x95\xfc\x9f\xdc\xcb\x39\x25\x8e\x9e\xe6\x5e\x5c\x71\x88\xed\xf8\xa0\x24\xe6\xd6\xbf\xc5\xc3\x7c\xe3\xde\x13\xff\xd0\x83\xc3\x1c\x76\xbe\x88\xe0\x33\x96\x8c\x04\xeb\xf0\x83\xc5\x67\xe9\x54\x57\x17\x12\xd6\x29\xb8\xd8\xb9\x00\x1c\xec\x78\xe7\x1c\x8c\x76\x16\x61\xa6\xf0\xc6\xc4\xa0\xe8\x14\xda\xd6\x90\xb4\x22\xa3\xd4\x83\xee\xfd\x1b\x1b\x93\xbf\x6d\x39\x54\x5c\xce\x91\x10\xb5\xe9\x3c\x51\x9f\x59\x8d\xf5\x33\xff\xe8\x9e\x98\xc6\x75\x7f\xf1\x1d\xa1\x96\x45\x36\x10\xc2\x86\x80\x43\x66\x1d\xa3\xb8\xa3\x5e\x5c\x22\x4e\x71\x83\x2b\x87\xdb\xab\x0c\xcb\xa5\x6f\x80\x80\x07\x8f\xfa\x36\x77\x54\xb0\x45\x20\x49\x5b\xe0\x94\x2b\x23\x39\xf1\x59\xd2\x25\xcd\x28\x0e\xab\x0d\xb5\xd0\xe6\xc2\x80\xb5\x29\xa3\x09\x7e\x13\xbc\x39\xf0\xd6\xee\xf8\xcd\x7d\x03\x6f\xc1\xe1\x06\xea\x53\x4b\x61\x9d\x84\xbc\xf1\x09\x2d\x29\x77\x96\x66\xd6\x9e\x9d\xa4\x05\xbc\x8a\xea\x3e\xde\xbe\xb5\x10\xd3\xe3\xad\xdd\xa5\xee\xe5\x89\xcd\x8b\xe7\xd7\x56\xee\x74\x4e\x9e\x20\xec\xdb\x7b\x36\x4d\x0d\x07\xf9\x88\x87\x92\x61\xeb\x14\x29\xb4\x11\xe9\x9d\xda\x0f\x9f\xc8\xb8\x1c\xb1\x11\x44\xbe\xe3\x05\x06\x71\x29\x62\x19\xaa\x72\xca\x9e\x61\xe3\x10\xf2\xc3\x1f\xda\x93\x17\x91\x14\x08\x43\x95\xf2\x48\xb9\xb1\xbd\x0d\xe1\x82\xb8\xec\x18\x32\x0c\x49\x2e\x6f\xde\x5c\x59\xff\xb5\xc5\xc8\x04\x8d\xd7\x95\x4c\x90\x0c\x5f\x0f\x3a\x53\x80\xc8\x33\x6c\x43\x49\xcc\x7d\xb8\x10\xe7\x9b\x55\x59\xd0\xb0\xc4\xfb\x82\x0c\x4c\xe7\x09\xb5\xb7\x50\x0c\x22\x59\xe4\x02\x89\x39\x2d\x1b\xdb\x9e\x1a\x1e\xd8\xba\x7e\xf0\xb2\x5e\xeb\x57\x50\x84\xed\x5e\x5b\x50\x8b\x30\xaf\xf6\x32\xca\xe0\x49\x22\xa1\xa1\xdf\xb4\x2a\x9f\x55\x53\x22\x19\x0a\x84\xa2\xf1\x56\xf7\xdb\x5f\x89\x20\xee\x76\x4e\x9e\x55\x33\x27\xc9\xfa\xe6\x4f\xc8\x07\x48\x98\x58\x7b\x3a\x4d\x14\x71\x8d\xe4\x9f\x27\xb4\x2c\x6c\xdb\x23\xba\x48\xa7\x05\x5a\x28\x85\x86\xed\x2c\x01\xd0\xaa\x3b\x04\x42\x1b\x9b\x2b\xcf\x7b\x7d\x2a\xeb\x0d\x89\xa2\x31\xb1\xe3\x86\x12\x45\x7b\xe1\x92\xe7\x93\xd8\xb6\xb4\xfe\x17\xbf\xdf\x1c\xff\x61\x6d\xe5\x12\x9a\xc6\x8c\x92\x22\x32\x29\x1a\x22\xaa\x28\xc2\x81\x9c\x23\x73\xf2\xf8\x04\x6a\xf6\xea\x4a\xc0\xde\x3e\x6a\x5a\xdb\x98\x13\x43\xcf\xe4\x44\x56\x0f\x46\xfa\xa2\x0b\xab\x2d\xd8\x2f\x11\x00\xde\x50\xa8\x7b\x2d\x14\x59\xaf\xdd\x00\x85\x07\x24\x0b\x35\x51\x14\x6e\x6c\xc1\x4c\x2f\xa2\x19\x91\xb1\xf2\xfa\x2c\xd2\x9d\xfd\x96\x13\xd5\x00\x1b\x51\x94\x8f\x87\xd1\xaa\xf9\xfb\xea\x45\xbe\x58\x01\xf2\xee\x3e\x1b\x4f\x5a\x9b\x50\x79\x13\x01\x52\xab\xa7\x7a\x71\x40\x58\xc0\x45\xf9\x5c\xd8\x0a\x8a\x0b\x8a\xa7\x1c\xe6\x5b\x33\xf5\x3d\x8d\x0b\x61\x75\xd6\xa6\xfe\x3d\xac\x97\x07\xc7\xb8\x4e\x48\x9a\x55\x50\x28\x95\x00\x0b\x71\x62\x75\x3e\xc6\x9f\x5c\x53\x7d\xb3\xe4\x0e\x25\xc8\x7e\x2c\x1f\x02\xf9\xb0\x27\xf8\x34\xac\x14\x41\x8a\xe2\x31\x47\xa5\x02\x0e\x7a\x2c\x44\x81\x09\xb0\x75\x1c\x6f\x4f\x72\xb4\x39\xe1\x3f\x58\x66\xa8\x81\x86\xb2\xce\xed\xd3\xdd\xab\x3f\x51\x1b\x38\xaf\x46\xa0\xc9\x27\xa0\x07\x1c\x4a\xaa\x98\x1f\x83\x30\x25\x9f\x1d\x79\x8a\x0a\xdf\x65\x8d\x31\xd5\xa2\xb8\x73\xc7\xe1\x4c\xbd\xf4\xe3\x50\x6e\xe9\x12\x27\xa3\xb9\xb4\xef\xef\x7f\xff\x08\x29\xc8\x64\x1b\x9f\x20\x05\xab\xb5\x04\xdd\x76\x4e\x43\xcf\xef\x37\x1a\xb5\xf8\x93\x7a\x85\x8c\xd7\xfd\x6c\x3c\x3e\x5c\x18\x43\x13\x12\x7e\x45\x33\x01\x1e\x8d\x5a\x2d\x13\xfb\xf2\x91\xb0\x30\x22\xb3\x69\xb1\x1f\x08\xcd\xe3\x6d\x90\x0b\xe9\x73\xf7\xf4\x0b\xa0\x6c\xfe\x86\x5a\x08\x4f\xd0\xd6\xeb\x13\xf6\x4d\x63\x32\x09\xc9\x33\x60\xfd\xfe\x33\x22\x55\x87\xa6\x80\x2e\x2a\xb5\xe1\x02\x09\xee\x52\x8f\x70\xb5\x28\x36\x3b\x64\x61\x44\xea\xc0\x3f\x2f\x3c\xc2\xdb\x40\xd8\xdf\x93\xb3\x34\x87\x0b\xc0\x54\x76\xed\xdd\x25\x6c\x06\x19\xcc\xb8\x28\x8c\x13\x78\xf2\xef\xca\xef\x22\x5b\x08\x2c\xef\x15\xda\x7a\xc8\x5a\x53\x2f\x31\x9c\x41\x94\x80\xd1\xf1\x40\x5e\x0a\x7a\x0d\x65\xfc\x36\x0d\xc5\x68\x17\x2f\xef\x7d\x25\x6b\x28\x2f\xe7\xe1\x3c\xc1\xda\xa7\x19\xc4\xcb\x7d\xaf\xf8\x43\xa3\x5b\x2b\x58\xdf\xde\x77\x2d\xc1\x4b\x78\xf4\xff\x4d\xa1\xf4\x0b\x91\x74\x26\x9e\xe9\x23\x6f\x9e\x5a\xa4\x03\xf8\x02\xbd\x34\x40\x81\x34\x00\x5e\x0a\x3a\x8f\xbe\xa6\x43\x6a\x16\xad\xbb\x13\x13\x08\x44\xae\x5d\x33\x90\x85\x43\x18\x29\x7c\xe5\x42\xd1\xad\x40\xc2\xe1\x33\x2c\xb3\x2d\x1f\x27\x1a\xc3\x78\xca\xb2\x1d\x70\xa1\xf7\x71\x62\x14\x6a\x84\x82\x77\x21\x69\x30\x90\x9a\x83\x54\x2b\x15\xb5\xaa\x1e\x05\x61\xb2\x2a\x2d\xd7\x9e\x9e\xed\x5e\xfa\x3b\xc2\xc4\x7b\x68\xd4\xbd\xde\xd0\x2e\x31\x20\x5b\x15\xa3\x7a\x3d\x2c\x36\x94\xc5\x12\xa0\xce\xac\x3d\x1d\xdf\x38\xf5\x93\x32\x59\x5d\x55\xba\xb0\x48\x82\x16\xb7\x35\x66\x83\x04\x6f\xbd\x67\x0e\x09\xbf\x48\xe0\xa3\x16\x99\x66\xad\xb1\x7d\x80\xf2\x03\x61\x08\xd2\x5f\xe1\x68\x58\x4d\x2a\xd0\xcb\xdd\xb9\xef\xf1\x8e\x51\x2e\xcb\x2f\xa8\xcb\x50\x57\xd0\xaf\x45\xf9\x24\x24\x9f\x95\x6d\x0f\x18\x08\xf6\x09\x58\xe6\x42\x76\x5b\x20\x1a\xc0\x80\x52\xc6\x63\x98\xd1\xf6\xc0\x30\x75\x11\x08\x40\x55\x29\xb7\x85\x88\xb2\x0d\x88\xe5\x4a\x25\x1c\xc2\x1b\x2e\x35\x40\x6f\x54\x8b\xea\x28\x5f\x50\xfb\x66\xa6\x73\x6e\x11\x01\xa4\x00\xd3\xcb\xa7\x29\xc5\xd0\x59\x96\x1d\x24\x49\x26\x59\x46\x30\xc6\x40\x15\x0e\xc1\x3a\x79\x93\x59\xc6\x30\x1a\xb8\xe2\x30\x6c\x9e\xf6\x0d\x63\x7c\x82\x58\xe0\x49\x6e\x6d\xdd\x27\xf3\xd0\xf4\x56\x0a\x49\xa2\x5b\xd8\x67\x68\x3f\xb3\xfb\x65\xfc\xde\xe0\x4b\x65\x38\x35\x68\x96\x7f\x52\x77\x5a\x5a\x70\x27\x99\x85\xba\xe3\xdb\xe8\x43\x1b\x00\xc3\xaf\x40\xb2\xc8\x75\x67\x4e\x91\x4c\x24\xb3\xf0\x2c\x81\x9d\x87\x97\xc8\x0c\x38\xe7\xae\x46\xa5\x10\x37\xd0\xfe\xc3\xe8\xc8\x75\x4e\x9f\xd9\xbc\x7c\x5b\xdd\x07\x7b\x37\xf8\x42\x55\x68\x23\xbf\x36\xde\x79\x3e\xa3\x84\xdb\x27\xea\xfa\x4d\x84\xc5\xce\xd4\x1d\xac\xa3\xb0\xa8\x8d\x7d\x8e\x46\xcc\xec\x42\x61\x07\xef\xcd\x8f\x86\x63\x39\xba\x7d\xff\xc6\xd5\x53\x94\x05\x15\x4d\x4c\x4d\xbe\x82\x39\x46\xc2\x99\x6e\x85\xe6\x3f\xd7\x24\xb8\x84\xb2\x07\x14\x65\x01\x43\x55\x09\x51\x31\xcd\xb7\x46\xda\xaa\xa8\xf8\xf4\x3d\xb2\x0f\x2e\x18\xe3\x3f\x9e\x86\xf3\x50\x13\x6f\x0d\xa6\x4e\xc2\xff\x37\x9e\xa1\xa8\xd0\x73\x7d\xd0\x68\xa5\xcc\xa8\x50\x6b\xe3\xde\xaa\x6b\x3d\x7d\x6e\xdb\x50\xe1\xdc\x6c\xc0\x56\xc6\x75\x60\xa7\x44\x4f\x35\x51\x9e\x0e\xbe\x09\xcd\x9c\x60\x78\x7e\x27\xf6\x8c\xac\xa7\x6c\x55\xbd\x26\x68\x78\x99\x5f\xd9\x78\xf8\x63\xda\xb2\xf0\x40\x50\x8b\x45\x7f\xc4\x84\x8a\xb4\x2c\xca\x24\xfb\x29\xa6\xd0\x80\x8c\x46\x55\x40\x83\xfb\xe6\xf8\x78\xe7\xd4\x33\xa5\x0f\x4c\xdb\x64\x96\xed\xb6\x81\x64\xe9\x23\x85\xf4\x3a\x05\x59\x46\x92\x9c\xb6\x42\x96\xa7\xb8\x27\x10\x04\x42\x8d\x8b\xa0\x8d\x95\xef\xb5\x82\x96\x3d\x30\x7b\xad\xd8\x07\x8d\xdd\x1d\x64\x8d\x65\x58\x96\x1f\x83\xbd\x91\x16\xc9\xa2\x8d\x96\xad\x1e\x6c\x3d\xa5\x2d\x50\xf2\xfc\x4a\x67\xfa\x82\x18\x70\xb0\x3e\x5d\x65\xa0\x48\x07\xc4\x7c\x12\x9a\x74\x9e\xdd\x55\xf3\x49\x25\x48\x38\xc5\xc8\x53\x30\x3f\x50\x2f\x54\x8b\xc3\x16\xef\x90\x3b\xbd\x89\x1f\x45\x84\x9c\xbc\x48\x02\xc7\x13\xdc\xf4\x40\x21\x86\x77\x2c\x90\x66\x02\xca\x07\xce\x1b\x2d\xb2\xe4\x3c\x98\x97\x4b\x68\x75\x9d\x8c\xde\x06\x28\xeb\xf1\x6e\x11\xcf\x1e\xb4\x6a\x72\x2f\xdf\x28\x25\x46\x5a\xf3\x0d\xb3\x02\xa2\x75\xbb\xad\x5a\xff\x47\x04\xc2\x62\x54\xcd\x75\x66\x27\x3a\x67\x6e\xda\x5b\xca\xf2\xfb\x2c\x87\x29\x16\x65\xd2\xf5\xca\x8d\x31\x92\x7e\x70\xae\xca\x80\x31\xb9\xe2\x1a\x28\xce\xf3\x1f\x68\x1b\x44\x4f\xb7\xb0\x8e\xc0\xd8\x35\xe3\x21\xb3\x6d\xa4\x85\x02\x72\xfa\x1c\x49\xd3\x2f\xe8\x13\xd7\xe6\xdb\x22\x5d\x7b\x15\xf1\x86\x3a\x5b\x1f\x9d\xb0\xa8\x44\xd6\x8f\x91\xaf\xac\x73\xae\x06\x2f\xed\x8e\x49\x66\x5c\x7b\x36\xb5\xfe\xd3\xf1\x8c\x53\xdf\xc0\xa9\x15\x1a\x70\xd4\x54\xd9\x00\x42\x83\x2c\x39\x9a\xa0\xd2\x9f\x5f\xb0\xb3\x8d\x06\xcf\xf7\xc6\x09\xf0\xb6\x22\xad\xdc\x7d\x61\x9d\xb5\x9b\xb0\x71\x0d\xfe\xc1\xbf\xfc\x48\xb9\xf5\x60\x06\x1d\x5b\xaa\xa0\x32\x99\xe7\xfa\x0f\xf5\x7b\xac\x85\xbc\x88\x2a\xe5\x22\xd9\x40\xe3\x4c\x9f\x23\x62\x0c\xb1\xf6\xeb\x2e\x85\x95\xb0\x11\xa6\x18\x0c\x79\x2b\xc0\x99\x51\x2e\xe5\x3e\x29\x97\x70\x46\xb5\xe6\x00\xc0\x37\x3e\xcf\xee\xea\x07\xa9\x93\x13\x8f\x79\xba\x8e\x4e\x37\x8b\xba\x22\x5b\xe7\xc4\x83\xcd\x8b\xd3\x82\xd7\xf1\xd6\xda\xca\x4a\xf7\xf8\xac\x72\x6e\x33\x03\x64\x23\x13\xea\xa5\xec\xf0\xe2\x4b\x79\xca\x38\xcf\x9c\x69\xbc\xf5\x69\x38\x60\x5f\x38\x76\xcf\x9f\x5d\xfb\xed\x9a\x75\xd3\x4e\x77\x1e\x2b\xd3\xbc\xf3\xc9\x51\xce\x21\x17\x74\xb9\x16\xe1\xf0\x02\xa9\x8c\x67\xf9\x30\xcf\x7a\x9a\x50\x89\x78\x19\xd8\xc8\xee\xe1\xbf\x59\x43\x4f\x87\x7c\x0a\x4d\x88\x13\x0b\x6c\xcf\xee\xc5\x47\x7e\x45\x73\xa7\x97\xee\x6b\xfe\x83\xb2\xc0\xce\x70\x7b\x0b\x15\x5a\x83\x11\x8e\x91\x7c\x6a\xa0\x84\xd2\x19\xe6\x0e\x5e\xdb\x44\x43\x65\x30\x3e\x82\x9e\xce\xe2\x01\x3d\x5a\x46\xcf\x96\xc1\x41\x10\x76\x83\xc6\x30\xfc\x2e\x8c\x05\xc3\xd1\x68\x50\x29\x57\x8f\xa2\xcb\x33\xbe\xc0\xf0\xad\xd7\x7d\x64\xb9\x87\x5d\xd2\x0c\x73\xeb\xff\xb8\x42\xef\x02\xb2\x3d\xd5\x95\x07\x89\xc3\xef\x88\x2a\x98\x75\xdc\x4c\x32\xbb\x4c\x2f\x14\x1b\x86\x32\xc7\x19\x27\x20\x3a\x1a\xc4\xf1\x7e\x9e\x98\x7a\x2b\xe9\x67\x43\xbd\x7d\x83\xf2\x8f\xe9\x44\xbb\x08\x15\x87\xa3\x28\x96\xbb\x36\x1e\xa8\x79\xe6\xe0\x0e\x71\xb3\xf5\xb4\x7b\xe6\xba\x5e\x6d\x3d\x2d\xab\x92\xbe\xf2\x85\x09\x69\xda\x60\xb7\x21\x35\x05\xe2\x5f\xf9\xf2\x08\x3d\x7d\x31\x5e\x23\xda\x10\xa4\xc5\x5a\xfb\x79\xca\xf2\xfa\xb7\x2b\x9d\xc9\x59\xd7\x21\x60\x82\x1c\x8f\x5d\x04\x19\x2f\x85\xce\xd4\x7d\xd8\x66\xc0\xfa\xe8\xc2\x69\xc1\xc6\x7e\xe0\x8e\x79\x46\x59\xc7\xe9\xa2\xc4\xc1\x52\xd2\xee\xe8\x4c\x3e\x9d\xd2\x53\x11\xd2\x8b\xd8\x35\xd5\xf6\xba\x92\x92\xc3\x30\xaa\x58\x3a\x86\x75\xe7\xef\x71\x64\x5c\x4e\x5d\xcd\x7a\xb7\x92\x70\xe7\x43\x3b\x5f\xde\xa9\xcd\xb6\xbf\xe0\x50\x38\x1a\x1c\xd6\x66\xce\x14\x3d\x31\xab\xf3\xad\x14\x43\x6f\xae\x06\x87\x69\x60\x3a\x4f\x9f\x92\x30\x9d\xb2\xd7\x51\x7c\x52\x37\x6d\x59\x33\x5c\xff\x79\x66\xfd\xdb\xc7\xb8\x8e\xbe\x6b\x14\xef\x8b\xf3\xa4\x02\xcc\x78\xfe\x4f\xb4\x85\x51\x81\x8f\xc5\xd9\x26\x70\xed\xa6\xf2\x8a\x27\xbb\x8a\xf5\xaa\x87\x0d\x01\x29\xa7\xca\x9c\xf2\x46\xbc\x4e\x07\x53\xfa\x21\x03\xd4\xa8\x1c\x25\x8f\xdb\x3e\x8f\xea\x58\x48\x3f\x4c\xf0\x34\x83\x0d\x46\x6f\x61\xbc\x6e\x56\x75\x99\xd8\xbf\xfd\x1a\xad\x45\xfd\x54\x83\x0e\x5c\xa9\xa6\x0e\x59\x35\x1d\x28\xc2\x53\x43\xe6\x7e\x40\x7e\xfb\xe5\x3c\x6f\x2a\x0d\xf9\xb1\x89\x6b\x62\x67\x56\x5c\x0f\x47\xa2\x63\xa1\x30\xde\x52\x50\xae\xa2\xd0\xc3\xcf\x02\xd0\xaf\xd6\xe5\xc3\xc1\x01\x62\xcc\xc0\xb4\xab\x0d\x64\xd2\x8a\x2b\xff\x6b\xa2\x6f\x45\x57\x32\x46\xd0\x73\x02\xb4\xc7\x04\x3c\xaf\x92\xb2\xcf\xd3\x3b\x99\xbf\xa0\x8b\x55\x89\xf6\x01\xcf\x57\x13\x54\x28\x7e\xc2\xce\xe2\x6e\xbc\xf8\x0d\x24\x51\x6e\xc3\xf5\x3d\xfb\x8e\xae\xe3\xbb\x95\x49\xfd\xbc\x73\x0d\x8c\xf7\x9b\x39\x91\xd7\x16\x7b\x5c\x01\x5b\xf7\x94\x7a\x0f\xb4\xba\x0f\x6e\xa1\xf5\x7c\x77\x29\xf0\xee\x76\x3b\xb3\x73\x58\x1b\x45\xe1\x07\x64\x9c\xb5\xac\x0c\xea\x8a\x48\x58\x2f\x7b\xe2\x9b\xab\xe3\x74\x35\x57\x0f\x5e\x61\xd6\x43\x92\x67\xd4\x9a\x51\x18\x48\x63\x78\xb2\x85\x52\x04\x47\xe7\x45\x5c\x89\xf4\x7e\x5d\xa0\xf0\x8e\xcd\x64\x4b\x89\x3b\xbf\xcf\x80\xdd\xcb\xbe\xb4\x9b\x3e\x92\x84\x27\xa6\x03\xe7\xf6\x02\x0d\x9f\xe2\x0e\xc9\x52\x99\x71\x3e\x42\xad\x0f\xfd\xa2\xe6\x9c\x1b\x55\x35\x32\x4b\x1f\xd3\xab\x8d\xa3\x94\x03\xfb\xcd\xb8\x51\x8f\xaa\x43\x6f\xe9\xd7\xa8\xa9\x8e\x03\x6f\xee\x93\x6a\x81\x32\x54\xc0\x5c\x68\xed\xf8\xca\xad\xf5\x2d\x0d\xce\x59\x17\x7c\x17\x66\xde\x81\x05\x2e\x1e\xbf\xbd\xd1\x9d\x3a\x47\x2f\xc2\xd2\xaa\xf1\x74\xa7\x1e\x90\x6f\xe4\x42\xe7\xc2\xec\xe6\xad\x19\xac\x6c\xf6\x82\x98\x6a\x82\xd4\x05\x80\x42\xcb\xc0\xc9\xe2\xf0\xe6\xd9\x9f\x51\xa3\xe9\x65\xc7\x54\x4d\x49\x3a\xe3\xa6\x68\x67\xbe\xa4\xcc\x7e\x4b\x36\x24\xb6\x8b\x5a\x7a\xa9\x07\x4c\x01\xca\x25\xee\x9f\xb0\x84\x7c\xaf\xc8\xc9\x40\xb9\x58\xe1\xff\x8f\x6b\xc2\x4a\x12\x32\xd9\xa5\x10\x92\x52\x9f\xcc\x19\x94\x4a\xcd\xec\xb5\xc3\x8c\x12\x91\xa5\xd8\xa4\x9a\xa4\x66\x94\xee\x1d\x59\x46\x2d\x43\xd3\x64\xd8\x4a\x10\x17\x9f\x59\xf7\x3c\x4f\x82\x2c\x72\x57\xf5\x2d\x5f\x74\xfb\xdd\x0d\x10\xa0\x80\x75\xce\x0e\x16\x6e\x2d\x83\xd8\x34\xfb\xc0\xf8\x43\x55\xa8\xb3\x27\xb6\x6c\x0e\x6c\x1f\x34\x22\x4b\x98\x2c\xba\x85\x3b\xb8\xbc\x21\xe6\x49\x22\x86\xee\xb5\xf1\xf5\x9f\x27\x98\x82\xba\x73\x77\xf8\x6d\x99\x52\xe3\xa1\x70\xe3\xc5\xd7\x78\xfe\xfd\xc4\x26\x12\xb4\xdc\xf1\x5a\x83\x76\xde\x08\x6d\x04\x32\x01\xfd\xbe\x3a\x07\x50\x6c\xb6\x08\xa0\xd1\xd7\x29\xcd\xf4\x1f\x1d\x05\x6a\xfe\x13\x00\x19\xf6\xc6\x2a\x70\x0f\xf6\x93\xd4\x8e\x2d\xfe\x27\x4e\x67\x2e\xa7\x4b\x03\x76\x43\x3d\x31\xf8\x85\x34\x91\x84\x27\x9a\x3c\x43\x60\x0f\xdf\xed\xf2\xb6\xf5\x9f\xcf\xb5\x5b\x4f\x54\x47\xa9\x1c\xae\x59\x1d\x28\x57\x4b\x39\xdb\x91\x6d\x63\xfe\x07\xd6\xc6\xa9\xc8\x90\x49\x72\x9e\xe8\x88\x6e\xda\xb9\xdc\x62\xc1\x98\xb2\x04\x95\x05\x82\x93\xa7\x35\xca\x75\xc6\xa7\xd7\x9e\x3d\xf3\x28\x3a\x10\x97\x67\xb4\xea\x3c\xb1\xb0\xc8\x4f\xff\xc4\x9d\x90\xdb\x5b\xe2\xa2\xdb\x84\x18\xa6\x50\x42\xcc\x88\xe7\x6f\xca\x8e\xef\x54\x67\x15\x83\xd1\x16\xa8\x37\x85\xc1\xdb\x87\x3f\x08\x94\x37\xa0\xde\x6c\xbd\xc5\x4d\x3d\x32\xed\x0d\x4f\x86\xe8\x7b\xb4\xe8\x67\xc9\xf5\xf9\x9e\x7a\x4e\x62\x8d\x60\xab\x63\x4f\x6c\x00\xce\x40\xbc\x9e\xb9\x57\x51\xb1\x0d\x68\xba\x60\xd7\x88\x63\xa4\x65\xe0\xca\xad\xc5\x0b\x1e\xc6\xae\x12\x99\xbe\x44\x16\xbf\x50\x48\x76\xf8\x05\xfa\x44\x1a\x5f\x3a\x6b\xa6\xdb\x80\x8d\xfe\x27\x80\x85\x6f\x89\x2f\x31\x59\x9f\x21\xca\xf2\xe5\x9a\xb5\x67\x33\x9d\x67\xf0\xf1\x1e\xbd\x54\xd0\x6b\xb4\xec\xeb\x7e\x74\x31\x90\x75\x0d\x60\x1f\x03\x42\xa1\xc2\xe2\x6d\xb2\x35\xa7\x01\x19\xa4\x56\x69\xd3\x9e\xf1\x57\xc8\xc1\xd0\x52\x4f\x38\xc2\x19\xb6\x09\x2c\xed\x1c\x71\x4e\x8a\xec\xb7\x7f\x7f\xd2\x21\x62\x63\xc8\x51\xfb\xb6\x85\x8b\x2d\x4e\x17\x58\x03\x10\x24\x40\x06\xf6\xdd\x1a\xb3\xa6\xa5\x4c\x14\xce\xe6\x34\xbe\x9f\x0b\xca\x99\x3c\x61\x5c\x97\x69\x64\xbb\x30\xaa\x45\x93\x8a\x62\x82\xe2\xd3\xc4\x18\xf4\x7a\x6c\x5d\x92\xc4\x69\xcf\x2f\x1a\xb6\x0b\x5c\xe0\xf9\xfd\xee\xdc\xbc\x96\x25\x85\x42\x71\xa0\x46\x72\x24\x52\x54\xcf\x4a\xbc\x91\x2a\x58\x4b\xea\x59\x89\x5b\xae\x9f\xda\xf9\x87\x87\x37\x1f\x55\xdd\x3a\x23\x93\x97\x47\xdd\x47\x4f\xd7\x7e\x3d\xe1\x4c\x40\x3c\xfc\x2d\x41\x0e\x5f\xd9\xb6\xd6\xff\x71\x19\xe8\xc5\x26\x96\x7f\x25\xab\x34\x9a\xf6\x3f\xdf\xb9\x83\x2f\x2c\xe9\x01\xdf\x2a\x91\xc8\xaa\xe5\x34\x90\xea\xf4\x64\x5c\x0a\x44\xfa\xee\xb4\x4e\x77\x6e\xcf\x23\xa6\xd2\xfc\x0a\xd6\x6f\x3c\xe4\xb5\xed\x8e\x7f\x87\xbe\xd0\x78\x7f\xb5\xd8\x5d\x9a\x96\xbb\x36\xd4\xba\x71\xbc\x0a\xed\x20\x33\x77\x8f\xcf\x6a\x84\x23\x71\x20\x59\x1c\x2b\xc7\xe5\x81\x72\x85\x2f\x1b\xe8\xf9\x14\x5e\x2a\x2c\xa8\x7b\x05\x2a\xc6\x52\xf7\xe5\x6c\xf2\xad\xf6\x9b\x71\xad\x50\x0d\x8a\x20\x10\xc5\xb9\x5d\xcd\x32\x68\xc5\xa5\x00\x1f\x10\xec\x7a\xcb\xd2\xd4\xc9\x3e\x3c\x39\x05\x83\x80\xca\x6f\x59\x57\x7a\x7e\x37\x18\xb7\xa4\x08\x52\x55\x7f\x19\x14\x70\x7e\x4f\x8f\x7a\x30\x7f\xa5\x17\x7e\x70\xf4\x04\xf6\x25\x0a\xea\xd4\x03\x61\x90\x3d\x8c\xc3\x75\x72\x9f\x93\xbe\xed\x2e\x31\x46\x8a\x9a\xde\xcb\x3c\x3f\xf4\x4e\x82\xff\x8b\xf9\x66\xd9\x7d\x18\x69\xc7\x50\x59\xdc\x6c\xdd\xf7\x0c\x19\xaf\xd0\xed\xc7\x51\xb9\x10\xdc\x22\xe2\x0a\xd5\xa4\xa7\xb9\x76\xcd\xce\x89\x49\x29\x4a\xe2\xdf\x01\xa8\x8d\x8e\xfe\x72\xa0\xfd\xf0\xee\x45\xed\x75\xae\x66\xe2\xf9\x8e\x11\xc5\xd1\x76\xd8\x58\x78\xd0\xbd\xf4\x77\xf9\x82\x11\x7b\x74\xb4\x1e\xfd\x45\x8d\xa0\x6f\xa8\xdc\x28\x0f\x55\xa3\x7a\xe8\xbd\x0b\x55\x76\xd6\x4a\xb9\x08\x52\x08\xd2\x38\xad\x3a\x5a\x97\x9f\x90\xfd\x49\x0a\xcc\x54\x9c\xf2\x20\x03\x1c\x46\x11\x81\x1d\xf3\x31\xfd\xa3\x7e\x2a\x18\xfd\xb0\xb5\x8b\x8d\xa0\x10\xf0\xe7\x40\x45\x22\xa2\xdb\xed\x28\x5f\xae\x96\x1b\xb9\x0f\xe0\x7f\x20\x8f\x96\xff\x26\xb6\x1c\x13\x73\x85\xc2\x37\xe0\x03\x48\x80\x01\x84\x82\x97\x00\x31\xbd\x29\x35\x60\xe4\x49\x87\x2c\xa6\x7f\x3d\xab\x5e\x71\xc8\x73\x52\xb9\xb8\xe4\x37\x58\xbc\x4e\x8b\x4a\x8e\x35\x37\x96\x2a\xd6\x0f\x8c\xae\x11\xd6\x8f\x15\x2a\x26\xe8\x4f\x00\x82\xfa\xe6\x95\x6f\x5f\x86\xe3\xe0\x95\xcc\xeb\x38\x9f\x17\xfc\x39\x37\x72\x49\x0e\xf3\xcf\xde\xcb\x55\x43\xb4\x9a\x37\x1b\xc3\xda\xab\x40\x6c\x06\x38\xf1\x21\x96\xb9\xd8\x4b\xf3\x3a\xad\xff\x23\x09\x16\x65\x1d\xdc\x2a\xa2\x8a\x5d\xdf\xc4\x1c\xf1\xd7\x10\xd8\x01\x6c\xfd\x82\xbb\xf9\x71\xd7\x07\x03\x95\x66\xb8\xeb\x2d\x46\xb7\xde\xf9\x0a\x68\xc6\x9a\xaa\xf0\x49\x52\xad\xaf\x58\x89\xaa\x70\x78\xb0\xe5\x2f\x67\x07\x06\xf0\xac\xab\x69\xf5\x79\x77\xf1\x2d\x0e\x8c\x8d\x86\x89\x9e\xa5\xfb\xc8\xbd\x74\xdf\x7b\x1f\x1c\x21\x8f\xbb\xa8\x1e\xe0\x8d\x56\x45\x45\x5d\xc0\xb7\x77\x7d\x06\xa4\x72\x43\xa1\x3a\xea\x61\x9e\xf5\x08\x3b\xed\x21\x1e\x3a\xba\xb8\xf7\xe2\x78\xeb\x92\x12\x4b\x63\x3e\xd5\xdd\x4f\xa8\xef\x28\x2c\x65\x0f\xf6\x44\xf1\x03\xf0\x01\xb1\xf5\x9a\xc8\x16\x78\x3d\x3f\x07\x74\xda\x49\x04\xf9\x70\x18\x9a\xc7\xa0\x8a\x51\x6d\x2c\x8f\xf7\x5b\x39\x2d\x16\x5b\x1f\xb5\x2c\xb6\x3f\xaa\x95\xc3\xd2\x5f\xec\x22\x76\x51\x3c\x4c\xd6\xda\xff\x9e\xb9\xb4\x77\x3f\xe2\x78\x7f\xa3\x5e\x81\xbf\xc8\xfc\x5a\x1b\x83\xea\xc0\x91\x8e\xe2\x1b\x10\xfc\x99\x33\x9e\xdf\x78\x62\xe9\x97\x6e\x8b\x6e\xd7\x65\xba\x4a\x97\x2f\xb0\xf9\x3b\x67\xf0\xf6\x8e\xd6\x5c\x47\xb5\xd0\x24\x32\x4d\x54\xf2\x88\xf6\x52\x4f\x0b\x5a\x22\x48\x92\x65\xf4\xd2\x4d\xc9\x22\x86\xdc\x7c\x76\x62\xfd\xc4\x7c\x86\x38\xdf\xac\x8e\x92\xe3\xe4\x27\xfc\xef\xce\x1d\xfc\xf3\x53\xfe\xd1\xc4\xe7\x8b\x75\x28\xc4\x7f\xd8\x37\x20\xd7\x4f\x7f\x52\xa4\xb0\xbf\xc2\xff\x68\x0b\x3b\xc7\x82\xb2\x57\x7c\xd9\x44\x74\x0d\x61\xcc\x26\x9a\x24\x72\x6a\xbe\x98\x56\xd6\x3e\x85\x09\xe4\xb3\xb6\x47\x4c\xca\x33\x52\x67\x1f\x69\x46\x6a\xbd\xa0\xa3\x83\xa7\x18\x8d\x80\x22\x2d\x18\xd7\xaf\x7e\x55\x38\x84\xd6\x7c\x56\x68\x34\xeb\xf5\xb5\xad\xf8\xd7\x9a\xe8\x26\x8d\x2e\x25\xca\x89\xc9\x80\x05\x3c\xaf\x04\x16\x6c\xbc\xa2\xec\xce\x7d\x4f\x8f\x4a\x13\x13\xc0\x87\x04\x73\xda\x75\x59\x4e\x49\x98\x33\xc5\x46\x49\xb0\x28\xbc\x40\xc0\x02\x1d\x19\x0b\xfd\xea\x83\x81\x42\xf1\x68\x80\xa7\x4c\xfd\x2f\x88\xf3\x9d\x3b\xf4\xe9\x61\x9f\x15\x8d\x7a\x88\xac\xf2\xb8\xba\x06\x11\xdf\x18\x8c\x58\xd4\x28\x60\xa8\x33\xab\xf6\xff\x15\x20\xbf\x9e\x78\xa4\x6a\x85\xb1\x0f\x8c\x5a\x48\x1d\x2f\x84\x19\x86\x3d\xcb\x0c\x77\x56\x29\x0c\x84\x54\x7a\x9f\xa4\x38\x0c\xbf\x81\x87\x65\x03\x16\x3b\x56\x8c\x7c\x72\xd1\x7a\xbf\xfd\x04\x37\xcb\xc8\x48\x19\x23\xa8\x21\x92\x6f\xa8\xe7\x20\xf5\x90\x50\x20\x5e\x2f\xf2\x10\x1b\xc8\x0f\x2f\xe0\xeb\x85\x51\xb4\x5b\xe8\x27\xcc\xf2\x19\xb0\x49\x11\xd2\x3a\x8f\xef\x74\x1f\xfe\x24\x1f\xe9\x95\xa7\xdf\x00\x4d\xbd\xa4\x0f\x4b\x25\xd8\x8e\x23\x05\xe6\x1f\xac\xae\xc9\x75\xd2\x13\x7a\xdc\xa1\x87\xd8\x97\x3e\x54\x55\x2a\x61\xdb\xec\x42\x64\x6e\x14\xc5\xcd\xd4\x1a\x44\x93\x92\xff\x11\x8f\x41\x74\x95\xfe\xed\xda\xc6\xf8\x09\xf3\x79\x04\xd8\x12\xc7\x50\xbc\x45\x44\xb4\x42\xc3\x7f\x6a\x2a\x94\x28\xa2\xdf\xdc\x9d\xb5\x95\x4b\xe6\x23\xbf\xdd\xed\xcc\xde\x26\x27\x27\xf5\x15\xf6\x4a\x68\x5d\x7e\x5b\xef\x5c\x31\xc2\xa2\xfe\xce\x76\x72\xbb\xac\x2f\xb9\xa8\x56\x61\x15\xa5\xbe\x01\xf4\x13\x50\xc5\x8a\x0d\x58\x95\x8a\xb0\x96\xf5\xbc\x0f\xc7\xbc\xa2\x99\xf8\xde\xa9\xae\x69\x26\x8b\x64\xdc\xfe\xb7\xa8\x9e\x39\x9e\xad\xda\x65\x0d\x2f\xaa\x81\x7e\x6f\x35\x16\xdd\x0d\x36\xc4\x93\xb5\xa7\x0f\x89\x0b\x6c\x35\x6a\x60\x7f\x31\x3e\xa9\xb3\x80\x28\x3e\x87\x8f\x0c\xb4\xbc\xbe\x15\x1c\x10\x61\x30\xa6\x25\xd0\xc0\xf4\x89\xce\x6f\xe7\x89\x78\x12\xf3\x4c\x56\xca\x9c\x1a\x5a\xa3\x93\xb5\x5d\x04\x32\xef\xcd\x31\xa1\x58\x3c\xd9\x80\x11\x8a\xb0\x98\x6e\x0a\xe5\x70\xa5\x3c\xc8\xcf\xc5\x50\x3f\x37\x97\x7a\x20\x57\x52\xd8\x43\xa7\xc7\x04\x9d\x25\xba\xa6\x85\x69\x14\x06\x72\xbb\x4b\x81\xbd\x2a\x06\x10\xa2\xdd\xd4\x30\x28\xd7\x35\x80\x1d\xe0\x6b\x27\xaf\xab\xd4\x62\x10\x8c\xf3\xac\x13\xe4\x58\x07\x51\x46\x54\xbd\x0f\x66\xd2\xe4\x25\x17\xd2\x76\x49\xdd\xaf\x9e\xd2\x79\x2f\xa2\xf1\x96\x50\xa0\xe9\xa5\x26\xfb\x86\xf2\x20\x50\x80\x28\xfc\x53\xa2\xc1\x50\x19\x1a\x58\xbd\x1f\x8a\x8c\x62\xf4\xb6\xc0\xf3\x9b\xb1\x18\x8f\x6c\xf7\x36\x3d\x12\x4e\x96\xf6\x61\xac\x04\x39\x68\x6c\x2d\xda\xe3\x46\x4e\x8b\x58\xc2\xb9\x82\x5c\x36\x16\x35\x6d\xf7\x83\xc5\xce\xe9\x1f\x01\xef\x40\xbd\x08\xc5\x3c\x7d\xd4\x17\xb4\x29\xe0\x98\xc6\x4a\xf9\x81\x31\x1f\xda\x8c\x2b\x21\xf4\x02\x32\x12\x56\xd1\x70\x89\x71\x5f\xfc\x21\xad\xad\x7e\x87\x51\xbd\xf0\xc8\x71\x1b\xc6\xf8\x58\x70\xed\x29\xcc\xf6\xd7\xee\xd5\x17\xf4\x46\x2e\x59\xa1\x0f\xcf\x7f\x74\x8e\xbf\x36\x4e\x5e\x47\x29\x35\x70\x0b\x71\x8d\xf6\xc4\x84\x62\xfe\x29\xf5\xea\x21\x68\xd7\x0d\xf6\xf3\x01\x6d\x19\x7f\x54\xc6\x02\xfe\x5d\x4a\xef\x1b\x0e\x62\xd5\xe0\x43\xfc\x3b\xa8\x6f\xa7\xd9\x48\x14\x37\xf0\xf0\xc1\x2b\xca\x83\xf0\x77\x20\x3f\x7a\xf5\xa2\xea\x73\x37\xc9\x06\xb8\xc3\x69\x91\x72\xfc\x57\xb0\xfb\xb3\x57\x3f\x8f\x31\x64\x93\xb9\x00\xfe\xec\xb5\xcf\x41\x1c\xde\xfd\xd9\xeb\x9f\xc7\x7c\xdd\xeb\xb7\xcd\x0f\x16\x8e\x86\x09\x00\xd4\x4e\x57\xae\xd5\xc3\x63\xe5\xa8\x19\xe7\xf0\xd2\xd6\x44\x30\xd6\xec\xeb\x2b\xc0\xf4\x83\x5b\xc9\x12\x66\x41\x64\x68\xfc\x08\xfe\x74\x39\x4f\x49\x4a\xf6\xd3\x0f\x03\xad\x39\x92\x97\xa9\xc6\xc8\x98\xd4\xdf\xa6\xb1\xc2\x43\xbe\xd0\xc8\x7d\xa1\x7f\xe1\x9c\xcb\x25\x9c\x31\x4c\x41\x85\x4b\xfd\x17\xfe\xf5\x16\x4d\x07\xe7\xff\x85\xe9\x27\xd2\x57\xc6\x47\x86\xc3\x7a\x88\xf2\x66\x95\x5d\x4c\xe0\x5b\x30\x16\x36\xfa\x3c\x4e\xc9\xa1\x64\x69\xb8\x5e\x89\x0c\xc2\xae\xc1\x51\xb6\xf8\xbb\xae\x5d\x0f\x09\x23\x5c\xed\x63\xfa\xe1\x97\xb9\xa0\xb8\x4e\x2a\x2c\x39\x06\x14\x8d\xec\xf7\x8b\x19\xc5\x84\x22\xfa\xf3\x8f\xe2\x87\xc7\x23\x20\xd4\x8f\x3f\x0a\x84\xc5\x2d\x50\x1b\x06\x05\xcc\x20\x60\xba\x8a\xe6\x48\x32\x2a\x51\x2d\xf6\xfb\x29\x04\x5c\xf7\x8f\xf6\x00\xea\x42\x83\x62\x32\xe2\x3f\xfa\x2b\x59\x3f\x39\x54\xa8\x21\x46\xb2\x2d\x7f\x84\xff\xd7\xdf\x54\xb4\x07\xd0\xe3\x40\x2d\x07\xde\x4f\xf1\x0c\x9a\x35\x0a\xf4\x85\x1f\xdc\x9a\xe5\x6a\x5e\x3d\x2f\x25\x4d\x0f\x74\x62\xf4\x57\xe7\xc9\x00\xe5\x60\xec\x6f\x8e\x06\x16\xbc\x5d\x41\xe3\xda\x58\x30\x8c\xf1\x1f\x0b\x3a\xb2\xe9\xbf\xba\xbe\x19\x56\xf8\x04\x59\x48\x67\x93\x86\xa5\x72\x23\xf7\x2e\xfc\xcf\x20\x94\xdd\x50\xf7\xd3\x3f\x66\x70\xd0\x49\xae\x1f\xfe\xa7\xbf\xf0\x99\xac\x02\xf4\x1a\x41\xc2\xab\x50\x8c\x2a\x51\xdd\x16\x56\x97\x36\x4e\xff\x98\xa8\x83\xd7\x09\x28\x22\x24\x04\x00\xae\x60\x68\x9a\x36\x6c\xf7\xda\xc2\xc6\xfc\x0f\xdd\xc7\xcf\x92\x27\x16\xd7\xa7\x59\xad\xff\x72\x6f\xf3\xea\x49\xaf\x44\xdc\xbe\xd5\x15\x84\x53\x26\x4f\xa5\xed\xb1\x2a\x37\xc9\x24\x0c\xbe\x77\xb3\x6a\xa6\x41\xf4\x6f\xd6\x8c\x24\xb5\xc5\xdd\x59\xe2\x48\x46\xc5\x66\xf2\x44\xe7\xe6\xe3\xed\xdf\x91\xd9\x87\xa6\x37\x1c\x73\x59\xa6\x27\xb0\xc5\x75\x98\x98\x9e\x48\x19\xc5\x3d\x57\x2b\x00\x85\xb2\xeb\x65\x2c\x8f\xcb\xf1\x06\x6c\xf9\xdb\x8d\xd5\xc9\x8c\x6a\x8c\x84\xdf\x57\xbf\x69\xb7\x6e\x7b\xa6\x57\xdd\x54\x02\x1e\xa6\x29\xbb\x99\xa6\x03\xbb\x2b\x8c\x35\x9c\xc3\xff\x25\xc6\xc0\xff\xe6\xe4\x5f\x55\x2c\x07\xa2\x68\xf8\x7f\xa5\x5f\x01\xff\x52\x55\x80\x8b\xd7\xc3\xb8\x59\x69\xe0\xdb\x81\x73\xdd\xeb\xd7\xd0\xc1\x01\x94\x59\x9c\xc4\xb4\x1b\x2b\xc1\x79\x33\x2b\x8d\x29\x38\x36\xdb\xb2\x78\x04\xd6\x51\xc0\x81\xb3\x79\x67\x62\x59\x30\x10\x16\x0b\xcd\x18\x4d\x10\xc2\xde\x87\x31\x54\xb7\x32\x1a\x50\xd8\xc4\xf0\x58\x88\x91\x00\x19\x3c\x3e\xb6\xb2\xc3\xa2\xe7\xbe\xd0\xd0\x0b\xc2\x1d\x0a\x01\x56\x08\xa4\x02\xf4\xd0\x18\x45\xaf\xc5\x06\xc0\x0b\x83\xc6\x68\x24\x06\xae\xf8\x0d\xfb\x44\x07\x56\xb8\x8f\x7a\xd8\x87\xc7\x7a\x49\xd8\xe2\xbf\xd0\x0f\x61\x8e\x82\x5e\xd6\x4d\xf6\xd3\x3f\xc1\x61\xec\xe9\x63\xee\x49\xd5\x20\x06\xc1\x4b\x8f\x3e\x96\x74\x21\x34\x12\x42\x97\x24\x09\x94\x84\x27\xc7\xcc\xa2\xdf\xc4\x60\x14\x8a\x07\xd3\xdf\xc0\xba\xa0\x81\xfa\xfe\xba\xfe\xae\xc0\x13\x28\x39\xe7\xb9\x17\xfe\xf2\x3f\x83\x0e\xad\xff\x6f\x14\x4e\x64\x0a\x85\x81\xbc\xcd\x7a\xe1\x24\x34\x3f\xdc\x4a\x6c\xae\xd8\xcf\xff\xda\x45\x74\x87\x81\x04\x16\xaa\x77\x03\x25\x55\x2c\xc7\x32\x90\x08\x0d\x5d\xc5\x9b\xe0\xcf\x12\x53\xdd\x5e\x42\x18\x71\x2d\xac\xe3\xbd\x81\x20\x12\xea\xe9\x08\x91\x36\x56\x72\x07\xe9\x1f\x9b\x58\xa4\xe0\x48\x02\xa8\x76\x67\x15\xf4\x79\xde\xac\x0c\x01\xa3\x79\xc3\x5e\x21\x8f\x84\x03\xf0\x37\x46\x16\x4f\x8e\x4f\x83\xe2\x9a\x41\xa9\x49\xcf\x1f\x14\xf3\xc1\x46\x68\xd4\xb4\x1d\x73\xf5\xc0\xcb\x31\x70\x8b\xb0\x78\x14\xdf\x40\x61\x10\x73\xbc\x79\xae\x94\x8b\x20\x9a\xca\x57\x24\x6d\x7a\x45\x87\x67\x5a\xad\x1e\x0d\xd5\x29\x26\x86\x8e\x6c\x0f\x27\x6a\x3c\x4c\x31\xe8\xb1\xc2\x60\x38\x1a\x8c\x44\x24\xdc\xe9\x2e\xe0\x7c\xcb\xd3\x25\x14\xcd\x94\x69\x46\xc2\x89\x6b\xbc\x62\xf9\x5e\x0f\xb9\x41\x94\xb2\x18\x36\x54\xba\xb7\x49\x07\xfc\x52\xa3\x37\x68\xb5\xef\x1b\xb4\x7b\x71\x9b\xab\x89\xc7\x7a\xc7\x2a\xbb\x52\x76\x8f\x2a\x78\x34\xe3\xa2\xc9\xf6\x4c\x34\xd3\xe2\x53\x14\x5c\x83\xa8\x82\x0b\x11\x47\x15\x0a\x18\xed\x52\x8b\xcb\x47\x88\x72\x52\xf7\x33\xd1\x6a\xb3\x2a\xfb\x8e\x1a\x91\xe1\x36\xce\x7d\x91\x9c\xac\xd0\x70\xd6\x44\x6d\x36\x45\xb5\xaa\x2e\x25\xbd\xfc\x2f\xbb\x4b\xaf\xf0\xde\x8d\x31\x7e\x7c\xe2\x86\x10\x3f\x32\x2e\x6d\x2f\x6f\x9c\x31\x80\x1e\x2d\x94\x29\xf4\x3b\x0a\x5a\x58\x09\xfe\xee\xfb\x82\x5c\xc0\xb4\x89\xd4\x35\xc5\x65\x58\x04\xac\xea\xd9\x06\x0f\xab\x52\x0f\xa3\x87\x5f\xab\x94\xdb\xcd\x01\x08\x2f\x9e\x6e\xb7\x2e\x59\xcf\x8e\xec\x21\x46\x79\xd8\x41\x79\xb6\x3c\x52\xcc\x1d\x65\x5c\xf0\x06\x96\xa3\xf7\x63\xb3\xc9\x5e\x72\x02\x9e\x82\x27\x3b\x73\x07\x41\x60\x00\x8f\x18\xa0\x1a\x61\xe1\xa6\x1c\x49\x45\x32\xa2\x48\xcc\x1b\x91\x25\xdc\x0e\x9c\x03\xe0\xa0\x2a\x70\xea\xb0\x8c\x48\xc1\x5d\x9c\xef\xe2\xcd\x1f\x17\xeb\xe5\x1a\xb3\x52\xbb\x50\xcd\xf9\x00\xb0\x8f\x03\x08\xfc\x65\x15\x95\xfb\x15\x6f\x8a\x61\x01\x86\x8f\xff\x77\xbe\xeb\x18\x9c\x02\x28\xcf\x04\x42\xf0\x28\xe2\x2e\xff\x46\x4a\x91\xaa\x7b\x82\x91\x26\x1d\x91\xc1\x4b\x63\x00\x6d\xef\xc8\xc8\xde\x52\xe9\xa5\xb4\xf9\x6a\x01\x4a\x4f\x98\xef\x61\x35\xeb\x13\xeb\x86\xcf\x46\x2d\x40\x5a\xf0\xce\x40\x1a\x96\x5b\xcb\xf3\x09\x4a\x05\x21\x5e\x10\x07\x25\x83\x31\xa6\x6d\xb3\x64\x31\x1e\x0d\x11\x30\xc3\x60\x34\xc2\x7d\x38\xc0\x8c\x04\x3d\x61\xbd\x69\xb8\x42\xbe\x55\x22\x42\xf0\x41\xfa\xa7\xf7\xd8\xe4\x92\x8f\xa5\x3b\x64\xeb\x23\x19\xd8\x40\xe5\xa1\x17\x2e\xb4\x40\x6d\xd0\x69\x9e\x80\xa4\xd4\x4b\xbe\x03\x31\x3d\xdb\x4f\x40\xf0\xe4\xb7\x19\x03\xa6\x7f\xa0\x52\x79\x19\xc2\xf4\xdc\xe3\x09\x48\x5a\xdf\xc9\xa5\xdf\xea\x29\x48\x4a\x0e\x1d\xf5\xa1\x8f\x69\x3a\xf6\x43\xcc\x5b\x35\xac\x98\x9c\xa8\x72\xe0\x65\xc7\x7d\xba\x06\x7d\xe0\xbe\xae\xd4\x0d\x86\xa3\xe8\x68\x9c\xfb\x34\x1c\xa0\x3f\xac\x82\x21\x4c\x8a\x81\x65\x94\xe3\x81\x5d\x66\x24\x9e\x96\xae\x03\x92\x67\xb9\x68\x12\xf6\x74\x6e\x3c\xeb\x5e\x7b\x90\x18\x75\x09\x97\xbc\x9e\xff\x1b\xda\x51\x3b\x67\x1f\x6f\x5e\x7e\xd6\xb9\xf6\xa8\xf3\xd4\x06\x44\x8f\x43\x25\xc4\xae\x79\x1f\xaa\x8b\xe5\xdd\x9b\x87\x18\xd4\x72\xe4\x9d\x9f\x99\x3f\xbf\xef\x42\xde\xbf\x9d\x17\x98\x69\x2f\x2f\xf1\x55\xa6\x39\x3b\xfa\x2c\xe0\x0d\x10\xad\xe3\x41\xcf\x21\x0c\x3d\x0d\x56\xbe\x4f\xa9\xa5\xd4\xb8\xc4\x9d\xa3\x65\xbc\xd4\xb1\xa3\x4c\xb2\x09\x8c\x2b\xf9\x83\xbe\x6a\xe7\x30\x17\xee\xe3\x7e\x7c\xac\xab\xa2\x13\x2c\xaa\x08\x0b\xce\xdb\x0f\x35\x14\x4a\x05\x45\x21\x48\x50\x9c\x8b\xd9\x05\xc5\xc9\x45\x65\x4d\x84\x5f\x7c\xc9\xa3\x07\xf7\x55\x44\x72\x12\xce\x30\x53\x7a\x56\x0f\xa6\x53\x2f\x8e\x8d\x93\xa2\x57\x3f\x0b\x65\x9e\xfe\xdb\x39\x31\x89\x5e\x72\x53\x2b\x14\xa3\xc0\x98\xef\xd7\xbf\x7f\xd6\x59\x42\x73\x6e\xef\xa8\x91\x89\x85\xc2\xf4\x00\xb0\x05\xf3\xaf\xe6\xf6\x06\x28\x96\x10\x85\xb0\xd1\x8c\xb6\x66\x50\x1e\x24\x57\x35\x42\x25\xc9\x21\xc0\x1c\x4a\xe5\x63\xe5\x52\xb3\x50\xa1\xf8\xeb\x69\x54\xa2\xc1\xbe\x66\x83\x05\x7e\x41\xee\x21\x99\xa0\xab\x81\x9d\x59\x8c\xc5\x13\x9d\xaf\x09\x19\x08\x89\xd1\x21\xb7\x88\x53\x3b\x46\x1e\x26\xb6\x16\x11\xef\x28\x52\x4c\xa0\x23\x06\x38\x7c\x8e\x99\x18\xba\x6c\xf2\xc1\xad\xe5\xaf\x37\x92\xeb\x63\x63\x8a\xf6\x94\x11\xd6\x94\x8b\xe2\xfe\xb7\x0f\x1d\xfa\xe8\x88\xf1\x09\x85\x53\xa5\x59\x2d\xc1\xc0\xfb\xb2\xc1\xbd\x96\x04\x47\xc8\xa2\x9b\xdf\x2a\x1b\xb3\x4b\x8a\x81\x93\x56\x5b\x97\x3c\x52\x4a\xa7\x30\x1b\x76\x0f\x4c\xae\x58\x69\x96\x28\xad\x15\xb0\x2e\x54\x43\xf6\x08\xf7\xde\xa3\xad\xb7\x84\x57\x5e\x02\x3e\x8d\x0c\xe3\x8c\x5c\xac\x7a\x43\x25\x8f\x19\x9c\xfe\x07\x89\x9e\x03\x12\xf7\xf1\xf1\x3f\xe7\x2f\xc0\xaa\xb1\xf6\x6c\x42\x61\x76\x04\x45\xcf\x52\x08\xe2\x57\x09\x6d\xba\x85\x41\x3e\xa1\xf9\xac\xd8\xaa\xd3\xd7\xb2\x3b\x65\xaf\xc8\xb4\x5e\xf9\x6c\x83\xa9\xf2\x6b\x73\x92\x81\x1b\xe5\x91\x5e\x8b\x41\x9d\xbd\xce\x9d\xd9\x27\xdd\xd1\x30\xac\x59\x3d\xb8\x83\x37\x4e\x11\xcc\x64\x8d\x47\x6a\xca\x12\x91\x52\x4a\x88\x0a\x80\xec\x48\x2f\xca\x62\xf5\x96\xf1\xc9\xcb\xed\xe3\x1e\x81\x3d\x9f\x38\x27\x77\x08\xdb\x5e\x53\xd9\xa0\x55\x7d\xa4\x70\x14\x44\x73\xc5\xf4\x39\x6c\x4b\x1a\x34\x7e\x76\x90\xf0\xbf\xd3\xbe\x53\xc0\xdc\x6d\x93\x99\x8a\xff\xd2\x63\xa0\xae\x0f\x75\xd2\x77\x5a\x57\xc4\x37\x4d\x36\xe9\x5a\xae\x02\x14\x89\x9b\xcd\x9a\x7c\xa9\xac\xdf\xcf\x65\x35\x4e\x3e\x49\xf3\x81\xf4\x7a\x57\xa9\xc1\x32\xcd\xa5\x43\x4e\x02\xcc\x36\x20\x1a\x9a\xc0\x18\x54\x65\x8a\x14\x94\xe7\xc8\xcc\x7e\xe6\x27\x1d\x27\x08\x03\xd4\x9c\xbf\x45\xe7\xab\x04\x53\x4a\xf4\x28\x2e\xe0\x6a\x22\x97\x7b\x3d\xbc\x70\x86\x81\xe8\x1a\x65\x41\x49\x09\x4c\x41\x1a\x5a\x49\x6c\xe2\xa3\x4c\xc9\x55\x7c\xb6\x72\x08\xa9\xf9\xf5\xd3\xbf\xb2\xf4\xa2\xdc\xa9\xc5\xd3\x7d\xfd\xf2\x33\x7c\x8a\x42\x8f\x08\xbc\x38\x5b\x9d\xdb\x17\x31\x54\x8f\x93\x6c\xc6\x64\xb1\x51\xde\x9c\x73\x56\xb8\x6d\x1b\xf2\x0c\x43\x76\xdf\xf0\x7d\x47\x90\x41\x87\x9d\xf1\xfa\xfa\xa4\x5e\xe1\x80\xcd\x87\x3f\xea\x3f\xe2\x9b\x55\x5b\x33\x14\xfc\xd9\x49\xaa\xb1\x71\xff\xc9\xfa\x4f\x8f\x54\xf8\xd5\x5b\x12\x14\xa2\xb5\x94\x92\x35\xd0\x72\x88\x53\xa8\x31\x7e\x67\x68\x2b\xcc\x7a\x69\x6a\xa1\x57\x96\xc0\x18\xd6\x45\xb4\x17\x80\x3d\x6a\x26\x35\x01\xa9\xd1\x53\x0f\xa0\x93\x02\x8a\x31\xc7\x21\x1e\x3c\x81\x78\x32\xf5\x52\x05\xb2\x87\xa0\x36\x82\x22\xa0\xad\xd4\x01\x1f\x52\x9f\x32\xba\x68\x4b\x4b\x4a\x8d\xb8\x86\x52\x06\xc6\x8c\xa5\x3f\x52\xea\xb0\xa2\x18\xe7\xde\xe7\x7f\x53\x6a\xd4\x38\x5e\x6a\x4e\xe2\xa6\xa6\xd4\x18\x88\x4a\x63\xb9\x77\xe0\x7f\x29\x5a\x83\xa4\x71\xf4\x54\x07\x0c\xd0\x89\xdf\x36\x4e\x2d\xac\xfd\x76\xde\x0e\x53\xa5\xf2\x0f\xa5\x85\xa9\x52\xd1\x34\xad\x67\x84\x4b\x9e\x9b\x39\x6f\x6f\x11\xf8\x90\x40\xed\x9c\x1f\x17\xec\x37\x8f\xd6\x58\x96\xec\xb0\x1c\xf2\x34\x06\x3d\xd6\xf9\x2d\x40\xef\x47\x73\xfe\x84\xe9\x12\x49\xc4\x57\x4e\x51\x63\xfa\x99\xf1\xa2\x8a\xdb\x81\x44\xec\xb8\xd7\x34\xea\x27\x72\x9d\xe1\xbe\x1a\x46\xc6\x7b\xeb\xde\xfa\xed\x67\x7e\xe4\x1e\xaf\x1a\x60\xe2\xfe\xb3\xf5\xcb\xbf\x59\xd1\x57\x16\xad\x1c\x7c\x6a\x48\x69\xf9\x9a\xd2\xa7\x65\xc2\xf9\x08\xce\xd4\x13\xe7\x44\xcd\x8c\xf7\xce\xe4\x64\x99\xd4\x1c\xe5\x98\x97\xc6\x39\x7b\x68\x09\x9d\xce\xe2\xbb\xf2\x2a\x12\x93\x45\xdc\xe0\x18\xe7\xa8\xb2\x78\xfc\x8b\xb2\xe9\x6d\x3c\x59\xdd\x58\x78\x68\xfc\x6e\x5c\x56\x2b\x2c\x0b\x03\xdb\x93\x09\x1f\x59\x9d\x58\xf3\x13\x1c\x4f\xce\x0b\x37\xfe\x81\xf7\x88\x95\x72\xa0\x5c\x78\x44\xa1\x5e\xa6\xb5\x23\xa3\x0a\x82\x20\x29\xbb\x5e\xfe\xff\xfb\x3f\x3a\xa4\xa3\xc0\xed\x91\xae\xbf\xda\x3b\x3a\x3a\xba\x17\xd9\xcd\xde\x66\xbd\x12\x56\xf1\x63\x49\xc6\xb2\x07\x13\xac\xbd\xa5\x63\x6f\xbc\xb9\x0f\x7e\xbd\x42\x67\x8e\x28\xc0\xbd\x88\x54\xb1\xe5\x45\xba\x7c\xe2\xd7\x87\x38\xce\x9e\xb9\x5c\x85\x2d\xf9\x3c\x39\xcb\x59\xd9\x25\x1a\x61\x19\x9c\xcc\x2f\x23\xc6\xb2\x2d\xe2\x20\xbd\x28\xf7\x23\x87\x68\x02\xcb\x1d\xc9\xd8\x08\xc2\x62\x1d\x06\xbd\x3e\x7f\xa9\xb3\x7c\xd2\xfe\x5e\x29\x14\x8f\x9a\x60\x4d\x9f\xc8\x1f\x89\x1a\x65\xe8\x91\x86\xf6\x01\xfc\xe1\x0d\x86\x6b\xf0\xed\xf3\x7e\xfc\xbf\x55\x86\x77\x68\xfa\xbd\xd9\x7d\xff\xd8\xc6\xf3\x0a\x37\x17\x46\xb6\xb2\x59\x8b\xa8\xae\x0f\x24\x1c\x5f\xe2\x49\xbb\x0b\x9d\x5c\x9a\xa3\x6a\x65\x2c\xc7\x44\x81\xbf\xd5\xed\x92\x47\xba\x94\x07\xdb\x6b\x4e\xc1\xe2\x8d\x56\x94\xfb\x20\xc0\xe7\x1b\x5a\x25\x33\x25\x5a\x2d\xeb\x4b\xc0\xe0\x50\x4c\xb9\x0f\xc3\x46\x30\x82\x62\x3c\xfe\x0a\x46\x87\x41\x71\x60\x68\x29\x2d\x6c\x6b\x6e\x46\x29\xe3\xed\x1d\xba\x93\xdc\x83\xde\xfb\x8d\xc2\x90\xb2\x77\xa6\x62\x21\x77\x18\xfe\x97\x8e\x1f\x7d\xa4\xe0\x2f\x3c\x70\x0b\x96\x4e\x61\xf3\x0b\x4a\xf5\x90\x4b\xe4\x72\xf0\x2a\xf8\x8f\xe1\xb2\x16\x6f\xa6\xb3\x7a\x81\x2e\x6f\x29\x6c\x2b\x3f\xf1\x44\x66\x9d\xce\x50\x36\x4f\x9c\xf5\xd8\x84\xc7\xc9\x88\x8d\x25\x04\x6d\x2d\x89\x6c\x4f\xc4\x16\xf6\xe9\x49\xa3\x69\xcc\x53\x6a\x3a\xbd\x5a\xc2\xab\x52\x9a\xe6\x32\x3a\x12\xdd\x30\x45\xec\x4d\x98\x70\xd8\xed\x2c\x2f\x62\x12\x86\x44\xd4\x11\x13\x88\x23\x2e\x50\xf4\xce\x05\x57\xc5\xa2\x71\xc9\x43\x22\x7d\x04\x24\xf7\x3e\x22\x8e\xf7\xa8\x39\x05\xbc\xa0\x22\x58\x2a\x6f\x2b\x6e\xab\x9c\x46\x89\x47\x49\x9c\x3a\xc0\xd1\xd1\x16\xd3\x62\xe5\x78\x8c\x21\xf9\x06\x3d\x51\x25\x35\xfd\xab\xcf\x5f\x40\x37\xae\x92\xe7\x6a\x4b\x82\xb6\x49\x76\x75\x0b\xdd\xb5\x4a\x34\xc6\x51\x69\x08\x69\x1c\x21\xe7\xb6\x0e\x6b\x68\x23\xc4\x54\xce\xbd\x5d\x2a\x05\x07\xe8\x67\xf0\xbf\x42\x7b\x2f\xd0\x1b\x10\x03\x13\xcd\x50\xe8\x01\x84\xe6\x7e\x00\x81\x86\x81\x2a\x9a\x56\xa8\x25\xd4\x70\xcc\x49\xf6\x45\x4c\xca\x08\xf5\x89\xbf\x9f\xff\xb5\x2a\xb9\xd1\x59\x0e\x68\xf0\xda\x9b\x4d\x4b\xbd\x72\xd9\xe0\xb4\x34\xc1\x59\xac\x96\xe6\x0a\x8f\x92\x43\x23\x00\x75\x1b\x48\x37\x8a\x2e\x18\x3f\xc6\x0a\xc6\x13\x33\xb3\xf4\x2e\x1c\x18\x11\x59\x72\xb7\x35\x61\x5f\xe3\x48\xc5\x78\x4a\xfd\xa4\xde\x51\xb2\x27\x66\x54\x0f\xfb\xbe\x41\x1b\xa7\xf0\xd6\xc6\x33\xa0\x6c\x4b\xf5\x48\x1b\x88\xc2\x87\x85\xd8\xad\xef\x23\x4a\xe5\xc1\xc1\xbe\x81\x7a\x34\x1a\x63\x50\x11\x4c\xd0\x99\x33\x59\x45\x95\x6c\x20\xd5\xd0\x31\x05\x48\x62\xe3\xee\x82\x7c\xe0\x8b\x68\xef\x4d\x06\x95\x90\x7f\x80\x9b\xdc\x0f\x33\xdb\x4e\x9d\x34\x0f\x41\x5a\xcb\x2a\xca\x45\x52\x2d\x27\x18\xf1\x70\x34\x9a\xc7\xbf\x28\x72\x4a\x2c\x00\xc4\xf7\x09\xc4\x24\x92\x99\x55\x5d\xac\xc1\x4b\xd1\x39\xf1\xb8\x7b\xed\xb4\x3a\x1e\x77\x97\x82\xce\xf8\x74\x52\xa9\x50\xef\x6d\x91\x2b\x9a\x27\xd7\x20\x40\xf9\xed\x98\x83\x18\x93\x27\x88\x63\x41\xa2\x12\xf3\x4b\x03\x07\xe0\x9f\x83\x5e\xc6\x15\x7e\x81\x79\xbc\xf3\xc1\x21\xf9\x45\xef\x62\x24\xee\xa5\x1d\x8a\x70\x49\xcd\x48\x3f\xc1\xe9\xcb\x78\x8a\xa3\x8a\xf9\x11\x16\xfd\x9d\x73\xdf\x59\x25\xaa\x96\xea\x85\xc1\x46\x4e\xde\x66\x21\x37\x36\x0f\x7d\xd0\xe3\x56\x41\x21\xa6\xf4\x20\x1d\x04\xe0\x98\xd6\x71\xe9\x34\x5d\x01\xa9\xcf\x8e\x87\x9d\xfa\x58\x40\x1d\x34\x25\x9f\x23\xe8\x7b\x9b\x97\xcf\x72\x22\x87\xa7\x16\x1e\x2d\xfc\xa6\xbd\x45\xea\x63\xd2\xe4\x0c\x35\x9a\x3e\x03\x9d\x84\xc6\x54\x04\x11\x44\xc5\x6d\xc2\x37\x54\xf2\x6c\x5f\x95\x91\x64\xec\x85\x2a\x76\xdb\x8a\xdc\x60\x9e\x95\x11\x18\xfd\xd8\x59\x07\xa0\x46\xd5\xc4\x58\x18\xa5\x8e\xf6\x4a\x5b\xbf\xfc\xcc\x71\xc1\xe3\x7c\x04\xce\x9a\x6a\x7f\x49\x3b\xd9\xa5\x9c\x8e\x53\x74\x70\xa8\x06\x4a\x98\x46\x2e\x99\x1f\x29\x79\x67\xe3\xc1\x42\xfd\x68\x29\x1a\xad\xca\xf1\xe8\xc5\xa3\x52\x30\x46\xeb\x78\x09\xd7\xbd\xfa\x74\xe3\xf9\x2a\x09\x99\xd6\xda\x73\xea\x58\x59\x78\x49\xc7\x97\xec\xdd\x79\x2d\x92\x50\x03\x01\x32\x39\x1c\xa8\x56\xa8\x2a\xa0\xb0\x4a\x6a\xda\x0b\xee\x74\xed\xe9\xc3\xff\x1e\xbf\x9b\x46\x76\x7e\xc8\x35\x0b\x27\x72\x47\x85\x6a\xf7\x12\xbf\xc7\x4c\x05\x90\x8c\x7d\xb0\xa0\x22\xdd\x2e\x6f\x7e\x77\x3d\x35\xdf\xb2\x62\x3f\xca\x66\xf8\xf0\x12\x5d\xc8\xa5\xad\x19\x19\xb4\xe3\x61\x67\xb5\x50\xd1\xa6\x65\xb6\xa8\x14\xb3\x5f\xf2\x4e\x5b\x7b\x3a\x4d\x38\x39\xcb\x19\xe5\x80\x98\xdc\x1d\x93\x37\x3b\xce\x05\xe9\x6d\x24\x45\xcf\x79\x39\x10\x55\xb8\x6d\x09\x8e\x21\x34\xce\x96\x00\xbe\xde\x73\x67\x3f\xe3\x86\xed\x57\x61\xa4\x3e\x8b\xea\x43\x9f\x5b\x69\x2d\x64\x61\x75\x4a\x0b\xbb\xc8\x0b\x75\xa1\xcd\xb1\x56\x90\x8b\xd9\x8d\xbb\x57\xe8\x8d\xc5\x71\x52\x83\x8e\x5b\x81\x23\x44\x55\xc0\x40\xf0\xd2\xd2\x4e\xad\x58\x8b\xf2\xf2\x90\x21\x67\x49\xab\xa0\x43\xb1\xf3\x42\x0e\x83\x31\xd1\xcb\xaa\xea\xb1\x32\xde\x1c\x44\x23\x21\xde\x34\x6f\x2c\x3c\xe2\xf4\x06\xdd\xe9\xab\x9d\xe7\x27\x38\xb9\x46\x6c\xf2\x56\x60\xf8\xe1\x51\xca\xf1\x87\x06\xe5\x38\x67\x47\x98\x57\x65\xbd\x03\x7c\x5b\xcf\x5c\x11\xb6\xcd\x5e\x55\x16\x03\x33\x0f\xc4\x95\x13\xa4\x21\x3d\x95\x86\x7c\x4f\xaf\xa9\xf0\xbc\xb6\x7a\x65\xe3\xfe\x63\xbc\x5e\x00\x6d\x04\x6d\xb9\xe7\xb5\x61\x86\x7a\x7c\x21\x81\xa1\xec\x14\x1d\x74\x18\xd2\x33\xe0\x39\x3f\xe1\x08\x76\xe6\xef\x0e\x9d\x86\x01\xe3\xb9\x49\xa8\x7a\x15\x06\x4a\xb9\x16\x2f\x93\x26\x4b\x20\xf0\xa2\xae\x1c\xc7\x5e\x18\x39\x1b\x8c\x7a\x2e\xbd\x20\x37\xdd\xc8\x48\xc4\x97\x98\xc0\xa4\x86\x49\xd0\xb4\xf6\x67\x44\x47\xb0\x72\xb1\xfc\xb3\x41\x11\xfe\x27\x9e\x19\x3d\xa2\x63\xdb\x96\xd5\x94\x30\xd9\xba\xb8\x67\xbc\xec\x7f\xc2\x59\xc2\xad\xa9\x85\x43\xbd\x7b\xb7\x11\x3d\xd8\x77\xbc\x00\x32\xff\x9f\xf8\x5d\xd8\x57\xdf\x29\xb7\x82\x5e\xe0\xe3\x8f\x9c\x8b\x72\x4e\x26\x2f\x4d\x2c\x0d\x83\x79\x87\x23\xd6\x26\x6f\x3f\x0d\xe3\xc9\x72\x4d\xd0\x11\x97\xec\xec\x10\xd9\xd5\x55\x4e\x4d\x13\x71\xc9\x6d\xf6\x4f\x86\x58\xe2\x7c\xb0\xe9\xd7\x84\xd9\xa1\x96\xfc\xc1\x21\x33\x92\xfc\xe2\x9a\x53\x67\xcc\x43\xf3\x2d\x2f\x2b\x46\x62\x02\xb6\x5d\x3a\x3d\xac\x52\xda\x05\x99\x0b\x95\x0f\x71\x14\xf7\x03\x83\x05\x3b\x6a\x8f\xc3\x81\x6d\x81\x7b\xb1\xb3\xfc\x5c\xcc\x93\x8e\xf1\x86\x46\x35\x31\x6d\xcc\x2b\xe9\xb1\x71\x77\xee\x90\x63\x80\x8f\xf1\xa2\x1f\xb5\xdf\x2f\x37\xd1\x6f\xfc\xb0\x48\x56\x10\x75\xdd\x84\xaf\xe7\x53\x2a\x27\xea\xe8\x93\x54\xe2\xfb\xbb\x80\xd2\xa2\x51\xa9\x32\x7d\x2f\x6a\x9f\x62\xaa\x10\xe8\xa4\x18\x62\x2c\xc8\x2b\x37\x49\x3a\x52\xdf\x59\xed\xd4\xef\x5b\xd4\x67\x10\x2b\xe0\x2b\xa7\x53\x31\x5f\xe5\x7c\xa5\x65\x23\xe1\x7c\x91\x4f\x56\x1e\xa5\x75\xf8\x59\x99\x5a\xd0\xde\x62\x65\x89\x30\xf9\xdd\x92\x51\x2f\xae\x24\x7a\xc2\x94\xb7\x26\xc8\xb6\x9c\xe2\x72\x8e\xf7\xe1\x3b\x27\x49\xca\xa1\x3e\xb9\xc3\xe6\x6f\x28\x10\x49\xf8\x46\x11\x34\x3b\xb3\x17\xf1\x1d\x86\x15\xe9\x0d\x4e\xa4\x94\xea\x99\x27\xe2\x72\xf2\x9a\x7f\xf3\xe2\x8f\x74\x65\x79\xcf\x0b\x88\xb1\xd5\x2d\x12\x77\x4a\x82\xb7\x1a\x24\x4b\x84\x2c\x0d\x67\x0c\xd2\xae\xbf\xfd\x51\x02\xe1\xc3\xfc\x27\xc6\x09\xe5\x5f\x5b\x77\x50\xb3\xea\x0d\x8d\xc4\xc1\x70\x43\xd2\x4d\x64\x0c\x9a\xd3\xb0\xcb\xa0\xed\x14\x88\x19\x83\xb6\xeb\xff\x01\xd4\x2e\xda\x23\xdb\x27\x77\x63\xc0\x29\x67\xcf\x50\x78\xd0\x8b\x14\xb2\x37\xdd\xd1\x61\x7b\xc8\x57\x41\x52\x92\x63\x51\x61\x53\x52\xdf\x89\x73\xe3\x84\x3c\xc0\x9f\xd9\x35\x2b\x29\x14\xb9\xce\x76\x7f\x90\xc3\x3d\x55\x46\xea\x45\x0f\xc3\x56\x16\xa4\x25\xcd\x36\x79\x45\x58\xd6\xb2\x6d\x0e\x2a\x23\xb8\x87\x05\x23\x04\xcb\xfc\x03\x97\x91\x70\xad\x2d\x25\x0b\xae\xa6\x22\x2d\xa2\x4c\xec\xa3\xd5\x1c\x98\x8a\x2c\x4a\x9c\x54\x4e\xf3\xaf\xb4\x01\x58\x5e\x16\x89\x2e\xb4\x92\x6c\x32\x87\xb9\x5d\xd8\x75\x53\x97\x3a\x25\xbc\x6c\xda\x01\x96\xa0\x10\x2f\x29\xd5\x32\x09\x8c\xb3\xf2\xd4\x2b\x25\x5c\xce\x53\x3f\x80\x25\x9a\x98\x40\x8e\x3e\xc9\x79\x22\xba\xe3\xf3\x69\x79\xa0\x92\x93\xd0\x97\x07\x72\xef\x69\x8f\x69\x66\x1b\x0f\xf3\x2c\x56\xb7\xa5\xdc\xae\xa9\xd4\x66\x9e\x9a\xa0\x5c\xaf\xd5\x5b\x6f\x04\x3e\x46\x12\x9c\x92\xed\x57\xbc\x7d\x1d\x66\xd9\x5a\x52\x96\x91\xde\x6c\x72\xfb\x23\xb6\x39\xe9\x9f\x32\xe2\xd4\xf5\x74\x18\x67\xd6\xd0\x99\xf9\x6d\x7f\xe8\x9a\x9f\x5a\x91\x1e\x97\xb6\x1e\xba\x4d\x99\x3e\x1f\x35\xf2\xd1\x78\xcb\x39\x08\x3d\xe6\x3f\x91\xf4\xf9\x5a\x52\xfc\x34\x6b\x7a\x9e\x9a\x9c\x39\x8c\xc4\xa6\x37\x16\xed\x5e\xcd\x12\xbb\x5f\x1c\xcc\xc8\x95\x99\xc9\xfc\xe5\x8f\xe9\xd3\x2b\x76\x0f\xd5\xa8\xca\x37\x03\x55\x89\x13\x65\x04\xbf\xd4\x60\xa0\xc9\xf0\x8b\x69\xd9\x0c\xe9\xef\x2b\xb4\xdb\x2f\x71\x6a\x7b\xeb\x9d\x69\x5a\x36\xb4\xcf\x68\xf1\x3f\xdf\xb9\x03\x13\xeb\x0e\x44\x05\x4a\xb0\x62\x12\xe6\xea\x18\x65\x9c\x6a\x31\x36\x9e\x6d\x64\x33\xd0\xfa\x8d\xc9\x45\xb5\x45\xd6\xb1\x26\xe8\x51\xd5\x86\x24\xb8\x92\xe0\x7d\x12\x94\x75\x48\x5b\xe5\x28\x11\xd2\xc4\x12\xf5\xef\xbd\x0c\x10\x37\xd0\x1c\x7e\x42\x0f\x88\x93\xb0\x26\xec\x69\x86\xe9\xa1\xab\xd8\x71\x8e\x5c\x1a\xa6\x49\x83\xe6\x38\x4c\x8f\x30\x54\x53\x3d\xc6\x7c\xd5\x43\x61\xee\xaf\xf8\xa7\xc4\x55\xa7\x0f\x1f\x16\xf0\x77\x23\x6a\x80\x0c\x7a\x04\xff\xff\x46\xb0\x9b\x72\x65\x69\x9c\x90\x75\x1e\x16\x0b\x44\xef\xf5\x9f\x1f\x6f\xdc\x9b\xb2\xcb\xb4\x57\x70\x2c\xfa\x94\xd3\x70\x0c\x96\x78\x84\xec\xff\x4d\x77\xd4\x81\x35\xcc\x55\xe2\xbd\x5c\xc0\x31\xa6\x7e\x4d\xed\x3d\x8f\x9e\x5f\x39\x0e\xa7\xad\xaf\x21\x4c\x4a\xac\xe5\x00\x93\xe3\x97\x30\x39\x7e\xa0\x17\x6a\x8f\xf5\x91\x17\xc9\xfe\xa2\x33\x0a\xec\x71\xda\x3a\xcb\xe6\x14\x4d\xdc\xa5\x50\x7a\x98\x4d\xc9\xfd\x2e\x99\xdf\xec\x8f\x1b\xb7\x66\x3a\xd3\x17\xdc\x6a\xe6\x80\x71\x86\x41\x0f\xc3\xdd\x9a\x4f\x14\x07\x99\x72\xbf\xf7\x0a\xe7\xee\xce\xc2\xe4\x9d\x73\xbf\x4b\x24\xcc\xc4\x94\xc5\xe6\xe8\x7e\x7f\x48\x96\x71\xbc\x31\xed\x9c\x98\xb4\x8b\x44\x69\x73\x6b\xa7\xbc\xba\x73\x2b\xc8\x23\x75\x7f\xa0\xe6\x6e\x19\xf0\xb8\xec\x96\x0a\xeb\xf1\xf1\x28\x41\x04\x4f\x89\x66\x97\xd6\xb6\xfb\xcb\x0a\x06\xa9\xb7\x2e\x69\x02\x63\x21\xcb\x7c\x26\x91\x42\xda\x6c\x1a\x52\xe6\x02\xed\x66\x95\x56\x33\x1e\x2d\x53\x52\x65\x1c\xcc\x6d\x26\x94\xf4\x8a\xf5\x26\xa8\x48\x4b\x37\xc8\xfe\x6c\xca\xf1\x09\x1c\x3e\xca\xa4\x10\xf9\x11\x85\xf8\x74\xa3\xed\x9f\xf6\x62\xe1\x07\x1f\x61\x06\xf4\xc0\x4a\xab\xcf\x4f\x1d\x7b\x81\xb4\x8c\x49\xbd\x40\x6b\x9b\xa2\xe9\x23\x21\xc0\x78\xae\x09\xa6\x57\x91\x89\xca\x55\x3f\x09\x7f\x9c\x43\x7b\xbe\xef\x74\x97\x12\xe8\x5a\x8b\xde\x3a\xc8\xf4\x36\x80\x5b\x79\xb7\x8c\xe0\x9e\xd2\x61\x32\x2a\xf5\xd6\xa2\x59\xa2\x7f\x32\x7f\x63\xe0\xba\xf2\xb1\x24\xb7\x4f\x09\x8e\xce\xd1\x44\x91\x2c\x2e\xda\xb1\xc0\x7b\x82\xcd\xf2\xb1\xdf\x02\xfc\xb6\x64\x4d\xd3\xf3\x50\xb9\x91\x1f\x2a\xf2\x91\x9f\xec\x69\xbe\xcd\xe9\x66\x84\xd5\x3e\x25\xe6\xf4\xc0\xbe\x8a\x21\xa3\xd9\x8d\xc4\x95\x59\x7a\x07\xa9\x6b\x94\x3c\xe1\xf5\x04\xec\xae\x83\xd4\xbe\xad\x6c\x87\x29\x93\xab\x87\xf1\x58\xb5\x88\xa6\x66\xcc\x2a\x44\xae\x16\x2f\xf5\xc1\x5f\xfb\x02\x8e\x1d\x58\xfe\x5b\x48\x0e\x09\x68\x68\xf6\x2e\x99\x4f\x9e\xb5\x92\x3c\xc8\xb4\x7e\x5f\x9d\xda\x78\x78\xb7\xf3\xf5\x99\xdf\x57\xaf\x90\xd3\x38\xb9\x7f\x60\xf2\x8f\xdb\x17\x51\x30\x01\xad\x41\x92\x7f\x60\x83\xdf\x57\x4f\xf7\x1e\x4b\x2a\x36\xac\x4c\x37\x66\x21\x59\x66\xee\xce\x5e\xa5\x9b\x9a\x64\x68\xae\xd4\x5e\x2c\x17\xa3\x34\x1a\x12\x0b\xac\xcd\x84\xad\x8d\x77\xf2\xac\x1d\x08\x1f\x26\xee\x65\x2a\x14\x1d\x53\x05\xc7\x75\x93\xb1\xdd\x20\x19\xee\xac\xbe\x5e\xc8\xc6\x84\x3d\xc6\x1e\xf4\x9e\x1c\x2b\x0a\xbd\x32\x56\x43\xee\x66\xd0\x69\x61\x4f\x2c\xb1\x82\x02\x01\x43\xe7\xf8\xe4\x26\xa7\xdc\xf7\x59\x5e\x5f\x5a\xbf\xb7\xda\x99\x3c\xcb\x79\xb3\x1c\x66\xda\xac\xa3\x0f\x45\x7e\x28\xaa\x47\x4d\x50\xb4\x43\x93\xec\xee\x3d\xf5\x29\xad\x3e\x68\xd0\x20\x48\xe7\x9b\x14\x93\xd2\xca\x8f\xc7\x0e\xa8\x0b\x7c\x2d\xb4\x79\x6a\xd6\x6e\x4b\x22\x99\x6a\x89\x17\x25\x45\xba\x67\x4b\x8b\xd0\x76\x43\x43\xa2\xe3\x69\xca\x93\xd1\x04\x46\x34\xd0\x28\xc0\xf8\x4a\xb9\xcd\x13\x67\x29\xaf\xee\x05\xaf\xb1\x37\x80\x5a\x44\xf1\xb3\xf3\x15\x58\x98\x66\x2d\x8f\x78\xc2\x75\xf9\x4e\xe5\xcb\x7b\xc1\xde\x25\x9d\xab\xd7\xbb\x17\x1e\xa5\xf4\xa7\xc6\xac\x5b\x4a\x37\x30\x03\x18\x7e\x66\x33\x0c\xa5\xe4\x37\xc1\x20\x41\xdf\x3e\x4f\x36\x51\xf8\x1d\x0e\x0b\xb5\x24\x76\xbf\xe1\x67\xfd\xa9\xd8\xa5\x16\x5b\x22\x46\x20\x04\x59\x28\xb2\xa1\x94\x4b\x2a\x47\x02\xa5\xe5\x22\x97\x90\x3f\x08\x81\x9c\xb2\x72\x3c\x5e\x15\x10\x33\x01\x20\xab\xb5\x5c\x39\xa3\x0a\x93\x68\x83\x9e\x8b\x84\xc2\x44\x5a\x54\x0f\x56\x34\xf0\x1f\x61\x11\xe3\xb4\x1a\x18\x68\x19\xbb\x48\x6c\x7f\x9e\x83\x5a\xdb\x8d\x06\xa2\xa8\x01\x6a\x30\xb4\x04\x31\x9d\x5c\x7d\x39\xea\xea\x45\x25\x97\xb1\x24\x78\x5f\xe4\x35\x61\x1e\xb8\x7b\x53\x57\x85\x81\x6c\xb5\x2c\x16\x94\x4c\xbc\x8e\x60\x2c\x72\x18\x54\xbd\x59\x6c\x34\x81\xd9\xc8\xc8\x0e\xf6\x63\x04\xf3\xee\xfc\xf4\xe6\xf8\x4d\x7a\xe6\xb0\x94\x3a\x8e\x44\xeb\xac\xb1\x78\xf0\x1c\x18\xc5\x42\x71\x38\x4c\x19\xc2\x7e\xfc\xbe\x8d\x31\x24\xda\xeb\x41\xc0\x08\x60\x1c\x66\x10\x1e\x44\x67\x13\x53\xea\x5d\xbc\x42\x1c\x68\x16\x8f\x86\x0d\x7c\x6d\x3c\x9c\x27\x57\x20\x03\xaf\x3d\x39\x6b\x29\xbd\xa4\x86\xe1\x0a\x2e\xa2\xbf\xd6\xf5\x73\x19\x61\x21\x6f\xa4\x52\x24\x9c\xf2\x23\x61\xa3\x40\x0e\x64\x1a\xfe\x7b\xfb\xc9\xf1\xf2\x85\xe5\x7d\x7f\xb1\xf3\x7c\xce\x91\x8c\x31\x90\x48\x5e\x14\x46\xe1\x1c\x28\x27\x6b\x18\x6c\x50\xb6\x75\xc8\x3f\x34\x2e\x0c\x3c\xc8\x22\x48\x71\x0c\x44\x62\x8c\x41\x08\xec\x04\xf9\xf6\x7e\x32\x63\xd0\x8d\x2e\x92\xf7\xa2\xdd\x8a\xd4\x64\x68\x45\x67\x04\x08\xfd\xd0\x04\xea\xab\xe4\xba\xc9\xf3\x81\x79\xb6\x6a\xf0\xde\x7e\xcc\x09\x72\x79\xa2\xd3\xba\xd6\x7d\xf8\x7d\x2a\x6b\xd6\x0d\x6a\x18\x4d\x65\x3b\x2d\xd4\x90\xb8\xc1\xfa\xd5\x9f\xd8\x8d\xd7\x6d\xe9\xad\x08\x73\xd3\xf7\xf6\xb3\x90\xa6\xd8\xa8\x58\x35\xf8\x09\x9f\x64\xd3\x02\x6a\x26\x27\x58\xf3\x82\x8f\xed\x5d\x74\xe7\xc6\x0e\xb1\xdc\x88\xd2\x02\xcb\x9d\x26\x9c\xb6\x1b\x77\x67\x93\x22\xbc\xf2\xaf\x90\x16\xa8\x44\x29\xdd\x89\x3f\x29\xf9\xbd\xe4\x3b\x84\x77\x66\x2e\xea\x3a\x14\x9e\x4f\x65\x02\xb8\xc1\xf9\xa7\x63\xbe\x21\x4b\x11\x57\x55\xa1\xf8\xb1\xe7\x94\x05\xc8\x63\x7b\x5c\x89\x7c\xf3\xeb\xe1\x10\x5a\xa2\xf8\x4d\xf8\xe0\x58\xae\x1f\x3e\x06\x1f\xd3\x47\x79\xef\x7c\x08\x0b\xc4\x6a\x13\x1c\x89\x02\x7c\xc6\x60\xe3\xc1\xf6\x64\x15\x9c\x6c\x23\x8a\x48\x9f\x02\xe1\x78\xe0\xc9\xa4\x49\x4d\x63\x7f\xce\xb7\x1d\xab\x51\xd0\x4f\x5f\x55\x45\x4a\x58\xe0\xe4\x2a\x70\x40\x54\xa2\xa1\xb2\xa8\xaf\x1e\x98\x0f\xb1\x24\x38\x44\x8f\x31\xb8\x81\xce\xbb\x2b\x37\x40\x1f\xe2\x95\x5d\x50\x6e\x70\x64\x75\xf4\x02\xa8\x63\x96\xcf\x6a\xd0\xac\x4a\xdc\x2b\x3d\x83\xac\x34\xdf\x29\xd9\xe6\xfc\x4c\xe1\x3d\x3d\x18\x0c\x7e\x32\x93\x2a\x81\xac\xe6\x60\xae\x1c\xe7\x3d\xaa\x72\x33\xcb\xf9\x9a\x67\x2a\x5d\x20\x10\x26\xbb\xf4\x24\x46\x94\x78\xda\xba\x57\x73\xcd\xbf\xb7\xf5\x12\xa0\x77\x0b\xbe\xa3\xca\xf3\x43\xaa\x6c\x60\x41\xe2\x35\x9e\xf1\x46\xa4\x1b\xdc\xf4\x0e\xfc\x3c\xec\x2e\x68\x89\xb7\x9f\xc0\xb8\x95\x82\x9b\xa0\xa4\x3a\x51\xf4\x48\xa7\xcf\x5b\x07\x43\x77\xe1\x5b\x6d\x15\xe7\xdf\xa9\xae\xf2\x52\x24\xf5\x3a\x75\x89\x82\xa6\x6d\x5f\xc2\x57\xaa\xaa\xbc\xc2\x62\x20\x8c\x61\x15\x4a\xc3\x4d\xed\x60\x68\x84\x87\x83\x91\x34\xd0\x53\x2d\xa9\xdf\x13\xd0\x9b\xc6\x97\xc1\x31\xcf\xcf\xeb\x31\xa9\x0a\xc8\xe0\xf9\xb2\x5a\x7b\x8c\xda\x71\x2e\xd4\x20\x92\x37\x42\x16\x46\x6d\x9f\xee\xb7\x85\x2b\x6c\xed\xd0\x0d\xc3\x8f\xfb\xe8\x31\xb5\xcd\x90\xf5\xc0\x13\xdc\x98\xea\x3b\xac\x95\xbe\x24\x1c\xea\xe8\x6b\xba\x3f\x9d\x98\xad\x89\x9f\xfa\xe7\x80\xbf\x44\x89\xfe\xb9\x69\x56\x2e\x2e\x6f\x68\xfc\xa9\x97\xcf\x05\xd7\xa0\x8c\x1a\x70\x62\x7d\xca\xff\xaa\xcf\x98\x4c\x23\xa6\x6c\x1a\xfa\x93\x97\x62\x81\x6d\xec\xc2\xfc\x9c\xa9\x78\xec\xef\x20\x95\x05\x87\xb1\x4c\x35\xc2\x10\x62\xf8\x58\x03\xd9\xb8\xe2\xb2\x52\x62\x4f\x82\x3f\xf9\x91\xb9\xf9\x2b\xe7\xe6\x2f\xe5\xde\xe5\x7f\xd5\x67\xe5\x23\xf9\x89\x0a\xfa\x6c\x8d\x92\x00\x79\xa3\x3b\x02\xdf\x9c\x4a\x69\x1c\x9c\x79\x37\x57\x4a\x7d\xe1\xc2\x45\xc3\x11\xfa\x9b\x4e\x5e\x55\x89\x26\xf8\x6b\x0d\x63\x67\xeb\x77\xb8\xea\x2b\xd9\x08\x4b\xd5\xdc\x3b\xf0\x6f\x70\xe0\x90\xf3\x59\xa7\x81\xa7\x42\x93\x00\x3e\xa5\x8a\x3a\x41\x3e\x2d\xd4\x31\xa2\xf7\x1b\x1c\x3f\x44\x95\x72\xe0\xbf\xa8\x4e\x19\xbd\x83\x5a\x05\x8f\x14\xcc\x25\x44\x0f\x27\xe0\x0c\xa6\x78\x77\x85\x60\xb8\x3c\x34\x4c\xd1\x33\x80\xb3\x0d\xf1\x9b\x0b\xca\xf3\xad\x71\x8a\x52\x0b\x45\x09\xc5\xe3\x38\xe8\xa7\x14\x12\xc1\x3b\x14\x31\xd4\xaa\x01\xb3\xa1\x72\x33\x9b\x42\xa3\x51\x2f\x0f\x34\xd1\x89\xc5\x2c\x6b\xe7\xf1\xf5\xee\xf8\x7c\xb2\x4a\xdc\xac\xeb\x5a\x0f\xe7\xb2\x6a\x51\xa6\xef\x77\x75\x46\x6e\xb7\x1a\x47\x26\xe5\x51\x70\x5c\x52\x0d\x80\xae\x1e\xa5\x9c\x02\x10\x7b\x15\x46\xf0\x1c\xca\xc7\x85\xdc\xc1\x38\x78\xbb\x14\xf4\xbf\xad\x0a\xe2\x91\x46\x8d\x33\x40\xf5\x1f\x3c\x72\x38\xe8\x41\x3e\x58\x93\x48\x80\x2a\x26\xe8\x00\x8b\x89\x16\xa4\xd8\x23\x08\xf1\xcf\x94\x17\x54\xc0\xc7\xf8\x37\xac\x14\xfd\xce\xa8\x96\x2d\x41\xe0\xf2\x82\x26\x03\x78\xc3\x9c\x62\xf8\xbc\x89\x5b\xf4\x05\x07\x9b\x95\x46\x19\xe3\x9d\xc9\x97\x20\x1e\x8e\x9a\x95\x12\xc6\x49\x89\xc3\x5a\xa1\x4e\xe2\xd3\xc0\x18\x07\x42\x0c\x5e\xda\xf3\x52\x9f\xbb\xe7\xf2\x8d\x4a\x9c\x3b\xf2\x61\x7f\xd0\xbd\x32\xd7\x99\xfd\x05\x04\x48\x3c\xe7\xae\x9d\x56\x2f\xa9\xd9\x5b\x4b\x26\x7d\xb4\x5c\xc3\xfa\x79\x7c\x0b\x87\x12\x1f\xfc\x0e\xb0\xed\xbf\xd3\x6f\xbd\x47\xf0\x3e\x3f\xac\x1f\x2b\x17\x85\x54\x0e\xbf\x7d\xd0\x0e\xf3\x40\x2e\xc1\xce\x18\x28\x84\xa3\x92\x27\x73\x1b\xa7\x16\x3a\xd3\x17\xd6\x2f\xaf\x6c\xce\xfc\x98\x3d\x18\x98\xb5\xa8\xdb\x4f\x2c\xc4\x9b\xa0\x72\xbe\xf8\xc7\x0e\x1e\x1a\xf3\x5a\xd6\xd1\xa9\xc0\xb6\x12\x71\x34\xb3\x73\xe5\x56\xb7\x9b\xad\x5e\x61\xf5\xb9\xac\xcd\x1c\x74\x2e\x98\xed\x7a\x7c\xda\xb0\x84\x4b\x6e\x31\x71\x71\x0d\x95\x87\x5b\xc4\x60\xdc\x06\x6e\xc5\x3c\xf3\x5a\x72\x47\xf1\x00\x9b\x00\x75\xc9\x06\x26\xb9\x98\x87\x1f\xf8\x32\x14\x49\xcc\x5f\x20\x51\x39\xce\xf7\x00\xf5\x66\xbd\xfd\xb2\x80\x3b\x92\x81\x0b\x77\x6b\x01\x81\x6f\x8b\x95\xf9\x52\xdf\x1d\x3b\xe6\xcb\xee\xfc\x34\x27\x7b\xe2\xba\x85\x5a\x4d\x3d\xaa\x49\x4f\x79\x4a\x94\x6c\x55\x3e\x46\x87\x79\x76\xd6\x57\x71\xfc\x79\xaa\xee\xa5\xad\xa6\xf4\xbe\x3c\xbb\x29\xbf\xed\x96\xfa\xa9\xa7\x96\x94\x45\x83\x83\x18\xeb\x14\x43\x79\x4b\xa2\x98\x0b\x26\x75\x94\x7a\xb5\x6f\x20\x95\x63\xda\x80\x68\x82\x25\x8b\x25\xa0\x04\xdd\xb8\x57\xcd\x05\xb3\x5c\x65\xda\xd1\x15\x78\x1b\x0a\x88\x7a\x93\xac\x6f\x75\xb9\x95\xb3\xae\xfa\xad\x0a\x34\x1a\x55\xc1\x1f\x04\xc9\x4f\xf5\x28\x6a\xa8\x04\x72\x89\x1b\x1b\x1e\x12\xfe\xfc\x9a\x2e\xb9\xd5\x5a\xe2\x0d\x77\x31\xcf\x19\x9a\x74\xfb\xcd\xef\x2e\x63\x02\x7e\xf7\x8d\x59\x16\x08\x98\xb1\xdf\x9e\x67\x1c\x64\x01\x08\xfc\x41\x50\x28\x4a\xf5\xe4\xff\x57\x75\x9d\x38\x27\x4a\x96\xe4\x0b\xd4\x53\xc5\xb0\xc9\xb2\x49\x08\x6b\xea\x0d\x31\x5e\x21\x0b\x2b\x4a\x60\xb0\x34\xa0\xe9\x35\xe5\xfe\xde\xa7\x5a\xa8\xed\x0b\x59\xa6\xc4\x97\x6a\x4c\x89\x23\xab\x99\xcf\x32\xc8\x94\x21\xc5\x71\x85\xd7\xb5\xbf\xff\xc3\x20\x85\xb4\x4c\x0d\x93\xc3\x74\x7c\x06\x73\x09\x60\xc8\xe2\xf6\xf8\x59\x7e\xf8\x4f\xf7\x1b\xa6\x8d\x2c\x81\x83\x62\xf9\xac\xc1\xe0\xeb\xd1\x5d\xf1\x97\x95\x72\x23\x7c\x7d\x17\xc5\xb2\xd9\xd5\x28\x97\x06\x76\xbd\xe2\xec\xf2\x32\x3d\x9c\x73\xb6\xf9\xf9\x54\x84\x69\x43\x06\xaa\xe9\x95\xbc\x38\xa0\xe7\x36\xaf\xae\x74\x1e\x9e\xd3\xc2\x89\x76\x3d\xa7\x94\xc6\x9c\x35\xd2\xdf\x45\xea\x04\xd3\x67\x57\xd6\xa6\xa1\x37\x9e\x75\xcb\x56\x92\x07\x79\xa8\x11\x55\x55\xcb\xc9\x6b\xb4\xc6\x4f\xf4\x7b\x4f\xf7\x82\x50\x0f\x9c\xf3\x24\xa8\xbc\x09\xfc\xa2\x4d\xa7\xd5\x91\xff\x7f\x03\x43\xed\x3e\x36\xad\xe4\xcc\x65\x2b\x29\xbf\x30\x60\xce\x73\xce\xf2\x2a\x79\x48\x8e\x12\xda\x81\xca\x3e\x84\x53\x06\x42\x78\x13\x33\x90\x46\x98\x72\xb0\xf1\x90\x44\x4f\x98\xcb\x7f\x0b\x39\xcc\x75\xee\x00\x7f\x0e\x0e\x96\xab\xe5\x91\xe6\x08\x3e\x3c\x0e\xfa\x31\xe0\xee\x7e\x2c\x4e\x0e\xba\x06\x9a\x4d\x41\xf4\x84\x60\x3f\xff\x34\x8c\x94\x83\x20\xe0\x73\xc9\x7c\x85\x6f\x97\xd5\x53\x49\x9d\x5d\x0d\xd7\x9f\x26\x23\xa1\x84\xd1\x03\xc0\x0b\xaa\xa0\xd1\x0b\xc7\xb0\x11\xce\x6d\xa8\x7c\x75\x37\xb9\xbc\x35\x6c\x64\xe6\x2b\x26\x6f\x1b\x01\x56\x81\x5f\x84\x3a\x25\x00\x81\xf2\xb7\x95\x4a\x5f\x36\xc3\x26\xf4\x17\x56\x87\x60\x43\xfc\x1b\xfe\x08\x3e\xa4\x1f\x06\xa3\x1c\x95\x80\xac\x94\xc0\xbf\x73\x12\xcd\x45\xb6\xfd\x4d\x9a\xd6\x5d\xbb\x5f\x5f\x7e\x03\xd1\xcd\xa6\xea\xf5\x6b\xad\xf5\x0b\x77\x9c\x45\xb5\x4e\x4a\x59\xd6\xfb\xa9\x27\xa5\xd4\x55\x6a\x9c\x4b\x2d\x37\xfc\x6a\x8a\x14\x60\x3f\x47\xb9\xf7\xdf\xfd\xf0\x23\x3b\xdb\x21\x6f\x19\xbf\x49\x1a\x77\x92\xa2\x0c\x96\x26\xa5\x19\xfc\x8b\x1d\x3a\x64\x6e\xec\xa7\xe1\x4d\x89\x6b\x24\x14\x53\x29\xe5\xdd\xa3\xd9\x8b\xbb\x5d\x12\xe8\x91\xbd\x56\x02\x72\x25\x09\xc1\xa9\xce\x6e\x39\xe3\x74\xcd\xf3\xa2\x3d\xb9\xea\xb5\x32\xb9\x78\xdd\x66\x9c\x90\x37\x39\xa0\xaa\x5f\xb1\xfb\xf7\x3b\xeb\xff\xb8\x62\xb1\x46\x76\xd7\xd4\x63\x5f\x51\x35\x45\xd4\xf0\xc6\xae\xea\xd7\xea\xd1\xb1\x32\xbf\x82\x75\x5a\x68\x4b\xd9\x39\x22\xbb\x71\x7b\x06\xaa\x8d\x21\x22\xbf\x6a\x0a\xae\x60\x2b\x94\x43\x25\x77\x2d\x53\x57\x68\xa5\xb5\x65\x2d\xe1\x06\xb8\x3d\xb9\xba\x53\xd3\xdc\xb0\xa7\x28\x0f\x02\x61\xa8\xa8\x11\xab\xee\x1c\x02\x0f\xa3\x6a\xe2\x95\xf2\x20\xdf\xab\xa6\xe0\x4a\x89\x56\x17\xf4\xae\xd3\xcd\x87\x1b\x8d\x5a\xcc\xf1\x6f\x28\xa5\x6e\xd0\x96\x38\x37\xee\x3c\x6d\xe8\xce\x14\x7a\x80\xae\x95\xe9\x62\x4b\x61\x75\xfd\xdb\x95\xce\xe4\xac\x87\x46\x55\x47\x4e\x42\xa9\x64\x1f\x84\x09\xce\x3c\x54\xd7\xa7\xc1\x23\xda\xe8\xea\x40\xc8\x3e\xc7\x50\x7c\xd2\x6b\xfb\x90\x13\xca\x7a\x03\xc1\x2a\x2c\x8c\x2a\xb9\x4a\x4b\x0a\xda\xf9\xb2\xaf\x58\xc7\xa4\x12\xf0\xbf\x40\x7b\xa4\x99\x42\x67\xef\xab\x8f\x31\x90\x7b\xa9\x59\x11\x99\xeb\x31\x89\x8b\x77\xf8\xe0\xb1\x5a\x4a\xd6\xac\xce\xd5\xeb\xe6\xa3\x9d\x68\xcb\x29\x08\xbf\x0a\x8b\x4d\x7d\xed\xee\xde\xf9\x98\xc6\x11\xc7\x7c\xa4\x52\x75\xd7\xcc\x11\x4d\x56\x38\xdb\xb2\xd4\x74\x9e\xbb\xea\x51\x03\x7a\x1b\x18\xa6\xbe\x03\x48\x9a\xbb\xd3\xbd\x3c\x91\xde\xbd\xc0\xe7\x8b\xb2\x37\x38\xf1\x2d\xb9\xb0\x2a\xd7\x50\xfe\x09\xd4\x83\xbc\x2f\xc5\xab\x55\x55\xf7\x25\x41\xfb\x7b\xfe\xd5\xe4\x25\x90\x2a\x77\x46\xaf\x3e\x46\xb5\xdc\x47\x35\x3a\xf7\x4d\x35\xd2\xf9\xcc\xc5\x85\x3f\x92\xed\x79\x54\xa1\x47\x71\x11\xc5\xa0\xcf\x7b\xe6\x35\x77\xf3\x3a\x05\xbb\x63\x89\xe4\x95\x4c\x97\x87\x66\xce\xaa\x0e\x0d\xcd\x7f\x97\xec\x68\xad\x4e\x3a\x94\x57\x4d\xda\x13\x4c\x86\x92\x9d\xd7\x4d\xa7\xda\x02\xa0\x6e\xb2\x18\xab\x1a\x0c\xc8\x4b\x24\x13\xd7\x8b\xfb\x34\x30\xc9\xae\xe5\x3d\x03\x72\x07\x2f\x38\xe0\xfc\x64\x5f\xb0\x9b\xab\x3d\xf9\x7d\x6c\xbe\xdd\x87\x68\xd8\x8d\x59\x69\x04\x28\x67\x52\x98\x56\xfe\xec\x08\xec\x0b\x0d\xcd\x4d\x93\xa3\x6e\xd6\x9c\x74\x13\x76\x17\x92\xfd\xc6\xeb\xe1\x0b\x46\x82\xc9\x9e\xf6\x87\x46\x87\x92\xa5\x71\xd0\xfd\x02\x5f\xc7\x25\x12\x6f\x7c\x21\xf9\x57\xfe\xf8\xc0\x74\xec\xda\x74\xda\xe1\xc5\x8e\x4d\x08\xb2\x6f\x5c\x7a\xda\xad\x06\xf9\x54\x05\xb3\xb5\x97\x84\xa2\x75\x35\x0a\x43\xd9\xeb\x8e\xaf\x07\x25\xcd\xb1\x9f\x49\x28\x8d\x00\x02\x2f\x55\xb3\x47\x01\x92\xb5\xe9\x35\x9d\x52\x47\xc2\x44\x4c\x9c\x0e\x5e\xd3\x88\xb4\x72\xfe\x72\xf2\x28\x5c\x7e\x7e\xb6\xc7\x6c\x1a\x36\x16\x26\x3d\x81\x6d\x55\x18\xc2\x77\x05\xc0\x40\x29\x33\xba\x7e\x86\x88\x17\x36\xb8\x9d\xe9\xe7\xce\x1d\xaf\xc6\xb9\x57\x83\xf5\xf9\x6f\x60\x6f\xc1\x8f\x11\xf8\xd1\x99\x3a\xc9\x3f\x86\xe1\x07\xf3\x23\xfe\x5d\xc2\xdf\x73\x77\xf8\xc7\x28\xfc\xd8\x1c\x7f\xac\x0b\x81\xa7\xc1\x97\xf6\xe4\x3f\xba\xd7\xa6\xf8\xcb\x18\xc2\xfa\xf5\x27\x55\x23\x0e\xe1\x78\x28\x51\x2e\x33\xd5\xdd\x48\xb9\x0a\xec\x8f\x3e\x91\xa7\xc8\x12\x7d\x1d\x8e\x9a\x75\x4e\x79\x66\xfa\x2e\x15\xc6\xf8\x93\x74\x3f\x1a\x86\x47\xe9\x83\x35\x04\x18\x41\x63\x38\xe6\x94\x6a\x7a\x14\x98\xd4\x82\x3b\xf8\xf5\x27\xfa\x50\x2f\x8c\xe6\xd5\x50\x60\x1c\xfc\x41\x0d\x04\x46\x41\x18\x2c\xd5\xa3\x1a\x06\xfa\xc7\xf7\x0e\xe1\x60\xa1\x59\x41\xbf\x34\x4e\x93\x7c\x00\x8a\x02\xca\x6c\x14\x50\x3e\x17\x50\x4c\x29\x75\x3b\xf2\x91\x66\x0d\xa3\x81\xf4\x51\x10\x07\xca\xc3\x51\xae\xd6\x9a\x62\x28\x30\x89\x62\xb8\x96\xc0\x50\x61\xa5\x29\xb5\xa7\x64\x8a\x86\xf5\xcb\x0f\xc0\xf9\x8a\x99\x93\x02\x54\x9c\x5e\xfe\xcf\xff\xa4\xda\xf0\xe7\x7f\xfd\x57\x70\xf0\x9d\x57\x82\xf0\x2b\x0c\xd5\x1c\x07\x23\x85\xaf\x48\x87\x92\x5a\xf0\xf3\xaf\x4e\xc5\x3e\x64\x8b\xf4\xcc\x84\xae\x3d\xf9\x7d\x09\x75\x8d\xf3\xfc\x3f\x01\x00\x00\xff\xff\xb6\x3b\xc5\xfb\x73\xcc\x00\x00") +var _confLocaleLocale_jaJpIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\x7d\x6b\x6f\x1c\x55\xb6\xe8\xf7\xfe\x15\x35\x39\x8a\x00\x09\x8c\x80\x73\xa5\xab\x11\xcd\xb9\x4c\x60\x98\xb9\xe2\x75\x09\x68\x74\x85\xa2\xa6\xdd\x5d\xb6\xfb\xa4\xdd\xd5\xd3\x55\x1d\xe3\x39\x3a\x92\xdb\x4e\x82\x13\x3b\xe3\x90\xe0\x98\x3c\xc0\x04\x92\xd8\xb1\x89\x9d\x10\x1e\x49\x6c\x12\xe9\xfe\x94\xd3\xee\xb6\xfd\x89\xbf\x70\xd7\x6b\x3f\xab\xca\x76\xe6\xcc\x68\x44\xda\xb5\xdf\x6b\xaf\xbd\xf6\x5a\x6b\xaf\x47\xb9\xd9\x2c\x55\xc3\xb8\x52\x7c\x2b\xda\x59\x9e\xd8\x59\xf9\xba\xdb\x59\xea\xad\x2d\xee\x7c\x77\xaa\xdb\x59\xe8\x76\x16\xbb\x93\x1b\xdd\xa9\xd5\xee\xd4\x7c\x77\xea\x6a\x77\xf2\x61\x77\x6a\xfa\xad\x5a\xd2\x9d\xfc\xa9\x3b\xb5\xd9\x9d\xba\x08\x5f\x0a\x85\x91\x68\x34\x2c\x62\x31\x7e\xfa\xa6\x50\x2d\xc7\x23\x83\x51\xb9\x55\x85\x6f\x13\xdd\xa9\xa9\xee\xe4\x2f\xdd\xa9\x9b\xdd\xa9\x6b\x54\x7e\xa6\x10\x7e\xda\xac\x47\x2d\x68\x31\xb9\x8c\x1d\x4e\xae\x77\xa7\x16\xba\x53\x77\xa8\xf4\x76\x61\x24\xac\x37\xa1\xe1\x97\x34\xe8\x42\x21\xae\x0d\x37\x4a\xb5\x46\x11\x47\x9c\xbc\xd1\x9d\xba\xcf\xff\xe5\xef\x51\x3b\xb1\x0b\xbe\xed\x4e\xde\x82\xf9\x71\x59\xbb\xe9\x16\xc1\x3c\xa0\xbb\x56\x38\x5c\x8b\x93\xb0\x55\xdc\xbe\xbc\xb1\x3b\xfb\x43\x61\x2c\x1c\x8c\x6b\x49\x58\xfc\xcb\x9b\x7f\x50\xb5\xa7\x0b\x27\xc2\x56\x5c\x8b\x60\xcc\xa9\xf3\x38\xa9\xc9\x07\xdd\xa9\x25\x1c\xb3\x59\x1e\xc6\x75\x5e\xe1\x8f\x85\x24\x1c\x6d\xd6\xcb\x09\x7e\x3a\x8d\x83\xe0\x2a\xbe\xa7\x55\x4c\x17\xea\xe5\xc6\x70\x1b\xab\x33\x4c\x0b\x95\x56\x08\x35\x4b\x8d\x70\xac\xb8\xf5\xeb\xb5\xfe\xf4\xf9\x81\x81\x81\x42\x3b\x0e\x5b\xa5\x66\x2b\x1a\xaa\xd5\xc3\x52\xb9\x51\x2d\x8d\x12\x58\xa6\x6e\xd1\x00\x3f\x53\x57\x0c\x99\xf9\xee\xe4\x75\x9a\xdc\x6a\xb7\xb3\xd2\xed\xdc\xa6\x25\x86\x55\x00\x4c\xa9\x1c\xfb\xb0\xe9\x3f\x98\xee\x76\x9e\x14\xa8\xfb\x46\x79\xd4\xea\xb1\x77\xfe\x5c\x21\x1c\x2d\xd7\xea\xc5\x37\x5f\xc0\x7f\x60\x45\x71\x3c\x16\xd1\x4e\x7d\x4e\x9b\xbb\x2e\x7b\xd4\x0a\x4b\xc9\x78\x33\x2c\xf6\x4e\x9f\xeb\x9d\xba\xd9\x3b\x7b\xb5\x50\x29\x37\x93\xca\x48\x19\x06\x83\xf9\x7c\x47\x13\xeb\xc0\x8f\x02\x54\x6d\x46\x00\xc3\xa8\x35\x0e\xbd\xac\x74\xa7\xbe\x22\x80\x4d\xc3\xef\x42\xd4\x1a\x2e\x37\x6a\x7f\x2b\x27\x08\xcd\xed\x9f\x4e\x6e\x3f\xfc\xa2\x30\x5a\x6b\xb5\xa2\x16\x54\x5d\x84\xdd\x86\xd1\x0a\x00\x93\x12\xf6\x51\xec\x5f\xba\x4b\x28\x77\xd2\xef\x06\x6b\x8c\xd6\x86\x5b\x08\x6b\x5d\x69\x7b\x69\x63\xe7\xfa\x2c\x95\x0d\x45\xad\xe3\x76\x6b\x80\xd6\x6d\x5a\xf0\x7a\xb7\xb3\x96\xd5\x19\xcc\xcb\xea\x48\xe6\x55\x6e\xc0\x7e\x51\x11\x7f\xe9\x4e\x5e\xd8\x5e\xbb\xbe\x7d\xfe\x74\xa1\x5c\x1d\x05\x40\x37\xcb\x8d\xb0\x5e\xe4\x4f\x3b\x13\xa7\x10\x62\x53\xe7\x60\x47\x0a\xe5\x4a\x25\x6a\x37\x92\x52\x1c\x26\x49\xad\x31\x8c\xfb\x01\x98\xb8\x4a\xc8\x08\x58\x31\xbd\xb3\x7c\xa7\xb7\x76\xa5\xa0\x8b\xe5\xef\xf1\xa8\xad\x77\xbf\xd8\xed\x4c\xd2\xce\x2e\xd2\x8c\xfd\x4d\xe7\xba\xa6\x7f\xab\xb2\x74\x86\xcb\x8a\x4b\x43\x61\x88\x5b\x39\x43\xc7\x6d\x13\x37\x14\x7b\x83\x7e\xbe\x93\x6d\x6d\xb6\xeb\x75\x00\xf6\x5f\xdb\x61\x9c\x40\x3f\x38\xd0\x2a\x02\x08\x20\xc5\x87\x11\x50\xb7\x16\xc7\x50\x5c\xdc\x59\xf9\x61\x17\xe0\x0b\xfb\xde\xa8\xc0\xba\xd5\xb6\xdf\x67\x7a\x50\x28\x7c\x1c\x87\xe5\x56\x65\xe4\x58\x81\xff\x2d\xf6\x6f\x5c\xdb\xfe\xf1\x5b\x44\xeb\x3d\x10\x02\x51\xd2\xa0\x23\x0f\xa5\x46\xaa\x44\x55\xa4\x09\xf7\x65\xaa\x85\x8f\x6b\x8d\x38\x29\xd7\xeb\xc7\x0a\xf2\xa3\xa8\x90\xfc\x21\xf5\xb6\x89\xd3\x48\x6a\x09\x40\xaf\x37\xfd\x55\xef\xea\xd7\x48\xb5\xae\xcf\xe2\x92\x53\xf5\xfa\x67\x66\x76\xbf\x39\x5d\xa8\x46\x95\xe3\x70\xe4\x90\xc4\xc0\x3c\xde\xa0\xbf\x80\xdc\xbd\x15\x0d\xc7\xb8\xdb\xcb\x9b\xbd\x99\xf9\x6e\xe7\x72\x77\x72\xa6\xf7\xcd\x8f\xbd\xf3\xd3\xdd\x89\x4e\xb7\x73\x91\x80\x28\x87\xbe\xdb\x59\xed\xdd\x38\xd3\xbf\xfa\x23\xd4\xef\x9d\xfd\xa6\xdb\x99\x86\xca\xdd\xce\x63\xfc\xd1\x59\x85\xfa\xc1\xab\xe5\x20\x29\xb7\x86\xc3\xa4\x78\xa8\x34\x08\x64\xe0\xf8\xa1\x60\xa4\x15\x0e\x15\x0f\x1d\x8e\x0f\xbd\xf6\x56\xbb\x56\x0d\xeb\xb5\x46\x18\xbf\xfa\x62\xf9\x35\xe8\xa3\x3b\x09\xed\xe6\x76\x56\xee\x74\x27\x61\x9c\x25\xf8\xdd\xed\x40\xaf\x30\x8b\x93\xbf\x6d\x76\x0a\xb8\x55\x40\x9e\x4a\xd5\x41\x45\xa3\x87\xe3\xa0\xdb\x59\x87\x81\xde\x19\x3f\xfa\x7f\xde\x86\x7f\xdf\x8f\xe2\x64\xb8\x15\xf2\x1f\xf0\x5f\xa8\xfe\x4a\x40\x33\x02\xf4\x58\x0f\x3e\xac\xbd\xf1\x07\xf8\x73\xb6\xf7\xe4\xd4\xce\xad\x0e\x0d\x71\xb9\x3b\x31\x59\x80\x1e\x19\x76\xdd\xa9\xcf\x68\x69\x4f\xba\x53\x97\x19\x69\x04\xa5\xb0\x06\x92\x80\x74\x05\x00\xc8\xf6\xf2\xda\xee\xf5\xaf\x81\xf2\xc7\x49\x51\x5f\x0c\xfe\xf6\xe6\x52\x17\xe8\x5a\x08\x93\xdf\x35\x52\x28\x28\x95\x1d\x7a\x67\x3c\xfe\x6b\x3d\xf8\xf3\xbb\xef\xbe\x87\x8b\x00\x0c\xc5\x5d\x05\x5c\xba\x1f\xb4\x93\xa1\xff\x59\x1a\x0e\x1b\x61\xab\x5c\x2f\x55\x6a\xb0\xc2\xb5\xfe\xa5\xcf\x7a\x77\x16\x08\x3d\xa7\x70\xe3\x27\x2f\x6c\xfd\xfa\x64\xfb\x8b\x65\x3a\xe5\xb7\x6c\xc8\xe2\xfa\xe3\xb8\x0e\xe4\x16\x30\xee\xe8\xd1\xb7\x83\xee\xd4\xb7\xea\x80\x94\x93\x11\x99\x6e\x01\xc6\x46\xd8\xcb\x5c\x72\x41\xbb\x96\x09\x20\xfb\xf8\x06\xb2\x7e\x18\x36\x6c\xb5\x4a\x70\x6d\x24\xe3\xb8\xa5\x34\x58\x5e\xbf\xd9\x9d\x52\x3f\x80\xaa\xb7\x1f\x21\xba\x11\xaa\x12\x86\x2e\x23\x52\xe0\xe6\x9e\xa3\x7e\xae\x22\x3a\xc9\x70\xb5\xc6\x89\x72\xbd\x56\x85\xed\x56\x60\xcf\x19\x00\x60\x0f\xbd\x30\x18\x0f\x0d\x1c\x82\x4e\x0f\xbd\x70\x08\x06\xdb\x59\xbe\xd7\x9b\x5b\x27\x30\xae\x08\xf4\x1a\x51\x89\x89\x22\xde\x5a\xd5\x5a\x5c\x1e\x84\x1b\x8c\xef\xd6\x16\x53\xfb\xff\x1b\xb5\x03\x20\x1d\x8d\x28\x09\xa4\x3c\xb0\xcb\x83\xb1\x5a\x32\x02\xd7\x77\x40\x17\x23\x50\xb5\xa0\xdc\x08\xa8\xcb\x40\xc8\xe9\x80\x05\x2b\x45\x80\x05\x9d\x1c\x1a\x6c\xe1\x15\xcc\x1e\x00\xb3\x7d\xf9\x57\x82\x4d\x0a\x18\x05\x85\x2f\x8c\xf8\x72\x96\xd6\x7a\xa7\x96\x77\xa6\xbf\x17\xa4\x47\x6e\x88\x51\x13\x59\x86\x05\xa2\x8d\xf7\x08\x3c\xbf\x30\x13\x80\x08\xaa\x2a\x29\xd4\xd8\xfe\xf1\x9b\xfe\x65\xa0\x08\x67\xec\x0b\x05\xa1\x09\x34\xe2\xd4\xcd\xee\xe4\xac\x87\x7f\x7c\xb2\x9b\x51\x49\xb0\xcd\xa1\x91\xb4\xcd\xab\xcc\x46\x08\x22\xea\xba\x6a\x40\xdc\xf8\xce\x43\xea\x75\x2d\x00\x76\x2c\xa0\x3e\x18\x87\xa7\x83\x54\x87\xeb\x8a\x88\x7d\x46\x37\xc1\xf7\xc4\x72\x71\xd1\xea\xd6\x93\xaf\x7a\x77\xbe\xc4\x79\xe1\x34\x1f\x0b\x75\x68\xb5\x81\x81\xc2\xc3\x2c\x34\x55\x1f\x69\x55\xa0\x67\x62\x33\x2b\x30\x90\x3b\x74\xe0\xad\xa4\xdb\x79\x40\xe4\xf9\x5b\xba\x70\x36\xe8\x4c\x74\x7a\x73\x67\xbb\x9d\xfb\xbc\x1b\x00\x30\x21\xe2\x88\xd9\xfd\xe5\xdb\xbb\x97\xcf\xc3\xc7\xfe\x99\x89\xfe\xb5\x33\x42\x99\x85\x90\xcd\xe2\x2d\x38\x79\xd6\xcc\xb9\x1a\x01\x4b\x83\x4c\xdb\x99\xee\xd4\x75\xe1\x12\xf9\x9b\x01\xdb\x45\x5a\xe5\xfa\xd1\xa3\x7f\x22\x18\x30\xcf\x79\xff\xa3\x0f\xde\x46\xba\xfe\xeb\xbd\xdd\xc5\x27\x72\xa6\x88\x42\x8c\x94\x9a\x51\x2b\x01\x0a\xf1\xa7\x00\x57\xc5\x9c\x9d\xfa\x6c\x3a\xa5\xcb\x18\x37\x7f\x8d\xfa\x65\xce\xf8\x7c\xb7\x73\x56\x37\xda\x9e\x5f\xe9\xcd\xfd\x82\xf4\xf9\xe8\x9f\xfa\xb7\x17\x77\xa6\x7e\xc5\x33\x7c\xf2\x7a\xef\xec\x43\x75\x86\x57\xd5\x36\x5d\xe4\xe3\x4d\x58\xbc\x46\xab\x7b\x4c\xa5\x59\x44\x6c\x24\x49\x9a\x3c\xc7\x3f\x7d\xf8\xe1\xfb\xd6\x24\x75\x81\x9e\x65\x0e\x3a\xe3\xcd\xf0\x18\x38\xfd\xeb\xbd\x39\x18\xe0\x73\x99\x8d\x3f\xef\x49\x42\xf9\x76\xab\xbe\x47\x3f\x6b\x01\x80\x51\xd5\xb3\x21\xae\x78\x14\xbe\xb6\x68\xa2\x2f\x06\xf8\xcf\x51\xc2\x05\x6f\x1b\xce\xd2\x8d\x78\x1f\x6a\x6e\x3d\x98\xd8\x9d\x5a\x26\xbc\xbd\xce\xb7\x38\x89\x10\x53\x84\x3b\x0a\x95\x10\xdf\xee\x13\xa3\xa7\xf6\x0f\xc8\xfe\x83\xbf\xd3\x75\xac\x10\xa3\x10\x35\x91\xe4\xe8\x83\xdf\x9d\x5c\xc1\x35\xa8\xa9\xcb\xc9\x27\xbe\x58\x6a\x30\x77\x6c\x0b\x39\x8a\x87\x1b\x05\xb8\xd2\xa5\x77\xf4\x1d\x02\xb8\xba\xf9\xa8\x60\xa8\x15\x8d\x16\x7b\xbf\xac\xf5\x3e\x7b\xb4\xf5\xe8\x91\xf9\xa6\xa0\xb1\x0b\x8b\x7a\x72\x9d\xe8\x96\x5a\x11\x82\xf3\x0c\x1d\x49\x3c\x0a\x1f\xfc\xf1\x48\xf0\x3f\x5e\x79\xf9\x65\x98\xb5\xe1\x62\xa7\xbe\x96\x0b\x0d\x8f\x57\x56\x3b\x44\x93\x27\xc4\xaa\xc8\x0d\x72\xe8\x5d\x20\x4e\x87\x82\x57\x69\x49\xff\x2b\xfc\xb4\x0c\x72\x4a\x38\x50\x89\x46\x5f\x43\x70\xe0\x47\x38\xc0\x74\xbc\xcd\x8c\x3a\x6b\xbb\x57\x37\x7a\x77\xce\xeb\x21\x54\x3d\x4d\x75\xed\xba\x69\x71\x81\xc5\xaa\x52\x25\x6a\x0c\xd5\x5a\xa3\x22\x5e\x21\xa3\xf0\xed\xa3\x9d\x15\xa4\x84\x70\x80\x09\xdd\xe5\xd6\xa2\xee\x4b\x70\x3d\xd4\x86\x90\x4d\x94\x41\x77\x27\xae\x6c\x2f\xde\xcc\xa8\x0d\x93\x05\xa9\xac\x84\xff\xd4\x2a\xa1\xde\x48\x75\xd6\x90\xf8\x00\xaa\x7c\x05\x03\x6e\x6d\x5c\x22\xbc\x32\x7b\x67\xb8\xe4\x68\x68\x08\x99\x2f\xbe\xf8\x09\x0d\xe6\x51\x08\x61\x76\x51\xf1\x00\x3c\x74\x6f\xf6\x92\x53\x1d\x4e\x53\x13\x45\x4a\xe1\xcd\x27\x08\x0b\x05\x83\x0c\xff\x00\xb7\xce\x91\x37\xde\x0d\xac\xd3\x4d\x27\x17\xf7\xc6\x50\x6c\x3a\x3d\xbf\xca\xa5\x6e\x8b\x76\xc0\x0e\xf2\x59\x00\xe1\x01\x25\xbd\xa5\xfe\xdc\xf9\xad\xc7\x57\xe9\xec\x23\x32\x07\x44\xe6\xe4\xb6\x05\x71\xe8\x44\x19\x38\xcd\xe2\x5b\xf2\xc3\x5f\xb5\x37\x07\xea\x21\xd5\x5a\x96\xf5\x86\x5c\xd1\xaa\x2f\xb8\x8d\xab\x41\xa5\x1d\x27\xd1\x68\x10\x83\xec\x51\x09\xe3\xe7\x03\x60\xc1\x03\x2e\x8e\x83\x72\x2b\x0c\xda\x20\xc6\x97\xab\x61\x35\x18\x1c\x0f\x10\x9b\xe2\x20\x6a\x05\xd5\x70\xa8\xdc\xae\xc3\xed\x9d\xc9\x15\xec\x7c\xb6\xd2\xfb\xe5\x9e\x20\x87\x33\x41\xda\xe5\xac\x36\x32\xc3\xfc\x96\x08\x5e\xc3\x11\xf0\x61\x80\xdb\xc1\x95\xc1\x58\xe8\x16\xa6\x00\x46\x0a\x1b\x34\x90\x12\x6a\x8f\xf0\xbf\x19\x88\xe7\x56\xd4\x58\xa0\x6e\x3d\xa8\x37\x89\x22\x80\x33\x3d\x9c\xc3\x62\x77\xb2\x03\x13\x53\xdd\xad\x48\x07\x19\x9c\x38\xf1\xf8\x20\x6f\x8b\xa6\xa3\x74\xa2\x16\x8e\xf9\x22\xbd\xa8\x62\xcc\xb0\xb4\x4a\x25\x94\xec\x5e\xfa\x61\xe7\xd6\x92\xe6\xd4\x32\x7b\x54\x33\x3f\x48\xbf\x00\x3d\x2d\xef\x4c\x5e\x90\xde\x0d\x3f\x75\x99\xc8\xd3\x45\x2a\x7d\x22\xf7\xbe\xd7\xed\xe4\x24\xf5\x3c\xe7\x16\x89\x12\xc6\x12\xa6\x70\xb8\x9d\x5b\x33\x78\x7b\xda\xec\x07\xf3\x7b\x22\xef\xb2\xe4\xb3\xb5\x71\xd6\x6c\xb2\xbb\xb7\xc4\xe9\xf3\xf6\xda\x0c\xc2\xba\xc5\x20\x08\x0b\xf8\xe7\x37\x82\x62\xf0\x12\x1d\x41\x59\x31\x0a\x53\xb8\x77\x33\xf3\xdb\x57\x4e\xc2\x6e\xda\x88\xa4\xd9\x8f\xed\x73\x3f\xf4\x1e\x2f\xe8\x43\x64\x66\xc8\x64\x28\x77\x5e\x9a\xee\x70\xed\xb4\x2e\xc6\xe3\x6b\x7d\xaa\x2a\xc4\x34\xb7\x02\xd3\x56\xe9\x85\xf5\x3a\xf6\xfc\x7d\x82\x2e\x62\x74\x69\x18\x58\xad\xa2\xe2\xb7\xb2\x64\xea\x30\x4e\x4a\xc3\xb5\xa4\x34\x84\x37\x40\xb5\xf8\x0c\x70\x98\xcf\x04\x24\x99\x7f\x4d\x2b\x3b\x83\x0a\x2f\x6e\x81\xe2\xf0\xbd\xfe\xfc\xc2\xef\x83\xc3\x27\x44\x60\x7a\x05\xa9\x7a\x09\x08\x45\xad\x8e\x47\xa7\xa8\x98\xcf\x15\xfa\x3f\x12\xbd\xc0\x53\xac\xa1\xd0\xa3\xc5\x20\x9c\xd2\x4f\x9a\x03\x51\x7c\xcf\x49\x7b\x1b\x87\xa3\xc1\x76\xad\x5e\x4d\x77\xb3\x44\xbb\xce\x42\x4a\xa7\x77\xea\xfb\xde\xe6\x1c\x0d\x7d\x9e\x56\x79\x96\x39\x52\xb7\xcd\xe4\x85\xe0\x30\x8a\x01\x84\x83\x48\xd6\x79\xf3\xee\x28\x7a\x9e\xc5\x76\x29\x89\x0a\xe4\x29\xc1\xd1\x6c\x21\x59\xf1\x3d\xb3\xfd\x3b\xdf\xa9\xf3\xe0\xa0\x24\x41\x4d\xf5\x76\x20\x89\x40\x89\x92\x9d\x59\x45\x01\x91\x8c\x50\x3f\x9a\x35\x47\xf0\x8f\x96\x81\xda\xf8\xdc\xbb\x9c\x55\x20\x97\x73\x8f\x7b\xd7\x96\xed\x73\x40\x45\x06\x7c\xd0\x61\xfc\xc2\x6b\xf0\x9f\x42\x5c\x3e\x11\xf2\xad\x3e\xac\xf0\xa1\xbf\x34\x43\x87\x6d\x4d\xc9\x0e\x82\x03\x4c\x4c\x9c\x35\x39\x07\x79\xff\x83\x92\xb5\x2c\x85\xb5\x71\xbb\x02\xb7\x10\x2a\xd7\xa0\xfe\x69\x42\xaa\xaf\x40\x90\xea\x4f\x7f\xde\x45\x6c\x5f\xb7\x94\x62\xb3\x81\xc2\xee\x5d\xe0\x12\xb5\x62\x85\xe4\xb0\xde\xf7\x22\xa5\xf1\x10\xd8\xc3\xcd\x5f\xe9\xcb\x13\xda\x16\xe0\x0b\x3f\x83\xfe\x51\x44\x2b\x7c\x8c\x8a\xed\x63\x85\x36\xcb\x7a\x51\xbd\xea\x09\x3c\x24\x30\x0b\xcf\xf5\xa6\x39\x67\xea\xb8\x9a\x26\xee\xb1\x8e\x41\xf6\xad\x8c\x94\xb4\x9a\x1c\xc1\x9b\x84\x9f\x26\x8e\xba\x3c\xd0\xfa\x72\xba\xd7\xef\x13\xa4\x4e\xa3\x16\x8e\x0f\x1e\x48\x4a\xd3\x9f\xf5\xaf\x3e\x29\x8c\x8e\x13\xe6\xc4\xc5\xed\xa5\x4e\x86\xba\xb3\x12\xd5\xe1\x18\x46\x78\x97\x9e\x08\xa5\x66\xef\xd4\xbd\xde\xf9\x59\xbf\x26\x74\x14\xb5\x86\x55\x3f\x4a\x2b\x3a\x5e\x62\x85\xad\xe9\x5f\xe9\x6d\xe9\x56\x11\xd5\xff\x45\xd6\x38\x22\xc2\x88\xfe\x70\x00\xf6\x9d\xb4\x96\x3c\xa4\xab\xdf\x74\x07\x2e\x7c\x2c\x2f\x02\xc7\x0a\x52\x39\x55\xa1\xdc\x4e\x46\x8e\x59\x4a\xf4\x92\x28\x09\x50\x8b\xbb\x73\x6b\x2e\xef\x42\x30\x7c\xe9\x48\xd8\x44\x66\x76\x34\x1e\x66\xe1\x79\x89\x6e\x6e\xbf\x15\x88\x1f\xfd\x59\x58\xe5\x75\xb9\x9d\x3b\x33\xbf\x6d\x2e\xc2\xcd\x43\xbf\xcf\x23\x55\x98\xbc\xcb\x04\x33\x40\x04\x89\xa3\x4a\xad\x5c\x2f\xfd\x93\x07\x39\xaf\xf8\xd1\x33\x34\x88\xcb\x13\xf1\x83\xc1\x68\x33\x29\x6e\x7f\x81\xb7\xf7\xce\xf2\x7d\xff\x9a\x83\xdb\x1b\x4e\xb8\x70\x22\xb3\x16\xa3\x04\xe0\xff\xce\x22\xa6\x74\x8d\xab\x37\x0f\xeb\xde\x58\xed\xcd\x03\x9d\x3a\x89\xea\xcf\xc9\x39\xec\x33\x4d\x00\x53\x73\xe2\xbb\xe7\x20\x33\xd2\x12\x8c\x12\x0d\x44\x1e\xde\x6f\xa6\xb0\x95\xa3\xe1\xe8\x20\x8e\x85\x08\x67\x76\x62\xfb\xec\xcf\xfd\x53\x33\xb8\xe5\x4f\xbe\x22\xb8\x12\xdb\x36\x04\xa8\x0c\x64\x30\xef\xe6\xc4\xe3\xf3\xe4\x4b\xa2\x08\x8b\x54\x37\x3c\x58\x5d\xd8\x29\xf5\xba\x04\x64\x76\xcc\xd7\xf4\xfb\xdc\x9d\xb7\xb5\xe9\xe7\x28\xb9\xe1\x99\xd1\x25\x89\x28\x0e\x1b\x89\xda\x62\xf3\x44\xc1\x42\x94\x91\xfe\x2e\x04\xaf\x0e\xbe\x76\x38\x7e\xf5\xc5\xc1\xd7\xe0\xee\x02\xb1\xa9\xa3\x00\x4e\xfc\xdc\xc4\xa4\x66\x94\x7b\x6b\xb3\x5b\x8f\x4e\xd3\xd6\x5d\x25\x45\x03\x31\xa6\xa4\xaa\x3e\x5c\xed\x5f\x9e\xdc\xbd\x74\x71\x6b\xe3\x66\xef\xf4\x29\x02\xbc\x7d\x48\xb3\x84\x6e\xe0\x85\x78\x2a\x99\xf7\x62\xb9\x42\x44\x86\x8e\xbd\x3a\xa0\x19\xf8\xcf\xea\x1f\x24\x66\xdf\x75\xa7\x2e\xc1\xc6\xd2\x9a\xeb\xb5\xd1\x5a\x72\x30\xe4\x76\x7b\xb8\xec\xe8\x21\x0c\x7e\xad\xef\x7e\xb3\xb1\xfd\xb0\xc3\xe0\x01\xc9\xd5\x65\x25\x10\xa7\x5e\x09\x7a\xd3\x00\x9a\xb3\xac\x01\x49\x29\x57\xca\x71\xa9\xdd\x90\x1d\x0a\xab\x8c\xe3\xa4\x9f\xb9\x48\xb0\xba\x8e\x6c\x0b\xf1\x0e\xf3\xc4\x96\x74\x6c\xf0\x79\xbc\x57\x60\x0b\xec\xc1\xb3\x7a\xf3\x9e\x43\xfe\xb3\x7f\x6d\x45\x41\x75\x49\x1d\x4b\xe4\x9f\xd3\xbb\x4e\x33\xff\xc6\xaa\x7c\x4e\xad\x88\x78\x1e\x60\x62\x40\xe2\xf8\xe2\x21\xed\xf0\xad\xde\xe9\x73\x6a\xe1\xd6\x8b\x06\xdd\xff\x5b\x0f\x66\x68\x8b\xaf\x11\xc3\x72\x9f\x36\x85\x75\x77\xb4\xd1\x99\x9b\x4b\xdb\xa4\xa0\x70\x90\x0d\x00\xdc\x73\x67\xe0\x29\xb9\xec\x21\x45\xfb\x42\x8c\x63\x4c\x64\x35\x51\x8c\xe3\x5e\x90\xe4\xd5\xa4\x0e\x21\x6d\xfe\xa5\x6f\x77\x27\xbe\xdb\xda\xf8\x12\xb5\x5a\x46\xbc\x50\xba\x60\x5a\x0b\x2e\x29\x91\x15\x79\x67\x1e\x45\x74\xf5\x90\x60\x1f\x06\xb5\xa8\xfd\x57\xc4\x9d\xe7\x12\x15\x6b\x00\xcd\x2d\xd1\x0b\xd8\x3e\x54\x94\xf6\x1e\x5f\x35\xd4\x43\x19\xb2\x97\xd7\x16\x41\x50\x01\x7e\x40\xad\x12\x19\x12\x9b\x91\x52\xfb\x67\xe6\x63\xf4\xb7\x3e\xad\x73\x97\xbe\xdf\x2a\x75\x7f\x49\x14\x95\xe2\x11\x54\x45\xfe\xb6\x79\x89\xdf\x10\x00\xaf\xfb\x8f\x26\xd2\xda\x22\x14\xb9\x84\xdd\x4b\xeb\xe8\x3f\xc6\xed\x38\xc6\xa4\x04\x2f\x7b\x4d\x47\x6c\xda\x94\xa2\x29\x96\xd4\x9e\x4b\x98\xb0\x37\x16\x92\xf6\x44\x29\x87\xc4\x3d\xce\x04\xde\xbe\x50\x93\x96\x03\x86\xff\xc8\xe2\x5e\xf5\xa5\x08\x9c\x4a\xef\xec\xa2\xa9\x2c\x5a\xb1\xbf\x84\xf5\x0a\xb0\x57\x41\xd4\x08\x88\x4f\x44\xe0\x44\xd5\x32\x40\x67\x3c\x44\x8e\x0a\xb6\xe4\x64\xa1\x11\x15\xe9\xe8\xc3\xff\xa7\x0b\x50\x8c\x0d\xf9\x85\x12\xaa\xc3\xcd\x36\x7a\xac\xf0\x11\x08\x05\xef\xa6\x64\xcf\x0f\x80\xd5\x92\xaf\x0e\xb7\x85\x65\x6f\xb2\x8d\x40\xa6\xba\xb1\xf0\x7e\x9e\xb8\xfa\x41\x28\xef\x85\xa9\xeb\x53\x1b\x11\x1c\x3d\xfa\xa7\x0f\x49\x66\x26\x9d\xfa\x24\x49\x59\x9d\x35\x18\xb2\x77\xe6\x5c\xe1\x4f\x49\xd2\x8c\x3f\x6a\xd5\x49\x99\x7d\x94\xd4\xc9\xef\x97\xc7\x51\xc7\x84\x1f\x51\x6b\x80\xb7\xa7\x96\xcc\x58\xe1\xfc\x61\x58\x1e\x95\x65\x74\xd8\xfe\x04\x17\xf0\x3a\xf0\x8b\xf4\xb5\x7f\xe6\x09\xec\x25\x7d\x42\x51\xe4\xcd\x7d\x85\x64\xad\x3c\x09\xc9\x4c\x41\x3d\xb4\x39\x88\x5a\x28\xd7\x9b\x23\x65\x62\xe0\xa5\x1a\x01\x68\x55\x94\x79\x48\x10\x09\x0f\x80\x18\xcf\xdf\xc5\x37\x49\xa0\x17\x53\x73\x34\xfb\x79\x40\x59\x7c\x55\x63\xaa\x85\xe8\x3b\x21\xe2\xe2\x24\xb2\x05\x87\x4a\x87\x48\x29\x02\xbb\x79\x85\x0e\x33\xd2\xe9\xcc\x17\x0f\x7b\x0e\x55\x20\x9b\x3c\x8f\x67\x82\xbd\x66\x32\x71\x83\x66\x62\x84\x8c\x67\x5f\x78\x2e\x6f\x26\xcf\x96\xe0\x6e\xc2\xda\x67\xb8\x8b\x67\x07\x9e\xf3\x67\x46\xaf\x5b\xb0\xab\x7b\xbf\xcb\x04\xcf\x00\xc7\xf4\x37\x05\xcf\x4f\x84\x09\x9a\x7c\xa4\x6f\xcf\x25\x6a\x90\xdd\xfe\x93\x02\xc9\x8f\xa6\xfd\x33\x41\xef\xee\xe7\x44\x08\xe6\x50\xe3\x3b\x39\x89\x7d\xc8\xcb\x6f\x0e\xa4\x60\x02\xa3\xe5\x4f\xdd\x4e\x74\x23\xe0\x7d\xf8\x32\xcc\x6b\xca\x17\x93\x86\x2e\xde\xd6\xa2\xd1\xdb\xfb\x62\x32\xb2\x34\x74\x82\x2f\x22\x59\x5d\x20\x06\x07\x99\x9a\x2a\x68\x54\x6b\x54\xea\xed\xaa\x99\x33\x4f\xb8\x37\xbd\x10\x3c\x73\x38\x7e\x86\xde\xca\xce\xaf\xe2\x55\xbf\x27\xec\xdb\x8d\xe3\xc0\xa8\x36\xa4\x97\xad\x07\xe7\xfa\x5f\xfe\x9d\xde\xab\x96\x59\x8c\xfb\xbd\x32\xec\x29\xc1\x78\x51\xab\x15\x56\x12\xa5\x0d\x45\xb3\x81\xad\x07\x13\x3b\x9f\xfd\xa8\x28\xda\x55\x25\x4c\x0b\x97\x69\xc8\xbf\xd1\x39\xa4\x88\xfd\xb2\xb9\xb3\xfc\x22\xe9\x1e\x85\xd1\x2c\x3d\x8f\x31\x61\x2a\x0d\x86\x61\xa3\x94\x94\x8f\x87\x8d\xb4\x04\xbe\xde\x5f\xf8\x16\x5f\x32\xe5\xb5\x7f\x5e\x3d\xb8\x3a\xc2\x43\x33\x2a\xa5\x3b\xf2\x09\xdf\x81\xfa\x02\x69\x21\xd5\x95\x79\xf2\x3d\x48\x0f\x09\xd0\xac\x8c\xd9\x18\xfa\x75\xa0\x5e\x18\x33\xa9\x07\x00\x53\x75\xef\x5b\xed\x20\x1d\xd6\xea\xf5\x70\x18\x5f\xc9\xd4\xf4\xbc\x39\xad\x2a\x96\x62\x45\x1d\xb8\x59\xc4\x40\x68\x9f\xee\x4b\x6f\x9c\xc6\x10\x83\x5e\x79\x2a\x94\x34\x7a\xe4\xe9\xcd\x68\xf9\x0d\xb8\x2a\x5b\x64\x03\x67\xe9\xcf\x68\xda\x8a\x2c\xb1\x6e\xdb\xd7\xa5\xf1\x6d\x63\xf5\x4e\x8c\x73\xe7\x36\xdd\xcb\x33\xfb\x88\x38\xa9\x51\xe1\x6c\xe1\x8d\x6d\x0f\xcb\xb0\x5d\xe4\x47\x6b\xb8\x65\x68\x8d\xff\x9c\xd1\x34\x07\xe2\x2e\x31\x0f\x6e\x27\xf7\x1f\x42\x6b\x0c\xc3\x4f\x81\xf9\x28\xf6\x67\x3f\x23\xc6\x4c\xd6\xe0\xa9\x0e\x7b\x77\xbe\x24\xbd\xe1\x82\xb3\x13\xf5\x72\x9c\xa0\xea\x88\x61\x51\xec\x9d\x39\xbb\x7b\xf9\x86\x7a\x49\xf6\xcc\x03\x04\x9f\x50\xbb\x7e\x6d\xa2\xf7\x78\x56\x31\xd7\xf7\xd5\x2b\x9e\xb0\xab\xbd\xe9\x9b\x58\x47\x81\x50\xab\x07\xfd\xc7\x13\xcd\x3b\xe3\xb3\xfc\xf1\x70\xbc\x48\x4f\xf0\x17\x5c\x11\x49\x69\x5b\x0f\xc7\xa8\xcb\x43\xc5\xc5\x89\xb0\x05\x8c\x92\x6e\x44\x06\x60\x8e\x0a\x11\x9f\xf2\x03\x28\xca\xeb\x0b\x85\x34\x04\xc3\x0c\xbf\x3f\x69\x2d\xa4\x22\xed\xcb\xa4\x4f\x5c\x31\x4c\x24\xde\x9d\x4b\x50\x13\x1f\x1b\xa6\x4f\xc3\x7f\x77\x1e\x21\x5b\xb1\xa7\x38\x0d\x4c\x8c\xd2\xb9\x42\xa5\x9d\xe5\x4d\x57\xd5\xfa\xd8\x52\xb8\x16\xe2\x04\x8e\x2f\xee\x00\xdb\x52\x7a\x2c\xb2\x32\xa0\xf0\x75\x6f\xe6\xca\xc0\xab\x3e\x75\x52\x64\x27\xe5\x7c\xea\xdd\x40\xdd\xcd\xd2\xc6\xce\x9d\x1f\x32\x36\x84\xe7\x81\xb2\x33\x5a\x52\xa6\x44\xb3\x75\x11\x61\xd9\xc2\x32\x63\xf3\x65\x32\xaa\x02\xaa\xe5\x77\x27\x26\x7a\x9f\x3d\x52\xb2\xc8\x8c\x8d\x5f\xb9\xc6\x20\x88\x8e\x3e\x48\x48\x9c\x54\x1d\xcb\x44\xd2\x8b\x56\xa0\xf2\x94\x05\x29\xf0\xc0\xf5\xeb\x82\x67\x67\xe3\x5b\x2d\x18\xe6\xce\xcb\xda\x27\x36\x96\x63\x03\x09\xd9\x5d\x99\x94\x65\xf9\x60\x1f\x1f\x7a\x6a\x24\xc5\xd8\x1e\x54\x3c\xa3\x2d\xa0\xf0\xd2\x06\x59\x36\xce\x2b\x75\x1e\xbd\x76\x20\xe7\x07\x58\x7c\x1a\x9a\xf4\x1e\xdd\x52\xab\xc9\xc2\xc4\x02\x5b\x34\x96\x06\x5b\xe5\x46\x65\xc4\x22\x17\xf2\x00\x38\xf9\x83\xf0\x99\x53\x97\x88\xab\xb8\x8f\x07\x1d\x70\xc3\x90\x0b\x64\x84\x40\x20\xc1\x35\x1f\x2b\x00\x6f\xd1\x18\x0e\x4b\xf2\x7e\xad\x9e\xa2\xd1\x40\x01\xd9\x41\x3e\x21\x22\xe6\xa1\x36\x94\x87\xb8\x20\x52\x8d\x34\xe6\xc7\x69\xd5\x87\x96\x27\xf7\x69\xfc\xef\x11\xb0\x93\x51\xa3\xd8\x9b\x9b\x24\xeb\x4d\x73\x8a\x8c\xd5\x6a\x2d\x4c\x6b\xa0\x49\x80\xac\x25\xe3\xc4\xdd\xe0\x22\x95\xaa\x64\x6a\xc3\xd5\x85\x5c\xe4\x1f\x85\xa1\xa8\x5e\x8f\xc6\xc2\x16\x76\xc5\x86\x1c\x77\x98\x40\x03\x02\x94\x91\xa4\x17\x89\xd3\xc6\xd9\x49\x5d\x7e\x45\xd2\x75\x37\x0b\xa8\x97\x1c\x1d\xa0\x4b\x14\xc5\xcf\xd6\x09\xb2\xed\x75\xae\x4e\xe1\x04\x3b\xeb\x5b\x8f\xa6\xb7\x7f\x3c\x99\x7d\xad\x9b\x6e\x9a\xe5\x04\xee\x93\x06\xab\x59\x68\x7e\x55\x47\x26\x54\xa2\xfa\x13\xb6\xc7\xd1\xbd\x2b\x03\x40\xaf\x77\x23\xb3\x2b\xcb\xe4\x63\x05\x6d\xcf\x6c\x6c\x98\xbf\xf3\x9e\x45\xd2\xef\x21\x4c\x85\x63\x4b\x28\x14\xd5\x7a\xf1\xe8\xbb\x47\x3d\x12\x82\x16\x46\xf5\x5a\x85\x34\xa6\x71\xae\x39\x52\x81\x5f\x32\xf8\x0d\xa3\x1a\xd6\xc3\x24\xcc\xd0\x44\x32\xca\x17\xda\xb5\x6a\xf1\xa3\x1a\x88\xd7\xcd\xf6\x20\x74\x6d\x6c\xb2\xdd\xbd\x0e\xb2\xd6\x24\xc6\xfb\xf4\x44\x9d\xad\x3e\x75\xb9\xb0\xde\xa9\xef\x77\x2f\xcd\x08\x28\x27\x3a\x5b\x1b\x1b\xfd\x93\x73\x69\x95\x06\x6b\xaf\x50\x3c\x65\x83\x18\x9f\x71\x53\xea\x7b\xa6\x3d\x13\x9d\xbf\x84\x83\xf6\xc3\x63\xff\xe2\xb9\xad\x5f\xaf\x59\x8f\xef\xf4\x24\xb2\x31\xc3\xa7\x9b\xec\xeb\x6c\x04\x41\xa3\x70\xe1\xf7\xe6\x49\x78\x3c\xc7\xb7\x74\xb6\x77\x44\x3d\x62\xe8\xb3\x16\xde\x05\x7b\xbb\x59\x45\x35\x4b\x06\x16\x88\x8d\x0b\x1c\xc2\xfe\xa5\xbb\x5e\x3d\xa3\x1d\xc9\xb6\x82\xff\x4e\xa9\x74\x67\xb9\xb9\x05\x05\x25\x88\x08\x55\x48\xbb\x3c\x28\x1e\x73\x56\xcc\xb6\xdd\xa6\x7e\x3b\xa5\x7f\x66\xb2\xac\x9a\xac\x1b\x33\x33\x51\x5f\x3b\xda\x46\x57\xd5\x38\xd3\xbf\xf4\xb0\x7f\x7f\xde\x32\x28\xb4\xf4\x48\xf8\xd2\x57\x6b\xb4\xc3\xe2\xf6\xcf\x57\xd0\x7b\x21\xcf\xb8\x5e\x59\x9d\x38\x44\x8e\x86\x65\xa2\xf1\x4d\x9a\xc2\xe5\x19\xae\xd8\x5d\x28\xad\x9f\x31\x19\x9a\x61\xc3\x45\x02\xf3\x12\x11\xf1\x4e\xda\x2e\x87\x06\xbb\x60\x59\xb3\x58\x06\x45\x95\x91\x28\x8a\xe5\x4d\x8e\xa7\x69\x1c\x31\xdc\x09\xee\x76\x1e\xf4\xcf\x7e\xad\xb6\x5e\xaf\xc9\xaa\xa3\x9f\x81\x61\x35\x0a\x4f\xd8\xc4\x48\xcd\x9f\x28\x57\xa9\x36\x4a\x8e\x38\xc6\x9e\x44\xeb\x84\x34\xdb\x6a\x3b\xcc\xac\x6f\x7f\xb1\xd1\x9b\x9a\x73\xcd\x03\xc8\x86\xd9\x05\x8e\x31\x59\xe8\x4d\xdf\x86\xc3\x06\x34\x8f\x5e\xa6\x56\x6c\xc0\x07\xee\x8c\x67\x95\xea\xdd\xb3\xf7\xc9\xb2\x3f\x76\x56\x9e\x8d\xf3\x99\xd0\xd8\x03\xed\x15\xfe\xee\xf5\x76\xc5\x37\x5f\x54\xb7\xa4\x07\xeb\xfd\xdf\x25\xc5\xb8\x8d\xba\x96\xe5\x51\xe3\x5b\xfb\xa1\xa2\xaf\x74\xa0\xca\xb6\xfa\xcf\x39\x0a\x19\x82\x61\xde\xb4\xf6\x91\x04\x3d\x18\x18\xc8\x66\xf5\xd2\x7b\x60\xf9\x70\xa4\x00\xaa\xdf\xea\xf2\x96\xb3\xfd\xd3\xec\xf6\x17\xf7\x70\x73\x7d\x43\x2a\xdb\x14\x7f\xd6\xb3\x96\x2a\xb0\xb0\x1e\x8b\x61\xa9\x23\x9a\x2b\xc7\xa3\xfc\x1a\xc6\x11\x89\x45\xfe\x8c\xcb\x66\x41\x99\x31\x7e\x4d\xa4\x2a\xfb\xee\x01\xf4\x54\xf6\x95\x27\x6d\x5b\x49\x75\x5b\x64\xdf\x31\x70\xc7\xc1\x79\x23\x5f\x1e\x6f\x94\x4d\x55\x24\x6a\x75\xbf\x42\x67\x55\x79\x92\xd0\x05\x2c\xb5\xe4\xd2\x55\x4b\x81\x12\xbc\x4b\x3c\xe5\x85\x16\x3e\xbc\x7a\x6a\xed\xfb\x3e\x0c\x19\xee\x9c\xf7\x65\xd9\x7b\x9f\x4b\x5b\xa0\x30\x15\xef\x4f\x9d\xea\x7d\x73\x0f\xf8\x62\xd5\xdc\x81\x05\x53\x6d\x4b\xa8\x9b\x31\x8a\x18\x3d\x45\x85\x7e\xa9\x25\x59\xe8\xe7\x77\xae\xce\x73\xb9\x5a\xa5\x63\xc5\xa0\xd2\x48\x18\x8a\x3d\xb2\xb3\xc0\x9d\x27\xbf\x02\x0f\x4b\x4d\x32\x9f\x35\x74\x15\xcf\x70\x4d\xaa\x97\x9c\xb7\x67\x7c\x82\x2d\x0a\xbf\xb7\xba\xc7\xbb\xb3\xf5\x94\xaa\xa7\xdd\xe9\x7f\x7f\x1d\xd5\xf1\x87\xab\x81\xf7\xa0\xdc\x9b\x5b\xc0\xda\xc8\x43\x7f\x4f\x5a\x5f\x4b\x15\xa1\xde\xb2\x84\x80\xb3\x37\x80\x79\xaf\xce\x14\x88\xf5\xdc\x15\x8c\x3d\x08\x79\x3a\xaf\x59\xb5\xfe\x34\xdd\x94\x43\x97\xc1\x7a\xda\x6e\x7f\x55\xd2\x0e\xe8\xef\x02\x71\x6c\xa4\xf1\x90\xfc\x09\xf6\xc4\xac\xd5\xac\xa7\x48\x62\xa2\x27\x67\x02\xe7\x1d\x04\xb5\xa1\x62\x69\xc9\xdc\x9d\xb1\x68\x42\x09\x11\x4d\xad\x16\x9c\x07\x5f\x35\x31\x4b\x76\x53\xfb\x8c\x93\x94\xdb\xfe\xd5\x38\x69\x45\x8d\xe1\xd7\xb4\x53\x6d\xa6\x99\xc2\xab\x2f\x4a\xb5\x40\x29\x33\x60\x29\xb4\x6b\xfc\xc0\xd5\xf9\x82\xe6\xe6\xec\x08\x3a\xbb\x19\xe7\xb6\xc0\x05\xe2\x17\x8b\xfd\xe9\xf3\xe8\xe6\x16\x64\x55\xe3\xd5\x4e\x7f\x4f\x66\x97\x2b\xbd\xf9\xb9\xdd\xeb\xb3\x58\x59\x1f\x01\x51\xe6\x04\x59\xd0\x87\x32\x4b\xf1\xc9\x3c\xf5\xee\xb9\x9f\x50\x10\xda\x43\xbf\xa9\x5a\x12\xa3\xc7\x2d\x51\xf1\xfc\xa5\x52\x08\xae\xd9\x1d\xb1\xba\xd4\x92\x60\xdd\xbe\x54\x3f\x45\xff\x11\x0b\x0b\xc8\x9e\x8b\x6c\x1f\x94\xd9\x16\xfe\xf7\xa4\x42\xa8\x34\xf6\x92\xd2\x0a\xfb\x51\x22\x97\x21\x15\x99\x28\x4c\x76\x41\x4c\x54\x11\x4c\x42\x2a\xd5\xfa\x34\x51\x75\x1f\xd9\xb2\x2b\xd9\x14\x55\x4f\xe3\xe9\xc9\xe7\xaa\x92\x58\xb8\xbe\x65\xec\x6e\x3b\xfb\x00\xde\x1d\x8c\xac\x92\x9d\x8d\x3f\x53\x05\x36\x7b\x59\xeb\x7b\xd3\xd4\xdf\x11\xcc\xd1\xf0\xdc\x01\xe3\x22\xeb\x2c\x09\x07\xfa\xd7\x26\xb6\x7f\x9a\x64\xbc\xe9\x2f\xdc\x24\xd7\x36\x25\xed\x43\xd9\xce\x93\xcf\xf1\x8a\xfc\x91\x15\x28\xa8\xd0\xa3\x2d\x06\x29\x3e\x09\x9d\xdb\x88\xb0\xe6\xb7\xcd\x05\xe8\xc3\x26\x81\xd0\x31\x9a\x51\x65\x3c\x02\x44\xc7\x01\x81\xff\xfb\xfd\x68\x52\xc6\x12\xf3\x1e\xc4\x26\x2d\x4c\x1b\x5a\x27\xa6\x6c\x2e\x59\xcb\xea\x6b\x51\xb9\x2e\xfc\x42\x12\x4b\xca\xbe\x4d\xdc\x1b\xd8\x38\xf8\xa0\x84\x6c\xfb\xa7\xf3\xdd\xce\x7d\x35\x50\x16\x39\x6b\x37\x06\x6b\x8d\x6a\xd1\xb6\x8e\xdb\x59\xfa\x8e\xa4\x77\x2a\x31\xc8\x91\x5e\x24\x9a\xb3\x9b\x66\x2e\x6d\x50\xc2\x80\x82\x62\x99\x7a\x29\xd1\xe6\x14\x7b\x13\x33\x5b\x8f\x1e\x79\x48\x1c\x88\xa1\x34\xea\x7c\xee\x1b\x00\xb2\x6f\xa1\x58\x27\x72\x73\x8b\x87\x74\x5b\x10\x65\x64\x04\x88\x19\xe4\xfc\x49\xa9\xf3\x9d\xda\x2c\x8b\x30\xc0\x02\xe5\xb3\x18\xbc\xfe\xfe\x9f\x03\x65\x5d\xa8\x4f\xd7\x9e\x2c\xa8\x9e\x97\xb6\xa7\x27\x9d\xf4\x32\xed\xf6\x39\xb2\x97\x5e\x56\xfe\x29\xd6\x04\xf6\xbb\xdc\x44\x65\xe0\xcc\xc3\x1d\x98\x07\x15\xa9\xdc\xf4\x8c\x6f\xf2\x1a\x68\x0c\xb0\x6c\x38\xb9\x95\x78\xa3\xc3\xd8\x15\x33\xb3\x37\xc7\xa2\x0e\x0a\xc0\x0e\x75\x40\xfb\x4a\x63\x9d\x67\x2d\xf3\x00\x7d\xa3\x22\x00\x40\xf0\x05\x51\x21\x46\xe6\xb3\x84\x51\x3e\xd7\xb2\xf5\x68\xb6\xf7\x08\x3e\x2e\x93\x9f\x43\xbe\xb7\x2e\x3d\x10\xe4\x3d\x07\x58\x04\x5f\x50\x93\xa9\xb9\x8d\xae\x86\xee\x93\xe2\x6a\x93\x0e\xea\x59\x7f\x73\x1c\xf8\xac\xed\xd5\x8d\x10\x83\x03\xf6\x95\x75\x63\x38\x77\x42\xbe\xe3\xe0\x3f\xe7\xba\xb0\xc1\xe3\x88\x80\x07\x82\xc4\x3e\xf7\x08\xc0\x1f\x78\x05\xe0\x6e\x7d\x2b\xc9\xbc\x55\x29\x0d\x86\x73\x28\x8d\x21\xe9\x8a\x32\x40\xf7\xf4\xec\xb2\x88\x7c\xe3\x49\xd9\x30\xa9\xe7\x68\xab\x8c\xd2\x6f\x4f\x53\x29\x60\xb0\xe9\xa4\xaf\x1a\x2a\x0b\x67\xff\xf1\xed\xfe\xc2\x92\x66\x14\x05\x35\x71\x96\x86\x2d\x44\x1c\x54\x1e\x29\xde\x3c\x55\x57\x62\xd2\xeb\x2d\x43\x7b\xeb\xf9\x37\x85\xbb\x18\x55\xdb\xba\x0c\xd3\xcf\x47\xfd\xbb\x0f\xb6\x1e\x9e\x72\x66\x2f\x16\x55\x16\x97\x86\xfe\xbb\x9d\xed\x9f\x2f\x03\xa2\xd8\x58\xf2\x6f\x85\xc2\xc7\xa8\xe5\x3f\x56\xe0\x87\x4a\x72\x00\xdc\x24\xcc\xd8\x34\x16\x02\x59\xf6\x50\xc6\x7c\x40\x58\xea\x5e\xe7\x4c\xef\xc6\x12\x42\x28\xcb\x86\x60\x7b\xf1\x0e\x6f\x68\x7f\xe2\x2b\xb4\xa4\xc6\xc7\xab\xd5\xfe\xda\x8c\xbc\xb3\xa1\xe8\x8d\x53\x55\xe0\x06\x46\xb8\x7f\x72\x4e\x03\x1a\x31\x02\x70\xe1\x44\x2d\xae\x0d\xd6\xea\xfc\xe8\x40\xce\x56\xf8\xb8\xb0\x22\xef\x0b\x54\x8a\x85\xae\xa7\x6d\xda\xf5\xfb\xd5\xb8\x59\x6e\x04\x15\xe0\x77\xe2\xe2\xa1\x76\x2d\x68\x85\xd5\x00\x9d\x0d\x0e\xbd\x66\x89\xeb\xa4\x39\x9e\x9a\x86\x29\x40\xe5\xd7\xcc\x63\x9e\x3f\x0a\x46\x5a\xa9\xd0\xdb\x45\xda\x6c\x1c\xd5\x0b\xbd\xcd\x5f\x7a\xd3\x3f\xb3\x27\x95\x7d\xaa\xf3\x22\xbb\x00\x3a\xe6\xcf\x2f\xc8\x9d\x60\x60\x19\xfa\x59\x9c\x90\x99\x2d\x06\x84\x51\x80\x79\x56\x74\xb9\x13\x37\x1c\x8d\xae\xe3\x8f\x69\x07\x8c\x59\xdd\xed\xdc\xf6\xb4\x20\xcf\x15\x2a\xf5\xa8\x11\x1a\x5f\x6a\xed\xb3\x3c\x43\x67\xfd\x2e\x75\xb2\xa7\x70\x95\x0a\x0a\x62\xc9\x43\xba\x29\x09\x4b\x78\x44\xe7\x26\xb7\x4f\x2d\x65\xdf\x02\xb4\x34\x7e\xcf\xdc\x3b\xce\x0d\x55\x24\x8f\x64\xbb\x62\xef\xd4\x14\x97\xa4\x11\xc8\xe9\x4e\x2b\x52\x7d\x7c\x42\xa5\xe8\xad\x4b\xda\xe8\x5e\x01\xd4\xb5\x8f\xa3\xf3\x42\xe7\x78\x67\xe5\xfb\xfe\x97\x7f\xe7\x0f\x18\x13\x49\xc5\x43\xd2\x1f\xd4\xf0\x03\xc3\xb5\xa4\x36\xdc\x88\x5a\xa1\xe7\x12\x2b\x6a\xe3\x7a\xad\x02\xdc\x12\x9e\x4e\xc2\x08\xd4\x93\xa3\xd7\x9a\xfa\x6e\x56\xe1\x14\x07\xd9\x9d\xb5\xc2\x72\x15\x4e\xfa\x07\xf4\x8f\xfc\xa5\x7a\xe0\x8f\x6e\x43\x84\xae\x1f\xe2\xc9\xf4\x56\x6e\x27\x51\xa9\xd6\xa8\x25\x45\xfe\x90\xa3\x86\x56\x9e\xed\xe9\x9e\x00\x7a\xe9\xc7\xe5\xe9\xaf\xfa\xd7\x16\xd1\x0b\x59\xbc\x5e\x64\xcf\xfd\x7a\xe2\xe8\x22\x6e\xb7\xf2\x42\xcb\xee\x68\xbc\x9f\xab\x8a\x2b\x37\x4f\xb3\x12\x83\x09\xe6\x9c\x84\xad\x13\xe5\xba\x09\xc6\x14\x80\xc8\xb1\x7b\xe5\x8b\x67\xe1\xa6\x7b\xae\x30\x86\xf6\x5c\xf8\x84\xf9\x17\xf9\x41\x6f\x97\xc3\xe5\xbf\xe1\xb7\xa3\xfa\x27\xe1\x53\x5c\xfc\x23\xfe\x37\xe7\xd1\xd2\xa7\x91\xff\x94\x77\xcb\x34\xe1\xfd\xc7\x5e\x2f\x1b\x21\xbe\x2f\xb4\x93\x11\x6d\x64\x21\x07\xb8\x20\x31\xa7\x54\x18\x9c\xaf\x09\xb3\xee\xca\xbe\x59\x0c\x8c\x04\xc3\xb1\xab\xef\x47\x96\x81\x58\x3a\x94\x0f\x49\x5e\x30\x58\x6f\x87\x44\x0f\x64\x37\x1c\x72\xb7\x62\x4c\x3f\xd5\x40\x39\x28\x21\x91\xb1\xa4\xd6\x00\xd3\x2e\x90\x83\x5b\x6c\x80\x6c\x02\x2e\xb8\x6a\xe8\xac\xea\xbe\x9e\x8b\xe3\x37\xbc\x48\x06\xba\x2f\xbe\xf5\xe7\x0f\xc5\x80\x51\x1b\x70\x19\xef\xf5\xc0\x76\xce\x0f\x74\xe0\x9a\x94\xe1\x37\x6d\xb5\x1a\x1b\x20\x36\x5a\x8b\x63\x66\x3e\x1b\x35\xd8\x66\x0c\x23\x83\xbe\xe6\x18\x47\x46\xb6\x3e\x48\xa2\xa0\x36\x8a\xc1\x2d\x02\x7c\x8a\xac\x07\xf6\xcb\xfd\x80\xee\x4b\x19\x06\x51\x1d\xe5\x57\x69\x79\xd7\x67\xf9\x51\xa2\xe1\x91\x6b\xb3\x80\x2a\xde\x8c\xb0\x29\x4b\x99\x46\x9b\x7a\x6c\x31\xda\x79\x87\xfe\xc4\x68\x37\xfc\x81\x2d\x75\xf0\xb8\x00\xc6\xe5\x93\x66\x0a\x19\x11\x87\xf5\x21\xcb\x8b\xcc\x16\x4e\x3c\x03\x15\xb4\xb2\x4a\xa1\x97\x43\xcc\x5d\xe2\x5c\x89\x9a\xe3\xa5\x7a\xad\x71\xbc\xa8\x25\x18\xf3\xcd\x32\x54\xd7\xd2\x4d\x4a\xf5\x64\x6a\xb3\x55\xe9\x7f\xcd\x7e\x19\x1c\xb1\x02\x18\x1d\x49\x5a\xf5\x17\x8e\x18\xcd\x5d\xff\xac\x92\x91\xec\x01\x6b\xc4\x48\xc8\x07\x31\x81\x6f\x37\x88\xe8\x14\x3f\xe2\x7f\x99\x04\x31\xfd\x81\x32\x24\x3f\x50\x84\xff\x10\x29\x22\x22\x44\x30\x23\xea\x53\x40\xdd\x8d\x75\xeb\x88\xba\xe6\xaf\xed\x5a\xe5\x78\x69\x18\x23\x6f\x11\xf6\x23\x39\xe6\xf7\x7c\xa5\xde\x94\xeb\x3d\x19\xa9\xc5\xb6\xa9\x50\x86\x1b\xae\x73\x78\x14\xed\xb5\xdc\x12\xe9\x5a\xab\x44\xa3\xa3\xe5\x86\x2c\x4e\x7b\x4c\xab\x30\x13\x9d\xa5\x3d\xb8\x21\xe5\xc7\x6e\xbf\x93\xb5\xd1\xca\x1c\xad\x6d\x94\x65\x97\xe9\x15\xce\xd5\x46\x60\x75\x8d\xaf\xb9\xfd\x85\x6f\xc9\x29\x37\x35\x7d\x74\x52\x58\xd0\xa6\xdf\x7c\x03\xc3\x82\x29\xc2\x52\x2e\x9d\x22\xfb\x77\x3e\x1a\x1d\x32\xd7\x5b\xea\x4f\x6f\xb0\x11\x52\xff\xab\x9b\x68\x8a\xf4\x60\x86\x99\x93\xdf\x15\x0a\xfa\xf2\xb1\xae\x9a\xa4\x15\x22\xed\x3c\x29\x2f\x46\x43\xb5\x3a\x7a\x38\x88\x21\x11\x46\x8f\x4a\xca\xc3\xc5\x3f\xd2\xd7\x80\xbf\x62\x14\x09\xf8\x28\xbd\x91\x31\x8e\xdd\x5f\x99\x02\xec\x3d\x01\x42\xec\x45\xaa\xc3\xd8\x76\x79\x31\xed\xea\xe5\xc1\x90\x0a\x6f\x13\x2f\xb9\x0a\x27\xb5\x1e\xc6\x09\xec\x7a\xac\x08\xfb\xd4\xaa\xe5\x04\x7f\xbf\x80\x9b\x58\x4b\xe4\x1c\x2c\x8a\xa3\x4e\x0b\x24\x95\x72\xac\xec\x83\xc4\x9b\xbd\x40\x26\x0c\xad\xf2\x18\x6a\x71\xb4\x1f\x38\x7f\x05\x8c\xa2\x38\x78\xbd\x7b\x37\xfb\x77\x7e\xe4\x6f\xe4\x37\xeb\x57\x47\xd2\x48\xfa\x01\xae\x83\x84\xb0\xcc\x67\x94\x25\x58\x79\x72\x43\x1b\x84\x82\x9a\xdb\x40\xe6\x1c\x55\xa1\x84\xe5\xb3\xcb\x90\x78\x50\x94\x3e\x5d\x69\x08\x95\x6a\xde\x37\xbc\x0a\xd1\x54\xfc\xd7\x6b\xc0\xd7\xeb\xaf\xa3\x40\x14\x38\xfc\xe5\x75\xc2\xa1\x0d\x9a\xf7\x03\x5d\x5e\xa5\xe0\x8c\x0b\x37\xb7\x36\xbe\xd4\xdf\xd8\xfd\xb9\x37\x77\x03\x8d\xbf\xd4\x47\x38\x26\xa1\x65\x24\xa0\xfd\x85\x31\x34\xa6\xfe\xca\xef\x01\x56\xd1\x40\x6a\x07\xad\xb2\x06\xb2\x92\x83\x68\x47\xa1\x4a\xe5\xe8\x5b\x75\x2a\xb0\x73\xad\x92\xdf\x8b\x71\x67\x9a\xfc\xd6\xae\xad\xd1\x23\x07\x3b\xdc\xc1\xf7\xa9\x9d\x37\x99\xfd\x9a\xe5\xcc\x2d\x6a\x86\x0d\xbb\xad\x48\xb1\x80\xf6\xf7\xb7\x1e\xdc\xa1\x53\xbc\xcf\x94\x81\xdc\xc5\xe8\xd0\x68\xf5\xa1\xef\xee\x47\x16\xf7\xba\x4f\x37\xc0\xb8\x60\x14\x52\xd8\xf6\x99\x53\xbd\x5f\x2f\x22\xb6\xa4\xd6\x98\xae\x93\xb7\x2c\xd4\xbb\xa7\x2b\x3b\xa0\x63\x42\x5b\x64\xe4\x30\xf4\xd7\x74\x22\x68\x60\x11\xd8\x34\xb6\x70\x9d\x52\xb3\x5e\xae\x84\xda\x41\x5f\xaa\x01\x17\x89\x01\x2c\x9d\xe1\x52\xa8\xe5\x8f\x4b\xfb\x91\x94\x07\x8b\x87\xab\x81\xbd\x19\xba\x1b\x84\xb6\xa9\x60\x20\xad\x2a\x08\x4d\xf4\xc6\xc9\x2a\x05\x0e\x18\x19\x03\xb4\x95\x50\xa2\x06\x6b\x8c\x35\xda\xcf\x66\x70\x25\x6e\x47\x07\x44\x6d\xbf\x76\xc6\xd0\x7b\xe1\x89\xbb\x71\xd2\x99\xde\x5f\xd2\xeb\x28\xfb\x09\xd5\x0f\x86\xcc\x4a\xd5\x1f\xae\x41\xfd\xd4\xd8\xda\x32\xc7\x42\x94\x59\xad\xcf\xf7\x7a\x61\xee\x1d\x49\xec\x0d\x74\xb9\x4e\x17\x0e\x60\x78\x09\xb9\x4b\x6c\xbd\x80\x4b\x84\x9c\x06\xb1\xc4\xdf\x05\xc1\x6f\x3c\x6a\xdb\xc6\x18\xab\xbd\x33\x3f\xc0\x06\xc0\xac\x88\xdf\x39\xe3\xbf\x3c\x67\xf4\xc6\x78\x56\x2d\x0d\x8e\xfb\x9d\xcd\xba\xfc\xc0\x1e\x7d\x8c\x86\x0d\x64\x34\x31\x5c\x8e\x3f\xa1\xad\xcd\xaf\x38\x4c\xa9\xd7\x2e\x46\x67\xcd\xad\x07\xb0\xd2\x87\xfd\xab\x4f\xd0\x7d\x30\x5d\x3e\x80\xf1\x8d\xd1\x2d\xe0\xda\x04\x9a\x63\x65\x54\xc0\x13\xc4\x15\xd0\x68\x82\x49\x7d\x46\xb5\x56\x08\x62\x7a\xc2\x16\x50\xf2\xac\xe6\x1a\x35\x2d\x66\x8e\x0e\xb7\xad\x6a\xf4\x36\xfe\x0e\xb8\x9f\xfa\x78\xc0\x5f\xab\x59\xad\x46\xa3\x38\xc1\xdb\x06\x9f\x60\xb7\x1e\x4c\x60\x10\xbb\x1b\x57\x88\x53\xbe\xaf\xcc\xcd\xb3\xd7\x8a\x23\x78\x0d\xc5\xd9\x2c\xb3\x2d\x1e\x7c\xda\xb6\x22\xff\x0a\x0e\x7f\xfc\xd2\xb1\x18\xa3\x61\x99\xf7\xee\x8f\x5f\x3e\x16\x1f\x7a\xed\xf0\xc7\xaf\x1c\xa3\x88\xaf\xa9\xa6\xa5\xa1\xf2\xf1\x30\xd5\x9e\x9a\xa9\xba\xcd\x56\x78\xa2\x16\xb5\xe3\x22\x3e\x52\xeb\xe0\xd3\x9a\xa0\x7d\x0a\xc0\xff\xfe\x7a\xaa\x80\xa9\x92\x89\x77\x97\x45\x94\xaa\xba\x42\x9a\x28\x35\xda\xa3\x25\x81\x45\xcc\x84\x2b\x0d\x00\x29\x47\xf1\x39\x29\x7e\xa2\xff\xc2\xe5\xd7\xaa\xb8\x78\x58\x8e\x8a\x7e\xfb\x2f\xfc\xd7\x6b\xb4\x34\x04\xc5\x27\x7a\xa4\xc8\x3c\x98\xb3\x4d\xbe\xfb\x6c\x9e\x26\x6a\x2e\x65\xe5\x20\xc2\xbb\x97\x40\x24\xfa\xd2\xc2\x72\x2e\x94\x49\x49\x25\x7b\x11\xdd\xce\x72\xaa\x4d\x2b\x24\xb0\x71\xe5\x0f\xe8\x0f\xaf\x68\xcf\xfe\xd0\x35\xfc\xd2\x8c\x77\x7d\x28\x84\xb2\xeb\xfe\xbf\x6f\xbc\x7d\x20\xf8\xd1\xcf\xa7\x04\x1e\x4f\x4b\x7a\x50\x7f\x3c\x65\x1f\xcc\x99\x81\x74\x31\x24\xbd\x0c\x85\xad\xb0\x51\x41\x49\x1b\xf8\xd7\x80\x6a\x05\x28\x94\x06\xe5\x80\xeb\x3e\xe5\x00\x20\x9e\x27\x74\xcd\x7e\x65\x8c\xde\xa5\x88\x02\x04\x15\x95\x22\x62\xd1\xc2\xd0\x0c\x1d\xbd\x94\xa8\x00\x1c\x20\xf8\x81\xac\x0c\xd7\x09\x88\xf0\xfd\x4b\x97\x5d\xa3\x3c\x15\x61\xc3\x6e\x53\x6b\x94\x94\x77\x2f\x89\x89\x49\x14\xa0\x43\x00\x2f\x13\x70\x10\xe3\xbe\x93\xbc\x3e\x10\xbc\x5e\x47\xad\xe0\x78\x30\x52\x3e\x11\x52\x68\x5a\x7e\x9c\xf8\x37\xd7\x94\xe5\x28\xf4\x1a\x60\x07\x51\x20\xdb\x6c\x1f\xf2\xb0\x5a\x4b\x8a\xdb\xbf\x2c\xef\x5e\x3d\xad\x41\x9d\x6d\xef\xab\x26\x09\x83\x15\x39\xa8\x92\xfa\xc4\xd7\xbe\x8a\xd4\x6c\xd8\x14\xb7\xbc\x12\xd5\xa3\x96\xcd\xfd\xae\xed\x9c\xf9\xc1\xaf\x82\x0f\x35\x78\x90\x7d\x06\x83\xcb\x0d\xe2\xd3\x71\xef\x5f\x5b\xd9\x59\xfa\xae\x7f\xef\x51\xea\x1e\xe4\xea\x19\x6b\xe3\x02\x31\xb6\x97\xa7\x1d\xa7\x48\xbc\xd3\xed\x69\x8a\x71\x6a\xba\x07\x7e\xc6\xb4\x2a\x66\xf4\xe7\x3f\x54\x1a\x06\x6d\x9f\xa7\xc8\xd4\x1d\x8f\x82\x11\x1b\xfe\x1d\xf8\xc9\xd1\xba\x87\xbd\xd9\x98\xb7\x47\x3d\xfd\x7d\x5e\x17\x49\x0d\x49\xe2\x2b\x49\x41\xef\x86\x63\xc1\xfb\xf0\x57\xf0\x01\x07\x6a\x97\x22\xc0\xb0\x66\x19\x50\x97\xcd\x5d\xe3\xa2\x8e\x43\xde\x5f\xff\x62\x67\x73\x2a\xbb\x16\xc3\xe6\xb7\xcd\x0b\xdd\xce\x0d\x4f\x0b\xac\x5b\x4a\x84\xca\x2c\xc1\x39\x4f\x25\x61\x8f\x34\x58\x26\xb5\xbc\x78\x1f\xf8\xd3\xe0\x7f\x8b\xce\x1c\x1d\x25\x40\x51\x99\xf8\xaf\x2a\xd5\xad\x25\xed\x0b\x50\x22\x54\x26\xb7\xeb\x09\xba\x74\x9c\xef\x7f\x7d\x0d\xed\x48\x40\x5a\xc6\x25\xcd\xb8\x31\x32\x6c\xdf\x64\x69\x0b\xa7\x1b\xb8\xa2\x24\xd2\x73\xf9\x70\x04\xe8\x1b\x90\xb5\x40\xca\xe4\xf8\x62\x59\x30\x18\x56\xca\xed\x18\xfe\x85\x45\x51\x10\xcc\x11\x20\x03\x81\x52\x45\x90\x2a\x32\x3c\x11\x36\x06\xa4\x77\xf4\x73\xb3\x63\xea\x17\x3f\xd1\x9d\x97\x85\x82\x94\x03\xac\x10\x48\x05\x18\x20\x19\x0b\x43\xa4\x39\x21\x8c\x90\x8c\x45\xf2\x30\x14\xff\xde\xe6\x1a\x80\x90\xbe\x48\x23\xbc\x88\xac\x43\x55\x88\xea\xbf\xd0\x1f\x4c\x5a\x05\xcc\x2c\x11\x3d\xf5\xde\x11\x41\x61\xdc\x18\x2b\xc3\x0d\x8f\x20\x18\x0d\x61\x1e\xc4\x83\x54\x85\xcc\xc7\x4c\xf5\x5f\xc5\xb8\x24\x8a\xac\xd3\x6f\xa0\x79\xd0\x40\x7d\x7f\x45\x7f\x97\xde\xa9\x27\x61\x2e\x78\x10\xfe\xf2\xdf\xeb\x1c\x5a\xff\x2b\x70\x45\xb2\x80\xf2\x60\xc9\xa6\xd8\xc5\xad\xcd\x2b\x3b\xb7\xef\x39\xa5\x19\xca\x11\x53\x8c\x6a\x16\x71\xce\xd2\x2f\x34\x9e\x8f\xc8\xa2\x54\x97\xab\x1f\x30\x88\x96\x51\x7c\x9f\x94\x40\x01\x7f\xe6\xcb\xc3\xd9\x62\x98\x7d\x33\x6c\xe1\xf3\x85\xc0\x14\xea\xb1\x1e\x78\xc0\x01\x10\x09\x60\x53\x1c\x08\xd3\x1d\x11\xd1\x4a\xd5\x11\xc5\xdc\x82\xbc\x2e\xa6\xb7\xd9\xa2\x2e\xa9\x0e\xb5\x19\x1c\xf7\x0b\x2c\x73\x19\x8e\x1d\x59\x90\xbc\x01\xbf\x83\x68\x28\x63\xfe\x30\x7a\x80\xd6\x95\x01\xd7\x0c\xaa\x70\xfd\xc3\x9a\x14\x81\xc3\x46\xa8\x73\x85\x7d\xc2\x35\x3a\x0b\xab\xc5\x40\x78\xc2\xca\x71\x74\x66\x83\x93\x80\x97\xea\x50\xbd\x56\x49\x02\xf5\x15\x4f\x06\xb9\x40\xe2\xb5\xd9\x6c\x45\xc3\xf8\xca\xf0\x7c\xd0\x54\x20\x85\xfb\x3c\x1e\x09\x30\xd1\x0a\x56\x18\x02\x4a\x38\x1a\x11\x0f\xaa\x46\x80\x1b\xb4\x44\x0f\x6e\x04\x1f\xc6\x2e\x89\x35\xaf\xa1\x8e\xe5\x2f\x78\xa0\xc7\x28\x2a\xa9\xa5\x5a\x9d\xd2\xdb\x52\x76\xbf\xcf\x24\x7b\xf7\xac\x68\x46\x42\x47\x1f\x49\x84\x5a\x76\xac\x8f\xbb\xd2\x7e\xe5\x0e\xa8\xdf\x8b\xbe\xc2\x8d\x9b\xbc\xa0\x6e\xdf\xcb\x4e\xd0\x2e\x57\xf7\x2b\x7a\xdf\x80\xd4\xab\x9b\x4a\x37\x91\x9f\xf3\xc0\x42\x3e\x97\x6a\xe5\xd1\x0f\x0b\x9f\x52\x24\x84\xce\x44\xbb\x21\x67\x9d\xba\x23\x2d\x75\x5c\xfc\x24\x0d\x37\x39\x2b\x79\x30\xb3\xc9\x25\xd5\x6a\xb8\x18\xf9\xec\xbf\x1c\xae\x3e\xc7\xf4\x22\x2e\x8f\x86\xe6\xc5\x67\x9c\xf2\x08\xf0\x47\xde\x16\x0b\x29\x89\x7e\x43\xd7\x63\xe5\x1a\x65\x18\x80\x02\xaa\x04\xbf\x07\x3e\x29\x58\x2a\x60\x57\xf7\x98\xad\x16\xb1\x6a\xe7\x2a\x7c\xac\x3a\xf9\x4a\x1f\xbf\x52\xb5\x78\x98\x43\x55\xb2\x30\xa2\x3d\xd3\xec\xe9\x45\x25\x38\x83\x25\x91\x9d\x31\xd6\x93\xa8\x57\xbc\x49\x15\xc9\xb5\x70\x2e\x35\x84\x25\x1c\xb9\x8b\x06\x5e\x65\x10\x2f\x38\x13\xc6\x9e\x73\xca\x90\x42\x1d\xf9\x83\xf9\x1f\xb7\xcf\x9f\x76\x90\xd0\x02\x4e\x60\xab\x2a\x33\xae\x1a\x7b\x1a\xea\x9e\xda\xb3\xb5\xdd\x42\x49\xa6\x4f\xc4\x7f\xd1\xd1\xd9\x0f\xd8\xb6\x05\xf6\x67\x0b\x4a\xfd\x85\x9b\xc1\xb3\x5e\xa8\xf7\xe7\x5c\xd0\x84\xe8\xad\xf6\xf3\x74\xef\xef\x1b\xf6\x77\x1d\xdd\x55\x3a\x2b\x31\x42\x09\xe4\x59\xc5\xed\x58\x8d\x98\x00\xed\xea\x31\x71\xa2\xf3\xcc\x38\xfc\xef\x85\xd1\xd1\x17\xaa\xd5\x67\x82\xbc\xda\xbe\xef\x7c\x0a\x60\x16\x2f\x99\x05\xb8\xb4\xb5\xb8\xda\x05\x8f\xfa\x5b\x1d\x13\xe3\x9e\xbb\x0f\xc2\xd1\x7b\xf5\x2d\x34\x41\x7b\x58\xd2\xe1\xf6\x7f\xf9\x65\xeb\xe1\x3d\xe5\x52\xee\xf8\xc0\xe5\xf4\x2e\xa1\xb2\xcf\xee\x9c\xc1\xc0\x55\xf2\x44\xe7\x10\xac\x2c\xc4\xc9\x16\x98\xac\x1a\x5a\xaa\xc8\x59\x92\xba\xd3\xb3\xfb\x97\xe5\x1d\x04\xca\xda\x78\xc8\x02\xb7\x9f\x3c\x43\xf1\x9e\x0e\xaa\x6a\x71\x26\x1b\x2c\x4a\xb6\xc9\x68\xe3\xd8\xc2\xe5\x2e\x30\x47\xd8\x91\x53\xdc\x59\xdd\xb9\xfd\x43\xef\xd7\x8b\xff\x88\x80\x93\x35\xa5\xbd\x81\x75\x30\x59\xc7\x4f\x85\xa5\xfe\x1e\xe0\x4c\x0d\xb1\x9f\xa2\xc1\x54\xb0\xc2\xd9\x22\x48\xf1\x3e\xbc\x4d\x11\x2a\x1d\x9b\x0c\x53\x7f\x24\x8a\x8e\xc7\xc5\xbf\x84\x83\xf4\xc3\x7c\x1f\xc6\xf4\x33\x58\x44\xd9\x53\xf8\x7c\x72\x44\x3b\x5d\x05\x44\x80\x5a\xc5\x24\xdd\xea\x2d\x3e\xea\x5f\xfb\xde\x9f\x70\x15\xa5\xac\x56\xe9\x6f\xa8\x4f\xef\x9d\xbb\xb7\x7b\xf9\x51\xef\xda\xdd\xde\x03\xab\x1b\x72\xa0\x96\x58\xd4\xda\x87\x5a\x97\x8a\x4f\xa8\x07\x10\x94\x47\xd9\x01\xd6\x2c\x9c\x9d\x1c\xf1\xe6\x3b\x90\xa3\x72\xc7\x8f\xef\xfb\x74\x8e\xca\x7a\xdc\x04\x44\x9f\x78\xc8\xd3\xc4\xa0\x85\xc9\xc6\xb7\xe9\x4a\x4a\x12\x4f\x3d\x3c\x5b\x2a\x6d\x6d\x32\x68\xb2\xbb\x60\xd4\xd6\xef\xb4\x35\x03\x87\x7e\x71\x43\x5f\xa0\x65\x81\x8a\xdc\xb1\xaa\x62\x8f\x64\x4d\x97\xb2\xbb\x51\x48\x1e\xe4\xa1\x63\xb6\x43\x72\x72\xcb\x59\xcb\x60\x8b\x16\xf1\xf4\x71\x5d\x81\xd2\x6b\x70\x66\x99\x1e\x58\x05\x19\xc8\x7c\x47\xd7\x76\xbb\x5e\xf5\x3c\x78\x79\x47\xba\x77\x6a\x0a\x0d\x48\xf1\xe1\xfd\xaa\xfd\xb2\xb3\xfd\xed\xa3\xde\x1a\xaa\xf8\xf7\x8a\x22\x93\xde\x24\x0c\x2f\x08\x47\xb8\xf4\x52\xf1\x05\x0d\x16\x2b\xb6\xcb\xac\xb8\x3d\x38\x1b\xb0\x66\x25\x44\x33\x7b\x99\x65\xf6\xcf\xa1\xd9\x56\x9c\xa8\x27\xf9\x73\x78\xb9\xf8\x42\x80\xec\xe2\x18\x8a\x04\xc0\x36\x93\xc9\x58\xc0\xf6\xe8\x41\x6d\x28\x80\xfd\x0c\x68\x3f\x89\x47\x04\xde\xd0\xca\x28\xc8\xfc\xdd\x50\x30\x1e\xb5\x9f\x69\x61\x98\xc4\x90\xe5\x99\x90\x5b\x00\xb3\x9d\x1e\x17\xef\x72\x51\xa7\x89\xbd\xb4\xf1\x49\xbc\xec\xc5\xc7\xd5\xb1\xe1\x94\x53\xe8\x05\xcb\x8d\x39\x1f\xce\xb2\xb5\x16\x94\x83\x0f\x51\xf0\x30\xcc\xaf\x32\xfc\x3d\xf2\xfa\xbb\xef\xbe\xf7\xa1\xb1\xb0\x1e\x0c\x83\x76\xa3\x0a\xeb\x18\xc8\xed\xed\xe5\x74\x6f\x04\x3a\x32\x18\x68\xf0\xd3\x08\x37\x21\x40\x84\x20\x20\x8f\xb3\x92\x43\x89\x7a\x86\x77\x7e\x3e\xe0\x10\x73\x58\x8a\x64\x10\xa5\xc3\xe7\x59\xdd\x0b\x22\x99\x52\xfe\x13\x94\x79\x43\xc2\x18\x7b\x31\x24\x38\x72\x60\xec\xcd\x94\x4c\x99\x70\xf1\x7f\x4e\x0d\x1c\x90\x18\x86\xb1\x36\x38\xa9\x08\x19\x10\xf2\x3a\x06\x59\x05\x33\x8a\x8c\x7c\x35\x04\x9e\xb6\x0a\x73\x08\xca\x43\x68\x1e\xa2\xae\xa0\x7d\xc6\x7c\x39\x7f\xcc\x16\x45\x01\xcd\x1a\xb4\x15\x8e\x46\x27\x42\x58\x68\x42\x70\x23\x81\x22\xa9\x8d\xee\xb1\x13\x34\xd6\x2b\x3c\xd6\x38\x62\x70\xb9\x41\xa2\xff\xf1\x30\x6c\x5a\x03\xb8\x53\xd7\x92\x2e\x93\xf3\xc0\x18\x79\x67\xec\x0f\x29\x12\x08\x4c\xc1\x50\xad\x85\xd2\x6a\xde\xb5\x61\x5d\xca\x5e\xfe\x2d\xf7\x1e\xdd\x2b\x94\x40\xfa\xac\xb0\x06\x3e\x93\x72\x9a\xda\xa3\xe5\xe3\x20\xe7\xa8\x4b\x82\x63\x20\x65\xf4\xc5\x5e\x3b\x29\xb3\x4d\x6d\xce\x06\x97\x81\xcd\x3a\xa8\x58\x4a\xf9\xb3\x74\x3d\x11\x52\x1e\x08\xba\x1e\xfa\xff\xd9\x18\x6b\xd9\x98\x50\x14\x7c\xe6\x78\xd9\x2e\x41\x79\x98\xe6\xb5\x4d\x3b\x6e\xfa\x7d\xec\xe1\x72\xac\x7b\x65\x54\xcb\xee\x38\xdd\x5f\x2e\x13\x65\x18\x0c\x32\xf4\xe1\xd4\x0f\xb6\x55\xc3\x51\xfa\x4e\x99\x79\xd0\xa8\xc1\xe0\x0e\x56\xac\x51\x7c\xae\x12\x87\x54\xf7\xb3\xb8\xe9\xe8\x5c\x18\x19\xea\xe2\x75\xa2\xe9\x12\xbe\x2c\x35\x41\x51\x35\xa8\x65\xef\x97\x90\xd0\x81\xed\x18\xb3\x65\x8a\x3d\x0b\x32\xb6\x80\x98\x34\xbe\x26\x15\x13\xc7\xb7\x36\x87\x6c\x5b\xda\x3e\xf3\x90\xf9\x25\xe5\x26\x20\xae\x25\xdb\x97\x1f\xa1\xcb\x17\x39\xec\x78\x31\xed\x7a\x37\x2e\x61\x84\x2c\x27\x41\x94\x49\x3c\x65\x25\x3b\x54\x41\x76\x9c\x9e\x67\xb9\x67\xd7\x31\x96\x74\x36\x1d\xe0\x87\x67\xbd\xb1\x3e\x6a\xd5\xf9\x2e\x79\xff\xbd\xa3\x1f\xa6\x14\x77\xb3\x14\xb7\xdd\x49\x7d\xb3\x73\xfb\xfe\xf6\x8f\x77\x55\xb8\xe5\xeb\x12\x9d\xa5\xb3\x96\x91\x56\xd4\xf2\x20\x50\xa0\x31\x26\x8d\x2a\xbd\x68\x96\xd7\xb6\x81\xae\x6c\x80\x79\x72\xb1\x76\xc2\xe7\x58\xfc\xba\xb6\x6c\x22\x65\x39\x6e\xc3\x96\x1f\x88\xc8\x20\xcb\xbb\xa7\xce\x6d\x3d\xb9\xce\x56\x71\x4f\xe9\x15\x9c\x3b\x1f\x75\x86\xf4\x1a\x0e\x12\x70\xc1\xef\x6e\xc0\xa8\xc4\x5c\x0b\xc2\x8c\x8a\x71\x33\x62\x8f\x04\x8a\x36\x80\x19\x6b\xc8\x23\x21\x55\x93\x45\x67\x24\xce\x5f\x92\xe8\x3f\x91\xae\xd2\xe4\x38\xc7\x7e\x90\xe3\x74\xc5\xc1\xa8\x8a\xb2\xee\x35\x36\x4a\x4e\xcb\x33\x92\x26\xd6\x13\x6a\xd0\x28\x17\xbf\xed\x7c\xb6\xb2\xf5\xeb\x45\x3b\x92\x9c\xca\x30\x96\x15\x49\x4e\xb1\x3f\x96\x43\xef\x9a\xe7\x4f\xc1\x84\x40\x18\x22\x44\x66\x3b\x73\xcf\xbc\xed\x7c\x6c\xcd\x65\xcd\x8e\xa7\xa3\xb9\x30\xe5\x76\xb3\xa7\x13\xab\xbf\x5e\x7a\x87\x14\x4c\xe4\x9c\x53\x66\x98\x59\x2f\xd1\x80\x1d\xff\xc7\x0e\x86\x4f\x93\xbe\x2f\x2a\xd0\x94\xe9\xc1\xce\xf5\xe5\xed\x1b\x8f\xfc\xb8\x5b\x5e\x35\x93\xb1\x71\x35\x15\x32\xdd\xda\x85\xac\x8c\x6c\x99\xab\x32\xc1\xb8\x04\x62\x12\x5c\x20\x55\x31\x27\xd2\x00\xa9\x6e\x53\x02\xad\x30\x0d\xd2\xb6\x68\xcf\xcb\x97\x36\x2d\xea\x2c\x0e\xca\x98\xfc\x65\x91\x93\x1e\xa0\xcc\xe4\x91\x39\x4a\xa0\xb9\x73\x7f\x13\x13\x19\x6b\xbb\x30\x97\x22\x0b\x65\xc3\xd4\x15\xf4\x9c\x83\x14\x51\x5e\x76\x52\x84\x51\x2e\x15\x37\xd8\x88\xe7\x49\x4e\x79\x8c\xe6\xef\x92\xa8\x31\xa3\xed\x68\x55\xc4\x11\xc9\xc7\xf7\xec\xff\x3e\xfa\xde\xbb\xda\x30\xfd\x79\x19\xfa\xd3\x17\xc6\xc6\xc6\x5e\x40\x51\xe0\x85\x76\xab\x1e\x36\xf0\x63\x55\xe6\xf2\x3c\xa6\x4d\x7c\x4d\x87\xc7\x79\xf5\x45\xf8\xeb\xb9\xc0\xf2\x5c\xd8\x0b\x3f\x15\xf5\x5e\xa5\xa7\x49\x76\x06\x26\x57\x8f\xbd\x72\x42\xff\x45\x11\x4f\x97\x74\xe7\x39\x81\x39\x08\x23\x74\x83\x53\x73\x66\x07\x48\xb7\x39\x26\xc4\x15\x65\x0f\xe7\x20\x4c\x60\xec\xe3\x2c\xbe\xa2\xd2\x82\x19\x6f\x2f\x7d\xd9\x5b\x3f\x6d\x7d\x06\x16\xe3\x78\x46\xa0\x35\x34\x4a\xf0\x2a\xd5\x60\x48\x9d\x35\x14\x7d\x67\x70\x4c\x77\x52\x5c\x51\xec\x17\xd0\x31\xe3\xb6\xc3\x5d\xe2\x5b\xab\xf6\x08\xbd\xed\x5f\xf3\x78\xbf\xe1\x09\xc3\xf0\x74\x36\x79\x11\x31\x9a\x54\x42\xf6\x51\xf3\x6e\x10\xee\x9c\xec\xeb\xa3\x46\x7d\xbc\xc8\xc8\x81\x7f\xab\x17\x47\x0f\x85\x31\xab\xbe\xd7\x9a\xf2\x48\x18\x29\xcb\xc4\x5a\x51\xb7\x9e\x91\xee\xb2\x82\xa5\xba\x9d\x71\x2c\xb5\xa2\xaa\xb5\x42\x24\x6d\x4d\x3b\x9a\x19\x33\x40\x4a\x51\x95\xd5\x01\xab\xd9\x8f\xd0\x3f\xd9\x85\x4a\xe5\x60\xd9\x01\x58\x99\x43\xd9\xb0\xde\x28\xe4\x33\x60\x55\x74\xbc\x08\xb2\x80\x69\xae\xa0\x94\x06\x2a\xbb\x2d\xe7\x8d\x29\xfa\x89\x61\xbc\x72\xdf\xa5\x2a\x6f\xc3\x67\x7b\x9b\xf3\x64\x17\x40\x41\x98\xd9\x65\x1b\xa9\x7c\x36\x35\x62\x4e\x24\x9b\x1c\x23\x15\x24\x12\x98\xe2\xfb\x83\x31\xc3\x64\xec\xcf\xf1\x0b\xe1\xf5\xd8\xdd\x0c\xb2\x2b\x15\x9d\x31\x2d\x96\x4c\xc9\x6e\x0b\xd9\xc3\x88\x80\x9a\xc1\x55\xfb\xbc\x1c\x5b\x51\x22\xeb\x54\xc3\x48\xc8\x18\x4d\x41\x45\x3a\x21\x4a\xba\x42\x6e\x5b\x2b\xce\x51\xa4\x49\x89\x27\x9c\xbe\x38\x52\x44\x03\x41\xc6\x67\xda\xdc\x1d\x5e\xf4\x1f\x2c\x15\x4f\xd7\x1b\x42\x83\xd2\x4e\x75\x9c\x51\xc3\x45\x9e\x8c\x68\x56\x1e\x1d\x49\x87\x91\xf0\x6b\x64\x25\x89\xf6\x89\x11\x88\xe6\x0d\xb2\xc4\xee\xc8\x9b\x03\xc6\xc3\x5c\xb5\xe1\xdc\xac\x47\xe3\x1c\x37\x8a\xc0\xc5\x01\xac\x6e\xa8\xd0\xa5\x36\x2c\x4c\xdd\x8c\xaa\x19\xf2\x0e\x79\x30\x59\xdd\xa3\x6b\x28\xb7\x91\x78\x37\xbf\x6d\x7e\x8e\x97\xcb\xe4\xa4\x8b\x76\x29\xb7\x46\x23\x82\xa7\x1f\xd2\x32\x56\x92\xc3\x49\x58\x7c\xaf\x1b\x73\x29\x63\x31\x68\xad\xbc\x47\xf0\x25\xbb\x9f\xdc\x08\x4c\x99\xdd\xee\x13\x8a\xc9\x81\x77\x66\x78\xa5\x74\xaf\xf4\xa6\xb3\x6f\x98\xa5\xdf\x65\x42\xca\x7a\xd0\xc9\xd8\xd0\xb4\xa2\x37\xd5\xd0\x7d\xd5\xc9\xed\xc3\x15\xa2\x32\xdd\xb3\x0e\x14\x75\x09\x55\x2b\x4f\x15\xcf\x6e\xcf\xb9\x1b\x4d\x53\xd6\x4e\x65\xcb\x5b\x00\xc8\x42\xb5\x36\x34\x34\x30\xd8\x8a\xc6\x62\x0c\x55\x84\x19\x85\x8b\x26\x09\xb2\xe2\x76\xb8\x16\x1a\x62\x01\x26\xee\xdc\x5a\xe1\xbf\xd9\x76\xc2\x35\xe4\xa1\x02\x32\x67\x71\x93\x8d\x62\xf6\xed\xe9\xd3\xc6\xad\xaa\xb3\xae\xe2\xe7\xa4\x54\x11\xd4\x45\x3c\x12\x8d\x95\xf0\x17\x45\x62\x8a\xa5\xbd\x56\xf8\x32\xf7\x2f\x55\xb1\x02\xef\x5d\xef\xd4\xbd\xfe\xb5\x33\xea\xae\x3f\x5c\x0d\x7a\x13\x33\x69\xe1\xc8\x7a\x79\x34\xd1\xd5\xc8\xf1\xd7\x6b\xc7\xc8\x67\x73\x0a\xcb\x41\xaa\x12\x83\xd4\xf4\x23\xe9\x3f\x26\x04\xb2\x40\xd4\xfe\xf0\xe7\x77\xf9\x0f\xf2\x30\x93\x00\xbc\x8e\x17\xbb\x2c\x47\xf9\xb1\x0d\x64\xfb\xb3\xa9\x52\x76\x68\xa4\xdf\x45\xd7\x67\xd1\xaf\x59\x6d\x95\x87\x92\xa2\xb8\x39\xe2\xed\xa0\x5d\xe5\xd0\x7a\x5d\xf5\xa1\x7c\xde\x33\x3a\x00\xd8\xd2\xee\xad\x9d\xc1\xd7\x35\xf5\xd5\x36\x32\x55\xdf\xca\x28\x4d\x67\xe4\x94\x05\x69\x75\xf7\xf2\x39\xce\x28\xf3\xc0\x82\x9e\x05\xd5\x0c\x4f\xbe\x01\x46\x45\xce\xbc\xa5\xf1\x31\xd0\xc9\xb5\x1c\x58\x98\x57\xf0\xf7\x51\x2b\x1b\x8f\x04\x0a\x7e\xe4\x92\x9c\x50\x94\x22\x34\x6a\xaa\xb6\x2b\xc9\x80\xb3\x0a\xab\xed\x1b\x61\x42\xce\xc0\x4a\x05\x5c\x8f\x86\xc9\x78\x09\xb9\x1b\x49\xa3\xdd\x6e\xa0\xbe\x20\x41\xc5\xfb\xd8\x48\xd9\x32\xc8\xaa\x8d\x42\xef\x27\xc2\xaa\xe9\x3c\x29\x0f\xab\x38\x74\xc8\xb9\x71\xb0\x12\x55\x44\x12\x87\x17\xa2\xdd\x69\x29\x1c\x95\x71\x19\x55\xec\x9f\x62\x38\x25\xe4\x3e\x4a\x7c\x46\x0d\xec\xb0\x88\xf0\x71\xfb\xf2\x23\x87\x8a\x50\xbe\x15\x19\x84\x2e\x1f\x4a\xf9\xa4\xbf\xa9\x9b\xe6\x08\xff\xab\xbf\x8f\xb5\xf0\xa5\xb4\x7f\xf5\xc1\xce\xe3\x4d\xe4\xb4\x2d\x0c\xe2\x94\xd8\x82\x3e\x92\x6b\x54\x97\xa3\x00\x84\xac\x37\xc9\x9e\x4f\xb8\xf1\xd6\x83\x3b\xff\x35\x71\x2b\x03\x09\x7d\x87\x76\x0b\x83\xe4\x06\x62\x9e\x9b\x58\xf4\xac\xf6\x69\xbf\x7e\x69\x8e\xf1\xd2\xbe\xfa\x3a\x33\x3f\xbc\x22\x41\x4a\x57\x0a\x37\x19\xbe\x71\x66\xc0\x4b\xcc\x1d\x8e\xd0\x3f\x66\x78\x46\x37\xe7\x94\xa2\x32\x81\xe0\x6e\x50\x19\x33\xf5\xf2\x49\xdc\x7a\x30\x03\x70\xa4\x54\xe7\x17\xc4\x9e\xdc\xc1\x46\x73\x22\xdd\x0e\xdd\xa3\x26\xfc\xa4\xaa\xfc\x06\x3f\x2b\xd1\xeb\xd3\x07\xfc\xcd\xad\x8a\x77\xa2\x14\x04\x6f\xc8\x87\x54\x0d\xde\x80\x37\xd4\x13\x15\x3d\x78\x70\x13\x7a\x8a\x91\xb7\x2b\x8a\x08\x8c\xfa\x35\xfd\x38\x05\xe8\x3a\x10\xbc\x11\x39\x4f\x2d\x2a\x9a\xf6\xbf\xa5\x47\x51\xd7\x94\x9a\x8f\x3e\x42\x3c\x40\x35\x90\x0a\x18\xfb\x7c\xfc\x77\xa9\xe3\x54\x12\x73\x34\x95\xe6\x40\xa2\x11\xc9\x11\x63\xed\x0e\xb3\x25\x2e\x0a\xcc\xba\x19\x52\x9c\xbd\xad\x46\x63\x0d\xc4\xd5\xb8\xf8\x86\xfa\x55\x28\x7c\x1c\xb5\x86\x8f\x99\x94\x42\xa2\xba\xd7\xe9\x84\xa8\x44\xc7\x67\x77\x8b\x95\x10\x64\xc5\x6b\x37\xfd\x78\x61\x8a\x74\x0b\x2b\x40\xd1\xdc\xce\xad\x2b\xe4\x18\x76\x92\xae\xfe\x93\x46\x2c\x15\x49\x11\x13\x78\x48\x43\x2b\xa1\x6e\x33\x2a\x89\xef\x55\xd1\x92\x47\x16\x0b\xcd\x30\x6a\xc2\x59\x67\x03\x21\x4c\xcb\x52\xc3\x07\xaa\x68\x34\x44\xd3\x88\x9d\x95\xbb\x9c\x8a\xa6\x3f\x73\xb5\xf7\xf8\x14\x65\x40\x8a\x4d\x7a\xa1\x02\xe5\x4a\x90\xd7\x88\xb8\x68\x27\x05\x91\xa2\x3d\xb3\x33\x58\x0e\xf8\xd8\xb1\x7d\x59\xa9\x7c\x33\x7a\x01\x08\x22\xdb\x7a\x2c\x3b\xd9\x11\x7f\xce\xac\xa7\x60\xcb\x06\xc7\xa8\xd4\x06\x11\x53\x71\x68\xc2\xc8\xda\x56\x4d\x76\x0a\x25\x62\x28\x28\x32\x81\x85\x1f\x7a\x28\x9f\xb6\xe8\x5c\x39\xc8\xe6\x49\x5e\x11\x15\xa3\x4f\x69\xd2\xd7\x51\xa3\x41\x3d\x38\xb1\x33\x2c\xfe\xd2\xf4\xa2\xf5\x0a\x62\x79\x81\xc4\x54\xfc\x13\xb0\x97\xac\xd0\x2d\x1a\x11\xff\x09\x11\x5b\xac\x1c\x59\xff\x58\xa0\x96\x7f\xdc\x6a\x28\x3f\xc3\x81\xad\x60\x4f\xa7\x3a\xd0\xa5\x7b\xe5\x3c\x78\x7a\x5b\x1e\xb7\xa2\xa6\x55\xfa\x90\xee\x1f\xf7\xdd\x37\x0b\x02\xac\xb6\xad\x82\x88\x46\x0b\x7f\x41\x64\xb5\x3c\x34\x14\x56\x80\x91\x88\xc6\x02\x8c\x2a\x40\x44\x17\x99\x15\x20\xa2\x64\x2f\x61\x59\x55\xa4\x5f\x99\xbd\x80\xf5\xef\x39\x26\x18\x54\x16\x48\x13\x43\x66\x85\x44\x38\x64\x36\xf5\x96\x6e\xa8\x4b\x8e\x79\x8c\x49\xfe\x69\xa5\xee\xc9\xad\xad\xb2\x26\x9b\x38\x78\x6e\xab\x7f\x30\xf0\x1d\x65\xfa\xce\x7e\x76\xce\x0d\x80\xe7\x4f\x0d\xa9\x0e\xf3\x42\x86\x12\x67\x2f\x42\xd3\x27\x2f\x5d\x51\x6a\xf6\xb6\x20\x97\x19\xec\x2e\xeb\x0d\xd5\xed\x94\x99\x1d\x94\x8d\x82\x94\xde\x32\x2d\x6e\xda\xf2\xc9\x6a\x6f\xfd\xb1\x88\xe2\x8e\xee\x8d\x26\x35\x39\x63\xd4\x63\x99\x31\xc8\x0b\x42\xe8\x99\xb1\xa9\xf8\x89\x56\xbc\x62\x13\xda\xcb\x0f\x07\x67\x92\x5d\xe8\x16\x6c\xe1\x91\x51\xd7\xaf\xa2\xaf\x48\x49\xc8\xe2\x74\x93\xe1\x7b\xa8\x8a\xf4\x8b\xb9\x75\x45\xa9\x32\x40\x8e\x4a\x88\x31\x78\xaf\x7c\x43\x61\x9a\xe4\x33\x3f\xf8\x2b\x97\x38\xf5\x15\x98\x02\xf8\xc8\xb9\xad\xf4\x47\xb9\x36\x69\xaf\x48\x94\x59\xe5\x0b\x93\xe7\x67\xdd\x6b\x56\xd6\x2c\x54\x95\x59\x39\x7c\xf2\xad\x94\x7e\xdb\xbc\xe2\x0f\x84\x39\xcc\x4d\xce\x03\xbe\x9b\xf9\x72\x1e\x40\xcf\x48\xc9\x93\x24\x5f\x9c\x19\xf3\x27\x64\x92\x24\x66\xae\xf0\xdf\xbd\xb9\x4b\x68\xfa\xe5\xea\x1f\xd2\xb5\x73\xef\xba\xf5\xb4\x85\xc8\xee\xa5\x1f\xe8\x11\x7b\xd9\x0b\xbf\xb3\xcf\x5b\x21\x8f\x49\x52\x85\x9a\x22\x33\xc5\x2c\x22\x64\x4f\xd1\xae\x7e\xf0\x39\x02\x96\xc3\xe2\x27\x27\x08\xd4\x9f\x5b\x0f\x8d\x73\xca\xb1\x4e\x74\xde\x6e\x38\xd0\xc9\xec\x29\x93\x4f\xac\x9a\xb2\x9d\xab\x36\x7b\xca\x76\xf5\xa7\x00\xab\xa3\x8b\x7f\x51\x9e\x3f\x81\x20\xce\x9d\xa5\x50\xcc\x98\x18\x22\xcf\x42\xe6\x40\x80\x57\xb1\x98\xd2\x53\x51\xd1\x99\xb2\x62\x55\x70\x5b\xff\xa6\xe7\xaf\x6c\xd5\x97\x66\x74\x5c\x8b\xce\xa7\xa4\x64\x0f\x0c\x1b\xed\xe9\xcc\x4c\x12\xba\x35\x4d\x1e\x79\x37\x98\x7f\xb2\x55\x31\x64\x1c\x7a\xdd\x07\x81\xe1\x67\x65\xf1\x81\x43\x36\xb8\xd2\x7e\x5c\x03\xd7\x52\xd1\x6d\x91\xbd\xf5\x21\xaa\x2f\x44\x85\x0f\x55\x4e\xe1\xa9\x49\x55\xd6\xe8\x46\xf7\x9c\x1a\x40\xbb\x1b\x9b\x64\x8d\xce\x00\x76\xd5\xcc\x2d\xce\x88\xe0\x9d\x75\x43\xa5\x30\xc3\xcb\x06\xb8\x4e\x1c\xe0\x9c\xb8\x79\x66\xa8\x3f\x1f\xf8\x01\x83\x51\xe7\x06\x4c\xf1\x69\x8e\x0f\xd2\x9f\x58\xca\xc8\xc0\x97\x5e\x83\xd6\x17\xcb\xa3\xb6\x3d\xa5\x03\x98\x90\x58\xb4\x6d\x5f\x1e\x5c\x63\xa7\x4d\x2c\x35\x22\xb9\x16\xd1\xd7\x7f\x1f\xf8\xf0\x48\x91\x46\x56\xe8\xf1\x99\x75\xa8\x63\x67\x4d\xa9\x67\xf6\xa4\x8b\x07\x9f\xb0\x4d\x3a\xff\x29\x13\xce\xdc\x4c\x87\x54\xe6\xcc\x9c\xe9\xdd\xc1\x67\xae\x29\xa8\x15\x61\x77\x6d\xff\x99\xdb\x58\xe9\x93\x4e\xc3\xfd\x4c\x74\x9c\x6b\xcf\xa3\xf6\x93\x69\x03\xc1\x35\x45\x42\x73\x56\xe7\x09\xba\xb9\xb3\xf0\x0f\xbb\x31\x1b\xdd\xab\x95\x7f\xea\xc5\x16\x91\x4c\xe4\x19\xc1\x9f\xfd\x80\x3e\x3d\x67\xf5\xdf\x00\x09\x1e\xd5\x20\xf8\x64\x48\x35\x0d\x4b\x97\x19\x7b\x39\x1d\x33\x36\x2b\x6d\x2c\xfd\xbe\x42\xa7\xfc\x4b\x36\xb9\xb6\x5c\xc8\xd2\x19\x28\x3f\xa6\x6d\x3f\x56\xc0\x84\xe7\x94\x0d\xbf\x68\x27\x32\x27\x8b\x28\x52\xd8\x92\x06\xd5\x58\x25\x14\x6c\xd1\x46\x67\x04\xdc\x3b\xd7\x63\x1b\x44\xa2\x46\x22\x39\x06\x25\x28\x28\x47\xbe\x1e\xd6\xcf\x63\xe4\xb2\x3e\xb9\x46\x43\xbb\xae\x27\x62\x1f\x5c\xc4\x2f\x68\xce\x72\x1a\x36\x82\xad\x0b\x0b\xa3\x51\x03\x07\x2d\x92\x79\xca\x0c\x09\xc0\xec\xae\x71\xb7\x40\x06\xbe\x25\xf4\x7b\x2d\xfe\x11\x7f\x72\x82\x0a\xfa\xfb\x6d\xf8\x55\x48\xa2\x04\x18\xcb\xde\xf9\xe9\x9d\xe5\xe9\xdf\x07\x87\xab\x05\x03\x08\x7a\x98\x80\xed\x01\x46\x7a\xfb\xa7\x7b\x50\x6e\x15\x69\x2b\xf1\x58\xc4\x22\xbb\xd9\x38\x6c\xe9\x28\xbd\x7b\xb4\xdd\xe9\x06\xd6\x04\x37\x89\xc6\x72\x01\x07\xaa\x7b\x98\x35\x74\x09\xfd\x2e\x8b\x9c\x9e\x40\x3f\xbe\x98\x8c\x84\xeb\xc1\xab\x83\xa4\x8c\x1f\xc4\xf0\xa6\xb2\x37\xcf\x5b\x1f\x79\x63\xec\x2f\x3a\x19\xcb\xf3\x4e\x5b\x67\xaf\x9c\xa2\xc9\x5b\xe4\x61\x87\x29\xec\xdc\xef\x12\x72\xc4\xfe\xb8\x73\x7d\xb6\x37\x33\xef\x56\x33\xf7\x88\x33\x0d\x0a\x10\xe1\xd6\x34\x81\x5c\xdc\xef\x7b\x25\xc6\x70\x57\x61\xd2\x7c\xba\xdf\x25\xf0\x6b\x6a\xc9\xa2\x60\x74\xbf\xdf\x21\x3d\x3c\x3e\x61\xf7\x4e\x4d\xd9\x45\x22\x7d\xb9\xb5\x33\x9c\x5a\xdd\x0a\x12\xad\xc2\x9f\xa8\x79\xe9\x07\x38\xae\xbb\xa5\x42\x67\x7c\x38\x4a\x56\xbe\xcf\x44\x4a\xcb\x6a\xdb\xff\x65\x03\xfd\x90\xac\xe7\xa9\xc0\x76\xb4\xc8\x76\xb6\xc9\xc0\x6b\xd6\xea\x28\x91\x5f\xd9\xc9\x65\x55\x8c\xc7\x6a\x94\x9e\x1e\xa7\x72\x83\xd1\x24\xb3\x5e\xab\x0d\x62\xcf\xda\x22\x6a\xd6\x4d\x31\xfa\x8a\xa2\xb7\x33\xa5\x1a\x89\x28\x58\xb0\x9b\xb3\xe4\x8c\x97\x53\x24\x78\xef\x75\xa8\x14\x98\x60\x77\xec\x45\xbc\x57\x8f\x96\x1e\x68\xaf\x9e\xb5\x0a\xd0\x0c\x91\xe2\x51\x5c\x03\x11\x33\xa8\x70\x3d\xb5\x06\x59\xd4\x94\x8d\x02\x23\x2e\xe2\xdb\x85\x6f\x2f\x99\x91\x3d\x40\x73\xd5\x2a\x76\xff\x01\xfa\xb6\x52\x1d\x1a\x96\x3c\x63\xbc\x74\xb0\xff\x7d\x79\xaf\xd4\xf0\xa4\x9f\x46\xbb\xf7\xda\x89\x34\x69\xef\xa6\x73\x4d\x4c\x51\x38\x60\x44\x88\x4b\x56\x76\x85\x3d\x7b\xcd\x73\xb6\xd8\xa7\xf7\x83\xb0\x92\xa9\x81\x89\xc5\x69\x0c\xf3\xed\xae\x5e\x4d\xca\xf5\xba\xed\x25\xd2\x0a\x2b\x51\xab\x1a\x07\x09\x3e\x15\xd6\xa3\x38\xa1\xf7\x12\x8a\x6f\xb1\x4f\x87\x7a\x25\xaf\x1f\xb8\x47\x0e\x88\x94\xfb\x92\x32\x60\x8d\x38\x5c\x4b\x4a\xc3\x15\x99\x7a\x0a\x56\x4b\x5d\xce\x2f\x26\x77\xc4\x03\xa2\xaa\xdf\xdb\xaf\x66\xa4\xb2\x5b\xf4\x5f\x16\xb3\xfb\xcf\x44\xb1\x34\x23\x62\x02\x65\x58\x23\x07\x99\x43\x5b\x49\x72\xd3\xbb\xd3\x0a\xe3\xf1\x46\x05\x35\xdb\x98\x41\x8e\x2c\x75\x9e\x19\x80\x5f\x2f\x06\x1c\x3c\xb5\xf6\xb7\x90\x4c\x51\x50\xaf\xed\xd9\x04\x9c\x3e\x67\xe5\xfa\x91\x45\xfd\xb6\x39\xbd\x73\xe7\x56\xef\xf3\xb3\xbf\x6d\x5e\x21\xbf\x06\xb2\xa7\xc0\xd4\x4f\x37\x2e\x21\xfb\x04\x32\x8d\xa4\x7e\xc2\x06\xbf\x6d\x9e\xd9\x73\x2a\x99\xb0\xb0\x52\x9b\x19\x3c\x64\x9e\xbe\x3f\x77\x95\x9e\x81\x52\xa1\x0a\x33\x07\xb1\x4c\xd4\xb2\x4e\x80\x28\x7e\xed\x9b\xc3\xa2\x19\xa7\xcf\xd9\x59\x51\x60\xd9\x5e\x4a\x5b\x91\x7d\x55\x68\x6e\x2f\x1c\x0b\xf1\x99\xe7\xf4\x43\x46\x2e\x1c\xec\x29\xee\x71\x58\xd3\x53\x45\x9e\x5c\xa6\x6a\xce\xaa\x99\x73\xda\x8f\xd9\x62\x84\xf0\xbd\xa4\x05\x43\xa3\xd3\x58\xd1\x8e\x7d\x8e\xfa\xd6\xe5\xcd\xde\xd4\x39\xce\x8d\x68\x5f\x01\xed\x16\x1a\xba\x94\x86\xa3\x56\xd4\x06\xe1\x3f\x34\x09\x50\xdf\x52\x9f\x32\xaa\x83\x58\x0f\x87\xb4\xd4\xa6\x70\xbc\x56\xca\x54\xb6\x7a\x5e\xe1\x97\xa7\xdd\xcf\xe6\xac\xa6\xc4\x3d\xaa\x86\xf8\x1e\x53\xa1\xf7\xbb\xac\x50\x95\x8b\xba\x23\xba\x4e\xa7\x5d\x7e\x52\xba\x88\x06\x93\x32\x4c\xae\x5a\xdc\x3d\x75\x8e\xd2\xad\xcf\x7b\x6d\xdd\xe1\x9b\x11\x65\x1a\x28\xd5\x61\x47\xda\xcd\x12\x82\x28\xe6\x68\x70\x1c\xab\xed\x09\x5b\xff\xf4\xae\x7e\xdd\x9f\xbf\x9b\x1e\x4d\x4d\x58\x37\x94\x41\x60\xfa\x30\xf7\xbc\x56\x18\x19\xce\x6f\x81\x41\x55\xbe\x78\x9c\x6a\xa1\x20\x3b\x12\x96\x9b\x69\xb8\x5e\xa0\xad\x5c\xc8\x82\x2b\x35\xd8\x17\x26\xd2\x41\x90\x03\x1d\xbb\x93\x5a\x55\x25\xca\xa1\xb4\x8b\x92\x7a\xe2\x69\x3a\x20\xfb\xbc\x22\x4f\x56\x85\x03\x4e\xb5\xcf\x69\x2c\x2f\xd5\x28\x5a\xa5\x9a\xa0\xa1\x2b\x41\xcf\xcf\xa0\xed\x75\x15\x0d\xfe\x7b\x58\xc1\xb0\x4b\xa6\x0b\xd4\xcf\x5d\x22\x12\xbf\xc4\x21\xf4\xad\x36\x83\x51\x94\x80\x54\x0e\x0d\x41\x94\x20\xbb\x72\x0e\x32\x7d\x49\xf1\x8e\xcc\xad\xde\x16\x9e\x52\x68\x05\x9e\xd6\xac\xfd\xe0\x3e\xf6\xdb\x10\xab\x93\x3c\x90\x8e\x62\xe2\x05\x98\x52\xab\x5d\x49\xda\x40\x5a\x64\x5e\xef\x1c\xc5\x94\x0d\xfd\xa5\x99\xdd\x89\x6f\xc8\x91\x66\x2d\x6b\x16\xa9\xc6\x79\x33\xf1\xba\xb3\xbb\xa8\x94\x2b\x23\x61\xc6\x04\x8e\xe0\xf7\xfd\x67\x90\x6a\xae\xa7\x00\xe3\xc3\x2c\xcc\x14\xbc\x0e\xed\x53\x4b\xc9\xd9\x91\x59\x18\x6c\x57\x8e\x87\x09\x7a\xd4\x8f\x94\xc8\x50\xcb\x74\xd7\x9d\x9a\xb3\x84\x70\x92\x11\x71\xef\x56\xd1\x88\xee\xeb\xf3\x39\xe1\x70\x17\xb3\x10\x11\xae\xf2\xd1\x30\x29\x93\x4d\x9f\xee\xfe\xad\x23\x64\xa6\xfb\xc4\xf2\xef\xb8\xd4\x7b\xbc\x60\x33\xee\x18\x41\xa8\x24\xb2\xac\x50\x0a\x64\xe3\x75\x17\xac\xca\xb6\xc5\xdb\xa7\x99\x15\xc6\x57\x65\x2e\xa3\x32\x5e\x41\xa7\xf1\xef\xaf\x03\xf9\x40\x0a\x7d\x84\xd4\x29\xf4\x52\x8c\x48\xbd\x6a\x35\x22\xd9\x1d\x1a\xd1\x5d\x00\xf2\x08\xb4\x80\xea\x2a\xd7\x7a\xea\x1e\x60\xea\xac\xea\xbf\x75\x04\xf3\x41\x5d\x9e\xec\x75\xae\xf5\xef\x7c\x9b\x45\x84\x75\xfd\x26\x86\x50\x3a\x40\x03\x35\x1f\xae\xbf\x7d\xf5\x47\x36\xf5\x76\x1b\xba\x5b\xc1\x84\xf3\xad\x23\xcc\x81\x09\xc5\x64\xe5\x0a\x3b\x90\x4a\xbe\x44\x40\x60\x32\x95\x36\xfe\xa3\xac\x6e\xa3\x27\x3d\x32\x9b\xe6\x36\x94\x1f\x5e\x1e\x4b\xe1\x32\xdd\xb9\x35\x97\x96\x2d\xc4\x42\x43\x1a\xa0\x5c\x27\xe2\x1c\x7f\x51\x72\x45\xd5\x77\x14\xc0\x24\x39\x52\x25\x1d\x4d\x94\x0b\x32\x99\x50\x29\x93\xf0\xcb\xc5\xcc\xd8\x39\x52\x87\xdc\x3c\x5a\xe1\x30\x6a\xc1\x38\x78\xc1\xd0\x78\x71\xfb\xf2\xc6\xee\xec\x0f\xda\x73\xd4\x75\xa2\x5d\x65\xe7\x25\x6b\xf9\x8a\x13\xc1\xf0\x8e\x02\x0a\x36\x7d\xd0\x8f\xe6\x32\x13\x8f\xa3\xe6\x1e\x6c\x5b\x48\x59\x2c\xc9\x8c\x6c\x4a\x2b\x99\x6b\x94\x01\xa3\xd4\xa0\xd4\x27\x4e\xd6\x13\xbb\x69\x3d\x1a\xae\x89\xfc\x2c\xcd\x6d\x8d\xc2\x79\x05\x76\x9d\x56\xdd\x8f\x50\xc6\x3e\x52\x04\xa9\xc7\x94\x26\x42\x7e\xfb\xde\x6d\x82\x34\xcc\x94\x31\x51\xb1\x02\x1b\x65\xa4\x0f\x65\x0b\x3a\x27\x30\x5f\x2e\x0b\x66\x80\x93\x9b\x34\x0f\xf8\x2f\x1b\x6c\xb5\xb8\xe4\x61\x92\x9b\x2a\xd4\x17\x82\xb3\xd0\x01\xfb\x60\x54\xcb\x4e\x53\x87\x26\x35\xf6\xc3\x9d\xab\x6d\xbe\xa1\x76\x01\x0d\x63\xd0\x1d\xaf\xc4\xfe\x78\xf9\x7d\x05\x29\x87\x4e\x63\x7e\x49\x0f\xc3\x7b\xf4\xcf\xa9\x72\x38\x0d\x0e\x1b\x86\x28\xe4\x43\xbc\x33\x6a\xf4\x78\xcf\xbc\x3a\x99\xbb\xe8\x83\x4f\xd2\x91\xa4\xf6\x4f\x3b\xba\x70\x27\x99\xc6\x1d\xb9\xa9\x0e\xe5\x00\x62\xcc\x40\x8c\x48\xa0\x92\xa0\x38\xb5\x55\x4a\x9c\xb4\xc8\xa7\x9e\x7f\x50\x31\xef\x0b\x00\x4a\x0c\x17\xdf\x27\x2b\x04\xca\x9a\x0a\x31\x93\xf2\xd8\xb2\x67\x83\x11\x66\xd0\x46\x2e\xad\xb8\xe0\x38\xd6\x96\x99\x9e\xfd\xb6\xb0\xa4\xa7\xa4\x2a\xe0\xc5\xc0\xcf\xea\xda\xe2\xd6\x76\x01\x50\x73\x48\x3d\x65\x59\xe0\x74\x4c\xf3\x53\x48\x7d\x80\x90\x4c\xb0\x90\x78\x80\x42\x02\xd8\x84\x5d\x2f\xc1\xa7\xea\x54\xdd\xa6\xd1\xf4\xc1\x37\xeb\xa3\x8f\x99\x56\x7d\xac\x82\x27\xba\xec\x5f\x25\xfe\x36\xf9\x43\x73\xcb\x9c\x14\x8e\xee\xa4\xf8\xcb\x1e\x46\x21\x5c\x81\x13\x9d\xa9\x3c\x67\xb1\x7c\xc5\x0c\x43\x9c\xe7\x4c\x7d\x71\xf3\xcd\xd0\x43\x81\xd0\x52\x67\x09\x4c\x4d\xfd\x69\x73\x6d\x37\xd2\xa0\xe5\x00\xa1\xb2\xf9\x73\x2d\x6b\x0d\xfc\xc5\x4b\x62\xc0\x1f\xc3\x06\x32\x63\xd5\xe2\x9b\xfc\xaf\x7c\x55\xd6\x99\x1f\x49\x84\x7c\x6b\x9a\xd4\x8b\xba\x2b\xdc\xbe\xa8\xdc\xba\x0c\xf0\x02\xe0\x92\x2c\x97\x29\x2e\x19\x89\xc8\x51\xfe\xaa\xb8\xc8\xf3\x47\x24\x20\x45\xed\x05\x2e\x1f\x49\xcb\x59\xc5\x4e\x4c\x22\xe6\xe0\x8d\x77\xed\x52\x75\xcf\xb8\x75\x44\x17\x30\xb5\x2e\xcf\x3b\x19\x0d\xd4\xc5\xc4\x2a\x94\xdf\x07\xea\x25\xd0\x69\x88\xe7\xfb\xca\x42\x6f\xee\x17\x60\x16\x14\xfa\x5f\x41\x15\xc8\x37\x9b\xdb\x3f\x9e\xf3\xdd\x62\xce\xb0\xd3\x8c\x90\xd3\x34\x49\xb6\x62\xd6\xe5\x64\x72\x95\xad\x40\x4e\x49\xe2\x23\x0b\x73\xc0\xc9\x76\x4c\xb8\x64\xab\x22\xc0\xe7\x23\xf8\xd7\xc0\xa5\x9c\x24\xad\xda\x60\x1b\xed\x74\x0c\x42\xf4\xee\x7d\xdd\x9f\x58\x4a\xd5\x88\xdb\x2d\x5d\xe9\xce\x42\x4e\x25\xd8\xc8\x7a\xf1\x4d\x3a\x88\x18\x2e\xd4\xa9\xc5\x41\x99\x79\x06\x5e\x48\x66\xd5\x0f\x3d\xbc\x4a\xbd\xd7\xf1\x8f\x9c\x8a\xa3\x78\x3d\x96\xe2\x72\xf1\x9d\x38\x78\xbd\x1a\x1c\x7d\x5d\xbe\xc7\xa3\x49\x93\x33\xed\x1d\x7d\xe7\xc3\xf7\x03\x95\x6e\x4f\xe5\xcf\x33\x95\x08\xb1\xa8\x8e\x8f\x5d\x58\x4a\x18\x26\xa5\x2e\x9a\x89\xa9\xa9\x78\xf9\xa1\x2d\x45\xca\xa2\x14\xdf\x27\x53\x88\xec\xb5\x53\x18\xf5\x36\x1a\x3c\x05\x70\xf5\x52\x8e\x2c\xbc\x1f\x31\x0d\x1d\x88\x53\x00\xcf\x4a\x12\x94\x1b\xe3\x81\xb4\x18\x08\xde\x69\xd7\x93\x5a\xb3\x1e\xaa\x2f\x41\x3c\x12\xb5\xeb\x55\x8c\x2d\x14\x87\xcd\x72\x8b\x18\xbb\xc1\x71\x0a\xab\x54\x0e\x9e\x79\xfe\x99\x01\xe7\x10\x97\x92\x7a\x5c\xfc\xf0\xed\xa3\x81\xc1\x52\x40\xbf\x6b\x67\x54\xb4\x00\x32\x4f\x13\x10\x1c\xaf\x35\xb1\x7a\x09\x5d\x37\x81\x0d\x85\x56\x84\x4e\x2b\xe6\xce\x9d\xbc\xb0\x7d\xad\xb3\x3d\x7f\x53\x1d\x49\x34\x72\x08\x5b\x27\x6a\x15\xc1\xa4\xf7\x5f\x7f\xc7\x8e\x7f\x62\xce\xba\x4c\x86\xe2\xd2\x2a\x76\xb7\xb8\xf3\xd9\x4a\x6f\x66\x9e\xb9\xdd\xdc\x59\xc1\xe2\x45\xe8\xbf\x6f\xf6\x83\x98\x56\xde\x66\x51\xed\x69\x27\x03\x01\xbc\xe6\xc4\x74\xee\xc5\x7d\x18\x30\x4d\x46\xd3\x6e\x7e\xdc\x45\x3a\x28\x66\xae\x83\xae\x4d\x2f\x75\x77\x1a\x2b\x8d\x15\xae\xd1\x97\xe6\x70\xa1\x76\x47\xfe\x7a\x85\xf5\x11\x5a\x6a\x47\x89\x53\x84\x58\x71\x3a\x76\x95\x12\xd3\x6b\x32\xc4\x11\x82\x9c\x57\x49\xac\xd4\x9d\xbe\xf6\xb1\xbc\xb1\x7b\xb1\x39\x07\xbd\x09\x07\x60\x18\xf8\x41\x5c\x29\x3e\xf5\xf3\xb8\xa3\xf8\xec\x2f\xcd\x50\x82\x3c\xae\x5a\x6e\x36\x95\xaf\x52\x76\xd6\x6c\xc4\x43\xab\xee\x09\xba\xe0\xf3\xd3\x86\x8b\x1d\xd3\x03\x79\x78\xb7\x5a\xaa\x98\x03\x39\x2d\x29\x04\x81\x54\xcf\xba\xdd\xa4\x28\x1a\x1a\xaa\xd7\x1a\x21\xe6\x2d\x90\x24\x2a\xf3\x26\xd7\x9e\x8a\x30\xa1\xfb\xa9\xc5\x74\x74\x50\x6f\x4b\xaa\x4e\x00\x06\x1a\x9a\x6f\x9a\x57\x74\x11\xaf\xec\x20\x20\x74\x80\xa4\x87\x56\x9b\x74\x77\x2d\x79\x7d\x34\x26\x0c\x56\x39\x4d\x45\x95\x7b\x33\x20\x5e\xaa\x15\x45\x89\x4a\x76\x99\x7a\x9d\xe2\xf9\xe0\x9f\x78\x37\xea\x1d\xc4\x37\xfc\x4a\x89\xb3\xd8\xe9\xe6\xbb\x5f\x5d\xc6\x3c\xce\x7e\x16\xdc\xcc\x1e\x60\xb1\x7e\x73\x5e\x6c\x3a\x8b\xae\xb4\x0f\xbc\x29\x54\x5a\xb5\xa6\x8e\x4c\xf1\x50\x3d\x99\x2e\x88\xf8\xc6\xd7\x83\x5e\x26\x06\x7d\x17\xdc\x27\x78\x29\x7f\x75\xbc\x4f\x95\x24\xeb\xc1\xae\x3a\xa8\x31\x34\xc3\x3a\xc1\xc3\x53\xa8\xec\xb1\x5b\xa6\xc0\x63\x79\x4c\x81\xcd\xb2\x99\xaf\x32\xbf\xf4\x6c\xe2\xb8\xce\x9b\x79\xf4\xe8\xdb\x41\x1a\x99\x4c\x05\x93\xc6\x7a\x62\x16\xf3\xa8\x60\xc0\xf4\xee\xc4\x39\x8e\x46\x81\x4f\x20\xa6\x89\x00\xde\x06\xac\x7c\xd5\x9d\x60\x08\xec\x43\xf1\x5f\xeb\xb5\x24\x7c\xe5\x10\x45\xf6\x3b\x94\xd4\xaa\x83\x87\x9e\xb3\x8f\x73\x8d\x1c\x22\x9d\xf3\x7c\x31\x0b\x4e\x5a\x1f\x12\x22\x5f\x51\x12\xd3\xf8\xe2\xee\xd5\x8d\xde\x9d\xf3\x9a\xc9\xd0\x46\xf1\x48\x9c\x38\xaf\xae\x7f\x64\xd4\x45\xa3\xaf\x98\x9c\x13\x42\xce\xba\x5c\x5b\x1e\xeb\x81\xab\x49\xa2\x86\x6a\x38\x75\x8d\xf6\xf5\xbe\x76\xdc\x75\xf4\x10\x7a\xd6\x9c\x01\x46\x65\x84\x61\xdf\x42\x93\x38\xe6\x86\x74\x70\xab\xd3\xbf\xa7\x1b\xc9\xbd\xc8\x6a\x55\xf6\x79\x60\x02\x73\xde\x32\x92\xe1\x10\xc5\xda\xf6\xcb\xbe\x28\xd3\xd3\x20\x90\x89\x22\x49\xc3\x4a\xec\x84\x3c\xf8\x90\x4f\x7b\xed\x6f\x21\x87\xd6\xc7\x50\x0d\xbd\xbb\x73\xe2\xc7\xae\x34\x90\x8f\xc8\x1a\x63\x72\x69\x8f\x48\x43\xa9\xb5\x34\x41\xda\x29\x17\x8f\xf0\xbf\x19\x17\xbb\x22\xa8\x1c\x7d\x03\x5d\x64\x4b\x75\x7e\x56\x57\xee\xb1\x56\xb8\xd9\x35\x6e\x2d\xe1\xc9\xd1\xec\xc1\x0d\xe6\xa1\xa1\x1f\x87\x89\x61\xdd\xed\x4e\x3d\x86\x7d\x8f\xae\x91\xa6\x6f\xe8\x74\x97\xd4\xaf\x0a\x56\x24\x78\x2b\xb1\x2f\xc4\x7c\x58\xea\xfc\xb5\x1d\xb6\x61\xb4\xb0\x31\x8c\xe7\x04\xe1\x77\x93\xb7\x6e\x77\xfe\x17\xb8\xe1\x34\xd8\x39\x2a\x06\xa9\x40\x81\x98\x17\x25\x0a\x91\x10\x83\x6f\x68\x61\xb7\xac\xa1\xb3\xf8\x31\x0b\xe7\x85\x13\xb3\xb6\xdd\xba\x2e\x65\xe3\x6f\x67\x5d\x97\x52\x55\x09\x79\x2e\x36\x2d\x7a\xb5\x14\xae\xc0\x41\x8f\x8a\x7f\x7a\xf3\xed\xf7\xec\x54\x01\x8c\x0b\x5e\x8b\x0c\x82\x25\x25\xd9\x34\x4e\x0a\xb3\x29\x1a\x1b\xb0\xc8\xaa\xd8\x2e\xc5\x5d\x0c\x57\xf0\x05\x56\x29\xe4\x63\xa5\x49\x8e\x7b\x8e\x7c\xb0\xc8\x19\xac\x02\xda\x12\x7f\xe0\xd4\x66\xf3\xa3\x09\x7a\x2a\x22\x81\xc4\x69\x64\xf2\x9d\xbb\xad\x38\xe9\x79\x6a\x36\x0d\xbf\x5e\xff\xef\x37\x81\x93\x32\xa4\x92\xcd\x4f\xf5\xbc\x37\x54\x45\x61\x33\xdc\x79\xab\xea\xe8\xc1\x5d\xa3\x88\xfb\x6e\x03\xad\x38\x63\xe9\x77\xc2\x9a\xbd\x6a\x62\xd0\xc6\xaf\x99\x86\x12\x60\x7f\x2d\x54\xec\xd6\x3a\x0d\x84\x04\xc3\x62\xb1\x84\x0e\xe0\x79\xe4\xda\x4e\x45\xc3\x00\xe7\x12\x86\xe1\x8a\x86\xa8\x7a\xba\x08\x5c\x50\xaa\x35\xd7\x6b\x43\xfc\x16\x9b\x01\x25\xc5\x52\xcd\xeb\x13\xa6\x5a\x8f\x24\x49\x33\xe6\xd0\x4c\x94\x70\x3c\xe0\x4b\xcf\x5b\xa2\xdd\xb7\x33\xfd\xfc\x8e\x9b\x35\x7a\x15\x53\xe0\xdc\xfe\x62\xa3\x37\x35\xe7\xc2\x4f\x55\x91\xfb\x50\xea\xd8\xd7\xa1\x4f\xa5\x87\x5b\xfa\x5e\xb8\x4b\x27\x5a\x5d\x0d\xb9\xd7\x19\xb2\x4d\x7a\x47\x89\x37\xf4\x77\x11\x6b\x30\xf7\xa9\xd8\x29\xc5\x28\x28\x5b\xd2\x81\x4a\x0b\xee\xbf\x23\xf0\x9f\x40\xdb\xd9\xe9\x32\xfb\x88\xab\x6f\x31\x20\x77\xb5\x5d\x17\x3e\xeb\x1e\xf1\x87\x37\xf9\xf6\x31\xed\x24\xa9\x60\xef\xea\xd7\xfa\x9b\x9d\x85\xd0\xfe\x1e\x7e\x1a\x56\xda\xfa\x6d\xde\x79\x2e\x32\x4d\x23\x0e\x6e\x4a\x85\xea\x51\x9a\x63\x87\x6c\x50\xea\x79\xa9\xe8\x64\x75\x50\xf3\x05\x90\x26\x98\xd8\xa2\x07\x90\x59\xb8\xd9\xbf\x3c\x99\x39\xb4\x74\xce\x6f\x6b\xbf\x2f\x28\x2b\x5c\x65\xe4\xca\x7f\x02\xae\x20\x65\x4b\x1b\xe6\xaa\xda\x1e\xdb\x67\x7f\x2e\xbd\x94\x7a\x3e\x52\xc5\xf6\xb4\xd5\xb7\xa8\x59\x7c\xaf\x89\xd7\xbd\xa9\x44\x12\x9b\xd1\xd1\xfa\x93\x38\x98\xd4\xf5\x31\xde\xc6\x51\xe3\x98\xf2\x79\x66\x6d\xb8\x17\xf5\xd7\x0d\xb8\x74\x38\x96\x88\x72\xe9\x64\xa2\x85\x56\xd8\xd0\x21\xd2\x55\xc6\xa5\x97\x4c\xc6\x25\x56\x4d\xa7\xd2\x59\xaa\x6c\x96\x81\xf2\x7f\x37\x63\x8b\x07\x9a\x15\xf9\xa4\xa0\xd3\x0b\xe2\x18\x4e\x8a\x2b\x4c\x6b\xf5\xaf\xc7\xd4\xf4\xbc\xf4\x57\x71\xab\xf2\xa2\x9f\x3e\xd3\xf3\x5a\x72\x96\x22\x00\xe1\xc4\x8c\x9f\xb0\xd9\xae\x0d\x89\x17\x59\x7b\xfb\x22\xc2\xe4\x30\xa6\xd2\x7a\x59\x2d\x02\x73\xaf\xcc\x28\x53\x7c\xec\xeb\x13\xd5\x99\x9b\xda\x2b\x33\x4b\x8e\x33\x84\xa4\xec\x62\xa8\xab\x01\x34\xe4\x3f\x29\xb8\xd9\x23\x9f\x6a\x92\xc8\x60\x1a\xbb\xe3\x4f\x0a\x19\x59\x7c\xfe\x1b\x13\x4c\x25\xfa\x61\x30\xe8\xf0\xcd\xd9\x68\xc6\x08\x63\xb0\x05\x63\x3b\xda\xa8\x77\x58\xcd\xfd\x81\x8a\xe7\x6c\xed\x17\x85\x8a\xc3\xe4\xef\x69\x9c\xb0\xd0\x8b\xa9\xda\x5d\x3f\x37\x9a\x83\x1c\xd6\x46\xe6\x63\x87\xe4\xa3\x7b\xd9\xe4\x05\xe3\x18\x20\x80\xde\x2f\x6b\xe8\x5a\x79\xd2\x39\x33\x1e\xa2\x06\x3b\x1f\x12\xe1\x2e\x7c\x9c\x44\x51\xfd\x58\xa1\x3c\x8c\xee\x12\xe7\x0a\x98\x91\xc8\xf8\x50\xe2\x59\x29\xc8\x5f\x85\x97\xe2\xe2\x4b\xc1\xf6\xd2\x05\x80\x73\xe1\xa5\x51\xf8\xdd\x9b\x3e\x4d\xbf\x47\xe0\x37\x93\x29\xfa\xb3\x8a\x7f\x2e\xdc\xa4\xdf\x63\xf0\x7b\x77\xe2\x9e\x2a\x02\x3a\x07\x1f\xba\x53\x3f\xf7\xaf\x4d\xd3\x87\x71\xec\xe6\xe1\x8f\x52\x1e\x87\x70\x4b\x54\x29\x5b\xa3\x8c\x33\x5a\x6b\x00\x3d\xa4\x2f\x64\x66\xb2\x86\x1f\x47\xa2\x76\x8b\x53\x3a\xea\x41\xab\xe5\x71\xfe\xc2\xe3\x8e\x85\xe1\x71\xfa\xdb\x8c\x0d\x43\x27\x23\x9c\xf7\x55\x0f\x3f\x1e\x96\xb9\x23\x98\x02\xfe\xdd\x2a\x8f\x95\xd4\x1c\x60\x02\xf4\xb7\x9a\x01\x0c\x0f\xc0\xaa\xb6\xa2\x26\x66\xc6\x38\x56\xa8\x86\x43\xe5\x76\x1d\x6d\xd7\x24\x8b\x3c\x2a\xc0\x28\x10\xad\xfb\x4e\x48\x8c\xff\x1d\x31\xf6\x31\x41\x09\xd7\xb5\x6f\xb0\x78\x87\x18\x23\x73\x1d\xed\xd2\x12\xb1\x54\x06\x9f\x5a\xa3\xd9\x56\x5a\x05\x13\xc1\xe3\x06\xf5\xed\x06\x6b\xc2\x41\xd2\x5d\x3a\x21\xa3\x7e\xdb\xfc\x3b\xe7\xe6\x07\x14\x28\x0d\xd2\x9d\xed\xea\x36\xb4\x24\xf6\xec\x7f\xfc\x07\xd9\xca\x82\xc8\xf6\x9f\xff\x19\xbc\xf3\x87\xe7\x02\xf1\x08\x9d\xe8\xa0\xec\x76\x63\xc9\xa9\x3a\x5a\xfe\xf4\x8f\x5e\x6d\x90\x3e\x7f\x3e\x85\x36\x99\x9e\xfd\xbb\x78\xeb\xa4\x22\x3b\x89\x6a\xb0\xf0\xff\x03\x00\x00\xff\xff\x23\xa8\xda\x0b\xcb\xd3\x00\x00") func confLocaleLocale_jaJpIniBytes() ([]byte, error) { return bindataRead( @@ -4459,12 +4459,12 @@ func confLocaleLocale_jaJpIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 52339, mode: os.FileMode(493), modTime: time.Unix(1446027988, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 54219, mode: os.FileMode(493), modTime: time.Unix(1448150140, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_lvLvIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xcb\x6e\x1c\xc7\x96\xe0\x5e\x80\xfe\x21\xad\x86\x60\x1b\xa0\xca\xb0\x3d\x2f\x18\x2e\x7b\x64\xcb\xd7\x97\x96\x44\xb3\x4d\x59\x8b\x36\x84\x72\x54\x65\xb0\x18\xac\x7c\xd4\xcd\xc8\xa4\x4c\x36\x1a\x18\x6d\x7a\x35\x3b\x6d\x66\x79\x35\x77\x37\xfa\x80\xbb\x18\x8f\x57\xc5\x1f\x99\x2f\x99\xf3\x8a\x67\x66\x51\xf4\xbd\x3d\xed\x85\xc5\xca\x8c\xc7\xc9\x13\x27\x4e\x9c\x77\xa8\xed\x76\x51\x6a\xbb\x9a\x3f\x37\x7a\x5d\x99\x62\xb8\xb2\xfd\xee\x55\xb9\x7b\x55\xdb\xe2\x5b\xd3\x17\x56\x77\x17\xc6\xda\x83\x62\xa3\x6c\xd1\xa9\x0d\xbc\x7d\xdb\xdb\xe2\x42\x55\x2d\x34\x2a\xbe\x6d\xef\xde\xb9\x7b\xe7\xac\xad\xf5\xfc\x64\xf7\x6a\x33\xd4\xf6\xee\x9d\x52\xd9\xb3\x65\xab\xba\x72\x7e\xd8\x9c\xb6\x5b\xd5\xe8\xca\xc0\x63\xfd\xcb\xb6\x6a\x3b\x3d\x3f\xbc\xda\xee\x5e\xe3\x28\xd0\x4f\x57\xdb\xf9\xb1\xaa\x76\x6f\xcb\xab\xdd\xdb\xa5\xba\x7b\xc7\x9a\x75\xb3\x30\xcd\xfc\xd8\x68\x37\x99\xd1\x56\x9e\xb7\x43\x0f\xbd\xc7\xcf\x87\x2d\xb6\xef\xb5\xd9\xf0\xc3\x4e\xaf\x8d\xed\x75\x37\xff\x41\xef\xfe\x02\x7f\x75\x30\x1f\xbd\x78\xa9\x97\xd6\xf4\x7a\xfe\x74\xf7\xea\x1c\x3e\xa7\x52\x5b\x98\xf2\x42\x77\xd6\xb4\xcd\xfc\x39\xfe\x7b\x0e\x0f\xb6\x6a\xad\xe7\x4f\xe8\x5d\xaf\xeb\x6d\xa5\xa0\xc7\x89\x5a\xab\x5e\x5d\xe8\xbb\x77\x2a\xd5\xac\x07\x6c\xf1\x1c\x51\x00\x6d\x56\x9d\x86\x16\x8b\x46\xbf\x04\xe0\x2e\xb4\x29\xdb\x7e\x36\x9b\xdd\xbd\x33\x00\xea\x16\xdb\xae\x3d\x35\x95\x5e\xa8\xa6\x5c\xd4\xf8\xf5\x4f\x00\xd0\xb6\xc7\xf9\x0b\x7e\x37\x14\x43\x03\xe8\x34\x1d\xa0\x8f\xbf\x47\x97\x80\x81\x85\xb2\x11\x12\xce\x01\xfc\x62\xb3\x7b\x85\xc8\xc6\x71\x1b\x55\x47\x43\x5d\xec\x5e\x75\x25\x62\xb8\x56\xa6\x9a\x7f\xf3\x60\xab\x6c\x6f\xf1\x3b\xac\x7d\xd9\xc2\x32\x1c\xab\xae\xad\x34\xe2\x65\xd1\x5f\x6e\xb5\xfc\x2e\x54\x0f\x23\x76\x30\x84\x81\x8f\x50\xdb\x7e\x75\xa6\xe6\xc7\xf0\x64\xa9\x86\x12\xa7\x6b\x71\x4c\xec\xb5\x6d\x01\x6b\x6d\x77\x09\xf8\xdc\xb6\x57\xf8\xa7\x39\x87\x57\x6d\xb7\x56\x8d\xb9\x52\x3d\x62\xef\x7b\xfe\xb1\x7b\xb5\x22\x1c\xd6\xa6\xeb\xda\x6e\x7e\xb2\x6d\xd7\x03\xad\x3e\xa0\x67\x81\x23\xcd\xbf\x53\x43\x03\x94\x94\x8c\x84\x2f\x6b\xb3\xee\x10\xd3\xf8\x5e\x15\xf8\xcb\x8d\x85\x6f\x4f\xdb\x6e\x23\x5d\x55\x5f\x22\xc5\xf4\xca\x4c\x0d\x03\x40\xc9\x10\x6d\x06\x91\x6a\x60\xd5\xe8\x3d\x7e\x24\x10\x70\x09\x83\xa4\xad\x60\x0c\x55\xd6\x80\x7c\x22\xda\xf9\x43\xfc\xbb\xf0\x04\xac\x56\xab\x76\x68\xfa\x85\xd5\x7d\x6f\x9a\xb5\x9d\x3f\x6e\x9b\x5e\x15\xb0\x34\xbd\xc2\x35\x1a\x6a\x40\xa4\x7f\x79\x98\x3c\xbe\x6c\x07\x4f\x0c\xf3\x67\xea\xc2\xca\xea\x5b\x79\xe5\xbb\xc1\x3b\x93\x0d\x49\x1f\x66\x17\xa7\x5a\x97\xf4\x69\x43\x3d\x14\xdb\xea\xfa\xad\xad\x91\x58\x87\xaa\x02\xc4\xfe\x69\x80\x2e\x30\xe9\x15\x90\xc0\xf5\xbf\xc2\x7b\xa3\xb7\x9d\xb2\x6e\x08\xd8\xc1\xd0\x60\x7e\xdc\xb5\xcb\x6a\xf7\xba\x56\xb4\xb0\x2b\xd5\xac\xf0\x2b\x7b\xf8\x7f\x8f\x0f\x7e\xb2\x5a\x75\xab\xb3\x17\xf8\x15\xf8\xc7\xfc\xa9\xde\x40\x73\x26\xe7\xbd\x64\x80\xf4\x18\x68\xd1\xca\x64\xf3\xc7\xbb\x5f\xaf\xdf\xd2\xfe\x68\x4b\xf8\x25\xc4\xf4\x93\x69\xe0\xd3\xaa\x0a\xe6\x90\xbf\x80\x49\xe0\xbf\x6e\x99\x7a\xd3\x03\x86\xe2\x67\xb6\xb0\xed\xee\x57\x03\x9f\xd4\xd5\x2d\xac\xb8\xb9\x82\xbf\x55\x05\xdf\xf9\x5b\x0b\x60\x97\xed\x6a\x03\x1b\x0d\x59\x09\xc0\xf1\x9d\x02\x96\xb4\xb6\x05\xec\xf7\x4d\x51\x11\x50\xb6\xb8\xd2\x75\xf1\x88\x9a\x1d\x14\xe6\xaa\x52\x16\x9e\x03\xa3\x03\x8a\xd8\xbd\x5d\x9b\xe2\x73\x55\xf4\xaa\x5b\xeb\x7e\x7e\x6f\xb1\x84\xed\xbd\xb9\x57\x9c\x75\xfa\x74\x7e\xef\xbe\xbd\xf7\xc5\x85\x2a\x81\xd8\x1a\x84\xe3\xf3\x8f\xd4\x17\x07\x04\x06\x6e\x8e\x02\x30\xdd\xec\x5e\xf5\xc5\xf5\x1b\x75\x0e\x9c\x10\x98\xc9\xee\xd5\x7b\x88\xa7\x3f\x0d\xc0\x63\x16\xe5\x92\xf9\x2a\x81\xd3\x68\x58\x90\x95\xd1\xd0\x16\x3a\x3f\xbd\x3c\xf9\xc7\x27\x07\xc5\x71\x6b\xfb\x75\xa7\xe9\x6f\xf8\x1f\x74\xfa\x14\x19\x41\xf1\xcc\x3c\xfa\x0a\x10\x0e\x03\x30\x32\x1e\xa9\x7e\x28\x96\xbb\x57\x57\xb0\x29\x53\xca\xc0\x26\xb8\xa1\xe3\x16\xc8\x81\x2c\xb2\x64\xdb\xc3\x42\xd9\xa1\xb3\xa5\x82\xa5\x9a\x5a\xa8\x11\x83\x80\xf1\x88\xb3\xc4\xe3\x35\xad\x55\x83\x30\xf6\xa5\x43\xf3\x51\xf2\x3d\x06\x51\x09\xa3\xf2\x87\x15\x87\x47\x47\xdf\x3f\xfa\xaa\x28\xaf\x4c\x63\x0a\xd5\xf1\xa9\x01\xfc\xbd\x3e\x1f\x00\x6f\x5b\x60\x78\xfd\xe9\x7f\x59\xac\x75\x03\xdc\xad\x5a\xac\x0c\x7c\xab\xb5\x15\xb0\x47\xa0\x93\x93\x93\x27\xb0\xc4\xd7\xbf\x41\x6b\x02\xb0\x3f\x9b\x7f\xad\x81\x92\xde\x40\x9b\x3f\x55\x88\x57\x81\x20\x47\x58\x51\x46\x30\x9f\x02\x1f\x54\xc0\x28\x3a\x05\x00\xc2\x22\x01\x56\xe0\xb3\x15\x4c\xa4\xbb\x6e\x01\x3c\xbd\xbf\xc4\xf5\xa1\xe1\xd3\x4f\x69\xda\x0e\x4f\x3f\x60\x0c\x37\x4e\x90\x0f\x3d\xc8\xd0\xa6\x01\xbe\x62\x4a\x58\x38\x87\xca\x51\x57\x8f\x4f\x20\x8a\x0b\xc0\x8e\x85\x77\x78\x40\x15\xd6\xd4\xcb\xb6\x1a\x6c\x71\x6f\x76\x0f\xcf\x84\x7b\x0f\xee\xc1\xa8\x4d\xbb\x60\x96\x84\x27\x48\x69\xac\x5a\xc2\x69\xc2\x07\x5c\xc7\x9c\xd7\x1f\x72\xb8\x5b\x06\x19\x55\xf5\x16\x76\xee\xba\xc7\x73\xbb\xde\xbd\xee\x8a\x46\x5d\xc0\x3a\xf1\xf1\x04\xf0\xe3\x90\x3c\x44\xdb\x29\x58\x95\xa6\xb7\x09\x76\x1c\x1b\x14\x02\x79\x38\x6e\xaf\xea\xc2\x74\x05\xf0\x13\xb3\x86\x5d\x60\x0a\xd8\x03\x8c\x3c\x38\xd8\x88\x9c\x66\xb8\xdf\xdd\x2a\x33\x25\xd3\x5e\x00\x71\x02\x76\x4a\x87\x5b\x4f\x67\xf4\x8c\xc2\x48\x74\xb4\x35\x29\xf9\xb9\xb7\x9e\x08\x69\x3a\xdc\xcb\x29\x13\xf7\x7d\x06\xd8\x9b\xda\xf4\xef\x31\xf3\xe2\xe5\x8e\x78\xd7\x50\xac\x2b\x05\xab\x82\x0b\xa9\x84\x44\xa2\xa6\x6e\x9a\xe7\xc6\x1a\x12\x85\x54\x0f\xfb\xa6\xa2\x4d\x0f\x90\x47\x47\x8f\x01\x76\xb3\xb1\x32\x1a\xa0\x42\x38\x42\x69\x3a\xbd\xa1\x06\xbb\x57\xc8\x40\x07\x90\x54\x70\x0b\x82\x00\x64\x2a\x3c\x61\xab\x68\x2f\xba\xb7\x6e\xd6\x20\x27\x10\x9e\x61\x88\xe5\x35\x50\xa5\xc8\x03\x02\x32\x4a\x35\x20\x37\x81\xb0\x16\x83\xa3\x80\xa6\x36\x88\xbb\x00\x00\xd0\x30\x50\x14\xa1\xdf\x8d\x44\x2c\xd4\xe2\x32\x22\x7b\xbc\x7e\xb3\x7b\x1b\xe0\xc1\x9d\x52\xb6\xc8\xe0\xe6\x8f\x5a\x20\x9f\xc6\xba\xdf\x0e\xbc\x67\x0a\x79\x51\xaf\x37\xf0\xb6\x38\x39\xf9\x63\xb1\xa9\xda\x66\xf7\x5a\xe0\xfa\xf1\x87\x27\xb4\xa9\xcf\x16\xdb\xb6\xeb\xe7\xf8\x1e\xff\xb0\xe1\x99\x1b\xe7\x18\xfe\x56\x05\x1e\x69\x1d\xca\x98\x43\x37\x38\x6e\x52\x7c\x07\x27\xdc\x40\x63\xa3\x0c\xaa\x3b\x03\x0d\x80\xac\x11\x3e\x5c\xf3\x7e\xd8\x5c\xbf\x19\x0e\x0a\xf8\x5c\x20\xf9\xdd\x6b\x10\xd3\x50\x48\xf2\xbc\x08\x3a\x02\x0c\x67\x7d\xbf\x65\x20\xfe\xf8\xec\xd9\xb1\x83\xc2\x3f\x9d\x02\xa3\x00\xf1\x74\x85\xa0\x28\x46\x08\x90\x26\x9c\xd5\x20\x9c\xd4\x80\x80\x02\x70\x47\x5c\x18\x1a\x9d\x23\xc3\x00\xe6\xc1\x3b\x0d\xfe\x9d\x31\x8d\x0e\x5d\x15\x11\x30\xe0\xc2\x3f\x9e\xc4\x1e\x02\xf6\x11\xfe\xef\x64\x84\x44\x5c\x34\x4d\xe2\x9c\x12\x3e\xf1\x0a\x3e\xd0\xc2\xf2\x01\x87\x42\xde\x63\x15\xf0\x28\x4b\x3b\xad\xdd\x22\x37\xf0\x5b\xed\x48\xfb\xad\x99\xef\x32\x12\x13\xa5\xd9\x37\x32\xfa\x56\x6d\x54\xb5\xc5\x6f\x1d\x09\x34\x35\xe0\x8a\x4e\x93\x93\xa7\x80\xc1\x2e\x39\x52\xe8\xe5\x69\xd7\xd6\xf3\x13\x07\xd4\x79\xfc\xd8\x7d\xb0\x9b\x46\x95\xd0\x5f\x1f\x14\x3f\xfc\xe1\xeb\xe2\x3f\x7e\xfa\xc9\x27\xb3\xe2\x11\x30\x02\x20\xe9\x82\x68\x12\xb6\x60\x83\x32\xe9\xf5\x1b\xe3\xbf\x9b\xbb\x10\x1b\x06\x21\xb0\x86\x0f\x02\x24\xdc\x3b\x72\x6c\xe1\x5e\xf1\x39\xb7\xb4\xff\x55\xff\xa2\x40\x5a\xd7\xb3\x55\x5b\x7f\x31\x43\x81\x0f\x64\xad\x8e\xb7\x5c\x80\x4e\x65\x03\xfb\x76\x9e\xd7\xc5\x6d\xb7\x5e\x72\x66\x8d\x62\xb1\x6a\x9b\x53\x10\x00\x50\xba\x43\x0a\x00\x3a\xeb\xbc\x8e\xe1\x0e\x04\xb5\xb5\xbd\xd9\x76\xc8\x28\xf0\xd1\xc0\x53\x2c\x1a\x10\xb4\x4f\x2f\xa3\x9e\xda\xe3\xfe\x0a\x64\x36\xc4\xfd\x80\xb8\x23\x62\x5f\x90\xde\xb5\xd2\xb2\x4c\x27\xf4\x50\x21\x3d\xac\x0c\x9c\x25\xac\x95\x0d\xd9\x52\xb5\xa7\xa7\xc0\x9e\x34\x9f\xa4\x61\x9e\xa5\xbe\xb2\xb8\xd5\xb5\x75\x47\xeb\x90\xb6\x85\xad\xb0\x05\x1d\xea\x61\xef\x7a\x7c\xfd\xe8\x08\x0e\x6e\xe0\x08\x40\xf8\xe5\xb0\x61\xae\x2a\x7d\x77\xaf\x0e\x90\x85\x1b\xa1\x84\x81\x0e\x5b\xe1\x80\xb0\x19\xd6\xa4\x3c\x02\x13\x6c\x5a\xd9\xb7\xc4\x4c\xe4\xe0\x82\x5d\x74\x01\x7a\x54\x17\xcd\xf5\xad\x3c\x8a\x48\x70\x18\x77\x18\x81\xe8\xbb\x09\x4a\x00\xed\x17\x2d\xfc\x43\xc0\xd1\x2f\x7c\x8b\x7f\x0c\x6b\xe0\x13\x00\x59\x85\x90\xbd\xee\x23\xb6\x6b\x88\xaa\x84\x63\xe0\xb1\xb1\x81\xe3\x17\x9a\xb4\xc4\xea\x5f\x57\x43\x04\x79\x72\xe4\x06\x30\xfc\x58\x43\x20\x04\x3a\x87\xa7\x7b\x8e\x3e\x63\x6f\xff\x03\xc4\x28\x40\x97\x9c\xd4\xa8\x77\x03\xa1\x59\x7f\x92\x03\xf7\x03\x7d\xc0\xc6\xc3\xe0\xd9\x3c\xd0\x61\xde\xd0\xf4\x4e\xb3\x0b\xf4\x50\x76\x2d\xb2\xfb\xa5\x22\x1d\x6f\xc8\x5b\x0a\x8c\xf1\x01\x14\x68\x1c\xfa\x03\xcd\x1d\x04\xfd\xa2\x07\x1a\x04\x19\x19\xff\xc8\xc6\x9d\x89\x2c\x0c\x5a\xa7\x68\xf5\x0b\xd8\xdf\x2f\x23\x40\x62\xa9\x18\xfa\x0d\xb0\x56\x78\x5a\x5d\xb1\xba\x7e\x00\x22\x35\x7c\x3f\x6a\x3a\x1b\x58\x59\xd2\xd6\xed\xf4\x98\x02\xf2\x33\xc0\x58\x3c\x46\xba\xd2\x9d\x1f\x8b\x87\x3a\x80\xf9\x6f\x68\x0c\xa0\x6d\x50\x85\xe9\xdd\x42\x48\x53\x91\x31\x80\xec\xc6\x3b\x9f\x74\x80\x7a\xe6\xb4\x48\x51\xea\x58\x0f\x38\x02\x01\xac\xc9\xc4\x66\x59\xc4\x09\x69\x0c\x84\xe4\x2b\x54\x75\x0e\x22\x21\x01\x65\xe9\xc3\x47\xf3\x8f\x81\xeb\x5f\xff\xab\xae\x47\x52\x9c\x48\x03\xca\x12\xac\xc8\x29\x8d\xdd\x18\x0f\x0d\x73\x12\xd6\x69\x37\x13\x9a\x2b\xb7\x9a\xb6\x2c\x64\xe2\xa0\xd3\x17\x84\x1b\x46\x72\xa2\x63\x7d\x78\x42\x13\xf3\xf4\x03\x67\xc6\x09\xd1\xfe\x16\xeb\x16\x75\x65\x56\xf7\x40\x08\x46\x11\x05\xcd\x2e\xb6\x5f\xac\x4d\xbf\x40\xde\x02\x5a\xaf\xe8\x92\xc5\x56\xac\x13\x80\xb3\xf7\xe1\xf5\xfb\xf0\x1d\xb0\x77\xcb\xe1\xb3\xe2\xfe\x85\x53\x10\x3e\x45\x46\xbb\x80\xed\x0f\x2a\x00\x50\xf5\x9c\xc5\x88\x0b\x36\xee\xe0\x92\xf7\x4b\x55\x21\xdb\x15\x01\x1f\x30\x0c\x63\x5f\x01\x7d\xe9\xf3\xc0\x26\x48\xc4\x00\x05\x7d\x65\x40\xe4\x6b\x8b\x25\x32\xf3\xae\x95\x61\x06\x64\x6e\xf7\x81\x80\x8e\xbe\x79\x7e\x78\x52\xac\xdb\xe5\x00\x02\x9d\x7b\x39\xc3\x8f\x63\x35\x00\x94\x00\xa1\x81\x7d\x4a\x9c\x25\xc1\x1c\x30\x05\x6b\x6d\xf9\x33\x5c\xe7\x49\x99\x75\x42\xab\x41\xf1\xb0\xd1\x9b\x16\x65\x3d\xc5\x43\x78\x61\x12\x51\x51\x2b\xd8\xd5\x53\x42\xa7\x4c\x7d\xfd\x06\x27\x47\x71\xc6\xc4\x6f\x61\x24\x5b\x3c\xf8\x02\xfe\x0f\x98\x55\x17\x9a\x8f\xbe\xb5\x5b\x92\x23\xe8\x53\x82\xdc\x45\x42\x88\x48\xbe\x48\x56\xd0\x64\x10\x16\x96\x7e\x4e\xb2\x25\xa0\x3b\x03\x2c\x44\x3c\x26\x48\x8f\x0c\x26\x13\x3b\xac\x56\xda\xda\xf9\x13\x65\xb6\xa0\x55\xd2\x92\xa9\xfa\xbd\xe2\x29\x72\x43\x20\x38\xbd\x22\x4e\x45\x6c\x03\x98\xc0\x77\x24\xa5\x5d\x05\xb1\x10\xe9\x0a\xb8\x16\x0e\x0e\x0a\xd1\xc0\xdf\x49\xa7\xf3\x7b\x64\x96\x40\x0b\xe6\x0b\x50\x91\x59\xbf\x68\x01\x53\x5d\xbe\x0b\xe8\xb0\xd0\xb9\x71\xcd\x35\x76\x5b\xc2\xbe\x34\x80\xee\x85\xb7\x81\x22\xda\x7a\xfd\x4b\x3f\x7f\x8a\xe6\x02\x64\x97\x62\x13\xdd\xfd\xca\x3b\x5d\x83\xf4\x83\x22\xc2\x25\x2d\xb8\x85\x76\x8d\x49\x94\x0b\xdc\x66\x15\x20\xb8\xc5\x23\xe4\x42\x4b\xb3\x13\x55\xaa\x6e\xc9\xdb\x3d\x6d\x0d\x23\x81\x3e\x44\x03\xc1\xbb\xdc\xbe\x05\x6f\xd9\x36\x27\x33\x59\xb4\xd0\xed\x7e\x85\x7e\xc4\x48\xd9\x92\xbb\x51\x62\x60\xa5\xd5\x77\xe6\xa3\x19\xac\x1f\x19\xab\x18\x02\xde\x58\xd1\xdc\x2d\x5b\x78\xc4\xce\xfb\x42\x4c\x46\x31\xf5\x92\x31\xeb\x27\xe0\x4e\x68\x63\x0a\x76\xd3\x85\x58\xd6\xbc\xfd\x94\x8f\x35\x66\x84\x91\xf0\x75\xa6\xb7\x28\xa9\xd5\x96\x4c\x7c\x48\xf7\xa4\xb8\x7e\x59\x38\x43\x29\x42\xdc\xab\xb5\x2a\x61\x51\x6d\xbb\x32\xaa\x5a\xbc\xbb\xf3\x89\x22\xe9\xc8\xf8\x9e\xe9\xc1\xcd\x46\x5c\x50\x8a\xe1\xd4\x06\x0a\x68\x5a\x64\x0d\x07\xe9\x69\x4d\x7b\x50\xb9\x43\x5d\xcd\x8a\x27\xc4\x52\x0e\x60\x6b\x5c\x11\x2f\x44\xc0\x80\x7b\xe3\x7e\x45\x9d\x20\x61\xdc\x63\x29\x03\xc1\x44\x66\x79\xc3\x84\x36\x88\xb1\xa9\xb4\x99\x83\x82\xe8\xab\x75\xbd\xc4\x31\x35\xd9\xfa\xc4\x1a\x5e\x00\xe7\x84\xf5\x00\x99\x7a\x0d\x4c\x22\x70\x70\x10\x87\x0c\x8a\x75\x8e\x7b\x63\x03\x3d\x6e\x60\xa4\xc1\x97\xde\x06\x0f\xcc\xe6\x65\x66\x4d\x11\x0c\x07\x33\xfc\xb9\x5f\xa1\x99\x3f\x3d\x58\x30\x22\x11\xd9\xea\xa6\x77\xd8\x16\x63\x6f\xf6\x75\xee\xbb\x2d\x71\xbd\x56\x54\x21\x38\x8e\xaf\x8a\xcf\x97\x5f\xdc\xb7\x9f\x7f\xb4\xfc\xc2\x71\xf4\x03\x7f\x5e\xe0\xac\xc0\xc3\x06\x8f\x34\x3e\x62\xfb\x01\x76\xf6\x06\x58\x79\x59\xc0\x1e\x84\x73\x04\x25\x8e\x0d\x0a\xb8\x28\x79\x6c\xd5\x52\x9b\x75\x3f\x8c\x30\x0f\x00\x02\x2f\xc2\x65\x73\x32\x48\xdf\x7a\x12\x4e\x1d\x17\x38\x2b\xa8\x2b\x38\x1d\x1a\xef\xd5\x8a\x76\x30\x6d\x22\xd7\xe1\xe1\x06\x9e\x91\x08\xc2\x20\x7a\xa2\x27\x64\x54\xa6\x36\xfd\x24\x01\x12\x8b\xe3\xef\x3f\x47\xde\xab\x64\x9c\x84\x3c\x06\x42\x01\x7c\x24\x9c\x60\x20\xbe\x9b\x40\x99\x6b\x65\xc8\x74\xf2\x69\x01\xa4\x08\xa3\x90\x16\x79\xa6\xec\x62\x68\x64\x5d\x74\xc9\x54\x78\x02\x7b\x72\x63\xe8\xbc\xfb\x0e\x0f\x2c\x3a\x6e\xa2\x75\xe9\x73\x95\xaa\xf8\xc0\x2f\xc5\x87\xb3\xe2\x3b\x3c\x74\x35\x68\xaf\x24\xb6\xec\x5e\xd7\x66\xff\xaa\x0e\xc4\x63\xc3\x2c\xa9\x65\x4e\x16\x9b\x99\x43\x58\x64\x78\x01\xed\xe8\x63\x90\x97\xb1\xa7\x0a\x4e\xc9\x16\x78\x30\xda\x36\xe0\xeb\x67\x82\x4f\xf9\xa2\xa3\xd0\x83\x0c\x44\xbc\xde\x78\x58\xe0\x49\x18\x66\x1a\xf6\x20\xd5\xa9\xd0\x24\x68\x58\x62\x34\xbd\x9e\x5f\xff\x19\x14\xa6\x0c\x13\x78\xc2\x12\x77\x41\x7f\x05\x72\x00\x66\x9a\xb4\xc6\x48\x3f\x08\x12\x36\xec\x05\xd5\x13\x60\x45\xd0\xb0\x36\x8a\x3b\x17\xf4\x45\xb4\x58\xc1\xe1\xd7\x0f\xe4\xb4\x93\x81\x3d\x80\x3c\x68\xd8\xb4\x3d\x22\xad\x15\x12\x73\x5b\xdb\x1d\xcd\x64\xa1\x1f\x11\xd7\x30\xb1\x4c\x20\xd7\xb3\x3d\x0a\xb6\x46\x79\x85\x04\x0e\x67\xdf\xee\xed\x1a\xcd\x06\xc0\xb6\x6a\x80\xeb\xfa\x0d\x2d\x22\xa9\x8f\xbd\x72\x0b\xc9\x02\xce\x2c\x07\x2c\x98\xf2\xa6\x56\x44\x09\xd4\x01\x62\xdf\xaf\x6f\xdb\x85\x3d\x43\xbb\xce\xb1\x20\x65\x0d\xda\x1e\x19\x55\xcb\xd8\xa2\x50\x2b\x58\x3c\xd4\x4c\x01\xf7\xff\x89\xec\x24\x3f\x21\xa6\x5f\xc8\x5e\xc4\x03\xc8\x6d\x44\xb7\x33\xdc\x9a\xb3\x0c\x18\xef\x49\xdf\x85\x65\xd9\x44\xd8\x4d\xd8\x0b\xad\xbe\x99\x58\x05\x27\xe0\x64\x0b\xe1\xd9\xbe\x13\x73\x7e\x48\x4f\x17\x34\x1d\x6c\x06\xe0\xb9\xb8\x15\x6d\x8d\xa6\x53\xfe\x14\x58\x0e\xfc\x96\x4b\x0d\xc7\x31\x32\x98\xa6\x9d\x1f\xed\x5e\xc3\x29\xdf\x96\x68\x6b\x10\x99\x83\xda\xa2\xf1\x04\x9a\xfe\x08\x62\xe1\xd1\xa4\x8c\x8f\xe7\x34\xbd\x49\xc4\xcd\xc8\xfe\xfa\x4d\x24\xc1\x07\xf3\xc9\x71\xae\x14\xfc\xa0\xf7\x39\x19\x4f\x4e\xfe\xf8\x8c\xcd\x19\x27\x7f\x74\x16\x6a\x95\x98\x78\xff\xd8\xf7\x5b\xfb\x63\x57\xcd\xd9\x1e\x46\xb6\xb3\x63\x75\x59\xb5\xaa\xc4\xa7\xcf\x77\xaf\xbb\x1e\x69\x8d\x5e\x3c\xd3\xaa\x26\x80\x1f\x93\x16\x90\x8e\xf4\x10\x84\x0c\x7a\xf9\x30\xd5\xdb\xe2\x26\x78\x0a\xf3\x47\xb1\x56\x94\x5b\x86\x82\xb2\xa9\xc9\x9b\xf9\x73\x4e\x5d\x64\x83\xb4\xb3\x9f\x81\x34\xaa\x2d\x68\xce\x28\xf5\xf9\xb6\xae\xa5\x37\xf0\xb3\x1e\x59\xe1\xfa\xa3\x8b\x4e\x55\xa7\x20\x35\xbf\x86\xf9\x96\x43\x47\x96\x8b\x95\xd9\x92\xc9\x02\xf7\x4f\xd9\xd6\x03\xfa\x4c\x80\xb2\x3f\x78\xb0\xf8\x30\x9b\x03\x64\xa4\xbf\x7f\x9e\x83\x7c\x12\x9a\x78\x3b\x34\x1b\x60\x4e\x3f\xe3\xe9\x76\x15\xbe\xdc\x99\x8d\x41\x29\xf0\x8e\x0a\xd8\x72\xaa\xc6\x96\x24\xd9\x27\xad\x95\xd8\xf3\x2c\x6c\xc0\xa8\x0f\xef\xd2\xdd\x2b\xea\xa4\x7e\x99\xec\xd4\x68\xd9\xb5\xe8\xf0\xde\xd3\x97\xf9\xaf\x5f\x15\xe0\xb2\xcc\x87\xf2\xa3\x08\xdb\xa2\xdd\x35\x6e\xe9\x14\x0f\x34\x52\xe3\xeb\x66\x03\x82\x4b\x23\x4d\x8e\xf4\x15\xb2\x3b\x20\xb1\x0d\xeb\x9c\x9f\x79\xdf\x38\x1c\xf4\xab\xb6\xeb\xf4\xaa\xcf\xbd\xe4\x00\xb2\x55\x9b\x0e\xb7\x35\xb9\x5e\xd0\x76\x04\xa0\x77\x1a\x75\x94\x76\x16\xb1\xad\xa0\x8f\xc9\xf6\x18\x9a\x68\x87\x78\x53\x0a\x74\x66\x5e\x4f\x00\xa3\x55\x14\xfd\x2a\x6c\xe7\x75\xee\xff\xc5\x52\x6b\x90\x3c\xd4\x46\x37\x23\x4d\x05\x1d\x06\x20\xe3\x2a\x73\x85\x86\x82\xde\x8a\xfb\x76\x91\xf7\x4b\x76\xfa\xfe\xbe\x20\x01\x8e\xba\x7e\x3f\xed\x72\x99\xec\xdf\xc3\x46\x1d\x0d\x30\xde\xb4\x53\x5d\x79\xa1\xa9\x1b\x7c\x78\x99\x71\x1f\x6a\x4e\xae\x5e\x67\xf6\x47\x81\xd7\x54\x95\x5e\xa3\x21\xdc\x4d\x3b\xff\xb6\x1b\xb6\xc9\x4c\xb4\x57\xc8\x18\x00\x6a\xd8\xd0\xbb\xd0\x16\xde\x0b\xb3\x08\xc9\x7e\xe5\xc2\xe2\x4f\xa9\x85\xd1\x6a\xf1\x51\x47\xbe\x46\x50\xee\xa0\x4b\xb9\x48\x34\x7a\x36\xb0\x44\x02\x6a\x85\x42\x8e\x28\x09\x07\x6c\x91\x0c\x64\xd0\x4d\xf2\x62\xc4\x54\x38\x52\x47\xf3\x00\x39\xa3\xee\xff\xbb\x26\xda\xbd\x45\x4b\x00\xbc\xdd\xc4\x94\x70\xc3\x24\xfe\x54\xe3\x29\xf6\xcc\xc0\x82\xc4\x98\xae\xfd\xd8\xca\x45\xca\xe0\xd6\xd0\xbf\xc0\xa1\x87\x82\xd4\xab\x32\x35\x54\x68\xd0\x92\x51\x8a\x7a\x3d\xc3\x00\x1c\xdb\xa3\x86\xcb\x9f\x49\x76\xb5\xc8\x1f\xd3\xb4\x44\x3b\xbc\x69\xde\xae\x5b\x31\x11\xc1\x0a\x87\x2f\x1c\x66\xa0\x31\xa2\x17\x5f\x9c\x98\xb9\xa0\xe9\x5c\xc0\x24\x7d\x24\xfd\x48\x19\x16\x04\xa0\x2b\x6b\xa3\x2f\x53\xc1\xa9\x49\xa1\x71\x0a\x08\x8e\x16\xfc\x59\x72\xf4\xa1\x81\xc4\x92\xcd\x01\x55\x3f\xf4\x70\x9d\x5e\xfa\x51\x8f\xf6\x0f\x74\x3e\x1a\xe8\x00\xe4\xb1\xde\x9b\xe0\x79\xf3\x90\x1d\x04\x31\x0e\x1f\x28\xcc\x31\x55\x8c\xe2\xc5\x22\xf9\xa8\x6f\xd1\x40\x42\x5e\x2c\x38\x3c\x9d\xa1\x07\xce\x4f\x58\x7b\x73\x8a\x8a\x11\x0b\x23\xde\xf2\xc3\x26\x1a\x38\x28\x7a\xd8\x72\xb8\x1c\x12\xe1\xc3\xa2\x28\x8a\xfc\x72\x00\xe0\x62\xa8\x94\x96\x03\x56\x01\x52\xb4\xbe\x5b\x0a\x1f\x63\x78\x73\x3b\x69\x79\x85\x92\x2e\x11\x54\x43\x6e\x48\x44\x43\x9f\x2f\x0d\x83\x81\x3a\x0c\x05\x01\x4d\x43\x91\x5b\x44\x50\x31\x2a\xd1\xf7\xe8\xe7\x4f\x27\xdf\xc2\x2e\x92\xa9\x3d\x1c\xd7\x6f\xda\x64\x94\x41\x78\x64\x86\x07\x52\x08\x92\xd9\xf0\xdb\xfe\x5d\x51\x12\xaf\x0d\x39\xc2\xae\xff\xdc\xa2\x75\x38\x5e\xd1\xa1\x38\x6f\x41\xc1\x3c\x47\x2f\xb2\xf3\xbd\x46\x40\xc6\x1b\xf1\x20\x03\xe3\xfa\x8d\xd1\x75\x64\x38\x87\x1f\x01\x98\x6c\x1a\xc5\xa1\x29\xac\xe2\xe1\xd7\xb9\x6f\x20\x30\x39\x00\x67\xb1\xec\x54\xb3\x3a\x8b\x78\xc1\x53\x90\xf8\x76\x7f\x45\xab\xe7\x95\xea\x62\x46\x40\x32\x2d\x7e\x12\x5a\x92\xce\x54\xb3\xd6\x0b\x71\x2d\x39\x43\x1b\x4b\xd8\x14\x65\xa5\x9c\x43\x87\x2d\x30\xbb\xd7\x85\xf3\x2b\xa1\xb3\xd0\x0f\xb0\x1a\x6c\xdf\xd6\xb7\x1a\x27\xb2\x54\xa2\xd9\xeb\xbc\x05\x09\xa8\xa5\xb0\x45\xc4\x19\x22\xd3\x46\x21\x53\xd0\x3a\x33\x83\x91\x2a\x61\xfa\xcb\xf9\xf1\xb0\xac\x8c\x45\x49\x87\xf5\x0e\xc0\x63\xaf\xd1\xea\x52\x55\xed\x4b\xdd\xd9\xf9\x89\xde\x30\x72\x71\x2d\x15\xb2\x60\xe0\x38\x78\x50\x91\xd3\x02\xb6\xed\x15\x20\x74\x7d\x85\xa0\x1a\xd7\x0f\x2d\xac\xd8\x0f\x91\x84\x72\xff\x8c\xce\x32\x3c\x31\xbb\x0b\xe8\x1f\xc5\x20\x0a\xab\x7f\xff\xbe\x7d\x9f\x0e\x53\x34\x1e\x45\xc7\x6f\xe8\x0c\x9c\x01\x0e\x80\x86\x75\x5e\x82\x6d\xef\x38\xc8\x03\xe5\x60\x65\x91\xe5\x27\x17\xdd\x06\x6b\xe5\x62\xe0\x8e\x5d\xf8\xdb\xc8\xa9\x20\x1c\xd0\xa6\x5a\x82\x33\xe8\xcd\x4f\x5a\xb2\xc9\x1b\x4d\x5a\x19\x07\x8d\x54\x66\x45\x56\x24\x1b\xfc\xee\xb4\x23\x6d\x26\xa6\xdc\xbd\x53\xea\x4a\x83\xae\xfe\x88\x77\x8f\xe8\x75\x83\x49\xbe\xe5\xf0\x11\x02\xbd\xc5\x85\x59\xf9\x98\x3d\x59\x27\xb4\x91\xfb\xc8\x3d\x17\xdc\x49\xfe\x9d\x58\x01\xf7\xf2\x09\x1e\x73\xd2\x11\x45\x3d\xe2\xd0\x5e\x54\xc9\xf4\x7b\xd8\x88\x64\xf9\x88\xdd\xc1\x6c\xcc\x70\x16\x04\x93\x59\x10\x58\x51\x60\x33\x30\xee\x5e\xd4\x0e\x7b\xfc\x63\xa5\x40\xba\x41\x2e\x55\xfb\x40\x57\xe4\x06\xa7\x18\x2b\x48\x62\xc1\xb1\xa9\x1a\x5b\x38\xcd\x6f\x32\x2c\xb6\x6a\x57\xce\xd9\x99\x39\x1c\x00\x61\xdb\x12\xd5\x60\x87\x1b\xb7\x53\x24\xa0\x35\x7f\xef\xb5\x5a\x06\xdd\x6d\x25\x68\x62\x88\x21\x7a\x9d\x36\x78\x12\xd0\x6b\x25\x9b\x72\x1c\xee\xea\xa9\x4d\x38\x8d\x1d\xb5\x75\x06\x33\xe2\xc0\x86\x63\x22\x95\x8f\xb8\x70\x61\x13\x8c\x5c\x17\xb4\xe4\x6d\x28\xce\x38\x83\x86\x7b\xd3\x0c\x7a\xfe\x6c\xe8\xb6\x64\xe8\x9a\x08\x99\x74\xae\xd3\x84\x73\x04\x0f\x27\xc7\x08\xd6\x23\xfe\x31\xdd\xd1\x59\x43\x5c\xff\x73\xb6\x87\xb4\xce\x1a\xc2\x81\x26\x83\x0f\x1c\x76\xcc\x08\xb7\x2b\xf9\x32\xd0\x2f\x95\x73\xb6\xb6\xb5\x62\x64\x17\xe0\xc8\x2b\x22\x36\x60\xb6\xb3\x8f\x80\x93\xf5\x93\x1e\x27\xde\xbf\xe3\x1a\x2e\x4d\x55\x1a\x6c\x86\x8a\x39\xc8\x84\x02\x3e\xf1\x86\x85\xa9\x31\x3a\xfa\x61\xe6\x76\xc7\x8d\x83\x12\x85\x15\xf6\x80\x33\x59\x8e\x6f\x4b\x71\x10\x3c\x77\x99\x08\x54\x27\x54\x26\x40\xcc\x32\x60\xf7\xd0\x1a\xb6\xd5\xa4\x18\x4f\x92\x9b\x22\x36\x25\x44\xe4\x19\x92\x27\x6b\xb1\xd2\xb4\x55\x19\xbb\x40\xbd\xdf\xcc\x4b\xb5\x1c\x81\xec\x9b\x70\x18\x72\x08\x21\x41\xb3\xc8\x22\x69\x71\xe8\x5c\xe7\x3c\x85\xa8\x82\x64\x2b\x99\x50\x3c\x5c\x6b\xe5\x0d\x6a\x2a\x76\xdf\x79\x30\x66\xa3\x4f\xf1\x58\x11\xad\x33\x47\x84\x3f\xb4\xd5\xac\x78\x86\xd6\x79\x92\x31\xd1\x0d\x0e\xd2\xd3\x96\x2d\xda\xc8\x7f\x68\xd3\x08\xff\x3a\x6f\x9d\x80\xcc\xc0\x13\x0a\x49\x5d\xb3\x99\x96\x66\x7d\xf0\xb5\xbc\x8e\xe3\xaf\x75\xde\x94\x35\x3e\x62\xa9\xc7\x9d\xa9\xc9\x7c\x9d\xb3\xd5\x94\x8f\x92\x15\x1c\xc3\x09\xda\x44\xda\xe0\xc0\x10\x64\x87\xa5\x12\x0e\x89\xaa\x38\x8c\xa9\xba\xcb\x30\xb6\x7f\x24\x56\xbd\x43\x6f\xa2\xc3\x43\x79\xcb\xcd\x5a\x77\x72\x48\x23\x3e\x3f\x02\xb0\xf0\x0a\x59\xa5\xfb\x6e\x14\x6c\xc8\x62\x9a\xb7\xe0\xef\x7a\x44\xaf\x5b\x16\x24\x53\x9b\xe1\x01\x7f\x1b\x4b\x46\x8a\xad\xa8\x20\x8c\x91\xed\x18\xe4\x32\x77\x12\xa0\x4c\xd8\x70\x38\x94\x18\x08\x23\xe6\x05\x8b\xf8\x5c\xec\xd9\xec\xfc\xec\x1d\x03\xfb\x72\x04\x8f\x23\x8c\x6f\x46\xe7\x56\x44\x1e\x4e\x52\x53\xef\xa1\x33\xbf\x24\x1a\x66\x3c\x38\x79\xc7\x79\xec\x72\x03\x28\xb6\xce\x5b\x7a\x1b\xb5\x7f\xb9\x48\x3c\x41\xe8\xf7\x18\x7b\x7f\x28\x32\xcd\xf9\x7e\x88\x7e\x53\xef\x0f\x4a\x1e\xb1\xc3\x27\xb1\xc8\xde\xda\xd5\x33\xb6\x78\x07\x67\x4f\x00\x37\xe5\x31\xf8\xe5\x93\x24\x9a\x6c\xb1\xad\xfb\x7e\xe6\x35\xb2\x21\xbc\xac\x13\x6f\x89\x4c\xee\xc1\x79\x51\x23\x0c\x18\x74\x6a\x1f\xcb\x4a\x44\x52\xd7\x7f\x36\xa4\xb0\x5b\x45\x86\x0c\x9b\x4a\x0a\xa0\xe6\x62\x9c\xa2\x73\x44\x90\xa8\x1f\xcd\x82\x3b\xa3\x20\x92\x46\xbc\x21\xb9\x71\x2c\x26\x7c\x3e\x79\x99\xd0\x4e\x02\x52\xc9\xee\x2d\xee\x0c\x09\xec\x94\xa3\xea\x73\xdb\x77\x6d\xb3\xfe\xe2\xb9\x3a\x57\x98\xc3\xb3\x46\x96\xe4\xf3\x79\xbe\xfc\xfc\x23\x79\x5f\x3c\xdc\x82\x0c\xd4\x7b\x6d\x13\x09\x97\x42\x7e\x70\x93\x7d\xae\xa2\x80\xfb\xdd\x5f\x30\x64\x18\xed\x98\x09\x1e\x30\xf8\x9e\xe4\x1d\xec\xd0\xb4\x40\xdc\x1d\x08\x70\x49\x4f\x72\x71\xa1\xdd\x10\xe0\xef\x5b\x9a\xc3\xd2\x20\x5b\x9f\xf6\x80\xa3\xcc\x02\x11\xa7\x68\x8d\x35\x6a\x2f\x86\x46\xb6\x27\x92\x26\xb6\x41\x5e\x17\xd0\x9c\xdc\x1c\x9b\xa0\x5c\x67\x12\x46\xa8\xf3\xf1\xb8\x9f\x42\x19\x0d\x4e\xc7\x21\x0a\x58\xc6\xb1\x22\x5b\x87\x1b\x03\x23\xc6\xc6\xd6\x72\x7c\x4b\xe1\x05\xb0\x61\x4e\xd0\xa2\x15\xa8\x25\xd0\x28\x1d\x42\x31\x2a\x59\x48\xdf\x4f\x9f\xef\x79\x5e\x87\xe8\x71\x9c\xce\x7d\x91\xe7\x75\xa9\x0d\x3f\xe2\x78\x79\xcb\x09\x9e\x97\xda\x2e\x12\x8e\x37\xcd\xec\x38\x18\x6b\xb8\xd0\x09\x51\xdf\xc4\xe7\x46\x50\x38\x84\x24\xa8\xc8\xb1\x90\x73\xba\x48\xa5\x43\xb9\x97\x4c\x4f\xbc\x9c\xbb\xd7\x18\x25\xe4\xf2\x51\xfc\xda\x73\xc0\xbe\x53\xee\x38\xe6\xcb\x92\xd9\x21\x52\xef\x64\xe9\x70\x37\x69\xb7\x7d\x81\xb4\x52\xa8\xc2\xf1\xb6\x75\x73\xfd\xe7\x02\x18\x5b\xe3\x58\x17\x28\xcd\xed\x06\x68\x33\x19\xc6\xa0\x51\xab\x02\x4d\x28\x1d\xc4\xee\x1f\x24\xf0\x22\xd6\xaf\x62\x4e\x14\x31\x0d\x34\x47\xb0\xe6\xd5\x5a\x89\x31\xf4\x31\x16\x32\xb7\x36\x3d\x1b\x63\x59\xba\x43\x83\x36\x05\x8a\xda\x54\x63\x63\xb1\xdb\x74\xf1\xe8\x26\x5b\xd7\x98\x19\x0d\x12\x18\xbe\x87\x19\x0d\xcd\xd2\x34\xa8\x13\xbb\xb1\xdc\xa3\xb0\xe2\x3c\x3f\x4a\xa0\x14\x90\xc0\xa8\x51\xbe\x83\x8d\x39\xb2\xa2\x3e\x0b\x42\x6d\x8a\x0b\x50\xc6\x5b\x32\x29\xda\x40\x8e\x82\x6d\xc4\x05\x67\x3a\x48\x40\x0b\x77\xdf\xfd\x4f\xc7\xca\xf8\x74\xe4\xb6\xb2\x6e\x96\xd1\xf6\x0c\x9f\x19\xf7\x85\x64\xae\x1a\xae\x1c\x0f\x3c\x1f\xae\xdf\x08\xbe\x30\x24\x11\xe0\xee\xfd\x92\x1a\x39\xba\x5c\x98\xe2\xc0\xe1\xfd\x0f\x8f\x0f\x67\x2c\x87\x32\x75\xb0\x20\x05\x52\x22\xae\x37\xad\x87\xae\x19\x10\xfc\x83\x56\xa1\x42\x29\x75\x7a\x83\x39\x1a\xe3\x54\x16\xec\x95\x78\x04\xfd\x37\xe7\xdf\xeb\xbe\x34\x6d\xc0\x2b\xa2\xad\x9c\xee\x39\x16\xed\x68\x3b\x06\x4c\xf4\xf6\xbd\xe2\x78\x64\x61\x86\xd6\x84\x31\x60\x16\x4d\xbb\x69\x51\x53\xc0\x2c\x01\xa0\x72\xcc\x1f\x40\x65\x5a\x12\x2b\x81\x6a\x92\xc0\x7d\xdc\xe8\x28\x5b\xf5\x81\xd9\xf1\x27\x38\x76\x17\x93\x41\xe0\x79\xc7\x8e\x06\x62\x96\x24\xd0\x27\x52\xdf\x64\xf7\x8c\x11\x06\x82\x1a\xd3\x93\x30\x45\xf8\xda\x75\x1f\x2f\x8e\xda\x56\x22\xe0\xc2\x99\xcd\x84\x01\x5f\x2a\x24\x71\x13\x3b\x8c\x3f\x32\x68\x03\xe1\x73\xa6\x56\x63\x82\x2f\xc2\x2a\x1c\x69\xc5\x11\x40\x78\x98\x47\xe6\x3e\x90\xc1\x28\x34\x3d\x06\xd1\xe6\x20\x9e\xb3\xf4\x23\xd0\x38\xcf\xbb\x58\x63\x62\x57\xbb\xb4\x88\xf5\x78\x17\xef\x46\x14\x4b\xf2\xbc\x03\x0b\x78\x41\xac\xbb\x1f\x90\x8c\xc0\x01\x08\x6c\x3c\x75\x52\xca\xd1\x37\x0f\x9f\x7d\xfb\xc3\xe1\x37\xff\xf4\xcd\xd1\xe1\xc9\xe3\x87\x5e\x3a\x79\x2f\x84\xb2\x66\xa0\x3d\x8c\xe2\x5c\xfc\x02\x0f\xf9\x17\x48\x6c\x2d\xe7\x83\x46\x64\x90\xb5\x0a\x3c\xda\xf3\x21\xe6\x67\xeb\xce\xe8\x2b\xdd\x60\xb8\xae\x1c\x84\xe2\x3e\x99\x5e\xcc\xbb\x77\x7e\x42\xd3\xe2\x0b\x50\x49\xc9\x05\xb2\xfb\x5f\xde\x70\x1c\x39\xfa\xf6\xfa\xf1\x83\x2b\xd0\xe5\x1a\xa9\x25\x85\x1c\x5e\xb5\x92\x17\xe5\x1a\x93\x7d\x06\xb0\x8b\x6a\x09\xa6\x5a\x09\x97\xba\xe0\x54\x71\x15\x05\x93\x81\xb2\xe5\x90\x3c\x34\xb8\xfe\x95\xf1\xd8\x9d\x61\x6c\xa1\x35\xa0\x83\xe3\x99\xf8\x03\x79\x45\x39\xdb\x9b\x1e\xe3\x53\x07\x09\x21\x27\x4e\xea\xe5\xd5\xdb\x2a\xd0\xe5\xe0\xf0\xb5\xf3\x7b\x03\x42\x5a\x16\x18\x52\x79\xef\x0b\x58\x18\x10\xeb\x7b\x10\xeb\xb0\xc9\x17\xe3\x01\x31\x6f\x78\x85\x96\x4a\x0c\xf8\xce\x63\xe9\x29\x82\xac\xd7\x66\x65\x98\x95\x08\x73\x8c\xa3\x29\x75\x92\x7c\xf5\x4e\x40\xa0\xfd\x04\x28\x98\xbb\xec\x3e\xf0\x03\x24\x65\x8a\xdc\xe9\x7a\x0e\xde\x1c\x19\xa7\x9c\xce\x37\x84\x54\xe7\x36\x41\xca\x60\x3f\x24\xcb\xec\x86\xdd\x0c\x0f\xa5\x51\xd2\x44\x1a\x50\x6a\x8e\x6f\xd0\xb4\xf2\x78\x84\x77\xd7\x44\xa5\x89\x64\x75\xee\xcf\x8a\x5c\x0d\xde\xc1\x8d\x62\xbc\x10\x15\x11\xf8\xc3\x2d\xab\x20\xf2\x0c\xf3\xe5\x7d\xae\xbc\x7f\xe2\x4d\x5d\x64\x8d\x12\xb5\x60\xb6\x36\xbd\x59\x37\x6d\xa7\xc9\x54\x84\xa7\x6a\x65\x56\x70\x54\xa2\xf1\x0f\xfe\x5d\x69\xff\x60\xb2\x7f\xc5\x8d\xd8\xd0\x44\x30\xc1\x8a\x63\x2a\xbf\x35\x4f\x29\xd8\x91\x1f\x4c\xf6\xe5\x94\x51\xd7\x14\x4d\x43\x98\xef\x6f\xc8\x17\xd6\x2e\x80\x6c\xfa\xf9\x61\x63\x50\xdc\xe1\x58\x3d\x14\x63\x63\x84\xa3\xcc\x6a\x9c\x69\x4d\x11\xe5\x50\x62\x0c\xfc\x0b\x7b\x23\x0c\x27\x51\xaf\xb4\x72\x3e\xdc\x35\x5d\xb9\x52\x9f\xaa\xa1\x72\xce\x90\xf9\x91\xa4\xa5\x90\x06\xcc\x7e\x10\x97\x5f\x0f\x70\xf5\x1a\x25\x14\x4e\xb4\xdf\xfd\xda\x8a\xd6\xca\xcf\x61\x17\xda\xe2\x03\xd2\x77\x81\x17\x7f\xb8\xc7\x1b\x30\xcd\x26\x58\x4b\x00\xe2\xef\x80\x33\xc1\x50\xaf\x6f\xe1\x0f\xb8\x69\xa4\x91\x53\xa0\xd1\x68\x38\x1c\xb2\x0c\x5c\x95\xe6\x59\xe0\x87\xae\x59\x80\xc0\x98\xa2\xa7\xbe\x2a\x80\xcf\x73\x8e\xdf\xef\xe7\x22\x74\xf8\x27\xdb\x17\xf7\x6d\xb1\xac\x06\x7d\xef\x0b\x2b\x45\x0a\xfc\xd6\x75\x63\xd2\x22\xd1\x9c\xaf\xf3\x35\x92\x26\xb3\x15\x9c\x94\xc0\xe0\x4b\x54\xfa\xed\xfc\x71\x9c\xbf\xe7\xf3\xcb\xa6\x9a\x3a\xe1\x8f\x05\x3b\xe2\x2e\x21\x0f\xf0\xa3\x6f\x0f\x9f\x51\xfa\x1f\x1e\x01\x2b\x4a\x7f\xc6\xe3\xb5\x6a\x91\xaf\xc2\xbe\x0b\x79\x55\x6e\x6c\xe7\x93\x46\xa3\x7d\xe5\xf2\x9a\x31\xd0\x05\x8f\x19\xee\x87\xe2\x2f\x8f\x75\x40\x71\x79\xc1\x95\xc6\x4e\x44\x8c\xa1\xf1\xf9\xa2\xbc\x44\xc8\x2b\x60\x91\x88\x89\x38\x56\x64\x03\x17\xa1\x04\x3f\xab\xab\xd3\xdc\x52\xab\xa6\x38\x12\x5b\x14\x6a\x16\xd8\x22\x57\x27\x9d\xbd\xdb\xcb\x45\x65\x9a\x0d\x9c\xa0\x58\x1b\x24\x7a\xe2\x65\x95\x23\x96\xef\xfa\xa4\xbd\x0b\xda\x09\xd1\x83\xff\xf7\xbf\xff\x8f\x07\x5f\xd3\x07\x7d\xdd\x77\xd5\x83\xaf\x9d\x8f\x85\x3b\xc3\xc2\xad\x80\x49\x6c\x30\x60\x17\x07\x91\xf9\x10\xb9\xe8\x5b\x43\xc9\xa5\x1f\x68\x97\xb6\x38\x20\xbf\xe6\xa8\xea\xc9\x10\x3c\x5e\xd2\x89\x9c\xf8\xc4\x0a\x42\xe2\x08\xf9\x66\xe2\x04\xcf\x2f\x8b\x87\xdb\x9a\xea\x2b\x90\x99\xff\xc6\x22\x04\x51\x89\x14\xb2\x83\xa0\x3f\xe7\x3d\xd4\x73\x5e\x52\x2c\xd1\x11\xe6\xbf\x76\x58\x0c\x81\x7f\x3f\x97\x5f\x03\x26\x4f\x20\x7a\x38\x24\x22\x71\x14\xd2\x9b\x60\xfb\xc8\x9c\x88\xdd\xc6\x1f\x09\x14\xd4\xdf\xb4\x21\x89\x49\x31\x7f\x87\xbd\xf9\xa7\x01\x71\xb9\x1e\x4c\xa9\x41\x06\xb1\x2a\xd8\x75\x94\xc3\x4d\x7f\x66\x2c\xef\x23\xde\x1b\x63\xc6\x99\x24\x02\xd0\xf9\xb0\x6a\x6b\x0c\xd9\xc8\xb3\x01\x12\x6e\xcb\x51\x1d\x20\x97\x95\x64\xc1\x1d\x30\xee\x0e\x1d\xc6\x3c\xd7\x91\x8f\x15\x76\xce\x1f\x24\xdb\xa8\x13\xc6\xf2\x0a\xf5\x9f\x23\xcf\xcc\x8e\x3d\x39\xa8\x00\x74\xca\x86\x9f\x16\x4b\x38\xf8\xef\x00\x6d\x86\x6c\xd9\x42\xf3\xbd\xaa\x48\x66\x03\x95\x83\xf2\x4a\xee\xde\x11\x26\xfe\x50\xf8\x76\xdf\x69\x94\x13\x51\x50\x13\x5f\x37\xe6\xf5\xf7\x6a\x6d\xb9\x09\xe5\x69\xc3\x4f\xe3\xde\x6b\xf7\x02\x7d\xe4\x54\x1f\x64\x3d\x5d\xcf\x03\x0b\x81\xec\x2f\x00\x52\xa9\xa5\x46\xc3\x7c\x6f\x76\x7f\xd5\x64\x81\xa8\x4d\xa5\x6d\x0f\x6b\x84\x13\xa0\x63\x13\xf3\x43\x29\xf8\x8f\xe8\xbf\xae\x4d\x8f\x4e\xeb\x8b\xdd\xdb\x2b\x76\x9d\x76\x20\xcc\x2a\xab\x29\x07\x07\x4d\x08\x48\x28\xe8\xdd\xeb\x14\x86\xfd\xa3\xe5\xb4\xe3\xdc\x4f\x2b\x2f\x60\xe9\xa9\x5c\xc8\x73\x0a\x53\xee\xb4\x3c\xa6\x3c\x13\xec\xf4\x83\x84\xd9\x34\x71\xe7\x41\x5a\xc1\x8e\xaa\x15\xf1\x84\x63\x4e\xfa\xbe\x60\xb5\x8b\x5c\x77\xe4\xad\x61\x10\x67\x53\xa0\xba\x77\x69\x19\x13\x58\xc1\x71\x93\x53\x34\x1e\x48\x83\xf0\x14\xcf\x25\x60\x2c\x14\x3b\x1a\x35\xae\x81\x13\xa1\x73\xeb\x9f\xc4\x41\x1b\xbd\x42\x1f\x14\x25\x79\xc5\x0f\x39\x35\xe8\x39\x26\x27\x6d\x02\x56\x67\x40\xe9\x54\xaa\x04\xed\xc6\x1b\x13\x25\xd8\x60\x0d\x21\xf1\x1a\xb9\x95\x8d\xdf\xcd\xc6\xab\x18\xbd\x6c\x50\xb2\x82\xf7\xb4\x49\x35\x35\xb9\x7e\x33\x24\x4d\x56\xb0\x82\xdd\x42\x46\x71\x6c\x41\x4f\x8e\xe6\xc9\x23\xa7\x8e\xd1\xa4\xa1\x25\x71\x87\xb4\xf5\xd4\xfc\x51\x87\x16\x36\x29\xc7\x4d\x66\xdd\xd2\x59\xda\x2d\x68\xad\x31\x44\x24\x3f\x1b\xfd\x8e\x6e\xc0\x82\x2c\x66\x31\x84\x8e\x24\xa1\x4d\xf5\x34\x49\x47\x90\x10\xb0\x0e\x13\xce\x84\x9e\x43\x34\x6b\x9b\x7c\x68\xfc\x12\xdf\xce\xe1\x52\xb9\xf6\x6d\x8e\xa5\xd0\x94\x90\x24\xcd\x90\x79\x49\x3b\xe6\x82\xbe\x90\x95\xa7\x80\x04\x83\xb2\xc2\x4c\x23\x6e\xe1\xc6\x0d\x16\xdb\x4a\xad\xb4\x64\xa6\x79\x6a\x09\x22\x19\x15\xf4\x49\xe6\x95\x81\x3d\xcb\x95\xb1\x03\x5a\x68\x09\x7a\xb5\x9c\xdf\x2f\x01\x7c\xc6\x62\x18\x03\x11\xed\xdf\x3a\x24\xfb\xd7\xb0\xa1\x31\xb8\x9d\xa7\xf8\x26\x87\x3a\x7e\x0b\xe2\x24\x4a\x14\xe8\xed\x64\x3c\x49\xa0\xcb\xc4\xc7\x4a\xb7\x5b\xd0\x69\xde\x72\xdf\x24\x36\x27\x8a\xd1\x10\x37\xd3\x45\x68\xb4\x36\xd0\xe8\xa6\x69\xf6\xf7\x26\x39\xf7\x39\xcb\xb6\xe3\x37\x33\xcc\x85\x14\xe6\xff\x1c\xfd\x34\x91\x6f\x63\xba\xbd\x95\x8a\x62\x20\xf1\x5c\xb6\x03\x92\xd7\xf5\x9b\xdd\x5f\x4d\x47\xe5\x23\xbe\x23\x6e\x35\xd1\x8d\x89\xa2\x5c\x2c\x2f\xa9\x97\x44\x71\x0a\x71\x50\x6c\xd3\x44\xa7\x1a\xc3\xbd\xda\x06\x33\x9e\xb1\xd3\x37\x96\x9d\xc7\xa0\x73\xe3\x57\xe7\x5d\x2c\x26\x6f\x3c\xe6\xc8\xe7\xa9\x77\x33\xac\xbb\x66\x7b\xcf\x26\x47\x2b\x4f\x8d\x90\xc4\xa1\x11\xb0\x58\xb5\xaf\x49\xa7\x41\x2b\xec\x39\x4a\x00\x0e\x2a\xab\x1b\x9f\x58\x32\xf1\x25\x3c\xb5\x46\xa7\x21\xf7\x00\x34\x5b\x8c\xbf\xde\xbc\xb3\x57\xdd\xda\x1e\x59\x3c\xba\x63\xa0\x97\x33\x3d\x82\xd4\x01\x4f\xb0\xe4\xdd\x4d\xb3\x45\x1d\x5d\xf4\xfb\x54\x3f\xdc\x86\xb4\x2e\xf3\xe0\xfa\xfa\xe9\x93\x17\x20\x23\xde\xff\xe9\xd3\x17\xec\x25\xe3\xed\xa9\x8a\xfb\x3f\x7d\xfc\x62\xa2\xe7\xe2\x54\x6d\xf4\x9c\x7a\xed\x69\xba\x85\x83\xd2\xb4\x03\xd6\x30\xc3\xd4\x5a\x10\x73\x28\xbc\x20\xe2\x33\xbf\x00\x4d\x03\x8c\x28\xee\x65\x1c\x82\x93\xcc\x99\x41\xa8\x94\x41\x94\xae\x98\x05\x85\xb1\x44\x27\xdb\x50\x2f\xe4\xf3\x2d\x32\x10\xf9\xf0\x57\x5d\xc4\x60\xf8\x35\x6a\x8c\xfd\xfc\x67\x87\x19\xd0\x32\x01\x0b\xa6\x44\x1c\x00\xfc\x4e\x62\xfe\x07\xfe\xf5\x05\x7d\x22\x62\xe4\xe7\x30\x55\xeb\x1d\x66\x20\x95\x54\x92\x9f\x05\xc2\x89\x9a\x65\xcc\x8c\x8b\x98\xb9\x03\x23\x7b\x29\xe0\x48\xa3\xc7\x6e\xa1\x28\x9a\x3f\xef\xd1\x69\x42\x8c\x8c\xc7\x88\x49\xb2\x62\xd2\x76\xe9\xd0\xe3\xf6\x38\x87\xa7\x8c\x9c\x89\x3b\x22\x7a\x3c\x6e\xc0\x0b\x80\xd8\x73\x10\xda\xdf\x8b\x3c\x86\xd0\x8d\xd2\xcb\x20\x11\x68\xbf\x73\x3c\x16\x87\x40\x62\x3f\xa5\x11\x1d\xab\x80\x55\x45\x1d\xc1\x9f\x7f\x5e\x6c\x63\x4f\xf1\xef\x99\x61\xdb\x52\x19\x48\x27\xc6\xc9\x53\x32\x03\xa6\x25\xad\xa2\x6d\x32\xb6\xa8\xca\x1b\x97\xe6\x0a\xda\x11\xa8\xbe\x5a\x87\x60\x4f\x36\x21\xa5\x0d\x4d\xb3\x70\xc9\x43\xa4\x39\x79\x6f\x8d\xb7\xe8\x95\xc6\xa2\x42\x89\xc5\xa1\x8a\x34\x23\x39\xf1\x6a\x87\xdc\xe6\x50\x14\xc3\x13\xc0\x80\xdf\xeb\x27\x06\x15\xb8\x47\x63\x6e\xc4\x50\xb3\x80\x35\x07\xa1\xba\xd0\x21\xac\xcb\x3f\xe6\x23\x58\x0a\x03\x8d\xa5\x86\xac\xdd\xaa\xad\xda\x58\xba\xd8\x00\xb7\xb3\x6a\xd4\x08\xad\xe8\xb0\xa9\xc7\x52\x26\x37\x08\x9b\xc3\x46\xa2\xc5\xf4\xc1\xc6\x3d\x26\xbe\x92\x5f\x24\xb1\x9d\xd9\x3b\x49\x88\x0b\xd0\x62\x42\xbd\x58\xe9\xc7\x83\x50\x2c\x8f\x6f\x1a\x19\xf4\x27\x9b\x4e\x05\xf5\x88\xf8\x44\x76\x73\xb1\xf3\xb3\x88\x48\xb1\x3a\x17\xc6\x62\x08\x46\x1a\x90\xe1\x3e\x98\xa2\x31\xf6\x7b\x72\xa6\x41\xf0\x71\x3c\x02\xf5\x8d\x9e\x6d\x51\x16\x71\x03\x62\x1c\xd9\x82\xa3\xc5\xb0\xa6\x00\x99\x19\xd8\xd9\xe1\x35\xe7\x3d\xad\xf9\xab\x93\x2e\xa5\xb9\x20\xa3\xf5\x15\x65\xb1\x01\xa3\xf2\x15\x4e\xcc\x94\x5a\x8a\x41\x35\xe9\xd0\x4b\xd0\x2f\xe7\x5b\x55\xab\x5e\x8d\x66\xe5\x7f\xe7\x36\x4c\x58\x93\xf8\xc4\xcd\xe4\x3c\x15\x6d\xfb\x0f\xf0\x8b\x8c\x76\x02\x8b\x6b\x05\xec\x1f\xab\x16\x55\x70\xce\x1c\x69\x0a\xfe\xd4\xe2\x0b\xee\x30\xae\x68\x16\xda\xf5\x67\x28\xc6\x90\x99\x88\xe7\x3d\xa2\xcc\xb1\x22\x9a\xbe\x27\x47\xa3\x94\xf4\x20\x1b\x6f\x80\x8c\x14\x0c\x52\xe7\x29\xe2\x9f\xf2\xb7\x8c\x1f\x1e\x53\x14\xe2\xba\x9d\xf3\x9f\xbf\x8b\xc2\x3e\xa6\x91\x65\xd9\x42\x25\x21\xf7\x80\x69\xfc\x87\xe7\xd0\xf5\x67\x11\xcb\x40\x66\xf8\x11\xcd\xf3\x11\x8a\x04\xa5\x30\xc6\x7f\xa0\x1f\xc2\x1e\x05\xb5\xac\x71\x1c\xde\xbc\x48\xae\x35\xb1\x05\x5e\x74\x22\x4c\x8c\xa2\xdd\x56\x43\xc9\x4b\x8f\xd3\x96\x91\x82\x8d\x54\xfe\x39\xe6\x15\x3b\xb6\x4c\x7f\x53\x9a\xbe\x3c\xfd\xd4\x3f\x75\x33\xd4\xba\x5b\x3b\x21\x81\x27\x0a\x33\x9c\xab\xbf\x6b\x0a\xe8\xfc\x1f\x5e\x78\x32\x00\x45\x05\xc5\x00\xac\xd7\xc2\x21\xce\x27\x40\x24\x8d\x4a\x5f\x8f\xad\x0a\xe1\x2d\x5a\x28\xc4\xd6\x42\x26\x33\xf6\x57\x18\xd7\x44\x8e\x72\xa0\x1e\xfa\xa4\x90\x59\x1c\x8e\x4a\xe0\x73\xba\x93\xf0\xde\x3d\x88\x97\xac\x74\x54\x06\x87\x08\xd7\xe4\x80\x9c\xa5\x38\x83\x0f\xf0\x4b\x61\x63\x2a\x93\xd7\x98\xf5\xb1\x87\xaa\xc6\x31\xb1\x61\xa4\xf7\xdc\x50\x20\x08\x2b\xd8\x5b\xe4\x21\x27\x33\xa7\xc6\x5a\x2b\xd3\x43\x72\x60\x37\xed\x0d\x17\xd3\x93\x87\x2a\x3a\xfb\x70\x96\xdf\xe6\x3f\xca\x58\x60\x32\x7a\xb5\xa1\x42\x31\x2d\x85\x94\x60\x65\x19\xb2\xce\xfa\x10\x3f\x7d\x50\xd4\xa6\xdb\x50\xf6\xbb\x2b\x66\x30\x78\xd1\x9e\x6c\xaa\x12\xf6\x2e\xd4\xae\x9a\x05\xf9\x72\x08\x27\x4c\x5f\x87\x5d\x6c\xb6\x66\x13\x6d\x54\x3b\xa9\xcd\xd0\x8e\x71\x4e\xec\x84\xc6\xca\x92\xa6\xde\x83\x80\x3a\x9e\x93\xfc\x23\xd9\xb4\x99\xb9\xfc\xf7\xcc\x4b\x78\x65\x4e\x10\xc4\xa2\x5a\x64\x07\xc2\x90\xb9\x61\x76\xe7\xef\x15\x7a\x74\x4e\x79\xc4\x55\x62\x1b\xc5\x8c\x62\xa1\x3f\x2a\x86\xd6\x19\x4b\x14\x91\xd1\x5d\xca\xc4\x26\x4d\x8f\x2a\xff\x14\x37\x00\xed\x90\xa1\x91\x3d\x4f\x03\x91\x01\xd7\x02\x33\xe4\x30\x1f\x8e\x3e\x16\xe4\xb8\x9d\xa3\x9c\xce\x32\x85\x97\xf3\x5b\x70\xd1\x0f\xfe\xe1\x7e\xf9\x21\x12\x21\x55\xbc\x4c\xf2\xaf\x30\xc2\x86\xc2\xf1\x50\xf6\xcb\xb7\x1c\x39\xd5\x3c\x19\x53\xd1\x6e\xa4\xba\xfc\xfb\x28\x71\x3a\x36\xae\x7a\x9b\xde\x94\x75\x21\x6a\x36\x6d\x5f\x89\x1a\xec\xb3\xb1\xe4\x4d\x4a\xaf\xb4\x70\xf5\x9e\x18\x94\x76\x51\x0e\x40\x83\xc8\xf5\xbf\xd2\x57\xae\x62\x83\x1a\x01\xe2\xf4\x8e\xf1\xe8\x91\x46\x94\x7e\x23\x48\x20\xcb\x33\xad\x4a\xf6\xab\xe2\x81\x72\xce\x26\xf1\xcc\x40\xc7\x54\xe5\xb2\xe2\x5e\x73\x36\x83\x08\x7a\xb3\x74\xbe\xec\x78\x1a\x5b\x16\xa3\xc6\x2c\xb4\x3e\x37\x9d\x75\xce\xe7\xe8\x65\xe6\x96\x8e\xdf\x38\x74\x3c\xf3\xc5\x2b\x3e\x68\x7c\xe5\x4c\x74\x99\x26\x08\xd0\xe4\x4d\x11\x9b\x65\xf2\xce\x57\xfc\x92\x01\x51\x4b\x00\x31\xc6\x8d\x4b\x4c\x11\x77\x83\x94\xb0\xb4\x71\xd1\x2e\x8c\x58\x92\x08\x83\x50\xe1\xf2\xfd\x35\xfc\xf7\xa0\xae\x1f\x94\xe5\xfb\x53\x78\xf1\x12\x5f\x6e\xf6\x9a\x0e\xef\xf4\xa5\x7f\xdf\x4b\xc6\x0a\xb2\xf4\xcd\xe8\xc5\x76\xc9\x0a\x07\xc6\x41\xd5\x52\x1d\x37\x23\xb9\x1a\xb3\x16\x9d\x97\x68\x18\x19\x5a\x75\xcd\x24\xb0\x32\x3d\x87\xa2\x91\x77\x96\x8f\xb8\x0e\x36\x38\xd6\x6b\xc9\x29\x21\x55\x62\xa2\x37\x69\x9d\x8b\x5b\x7d\x03\x63\xed\xd0\xfb\x85\xb2\x3e\x88\xfa\x29\x04\x86\x5c\x91\x0c\x85\x5e\x61\xc8\x16\x22\x09\x04\x9a\x68\x3f\xa1\x35\xe4\xe0\x67\x8a\x03\x05\x86\xdc\x90\x01\x10\x34\x66\x97\x40\x06\x08\xbe\x49\x95\x98\x82\x6a\x2f\x59\xed\x53\x28\x2c\x29\x14\x7b\xca\xde\xbb\xc7\x33\xae\x4e\x6b\xe7\xdf\x6f\x25\x11\xcf\xbf\x89\x8a\x9b\x91\x24\xe6\xc2\xbc\xa2\x26\x67\x6d\xbb\xb1\xf3\x67\x98\x9c\xbf\xc1\xb2\x69\xbb\x57\xbb\xbf\xc6\x83\xaf\x4d\xcf\x4d\xb0\x4a\x73\xfe\x12\x74\x0a\xb3\x0a\xf5\xf5\x8f\x51\xbb\x98\x2e\xd9\x0f\x62\x0e\x28\x36\xdd\xe2\x0a\xad\xc9\x5f\x51\x80\x29\x26\xdf\xc2\xcf\x18\x18\xca\x94\xfb\x5e\x2a\x03\xc2\xeb\x3a\x4e\x9a\xf3\xad\x24\x29\xc9\x4f\xeb\xab\xbf\x85\x99\x87\x04\x0b\x9c\xb0\x83\xe7\xd1\xef\x4d\x60\xa3\xa8\x7f\x51\x24\x2d\x07\x95\xa7\x1e\xd6\x59\x34\x0f\x28\x3a\x8d\x3d\xd5\x21\xbb\x35\xca\x17\x9e\x68\xc6\x44\xea\xda\x8e\x8f\xcc\xa8\xb7\x0f\x00\x8c\x6a\x91\x5e\x44\xac\x5e\xaa\x9a\x62\x10\x40\x28\xf1\x34\x5d\xc1\xd2\xc6\x10\xd3\xa5\x0e\x54\xd0\x00\x05\x5a\xcb\xa1\x2b\x72\x8f\x84\xc2\x10\xa5\xa8\x72\x41\xed\x62\xf1\x13\x5f\xed\x44\x9c\x7d\x3c\x41\x9a\x12\x3a\x76\x4f\x67\x0d\xb3\x7d\x9b\x86\x38\xe0\xb6\x44\x4e\xcf\x81\xa7\x36\x0f\x3b\xa5\xd8\x88\x35\x70\x3b\x57\x80\xc0\xb3\x08\x9b\xa4\xe4\xd3\xbe\xe3\xba\x12\x3d\x19\xec\x31\xb9\x33\x6c\xe1\xb6\xe0\xe0\xd5\xa9\x85\xa5\x32\xc3\xb0\x83\x17\x1f\xcf\x1f\x70\xc0\xf4\x56\x5d\x61\xe1\x00\x8e\xa7\x76\x51\x9e\x86\x0a\x67\xa3\xa8\x8c\x71\x21\x51\x38\x06\x62\x2f\x24\x7c\xdf\x38\xc3\x27\x6e\x06\xc7\x1b\x6f\x3f\x43\x9a\x15\x0f\xb2\x14\x8d\x23\xc9\xfa\x98\x73\x0e\xec\x8c\x3c\x14\xa1\x1f\xf2\xb2\x29\x68\x90\x07\x8a\xcd\xca\xcb\xb5\x98\x28\x47\x29\x40\x70\xc2\xa2\x7f\x7f\x48\x64\x37\x57\x58\x36\x44\x76\x0e\xb4\xec\x4e\x96\xfc\x6c\xbc\xe6\x31\x52\xd3\x60\xd4\x5b\x44\x97\x8e\x89\x2d\x41\x61\x3a\x5e\x1e\x0e\x1a\x85\xb8\x72\x4c\xe0\x78\x13\x12\xc1\x61\x50\x0f\x9c\x52\xc8\xb3\xf1\x5a\x1e\x60\x84\xf2\x78\x7c\x2a\x50\x40\xbd\xb3\xb1\xb3\xa1\xa6\xd4\xa7\xe4\xa5\xc9\x03\x81\x5d\x45\xd9\x1b\x3e\x81\x42\x81\x88\xd8\xd4\x28\x44\x42\x92\x65\xac\x54\x8c\x76\x7a\x5f\x5e\x3d\x9f\x02\xd8\x39\x12\x76\xa3\xe8\x62\x80\x77\xcd\xf7\xc9\x9e\xf9\x24\x1e\x34\xc9\x29\x31\x3e\xa2\x72\x2f\x04\xef\x9a\xee\x53\x9e\x2e\x6c\xc1\x50\xf2\x34\xc4\x45\x25\x11\x9a\x2c\x16\x85\xed\x1d\xd7\x97\xa0\x18\x4a\x24\xcf\x64\x15\x43\x30\x25\x72\x52\xc1\x5c\xc2\xa8\xb2\x33\x25\x2a\x16\x16\x0d\xd3\xf2\x01\xbb\x2f\xb1\x5a\x4d\x6f\x69\xb6\x7a\x7f\x37\xde\xac\x51\xe3\x5a\x6d\x40\xff\xc8\xce\x8f\xa9\xc1\x38\xca\x3f\x0b\x07\xcc\x18\xc0\x54\xf2\x69\x02\x5a\x1a\x8f\xbd\x37\x0e\xdb\xb7\xc7\x6c\x9d\x20\x4a\xb4\xdd\x28\x35\x91\x8c\x73\x1c\x66\x92\x9f\x76\x79\xdf\x24\x79\xca\xe6\x3d\x5d\xee\x0a\x8f\x9e\x00\xdd\xe9\xba\xa5\x4a\xb9\x13\x63\x3d\xc9\x47\x91\x24\x46\x5f\x6b\x21\xac\x33\x96\xc3\x31\x54\xc5\x64\xc1\xa5\x3b\xa3\x5b\x5b\x46\xdc\x33\x54\x30\x61\x83\xa6\x4f\x14\x09\x20\x52\x00\x5a\xfe\x15\xb3\x0c\x01\x2f\xf5\x12\x85\xa8\x08\x6f\xfd\x5e\x81\x8b\xa4\x2d\x09\x61\x4c\x1b\x15\x18\xe1\x79\xee\x6a\x18\xa0\x34\xc6\x55\x3f\x6b\x29\x59\x8f\x7f\x61\xad\x19\x0a\xbc\x26\x6d\x80\x23\xeb\xda\x9a\x14\x03\x4e\xc8\x27\x8b\x4f\xb8\x7c\x0c\x1d\x24\x8f\x55\x49\xb2\x13\x1d\x32\xf4\x41\xa5\x95\x98\xbc\x9a\x3e\xbd\xc7\xd8\x42\x9e\x4d\x22\x24\x31\x91\x0c\x83\x28\x45\x88\xf6\xc9\xa2\xc7\xdf\x9f\x3c\x4b\x8d\x02\xb3\xe2\x09\x5e\x90\x71\x75\x25\x87\x01\x3c\xde\x50\x1e\x61\xc8\x58\xbc\x31\x3c\x2f\xc5\xc1\x50\x74\x2d\x7c\x07\x46\xaa\x82\xa8\xb9\x7b\x25\x39\x87\x1e\x79\x82\xe8\xe0\x69\x10\xc9\x63\x3f\xba\xf3\x1e\x99\x08\x92\x75\xbc\x4d\x3e\x5d\xa2\x3a\x90\xa1\x5e\xaa\x43\x5f\x48\xac\xd6\x8d\xa9\x75\x7b\xe1\x72\xb4\x9e\x11\xc5\xcd\xca\x43\x3e\xdc\xcc\x19\x94\x8e\xe3\x35\x9a\x6c\x67\x41\x5a\xb6\x2e\x1a\x43\x4f\x34\x61\x7d\x15\x14\x03\x55\x5d\x68\xaa\x0a\x32\x6a\xb2\xe5\xf2\x82\xf3\x47\x54\x23\x09\x8b\xb5\x62\x01\x85\x89\x86\xcb\xb6\xbc\xf4\x69\x96\x23\xdd\x43\x2e\x7b\x12\x05\x64\xe0\xdc\x65\x8e\x69\xa3\xaa\x4a\x48\xcf\x33\x16\x73\xd8\xb0\x55\x89\xd6\x8d\xd5\xc8\xd1\x21\x58\x90\xda\xcc\x71\xef\x2e\x8d\x17\xb5\x0f\x2a\x60\x9a\xd8\x82\xb9\xa8\xc2\x9a\x8c\x61\xbe\x08\xf4\x6c\x0c\x13\x79\xca\xa4\x38\x89\x5f\x09\x8a\xc3\x06\x35\xf7\xed\x85\x3b\x25\x5d\xb6\x1e\x9d\xfc\x78\x57\x10\xf3\x8b\x90\xb4\x03\x70\x3f\xe4\x7b\x57\x5a\xfe\x3a\xb9\x8c\x64\xf0\x77\xb0\xf4\xca\xba\xb1\xa4\xf2\xc5\x24\x3c\x94\x95\xb2\xfb\x6f\x38\x40\xe4\x54\x1c\x35\x73\x1e\x7a\x6e\x69\x73\x8c\xcb\x31\x28\xad\xc5\x7a\x91\x6f\x99\x88\xa3\x31\x06\x7e\xbc\x0a\x85\xbd\xda\x49\xbe\xc0\x5e\x03\xe4\x0e\xce\x69\x90\x5a\x0e\x99\x6b\x21\xc3\x61\x13\x37\xea\xd6\xd1\x7a\x86\xb2\x61\x24\x6e\xd0\x95\x4f\x62\xce\xe1\x8c\xa4\x32\xe8\x06\x91\x1c\xc1\x71\x63\x1f\x7c\x77\xf2\xfd\xd1\x81\x80\xf0\xcb\x83\x97\x2f\x5f\x3e\xc0\xbe\x0f\x86\xae\xd2\x0d\x3e\x2c\x1d\x4c\x9f\xeb\xfa\x8b\xa1\xef\x67\x9f\x7f\x04\x7f\x7c\x38\x2b\x1e\xe9\x5e\x52\x12\x88\x7e\x12\x1b\xa5\x49\xcc\xdb\x8e\xbf\xfd\x5b\xf2\x32\xd9\x3c\x74\xe5\x4d\x5a\x9c\x33\x3e\xc8\x71\x35\x39\xb0\x89\xb6\x0f\xea\x79\xdb\x78\x45\xad\x5e\x75\x00\xcd\x51\x8b\xf9\xaf\xdb\x94\x28\x6c\xa5\x56\x9b\x89\x22\x30\xae\x76\x4d\xd6\xd0\xc0\x74\x04\xcd\xe1\xa6\x95\x4b\x74\x46\x6d\xd8\x71\xfd\x58\xdc\xd5\xfe\xa5\xbe\xd0\x2e\x47\xeb\xb1\x68\x8b\xb4\xda\x18\x80\x70\x35\x54\x3d\xdb\xe5\x7a\xda\x82\xe6\x0a\xc9\x17\xad\x22\x82\x2e\xac\xa0\x47\x1b\xec\xcb\xd1\x88\x14\x9c\xdc\x36\xd5\x25\xdd\x4f\x11\x79\x4d\x1c\xed\x89\x02\x28\xd3\x65\x7a\x0e\x8f\x41\x85\x82\xe1\xcf\xee\x92\x1c\x93\x14\xbc\xd2\x06\xf2\x71\x1a\x08\x6a\x08\x93\x6a\x07\x8f\xc2\xc5\x60\x42\xf9\x28\x54\x03\x88\x18\xc3\x50\x13\x9d\x52\x33\xec\x9e\xf7\x92\xfa\x83\xfe\x48\xc5\x15\xbe\xd4\x5a\x39\xab\xa3\x4b\x0c\x1f\xe3\x25\x38\x0d\x12\x64\x4c\xe3\xd0\x73\xd8\x69\x0c\xa2\xd8\xbc\x47\x73\xe7\xba\xdb\x58\x6a\x1b\xf9\xde\xe8\x85\xbf\x96\x29\xe1\x08\x26\xdd\xee\x28\x64\x94\xf8\x56\xb8\x3a\x55\x3f\xb3\xb2\xea\xb9\x30\x45\x7c\x27\x95\x22\xfb\x77\x9d\x89\xd3\x22\xa5\x70\x3b\x27\x9d\x3d\xf5\xe9\x57\xfb\x84\x05\xe9\x90\x40\x90\x9f\xc7\xfd\x7e\xf3\xe6\x94\xaa\xe7\x26\x7f\xa7\xa0\xc2\xa1\x76\x28\x0f\x18\x72\x6f\x5a\x97\x27\x2f\x7a\x25\x5e\x0e\x94\x1c\xc2\x04\x25\x71\x06\x66\xf6\x92\xd4\x93\xe0\x92\x37\x6d\xe0\xe4\xc7\x87\x4e\x40\x4d\xe2\x64\x4e\xb0\x19\xc5\xbf\x61\xf2\xd3\xda\x5d\x87\x37\xba\xa5\x80\xee\x62\xcb\x38\x02\xe7\xfe\x52\x7e\xf3\x98\xa5\xe4\x17\xa1\xe5\xdc\xe4\x4c\x35\x78\x59\xe8\x63\xac\x90\x55\xd9\x04\x7b\xdb\xaa\xbd\xe4\xfa\x1e\xb0\x7d\x88\x73\x25\x05\xcd\xe2\xaf\x0c\x8d\x23\x09\xdc\x70\x2f\x97\x50\x14\x6a\x53\x78\xe3\x58\xbb\x88\x67\x41\xc7\x62\x28\xe4\x80\xca\x00\x55\x19\x9c\x1c\x46\x25\x8a\xe0\xc8\x7d\x32\xf1\x15\xa3\x5a\x13\xbe\xcd\xa8\x4e\x06\x16\xd4\x9a\x9e\x35\xaf\x70\x91\x8c\x11\xca\x65\x1c\x4e\x77\xbe\x45\xc9\x8c\x04\xab\x71\x25\x8c\x3d\x43\x3a\x6b\xff\xde\x62\x18\x53\x98\xc8\x65\xf7\x77\x2e\xd4\x44\xdf\x09\x07\xc0\xf4\x30\x53\x6e\x80\x1b\x2a\x64\x90\x67\x3a\x49\x67\xb9\x95\x30\x3f\x05\xe1\x3b\x50\x77\x73\x8c\x51\x69\x4e\x4f\x67\xcb\xae\x7d\x69\xb1\xb6\xc4\xd0\xad\x34\xd5\x53\x90\x2b\x98\xcc\x95\x3e\xf7\x17\x50\x51\x53\x0c\xb3\x01\xe2\xba\xa0\x6c\x09\x2b\x0f\x39\x0e\x63\xee\xa3\x3e\xe4\x31\x05\x24\xa4\xf7\xfc\x44\x91\x48\xde\x37\xdc\x73\x5e\x9b\x0b\x58\x98\x49\x6f\x7b\xd6\xbe\x5c\xe0\x5f\x54\x3b\xc3\xfa\x44\x14\x3b\x1a\x02\xdf\xe3\xdd\x20\x1b\x07\x24\x75\xe0\x95\x73\x87\xee\xfd\xd2\x95\x26\x93\x12\x67\x21\xf3\x19\x97\x29\x6a\xb6\x55\xa8\x65\x49\x35\x23\xce\x15\x96\x76\x51\xfa\x34\xb4\x73\xf6\x0d\x10\xba\x7c\x13\x87\x4f\xe0\x44\x5f\x1d\x1e\xc9\x2f\x4a\xa5\xe1\xf2\x84\xca\x49\x9f\x92\xfb\xea\xf3\x75\x66\x13\x79\x3b\xee\x15\xa7\x5c\xd1\xdf\xce\xd6\xc1\x6d\x42\xba\xcf\xac\xec\xd4\x69\x3f\x7f\xaa\xab\x26\xa4\xf5\xf2\x9b\x6d\xa7\x5d\x67\xb2\x66\xe3\xd5\xba\x86\x94\x48\x77\x93\xb6\x6b\x09\x58\xa3\x25\x82\x7f\x60\xb5\xc2\x73\x72\x3f\x56\x1c\xca\xe7\x9e\x29\xd4\xd9\x22\xe4\x06\x24\x45\xa1\x3f\x14\xf8\xc4\xd5\xc1\x37\xed\xf6\xfa\x8d\xdc\x5f\xc9\xc0\xc7\x13\x13\xdd\xf1\x05\x07\x87\x9e\xe2\xa2\x6f\x00\x31\xc5\x15\xb7\x58\x67\x49\xf2\xae\x01\x49\xca\x5c\x87\xd4\x64\x3d\xdd\xed\x91\x54\x2a\x92\xf4\x9e\x03\x49\x02\x16\xb3\x81\xb6\x64\x7d\xe6\xea\xb1\xc1\x2b\xee\xca\x81\xac\xf9\x92\xb4\x64\x9d\x9c\x2d\x5b\xbe\x05\x14\xf8\xc0\x94\x5d\x53\x27\x53\xbf\x04\x1d\x68\x51\x97\xc2\x90\x89\xda\xe2\x23\xf1\xa9\xea\x36\x65\xfb\xb2\xe1\x20\x51\xd7\xf9\x65\x87\x1e\xac\x1f\xe4\x92\x92\x64\x39\xe9\x7e\xb6\x63\x0e\xf9\xb6\x7c\x09\x90\xd3\xbe\xf3\xa9\xe3\x0c\x93\x1f\xaf\x5c\x84\x2a\xe9\x39\xc1\xf9\x1b\xba\xa1\x96\x10\x85\xf3\x70\x59\x40\x2d\x17\x4b\xe7\xe4\x14\xd5\xc4\x21\x53\x1b\xd0\x56\xe5\xd1\x91\xd3\x56\xd4\x2d\x15\xe3\x64\x43\x70\x6e\x3f\xc9\x6a\x8e\xb8\x89\x29\x50\x42\xb6\x0d\x17\x41\xa1\xb7\x65\xea\xb6\xc3\x18\x42\x32\xca\x9e\xf9\xf5\xee\xdd\x88\xd1\x87\xd2\x55\x59\xbc\x67\x42\xdd\xc4\xda\xed\x9e\x21\xa5\x7d\xbf\xf9\x58\x89\x1d\x8f\xe6\xc8\x73\xa1\x2a\xcc\x5d\xbf\x94\xaa\xb8\x4f\xdc\x87\x84\xf3\xb0\x8f\xe9\x77\x74\x28\xde\xbd\xf3\x53\xdb\xad\x5f\x44\xa5\xdc\x65\xe9\xf6\x95\x71\x8f\x5b\x46\x45\x22\x12\x67\xde\xb8\x4c\x04\x25\x2f\x62\xa8\xe3\xc1\xde\x4a\x11\x33\x9f\xef\x89\x45\x9a\x7d\x70\x47\x32\xb0\xa4\x5f\xb2\x24\xeb\x2e\x2f\xf1\xc1\x6d\xba\xdd\x22\xc3\xa3\xda\x25\x14\x1c\xdc\x5c\xe0\xbd\xd0\xb6\xad\x35\x3a\x6e\x7f\xbc\x52\x66\xc5\x8a\x2e\x11\x23\x97\x9f\xb7\xbe\xde\x3c\x56\x36\x7d\x49\xb7\x21\xa1\x65\xd5\xce\xc9\x7c\xbf\x24\x0f\x93\x7b\x95\xd4\xed\xcd\xae\xe2\x0a\xb9\xaa\x38\xec\xf8\xc6\x2a\xba\x8f\x8e\xb1\x97\x85\x9d\x84\x72\xf4\x53\xf7\x55\xd0\xdb\x7d\x3d\x42\x62\x7b\x1b\xad\xb1\xbf\x0b\x92\xad\x34\x3e\xc2\x9c\x13\x6e\x3c\x30\x68\x4c\xc2\x14\x1a\x5f\x89\x1f\x67\x71\x23\x7a\x50\x54\x3a\x2b\xa6\x5f\x1a\x6b\xbd\x98\xf2\x98\x74\x9e\x3a\xbe\x71\x18\x36\x8d\x71\xd5\xd5\x8d\xc4\x70\x48\x1c\xcb\x97\x7b\x4a\x0d\xec\xbd\x34\xe0\x6f\x28\x36\x70\xf3\x58\xa3\x72\x03\x7f\x7b\x80\xc2\x74\xd5\xdc\x03\x50\x37\x47\x36\x88\xc9\x42\xba\xfe\xed\x4d\x15\x75\xff\xe6\xc0\x81\xb4\xbd\x97\xd8\x32\xec\xc4\x01\x0f\xfb\x75\xbf\xc4\x0f\x26\x11\x09\x40\xc8\xff\x26\x01\x09\x79\xbd\xf4\xfc\x03\xb2\xf2\xad\x19\xfc\xfc\x56\xfd\x2d\xdf\x91\xba\xf7\x33\x3e\x93\x6b\xba\x59\x45\xa2\x11\xe0\xe3\x1e\xef\xa8\x50\xe4\x9d\xb7\xa3\xa1\xfe\xa6\x2a\x45\x7b\xdc\x63\xef\x2c\x57\x94\x43\x8d\xec\x89\xe5\x8c\x0c\xd1\x71\x1d\xbf\x89\x3e\xe1\x60\x4e\x3d\xf8\x72\xf5\x40\x56\x97\x09\x4b\x5c\xef\xaf\x62\x34\xe5\x4d\xda\xe7\x7c\x1a\x7c\xb1\xe6\x60\x7e\x89\x8c\x5e\xe3\xb2\x3d\x41\x6a\x94\xcb\xd8\x63\x78\xe9\x50\xbf\x7b\x47\x4e\x00\x3e\xd6\x57\xae\x42\xa3\xcd\x5f\x38\x56\xb9\x55\x1c\x75\xe1\xbc\xcc\x43\xd4\xb0\xa3\x7b\xa1\x50\x74\xba\xe0\x53\x2a\x7b\x33\x1e\x43\xfc\xbb\xa1\xe5\x44\xe2\x91\x7b\x25\x4e\xc0\xaf\xd0\xcf\x67\xc2\x63\xa0\x81\x95\x56\x95\xb3\x9b\xf6\xe1\x0d\xfb\x21\x5d\x56\x72\x78\x0e\x42\xc5\x05\x25\xca\xf6\x94\xf6\xe3\x1e\xcb\x09\xca\x09\x1d\x88\x21\xed\x2f\x9a\x8f\x6e\x28\x26\x6e\x27\xc1\x13\x83\x3f\x64\x07\x39\xf9\xc8\x09\x39\x64\x68\x06\xf9\xfc\xb3\xd1\x34\x78\x4d\x60\x74\x48\xd3\x6d\x80\x74\x05\x00\x1e\xd3\x33\xac\xa4\x1f\xc8\x80\xd2\xaa\xf8\x45\x06\x3b\x3f\x44\xa1\x48\x4a\xf6\x61\x99\x1f\x6f\x4b\xf5\xda\xf0\x44\xc3\xec\xe8\x73\xc7\xa8\x0d\x97\x5e\x62\x8a\x9d\xaf\x56\x81\x9b\x37\x73\xb8\x26\x9e\xfe\x99\x9b\x82\xe4\x6a\x07\xcc\x0f\xc9\x3d\xfd\x23\x70\xe2\xb6\xbf\x07\x9e\x88\x69\x34\x13\x35\x2e\xde\x05\x2d\xdb\x96\x19\x04\xbe\x8f\x55\xc0\x7d\x98\xc6\x61\x8d\xe0\x8d\x1b\x07\x61\x04\xa0\xd8\xa4\x40\x73\xb4\x36\x5a\x6b\x29\x05\x25\x5c\xbe\x42\x91\x25\x29\x24\x31\x03\x24\xb7\xb0\xdf\xfb\x7c\x9f\x77\xee\xb0\x0f\x98\x76\xd5\x48\x1e\x3b\xe1\xa3\x49\xca\x92\x70\xa3\x3d\x07\x3e\xbf\xa4\xcd\x66\x47\x52\x4e\xd8\x7d\x7b\x8a\x23\xde\x92\xe7\xa0\x47\x75\xe4\xa6\x77\x7d\xf7\xdd\xda\x1c\x1b\xee\x19\x4a\x27\xa2\x7a\x21\x6d\x29\x1c\x80\x5f\xe7\xa2\x42\xd0\x37\x32\x61\x81\x9b\xbb\x12\x80\x28\xb6\xfa\xfb\x0f\x44\x5c\x75\xab\x5c\xf2\xa5\x49\xc2\x70\x02\x37\xde\x24\x10\x0c\x13\x43\xfa\x12\x78\xd2\x30\x3a\x48\xc6\x6d\xe3\xd5\x4b\xdc\xd5\xfb\xcf\x8b\x22\x43\x02\xd5\x4d\xe2\xc0\xb6\x28\xe6\x0c\x8e\xe0\xeb\xdf\x70\x65\x24\x78\x6e\xba\xa6\xdb\x6c\x0a\x26\x27\x79\x44\x60\x4d\x1b\xb7\x66\x09\x4f\xc9\x49\xe8\xfa\xcf\xb1\x54\x1c\x9d\xea\x55\x60\x4f\x81\x50\xfc\xe2\x7f\x56\x44\x7a\x08\x7d\xdb\x34\x3f\xf2\x0b\x71\x13\x0f\xba\x35\x4c\x5d\xcc\xa5\x6e\x05\x55\xc5\x77\xbe\x03\x44\x53\xfc\xe7\x46\x56\x73\x6b\xa8\xd2\x0d\xf2\x3b\xc0\x3a\x08\xa7\x16\x00\x98\xf3\x93\xd0\x67\xb0\x93\x78\x8c\x41\x4e\x54\xc0\xc7\x53\x8d\x47\x9b\xc6\x77\xb9\x9c\xda\x38\xa9\x67\xca\x4d\x42\xe1\x42\x52\xb2\x48\xce\xea\x30\x6a\x03\xea\x2c\xaa\xfb\x68\x6e\xa1\x36\x51\x40\x95\x75\xe5\xb4\xc8\x03\x0d\x22\xf8\xee\x2f\xa6\x51\x51\xd0\x4f\x54\xdf\x2b\x8a\x3d\x8b\x8d\x50\x7d\xcb\x86\x01\x42\xf7\x8b\xbb\x77\xfc\x95\xd5\xf3\x43\xb9\xa2\xba\x42\x7b\x17\xba\x5e\x6d\xf0\xbb\x1a\xd2\x6d\x91\xaf\xc9\x8d\x2b\xf9\x0d\x2b\x37\x5d\x7a\x33\xf4\x67\x58\x23\xc2\xa9\x41\xf9\x05\x41\x52\x85\x73\x8d\x85\x34\xc3\x3d\xe2\x54\x53\x99\x82\xf1\xe6\x27\xf4\x3d\xb5\x8a\x2f\x49\x41\x81\xa8\x6d\x70\x0e\xb2\x43\x0d\x5c\x26\x0b\xab\x08\x75\x16\xef\xde\x5c\xb3\x75\x12\x0b\x15\x50\xf9\x66\x7e\xe2\xdc\x52\x58\xe0\xb6\x07\x19\x0a\x2b\x7d\xbd\xfa\xac\xb8\x4f\x92\x88\xc7\xc4\xcc\xd9\x7f\x57\x68\xbb\x64\x4b\xb0\x8a\xdf\xb7\x5b\xdd\x09\x1e\x1e\xb9\x48\x8c\xa4\xff\x25\x2c\x5f\x4d\x66\xe6\x21\x06\x7f\x08\x90\xb2\x91\x79\xb0\x76\x72\xde\x05\x3a\xf4\xe7\x54\xd9\xb7\xf4\x37\xc8\xcb\xf5\x75\x78\xcb\x6e\x89\xb7\xec\x46\x21\xd7\x40\x17\xe1\x71\x7a\x00\xc5\x6f\x7c\x15\xf3\x60\xcd\x4f\xde\x27\xdc\x25\x7e\x41\x85\xc6\x5c\x48\x63\x78\x1c\x0a\xb5\xd8\xa8\x94\x98\x4e\xda\xf8\x50\x95\x04\x10\x1f\x6c\x9a\x3c\xf5\x29\x41\xf1\xd3\x28\x66\x35\x7e\x9c\x97\xa5\x4e\xde\xe9\xcd\x04\xb4\x36\x29\x96\x18\xbf\x71\x26\xec\xf8\x59\xd5\xae\x4d\x53\xb0\x25\x39\x79\x31\x56\x51\xa2\x29\x30\x45\x0f\x36\x42\x9d\x3e\xf6\x59\xf0\xf1\x43\x0e\xb4\x18\xf0\x52\xb5\x21\x6b\xef\xd8\x47\x02\x0f\xda\x0a\x31\x6c\x77\xaa\x03\xc6\x06\x51\xd0\x02\x9e\x09\x13\x74\xca\x86\x0c\x4f\xab\xb1\x05\x6a\xaa\x35\xdf\x66\x4f\x7e\x1b\xbe\x7c\x66\xba\x59\x37\x80\xcc\xae\xb0\xc4\x60\xd2\x00\x13\xa6\x30\xc9\x8f\xaa\x71\xb7\x5c\xeb\xd1\x57\x7c\x6a\x74\xf0\x5e\xd9\xe2\x7b\xbc\xaf\x15\x8e\xf6\xdd\xaf\x5c\x23\xe0\xa6\x41\xfc\x51\xcd\x15\x70\x6e\x1a\x68\xff\x29\x9e\xe2\x47\x04\x01\x60\xa1\xd9\xad\xc0\xd6\x89\x4a\x1c\x7c\xdd\x68\x8e\x9d\x8a\x6a\xa0\xdf\x66\x90\x18\x62\xe3\x07\xa1\x82\xe8\x7d\x33\x36\x64\x38\x20\xcd\x14\x8c\x64\x1a\xc5\xb2\x66\x06\x36\x4d\x0c\x5d\x5e\x8e\xf4\x0c\xa6\x98\x04\x30\x19\x21\x06\x6d\x72\x88\xdb\x82\xb7\x36\xfd\x62\xbd\xe2\x53\x10\x0b\x18\x6d\xd2\xdc\x08\x66\x5f\x56\x71\x1e\x27\x1a\xad\x41\x69\xfc\x00\x3a\x15\xeb\xd5\x87\xfb\xc6\xf1\xc0\x3d\x4a\x3b\xab\x66\x5f\xb5\xde\xd8\x89\xcb\x97\x7a\xa8\x04\xca\x4e\xdb\xcb\x66\x85\x46\x44\xbc\x7b\xc3\x5f\xbd\xe1\xe5\x86\xf7\x67\xf0\xf8\x23\x2e\xff\x66\xae\x34\x79\x90\xed\xfb\xec\x54\x2b\x3e\x58\x02\xe5\x3a\xff\x1d\x48\x21\x8d\x7e\x80\xe1\x28\xe1\x16\x04\x36\x83\x48\xbe\x05\xd0\xd8\x87\x37\x4f\x9d\x11\xf2\x14\x53\x1e\x47\x89\x44\xd0\x66\x44\x1c\x4d\x10\x05\x81\x64\x1f\x38\xa6\x14\x1f\x4d\x23\x81\x8b\x1f\x24\x77\xfc\x51\x16\x07\xf9\x6c\xdc\x15\x41\x94\x69\x1c\x4e\x67\x57\x3a\x57\xe5\x46\xcd\x7d\x1f\x1f\xc3\x76\x03\xf5\x25\x60\x8d\x89\x30\xc6\x03\xdf\x3d\x14\x9d\x9e\x54\x1f\x15\x26\xea\x0d\x30\xbb\x13\xae\x96\x1a\xce\x1f\xba\xfa\x20\xe5\x31\x43\x87\xbe\xe7\xc5\xba\xed\xda\x01\x94\x29\xed\x32\x1c\x89\xa5\x7c\xdb\x76\x03\x4c\xd3\xa8\xc9\x3e\xa0\x2b\x81\xc8\xb7\x18\xa8\x30\xa0\xbb\x15\xca\x1b\xe5\xe9\xbe\x0f\x49\xb2\x0d\x7d\x49\xe6\x70\x3d\xd1\xa0\xbd\x22\x47\x07\x95\x1b\x3d\x67\x67\xbe\xaf\xd2\x35\xd5\x5f\x7a\xb6\xcb\x1e\xd6\x04\xa3\x25\x34\x26\x15\x4d\xb7\xdd\xb6\x54\x0c\x78\x51\x01\xbe\x87\xed\x02\x51\xe2\x3d\xde\x94\xa4\xc5\x45\x48\xc5\x52\x81\xc0\xa7\xfc\x37\x83\x52\x06\x78\xc8\x13\xd9\x00\xea\xbb\x06\xc0\x92\x39\x79\x67\xd5\xe3\x8e\xba\x68\xf7\xf6\x75\x48\x3e\xd3\x6a\x9b\xa1\x98\x31\xb5\x41\x31\x4a\x7b\x27\x88\xab\xbb\xee\x07\xa0\x8e\x7b\xd1\xe5\x7a\x4f\xa0\x2d\xee\x68\x4a\xbc\x8d\x4c\x47\x6b\x7a\xdb\x8e\x14\x11\x13\x11\xd3\x6d\x3b\x8a\xff\x0f\x7d\x5f\x8c\xa1\xdb\xf4\x6d\x97\xe7\x7a\x05\x27\xd6\xe3\xb4\x9d\x2d\xf0\x05\x95\x38\x0c\x1d\x96\x6d\xdb\xa3\x86\xb5\x45\xd9\x94\x02\x2c\x11\xb7\x0e\x50\x4c\x02\x41\x9d\x21\x14\x33\x06\x31\x16\xf6\x1f\xc8\x99\x55\x26\x2b\x70\xf7\xbd\x18\xe6\x7e\x53\x24\x8c\xb5\x96\x61\xf2\x6e\x58\x61\xbc\xb9\xcd\x20\xc0\x7d\xf7\xf4\x04\xeb\x35\x63\x93\x4d\x7f\xfd\xb6\x4b\xb7\xdf\xa8\xff\x68\xee\x77\x0d\xb0\x52\xab\x33\xfd\x0e\x08\xbe\xc6\x36\xb7\x1f\x61\x0a\x86\x1b\x87\xe0\xfb\xe9\xd0\x71\xb3\x1c\x56\x1b\xdd\x63\x8e\xe3\xd9\x82\xa2\x25\x26\x90\xc9\xad\xfd\x9a\x00\x3d\x58\x8a\xa7\xc2\xd0\x03\xe8\x33\x54\x09\x86\xe1\x10\xad\x81\x0d\x53\xa8\x4c\x36\x16\x48\x1e\xdf\x7e\x5d\xc8\xdb\x84\x2e\x5a\xd0\xd0\xba\x85\xa8\x2d\xb2\xe7\x51\xc2\x9b\xf8\x32\xd0\xaa\x91\x30\xbc\x4e\x63\x61\xb0\x2a\xdd\xbe\x58\x28\x8e\x0f\xf3\xd5\xe5\x0a\xf7\x10\xde\xc1\x85\x67\x3f\x4e\xaf\xfa\x4d\x67\xfa\x46\xc7\x1d\x48\x43\x83\x0e\xc4\xb8\x9f\x20\x9b\x96\xf8\x8e\x6d\x88\x23\xfc\xf6\xeb\x31\x2b\x75\x5d\x98\x83\x22\xf9\xc2\x04\x3e\xa9\x61\xc4\xef\x7d\xa7\xad\xc2\xfd\x79\xcb\x5e\x0e\x38\xee\x74\xac\x03\x40\x37\x74\x12\xc8\xec\x1c\x5a\x39\xfe\x26\x4a\x35\x27\xfa\xc8\xbd\x33\xa4\x6f\x07\x35\x9b\xeb\x9c\xf0\xdd\x33\x4b\xd2\x77\x63\x75\x9c\x02\x77\x9c\xcf\x67\xe4\x82\xe6\x3b\x4d\xb9\x1d\x4a\xfb\xcf\xc5\x4d\xc9\x8f\x9c\x70\x5a\x62\x38\xac\xb9\xa0\xd0\xf1\xf0\x72\xb2\x34\x1a\xbf\x63\xc9\x2e\xd5\xe8\xf9\x8d\x54\x8b\xf4\x90\xf8\x2e\x14\xb6\xdc\xe9\x35\x1a\x31\x38\x6f\xf4\xf4\x32\x2a\xce\xec\xd5\x56\xaa\xbf\xbc\xfb\x8b\x21\x6b\x2f\x0b\x15\xd1\x2d\xa8\xf1\x47\xa7\x31\xb5\x7c\x8d\xc6\xcd\x05\x0f\x66\xae\x7b\x5c\x37\x4c\xbe\x96\x94\x09\x0e\x4d\xf3\xc6\x88\x55\x28\xe0\x7e\x11\x7d\x0a\x55\x56\x07\xea\x5f\x5e\xbf\xbd\xa0\x60\xfb\x64\x10\xd2\x11\xe5\xa6\xae\xd1\xb5\xc7\x5b\x2e\xe9\xea\x85\xa3\x64\x39\xfc\x15\x8d\xfe\x26\x06\xcb\x57\x29\xf7\x3e\xbb\x82\xee\xdc\x0e\x36\x51\x91\xc3\xfc\x77\xed\xb9\x6c\x95\x2f\x23\x91\xbb\x6a\x6f\x8e\xf7\x0d\xf8\xf1\x44\xc5\x01\x29\x09\x2d\x19\xbb\x08\xb4\xf3\x98\x30\x8f\x19\xdc\x63\x22\xc2\x86\x44\x47\xd7\x7f\x36\xb5\xbb\x7f\x6e\x9c\xec\x3d\x95\x67\xea\x91\x8a\x4e\x7e\x4c\xf1\x20\x31\x31\x1f\xc8\x37\x0f\xe6\xae\x8f\x38\x9d\x26\xe4\xdf\x4c\x63\xc7\xbb\xd3\x37\x11\x76\xfc\x17\xee\x77\x02\x27\x88\x18\x5d\xf3\xed\x2f\x74\xf9\xf7\xbe\xde\x3b\x86\xc7\xdd\x7b\xbe\x1f\x9c\xff\x5f\x57\x9f\x47\xc8\x8b\x83\x46\x1f\x87\xbb\xb6\xf6\x96\x8d\xc0\x3b\x9a\x67\x94\xe7\x18\x73\xc1\xef\x93\x28\xa3\x3d\x8c\x90\xba\xd2\x8e\x3b\x4a\x82\x96\xec\x2c\x8f\xf7\xa1\x87\xce\x97\xf2\x28\x0e\xf7\x11\x6b\x25\xb1\xb6\x14\x84\x1f\x62\x55\x64\x0f\x04\xdc\x77\xcf\x15\x3c\x19\xef\xe5\x47\x63\x3f\x31\x3f\xa7\xb2\xfd\x58\xd2\xd7\x5b\xd7\xdc\x1b\xb4\x23\xd9\x90\xb1\x81\xfc\x23\xb6\xaf\xb9\x66\x13\xf5\xe0\xd9\xdc\x2a\xfc\x29\xf9\xb6\x09\x0e\x35\xfd\x81\x3c\x00\x16\x30\xca\x93\x69\x91\x35\x0e\xbe\x41\xb6\x08\xfc\x34\x2e\x64\xcc\x4f\xf8\xca\xe3\x32\x5c\x8f\xac\xdc\x9b\x89\x48\x2f\x95\xc0\x4f\x83\x8d\xe1\xe6\x3c\xa2\xa8\xdd\x1e\x0e\xdc\xe4\xc0\xe5\x31\xfd\xfc\xf4\xac\xb5\x3d\xac\xbc\x1d\x3a\x5b\xca\xd1\xc7\x2f\xb6\x58\xab\xf8\x18\xfe\xe7\x9f\x90\x35\xaa\xc4\x7a\x25\x26\xf2\xf3\x3e\x3a\x4a\xde\xfb\x7b\x7e\xd3\x56\xee\x46\xe0\x89\x96\xee\x14\xf8\x2a\x35\x34\xf0\xcd\x93\xfe\xee\xde\x28\xff\x1c\x8f\x86\xeb\x37\xe6\xb4\x23\xe2\xa0\xfc\x09\x4c\x97\xf5\xca\x8a\xd4\xf6\xc2\xcb\xc2\x15\x70\xe0\x61\x6d\x7b\xae\x35\x09\x4c\xbb\x22\xaf\xc1\x39\xdf\x8b\x2b\x0b\x81\x12\x09\x55\x61\x8c\x6e\xdb\xa6\x82\x8c\x88\xc2\x95\x73\xa2\x46\x8d\x01\x07\x51\xd3\x80\x00\xd5\xf7\x9d\x59\x0e\xe8\xef\xf7\xfb\x80\x8c\x04\x06\x03\xc4\xec\xb8\x19\x60\x9d\x5a\xfe\xc8\x61\x55\x37\xb6\xa5\x1b\x65\xfd\x95\xb5\x79\x3b\xae\x05\x19\xcb\x52\xf8\x24\x0c\x43\xde\x28\x69\x94\x88\x3a\xdc\x30\x2c\x7b\x8d\x07\xd9\xc2\xaa\xf9\xd3\x93\xe2\x61\x59\x9c\x3c\x74\x2f\x6c\xdd\x6f\xf9\xee\x9a\x93\xa7\xcf\x8e\xb1\x74\xdb\x0d\x84\x89\x8d\x89\xb2\xa8\x6d\x37\x41\x5e\xd8\x82\x48\x8c\x5a\x6c\x63\x3a\x93\x68\x37\x49\x42\x41\x4e\x40\x31\x6d\x20\xc0\x97\x44\xbb\x66\x4f\xc3\xdb\x8b\x13\x46\x03\xd3\xd0\xd7\xbf\xc1\xde\xe6\x21\x07\x96\x50\x06\x3b\x2b\x78\x7f\x28\xf7\x20\x3b\x1f\xfc\x35\x2f\xaa\x23\x43\x35\xd0\xd8\xfb\x07\xef\xcf\xd2\xed\xbe\xe8\x2b\x1b\x5d\x88\xfe\xec\xc9\x49\x21\xf4\x2a\xa1\x49\x82\x82\x8d\xd9\x62\xd3\x05\xe6\x0d\x81\x90\x78\x78\x45\xd6\x64\x6a\x4f\x8f\x04\xb7\xbe\xc3\x16\x5d\xb6\x98\xe5\xbd\x12\x0a\x3b\x7e\xf8\xd4\xa7\x7d\x8f\xf6\xbb\xc0\x42\xa5\xf0\x9c\x3c\x1a\x41\x95\xd4\xde\x4b\x24\x51\x3f\x1f\xae\xe8\xfc\x58\x01\x8a\x3c\xca\xe3\xe2\x59\x23\x0a\xc8\x5c\xf0\xb2\x48\x41\xf6\xce\x3a\xa4\xa2\x94\x8a\x78\x6f\x76\x93\x6b\x3e\xd3\xbb\x6e\x73\x9d\xa5\x3c\x36\xd4\x77\xba\x09\xe2\x77\xc4\xd6\xc5\x03\x86\xda\x5b\xb7\x43\xc1\xb8\xda\x4e\xd6\x71\x48\x5b\x2e\x98\xff\x73\x59\xf1\xd1\x14\xf1\x95\x8b\xa3\x4e\xd1\xcd\xaa\x39\xd2\x6e\x17\x73\x90\x0c\x9a\x14\xc7\x9a\x18\xef\x86\x4c\x18\xf6\x6a\x3a\xb3\xa4\xf8\x38\x9d\x59\x72\x93\xf9\x3a\xa5\xb1\xda\x6e\x17\x51\xc6\x6b\x93\x16\x62\x8e\x1a\x5d\x78\x56\xd7\xc4\xa9\x17\x51\x0b\x4c\x87\x0d\x2d\x28\x23\x56\xde\xe6\xc7\xa0\x3c\x6e\x4f\x4f\x2b\x50\xf6\xb1\x68\x32\x15\x0a\x24\xff\x8a\xf6\x31\xf1\xa1\x61\x09\x9b\x0d\xf7\x15\x5a\x4d\xc9\xc4\xb8\x46\x86\x23\x9b\xaa\x56\xdd\xf5\x1b\xb4\x9c\xbe\xe6\xb3\xe1\xfa\x37\xe4\xf0\x94\xab\x2c\x5b\x5f\x46\xe9\x06\x32\x93\x61\x59\x39\xa7\x45\xfb\x72\x17\x49\xa3\x9a\xd3\x38\xa4\xd1\x08\x1a\x92\xe2\xba\xb6\xed\xf9\x02\xac\x44\x84\x63\xea\x95\x03\x58\x62\x6e\xdd\xb2\xa0\xaf\x75\xb5\xe0\xbb\x6c\x7c\x6f\xf6\xf7\x02\x3b\x60\xd3\xff\xc8\xba\xed\xbb\xc3\x47\xe7\x7d\xaf\xff\x4f\xf2\xa5\x62\x22\xbf\x19\x88\x55\x67\xb6\x2e\x49\x7a\x83\x7f\xfb\x64\x48\xff\x75\xb8\xb6\x42\xda\x84\xae\x1f\xe8\x09\x96\xf6\x08\x07\x70\x4e\xe9\x61\xa9\x96\x8e\xf0\x1e\x79\x3f\xb2\xdd\x47\x7c\xd0\x38\x16\xdf\xc2\xd3\x09\x09\x29\xbc\xcc\xe5\xc0\xf0\x86\xc0\x7d\x32\x5e\x54\x78\x65\x6d\xc5\xeb\x7a\x72\xf2\x64\x82\xc0\x42\x03\x7f\x83\x62\x4f\x59\xd4\xc7\x00\xc9\xba\xd3\x27\xff\xf8\x24\x72\x8c\x9b\x0f\xe3\x9e\xb4\x16\x5f\xd3\x95\x67\xf9\x63\x3f\x98\xdc\x6f\x50\xdc\xb3\x7f\xaa\x4c\xaf\x3f\xbd\x57\x80\xd2\x50\xdc\xeb\x4d\xb9\xbc\xf7\x61\xb2\x73\x0d\xe5\x11\x11\x06\x8f\xd5\x46\x55\xdb\x96\xca\x9b\xee\xc1\xa0\x37\x7a\x24\x17\xdc\x87\x92\x16\x7d\xb8\x2f\x3e\xbd\x72\x7e\x18\x6f\x2e\x77\x5e\x85\xad\x25\x15\x6d\x82\x80\x93\x9f\x59\x0e\x6e\x4c\x74\xe3\xfe\xe2\xa9\x05\xf1\xa9\x6f\x1b\x9f\xf1\xe6\xfb\xbd\x76\xc4\x8d\xae\xf1\xe8\x2b\xb8\x82\xbd\xab\x68\x4f\xf9\x41\x37\x5e\xd7\x27\x1d\xe5\xbc\x65\x03\x29\x07\x6f\xcf\xbf\x95\xe0\x34\x56\xba\x95\xd4\x9d\xc0\x58\x1c\x1c\x8a\x2c\xc4\x68\x55\x91\x11\x08\x6d\x62\x31\x3a\x26\x44\x25\x21\x1f\x19\x8e\x28\xcf\xd3\x5c\x69\xae\x1b\x1c\x61\x2a\x38\xd2\x50\xce\xab\xb9\x64\xdf\x5a\x75\xb8\x74\xae\x92\xb0\x19\x83\xbd\x05\x7d\x4c\x45\x02\x42\x89\x6a\x19\x6b\x47\x9c\xb1\xe8\xd8\x2b\xe7\x8f\x63\x7e\xd9\xa2\x22\x87\x2c\xe7\x98\xa3\xb5\xbe\xc5\x1c\xd8\x6a\x3d\x24\x1c\xca\xea\x3e\x08\xfb\x51\xb7\x63\x12\xee\x51\xa6\x72\xa7\xa6\x33\xf2\x4e\x0c\xe3\x0a\x5b\x08\x39\x3e\xdb\xbd\xdd\x54\xae\x5e\xc3\x1e\x7a\xfc\xd3\xa0\x07\x98\x4b\x37\x6b\xe4\x8c\x5c\xe5\x97\xd0\x10\xed\x35\xce\xda\x26\x73\x25\xf0\x73\xa4\x55\xce\xd7\x86\x83\x07\x38\xee\x95\x0e\x64\x75\x83\xb0\x36\x46\x2a\xae\x64\x74\xec\xb1\xed\x8f\x98\xd5\x1e\x58\xa5\xc3\x48\x5d\xb4\x79\x0b\xb7\xfa\xb0\x99\xdb\x68\xcd\xff\xf8\xcd\x93\xef\xf3\xa6\x7b\x78\x93\xbc\xdd\xcf\xd6\xa4\xc1\x3e\x06\xc6\xf1\x08\xf2\x69\x1c\x7a\xb0\xe7\xa3\xb8\xe5\x94\x0a\x2c\x0d\x78\xaf\xb8\x00\x28\xbf\x25\xd4\x5e\x26\x2d\x9b\xab\x04\x62\xc5\xe8\xe1\xb8\x87\x3c\x34\x36\x6b\xec\xaf\x0b\x4d\x5a\x87\xcb\x42\xc7\xc0\x34\x69\x53\xbc\xb2\x9d\x72\x92\xe9\x86\xc3\x0e\x90\xda\x77\x26\x62\x93\x1c\xde\xe7\x25\x1c\x6b\xce\x53\xf8\x23\xf0\x5d\x63\x60\x07\x17\x06\x53\xd1\x5c\xf3\xa6\xa5\xdd\x46\x22\x58\x82\x6c\xd7\x72\xcc\x86\x87\xc2\x36\x46\xa3\xc8\xb5\x9f\xaa\x56\xb0\x63\x8c\xe8\x0a\x27\xb0\x63\x60\xa1\xa7\x85\x2a\x61\x02\xb8\x53\xb9\xcf\x7c\xf7\xbf\x61\xf1\xbc\x4b\x97\xca\x43\x71\x6f\xdf\x67\xbd\xf2\xb8\x65\x47\xc4\xb7\x5f\x93\x2b\x40\x4d\x21\xd7\x7d\x79\x65\x4e\xd9\x23\xea\x3f\x3d\xdb\xe7\x67\x7d\xbf\xb5\x71\xe9\x10\xba\x1d\x34\xff\xa2\x68\x18\x06\x0c\x9d\xe6\x89\xa8\x91\x0d\xbb\x35\xe4\xae\x72\x68\x7c\xc8\x7c\x78\x1f\xde\x5c\x6b\x39\x03\xe7\x4f\xe8\x36\x51\x23\xec\x7b\xcc\x8a\xd7\x9d\xf0\xfb\xb0\x21\xbf\x95\x47\x89\xcc\x24\xb3\x8f\x65\xa5\x3d\x70\x60\x1f\x12\x14\xc6\x3d\x44\x50\xf2\x81\x80\xb3\x55\x07\x67\xdc\xd7\xf0\x3f\x17\x24\x15\x82\x04\x47\xd6\x2a\xf7\xdc\x02\xc5\x97\x03\x68\x19\x00\xed\x29\x39\x71\x7c\x0f\x77\xdd\x11\xb9\xae\xec\xc8\xd9\xe3\xda\xf9\x6b\x93\xa2\xa2\x17\xfb\xda\xea\x5f\xf4\x6a\xf0\xde\x74\x92\x69\x41\x3e\xe6\xfa\x8d\xc9\x90\xad\xc4\xbf\x74\x4b\xaa\x64\x89\x0a\x0a\x3f\x8c\x3e\x29\xaf\x6f\xed\xbe\x08\x50\xde\x63\x42\x07\xd5\x30\xb9\x01\x80\x48\xf0\xe6\x46\x3e\xe2\xd2\x05\x30\xf2\x4f\x20\x35\x34\x63\x4c\x07\x61\xba\x1e\xb1\xe0\x18\x3f\x5b\x7c\x9c\xc4\xaf\x86\x97\x19\xf4\xee\x71\xbb\x9d\x7f\xbf\x9d\xc5\xcd\x48\xb3\x73\x2a\xd8\x14\x14\x37\x58\x9b\x25\xd4\x75\x85\x42\xd0\x8b\xf4\x16\x66\x17\x13\xab\xd2\xf8\x93\x24\x93\xfa\xbe\x75\x39\xd4\x8d\x2f\x40\x8b\x27\x1d\x50\xd1\x2a\xeb\x17\xdd\x4a\xf1\x71\x7a\x2b\xc5\xbe\x0b\xbb\xdc\xc5\x90\x3c\x2c\x00\xb3\x52\xd3\x25\x6e\x06\xce\x7b\x57\x75\x0c\xdc\x47\xb6\x5b\x7d\x74\x3f\xbe\xff\x28\xad\x76\x92\x5d\x0d\x92\xce\xcb\x68\xe0\xbb\xa6\x7e\x0e\xc2\xe0\xb9\x8a\xca\x86\xc6\x73\xb1\x9d\x99\xa7\xc3\x2b\x45\xc2\x8d\x4b\x32\x54\x7a\xad\x49\x40\xed\xf4\x15\x17\xc9\xd8\x72\x67\xc9\xc4\xd0\xc9\x95\x58\x3f\x3b\xdb\x06\xb1\x7a\x17\x11\x1a\x42\x46\xcd\x2d\x01\x9e\xb8\xc1\xe0\xe7\xe4\xbe\x91\xbf\x07\x64\x5f\x0b\x93\x96\x94\xfd\x37\xe7\x99\x3f\x48\xa8\xc4\x93\x48\x56\x4b\x79\x92\xfe\xa8\x0e\x52\xaf\xd6\xf3\x08\x09\x58\x46\xe0\xf6\x04\x91\x10\xcf\x98\x20\xe4\xb6\x9d\x4f\xfc\x05\x28\x1c\xc9\x97\x55\xc6\x18\xfc\x65\x34\xa0\xad\x15\x9f\xc4\x57\x51\xd0\x3e\xeb\xdb\xb6\x82\x5d\xa6\xd6\xed\x5c\xf5\x5b\x38\xa6\x77\xbf\xde\xbd\x43\xd7\x45\x63\xf2\x97\xbb\x7c\x01\x23\x5b\xae\x7f\xa3\xf0\xee\x97\x73\x49\x03\xfb\xd8\xce\x3f\xc6\xa8\xdd\xa1\x29\x0d\x5d\x5f\xf0\x71\x0d\x0f\x40\x76\xc7\xa8\x05\x7e\x70\x86\x2d\xf0\x4e\xf3\x81\x7f\x97\xf0\x9b\xd2\xe6\xf9\xe7\x4b\xf8\xd9\xa0\x6f\x7e\xf7\xab\x3c\x01\x96\x87\x63\xec\x5e\xc3\x89\x2d\x63\x5c\xc2\x03\x98\x8f\x1b\x58\x0d\x47\x4c\x49\xd7\x4f\xf1\xcc\xda\xdd\x9c\xd0\x00\x87\xa4\xe7\x0c\x80\x3c\x3f\x6b\x41\x4e\xa4\xd6\x08\x85\xe2\x87\xa5\xba\xa4\x67\x25\x7b\xda\xf0\xd1\x4b\x8c\xc0\xc7\x67\x02\x8e\x3c\x06\x70\xfa\x33\x1e\x15\x41\x02\x9e\x4e\x8f\x2f\xb5\xe2\x51\x01\x2e\x7e\xd2\xa9\x97\x0b\x07\x9b\x03\x8c\x9f\x3a\xc8\x1c\x58\x84\x74\x90\x9a\xb6\x58\xba\xfc\x45\xb8\x41\xde\xdd\x57\x7b\xa8\x2f\x74\x45\x69\x7d\x52\x5f\xf0\xfa\x8d\x36\xce\xbb\xb8\xa9\xd0\x37\xbd\xfb\x2b\xd5\xa4\x95\xda\xc8\xc3\xfa\xfa\xcd\xc0\x75\x06\x31\x92\x11\xbd\x7c\xee\x86\x03\xd3\x6c\x07\x31\x54\x50\xa1\x9f\xc1\xba\x41\x9b\xec\x16\xf0\x6c\x90\x99\xdc\xec\x0b\xc4\xb1\x58\xc2\xc9\xff\x07\x0a\x1b\x84\x5d\x46\x25\x07\x3f\xf8\xe7\x7f\xa6\x5b\x75\x40\x89\xfb\x97\x7f\x29\x9e\x7e\xf5\x21\x69\x12\x2c\xd6\x15\x35\x9c\x0d\xa4\xbc\xb5\x2e\xa9\xbb\x95\x8e\x03\x76\xac\xd5\x2f\x7f\x48\xfa\x52\xcd\x06\xca\xad\x20\xa7\xaf\xbb\x9d\xd5\x97\x46\xf9\x7f\x01\x00\x00\xff\xff\xd2\x59\xa5\x3e\xf5\xc0\x00\x00") +var _confLocaleLocale_lvLvIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\xcb\x72\x1c\x47\x96\x20\xba\xcf\xaf\x08\xb2\x4c\x26\xc9\x0c\x4c\x9a\xa4\xbe\x77\xc6\x64\x4a\x69\x28\x52\xc5\x82\x48\x42\x68\x82\xc5\x36\x6b\x19\x2d\xe5\x99\xe1\x48\x38\x32\x32\x22\x2b\x3c\x02\x10\xd0\xd6\x66\xc3\x4d\xaf\x66\xc7\xcd\x2c\x8b\x53\xbb\xe1\x07\xd4\x62\x34\x5a\x25\x7e\x64\xbe\x64\xce\xcb\x9f\x11\x09\x52\x55\x3d\xad\x85\x88\x0c\x7f\x1f\x3f\x7e\xfc\xbc\x5d\x6d\xb7\xf3\x52\xdb\xe5\xec\xa5\xd1\xab\xca\x14\xfd\xb5\xed\x76\xaf\xcb\xdd\xeb\x8d\x2d\x1e\x9b\xae\xb0\xba\xbd\x30\xd6\x1e\x14\x6b\x65\x8b\x56\xad\xa1\xf4\x5d\x67\x8b\x0b\x55\x35\x50\xa9\x78\xdc\x4c\x26\x67\xcd\x46\xcf\x4e\x76\xaf\xd7\xfd\xc6\x4e\x4a\x65\xcf\x16\x8d\x6a\xcb\xd9\x61\x7d\xda\x6c\x55\xad\x2b\x63\x27\xfa\xe7\x6d\xd5\xb4\x7a\x76\x78\xbd\xdd\xbd\xc1\x1e\x26\x67\xba\xda\xce\x8e\x55\xb5\x7b\x57\x5e\xef\xde\x2d\xd4\xc4\x9a\x55\x3d\x37\xf5\xec\xd8\x68\x37\x8c\xd1\x96\x3f\x37\x7d\x07\x4d\x07\x9f\xfb\x2d\xd6\xee\xb4\x59\xd3\xb7\x56\xaf\x8c\xed\x74\x3b\x7b\xae\x77\x7f\x81\xbf\x5a\x18\x0a\xbf\x5f\xea\x85\x35\x9d\x9e\x3d\xdb\xbd\x3e\x87\x45\x54\x6a\xab\x26\x17\xba\xb5\xa6\xa9\x67\x2f\xf1\xdf\x73\x35\xd9\xaa\x95\x9e\x3d\xc5\x92\x4e\x6f\xb6\x95\x82\xea\x27\x6a\xa5\x3a\x75\xa1\x27\x95\xaa\x57\x3d\x96\xbf\xc4\x45\xab\xc9\xb2\xd5\x50\x3e\xaf\xf5\x25\x4c\xea\x42\x9b\xb2\xe9\xa6\xd3\xe9\xa4\x07\x50\xcd\xb7\x6d\x73\x6a\x2a\x3d\x57\x75\x39\xdf\xe0\x8a\x9f\xc2\x04\x9b\x0e\x47\x2e\xb8\xac\x2f\xfa\x1a\xc0\x67\x5a\x00\x18\x2d\x43\x97\xb0\xec\xb9\xb2\xd1\xca\xcf\x61\xda\xc5\x7a\xf7\x7a\x42\x9d\xd6\x6a\x13\xf5\x73\xb1\x7b\xdd\x96\x00\xd1\x8d\x32\xd5\xec\xbb\x7b\x5b\x65\x3b\x0b\xd3\xb7\xf6\xb2\x01\xa0\x1f\xab\xb6\xa9\x34\x80\x62\xde\x5d\x6d\xb5\xfc\x2c\x54\x07\x9d\xb5\xd0\xde\x4c\x96\x6a\xdb\x2d\xcf\xd4\xec\x18\x3e\x2c\x54\x5f\xe2\x40\x0d\xf4\x07\x4d\xb6\x0d\x80\xa9\x69\xaf\x00\x7e\xdb\xe6\x1a\xff\x34\xe7\x76\xd2\xb4\x2b\x55\x9b\x6b\xd5\x21\xb8\x7e\xe0\x1f\xbb\xd7\x4b\x04\xda\xc6\xb4\x6d\xd3\xce\x4e\xb6\xcd\xaa\xc7\x5d\x06\x88\xcc\xb1\x9b\xd9\xf7\xaa\xaf\x01\x5b\xe2\x6e\xb0\x6c\x63\x56\x2d\x42\x16\x8b\x55\x81\xbf\xa4\x23\x2c\x3c\x6d\xda\xb5\x34\x54\x5d\x89\x88\xd1\x29\x33\xd2\x09\xcc\x47\x3a\x68\xd2\xc9\xa8\x1a\xf6\x88\x8a\x71\x6d\x80\xa0\x25\x74\x91\x56\xb2\x13\x55\x6e\x00\xd8\x84\x96\xb3\x07\xf8\x77\xe1\x50\x54\x2d\x97\x4d\x5f\x77\x73\xab\xbb\xce\xd4\x2b\x3b\x7b\xd2\xd4\x9d\x2a\x60\x27\x3a\x85\x5b\xd2\x6f\xcc\xc4\x97\x1d\xc6\x5f\xaf\x9a\xde\x6f\xfc\xec\x85\xba\xb0\xb2\xd3\x96\x4b\x7c\x23\x28\x32\x69\x7f\xb8\x20\x3b\x3f\xd5\xba\xa4\x25\xf5\x9b\xbe\xd8\x56\x37\xef\xec\x06\x10\xb2\xaf\x2a\x00\xe6\x9f\x7a\xa8\x0f\xe3\x5d\xc3\x76\xdf\xfc\x1b\x14\x1b\xbd\x6d\x95\x95\xf6\x70\x30\xa1\x7c\x76\xdc\x36\x8b\x6a\xf7\x66\x03\xeb\x83\xfd\xad\x97\xb8\xb6\x0e\xfe\xdf\x4d\x26\x3f\x5a\xad\xda\xe5\xd9\xab\x09\xff\x3b\x7b\xa6\xd7\x50\x93\xf0\x75\xdf\x86\x23\xca\x05\x74\xb3\x3c\xc8\xec\xc9\xee\x97\x9b\x77\x88\xfc\x4d\x09\x3f\x08\x63\x7e\x34\x35\xac\xa5\xaa\x5e\x4d\xe4\x0f\x38\xf2\xf8\xaf\x6c\x48\x67\x3a\x80\x47\xfc\xc9\x16\xb6\xd9\xfd\x62\x60\x11\xed\xa6\x81\x9d\x35\xd7\xf0\xb7\xaa\x60\x65\xbf\x36\xdd\xa4\x6c\x96\x6b\x38\x41\x48\x18\x60\x02\xdf\x2b\xa0\x2d\x2b\x5b\xc0\x09\x5e\x17\x15\xcd\xc6\x16\xd7\x7a\x53\x3c\xa2\x6a\x07\x85\xb9\xae\x94\x85\xef\x40\xb1\x60\xeb\x77\xef\x56\xa6\xf8\x4a\x15\x9d\x6a\x57\xba\x9b\xdd\x9d\x2f\xe0\xd4\xae\xef\x16\x67\xad\x3e\x9d\xdd\xfd\xc8\xde\xfd\xfa\x42\x95\x80\x53\x35\x4e\xe3\xab\xfb\xea\xeb\x03\x9a\x05\x22\x7f\x01\xa0\xad\x77\xaf\xbb\xe2\xe6\xad\x3a\x07\x92\x06\xf4\x61\xf7\xfa\xce\x04\x61\x0f\x54\x63\x5e\x2e\x98\x3e\xd2\x6c\x6a\x0d\x1b\xb0\x34\x1a\xaa\x42\xdb\x67\x57\x27\xff\xf8\xf4\xa0\x38\x6e\x6c\xb7\x6a\x35\xfd\x0d\xff\x83\x46\x5f\xe0\x01\x2f\x5e\x98\x47\xdf\x4e\x27\xd0\x9e\x21\xf1\x48\x75\x7d\xb1\xd8\xbd\xbe\x86\x23\x97\x60\x01\xd6\xc0\xc3\x1a\x57\x40\xb2\x62\x81\xb2\xda\x0e\x36\xc7\xf6\xad\x2d\x15\x6c\xcf\x70\x73\xf2\x83\x0f\x7d\x11\xb9\x88\xfb\xaa\x1b\xab\x7a\x26\xce\x0b\x07\xde\xa3\x64\x21\x06\x41\x08\x5d\xf2\x8a\x8a\xc3\xa3\xa3\x1f\x1e\x7d\x5b\x94\xd7\xa6\x36\x85\x6a\x99\xec\x03\x95\xde\x9c\xf7\x00\xaf\x2d\x50\xb0\xee\xf4\x3f\xcf\x57\xba\x06\x7a\x55\xcd\x97\x66\x3a\xb1\xb6\x02\x72\x07\x98\x71\x72\xf2\x14\x36\xf6\xe6\x57\xa8\x8c\x93\xeb\xce\x66\x0f\x35\x60\xce\xdb\x89\xfd\x53\x85\xd0\x94\xe1\x73\x30\x15\x65\x34\xdf\x53\xa0\x6c\x0a\x88\x40\xab\x60\x76\xb0\x33\x00\x0d\x58\xb0\x9a\x4e\x74\xdb\xce\x81\x3a\x77\x57\xb8\x29\xd4\x79\xba\x8c\xba\x69\xf1\xea\x82\x53\x7f\x6b\xff\x79\xcf\x3d\xf7\x6c\x6a\xa0\x19\xa6\x84\xdd\x72\x40\x1c\xb4\xf4\x90\x04\x44\xb8\x00\xc0\x58\x28\xc3\x5b\xa6\xb0\x66\xb3\x68\xaa\xde\x16\x77\xa7\x77\x91\xbe\xdf\xbd\x77\x77\x3a\xa9\x9b\x39\x93\x1b\xbc\x0c\x4a\x63\xd5\x02\x2e\x06\xbe\xa4\x5a\x26\xa7\xfe\xa2\xc2\xe3\xd1\x4b\xa7\xaa\xb3\x70\x44\x57\x1d\x5e\xb9\x9b\xdd\x9b\xb6\xa8\xd5\x05\xec\x10\x5f\x34\x30\x7b\xec\x92\xbb\x68\x5a\x05\xfb\x51\x77\x36\x06\x8d\xa3\x70\x82\x17\x0f\x86\xd5\xd5\xa6\x30\x6d\x01\x24\xc3\xac\x00\xed\x4d\x01\x48\xcf\x90\x83\x2b\x8a\xb0\x68\x3a\x99\xb8\xcd\x65\xd4\x25\xdc\x07\x36\x00\x0e\x46\x8b\x27\x4d\xa7\x08\x8c\x3c\x44\x74\x49\xd5\x09\xce\xb9\x42\x8f\x79\x34\x14\x1e\xdc\x94\x34\xfb\x26\x3d\x1c\x44\x6d\xba\x3b\x44\xa0\x78\x9b\x23\xfa\xd4\x17\xab\x4a\xc1\x76\xe0\x06\x2a\xc1\x8c\x50\xd3\x0d\xf2\xd2\x58\x43\xec\x8b\xea\xe0\x9c\x54\x74\xbe\x61\xd6\xd1\x65\x62\x80\xb2\xac\xad\x74\x06\x40\x90\xc3\x5f\x9a\x56\xaf\xa9\xc2\xee\x35\x90\xc8\x1e\x98\x0c\x3c\x71\xc0\xb7\x98\x0a\xef\xca\x2a\x1c\x3d\x57\xe8\xc6\x0c\x37\x3d\xc1\x17\x3a\x58\xdc\x00\x2a\xca\x95\x2e\xf3\x45\x86\x04\xd8\x1d\x60\xaf\xe2\xc9\x28\xc0\xa4\x35\x82\x2d\x0c\x0f\x88\x0b\x78\x44\x80\x77\x3d\x11\xa9\xb4\xb8\x7d\x48\x07\x6f\xde\xee\xde\x85\xe9\xc0\xe9\x28\x1b\x24\x64\xb3\x47\x0d\x20\x4d\x6d\xe5\xa7\x9b\xdc\x0b\x85\x44\xa7\xd3\x6b\x28\x2c\x4e\x4e\xfe\x50\xac\xab\xa6\xde\xbd\x91\x59\xfd\xf1\xf9\x53\x3c\xc3\x67\xf3\x6d\xd3\x76\x33\x2c\xc6\x3f\xac\xff\xe4\x7a\x39\x86\xbf\x55\x81\xf7\x54\x8b\x1c\x61\xdf\xf6\x8e\x74\x14\xdf\xc3\xb5\xd5\x53\xcf\xc8\x31\xea\xd6\x40\x05\xc0\x64\x9c\x1b\xee\x75\xd7\xaf\x6f\xde\xf6\x07\x05\x2c\x15\xb0\x7c\xf7\x06\x38\x2c\xe4\x71\x3c\xe1\x81\x86\xd3\xc9\x59\xd7\x6d\x79\x0a\x7f\x78\xf1\xe2\x58\xe6\xe0\x3f\x8e\x4d\xa2\x00\x76\x72\x89\x13\x51\x0c\x0a\x40\x47\xb8\x7b\x81\xcb\xd8\xc0\xe2\x0b\x80\x1a\x91\x5a\xa8\x74\x8e\xf4\x01\x68\x05\x1f\x2d\xf8\x77\x4a\x88\xd9\xb7\x55\x84\xb4\x00\x06\xf7\x75\x14\x6e\x38\xab\xfb\xf8\xbf\x93\x01\xf8\x70\xb3\x34\x31\x63\x4a\xa8\xc2\x6b\x58\x9c\x85\x6d\x03\x72\x84\x84\xc6\x2a\x20\x48\x30\xea\xa4\xd9\xe2\xd1\xf7\x47\xeb\x48\xfb\x83\x98\x9d\x2a\xe2\xf0\xa4\xd6\x77\xd2\xf5\x56\xad\x55\xb5\xc5\x65\xe6\x9c\xc9\x06\xa0\x44\xd7\xc5\xc9\x33\x00\x5d\x1b\xdf\x19\x54\x76\xda\x36\x9b\xd9\x89\x9b\xcf\x79\xf4\xd5\x2d\xd5\x8d\xa1\x4a\x68\xad\x0f\x8a\xe7\xbf\x7f\x58\xfc\x7f\x5f\x7c\xfe\xf9\xb4\x78\x04\x87\x1e\x90\xb8\x20\x2c\x84\x13\x57\x23\x37\x79\xf3\xd6\xf8\x15\x73\x13\xa2\xb6\xc0\xc6\x6d\x60\x31\xb0\xfc\xbb\x47\x8e\x06\xdc\x2d\xbe\xe2\x9a\xf6\xbf\xe8\x9f\x15\xb0\xd7\x7a\xba\x6c\x36\x5f\x4f\x27\xb8\x42\x38\x40\x74\xc4\xc2\xdc\x54\xd6\xaf\xab\xe6\x69\x5a\x5c\x75\xeb\x18\x5e\xe6\xfd\xe7\xcb\xa6\x3e\x85\x8b\x1d\x39\x34\xdc\x76\x40\xad\xd6\x4b\x03\x8e\xe8\xab\xad\xed\xcc\xb6\x45\xaa\x80\x9f\x7a\x1a\x60\x5e\x03\x7b\x7c\x7a\x15\x35\xd4\x1e\xe8\xd7\xc0\x7b\x21\xd0\x7b\x00\x1b\x61\xf7\x9c\xc4\xa2\xa5\x96\xed\x39\xa1\x8f\x0a\x91\x60\x69\xe0\xba\x60\xa1\xa9\x4f\xb7\xa8\x39\x3d\x05\x42\xa4\xf9\x9e\x0c\xa3\x2c\xf4\xb5\xc5\x63\xad\xad\xbb\x38\xfb\xa4\x2a\xe0\xfe\x16\x04\x9d\x07\x9d\x6b\xf0\xf0\xd1\x11\x5c\xca\x70\xf8\x01\xd3\xcb\x7e\xcd\xc4\x53\x9a\xee\x5e\x1f\x20\x9d\x36\x82\x00\x3d\xdd\xa5\x42\xea\x00\xfb\x57\x24\xd9\x01\xb5\xab\x1b\x39\xa6\x48\x37\xe4\x66\x82\x53\x73\x01\x02\x4f\x1b\x0d\xf5\x58\x3e\x45\x78\xd7\x0f\xea\x0f\x26\xe8\x5b\x09\x38\x00\xe0\x17\x0d\xfc\x43\x53\xa3\x5f\x58\x8a\x7f\xf4\x2b\x20\x0a\x30\xaf\x0a\xe7\xf5\xa6\x8b\xc8\xab\x21\x64\x12\xf2\x80\x77\xc3\x1a\x6e\x57\xa8\xd2\x10\x45\x7f\x53\xf5\x61\xde\xc9\x8d\x1a\x66\xe1\xbb\xea\x03\x06\xd0\x35\x3b\xda\x70\xb0\x88\xbd\xcd\x0f\x10\x9a\x30\xb7\xe4\x1e\x46\x81\x18\x10\xcc\xfa\x7b\x1a\x08\x1d\xf0\xf3\x36\xee\x06\xaf\xde\x1e\xaf\xea\x9a\x46\x77\x82\x58\xc0\x84\xb2\x6d\x90\xa8\x2f\x14\x89\x64\x7d\x56\x51\x66\x18\xdf\x32\x01\xb3\xa1\x39\xe0\xda\x41\x10\x0f\x3a\xc0\x3d\xe0\x78\xf1\x8f\xac\xdb\x29\x73\xb6\x20\x21\x8a\xc4\x3d\x87\x13\x7d\x19\x4d\x23\xe6\x71\xa1\x59\x0f\xdb\x84\x37\xd2\x35\x4b\xd3\x07\xc0\x1f\xc3\xe2\x51\x4c\x59\xc3\xa6\x92\x34\x6d\x47\xbb\x94\x09\xbf\x00\x68\xc5\x5d\xa4\x7b\xdc\xfa\xae\xb8\xa7\x03\x18\xfe\x96\xca\x30\xb3\x35\x0a\x22\x9d\xdb\x04\xa9\x2a\x2c\x04\x20\xdc\xf0\xb4\x13\x3f\xbf\x99\x8a\xe8\x27\xd2\x18\xf3\xf4\x47\xc0\x59\xd5\x19\x27\x2c\xfb\x37\xc2\x66\x01\xdf\x7b\x8d\x42\xcb\x41\xc4\x05\x20\x7b\x7c\xf8\x68\xf6\x19\xd0\xf7\x9b\x7f\xd3\x9b\x01\x7b\x26\xf7\xbd\xb2\x34\x55\xa4\x8c\xc6\xae\x8d\x9b\x0c\x53\x0f\x96\x43\xd7\x43\x71\x93\x2b\x8d\x8a\xff\x19\x97\x27\xdc\xbf\x10\xbf\x88\xfb\x73\x94\x0e\xef\x60\x22\x95\xae\x57\xd6\x1f\x64\xdc\xa1\x50\x69\x27\xcf\xcd\x57\x0d\xca\xba\x2c\xc1\x01\x97\x8b\xdc\xc8\x04\x08\x55\x37\x5f\x99\x6e\x8e\xa4\x05\x04\x57\x11\x0c\x8b\xad\x28\x14\x00\x76\x1f\x43\xf1\xc7\xb0\x20\x38\xbc\x65\xff\x65\xf1\xd1\x85\x70\xff\x5f\x20\x8d\x9d\xc3\xf1\x07\xfe\x1e\x30\x7b\xc6\x3c\xc3\x05\xab\x60\x70\xe3\xbb\x85\xaa\x90\xe2\x0a\xfb\x0e\x80\x86\xae\xaf\x01\xc9\xf4\x79\x20\x13\xc4\x4f\x80\x7c\xbd\x34\xc0\xd9\x35\xc5\x02\xc9\x78\xdb\x48\x37\x3d\x92\xb6\x8f\x00\x8d\x8e\xbe\x7b\x79\x78\x52\xac\x9a\x45\x0f\x8c\x9b\x2b\x9c\x4e\x1c\x93\x0f\x2c\xbe\x60\xc2\x3e\xb9\xcc\x12\xdf\x0d\x30\x83\x1d\xb7\xb4\x08\xd7\x76\x94\x2f\x1d\x11\x58\x90\x0b\xac\xf5\xba\x41\x96\x4e\x51\x0f\x9e\x65\x44\x38\x6c\x14\x1c\xeb\x31\xce\x52\x06\xbe\x79\x8b\x43\x23\xeb\x62\xe2\x52\xe8\xc8\x16\xf7\xbe\x86\xff\x4f\xac\xba\xd0\x7c\xe1\xad\xdc\x6e\x1c\x41\x93\x12\x18\x2c\xe2\x38\x84\xb9\x45\xd4\x82\x2a\xbd\x10\xb0\x64\x2d\xc9\xa1\x80\xd6\x3c\x5b\x41\xe3\x21\x4e\x3a\x40\x30\x7a\xd8\x7e\xb9\xd4\xd6\xce\x9e\x2a\xb3\x05\x49\x91\x36\x4b\x6d\xee\x14\xcf\x90\x12\x02\xd6\xe9\x25\xd1\x29\xa2\x1a\x40\x04\xbe\x27\x76\xec\x3a\x70\x7f\x88\x4f\x40\xb3\xb0\x6f\x10\x75\x7a\x5e\x24\xdd\xc8\x77\x26\x93\x1f\x51\xad\xf8\x6a\xd2\xb3\xec\xd0\x00\x8c\xda\xfc\x14\xd0\x1d\xa1\x33\x15\x98\xab\x2b\x47\xc2\x5e\x1a\x00\xf3\xdc\xab\x25\x11\x5e\x9d\xfe\xb9\x9b\x3d\x43\xa9\x1f\xe9\xa4\xa8\x29\x77\xbf\xf0\x29\xd7\xc0\xe9\x00\x47\x70\x45\xdb\x6c\xa1\x5a\x6d\x12\xb9\x01\x0e\x59\x05\x70\x6d\xf0\xde\xb8\xd0\x52\xeb\x44\x95\xaa\x5d\xf0\x41\x4f\x2a\x43\x3f\x20\xe6\x50\x37\x50\x94\x29\xa3\xa0\x90\x55\x68\x32\x8c\x45\x45\xda\xee\x17\x33\x21\xf2\xc9\x6a\xd5\xb5\x12\x95\x27\x6e\xb8\x28\x7c\xa6\xb0\x65\xa4\x5a\xe2\xc1\xf9\x18\x45\xc3\x36\xa8\x9c\x11\x95\xeb\x2b\xd6\xf3\xc4\xa8\x6a\xa0\x14\xa8\xd1\xd9\xab\x48\x93\x39\x17\xf5\x97\xd7\x68\xf2\x05\xc6\x74\x2f\x70\x57\x67\x7a\x8b\x9c\xd8\xc6\x92\x0e\x0e\x11\x9c\xe4\xcf\x6f\x0a\xa7\xbb\xc4\x89\x76\x6a\xa5\xca\x3b\x13\xdb\x2c\x8d\xaa\xe6\xef\x6f\x7b\xa2\x88\x01\x32\xae\x61\x7a\x3f\xb3\x52\x15\x44\x5b\xb8\x9c\x61\xbf\xeb\x06\xcf\xff\x41\x7a\x29\xd3\x51\x53\xee\xee\x56\xd3\xe2\x29\xd1\x8d\x03\x38\x03\xd7\x44\xfb\x70\x5a\x40\xa9\xf1\x58\x22\xa3\x9f\x10\xe9\x01\x2b\x81\x93\x24\xe2\xb8\x7f\x3c\x1b\x58\xd4\x94\x97\xcc\x67\x02\xa0\xdb\xe8\xcd\x02\xbb\xd4\xa4\x94\x13\xa5\x74\x01\xb4\xd1\x4c\x80\x59\x5e\x01\x25\x08\xe4\x1a\x18\x1e\x83\x6c\x9b\x90\x6a\x2c\xd7\xc3\x72\x23\xe5\xdf\x38\x35\x38\xd0\x93\xcb\x4c\x17\x22\xb0\x0d\xaa\xf0\x73\xbf\x35\x53\x77\x4f\x30\xe7\x43\xcc\xaf\xd5\x75\xe7\xe0\x2c\x4a\xd8\x6c\x61\x6e\xc9\x96\xc8\x5a\x23\xa2\x0d\xdc\xb9\xd7\xc5\x57\x8b\xaf\x3f\xb2\x5f\xdd\x5f\x7c\xed\x08\xf6\x81\xbf\x0d\x70\x50\x20\x53\xbd\x87\x17\x5f\xa4\x5d\x0f\x27\x78\x0d\x94\xba\x2c\xe0\xb4\xc1\x2d\x81\x5c\xc5\x1a\xb9\x57\xe4\x2e\xb6\x6a\xa1\xcd\xaa\xeb\x07\x40\x87\x09\x02\xc1\x81\x0d\x53\x4b\x3a\x7c\x74\x08\x1c\xe6\x3e\x58\xc3\x37\x62\x1b\x78\x44\x87\xba\xb4\xb4\xca\x6c\x4c\x37\x8a\x48\x44\x95\x78\x35\xe7\x48\x2c\x95\x74\x93\xec\x73\x4f\x0b\x82\x29\xc3\x75\x03\x9c\xb6\x09\x18\xb6\x52\x86\x94\x19\x5f\x14\x80\x52\xd0\x0b\xca\x78\x67\xca\xce\xfb\x5a\x80\xac\x4b\xc6\xa6\x13\x38\x57\x6b\x43\x77\xd3\xf7\x78\xbb\xd0\xe5\x10\x01\xb9\xcb\xc5\x9e\xe2\x13\x0f\xd7\x4f\xa7\xc5\xf7\x78\x41\x6a\x10\x2d\x89\xd3\xd8\xbd\xd9\x98\xfd\x5b\xd4\x13\x61\x0c\xa3\xa4\x3a\x32\xd9\x39\x3e\xe0\x61\xc7\xa0\x00\xea\xd1\x5a\x90\x0c\xb1\xc1\x07\xee\xb4\x06\x48\x27\x2a\x1c\x60\xf1\x53\x86\xa6\x2c\xe8\x28\x34\x20\x85\x0d\xef\x1d\x52\x77\xbc\xb7\xc2\x40\xfd\x1e\x90\x8a\x80\x4b\x2c\x81\x25\x62\xd1\xe9\xd9\xcd\x9f\x41\xb0\xc9\xe0\x80\xd7\x21\x51\x08\x34\x09\xe0\x31\x66\x82\x47\xfb\x3b\x9d\xd0\x84\xb0\x5e\x27\x70\x1e\x99\x54\x34\x17\x96\x17\xf1\xfc\x81\x4c\x87\x0a\x24\xb8\xab\xba\x9e\x0c\x5f\xd2\xaf\x9b\x1e\xf7\x19\xce\x5e\x87\x00\x6b\x04\xb9\xe4\x80\xba\x6b\x94\xb4\xe2\x03\xb4\xea\x47\x76\x08\x58\x70\xd6\x0f\x01\x8a\x97\xd7\x78\x3c\xe0\xb2\xda\xbd\x5b\xa1\x44\x0f\x94\x67\x03\xb3\xba\x79\x4b\xfb\x47\x32\x5e\xa7\xdc\x1e\x32\x23\x32\xcd\xa6\x15\xb4\x6a\x63\x9b\xa1\x64\xce\x7e\xbe\xbe\x59\xd7\x34\x73\x7b\x86\xaa\x96\x63\x01\xc8\x0a\x44\x32\x52\x6c\x96\xb1\xb4\xbf\x51\xb0\x6d\x28\x3c\x02\xd8\xff\xff\x29\x5c\x1c\x08\xe3\x57\x7c\xfe\xf0\xea\x70\x87\xcf\x1d\x07\xb7\xd5\xcc\xa5\x45\xe7\xd0\xb7\x10\xc6\x33\x66\x4c\x13\x02\x41\x9b\x6e\x86\xd0\x77\x5c\x48\xba\x01\x9e\x62\x3b\x5e\xe4\x79\x7a\x2f\xa0\x50\xbf\xee\x81\x62\xe2\xe9\xb3\x1b\x54\x5e\x86\x36\x22\xf1\xff\x93\xae\x96\x70\xd7\x16\x4d\x5d\x10\x8b\x80\xab\x84\x5d\x82\x65\x5e\x69\xb8\x5d\x77\xaf\x27\x75\x33\x3b\xda\xbd\x99\xc0\x57\xac\x2f\x9c\x03\x54\x43\x65\xc7\xab\xc9\x1f\x81\xa3\x3b\x1a\x63\xd2\xf1\xce\xa5\x82\x84\x4f\x0c\xaa\xd1\xef\x22\x1b\x9e\x57\x76\x1c\x67\x3c\xfd\x73\xbd\xc7\x92\x77\x72\xf2\x87\x17\xac\x7d\x38\xf9\x83\x53\x1a\xab\x58\xf3\xfa\x87\xae\xdb\xda\x3f\xb6\xd5\x8c\x55\x56\xa8\xdd\x3a\x56\x57\x55\xa3\x4a\xfc\xf8\x72\xf7\xa6\xed\x10\xeb\xf0\xfb\x0b\xad\x36\x34\xd3\x27\xc4\xb4\x27\xdd\x3c\x00\x56\x81\xca\x1e\xa4\xc2\x56\x54\x03\xaf\xd3\xef\x82\x40\x91\xeb\x6f\xbc\x78\xa8\xc9\x5e\xf8\x53\x8e\x64\xa4\x1c\xb4\xd3\x9f\x26\xaa\xda\x82\xa0\x8b\xbc\x9a\xaf\xea\x2a\x7a\x55\x3b\x0b\x7e\x15\xa2\x02\x1a\xc4\x54\x75\x0a\x4c\xee\x1b\x18\x6c\xd1\xb7\xa4\x64\x58\x9a\x2d\x69\x17\xf0\x0c\x95\xcd\xa6\x47\xc3\x05\xe0\xf7\x27\xf7\xe6\x9f\xa6\x43\x00\x97\xf3\xf7\x0f\x73\x90\x8f\x41\xe3\x6e\xfb\x7a\x0d\xc4\xe9\x27\xb8\xa0\xaf\xc3\xb2\x9d\x22\x17\x18\x78\x6f\x30\x80\x63\xa7\x36\x50\x91\xd8\xf0\xa4\xb2\x12\x75\x9b\x85\x33\x18\x35\xe1\x83\xba\x7b\x8d\x6d\xd4\xcf\xa3\x6d\x6a\x2d\xe7\x16\x6d\xc8\xe3\x4d\x99\xf6\xfa\xfd\x00\x0a\xcb\x64\x28\xbf\x84\xa0\x2a\x6a\x43\xe3\x8a\x4e\x44\x40\xa5\xf1\x4f\x40\x01\x97\x55\x5f\x86\x29\xb0\xe6\x9b\xc0\x58\x30\x2f\x5d\x7c\xfc\x91\xfd\x18\xfb\xa9\xd7\xc0\xa6\xd4\x52\xf3\x48\x5f\x23\x55\x04\xfc\x5b\xb3\x00\xf9\xa5\x33\x4d\xcf\xa1\xcb\xa6\x6d\xf5\xb2\xcb\x8d\xd4\xb0\x30\xab\xd6\x2d\xd2\x00\xb2\x93\xa0\x22\x08\x16\xd8\x6a\x14\x3b\x9a\x69\xa0\x6e\x41\xbc\x92\x63\xd3\xd7\xd1\xc9\xf1\xaa\x11\x68\xcb\xd7\x01\xad\x0b\x15\x9b\x68\x04\x41\x25\xad\x33\xbb\xcf\x17\x5a\x83\x98\xae\xd6\xba\x1e\x08\x1f\xb8\x52\xe0\x63\x95\xb9\x46\xc9\xbf\xb3\x6c\x51\x9d\xe7\xcd\x92\xb3\xbf\xb7\x29\x30\x7a\x83\x96\x3f\x8c\xdb\x47\xc6\x9a\x77\x70\x7e\x07\xed\x87\x67\x79\xa4\x25\x23\x02\xb5\x82\x45\x97\x19\x35\xa2\xda\x64\x82\x75\x9a\x7a\x60\x69\x4d\x55\xe9\x15\x2a\xb0\xdd\xa0\xb3\xc7\x6d\xbf\x4d\xc6\xe1\xfd\x47\x89\x1e\xc4\xaa\xbe\x73\xae\x23\x7c\x4c\xa6\x01\xbc\x7e\xc7\xc2\x9e\x8f\xc9\x78\xd1\x2e\xf1\x3d\x88\xc6\x40\x10\xd5\xa0\x45\x39\x4f\xc4\x72\x56\x96\x44\x4c\x68\x85\xbc\x8f\x88\x00\x07\xac\x54\x0c\xbb\xdf\x8e\xd2\x65\x84\x92\xbf\x6e\x07\xc3\x00\x0a\xe3\xd5\xf1\x9b\xc6\xd9\xbd\x43\x71\x1e\x4a\xd7\x31\x0a\xec\x1f\xc3\x5f\x7b\x3c\xc2\x9e\x01\x98\xc5\x18\x22\xb3\xef\x5a\x89\x53\x0a\x1e\x07\xfd\x33\xdc\x79\xc8\x5e\xbd\x2e\x53\x5d\x83\x86\x43\x8a\xbc\xd5\x9b\xe9\xa4\x82\x9d\x47\x71\x95\xd7\x48\xda\xb1\xc8\x7a\x52\x37\x84\x33\x7c\x4e\xde\xad\x1a\x51\xf0\xc0\xde\x86\xe5\xf5\x53\x90\x04\xd1\xac\x2e\x46\xc6\x9c\xf7\x74\xf6\x59\x62\x4b\x92\x76\x13\xcf\x4b\xa1\xd1\x69\xad\xaf\x52\x76\xaa\x4e\xe7\xe2\xc4\x0b\xec\x2b\x58\x9e\xe4\x12\x44\x0d\x87\x45\xc5\x01\x8a\x74\x68\x8a\x3a\xbd\xf2\x9d\x1e\xed\xef\xe7\x7c\xd0\xcf\x01\x30\x69\x9d\x57\x9e\xf3\x89\x21\x4d\x06\x02\x1b\x56\x27\x24\x33\x95\x7a\xe2\x7d\x22\xb6\xa9\x6b\x50\xc5\x81\x06\x27\xb8\x48\x9d\x9e\x06\xee\x52\xd8\x75\x73\x8a\x42\x0f\x33\x2a\x5e\x71\x43\x2a\x96\x09\xb0\x47\x55\x85\x1b\x21\x1e\x35\xcc\x9a\x22\xff\x2f\x37\x02\x6e\x83\x4a\x31\x38\xc0\x13\xa6\x89\x6a\x73\x4b\x4e\x59\x3c\xd9\x5c\xcf\x59\x5e\x23\xe7\x4b\x88\x54\x93\xa9\x10\x61\xd0\x65\x9b\xc2\xb3\x40\x79\x86\xdc\x6e\xc6\x27\x91\xeb\x35\x50\x46\x2a\xd1\x40\xe8\x87\x4f\xc7\xde\xc2\xd9\x91\x91\xfd\x34\x6e\xde\x36\x49\x2f\x3d\x93\xc4\x0c\x0a\x24\x1d\x24\x83\xe1\xca\xfe\x23\x01\x12\xed\x0b\x59\xad\x6e\xfe\xdc\xa0\x66\x37\xde\xcb\xbe\x38\x6f\x40\xd0\x3c\x47\x1b\xaf\xb3\x8e\x46\x53\x8c\x4f\xdf\x41\x36\x89\x9b\xb7\x46\x6f\x22\x9d\x37\xfc\x08\x53\xc9\x86\x51\xec\x24\xc2\xb2\x1e\xae\xcd\xad\x00\x26\xc9\x5e\x30\xf3\x45\xab\xea\xe5\x59\x74\xfc\x9f\x01\xcf\xb7\xfb\x2b\xaa\x2a\xaf\x55\x1b\x9f\x7d\xe0\x65\x71\x39\xaf\x26\x70\xff\xd6\x2b\x3d\x17\x4b\x90\xd3\x91\x31\xc7\x4d\x4e\x4d\xca\x19\x60\x58\x99\xb2\x7b\x53\x38\x3b\x10\xda\xf4\x5c\xfb\x65\x6f\xbb\x66\xf3\x41\xdd\x44\xda\xc5\xc6\x4e\xce\x1b\xe0\x83\x1a\xf2\x02\x44\x60\x21\x14\x6d\xf0\x54\x82\xba\xa9\x22\x8b\xa4\x0a\xd3\x5d\xcd\x8e\xfb\x45\x65\x2c\xb2\x3b\x2c\x81\x00\xf8\x3a\x3d\x39\x6d\xaa\xaa\xb9\xd4\xad\x9d\x9d\xe8\x35\x83\x14\x36\x50\x21\xad\x05\xf2\x82\xb7\x11\x19\x19\xe0\x90\x5e\x03\x14\x57\xd7\x38\x4b\x23\xad\x50\x1f\x8a\xad\x26\xa8\x85\xd9\x4c\xe9\xba\xc2\x2b\xb1\xbd\x80\xc6\x91\x57\x9f\xd0\x73\x64\x72\xe8\xb6\x44\xfd\x4f\xb8\x5e\x43\x5b\xa0\x01\x40\xe5\x6b\x96\x77\x69\x5a\x7b\xbb\x41\x62\x27\x37\x27\x32\x23\x3f\x3a\x0f\xb2\x57\x13\xe7\x65\x76\x2c\x0e\x66\xb9\x01\x40\xc8\x9c\x4d\x65\x02\x51\xc5\xcd\x4e\x1a\xd2\x99\x1b\x4d\x32\x19\xf9\x6d\x54\x66\x49\x5a\x20\x1b\xcc\xe0\x13\x52\x58\xa6\xcc\xc7\xa4\xd4\x95\x06\xf1\xfc\x11\x9f\x11\x16\xe9\x7a\x93\xac\xe0\xf0\xd1\x64\xb2\xc5\x6d\x58\x7a\x67\x38\xd9\x15\x54\x60\x3b\x97\x38\xe7\x20\x49\xf6\x97\x58\xe0\xf6\x2c\x07\x5e\x5f\xd2\x0e\xf9\x36\x22\xbf\x9e\xfb\xc8\xe4\x79\x38\x6c\xa4\xe6\x88\x4d\xb4\xac\xb9\x70\x0a\x03\x93\x29\x0c\x58\x2c\x60\x65\x2d\x9e\x50\x94\x0b\x3b\xfc\x63\xa9\x80\x63\x41\x32\xb4\xf1\x6e\xa2\x70\xde\x4f\xd1\x0d\x8f\x2e\xfb\x63\x53\xd5\x56\xb6\x69\xd4\xa5\xb4\x6a\x96\xce\x06\x99\x19\x02\x26\xfd\xb6\x44\xd1\xd7\x81\xc5\x9d\x07\x71\x08\xcd\x8a\xbd\x28\xcb\xb3\x76\xe7\x05\xaa\x18\xa2\x76\x5e\x90\x0d\x1a\x7e\x33\x75\x07\x6f\xe8\x2f\xea\x51\x4b\xe8\x88\xcd\xab\x3a\xad\x18\x11\x57\xc3\x8e\x86\xca\x3b\x3d\x38\xcf\x05\x86\xaa\xf3\x13\xf2\xca\x12\x51\xc2\xa0\x52\xdd\xd4\xbd\x9e\xbd\xe8\xdb\x2d\x69\xb3\x72\x47\x44\x67\xcc\x4c\x08\x43\x30\x3a\xb2\x0f\xde\x66\x40\x1e\x46\xdb\x39\xa5\x87\x6b\x7e\xce\x6a\x8f\xc6\x29\x3d\xd8\xc9\xa3\xf7\x0e\xb7\x8e\xd4\xe0\xa1\x24\xf3\x02\x1a\x89\x32\xb2\xd5\x34\x56\x14\xe1\x32\x35\xb2\x53\x88\xb2\x96\x75\xe1\xf9\xd4\x64\xdb\xa4\xc1\x89\x37\xb7\xb8\x7a\x0b\x53\x95\x06\x6a\xa1\xc4\x0d\xcc\x9d\xcc\x9d\xce\xff\xdc\x6c\xd0\xa1\xf8\x41\x66\x00\xc7\x83\x82\x0c\x82\x15\x12\x80\xe3\x58\x72\x24\x4b\xd7\x1f\x4c\x68\x19\x3f\xb3\x49\x30\x4b\xa6\x30\x4d\x67\xba\x07\xbf\xb0\xaa\x26\xb1\x77\x14\xc5\x80\x97\x74\x88\xe3\x89\x8e\xc7\x63\xd6\xc5\x34\x55\x19\x5b\x24\xbd\xfd\xca\x73\xa6\xe4\xbf\xeb\x6b\xb0\x13\xaf\xf7\xdf\x40\x2d\xc7\x3c\xa9\x70\xe8\x2c\xd8\xdc\xbf\x48\x70\xa8\xfa\x18\x11\x1b\x5c\x65\xe5\x75\x65\x2a\xb6\xa1\xf9\x39\x4c\xf3\x55\x78\x70\x88\xa8\x98\x43\xc0\x5f\xc0\x6a\x5a\xbc\x40\xf5\x39\x31\x8a\x68\x8d\x06\x36\x68\xcb\x66\x0f\xa4\x33\x74\x46\x84\x4e\x9d\x37\x8e\xc5\xe5\xa9\x03\xec\x48\xce\xb2\x99\x78\x65\x9d\xd7\xb2\x94\xc6\x8e\xcb\x3a\xab\xc9\x82\x1a\x91\xcd\xe3\xd6\x6c\x48\x1d\x9d\x93\xce\x94\x56\x92\x56\x1b\x0d\xfa\x4d\xc2\x35\xb0\x57\x06\x92\xbc\x52\x09\x15\x04\xd1\x19\xba\x54\xed\x55\xe8\xda\x7d\x11\x7d\xdd\xa1\xd7\xbe\xe1\x1d\xbb\xe5\x5a\x8d\x5c\x0b\x52\x87\x2f\x07\x3f\x51\x28\x41\x6a\xe8\x56\x8c\xcc\x09\xe9\x40\xb3\x0a\xbc\xa4\x47\x54\xda\x30\x23\x98\xaa\x02\x0f\x78\x59\xcc\xdc\x28\x56\x8b\x02\x3f\x45\x9a\x60\x60\xad\x1c\xa1\x47\xa6\xae\x66\xef\x23\xd1\xfc\x45\x24\x0a\xf6\xee\xa5\x28\xa7\xd9\xf4\xd8\x39\x3a\xf5\x4d\x3e\x1d\x87\x0e\xdf\x0d\x6e\xa5\x08\x29\x1c\xaf\xa5\xee\x4c\x54\x59\x12\xda\x32\x0c\x1c\xdf\xe2\xec\x67\x99\x56\x13\x2b\xe7\x15\x9d\xbe\xd9\x97\xcd\x13\xf3\x0c\x9a\x2f\x86\x26\x19\xf2\x00\x73\x06\x19\x42\xd9\xd4\x24\x83\x7c\x44\x6c\x85\x49\x94\xac\x1f\x6c\x7f\x19\xaa\xaf\x83\x05\xc6\xcf\x36\x25\x27\xb8\xec\x51\xc4\x4c\x0e\xd5\xd6\xad\x1e\xc9\x8a\x9c\x01\xcf\xbb\xc4\xa7\x20\xe5\x63\x70\x50\x94\xe2\x02\xf0\x9c\xa8\x46\x9c\x0f\x61\xd2\xcd\x9f\x0d\x49\xd7\x56\x91\xca\xc1\xa6\xf7\x3f\x88\xa5\xe8\x05\xe8\xac\x09\xc4\xa4\x47\x63\xe0\x59\x28\x08\x8f\x11\x64\x88\x65\xec\xe7\x08\x2b\x27\x3b\x11\x6a\x34\x80\xd7\xd8\xbd\xc3\xd3\xc0\x2e\x93\x72\x17\x7d\x65\xbb\xb6\xa9\x57\x5f\xbf\x54\xe7\x0a\x23\x5a\x56\x48\x7e\x7c\x74\xcb\x37\x5f\xdd\x97\xf2\xe2\xc1\x16\x18\x9b\xce\xcb\x87\x88\xae\xe4\x65\x83\xe7\xea\x2b\x15\x39\xac\xef\xfe\x82\x3e\xb8\xa8\x8b\x4c\x80\x80\xce\xeb\xc4\xc4\x60\x83\xba\x01\x94\x6e\x81\x23\x4b\x5a\x92\x8d\x0a\xd5\x7f\x30\xfd\xae\xa1\x31\x2c\x75\xb2\xf5\x81\x02\xd8\xcb\xd4\xe3\x6e\x0a\xd3\x58\x04\x76\x1c\x65\xa4\x21\x22\x3e\x61\x1b\xf8\x6d\x99\x98\x63\x7e\x23\x45\x91\x6b\x4b\x5c\x06\xb5\x3d\x1e\x36\x53\xc8\x75\xc1\xf5\xd7\x47\x0e\xc0\xd8\x55\x50\x4b\xb8\x2e\xd0\x3b\x6b\xa0\xe4\xc6\x42\x32\xe9\xc3\x29\x39\x41\xad\x93\xc7\x92\x80\x98\x74\xd1\xc4\x40\x64\x36\x7b\x3f\x52\xde\x71\x84\x0d\x01\x23\x64\xcd\x2d\xc6\x13\xb6\x54\xed\x1e\xc8\x5b\x5e\x71\x84\xc0\xa5\x4a\x86\x84\xbc\x8d\x53\x36\xf6\x7b\xea\x2f\x74\x82\xca\xb7\x10\xb5\xc1\x24\x1c\x30\x12\x30\xe4\x10\xc8\xc8\x5a\x24\x87\x01\x13\x4b\xda\x21\xde\xc5\xdd\x1b\xf4\xc3\x71\x21\x1c\x7e\xc7\xc9\xe3\xdd\x49\x64\xec\x5b\x65\x49\x3f\x10\xc9\x64\xbc\x63\x78\x7c\xb4\x3b\xaf\x80\x4e\xe9\x8c\xc2\x0d\xb6\x75\x23\xfd\xa7\x02\x88\x58\xed\xc8\xd4\xa4\x6b\xd6\x80\x8e\x49\x2f\x06\x95\x4e\x15\x48\x32\x69\x1f\x76\x6f\x1f\x9e\xee\xb0\x70\x14\x53\x9d\x88\x44\xa0\xd2\x80\xc5\xa6\xc6\x8a\x0b\x9f\xf3\x6c\x90\x81\xb5\xe9\x58\x45\xca\xfc\x1a\x2a\x98\xc9\x05\xd3\xa6\xd2\x16\x33\xd0\xa6\x8d\x3b\x37\xd9\x76\xc6\x94\xa7\x17\x0f\xeb\x71\xca\xd3\xd7\x0b\x53\xa3\x10\xeb\xba\x92\x2f\x61\x9f\x79\x74\xe4\x28\xc9\x15\x80\xa1\xa2\x7c\x7d\x1b\x08\xaf\xa2\x16\x73\x82\x69\x0a\x06\x90\x9c\x1b\xd2\xf5\xd9\x80\x81\x02\x66\x00\x03\xc7\x08\x88\xff\x08\xb7\xde\xfd\x0f\x47\xb3\xf8\xfa\xe3\xaa\xbc\x5d\x96\x01\xf6\x02\x3f\x19\xb7\x36\x52\x26\xf5\xd7\x8e\xd6\x9d\xf7\x37\x6f\x05\x52\xe8\xee\x07\x73\xee\xfc\x4e\x1a\xb9\x9c\x9c\x0b\x60\xcf\xde\xf1\x0f\x8e\x0f\xa7\x13\x3f\x03\x61\x90\x80\xf1\xc3\x5d\xa6\x8d\xd0\x1b\x9e\x06\xfe\x41\xe0\xaf\x90\xed\x1c\x3f\x50\x82\x58\x1c\xfd\x81\x8d\x62\x73\x9d\x5f\x6f\xbe\x56\x59\x65\x5a\xce\x3b\xa1\xad\xdc\xdd\x39\xfc\xec\xe0\xf0\x05\x28\x74\xf6\x4e\x71\x3c\x50\xf9\x42\x6d\x82\x16\x50\x86\xba\x59\x37\xc8\xf2\xa3\x93\x3d\x20\x36\xba\xdf\xa3\x14\x2c\x51\x85\x80\x2b\x89\xe7\x3b\x1e\x6b\xe4\x9a\x3a\x4f\xd6\x78\x01\x42\xd8\xe2\xed\x0f\xd4\xed\xd8\xed\x7d\x4c\x7d\x64\xee\x31\x33\x37\xda\x3a\x23\x79\x01\x8f\x86\x68\x24\xe4\x0f\x96\xba\xea\xe2\x6d\x51\xdb\x4a\x58\x56\xb8\x93\x19\x23\x60\x99\x82\x0b\xb7\x10\xbe\x78\x85\x81\xb5\x0f\x8b\x19\xdb\x89\x11\x0a\x08\x3b\x70\xa4\x15\xbb\xdb\xe0\x65\x1d\xe9\xe1\x80\xbb\x22\x27\xef\x78\x86\x36\x9f\x21\x06\x64\xb8\xb9\x38\x1b\xb9\x28\x4f\x22\xa3\xb8\x54\x88\x05\x70\xe7\x47\x46\x78\x4a\xdc\xb9\x9b\x13\x1c\xfd\x58\xe8\x3e\x20\x06\x80\x9d\x04\x58\xa1\xe9\x58\x90\xa3\xef\x1e\xbc\x78\xfc\xfc\xf0\xbb\x7f\xfe\xee\xe8\xf0\xe4\xc9\x03\xcf\x7a\xdc\xf1\xfe\xa1\xd9\xc4\x1e\x44\x5e\x28\x7e\x6b\xfb\x6c\xfa\xe2\xac\xca\x51\x91\x61\xff\xb3\x4a\x81\x18\x7b\xaa\xc3\xb4\x6b\xd5\x1a\x7d\xad\x6b\xf4\x7e\x95\xbb\x4e\xac\x18\xa3\xbb\x38\xf9\x11\x75\x7e\xaf\x26\x6c\x88\xd8\xfd\x4f\xaf\xc6\x0d\x36\xb6\x7d\x46\xf5\x60\x84\x73\x71\x39\x6a\x41\x1e\x7c\xd7\x8d\x04\x10\xb9\xba\xa4\x4e\x01\xa8\xa2\x84\x81\x21\x49\x42\x92\x2e\x38\x10\x5a\x45\xce\x5a\x20\x32\x39\xe0\xf6\x35\x6e\x7a\x65\x3c\x54\xa7\x13\x24\x32\x20\x3d\xe3\xa5\xf7\x9c\x4c\x91\x14\xcf\x4c\x5f\xf1\xa3\x9b\x07\x41\x25\x0e\x67\xe5\x3d\xdb\x2a\x90\xc7\xe0\x6e\xb5\xb3\xbb\x3d\xce\xb3\x2c\xd0\x3d\xf1\xee\xd7\xb0\x1f\xc0\xa3\x77\xc0\xa9\x61\x95\xaf\x07\xfd\x61\xc0\xec\x12\x75\x88\xe8\x36\x9d\x7b\xa3\x93\x8b\x56\xa7\xcd\xd2\x30\xe1\x10\x3a\x18\xbb\x26\xea\x24\x4a\xe9\xbd\xf3\x80\xfa\xc3\x99\x60\xcc\xae\x5b\xde\x27\x88\xbe\xe4\x4f\xd3\x76\xec\x08\x39\xd0\x24\x39\xd1\xad\x0f\x21\xbe\x4d\x02\x92\xde\x7e\x3a\x59\xc2\x91\xd4\x63\x61\x8a\x09\x43\x4d\xc8\x4f\xba\xbb\x38\x14\xe7\x1b\xe0\xae\x37\x14\xe1\x4a\x2a\xa1\x5b\xe3\x41\xa3\xd8\x73\x62\xa9\x51\xdf\x77\x67\x42\x2b\x22\x5b\xc3\x03\x99\x61\x32\x3f\x2e\xa7\x58\x1a\x5f\x5e\x37\xfc\x75\xb0\xe1\xae\x86\x4a\x63\xbd\x36\xb9\x31\x2b\xb2\x36\x78\x6b\x36\x8a\x04\x8c\xca\x74\xa2\x1e\x6c\x59\x98\xe1\x4f\x18\x90\xee\x82\xd1\xfd\x07\xaf\x14\x23\xc5\x95\xc8\x17\xd3\x95\xe9\xcc\xaa\x6e\x5a\x4d\x7a\x25\xb8\xb4\x2b\xb3\x84\xab\x18\xf5\x83\xf0\xef\x52\xbb\xdf\xa3\xad\x2b\xae\xc3\x3a\x29\x9c\x0e\x60\x19\x46\xc9\x5b\x83\xee\xaa\xf2\x7b\xb4\x25\x87\x70\xba\x9a\xa8\x45\xc2\x50\x7a\x83\x26\xb0\x66\x0e\x88\xda\xcd\x0e\x6b\x83\x4c\x14\xfb\xeb\x21\x4f\x1c\x83\x19\x19\x60\xe3\x14\x70\x8a\x70\x95\x02\x59\xe0\x5f\x38\x8a\xbe\x37\x71\x5f\xa5\xed\xf2\x7e\xab\xc9\x76\x95\xfa\x54\xf5\x95\xb3\x84\xcc\x8e\x24\x8c\x84\xa4\x67\x36\x82\x48\x10\x3b\x4c\xaa\xd3\xc8\xf8\x70\x34\xfb\xee\x97\x46\x04\x5e\xfe\x0e\x27\xde\x16\x9f\x90\xa8\x0c\xc4\xfe\xd3\xc9\x25\x3a\x17\xa0\x5d\xe1\x9f\xe4\x0f\x32\x2b\xac\xd4\x35\xd9\x1a\xfc\x9f\x84\x18\x76\xf6\x7b\xfc\xff\xa8\x1d\x61\x9c\x86\xb1\x78\x02\xa7\xb3\x05\x92\x09\x83\xbf\x79\xbf\x25\xe1\xb6\x8e\x32\x73\x42\xad\x51\x19\xd9\x67\xd1\xb3\x2a\x8d\xa5\x98\x48\xac\x3e\x47\x26\x3f\xf3\xa1\xfa\x2e\x32\x39\x2e\xde\x4f\xe0\x88\x0d\x49\x48\x0b\xd2\x94\x62\x51\xf5\xfa\xee\xd7\x56\xd2\x06\x38\xb2\xe2\xba\xa4\xed\xa4\x11\xdf\x64\xbb\x29\x35\xa6\x4c\x22\x40\x42\x69\xf1\x72\x7f\x12\x87\xe2\xb9\x88\xb1\xb1\x9a\x8e\xff\x64\xde\x92\xc8\x5e\x88\xe8\xbb\xff\xf8\xf0\x05\x05\xf2\xe1\x9d\xb4\xa4\x98\x65\xbc\xe9\xab\x06\xa9\x3d\x1c\x4b\x1f\x2e\xe5\xba\xde\xa2\xb3\x9e\xb5\xcc\xed\xc0\xdd\x54\xce\xbe\x77\x41\x03\x12\xf4\x01\xe2\xf0\x06\x03\x17\x71\x1d\xdc\x4f\xe2\xa5\xdd\x87\xbe\x9c\xe9\x1b\x4d\x08\x95\x8b\x6c\x46\x3f\x1b\xbc\x42\xb9\x29\x32\xf2\x3c\xad\x03\x72\x0a\x0c\xb6\x3b\xb6\x58\xa2\x07\x8f\x0f\x1e\xb5\xa1\x6b\xb1\x37\x3f\xa3\x9f\x30\xd9\x82\x3f\xb0\x91\x19\xd1\x13\x90\x81\xe8\x99\xa3\xc8\xd6\x13\x34\x0a\x0e\xb4\xba\x3a\xcd\xb5\xcc\x6a\x8c\x34\xb2\x9e\x64\xc3\x3c\x6a\x64\x78\x45\xae\x63\x7b\x35\xaf\x4c\xbd\x06\xe6\x01\xd3\x7f\x84\x0f\x9e\x41\x3b\x62\x86\xb6\x8b\x6b\x3b\x47\xa1\xe0\xd9\xf8\x7f\xfe\xdb\x7f\xbf\xf7\x90\x96\xfb\xb0\x6b\xab\x7b\x0f\x9d\x31\x88\xdb\xf6\xd8\x14\xf7\x81\x46\x61\x67\xec\x31\xf7\xbf\xbe\xa6\xd3\x0b\x10\xc6\xbb\xaa\xe9\xf8\x30\x93\x3f\x5c\x83\x62\x14\x9e\x64\x18\x95\x9d\x1d\x62\xbb\x20\x15\x04\x35\x49\x6a\x32\x6c\xd7\x9e\xde\xc3\x51\xaf\x9b\x10\x60\xa4\x98\x76\xab\xc9\x9f\x7a\xb3\x5c\xcf\x57\xbd\x29\x35\xb0\x34\x56\x05\xed\x8f\x92\x5b\xaf\x3b\x33\x96\xf1\x9f\x91\x7a\x48\x19\x63\x97\x7d\x22\xfd\xcb\x66\x83\x5e\x18\xb9\xdf\x7e\x42\x4d\xd9\x51\x03\xf8\xbb\x12\xf5\xba\x3d\x7a\xd7\xa1\x39\x98\x47\x3a\xf2\x0e\xc1\xce\xf6\x83\x18\x10\xb5\x41\x8f\x5d\x41\xb5\x73\xa4\x8a\xd9\x6d\xc6\x37\x10\xcc\x9b\xc2\xcf\xc7\xb9\x1c\x76\xf0\x3b\x40\x7d\x22\xeb\xbe\x50\x97\xaf\x2a\xe2\xfd\x40\x60\xb9\x33\x99\x08\x81\x7e\xc0\x34\xb9\x6b\x35\x72\x9a\x40\x34\x4f\x4d\x85\x9e\x9a\x62\xc9\xc6\x40\xfa\x4e\xad\x66\xbf\xa7\xaf\x05\x7f\x2d\x9a\x16\xfd\xda\xa5\x0b\x10\xb8\xa8\x13\x33\x81\x6f\x98\x73\x63\x35\x96\x26\x03\xb3\x6b\xec\xcd\xaa\x51\xa9\x85\x46\x55\x7d\x67\x76\x7f\xd5\xa8\xb1\xd8\xc0\x89\xb1\x1d\x6c\x10\xf6\x8d\xe6\x4c\x0c\xd6\x24\x17\x3f\x8c\x06\xd9\x6c\x4c\x87\x66\xe9\x8b\xdd\xbb\x6b\xb2\x95\xb6\xc0\x12\x2b\xab\x29\x2e\x06\x35\x0e\x66\x42\x66\xbd\x56\xa1\x8f\x3e\xaa\x54\x5b\x0e\xc3\xb4\xfc\x1d\xf6\x9c\x92\x70\xbc\x24\x4f\xe4\x56\xf3\x57\x0a\x01\xc1\x26\xcf\xc5\x65\xa6\x8e\x9b\xf6\x5c\x09\x69\x90\xa2\x93\x75\xcc\xb1\xd6\x17\x2c\xb0\x91\xc9\x6e\xe2\xe6\x36\x1d\x99\xa3\x2b\x4a\xd3\x82\xc0\xc6\x0d\x6a\x9c\xa2\x9e\x41\xca\xfd\x47\xbc\x3e\xe0\x6c\x92\x47\x68\xa8\xba\x81\xa3\x8c\x66\xad\x7f\x16\x5b\x6c\x28\x41\xf3\x13\x05\x5a\x45\xdf\x38\x4c\xe7\x25\x06\x09\xad\x3d\x1c\xa7\x80\xd8\x94\xfd\x03\xb5\xc8\xf0\xd9\x45\xbc\x60\xb2\x1d\x31\x18\xb9\x5d\x8c\x8a\xa6\x83\x2d\x8b\xca\x6a\xe4\x8f\xa0\x98\x0e\xa3\xa6\x1a\x37\x6f\xfb\xb8\xc6\x12\xf6\xab\x9d\x4b\x1f\xee\xe4\xeb\xb1\xbe\x3c\x26\xe4\x88\x90\x8f\x18\x2a\x12\x09\x48\x2b\x8f\x0c\x1e\xd5\x6f\xe0\x30\xb2\x8f\x63\xd6\x2a\x19\xa3\xd9\x82\x7c\x1b\x4f\x87\x18\x6f\xa3\x6f\x6f\x05\x64\xc6\x62\x40\x42\x68\x47\x6c\xd6\x58\x43\x13\xb7\x83\xbb\x1b\x33\x15\xe1\x38\x68\x27\x44\xf5\xb6\xb1\xc3\x55\xf8\x6a\x0e\x88\xca\x55\x6f\x32\xf8\x84\x9a\x04\x1e\xa9\x05\xe4\x49\xaa\x31\x99\xf3\xe9\x9d\xfc\xae\xc7\xa0\x93\x6d\x65\xb4\x70\xdb\x35\x28\x9f\x6f\x2b\xb5\xd4\x12\x14\xe6\x11\x24\xf0\x48\x98\x0a\x27\x19\x54\xba\xf5\x04\x55\x7a\xf6\xf0\x20\xc8\x77\x6a\x31\xfb\xa8\x84\x99\x33\xf4\x7c\x0f\x08\x5f\x5f\xe8\x60\xeb\x4a\x85\x98\x71\xff\xdf\x65\x13\x8e\x0b\x81\xb5\xc3\x8b\x17\xed\x9a\x0c\x1f\x71\x55\x19\x2e\x53\x5a\xbd\x1f\x2f\xf3\x8a\xfb\x86\xb0\x39\x1e\xe4\x3d\xdc\x8a\x0a\xa1\xce\xca\x40\x9d\xdb\x06\xd9\xdb\x98\x38\xce\x97\xc4\x65\x0e\x0b\xa6\x18\x77\x28\xf4\xfc\x25\x9a\x67\x22\x9b\xc6\x68\x75\x2b\x29\xb6\x40\xee\xb8\x6a\x7a\x44\xa8\x9b\xb7\xbb\xbf\x9a\x96\x92\x32\x20\xc7\x36\xd6\x8a\x11\xa1\x9c\x2f\xae\xa8\x91\x38\x5a\x0a\x42\xa0\x47\xd2\x48\x9b\x0d\x3a\x67\x35\x35\xc6\x16\x63\x9b\xef\x2c\x9b\x87\x41\x2c\xc7\x05\x67\x2d\x2c\x46\x5e\x3c\x61\x7f\xe4\x91\xa2\x29\x26\x20\xb3\x9d\x27\x83\xf9\x76\x53\x1d\xc4\x68\xa8\x03\x04\x54\xed\xa9\xd1\x6a\x90\xdf\x3a\x36\xfe\xc3\xd5\x63\x75\xed\x23\x42\x86\x8b\xe0\x71\x35\x9a\x07\xb9\x01\x80\xd7\xa2\x47\xf4\xfa\x7d\x8d\x36\x8d\xed\x90\x7c\xa3\x09\x06\x1a\x39\x2d\x24\x70\x10\xf0\x05\xd3\xbd\xdd\x32\x56\xd4\xce\xb9\xac\x8f\x34\xc3\x23\x47\xdb\x31\x0b\x76\xae\x1f\x3f\x7f\x05\x52\xfc\x47\x3f\x7e\xf1\x8a\x4d\x62\x7c\x14\x55\xf1\xd1\x8f\x9f\xbd\x1a\x36\x9c\x9f\xaa\xb5\x9e\x51\xa3\xf1\x9a\x5b\xb8\xfa\x4c\xd3\x63\x6a\x2f\x8c\x5c\x05\x7e\x85\xbc\x06\x02\x39\xf9\x19\x70\x18\xe6\x87\x2c\x5b\x4a\x09\x38\x86\x9b\x09\x81\x4a\x08\x41\xe9\xd2\x43\x90\x3f\x4a\xb8\xb0\xfa\xcd\x5c\xd6\x6d\x91\x4e\xc8\x8a\x5f\xb7\x81\x8c\x70\x29\xca\x69\xdd\xec\x27\x07\x11\x90\xec\x60\xf9\xa6\xc4\xc5\xc3\xcc\x9d\x32\xe3\x77\xfc\xeb\x6b\x5a\x1c\x82\xe2\x27\x3f\x50\xe3\x4d\x63\xc0\x5c\x54\x12\x48\x05\x3c\x86\x9a\xa6\x04\x8b\x53\x7c\xb9\xbb\x20\x2d\x93\xb9\x48\x9d\x27\x6e\x77\xc8\xa5\x3e\x6b\xd0\x6a\x82\x88\xf4\xc6\x10\x89\x23\x56\xd2\x6a\xb7\x75\xbc\xb7\xad\x90\x68\x87\x36\xbe\x55\x06\x77\x04\x9b\x9b\x9d\xfd\x8d\x50\xe3\xe9\xb9\x4e\x3a\xe9\x23\x0a\x1f\xf8\x6d\xdd\x31\x63\x03\xbc\xf6\x29\x75\xe8\x48\x02\x6c\x26\xf2\xf6\xfe\x5e\xf3\xac\x17\x9b\x81\x7f\xc3\x00\xdb\x86\x92\x1e\x0a\x2f\x26\x1f\x49\x1f\x98\x86\xf7\x87\x43\x31\x50\xaa\x4a\x81\x8b\x26\x05\x69\x06\x84\x3f\xad\x83\x17\x26\xab\x75\x92\x7a\xa6\x9e\xbb\xb0\x1e\x12\x75\xbc\x75\xc6\x2b\xf6\x4a\x63\x51\xf6\xc2\x4c\x4a\x45\x1a\xf1\x9b\x58\xab\x43\xe8\x70\xc8\x2f\xe1\x89\x40\x8f\x4b\x75\xe3\x82\x14\xd8\xa1\x3a\x37\xd0\xcc\xd4\xc9\xcc\x4d\x4f\x5d\xe8\xe0\x8e\xe5\xbe\xf2\xc5\x2a\xe9\x74\x86\x6c\x40\x5a\x6d\xd9\x54\x4d\xcc\x2d\xac\x5b\x8c\x69\xc9\xeb\xa0\xee\x1c\xce\xef\x80\x53\xe4\xf2\x70\x16\x6c\xc4\x2a\x8c\xde\x58\xdc\x60\xb8\x3c\xfe\x9e\xf8\x5e\xa6\x45\x12\x91\x16\x26\x8a\x91\xe9\xac\x98\x1f\x76\x41\xde\x38\xbe\x66\x50\xe1\x8f\xd6\x1c\x73\xcb\x11\x46\x88\xd4\xe5\xa2\xd9\x67\x3e\x8f\xbc\x6d\x2e\x8c\x45\x6f\x8a\xd4\xb7\xc2\xad\x95\x1c\x2b\xf6\x1a\x6d\xc6\x67\xe0\x3d\x71\x64\xce\xb7\x99\xab\x59\xa2\x23\x31\xe1\x48\x5f\x16\xc7\xf0\xab\x78\xce\xd9\x13\xa5\x08\xce\x21\xfa\x85\xcd\xd9\xfd\x0b\x43\xf6\x49\xff\xcb\x46\x0f\x2f\xfa\x8e\x57\x66\x60\x24\x2d\x4a\x73\x41\x6a\xec\x6b\x8a\x35\x03\x9a\xe5\x33\x87\x98\x31\xa9\xb2\x9f\x66\x3d\x2f\x40\x42\x9c\x6d\xd5\x46\x75\x2a\x1f\x93\xff\x9d\xd9\x30\xdc\x06\xb9\x24\xae\x95\x08\xc4\x24\x08\x93\x9e\x4c\x26\xe2\xc0\xd0\xa0\x8a\xb1\xaf\xe0\x7e\x39\xd2\xe4\xb7\xa9\xc5\xfc\xdb\xa2\xc3\xd0\xd4\x57\xeb\xce\x90\x5f\xe9\x1a\x3f\xe8\x11\x05\x78\x15\xd1\xd8\x1d\x99\x18\x25\x3f\x06\x69\x5f\xc3\xb4\x48\x6a\x40\x61\x9b\xdd\xf0\x29\x7e\xca\xb8\xde\x31\x6a\x20\xce\x62\x39\xfb\xe9\xfb\xc8\xad\x63\x1c\x4c\xb6\x40\x25\xcb\x56\x1c\xe1\x01\xc6\xf8\x0f\x0f\xa1\x37\x5f\x46\x74\x03\x89\xe1\x7d\x1a\xe7\x3e\xb2\x00\xa5\x10\xc6\xdf\xd1\x0f\x26\x8f\x02\x55\x16\x24\x0e\x6f\xdf\x1d\xa9\x4c\xd4\x81\x37\x9b\xf0\x14\x9d\x5f\xb7\x55\x5f\xf2\x96\xe3\xa0\x65\x24\x22\x23\xd2\x7f\x85\x91\xbf\x8e\x28\xd3\xdf\x14\x10\x2f\x5f\xbf\xf0\x5f\x65\x80\x8d\x6e\x57\x8e\x2d\xe0\x71\xc2\x00\xe7\xea\xef\x1a\x01\x1a\xff\xc3\x2b\x87\x00\x20\x81\xe0\xd5\x8f\x69\x4f\xd8\x27\xf9\x04\xb0\xa3\x56\x49\xe9\x40\x27\x10\x0a\x51\xb9\x20\xea\x11\xd2\x6f\xb1\xf5\xc0\x48\x0d\xb9\xbf\x01\x6b\x68\x39\x21\xf6\x37\x5c\x91\x40\xec\x74\x2b\x5e\xb9\x7b\x40\x2e\xe1\xe2\x28\xdd\xf5\x11\x98\xc9\xf4\x38\x4d\xc0\x05\x93\xf7\x9b\x60\x23\xe4\x92\x52\x0c\xc1\xd8\x83\x4c\x43\x6f\xd6\xd0\xd1\x1d\xe9\x09\x78\x5d\x05\xc7\x89\x2c\xe2\xa4\x10\xd7\x98\xb2\x64\xbc\x47\xf6\xc2\xa6\x03\xe1\xfc\x75\x72\x9f\x43\xa7\x1b\xcd\xa2\xcb\xdc\x8a\x8c\x05\x9a\xa2\x97\x6b\xca\xb6\xd2\x90\xdb\x08\x66\x67\xa9\x08\x0a\xce\x5d\x4f\x1f\x14\x1b\xd3\xae\x29\x28\xdd\xe5\x17\xe8\x3d\xef\x4e\xa6\x2d\xf6\x4e\x17\x14\x57\xf5\x9c\x0c\x2b\x04\x10\x46\xab\xc3\x36\x56\xd8\xb2\xa1\x2c\xca\x40\xd4\x64\x10\x47\x07\x26\x36\x3c\x63\xf6\x45\xb3\xd9\xb3\xfc\x4d\x34\x24\x59\x1f\xb2\x51\x33\x3d\xf1\x6f\x19\x96\x80\xca\x87\x3f\x70\x42\x1b\xe1\x19\x08\x3e\x66\xff\xe0\xce\xd2\x2b\x88\xe8\x6c\xf0\x08\xa8\x44\x8f\x89\x41\xbe\x82\x78\x94\x49\xac\x35\x96\x90\x21\x45\xb8\x94\x6a\x8d\x2a\x09\x55\xbe\x10\x69\x4f\x07\xa3\xaf\xe5\x98\x53\x3f\xa4\x6a\xb5\x40\xfc\xd8\x8b\x87\xfd\x86\x05\x32\xee\xc0\x28\x27\x94\x8c\x01\xe5\xfc\x03\xa8\xe6\x27\xbf\xfb\xa8\xfc\x14\xd1\x8f\xb2\x42\x26\x31\x50\xe8\x46\x43\xee\x75\xc8\xee\xe5\x27\x8d\x0c\x5c\x1e\x81\x29\x35\x35\x22\x5c\xbe\x3c\x8c\x64\x8e\xb4\xa0\x5e\x1b\x37\xa2\x2c\x88\x6a\x8d\x2a\x4a\xa2\xf2\x3d\xca\x92\xbc\x46\xe9\x05\x13\xca\x81\x13\x4f\xa3\x99\x97\x3d\xa0\x1e\x12\xf8\x6f\xf5\xb5\xcb\x9f\xa0\xf2\x49\x38\x59\x64\xd0\x75\x10\x79\xd2\xc5\x01\xeb\xb1\x38\xd3\xaa\x64\xb3\x26\x5e\x1c\xe7\xac\xb4\xce\x54\x6b\x8c\x4a\x2e\x20\xed\x0d\x87\x1c\x08\x6f\x37\x4d\x46\xcb\x6e\xa1\x81\x42\x30\xaa\xcb\x2c\xea\x4b\xd3\x5a\xb1\xf9\x46\x65\xa9\x31\x38\x2e\x70\x70\x78\xe1\x73\x48\x7c\x52\xfb\xd4\x92\xf6\xd3\x74\xe9\x9a\x2c\x1c\xa2\x67\x8c\x8b\x7c\x7a\x2c\xe9\x0e\x45\x01\x60\x51\x5c\xaf\x44\xff\x10\xfb\x25\xcb\xa3\x8d\x53\x5c\xa1\x2f\x92\x78\x13\x84\x24\x90\x1f\xaf\xe0\xbf\x7b\x9b\xcd\xbd\xb2\xfc\x78\x04\x22\x9e\xc7\xcb\xd5\x56\xe3\x1e\x9a\x3e\x0b\xee\x9d\xb8\xab\xc0\x37\xdf\x0a\x57\xac\x96\x6c\x6c\x20\x12\x94\x45\xd4\x11\x2e\x62\xa2\x31\x4e\xd0\x59\x6e\xfa\x81\x6a\x54\x6f\x78\xe7\x97\xa6\x63\xf7\x32\x32\x75\xf2\x3d\xd6\xc2\x71\xc6\x64\x29\x19\x02\x24\x82\x4a\x54\x90\xe6\x94\xf8\x90\x05\x30\xc0\x0e\xbd\xb1\x26\x6b\x82\x40\x1f\x83\x5d\x88\xe4\x48\xa1\xe7\x45\x83\x6c\x0b\x62\x27\x9f\x91\xea\x23\xf2\x41\x3e\xf7\x4c\x44\x20\xef\x8f\x5b\xbc\xf5\x83\x28\xec\x62\xb9\x00\xb6\xb7\x08\x0d\x63\x93\xda\x8b\x4e\xfb\x44\x07\x80\xc5\x9e\xac\xee\xee\xeb\x94\x13\xb6\xda\xd9\x0f\x5b\x0e\x85\xf3\x05\x51\x22\x30\xe2\xb0\x9c\xeb\x56\xa8\x71\xd6\x34\x6b\x3b\x7b\x81\x51\xef\x6b\xcc\x2f\xb6\x7b\xbd\xfb\x6b\xd4\xf3\xca\x74\x5c\x03\x33\x15\x67\x65\x20\x1f\x98\x65\xc8\x1d\x7f\x8c\x92\xc2\x68\x2e\x7a\x60\x60\x40\x44\x69\xe7\xd7\xa8\xfd\xfd\x96\xfc\x43\x31\xc0\x15\x7e\x46\x13\xa1\x60\xb5\x1f\x24\x67\x1e\x94\x6e\xa2\xb8\x35\x5f\x49\xa2\x84\xfc\x98\x3e\x43\x5a\x18\xb6\x8f\x97\xcf\x71\x34\x78\xd9\xfc\xd6\x30\x32\x72\xcf\x17\x31\xd1\xb2\x07\x78\x93\x99\xc6\xfd\x30\x20\xb2\xd4\xf6\x54\x87\x28\xd2\x28\x1e\x77\x58\x8b\xd1\xd2\x55\x1d\xde\x86\x51\x63\xef\xc8\x17\xe5\xe8\xbc\x88\xc8\xb9\x64\xfb\x44\xab\x76\x48\xa6\x34\x9e\xde\xd1\x46\xf3\xa5\x37\x0a\x28\x47\x00\xf2\xa8\x96\xdd\x3d\xe4\x4d\x04\x85\xde\x3f\x51\x32\x80\x8d\x73\x9a\x4f\x0c\xa6\x23\x1e\xf1\x51\xff\x69\x24\xe6\xc0\x3e\x9c\xd5\xcb\x8e\x69\x6a\xb0\xc7\x53\x88\x04\x9d\x3d\x47\x6d\xee\x37\x4a\x96\xfe\x15\xd0\x35\x17\xd4\xef\x09\x82\x4d\x22\xdd\xe9\x9c\x71\x9a\x86\x8e\xd4\xeb\x18\x56\x19\x4e\x6c\x53\xb0\xf7\xe9\xc8\x9e\x52\x06\x1e\x38\xb0\xf3\xcf\x66\xf7\xd8\xcd\x79\xab\xae\x31\x1c\x9f\xbd\xa0\x9d\xa7\xa6\xa1\xbc\xd1\xc8\xfc\xa2\x17\x44\xe4\x5b\x80\xa0\x0b\xd1\xd4\xb7\x0d\xf0\xb9\x1b\xc0\x91\xc1\x0f\x1f\x20\x8d\x37\x07\x0e\x89\xfa\x91\x28\x78\x8c\xe7\x06\xda\x45\xd6\x84\xd0\x0e\x09\xd7\xc8\x64\x90\xde\x89\x06\xca\xb3\xaa\x18\xb6\x46\xe1\x39\x70\x8b\xa2\x79\xbd\x4f\x18\x32\x97\x6d\x35\xf8\x67\xf6\xb4\xe5\x8e\x41\xfc\x72\xb0\xdf\x31\x44\x53\x87\xd2\x0f\xf0\x10\x1d\xa0\x59\x02\xbf\xb4\xbb\xdc\xa9\x33\xf2\x52\x65\x17\xbf\xe1\xe1\x23\x5c\x43\xf7\x15\xb8\x8d\x90\x3c\xe3\xfb\x31\x40\xf9\xe4\xf3\x90\xfe\x93\x0b\xbc\x53\x8e\xb3\x96\xa5\xd4\xa7\x64\x50\xc9\x1d\x79\x5d\x9a\xd5\xfd\x2b\x20\x97\x16\xc2\x33\x35\xf0\x4f\x90\x68\x16\x2b\xc9\x93\x9d\x0c\x97\x67\x8c\x27\xbf\x73\x76\x67\x5d\x2b\x4a\x84\xff\x9e\xe1\x3e\xdf\x33\x9c\xb8\x76\x26\xa1\x1f\xc6\xbb\x47\xee\x9d\xc0\x7b\x46\xfb\x82\x47\x0b\x47\x2f\x64\x00\x0d\xce\x3d\x89\xb7\x25\x33\x3e\xe1\x58\xc7\x29\x1b\xc8\x29\x11\x31\x33\xd9\xc2\xe0\x9d\x88\xe4\x53\xe0\x16\x93\xa7\xec\x12\x89\xf2\x72\x45\xbd\x34\x7c\x95\xee\x0b\x67\x56\xa3\x47\x99\xd5\xd6\xdf\x0f\x0f\x69\xa8\xbb\x51\x6b\x10\x28\xb2\x0b\x63\xa4\x2b\x76\xcd\xcf\xbc\xe6\xb2\x63\x3f\x16\x02\x1a\xcf\x2b\xf5\xa5\xde\xe7\x43\xed\xab\x63\x3c\x4d\x60\x18\x9a\x76\x10\x29\x48\x5a\x35\x76\xf0\xc8\xee\xb6\xbc\x69\x12\xd8\x64\xf3\x86\x2e\xc6\x84\x3b\x8f\x67\xdc\xea\x4d\x43\x09\x63\x47\xba\x7a\x9a\x77\x22\x31\x85\x2e\x8f\x41\xe0\x24\xc8\x61\x84\xb3\xd8\xc6\x96\xf5\x13\xfa\x5e\xe0\x77\xb4\xa8\x07\x7c\xc0\x8a\x86\xf2\x87\xcc\x39\x13\x66\xf4\x7c\xc9\x80\xbc\x86\xdc\x21\xac\xb5\xf4\x41\x20\x61\x41\xe4\xf9\x9b\xaf\x79\x9a\x42\xeb\x52\x2f\x90\xb1\x8a\x60\xdc\xed\xe3\xc1\x88\x01\x13\xcf\xc0\xb4\x4e\x81\x1e\x93\xe7\x2e\xb5\x00\x32\x68\x9c\x45\x73\x23\xe9\xdd\xf1\x2f\xcc\xef\x42\x8e\xd6\x24\x14\xb0\xbb\x59\xb3\x21\xf9\x80\xc3\xe5\x49\xc3\x13\xde\xd1\x42\x53\xc8\x13\x55\x12\x4b\x45\x77\x10\x2d\xa7\xb4\xe2\xa8\xb6\xa1\x85\x77\xe8\x46\xc7\xa3\x89\xe3\x21\xc6\x84\xa1\x6f\xa2\x30\xd4\x3e\xd0\xf3\xf8\x87\x93\x17\xa9\x26\x60\x5a\x3c\xc5\x97\x23\xae\xaf\xe5\xb2\x80\xcf\x6b\x8a\x04\x0c\x31\x87\xb7\x7a\x45\xa7\x30\xe8\x8b\xb6\x81\x75\xa0\xf3\x27\xb0\x9f\xbb\xd7\x1c\x35\xe8\x61\x27\x60\x0e\xd6\x05\x61\x4a\xf6\x02\x3b\x6f\x90\x71\x27\x59\xbb\x0f\x09\x8c\x4b\x84\x08\xd2\xc2\x4b\x3a\xe5\x0b\xf1\xa6\xba\x2d\x46\x6e\xef\xb4\xdc\xa9\xc8\x30\xe2\x56\x31\x22\xef\x6d\xea\x14\x48\xc7\xf1\xfe\x8c\x55\xb3\xc0\x40\x5b\xe7\x4f\xa1\x87\x35\x58\x60\x05\x29\x41\x55\x17\x1a\x13\x74\x0c\x6a\x6c\x39\xad\xdf\xec\x11\x25\x24\x02\xb0\xac\x31\xb9\xc1\xb0\xde\xa2\x29\xaf\x5c\x94\xe4\x40\x0a\x91\x67\x8e\x44\x14\xe9\x39\xdc\x98\xfd\xcd\x28\x81\x11\xa2\xf1\x94\x99\x1f\x56\x62\x55\x22\x72\x63\xd2\x6e\xb4\xf8\x15\x24\x34\xb3\x9f\xb9\x0b\xbf\x45\x49\x84\x72\x87\x26\xea\x5e\xce\x78\xb0\x22\xc5\x97\x4f\x9c\x3c\x1d\x4c\x89\x2c\x62\x92\x29\xc4\x6f\x01\x79\x33\x83\x98\xfb\xee\xc2\xdd\x9f\x2e\xee\x8e\x38\x02\x7c\x31\x87\x69\x44\x08\xc6\x81\x69\x3f\xe0\xa7\x48\x1a\x5e\x9c\xbc\xd1\xd1\xfb\x67\x49\x3a\x65\x5d\x5f\x92\x91\x62\x6c\x3a\x14\x76\xb2\xfb\xaf\xd8\x3e\xd8\x0d\x07\xb5\x9c\xc9\x9d\x2b\xda\x0c\xda\x72\x3f\x4a\x65\x51\x5b\x64\xc7\x24\x22\x61\xbc\xfa\x3f\x5e\x87\xdc\x59\xcd\x28\x25\x60\x7b\x00\xd2\x03\x67\x0e\x48\x15\x84\x4c\xa7\x90\xc4\xb0\x0e\x1b\x25\xeb\x68\x2b\x43\x66\x2e\x62\x42\xe8\xcd\x23\x51\xe2\x70\xa0\x51\x19\x44\x85\x88\xbd\x60\x27\xaf\x4f\xbe\x3f\xf9\xe1\xe8\x40\xa6\xf0\xf3\xbd\xcb\xcb\xcb\x7b\xd8\xf6\x5e\xdf\x56\xba\xc6\x8f\xa5\x9b\xd3\x57\x7a\xf3\x75\xdf\x75\xd3\xaf\xee\xc3\x1f\x9f\x4e\x8b\x47\xba\x93\x10\x00\x42\x9d\x44\x15\x69\x12\x0d\xb6\xa3\x68\xff\x8e\xd4\x4b\x0e\x0d\xbd\x01\x93\x24\xc3\x8c\xaf\x78\xdc\x49\xf6\x48\xa2\x63\x83\x12\xdf\xd6\xc6\xb7\xe1\xb2\x85\xa9\x1c\x35\x18\xbe\xba\x4d\xd0\xc1\xc2\xe5\xb8\x1e\xc9\xc7\x22\x19\x64\xb2\x7a\x06\xc6\xa2\x99\x1c\xae\x1b\x79\x52\x26\xaf\xc2\x36\xe9\x27\x6c\x89\xf6\x65\xfa\x42\xbb\xb0\xab\x27\x22\x33\xd2\x36\xa3\x43\xc1\x75\x5f\x75\xac\x86\xeb\xe8\xd8\x99\x6b\x44\x5a\xd4\x86\x08\x9c\x30\x35\x1d\x9d\xaa\x6f\xf2\x0e\xc9\x4b\xb8\xa9\xab\x2b\x7a\xbf\x21\x32\x87\x38\x9c\x13\x39\x50\x46\x4b\x05\x1e\xee\x82\x12\xf3\xc2\x9f\xed\x15\x59\x19\xc9\x05\xa5\x09\x58\xe3\x64\x11\x14\x16\xc6\x04\x10\xee\x84\x13\xb3\x84\x64\x4d\x28\x10\x10\x0a\x86\x9e\x86\x6d\x52\x65\xeb\x78\xb1\xc4\xd5\xa0\x69\x51\x71\x0a\x2d\xb5\x52\x4e\xc1\x28\x81\xdc\x43\x90\x04\x6b\x40\x02\x87\x51\xe8\x79\x72\x3a\x0e\x3b\xe4\x9f\xc7\x25\x77\x4e\x6e\x8d\xf9\xac\x91\xc8\xe5\xdf\xfd\xcb\x44\x09\x05\x30\xe9\xf1\x46\x36\xa2\xc4\x52\x21\xe0\x94\x5a\xcc\xca\x66\x67\xcc\x12\x91\x99\x94\xa5\xec\xde\x77\xef\x8d\xf2\x97\x42\xda\x1c\xf3\xf5\xcc\x07\x35\xed\xe1\x06\xa4\x7e\x32\x7e\x7e\xe3\x76\xfb\xf5\x98\x23\xb2\x9e\x1b\xfa\x7d\x7c\x08\x3b\xc6\xe1\x7d\x6f\xc8\x4e\x69\x5d\x48\xbb\x88\x95\xf8\x4e\x4e\x7c\xcf\xd2\x14\x89\x0a\x30\x51\xe7\x18\x98\x04\x8a\x7c\x46\x03\xc9\x3e\x3e\x74\xac\x67\xe2\xec\x72\x82\xd5\xc8\x5f\x0d\x03\x8b\x56\xee\xe5\xb7\x41\x0a\x7f\x7c\x7d\x2c\x3b\xff\x1c\xb4\x4b\x51\xc9\x03\xf2\x91\xbd\xfd\x95\x53\x8e\x33\x55\xe3\x83\x97\x4f\x30\x27\x55\x65\x63\xb0\x6d\xab\xe6\x8a\xb3\x6e\xc0\x71\x21\x12\x15\xa7\x0d\x8b\x17\x18\xea\x46\x6c\xb5\xe1\x46\x2e\xf8\xc6\x27\x8d\xf0\xca\xb0\x66\x1e\x8f\x81\xf6\xc1\x90\x65\x01\xf9\x7b\xca\xd9\x37\xda\x8b\x8a\x65\xc0\xdc\x24\x32\xb2\x82\x3c\x0b\x84\xaf\x32\xc8\x5e\x81\x09\xac\xc6\x87\xcc\x12\x4f\x24\x5d\x84\x24\x16\x87\xe3\x6d\xdf\x9f\xc8\x22\x81\x67\x9c\xa1\x62\x4f\x8f\x4e\x8f\xbf\x2f\x49\xc5\x18\x14\x72\x5e\xfc\x7d\x3b\x34\xd2\x74\x44\xb5\x3f\xde\xcb\x98\x82\xff\x96\xd4\x15\x64\x58\x4e\x62\x47\x3e\x84\x39\x1f\x9b\xe0\x7b\xe0\x76\x9b\x9f\x50\x69\x4e\x4f\xa7\x8b\xb6\xb9\xb4\x98\xf9\xa1\x6f\x97\x9a\x52\x1e\xc8\x1b\x44\xe6\x5a\x9f\xbb\xe7\x97\xa8\x26\x3a\xc5\x00\x4e\x5d\x50\x94\x82\xe5\x6f\xec\x3a\x31\xf3\x6e\x1a\xfc\x95\xfc\x08\xd2\xf7\x6d\x22\x87\x21\x6f\xd8\xed\x38\x56\xcb\xf9\x19\x4c\xb9\xb1\x3d\x6b\x2e\xe7\xf8\x17\xe5\xb4\xb0\x3e\xe8\xc3\x0e\x7a\xc0\x72\x7c\x2c\x63\x2d\x13\xa4\xfa\xbc\x63\xee\x46\xfd\xa8\x74\x79\xc0\x24\x9d\x58\x08\x56\xc6\xed\x89\xaa\x6d\x15\x4a\x4b\x92\x4f\x88\x23\x7c\xa5\x5e\x14\xf1\x0c\xf5\x9c\x3e\x03\x18\x29\x5f\x45\x20\x09\x54\xe7\xdb\xc3\x23\xfe\x41\x31\x2b\x9c\xf8\x4f\x39\x7e\x92\x43\x47\x5d\x4c\xcc\x74\x18\x1b\xe3\x4a\x38\xa2\x89\xfe\x76\x8a\x0d\xae\xe2\x03\x6a\xa6\x65\xab\x4e\xbb\xd9\x33\x5d\xd5\x3e\x1a\x96\x0b\xb6\xad\x76\x4d\x49\x53\x8d\x6f\xc3\x1a\x92\x02\xe5\x79\x67\x57\x11\xa0\x45\x1b\x03\xff\xc0\x1e\xf9\xcf\x64\x41\x24\x71\xc6\x7f\x52\x28\x75\x45\x20\x0d\xa0\x89\xdc\x73\xc8\x33\x89\x53\x6c\xaf\x9b\xed\xcd\x5b\x79\x94\x91\xe7\x1d\x8d\x4a\x78\xc6\x8f\x04\x1c\x7a\x0c\xb3\xc9\xd2\x83\x61\x92\x73\xe4\x9c\x15\x0e\x54\x24\xc8\x74\x94\x59\x82\x9f\x7c\x5b\x76\xd3\x64\xe6\x51\x5b\x64\xa8\x31\xbc\xaf\x60\xe3\x4c\x51\x35\xab\x62\xa9\xea\x02\x79\x06\xd2\xcd\xa0\x12\x15\x85\xc9\x4e\xd5\x65\x71\x79\x06\xac\xff\x19\x2a\x5d\x80\x3c\x62\xb0\x62\xdb\x5c\xe8\x32\x74\x0e\x2c\x91\x4b\x85\xb1\x4a\x43\xec\x5d\x39\x31\xe2\x9c\x55\xd4\xd8\xa4\x9d\x7b\xac\x91\x12\x42\x92\x44\x75\x20\x21\xbd\xa2\x86\xd0\x96\xb4\xdd\x9c\x05\x36\xd8\xd8\x5d\xde\x90\x55\x1f\xcd\x83\xc8\x3f\x25\xbb\xf7\xdf\x1c\xb5\x7f\xc8\xff\xfa\xef\x97\x2d\x9a\xba\x9e\xcb\x53\xe1\x31\x86\xd0\x33\x67\xc7\xec\xdb\x6d\xf9\x59\x1d\x91\xc9\x5d\x25\x14\x07\x22\xc7\x1c\x4e\xcb\xa7\xf9\xad\xe4\x1c\xd1\xa2\xe4\x35\xa4\x6f\x03\xac\x73\xfb\x3e\xc0\xba\xa8\x55\xca\xbc\xc9\x21\xe1\x18\x7d\xe2\xd0\x1c\xce\x13\x91\xa0\x30\x67\x1b\x9e\x45\x42\x13\xcb\xd8\x9b\x7f\x61\x7e\x62\x66\x7e\x48\xff\x84\xf1\x19\xa3\xfc\x66\x74\x6e\x98\x3e\xa0\x28\x3e\x25\xc5\xe7\x2b\x24\x32\xdc\xb8\x93\xd6\xa7\xf8\xe6\xce\x1a\x0b\xaf\x83\xbe\x84\x19\x73\xb5\x1e\xd1\xcf\xe2\xc5\x19\x2c\xef\x39\x7f\x4b\xab\xf2\x4b\xb8\xf4\xa1\x78\x24\x1f\x06\x35\xe4\x52\xe2\xbe\x30\x4e\xd2\x9d\x8f\xe2\xd2\x54\x55\xc1\x63\x16\x94\x0d\x10\xf5\x29\xb8\x8f\xa4\x77\x03\x4c\x02\x39\xb3\x29\xae\x9a\xbe\xb8\x54\x35\xa5\x4f\x71\xd9\x2a\xbf\x19\x8e\x12\xd4\xd5\xdc\xb9\x3f\x1d\x3c\x40\x59\x48\x05\xcc\x0b\x7a\x75\x67\x70\x52\xe6\xaa\xc2\xa8\xf8\x2b\xc9\xb7\xfb\xd4\xed\x66\xe0\x0d\xba\xf8\x28\xe5\x0c\x82\x9f\x4e\x73\x59\x23\x32\x5a\xe0\xe8\xe4\xaf\xc9\xe4\xc7\xa6\x5d\xbd\x0a\x89\xe2\x45\xef\xba\x2f\x49\x3c\x55\xf4\xd9\x4b\xf7\xd4\xa6\x5c\x38\x26\x6f\x35\x48\x9e\x91\x58\x44\x87\xe9\x33\x28\x4b\x2b\x7a\x7e\x1e\xec\xcd\xa0\x31\x75\x71\xab\x98\x46\xda\x7b\xc1\x24\xfd\x72\x1c\x29\xcb\x04\xee\xb5\x15\xe7\xf2\xa7\x9b\x2d\x5e\x2a\x94\xc5\x05\xbd\xa6\xeb\x0b\x7c\x4b\xda\x36\x1b\x8d\x46\xef\x3f\x5e\x2b\xb3\x64\xed\x00\x6a\x2a\x7a\xca\x86\x6f\x7d\xfa\xfb\x09\xa5\x00\x16\xe5\xb3\x9d\x91\x21\x64\x41\x56\x3a\x29\x49\xd2\x0b\xa7\x4f\x7d\x85\x60\x5b\xec\x73\xf8\x38\x16\xbd\x70\x47\x40\x4b\x3d\x73\x42\x6a\xfc\x91\x07\x35\xa8\x70\x4f\xfd\x10\x4b\xdf\x44\x58\xe2\x1f\x97\x64\x75\x96\x77\xb5\xe7\xe0\x22\x3f\x11\x54\xba\x61\xc0\x90\x7b\x10\x00\xc7\x70\x1d\xfa\x79\xa8\x64\xcc\x24\x8a\x5d\x74\x08\x68\xbf\x8d\xde\x29\x06\xca\x63\x5c\xae\x77\x23\x7e\x2e\xe2\xe8\xf3\xcd\x68\x52\x83\xbd\xef\x16\xfc\xf6\xb4\x06\xb7\x77\x95\x25\x36\xf8\x5b\xfd\x38\xc6\x73\xfc\x1e\x80\x80\x9e\xeb\x6a\xc6\xd2\xfe\xfa\xc2\x5b\xf2\xff\xfe\xad\x2e\x16\x69\x75\x4f\x9c\x32\xa8\xc4\x6e\x21\xfb\xc5\xe5\xd8\x7a\x28\xae\x1b\x80\xb7\xff\x2e\x9e\x1b\x59\xe2\xf6\x7c\xfa\x59\xda\xd9\x6c\xf6\x5c\xaa\xfe\x86\x55\xa4\x9e\x10\x29\x31\xc9\x35\x03\x59\x0e\xa6\xc1\xac\x07\x0d\xde\x93\x93\xc9\xdb\xba\x07\x3d\xfd\x2d\x79\x99\xf6\x18\x15\xdf\x97\xa0\x29\x9f\x33\xd2\x21\xe6\x95\x32\x18\x47\xc9\x09\x47\x9a\x04\x4e\x26\x75\x75\x90\x87\x0f\xb2\x34\x54\x98\x83\x7b\x6f\xde\xa6\x31\xb3\xda\x3e\x23\x5c\xef\x73\x4a\x07\x2d\x55\xa4\x14\x1c\xe6\x2b\x0a\x2c\xb8\x3c\xd6\x1e\x4f\x17\xb9\xa0\x89\xd0\x78\x66\x78\x96\x2e\xdb\xa4\xcd\xbe\x3b\x92\xb8\x55\xec\x98\xe2\xec\xf1\x7d\xa8\xd7\xd2\x5b\x55\xc8\x2d\x92\xa1\x3e\x2f\x18\xf6\x20\x86\x70\x5f\x71\x18\x63\xe5\x4a\xc4\x08\xfa\x2d\xda\x39\x8d\xff\x0a\x1b\xbf\xd4\xaa\x72\x9a\xe4\xce\x17\xb0\xd1\xd6\x05\x54\xfb\xcf\xc0\x27\x5c\x50\xb0\x2f\x2a\x78\xfd\x57\xb9\x18\x39\x5a\x05\xc1\xa2\xfd\xfb\xf3\xd1\x8b\xc6\x44\xd5\xc4\xb5\xa4\xf7\x77\x67\x2f\x97\x1a\x19\x60\xfb\x0c\xb6\x20\xe1\x7c\x99\x8f\x82\x6f\x0e\x46\x57\x2f\x3d\x2d\x38\xe1\xbb\x77\x8a\x69\xfc\xc3\xc6\x63\xe8\x18\x7f\x4f\xa7\xcd\xdf\x90\x61\x92\x1c\x84\x98\x5b\xc8\xab\x96\xbd\xe2\x60\x58\x2f\xbb\xd4\xdc\xfd\x68\xc3\x63\x99\xc0\x92\xac\x7d\x0a\x0d\x3c\xa7\x99\x99\x39\x71\x83\x98\xca\x08\x24\x3b\xb8\xa9\x3c\x4f\xde\xed\xcf\x27\x13\x57\xfd\x2d\xb3\x89\xa8\x43\x3d\x92\x78\xe3\x7d\x73\x25\x3d\x3b\xcf\x80\x5f\x6e\x95\xc9\x66\xef\xf8\xe6\xb3\x8d\xeb\x06\x0e\x03\xe6\xb0\x4e\xa7\xcc\x6e\xe9\xa8\xbd\xa6\xd8\x9a\xf0\xc2\x0b\xf9\xdb\xa4\xf3\x88\xe9\x1c\x99\xc2\xfd\x31\xe7\x37\xbf\x73\x7f\x06\x0f\x65\x97\x1b\xe5\x89\x63\x29\xea\x38\x49\x0a\xd7\x19\xbf\xca\xb9\x8c\x8e\x96\x1d\x70\x2e\xe1\xac\xed\x49\xf4\xf8\x81\xb4\x05\x8d\xc8\x03\xaf\x04\xd7\x76\xdf\xeb\xce\x91\x01\x83\x27\xe9\xb8\x4d\xcf\x76\x2d\xf8\xbc\x73\x69\xce\x06\x04\x91\x2b\x65\x04\xb8\xb6\x4b\x69\x88\x1c\xa8\x7f\x80\x81\x39\x4f\xb7\xbd\x25\x3f\xc6\x24\xb4\x25\x50\xdc\x75\x32\x7c\x3f\xec\xd0\x67\xf5\x93\x7a\xe1\xa6\x18\x56\x8d\x77\x2d\xb1\xcd\xef\xbf\x10\x8a\x6c\xfd\x94\x79\x89\x3d\xfc\x22\xef\x3b\xb8\x60\x6f\x7e\xc5\x3d\x11\x27\xc2\xf1\x74\x75\xd3\x91\x29\x39\x9e\x22\x9a\xd5\xb8\xe6\x6f\x1a\x13\x91\x1c\x75\x6e\xfe\x1c\x73\xb8\xd1\x8d\x5d\x05\x72\x14\x10\xc4\x6f\xfa\x97\x45\x24\x4b\xd0\xca\xc6\x09\x90\xdf\x84\x5b\x88\xce\x07\x4f\xa9\x8d\xc9\xd2\x07\x4d\xaa\xe2\xf7\xe0\x61\x42\x63\x14\xe7\x36\xe2\xf2\xc1\x93\x4a\x8f\xc5\x6f\x98\xd5\x41\xb8\x9e\x60\x7e\x39\x09\x09\x6d\x7a\x3b\x0a\xc5\x68\xc6\x89\x10\xf7\x64\xac\x6e\x7e\x58\x7c\x8b\xab\xb1\x03\x93\x98\xe6\xdc\x10\xe4\x3f\x25\x59\x93\xf8\x3e\x0e\x7d\xd6\x20\x8a\xa2\xd0\x8f\x86\x25\xaa\x12\x39\x97\x59\x97\x1c\x8b\x4c\xee\xc0\x54\xef\xfe\x62\x6a\x15\x79\x35\x45\xe9\xbc\x22\x1f\xbc\x58\x2f\xd6\x35\xf8\x12\x0c\x01\xfa\xd5\xc4\xbf\x66\x3d\x3b\x94\xd7\xab\x81\xfb\xa0\xb7\xbe\x6c\x30\x34\x9b\x89\x10\x31\x79\xe0\x25\x7b\xd1\xe5\x96\x47\x75\xfa\xee\x0c\x93\x59\x38\x71\x26\x7f\x77\x88\xd3\x88\xae\x30\x15\x68\x78\x56\x1c\x93\x3f\x93\x2f\xe2\xec\x84\x96\xb1\x51\xf1\xab\x2c\xc0\xe8\x34\x35\xf6\x0f\x1c\x43\x0b\xc7\x9f\xd2\x2e\x4e\x4e\x31\xb9\x2a\xc8\x7d\x2b\x56\xdb\xee\x5e\x73\x8e\x69\xfe\xe0\x0c\x72\x13\x8c\x8f\xaa\x28\xa9\xd7\xeb\x2f\x8b\x8f\x80\xc5\xf0\xab\x9f\x3a\x65\xf8\x12\x35\xba\xac\x16\x57\x51\x71\xb3\xd5\xad\x2c\xfe\x91\xf3\x32\x89\x5b\x5f\xc1\x6e\x6d\x48\xe3\xde\xc7\xd3\xee\xc3\x14\x59\xdf\xde\x5b\x3b\x36\xe8\x1c\xfd\x15\x66\x94\x84\xb8\xf4\x6f\xc8\xcb\xd3\x77\xf8\x74\x6f\x89\x4f\xf7\x46\xde\xe5\x80\x05\xe1\x73\x7a\xc1\xc4\x25\x3e\xb5\x7a\xb0\x68\x24\xe5\x09\x15\x89\x0b\x28\x9d\x99\x73\xe4\x0c\x9f\x43\xf6\x18\x1b\xe5\x2c\xd3\x49\x1d\xef\x84\x93\x4c\xc4\xfb\xd7\x26\x5f\x7d\x84\x53\xfc\x35\x72\xd3\x8d\x3f\xe7\xa9\xb3\x93\x32\xbd\x1e\x99\xad\x4d\xd2\x2f\xc6\x25\x4e\xa9\x1f\x7f\xab\x9a\x95\xa9\x0b\xd6\xaf\x27\x05\x43\x51\x23\x1a\x02\xa3\x0c\x01\xf9\x37\xe9\x67\x1f\xc6\x1f\x7f\x64\x3f\x92\x1e\x9f\x66\xeb\xb3\xfa\x8e\x54\x24\xf3\x41\x8d\x28\x7a\x2a\x8f\x35\x40\xaf\x27\x72\xcd\x00\xda\x3f\x82\xa4\xac\x82\xf0\x88\x1a\x29\x8c\xc6\x2a\xf3\xbb\xf6\x64\xbb\xe2\xe7\x6e\x46\x6b\xb5\x3d\xb0\xe1\x0a\x93\x07\xc6\xe5\x18\x00\x86\x61\x8a\x94\x30\xbc\xe1\x54\x90\x3e\xeb\x54\xad\x83\xf1\xce\x16\x3f\xe0\xeb\xaf\x70\x79\xef\x7e\xa1\x04\x07\xb7\xf5\xe1\x2f\x63\xce\xcb\x73\x5b\x3f\xfb\xef\xe9\x04\x34\x72\xd3\x03\xa9\xcc\x9e\x1b\xb6\x8e\x0f\x62\x4f\xf3\x5a\xb3\x43\x58\xc8\xd0\xfe\x21\x7d\xc4\xf3\x35\xbe\x0f\x4a\xd7\xde\xd5\x43\x15\x84\x9b\xa2\x19\x99\x21\xa9\x2e\xd1\xff\xd5\xc0\x61\x89\xe7\x96\x67\x35\x3d\x83\x11\xc6\xa6\x97\x74\x10\x4f\x6c\xb4\x87\xdf\x36\x39\xba\xc2\xeb\x15\xdf\x77\x4e\x83\xae\x80\xbb\x0f\x17\x20\xfc\xb9\x6c\xf0\x8d\xa8\x0e\x2d\x42\x70\x5c\x3b\xd2\x9d\x53\x18\xf8\x7b\x3a\x0c\x21\x57\x1f\xdc\x63\x71\x06\x42\xe0\x7e\xad\x7a\xbc\x84\x95\xe9\xe6\xab\xa5\x4c\xfd\x25\x49\x27\x09\x3c\x88\xee\x5a\xc5\x61\xb4\xa8\x61\x07\x01\xf6\x13\x68\x54\xac\x96\x9f\xee\xe9\xc6\x4f\xf8\x51\xda\x16\x5d\x72\xc6\xd3\x24\xc7\xd6\x77\x7e\x19\x45\xc5\x73\x6c\xb5\xbd\xaa\x97\xa8\xb2\xc4\x27\x4c\xfc\x0b\x26\x9e\xb1\xf9\x78\x0a\x9f\xef\x73\xc6\x3c\x73\xad\xc9\xf2\x6f\x3f\x66\xc3\x68\xf1\xc9\x02\x0e\x9d\xb3\xc0\x02\x9b\x54\xeb\x7b\x08\xa7\xf0\xae\x04\x2b\x61\x24\x2a\x06\xce\xc7\xa7\xb7\x8e\x9c\x9d\xc1\xb1\xab\x64\xe8\xcb\x13\x4d\x36\x3d\x7f\x51\xff\x91\xaf\x4e\xb6\xbc\x21\x9a\x7b\x7f\x27\xf1\x23\xfd\x24\x79\xe4\x90\x42\x6d\xc8\xbe\xe6\xde\x55\xa2\x08\xef\xc0\x48\xb8\xec\xc1\x2a\x57\xa3\xee\x59\x7a\x3c\xb5\x5b\x8e\x4e\x32\xab\xe1\x09\x8a\xa1\x80\xef\x35\x45\xf7\x3d\x65\x7e\x85\x61\x3a\x03\xf4\xf9\x84\xf3\xc0\x86\x1b\x93\x9e\x93\x48\x28\x63\xdf\xa2\xcf\xc0\x7c\xd5\xb4\x4d\x0f\xf2\x9d\x76\xa1\xa6\x44\x08\x1f\x37\x6d\x0f\x63\xd4\x6a\xac\x09\xc8\x6f\x70\x76\xe6\x3d\x65\x51\x74\x2f\x68\x79\xb5\x3f\xbd\x9a\xc2\x01\xce\xa1\x29\x71\x47\xae\x21\xaa\xcd\x97\x64\x3f\xa1\x1c\xa8\xe7\xec\x7e\xe1\x13\x9e\x8d\x34\x97\x86\xcd\xa2\x83\xcd\x40\xdf\x16\x8d\x01\x5f\xa3\x55\xb7\x0d\xe5\x42\x9e\x57\x00\xe8\x7e\x3b\x47\x68\x78\x47\x05\x0a\x9e\xe3\xcc\xdb\xa2\x30\xc1\x99\x27\xc4\x23\x9b\xa2\xb4\x7f\xc0\xc3\xd8\x30\xcf\xf7\xb4\xc7\xbc\x44\x79\x5b\xd5\xe1\x29\xba\x68\xf6\x35\x75\xe0\x3d\xd3\x6a\x9b\x01\x97\x81\xb4\x46\x7e\x4f\x7b\x03\x8b\x64\xb6\xf7\xed\xa9\xdd\x5e\x48\xb9\xc6\x43\x88\xc5\xed\x4c\x89\xaf\xb5\xe9\x68\x2f\x3f\xb0\x1d\xf9\x2d\x45\x28\xf4\x81\xed\xc4\x94\x88\x96\x34\x06\xce\x07\x34\x6d\x16\xe7\x7a\x09\x97\xeb\x93\xb4\x9a\x2d\xb0\x00\x33\x42\x86\xfa\x8b\xa6\xe9\x50\xde\xdb\x22\xfb\x4c\x7e\xae\x08\x55\x37\x4b\xb4\x29\xa2\x14\x13\xf2\x32\x03\xa7\x0d\xe7\x0d\x78\xe1\x2a\x65\x68\xb8\xf5\x5e\xd8\x72\xb3\x11\xb4\xc5\x94\xd1\x30\x74\xdb\x2f\xd1\xc9\xdf\x66\xe3\xe3\x41\x7b\x76\x82\x69\xa7\xb1\xca\xba\xbb\x79\xd7\x26\xe7\x6d\xd0\x7c\x30\xf2\x7b\xda\x2f\xd5\xf2\x4c\xbf\x67\xfc\x87\x58\xe7\x83\x3b\x18\x9b\xc1\x6d\x3d\xf0\xb3\x7d\x78\x0d\x2f\xfa\xe5\x5a\x77\x18\x6d\x7a\x36\x27\xf7\x96\x11\x38\x72\x6d\xbf\x1b\x80\x07\x96\x9c\xdd\xd0\x33\x03\xda\xf4\x55\x0c\x5c\xb8\x29\x37\x40\x6e\xc9\xa1\x29\xeb\x0a\xb8\xa3\xc7\x0f\x0b\x29\x8d\xf1\xa1\x01\x91\xb1\x9d\x8b\x44\x25\x67\x1c\x19\xd0\x91\x65\x81\x6c\x8f\x08\xe1\xc5\x2d\x0b\x7d\xa5\x7c\x06\x26\xdb\xe3\xfb\x7a\x79\xb5\xc4\x63\x83\x6f\x95\xe1\xed\x8e\x83\xab\x6e\xdd\x9a\xae\xd6\x51\x7d\x92\x1a\xa1\x3e\x11\xe8\xa7\x48\x8e\xc5\x1d\x67\x1b\xbc\x3a\x1f\x3f\x1c\x10\x4d\xd7\x82\x69\x25\xe2\x2c\x74\xef\x03\x48\x72\xb2\xee\xdb\x6c\x15\x1e\xc8\x0f\x6b\xe4\x66\xc6\x6d\x8e\x75\x98\xcd\xfe\x36\x32\x2d\x3b\x83\x4a\x42\xca\x58\xb4\xe7\x58\x2a\x79\xb4\x87\x84\xfe\x20\xec\x73\xf2\x18\x7e\xb8\x67\x41\xa2\x77\xa4\x13\x20\x07\x23\x67\x4b\x1a\xd8\xb0\xe9\x29\x57\xae\x86\x02\xc8\x4b\xb6\x79\xf2\x17\xc7\x34\x97\xe8\x8d\x6c\x2e\xc8\x55\xdf\x97\x8d\xa5\x98\xe3\x22\xe6\xd7\x12\xa5\x02\x17\x48\x62\x4d\x3f\x09\xd7\x80\x7c\xc5\x5b\xbd\x42\xfd\x09\x07\xed\x9e\x5e\x45\x99\xa9\xbd\x0c\x4d\xc9\xa7\x77\x7f\x31\xa4\x57\x16\x1f\x86\xf0\xf4\x6b\xb4\xda\xd4\x9f\x99\xdf\x22\xb9\x3d\xa5\xc4\x54\x5a\x47\x59\xd8\x64\x9d\x24\xdb\xb0\xab\xa0\xd7\x85\x2c\x43\xc6\xf9\x8b\xb0\x0c\xca\xdf\x0e\xa8\xbe\xb8\x79\x77\x41\x41\x0d\x71\x17\x24\xab\xca\x43\x66\x83\xa7\x9c\xb7\x9c\xe8\xd6\xf3\x3b\xf1\x26\xf8\x97\x2a\xfd\xbb\x12\x96\x5f\x87\xee\x7c\xfc\x0a\x3d\x20\x1e\x14\xb0\xc2\x59\xb9\x25\xed\x79\x5f\x96\x9f\x72\x91\x87\x79\x6f\xf5\xb3\x0e\x90\xf1\x68\xc4\xbe\x3f\x31\xf6\x18\x3b\x0f\xe8\xf2\x84\x20\x8e\x01\xf3\x03\xbc\xc1\x7a\x84\x3a\x37\x7f\x36\x1b\xf7\x28\xdf\x30\xb4\x7e\x2c\xba\xd7\x81\x13\xbd\x03\x30\x84\x86\x98\xbe\xbc\x1f\x5f\x3b\xa8\xd7\xee\x73\xa8\x52\x88\x6d\x4a\x3a\xe2\x2c\xfd\x9c\x7c\x7f\x7f\x67\x83\x5c\xfe\x99\x3e\x77\x14\xd6\xde\xc0\xbf\x8e\x60\xed\x00\xb6\xdf\x34\x1d\x83\x75\xf0\x04\xba\x7f\x5b\xe7\x3f\xf8\xe9\xf3\x78\x3a\xee\x45\xf8\xfd\xb3\xf9\x7f\xf4\x28\x7c\x04\xb9\xd8\x5d\xeb\x49\x78\xe2\x6c\x4f\x92\x0f\x7c\xd4\x7a\x4a\x41\xa8\x31\xfd\xfc\x21\xf1\x6c\x1a\x27\xa1\xd4\x92\x8e\xed\x51\xec\x26\x65\xa7\x99\x9b\x11\x7d\x73\x76\x9f\x47\x91\x97\x11\xab\x5a\x89\x28\xa6\xa3\x3f\x8f\xe5\x93\xf1\xc1\xb9\xe9\xf8\x33\x48\x29\xc1\xe6\x2f\x03\xcb\x35\x7f\xe6\xf7\x4a\x2c\x3f\x72\xc0\xec\x2d\x17\xa0\x2e\xcc\x86\xf0\x1a\xa4\x3d\xb1\x8e\x50\x6a\x0d\x13\xe8\x93\x92\x58\x08\x5b\xb2\xa6\x11\xd2\x36\xba\x30\x6e\x8f\x89\xa4\xf2\x40\x68\x24\xa8\xbd\x2b\x4f\xc1\xce\x1f\xa3\x04\xd1\xfc\x81\xdf\x88\x2e\xc3\x73\xd2\x4a\x0a\x46\xbc\xc9\x54\x3c\x73\xea\x69\x38\x63\x8a\xf1\x8a\xaa\xed\xa1\xd9\x75\x36\xaf\x2c\x08\x83\x3f\x9e\x35\xb6\x83\x8d\xb6\x7d\x6b\x4b\xbe\x22\xf9\x3b\x12\x93\xd9\x31\xfc\xcf\x7d\x20\x45\x5a\x89\x79\x64\x4c\x64\x77\x7e\x74\x14\x17\xfb\xa7\x91\xd3\x4a\xf2\x86\xf2\x48\x45\x77\x65\x7c\x9b\x6a\x19\xf8\x09\x4f\xff\xde\x71\x94\x29\x00\xef\x91\x9b\xb7\xe6\xb4\x25\x64\xa0\x40\x17\x8c\x59\xf6\x82\x8b\xe4\x54\xc3\x87\xd4\x15\x90\xec\x7e\x65\x3b\x4e\xf3\x09\x44\xbe\x22\xbb\xc6\x39\xbd\x27\x2c\xf0\x47\x86\x85\x32\x5d\x46\xcf\x91\x53\xd2\x4b\x84\xdd\x52\xcc\xba\x51\x5d\x58\x7f\x54\xd3\x2f\x5e\x75\x5d\x6b\x16\x3d\x3a\x1d\x78\x8c\x27\x05\x81\x41\x2f\x34\x3b\xa8\x05\xd0\xa6\x8a\x7f\x64\x0f\xae\xdb\xaa\xd2\x63\xbc\xfe\xad\xdf\xac\x1a\x27\xdb\x8c\xb9\x2c\xfc\xe2\x3b\x21\x23\x99\xd4\x49\xf8\x20\xae\xe7\xf7\x7a\x83\x37\xde\xdc\xaa\xd9\xb3\x93\xe2\x41\x59\x9c\x3c\x90\xef\x76\xd3\x6d\xf9\x25\x9e\x93\x67\x2f\x8e\x31\x51\xde\x7e\x44\xc4\xba\x84\x4b\x54\xb5\x1d\x22\x14\x56\x20\xa4\xa2\x0a\xdb\x08\xb3\xc4\x99\x4e\x82\x84\xf0\xb4\x93\xcb\x1c\xf0\xf2\x25\xa1\xaa\x19\xaf\xf7\xe1\xec\x86\xd1\x40\x18\xf4\xcd\xaf\x70\x84\xb9\xc7\x9e\x19\x98\xde\xa2\xeb\x2d\x7e\x50\xee\x43\x46\xf5\xfd\x4b\x32\xaa\x25\x7d\x3a\xa0\xd5\xc7\x07\x1f\x4f\x93\x73\x3d\xef\x2a\x1b\xbd\x14\xff\xe2\xe9\x49\x21\x18\xca\x5e\x50\xb2\xfc\xb5\xd9\x62\xcd\x39\x06\x74\x01\xf3\x78\x78\x4d\x5a\x6f\xaa\x4e\x9f\x04\xaa\xae\xfe\x16\xad\xc7\x18\x5a\xbf\x14\xa4\x3a\x7e\xf0\xcc\xc7\xda\xe7\x27\x5b\x26\x42\x19\x07\x1d\x97\x1a\x4d\x29\xc9\x70\x98\xf0\xa7\x6e\x34\xdc\xc8\xd9\xb1\x02\xe8\x38\x60\xc7\x49\xcb\x06\xfb\x9e\x7a\x01\xc8\xee\x04\x56\x3c\xab\x9f\xb2\x59\x2a\x90\xd6\xec\x05\xdc\x7c\x9c\xf7\xbd\x82\x3b\x4d\xa8\x68\x50\xf4\xde\x36\xdd\xdb\x5d\xf7\xe2\xfe\x42\xca\xb3\x0f\x5a\xfe\x30\xed\x51\xd6\xae\x4f\x2a\xce\x99\xbe\x73\x6e\xf6\xc1\x00\xd1\xf3\x95\x83\x36\xd1\xa3\xb4\x39\xbc\x3e\xcc\xe7\x21\xee\x33\xc9\x49\x36\xd2\xdd\xde\x30\x25\x36\xb1\x3a\xdd\xa3\x18\x5c\x9d\xee\x31\xd5\x97\xba\xba\x6a\xbb\x9d\x47\xa1\xc6\x75\x92\xdd\x3a\xaa\x73\xe1\x29\x5a\x1d\x45\xc8\x44\x15\x30\x0c\x39\x54\xc0\x48\x64\x29\xcc\x2e\x38\xf9\xda\x9c\x9e\x56\x20\xe2\x63\x2e\x6a\x4a\xc3\x48\x66\x1f\xed\xc3\x13\x7c\xbd\x12\x4e\x16\x9e\x22\xd4\x8a\x92\x1a\x71\x85\xa4\x45\x8e\xd0\x46\xb5\x37\x6f\x51\x33\xfa\x86\x49\xff\xcd\xaf\x48\xc2\x29\x36\x9c\x4f\xb9\x74\xd2\xf6\xa4\x0f\xc3\xf4\x7d\x4e\x7c\xf6\xd9\x44\xe2\x3a\x1b\x8e\xb5\x91\x3a\xf9\x54\x88\x15\x6b\x9b\xa6\xe3\xb7\xb6\x12\x3e\x8c\xb1\x55\x6e\x56\x76\xdf\x75\x9b\x81\x86\xdf\xe5\x9c\x1f\xf3\xf1\x8d\xd9\xf2\x0c\x07\x9f\x15\xfa\x03\xad\xb5\x6b\x0d\xeb\xcd\x9b\xde\xfc\xef\x64\x91\xa2\xf9\xbe\x75\x0a\xcb\xd6\x6c\x5d\x40\xfa\x1a\xff\x76\xc1\xa8\x7e\x65\xb8\xa1\x82\xca\x04\xa8\xe7\xf4\x05\x73\xa6\x84\x8b\x35\xc7\x6c\xbf\x45\x0b\x87\x6a\x8f\xbc\x41\xdb\xee\x41\x37\xa8\x1b\x31\x62\xe1\xe3\x90\xe1\x09\x65\x19\x3b\x17\x0a\x68\xa6\x4f\x07\x3b\x09\x25\xd6\x56\xbc\x99\x27\x27\x4f\x87\x28\x15\xca\xfd\x33\x94\x1d\xc5\xab\x1f\xc3\x2c\x56\xad\x3e\xf9\xc7\xa7\x91\x6d\xde\x7c\x1a\x35\xa4\x1d\x78\x48\x2f\xaa\x65\x5f\x7d\x57\xf2\x10\x44\x71\xd7\xfe\xa9\x32\x9d\xfe\xe2\x6e\x81\x51\x53\x77\x3b\x53\x2e\xee\x7e\x1a\x1f\x51\x43\xd1\x5d\x04\xb8\x63\xb5\x56\xd5\xb6\xa1\x1c\xb1\xe3\x80\xf3\x6a\x8e\xe4\xb1\xff\x90\x26\xa4\x0b\x8f\xe7\xa7\xcf\xef\xf7\x83\x93\xe4\xae\xa2\x70\x8e\x24\x97\x50\x60\x58\xb2\xeb\xc8\x4d\x1a\xe3\x0d\xb9\xb9\x58\x8a\x81\x19\xea\x30\x0e\x47\xc2\xf6\x7c\xb3\x37\x0e\x99\xd1\x2e\x1f\x96\xc0\x89\xff\xdd\x43\x00\x14\x5a\x75\xdb\x6b\x82\xd2\x4e\xee\x51\x56\x7e\xb2\xe3\xf7\xec\xb1\x78\xbe\xb1\x6c\xac\x24\x9b\x07\x3a\xfc\x60\x4f\xa4\xf9\xdd\xbd\x76\x1d\x10\xc4\x44\x3d\x74\x4c\x30\x8a\x7d\x4c\x32\xf0\x50\x84\xad\xb9\xd6\x9c\x71\x39\x02\x52\xb0\x85\x21\xcf\xb6\xe1\x94\x88\x2b\xd5\xe2\x9e\xb9\x1c\xcc\x66\x30\xe7\x2d\x88\x50\x2a\xba\xf5\x4b\x94\xa4\x58\xa8\xa1\x78\x51\x47\x41\x39\x4a\x1f\x83\xfd\xe6\x15\xd9\x83\x39\x90\x1f\xd5\xef\x0d\x46\x1e\x57\xab\x3e\xa6\x44\x56\x77\x81\x5d\x8f\x5a\x1d\x13\x7b\x8e\x2c\x92\xbb\x0e\x9d\xf2\x76\xd8\x8b\x4b\x16\x22\x38\xf8\x62\xf7\x6e\x5d\xb9\x1c\x18\xe3\x48\xf8\xa7\x5e\xf7\x30\x92\xae\x57\x48\xff\x38\x3b\x32\x41\x20\x9c\x2d\x0e\x8e\x27\x5d\x24\x50\x6c\xc4\x4f\x0e\x8b\x87\x5b\x05\xa8\xea\xb5\xf6\xb8\x74\x0b\xe7\x35\x80\x26\x6e\x60\x74\xa1\xb1\x7e\x8f\x68\xd2\xf8\x3c\xa5\xfe\x40\xc2\xb3\x59\x05\xb7\xe7\x70\x74\x9b\x68\xa7\xff\xf0\xdd\xd3\x1f\xb2\x9a\xe3\x34\x48\x0a\xf7\x12\x2f\x29\xdf\x43\xa7\xd8\xff\x41\x16\xc5\xae\x0e\xe3\xcb\xe1\x8a\x23\xf2\xaa\x94\xf3\xc9\x70\xfe\x55\xfe\x00\xa8\x7d\x44\x58\x4e\x52\x09\xc8\x89\x0e\xc8\x71\x03\xf9\x68\x6c\x5a\xd7\xbf\x73\x9a\x54\x0e\xaf\x9c\x0e\x66\x52\xa7\x35\xf1\xf5\x7a\x0a\xfe\xa6\xf7\x78\x5b\x00\x26\xc8\x4c\x81\x16\xb2\xb7\xa0\xe7\x57\xac\x39\x4f\xe7\x1e\xa6\xee\xea\x62\xd0\xa9\xe1\x0c\x62\x56\xc4\x6a\x3a\x59\xc4\x4c\xc5\x40\x76\x15\x87\x94\xb6\x2f\x2c\x3e\xc0\x79\x4d\xaf\xaa\xec\x01\x14\x1c\x0f\x23\x9c\xfe\x09\x1c\x0f\xd8\xdd\x51\x06\x49\x4e\x3b\x1e\x4a\x6e\x32\xdb\xfd\x2f\xd8\x33\x6f\x83\xa5\x84\x5a\xdc\xd8\x35\x59\x2d\x3d\x50\xd9\x9e\xf0\xf8\x21\xe9\xf4\xd5\x08\x54\xdd\xa2\x2b\x73\xca\x56\x4c\xbf\xea\xf4\x40\x9f\x75\xdd\xd6\xc6\xf9\x57\xe8\x8d\xd2\x6c\x31\x51\x27\x3c\x29\xb4\x6e\x27\xbc\x43\xda\xe9\xd6\x90\xad\xc9\xc1\xef\x01\x13\xda\x3d\x00\x73\x95\xe5\x7a\x9b\x3d\x25\xa5\xa7\x11\xf2\x3c\xa0\xb5\xab\x56\xc8\x79\x38\x7b\x8f\xe5\x53\xcc\x00\xc9\xd0\x43\xc6\x67\x7c\x12\xd8\x84\x2e\xff\x61\x03\xe6\x7a\x9c\x5b\xe1\x74\xd9\xc2\xe5\xf5\x10\xfe\xe7\x5c\xaf\xbc\xc7\x61\xae\x43\x72\x9f\x2d\xe0\x77\xd9\x83\x78\x00\xf3\x3c\x45\x0b\x8c\xaf\xef\x9e\x7a\x22\x93\x93\xcd\x0d\x35\xae\x9a\x7f\x30\x2a\x4a\x1d\xb2\xa7\xaa\xfe\x59\x2f\x7b\x6f\xf2\x26\xae\x14\xf8\x5b\xce\x81\x19\x77\xd8\x88\x5f\x4a\xbb\xa0\x54\xa0\x28\x56\xf0\xc7\xb0\x98\x2c\x01\xb8\x5b\x0b\x80\xb9\xc3\x88\x0f\x4a\x00\xb3\x7f\xf0\x88\x6b\xa6\x3a\xce\x67\xd3\xb9\x42\xf2\x4f\x40\x2c\xd4\x33\x8c\xba\x71\xba\x06\x11\xeb\x17\x7f\x9a\x7f\x96\xb8\xbd\xfa\xb2\x74\xda\xee\x6b\xb3\x9d\xfd\xb0\x9d\x46\x95\x48\x0a\x73\xf2\xd2\xd8\x04\x6e\xd1\xf1\x92\x7b\xec\x12\x79\x99\x57\xc9\xc3\xd0\xce\x89\x56\xa5\xee\x20\x49\x56\x96\x8f\xe8\x45\xa5\x49\xab\x6b\x9f\xae\x17\x6f\x2e\x40\x99\x65\xd6\x2c\x7a\x90\xe3\xb3\xf4\x41\x8e\x7d\x0f\x93\x4d\xfc\x03\x50\xd0\x2b\x4c\x65\xa9\xc6\x13\x02\xf5\x9c\x4d\x40\x6d\xf2\x57\x4e\x6c\xbb\xbc\x3f\x78\xed\x2c\x49\x15\x93\xb5\xc0\x7a\xff\xe0\x06\x67\x48\xf0\x1b\x5b\x3f\x05\xae\xee\x5c\x45\xf9\x56\x23\x58\xdc\x67\x55\xef\x7d\x86\xca\xef\xa2\xd7\xa6\xa4\xa7\xf4\x45\x97\x00\xdc\xf1\x47\x3e\x92\xae\xe5\xb9\x96\x61\xcf\xc9\x43\x60\x3f\x39\x05\x04\xd1\x72\xe7\x55\x1a\xdc\x4e\xcd\x87\x4d\x77\xe4\x25\x87\x9f\x92\xb7\x56\xfe\x8e\x09\xfb\x3c\xa2\xb4\xa7\x6c\x2f\x39\xcf\xec\x2f\x82\x25\x1e\x45\xb2\xc4\xd3\x63\xe8\x47\x59\xa3\xf0\x79\xdb\x08\x02\x98\x08\x21\x99\x13\x61\x43\xfc\x0e\x58\xf6\xb6\xfc\x10\x15\x22\x3c\xa4\xf7\x85\x3e\xf7\x6f\xbf\xb0\x43\x5d\x96\x63\xa4\xf7\x4f\xf0\x80\xa4\x55\x7c\x1e\xbf\xc6\x01\x27\xac\x6b\x9a\xea\xd5\x44\xad\x9a\x99\xea\xb6\x70\x01\xef\x7e\x99\xd0\x33\xd1\x18\x0c\xe6\x9e\x9f\x40\x7f\x93\x9b\x5f\xd1\x21\xfc\x72\xc6\x51\x61\x9f\xd9\xd9\x67\xe8\xef\xdb\xd7\xa5\xc1\x37\x1c\x3e\xdb\xc0\x6f\xe0\xbd\xd1\xa3\x80\x7e\x9f\x61\x39\xbe\xae\xde\xd3\xcf\x12\x7e\x52\x4e\x01\xfa\x75\x09\xbf\x6a\x34\x9d\xef\x7e\xe1\x0f\x40\xda\xb0\xfd\xee\x0d\xdc\xc2\xdc\xfe\x0a\x7e\xc3\x40\x54\x6c\x35\xdc\x1e\x25\xbd\xb9\xc5\x43\x6a\x79\x37\xa2\x06\x32\x48\x9f\x79\x64\xfe\x7c\xd6\x00\xaf\x47\x75\x71\x78\x45\xdf\x4a\x75\x45\x9f\x4a\x36\x64\xc1\x97\x4b\x74\xcf\xc7\x4f\x32\x0f\xfe\x0a\xf3\xe8\xce\xb8\x47\x9c\x0b\x50\x6c\xfc\x7a\xa5\x15\xf7\x08\x13\xa2\x0f\xad\xba\x9c\xbb\x49\xb9\x19\xd1\x47\x37\x25\x37\x1f\x80\x2f\xb0\x3e\x5b\xcc\xe4\xfe\xca\x3f\x5d\xef\x1e\xd5\x3d\x04\x39\xbe\xa2\x88\x3e\xc9\xb0\x78\xf3\x56\x1b\x67\xb3\x5b\x57\x68\x3b\xde\xfd\x95\x32\xf6\x4a\xd2\xe8\x7e\x75\xf3\xb6\xe7\x4c\x8b\xe8\x3a\xd8\x4f\x27\xee\x75\x07\x53\x6f\x7b\x51\x22\x50\x3a\xa4\xde\xba\x3e\xeb\xec\xa1\xef\xac\x8f\x29\x3f\x3b\x0c\x48\x30\x5f\xc0\x35\xfe\x7b\xf2\xd3\x83\x83\x44\x39\x17\x3f\xf9\x97\x7f\x21\xf7\x4e\x90\xb8\xfe\xf5\x5f\x8b\x67\xdf\x7e\x4a\xdc\x3f\x73\x66\xc5\x06\x28\x3f\x49\x5a\x8d\x8b\xd8\x6e\xa4\x61\x8f\x0d\x37\xea\xe7\xdf\x27\x6d\x31\x17\x02\x45\x5b\x90\x15\xd5\x3d\x27\x2b\xc9\x64\xfe\x6f\x00\x00\x00\xff\xff\x1c\xec\xe1\x93\xb4\xc0\x00\x00") func confLocaleLocale_lvLvIniBytes() ([]byte, error) { return bindataRead( @@ -4479,12 +4479,12 @@ func confLocaleLocale_lvLvIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 49397, mode: os.FileMode(493), modTime: time.Unix(1446027994, 0)} + info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 49332, mode: os.FileMode(493), modTime: time.Unix(1448150156, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_nlNlIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\xbd\x6b\x8e\x1b\x57\x96\x27\xfe\x5d\x80\xf6\x70\xad\x82\x5a\x36\x90\x49\xb5\xed\xff\x1f\xd3\x30\x4c\x7b\x24\xa5\x4a\x52\x5b\x8f\x1c\xa5\x64\x63\xca\x30\xe8\x20\xe3\x92\x0c\x31\x18\xc1\x8a\x07\xd3\xa9\x46\xef\x60\x16\x30\x7b\xe8\x2d\xcc\xb7\xda\xc9\xac\x64\xce\xef\x9c\x73\x5f\x11\xc1\x94\xaa\x1a\x83\x81\x61\x25\xe3\xbe\x1f\xe7\x9e\x7b\xde\x37\x3b\x1c\x16\xb9\x6d\x57\xf3\xa7\xb6\x32\xd6\x56\xc7\xba\xcf\x8b\x8d\x35\x1f\x6d\xb9\xde\xd8\x6d\xdd\x76\xd6\x3c\x2b\x3a\xd3\xda\xe6\x58\xac\xac\xd9\x50\xd9\x6d\x63\x8f\x54\xba\xa8\xcc\xb3\xfa\xee\x9d\xbb\x77\xb6\xf5\xde\xce\x9f\xf7\x45\x7b\xf7\x4e\x9e\xb5\xdb\x65\x9d\x35\xf9\xfc\xc2\xfd\xba\x7b\xc7\xfe\x71\x28\xeb\xc6\xce\x7f\xb6\xcd\xce\x56\x95\xad\xa8\x8a\x2d\x0f\xf3\xe7\xf4\xcf\xdd\x3b\x6d\xb1\xa9\x16\x45\x35\x7f\x51\x95\xf5\x66\x83\x4c\x4e\xa9\xfb\x6e\xfe\x68\xbd\xb7\x65\xee\x93\xfa\xc3\xfc\x51\x56\xb9\xa4\xc6\x6e\x0a\x1a\x5d\x33\x7f\xcb\x3f\x1a\x6b\x9b\xbb\x77\xae\xed\xb2\x2d\x3a\x3b\xff\x45\xfe\xde\xbd\x73\xb4\x4d\x5b\xd4\x15\xfa\x6e\x0b\xfa\x3e\x64\x1b\x3b\xbf\xcc\x36\x45\x95\xdd\xbd\xd3\xd9\xfd\xa1\xcc\xa8\xf8\xd5\x87\x6c\x59\xd6\x35\xb5\x5a\x66\xd5\xa6\x47\x99\x77\x59\x56\xde\xbd\xb3\x6a\x2c\xe5\x2f\x2a\x7b\x3d\x7f\xc2\x3f\x67\xb3\xd9\xdd\x3b\x3d\xad\xc6\xe2\xd0\xd4\xeb\xa2\xb4\x8b\xac\xca\x17\x7b\x4c\xef\x99\x5d\x36\x7d\xb1\xa3\x8e\x38\xcb\x96\x86\x16\x69\xcf\xc3\xc2\xf0\x6d\x4e\xb3\x5c\x64\x2d\xe6\xb0\xb1\x98\x85\xc9\xca\x16\xeb\x87\xe6\xaa\x6c\x1f\xb7\x50\x65\xd9\x9e\x16\x6e\x9f\x15\xe5\xfc\xe9\x39\xfe\x60\xe8\x6d\x7b\x5d\xd3\xd2\xfe\x92\xad\xb6\x5d\x77\x5d\xd7\x58\xdc\xc6\x2e\xba\x9b\x03\x2f\x6e\xb1\x2e\x56\x59\x87\x59\xae\xb2\x43\xb7\xda\x66\xf3\x27\x8f\x2e\xdf\x3d\x79\xfe\x08\x9d\x34\xf6\x50\xd3\x92\xd4\xcd\x0d\x2d\x98\xfe\x44\xd1\xba\xd9\x64\x55\xf1\x91\xea\xd1\x2a\xbd\xe1\x8f\x56\x1a\xd9\x17\x4d\x53\x37\xf3\xab\x43\x61\x37\x96\xfa\xa7\x45\x58\xa0\x95\xf9\xeb\xc2\xf6\xd7\xd6\x34\x71\x33\xc8\xdc\x17\x9b\x06\xab\xa9\xf9\xf2\xe9\x32\xd7\x75\xb3\x73\x39\x47\xfa\x6d\xfc\x28\x6e\xa4\x00\x0d\xc4\xe5\xd7\xc9\x30\xb2\x8a\xf6\x83\xb3\x1f\xdb\x2d\x2d\x67\x9c\x4d\xeb\x97\xe5\x7b\x5a\xd7\x43\x56\xd9\x72\xfe\x08\xbf\xf1\x13\xe3\xcd\x56\xab\xba\xaf\xba\x45\x6b\xbb\xae\xa8\x36\xb4\xf0\x92\x50\x54\x04\x36\x65\x49\x49\x0c\x59\x2e\xf7\x45\x92\x7c\x53\xf7\x7e\x8b\xe7\xef\xaf\x8d\x6e\xa9\x66\xf8\x4a\x94\x93\x36\xc7\x73\x69\x17\x6b\x6b\x73\x99\x4d\x8b\x9f\xb4\x79\x7d\x59\xd2\xea\xfd\xb5\xb7\x6d\xd7\xce\x2f\xe9\xeb\x3c\xcb\xaa\x63\x93\x71\xad\xa2\x6d\x29\x63\xfe\xd3\x35\xe5\xf2\xa4\xb0\x85\xd5\x0a\x33\xaa\xaa\xbe\x64\x18\xba\x7b\xe7\xd7\xd6\x66\xcd\x6a\xfb\x1b\x06\x8d\x1f\xf3\xbf\xd4\x96\x0e\x14\x83\x64\xb4\xbd\x6f\x0e\x6d\x99\x6d\x08\xb0\xb3\xae\x15\xe0\x0a\x80\xa5\x5d\xcd\x2f\x9b\x7a\x49\xcd\x12\x8c\xad\xea\xdc\xce\x9f\xd0\x3f\xdc\x03\x26\x93\x95\x25\x75\xa1\xbf\x78\x59\xe8\xaf\xec\x45\x57\x74\xb4\x1c\x51\x12\xfd\x38\x1c\x08\xcc\x8f\x04\x8c\x26\xb7\x84\x41\x1a\x60\x8c\x1d\x6f\xd3\x81\x72\x9b\x0e\xf3\xcb\xeb\x15\x75\xbe\xc0\xa9\xa7\xd1\xbc\x58\x1b\x5a\xc5\x07\x0d\x81\x50\x5f\x55\xb4\x70\x84\x47\x36\x2d\x16\xb2\xa0\x26\x2e\xb8\xec\x99\x39\x94\x36\x6b\x01\x65\x59\x6e\xbe\xcf\x0c\x35\xb5\xb1\xdd\xfc\xde\x62\x49\x47\x74\x77\xcf\x10\x12\x5a\xcf\xef\xdd\x6f\xef\xfd\xf0\xac\xa7\x6a\xb4\xfe\xb6\xfd\xfe\x61\xf6\x83\x59\x65\x94\x43\xeb\x7b\x63\x96\x96\x80\xce\xa2\x2f\x43\x87\x81\xf6\xc7\x64\xd5\x4d\xb7\x45\x87\x84\xbb\xe8\x47\x6b\x80\x0e\xbe\xc0\xea\xfd\xb5\x27\x74\xb1\xc8\x97\x82\x0c\x79\x3c\x9c\xd8\xd8\xd6\xbc\xba\xb9\xfa\x6f\x2f\xcf\xcc\x25\x21\xc3\x4d\x63\xf9\x37\xfd\x43\xe5\xbf\x25\x50\x34\xef\x8a\x8b\xc7\xb4\x01\x54\x55\x56\xe7\x22\xeb\xb2\x25\x46\x9e\x02\x06\xf2\x71\x4e\x5d\xf6\x39\xbe\x80\x3b\xdb\x6e\xfe\x9c\xfe\x19\xee\x94\xa2\x80\xf4\xd0\xeb\x99\xa7\xb6\x18\x5f\xf8\xae\xa4\x2c\x25\xeb\x0a\x6b\x2b\xe6\x45\x55\xd5\x17\x8f\x09\x0f\x11\xbe\xa3\x03\x69\x3b\xd3\x77\xeb\x7f\x59\xd0\x80\x6c\x93\x95\x8b\x55\x61\x76\x59\x93\xed\x08\x8b\x12\x44\xcb\x26\xf2\x64\x69\x3e\x6d\x5b\x12\x5a\x23\xd8\xb8\xba\x7a\x79\x4e\x3f\xfa\x16\x83\xe9\xb6\x84\x3c\x69\x04\xed\x5f\x4b\xac\x97\x76\xf7\x6e\x6b\x0d\x0e\x8a\x41\x01\x53\xaf\x87\xcb\x63\x72\x1d\x28\xb5\x6b\x9b\x66\x41\x68\xb7\xbb\xc1\x62\x73\x83\xa7\x0a\x4b\x6b\x74\x0e\xaa\xba\xa3\xbd\x34\x5c\x4b\x5b\x28\xaa\x63\x56\x16\x39\x2d\xb9\x5b\x8b\xb4\x2a\x92\x4c\x5e\xd3\xe6\xa1\x32\x01\x6b\x7d\x0d\x18\x68\xb2\x15\xe6\x6a\xee\xcd\xee\x11\x2c\xe4\xe6\xde\xf9\x3d\x6a\xb0\xaa\x17\x82\x44\x80\xca\x73\x42\x2c\x74\x34\x16\x72\xbd\x34\x82\x17\xff\x3b\x40\x48\x06\xa2\xf9\x26\xce\x37\xd7\x45\xb7\xa5\x0b\xcb\xf0\x75\x01\xf8\xca\x2a\xc3\x4d\x1a\x45\x42\xc9\xc4\x1d\xc6\xd2\x9d\x65\xa4\x65\xdc\xe7\xc4\x84\xef\xde\x71\x1b\x26\x10\xf6\xae\xb6\x28\xcd\xfd\x94\xb8\x4a\xaa\x21\xb0\xe1\x56\xe7\x55\x79\x74\x38\x94\x72\x29\x08\x88\xb8\x0c\xb7\x73\x97\x8c\x25\xcc\xb6\xa0\xf3\xfa\x21\x41\xbc\x28\x8f\x63\xb2\x69\x6a\x3a\xd0\x25\x21\x3c\x5a\xb8\x2f\x04\xd1\xc8\xbe\x45\xd7\x48\x6b\x68\xd5\xe9\x38\xe5\x74\x5e\x56\x7a\x23\xf8\x82\xae\xaf\x47\x25\x2f\xdb\xbe\x56\x92\xa2\x89\xeb\x63\xea\x42\x53\xe4\xf6\xa3\x8d\x1a\x22\x34\x42\x34\x47\x29\x78\x92\xf0\xc5\x82\x8f\xc9\xfb\xa2\x3b\xd6\xb6\xb1\x55\x0e\x92\x24\x3d\x32\xae\x90\xeb\xf7\x02\x0d\xfa\x42\x66\x5f\x13\xa8\x77\xb5\xa5\x99\x6e\xcc\xd6\x2e\x97\xd4\x6d\x87\x8d\xa5\x42\xe9\xa8\xe2\x51\xe0\x2a\x47\x45\xc6\x0c\xbb\x1e\x54\x8c\x89\xd0\x1b\xdd\xd0\xd5\xfc\x82\xe8\xa0\xc2\x7f\xfa\xee\xa9\x51\xba\xb6\xd6\x1d\x4d\xee\x58\xd6\x36\xa7\x19\xa1\xb3\xab\xab\xe7\x66\x07\xa2\xc3\xbc\x7f\xfb\xb2\xc5\x81\xdb\x2e\x0e\x75\xd3\xd1\x81\x7b\x7e\x7e\xa0\xa3\xd8\x85\x34\xd7\xd6\xeb\x7e\xbf\xa7\x29\x1c\x33\x2c\x93\xe1\x42\x34\x48\x6b\xfa\x6b\x34\x77\x0e\x22\x8d\xb2\x75\xae\xdd\x99\xc1\xee\x52\x81\x8e\xf6\xcf\x6e\x4c\xbd\x77\xfd\xae\xfb\x6a\xd5\xa1\x1e\x65\xd1\x6e\x10\x49\x97\xed\x6c\x49\x57\x09\x21\xa4\xae\x3b\xc8\x38\x9e\xbf\x7b\x77\xe9\x06\xe2\x53\x3d\xe0\x20\xbd\x92\xe1\x5c\x67\x59\x43\x53\xec\x70\x49\xd2\x95\xbf\xdf\x67\x40\x48\x8d\x29\x7b\x26\xd0\x00\xfc\x80\xbb\xbe\x29\x23\x78\xc4\xac\x7d\xfa\xa7\xd6\x0a\x43\x79\x88\x7f\xae\x74\xc9\xa8\x4e\x8b\x3d\xa1\x3c\xfe\x89\x45\x60\xd8\x31\x4c\x33\x39\x70\x72\x2b\x81\x33\x54\x1f\x70\x54\xfd\x21\x7a\xc3\x9f\x34\xe9\xc1\xd1\xe1\xfa\x5a\x46\x28\x2f\x4f\xfb\x0e\x08\x87\x3d\x2d\x09\xa3\xef\xab\x57\xef\x2e\xcd\x96\x71\x38\x27\xae\x9b\x7a\x4f\xb4\xeb\x47\x40\x67\x13\xa5\xb9\x59\x3e\xe5\x56\x33\x2d\x70\x66\xde\xfe\xf9\x89\xf9\xff\xbf\xfd\xe6\x9b\x99\xc1\xfc\x77\x19\xc6\x7d\x8d\x59\x5a\xd0\xe4\x52\x38\xc7\x45\xf4\xb1\xf8\x50\x01\xbd\x62\xad\xef\xbd\x26\x60\xbf\xf7\x3d\x67\xff\x57\xfb\x47\x46\x94\xac\x9d\xad\xea\xfd\x0f\x86\x2e\xbd\x3d\xed\xfb\x0c\xa4\x13\x21\xe5\x46\x4e\x8c\x1b\x8f\xb1\x32\xa9\x87\xa3\x73\xa3\xa5\x27\x6f\x1c\x47\x6c\x2f\x56\x75\xb5\x2e\x1a\x9a\x1e\xc1\xcf\x11\xb7\x7c\xc0\x83\xba\xf6\xad\xb4\xb4\x20\x24\x56\xac\x6f\x42\x41\xe9\x97\x53\x05\x02\x00\xf3\x0c\xb0\x0b\x5d\x60\x5d\xf5\x2b\x81\x62\x9a\x7b\x86\x01\x13\xc4\x4a\x76\x7b\x9e\x6e\x40\xbd\x5e\xe3\xd6\x97\x5b\xea\xcd\x7a\x6d\x4a\xbe\xe4\x70\x55\x61\xab\x1c\x4c\xa7\x05\x09\x88\x0f\xc4\x47\x5c\x49\xae\x79\x72\xf1\x9a\x0f\x01\x10\x70\x43\x35\x71\x2a\xb8\x85\x33\x5c\x1a\x96\xb0\x30\x1d\xf2\x0a\xa0\xa4\x10\x55\xd6\x3b\x62\x0c\x4c\x06\x72\x62\x49\xed\xe1\xc8\xb8\x2b\x83\x60\xff\x48\x17\x10\x5d\xbf\xfa\xc3\x8d\x1c\x5d\x44\xe3\x19\x96\x1f\x8c\xc9\xd7\x0e\x2b\xb0\x6c\x6a\xc6\x38\xd4\x8e\x0e\x4c\x8a\x78\xbc\x99\xe3\xea\x0e\x1b\x4a\x3f\xff\xf6\xbf\x88\xe9\x22\xd2\x89\xc0\x85\xc1\x86\xe7\x41\xa7\x32\x8f\x06\x9c\xdc\x71\xae\x7b\x70\x7e\xf1\xa6\x52\x9f\xd3\x35\x06\xc3\x9e\xa8\x27\x63\xb5\x7a\x17\x7a\xbc\xa9\x77\x62\x6b\xf6\xd9\x8e\x17\x90\x2e\x1b\x34\xee\xb8\x96\xa7\xfc\x69\x9e\xc8\xe7\x30\x5b\xbb\x7d\x2b\xd4\x99\x61\x3a\x80\xb8\x0e\xa3\xd9\x00\x7f\x03\x88\xa7\x63\x5b\xae\xcf\xe3\x01\xcf\x94\xd0\x23\x96\x49\x99\xce\xc5\xb1\x20\xce\xce\xcd\x80\xa0\xce\x02\xca\xb1\xbb\xe0\xcf\x70\xc1\x12\xce\x3c\x30\xb7\xf8\xa0\x05\xa6\xfc\x58\xf0\x25\x35\xdd\x90\x8e\xec\x91\xcc\x19\x50\x4a\x1c\x6d\x72\x41\xb9\x15\xf0\x4d\x2e\xed\xae\xf8\x40\x8b\x70\x46\xbf\x3e\x82\x9a\x0f\x65\x74\xe9\xa8\x3e\xb5\x52\x54\x0f\xe3\xb5\xf5\xf5\x31\x9e\x99\xe3\x81\x94\x2b\x11\x12\xf6\x3d\x61\x24\x20\xd2\xaa\x20\x64\x41\x94\x9f\x15\xfe\x5e\xb6\xc2\x37\xa4\x5b\x81\xa9\xf1\x66\x9c\x99\x3c\xb9\x2b\xa9\xee\x8b\x8b\xf9\xd7\x66\xd7\x14\x1f\x36\x44\x48\xf5\x1d\xdd\x6d\x5d\x41\xc0\x9c\x36\x44\xf7\xe4\xb6\x8b\x86\x12\x18\x05\x77\x5e\x69\x82\x60\xde\x08\x9c\x5b\xed\xd4\x95\x9d\x64\x7d\x07\x34\x52\x8c\x8b\x14\x05\x85\x4c\x61\x7d\x2d\xdf\x44\xa1\x98\xb4\x10\xb3\xd0\x8c\x44\x3d\x67\xb3\xd8\xd4\xca\xf5\xf1\x4a\x37\x7c\xb5\x43\x26\xd0\x76\x0b\x22\x04\x16\x6b\xa0\xc3\x7c\xfe\x8c\xaf\xc8\x56\x17\x92\xb6\xb4\xdf\x75\xdf\x99\x07\x54\xe2\x81\x21\x74\x4b\xdc\x69\x5e\x9b\xfb\x47\x47\x12\x7f\x0b\xbc\xb7\xa0\xd3\x49\xdd\x2d\x85\x75\x64\x11\x04\x9d\xe1\xc2\xe6\x68\x80\x96\xa2\xc6\xa9\xa6\xa5\xe9\x99\xf9\x61\xb2\x5b\x89\x60\x5a\xff\xfa\xba\xe2\x83\x4b\x1b\x41\x88\xab\x58\x15\x7f\xfb\x0f\x20\x22\xda\x6f\x06\x77\x69\x0c\x14\xc0\x7d\x42\x52\x3c\x28\x6c\x59\xbd\xec\x8b\x32\xd7\xec\x19\x26\x29\x04\x32\x91\xc7\x0a\x16\x18\x4a\x3e\xc5\x9b\x08\x7e\xe0\x96\x56\x75\x03\x8a\xe7\x3b\x9e\x90\x6b\x62\x92\xe2\x53\x82\xef\x40\x03\xa5\x3f\xe3\xca\x9e\x08\xc3\x72\x10\xc8\x10\xb7\x7a\xc1\x38\x61\x4c\xb6\xf9\x06\x28\x71\x4b\xbc\x5c\xb1\x09\x79\xd4\x58\x6b\xce\x7f\xa0\x7f\x69\x81\xb3\xa3\x95\xfb\x67\xe3\x36\xe7\x27\x21\x84\x24\xb1\x17\x90\xe6\xa6\x6a\xf0\xc0\x59\x95\x4e\x24\x39\x25\x58\x0e\x4e\x38\x3f\xb1\x16\x1b\x60\x80\x8d\x6b\x41\x40\xa6\xed\x57\x74\x0f\xb5\xf3\x5f\x6c\xb9\xab\xf7\x5f\x98\x5f\x8a\x0f\x52\xe3\x48\xc0\xdd\x6f\x72\x2c\xb0\xe9\x65\x47\x99\x52\x14\x62\x66\x63\x77\xf5\x47\x1c\x2e\xba\x08\x4b\x30\xb6\x1f\x0b\xb9\xe0\x40\x77\xe2\x08\x33\xc7\xff\x2b\xe4\x68\xc4\x79\xf7\x42\xa0\xd7\x65\x3e\xe2\x07\x81\xcd\xed\x40\x1c\xe4\x4a\xc6\x47\xa4\x25\x86\x64\xb5\x5d\x78\x69\x1c\x96\xad\xb3\x7f\x74\xf3\x5f\x88\xfd\x07\xa6\xa3\x62\x82\x43\x34\x83\xee\xec\x1b\xde\xe8\x76\xfe\x0a\xf3\x89\x69\x73\x9c\x38\xe2\xf6\x97\x35\xd6\xf7\x68\xb5\xd8\x33\x9b\x5b\x48\xe2\x06\x45\xa9\x19\x62\x22\xb4\x95\x54\x50\x43\x59\x22\x52\xd2\x5c\xfd\xb8\x7b\x87\x71\x27\x0b\x11\x1f\x33\x3a\xe4\xdd\x76\x42\x91\x19\x6d\x19\xcb\x5c\xa4\xdb\x17\x15\x88\xdd\xb4\x4f\x5a\x3a\x15\x31\xfe\xa6\x82\x90\x84\x37\xe1\x02\x84\xb9\x20\x38\x09\xf2\xbc\x85\x62\xa1\xf9\xab\x2c\xdb\x61\xc7\xa9\x59\x87\x0d\x09\x72\x22\x92\x67\x6b\x0f\xa0\x8b\xf6\xed\x66\xfe\x9c\xb7\xb3\x27\xdc\x2c\xb8\x54\xca\xff\x68\x5e\x41\x9a\xd7\x9b\xaa\x47\x55\x62\x92\xda\x7a\x55\x64\xe5\xe2\xef\x69\xe2\xa7\xfa\x70\xa0\x9d\xa9\xfa\x2f\x86\xb7\xad\xc8\x1a\x89\x17\x9c\x5f\xd1\x09\xbb\x39\x4b\x48\x2e\x3a\x3b\x74\xa8\x58\x2a\x8b\x3b\x2c\x9f\x99\xd7\xd6\xee\x71\x22\x3a\xe2\x75\x41\x3e\xef\xe5\x64\x79\xf4\xab\xdc\x03\xf1\x44\x90\x90\x8e\xa8\x01\x0c\x13\x28\x53\xfb\x5a\xda\x23\x64\x52\x1b\x46\x54\x59\x95\xf4\x7d\x08\xd4\xe4\x68\x18\x58\xbf\xbd\xdd\x2f\xd1\x1c\x51\x67\x15\xf8\xe3\x9c\xb6\xfc\xc3\xdd\x3b\x74\x41\x6f\x08\x29\x4c\xe0\x76\xa0\xaf\x8d\x65\x96\x0a\x85\xec\xed\x85\x7e\xf4\x62\x61\x42\x32\xd7\x2c\xc0\x76\x1b\x58\xd5\x74\x74\x07\xdb\x32\xf3\x37\x87\x50\x2f\x4c\xa4\xb6\xb6\xea\xdc\xea\x3e\xe5\x4b\xca\x4f\xb7\xb5\x6e\x66\x34\xad\xae\xef\xa9\x67\xe6\x6a\xbe\x5f\xfe\x70\xbf\xfd\xfe\xe1\xf2\x87\x33\xf3\x58\x4b\x1b\xee\xe0\xd8\x64\xd9\x06\x88\x1a\xb7\xf7\x7d\xea\xb8\x01\xaa\xdf\x0b\xbc\x86\x55\xeb\x20\xff\x2c\xbb\xba\x96\xab\xdb\x11\x10\x5d\xed\x21\xf2\x8a\x92\x58\x42\x55\x43\x76\xd5\x98\x70\x5f\x32\x2d\x2d\xc7\xc1\x15\xf6\xf4\x75\x80\x5f\xac\x3d\x4f\xac\x2c\xf6\x45\x37\x00\x9e\x5e\x71\x12\xd8\xbe\x0a\x00\x97\x19\x42\x66\x98\x18\x83\xa3\x9b\xc6\xc6\x12\xb1\xa8\x72\x3d\x81\x53\xea\x86\xc7\x8f\x55\x99\x19\xde\x0f\x93\xe3\x26\x20\x1c\xda\x77\x4e\x06\x48\xa3\xa0\xd9\x6d\x18\xc3\xbb\xc6\xc0\x55\x66\xed\x82\x78\x4e\x59\x7f\x9b\x0b\x88\x3d\xb6\x20\xb6\x70\x8d\xb9\x41\xc9\xe5\xe8\x36\x21\x57\xe8\x12\xe6\xe7\x4b\xbf\xf0\x5f\xcd\xcc\x23\xe2\xf9\x68\x63\xeb\x8d\x5c\xa8\x31\x94\x4a\x4b\x04\xff\x47\xd0\xe8\x84\x74\x09\x67\xf6\xdc\x72\x25\xd2\x65\x3f\xc7\xeb\xa2\xec\x20\x24\xa2\x32\xbb\xb2\xd8\x11\xf2\xae\x94\xdf\xd4\x0b\x3a\x03\xf9\x6d\x76\x55\x7d\x98\xe9\x9a\xea\xc8\x7f\x42\x71\x16\x9a\xc8\xfe\xa6\xab\xc3\xe3\x42\x87\x2c\x06\xed\xf8\xd2\x66\xe6\xcb\xb3\x97\x4c\x23\xb4\x8c\x25\x3a\xcb\x5c\x6f\x3c\x53\x77\x1f\xe2\xda\x00\x52\xc8\x31\xe4\x18\x5b\x00\x6c\x30\x16\x0c\xa9\x9b\x1e\x51\xa0\x84\x0c\x97\x92\x81\x7d\x49\x23\x23\xde\xb0\x6c\xbf\xd2\x61\x11\x60\x37\xa2\x4c\x69\xe3\xd3\xf6\x96\xab\x24\xcd\x84\x6b\x94\x25\xc6\x0e\x9a\xae\x93\x23\x83\x2c\x0c\x9f\x5a\x2e\x6b\xc8\x85\x69\xed\x95\x00\x65\xb9\x04\x6e\xd4\xd9\xb0\x37\xc7\x16\xdf\x32\x85\xfa\x20\x08\x1a\x87\x82\xe0\x16\xd7\x35\x1f\x1e\xdf\x04\x1d\xa7\x45\xbb\x85\xd4\xe2\x02\xc2\xaa\x6a\xd3\x09\x8d\x94\x36\xc3\x12\x1c\x50\xad\x58\x03\x62\x58\xda\x20\xfe\xe4\x6b\x9c\x65\x6d\xbf\x62\xa5\x7e\xd3\xc3\x86\xcb\xc2\x9d\xb4\x4b\x11\x48\xbb\xf4\xa9\xb3\x89\xe2\x42\x71\x32\x4d\x7a\x23\x65\x14\x47\x66\x39\x76\xb7\x3d\xb1\xd8\x5c\xd2\xa5\x45\xb7\x8f\x23\x39\xde\x6a\x82\xd1\x84\x33\x43\x44\x08\x11\xa0\x22\xb7\x27\x9e\x35\xc3\xa0\x6f\x6c\x3b\xff\xd7\x0c\x22\xcd\x39\xdd\x03\x74\xe7\x12\x22\x04\x13\x9e\x55\x68\x5a\x14\x14\xbf\x42\x40\x40\x65\xdf\x13\x79\xf6\x7a\x8a\xf6\xc6\xe5\xc9\x19\x31\xbd\x27\x59\x2c\xba\x98\xdb\x98\x9c\xbe\x9c\xa2\xd1\xdf\xda\x48\x29\x35\xa4\xcc\xaf\xae\x9e\xbf\x13\x4e\xff\xea\xb9\x69\x4b\x4b\xd8\xa3\xd4\xf6\x9f\x77\xdd\xa1\x7d\xdf\x94\x2c\x7c\xba\x3a\x67\x19\xd1\x65\x76\x03\x82\x18\xa9\xaf\x89\x76\xab\xa9\x63\x9c\x73\xce\x7b\x67\xb3\x3d\x0f\x15\x3f\xb4\x8d\x47\x74\xd5\x73\x1a\xfd\xa0\xa1\xb7\x41\xfa\xc9\x92\xd6\xa7\x11\x47\x10\x6e\x45\x51\x91\x09\x4f\x67\x59\xef\x05\x39\x0c\xc3\x2e\xcb\xce\x14\x3c\xb2\xf2\x40\x1c\x28\xe8\x2a\x2d\xc5\x20\x85\xa3\xc9\x67\x83\xa0\xa3\x5c\x67\x55\xbf\xa7\x79\xdb\x1d\xa0\x1f\x45\xbf\x3c\x5f\x7c\xe5\x21\x6d\xa2\xa5\x9c\xb0\xc1\xa7\x5b\x3b\x0b\x6d\x51\xbb\x5f\xce\xbe\x32\x07\x5c\x75\xc3\x76\xdb\xe2\xa3\x8d\x5b\x63\xf9\xad\xe4\x32\x82\x03\x6d\xc5\x64\xf0\xa0\x9c\x3f\x16\xf7\xe3\x53\x41\x87\x3b\xeb\x84\xb1\xdb\x67\x7f\x24\x95\x08\x81\x52\xd2\xed\x75\x04\xdb\x49\x05\x87\xd5\xa2\xe9\xf9\x83\x41\x80\x04\xb5\x6a\x73\x4b\x59\xda\x6e\x14\xa9\x08\x1b\x5f\x57\x5a\xec\x0d\x5d\x15\x3b\xbe\x6a\xd6\x75\xdf\x7d\xe7\xf5\x9e\x74\x9f\x2a\x33\x32\x57\x21\x82\x21\x72\x5d\x59\xb8\x1a\x6c\x7e\x8a\x3d\x02\x8f\x12\x91\x19\xe8\x3a\xe8\x54\x63\x34\x42\x6d\xd9\x6a\xd8\x58\x50\xe3\x2e\x96\x94\xb2\xe8\xc0\x4e\x0f\xc9\x77\x9a\x17\xad\x56\xe1\x05\x93\xaa\xb8\x5b\x0c\xab\x0d\x0f\xde\x54\x45\x22\x90\x46\xf5\x22\xfd\xed\xc9\x7a\x1d\x9d\x94\x51\x45\x7f\x7c\xa6\x6a\xc8\x2e\x72\x69\x9a\x63\x3e\x1f\xdc\x55\xc3\xe2\x05\x21\xe7\x0d\xe4\xac\xae\xa3\xa8\x75\x86\x0d\xa3\x25\x6c\x00\x9a\x59\xb4\x7c\x7e\x5b\xc2\x2e\x8e\xb9\xa0\x68\x3b\x06\xfc\x27\xcb\x93\xa8\xcd\x86\x15\xee\x11\x0b\xcb\x43\x79\x9f\x50\x1a\x1f\x58\x42\x9d\xc8\xfc\x55\xef\xb1\xb1\x60\x54\xf3\xa9\xc6\x08\xfe\xc0\xd7\x9e\x6c\xcd\x16\x1b\xcb\x94\xe2\xad\xad\x78\xf4\x3f\xd9\x46\x3c\xbd\xa8\x15\xcf\x51\xdb\x3f\xa8\x18\x2d\xcb\x86\x2d\x31\x02\x2b\xcd\xf2\xca\x4c\x20\x7d\x06\x6b\x86\xb6\x03\x3f\x26\x63\xc6\xdd\x18\x8a\xb2\xde\x00\x52\x4f\xda\xd8\xa6\x53\x7a\xe0\xba\xf8\x00\x81\x63\x85\x45\x85\x94\xd9\x56\x30\x06\xa1\xf1\x9a\x2f\xdd\xb4\xbe\x12\x06\x82\xc5\x22\xd9\x7e\x66\xde\x1b\xc5\x5a\x8d\x08\x49\x40\x62\x0d\x2a\x10\xf9\x12\xee\xec\x40\x48\x40\xbb\xb1\xb3\x37\x8e\x96\xb8\xb6\x11\xf7\x5d\xb0\xc4\x92\x66\x22\xb4\x00\x6b\x37\xf4\xa6\x90\x91\xd2\xc1\xfc\xdb\x7f\xd0\x48\xbf\x63\x8c\xd6\x8b\x88\x90\xd3\x6f\x7c\xc3\xa2\xac\xc9\xbc\x70\xa3\xea\x9a\xba\xe4\xe9\x81\x26\x4c\x5a\x3d\x23\x64\x46\x5b\x46\xf3\x37\x1b\xa6\xb6\x1a\x26\x1f\x68\x96\x60\xe9\x99\x09\x00\xf1\x72\x66\x3e\xd2\x72\x22\x97\x15\xde\xe0\xf6\x21\xf7\x04\x3e\xa7\x5b\xc7\x89\x25\x22\x5b\x0c\xc2\xab\xad\x88\x8c\x20\x47\x20\xf4\xdc\x11\xf0\x63\x3b\xc4\x94\xe2\x7d\x60\x3a\x05\x0a\x1c\xe9\xc8\x8b\x97\xd3\xe4\x89\x20\xc5\x77\x04\xa2\x7e\xc9\x99\x89\x93\x75\x8f\xb7\x8e\xe6\x06\xb4\x94\xb3\x6d\xc1\xcc\x75\x09\x0a\x1c\x36\x14\x51\x8f\xe8\x8b\xf6\xc5\xe6\x2d\x36\x0c\x3a\x03\xb0\x6f\x07\xde\xdf\x88\x75\x17\xf2\x7c\xd9\xa9\x52\xa7\xa8\x76\xad\x28\x21\xaa\x71\xe7\x8a\x97\x06\xb3\xbc\x48\x34\x8b\xf1\x4c\x75\x96\x96\x09\xef\x98\xab\xff\x7b\x27\x19\xaf\x2c\xeb\x3b\x58\xeb\x87\x4d\xa1\x93\xe7\xb6\xc2\x12\x17\x4a\x97\x05\x8e\x5d\xa7\xcc\x83\xe8\x87\x44\x7e\xde\xd6\xfb\x3d\xc0\x3d\xc8\x6b\xfd\x28\x92\xc9\x8a\x69\x85\x0c\x22\x9d\x3b\x61\x57\x36\x53\x58\x2c\x9b\xac\x5a\x6d\xa3\xa3\x7a\x51\x13\xe4\x4a\x6a\x72\x48\x99\x20\xc3\x80\x21\x9c\x60\x23\x85\x85\x2a\x11\x08\x88\x58\xfa\xcf\xfc\x85\x28\x04\x68\x8d\x9c\x72\x00\xaa\x1e\x5f\x63\xd5\xb7\x5d\xbd\x77\x15\x7f\x29\x3e\x7c\x04\x4f\xea\xab\x89\x62\x2c\x55\x9e\x7c\xa8\x89\x06\xa8\xab\xc8\x18\xa9\x3e\x44\x56\x24\xb4\x03\xf3\x54\xc8\xc2\xf4\x6d\xd1\xc1\xbc\xc4\x56\xcb\xac\x51\x42\xb8\xe8\x2c\xf4\x03\xeb\x1a\x2a\x76\x5a\xa0\xf9\xcf\xe0\xfe\x20\xd5\x81\x76\x94\x10\xde\xfc\x8a\x11\x5f\xe5\xca\x40\xf4\x86\x32\x3c\x73\x50\xa2\x33\x46\xfa\xa0\x89\x9b\x23\x15\xbf\x18\x2a\x74\xcd\x83\xfb\xed\x03\x39\x81\x5a\x48\x70\x61\xa8\x7b\x00\xb9\xd1\x54\xc2\x55\xf1\x38\xf2\xf9\x73\xe6\x9f\x92\x76\xa8\x58\x03\xad\x9a\x6b\x8f\x91\x02\x14\xc1\xbc\x1d\x4a\xfc\x3b\xcb\x1e\xda\x0e\x67\xfd\x73\xe9\x4c\x7f\x26\xa5\xd1\x8a\x6b\xda\x79\x84\x4c\x5a\x27\x01\x22\xd4\x86\x3f\x74\xab\xd8\x8e\x56\x67\x77\xee\x54\x1f\xac\xf9\x14\x4d\x68\x5d\xb5\x91\x46\x9f\xf5\x55\x10\xa0\xbd\x49\x64\x67\xb9\x2d\x6d\xc7\xf4\xb4\x40\x5b\xe0\x3b\xfa\x22\x9f\xd3\xff\x18\xfc\xa1\x5f\x52\x93\xde\x6a\x49\x36\x8a\xf6\xdf\xdb\x2e\x39\x93\x35\x51\x10\x5c\x0f\x99\xce\xda\x55\x80\x1c\x94\x6e\x75\x7f\x3a\x54\xc9\xc4\x38\x4f\xb4\x4f\x8a\x41\xb0\x25\x30\xa0\x03\x09\x4d\x60\xdd\x14\xb4\x2e\x74\x25\x89\x28\x95\xf9\x72\xcc\xba\x80\xf9\x09\x52\x70\xe5\x1c\x8b\x0c\xd0\xa8\x86\x7a\x41\x51\x9b\xcb\x16\xc0\x72\x47\xee\x56\x02\x12\xc2\xa5\x38\x8f\x42\xbc\x8f\x4c\xfb\xca\x5a\x96\x6f\xfe\xb2\x56\xb3\xb7\xfe\x00\x4d\xd0\x22\xd9\x38\x96\x9d\x7f\xb8\x66\xd3\xc3\x61\x09\xcf\x5c\x05\x03\x2f\xac\x83\xa4\x1e\xeb\x12\x35\x37\x3c\x05\x5c\xa6\x7a\xd8\xbc\xb5\xde\x7b\xfd\x01\x1c\xc0\x27\x35\x1f\x95\x71\xb2\x97\x77\xb0\x35\x52\x1b\xa4\x6b\x42\x53\x26\x5b\xaf\x89\x54\x31\x84\x9d\xe8\xaa\xbf\x31\xdb\xfa\x5a\x11\xab\xac\xe7\x50\xf4\x23\xb2\x2b\x02\xcc\xde\x12\x26\x01\x2e\x85\x84\x32\x31\x11\x6b\x84\xb9\x73\xba\xb2\x04\x23\xf0\x21\x27\x00\xeb\x6c\x40\x09\x91\x3e\x72\xaa\x8e\x37\xda\x90\xf2\x2a\x54\xdf\x12\x2c\x57\x7c\x3f\x38\x3c\x84\x29\xd7\x75\xab\x22\x55\xe9\xee\x27\x18\x74\xc4\x02\x17\x2d\xa9\x8b\xef\x06\xe5\x47\xa2\x68\x29\xdd\x27\xb0\x7c\x44\x2e\xe9\x68\xf8\x68\x2f\x88\xd9\xd8\x80\x5d\x75\xba\x4d\xd5\xce\x0a\x72\x80\x78\x64\xbd\xb4\xa2\xb7\x13\xab\x9e\x74\x46\x41\x29\xf3\x4c\x45\x5d\x83\x45\x59\x42\x7c\x59\xec\x70\x04\xce\x02\xd9\xe0\x2d\x53\x12\xe9\x66\x32\x17\x0f\x47\x89\xc2\x4b\x8e\x8b\x34\x7d\x02\xa4\x3c\xc0\xc4\xba\x2c\xc1\xfa\x31\xc3\x5c\x97\x11\xbd\xf8\x9c\x55\x24\x36\x29\x80\xc5\xf7\x05\xd8\xec\x30\xc9\x6e\x98\x1b\x5f\x24\xa5\x84\x43\x37\xaf\xed\xb5\xb9\xf4\x52\x87\x09\xd2\x5b\xba\xbb\x9d\xde\x1e\x4c\x22\xa8\x49\x92\x4a\x61\x0d\x68\x01\xf8\x8e\xca\x71\xbf\xee\x98\x14\xe9\xc5\x3a\xed\xda\xc1\x4c\x42\x00\x8b\x61\x30\xaf\x97\x98\x18\xc4\x0a\x3d\x96\x6a\xa8\x91\xe8\x64\x2e\x33\xf9\x4d\x10\xbe\x39\xec\x77\x68\x08\x9e\xa0\x53\x8b\xd1\x20\xf0\xde\xc0\x78\x44\x36\x52\x15\xc2\x82\xd7\x54\x2d\x9f\xa8\x40\x8f\x74\x6a\x55\x9f\xcd\x2d\x37\x37\x84\x80\xb8\x07\x9f\xa0\xb2\xa1\x17\x8e\x1a\x86\x01\xb0\x1b\x86\xc3\xf1\x41\x7e\x24\x98\x3e\x8c\x9a\x72\x81\xed\x54\x72\x71\xa1\xdf\xc3\x7c\x99\x1e\xe7\x5a\xb1\x71\x4c\xc5\x4f\x82\x7f\x60\x86\x75\xb4\x8a\x6d\xb0\xc4\x6c\x34\xc2\xb6\x6c\xb0\x54\x49\x91\x8f\xb9\x60\x6c\x44\x7b\x02\x4d\x71\x6d\x1c\x2a\xfa\x71\xd4\xb7\xdb\x78\x1d\x23\xd1\x9c\x66\x29\x4a\x6c\x0c\x27\x77\xb2\x2b\x36\xcf\xfc\x02\x2a\xda\x9c\x81\x52\xa6\x2c\x70\x1b\x6f\x06\x5d\xce\x47\xdc\xcf\x95\x14\x1d\xe9\x72\x27\x0b\x2c\x12\x29\x3f\xe4\xe0\x2c\xd9\x57\xb8\x8a\x25\xc5\xba\x30\x74\x18\x73\x95\x85\x7a\x21\x3f\x68\x84\x33\xd0\xfc\xbc\xaf\x2c\x79\x5c\xd6\x7f\x28\x25\xc5\xfc\x3f\xfd\x75\x32\xfe\xce\xa6\xbc\xc5\x9e\x59\xa7\x58\x2e\x4a\xd7\xc0\xca\xb6\x43\xd1\x7f\x18\xb2\x5b\x37\x50\x2d\xf1\x02\x5c\x67\xad\x50\x28\x98\x65\xce\x07\x40\x21\xdd\x93\x1d\x6a\x13\x1d\x89\xd2\x5a\x69\x99\x39\x2b\xc7\x32\x85\x75\x42\x45\x01\x91\x82\xf9\x1a\x6c\x4f\x59\x7c\x00\x65\x9b\x89\xd1\x41\xd2\x16\xdf\xd9\x41\x10\xcd\x0c\x5a\x26\x82\x55\x0f\x1e\x11\x55\x82\xea\x49\xd5\x5e\x70\xc5\x96\xf1\x3a\x0b\xae\x5b\x6f\x10\xf8\x3d\x9d\x9c\xba\xda\xfc\x70\xc1\xda\x29\x58\x2b\xd8\x6d\x5f\x32\xff\xf1\xe3\xf7\x0f\x35\xd3\x3c\xd9\xda\xd5\xce\xc0\xba\xb2\xae\x60\xc8\x57\x10\xbb\xc2\x27\x12\x8b\xfc\x7d\x16\x19\x02\x1b\x36\x93\xe4\x3d\xc0\x5c\xe2\x69\xb0\x65\x30\x91\xeb\x69\x79\x6f\x3d\x49\x45\xb9\xc4\x81\xcd\xa2\xf7\x7e\x77\x00\x9c\xbc\x8e\x91\xa0\x72\xb0\x96\x94\x1d\x89\x46\x2e\x41\x82\xd9\x9d\x5f\x04\x01\x2e\x87\x49\x66\xa1\x0a\x53\x07\x5c\x05\xc0\x79\x18\x56\xdb\x2b\xe7\x53\xae\x73\xeb\x24\x27\xc2\x34\x64\x25\xb5\xe2\x5a\xf0\x1b\x2c\x24\x12\x92\x59\xa1\x4b\x30\xff\xa2\x82\xc6\xcd\x83\x82\x07\x31\x35\xb1\x8f\x67\xc4\x04\x31\x0f\x14\xdd\x4a\xc1\x08\xec\xbe\xf0\xa8\x09\x4b\x11\x21\x26\x37\x17\x8f\x9a\xe2\x46\x23\xc6\x68\x5c\x52\x20\x10\xd0\x1e\xf3\x74\x5e\x31\x19\xb7\x03\x84\xcc\x60\x85\x92\x84\x80\xac\xb7\xdd\x84\xf2\x3c\x52\xda\xc6\x9c\x98\xf9\x05\xaa\x9d\x9e\xd9\x3a\xd0\x4a\x3f\x4e\x0c\xc1\x2d\x48\xdc\x59\x72\x4b\xf9\x06\x73\x45\x55\x34\xc3\x77\x7e\x55\x98\x5f\x62\xf9\x0a\xef\xe2\x4b\xb0\x84\x5d\xb8\x33\x90\x0b\xbb\x62\xc7\x35\x3d\x13\x26\x7e\x05\x39\x50\xc4\x39\x61\x71\x78\x77\x3a\x50\x13\x8a\xba\x3f\x9e\x00\x1f\x45\x3f\xcc\x7d\x52\x2b\xff\xc5\xe4\x62\x15\xdb\xd5\x74\xb6\x46\x4d\x70\x2a\x66\x34\xae\x92\xd8\x45\x3a\x84\x22\x0c\x8b\xa2\x13\x7f\xe2\x69\x28\xca\xc2\x04\xd6\x45\xb5\xdb\xa7\xb1\x48\xce\x34\x37\xce\xb4\x98\x7a\x0c\x9b\x30\xd2\x78\x21\xfa\xb9\x80\x3e\x20\xcc\xea\x7a\xd8\x48\x44\x05\xa6\xd1\x48\x5f\x2d\x8b\x8a\x96\xbd\x6e\xa5\x28\x13\x8d\x9c\x16\x36\x16\xbd\x02\x7a\x14\x40\xc0\xe1\x54\x9d\xce\x2b\xc6\xa5\x19\x97\x5f\xf0\x82\xcd\x2f\xe9\x22\x20\x2e\xb1\x84\x59\x96\x03\xb5\x96\xb3\xda\x40\x48\x88\x3d\xb6\x1a\x12\x48\x3d\x3d\x57\xef\x78\xd5\x3d\x22\xd2\xcd\x69\x65\xb1\xde\x49\x33\x32\x21\x16\xa9\x6c\xac\x14\xc5\x36\xd3\xbd\x11\x83\x36\xad\x1b\xcb\xaf\x1e\x5d\xbe\x68\x55\xe6\xc5\x56\x58\x8c\x9c\x7c\xbf\xd2\xf0\x5f\x6a\x50\x12\x8c\x15\xab\xfe\x4c\x05\x72\xe5\xce\x01\x01\xce\x90\x5a\x3a\x1f\x3d\x57\x35\x7d\x8c\x66\x0e\x9c\x04\xbd\xdc\xec\x97\x75\x09\x73\x2f\xc7\x85\xf9\x99\xcb\xac\x47\xd3\x4d\xf3\x65\x2f\xac\xc7\x3a\xc9\x7a\x62\x43\x22\x84\x13\x2d\xc5\x17\xe6\x2f\x43\x29\x9b\x27\x0c\x0f\x27\xf7\x07\x44\x24\xed\xae\x88\x05\x41\x59\x62\xda\x0c\x36\x1f\x0b\xe8\x23\x40\x69\x82\x94\xe5\x46\xd9\x90\x0f\x37\xc8\x35\x75\x18\x30\x9c\xcc\xea\xe7\x18\x77\xc5\xd0\x11\x50\xdd\x14\x98\xe8\x6a\x1f\x3f\x59\x5b\x36\xed\xe7\x29\xd4\x37\x35\xbd\x68\x17\xa7\x31\xe1\x27\x50\x5f\x3c\x37\x7f\x3a\x4e\xc3\xf9\x60\x5f\x22\x34\x88\xa3\x4a\x8c\x96\x2a\x52\x68\x4f\xba\x48\x6e\x61\xea\x7a\x87\x63\x0f\x58\x15\x36\x8e\xcf\x98\x76\xee\x94\xa8\xe1\xb0\xc7\xf6\x0a\x5a\x48\xb9\x65\x46\x5f\x5b\xd0\xd8\xcc\x16\x62\xde\x11\x9e\xcf\xed\x9a\x88\x6e\x22\xb8\x13\xe1\x1b\x84\x94\xcc\x49\x40\x30\xed\x08\x0b\xf3\xfa\xc5\xd3\x77\x26\x90\x12\x9d\x6d\xfa\x8d\xc9\x9b\x2c\xa3\xdd\xff\x22\x58\x12\x0e\xc6\xe8\xcd\x3a\x7c\xfb\x34\x8c\xe1\x4c\xd4\xc4\xf1\xd1\xf8\xf6\x19\x95\xf4\x88\xd2\x4d\x01\x33\xa2\x8d\x26\xf4\x43\xc8\xcc\x4b\x57\xfc\x3a\x4f\xed\xe1\xdd\x3b\xbf\x42\x1e\xf7\x1b\x31\x83\x2c\xca\x7f\xaa\xc2\xf5\x48\x81\x34\xa1\xae\x0d\xca\x25\x67\x7a\x8e\xd3\x5a\xdb\x7c\x4a\xe7\x01\xb4\xdc\x74\x84\x3d\x88\x37\x68\xb2\xa5\xf8\x2f\xba\xa5\xec\x69\xcb\x77\x7e\x25\x67\x30\xda\x6a\x8b\x65\x51\xe2\x6e\xfb\x0b\xc4\x3e\xe0\x9a\xb7\x16\x82\x28\xce\x41\x46\xe2\x80\x11\xf7\x47\x5d\x7d\xdf\x1e\x08\xe4\x57\x74\x81\xb6\xf3\x7b\x7d\x41\xd9\xb9\x81\x21\xda\xbd\x1f\x88\x1f\x3a\xd2\x75\x45\x7d\x51\x89\x1f\xc6\xcd\xc1\x93\x70\x05\xb9\x22\xc4\x47\xe2\x64\x03\x3e\x43\x52\x71\x40\x0c\x21\xc7\xd4\xb9\x84\x78\x96\xa5\xbd\xa5\xcb\xcb\x86\x55\xf7\x13\x5d\xc2\x6b\xd1\x4d\xe3\x4b\xc7\x9b\x3b\x5b\x28\x3e\xb0\x70\x7e\xa0\xe5\xc4\x96\x22\xcd\xf9\x2d\x88\xa9\xfe\x41\x0e\x2c\x5a\x69\xbf\x62\x91\xe5\x4e\x24\xe2\x3f\x0f\x3d\x20\x39\x4b\x1d\x07\xda\x03\xf5\xdd\x6a\x2f\x9a\x35\x5a\xd4\x67\x16\x5e\x94\xb1\xf2\xea\xc6\x08\x57\xed\xac\x18\x97\x30\x67\xde\x99\x43\x0d\x7a\x50\xac\x48\x09\x3d\x42\x43\x2b\x82\x67\x06\x0e\x86\xcd\x37\x7b\x38\xf5\x16\x1f\x8e\x0c\xe7\x9c\x0e\x3f\x58\xf5\x81\xf5\xdf\xae\xeb\x2b\x02\xef\x15\x84\x7e\x66\xb6\xa1\x83\xb8\xa9\xe0\x65\xe7\x2d\xe5\x89\x2a\x2a\x88\xcc\x69\xed\xfc\x25\xfe\xb2\x60\x4e\x53\xc6\x0d\x08\xdd\x20\xc5\x5c\x13\xe8\x91\xf6\x95\xea\xd3\xcd\xb1\x2f\x3e\x9c\x0f\xd2\xa7\x5b\x69\xd5\x85\x37\xf0\x06\xa3\xea\xb0\x5e\x5e\x00\x77\x10\x71\x4c\xe3\xce\xe8\x62\x43\xed\x7c\x08\x9e\x6a\x31\xb7\xb1\xad\xeb\x21\x8f\x3d\x01\xa2\xce\xbc\x41\x61\xec\x17\x9b\xb8\xd7\x12\xb6\xca\xfa\xd2\x29\x04\xe6\x57\xce\x0a\x5f\x75\x01\xce\xcb\x96\x86\xd5\x41\xe5\x54\xce\x5f\xf1\xb7\x71\xdf\x5f\x12\x4f\xfa\xd5\x09\x51\x79\xd4\xd1\x3f\x2e\x28\x1f\x22\x8d\xcf\x91\x92\x57\x16\x92\xb9\xbe\xdb\xc6\x26\x16\xce\x7c\x1e\x53\xda\x08\x09\x00\x13\x90\x57\xea\x05\x6c\xc4\xdf\x31\xce\x3b\x89\x1f\x3e\xaa\x71\x64\x72\x62\x71\x54\xcd\xb2\xec\xed\xbd\x1f\x64\xcd\xf4\xb8\x32\xb0\x87\x86\x79\x27\xd0\xa9\x38\xa7\x44\x5b\xa1\x25\x66\xab\xb2\xae\x08\x39\x8b\x38\x64\xfe\x04\x5f\x46\x6d\x59\x26\x8b\x04\xfc\xbd\x53\x33\xac\xe0\x8e\xf4\xf0\xd9\x8b\x77\x30\x4d\xf0\xae\x39\x36\xf8\x88\x1c\x32\xac\xbe\x6b\xd2\x29\x3d\x21\xb5\x2e\xc5\x9c\xfa\x4d\x25\x4a\xc5\xa8\xc2\x99\xf8\x51\x39\xd9\x66\xe6\x6c\x16\xc4\xe7\xc7\xc9\x39\xf7\xd9\x61\xa6\x30\xb1\xa3\x9d\x60\xb4\xb1\xb1\xf2\x15\xe1\x0c\xf6\x39\x82\x17\xc4\x5c\xa5\x6c\x9b\x44\x93\x78\xc3\x78\xc9\x13\xd8\x99\xb3\x86\xe9\xf8\x66\x3c\xdc\x2c\x20\x91\x9e\xff\x44\x14\x15\xfb\x1f\xfb\x24\x4f\x42\x3c\x41\x56\x1e\x97\x56\xbb\x8c\x4b\x16\x34\xfd\xef\xff\xf1\x3f\xcf\x9f\xc0\xab\xf3\x49\xd7\x94\xf4\x8b\x25\x47\x07\xc2\x75\x2b\x3a\xf1\x3b\x18\x3c\xe2\xd3\x75\xc0\xf2\x6f\x11\xbe\x1c\xca\x6c\xb7\x54\x53\x7f\xf4\x40\xb8\x6e\x27\x85\x90\xc4\x5b\xe3\x21\x67\x24\x39\x80\x83\x18\x5d\xab\x3f\x9a\xc7\xec\x50\x71\xbb\xeb\xb0\xe1\x76\x2a\xf0\xfe\x5f\x80\x7f\xb8\x66\x23\x90\xd7\x76\x23\xf7\xb8\x7c\xb2\x46\x8b\xd9\x0b\xa8\xb4\x60\xcb\x0a\x3b\x2c\x51\x70\xb1\x76\x4b\x96\x9b\x71\x3a\x9f\x0e\xc5\xaa\xcc\xf2\xd5\x09\x6a\xfd\x6b\x8f\x99\x6f\xe0\xb0\x3c\xbf\xaa\x6c\xc9\x1e\x84\x2c\xd2\x70\x13\x83\xc4\x4e\x60\xf8\x27\xc6\x66\x43\xe4\x94\x98\x30\x33\x66\x56\x27\x04\xb1\x63\x8e\xa4\xee\xf1\x81\x62\x53\x4e\x62\x76\xd6\x6a\x2d\xdf\xd6\x25\x62\x21\xf4\x30\x63\x82\x7a\x52\x7a\xbc\xa4\x6f\x23\xe6\x94\xce\xf6\x31\x6e\x64\xdc\x00\xf7\x4f\xe3\x65\x47\x55\x51\x72\x44\xd0\x05\xb6\x10\x19\xde\x95\x1b\xd6\x6a\x66\x99\xad\x76\x06\x52\x47\x50\xdd\xf8\x4f\x31\xe3\xa3\x75\x97\xed\x76\xbc\x4a\x88\xe5\x30\x7f\x5c\x43\xc1\xa9\x7a\x54\x38\xe6\x76\x19\x5c\xf8\x5d\x29\x1a\xe5\x3f\x51\x33\x4b\x16\x77\x49\x29\x9b\x64\x43\x15\x4b\x15\x5e\x6a\x91\x91\x87\x3d\x1c\xf2\xc7\x8e\xf8\xd2\xa2\xaf\xb5\x2f\x4a\x2a\x4f\xfb\xc2\x26\xeb\xe5\x21\x63\x3e\x13\x2b\x4e\x17\x34\xc1\x3f\xff\xc5\x3a\xf0\x04\x5b\x11\xff\x38\xe7\x36\xd6\x30\x35\xd9\xf5\xfc\x2d\x6d\x87\x7e\xd2\x12\xb1\x8f\xfe\x33\x56\x35\x10\x1d\x56\x15\xae\x24\x5b\xc1\xa3\xf8\x2f\x04\xe8\x9b\x0c\xd2\xd9\x50\x8f\xa9\x45\x3e\x8f\x97\xee\x17\x6b\x0f\x64\x04\xb3\xd1\x88\x5c\x46\x12\x28\x20\x24\xaf\xc1\x3b\xe3\x78\x84\x24\xa0\x73\x3a\xba\x84\xd0\x6d\xdf\x84\xe4\x3d\x9d\x64\x28\x5d\x1e\x8b\x72\x2f\x64\xe4\x6c\xb9\x9a\x75\xfd\x3e\xa4\x89\x23\xc2\x9b\x3e\xb7\x51\x0b\x15\xb4\x1d\x7a\x37\x36\x91\x5d\x3f\x62\x6a\x88\xc8\xf7\xe0\x83\x11\x84\xac\xd9\x60\x27\xa2\x9c\x0a\xd4\x08\xa5\xca\x01\xe3\x9f\x49\xfe\x8a\x36\xa3\x59\x68\xfd\xc0\x6f\x94\xe3\x96\xfc\xf6\xea\xee\x66\xe5\xb0\xa3\x50\x82\x3b\xdb\x4f\x15\x93\xfe\x42\xc9\xd0\xe5\x64\x71\x68\x59\xa3\xd2\xd0\xd2\x6a\xc1\x32\x84\x82\xd0\x86\xeb\x16\xb6\xd2\xd1\x18\xda\x12\xd4\xdc\x89\xf2\xe0\xc4\x36\x74\x37\x8b\x12\x49\xb4\x27\x96\x19\xbc\x89\xf1\xc6\x85\x75\xb8\xc7\x5b\xab\x41\x9a\xe5\xea\xf0\x62\x9c\x2e\x2e\x28\x4a\x30\xd2\xd4\xe6\xea\xfe\xc9\xee\xbf\x1c\x6e\xa0\xe4\x2e\xe8\x16\x58\x59\xf5\x6d\x79\x67\x77\x6d\x27\x3b\xc8\xd1\x2e\x92\x7e\xb4\x35\xee\x2d\x85\x06\x5e\xea\x2e\x5b\xce\xef\xe7\x06\xeb\x1c\x2a\x62\x65\x5d\xce\x46\x57\xd5\xe7\xd2\x89\x83\xe5\xad\x34\x9b\x0e\x2f\xce\x22\x32\x6a\x21\x14\x62\x04\x89\x09\xd5\x38\xac\x76\x0b\xbc\x0d\x4b\x0c\x1b\x4f\x89\xd1\x11\x60\x69\x75\xbf\x41\xac\xf1\xbd\xa6\xbb\xa3\xb2\x13\x65\x10\x0d\xe2\x13\x3d\x9c\xde\x5c\x6d\x86\x89\xbb\x77\x4c\xd3\x8d\x33\x66\x70\x96\x52\x94\xcb\x6e\xff\x3b\x8f\x77\xa7\x0a\xb7\x1a\x1f\x87\x48\x82\x9b\xba\xc7\xe0\xcd\x87\xba\x17\xaa\x93\x27\x31\x59\x4d\x76\x3f\x5f\x2c\x6f\x5c\xad\x8d\xdd\x13\x10\xa8\x35\x0f\xb5\x30\x59\x6d\x0f\x66\xa3\x86\xe7\x1d\x57\x23\xf0\x97\x88\x42\x53\x15\x5a\xf6\xc7\xa7\x7f\xac\x0f\x9d\x92\xe4\xcd\x70\x91\xb5\x9d\x46\x7a\xe9\x46\x6b\xc1\x65\x00\xc2\x54\x86\xd0\xe2\xa9\x12\x22\x17\x16\x95\x32\x11\xe4\xf8\x88\xf4\xc4\xd3\x1d\xd3\x85\xe3\x6a\xbc\x82\x0e\x5d\x85\xcb\x9f\xaa\xb7\xaf\xdb\x0e\x98\x19\x2a\x82\x57\x16\x7e\x8d\x74\xd9\xd3\x19\xdd\x8d\x17\x39\xf4\xe3\x2b\x70\x47\xe3\x0a\x38\x67\xbc\x11\xf3\xfb\xbf\x7e\xfd\x5b\xeb\xa4\xd6\x48\xce\x65\x33\xbc\xde\xe5\xe1\xfd\x5f\xbf\xf9\x8d\x28\xaf\xfb\xbf\x7e\xfb\x1b\x6b\x65\xc6\x8d\x2c\xd6\xd9\xce\x9e\x6c\x89\xeb\xfb\x4a\x87\xc6\x1e\x8b\xba\x87\xd9\x51\x43\x9c\x6f\x84\x46\xfe\xe8\x94\x70\xcb\xed\x00\x1f\xa8\xfb\xff\x10\x1d\xe4\x9a\xf3\x6c\x88\x0e\xaa\x7e\xbf\xd0\x15\x68\x81\x2f\xea\xc3\x5e\x8c\x5a\xe2\x16\x24\x1f\x6c\x51\x37\xff\x7d\x43\x74\x92\xa6\x64\x62\xb6\x45\xf3\x2f\x72\xa2\x39\x31\x29\x47\x80\xfe\x49\xbe\x7e\xe0\x19\x61\x29\x7e\x0f\x5d\xd6\x5e\x8f\xf3\x54\xfc\x23\x9d\xa7\x4b\xc1\x6a\x9d\xd9\x00\x93\x49\x50\x9f\xab\x92\x7d\xb5\x93\x1c\x1d\x46\x5c\xc2\xf0\x61\xb7\xf1\x10\x7d\xa5\x86\x97\x5a\x4b\x3f\xb7\x4d\x1d\x2f\x93\x66\xa6\x4d\x6a\xa1\xdb\x1a\x55\x34\xed\xa0\xe8\xad\x25\x82\x22\x3a\x4f\xba\xfa\xbc\x70\xee\x82\xab\xf7\x7f\xef\x92\xc9\xe0\xb4\x9d\xad\x0c\x2a\xff\x07\xda\x11\xb2\x85\x08\xe2\x35\x5a\x7a\x00\xa9\x9c\x45\x18\x19\x6c\x24\x64\x8b\xee\x3e\x03\x39\xcc\x8b\x49\xa3\x95\x3a\xb7\xf6\x24\x70\xfb\x20\x81\xf8\x43\xcd\xf1\xcb\x2e\x6b\xe1\x27\x34\x95\x45\x5a\x12\x14\x26\x00\xee\x40\xe6\xa7\xc9\xce\xfd\x8d\xd8\x0f\x62\xf6\x70\x2f\x83\xd5\x6e\x9d\xff\x7a\xb4\x75\xce\xcb\xcc\xb9\x38\x30\x83\xc2\xf1\x40\xc4\xa0\xb6\x82\xd2\xd3\x47\x5f\x21\xd8\x83\x3e\x1c\x74\xec\xcc\x9c\x72\x58\x4c\x54\xa9\xea\x69\x07\x3e\x03\x6a\x0c\x0e\xdb\xc4\x4c\x54\x32\x61\x4b\x0b\x48\x94\xa4\x33\xf2\x71\x2b\x3e\x32\x63\x72\x83\x26\x22\x58\xa2\x59\x65\x21\x51\xae\x5e\x39\xaa\x7c\x37\x8b\xa4\x33\xc9\x5d\xd5\x25\x91\xb2\x9c\xbb\x2b\x99\x9c\x1d\x64\x43\xca\x4b\x27\x79\x40\x12\x4a\x6e\x38\x00\xad\x50\x07\x0c\x49\x36\xe8\x86\x07\xe5\xa7\x27\x25\x79\x43\xb3\xbd\x41\xb6\x7a\xe7\xa8\xc1\x66\x4a\xbb\x44\x0d\x68\xfc\xba\x98\x8e\x3d\x51\xec\x16\xbd\x6a\xa1\xf4\x53\x50\x23\x78\xa3\x0f\x17\x3a\x25\xb1\xe6\xf3\xd3\xfd\x94\x76\x61\x7a\x20\x4e\x46\xc0\x9b\x30\x52\x2e\x27\xaa\x55\xe5\xc5\x70\xf2\x0e\x19\xc1\xa6\x58\x13\x31\xe9\xbe\x61\xda\xc3\x1b\xd8\x29\xce\x9d\x2c\xee\x75\x2a\x5a\xa7\xa3\x63\x8b\x8a\x81\x5f\x64\xc1\x89\xf2\xc8\x68\x82\xdd\xf2\x20\x22\x60\x89\xa1\xc8\x4e\xb9\xe4\x6c\xd8\x05\x5c\xe6\xe7\xf8\x67\xd4\xb7\xfc\x9d\x1f\x5d\xb7\xae\x80\x5e\xa1\xca\xdb\xfe\x99\xbf\xbc\xc8\x4f\x8a\x10\x8e\x6f\x6c\xdb\x97\x5d\xeb\x94\xc3\xf8\xc8\x3a\x46\xa4\x47\x78\x20\x86\x81\x54\x35\x87\x2d\x13\x99\x89\x74\xf9\xd4\xfb\xcd\x3b\xed\xa0\x8c\x80\x91\x27\x54\x66\xec\xe7\xcf\x4a\xae\xcc\x49\x1b\x6d\x1b\x8c\x0a\xd4\x5d\x48\xda\x87\x71\x78\x1c\xa1\x6e\xfe\xc0\x48\xfb\x7a\xe8\x0f\x81\x4d\xce\x36\xa6\xeb\xd9\xac\x8a\x51\x05\x2f\xb3\x08\x58\xda\xef\x22\x9c\x00\xac\xf7\x90\x1b\x7f\x88\xab\x3e\x77\x18\xd0\xfc\xe9\xbe\xc1\x37\xf0\xc2\x03\xbf\x9c\xc2\x2f\x5c\xc6\x9b\x02\x1c\x96\xed\xc2\x76\xf3\x89\x97\x4d\xbe\x2e\x4a\x83\x0e\x72\x45\xbc\x2d\x43\xf8\xf7\x70\x3e\x74\x18\x9d\x7f\x9b\x36\xdb\x23\xa2\x25\x14\x8b\x0c\x7d\xae\xc8\xb7\xbe\x88\x6b\x7d\x8f\xe5\x53\x0a\x40\x3a\x91\x94\x41\x3f\x6c\x1b\x35\xd1\x51\x51\x75\xf5\x44\xeb\x54\xfb\xff\xfb\xad\xf5\x33\xc8\x96\x8b\x80\x59\xe9\x4c\x5f\x14\xed\x8a\x96\xb2\xb0\x69\x89\x01\x2b\x1f\xb2\x20\x09\x68\xd9\x6b\x56\x04\xd1\xde\x8c\xce\x15\xd2\x0b\x9a\xa0\x84\x47\xef\x3c\x16\x25\x59\x03\xde\xf5\x6c\xfd\xc5\xbb\x0c\x89\xdc\xc1\x36\xc0\x02\x86\x2b\xc0\x02\xd8\x87\x4a\x89\x17\x86\x48\x45\xfc\x89\xc1\x45\x33\xde\x8d\x1a\xf5\x46\x5f\xba\x82\x03\x9b\x2f\x69\x01\x81\x28\xe8\x74\xb0\xb6\x15\x51\xec\x20\xe1\x1c\x8f\xcf\x37\x25\x25\x4d\xde\xb3\x65\xac\x43\x32\xa8\x04\xc9\x5b\x6c\xbe\xe6\x07\x5e\xb4\x84\x19\xec\x0a\x67\x9f\xe3\xd3\x41\xd7\x57\x16\xab\xce\xb8\x54\x36\xf6\x80\xcf\x80\x06\xff\xd9\x34\xec\x55\xe9\xc3\x0e\xd2\x85\xda\x6e\x39\x40\x20\x0a\xac\xed\xb5\xd9\xd7\x4c\x03\x06\xf4\x90\x55\x0b\xd6\x29\xf0\x4c\x05\x6c\x34\x52\x9c\x5f\x57\xe4\x9f\x0f\x16\xd7\xd4\x13\x9b\x11\xb7\xca\xf2\xf9\xe9\x86\x1f\x74\xb7\x37\xbd\xb4\xab\xac\x6f\x61\xf9\xc7\x06\x8a\x4d\x98\x38\x96\x12\xa7\xd5\x91\x2b\xed\x2d\x3d\xfa\xe8\x70\xbc\x16\xbd\xc8\xee\x20\x65\x94\x18\x4b\x5d\x5d\xc3\x0e\xca\xb4\x75\x79\xa4\xd5\xe9\x52\x68\x49\x31\xc9\x55\x74\x06\x71\x4c\x63\xcc\xeb\xaa\x31\xd4\xf6\x95\x1e\x42\xae\xce\x62\xc9\x76\xfe\xfb\x78\xda\x0a\xcd\xa7\xa6\xcc\x48\x0b\x8a\xa2\x1b\xc3\xee\xdc\x0e\xd9\x3b\x98\xfa\xf2\x4f\xf7\xf3\xaf\xe4\x20\x03\x3d\xa4\xea\xb3\x6e\x2b\x89\xb2\xaa\xb1\x55\xa4\x9a\x19\x5f\x67\x05\xc7\xf7\x5b\xb3\x45\x68\x83\xfb\x62\xf6\x3b\x9b\x92\x78\x49\x61\x10\x6c\xc5\x7c\x7a\x94\x1f\x4b\x25\x94\xba\x48\xf2\x4f\x08\x27\x86\x25\xf2\xf9\x7d\xcf\x1f\x4d\x94\x81\x14\xba\x27\xd8\x01\x62\x75\xe2\x9a\x63\x56\xe6\x22\xb1\x1b\x0c\x47\xd9\xa1\x61\x17\x8e\xa3\x48\x27\x47\x77\xfb\x12\x97\x0a\x01\x08\xcb\x5c\xbc\x30\x2a\xa8\xde\xd4\xdb\xc7\x53\x1f\x5e\xc8\x27\xa6\x75\x71\x3f\x2a\x2a\xd2\x85\x32\x8a\xf3\xa3\x12\x1a\xf3\xb0\xe8\x6c\xba\x8c\x7c\x2a\x1e\xdb\x58\xbc\x1e\xe7\xba\xb9\xff\x1c\xa6\x6d\xbe\x94\x18\x70\x44\xf3\x7e\x35\x98\xac\xcd\x1a\xa8\x1b\x37\xe3\xee\x7d\x20\x1d\x6d\x70\x21\x30\x31\xff\xb3\x44\x59\x8b\x97\x55\x2c\x8c\x9c\xa3\x18\x1b\xe1\xb0\x5a\xe8\xde\x07\x22\xda\xcf\xf7\xfb\xf3\x3c\xbf\x37\x35\x7b\x4f\x2c\xf9\x55\x70\xca\xb7\x88\x64\xca\xbc\x78\xe3\x8b\xa4\x89\x88\xfc\x9c\x06\x37\x14\x88\xb6\xcc\x85\x06\xb5\xde\x12\x60\x19\xad\xa1\xda\x3a\xbb\x1d\x3d\x03\x35\xcf\xe6\x26\x0d\x6b\xbd\xd9\x80\x95\x30\x6e\x3d\xde\xc7\x61\xb8\xda\x28\x4f\xc9\x5c\x3f\x3b\xa7\xa6\x9e\x1a\xa6\x1a\x8e\x07\x62\x8c\xe1\x67\x7f\xcb\xc2\x84\xf8\x90\x5f\x0c\xe0\x43\x49\x67\xdf\x6f\x62\xa3\x31\x51\xf2\xff\x05\xf5\x3c\x35\x8c\x11\x38\x9c\x34\xc8\x61\xbf\xb7\xe9\x00\xc6\x2e\x79\x26\x30\xdf\x72\xc0\x43\x89\xb9\xa7\x19\x51\x54\x1f\xd8\x6e\x02\x4f\xab\xb7\x4e\x54\x68\x5b\xd7\x3b\xc4\x3b\x5a\xf2\x8f\x28\x63\x83\x90\xa7\xc8\x43\x80\xac\xad\x1c\x1b\x9f\x89\xe0\x50\xab\x10\x25\xf9\x31\xc7\x8a\x9a\x8e\xbb\x4c\xa4\x00\x25\x34\x8b\x8f\x22\xe0\x3e\x66\x58\x73\x7c\x44\x45\xd8\xef\xe7\x4d\x08\x86\x25\xfe\x3f\x3e\x5b\x7d\x31\x26\x17\x42\x5d\x90\x92\x1e\xd5\x5d\x01\x98\xff\x73\x9c\x74\xa6\x9c\x73\xe0\xb8\x13\x6e\x8e\x59\xd4\x78\x47\x94\x76\xbb\x76\xdc\x3a\x7b\x70\x7a\x3f\xc5\x89\x62\xaa\x5c\x66\xba\xda\xeb\xfa\xb8\x4a\x08\xfa\x21\xce\x06\xc1\x73\x57\xd5\xcc\xb1\x4b\x25\x87\xe0\xec\xa3\x18\x6b\x46\x23\xb2\x89\xb3\x65\x3c\x40\x8e\xb5\xcd\x2e\xcc\x20\xe3\x5a\xb1\x28\x10\x27\x4d\xd5\x1c\x7a\x07\x66\x71\xd4\x54\x1e\x60\x6c\x21\xf1\xd1\x99\x19\x85\xbd\x1c\xba\xa9\x8d\xd5\x97\x83\xb2\x32\x7f\x09\xe7\x42\xbd\x70\x34\x81\x61\x6f\x01\xe0\x59\xa7\xd8\x88\x24\xec\xda\x6e\xc4\xa0\x6b\x66\x9e\xa9\x9d\xfe\x47\x04\xd0\x93\x30\x7d\x1f\xfc\xc5\x03\x63\x5b\x0e\x2f\x30\x5e\x7b\x04\xa3\xa4\x13\xb5\xf8\x7a\x7e\x6e\x40\x68\xf0\xae\xe3\xe2\x33\x62\xb6\x67\x8a\x35\x1b\x13\xf1\x72\x31\x65\x41\x40\x9c\x17\xc7\x22\xef\x61\x93\x46\xf7\xdb\xad\xcd\x7e\x13\x37\x0b\xa5\x29\x6c\x32\x4e\x36\xed\x36\xf4\x63\x44\x70\xf8\x40\xd9\xb0\x51\x60\x12\xd9\x4a\x8d\xe9\xf9\x00\x23\xa9\x68\x44\x49\x37\x76\x3b\x37\xde\xf3\x32\x21\x69\xc4\x93\x03\x06\x70\xe2\xee\xe1\x29\xaa\xef\xc6\xbb\x14\xaf\x14\x9f\x93\x40\x7e\x39\x0b\xb1\x27\x8f\x5e\xbf\x7e\xf3\x2e\x18\xdb\x2d\x89\x70\x24\xf8\xaf\xec\xec\x74\x73\xdf\x8c\x9b\xe3\xc5\xf2\xc6\x71\xe5\x8d\xfa\x8e\xf0\xd4\x69\x8f\x1b\x0d\xe0\xed\xf8\x85\x70\x08\xcf\x68\x72\xab\xb2\xe7\xd8\x20\xcf\xc4\x6f\x3b\xa3\x34\x96\x4e\x9c\x39\xb1\x64\xcb\xeb\x2a\x5b\x60\xd9\x8d\x39\x60\xc1\x3a\x5d\xd5\xc1\x50\xd9\xa2\x02\xd3\x7f\x31\xea\xd9\x30\x29\x0f\xcd\x2f\x07\xbc\x14\x73\x2f\x99\xc8\xd2\x32\x79\xba\xc7\x25\x91\x5b\x16\x24\x21\xbe\xd8\xba\xe3\xb3\x21\xf8\xfe\x53\x9d\x7e\x73\xba\x53\xb1\x5b\x9b\xea\x55\x1c\x7c\x68\xaa\xe2\x64\xc8\x54\x6d\x57\xec\x6f\xdb\x0c\xee\xec\x5b\xe9\x2c\x76\xf7\xd9\x59\x7b\x88\x7a\x48\x07\x1f\x94\xfb\x82\x38\x83\x59\xe0\xc4\x16\x31\xc3\xc9\x0b\x65\x08\xec\xda\x04\x2d\x0d\x90\x78\x14\xf7\x26\xb2\x1b\x1c\x45\xea\x3b\xe1\x57\x37\x3e\x1a\x22\x41\x7d\x9d\x22\xb8\xa8\x20\x08\xbf\x85\xc7\xdd\x4c\xd7\x2a\xde\x66\xad\xf7\xb8\x41\xb1\x6c\xce\x03\x9a\x8f\x31\x56\x18\x56\xcd\x82\x99\x11\xfa\x4f\x2d\x4f\x4f\x59\x9c\xfa\xe2\xf0\x3e\x88\x01\xd5\xf3\x17\x44\xbf\xf1\xf5\xd6\x24\x6e\x29\xa7\xaa\xf9\x45\x8d\xea\x15\x03\x0f\x23\x5f\x59\x20\xe8\x73\xea\x47\x96\xab\xf1\x86\x22\x56\x45\xc1\x41\x07\x16\x12\x09\x2e\x84\xf1\x40\x2d\xc4\x88\x50\x67\x81\xf8\x26\x83\x31\x12\x8c\xd9\x45\x82\xe0\xbb\x19\xba\x63\x4e\x8f\x19\x13\xbe\x16\x5a\xc5\xd1\x2c\x93\x0b\xc3\x94\x8b\x5c\x3d\x8e\xb4\x61\x33\x73\xc4\xa4\xf9\x03\x26\x72\x3c\x0e\x40\x1b\xcb\xb3\xf1\x6a\x49\xd1\x7a\xc7\xe6\xce\x86\xf0\x62\x38\x25\x95\xe5\xc8\x1b\x20\xd5\x24\xae\xa5\xed\x11\x17\xbc\x60\x29\x19\x7c\xf6\x61\xc6\x2f\x41\x03\x8e\x05\xcb\xf5\xcc\x2f\x5a\x2b\x97\xf8\xe6\x3e\x8c\x47\x5c\x33\xae\x71\x66\x24\x52\x17\x82\x64\x60\x65\x2e\xdf\x5c\xbd\x0b\x02\x39\xbe\xac\x6d\xb9\x73\xeb\xf9\xfe\xed\xcb\x07\xce\xcd\x00\xcd\x83\x02\x30\xaf\xd0\x5f\x44\xb5\xa2\x61\x10\xa3\x45\x25\x8e\x55\xb7\x1b\x4a\xf9\x65\x82\xb1\x12\x84\x77\xf1\xb2\xeb\x92\x07\x69\xb5\x5b\xfb\xd4\x09\xe8\x54\xf1\xb1\xcb\xa2\x96\x48\x7c\x15\x21\x7f\x1b\x72\xe4\xc0\x4a\xd0\x4f\xe3\x5e\x30\x6a\x5b\x73\x9b\xbb\xe2\xe9\x21\x84\xc8\x9e\xd2\xf3\xa7\x5c\x17\x87\x2d\xcd\x9c\xbc\xe3\x67\x27\xda\x98\x28\xd1\x1e\x40\x04\x10\x93\xe4\x83\x07\x0c\xcb\x08\x93\x06\x47\x40\xfe\x3b\x51\xe2\x20\xd1\xb0\xe6\x2f\x39\x0a\xd6\x44\x81\x65\x9d\xdf\x78\xef\xaf\x11\xb9\xae\xa6\x69\x8e\x66\x77\xc7\x89\xb9\xcb\x5c\xde\xf5\x61\x35\x2b\x4a\x40\x52\xec\xed\xea\x83\xfd\x2b\x87\x07\xf1\x11\x6c\x11\xb4\x95\x5b\x52\xe7\x24\x76\x02\x42\x14\x37\x2e\x82\xd3\x13\x3b\x5a\x33\x2d\xc6\x2d\x04\xd7\x01\x4f\xa2\xcf\xc6\xe3\x65\xed\x4a\xa0\x11\xb7\x1a\xab\xb3\x93\x96\xd6\x84\x47\xce\x98\x25\xdb\xd7\x15\x07\x47\x13\xf5\x68\xf0\xe0\x3d\x48\x24\x44\xb6\x84\x85\xf7\x42\x49\x97\x92\x96\x91\xb0\x5e\x59\x29\x34\x2a\xb7\x1c\x87\xe9\x9e\x1a\x0c\x5b\xd9\x3f\xe7\x31\xa4\x74\xaf\x2b\xe0\x94\xb6\x5c\xa6\x18\xee\x81\x5e\x71\x5a\x58\x0a\x45\x3e\xef\x53\x58\xcc\xe1\x28\x77\xfc\xd9\x2a\x96\x65\xcb\xc0\x00\x2a\x66\x1e\x20\x82\x61\xfc\x42\x98\xa7\x0a\xc1\xde\xc1\x3b\x3a\x0a\xe3\x40\xeb\xe3\x3c\xc3\x52\xdc\xe3\xfd\xb2\x71\x14\x80\x41\x8e\x8c\x7a\xe0\x51\xa4\xc8\xaa\x2d\x9c\x7b\x06\x1d\x34\x60\xca\x14\x2b\x7e\xf9\xaf\x57\x6f\x5e\x9f\xe9\x50\xff\x38\xff\xfa\xfc\x5f\xfe\xf9\x9f\xcf\xaf\xaf\xaf\xcf\xe9\x94\x97\xe7\x47\x3a\xc4\xe7\x7d\x43\xab\x8c\xfc\x5c\xa7\x41\xc5\xed\xfe\x07\x5b\x7d\xfc\xfe\x21\xfd\x9d\x7d\x35\x46\x59\x12\x1a\x5f\x74\x23\xd1\x8b\x11\xff\x09\xcc\xa5\xa7\x89\xdf\x26\x18\x05\x97\x8b\x6f\x6b\x6c\xab\xd8\xbc\x3c\x91\x0f\xb5\x67\x0e\x3c\xaa\x5d\x35\x16\xa6\x34\x5b\x5b\xc4\xa0\xd1\x96\xd9\x6a\xb7\x38\xf9\xc4\xd3\xa0\x5c\x41\x5d\xf1\x60\x5e\xac\xf4\x65\x88\x51\x11\x51\x6e\xfe\x24\x7a\x4d\x9f\xc7\xae\x73\x02\x2d\x8f\x8b\x0f\x7e\xaf\x92\x0b\xe5\x5a\xa5\x0f\x99\x32\x6f\x0e\xcb\xd2\xca\x35\xc5\x66\x03\xfe\x8a\x43\xe3\xfc\x38\x6a\x97\x2d\x45\xeb\xaa\xbc\x71\xc1\xcd\xe1\xe7\x43\xa0\x25\xfb\x8b\x5c\xa7\xf1\xe0\xf2\xb3\x51\x03\x1c\xae\x32\x90\xef\xf3\x17\x3b\x91\x8f\x39\xe6\x01\xe0\xd8\x06\xde\x41\x9c\xd5\xc6\xcd\x48\xac\x09\x76\xb6\x24\x90\x36\xbb\x02\xc6\x41\x84\xe8\x3b\x53\xec\x24\xe8\x2b\xaa\x4e\xd4\x13\x29\xe3\x93\xc6\xfe\xed\x3f\xec\x78\xd9\x54\x0c\x27\xab\xc7\x9a\x32\x8e\x1a\xda\xd1\x89\x0a\x62\xb7\xc9\x45\x61\x9b\xd9\xe9\xe5\xf2\x88\x16\x5f\x7a\x45\x27\xe6\xd7\xf1\x89\xe7\x20\xae\x1c\xcb\xd5\xae\x47\xe9\x4e\x1c\x4f\x68\xe0\x63\xcf\x71\x03\xfc\x51\xce\x54\xf4\x94\xec\x73\xb6\x26\xe4\x76\x64\xe1\xd5\xb5\xa7\x33\xa2\xfd\x96\xf8\x47\x1b\x9b\x69\xe8\xd8\x11\x09\xc5\x98\x67\xe0\x30\x7c\x1d\xc8\xa9\x09\xc2\x4b\x51\x9b\xa3\xbd\x54\x1e\xa9\x9f\xe3\x72\x49\x07\xee\xca\xa5\x7b\x7f\x9a\x88\x57\x3e\x65\x48\xd8\x4d\x13\x17\x62\x06\xb5\x50\xaa\x00\x71\x8c\xde\xaa\xd7\x2d\x22\xec\x37\x9b\xa1\xf8\x89\x87\xe2\x8d\xd9\xcc\x60\xbc\x58\x0d\x39\x76\x01\x1b\xa7\x3e\xe4\xce\x35\xa2\x12\x6d\x73\x83\xa8\xda\x1b\x76\x26\x87\x0b\x87\xf3\x7d\x70\x34\xa8\xf3\x9d\x9f\x96\x1d\x49\x4f\xe2\x83\x78\x85\xdf\xe2\xf9\x37\x2a\xa1\xef\xcd\x48\x91\x5c\x5f\x9d\x19\xa2\x89\x2d\xb6\xbe\xd4\x42\x84\x39\x59\x2e\x1c\xad\xe9\xa1\xac\x6f\x24\x84\x40\x14\x03\x3f\x0a\x60\x14\x2f\x41\x28\x0d\x0f\x68\x9d\x8a\x24\xba\x2a\xb1\x84\xa9\x5e\xc4\xcd\xbf\xd7\xe8\x61\xce\x84\x29\xad\x77\x8a\xfd\x48\xc4\xfe\x13\xc3\x1e\x39\xba\xfb\x32\xa9\x47\xfe\x45\xd2\x9b\x27\x10\x86\x6e\xf9\x71\xe5\xe0\x9b\x3f\xa8\xbc\x97\x90\x94\x27\xdd\xf2\x93\x35\x9b\x70\xba\x4f\x67\x1e\xf9\xdd\x07\x7e\x31\x71\xbb\x9f\x9a\xf6\x84\x45\xc8\xc9\x8d\x98\xa8\xf6\x09\xcf\xfb\xc1\x08\xbd\xb4\x3b\x11\x6e\x4f\xb8\x9d\xba\x07\xe0\x52\x69\xdf\xa4\x1f\xfe\x6d\x83\x73\xeb\x35\x58\xf7\x4f\x98\x8f\xe4\xc5\x7a\x3d\x5b\x36\xf5\x75\x0b\x37\xf6\xbe\x59\x11\x43\x5d\x66\x32\x2e\xbc\x9c\xa2\x25\x60\x36\x41\xf0\xb2\x24\x66\xa2\x2a\x71\xdf\xb1\x69\x20\x67\x89\x46\x74\x2e\x7f\x34\x8d\x55\xd4\xe9\x63\x0e\x17\x94\xee\x09\x20\xa1\x43\xa3\x98\x41\x33\xad\xd8\x6e\xeb\xeb\x05\x7e\xb1\x4b\x3e\x82\x7b\xd1\x4d\xce\x55\xaf\x3a\x7e\x92\x4f\x4a\xe1\xb7\x22\x14\xbd\xf6\x58\xdd\xa7\x2a\xfd\xc8\xe1\x2c\x5c\x8b\xfb\xe8\xc6\x54\x94\x12\x74\x24\xf7\xf3\x50\x30\x72\xdc\xbc\x9f\x27\x42\x85\xa8\x39\xb7\x70\x84\x49\x1e\xbf\x78\xad\x5f\xec\x85\xc0\xd1\xb3\xd4\xce\x80\x1d\xa4\x79\xc6\x12\x22\x97\xa5\x3d\x33\xef\xf1\xf0\x56\x7f\x84\x2c\x71\x4c\xe1\xdf\xe1\xa5\x48\xfe\x0c\x65\xf2\x26\x5b\x77\xa0\xa4\x56\xf6\xd0\x85\xe4\x03\x9c\xc8\xa5\xe6\xcf\x04\x31\x65\x7d\x80\xa3\xfa\x51\x9f\xee\x74\xa5\x68\x58\xd8\x0c\x5a\xcc\x25\x47\x35\x73\xe9\xac\x09\x0b\xe2\x7e\x97\x9c\x81\xa7\x8a\xd6\x38\xac\x52\x26\x51\x91\x65\x09\x33\x8e\x8d\x6b\x40\xd7\x8a\x95\xcc\xb8\x5f\x06\x2d\x09\x7f\xfd\x98\x5a\x58\xf1\xa3\x89\x2e\x97\x88\x05\x0d\x76\x9a\x6d\x9c\xf3\xad\xcb\x61\xda\x14\x11\x00\xd3\xe2\x2e\xee\xb5\x0b\x97\x15\xdc\x6e\x28\x97\x29\x90\x95\x10\x2c\xb1\x5b\x4f\xc7\x31\xe6\x3f\xa8\x1c\x4d\xe3\x0e\x0e\xb6\x45\x65\xc0\xba\x37\xa6\x13\x24\xea\x0a\x39\x6a\x16\xea\xee\xc5\x3e\x57\x04\x2a\xc0\x95\xd8\xf4\x65\x90\xbc\x28\xcc\xc0\x8a\xcf\x35\x70\xdd\x40\x1f\x73\xc5\x4a\xc3\x75\xb2\x7b\xfc\x9c\x0e\xb6\x8e\xe3\x70\x8d\xbb\x8c\x6d\xfa\xb5\xbe\x86\x18\x75\xcc\x92\xab\x01\xaa\x1c\x84\x22\xb1\xb9\xfe\x85\xcb\x21\x90\x8c\x22\x50\x2c\x89\x2c\x3a\x1f\x6e\x5b\x54\xde\xd1\x51\x20\x90\xe9\x98\x51\x8d\xde\xc0\x52\x34\x90\xc4\x5a\x32\x0a\xc1\xce\xc7\x5b\x63\x40\xf9\x27\xa2\x10\x35\xbe\xb4\x85\xda\x68\xf9\x9e\xb0\x25\xed\xd6\xaf\x7b\xd8\xa2\x08\x88\xf0\x88\x49\x02\xfe\xee\xad\x92\x14\x90\xfd\x11\x72\x8d\x8d\x01\xdb\x41\xdc\x42\xed\x1d\x34\xd2\xa4\xbc\x74\x9b\xaa\x68\xd2\x6b\xea\xee\x9d\x5f\x09\x1d\xff\x16\x85\x10\xd6\x2d\x79\x93\x3e\xff\x17\x17\x18\xba\x8f\x8f\x5e\x0a\x14\xef\x71\x79\xf2\x56\xfd\xc7\x67\xde\x59\x6d\xfa\x6d\xd7\xc8\xc6\x8b\x3d\xc9\x84\x38\x84\xbb\x9f\xfc\xba\x7b\xe7\x60\xeb\x03\x01\xf2\x2b\x38\x0f\x57\x1c\x38\x16\xaf\x4e\xb6\x44\xf1\x40\x5b\xf8\xc2\xb2\x49\x0a\x71\xed\x4c\xfa\xb3\xcf\x97\xcd\xf6\x2d\xc7\x1b\x6e\x11\x20\xf0\x9a\x9f\x9f\x80\xec\xb1\x9d\x97\x56\x9c\x93\x39\xf1\x96\x40\x97\x91\x7f\x1d\x5a\x53\x2f\x15\xfc\x8c\xc6\x8b\x85\x99\x70\x9d\x4e\x43\x1e\xcb\x1a\x72\xda\x6d\x65\xdd\xe2\xbe\x8f\xc2\x91\xfa\x8d\x83\x8d\xae\x86\xda\x55\x33\x3f\xf5\x56\x28\xaa\xd8\x4c\x17\x9a\x0b\xdf\x91\x87\x73\xf0\x1c\x1b\xf7\x04\x20\x37\x81\xd7\x0e\x7e\xd4\xa2\x50\xb2\x10\xc3\xe0\x89\x82\x5f\x98\x67\x84\x4e\x81\xd0\xff\x06\xb1\xd0\xea\x3e\xd4\x04\xbb\xc6\xea\x44\x70\x66\x3f\x9e\xf0\x48\x1e\x00\xd0\x3f\xe6\x91\x3c\x0c\x62\xfd\x39\x1e\xc9\xff\xb0\x12\xfc\x74\xbc\xc9\x58\xb0\x96\x06\x9e\xf4\x39\xe3\x08\x94\x9f\xa9\x93\x9e\x10\xfa\xa4\x15\x3c\x25\x14\x2f\xc6\xdf\xaf\xfe\x50\x4d\x37\x41\xeb\x7f\x46\xd1\x1d\xeb\x25\x27\x98\xbe\x41\x0c\xc4\x37\x89\x16\x53\xc3\x1f\x4a\x95\x20\x55\xd5\xa3\x9e\x48\x55\xc7\x2c\x5f\x44\xe3\x26\x4f\x42\x0f\x39\xc3\x71\x70\x11\x3e\x40\xb7\xd6\x89\x63\x8d\xb0\x30\x51\x65\x81\x06\x8e\x24\x7e\xc9\x43\x94\x8e\xc4\x8e\xe3\xfd\x38\xd6\x08\x42\x8d\x9c\x8e\x34\x72\x42\xf1\xf3\xa9\x90\x23\xc3\x41\x03\xed\xc8\xdd\x1e\x07\x8f\xe1\x79\xb6\xc5\xf4\x3c\x3d\xa6\xba\x18\x2c\xc9\xa7\xa2\x90\x9c\x79\x79\xd1\x04\xf1\x1e\xc9\x92\x9f\xb2\x68\x70\xa0\x6b\x61\xe5\x83\x78\xfe\x44\x12\x9e\x24\x2a\x47\x58\x2c\xe7\x76\x10\x0f\x2e\x92\x49\x41\xea\x27\xa3\xe3\xa3\xae\xf8\x5c\x6e\xdb\x95\x8f\x72\x3b\xcc\x70\x48\x70\x2f\x4e\x88\xc5\xd1\x46\x25\x44\x6f\x8a\xf8\x8c\x13\xc9\x49\xcd\x7a\xd4\xfc\xd0\x17\xc3\xa5\xab\x8e\xeb\x25\x42\xa0\xb8\xb4\x15\xae\xf8\x8c\xa3\x39\x2e\x41\x45\x57\x21\x4b\xb4\x1a\x69\xa8\x21\x97\x47\xf7\xbb\x64\x41\x3a\x1b\x92\xf5\xfa\x53\xc3\x37\x22\xfd\xf9\x92\x87\xbd\x1d\xe4\x17\xc2\x05\x88\x27\x5f\x1a\x2d\x7f\x1f\xe8\x47\xd6\xba\x29\xa9\xab\x8f\xbf\xea\xdd\xf9\xdd\xa8\x1f\x3c\xaa\xf4\xba\x4f\xae\x57\xbd\x60\x67\x88\x1e\x8d\x99\xea\xbe\xb8\x64\x3f\xee\x4e\x06\x2e\xa9\x20\x4e\x34\xc6\x16\x87\xf4\x50\xf6\x71\x22\x3b\x7e\x06\x96\x2f\x1d\xb6\x1a\x0a\x81\xe0\x3f\x0e\x9f\x26\x33\x2c\xd6\x91\x27\x14\x8d\x68\xe6\xc4\xfd\x7f\xe6\x5a\x67\x5a\xd5\xf5\xee\x48\xce\xc1\x08\xe2\x32\xff\xe9\x21\xb0\xb4\xcf\x7b\x94\xbb\xb0\xfa\x4e\xbf\x21\x1d\xea\x6b\xd3\x32\xa8\xc7\xfe\x61\xae\xc1\xb0\xe2\x52\x9f\x1a\x16\xf7\xfa\x4f\x62\xe9\x3a\xdd\xb9\x11\x55\x66\x35\x54\x1c\xb3\xfc\x45\x0c\xfb\xec\x26\x1a\xa3\x8b\x62\xe0\x7b\x74\x4f\xd9\x8d\x82\x1a\x48\xf9\x13\x37\xb0\x64\x8a\xcd\xca\x88\xe2\x90\x43\xd4\x78\xb2\xe2\x44\x74\xb2\xcf\x40\x21\xa1\x09\x57\x38\xbc\x77\xa6\x96\x50\xa1\x30\x5b\x57\xa5\x34\xac\x9f\xb6\xa3\x16\xf9\xc9\x0a\x25\x19\x25\xe7\x73\x6f\x74\x29\xed\x62\x6e\x81\x82\x1c\x5c\x4b\x48\x0b\x7b\x9c\xcb\x3b\x19\x8a\x3d\x5c\x9c\x34\xee\x5d\x8e\xaa\x52\x9c\xa3\x66\xdd\x63\xe0\x28\x9a\x88\x42\xc7\x25\xd3\x8d\x8c\x42\xdc\xc6\x31\xa7\xf8\xe1\xa4\x3c\x32\x78\x94\xc2\x22\x70\x8e\xb7\x63\xb4\x0d\x5c\x83\xd1\x90\x8e\xa5\x64\xb9\xfc\x94\xf4\x67\x3c\x36\x47\x36\x3c\x93\x37\x12\x3d\x74\x4f\xc5\x61\x9c\x25\x38\x63\x08\x4d\x03\x48\x75\x80\x00\x94\x13\xf6\xde\x99\xc5\x7d\xa7\x93\xd5\xc7\x56\x93\xe9\x94\xac\x55\xb0\xd5\x34\x2e\xf9\xcc\x6e\x15\xd7\xfc\x83\x3d\x0f\xb0\xc8\x29\x14\xf2\x99\x63\xf1\x28\xe6\x1f\x5d\x88\x53\xc3\x31\x89\x91\x46\x14\x8f\x37\xda\xa9\x88\xd1\x02\xac\xa6\xcc\xd6\xe0\x14\x04\xb1\x78\x7c\x12\x06\x91\x4c\x92\x03\xa1\x56\x2a\x12\x54\x2b\xb8\xd9\x85\x76\x2b\xda\x42\xf0\xc5\x10\x3f\xf8\xc7\x28\xc0\x71\x6f\x44\xf7\x39\x7a\x07\x25\xc6\x86\x5e\xc6\x07\x3c\x7b\x26\x44\x5f\x2f\x0f\xa3\xf0\x63\x10\x6e\x34\xc2\x54\xf3\x9e\x10\x5b\xed\x9f\xdd\x9c\x5f\xb8\x5f\xf2\x74\x4b\x1b\xa9\xff\x98\x87\xf4\x84\x32\x93\xcd\x4d\x14\xf0\x3f\x59\xb7\xf4\x35\xcb\xf8\x51\x0b\xbc\xe0\xd0\x77\xfe\x89\x8b\x56\x63\xda\x6d\x20\x5c\xf0\x4f\xa2\x22\x24\x0d\x9b\x78\xcd\xaf\x6e\xf0\xde\x07\x33\xb2\xbb\x1a\xc1\x10\x15\x4b\xef\xeb\x0a\xcd\x43\x75\x08\x31\x0c\xbf\xd6\x00\x03\xad\x05\xdc\x5f\xe6\x7f\xc6\x4f\x0d\x76\xca\x09\x2f\x33\x7c\x13\x2e\x20\xd2\xe6\x1d\xfe\xfd\xce\xdc\xe7\x17\x08\xfc\xcc\x59\xbc\x49\xab\x4e\x04\xda\x95\xfe\x92\x08\x24\xa1\x84\x37\xf9\x6b\x55\x5d\xa4\x63\x89\xda\xc0\x68\xf7\x2c\x45\xed\x5b\x6e\xa7\x6f\x8d\x4e\x41\x47\x3c\xd9\xe5\x02\x2a\x63\x79\xfc\xc5\x3f\x78\xab\x07\x62\xc9\x02\xc0\xe5\x0f\x11\x8d\x74\x16\xa5\xc6\x0f\x96\x26\xe9\xee\xcd\x0b\xa7\xb4\x88\x33\xe3\xad\x8a\xd3\x8f\xf2\x12\x46\x9c\xd4\xca\x5b\x18\x71\x92\x98\x44\xc4\x29\x87\xac\xa1\x49\x14\x07\x84\x78\x4c\x8a\x3a\x5b\xc6\xb8\xeb\x71\xf5\x41\xb0\xd5\xb4\x89\x89\x31\xe9\x33\xac\xc9\x08\x42\x18\x9b\x38\x99\xdf\xa1\x76\x6f\x91\xc7\x19\x4a\xfe\x0f\x9a\xf5\x3e\x04\x51\x0b\xec\x70\x1b\xa7\x08\xdb\x20\x4f\x4f\x87\x54\x3e\xbe\x71\x42\x60\x6f\xed\xb8\x34\x65\x96\xfa\x0c\xcc\x04\x78\x09\x77\xef\x41\x4c\xb9\xfb\xa9\x82\xf2\x6a\xae\x88\x69\xfc\x5b\xed\x13\xe5\x9a\xbe\x9a\xbf\x77\x2f\x19\xc7\x45\xe0\x47\x02\x47\x26\x0e\x43\x5b\x73\x80\xb4\x27\x48\x32\x94\x44\x7b\x91\x9b\x37\x78\x9b\xae\xbd\xbd\x8a\xbf\x11\x39\x70\x06\xd7\xb0\xd0\x8c\x56\x6c\x98\xe0\x08\xa5\xf8\x4e\x0c\xad\xe9\xc5\x8a\x77\x7d\xd3\xc7\x0b\xe3\x40\x38\xea\xbe\xc0\x90\x73\x8c\xe3\xfa\x7e\x4e\x3b\xe9\xe8\xb4\x40\x08\x89\xd8\xe0\x94\x0b\x49\xf4\x59\x23\x65\xb9\x1f\x42\x14\x51\x23\xed\x28\x22\xea\x98\xd2\xe0\xa2\xa2\x8c\xb8\xbd\xad\x74\x9c\xd3\x6d\x7c\x62\x88\x78\x04\x7c\xb3\x72\xcf\x1d\x67\xcd\x12\xae\x80\x30\x87\xb4\x2b\x7d\xdf\x7e\x0c\x01\x71\x9d\x40\xda\x8c\xea\x46\xba\x2c\x7e\x36\xd7\xbd\xef\x15\x1a\x6a\x6c\x7b\x53\xad\x16\xfc\xe8\x74\xbb\x65\x3d\xea\x73\x3a\xb8\xca\xc0\x3c\x98\x51\xe2\x43\x09\xd9\x54\x7c\xb4\xac\x6c\x6c\x1f\x98\x2f\x5f\xf2\x2b\x1d\xdf\x4d\xc4\x61\xe7\x8b\x8c\x1f\xee\x00\x5a\x64\x2e\x46\x49\x3b\xd0\x6b\x88\xd3\xcc\xef\x5e\x7d\xf1\xd5\xed\x83\x48\x97\x75\x18\xb6\x5c\x1b\xde\xca\x40\xb1\xc4\xa7\xe6\x14\xd9\x01\x24\x13\x1b\xee\xf8\xb9\x98\xee\x7c\x29\xb6\x1d\xb0\x0b\x1d\x3e\xf7\xad\x6a\xb2\x56\x64\x71\x56\xa4\x8d\xaa\x44\x3b\x35\x99\xb8\xf7\x93\x80\xa2\x5d\x4f\xcc\x28\xb9\x74\x20\xd5\x6c\xa8\x45\x18\x57\xcf\xdf\xf3\x1f\x23\x89\xc9\x31\xef\x81\xf7\x09\x36\xea\xa6\xee\x89\x7f\xb0\xfe\x19\x8f\x67\x2e\xa5\x9d\x2a\xcf\xb2\xf4\x9b\x45\xcf\x31\xb8\x5c\x95\x0d\x3f\x36\x1e\x18\xfd\xb8\x22\x5f\xca\xae\x1a\x24\xaa\x2b\x16\xa9\xe3\x96\xce\xca\x28\xa2\x8e\x6f\x24\xae\xac\xd5\xea\x65\x97\xd1\x80\x72\x36\x66\xea\xd3\x78\xe1\xa1\xf0\xa1\xe6\x18\x95\x8b\x92\x96\xa9\x3f\x2c\x30\xf1\x16\x41\x78\x58\xb3\xd2\x98\x97\x9c\xcc\x4f\xe0\x4e\x74\xe1\x46\xa6\xd5\x7c\x47\x34\x40\xd5\xcc\x9c\xa8\x88\x30\x17\xc3\x4a\x1b\x89\x7a\x31\xac\xe1\xd6\x70\x6b\xb3\xc3\x60\x05\x9f\x53\xd2\xd4\xea\x71\xd1\xe1\x2a\xa0\xf0\xb9\x5f\x73\x0e\xc3\x6d\x07\x0b\x17\xd7\x2b\xf2\xd2\x72\x1d\xf3\x8a\x13\x1c\xaa\x5d\x9f\xac\xc0\x96\x0a\xf3\xe7\x75\x7d\x08\x5b\xfb\x62\x72\x77\xe3\x6a\xaa\x06\x1a\x8d\x8f\x63\x84\x6f\x86\x38\x92\x6b\xd6\xcb\x0f\x84\x7f\x5a\xa9\x21\x1f\x69\xa9\x65\x5d\x77\x78\xce\xe4\x00\xa2\x8b\xcd\xd6\x38\xf6\x9b\x4b\x85\x02\x7b\xb5\x9b\x1a\x98\x14\x1f\xae\x1c\x15\x3f\x70\x48\xac\xdb\xd6\x6e\x8f\x28\x9e\xd4\x5f\xd3\xaf\x60\xe3\xd8\x6a\xa7\xaf\xae\x10\xfb\xd3\x27\x4f\x2e\xc7\xa8\xaa\xef\x79\x54\x7b\xba\xeb\x55\xb6\xda\xda\x89\xbe\x9f\x20\xfd\x53\x9d\x8f\x2a\x87\xde\x47\xf5\x27\xbb\x97\x57\xa8\x20\xed\x5f\xf6\xab\x9d\xed\xe0\x90\xb5\x5d\xb0\x76\x3b\xb4\xa5\x8f\x58\xf1\x0d\x4b\x64\x2f\x9d\x2c\x94\xea\xd8\x19\x71\xb2\x55\xba\x7e\xe8\x7a\xc9\xd8\x7c\x21\x9c\xe4\x27\x04\x8d\x48\xcc\xb3\xe9\x5a\x35\xbc\xa7\x17\x4a\x71\xeb\xe9\x04\xad\xe3\x5b\x78\x24\x5e\x68\xad\x72\x10\x7a\x50\x0b\x31\x03\x19\xb7\x87\x00\x4c\x72\x13\xae\x6e\x56\xa5\xf5\xb1\x98\x0c\x8d\x44\xd3\xe2\xe2\xcc\x5b\x50\x71\xc6\xa2\x57\xac\x83\x3f\x72\x44\x27\x94\x57\x76\x13\x52\x97\x8e\xee\xe9\x31\xba\x73\x15\x15\xcb\x7d\x66\x95\x03\xbc\xc6\x3f\xaf\x8e\x1b\x9e\x54\x79\xa9\x36\xb3\xb7\xd7\xd1\x41\xb5\xf3\xa4\x98\x48\x51\x99\x19\x14\x0f\x09\x7d\x83\x80\xc0\x95\x23\x1a\x3a\xae\x24\xbc\x35\x20\x65\xf9\x79\x2d\x55\x16\x88\x46\xd2\x05\x13\x0f\x1c\xb1\x96\x04\xb9\xfb\x9a\x89\x5c\x49\x70\x34\x1c\xf0\xb9\x37\xf9\xf3\x99\x71\xb4\x21\x49\x12\x82\x87\x79\x4e\x97\xa4\xa1\xd6\xa2\x18\x6b\x2e\x47\xdf\x21\xd7\xc7\xaa\xc1\x67\xae\x6f\xe6\x57\x08\xbd\xf4\xd6\xbf\x79\x5f\x57\xe6\x35\x32\x94\x63\x35\xef\x6a\x83\xb7\xd3\xe2\xa9\x79\x43\x29\x1b\x26\xc6\xfa\x3e\xaf\x31\xd2\x21\x0c\x35\x46\xd2\xc4\x20\x06\x8f\x4e\x8d\x89\x69\xb1\x07\x7a\x94\xf0\xcc\xe6\x8a\x53\x5d\x41\x0e\xc9\x3b\x7f\xc9\x41\x78\x93\xca\xcc\xf0\x08\xff\x30\x68\xe0\x25\xb3\x42\x78\x65\xda\x55\x18\xbe\x66\xfe\x12\xb2\x70\x83\x00\x51\x88\x81\x0a\x55\x5a\x83\xb7\x7e\xc0\x0b\x88\xea\x2d\xf7\xa3\x3f\xf1\x28\xdd\xe5\x27\x5f\xa4\x0b\x93\x8f\x14\x49\x6c\x79\x19\x9e\x07\xe4\x22\x45\xbb\x08\x50\x10\x47\xa2\x67\x6a\x69\x04\x14\x28\xce\x70\x11\x17\x15\x0e\x3a\x78\x98\xaa\x00\xc9\x2f\x18\xb4\xb7\xb0\x6d\x67\xb2\xca\xe9\xd5\xa4\xea\xd2\x59\x51\xb0\xe4\x75\x0f\x97\x2a\xef\xdd\xed\x42\x06\x30\x0c\x0b\x85\x1a\x1c\x8a\xa7\xd6\xc7\x87\xdc\x77\x2f\xf6\xc5\xcf\xc6\x71\xf9\x81\x6e\x2d\x9e\x44\x22\x28\x55\x08\x1e\xbc\x55\x9a\xae\x4e\xf4\x46\xaa\x7f\x92\xd5\xe9\x59\x4e\xbe\xc9\x1a\x0b\xac\x3e\xfd\x74\x69\x3c\x0c\xf7\x4a\x6b\xb2\x7c\xff\x77\xde\x69\x8d\xd6\x2a\x36\xbd\x73\xab\xfb\x29\x07\x18\x79\xa6\x72\xc6\xde\x5d\x31\x0a\x8b\xdf\xad\x0c\x48\x8c\xcb\x46\x98\x89\xbf\x13\x63\x0d\x4e\x71\xd2\xf7\x97\x22\x78\x57\x31\x18\x63\xa4\xb4\x97\x48\x22\x26\x10\x89\x64\x5b\xba\x0a\x53\x6f\x24\x24\xfd\x4b\xc2\x40\x0f\x28\x89\x1c\xf4\xd9\x46\x0f\x99\x4a\x32\x42\x35\xb7\xe1\x31\x53\x49\x1c\x45\x15\x16\xe9\x9c\xa2\x8f\x64\xc4\x03\x04\xf2\x8a\xf3\xcc\x25\xf2\x5c\x25\x04\x0e\x79\x94\xe7\xfc\x26\x9f\xc3\x50\x9a\x13\x46\x2e\x09\x51\xf4\x4d\x49\x90\x37\x1c\x61\xcc\x15\x9e\x29\x74\x79\xce\xae\xe6\x71\x14\x1a\x32\x1a\x26\xb7\x35\x18\x5e\xdc\x34\x17\x9a\x42\x82\x82\xfe\xa4\x90\x9a\x24\x5f\xa8\x31\xb2\x24\x6e\xeb\xb6\x23\xba\xb6\xf5\xfd\x1d\x10\x4f\xf3\x92\x8e\xbc\x4f\x61\xb9\x47\x5e\xd1\xd8\xd8\xa9\xe3\xe2\x75\x92\xe1\x5f\x2b\x44\x76\xf4\x4e\xe1\x44\x91\x60\xf4\xd2\x40\x00\xf1\x9d\xf8\x15\xbb\x5c\x09\xf6\x53\x37\xfc\xd6\x1d\x3c\xeb\x8a\x8a\xdf\x7e\x60\x67\xb1\x0a\x2f\xe0\xc0\xe9\xdb\x6c\x8b\xcd\x36\x58\xc0\xe4\xd1\xa3\x38\xba\x92\xb8\xb1\x39\x1a\x18\x2e\x30\x73\xc5\xd1\x95\xcd\x63\xb6\x6d\x8c\x4a\xd0\x7c\x38\x3f\xcc\x26\xeb\xba\xa6\x58\xf6\xd0\xaa\x8a\xad\x49\xdd\xb0\x6e\x56\xd3\xfb\x6e\x5c\xb0\xed\xc5\x63\xe4\x11\xd0\xec\x27\x4b\x47\x4f\xe3\x8d\x8b\x49\x34\x32\x19\x93\xc4\x22\xf3\x0d\xb0\x1a\x41\xf3\x99\x0a\x18\x14\xd8\xe3\x2a\x58\xb4\x19\x51\xd4\xe6\x51\x6e\xae\x1e\xb9\x8c\x76\xdf\x1d\xe4\x0d\x80\xab\x57\xef\x2e\xcd\x2d\xf0\x83\x92\x0c\x09\x5c\x70\x1b\x81\x03\x72\x18\x24\x38\xe7\x10\xc3\x85\x1a\x03\xa9\xa9\x3b\x73\xe7\xf8\xa6\xed\xe2\xef\x13\xc5\x4e\x5f\xbe\xd8\x63\xa2\xd1\x69\x61\x56\x84\xdf\xab\x1b\xa3\x35\x66\xe6\x55\x5f\x76\xc5\xa1\xb4\x2e\xc5\xb4\xdb\xba\x2f\x11\x80\x9f\xf8\xf8\x43\xd6\x30\xd5\xb1\xbc\x91\x08\x48\xe6\xc1\xd9\x83\x59\x7a\xe6\x16\x5d\xd9\xb2\xe7\x06\xae\x50\xf3\xee\xe5\xd5\xb9\xad\x56\xcd\xcd\x81\x05\xef\x3a\xcf\x5d\x71\x40\x31\x7d\x9f\x7c\x7e\x45\xdf\x28\x09\x8f\x34\xfa\xf6\xa7\x03\xea\x30\xdb\x1c\x8b\x95\x82\xc9\xe5\xa3\x57\x46\x13\xaa\xe8\xf0\x6b\xbf\x1c\xaf\xc9\x91\x5e\x61\x04\x48\x86\xbb\x14\x3f\xda\xd4\x78\x22\xcc\x0f\x86\x26\x4b\x48\x97\xfe\xf1\xcd\x81\x78\x7a\x0a\x8d\xdf\x90\x4a\x12\x55\xa7\x5f\xeb\x40\x41\xe8\xdb\xda\xee\xe9\x07\xf7\xb0\xf6\x90\x9a\xf0\x68\x2d\xa5\xef\xd2\x5e\x52\x32\x2f\xcb\xf3\x31\x91\x17\xa3\xb1\x70\x51\xa5\xcd\x7c\xae\x89\x51\xdc\xd6\xfc\x3d\xff\xf9\xc4\xbc\xd5\x16\x49\xfd\x53\x19\xad\xa4\x15\xd2\x82\x0b\x41\xaa\xf2\x3a\x50\xda\x70\x78\xb3\x73\x5c\x41\x1e\x08\x43\xe3\x83\xf5\xc1\xa2\xd6\x05\xeb\x5e\x01\x93\x7a\x1d\x9f\x11\xb8\x9e\xf2\x72\x8d\x1a\x4f\x6e\xf6\xb4\xdd\x4f\x5f\xf0\x22\x67\x73\x22\x2e\x55\x2c\x5d\xf1\xd7\x2a\x51\x2f\x69\xc1\xec\x70\xd0\x7b\xc2\xbd\x6d\xad\x60\x1b\xe5\x1f\x01\xaa\x3e\xdb\xd9\xea\x46\x05\xe0\xfc\x16\x0a\x9c\xb3\x07\x9c\x66\x0f\xee\x18\x4d\xad\xd7\x6b\x04\x25\x43\x30\x4d\x0e\x12\x83\x8f\x73\xfa\xe8\xdb\x50\x91\xc0\x14\x27\x06\x92\x36\x96\x58\x6d\xe6\x6f\xf9\xe7\x39\xfd\x4c\xbc\x3e\x7d\x95\xa6\xd7\x77\xe4\xbd\xa0\x3f\x8f\x42\xb0\x24\xc5\xb8\x63\x2d\x66\xd2\x8e\x99\x70\x69\xea\xba\x93\x07\x3f\xe2\x58\x06\x4b\x8e\x89\x73\xc8\xf2\xb0\xce\xd0\x5f\xad\x16\xf2\x6c\x80\xaf\x23\xea\x33\x9c\xe5\xe0\x81\x3b\xae\x4b\xf3\x18\x56\x24\x16\xc5\x3f\x90\x3c\xd1\xd9\xaa\x29\x0e\xea\xd1\x78\xc5\xbf\xd5\xa1\xd1\x8f\x1c\x7b\xa3\xb0\xc9\x0b\xf1\x66\xbf\xb1\x3b\x1f\x1c\x5c\xb9\xb9\xa9\x35\xc9\x97\x0e\x56\x2e\x54\xfb\x36\x09\x2d\x54\x2c\xa2\x62\x42\x62\x44\x34\x84\xc4\x88\x00\x0a\x89\x3c\xac\x67\x53\xfd\xb7\x6d\x29\xdb\x72\x75\xf5\x72\xb0\x25\x51\xae\x7f\xd8\x29\x13\xa7\x46\xe6\x45\xee\x21\x2a\x2f\x62\x01\xde\xfb\x2a\xae\xc3\x4b\x7a\x19\x2d\xa0\xa6\xf9\x36\x10\x11\xee\x5e\xfb\xd7\xb2\xe8\xec\xb7\xf7\xd8\x39\xfd\x5e\x57\xe4\xcb\xa8\x15\x87\xda\xa3\x83\x44\x9f\x93\x6b\xe3\x19\xea\xe4\x45\x5b\xbd\xdf\xe3\x27\x6c\x15\xbf\x0b\x91\x3d\x84\x76\x77\x35\x04\x4e\xdc\x8a\xba\x21\x10\x88\x6e\x68\x70\x59\x69\x22\x86\x7d\x41\x44\x45\x57\x57\x5a\x95\xd9\x96\x5d\x55\x1f\x62\x67\x10\x3f\x54\x89\x28\xec\x22\x0c\xb3\x0b\xc0\x0b\x7d\xb2\xd9\xbd\x09\xa4\x41\x81\xd5\xc6\xa0\xa8\xf0\xfa\x9e\x6f\xc1\x3d\x3f\xce\xe2\xb4\xf4\x71\x70\x91\xa3\x25\x8f\x95\x6b\x25\x5e\x17\x15\x37\xc8\xb2\x54\x5e\xc4\x60\xc7\x27\x9f\x9d\xb1\x8a\x8f\x56\x62\x42\x22\xf2\x26\x92\xcd\xab\xa2\x2a\xf6\xfd\xde\xfc\x64\x6f\xcc\x15\x65\xcb\x63\xb3\xe3\x91\x1d\x88\x25\xc8\xe6\x4f\xf9\x93\x06\xc5\x9f\x01\x6b\x89\x93\x26\xdc\x41\x16\x25\xeb\xb1\x1e\xa9\x6a\xed\x09\x2e\xc5\x72\xb0\x5c\x74\x51\x05\xa2\x35\xaa\xf4\x16\x39\xf1\xbb\xd7\x13\xb5\x9d\x57\xb8\x82\x90\xf3\x84\x9c\x84\xa1\xbf\xf6\xb6\xa7\xb6\x6d\xb5\x01\x32\xc0\x1f\x7e\xc2\x45\x7a\x68\x8a\x0f\x61\x8d\xc4\x55\x92\xa5\x55\x84\x15\xe7\x8f\x9d\x9f\xa4\xa8\x86\x60\x3a\xfd\x21\x02\x95\x01\x2d\x03\x32\x66\x65\x1b\x59\xfb\xac\xf3\x2f\x21\x33\x8f\xab\x8e\x0d\xd1\x9e\x85\x8b\xe4\x15\x7f\xe9\xd0\x93\x91\x6b\xb9\x69\x96\x26\x2d\xe3\xf6\x97\x4e\x61\x0d\xf3\x3e\x14\x32\xcf\x9f\xbe\x7c\x63\x38\x70\x61\x5a\x78\x8c\x44\x34\x63\x8c\x72\x34\xe3\x04\x86\x11\x3d\xad\xce\x83\x35\xb4\xe7\x93\x5b\x20\xe5\x6e\x9d\x87\x40\xbd\x33\xda\xc0\xc7\x74\x53\x7a\x3a\x72\x82\x3d\x1a\x92\x14\xd4\xaf\x41\x19\xff\x92\x98\x14\x72\x9f\xe3\x1e\xab\xd0\x5f\xc5\x6a\xc9\x08\x53\x89\x4d\x91\xc7\x54\x08\x52\x3b\x39\x2c\x57\xf2\xd0\xd4\xc7\x82\xbd\x7a\xb8\xac\xfb\xf4\xe5\x5c\x82\x6b\xf2\x52\xbf\x15\x74\xc3\xe0\x08\x9c\x0b\xa5\x7e\x9f\xf0\x6f\x93\x90\x10\x7a\x22\x71\x86\xa4\x28\x75\xd8\x19\x2d\x39\x85\x27\x36\x2b\xbf\x20\x22\x23\x7e\xf6\xc4\xbf\xad\xc6\x01\x91\x46\x53\x29\x8b\xb5\x55\x39\x34\xcf\xc5\xe4\x7d\x1f\x26\xb2\xed\xba\x43\x9b\xb8\xc2\xf3\x3b\x60\xc3\x09\x84\x46\x74\x6c\x68\x04\x21\x27\xd6\xc9\x61\x3a\x14\xac\x1f\x70\xab\xf2\xe7\xda\xc5\xe4\x1a\xae\xb3\x2b\xa8\x77\x88\x94\xd4\x8f\x11\xb2\xdb\x34\x8a\x45\x9f\xe9\x8f\x69\x12\x07\x34\x83\x76\x4c\xb4\xc2\x64\xb7\x28\xc2\xf7\x28\x15\x70\x34\x95\xb7\x16\x9a\xad\x1a\xba\x21\x9e\xd0\x3f\xe7\x9d\x86\xcd\xd4\x8c\xe8\xa0\xb9\x24\x50\x30\x79\xcf\x81\xc9\xb2\xaa\x62\xea\xda\x97\x4e\xdf\x6a\x70\xc9\xa3\xa7\x1d\x5c\x86\xfd\xc3\xae\x7a\xaf\x3a\x7c\x44\xf4\x2f\x6d\xe5\x8e\xef\xa8\xa0\x4c\x8f\xdb\xa9\xc5\xa7\x54\x8c\xf1\x25\x38\x23\xc7\xff\x8a\x46\x3c\xe1\x9f\xe3\x47\x8e\x37\xba\x40\x86\x35\x9d\xec\xdd\xd4\x38\x1c\xfd\x27\x25\xbc\xc1\x95\x33\x61\x92\x4f\x82\x0a\x70\xc1\x27\x6c\xb0\x5c\x95\x88\x28\x8a\x93\x16\x5f\x4b\x28\x7c\x35\x5b\x0b\x99\x13\x71\x50\x5d\x56\x7d\xa0\x3a\xb3\xb8\x28\xf3\x1b\xfe\x81\x64\x1d\xc9\x52\xde\x76\x3a\x19\x66\x52\xad\xdb\x56\x20\x0c\x7e\x4b\x9f\x3c\x1c\x98\xe6\xb9\x07\x58\x24\x28\x47\x70\x25\xbc\xdf\x3a\x0f\xc2\xca\xc7\x1b\x94\xdf\x79\xf2\x1e\x5d\x1c\x5e\xfb\xeb\x10\x46\x1b\xc1\xb5\x43\x64\xf1\xe1\xfb\x21\xfe\xc5\x06\x6a\x94\x0d\x15\x85\xb9\x13\x31\x68\x34\x8c\x87\x6d\xb3\x7a\x78\x3f\x7e\xf5\x21\x1d\xa7\x7b\x12\x22\x34\x2c\x13\x95\x77\x2e\x7e\xd7\x67\x00\xf8\x6b\x30\xc1\x87\x22\x07\x94\xc6\xdb\x3f\xc5\xaf\x4a\x68\x1b\x49\x48\xe4\xdf\x9d\x2e\x23\x09\x4c\x1c\xb7\xa7\x81\xd3\x27\x9a\x4b\xde\xde\xf8\x5d\xed\xbf\x10\x64\x4a\xc6\xf5\x79\x83\x9a\x08\xd3\xfc\xbb\x46\xeb\xfe\xfb\x87\xe4\x23\xa2\x8d\x00\x82\x20\x48\xe3\xcb\xe8\x5e\xc8\xce\xfa\x6d\x1d\x6e\x50\x80\x13\x0e\xa0\xd1\x65\x9b\x39\x0d\xa9\xbf\xd6\x87\x1a\x26\xf7\xd2\x84\xcd\x1c\x34\xe7\xdf\xdd\x88\x01\x85\xa3\xf6\x7f\xe3\x83\xac\xfb\xa7\xd6\x7c\xf8\xfc\xc2\xc5\xc0\x65\x41\xfe\x37\x2e\x56\x36\x9f\x00\x84\xbd\x26\xf8\xcf\x36\x35\x8d\x4b\x6d\xc3\xf9\x8d\x45\x78\x4a\xc8\xeb\x78\x55\x8f\xd3\x76\x3d\xc7\xdf\xaf\xdb\xf9\xd7\x86\x99\x1f\x02\x9b\xfb\xd4\xc4\xd7\x7b\x4a\xd8\x13\x93\xde\x77\xf2\xbd\xa5\x6f\xdc\x0b\xfc\x91\xd3\x47\x9e\x6d\xe4\xe3\x9a\x3e\x88\xd6\xde\x69\x3d\xc2\xb3\x5f\xe3\xf1\x02\xe2\x2a\x38\xe1\x86\x3e\x11\x54\x98\xbf\xa4\x0b\x7e\xac\x42\x7b\xab\x38\x1d\x3d\x75\xf2\x88\x85\xfc\x94\xe4\x6d\xdd\x37\x9c\xe8\x7a\xce\xb3\x1b\xfe\x96\xa7\xe1\x91\x82\x9e\x39\xe9\x1a\xe6\x5c\xd2\x18\x91\x75\x5b\x69\x2b\xcb\x7c\x17\x37\x36\x93\xb6\x3e\xb0\x15\x3f\x92\x9a\xec\x7a\xe1\x46\xe4\x86\x23\xa9\x6e\x3c\x3a\x18\x5e\xd2\xbc\xa9\x0f\x08\xf6\xfa\x5b\x78\x29\xd5\xbd\x38\x77\x01\xc7\xdc\xc0\xf3\x22\xa4\x14\xd4\x19\xbb\xb2\xd8\x29\x3b\xd1\x1f\xe0\x25\xcc\xca\x0c\x17\xa5\xb9\xa8\x0e\xbd\x72\xb5\xf1\x9b\x97\x69\xf0\x2a\x36\x6e\x47\xb0\x8f\xa8\x01\x66\x9e\x69\x83\x17\x4b\xba\x0e\xd5\xf5\xbd\xdd\x80\x9b\xa6\x8e\xbe\xfc\xb7\x7f\xe3\xd8\xfb\xc4\x21\xfc\xfb\xbf\x9b\x57\x8f\xbf\x12\xe2\x96\x31\x6e\xce\x51\xe3\xf6\xd9\x1f\xc5\x1e\x56\x97\x51\x15\x4a\xfb\x73\x52\x8b\x5d\x85\xd9\x5c\x99\xf5\x58\xc1\x22\xcf\xbf\x50\x7b\xf7\xce\xff\x09\x00\x00\xff\xff\x95\xe4\xa5\x8f\x90\xb3\x00\x00") +var _confLocaleLocale_nlNlIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\xbd\x6b\x8e\x1c\x47\x92\x27\xfe\x3d\x4f\xe1\x62\x83\x7f\x92\x40\x55\x72\xa4\x9e\x3f\x76\x20\x28\xa9\x25\x59\x14\xc9\x11\x1f\xb5\x2c\x52\xc2\xb6\x40\xa4\x22\x33\xbc\x32\x83\x19\x19\x91\x1d\x8f\x2c\x15\x07\x73\x83\x3d\xc0\xde\x61\xae\xb0\xdf\xfa\x26\x7b\x92\xb5\x9f\x99\xf9\x2b\x22\xaa\xc8\xee\xc1\x62\x05\x88\x95\xe1\xef\x87\xb9\xb9\xbd\x3d\x3b\x1c\x96\xb9\x6d\xd7\x8b\x67\xb6\x32\xd6\x56\xc7\xba\xcf\x8b\x8d\x35\x9f\x6d\x79\xb9\xb1\xdb\xba\xed\xac\x79\x5e\x74\xa6\xb5\xcd\xb1\x58\x5b\xb3\xa1\xb2\xdb\xc6\x1e\xa9\x74\x51\x99\xe7\xf5\x6c\xb6\xad\xf7\x76\xf1\xa2\x2f\xda\x59\x9e\xb5\xdb\x55\x9d\x35\xf9\xe2\xcc\xfd\x9a\xd9\x3f\x0e\x65\xdd\xd8\xc5\x2f\xb6\xd9\xd9\xaa\xb2\xd5\x6c\x6b\xcb\xc3\xe2\x05\xfd\x33\x6b\x8b\x4d\xb5\x2c\xaa\xc5\xcb\xaa\xac\x37\x1b\xca\xe2\x84\xba\xef\x16\x8f\x2f\xf7\xb6\xcc\x5d\x4a\x7f\x58\x3c\xce\x2a\x4d\x69\xec\xa6\xa0\x41\x35\x8b\x77\xfc\xa3\xb1\xb6\x99\x5d\xd9\x55\x5b\x74\x76\xf1\xab\xfc\x9d\x1d\x6d\xd3\x16\x75\x85\x4e\xdb\xc2\xce\x0e\xd9\xc6\x2e\xce\xb3\x4d\x51\x65\xb3\xce\xee\x0f\x65\x46\x65\x2f\x3e\x65\xab\xb2\xae\xab\x59\x99\x55\x9b\x1e\x25\xde\x67\x59\x39\x5b\x37\x96\x72\x97\x95\xbd\x5a\x3c\xe5\x9f\xf3\xf9\x7c\xd6\xd3\xec\x97\x87\xa6\xbe\x2c\x4a\xbb\xcc\xaa\x7c\xb9\xc7\x94\x9e\xdb\x55\xd3\x17\x3b\xea\x83\xb3\x6c\x69\x68\x51\xf6\x18\x0f\x46\x6d\x73\x9a\xda\x32\x6b\x31\xf4\x8d\xc5\xe0\x4d\x56\xb6\x33\x6e\xab\xca\xf6\x71\xf5\x2a\xcb\xf6\x33\xbb\xcf\x8a\x72\xf1\xec\x14\x7f\x68\xc4\x6d\x7b\x55\xd3\x42\xfe\x9a\xad\xb7\x5d\x77\x55\xd3\x6f\x9a\xf9\xb2\xbb\x3e\xf0\x52\x16\x97\xc5\x3a\xeb\x68\x6a\xeb\xec\xd0\xad\xb7\xd9\xe2\xe9\xe3\xf3\xf7\x4f\x5f\x3c\x9e\x51\xa1\x43\x4d\x6b\x50\x37\xd7\xb4\x40\xfa\x93\xca\xd5\xcd\x26\xab\x8a\xcf\x54\x87\x96\xe5\x2d\x7f\xb4\xdc\xc0\xbe\x68\x9a\xba\x59\x5c\x1c\x0a\xbb\xb1\xe5\x8c\xe6\xbd\x44\x13\x8b\x37\x85\xed\xaf\xac\x69\xa2\x36\x90\xb7\x2f\x36\x0d\x56\x4f\xb3\xe5\x53\xf3\x2e\xeb\x66\xe7\x32\x8e\xf4\xdb\xf8\x01\x5c\x73\x3e\x8d\xc1\x65\xd7\xf1\x08\xb2\x8a\x56\x9f\x73\x9f\xd8\x2d\x2d\x5f\x9c\xdb\xce\xb2\x7c\x4f\xeb\x78\xc8\x2a\x5b\x2e\x1e\xe3\x37\x7e\xd2\x48\xb3\xf5\xba\xee\xab\x6e\xd9\xda\xae\x2b\xaa\x0d\xad\xb3\x24\x14\x15\x41\x47\x59\x52\x12\xc0\xc7\x65\xbe\x8c\x53\xaf\xeb\xde\x6f\xe7\xe2\xc3\x95\xd1\xed\x93\x74\x5f\x85\x32\x92\xb6\x30\x87\x76\x79\x69\x6d\x2e\xb3\x68\xf1\x73\x76\xe8\xcb\x92\x56\xec\xaf\xbd\x6d\xbb\x76\x71\x4e\x5f\xa7\x59\x56\x1d\x9b\x0c\x55\x8a\xb6\xa5\xf4\xc5\xcf\x57\x94\x89\xb9\xd0\x76\x55\x6b\xcc\xa3\xaa\xfa\x12\x80\x32\xfb\xad\xb5\x59\xb3\xde\x7e\x9c\xc9\xdf\xc5\x5f\x6a\x4b\xc7\x04\x30\x17\x6d\xe4\xdb\x43\x5b\x66\x1b\x02\xdb\xac\x6b\x19\x7e\x02\xec\x48\x17\x8b\xf3\xa6\x5e\x51\x83\xfb\xd9\xba\xce\xed\xe2\x29\xfd\x43\x4d\x63\xf4\x59\x59\x7e\x9c\xe9\x0f\x5e\x04\xfa\xcb\xab\xde\x15\x1d\x4d\x3e\x4a\xa1\x1f\x87\x03\x01\xf0\x91\x60\xcd\xe4\x96\x70\x41\x83\xb3\xbf\xe3\x0d\x39\x50\x6e\xd3\xd1\x8c\xf2\x7a\x4d\xbd\x2e\x71\x86\x69\x18\x2f\x2f\x0d\xad\xd9\xbd\x86\xe0\xa4\xaf\x2a\x5a\x26\x42\x08\x9b\x16\xcb\x56\x50\x0b\x67\x5c\xf6\xc4\x1c\x4a\x9b\xb5\x00\xa5\x2c\x37\x3f\x64\x86\x5a\xda\xd8\x6e\x71\x67\xb9\xa2\x93\xb7\xbb\x63\x08\x9b\x5c\x2e\xee\xdc\x6d\xef\x3c\x7a\xde\x53\x35\x5a\x6d\xdb\xfe\xf0\x30\x7b\x64\xd6\x19\xe5\xd0\x82\x5e\x9b\x95\x25\xd8\xb2\xe8\xcb\x10\xb0\xd3\x6e\x98\xac\xba\xee\xb6\xe8\x90\x90\x10\xfd\x68\x0d\xce\xf8\x37\x33\x6c\x04\x21\x80\x65\xbe\x12\xa4\xc6\xc3\xe1\xc4\xc6\xb6\xe6\xf5\xf5\xc5\x7f\x7b\x75\x62\xce\x09\xa9\x6d\x1a\xcb\xbf\xe9\x1f\x2a\xff\x67\x02\x39\xf3\xbe\x38\x7b\x32\x9f\x51\x4d\x59\x9a\xb3\xac\xcb\x56\x18\x77\x02\x04\xc8\xc6\x19\x74\xb9\xa7\xf8\x9a\x01\x4d\x2e\x5e\xd0\x3f\x83\xdd\x91\x93\x9d\x1e\x66\x39\xcb\xd4\x0e\x23\x01\xdf\x0b\x97\xa4\x54\x5d\x59\x6d\xc2\xbc\xac\xaa\xfa\xec\x09\x21\x16\x42\x5e\x74\xdc\x6c\x67\xfa\xee\xf2\x5f\x96\x34\x14\xdb\x64\xe5\x72\x5d\x98\x5d\xd6\x64\x3b\xc2\x87\x04\xb7\xb2\x77\x3c\xcb\xf9\xac\x6d\x4b\x42\x53\x04\x0d\x17\x17\xaf\x4e\xe9\x47\xdf\xd2\x40\xba\x2d\xe1\xc1\x7c\xd6\xfe\xb5\xc4\x2a\x69\x5f\xef\xb7\xd6\xe0\x28\x18\xe4\x9b\xfa\x72\xb8\x28\x26\xd7\x41\xce\x67\xb6\x69\x96\x84\x40\xbb\x6b\xac\x30\x37\x77\x53\x59\x69\x8c\xe0\xbd\xaa\x3b\xda\x3f\xc3\xb5\xa4\x81\xa2\x3a\x66\x65\x91\xd3\x3a\xbb\x55\x48\x6b\x22\xc9\xe4\x35\x6d\x18\xea\x12\x78\xd6\x57\xd8\xf6\x26\x5b\x63\x9a\xe6\xce\xfc\x0e\x6d\x7f\x6e\xee\x9c\xde\x99\xcf\xaa\x7a\x29\x08\x02\x58\x39\x27\x9c\x41\xc7\x60\x29\x57\x44\x23\xc8\xee\xbf\x03\x68\x64\x18\x9a\x6f\xe2\x7c\x73\x55\x74\x5b\xba\x72\x0c\x23\x7e\x40\x54\x56\x19\x6e\xd2\x28\x86\x89\x67\xed\x90\x91\x6e\x28\xe3\x23\xe3\x3e\xc7\xb3\x9d\xb9\x7d\x12\x90\x7a\x5f\x5b\x94\xe5\x4e\x4a\xdc\x09\xd5\x00\xba\x70\x19\xf3\x82\x3c\x3e\x1c\x4a\xc1\xf0\x0c\x17\x2e\xdd\xed\xd8\x39\xa3\x02\xb3\x2d\xe8\x6c\x7e\x4a\xb0\x29\x8a\xe3\x4c\x6c\x9a\x9a\x0e\x6f\x49\xb8\x8c\x96\xec\x1b\x46\x26\xb2\x5f\xd1\xa5\xd0\x1a\x5a\x6e\x3a\x3a\x39\x1d\x8e\xb5\xa0\x78\x5f\xce\xf5\xf4\xb8\xe4\xf5\xda\xd7\x4a\x06\x34\x71\x75\x4c\x5a\xe8\x80\xdc\x7e\xb6\x51\x3b\x84\x30\x88\x4e\x28\x19\x07\x12\x66\x58\xf2\xa9\xf8\x50\x74\xc7\xda\x36\xb6\xca\x41\x45\x24\x27\xc4\x95\x71\xbd\x9e\xa1\x39\x5f\xc6\xec\x6b\x82\xed\xae\xb6\x34\xcb\x8d\xd9\xda\xd5\x8a\x3a\xed\xb0\x9f\x54\x28\x1d\x53\x3c\x06\x5c\xc6\xa8\xc8\x38\x60\xd7\x83\xf6\x30\x01\x8d\xd1\x35\x5b\x2d\xce\x88\x74\x29\xdc\x97\xef\x9c\x9a\xa4\x6b\xe8\xb2\xa3\x89\x1d\xcb\xda\xe6\x34\x1b\x74\x75\x71\xf1\xc2\xec\x40\x31\x98\x0f\xef\x5e\xb5\x74\xbe\xb6\xcb\x43\xdd\x74\x74\xbe\x5e\x9c\x1e\xe8\xe0\x75\x3e\xc9\xb5\xf4\xa6\xdf\xef\x69\xf8\xc7\x0c\x0b\x64\xb8\x0c\x0d\xd0\x9a\xfe\x0a\x8d\x9d\x82\xa4\xa2\x6c\x9d\x67\x77\x62\xb0\xab\x54\xa0\xa3\x7d\xb3\x1b\x53\xef\x5d\xaf\x97\x7d\xb5\xee\x50\x8f\xb2\x68\x1f\x88\x00\xcb\x76\xb6\xa4\x6b\x62\x46\xb4\xc1\x41\x46\xf1\xe2\xfd\xfb\x73\x1d\x86\x4f\xf4\xe0\x82\xe4\x4a\x06\x73\x95\x65\x0d\x4d\xaf\xc3\xa5\x47\x77\xf7\x7e\x9f\x01\xf5\x34\xa6\xec\x99\xaa\x22\x68\x07\xb0\xf5\x4d\x19\xc1\x20\x26\xec\x92\xbf\xb4\x4a\x18\xc7\x43\xfc\x73\xa1\x8b\x45\x75\x5a\xec\x05\xe5\xf1\x4f\x2c\x00\x43\x8c\x61\x8a\xc7\x01\x91\x5b\x85\xd9\xac\x3e\xe0\x5c\xfa\x43\xf3\x96\x3f\x69\xba\xe9\x51\xe1\xca\x5a\x44\x88\x26\x4f\xa2\xa6\x14\xc0\x9e\x16\x83\xf1\xf3\xc5\xeb\xf7\xe7\x06\xbf\x24\xed\xb2\xa9\xf7\x44\x67\x7e\x06\x3c\x36\x21\xc9\xcd\xef\x19\x37\x99\x69\xfe\x89\x79\xf7\xd3\x53\xf3\xff\xff\xf9\xbb\xef\xe6\x06\x33\xdf\x65\x18\xf1\x15\xe6\x67\x41\x37\x4b\xe1\x1c\x97\xcc\xe7\xe2\x53\x05\x24\x8a\x35\xbe\xf3\x86\xa0\xfb\xce\x0f\x9c\xfd\x5f\xed\x1f\x19\x91\x9e\x76\xbe\xae\xf7\x8f\x0c\xdd\x67\x7b\xda\xed\xf9\x0c\x59\x04\xf8\x7c\x42\xdc\x68\x8c\x95\x09\x3d\x1c\x9e\x13\x2d\x3c\x75\xa1\x38\xb2\x78\xb9\xae\xab\xcb\xa2\xa1\xa9\x11\xc8\x1c\x71\x79\x07\x6c\xa7\x4b\xde\x72\x3b\x4b\x42\x55\xc5\xe5\x75\x28\x27\x9d\x72\xaa\x6c\x3b\xc1\x38\x43\xe8\x52\x17\x56\x57\xfb\x42\xc0\x96\xa6\x9d\x61\xb0\x04\xa2\x92\xdd\x9e\x26\x0b\x5f\x5f\x5e\xe2\x2a\x97\x3b\xe8\xed\xe5\xa5\x29\xf9\x06\xc3\x45\x84\x1d\x72\x30\x9c\x94\x23\xa8\x3d\x10\xb1\x7f\x21\x99\xe6\xe9\xd9\x1b\x86\x79\xe0\xd8\x86\x2a\xe2\x10\x70\x03\x27\xb8\x15\x2c\x21\x5a\x3a\xcf\x15\xa0\x47\x81\xa8\xac\x77\x44\xc3\x9b\x0c\x24\xc2\x8a\xda\xa3\x13\xe2\xee\x04\x82\xf5\x23\x5d\x30\x74\xb3\xea\x0f\x37\x6c\xf4\x10\x46\x33\x2c\x3e\x18\x91\xaf\x1c\x66\xbf\x6a\x6a\x46\x2d\xd4\x8c\x0e\x4b\x8a\x78\xf4\x98\xe3\x52\x0e\x1b\x49\x3f\xff\xf6\xbf\x88\x27\x22\x62\x88\xa0\x84\xa1\x85\x67\x41\x87\x30\x0f\xc3\x4d\xae\x30\xd7\x3b\x78\xb2\x78\x37\xa9\xcb\xc9\x0a\x83\x41\x4f\x54\x93\x91\x5a\xbd\xe9\x3c\x7a\xd4\x1b\xaf\x35\xfb\x0c\x54\xe8\x8c\xae\x13\xb4\xed\x98\x8c\x67\xfc\x69\x9e\xca\xe7\x20\x57\x3b\x7d\x27\xc4\x96\xe1\x2b\x9e\x38\x05\xa3\xd9\x80\x78\x03\x28\xa7\x63\x5a\x5e\x9e\xc6\xc3\x9d\xcf\x94\x42\x5b\x2a\x43\xb8\x3c\x16\xc4\x7e\xb9\xe1\x13\xb0\x59\x80\x36\xb6\x15\x6c\x14\xae\x4f\xc2\x8d\x07\xe6\xe7\xee\xb5\xc0\x88\x9f\x0b\xbe\x86\x26\xdb\xd1\x71\x3d\x96\xf9\x02\x36\x89\xd9\x4c\xae\x20\x37\x7b\xdf\xe2\xca\xee\x8a\x4f\xb4\x00\x27\xf4\xeb\x33\x08\xf2\x50\x46\x97\x8d\xea\x53\x2b\x45\xf5\x30\x5e\x57\x5f\x1f\xc3\x99\x2b\xe3\xa2\xec\x84\x90\xa3\x1f\x08\xff\x00\x65\x56\x05\x21\x07\x22\xe6\xac\xf0\xdc\xb2\x0b\xbe\x1d\xdd\x05\x4c\x8c\xf7\xe1\xc4\xe4\xc9\x6d\x48\x75\x5f\x9e\x2d\xbe\x35\xbb\xa6\xf8\xb4\x21\x02\xa9\xef\xe8\xfe\xea\x0a\x02\xe2\xb4\x21\xba\x09\xb7\x5d\x18\x49\xa0\xf8\xdd\x19\xa5\xe9\x81\xdf\x22\x30\x6e\xb5\x4f\x2d\x3a\xc5\x9f\x0e\x48\x9f\x08\xf5\x28\xc6\x09\x79\xc2\xa0\x5a\xbe\x6d\x7c\x29\xa9\x2f\x5c\xae\xd0\x4d\xca\xeb\x2a\x77\xb2\xdc\xd4\xca\xa7\xf1\x1a\x37\x7c\x6f\x13\xbb\xde\x76\x4b\xba\xe4\x97\x97\x40\x7d\xf9\xe2\x39\x5f\x81\xad\x2e\x21\xed\x65\xbf\xeb\xbe\x37\xf7\xa8\xc4\x3d\x43\x88\x95\x78\xc9\xbc\x36\x77\x8f\x4a\xe1\xfe\x19\x48\x6e\x49\xe7\xb1\x28\x01\xaa\x60\xe9\x58\x34\x40\xa7\xb6\xb0\x39\xea\xd3\x22\xd4\x38\xc7\xb4\x28\x3d\x33\x30\x4c\x42\x2b\x51\x4b\x0b\x5f\x5f\x55\x7c\x54\x69\x07\x08\x51\x15\xeb\xe2\x6f\xff\x01\xc4\x43\xfb\xcc\x40\x2e\x8d\xe1\x82\xbf\x4b\x48\x89\xc7\x84\xbd\xaa\x57\x7d\x41\xfc\xbe\x64\xcf\x67\x8e\xe0\x25\x72\x57\xc1\x01\x23\xc9\xa7\x18\x0c\x41\x08\xdc\xd0\xba\x6e\x40\xcb\x7c\x8f\xe9\xb8\x16\x26\xe9\x38\x25\xe3\x0e\x34\x4c\xfa\x33\xaa\xeb\x89\x2b\xac\x05\x01\x0a\x71\x99\x67\x8c\x04\xc6\xd4\x98\xaf\x4f\x89\x5b\x62\xc6\x8a\x4d\xc8\xa3\xb6\x5a\x73\xfa\x88\xfe\x9d\xb5\xd9\xd1\xca\x3d\xb3\x71\xfb\xf2\xb3\xd0\x38\x92\xd8\x0b\x1c\x73\x4b\x35\x78\xd7\xac\x4a\x66\x91\x9c\x0c\x2c\x05\x27\x9c\xde\xb0\x0e\x1b\x9c\xf9\x8d\x36\x20\xa0\xd2\xf6\x6b\xba\x6f\xda\xc5\xaf\xb6\xdc\xd5\xfb\x6f\xcc\xaf\xc5\x27\xa9\x70\x24\x80\xee\x37\x39\xd6\xd6\xf4\xb2\x97\x4c\xfe\x09\xa5\xb2\xb1\xbb\xfa\x33\xce\x13\xdd\x77\x25\xd8\xd2\xcf\x85\x5c\x64\x20\x26\x71\x68\x89\x43\xff\x0d\xe2\xac\x8f\xb3\x5e\xc8\xed\xba\xcc\x47\xfc\x1c\xd0\xb6\x4d\xc5\x34\xae\x60\x74\x28\x5a\xe2\x2b\xd6\xdb\xa5\x17\x89\x61\xbd\x3a\xfb\x47\xb7\xf8\x95\x38\x76\x60\x35\x2a\x25\x08\x43\x33\x66\xfb\x6b\xde\xde\x76\xf1\x1a\x33\x89\x09\x6d\x3a\x61\xc4\xa3\xaf\x6a\x2c\xeb\xd1\x6a\xa9\xe7\x36\xb7\x90\x88\xa5\x25\xa9\x11\xe2\x06\xb4\x8d\x44\x8e\x42\x39\x22\xeb\xd1\x4c\xfd\x98\x31\x8e\x64\x19\xde\x13\x46\x7b\xd8\x60\x15\x5c\xcc\x69\x97\x58\x26\x22\x3d\xbe\xac\x40\xb9\x26\xdd\xcd\x7e\x53\xf9\xde\x47\x91\x57\x24\xec\x05\xe5\x12\x6e\xda\x7e\x8c\x64\x6a\x4b\xc5\x33\x8b\xd7\x59\xb6\xc3\xf6\x52\x83\x0e\xdd\x11\x94\x04\x2a\x66\x6b\x0f\xa0\x74\xf6\xed\x66\xf1\x82\xf7\xae\x27\xd4\x2b\xb8\x52\x8a\xff\x68\x5e\x43\xa4\xd6\x9b\xaa\x47\xcd\x6f\x66\x6d\xbd\x2e\xb2\x72\xf9\xf7\xb4\xf0\x73\x7d\x38\xd0\x56\x54\xfd\x37\x83\x6b\x54\xa4\x7d\xc4\xc3\x2d\x2e\xe8\x20\x5d\x9f\x24\x34\x14\x9d\x11\x3a\x3c\x2c\x07\xc5\xfd\x94\xcf\xcd\x1b\x6b\xf7\x00\xfd\x8e\x38\x54\x90\xc1\x7b\x39\x41\x1e\xbb\x2a\x07\x40\x3c\x0d\xa4\x93\xc3\x4b\x1e\x83\x04\x52\xd4\xae\x56\xf6\x08\x69\xd1\x86\x91\x51\x56\x25\x5d\x1f\x02\x6d\x38\x1a\x05\xad\xdd\xde\xee\x57\x68\x8d\xe8\xad\x0a\x4c\x6d\x4e\x9b\xfc\x69\x46\x17\xef\x86\x4e\xfe\x04\xe6\x06\x82\xda\x58\xf0\x43\x28\x63\x6f\x2f\xf3\xa3\x93\xc5\x12\x1e\xb9\x62\x69\xb1\xdb\xb8\xaa\xa6\xf3\x39\xd8\x8f\xb9\xbb\x15\x84\x20\x61\x82\xb3\xb5\x55\xe7\xd6\xf5\x19\xdf\x3e\x7e\xa6\xad\x75\x93\xa2\x19\x75\x7d\x4f\xfd\x32\x57\xf2\xc3\xea\xd1\xdd\xf6\x87\x87\xab\x47\x27\xe6\x89\x96\x36\xdc\xfe\xb1\xc9\xb2\x0d\xf0\x30\x2e\xe5\xbb\xd4\x6f\x03\x4c\xbe\x17\x00\x0d\x0b\xd6\x41\x12\x59\x76\x75\x2d\x37\x32\x93\xba\x02\xd2\x0e\x10\x3d\xf9\x1b\x20\x91\x56\x92\x87\x5a\x16\xfb\xa2\x1b\x00\x42\xaf\xa8\x04\x6c\x58\x05\xd8\xc9\x0c\xe1\x20\x0c\x95\x21\xcb\x0d\x6c\x63\x89\x9e\x53\x59\x9a\x80\x1c\xf5\xc2\x23\xc2\x3c\xe7\x86\xd7\xd7\xe4\x40\xde\x84\xf9\xfa\xce\xc9\xdd\x68\x10\x34\xde\x0d\x63\x65\xd7\x18\x71\x79\x59\xbb\x24\x16\x50\x16\xd4\xe6\x02\x2e\x4f\x2c\x68\x22\x5c\x3b\x6e\x4c\x72\x99\xb9\x55\xcd\x15\x52\x84\x2b\xb9\xef\x57\xf2\xc1\xdc\x3c\x26\x36\x8c\x36\xaa\xde\xc8\x05\x18\x43\x9c\xb4\x44\xa0\x7c\x04\x0d\x4d\xa8\x92\x90\x5d\xcf\x2d\x57\x22\xb9\xf5\x53\xbc\x2a\xca\x0e\x52\x1a\x2a\xb3\x2b\x8b\x1d\xa1\xdc\x4a\x59\x40\xbd\x50\x33\x10\xc8\x66\x57\xd5\x87\xb9\xac\xa8\x0e\xfc\x67\x94\x66\xd1\x85\xec\x57\xba\x36\x3c\x2c\xf4\xc7\x82\xc7\x8e\xef\x58\xe6\x8a\x1c\xcb\xc7\x37\x7a\xcb\xa7\xbd\xb3\xcc\x86\xc6\xf3\x74\x17\x18\x50\x3d\x0e\x77\x8e\x01\xc7\xa7\x7e\x3e\xe3\x91\x60\x40\xdd\xf4\x78\x02\xcd\x62\xb8\x94\x0c\xeb\x3e\x8d\x8b\x38\xb6\xb2\x7d\xa0\x83\x22\x30\x6d\x58\x1d\xd1\xc6\x07\xe7\x1d\xd7\x48\x5a\xf1\xd7\x1e\xcb\x66\x1d\x1c\x5d\x25\xe0\x8f\x2c\x8c\x9d\xda\x2d\x6b\x48\x61\x69\xd9\x95\x48\x64\x09\x01\x6e\xc0\xf9\xa0\x2f\xc7\xa9\xde\x32\xfe\xfa\x20\x28\x16\x42\x52\x02\x58\xdc\xae\x38\x07\xbe\x05\x3a\x18\xcb\x76\x0b\xf1\xc1\x19\x84\x45\xd5\xa6\x13\x62\x26\x6d\x85\xa5\x28\xa0\x2b\x31\x7f\xe2\x26\xda\x20\x73\xe4\x5b\x77\x4e\x88\x1e\x6b\xf4\x71\xa6\x5b\x69\xfd\xe9\x3a\x17\xd1\xaf\x4b\x87\x04\xb7\xf1\xc7\xcc\x97\x16\xa2\x90\xa9\xc6\x6b\x29\xa2\x48\x2e\xcb\xb1\xa9\xed\xf4\x22\x73\x41\x97\x16\x6e\x0e\x47\x1b\xbc\xd3\x04\xa3\x09\x27\x86\xa8\x05\x22\x11\x6d\x28\xaa\x1c\xb0\xa6\x13\xdc\x1a\xd1\x59\xd1\x74\xea\x3c\xa3\xf9\x5c\xdb\x76\xf1\xaf\xd9\xac\xaa\x17\x84\xe2\x67\x94\xc8\x0c\x73\x56\xa1\x57\x68\x04\x7e\x03\x1b\xff\x71\xf6\x81\xa8\xab\x37\x13\x24\x33\x2e\x43\x4e\x8f\x89\x35\xce\x61\xe9\xc2\x22\x02\xdc\xd9\xf9\x04\x61\xfd\xce\x46\xfa\x9e\x01\x39\x7d\x71\xf1\xe2\xbd\xb0\xe3\x17\x2f\x4c\x5b\x5a\xc2\x21\xa5\xb4\xfd\xa2\xeb\x0e\xed\x87\xa6\x64\x91\xd0\xc5\x29\x64\x37\xe7\xd9\x35\xa8\x58\x24\xbe\x21\xaa\xab\xa6\x3e\x71\xd8\x91\xf5\xde\x66\x7b\x1e\x23\x7e\x48\x03\x8f\xe9\xd2\xe6\x24\xfa\x41\x43\xf6\x72\xc5\x19\x93\xed\xcf\x22\x3d\x55\xb8\xe2\x66\x9e\xf7\xb2\xac\x4f\x82\x80\x84\x01\x98\x45\x59\x02\x25\x59\x79\x20\x36\x11\x14\x91\x16\x62\xc0\xc2\xd9\xe4\xf3\x41\x60\x52\x5e\x66\x55\xbf\xa7\xe9\xda\x1d\x4e\x00\x8a\xde\x3f\x5d\x3e\xf0\xf0\x36\x6e\x28\x27\x6c\xf0\xe5\xc6\x4e\x42\x53\xd4\xec\xfd\xf9\x03\x73\xc0\xc5\x35\x68\xb6\x2d\x3e\xdb\xb8\x31\x96\xa1\x4a\x26\x63\x37\x22\x8c\x98\x6e\x1d\x14\xf3\x27\xe3\x6e\x7c\x30\xe8\x74\x67\x1d\x73\x5f\xfb\xec\x8f\xa4\x0e\xe1\x4e\x4a\xba\xb5\x8a\x60\x3a\x29\xef\x30\x5a\x34\x35\x7f\x3a\x08\x70\xe6\x33\x08\xe5\x6e\x2c\x4a\x5b\x0c\xfe\x63\x5d\xf6\xb9\x1b\xc0\xef\x66\xdf\xb7\x9d\xd0\x2b\x84\x18\xda\x7e\x45\xb7\x25\xc0\xe1\xde\xdd\xf6\xde\xfc\x77\x22\x7d\x09\x67\x5f\x55\x5a\xfa\x2d\x5d\x28\x3b\xbe\x8f\x2e\xeb\xbe\xfb\xde\x29\x1c\x89\xbb\x56\x1e\x63\xa1\xe2\x00\x43\x94\xb8\xb2\x65\x35\x58\xf6\x04\xd1\x04\xd6\x23\xa2\x2c\x30\xca\xa0\xca\x8c\x31\x0e\x35\x65\xab\x41\x5b\x5e\x71\xba\x5c\xd1\xf7\xb2\x03\x67\x3c\xa4\xcc\x69\x01\x68\x51\x0b\x2f\x4d\x14\x2d\xda\x72\x58\x6b\x78\x1c\x27\xea\x11\x3d\x34\xaa\x16\xa9\x4d\x6f\xaa\xd6\xd1\x21\x1a\xd5\xf3\x27\x6b\xa2\x82\xec\x34\x17\xa6\xf9\xe5\x8b\xc1\x5d\x36\x28\x5d\x10\xfe\xde\x40\x32\xea\xba\x89\xda\x66\xe8\x31\x5a\xc2\x06\xb0\x9a\x87\x85\xf3\xdb\x11\x36\x6f\xcc\xda\x44\xdb\x30\xe0\x26\x21\x0f\xa2\x16\x1b\xd6\x6c\x47\xfc\x28\x0f\xe4\x43\x42\x84\x7c\x62\x69\x72\x22\x99\x57\xcd\xc4\xc6\x82\xed\xcc\x27\xda\x22\x98\x03\x4e\xbe\xb1\x31\x5b\x6c\x2c\x13\x85\xb7\x35\xe2\xef\x88\xc9\x26\xe2\xb9\x85\x46\x3c\x73\x6c\xff\xa0\x52\xb4\x24\x1b\x36\x6f\x08\x5c\x31\xcb\x19\x33\x01\xee\xf9\xac\xcc\xda\x0e\x4c\x96\x0c\x18\x37\x67\x28\xc9\xd2\x7d\x08\x2b\x69\x47\x9b\x4e\x29\x85\xab\xe2\x13\x24\x85\x15\xd6\x13\x52\x61\x5b\xc1\xc0\x82\x46\x6b\xee\xbb\x39\x3d\x10\x16\x81\x85\x1b\xd9\x7e\x6e\x3e\x18\x45\x67\x8d\x88\x3a\x40\x79\x0d\x2a\x10\x5d\xe3\x2f\x74\x4f\x62\x40\x03\xb1\xb3\xd7\x8e\xca\xb8\xb2\x11\x1f\x5d\xb0\xa0\x91\xa6\x21\x64\x02\x6b\x20\xf4\xde\x90\x71\xd2\x49\xfc\xdb\x7f\xd0\x38\xc1\xe9\x83\x01\x06\x8b\xc2\xc9\xd7\xbe\x5d\xd1\xa5\x64\x5e\x42\x51\x75\x4d\x5d\xf2\xdc\x40\x27\x26\x8d\x9e\x10\x96\xa3\xcd\xa2\xc9\x9b\x0d\xd3\x60\x0d\x53\x16\x34\x45\x30\xe7\x4c\xe9\x83\xaa\x39\x31\x9f\x69\x2d\x91\xcb\x7a\x67\xf0\xed\x90\x57\x12\x92\xa7\x5b\xc8\x49\x17\x22\x8b\x07\x42\xb7\xad\x08\x7d\xee\x1e\x67\x33\xa2\x9f\xca\x12\x1b\x21\x46\x0b\x1f\x02\x37\x29\xbb\xef\x88\x49\x5e\xb6\x9c\x26\x4e\x14\x2a\xbe\x23\xc0\xf4\x8b\xcd\x0c\x9a\xac\x78\xbc\x69\x34\x31\xe0\xa0\x9c\x35\xfa\x73\xed\x11\x14\x39\x0c\x16\xa2\x0e\xd1\x15\x6d\x88\xcd\x5b\xec\x14\x84\xfb\x60\xcd\x0e\xbc\xb1\x11\x23\x2e\xe4\xfa\xaa\x53\xad\x4b\x51\xed\x5a\xd1\x16\x54\xe3\xbe\x05\x0d\x0d\xe6\x78\x96\xe8\xfb\xe2\x79\xea\x1c\x2d\xd3\xe1\x31\x9b\xfe\x77\x4e\x31\x5a\x55\x56\x4b\xb0\x36\x0e\xdb\x41\xa7\xcd\x6d\x82\x25\xfe\x92\xee\x04\x1c\xb5\x4e\x39\x09\xd1\xdf\x88\xb8\xbb\xad\xf7\x7b\x00\x79\x10\xb2\xfa\x31\x24\x33\x15\x9b\x06\x19\x42\x32\xf1\x99\x58\x09\x2c\x57\x4d\x56\xad\xb7\xd1\xe9\x3c\xab\x09\x5e\x25\x35\x39\x97\x44\x8c\x61\xb0\x1f\x67\x62\x20\xb0\x54\x69\x3f\x41\x0e\xcb\xe9\x99\xd1\x10\xd1\x3d\x2d\x8e\x13\xe3\x43\x17\xe3\x2a\xac\xe9\x52\xac\xf7\xae\xde\xaf\xc5\xa7\xcf\xe0\x35\x7d\x2d\x51\x59\x25\x1a\x8e\x4f\x35\x51\x03\x75\x15\x19\xf8\xd4\x87\x59\xbc\xee\x8b\x44\x56\xc2\xe4\x6e\xd1\xc1\x9c\xc3\x56\xab\xac\x51\xb2\xb8\xe8\x6c\xd1\x11\x03\x0e\x35\x37\x2d\xcb\xe2\x17\xf0\x7f\x4d\x3b\x83\xaa\x92\x30\xdb\xe2\x82\x31\x5c\xa5\x25\x20\x30\x43\x09\x9a\x2f\x68\xcf\x39\xe3\x75\x90\xc7\xcd\x91\xca\x9e\x0d\x35\xab\x7c\xa7\xcb\x61\xd3\x42\x8c\xf1\x42\xd5\x03\x28\x8e\xa6\x12\xae\x8a\x87\x90\x2f\x5e\x30\xff\x94\x34\x43\xc5\x1a\x28\xbb\x5c\x73\x7c\xfc\xa1\x91\xe5\x1d\x60\x0e\xc0\xd9\xcd\x7c\x9c\x39\xcb\x9a\x73\x35\xab\x99\x92\x19\x2b\x42\x69\x17\x11\xc6\x68\x55\x86\x43\xd8\x0b\x7f\xe8\xca\xb0\x1d\x2d\xc9\xee\xd4\xa9\x25\xa0\x83\x14\x95\x64\x5d\xb5\x91\x36\x1d\x5a\x24\x08\xbd\xde\xc6\xf2\xae\xdc\x96\xb6\x63\xe2\x59\xa0\xca\xb3\x1d\x7d\x91\x2f\xe8\xff\xd9\xec\xd0\xaf\xa8\x35\x6f\x08\x24\xdb\x42\x5b\xed\xcc\x81\x9c\xc1\x97\x88\xee\xaf\x86\x7c\x66\xed\xca\x43\x5a\x49\x17\xb5\x3f\x01\xaa\xf7\x61\x84\x26\x0a\x21\x45\x11\xd8\x04\xd8\x9e\x81\x62\x26\xe0\x6d\x0a\x5a\x0e\xba\x6b\x44\xe0\xc9\x8c\x38\xa6\x5b\xc0\xd6\x03\x29\xb8\x4c\x8e\x45\x06\xb8\x53\x03\xb7\xa0\x2c\xcd\x79\xd5\x61\x1d\x23\x37\x26\xc1\x04\x21\x4a\x1c\x39\xa6\xd4\x87\x06\x71\x65\x2d\xab\xb6\x78\x55\x8b\xdd\x58\x7f\x80\x72\x66\x99\x6c\x15\x0b\xb6\x3f\x5d\xb1\xa1\xde\xa0\x80\xe7\xaa\x82\xb5\x14\x96\x40\x52\x8f\x75\x89\x8a\x1b\x1e\x3d\x5d\x90\x7a\xa0\xbc\xa1\xdb\x07\xfd\x81\x13\xce\x87\x31\x1f\x16\x71\x42\x96\xf7\xb0\xe4\x51\x0b\x9f\x2b\xc2\x41\x26\xbb\xbc\x24\xc2\xc3\x10\xea\xa1\xbb\xfb\xda\x6c\xeb\x2b\x45\x99\xb2\x90\x04\x82\x09\x4b\xc9\x52\x27\x82\xc2\xde\x12\x9e\x00\x96\xcc\xaa\xd4\xe4\x0a\x07\xc9\xeb\xad\x92\x03\xcf\x87\x98\xe0\xa9\xb3\xe1\xc4\x07\xb5\xe0\x54\x15\x6f\x22\x21\xc5\x55\xda\xbd\x25\xc0\xad\x18\xe9\x3b\x24\x43\x93\xad\xeb\x56\xc5\x9f\xd2\xd9\xcf\xb0\x9e\x88\x85\x2a\x52\x50\xd7\xdc\x8d\xc8\x0f\x43\x51\x4e\xb2\x3b\xe0\xe7\x88\xee\xd1\xa1\xf0\xf1\x5d\x12\x4f\xb1\x01\x13\xea\xf4\x8b\xaa\x1f\x95\xf3\x0f\x11\xc8\xe5\xca\x8a\x02\x8d\x0d\x67\xd2\xd9\x04\x2d\xc9\x73\x15\x65\x0d\xd6\x63\x05\x59\x63\xb1\x03\xc8\x9f\x04\x1a\xc0\xdb\x80\xc4\xa2\xc8\x64\x22\x1e\x76\x12\xd5\x93\x9c\x0e\x69\x79\x1a\x8c\x1c\x90\xc4\x6a\x25\xc1\xe5\x11\x1b\x5c\x97\x11\xcd\xf7\x82\x55\x16\x31\x99\xc7\x76\x87\x3e\x9f\xcd\xf6\xe2\xdc\x86\x19\xec\x65\x52\x48\x98\x6e\xf3\xc6\x5e\x19\xc7\x93\xcf\x26\x08\x67\xe9\xeb\x56\x6a\x79\x30\xfe\xa0\xb5\x48\xea\x84\xc9\xd3\xcc\xf9\xd6\xc9\x71\x57\xee\x98\xa6\xe8\xc5\xe4\xeb\xca\x01\x4a\x42\xc0\x8a\xd1\x2c\x2d\x94\x68\xf5\x95\x27\x67\xfc\x04\xe9\x84\xda\x55\x4e\x66\x32\xe3\xde\x78\x99\x9a\xc3\x70\x87\x86\x40\x08\x8a\xad\x18\xd5\x01\xb7\x0d\x8c\x34\x64\xf7\x54\x19\x2b\xb8\x4b\xb5\xe1\x89\x02\xf2\x48\x07\x54\x14\xc9\xdc\x70\x73\x4d\x78\x86\x3b\x70\xdf\x2a\xf9\x79\xe9\x28\x59\x58\xc8\xba\x41\x28\x02\x0f\xc2\x21\x41\xe3\x7e\xc4\x94\x09\x84\xa6\x82\x88\x33\xfd\x1e\x64\xcb\xcc\x38\xd3\x8a\x9d\x60\x2a\x59\x12\x2c\x03\xfb\xa6\xa3\x55\x9c\x82\x95\x65\xeb\x0c\xb6\x0e\x83\x49\x48\x8a\x62\xcc\x19\xe3\x1c\xda\x0a\xa8\x68\x6b\xe3\x30\xce\x8f\xc3\xae\xdd\x76\xeb\x08\x89\x64\x34\x2b\xd1\x1d\x63\x34\xb9\x93\x4b\xb1\x85\xe3\x37\x33\x1a\x10\xc3\xa1\x4c\x57\x20\x35\xde\x05\xba\x6c\x8f\xb8\x6f\x2b\x2e\x19\x1b\x0b\xdf\x98\xbf\x4c\x44\xf0\x10\x69\xb3\xd8\x5d\x41\x29\x96\xfa\xea\xa2\xd0\xc1\xcb\x55\xb4\xe9\x25\xf0\xb8\xf1\x4f\x40\xab\xf3\x76\xb2\x2c\x71\x55\xff\xa1\xe4\x10\xf3\xe9\xf4\xd7\x09\xe0\x3b\x9b\xf2\x04\x7b\xe6\x77\x62\x41\x27\x21\xfa\xb5\x6d\x87\x72\x79\x3f\x62\xb7\x66\x20\x41\xe2\xd9\x5f\x65\xad\x90\x1b\x98\x23\x21\x18\x07\xdc\x9e\x8c\x50\xcb\xe1\x48\x18\xd6\x72\xb3\xcc\x0c\x39\x2e\xc7\x2f\x11\xaa\x09\x64\x14\xcc\x8a\x60\x5b\xca\xe2\x13\x68\xd2\x4c\x74\xfc\x49\x4b\x7c\x13\x07\x89\x32\xb3\x54\x99\x88\x49\x3d\x54\x44\x74\x06\xaa\x27\x55\x7b\x41\x0c\x5b\xc6\xdd\x90\x40\xb7\xde\xbe\xee\x07\x3a\x2a\x75\xb5\x79\x74\xc6\xea\x22\x18\x07\xd8\x6d\x5f\x32\xd7\xf0\xe3\x0f\x0f\x35\xd3\x3c\xdd\xda\xf5\xce\xc0\x4a\xb1\xae\x60\x19\x57\x10\x93\xc1\x47\x10\xcb\xfb\x43\x16\x99\xd0\x1a\xb6\x38\xe4\xd5\xc7\x54\xe2\x59\xb0\x4d\x2d\xd1\xd9\x69\x79\x6f\x88\x48\x45\xb9\xc4\x81\x4d\x89\xf7\x6e\x5f\x00\x93\xbc\x88\x91\x98\x31\x5d\x48\xca\x8d\x04\x18\xe7\x20\xaa\xec\xce\xaf\x80\x00\x95\x43\x1c\x73\x5f\x83\xaf\x7d\xae\x01\x98\x3c\x0c\x6b\xed\x95\x5b\x29\x2f\x73\xeb\xe4\x1b\x42\xec\x67\xe5\x7c\xe6\x1a\xf0\x5b\xcb\x44\x0f\x52\x59\x99\x4a\x80\xfe\xb2\x82\xfe\xcb\x81\x80\x87\x2b\x35\x3f\x8f\x27\xc3\x24\x2d\x0f\x12\x7d\x4a\xc1\x08\xd6\xbe\x71\x78\x08\x8b\x10\xb0\x90\x9b\x86\xc7\x43\x71\x93\x11\x27\x33\x2a\x28\x70\x07\xf8\x8e\x39\x30\xaf\x20\x8c\x9b\x01\xe2\x65\x60\x42\x49\xc2\x36\xd6\xdb\x40\x42\x5f\x1d\x69\x4e\x63\xce\xc9\xfc\x0a\xbd\x4c\xcf\x6c\x18\xe8\x9f\x1f\xc7\x23\x70\x8b\x11\xf7\x95\x5c\x44\xbe\xbd\x5c\xf0\x12\x4d\xef\xbd\x5f\x10\x30\x39\x2c\x02\xe1\xcd\x7b\x05\xfe\xad\x0b\x17\x03\x65\xc2\x24\xd7\xb1\x3a\xcf\x85\xd9\x5e\x43\x4e\x13\xb1\x3b\xb4\x2e\xbc\x2b\x1d\xa8\x04\x45\xd1\x9f\x6f\x00\x19\x45\x35\xcc\x28\x52\x23\xff\xc5\xe4\x6c\x56\xda\xd5\x74\x96\x46\x2d\x70\x2a\x26\x33\xae\x11\x59\x18\x3a\xe4\x21\xdc\x86\xa2\x0e\x7f\xbe\x69\x1c\xca\x7f\x78\xbe\x43\x75\xcb\x37\xa3\x8c\x9c\x49\x67\x9c\x60\xb1\xa8\x18\xb6\x60\xa4\xed\x42\x74\x6a\x01\x57\x40\xd0\xd4\xf5\xb0\x46\x88\x0a\x4c\xe2\x8c\xbe\x5a\x15\x15\xad\x77\xdd\x4a\x49\x10\x81\x9c\x14\xb6\x13\x7d\x02\x64\x14\x2a\xc0\xa2\x54\x9d\x4e\x2a\xa0\xcc\x8c\x4b\x2f\x79\xa5\x16\xe7\x84\xec\x89\xaf\x2b\x61\xee\xe4\xa0\xab\xe5\xac\xd6\x93\x08\x62\xc3\xac\xfa\x7b\xa9\xa6\xc7\xe8\x3d\xaf\xb6\xc7\x38\xb2\x27\xad\x2c\xd3\x7b\x69\x44\xa6\xc2\x02\x8f\x8d\x95\x92\xd8\x5c\xba\x19\x62\x58\xa6\x15\x63\xc9\xd2\xe3\xf3\x97\xad\x0a\xa3\xd8\xb8\x09\x48\xc8\xf7\x2a\xed\xfe\xa5\x06\x8d\xc0\xc8\xaf\xea\x4f\x54\x4c\x56\xee\xdc\xd6\xe3\xcc\xa8\x85\xf0\xd1\xb3\x44\xd3\xc7\x66\xae\x30\x24\x88\xe4\x7a\xbf\xaa\x4b\xd8\x50\x29\x07\xe5\x67\x2d\x33\x1e\x4e\x35\xcd\x96\x3d\xb0\x1e\xbf\x24\x2b\x89\x8d\x88\x50\x4b\xb4\x0c\xdf\x98\xbf\x0c\x65\x5f\x9e\xd2\x3b\xdc\xb8\x33\xa0\x0a\x69\x57\x45\x56\x07\x52\x11\x73\x66\x60\xf9\x5c\x40\x7d\x00\xd2\x11\xa4\x29\x37\xca\x96\x71\xb8\x25\xae\xa8\x43\x8f\xcb\x64\x4e\xbf\x44\x68\x2a\x86\x8a\x80\xd4\xa6\xc0\x43\x17\xfa\xf8\xa5\xca\xb2\x5d\xbf\x4c\x21\xb9\xa9\xb9\x45\xfb\x37\x8d\xf3\x6e\x47\x72\xf1\xc4\xfc\x89\xb8\x19\xba\x07\x7b\x12\x21\x3c\x1c\x4e\x62\x96\x54\x93\x41\xfb\xd1\x45\x62\x06\x53\xd7\x3b\x1c\x74\xc0\xa8\x70\x62\x74\xae\xb4\x6b\xa7\xf2\x0c\x87\x3b\xb2\x28\xd0\x32\xca\xe6\x32\xaa\xda\x82\x62\x66\xb6\x0e\x73\x8e\xb0\x79\x6e\x2f\x89\x84\x26\xf2\x39\x11\x89\x41\x6e\xc8\x3c\x01\x84\xc4\x8e\x6a\x30\x6f\x5e\x3e\x7b\x6f\x02\x9d\xd0\xd9\xa6\xdf\x98\xbc\xc9\x32\xda\xf6\x6f\xbc\x61\xde\x60\x84\xde\x92\xc2\x37\x4f\xa3\x18\x4c\x43\xad\x05\x1f\x8f\x6f\x98\x61\x41\x8f\x14\xdd\xf8\x31\x1d\xda\x61\x42\x37\x84\xb8\xbc\x30\xc4\xaf\xf0\xc4\xe6\xcd\x7e\x83\xa0\xec\xe3\x4c\x04\xea\xcf\x54\xc4\x1d\x74\x37\x63\xfd\x69\x50\xeb\x38\x73\x6d\x9c\xce\xda\xe6\x53\x3a\x07\x60\xdf\xa6\x23\x5c\x41\x64\x7e\x93\xad\xc4\x4f\xcf\x2d\x61\x4f\xfb\xbc\xf3\x2b\x38\x9f\x1d\x8b\xb6\x58\x15\x25\x2e\xaf\xbf\x40\x3e\x03\x76\x77\x6b\x8b\x5c\x32\x90\x9e\x38\x29\xc4\xbd\x51\x47\x3f\xb4\x07\x02\xf2\x35\xdd\x8f\xed\xe2\x4e\x5f\x50\x76\x6e\x60\xdc\x75\xe7\x11\x71\x35\x47\xba\x90\xa8\x27\x2a\xf1\x68\xd4\x1a\x9c\xe7\xd6\x90\xf6\x41\xca\x23\xee\x27\x60\x18\x24\x15\x27\xc2\x10\x1e\x4c\xbd\x2f\x88\xf7\x58\xd9\x5b\x7a\x3c\x6f\x58\xbb\x3e\xee\x11\x7e\x7a\x6e\x12\xf7\x1d\x53\xed\xcc\x8d\xf8\x80\xc2\x49\x80\x96\x12\x3b\x89\x34\x67\xe1\x2f\xa6\xed\x07\x39\xa0\x68\xa5\x7d\x30\x5b\x97\x75\x65\xc3\x92\x8c\xa8\x58\x78\x01\x10\x20\xfc\x68\x9e\xb0\x29\xed\xed\x0e\x60\x86\xdb\xa9\x40\x87\x7e\x33\xe3\x61\xb2\xc8\xfb\x97\x81\x33\x21\xe7\xa8\xfd\x7e\x7b\xa0\x39\xb5\x3a\x7a\xc9\x19\xed\xd4\x73\x0b\x77\xc4\x58\x1f\x75\x6d\x84\xd5\x76\x86\x86\x2b\xd8\x18\xef\xcc\xa1\x06\xf1\x28\x36\x9e\x84\x62\xa1\x94\x65\xd9\x32\x83\x1b\x03\xfa\xdb\x3d\xdc\x5f\x8b\x4f\x10\xda\x49\x32\xdc\x47\xc5\x75\xd4\x7f\xba\x7e\x2f\xe8\xa4\xac\x21\xee\x33\xf3\x0d\x1d\xe8\x4d\x05\x27\x36\x6f\xb4\x3e\x2b\x0b\xa2\x8b\x5a\xbb\x78\x85\xbf\x10\xca\x69\xc2\xb8\xba\x10\x1b\x52\xca\x35\x30\x83\x3f\x1d\x9d\x8d\x57\x74\xef\xec\x8b\x4f\xa7\x69\xf2\x74\x1b\xad\xfa\xbc\x06\xe6\x61\x58\x1b\xc6\xc4\x4b\xa0\x1f\xa2\xa0\x69\xc8\x19\x5d\x89\xa8\x9c\x0f\x61\x5d\x4d\xdc\x36\xb6\x75\x1d\xe4\xb1\x3d\x7e\xd4\x97\xb3\xfe\x8b\xbd\x4a\x63\xcf\x54\x42\x77\x59\x5f\x3a\x49\xff\xe2\xc2\xd9\xc2\xab\x90\x5f\x1d\x54\x69\x4c\x1d\x34\x48\xe5\xe2\x35\x7f\x1b\xf7\x7d\x9f\x58\xd5\x07\xb3\x2b\xe8\x96\x21\x3d\xff\x55\x7f\xb0\xf8\x7c\x93\x7d\x46\xda\x85\xff\xc9\xf0\xd1\x2e\x7e\xc2\xbf\x93\x02\xf4\x68\x60\xff\xb0\xf8\x7c\x88\xac\xbe\x2c\x3b\xaf\x2c\x24\x79\x7d\xb7\x8d\x2d\x2e\x9c\xdd\xfb\x4c\x5d\x6e\xc5\xef\xf0\xb5\x3a\xdc\x1a\xf6\x3b\x8c\xb3\x6e\x44\x4b\x9f\xd5\xec\x31\xc1\x14\x40\x11\x66\x55\xf6\xf6\xce\x23\x59\x60\x45\x13\x7c\x1c\x7c\xbb\xbc\x67\xe8\x52\xfc\x48\xc2\xa6\x69\x81\xb9\x9c\x7e\x15\xa6\x2c\x9e\xe2\x4b\xcc\x12\xa6\x4b\x84\xcb\x62\xa7\x56\x59\xc1\x5d\xe8\xe1\xf3\x97\xef\x61\xae\xe0\x1d\x68\x6c\x70\xe8\x38\x64\xb4\xea\xae\x45\xdc\x2d\x45\xdb\x0a\x89\x41\x8b\x99\xb3\x8b\x1f\xf4\x29\xde\x5d\x10\x38\xb0\x36\xc5\x1e\x4e\x50\x06\xb2\xef\x32\xd5\x87\xf9\xb6\x9c\xde\x94\xcb\x88\x61\xf5\xdb\x4a\x14\x93\x51\xdf\x27\xe2\x30\xe5\x24\xaa\x99\x33\x73\x10\x27\x1f\x27\x5d\xdd\x67\x87\xd0\xb0\x2a\x2e\x75\xbb\x20\x48\xe2\x04\xd1\x5a\x02\x0a\x69\xc7\x19\x83\x6d\xac\x7c\x05\xf4\xc5\x5e\x48\x70\x92\x58\xa8\x14\x70\x93\x68\x2c\xaf\x19\xf3\x7a\x2e\x21\x73\x46\x38\x1d\xee\xfb\xc3\xf5\x12\xf2\xf1\xc5\xcf\x44\x1f\xc2\xbf\xd8\xa7\x78\x9a\xe8\x29\x72\xf2\xa8\xac\xda\x79\x9c\xb3\x38\xec\x7f\xff\x8f\xff\x79\xfa\x14\xbe\x9c\x4f\xbb\xa6\xa4\x5f\x2c\xdf\x3a\x5c\xa3\x34\x16\xfa\x39\x78\x24\x34\x9c\x13\xf3\xc1\x67\x6e\xf1\xc6\x6e\x98\x2a\x90\x2f\x56\x5e\x81\x33\xc1\xf1\x83\x15\x2a\xec\xac\xf8\x2c\xb2\x1e\x8b\x27\xc8\xe8\x7c\x06\x36\x51\x5c\x74\x59\x43\x1f\xa3\xd5\xbf\xf6\xc5\x7a\xb7\xdc\xc0\x19\x78\x71\x51\xd9\x92\x9d\xf6\x58\xe8\xa1\xb7\x0d\x04\x79\x02\x9b\x3f\x33\x36\x1b\x62\xa7\xd8\xe0\x98\x91\xb2\x7a\x06\x88\xd5\x71\x24\x77\x8f\x8f\x09\xdb\x6b\x12\x8b\x74\xa9\x76\xec\x6d\x5d\xda\xd9\xa1\x87\xb1\x12\x14\x8f\xd2\xdf\x39\x7d\x1b\xb1\x99\x74\x06\x8e\x71\x1b\xa3\xfa\xdc\x3b\x0d\x96\xfd\x41\x45\xbd\x11\x6d\x24\xd8\x48\x64\x78\x17\x69\x36\x43\x5b\x65\xeb\x9d\x81\x24\x92\xe8\xf5\x99\x62\xc5\xc7\x97\x5d\xb6\x83\x66\x68\x86\x80\x07\x8b\x27\x75\xbd\x9f\x5d\x12\x19\x45\x84\x83\x6a\x48\xe1\xff\xda\x65\x9b\xc5\x4f\x9c\xea\x34\xa4\xb4\x93\x94\xa8\xad\x10\x7f\xe2\xdb\x01\xb7\x96\x6d\x5a\xe2\xdf\x57\x10\x95\x0d\x1d\xd5\xe1\xd5\x3e\xf2\x66\x2f\xb9\xac\xab\xb2\x27\x78\x26\x62\xba\xb2\x6c\x4f\x5e\x1e\xa0\xf7\x98\x61\xa1\xe9\x3a\x26\x28\xe3\xbf\x34\x7f\x9e\x58\x2b\x62\x21\xf5\x2a\x63\x85\x52\x93\x5d\x2d\xde\xd1\x1e\xc8\x17\x2d\x0c\x7b\xba\x3f\x67\x1d\x83\xc5\xb9\xd6\x72\x6c\x9e\x8e\xc2\xbf\x12\xd8\x6d\x32\x88\x69\x7d\x2d\xa6\x32\x19\xde\xcf\xdd\xaf\x99\x1b\xc2\x7c\x38\x14\x97\x9e\x38\xda\xfb\xd4\x4b\x30\xd7\x20\x50\x7c\x0a\xf0\x31\x9d\x0b\xc2\xc8\xb6\x6f\x7c\xea\x9e\x4e\x09\x94\x2c\x4f\x44\x7b\xe7\xd3\x73\x36\x46\xcd\xba\x7e\xef\x93\xc4\x25\xe0\x6d\x9f\xdb\x50\xbd\x82\x72\x43\x6f\xc1\xc6\x9b\xd9\x23\xd8\x84\x48\x7c\x0f\xce\x8f\x3f\xe4\xcc\xd3\x65\x8f\x32\x2a\x50\x1b\x94\x28\x47\x88\x7f\xc6\xd9\x6b\x5a\xfa\x66\xa9\xb5\x03\x57\x52\x8e\xda\xf1\x3b\xa9\x1b\x99\x95\x83\x5e\x42\x01\xee\x69\x3f\x51\x4a\x3a\x0b\x05\x43\x7f\x53\xa5\xa1\x3a\x8d\x0a\x43\xf3\xaa\xe5\x4a\x1f\x35\x41\x9b\xad\x5b\x18\x3c\x47\x03\x68\x4b\x10\x69\xd3\xc5\xc1\xa7\x6d\xe8\x36\x15\x55\x91\x28\x4a\x2c\xb3\x7f\xe3\xb1\xc6\x65\x75\xa8\xc7\xdb\x6a\x41\xac\xe5\xaa\xf0\x32\xdc\x58\x5a\xb0\x8f\x20\x9b\x89\x0d\xd5\x4d\x93\x0d\x7f\x35\xd8\x35\xc9\x5c\x1e\xca\x6c\x6d\xd5\xa9\xe4\xbd\xdd\xb5\x9d\x6c\x1b\xe2\x42\x24\x9d\x68\x5b\xdc\x55\x02\x00\xbc\xc2\x5d\xb6\x5a\xdc\xcd\x0d\x96\xd7\x57\xc3\x82\xba\x8c\x8d\x2e\xa6\xcb\x54\x8c\x22\x6d\x26\x23\x8b\x73\x88\xd8\x59\x0a\xd5\x17\x01\x5e\x42\x09\x0e\x6a\xdd\x0c\x5f\xc3\x02\xc3\xa6\x53\xf2\x72\x08\x49\x5a\xdb\xef\x0a\xab\x70\xaf\xe8\x2e\xa8\xec\xb8\x08\xe2\x27\x7c\xa1\xfd\x1b\x37\x54\x5b\x61\x02\xec\x3d\xe8\xae\x71\xfa\x1c\x6e\x49\x8a\x45\xd9\x67\x7e\xe7\x50\xe9\x54\xd9\x56\x03\xc4\x10\xad\x7d\x5d\xf7\x18\xb8\xf9\x44\x34\x0c\x13\x85\x3c\x81\xa9\x5a\xb2\xe3\xf9\x72\x75\xed\x2a\x6d\xec\x9e\x36\x5e\x4d\x6e\xa8\x81\xa9\x5a\x7b\x30\x0d\x35\x5c\xdb\xb8\x16\x01\xbb\xc4\xd1\x99\x28\xdf\xb2\x37\x3b\xfd\x63\x5d\x5c\x91\x24\x6b\x8e\x3b\xa9\xed\x34\xf8\x49\x37\x5c\x05\x2e\x02\x88\xa5\x22\x84\xf4\x6e\x28\x20\xb2\x60\xd1\x0f\x13\xa5\x8c\x8f\x48\xe9\x3b\xd9\x2b\x5d\x20\xae\xc2\x6b\x28\xc3\x55\x9e\xfc\x85\x6a\xfb\xba\xed\x80\x75\xa1\x0c\x78\x6d\xe1\x31\x48\x57\x36\x9d\xc6\xdd\x68\x71\x43\x2f\xbe\x3c\x77\x33\x2a\x8f\x33\xc5\xeb\xbf\xb8\xfb\xdb\xb7\x1f\x5b\x27\xa6\x46\x72\x2e\x7b\xe0\x55\x2b\x0f\xef\xfe\xf6\xdd\x47\x62\x68\xef\xfe\xf6\xe7\x8f\xac\x78\x19\xb5\xb1\xbc\xcc\x76\xf6\xc6\x86\xb8\xba\xab\x73\x68\xec\xb1\xa8\x7b\x98\x06\x35\xc4\xb2\x06\x6c\xf1\x47\xa7\x04\x57\x6e\xd3\x73\xaf\x8e\xf3\x83\x63\x9f\x6b\xc6\xf3\xc1\xb1\xaf\xfa\xfd\x52\xa7\xde\x02\x2d\xd4\x87\xbd\x98\xa1\x44\xf5\x25\x1b\x6c\x4a\xb7\xf8\x7d\x43\x44\x8e\xa6\x64\x62\x50\x45\x13\x2f\x72\xe2\xe1\x31\x1d\xc7\xd0\xff\x49\xbe\x1e\xf1\x5c\xb0\x06\xbf\xfb\x0e\x6b\xaf\xa7\x79\x26\x3e\x87\xce\x15\xa5\x60\xb5\xcd\x3c\xc5\x56\x12\xe2\xe6\xa2\x84\xbb\x73\x92\xa1\x63\x88\x0b\x18\x3e\xd5\x36\x1e\x9f\xab\xd3\xf0\x02\x6b\xe1\x17\xb6\xa9\xa3\xf5\xd1\xbc\xb4\x41\x2d\x73\x4b\x93\x8a\x84\x1d\xdc\xbc\xb3\x44\x1a\x84\xb3\xa3\x8b\xce\x2b\xe6\xae\xad\x7a\xff\x77\xae\x95\x8c\x4c\x9b\xd9\xca\x88\xf2\xbf\xbf\x19\x21\x40\x88\x88\xbd\x44\x43\xf7\x20\x8e\xb3\x08\xb0\x82\xfd\x83\x44\xd1\xdd\x53\x20\x61\x79\x19\x69\xac\x52\xe7\xd6\x8e\x04\x50\xef\xc5\x10\x7e\xa8\x39\x3a\xd7\x39\xff\x71\x89\x2c\xd1\x12\xb7\x5f\x0f\xa9\xa9\xb0\x4f\x53\x9d\x8f\x19\x31\x0a\xc4\x08\xe1\xaa\x05\xff\xd4\x3a\xdf\xef\xb0\x63\xce\xc5\xdb\xb9\x1d\x30\x2f\xc1\x21\x33\xc4\x9e\xb5\x82\x0a\xd3\x87\x26\x21\x70\x83\x5e\x1b\xf4\xe7\xdc\xdc\xe4\x0e\x98\x28\x46\xd5\x9b\x0d\x5c\x01\x94\x15\x1c\xbe\x88\x39\x9d\x78\xae\x96\x96\x8e\x48\x41\x35\xca\x71\x4b\x3d\x34\x38\x72\x23\x26\xe2\x55\x42\x39\x65\x3e\x4d\x2e\x54\x39\x96\x7c\xe1\xb2\x74\x33\xc9\x5c\xd7\x25\x91\xa1\x9c\xb9\x2b\x41\x8a\x0e\x72\x21\xd1\xa5\x43\x9b\x92\x75\x92\x19\xe0\xbd\x95\xeb\x9e\x81\xc7\x06\x15\x6f\x5a\x7c\x72\x36\x92\x35\x34\xa6\x4b\x73\xd5\x31\x46\x6d\x26\x13\x3a\x24\xaa\xae\x01\xd9\x62\x32\x74\xba\xd4\x2d\x2a\xd2\x42\x09\xa1\xa0\x27\xf0\xc6\x1a\x2e\xaa\x48\x62\x64\xe7\x67\xfa\x05\xf5\xc1\xf4\x38\x1c\xcf\xcc\x8b\x3f\xd2\x11\xc7\x5a\x52\x61\x98\x84\x90\x87\xe1\x10\x7d\x99\x77\x12\x14\x4c\xb3\xe8\x30\x1d\x32\x82\x53\x31\x0a\x62\x82\x7c\xc3\x54\x86\xb7\x8a\x13\x84\x3b\x59\xda\xeb\x52\xb4\x4a\x47\x87\x17\xf5\x3c\x33\xc7\xc1\x6e\x1c\x73\x8b\x26\xd8\x6d\x0e\xf2\x56\x96\xf4\x89\xb0\x93\x4b\xce\x07\x3d\xc0\x03\x7d\x81\x7f\x86\x3d\xcb\xdf\xc5\xd1\x75\xaa\xf9\x09\xd7\x99\x72\x9b\x6e\x11\x6a\xc8\xd3\xfa\xb2\x6b\x9d\xfa\x17\x1f\x59\xc7\x68\xf4\x08\xe7\x40\x3f\x88\xaa\xe6\x20\x5e\xa0\x83\x5c\x7f\xcf\xbc\x13\xba\xd3\x04\x4a\xf7\x8c\x3b\xa1\x22\x63\x97\x79\x56\x6a\x65\x4e\x46\x68\xdb\x60\x2b\x20\xae\x3c\xd2\x3c\xac\xb4\xe3\xf8\x6c\x8b\x7b\x46\x9a\xd7\x93\x7f\x08\xfc\x6d\xb6\x31\x5d\xcf\x96\x51\x8c\x2f\x78\x81\x45\x4e\xdd\x7e\x1f\x21\x06\x60\xbd\x87\xdc\xf8\x43\x5c\xed\xb9\xc3\x80\xe6\x4f\x77\x0d\xbe\x81\x1c\xee\xb9\x95\x14\x36\xe0\x3c\xde\x0d\xa0\x31\x58\x44\x69\x11\x3e\xf8\xb2\xb9\x57\x45\x69\xd0\x7c\xae\x68\xb7\x65\x80\xff\x01\x8e\x81\x0e\x9d\xf3\x6f\xd3\x66\x7b\x44\x69\x84\x16\x91\xa1\xd1\x15\xf9\xb3\x2f\xa2\x8d\xef\xb1\x74\x7a\xe7\x4b\x1f\x92\x32\xe8\x86\x2d\x9c\x26\xfa\x29\xaa\xae\x9e\x68\x9c\x6a\xff\xf3\xc7\xd6\x8d\x3f\x5b\x2d\x03\x6a\xa5\xf3\x7d\x56\xb4\x6b\x5a\xc6\xc2\x26\x05\x52\x46\x3c\xe4\x80\x89\x6f\xd9\x91\x55\xa4\xc6\xde\x00\x4e\xcb\xe8\xad\x4c\xd0\xc1\x23\x77\xde\x84\x92\xac\x61\xdf\x7a\xb6\xdf\xe2\xed\x85\xb4\xea\x60\x1b\xe0\x03\xc3\x15\x60\xa2\xeb\x42\x8c\xc4\x6b\x42\x04\x21\xfe\x44\x50\xa2\xe9\xef\x47\x4d\x7a\xab\x2d\x5d\xbb\xd4\x68\x4b\x1a\x40\x20\x07\x3a\x10\xac\x53\x45\x3c\x37\x08\x06\xc7\x83\xf3\x2d\x49\x49\x93\xf7\x6c\xbe\xea\x90\x0d\x2a\x41\x3a\x16\x5b\x9f\xb9\x51\x17\x2d\x21\x02\xbb\xc6\x51\xe7\x60\x6d\xd0\xeb\x95\xc5\xba\x33\x2e\x95\xcd\x37\x60\xb4\xaf\xa1\x72\x36\x0d\x3b\x3c\xfa\xc0\x7b\x74\x93\xb6\x5b\x0e\x91\x87\x02\x97\x84\xa1\xf6\x35\x93\x7b\x1e\x1b\x64\xd5\x92\x45\xff\x3c\x4d\x81\x16\x0d\x9c\xe6\x97\x14\xf9\xa7\x83\x75\x85\xcf\xe4\x68\xaa\x51\xa3\x2c\x17\x9f\x6e\xf7\x5e\x77\x7b\xcb\x2b\xbb\xce\xfa\x16\x56\x7b\x6c\x57\xd8\x84\x69\x63\x1d\x71\x40\x1d\x85\xd2\xde\xdc\xa1\x8f\x97\xc6\x0b\xd1\x8b\x88\x0d\xa2\x40\x89\x46\xd4\xd5\x35\xac\x99\x4c\x5b\x97\x47\x5a\x9a\x2e\x01\x93\x14\x75\x5c\x44\xc7\x0e\x27\x33\x46\xb2\x5a\x8b\x81\xb5\xaf\xf4\xdc\x71\x6d\x16\x1d\xb6\x8b\xdf\xc7\x73\x56\x20\xbe\x69\xbe\x8c\xa4\xa0\xca\xb9\x36\xec\x57\xed\xd0\xba\x83\xa6\xfb\x7f\xba\x9b\x3f\x90\xb3\x0b\x84\x90\x6a\xb6\xba\xad\x24\xca\x92\xc6\xe6\x8c\x6a\x0d\x7c\x95\x15\x1c\xea\xee\x92\xad\x38\x1b\xdc\x0c\xf3\xdf\x67\x91\x48\x2f\x88\xa4\x22\xb6\x3b\xca\x8e\xc5\x0b\x4a\x56\xc4\xd9\xd3\x52\x86\x61\x81\x7c\x71\xd7\xf3\x3e\xe3\x22\x90\x0f\xf7\x04\x32\xc0\xa1\x4e\xde\x72\xcc\xca\x9c\x65\x6c\x83\xa1\x08\xaf\x33\x6c\x5f\x59\x86\x74\x56\x74\xa9\xaf\x70\x75\x10\x54\xb0\xd4\xc4\xcb\x91\x82\x4e\x4c\xdd\x6b\x3c\xd5\xe1\xe5\x72\x6c\x14\x17\xf7\xa2\x82\x1e\x5d\x20\x89\xd6\x13\x17\xd0\xb0\x7f\x45\x67\x93\xd5\xe3\x63\xf0\xc4\x46\x22\xef\x38\xd3\x4d\xfa\x97\x30\x5f\x73\x5f\x82\xa2\x11\x6d\xfb\x20\x9d\xa6\xcd\x1a\x68\x00\x37\xa3\xae\x7d\xcc\x19\x6d\x6e\x29\x40\x00\xdd\x17\x7c\x93\xe2\xd5\x14\x4b\x21\xe7\x8e\xc5\x16\x35\xac\x83\xb9\xf3\x89\xfe\x3b\xdd\xef\x4f\xf3\xfc\xce\xc4\xbc\x3d\x79\xe4\xe7\xef\x34\x5c\x11\x91\x94\x79\x29\xc5\x37\x71\x0b\x11\xa9\x39\x09\x5f\xc8\x8f\x76\xca\x45\xc3\xb4\x5e\xcb\xbf\x8a\x56\x4f\xad\x91\xdd\x46\x9e\x80\x60\x67\xf3\x91\x86\xb5\xda\x6c\x6b\x4a\x98\xb5\x1e\x6d\xdf\x20\x18\x6b\x94\xa5\x14\xad\x9f\x99\xd3\x16\x4f\x8c\x51\x6d\xba\x03\x85\xc5\x30\xb3\xbf\x65\x4d\x42\x70\xc4\x6f\x52\xa8\x50\x22\xd9\xf7\x1a\x5b\x5d\x4c\x14\xfc\x7f\x40\x27\x4f\x8d\x62\x04\x06\x37\xda\xd6\xcc\x6e\x88\xc7\xeb\x52\xe7\x02\xe5\x2d\xc7\xfc\xe3\xf0\x73\x9a\x1e\xc5\xbf\x81\xa9\x25\x50\xb1\x7a\xca\x84\x32\xdb\xba\xde\x21\x22\xd0\x8a\x7f\x84\xf4\x0d\xe2\x7b\x22\x0b\xa1\xa3\xb6\x7c\x4c\x7c\x1e\x02\x27\xad\x43\xc4\xdf\x27\x1c\x47\x69\x32\x80\x30\x5d\xf2\xf4\xdd\x2c\x3f\x8b\x10\xfa\x98\x61\xa9\xf1\x11\x4a\xb0\xc3\xcd\xdb\x10\x24\x8a\x1d\x6f\x7c\xae\xba\x44\x4c\x2e\x80\x3a\xfe\xc4\xdd\xa9\xef\x00\xd0\xfa\xd7\x38\xc8\x4c\x39\xc6\xc0\x69\x26\x5c\x0b\xf3\xd0\x76\x47\x44\x73\x7b\xe9\x98\x6f\xf6\x8a\xf4\xde\x7f\xe3\x52\xaa\xb3\x65\x12\xd9\x2b\xda\xb8\x46\x08\xad\x21\xb6\xff\xc1\x0d\x56\xb5\xb7\xb1\x9f\x22\xc7\x9d\xec\xa3\x88\x63\x46\xc3\x93\x89\x07\x63\x34\x3c\x0e\x15\xcd\xbe\xc0\xa0\xcc\x5a\xd1\xcf\x8b\xe3\xa3\xaa\xed\xbc\x27\xb0\x38\x3f\x2a\x35\x3f\x36\x4f\xf8\xac\xd6\x42\x61\x13\x87\x3e\x61\x23\xcd\xe1\xa0\xa8\x4c\x5e\xe2\xa5\x50\x1f\xec\xb3\x3f\xec\x2b\x00\x38\x2b\xf4\x1a\x91\x64\x5d\xd9\x8d\x98\x63\xcd\xcd\x73\x35\x9e\xff\x8c\x48\x72\x12\xae\xee\x93\xbf\x59\x60\x14\x0b\x8d\xf4\x78\xdd\x11\x9d\x82\x0e\xd0\xf2\xdb\xc5\xa9\x01\xfd\xc0\xfb\x8d\x7b\xcd\x88\xbd\x9d\x29\x2e\xd9\x28\x88\xd7\x8a\x09\x06\x02\xdd\xbc\x38\x16\x79\x0f\x83\x32\xba\xbf\x6e\x6b\xf5\xbb\xb8\x55\xa8\x2b\x61\xdd\x70\x63\xcb\x6e\x2f\x3f\x47\x64\x84\x8f\xfd\x0c\xa5\x3f\x93\xbc\x56\x6a\x4c\xce\x06\xd8\x47\x05\x1d\x4a\x8d\xb1\xef\xb6\xf1\x6e\x8d\x09\x9d\x22\x7e\x15\x30\x5e\x13\xe7\x0b\x4f\x26\x7d\x3f\xda\xa1\x78\x99\xf8\x78\x04\x92\xca\xd9\x78\x3d\x7d\xfc\xe6\xcd\xdb\xf7\xc1\x4c\x6e\x45\xa4\x20\xc1\x7d\x65\xe7\x37\xb6\xf6\xdd\xb8\x35\x5e\x29\x6f\xd8\x56\x5e\xab\x23\x07\xcf\x9b\xb6\xb7\xd1\x80\xd4\x8e\xf8\x0f\x47\xef\xc4\x48\x00\x06\x8e\x8f\x2d\xfe\xcf\x19\xa5\xb1\xc8\xe1\xc4\x49\x15\x5b\x5e\x54\x59\x7f\xcb\x2e\xc1\x01\xe9\xd5\xc9\x92\x0e\x46\xca\x36\x03\x98\xfc\xcb\x51\xc7\x86\x09\x73\x28\x5e\x39\xde\xa3\x98\x6c\xc9\x3c\x56\x96\x09\xce\x3d\x6e\x83\xdc\xb2\x58\x08\x21\xb8\x2e\x3b\x3e\x14\x82\xd9\xbf\xd0\xe7\x77\x37\xf7\x29\x96\x67\x53\x9d\x8a\xab\x0d\x4d\x54\x9c\xfa\x98\x4c\xed\x8a\xfd\x2d\x3b\xc1\x7d\xfd\x59\xfa\x8a\xfd\x6e\x76\xd6\x1e\xa2\x0e\xd2\xa1\x07\x8d\xba\xe0\xca\x60\xd5\x37\xb1\x3f\xcc\x37\xf2\x32\x19\x82\xb8\x36\xc6\x45\x03\xac\x1d\x05\x97\x89\xcc\xfe\x46\x61\xeb\xa6\xfd\xd9\xc6\x67\x42\x44\xa0\x6f\x52\xa4\x16\xca\x81\xa6\x5b\x7a\x64\xcd\xd4\xaa\x22\x6a\x68\x9e\xc7\xcd\x89\x11\x72\x1e\xd0\x7a\x8c\xa5\xc2\x98\x6a\x96\xa9\x0c\xd1\x7d\x6a\x2b\x7a\x83\x8d\xa8\x2f\x0d\xaf\x80\x18\x3e\x3d\xaf\x40\xb4\x19\x5f\x65\x4d\xec\x24\x72\x53\x2d\xbf\x9c\x51\xb5\x22\x75\xf4\xf1\x75\x05\x70\xbe\xa6\x7a\x64\x6a\x1a\x5d\xce\xac\xf5\x97\x38\x88\xb1\x72\xf5\x82\xd3\x05\x5b\xce\xe3\x8d\x47\xc1\x82\x9d\xfc\x97\x12\x56\x2d\x84\xca\x40\x27\x08\xc6\xa0\x86\xff\xf1\x2d\x07\x9b\x1c\xd8\xa7\x8b\xc4\xc0\x8f\x6a\xe8\x2d\x39\x39\x43\xac\xce\x95\x90\x2f\x8e\x8c\x99\x5a\x44\x26\x66\xe4\x5e\x72\xc4\x0e\x9b\x8e\x23\x2e\xcc\x1f\x30\x46\xe3\x51\x00\x26\x59\x72\x8d\x47\x37\x8a\xd6\x7b\x19\x77\x36\x04\xf7\xc2\x51\xaa\x2c\xc7\xb7\x00\xdd\x26\x81\x20\x6d\x8f\x00\xd9\x05\x8b\xc2\xe0\x29\x0f\xb3\x7c\xf1\xd2\x3f\x16\x2c\xba\x33\xbf\x6a\xad\x5c\xc2\x7c\xfb\x60\x19\x71\xcd\xb8\xc6\x89\x91\x50\x59\x88\x46\x81\x75\x39\x7f\x7b\xf1\x3e\x48\xdd\xf8\x1e\xb7\xe5\xce\xad\xe6\x87\x77\xaf\xee\x39\xb7\x01\x34\x0f\xda\xc0\xbc\x46\x7f\x11\x05\x8b\x86\x41\x98\x16\x95\x38\x44\xdd\x6e\x54\xea\x97\x09\x26\x44\x90\xd0\x45\x8b\xae\x0b\x1e\x24\xd4\x6e\xe5\x13\x1f\x9e\x9b\x4a\x8f\xdd\x0b\xb5\x44\xe2\x57\x08\x29\xdb\x90\x09\x07\xe2\x82\x96\x19\xf7\x86\x51\xeb\x97\x5b\x5c\x0b\x6f\x1e\x41\x08\x85\x29\x1d\x7f\xc1\xcd\x70\xd8\xd0\xdc\xc9\x37\x7e\x51\x51\xc6\x44\x81\xf6\x00\xf2\x80\xf8\x24\xe7\xbb\x3f\x2c\x22\x5c\x1a\xbc\xf6\xf8\xef\xb8\xc0\x41\xe2\x4f\x2d\x5e\x71\xdc\xa9\x71\xfe\xaa\xce\xaf\x9d\xcb\xd6\x88\x70\x57\x33\x31\x47\xbd\xbb\x33\xc4\x9c\x65\x2e\x2f\xd1\xb0\xce\x14\x25\x20\x04\xf6\x96\xf2\xc1\x1c\x95\x63\x70\xf8\x30\xaf\x08\x6e\xca\x2d\xa9\x67\x11\x7b\xf1\x20\x80\x1a\x17\xc1\xa1\x89\x9d\x9f\x99\x3e\xe3\x16\x82\x27\x80\x27\xd8\xe7\xa3\xe1\xb2\x16\x25\x90\x8d\x5b\x8d\x73\xd9\x49\x43\x97\x84\x3b\x4e\x98\x29\xdb\xd7\x15\x47\x27\x13\x8d\x67\x70\xb0\x3d\x48\xf0\x41\x36\x34\x85\x2f\x42\x49\xf7\x95\x96\x91\x50\x5a\x59\x29\x54\x2b\xb7\x1c\xc7\xae\x9e\x18\x0b\x1b\xcf\xbf\xe0\x21\x24\x74\xb0\xcb\x77\x5a\x58\x2e\x52\x0c\xd6\x5f\xef\x3e\x2d\x2b\x65\x82\x07\xfa\x14\xda\x72\x58\xc9\x1d\x78\xb6\x3a\x65\xa9\x31\xce\xbc\x0a\x90\x07\x47\x7f\x18\x2f\x10\x16\xa0\x42\xbd\x77\xf0\x5b\x8e\xa2\x28\xd0\xda\x38\x97\xae\x14\xdb\x78\x77\x69\xc0\x3f\x70\xc6\x91\x91\x0d\x9c\x82\x14\x3d\xb5\x85\xf3\xb5\xa0\xc3\x05\xdc\x98\xe2\xc1\xfb\xff\x7a\xf1\xf6\xcd\x89\x0e\xf5\x8f\xd3\x6f\x4f\xff\xe5\x9f\xfe\xe9\xf4\xea\xea\xea\x94\x4e\x76\x79\x7a\xa4\x83\x7b\xda\x37\xb4\xc2\xc8\xcf\x75\x1a\x54\xdc\xee\x1f\xd9\xea\xf3\x0f\x0f\xe9\xef\xfc\xc1\x18\x49\x49\x8c\x78\x51\x78\x44\x4f\x25\xfc\xe3\xb8\x4a\x4f\x11\x07\xe7\x1f\x86\x71\x8b\xef\x71\x6c\xa9\x18\xab\x3c\x95\x0f\x31\x16\x8e\xee\xc2\x75\x63\x61\x01\xb3\xb5\x45\x04\x14\x2d\x5d\x8b\xbb\xe5\x4d\xcf\x13\x0d\x8a\x15\xd4\x0f\x0f\xe4\xe5\x5a\x5f\x44\x18\x96\x10\xbd\xe5\xcf\xac\xb2\xf4\x59\xec\xef\x26\x60\xf2\xa4\xf8\xe4\x37\x29\xb9\x3b\xae\x54\xe8\x90\x29\x0b\xe7\x50\x2a\x2d\x59\x53\x6c\x36\xe0\xb3\x38\xec\xcc\x8f\xc3\x66\xd9\x58\xb3\xae\xca\x6b\x17\xec\x1b\x9e\x3a\x04\x52\xb2\xaf\xc8\x75\x3a\x0c\x2e\x3f\x1f\xd6\xe7\xc0\x90\x81\x92\x5f\xbc\xdc\x89\x30\xcc\xb1\x11\x80\xc2\x36\x70\x11\xe2\x66\x36\x6a\x45\xa2\x3d\xb0\x63\x24\x01\xb2\xd9\x15\xb0\xe7\x21\x94\xde\x99\x62\x27\xa1\x52\x51\x73\x5c\x4d\x64\x89\x4f\x1b\xfb\xb7\xff\xb0\xa3\x15\x53\x89\x9b\x2c\x1c\xeb\xbc\x38\x32\x67\x47\xa7\x28\x48\xd8\xa6\xd6\x83\x2d\x56\x27\x17\xca\x63\x55\x7c\xe9\x35\x9c\xd8\x19\x47\x47\x9c\x63\xa4\x72\xa8\x54\x7b\x39\x4c\x76\x32\x76\x3a\xf6\x9f\x7b\x76\xe2\xf7\x47\x37\x53\x41\x53\xb2\xbd\xd9\x25\x21\xb2\x23\x8b\xaa\xae\x3c\x25\x11\x6d\xb3\x84\x14\xda\xd8\x4c\x03\xb3\x0e\x49\x24\x46\x34\x03\x7f\xde\xab\x40\x2e\x8d\xe9\x2a\xc5\x63\x8e\xb4\x52\xa9\xa3\x7e\x8e\x8a\x25\xcd\xbb\x4b\x95\x2e\xf6\x49\x4a\x5e\x59\x95\x21\xd5\x36\x49\x3b\x88\xd5\xd2\x52\x2f\x7d\x44\x07\x7a\xa7\x7e\xb1\x08\x32\xdf\x6c\x06\xf2\x26\x1e\x87\xb7\x38\x33\xe9\x58\xb1\x0e\x72\xca\x02\xda\x4d\xdd\xba\x9d\x7f\x41\x25\x7a\xe2\x06\x91\xa6\x37\xec\xdf\x0d\xc7\x09\xe7\x43\xe0\xa8\x4b\xe7\xcd\x3e\x29\x2e\x92\x8e\xc4\x65\xf0\x02\xbf\xc5\x55\x6f\x58\x40\x9f\x54\x91\x12\xb9\x3c\xac\x32\x44\x09\x5b\x6c\x78\xa9\x65\x08\x3f\x42\xea\x1b\x2d\xe6\xa1\xac\xaf\xc5\x9d\x3f\x0a\x03\x1f\x82\x03\xc5\xb3\x0f\x85\xe1\x9a\xac\xb3\x90\x44\x57\x23\x92\x28\xd5\xcb\xb8\xf1\x0f\x1a\x80\xcb\x19\x1d\xa5\xd5\x6e\xe0\x3f\x62\x51\xfe\xc4\x90\x87\x8e\xe7\xbe\x48\xea\x1d\x7f\x96\x74\xe5\x2f\xff\x81\x8b\x7c\x5c\x37\xf8\xc9\x0f\xea\xee\x25\xd0\xe3\x4d\x2e\xf2\xc9\x6a\x4d\xb8\xc0\xa7\x93\x8e\xbc\xe0\x03\xa3\x18\x3b\xc1\x4f\x4d\x79\xc2\xaa\xe3\xa6\x1d\x98\xa8\xf5\x05\x47\xf8\xc1\xf8\xbc\x1c\x3b\x11\x5b\x4f\xf8\x86\xba\xf7\xcb\x52\xb9\xde\x94\x5b\xfc\x6d\x63\x73\x8b\x35\x58\xf3\x5b\x4d\x40\xf2\xe2\xf2\x72\xbe\x6a\xea\xab\x16\xae\xe5\x7d\xb3\x26\x2e\xba\xcc\x64\x50\x78\x24\x44\x0a\xc0\xc8\x81\xc0\x64\x45\x8c\x41\x55\xe2\x3a\x83\xf1\x1e\xe7\x88\x32\x73\x21\x7f\x24\x89\x35\xcb\xe9\x13\x06\x67\x94\xee\xc9\x1a\xa1\x2c\xa3\xc0\x3c\x73\xa9\xd7\x6e\xeb\xab\x25\x7e\xb1\x83\x3c\x42\x65\xd1\x1d\xcd\x35\x2f\xf0\xad\x85\xf0\x53\x71\x87\xde\x69\xac\xad\x53\x1d\x7c\xe4\xce\x15\xee\xbc\x7d\x74\x1d\x2a\xf6\x08\x3a\x8f\xbb\x79\x28\x18\x79\x58\xde\xcd\x13\x21\x42\xd4\x9c\x2e\x19\x61\x8d\x27\x2f\xdf\xc8\x07\x9b\xfb\x73\x48\x2a\x35\x0b\x60\xc7\x65\x9e\xed\xcc\x79\x13\xcc\xbd\x57\xc1\x3b\xfd\xe1\x73\xc4\xe3\x83\x7f\x87\x17\x0c\xf9\xd3\x17\xc9\x9b\xec\xb2\x03\x65\xb4\xb6\x87\xce\xa7\x1e\xe0\xd6\x2d\xf5\x7e\x21\x10\x29\xeb\x03\x1c\xc7\xe5\x01\x07\x5f\x88\x06\x84\x2d\xa0\x35\x5c\x21\x3e\x98\x4b\x66\x65\x96\x17\xe1\xbb\xd4\x0c\x5c\x51\xb4\xb2\x61\x6d\x32\x09\x20\x2c\x0b\x97\x71\x60\x59\x03\x0a\x55\xac\x58\x46\x9d\x32\x28\x49\xf0\xe8\x27\xd4\x00\x7e\x24\xf3\x0d\x6a\x32\x76\xb2\xa0\xcb\xdc\xad\x0f\x3b\x41\x75\xec\xa7\xee\x1e\xd0\x99\x27\xa3\x8e\xea\x9e\xf1\xa5\x4d\xfc\xa2\x4a\xcc\x4a\xc2\x8e\xd0\xfe\xe3\x76\x67\xf1\x48\x0b\x99\x29\xd3\xe9\xd8\x94\x6d\x16\x59\x34\x14\x7b\x6a\xfd\x68\xf3\xd0\x38\x11\x26\x1a\x9f\x34\xdb\xa8\xc3\xae\xcb\x60\xd2\x17\x51\xfc\x92\xc2\x2e\x96\xb5\x0b\x8c\x15\xfc\x6b\x28\x97\x69\x9d\xb5\x50\x46\xb1\xfb\x4e\xc7\x21\xe0\x3f\xa9\xf0\x4e\x02\x07\xfa\x46\x1d\xbe\x2e\xc3\x6a\x39\x1c\xad\x64\xb1\x4f\xbf\x6a\xa0\xba\xb9\x60\x85\xe2\x65\x0c\x12\xfc\x0e\x0d\xe0\x81\xe3\x66\xf9\x1c\x50\xe1\x20\x10\x89\x9d\x75\x6f\x35\x0e\xa1\x68\x14\x2b\x62\x45\xeb\x7b\x3a\xd8\xda\xa8\xb8\x23\xa2\x40\x14\xd3\xf9\xa3\x0a\xbd\x81\xb1\x67\x20\x83\xb5\x64\x14\xe1\x9c\x4f\xbd\xc6\x62\xf2\xef\x23\x21\x24\x7b\x69\x45\x54\x13\x26\x2e\x9a\xce\xa7\xfc\x27\x74\x2f\xe0\xe2\x4e\x51\xb4\x8c\x01\xf8\xf0\xd2\x47\x72\x62\xdc\x83\x1e\x29\x1c\xb9\xb3\xe3\x9a\x1a\x9d\x06\xa5\x94\x5c\x39\x15\x99\xb0\x84\xfd\xdd\xf0\x80\xba\x6b\xc5\x35\xe6\x63\x3b\x0d\x4b\x8c\xc5\x2f\x6e\x91\x58\xfc\xa2\xf2\x79\x8e\xc7\x05\x19\x86\x17\xc0\x13\xdc\xdc\x22\x6b\x19\xf5\x12\x84\xbe\xd2\xf8\x17\x44\x2c\xc3\x33\xb0\x54\x43\x0e\x0d\x60\x29\x6f\xd2\xa6\x1a\xaa\xe4\xe6\xf6\xfd\xeb\xdb\x33\x74\x0b\xb9\x5f\xb3\xd9\x6f\x74\x7d\x7d\x0c\xd1\x89\x55\x8a\xf9\x36\x7d\x00\x90\xf3\x7d\x6c\xc0\xb4\x90\x6a\x70\x7e\x82\x31\x09\x82\x7c\x47\x6d\x0d\x3d\xe9\x47\xcf\x0a\x8a\x23\xbd\xbc\x72\xab\xae\xf4\x73\xe7\x6b\x37\xfd\xb8\x6b\x30\x78\x63\x4f\x38\xa1\xb1\xe1\x47\x28\xbf\x66\x07\x5b\x1f\xe8\x98\xbe\x86\xdb\x73\x85\x28\xb6\x78\x96\xb2\x25\xe2\x11\x6a\xd6\x97\x96\x2d\x75\xfa\xa2\x63\xb6\x09\x2e\x6b\x36\xdb\xb7\x1c\xf3\xb8\x9d\x71\xb8\x4c\x95\xcd\xb6\x8b\xd2\xb2\x47\x35\xa7\xdd\x1c\x82\x33\xf2\x0b\x44\x53\xea\x83\x83\x9f\x61\xa0\x58\x8f\xb1\xab\x77\x1a\x71\x99\x17\x99\x93\x6e\x29\xe9\x16\xf4\x43\x14\x1b\xd5\x6f\x38\x2c\x95\x35\xda\xaf\x9a\x39\xaa\x5b\x46\x51\xc5\xc6\xca\xed\x3c\x74\xe3\x71\x04\x58\xb5\x8d\x7b\x2a\x90\x5b\xc0\x33\x0c\x3f\x4a\xc9\xc4\x3b\x96\xa5\x31\x60\xb1\xa1\x91\x21\xec\xbe\x41\x38\x37\x02\x7a\x5f\x11\xfc\x2d\xab\x60\xc1\xca\xfe\x38\xe9\x12\x3d\x80\xad\x7f\xc8\x25\x7a\x18\x39\xfb\xcb\x2e\xd1\xff\xa0\xa1\xc0\x8d\x01\x31\x63\x91\x63\x12\x19\xd3\x67\x8c\x42\x64\x7e\xa5\xea\x7e\x2c\x11\x4b\xcb\x7b\xf4\x11\x2f\xc2\xdf\xad\x33\x52\x7b\x00\x02\xce\xff\x8c\x39\x40\xac\xc4\x1d\x73\xc8\x83\x70\x8d\x09\xbe\x70\x91\x1a\xa5\x4a\x40\x81\x7a\xa2\x13\x14\x38\x62\x90\x23\x06\x21\x7e\xf8\x79\xc8\x46\x8f\x23\xa8\xf0\x79\xb9\xad\x4a\x1c\x50\x85\x05\xac\x2a\x1f\x35\xf0\x94\xf1\xab\x1d\xa2\x91\x24\xd6\x2d\x1f\xc6\x01\x55\x10\x4f\xe5\xc6\x70\x2a\x37\xe8\xca\xbe\x10\x57\x65\x38\x64\xe0\x17\x21\x4e\xe2\xd8\x38\x3c\xc9\xb6\x98\x9c\xa4\xc7\x48\x67\x83\xe5\xf8\x52\xa8\x95\x13\x2f\x4b\x1b\x73\x3d\x91\x68\xfd\x19\x8b\x4b\x07\x0a\x27\x56\xc1\x88\x53\x53\x24\xfe\x4a\xdc\xe8\xc3\x42\x39\x37\x8b\x78\x6c\x91\xb8\x0e\x92\x50\x19\x1c\xc2\x50\x09\xc6\x16\xea\x63\xed\xa3\xee\x0e\xd2\x1d\xb2\xdb\x8b\x13\x65\x71\xb4\xa1\x80\x68\x97\x11\x4b\x72\x9c\x9a\xd4\xab\x87\x6d\x0f\x7c\x4e\x5c\xb2\x2a\xf8\x5e\x15\xb9\x4f\x5a\x83\xda\xc9\x38\xee\xe4\x0a\xfc\x47\xe5\x73\x44\xa9\x93\x04\x4f\x72\x59\x74\x6f\x4b\x0e\xe4\xd4\x3e\x55\x6f\x35\x35\xfa\x23\x7e\x89\xef\x7e\x18\x1a\x42\xbc\x23\xac\x93\x38\x23\xa6\xa1\xf8\xf7\x81\xd4\x65\x75\xa3\x72\x0a\xfa\x08\xac\x5e\x89\xdf\x0f\xbb\xc1\xe3\x4c\x6f\xfa\xf8\xd2\x94\x5b\x73\x8e\x68\xd5\x98\xa2\xee\x84\xa6\xfa\x21\x77\x3c\x66\x49\x04\xb9\xa2\x71\xc2\x38\xbc\x88\xb2\xd9\xe3\xdc\xf8\x31\x58\xbe\x4f\xd8\x7c\x2a\x84\x99\xff\x3c\x7c\xc9\xcc\xb0\xb8\x4b\x5e\x57\x34\xa2\x8e\x94\xf8\x30\x73\x6d\x9c\x49\x71\xd7\xb7\x52\xe4\x26\xed\x3f\x2e\xf2\x9f\x1e\x00\x0b\x3f\xbd\x8b\xbb\x0b\xd8\xaf\xba\x1d\xe9\x4f\xdf\x97\x96\x21\x3d\xf1\x6f\x7a\xa5\x83\x8a\x0b\x7d\x69\x50\xdc\xe7\xff\x27\xf6\xbc\xd3\x5d\x1b\xd1\xdd\x56\x43\xa5\x3a\xcb\xa6\xc4\xa0\xd1\x6e\xc2\x08\x5d\x28\x05\xdf\xa1\x7b\xee\x6e\x18\x59\x41\x8a\x4f\xdf\xad\x92\x27\x06\x3c\x23\x2a\x42\x8e\x4c\xe3\x49\x85\x1b\x82\xab\x7d\x05\xaa\x08\x4d\xb8\xc2\xe1\x99\x34\xb5\x08\x0b\x85\xd9\xca\x2c\xa5\x44\xdd\x9c\x1d\xe1\xc7\x0f\x60\x08\xf5\x27\x19\x5f\x79\x5b\x4b\x61\x17\x36\x0c\xc4\xe0\xe0\xda\x41\x9a\xdf\xdc\x5c\x9e\xdc\x50\x44\xe1\xa2\xbc\x71\xd7\x72\x32\x85\x76\x1c\x35\xea\x1e\xfe\x46\xc9\x58\x2a\x3c\x2e\x98\x6e\x60\x14\x73\x37\x8e\x9c\xc5\xaf\x34\xe5\x91\x91\xa7\x14\x16\xb1\x7b\xbc\x11\xa3\x0d\xe0\x1a\x8c\x73\x74\x28\x25\xeb\x25\x26\xe4\x62\xe3\xa1\x39\x82\xe0\xb9\x3c\x9f\xe8\x61\x7a\x2a\x60\xe4\x3c\x46\x12\x43\x28\x1a\xc0\xa7\x03\x00\xa0\x98\xb0\xe7\xce\x2c\xf0\x7b\x9d\xaa\x3e\xbc\x9a\x4c\xa6\x64\x9d\x8a\xad\x26\x91\xc7\x57\xf6\xaa\xc8\xe5\x1f\xec\x78\x80\x37\x6e\x40\x1a\x5f\x39\x14\x8f\x54\xfe\xd1\x65\xb8\x69\x34\x26\x31\x43\x89\x82\x04\x87\x6d\x8a\x58\x25\x40\x69\xc2\x2e\x0d\xa0\x3f\x68\x07\xe2\x13\x30\x88\xa1\x12\x1f\x04\xb5\xd9\x91\x18\x5e\xde\x75\x30\xb4\x5a\xd1\xe6\x81\x27\x86\x5e\xc4\xbf\x6d\x01\xf1\xc2\x46\x34\xbd\xa3\xe7\x54\x62\xe4\xe7\x65\x9f\x40\xab\x27\x42\xca\xf5\xf2\xbe\x0a\xbf\x2e\xe1\xc6\x82\xb7\x09\x78\x37\x3e\xce\xfc\x63\x9c\x8b\x33\xf7\x8b\x1f\x7f\x69\x23\x65\xe7\x2c\xa6\x91\x99\x08\x6e\xc2\x9b\x02\xc9\x72\x25\x4f\x5d\xc6\xcf\x63\xe0\x49\x88\xbe\xf3\x8f\x65\xb4\x12\x87\x6f\x03\x09\x8a\x7f\x1c\x75\xa6\xe6\x6d\x8b\x8b\x6b\x3c\x1a\xc2\xfc\xe7\x0e\x22\x0a\xd5\x03\xed\xeb\x0a\x4d\x43\x4b\x0a\x15\x01\xde\x7f\x80\x69\xda\x12\x3e\x3c\x8b\x9f\xf0\x53\x82\xb0\xf2\xf7\x2b\xfa\x35\xa3\x63\x4f\xf4\xca\x7b\xfc\xfb\xbd\xb9\x9b\xcf\xc2\x6c\x59\xd2\x4b\xcb\x4c\xd4\xd6\x85\xfe\xe2\xd8\x27\xa1\x80\x37\x72\x6c\x55\x3d\x26\x83\x88\x5a\xc0\x28\xf7\x2c\x4d\xee\x39\xa0\x16\xfd\x31\x3a\x74\x1d\xea\x54\x7f\x4b\xa8\xc3\xe5\xd1\x18\xff\xda\xad\x82\xfe\x8a\x45\xa2\xab\x47\x11\xd9\x73\x12\xa5\xc6\x4f\x97\x26\xe9\xee\xed\x0c\xa7\xad\x89\x33\xe3\xed\x89\xd3\x8f\xf2\xa4\x46\x9c\xd4\xca\xab\x1a\x71\x92\x58\x7a\xc4\x29\x87\xac\xa1\x49\x14\x07\xc4\xa1\x4c\x8a\x3a\xdb\xcd\xb8\xeb\x71\xf5\x41\x10\xd8\xb4\x89\x89\x31\xe9\x8b\xac\xc9\x08\x42\xd8\x9c\x38\x99\xdf\x9e\x76\x2f\x8f\xc7\x19\x4a\xc6\x0f\x9a\xf5\x8e\x11\x51\x0b\xec\x2e\x1c\xa7\x08\xf9\x2f\xef\x4d\x87\x54\x3e\xac\x71\x42\xe0\x4e\xed\xb8\x34\x65\x96\xf2\x86\xcc\x04\x6c\x09\x5f\xee\xe1\x4b\xf8\xf2\xa9\x72\xf2\x74\xae\x48\x55\xdc\xb3\xec\x13\xc5\x9a\xbe\x5a\x7c\x70\xaf\x18\x47\x25\xe0\x14\x03\x3f\x2c\x0e\x8e\x5b\x73\x58\xb5\xa7\x48\x32\x94\x44\xfb\x90\x9b\xb7\x78\xe0\xae\xbd\xb5\x86\xbf\xf3\x38\x96\x07\x57\xb0\xd0\x01\x8b\x0c\xd1\xd1\x40\xd1\xad\x17\x1a\xd3\x9b\x13\x0f\xfb\xa6\x8f\x21\xc6\x41\x78\xd4\x25\x83\x61\xe6\x18\x05\x1a\xfe\x9a\x66\xd2\xb1\x69\x81\x10\xc0\xb1\xc1\xd9\x16\x6a\xe7\x6b\xc6\xc9\x72\x39\xd8\x40\x52\x1b\xed\x28\x5c\xeb\x98\x8e\xe0\xa2\xac\x8e\xb9\xbd\xa9\x74\x94\xd3\x4d\x7c\xd5\x00\xf9\x02\xad\x36\xfa\x06\xb1\x0a\x7b\xb3\xb2\x8c\x0d\x78\xe9\xb2\x24\x62\x89\xee\x37\xa8\x25\xca\x9a\xb0\x3f\xc4\xbc\xec\x5e\xfa\x85\x06\xe3\x61\x7e\x65\x8b\x66\x8b\x28\x54\x37\x0a\x80\xe3\x29\xe0\xe1\xf2\xcd\xda\x3d\xd8\x9c\x35\x2b\x78\x60\xc2\x84\xd5\xae\xf5\x21\xfe\x11\xf4\xc6\x55\x02\xe5\x35\xaa\x1a\x29\x21\xf9\x19\x60\x7d\xca\x2c\xb4\xd3\xd8\xf6\xba\x5a\x2f\xf9\xb5\xec\x76\xcb\x7a\xef\x17\x84\x6f\x94\xa3\xba\x37\xa7\xc4\x87\x12\xe2\xaa\xf8\x6c\x59\x43\xdc\xde\x33\xf7\x5f\xf1\x1b\x26\xdf\x4f\xc4\xb0\xe7\xdb\x96\x9f\x35\x01\x36\x67\xbe\x4a\xe9\x4e\x10\x93\x08\x7b\xcd\xcf\x7c\x7d\xf3\xe0\xd6\x31\xa4\x50\x31\x8c\xfa\xae\xed\x6e\x65\x9c\x80\x90\x1b\x66\x14\xd9\x6a\x24\xd3\x1a\x82\xeb\xa9\xd8\x52\xdd\x17\xb3\x1b\x18\xe6\x0e\xdf\x28\x57\x1d\x67\x2b\xd2\x3f\x2b\x82\x4d\xd5\x80\xde\x30\x95\xb8\xf3\x1b\xa1\x5c\x7b\x1e\xcf\x27\xbe\x26\x21\x3d\x6d\xa8\x3d\x18\xc0\x2f\x3e\xf0\x1f\x23\x89\x31\x72\xea\x71\x51\x11\x50\xd4\x4d\xdd\x13\x4b\x63\xfd\x33\x27\xcf\x5d\x4a\x3b\x51\x9c\x25\xf4\xd7\xcb\x9e\xa3\x95\xb9\x1a\x1b\x7e\x1e\x3d\xc8\x1a\xa2\x7a\x4c\x3e\xb8\x5a\x90\xdb\xae\x59\x52\x0f\x7a\x22\x2b\xa3\xc8\x44\xbe\x8d\xa8\xae\xd6\xaa\x57\x78\x50\x92\xc5\xfb\x69\x37\x5d\x54\xf6\x50\x73\xe4\xce\x65\x49\xeb\xd3\x1f\x96\x98\x73\x8b\x58\x46\xac\xf5\x6a\xcc\x2b\x4e\xe6\xc7\x7f\xc7\x1d\xb8\x61\x69\x2d\xdf\x0d\x8d\x4e\x95\x66\xd3\xf5\x10\x48\x64\x58\x67\x23\x71\x45\x06\x15\xdc\xea\x6d\x6d\x76\x18\xac\xdd\x0b\x4a\x9a\x58\x37\x2e\x39\x5c\x00\x94\x3d\xf5\x8b\xcd\xd1\xcc\x6d\xba\x64\x71\xb5\x22\x2f\x2d\x57\x31\xaf\x39\xc1\x5d\x0c\x97\x37\x95\x67\x63\x92\xc5\x8b\xba\x3e\x84\x1d\x7d\x39\xb5\xa9\x71\x2d\x55\x2b\x8d\x06\xc7\x71\xd6\x37\x03\x8c\xce\x15\xeb\xd5\x27\x42\x36\xad\x54\x90\x8f\xa4\xd0\xaa\xae\x3b\xbc\xf4\x72\x00\x5d\xc8\xa6\x83\x1c\x19\xcf\xa5\xc2\xd6\x60\xbd\x9b\x18\x95\x94\x1e\xae\x19\x95\x3e\x70\x1c\xb1\x5b\x56\x6d\x8f\x18\xa5\xd4\x5b\xd3\xaf\x61\x61\xda\x6a\x97\xaf\x2f\x10\xd9\xd4\x27\x4f\xad\xc4\xa8\xa6\xef\x77\x54\x79\xb2\xe3\x75\xb6\xde\xda\x89\x9e\x9f\x22\xfd\x0b\x5d\x8f\xea\x86\xbe\x47\xd5\xa7\x3a\x97\x37\xb8\x70\x65\xad\xfa\xf5\xce\x76\xf0\x8b\xdb\x2e\xd9\x16\x21\x34\xa5\x2f\x78\x31\x19\x40\x34\x39\x1d\x25\x94\xea\xd8\x09\x74\xaa\x51\xba\x63\xe8\x0e\xc9\xd8\xc2\x24\x1c\xdc\xa7\x04\x82\x48\xcc\xb3\xc9\x4a\x35\x9c\xd3\x97\xca\x0c\xe8\x69\x04\x29\xe6\x1b\x78\x2c\x9e\x80\xad\x32\x35\x7a\x30\x0b\x31\xd1\x19\x35\x87\x08\x56\x72\xd9\xad\xaf\xd7\xa5\xf5\xc1\xac\x0c\x8d\x43\xd3\xa2\xd2\xcc\xef\x50\x69\xc6\x96\x17\x6c\x2f\x71\xe4\x80\x58\x28\xae\x2c\x2f\x24\x3e\x1d\x91\x12\x23\xc4\xe6\xea\x29\x3e\xfb\xba\x1a\x07\x38\xe4\x7f\x55\x15\x37\x36\xa9\xf1\x4a\xcd\x94\x6f\xad\xa2\x23\x6a\x17\x49\x29\xc8\x6b\x99\x25\x15\x0f\x14\x7d\xb3\x81\x20\x94\xc3\x3c\x3a\x4e\xc9\xbf\xcd\x20\x45\xf9\x65\x31\x55\x42\x88\x4a\xd3\xc5\x62\xf7\x0c\xb9\x16\x04\x05\xfe\x06\x74\xb7\x7c\x3b\xda\x12\x28\xdb\xdb\x5b\xba\xbc\x28\x64\x93\xa4\x08\x19\xc3\x6c\xaf\xa6\x68\x48\xba\x28\x16\x9d\x66\xe8\x1b\xeb\xe9\x3b\xdb\x17\x88\x5c\xf5\xce\xbf\xce\x5f\x57\xe6\x0d\x32\x94\x67\x36\xef\x6b\x83\x97\xe2\xa2\x39\x79\x93\x35\x1b\x66\xc4\x2a\x43\xaf\x7e\xd2\x01\x0c\x08\x30\x69\x21\x0d\x67\xa4\x93\x62\xda\x5e\x8c\xb3\x1e\x27\x2c\xbb\xb9\xe0\x54\x2d\xc7\xf1\x80\x17\xaf\x38\x02\x70\x5c\x95\x19\x2f\x61\x64\x06\xd5\x5f\x31\x4b\xc6\x1a\x75\x29\x3f\x7c\xa6\xfd\x15\x24\xed\x06\xa1\xb5\x10\xf2\x15\x1a\xb9\x06\x6f\x1e\x81\x2d\x11\x0d\x5e\xee\x06\x7e\xc3\xd3\x7b\xe7\x5f\x7a\x77\x2f\x4c\x3b\x52\x49\xb1\xb1\xab\x7f\xfa\x90\x4b\x14\xed\x32\x6c\x7c\x1c\xb9\x9f\x89\x9f\x21\x1c\xa0\x34\x83\x42\x5c\x52\x98\xf8\xe0\xcc\xab\xd2\x2a\xb7\x54\x50\xfb\xc2\x71\x80\x89\x24\xa7\x9d\x93\x9a\x2b\x67\xb6\xc2\xb2\xdd\x3d\x5c\xd9\xbc\xdf\xbc\x0b\xc0\xc0\x20\x2b\xc4\xa6\xf7\xd9\x8e\x5b\x96\xc0\xce\x12\xb4\x59\x74\xa0\x7e\x5c\x04\x18\x41\xe8\xd6\xde\x1a\x05\x7a\x72\xb5\xfd\x8b\x07\xee\x95\xc3\xe8\xcd\x3d\x2e\x3e\xd0\xf9\xc5\x8b\x12\x0b\x78\xf5\x18\x0c\x9e\x6e\x4d\xd7\x3a\x7a\x31\xd6\xbf\x4f\xeb\x94\x41\x37\x3e\x50\x1b\x8b\xdb\xbe\xf8\x92\x6b\x3c\x0a\xf7\x64\x6d\xb2\x1b\xff\x57\x1e\xad\x8d\x16\x2a\x36\x9f\x79\x1c\xed\xd1\x2d\xe6\x33\xfc\x94\xe7\x9c\xfd\xee\x62\xe4\x17\xbf\xed\xe9\xd1\x1f\x17\x0d\x48\x8d\x3f\x63\x1b\x11\x4e\x70\x9a\x82\x57\xac\x24\x10\x19\x1e\xe3\xb2\xb4\x83\x48\x9c\x27\x70\x8d\x64\x5b\x6a\xf9\x89\xa7\x29\xe2\x9e\xe5\x3b\xd5\x4c\x4a\x9a\x44\xa6\x0f\xcf\xba\x4a\x2a\x42\x5a\xb7\xfe\x69\x57\x49\x1b\xc6\x60\x66\x99\xa2\xe2\x9d\x64\xa4\x03\xcc\xf3\x9a\xf3\xcc\x39\xf2\xb4\x0e\xa2\xb7\x3c\xce\x73\x7e\xc4\x50\xf1\x9a\x66\xf8\x11\xcb\x77\x08\x69\x2a\xdf\xf2\xce\x65\xbe\x78\x19\x3d\xe7\xa8\x59\xce\x76\xe7\x49\x08\xbb\x19\x0d\x90\x1b\x1a\x0c\x2c\x6a\x97\xcb\x4c\xa1\x4d\x46\x98\x52\x46\x0d\xc8\xcf\xc4\x74\x5c\xd2\xb6\xc4\x79\x13\xa1\xdb\xba\xbe\x70\x94\x17\xe7\x84\x27\x5c\x02\x8b\x6c\xf2\x8a\x46\xc5\x6e\x36\x67\x6f\xe2\x74\xff\xa6\x23\x72\xc3\x6b\x8e\x13\x25\x82\x6d\x4d\x03\xd9\xc9\xf7\x62\x99\xe6\x72\x25\xbc\x52\xdd\xf0\xdb\x80\xf0\x6d\x2c\x2a\x7e\x63\x83\x8d\xc8\x10\x74\x1e\x71\x7b\x32\xb3\x2d\x36\xdb\x60\x69\x93\x87\x77\x86\x74\x01\x71\xa1\x73\xb8\x35\x5c\x73\x46\x3d\x4f\x9f\xc0\xf4\x2d\x2a\x40\x73\xe1\x6c\x3f\x93\xac\xeb\x9a\x62\xd5\x43\xb5\x2b\x76\x2d\x75\xc3\xfa\x61\x4d\xef\xbb\x51\xb9\xb6\x17\x0f\x9e\xc7\xc0\xc9\x5f\x2a\x1c\x3d\x24\x38\x2a\x25\xb1\xde\x64\x3c\x12\xe9\xcd\x55\x67\xed\x86\x66\x33\x89\x90\xe6\xef\x71\x67\x2c\xdb\x8c\x88\x6b\xf3\x38\x37\x17\x8f\x35\xbd\xdd\x77\x07\x79\xe8\xe0\xe2\xf5\xfb\x73\x73\x33\xbc\xa0\x20\xef\x3d\x97\xdb\x06\x00\x40\x06\x03\x01\x67\x1c\x22\x48\x50\x5b\x23\xf5\x43\x60\x8e\x9c\x1f\x02\x38\x93\xef\xe9\x52\x37\x5f\xce\xd8\x56\xa2\xd5\x69\x41\xd6\x84\xb4\xab\x6b\xa3\x35\xe6\xe6\x75\x5f\x76\xc5\xa1\xb4\x2e\xc5\xb4\xdb\xba\x2f\xf1\x36\x00\x31\xef\x87\xac\x61\x82\x64\x75\x2d\x91\xa6\xcc\xbd\x93\x7b\xf3\xe4\x70\x2d\xbb\xb2\x65\x57\x1a\x5c\xb2\xe6\xfd\xab\x8b\x53\x5b\xad\x9b\x6b\x18\x32\xb9\x39\xee\x8a\x03\x4a\xe9\xe3\xeb\x8b\x0b\xfa\x46\x41\xb8\x03\xd2\xb7\x3b\x0a\xd0\xcc\xd9\xe6\x58\xac\x15\x32\xce\x1f\xbf\x36\x9a\x50\x85\x13\xae\x9d\x72\x4c\x2c\x47\x90\x85\xee\x91\x0c\x6f\x35\x7e\xf7\xaa\xf1\xa4\x99\x1b\x09\xcd\x93\x50\x29\xfd\xe3\x1a\x03\x49\xf5\x0c\x8a\xc7\x21\xf1\x24\xda\x56\xb7\xc8\x81\xba\xd0\xa7\xc3\xdd\xa3\x16\xee\xdd\xf0\x01\xa5\xe1\xb1\x56\x4a\xf2\xa5\x7d\xa4\x94\x5f\x96\xe7\x23\xba\x2f\x46\x54\xe1\xda\x49\x5b\xf9\x4a\x0b\xa6\xb8\xa9\xc5\x07\xfe\x73\xfb\x9c\xd5\xd2\x29\x36\x6c\x4d\xcb\x27\xe5\x96\x82\x34\xe5\x8d\xa5\xb4\x59\x6f\xed\x3a\x2e\x2f\x0f\xab\x31\xbd\x93\xd6\xc1\x72\xd6\x05\xeb\x7e\x01\x86\x7a\xb1\x9e\x10\x84\xde\x60\xe3\x1a\xb5\x9d\x5c\xd1\x69\xb3\x5f\xba\xa9\x45\x92\xe6\xe4\x58\xaa\xe5\xba\xe0\xaf\x58\xc8\xe6\xca\x65\x87\x83\xde\x01\xee\x19\x6f\x01\xd4\x28\xfb\x08\xe0\xf4\xb9\x6a\x2e\x1d\xe5\xc3\xe3\x30\xe4\x9f\xc2\xed\x50\x73\xd3\xdb\x43\x13\xeb\xcb\x4b\xc4\x79\x43\x80\x52\x0e\xcd\x83\x8f\x53\xfa\xe8\x5b\x5f\x8d\xe0\x12\xe7\x03\x92\x34\x96\x4a\x6d\x16\xef\xf8\xe7\x29\x0c\xe0\x63\xf7\x5a\x57\xa3\xe9\xf5\x59\x7c\xaf\x7b\xc8\xa3\xd0\x37\x71\x29\xee\x55\x4b\x99\xa4\x57\xa6\x3e\x9a\xba\xee\xe4\xc9\x91\x38\x9a\xc4\x8a\x63\x10\x1d\xb2\xdc\xaf\x2e\x94\x69\xeb\xa5\x3c\x9a\xe0\xab\x88\x22\x0f\xa7\x36\x78\x39\x8f\xaa\xd2\x14\x86\xf5\x88\x4d\xf1\xcf\x42\x8f\xbb\x5a\x37\xc5\x41\x5d\x47\x2f\xf8\xb7\x78\x8e\xfa\x51\x63\x43\x14\x16\x79\x09\xde\xee\x37\x76\xe7\x83\xa7\x2b\x2b\x37\xb1\x1a\xf9\xca\x41\xc7\x99\xaa\x01\xa7\xe0\x83\x4a\x05\x7a\x24\xa4\x05\x1a\x20\xa4\x05\x3a\x26\xa4\xf1\x88\x9e\x4f\x74\xdd\xb6\xa5\xec\xc5\xc5\xc5\xab\x74\x1f\xa2\x4c\xff\x20\x56\x26\xbe\xa3\xcc\x8c\xdc\x41\x30\x63\x04\x53\xbc\xf3\x20\xaa\xc2\x0b\x79\x1e\x96\x4d\x93\x7c\x0b\x88\xaa\x77\xa7\xfd\x6b\x59\x74\xf6\xcf\x77\xd8\xdb\xff\x4e\x57\xe4\xab\xd0\x86\x43\xdb\xd1\x89\xa1\xcf\xa9\x25\xf1\x2c\x74\xf2\xa0\xaf\xde\xd7\xf1\x0b\xbe\x8a\xbb\x99\x2a\x1e\x82\xb6\xc3\xfa\x81\xf5\xb6\xa2\x34\xf0\x14\x9e\x1b\x17\xdc\x86\x9a\x88\x41\x5f\x12\x89\xd0\xb1\x25\xbe\x34\x01\x09\x6b\x55\x1f\x22\x9f\x1c\x3f\x4e\x89\xc2\xec\xa2\x32\xb3\xe3\xc4\x4b\x7d\xa1\xda\xbd\x64\xa4\x81\x94\xd5\x92\xa1\xa8\xf0\x36\xa1\x6b\xc0\x3d\xb0\xce\xa2\xb2\xf4\x01\x74\x91\x91\xc5\xaf\xb1\x6b\x1d\x5e\x12\x95\x2d\xc8\x8a\x54\x5e\x9e\x60\x47\x27\x9c\x7d\xe0\x8a\xcf\x56\x42\x69\x22\x52\x29\x92\xcd\xeb\xa2\x2a\xf6\xfd\xde\xfc\x6c\xaf\xcd\x05\x65\xcb\x5b\xbb\xa3\x61\x1d\x88\x8a\xcf\x16\xcf\xf8\x93\x46\xc4\x9f\x1e\x31\x89\x1f\x2c\x1c\x73\x96\x25\xab\xd1\x1e\xab\x5e\xef\x29\xee\xba\x32\x5d\x28\xba\x80\x02\xd9\x19\xd5\x79\x87\x9c\xf8\x81\xef\x71\x65\xe7\x66\xaf\x70\xe3\xdc\x4d\xa7\x00\xe7\xaf\xbd\xed\xa9\x65\x5b\x6d\x70\xe8\xf1\x87\x5f\xa7\x91\xf6\x9b\xe2\x93\x5f\x1d\x71\x47\x65\x51\x14\xe1\xbd\xc5\x13\xe7\x8b\x2a\x6a\x1d\xd8\x59\x7f\x0a\xf0\x31\x20\x4c\x40\x93\xac\x6d\x23\x6b\x9e\x75\xfe\xed\x67\xe6\x41\xc5\x4b\x24\xda\xaa\x70\x45\xbc\xe6\x2f\x1d\x76\x3c\x6a\x2d\x36\xc9\x85\xa4\x45\xdc\xae\xd2\x99\xab\x61\x27\x88\x32\xe6\xc5\xb3\x57\x6f\x01\xd9\x83\xb2\x23\x64\xa1\xe9\x23\xc4\xa2\xe9\xd3\x88\x44\xf4\xc2\x3a\x03\xd6\x08\x9f\x4e\x2d\xbc\x14\xbb\x6d\x06\x02\xe3\xce\x26\x04\x1f\x93\x0d\xe9\x51\xc8\x09\xd6\x68\x38\x52\x4e\xbf\xd2\x22\xfe\x65\x34\x29\xe3\x3e\x47\xdd\x55\xa1\xb3\x8a\x95\x88\x01\x1d\x89\x89\x92\x47\x47\x08\xe0\x3b\x35\x24\x57\x10\xde\x5e\x85\x44\xcf\x41\x51\xf7\xe9\x8a\xb9\x6f\xd7\xe0\xb9\x7e\x2b\xa0\xfa\x81\x11\xec\x16\x4a\xbb\x3e\xe5\xdf\x26\x26\x07\xf4\xe8\xe1\xb8\x48\x49\xea\xad\x33\x5a\x70\x02\x1b\x6c\xd6\x7e\x25\x44\xd4\xfb\xfc\xa9\x7f\x24\x8e\x43\x4c\x0d\x67\x51\x16\x97\x56\x85\xc9\x3c\x0d\x93\xf7\xbd\x9f\xc3\xb6\xeb\x0e\x6d\x12\x4c\x80\x1f\x29\x1b\x8c\x3d\x34\xa1\xe3\x42\x13\x88\xd3\x71\x19\x1f\x9b\x43\xc1\xc2\x7d\xb7\x1c\x3f\xd5\x2e\xba\xd9\x60\x79\x5d\x39\xbd\x1e\xa4\xa0\x7e\x0c\xb1\xd9\xa6\x51\x24\xf9\x5c\x7f\x4c\xd2\x2a\x20\x00\xb4\x57\xba\xf8\xa7\xfa\x44\x09\xbe\x1b\x29\x5f\x29\x23\x67\x7b\x34\x5f\x37\x84\xfa\x9f\xd2\x3f\xa7\x9d\x44\x17\xd5\xf4\x70\x9e\x5c\x0a\x08\x91\xbc\xe7\xd0\x6e\x59\x05\x06\x3a\x94\x4d\x1e\xa9\x70\xa9\xc3\x17\x2d\x5c\xba\xfd\xc3\xae\x7b\xaf\xdf\x7b\x4c\x64\x2b\xed\xdd\x8e\xef\x9d\xa0\xe5\x8e\x5a\xa9\xc5\x49\x57\x0c\xf4\x25\x8c\x25\xc7\x4f\x0b\x63\x1d\xfb\xe7\xf8\x31\xe3\x55\x31\x7e\x1b\xb0\xe3\xcd\x9a\x1a\x83\xa3\xde\xb8\x80\x33\xd9\x72\xc6\x50\xf2\x49\x30\x00\x36\x75\xda\x8a\xcb\xd5\x08\x64\x4d\x9c\xb2\xfc\x56\x9e\x03\x50\x6b\x37\x9f\x37\x0e\x0f\xeb\x72\xea\x03\xd5\x98\x47\x05\x99\x37\xf0\x0f\x40\xeb\x20\x56\xf2\x36\xd5\x8d\x71\x38\xd9\x22\x6e\x8d\xfb\xfd\x63\xf2\x38\xe3\xc0\x92\xcf\xbd\x2e\x23\x31\x4b\x42\x6c\x81\xbb\xf2\xa0\x09\x6d\x8a\x0f\xcd\x28\xbf\xf3\xe4\x91\xba\x38\xac\xf8\xb7\x21\x7c\x38\x82\x8a\x87\x70\xea\x83\x47\x52\xfc\x2b\x15\xd4\x26\xdb\x34\x0a\x03\x26\x62\xc7\x41\x14\xf6\xb6\x59\x8f\x5e\x59\x49\xc7\xea\xde\xc2\xf8\x67\xd7\xba\xcc\x55\x1e\xf7\xf8\x5d\xdf\x42\xe0\xaf\xc1\x1c\x1f\x8a\x28\xee\xa1\xcc\xf6\x4f\xd1\x6b\x1a\xda\x44\x12\x19\xfa\x77\xa7\x84\x48\x02\x34\xc7\xcd\x69\xc0\xf8\x71\x6b\xc9\x73\x23\xbf\xab\x0d\x19\xc2\x6e\xc9\xa8\xbe\x6a\x48\x13\xb1\xaa\x7f\xd7\x60\xe5\x7f\xf7\x80\x7c\x28\xb9\x11\x3c\x10\xf4\x68\xf4\x1d\xdd\x0c\xd9\x59\xbf\xad\x83\x1d\x0a\x60\xc2\xb1\x46\xf0\x30\x1d\x0d\xa8\xbf\xd2\x77\x2a\x92\xc1\xf0\x46\xfa\xb7\x44\x78\x1b\x27\xf6\x9b\xf3\x23\x38\xe1\x47\x0a\xbe\xf3\xc1\xe5\xfd\xeb\x70\xfe\xc1\x80\xc2\x05\x06\x66\xb1\xf9\x77\x2e\x56\x38\xc1\x3e\xa2\x7e\x7f\x9c\x65\x9b\x9a\xc6\x24\x96\xe3\xfc\xe4\x22\x3c\x27\xe4\x01\xbf\xaa\x9f\xe1\x83\xfe\x7c\xdb\x2e\xbe\x35\xcc\xad\x10\xa8\xdc\x6d\x67\xdf\xee\xe9\x7b\x4f\x3c\x74\xdf\xf1\xe7\x96\x3e\x81\xf2\xf1\x3b\xa7\xdf\x79\xb6\xe1\xdf\x57\xf4\x9b\x88\xe4\x9d\xd4\x21\x34\xfa\x2d\x9e\x67\x20\x4e\x00\xdf\xd7\xf4\xf5\x09\x33\xbc\x0b\xcf\x35\xb4\xcd\xcf\x73\x68\x37\x70\xf2\x98\xa1\x8b\x4e\x5e\xed\x90\x9f\x9c\xba\xad\xfb\x86\xd3\xb4\xcb\x3c\xbb\xe6\x4f\x79\xdf\x9e\x12\xd0\x25\xa7\x5c\xc1\x08\x8c\x1b\x22\x92\x6c\x2b\xed\x64\x99\x6b\xfd\xda\x66\xd2\xce\x27\x36\xe9\xa7\x94\x26\xbb\x5a\xba\xa1\xb8\x71\x70\xa2\x1b\x88\x8e\x82\x56\x2f\x6f\xea\x03\x02\xdf\x7e\xf4\x2f\xb7\xba\x37\xf1\xce\xe0\xaf\x1c\xd8\x51\x44\xd4\x82\x96\x60\x57\x16\x3b\x25\xfd\xfb\x03\xdc\x58\xa1\x23\x70\xe1\xa9\x8b\xea\xd0\x2b\xc7\x19\xbf\x76\x99\x86\xee\x62\x4b\x77\x44\x41\x09\xf5\x99\xad\xa5\x8d\x5c\xae\xe8\x6e\xd3\x50\x01\xed\x06\x7c\x2e\x75\x73\xff\xdf\xfe\x8d\x2d\xb5\x88\x9c\xff\xf7\x7f\x37\xaf\x9f\x3c\x10\x82\x94\xf1\x69\xce\x91\xf2\xf6\xd9\x1f\xc5\x1e\xb6\x99\x51\x15\x4a\xfb\x29\xa9\x05\x57\x5c\x36\x60\x66\xc5\x50\x30\xde\x73\x6f\xe5\xce\xfe\x4f\x00\x00\x00\xff\xff\x2d\xb9\x81\x84\x3c\xb3\x00\x00") func confLocaleLocale_nlNlIniBytes() ([]byte, error) { return bindataRead( @@ -4499,12 +4499,12 @@ func confLocaleLocale_nlNlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 45968, mode: os.FileMode(493), modTime: time.Unix(1446027990, 0)} + info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 45884, mode: os.FileMode(493), modTime: time.Unix(1448150144, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_plPlIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\xcd\x8e\x1c\x47\x92\x27\x7e\x27\xc0\x77\x70\x55\x83\x90\x04\x94\x52\x50\xeb\xff\xdf\x5d\x68\x95\xd2\x52\xa4\x5a\x62\x8b\x5f\xcb\x2a\x82\x18\x09\x42\x2a\x32\xc2\x2b\x2b\x2a\x33\x23\xb2\xe3\x83\xa9\xc8\xc1\x1c\x56\x68\x61\x2f\xfb\x00\xab\xd1\x65\xde\xa1\x4f\xdb\xa3\xd3\x34\xeb\x45\xf6\x49\xd6\x7e\x66\xe6\x1e\xee\x11\x91\x45\x4a\xd3\x98\x4b\x55\x86\x7f\xbb\xb9\xbb\x7d\xb9\x99\x79\xb2\xdb\x2d\x32\x5b\xa7\xf3\xcf\xec\x61\x59\x6e\x6c\x5d\x24\xa6\xad\xaf\x7f\x68\x57\x89\xf9\x22\x6f\x4c\x91\xec\xf2\x3a\xa1\xc4\xbd\xf9\xa2\x34\xd9\x21\x4f\xae\x7f\x48\xae\x5e\xfd\x98\x26\x06\x89\xf4\x51\x17\xdd\xd6\xd4\xb6\xda\xdb\xea\x60\x6f\xdf\xba\x7d\xeb\xb2\xdc\xda\xf9\x59\x53\x95\x54\x60\x75\xfd\xc3\xdf\xfe\xb2\x2f\x92\xdb\xb7\xb2\xa4\xbe\x5c\x96\x49\x95\xcd\x9f\xb6\x9b\x5d\xde\xdc\xbe\x65\xbf\xdf\x6d\xca\xca\xce\x9f\x64\xeb\xaa\xdb\x27\x57\x54\xd3\x6e\x76\xf3\xa7\xe5\xb6\x4c\x6f\xdf\xaa\xf3\x55\xb1\xc8\x8b\xf9\xd7\xc9\xa6\x5c\xb5\x57\xa6\xce\x5f\xfd\xa4\xa9\x65\xdb\xcc\x5f\x74\x9c\xac\x29\xed\x8e\xca\x55\xf6\xca\xd6\x4d\xe5\xcb\x56\x76\x95\xd7\x8d\xad\x26\xb2\xf6\x76\x59\xe7\x8d\x1b\xe5\xed\x5b\x2f\x6d\x55\xe7\x65\x31\x7f\x41\xff\xaf\xe8\x7b\x97\xac\xfa\xcc\xc6\x6e\x77\x9b\x04\xa5\x0f\xc9\x72\x53\x16\xb7\x6f\x6d\x92\x62\xd5\xa2\xc8\x1f\x5f\xfd\x74\xe8\xd6\xb7\x6f\xa5\x95\xa5\x02\x8b\xc2\xee\xe7\xcf\x9b\xfd\xdf\xfe\x52\x1d\x66\xb3\xd9\xed\x5b\x2d\x81\x65\xb1\xab\xca\x8b\x7c\x63\x17\x49\x91\x2d\xb6\x98\xef\x53\x4e\x30\xed\xf5\x2f\x5d\xb3\x2e\xf7\x45\xbe\x4e\x4c\x6e\xf6\x34\xb0\xd4\xea\x84\x6c\x46\x53\x5f\x24\xb5\xcc\xbe\xdc\x27\x45\x67\xae\x92\x75\x09\xf0\xa2\xd1\x22\x21\x10\x3f\x4e\x0e\xfb\xc4\x3c\x0f\x9a\x21\x98\x6e\x93\x7c\x33\xff\xfc\x3d\xfc\xc3\x34\xea\x7a\x5f\x12\xc8\xbf\x4c\x68\x49\x4b\x80\x64\xd1\x74\x3b\x3b\x7f\x41\x8b\x7a\x30\xbb\xb2\x40\x3d\x5a\xb4\x34\xd9\x35\xe9\x65\x32\xbf\x27\xff\xd1\x4d\x65\x77\x25\xc1\xa8\xac\xba\xf9\x33\xfa\x79\xe8\xe8\x67\xde\x6e\x6f\xdf\x2a\xab\x55\x52\xe4\x87\xa4\x01\xc0\x9e\xe8\x47\x0a\xa8\x6d\xf3\xaa\x2a\xab\xf9\x23\xfe\x77\xfb\x16\x41\x63\x81\x56\xe6\x8f\xcb\xbd\x35\x55\xd4\x08\xf2\xb6\xf9\xaa\x02\x58\x29\x3b\x31\xfc\xc1\xad\x20\xeb\xa2\xac\xd6\xf3\x3f\xd0\x1f\x5a\xb1\x71\x45\x1a\x81\x54\x2a\xa3\xde\x69\x97\xae\x2c\x67\xd2\x82\x1f\x5e\xfd\x98\x1d\x92\xab\xb0\xc8\x36\xbf\x7d\x2b\xc9\xb6\x04\xd8\x5d\x52\xd8\xcd\xfc\x29\xfe\x1a\x4e\xa1\xea\x49\x9a\x96\x6d\xd1\x2c\x6a\xdb\x34\x79\xb1\xaa\xe7\xcf\xeb\x26\xd9\xe7\xb6\xc8\x13\xb3\x2e\x8b\x86\x8a\x4c\x64\xdd\xbe\xd5\x95\xad\x5f\xe3\xf9\x39\xad\xfd\x95\x91\x2f\xcd\xf2\x95\xce\xf7\xe5\x95\xa5\xb3\xd5\x57\xe5\xd9\xd4\x8b\x0b\x6b\xb3\xf9\x57\x34\xfa\xeb\x1f\x4c\xb2\x6e\xda\x64\x53\x94\xd7\x3f\xa7\x34\xda\x5d\xbb\xd9\x10\x08\xff\xd4\xd2\xe6\xad\xe7\x4f\xd2\x83\x25\x80\xd0\xd9\xb3\xe6\xb0\xcd\x69\x4f\xdc\xbe\x95\xd7\x35\x65\x62\x4b\x2d\x37\x76\xdb\xa1\xcd\x34\x29\x52\x9a\xdd\xdd\xa2\xdd\xe0\x7c\xdc\xbe\xf5\x4d\x6d\x93\x2a\xbd\xfc\x16\x13\xc0\x0f\x3a\x3b\xf5\xa1\x5d\xe7\xb4\xab\x72\xcb\xfb\xf4\xe8\x5a\x63\xaf\xcd\x83\x1d\xa6\x1d\xce\xbf\xa6\x73\x5d\xd6\x07\x2b\x9b\xa7\xcc\xec\xfc\xab\x32\xe3\xbe\xf2\x82\x26\xb8\xd9\x50\x67\xfa\x6b\xfe\x80\xff\xcb\x1a\x35\x79\x43\x50\xfa\xaa\x2a\xd7\xb9\xc9\x35\xbd\xbb\x2a\xac\xc9\x36\x89\xd9\xe5\x84\x44\xa8\xd1\x55\x69\xda\xaa\x4d\x09\x8d\x28\x9c\xb2\x32\x5d\xd3\x41\x02\x76\xa0\xe1\x3c\xb8\x30\x04\xd8\xb7\x2b\xda\x52\x6d\x51\x10\x68\x09\x31\xad\x6a\x34\x97\x67\xd6\xdc\xe7\xb2\xa7\x66\xb7\xb1\x49\x8d\x5d\x97\x64\xe6\xe3\xc4\x34\x49\xb5\xb2\xcd\xfc\x64\xb1\xa4\xb3\xbb\x3e\x31\x97\x95\xbd\x98\x9f\xdc\xa9\x4f\x3e\xf9\xa2\xa5\x6a\x9b\xbc\xb0\xf5\xc7\xef\x27\x9f\x98\x94\x70\xc5\x05\x81\xbd\x33\x4b\x4b\xbb\xd0\xa2\x2f\x43\x47\xa2\x58\x59\x43\x10\x6f\x2e\xd1\x61\x5e\x18\xfa\x51\x1b\xa0\x89\xb7\x00\xbe\x3f\xb5\x84\x4d\x16\xd9\x52\x50\x29\x8f\x87\x13\x2b\x5b\x9b\x47\xdd\xd9\x7f\x7f\x78\x6a\x9e\x96\x75\xb3\xaa\x2c\xff\xa6\x3f\x54\xfe\x43\xda\x9c\xe6\x3c\xbf\xff\x19\xad\x00\x55\x15\xd8\x04\xbb\x6e\x99\x1c\x3a\x93\x51\xa7\xe9\xa5\x14\xc0\xc9\x3d\xef\x76\x71\xc6\x25\xb5\x3b\xff\x92\xfe\x4c\xad\xd6\x08\x01\x50\x33\x01\xee\x18\xf6\xa0\x10\xa6\xdd\x54\x1f\x5e\xfd\xc4\x18\xea\xd5\xff\x24\x94\xb9\x61\x1c\xf5\xe0\xf1\xe3\x27\xf7\x3f\x33\x07\x3a\x0e\x59\xc9\x9b\x67\x6b\xda\xe6\xe2\xbf\x2c\x56\xb6\xb0\x55\xb2\x59\xa4\x39\xaf\x23\x4f\x98\xe6\x54\xd7\x1b\x42\x78\xb4\x37\xce\xab\x6e\x69\xce\xce\x1e\x62\x3c\xcd\xe5\xfc\xfa\x9f\xd3\xdc\x5e\xff\x02\x74\x55\xff\x69\x03\xc0\x69\xbf\xe7\x97\xd6\xe0\x18\x19\x14\x33\xe5\xc5\x10\x4e\x34\xd4\x26\x59\xd2\xb2\x52\xe3\xb6\xaa\x16\x84\x97\x9b\x0e\x50\xe7\x66\x8f\x15\x96\xd6\xe8\x54\x14\x65\x43\x8b\x6a\xb8\x96\xb6\x90\x17\x2f\x93\x4d\x9e\x11\xec\x1d\x60\xe2\xaa\x48\x32\x59\x49\xab\x88\xca\xb4\x9b\xcb\x3d\x36\x03\x61\x2a\xa2\x2b\xb5\x39\x99\x9d\xd0\xa6\xc8\xcc\xc9\x7b\x27\xd4\x60\x51\x2e\x04\xbd\x00\xd3\x67\x44\x35\xe9\x48\x2e\x84\x08\x55\x82\x2d\x9f\x09\x19\xa2\xb3\x90\x1b\x02\x9f\xd9\x96\xd7\xbf\x80\x8a\x76\xd7\x3f\xd0\xa9\x3e\x00\xd8\x4b\x7b\x30\x0d\x2d\xd9\xa1\x47\x3c\x8a\xa2\xa2\x49\x3b\x3c\x16\x2d\xaf\x16\xf4\x4d\x5b\xb3\x44\x93\x3b\xe0\x9c\x19\x4e\xa7\x5b\xa8\xd1\x56\x2b\x57\x7f\xfb\xcb\x86\x8e\x21\x76\x2e\xa1\x42\xe2\x09\x82\x5d\x92\xec\x36\xb4\xfc\x34\xe6\x3e\xc7\xad\xd8\x73\x3a\xa2\xd7\x3f\x53\x1f\x4d\xdb\x10\xb2\xa5\xd6\x36\xeb\x57\x3f\x12\x35\x03\x7e\xb8\xfe\xb9\xa0\xdf\x05\xb5\x41\x7b\xa9\x06\xf6\x0b\xd1\x71\xfe\x96\xe0\x1d\x59\xbc\xaf\x08\xe2\x44\xe9\x02\x64\x4f\x6c\x43\x50\xc0\x75\xf8\xc2\x34\xc4\x6d\xac\xa5\x74\x6b\x0e\xb4\xef\x13\xf4\x72\x10\x36\xc5\x1a\x42\x20\x5d\xdd\xac\xf3\x90\xe0\x30\x27\x03\x34\xd7\x12\xa7\x80\x33\x22\xf3\x8a\x08\x70\x80\x71\x88\x5a\xad\xca\xbe\xb4\x9f\x6b\x5f\xdc\x6c\xdb\x3a\x27\x92\x65\x69\xe6\x19\x0d\xe1\xd5\x4f\x3b\xfa\xdf\x0f\x2b\x9a\x05\x41\x83\x1b\x4f\x80\xb2\x31\x16\x82\x31\x4e\x7c\x49\x34\xba\x98\xdf\x27\x66\x89\xd9\x23\xfe\xf4\x27\xa1\x34\xfb\xdd\xf5\x0f\x1d\x56\x92\x16\xf4\xf9\xb3\x87\x96\x3b\xd8\x80\x62\x73\x2b\xbb\x72\x47\x7b\xe4\x40\xc7\xea\x4b\x3e\x6a\x97\x8b\x5d\x59\x35\xc4\x3c\x55\x0d\xd2\xfa\x24\xd7\xe4\xe3\x76\x6b\x2b\x83\x94\xf6\x14\x67\xb8\x21\x2e\x05\xa8\x76\x4d\x7b\x8d\x20\x96\x50\x9a\x30\x71\xa8\xfe\x5f\xa9\x20\xc3\x76\xcf\xbb\xc7\x9e\x9a\x64\xd9\x45\xfb\xf4\xa2\x2d\xd6\xe9\x15\x2d\xac\x0c\xe0\xb2\x69\x76\xc1\x08\xbe\x3c\x3f\x7f\x1a\x24\x4e\x8c\x01\xd3\xe2\x31\xd0\x72\xba\x0d\x96\x18\x1c\x0f\x07\x51\xde\xf1\xd8\x70\x6d\x45\xd4\x2c\x03\x2a\x25\x38\x0c\x77\x23\x65\x1e\x01\x5a\x82\x2a\x5d\x08\x33\x8c\xea\x7d\xfc\x39\x03\xbf\x45\xbb\x35\x21\xa8\x33\xa9\x4d\xd2\x4b\x63\x99\x69\xe2\x73\x52\xee\x70\x5c\x27\x0f\xca\x2e\xbd\x42\x4e\x61\x95\xd7\x1a\x17\x11\x28\x26\xda\x1e\x2d\xc4\x96\xa0\xc0\x58\xfa\x4c\xe1\xfb\x08\xc0\xe1\xe4\x8b\xaa\xdc\x12\xff\x1b\x7c\xb9\xc9\xc8\x84\x09\xfc\xe5\xa6\x35\x27\x4f\xb2\x13\x5a\xb4\x55\x99\x61\x6e\x07\xf3\xec\x0f\xf7\xcc\xff\xff\xe1\xef\x7f\x3f\x33\x8f\xfa\x63\xde\x94\x54\x18\xbc\x47\x4d\xd0\xe5\xc9\x1b\x1e\xe1\xa9\x59\x12\x2f\x74\xfd\xd7\x7f\xfb\x97\x44\xdb\x24\xba\xb6\x4d\x08\x07\x9b\x13\x3e\x08\x27\xe6\x63\x2e\xf8\xdf\xec\xf7\x09\x71\xba\x76\x96\x96\xdb\x4f\x66\x60\xa8\x08\x17\x57\xee\xc4\x64\xc9\x9e\x78\xfe\x00\x66\xc6\x71\x99\x5a\x6e\x88\x8c\x0a\xae\xd2\xf5\x7c\xf8\x22\x2d\x8b\x8b\xbc\xda\xce\x5f\xc8\x36\xa2\xe1\x36\x04\xb3\x2a\x13\x5c\x57\xf5\xc8\x51\xda\x5c\x10\xce\xcd\x2f\xba\xa0\xb8\xf4\x2e\x60\xf6\xe0\xb5\x15\x71\xef\x0b\xfc\xcb\x53\x7b\x7c\x39\xc0\x70\x80\xd0\xa9\x74\x43\x8b\x7c\x71\x01\xb2\x2f\x24\xca\xf5\xd1\x80\x54\x69\x4e\x5c\x84\x36\xf2\x8e\xc4\x8c\x17\x7a\x06\xcc\xbd\xfb\x8f\x4f\x69\x8e\x7b\xdb\x10\x44\x51\x8d\xe0\x49\xc0\xcf\xda\x35\x38\x9a\x6e\x7b\x1a\xa0\x22\x6c\xd9\x9c\x70\x54\x5d\x2e\x81\x10\x96\xaf\x7e\xca\x08\x67\xed\x4a\x02\x10\x70\xd6\xa6\x5c\xd3\x8e\xca\x41\xd6\x1c\xd9\x20\x66\xf8\x25\x61\x93\xaa\xef\x4f\x86\x4d\x07\xee\x0b\xcd\x1a\x17\xd6\x21\xde\x97\x64\x5f\x90\x49\x54\x4a\xc7\xb8\x24\x39\x8d\x58\xd2\xd4\xd6\xa7\xa0\x65\x46\xb2\x6b\x43\x2c\x8f\x69\x49\x16\x4b\x32\x9b\xd1\x5e\x32\x58\xf1\x1a\x74\x34\xb3\x17\x49\xbb\x69\x82\x71\x45\xe4\xcc\x8f\xad\x4e\x08\x42\x07\x42\xfe\x40\xc5\xfd\x3a\x42\xd2\x9a\xaa\x38\x04\xe5\xd1\xea\x11\x8a\x3e\x25\xd4\xbf\x59\x2b\x91\x93\xb6\x68\x88\x80\xe5\x01\xf4\xee\x6f\x7f\x21\x9a\x23\xa4\x13\xa7\x81\x29\x27\x48\x66\xc1\xdd\x3b\x01\xc7\xad\xb3\x17\x74\xe2\x7c\x1d\xd9\x33\xe1\xdd\x0c\x33\x07\x24\xa2\x18\xcd\xc6\xc9\x61\xe8\xd0\xae\xda\x5c\xbc\x17\xce\x69\xa6\x6c\x20\x49\x58\x2a\xb9\x2e\x5e\xe6\x24\x0e\xba\x0e\xf7\x1d\x46\x48\x7b\x40\xe5\x39\xda\x99\x19\x4e\x2b\xb1\xbb\x1b\x3a\x9e\x9c\x50\x43\xe0\x9c\x6e\x47\x07\x76\xce\x10\xe8\x1b\x09\x00\x94\x76\x6e\x5f\x6d\xcb\xd5\x26\x0f\x9a\x06\x0b\x87\x96\xbb\x53\xb3\xe2\x93\x4b\x28\xa4\x5c\x26\x29\x89\x48\x0a\x52\xce\x26\x70\xfb\xb1\xcd\x9c\xa4\xa4\xd2\x8b\xf0\xb5\x8f\x01\x67\xa2\x7c\xf5\x61\x00\xe7\x78\x4d\x88\xdb\xa6\x03\x77\x38\x0d\x57\x8f\x90\xd6\x83\xfb\x66\x6e\x3e\x30\x74\x26\xd6\x89\xa7\x9a\x83\x8a\x49\x4b\x9b\x34\x69\xba\xf4\x20\xc7\x41\x06\x31\x3a\xd3\x53\x9d\xba\xc2\x47\x45\xe3\x49\x96\x09\xd2\x0b\x23\xa5\x3e\xe3\xa9\x62\xa5\xeb\xbf\x9a\x4b\x2d\x23\x55\x63\xd9\x5a\xc5\x9b\xc5\x8a\xc8\x39\x09\x9c\xf2\x49\xe2\xaa\xb0\x50\x0d\xed\xe1\xc5\x2a\x6f\x16\x17\x40\x8e\x19\x83\xae\xcd\x12\xe0\x45\x68\x20\x78\x75\x50\x86\xc0\x0d\x0e\xad\xdc\xd8\x94\x67\x76\x42\x75\x4e\x3e\x32\x77\x5e\x3a\xde\xf8\x43\x60\xc1\x05\x9d\xd4\x7c\x83\x8d\xaa\x52\xe4\xbe\xc3\x8e\xb1\xcc\xe9\x95\x4b\xc6\x0c\x2d\x25\x2b\x0b\x7c\xca\x54\x00\x1c\xfc\xae\x5c\x56\xe8\x80\xe4\x51\x22\xaf\xe0\xf0\x5c\xcd\x83\xb9\x03\x2c\x60\x1e\x3f\xf8\xdc\xec\xa1\xf5\xa0\xd2\x07\xda\x1f\xcb\x36\xdf\x64\x33\x4c\x4f\x38\x63\xe2\x8b\x75\x0f\x1c\x11\x4d\x78\x0c\x35\xa3\xb3\x5d\x95\xec\x0b\x2b\xa3\x77\xf5\x7b\x16\xcf\xb3\xfd\x03\xf6\x08\xf5\x99\xee\x6b\x03\x89\x34\xe0\xd9\x2f\xcc\x9f\xf6\x04\xc9\xad\x21\x07\xe6\xd9\x80\xbe\xbe\xca\xce\xc4\x50\x04\x1b\x8f\x84\x14\x6a\xaf\x36\xef\x7d\x42\x7f\x09\xa8\xc9\x4b\x2b\x74\x68\x75\x6c\x69\x84\x95\x94\xad\x4d\xc5\x5a\xa6\x48\xf1\xa4\xa2\xb3\x81\x06\x30\xf0\x3c\xa3\x26\xf6\xa1\x84\x1f\xb1\xef\xae\x05\xd9\x35\x75\x9b\x12\x1a\xae\xe7\xf7\x0e\xcc\x3f\xbf\x65\xee\xe5\x96\xc8\xc5\xb6\xe3\x31\x9c\x1a\x50\xf5\x3d\x68\x4a\x45\x03\xa3\x22\xbc\xad\x88\x92\x13\x43\xc6\x83\xcc\x68\x61\x0f\x96\x99\x95\x6f\xa0\x6f\x23\x79\xbb\x15\xc6\xbc\xdc\x64\xd3\x1c\xee\xa6\x5d\x7a\xa2\xe9\x36\xbb\x2b\xee\x0e\x43\xbd\xcf\x09\xd0\x0b\xaf\xab\x03\xa8\x1a\xfb\x3d\x71\x75\xd4\x9b\x62\x32\x4c\xca\xae\x09\xde\x82\x54\x9c\x8a\x0f\xaa\xab\x6d\xc7\xeb\x5d\xcf\x1f\x61\x93\x06\x0c\x38\x8e\xd9\x86\x36\x70\x09\x64\xf9\xd2\x6a\xa9\x17\xf5\x4e\xc4\x8e\xa8\x24\x35\x42\x52\x82\xb6\xd1\xcb\x0b\x96\x73\x44\xc5\xa4\x99\xf2\x41\x1c\x06\x63\x48\x56\x3b\x7e\xcd\x88\x8d\x97\xda\x29\x47\x66\xb4\x54\xac\x89\xd1\x4e\x81\xbb\x72\xda\xb7\x41\xa7\x10\x7f\x09\x90\xaa\x90\xfc\x56\x15\x22\x81\x2e\x84\x95\x35\xdf\x10\x76\x82\x16\xa5\x57\xf6\x2d\x54\x69\x44\xe7\x1f\x40\xb8\xfe\x85\xc4\x44\xda\x01\x80\x50\x19\xf0\x3d\x97\x76\x07\x06\x69\x5b\xaf\xe6\x8f\x12\x42\x9e\x57\xb4\x2e\x52\xe8\x53\x13\xaa\x37\x05\x6f\x92\x5c\x54\x97\xc4\x92\x6e\x16\x6f\xd4\xc0\x53\xe2\x8a\x5e\xfd\x48\xdf\x04\x10\x57\x3f\x26\xba\xa2\x83\x24\xb1\x91\x57\x91\xb6\x6a\x7d\x48\x68\xa3\xf5\x84\x36\x11\x39\xea\xfa\x87\x5e\x14\x25\x1e\x77\x66\xa0\x07\xc8\xa9\x64\x29\x1b\x79\xdd\x10\x86\x88\x90\xae\x15\xc5\x6f\x5e\xb7\x23\x16\x01\xc3\x05\xba\x0c\xbb\x3c\x3d\xce\xf1\xb9\x11\x74\xc1\x08\xac\x11\x11\x27\xc6\xf3\x4c\x68\xb7\x76\xbb\x44\x0f\xb4\xe0\xc9\x8e\x04\xab\x57\x3f\x41\xfc\xdc\xb2\x3a\x8a\x68\xf4\x8a\x50\x86\xc7\xe7\x54\xa2\xa4\x1c\x9c\xa3\xad\x60\xf4\x44\x0a\xd9\xe9\x42\x74\xd8\xa4\xd4\xa7\x5e\xb9\x4c\x38\x68\x0f\xba\x40\xc3\x59\x12\x9e\xad\xe5\x10\x24\x58\xbd\x58\xb3\x2c\x2b\x30\xf3\x54\x45\xd8\x1d\x66\x66\x6b\x5b\x34\x6e\x1d\x58\x79\xe9\x59\x69\x42\x35\x72\x2e\x4d\xcc\x12\xd3\x70\x83\x75\xc1\x88\x0a\x66\x1a\x3e\x5e\x7e\x72\xa7\xfe\xf8\xfd\xe5\x27\x3d\x9e\xaf\x81\x80\x88\x0f\x02\xa9\x27\x02\x41\xd8\xb8\x5e\x13\x7d\x2e\xd6\x94\x57\x66\xcb\xbc\xac\x98\xda\xef\x4d\x4a\x7b\x65\x05\xe1\xeb\x6a\xb9\xc9\xaf\x7f\x21\x94\x43\x27\x61\x05\xee\xab\x30\x77\x32\x96\xf2\xb2\x72\x5d\x5e\xff\x59\xa4\x3c\x6a\x9f\xd0\x54\xb8\x50\x33\xaf\x99\x5f\x34\x65\xb0\xff\x83\x5d\x4c\xa3\x64\x69\xdf\x9d\x83\x24\xe5\x33\xcf\x67\xd0\x55\xb8\xbb\x6e\xba\x3d\x2a\x84\x05\x49\x3a\x01\x90\x36\xf9\x36\xef\x41\x45\x78\xb1\xb1\x0d\xed\x9d\xc3\xb2\x6b\x0c\x4d\xe3\x27\xa2\x9a\x80\x47\x87\xbb\x87\x83\x03\x5d\x82\x06\x59\x99\xd8\xc9\xc6\x3d\xf0\xd4\xa1\x32\x05\x2e\xff\x90\x90\x45\xd1\xb2\xde\x87\x16\x77\xd1\x16\xba\x40\x36\x93\x6d\xfa\x22\xa7\x0d\x74\xca\x34\x71\x8b\x56\x09\xfa\x7e\x29\x80\xe4\x54\x9e\x92\xbe\xde\xf1\x2b\xf0\xee\xcc\xfc\x91\x36\xcc\x46\xa8\x10\x36\x48\xb7\xd5\x3d\x14\x4a\x4a\xc7\x96\x17\x28\x79\x17\x6e\x2b\x59\x66\x1a\x2f\x6d\xb8\x57\x3f\x9e\x92\xf0\x9a\xaf\x8b\xfc\x0a\x20\xdd\x95\x85\x2c\x18\x4e\x45\x97\xe6\xf5\x7a\xa6\x10\xd3\x29\x7c\xa5\x65\x59\x15\xe3\x04\x76\x6d\x6e\x0c\x24\x27\xbe\x32\x77\x51\x33\xc2\x69\x88\xbb\xb0\x45\x3c\x55\x4f\x5c\xeb\x75\x79\x95\x54\x0c\x8b\x03\x51\xa7\x24\x03\x9d\x65\x52\xb0\xc5\x96\xc0\x28\x30\x98\xe6\xe8\x58\xde\x71\xb7\x0d\xef\x8e\x86\x75\x60\x5d\x70\x45\x92\x13\x94\xf4\x86\xdb\x51\x1e\xd9\x9d\x57\x69\xdb\x1f\xd7\x67\xbe\x88\xf5\x45\x1c\x71\x66\x75\x74\xbf\x6d\x1a\x56\xc9\xaf\xcb\xac\x07\x3e\xdf\x5f\x01\x3a\x2b\x54\xe5\x55\xe0\x39\x16\x21\x21\xef\x66\xc3\x5e\x9d\x68\x3e\x31\xb9\x83\x1b\x33\x4d\xca\x31\x8d\xbe\x5a\x53\x96\x8b\xfa\x12\xba\x91\xfb\x60\xd4\xe4\xc4\xcb\xa8\x87\xaa\x3a\x60\xb0\x2b\xc2\x95\x06\x6b\x6d\xfe\x93\x39\x14\xc9\x9a\x88\xab\xd0\x79\xc0\xea\x5b\x3d\x4e\x20\x40\xee\x2c\x39\x34\xcd\xab\x2b\x63\x18\x9f\x3f\x54\x10\x06\xf6\x8c\x71\x05\x71\xb7\x72\x59\x11\x2e\xf7\x08\xce\x5f\x43\xbf\xf7\x67\x6d\xee\xd2\x5f\x22\x29\x82\x77\x4c\xcc\xd7\x82\xa5\xb0\xeb\x0f\x0e\x21\xf2\x9d\x15\xc9\xc0\x74\xae\xe4\x5a\xe2\x1b\x92\xf1\x12\x8c\xbf\xb3\xf5\xfc\x3c\x59\x43\x5f\x8a\x65\x22\xb2\x5e\x66\x10\xf3\xa5\x2f\x2e\x0a\x05\x05\x95\x7c\x4e\xc4\xe5\xf1\x31\x76\x1e\xc4\x39\xc8\x8c\x6f\x89\x3e\xe7\x99\xde\x8d\xa6\xf6\x74\xc8\xf9\x3f\xb3\x13\x77\x61\x7e\x96\x67\x67\x5f\x9e\xb3\xdc\x21\xed\xaf\x37\x6d\x4a\xeb\xc2\xaa\xb5\x2f\x9b\x66\x57\x3f\xaf\x36\x73\xd1\x25\x3d\x7f\xf6\x10\xad\x77\x10\xa0\x91\x0a\x2d\x55\x06\x14\xb5\x2f\x81\xb3\xc1\x3c\x9c\xdb\x64\x1b\x0c\xf6\x60\xeb\x1d\xe5\xb5\xb7\x6f\xdd\x25\x96\x22\xc8\x80\xfc\x53\x75\x07\xd1\x81\xdc\x05\xdd\xfb\x3c\x10\x3a\x46\x12\x4f\x2f\x2b\x5a\xbe\x79\xfb\x6e\x4a\xf5\x6b\x67\xdf\xd1\x1e\xd8\xec\x48\xba\x05\x5f\xe7\x8b\xb2\x0e\x93\x11\x76\xbd\xa6\x71\xb2\x9c\x48\x70\xe8\x0f\x00\x51\x06\xdd\x7f\x26\xd9\x5c\x24\x05\x94\x77\x90\xcc\x28\x83\xb0\x64\x47\x68\x8f\x56\x02\xb9\x34\x16\x00\x30\x5b\x57\xc0\x85\xb4\x88\x83\x1e\x33\xc2\x31\x7f\xf7\x5e\x4f\xa3\x1e\x65\x0c\xeb\xaa\xdc\xd9\x35\x7a\xaf\xf3\x83\x03\xca\x09\x77\xc9\xe0\x60\xfd\xb4\xa0\xe4\x3b\xf5\xec\x04\x37\x96\xc4\xc6\xf7\x45\x75\x78\x07\xf0\xef\x2c\x37\xa5\x50\x63\x5d\x11\x4b\xf2\x8b\xbd\x82\x14\xe1\xce\xe3\x77\xd0\x50\x7d\xff\x5b\xab\x0a\xe6\x0d\x97\x2c\x94\x7f\xa0\x10\xc5\xc6\x25\xfa\xa0\x2a\x49\xaa\x02\x35\xe7\x1b\x54\xa0\xad\xc7\xa5\x8b\x35\x76\xb3\xd6\xa0\x43\x46\x9d\x13\xe2\x5e\x82\xb3\xca\x3e\xf2\xd7\xbd\x44\xc4\xd3\xb2\xaa\x6c\xda\xe0\xfa\xce\x2b\x39\x58\x3c\x5c\x25\x84\x27\x79\xa1\x66\x01\x2a\xeb\x65\x31\x55\xf2\xe5\x31\x49\x0b\xea\x32\x13\x22\xd5\xfb\x3b\xeb\xc5\xd2\x5a\x62\x1c\x92\xb5\x2d\xa6\x44\x14\x9e\x15\x33\xb7\xa8\xff\x53\x93\xe8\xdd\xe4\x62\xba\x6e\x78\xe6\x27\xeb\x12\x93\x77\xa4\x6a\x70\x0f\x31\x59\xb3\xa1\x03\x7b\xa4\xaa\x3b\xbc\x93\xf5\x64\x69\xb9\x0e\xcd\x39\x8b\x50\x50\x54\x21\x44\x93\x10\xb7\x37\x1b\xbb\x82\xc2\xd9\xf5\x3b\xec\x4c\x37\x16\x00\x9c\x95\x87\x7d\xb9\x01\x7f\x8c\x3d\x95\xcf\x02\xf0\xfa\x85\xea\x57\xf6\x88\x24\x78\xa9\x4a\x5a\xbf\x97\x7a\x09\x96\xb5\x66\x84\xdf\x2b\xb6\x42\x08\xc4\x78\x1e\xd7\xf3\x9d\xdd\x83\xfa\x05\x72\xea\x0e\xd3\x00\x9f\x94\xf0\x6d\xcf\xd4\xc2\x38\xd9\x7e\xaa\x6d\x1a\x15\xc4\xfc\xe9\xc6\xa5\x41\xd8\x99\xe0\xd8\xa6\x74\x80\x7f\x6d\xf3\xbd\x62\xc7\x5d\x6b\xde\x30\x83\xd2\x01\x26\x6c\xd6\x3a\x53\x0e\x6c\x7f\xfb\x3d\x21\x60\x12\x06\xa0\xfd\x88\x34\x5c\x00\x25\x65\x81\x82\xa3\xc2\x26\xa9\x1b\x08\xb2\x32\xbd\xf9\xf3\xba\xdd\x0f\x6b\x70\x1f\xa0\x9d\x54\x69\x4b\xac\x2d\xf5\x5b\x40\x61\x61\xec\x3a\xdf\x75\xd1\xa4\xf3\x99\x79\xe4\xd1\x18\x14\xd9\x51\x2e\x9f\x31\x37\x5f\x5c\xfc\xac\x6d\x17\xb0\x40\x6e\x91\x09\x57\x42\xc1\xd0\x88\x02\x68\x4f\x78\xf5\x22\x5f\x0b\xc3\xd0\x80\xc2\xe3\x36\xc8\x93\xb9\x8f\x58\x88\x6e\x45\x3d\xfa\xd2\x56\x44\xa2\x7d\xd3\x7c\xc1\xdd\x93\x9a\xd7\x35\x05\x6d\x33\x95\x4a\x04\xe1\x43\x0e\x44\xad\x08\x85\x0d\x45\x19\x62\x4f\x88\xcb\xef\x15\xc3\xa2\x0d\x24\x62\xe9\xb4\x36\xcf\x71\x1c\x68\x13\x20\xcf\xab\xc2\x70\x43\x50\x66\x4e\x93\x23\x1a\x17\xa2\x05\x0d\x9d\x2e\x2c\x83\x58\xa3\x9c\xf7\xbc\x91\xde\x37\xd1\xe8\xae\x22\x78\xd2\x12\x84\x7b\xec\xd4\x69\x3d\xd9\x7e\xa3\x2d\x5e\xfd\x48\xd3\x64\xde\xbd\x82\x78\x71\xa0\x59\xcf\x5c\x37\x90\x2e\x60\x82\x12\xf6\x22\x1d\xc0\xc4\x82\xa6\xef\xd6\x99\xd6\x7d\x4f\x4c\x42\x88\x89\xfa\x7e\x08\x77\x96\xbb\x16\xc3\xc1\x95\xb0\x5e\xdf\xb8\xae\x15\xb1\x0d\xa7\x15\x99\xc3\x68\x9f\x3c\xbf\x5f\x39\xb3\x7f\xfb\x17\xd7\x61\x34\xbd\x10\x8e\x7c\x25\x74\x5e\x9a\x36\x58\x04\x46\xff\x41\xaf\xd8\xe8\x7c\xbb\x21\x42\xfc\x3a\xdf\xac\xdb\x70\xf7\x33\x09\xef\x7b\xdf\xf1\x8d\xb7\x5c\x26\xe7\x3d\x94\x1d\x5b\xc6\x03\x10\x23\x8e\xc5\xb2\x4a\x8a\xf4\x72\x78\x18\x13\xb3\x4a\x40\xdf\x68\xe7\x84\x27\x91\xf9\x49\x8c\x17\x8a\x1b\x36\xe3\x58\xe8\xcd\x8a\xe7\x6d\x99\x0b\x96\x9b\x12\xb4\xa2\xb7\x26\xb8\x05\xf3\x55\xe4\xf6\x64\x50\x33\xd9\x73\x9d\x7d\xa0\xf1\x83\x22\xe9\xaa\x24\xa6\xa2\xc4\xcd\xae\xde\x96\x5e\xff\x10\x58\xd8\xd0\xa1\x8c\xf5\x4a\xcc\x9d\xe7\x4d\x37\x7f\xda\x92\x48\x4e\x8c\x4e\x22\x8c\x7c\xc1\x72\x02\x34\x15\xb0\x3a\xb0\x55\x3d\x7f\xb2\x84\xb2\x85\x0d\x80\x3a\xac\x46\x02\x34\x47\x93\xa7\x9d\x98\x97\x62\xc3\x21\x85\xa1\x94\x94\xc2\x2c\x22\x01\x04\xe0\xa8\x67\x4c\x22\xc0\x28\x54\x2f\xa1\xf7\x1c\x13\x06\x18\xc4\xc8\xea\x81\x40\x1d\xb4\x01\x60\xd5\xbe\xfe\x2e\x69\x08\xc1\x16\x22\x38\xf2\xd0\xb2\xf9\x8b\x03\x0c\x16\x52\x46\xd6\xdd\xb1\x26\x03\xca\xd5\xcd\xd4\x2e\x49\x4c\xa3\x68\x69\x9c\x01\xd5\x53\x35\x9d\x1a\xa9\xe9\x15\xf5\xd4\x24\x7d\x11\x5a\xb1\x7a\xc7\xcd\x7a\x32\x62\x5e\xa0\x66\x65\x42\x69\x09\x80\xcc\xe0\xd1\xb8\xf8\x82\x98\x40\xca\x4a\x98\x7a\x7e\x57\x35\xc6\x96\x8f\x4f\x1d\x98\xae\x51\x4a\x46\x47\xa3\xc1\x1d\x43\x4b\x0b\xab\x72\x53\x9b\x13\x9a\x79\x70\x1f\x43\xdd\xf1\xda\x2c\xe2\x51\x9a\x9d\xae\x58\xe7\xc7\x2f\xf7\x24\x63\xc1\x4a\x91\x9d\x2b\x4f\x3b\xdc\xdd\x5b\xe9\x31\xe9\xd8\x72\xc6\xdd\x18\x12\x0f\xdc\x5f\x76\xd2\x80\x0e\x50\xf1\x1d\x44\xdd\xae\x0a\xd8\xad\x11\x63\x9b\x75\x72\xfd\x4b\x06\xc3\x0a\x92\x4c\x99\x9b\xd9\x77\x94\x4f\xe7\xee\x4a\x0f\x5e\xf3\xea\xa7\x7f\xfb\x17\xbd\xe0\xc1\x42\xc2\xa4\x8c\x69\xed\x03\xa8\xcd\xa8\x15\xec\x83\xbc\x86\x6d\xe1\xd0\x2a\x72\x53\x0a\xec\xe6\x0f\xcb\x0d\x91\x16\xb5\xb3\x6b\x77\xb8\x12\xf3\xb0\xf8\x5a\xd4\xee\xf9\xa1\xed\x0d\xdf\xe2\x22\x5e\x4e\x0c\xad\xe3\x9c\x6a\x8b\x26\xaa\x4c\x3d\x53\x08\x69\xca\x71\x45\x7a\xfa\xbc\xc5\xe3\xd7\x62\x9f\x51\x94\xce\xaa\xa4\x8d\x44\xc2\x41\x71\xa7\x42\x3a\x87\xa9\x96\x9a\x70\xed\x73\xdc\x7b\x5e\x5c\x10\x67\x64\x9a\x4b\xfa\x4e\x3a\x73\x59\xee\xcd\x26\x2f\xd6\xd0\x73\xc1\xce\x13\x94\x07\xca\x2a\xa3\x02\xb6\xa8\xf3\x68\xa7\xb6\x30\x73\x2b\xba\xa2\x85\x5d\xdd\xc8\xcc\xce\xdd\x24\x46\xa8\xc2\x5d\xff\x15\x20\xc6\x49\x91\x25\x55\x06\x0d\xb1\xa0\x8e\x6e\xba\x92\xb7\x75\x71\x77\xd2\xa5\x19\x18\x5f\x10\x8e\x72\x0d\xa4\x97\x65\x59\xab\x32\xda\xdd\x18\xe3\xda\xe0\x00\x15\x52\x67\xdc\x55\xb1\xae\x88\x43\x60\xc1\x9a\x05\xd7\x15\xd2\x28\x2f\xb1\x5c\x06\xbb\x01\xf1\x59\x5f\xe4\x5b\x98\xbc\x42\xd5\x9d\x64\x62\x92\x8a\x13\xd5\xb3\x90\xb8\x6b\x3a\xb0\x3a\xa8\x28\x07\x33\xea\xef\xaf\x5e\x88\xc5\xb0\x47\xb8\x40\x0a\x62\xee\xa1\x8c\x8a\xda\x44\x11\x03\xb1\xf7\x13\x9e\x0d\x26\xe0\x77\xd4\xf3\xe1\xe0\x21\x36\x7a\x55\xf2\xb1\xad\x25\xd4\x44\x77\xcb\x50\xd7\xe1\xe4\xff\x72\x13\xb0\x8e\x77\xe5\x6a\xa9\xd7\x0e\x00\xde\x3e\x97\xed\x5b\x7b\xed\x08\xb4\x0a\x8b\xa8\xc0\xd3\x72\x0f\x53\x97\x83\x5c\x0f\x8c\x14\x44\x3d\xb3\xfe\x19\x6e\xc8\xd8\xc0\xf3\x66\xfe\x7c\x30\x76\x0f\x0f\x95\xca\x14\x02\x25\xcc\x44\xf9\xc0\xd8\x00\x16\x6a\x34\x82\x4b\x5c\x28\xab\xfd\x6d\x32\x5b\xfa\xf1\xfd\x17\x0a\x97\x29\x6c\xb7\xd8\x14\x4a\x75\x55\x0c\x34\x96\x6f\x6a\x11\x6b\x3a\xaf\x5a\x51\xd3\x5b\xcd\x0c\xac\x6f\x19\x07\x42\xa7\xe7\x4a\x8a\x7c\x14\x60\x49\x12\xe2\xb1\x86\xbc\x57\x43\x84\x39\x89\x1f\x23\xa4\xe8\x0d\x3a\xd4\x28\xfd\xfa\xcf\x90\x54\x2b\xda\xa5\x55\x07\x96\x40\x9b\xf5\x69\xaa\xfe\xe2\x2d\xc3\xc6\xd4\x41\xdf\x8e\x00\xf8\x32\x2d\x34\x51\x6e\xb0\x94\x03\x2c\x48\xa9\x05\x8c\xb4\x73\x3b\xa1\xdc\x1d\x96\x96\x39\xde\xe7\x56\xc5\x58\xd4\xe9\x60\x33\x4c\xb3\x16\x4c\x54\xd9\x6d\xf9\xd2\x2a\xde\xc9\x68\x42\x6c\x9a\x83\xfa\x06\xc6\x40\x31\x1a\x32\xf7\x19\x2f\x11\xce\x2a\x1a\x20\x05\x87\x94\x3e\x1d\xf5\xed\xb6\x83\xaa\x8d\x1c\xaa\x6d\x65\x02\x4d\x78\x32\xde\xc2\xed\x76\xc6\xdb\x55\xe6\x7e\x9f\x98\xa9\x2b\x41\x1e\x6e\x66\x28\x10\x66\x8e\xd2\x17\xd1\x75\x07\x94\xf8\xff\xce\x2b\x8e\xb7\xef\xd4\x6f\xff\xf6\xdb\x8d\x3b\x99\x5e\x69\x9c\x1e\xbb\xd0\xe8\x55\xc1\xce\xd8\xc1\xcd\x24\xa6\x55\x01\x18\x3c\x14\x33\x11\xfd\x82\x03\x85\x83\xa1\x47\xc0\xb3\x29\xc1\x21\x10\x41\x88\x0e\x01\xf3\x2c\xe8\x0a\x32\x94\x80\x92\xf3\x84\xbb\x91\x43\xa1\x32\xc9\x26\x87\x49\x1e\xe7\x76\xa8\xc7\x5b\x3f\xe0\x01\x48\xbc\xc8\xbd\xfe\xdd\x28\xdb\xc2\x9c\xd1\xa9\x9a\xf6\x31\xea\xa8\xca\x03\xb1\x9a\x45\x82\xcb\x05\x35\x13\x54\xe2\xf2\x31\xb3\x04\xab\x4f\xa2\x5b\x2d\x3e\xf7\xdd\xa7\x1f\xbf\xaf\x99\xc6\xeb\x8a\x0b\x5c\x8a\x80\xa1\xd8\xc3\x06\x6d\x0d\x93\xea\xde\x84\xda\xb0\x5d\xa9\x6a\xec\xfb\x31\xb3\x3d\x35\xc4\x24\x1a\x05\x0f\xbe\x13\x85\x7d\x54\x97\x90\xa5\x28\xfd\x76\x62\xc2\xce\x08\xdc\xd5\x9e\xf5\x9b\x73\x00\xb2\xde\xc6\x91\x32\x02\x7d\x8b\x30\xd1\x86\x12\xf9\x78\xd0\x4e\x04\xf6\x32\x28\x00\xc3\x9d\x6c\xd6\x57\x62\x16\x81\x2b\x31\x4b\x19\x70\x67\x25\x61\xc6\x2b\x08\x9f\xf6\x8a\x19\x0d\xe0\x60\x68\x6d\x02\xe9\xde\x35\x10\x69\x87\x25\x59\xfb\x9d\x9f\x57\x56\x38\x78\x5d\x71\xbf\xb5\x9e\xf6\x64\x89\xf7\x52\x29\xdb\xcc\xcf\x8b\x77\xff\x5b\x1e\x25\x61\xe6\x8a\x90\xdc\xd0\xa7\x50\x52\xa8\xa0\x1e\x96\x93\xbd\x15\x14\x6e\x62\x01\xdd\x63\xdb\x7a\xdd\x36\x2a\xc6\xb7\xbe\xf4\x76\xc8\x97\xfa\x7d\xa8\xa4\x1b\x6b\x46\x87\xd6\x0b\xfe\x6c\x7a\x65\xee\xd1\x2e\x48\x2f\x53\x77\x5b\x4a\x6c\x13\x37\xfc\xe9\xc4\xf0\x1c\x64\xbe\xf2\x20\x78\x03\x94\xc5\x22\x16\xc0\xa7\xba\x16\x5e\xca\x27\xa2\x4d\x29\x85\x33\x2c\xc5\x28\xdb\x49\x58\x9f\x55\xc9\xba\x17\xae\xe0\x60\xc1\xcb\xd2\x80\xb1\x90\xd3\x07\x3c\x8d\xbd\x43\xff\xd0\x1c\x0c\xfd\xd1\xb6\xf9\xcf\x24\xd9\x76\x30\xeb\x29\xd7\xb4\xd3\x86\x35\x38\xf5\x68\x9d\x1e\x37\x88\xb4\x12\x60\x86\x1e\x98\x84\x1d\x18\x6c\xf4\x7f\x28\xc7\x74\xf0\x5b\x51\x8b\x80\x09\x1c\x11\x2d\x08\xda\x18\x37\x90\x5e\x3a\x14\xe1\x0b\xe7\x89\xe2\x09\x67\xc1\x33\xc0\x14\x6d\xb1\xcc\x8b\x6c\x3e\xac\x65\x5d\x4e\xbf\x64\xac\xe1\x18\xc9\x5e\x3d\x0b\x52\x66\x3b\x2c\x60\x84\x25\x13\xae\xbb\x60\xb8\x45\xce\x3a\x75\xb9\xa4\x49\x01\x1a\x9c\x07\x70\xe8\x1e\x6b\x9d\xf5\xba\x5a\x5e\x48\xdd\x17\x1d\x27\xb6\x8a\xa9\x39\x51\x57\xa9\x76\xc0\xc2\x6f\xa6\x9b\x97\x09\x91\x5a\xd7\x48\x46\x44\x39\x69\xe0\x16\x00\x9f\x00\x5e\x38\x9a\x87\x0c\x8c\x25\x03\xd6\x71\xdd\x7d\xfa\x00\xb6\xda\xbe\x43\x69\xf3\x8f\xb4\x8d\x88\x4e\x11\xf3\x94\x03\xdd\x42\x02\xd3\xbe\x61\x3c\x04\xe5\x22\x2d\x8b\x25\x80\x14\xa1\x75\xf8\x79\x74\x3c\xdc\x5e\x0a\x90\x88\x4c\x39\x98\xe7\x70\x8e\x3a\xbd\x38\x5f\x56\xc2\xd6\xa0\xb8\x6e\x14\x0e\x66\xfe\x18\xed\x3b\x8f\xa2\xa3\x93\x64\xc6\x0a\x57\x61\x0a\x69\x9c\x24\x12\xee\x68\x29\xe5\x62\x6f\x66\x60\x26\xa5\x68\x82\x4e\xb4\x9a\x5b\xae\x4a\x35\x25\xec\x02\x5d\x4d\x8f\xba\x64\x02\x8a\xbc\xc2\x45\x8f\x30\x98\x50\x05\x5d\x7b\x40\x48\x00\x11\xac\xfc\x64\xd5\x69\xa4\xa6\x75\x83\xd6\xdc\x12\xd0\x1e\x25\xe2\xd5\xaa\xa6\xcb\x31\x72\x6f\x84\xd9\xbc\xb1\xd9\x4d\x58\x2d\x9c\xb3\x3f\x1e\x4f\x74\x47\x1f\x5b\x98\x49\xfc\xc6\xb0\x3e\x88\x45\xca\x95\x81\x4c\x03\xcd\xd8\x2f\x91\x10\x23\xbc\x10\xc6\xdd\x0f\x0e\x27\x4c\x47\xe1\xee\x86\x23\x85\x86\xe6\x39\xb1\x38\x71\x4a\x03\xda\x7a\xd5\x1e\x2a\xda\x16\x8b\x21\xa5\x4f\x89\xbf\x76\x3c\x02\x6c\x04\x1f\x3d\xb9\xfe\xd7\xcf\x7b\xc6\x80\xc7\xcf\xb7\x5c\x17\x3c\xfe\xe4\xad\xde\x92\x72\x30\x84\xc0\x9e\xb2\x07\xfc\x70\xa0\xde\xc6\xb3\xa7\x67\xe2\x73\x37\x28\xe6\x10\xa0\x28\x56\xbd\x90\xa0\x50\x64\xbb\xff\x43\x02\x27\xb2\xd3\x23\xab\x74\xfb\xd6\x37\xd0\xc5\x7d\x4b\x02\x1e\xeb\xe5\x5f\x04\xca\xd1\xe0\xb2\x69\xf2\x56\xb9\xbf\x8a\x52\x26\xea\x3e\x89\xbc\x56\xb5\x5e\xd1\xa5\x04\xec\x21\xd7\xb4\x70\xb0\xfe\x3e\x35\xfb\x5d\x92\x25\xe2\xb7\xb7\x37\x62\xae\xc4\x5a\x4e\x07\xdf\x16\xea\x0b\x92\x2e\x3d\x78\x67\x30\x69\xab\xf3\x65\xbe\x01\xd9\x7a\x91\x67\xa5\xa0\x56\x70\x13\x9c\x81\xf4\xc0\xed\x61\x7c\x21\xf2\x71\xbd\x23\xcc\x96\x12\x21\xaa\xe7\x27\x2d\x6c\x2a\x08\xbf\xd9\xef\x9b\x93\x4f\x76\xf0\xb5\x6d\xb8\x33\x2a\xf2\xc9\xb8\x41\x38\x5f\xa6\x44\x4a\xcf\x72\x82\x27\xdf\x38\x33\x0b\x25\xa9\x6c\x37\x4e\xe8\xd0\x84\x0a\x4d\xd6\x50\xd8\x1b\xfa\x7c\x5a\xb1\x01\xc2\x44\x97\x70\xf4\x74\x13\x79\xe7\x9e\xe8\x68\xca\x0b\x11\x98\x5e\x26\x9b\x36\xd6\xd8\xa0\x73\xd4\xa8\xdf\x65\x8d\xe4\x5a\x34\xdf\x67\xf8\xc9\x72\xbd\xa6\xb2\x57\x85\x7a\x8f\x1e\x34\x6d\x04\x36\xe4\x87\x77\x18\xe2\x56\xe0\x6c\x27\xe0\xcb\xe4\xa0\x0e\x46\x81\x97\x9e\x37\xdf\x93\x5d\x5e\xeb\x37\xdc\x80\xbd\x0b\xb0\x4f\xf1\xea\x1b\xd5\xc3\x88\xf1\xff\x6c\x95\x37\xf9\xaa\x28\x2b\x1a\x24\xb1\x99\x44\x93\xec\xfc\x21\xfe\xb3\x4e\x4d\x53\xa6\xaa\x9a\x8d\x94\xe2\x41\xd0\x72\xd8\xf9\x33\xfe\xe7\x3e\x87\x75\x6a\x71\x52\x36\x95\x96\x82\x49\xc1\x22\x2f\xf2\x66\xfe\x80\xfe\xe4\x40\x1f\x2a\x90\xf6\x5e\x9f\x30\xd3\xb8\x84\x4d\x3b\x01\x99\x16\x0d\x4a\xbb\x9a\xbd\x06\x9c\xeb\xb3\x37\x7a\x64\x80\xab\x8b\xf3\xe0\x74\xa8\xb3\x80\xaa\xe7\xe1\xd8\xc4\xf8\xac\xd7\xcb\x3b\x07\x61\x1a\x0d\x11\x19\x5a\xdd\xf9\x93\xec\xfa\xe7\x3d\x50\x1b\x53\x00\xc9\x05\xca\x7d\x47\xc4\xb7\xee\xdd\x1b\x55\xd7\xd1\xae\xff\xfb\xa8\xae\x8f\x34\x39\x52\x5d\x17\x16\xca\xb1\xb6\x81\x2f\xed\x36\x59\x0d\x0c\x37\xd4\xb1\xb9\x77\xd8\x54\xe7\xe6\x41\x56\xef\xf6\x38\x5c\x0c\xda\xe6\x74\x9e\x92\xf8\x44\xe1\x28\x99\x25\x1d\x89\x93\x4f\x04\x52\xfe\x38\xb9\x46\x79\x71\x9e\xba\x8b\x94\xc1\xf2\x68\xa1\x59\x8a\x9b\xe3\x85\x6a\x21\xe6\x67\x70\x8f\x6a\x55\x51\x73\xa4\x50\xc0\xe9\x2a\xbb\x14\xba\x52\xbd\xff\xc5\x83\x73\x76\xcc\x2a\x2b\x03\x85\xf1\xc6\x88\x47\x0e\xbb\x5d\xce\xfa\x26\xdd\xf5\x24\x97\x19\x5a\x84\x7b\xf3\x2b\x77\x8f\xcb\x24\xd0\xc9\x5b\x2c\x44\x7a\x4d\x98\x7a\xd9\xe5\xac\x69\x94\xd3\x4d\x8b\xc1\x67\xbe\x76\xce\x5e\x9d\x3f\xf7\xec\x53\x05\x6f\x8d\xf9\x3f\xc0\x91\x57\xbc\x40\x91\x13\x42\x1c\xdc\x61\xb2\xc1\x89\x21\xe1\x8f\xc8\x42\xc6\xd4\x6c\xd7\x2d\xa0\x16\x26\x16\x77\x97\xb3\xc6\xd7\xa5\x78\xea\x7e\xa6\x2c\x52\x61\xc3\x0a\xce\xec\x22\x49\xf3\xeb\x9f\x41\xc1\xd7\x9b\x64\x9f\x13\x4d\x32\xff\xf7\x7f\xfd\xef\xf7\xee\x11\xe2\xbf\xd7\x54\x9b\xf7\xee\x89\x76\xc2\xb1\x59\xc0\xed\x29\x9d\xf5\x35\xec\x2a\xd1\x96\xf6\x0b\xfe\xa3\x4e\x2f\xcb\x3d\x6b\xb8\x29\x09\xa8\xd9\xf5\x0b\xff\x05\x5e\x2a\xe7\xb9\x3b\x96\xe6\x71\x61\xe0\x5c\xe0\xec\xf6\x53\xf3\x24\xa3\x13\x07\x62\x7c\xa3\x57\x34\x07\x61\x80\x08\xfe\x16\x38\xfe\x3d\x9b\x7c\x60\x67\x81\x6b\xf9\x33\x5c\x0e\xe4\x80\x61\xd0\x92\xe9\x2e\xa7\x50\x1c\x57\x53\xca\x79\xac\xf6\x79\x72\xc8\xd6\x1c\xba\x01\xa9\x7c\x5b\x25\x4b\xc3\x18\x98\x0f\x93\x62\x56\x16\xcf\x68\x62\x35\x71\x7c\x7f\x6a\x01\x89\x15\x7c\xb3\x69\xb6\x84\x14\x52\x58\x17\xf4\x66\x82\x6e\xde\x40\x64\xb2\xef\xbf\x92\x8d\x1c\x6f\xfa\xc0\x54\x9b\xf1\x73\x5a\x6e\x49\x04\xc9\x3c\x06\x2b\x86\x91\x09\x08\x5a\x60\x56\x6a\x56\x82\xc2\x29\x03\x9c\xeb\xae\x85\xd9\x14\xae\x1a\xa5\xab\x17\x40\x6c\xb4\xae\xba\x3f\x99\xb0\xbf\xb6\x11\xee\x9f\x06\xcb\xfe\xbb\xd3\x44\x5b\x5d\x2d\x9d\xda\x6b\x8f\x69\x43\xe9\x45\x6c\xe8\xf5\x5f\xd1\xd3\x5b\x00\xd7\xed\x5b\x8a\x61\xbf\xf0\x78\xb5\xa9\xac\x9d\xdf\x67\xed\x8c\xcb\x65\x27\xe4\x26\x59\xd5\x52\xec\x27\xb0\x49\x24\x55\x25\xab\xdc\x95\xb0\x41\x16\xee\x56\x11\xa2\x80\xb3\x47\x31\x05\x10\x86\xa0\x46\xd8\x8e\x8d\x79\xa6\xc1\x08\x20\x73\x2f\x2d\xa5\x7e\xde\x74\xc4\xe3\x34\x1d\x0e\xfa\x06\x0e\x2d\x05\x55\xfd\x2a\xd9\xca\x7d\x30\xa5\xf1\x45\x1c\xe0\x9e\x37\xf5\xfc\x1e\xff\x67\x9f\x40\xf6\xcf\xaf\x09\x96\x99\x98\xc8\xf1\x4d\x11\x1d\xfe\xf9\x3d\x70\xe4\x9d\x26\xd0\xf2\x72\x58\x82\x2f\xf9\xbf\x2f\xc7\x06\xff\x28\xac\xf6\xfe\x69\x58\x87\x0e\xc2\x36\xe1\x93\xfb\x99\x25\xa1\xf6\xfa\x67\x62\x44\x8a\x9c\x04\x51\x10\x73\x76\x8b\xf7\x03\x9a\x8d\x06\xe6\x32\x34\x54\x02\xef\xf9\x43\xbb\x26\xe1\x34\x1d\x16\xb9\x80\x84\x7c\xc6\x99\x7d\x22\x88\x02\x1d\xfe\xbb\xa0\x07\x7d\xea\x96\xb0\x05\x2e\x4f\x5e\xf4\x0a\xd1\x3e\x13\x17\x1b\xf3\xfb\x49\x93\xf4\x49\xe2\x95\x71\x06\xef\xbc\x43\x0f\xbe\x19\xed\x63\xf8\x76\x94\xfb\x5a\x22\xad\xa8\x83\x03\xc2\x8e\xf0\x1d\xc4\x21\x0c\xcb\xd0\x67\xce\x46\x6b\x15\xe4\x15\xe0\x5a\x28\x5b\x8e\x9f\x9d\x2a\x92\xd2\x5a\x55\x0b\x6d\xe4\x45\x87\x2b\x6d\xd6\xe8\x4e\x95\xf5\xbb\x40\x36\x01\xa1\x00\xde\x03\xa3\x3e\xfb\x72\x8f\x4b\xf3\xc8\x7d\x4c\x74\xdb\x17\xbc\x87\x6f\xb3\x9d\x2c\x4b\x92\x4c\x11\x14\x7d\xa2\xe7\xfb\x64\x1d\xef\xc4\x93\x41\x07\x65\x0d\x03\x70\x5f\xed\xeb\x64\xbb\x56\x41\xe2\xe6\x9a\x44\x90\x11\xa5\xc5\xce\xef\xea\x8f\x89\x81\xfb\x32\x32\xee\x64\xaa\x24\xb4\x53\xae\x18\xc1\x61\x54\x46\xf0\xd7\xfc\x1e\xff\x33\x0f\x90\x18\xd6\xd7\x95\x63\x5d\xbb\xae\x46\x32\xce\x5f\x10\x0b\x97\x5a\xf5\xf4\x79\x88\x14\x8e\x6b\xc0\x91\x3f\xa2\x7e\xb4\x39\xed\x8d\x4b\xfa\x12\x0c\xe0\x26\x59\xce\xef\x64\xe6\xc9\x0e\x6a\x08\x57\x15\x40\x74\x39\xf7\x18\xa2\x3e\x8f\x8e\x23\xec\x84\xa5\xd9\xcf\x87\x03\x0c\x73\x89\x27\x5b\x08\xff\x09\x38\x78\x4e\x74\x13\x8d\x41\x2b\xbc\x76\x8b\x0d\xcb\x1d\x69\x7c\xbc\x93\xb4\xa2\x5f\x12\x3a\xfd\x1d\xc7\x15\x18\xb5\x4d\x45\x56\x39\x15\x39\xd2\xf4\x68\x5b\x68\x35\xc7\x11\x4e\xa5\xcf\xe0\x17\xa6\xb8\xf7\x2e\xa1\x5a\xf9\x39\x5d\xb2\xd6\x20\x41\xc4\x2a\x10\xef\xe2\x76\x61\xa6\x37\xd7\x93\x75\x64\x89\xb3\xc5\xb2\xe3\x2a\xb2\xc8\xec\xee\x7b\xac\xc6\xd6\x16\xd0\xb3\xc0\xfd\x13\x35\x1e\xf9\xcf\xa9\x1a\x35\xec\xdb\xcf\xe8\xcf\x54\xc6\x0c\x32\x44\x0d\x5b\xc4\xab\x02\xc8\x6b\x04\x4e\x2e\x84\x0d\x4a\x85\x9e\xf0\xbf\xc9\x12\x15\xbc\x24\x1b\xb9\x0a\x26\x31\x08\x1f\x9b\xce\xc8\xf7\x68\xd7\x49\xc7\x44\x65\x5c\x85\x87\xf8\x6d\xaa\x37\xa9\xb6\x2d\xeb\x06\x48\x17\x7a\xfc\x47\xf4\xdb\xe8\xc7\x4d\xbd\xb8\xf2\xd2\xcd\xb8\x02\x4e\x10\xc3\x7f\x2e\xbf\xcc\x9d\x6f\x3e\xf8\xb6\xc6\x02\xf4\x17\x22\xdf\xfc\xfe\x5b\x62\xbe\xee\x7c\xf3\xe1\xb7\x1c\x8d\x66\x5c\x77\x71\x91\xac\xed\xa8\x01\xae\xe7\x0b\xef\x2a\xfb\x32\x2f\x5b\x50\x70\xf9\x11\xa0\x84\xef\xb1\x08\x7a\xdf\x3e\x38\xdb\xac\x80\x29\x9b\x7d\x52\x05\x28\x5d\x51\xa4\x64\x1e\x1c\x7a\x0c\xb0\x79\xbb\x5d\xe8\x54\x6b\x20\x80\x35\xc2\x59\x10\xd9\x0a\x96\xd8\x43\x62\x91\x34\xf3\xef\xfc\x17\x66\x9d\x67\x98\x33\x4d\xc2\xb1\x9e\xbf\x93\xaf\x4f\x78\x42\x80\xc0\x77\x7d\x4f\x65\x7f\xb3\x72\x69\x2b\x48\x07\xc4\xbe\xf9\x5b\x9e\xce\x36\xb3\x01\x4e\x92\x50\x45\x8c\x92\x06\x39\x3a\x88\xb0\x84\x38\xc9\x4b\xba\x2f\x5d\x59\x06\x8d\x14\x7b\xc6\x1f\xc3\xbc\xb8\x29\x47\x77\xbc\x37\x41\xce\x57\x3c\x57\x3d\x5c\x86\x28\xd7\xed\x9a\xaf\xb8\x00\xf8\xe7\x18\xf2\x0c\x33\xfe\xf9\x6b\x01\x26\x03\xd4\x26\xdc\xc7\xaf\x6d\x44\x38\x0f\x62\x7b\x2f\xb4\x99\x0b\x02\x7d\x91\xb2\xfa\x9c\x16\x80\x4b\xc9\x55\x75\xa2\x0c\xd2\xaf\xed\x81\x84\x30\xc4\x68\x53\x86\x49\x13\x59\xed\x34\x67\x07\x88\x7e\x97\x4e\xe8\xeb\x34\xcb\xb9\xe9\x91\x58\x41\x02\x9f\xb5\xa3\x88\x6f\x30\x6a\xc8\x92\x6a\x5b\xc6\x55\xf2\x62\xe1\x1c\x28\x58\x02\x11\x8f\x7c\x35\xb4\x91\xe8\x11\xe2\x6c\xcb\x17\x82\x55\x79\xd8\xc2\x2f\xc8\x8c\x7c\x30\xe3\xdb\xd0\xc8\x19\x8e\x4e\xa7\xac\x3d\x4b\x4b\xd1\xa1\xb6\x59\xde\xcc\x3f\xcf\xba\x68\xd5\x63\xab\x22\x37\xd8\xe4\x25\x7b\x3a\x92\x10\xe9\xd3\x84\x6c\x36\x81\x8b\xca\x88\x1f\x93\x22\x69\xb9\x21\x86\xf4\x2b\xfc\x3d\x5e\x04\x8a\x5a\x3a\xbe\x47\xf2\xfb\x53\xc0\x87\x5c\x91\x04\x2e\xa2\x95\xe1\x84\x80\x13\xd5\x98\x9a\x9b\xe4\x84\x96\x76\x83\x2c\x75\x04\x7a\x54\x66\xb0\x26\x66\xc5\xf4\x91\x01\x4d\x5d\x80\xbe\xa6\xe8\xd8\x20\x83\xf3\x23\x3b\x0c\xe2\xb1\x23\x1b\x8c\xbc\x60\x95\xa3\x37\xcf\x90\x76\x6f\xb0\xc3\x98\xee\xd9\x9b\x63\x28\x07\xd4\xdb\x3c\x38\xc5\x75\x12\x5f\x6f\xaa\xc8\x85\xd3\xb7\xa3\x9d\xbc\x10\x73\x1f\x96\x52\xf0\x6d\x44\x51\x5a\x1f\x29\x26\x33\x75\x65\x61\x65\xec\x04\x3e\x46\x72\x5b\xa2\x20\x74\x5a\x51\xd5\x68\x6c\x39\x8e\x6b\xa1\xb5\x67\xc3\x56\x11\x08\x6b\x8e\x3f\xa3\xee\xe4\xff\x5c\xff\xbb\x6c\x25\x8c\x2a\xa4\xfe\x81\xbf\x74\x04\xae\x08\xe1\xf2\xca\xd6\xed\x86\x68\x06\x5f\x75\x14\xc9\xc6\x1e\xd8\xae\x6f\xdf\x89\x69\xf0\xac\x2f\xca\x21\xd7\x44\x29\x22\xfd\x05\xe8\x5f\xc2\xb1\xf1\x1a\xc8\x6c\x97\x36\x4d\x5a\xc2\xe6\x1c\xbd\x0b\xb3\xbd\x44\x00\xb8\x7e\xfe\x54\xc4\xbe\xb4\x85\x6f\x1e\xe6\xda\x61\x94\xbd\xf9\x77\xbe\x75\xa7\x10\x1a\x80\x6a\x69\x9b\x3d\xac\x09\x1a\x6a\x4f\xa0\x2b\x5a\x94\xfa\xa3\x90\x8e\x13\xb6\x7b\x9f\x7b\x78\x1f\xc4\x3c\x53\xcc\xf7\x3b\xfe\x50\xfc\xa7\xc0\x14\x0e\xdf\x29\x24\x42\x21\xdb\x15\xe1\x33\x2e\x8b\x8a\x2d\xc7\xea\xf6\xad\xa5\x3e\x99\x01\xc8\x14\xef\xd6\x82\x86\x3f\x86\xfb\xa3\xc3\xb3\xfc\x9b\x76\x31\x55\x70\xe9\x1f\xfa\x74\xd7\x3c\x37\xa5\x24\x5e\x7a\x91\x94\x7f\x5f\xeb\x54\xfb\xff\xfb\xd6\xef\x50\x12\x0f\x40\xbd\x11\x66\x53\x2c\x4a\xef\x05\x1f\x71\xa1\x50\x1e\x8f\xea\xb3\x56\x1a\xfb\xc9\x3a\x6b\xce\xcc\x65\x2b\x2d\xa6\x3d\xc2\x43\x9f\x3f\x75\xc1\xff\x90\xac\xa1\xfa\xc2\x35\x44\xa8\x24\x5b\xe1\x9c\x2b\x20\xf9\x22\x4c\xc3\xb8\x84\x50\x21\xa6\xb7\x0a\xfa\xc1\x6e\xd1\x8c\xf3\x51\xa3\xde\xce\x44\xc1\xa7\xa7\x9e\x83\x09\xbe\xe5\x5a\x40\x64\x39\x3a\x1a\x7c\x2f\x0a\x91\xdf\x5f\x76\x4c\x37\x25\x25\x4d\xd6\xb2\x51\xaa\x43\x28\xa8\xc4\x2a\xcc\x00\x57\xf9\x81\xe7\x35\xe1\x01\x9b\xae\x61\x04\x8e\x80\x7a\xb8\x95\xdb\xe4\x29\x71\xa4\x9a\x8a\xbd\xcd\xa6\xfc\x40\x6f\xbb\xaa\x5c\x41\xc7\x1b\x04\x4c\x24\x02\x5a\x5f\x72\x68\x43\x14\xb8\xb0\x7b\xb3\x65\x02\x16\x60\x86\xa4\x58\xf0\xb5\x02\xcf\x54\xf6\x8c\x6a\x57\x3d\x5c\x91\xff\xde\x00\xb8\xa6\x9c\x58\x8c\xb0\x55\x56\xcc\x4f\x37\xfc\x76\x73\x73\xd3\xee\xe0\x37\x7c\x7c\x71\xce\xdd\xc4\x6b\x7f\x64\x9d\x1a\xe5\x78\x8f\x4e\x8d\x2a\xb0\x40\x7b\xaa\x31\x84\x81\x30\xd6\xa0\xdc\xb0\x5f\x4a\xb9\x61\x6a\x11\xef\x96\x18\x91\xf0\xce\x99\x3c\xcf\xbc\x57\xdb\x42\xcf\x1d\x57\x62\xe5\x62\x3d\xff\x6e\x3c\x59\xdd\xc3\xc7\x26\x1a\xe2\x29\x2e\x55\xc4\x3b\xe9\x9d\xdf\xdd\xc9\xde\x95\xb3\x0b\x7b\xa6\xf1\x9d\x0f\x12\x05\x96\x21\xe1\xc3\x8c\xa9\xe9\x7d\x92\xc3\x40\x9f\xc9\x03\x0a\xd1\x6f\xb8\x17\x86\xba\x3e\xa7\x7c\x22\x36\x67\x20\x8c\x07\x65\xc6\xca\x83\x20\x73\x52\x81\x30\xcc\xcf\x84\x4b\xcf\xd8\x29\x29\xec\xbd\x5c\xd0\xe1\x58\xb0\x7c\xc7\x81\x5c\x10\x5e\x05\x84\x84\x88\x0e\x3c\xfe\x47\xc3\x70\x2c\xfa\xb8\x0b\xd5\xfe\x5c\x0d\x67\x47\xe4\x7b\x09\x2a\x42\xfb\x42\x35\x23\x7d\x3e\x36\x83\x7a\xdd\x58\x31\xd6\x54\x0e\x20\x6e\x3e\xc6\xf1\xbb\xb6\x58\x37\xcc\x3a\x56\xe5\xa6\x88\x21\x25\xfc\xdc\x39\xf1\x4d\xf0\x1a\x09\x32\x82\xbb\xc7\x30\xd5\xcd\xfd\x9c\xa7\x8b\x4b\xbf\x8d\x7a\x35\xbe\xe3\x43\xd5\xe5\xf6\xdd\xc1\x6c\x2d\x9b\x89\xab\x1e\x2f\xca\xf3\x61\x7f\xb4\xe1\x85\xec\x09\xe8\xea\xe9\x1f\x02\x63\x76\x61\x27\x13\x6e\xf3\xe2\xd4\x23\x8e\x6a\x27\x84\xbe\xcc\x76\xfb\x5e\x96\x9d\x4c\x41\xa4\x37\x22\x8a\xb6\x8e\x5c\xbc\x79\x0b\x09\x0e\x35\x55\x16\x03\x0b\xb0\xa0\xb1\x80\xd7\xbc\x69\x13\xa2\x58\xb0\x96\xcf\xc1\x25\x58\x5c\x08\x1a\xc0\xb6\xca\x77\x62\x76\x5b\x56\xe1\xfa\xd6\xa0\x14\x25\xe1\x46\xb3\x2f\x71\x2c\x97\x82\x57\xd4\x94\x30\x9c\x51\xcc\xb8\x07\x39\x31\x57\xfb\x46\x63\xd4\xd8\x40\xc2\x90\x01\xdb\xfb\x22\x6c\x1b\xd8\xd3\x07\x08\x06\x23\x4a\x13\xed\x1a\xe5\x93\xbd\x86\xd5\xdc\xd7\xa4\xc9\x72\x63\x26\xb9\xef\xf9\xef\xca\x28\x4f\xf5\x7d\x64\x37\xbc\xc6\x14\xf0\x48\x58\x66\x97\x38\x93\x58\x8e\x35\x9d\x1d\x76\xf4\xf1\xe9\x41\x40\x22\x84\xb2\x43\x28\xa2\xeb\x1f\x68\x1f\xa7\x61\xe5\xcb\xb2\x5c\xd7\xf3\x17\x76\xc9\x3f\x82\x8c\x15\x21\x4f\xce\x3b\x5b\x57\xdd\x8e\xc6\xf4\x05\x22\x9a\xfb\x6c\x62\x3f\xf3\x74\x32\x94\xb4\xb7\x39\x0f\xc7\x92\x61\xa1\xab\x05\x62\xde\xc0\xf9\xc6\x5e\xb0\x9f\xef\xd2\x1e\x76\xb9\x4d\x21\x5d\xd5\x24\x71\x05\xe5\xd9\x4b\xe7\x89\xc6\xf4\x4a\x8c\xf3\xd7\xf1\xf9\xea\x2c\xe1\xfb\xbf\x3b\xe5\xee\x11\xc2\x42\xdc\x09\x40\x1c\x42\xc7\x99\xaf\x11\xb1\x34\x99\xba\x1a\x0f\xe3\x6c\xe2\xa6\x05\x6a\x0e\x0c\x79\x55\xce\x82\x66\x1b\x62\xbb\xeb\x0b\x0e\x28\xcc\x77\x12\xb5\x28\xd4\x25\x68\xbc\x1a\x56\x8c\x0a\xcb\x16\xec\x6f\xb1\x9b\xc1\x4d\x19\x75\x94\x17\x05\x07\x89\x1e\xfa\x34\x87\x4e\xdd\x2b\x89\x0a\x08\x49\xbd\xe5\x3b\x65\xf5\x12\x19\xc6\x12\xf2\xfd\x73\x60\x71\xf6\x44\x06\x97\x57\x8b\xbd\x81\x04\x2f\x8f\x9d\x6d\x45\xf2\x77\xde\x9c\xd1\xd8\xc6\x86\xc3\x61\x0f\x91\x8f\xd9\x60\x5a\xa3\x62\x0a\x86\xb2\xb7\x99\x6a\xe3\xbe\xf8\x6a\x82\xf8\xc7\x6c\x5f\x95\x4d\x3b\x9b\xb4\xe4\x23\x20\x89\x15\xd4\xd4\xaa\x70\x78\x4d\xca\x5c\x7c\x30\x7f\xcf\x80\xf1\xe0\x03\x2e\xba\x30\x31\x83\xcc\x2f\xd8\xd4\x87\xa1\xc2\x9c\x06\x41\x3e\xcb\x5f\xe6\x19\x6d\x26\x0e\x83\x78\x63\xb3\xbf\x0f\x9b\xa5\xa3\xcf\x66\x01\x47\x9b\x2e\x4c\x18\x57\x5e\x18\x10\x1f\xe8\x1b\xe8\x87\x19\x65\x2b\x35\xea\xc9\x8e\x81\x8e\x54\x21\xa2\x0c\x1c\xfb\x82\x1b\xef\x14\x19\xa1\x2c\xc1\x47\x30\x58\x13\xc2\xed\x39\xac\x8f\xc6\x6b\x11\x42\x8a\x19\xff\x9e\x1d\x73\x36\x5c\xf7\xee\x3e\x7e\xfc\xe4\xbc\x37\x90\x83\x51\x69\x91\x95\xc5\xc4\x0e\x88\x20\x34\x68\x8e\x81\xc5\x17\x98\x85\x68\xa9\x33\x87\x8b\x59\x70\xad\x34\x00\xb9\x93\x1a\x7a\x76\xee\x94\x26\x97\x6e\xda\x8c\xe3\xa1\xe7\x4c\xa9\x93\x53\x45\xc4\xa7\x4e\xb1\x29\x0a\x00\x59\x02\x21\x2c\x3d\x16\x2c\x63\xa8\x0e\x86\xca\xb6\x14\x98\xfe\x83\x51\xcf\x86\x19\x7a\xd8\xce\x9f\xf6\x06\x5a\xde\x88\x05\xec\xea\x16\xcc\x65\x66\x89\xfb\xca\xa0\xaa\x4d\x2e\x84\xe8\x0a\xda\x7f\x5d\xa7\xbf\x3f\xde\xa9\x58\x95\x4d\xf5\x2a\x64\x8a\xa6\x2a\x5e\x7e\xcc\xe5\x36\xf9\xf6\xa6\xc5\xe0\xce\x3e\x94\xce\x42\xa2\xb5\xb6\x76\x17\xf4\x10\x0f\xde\x8b\x4d\xea\x5e\xd8\x5b\xed\x4d\x2c\x11\x8b\x9d\xe2\x9f\x40\xdb\x8e\x25\x9f\x63\x18\xbb\xb7\x1f\x05\xd5\x1a\x18\x17\xbc\x89\x7b\xdb\xf8\x74\x88\xfa\x74\x84\xcd\x82\xa2\x50\x0c\x2d\x86\x38\xfb\xfa\xe7\xa9\xc6\xc4\xe6\x38\x53\x6f\x3e\x71\xf0\x99\x1a\x64\xe2\xfc\xba\xf1\xba\x46\x12\xfb\xcc\x04\x94\x38\xb4\x1b\x3d\x66\x2f\xea\x8b\xc3\xf6\x3f\xdc\xb6\xbd\xc7\x12\xf0\xdd\xbe\x27\xe4\xce\x2d\xf4\x68\xcd\x61\x00\x23\xe7\xda\xc3\xb6\xe4\xc3\x86\xc2\x11\xcb\xf6\x9a\x6e\xeb\xc5\xa0\xde\x98\x7f\x89\xd6\x1d\x61\x25\x72\x0e\x19\xb0\x90\xa0\x76\x51\x94\x4b\xe6\xaf\x83\xc0\x10\x51\xb0\x00\xb1\xdf\x1f\x86\xfc\xd1\x39\xb0\x83\xdb\x4d\x73\x00\x30\xf6\xc2\xd8\x28\x04\x95\xcd\x19\xf1\x3f\x42\x8a\x1c\x13\xc4\xb2\xf5\xb6\x4d\x2f\x89\xf0\xaf\x59\xd1\x46\xfb\x19\x96\x60\xe6\xe9\x93\xb3\x73\xd6\xae\xd1\xb9\xa9\xf2\xd5\x0a\x78\xda\xbc\xb8\xb4\x05\x10\x17\x71\xd2\x5b\xab\xc8\x2b\x4d\xdb\x0a\xfc\xa3\x06\xb5\xdc\x2b\x6f\x49\x47\x28\xdb\x08\xaa\xe3\xc8\xcf\xea\xb9\x8d\x63\x83\x34\x51\xb3\x19\x44\xd2\xe6\x03\x5a\xef\x6c\x4a\x8c\xf5\xcc\x3c\x24\x71\xa6\x30\x78\x5a\xc5\x3f\xcc\x70\xa3\x6d\x93\x9f\x09\x3f\xfd\xa0\x7e\x46\x7e\xca\x0a\x93\x48\xc5\x4c\xf4\x5a\x2b\xdd\x50\x70\xcc\x3b\x6b\x89\x1b\x39\x67\x46\xc8\x94\x8d\x37\x28\x80\xdf\x8d\x5a\xbc\xdc\xc4\x3c\x1f\x1f\x82\xdf\x84\xda\xb3\x17\x14\xe4\x6c\x8d\x44\x85\x61\x4b\x33\xa7\xbd\xb8\xfe\x57\x09\x4a\x6c\x27\xcb\xd4\x3b\x90\x73\x44\x61\xe3\x1f\x13\x65\x44\xc8\xaa\xe7\x5f\xca\xff\x89\x12\x3b\x09\x98\x35\xd7\xc0\x59\x13\x25\x96\x24\x31\xcd\x3f\xa3\x3f\x13\x7c\xb7\x02\xbb\x24\xee\x78\x47\xdc\x27\x28\x5e\xcd\x8f\x0d\xec\x60\x12\xde\x87\x9d\x00\xe6\x27\xac\x40\xf9\xa7\xce\xb3\xd8\x92\xa4\xa8\x61\x77\xd9\x32\x57\xe3\xe7\xe2\x39\x14\xb1\xfc\x47\x9b\x76\xcd\x9e\x8a\x12\x72\x8f\xb8\x39\xf8\xda\x74\x2e\xa8\x1e\x89\xee\x1d\x37\x30\xf0\xea\x56\x73\xfa\x08\xb9\xe9\x80\xf9\x42\x44\xbd\x47\x2c\x9d\xd5\x4d\xae\x1d\x05\xc6\x8f\xe2\x99\x94\xc0\x00\xcc\x1e\xe4\xc6\x88\x86\xeb\x6c\xdc\x71\x31\xb5\x56\xd7\x6b\x3a\x5f\xec\x5b\x36\x33\x4f\x35\x4c\xbf\x70\xd6\x6c\x40\x76\x65\x70\x3b\x23\xbe\xa9\xde\x69\xdc\x34\x04\x1d\xed\x91\xe3\x00\x8c\x06\x18\x58\xbd\xd7\x2c\xd3\xb4\x13\x85\x06\xbe\x6d\x13\x25\x95\x90\x69\x85\xc8\xd3\x5c\x0a\x4f\xa3\x20\xc5\x31\xa0\x0e\x76\xdb\x19\x38\x41\x4b\x9c\x62\xd1\x2c\x03\xb5\x38\xc5\xf2\x8e\x43\xf9\xb9\x60\x88\xe2\x34\x7c\x20\x1a\x7f\xa0\xc9\xad\x80\xee\xe0\x35\x74\xa0\x35\x81\xe0\xd4\x3b\x3b\x7b\x37\x0a\x04\x52\x69\x68\x48\x88\x74\x72\xe1\xd4\x1a\xe2\x56\x99\xec\xba\x86\x9d\x18\xdf\xf9\xe3\xd9\x93\xc7\xa7\xda\xf9\xf7\xef\xed\xf7\xfb\xf7\x50\xf4\xbd\xb6\xda\xd8\x02\x89\x99\x8e\xe6\x14\xb1\xf3\x3f\xc9\x9b\xdd\xc7\xef\xd3\xff\x77\x09\xdf\xc9\x33\x4e\xee\x8c\x43\x14\xd1\x7d\xc7\xb7\x1c\xd7\x7f\x45\x18\xb2\x9b\xf1\x53\xef\x66\xd9\x2a\xcc\xf8\x15\x09\xf0\xb2\x05\x82\x0c\xd2\x50\x87\x48\x4b\x0f\x13\x3f\x95\x30\x11\x7e\x2e\x24\xb5\x58\xbf\xde\x32\xf9\x90\xf8\xcd\x12\xca\x97\x36\xad\x2c\xde\x2b\x58\xd3\xbf\x30\x7d\x93\xa4\xeb\x3e\x1c\xc3\x73\xfd\x31\x2a\x91\x53\x3f\x3c\x96\x07\xf4\x43\xe2\xe3\x0d\x4a\x04\x97\x92\x41\x1e\x13\x0f\xef\x63\x05\xbe\x86\x97\x11\x2b\xb2\xe5\x80\x62\x32\x29\x39\x7c\x0d\xf4\x1f\x0c\x9e\x10\x36\x9f\x8e\x9a\x63\xeb\xcd\xb2\xd8\x74\x2e\x7a\xba\x6f\x53\x96\x17\xf9\xba\x9a\xb3\x51\x65\x0e\x6c\xd9\x33\xde\xbd\x81\xed\xab\x9f\x3c\xeb\xef\xe3\xfc\xaf\xca\xd0\x83\x63\xd0\x92\x04\x6a\xa0\x06\x0e\xfb\xbf\xfd\x65\x63\xb6\x38\x9c\x1c\x9c\x9b\xb8\x73\x7e\xf3\x68\xd7\x37\x3d\x51\x3b\x52\x21\x1e\xc9\xf6\x66\xb4\x05\x62\xe5\x95\x15\xcc\x3d\x8d\xda\xfd\x4c\x82\x65\xfe\x94\xfe\x4c\x03\x4c\x1e\x32\xca\xd9\x28\xf5\x92\x5d\xe3\x02\x4e\x36\x3c\xc3\x1c\xdc\x55\xe2\xb9\x16\xe3\x8c\xde\x53\x06\xe6\xbf\xa9\x44\xb8\xf6\x27\xb5\xeb\x17\xe3\x94\x24\xf6\x2e\x5c\x53\x79\xda\x05\xea\x02\xdd\xc8\xdd\x90\x7b\x61\xbc\xe1\x28\x1e\x33\xb6\x61\x55\xcf\xce\x4d\xb0\xd9\x8e\xef\x19\x63\xa7\x70\x2b\x8d\xeb\x45\x3d\x9e\x8d\x2a\xf8\x8e\x47\x81\x4c\x86\x42\x87\x1b\x80\xf0\x16\x37\x76\x2d\xf6\x4a\x0b\xe5\x0f\x10\x3e\x48\x7d\x5c\xed\xf4\x11\xe7\x31\xfa\xf3\x3d\x46\xd0\x80\x9c\x9c\xc1\x1e\xef\x82\xff\x03\x3a\xc4\x08\x56\xfa\xf4\xc2\x61\xe0\xa8\x7d\x86\x3a\xc4\x83\xb2\x57\x77\xe0\xed\x1b\xb2\xfd\xb3\xd1\x39\x17\x0f\xc0\x73\x71\x5c\x1c\xe4\x0d\x5e\xc0\x19\x62\x08\x62\x07\xf1\x4a\x9b\x3c\x8c\x16\x81\x70\xb7\x29\xbb\x28\x18\xd0\x3e\xab\x80\xe5\x8b\x3c\x56\xab\x61\xaa\x7d\xe9\xf9\xdd\x2c\x33\xf7\xf9\xd3\x7c\x65\x43\x10\xb3\x01\x7a\xdf\xe8\x3f\xa8\xaf\x28\xf4\xbd\xd4\x04\xc4\x48\xc4\x9f\x90\x9a\x54\x22\x12\xaf\x22\x7d\xfd\xc4\x18\xc7\xee\xe0\xbe\x50\xec\xb9\x7e\xdf\xb7\x7f\xdc\x73\x3d\xac\xd9\xbb\xaf\x07\x35\xfb\x3b\x1d\x7e\xb9\x0a\x0d\xb8\xeb\x21\xbe\x62\x8a\x9b\x19\x3a\xa6\x3f\xb6\xfb\x60\x9a\x03\x55\xb3\x40\xe2\x18\xff\x18\x4c\xd8\x33\xce\xca\x0a\x4f\x82\x7c\xa2\xfc\x98\x7f\xce\xc2\x89\xf5\x2c\x74\xa8\x69\xf6\xba\x0c\xe8\xed\x07\xf2\xf6\x1b\xb1\xd0\x53\x03\x71\xf0\x08\x00\xfb\x3a\x46\x1a\xe1\xcf\x2f\x2e\x66\xcb\xaa\xdc\xd7\xf0\xf4\xc6\x2b\x2b\x2c\x42\xcb\x13\x1c\x57\xe6\xfa\xaf\xc4\x80\x64\x1c\xa8\x98\x4b\xc2\x5a\x81\x76\x45\x05\x47\xa7\x54\xd3\xe4\x7e\x72\x2e\xff\x34\x8d\x2f\x8c\xe3\x27\x20\x1e\x38\xd6\x82\x56\xb9\x99\xe9\x53\x80\xfe\x19\x06\x17\x4e\x47\x5e\x93\xa1\x16\xea\xcb\x72\xbf\xc0\x2f\xf6\x5b\x47\xf8\x01\x78\x2c\x23\x0c\x60\x03\xa3\x79\x3c\x4c\x83\x16\x5c\x69\x94\x91\xa5\x70\xf4\xed\x4e\xe6\xe3\xc8\x70\xa0\x86\x0d\x5b\x68\x04\xbe\xa0\x26\x28\x09\x9c\x7b\xfd\xe7\x3e\x33\x0f\x33\x55\x04\x86\x1d\x94\x26\x3a\xb8\x11\x1e\xf8\xec\xc1\x63\xfd\x62\xeb\x7e\x0e\x2e\x05\x86\x90\x78\xdb\x66\xc3\xbd\x4a\xc0\x5b\x56\xb8\xcc\xc6\x0e\x04\x2e\x47\x9c\x3d\xf8\xb7\x58\xc5\xeb\x93\x17\x7d\x89\xac\x4a\x2e\x88\xbb\x39\xac\x01\x79\x97\x48\x4c\xb7\xab\x25\xaf\x80\x92\xf4\x2c\xcf\x50\xf5\x65\x08\x38\x58\x80\x33\xfa\x97\xf3\xcd\x9d\xcb\xe0\x2b\x28\xab\xe6\x4e\x2e\x31\x81\x10\x14\x40\xb1\x07\x8a\xac\x30\xb8\xba\x3d\x42\xc3\x96\x99\xe8\x6a\xf7\xc3\xa9\xc8\x3e\x5a\xb8\x07\x16\xfd\x26\x62\x0a\xe1\x0a\x11\x91\x8f\xbc\xc8\x93\x55\x1b\x66\x32\x97\x79\x4f\x9c\x5b\xfb\x0a\x03\xa7\xc1\xde\x93\xa5\x43\x03\xfd\x93\x51\x6d\xef\x28\x03\x85\x53\x96\x1e\x12\xd5\xf6\x39\x97\xe3\xc1\x82\x44\x16\x69\xa3\x09\x39\xfe\x13\x78\x6a\xb1\xcd\x7a\x39\x42\x18\x71\x91\x78\x82\x00\x44\x11\x05\x7a\x94\x54\x6b\x92\x7e\x0a\x31\xa2\x73\x4d\xee\x2b\x5c\x86\x3c\x56\xe3\xb8\x60\x35\xf9\xf9\x9d\xa7\xe5\x2a\xc3\x09\x1c\x0f\x21\x34\x8a\x97\xda\xd0\x99\xbc\xfa\x11\x57\x0e\x0e\x55\xbb\x3a\xe0\xad\xc1\xfd\x5d\xff\x8f\x44\x5f\x3e\xd4\x67\x33\x87\x5b\x27\x0e\xd0\xb0\x3f\xb6\x8f\x82\x0a\xba\x10\xf7\x2e\x53\xc8\x3d\x07\xe7\xf3\x43\x90\xdf\x27\x2b\xaf\xc9\x4f\x5c\x5b\x12\x68\x8b\x44\x09\x7e\xa2\x41\xb4\x3c\x76\x5d\x53\x13\x1d\x1b\x98\x6e\x8a\x24\x1c\x18\x16\x8a\xd9\x3c\x2c\x18\x31\x39\xfa\xd2\x4b\xb0\xc3\xf0\x1e\x8a\x9c\x07\xb1\x2f\x24\xee\x2c\x3a\x16\x2c\xb7\xba\x83\xa1\x97\xac\xa3\x03\xe5\xb6\xe0\x42\x89\x8d\xc6\x65\xd4\x73\x24\xb7\x22\x1a\x48\x05\xdb\x93\x6f\x50\x88\xdb\xe8\xc3\xa9\xdc\xbe\xf5\x4d\x59\xad\xbe\x0d\x22\xf6\x46\xef\x98\x04\x6a\xaf\xb0\x88\x80\xee\xfa\x9f\x81\x21\x0a\xe7\x87\x1d\x5e\x02\x85\x6e\xd8\x84\x89\x08\xfb\x36\x7b\x7e\x48\xef\xe0\x5f\x8d\x90\xf8\x3f\xca\x3f\x23\x70\xa7\xbb\xa5\xef\xdb\x11\x78\xed\xca\x85\x5a\x8c\xf7\x6c\xa3\xba\xe0\xc9\x0d\xf1\xfc\x61\x9b\xb1\x2b\x55\x5e\xbc\xc4\xa3\x96\x50\x78\x89\x53\xc9\x8e\xb8\x93\x9f\xcd\xba\x44\xe8\x77\x09\x2d\x5c\xcf\xbf\x96\xc0\xbe\x1d\xa2\xec\xed\xf9\x29\x0b\x28\xff\xea\xb9\x8b\x0e\xba\x47\x4b\x92\x15\xc5\x8e\x8c\x1f\x55\xe9\xdd\xdb\xd0\x6a\xe8\xd6\xd6\x71\xe8\x60\x30\xd9\x02\xb1\xc0\x7e\xe0\x58\x8c\x61\xcd\x99\x2a\xe9\x60\xfd\x99\x0f\x00\x21\x71\xb9\xf0\xe2\x96\xae\x6d\xd7\x0b\x9d\x9d\x44\x02\x62\x9c\xe6\x03\x18\x13\x6b\xd1\xd5\xeb\x96\x36\x44\x7a\x39\x0b\xba\xf2\x27\x80\x64\x03\x04\x52\xde\x22\x42\x83\xbe\xa5\x51\xf8\x49\x7c\xaa\x35\x70\x35\x92\xd7\xb5\x67\x17\x20\x26\xe2\xad\xc2\xbc\xdc\xfa\x7b\x3e\x8d\x58\x82\x1b\x3f\x7d\xa3\x71\xd0\xd2\x0d\x3e\xc5\xe1\xee\xf9\xfb\xb8\x14\x4f\xb7\x38\xf2\x28\xfe\x6d\x97\xd8\x37\x45\x73\x0c\xf5\x69\x51\x58\x47\x9f\x31\x1d\xdf\xf1\x37\xdf\x22\xc7\xe5\xa7\x62\xf4\x85\xb0\xf8\x75\xd7\x18\x7a\x43\x4d\x0d\xbc\x49\x64\xc7\xa9\x88\x8e\x7c\x79\x18\x5c\x31\x4e\x88\x85\x83\xe0\x82\x4f\xa2\x0b\x49\x89\x57\xa8\x55\x02\xd6\x5c\x70\x42\xc4\x0f\x1e\xbd\xf4\x7d\x12\xe1\x94\xa1\x50\x18\xc7\xec\x80\xc2\xae\xbc\xb1\xbc\x02\x21\x78\x82\xbb\x17\x9a\xfb\x80\x1e\x62\x5f\x8c\xa7\xbe\x60\xa7\x79\x3c\xa2\x07\x5f\x1e\xb8\x70\x1e\xf6\xad\xa3\xf7\x33\xaf\x8b\xeb\x31\x1c\x25\x90\xcf\x28\xb8\x47\x84\xd0\xa7\x6a\x08\x1d\x8d\x43\x1a\xdf\x30\xb9\xf4\x78\xac\xa9\x89\xab\x0c\x08\x82\x7b\x77\x09\xc0\x61\x80\xdc\xbd\xa1\xde\x5b\x20\x06\x02\xc9\x13\x0e\x5a\x22\x70\xf4\x48\xb8\x07\x5a\x5b\x10\x91\x12\xb9\x63\xb0\xb7\x6e\xdf\x52\x8c\x2e\x44\x38\xf5\xe1\x7d\xed\x30\xc7\x21\xc0\x5a\x22\x73\x74\x07\xb6\x1f\x72\x45\xe4\x8e\x93\x44\x09\x89\xda\x31\xca\x71\xb5\x5b\x17\xbe\x2c\x0f\x6a\x4f\xb9\x4c\xb8\x3c\xbd\x6d\xba\xc7\xf4\xc6\xae\xfb\x0c\x5a\xee\xd4\x26\x9b\xf9\xf3\x75\xd5\x05\x6d\x89\xf0\xe5\xec\xf6\x5d\x2a\xd1\x7f\x4a\x7c\x82\x58\xd5\x6c\x49\xa6\xc9\x4a\x02\x19\xda\x5f\x27\x3c\x2a\xb3\x27\x92\xa2\x6a\xf3\x71\xf0\x56\xf8\x49\x1c\x40\x28\xeb\x5c\x5e\xbf\x61\xdb\x05\xa1\x85\x1c\x11\xf0\x4e\xfd\xd1\xa8\x79\xbc\xca\xe4\xa8\x2b\x87\x2d\xe2\x20\xd1\x20\xaf\x33\x04\x61\xf6\x11\x98\x5d\xe2\x60\xb0\x92\x08\x86\x45\x03\x52\xb1\x96\x4a\xa3\x35\x81\xd5\xed\x9a\x76\xa2\x94\x0f\xdb\x10\x10\x95\xe1\x33\x94\x7b\x27\xb7\x24\x1c\xe8\x45\x1d\xf0\xfd\xc3\x2c\x01\x11\x9f\xb9\x1e\x98\x8f\x9d\x18\x08\x3f\x47\xd7\x4e\x95\x7a\x93\x81\xc8\x34\x04\xec\xb9\x7b\x35\x89\x6f\x09\x5d\xf8\xa0\xe8\x31\x3e\x3f\x1a\x7d\xc8\x5a\x31\xf8\xd0\x80\x26\x99\x2a\xf6\x66\x70\x71\x03\x00\xd5\x5e\xea\x53\x19\x23\xa0\x9c\xca\x73\x1e\x19\x3f\x90\x2a\xa3\x2d\x30\xd6\xe1\x7d\x66\x38\x62\x17\x45\x20\xea\xde\x19\xc9\x84\x20\x9c\xa4\xb4\x92\x25\xc6\x25\x23\x26\x23\x3c\x40\x56\x35\xd1\x88\xef\x05\xad\x50\xbf\x50\x43\x75\xf0\x10\xb6\xa1\x4c\x2c\x6d\xb8\x1a\x00\xef\xd0\x34\xa9\x2f\x1d\x85\x88\xf7\xd3\x75\xfc\xe2\xbd\x9e\x5f\x1c\x30\x72\x6f\x4c\xc0\xa5\xb0\x0b\x5f\xc5\x7c\xa4\x50\xa0\x00\x92\xfd\x82\x67\xf2\x46\x85\xa2\x0f\xb9\x39\xf6\x07\x75\x38\x82\xa0\xd1\x9e\x08\x48\xbc\xaf\x9b\x8a\x8e\x17\xd2\xe3\x7e\x7f\x8b\x2e\x48\x1f\x46\x05\x76\x5f\x94\x93\xd8\xdf\xfc\x31\xc0\x22\x0c\xa1\x6d\xb9\x22\xb8\xb7\x78\xca\x8c\x85\xac\x60\xf9\xf0\xb2\x18\xdf\x99\x4d\x1f\x88\x70\x78\xde\x6c\x20\x1a\xdd\x11\x13\xc5\x59\x84\x42\x86\x5b\x2b\x9a\x24\x81\xd2\x4e\xed\x28\xc5\x45\x7e\x4b\x7c\x34\x31\xa7\xa3\x18\x27\x7c\x06\xdd\xc1\x7c\x80\x74\x7e\xd3\xa0\x04\x2f\xfd\x9a\x31\x45\xd8\x27\x7e\x03\x74\x34\x30\x7d\xac\xf5\x8d\x07\xe6\x8f\x12\x1f\xcb\x37\x1e\xd5\x69\x84\x91\x3c\xbe\x99\xc0\x33\x6f\x30\xe6\x63\x31\xfe\x47\x5b\xdd\x1f\xa2\x5e\x57\xa9\x07\x29\xb6\xa1\x19\x54\x53\xab\x13\x09\xc1\x24\x64\xb8\x6f\xaf\x20\x22\xce\x1a\xde\x42\x83\x94\x3c\x8b\x9e\x79\xd0\x98\xb0\x3b\x12\x86\x35\x3a\x4c\xc6\x3a\xff\xd3\xe8\xb1\x04\x84\x2a\x23\x9c\xbc\xe7\xe7\x20\x44\x96\x14\xe1\x9c\x97\x83\xc4\x73\xff\x30\x28\xa2\x81\xec\xa0\xa4\xe4\xb7\xa2\x03\x9b\x15\x3c\x4d\x10\xb2\x42\x83\x38\xfb\x37\xbc\x83\xd0\x12\x87\x5e\x34\x6a\xf4\x11\xbd\xef\x21\x68\x4a\x5e\x6d\x45\xc0\x49\xf7\x2a\x6b\x82\xd8\x31\x6c\xbd\x85\x08\xdb\xc1\xdb\xe0\x35\x21\x60\x02\xd6\x9e\x1f\x17\x2b\xd0\xdd\xfc\x91\xfc\x17\xed\x0d\x02\x85\x54\x35\xde\x39\x83\xb3\x10\x66\x5c\x23\x7a\x2b\x87\x11\xe5\x34\xbd\x62\x01\x72\x2c\x1b\x04\xaa\xe2\xeb\x2a\x7e\x4a\x36\x63\x65\xaf\x83\x03\xeb\x4b\x09\x7c\xc4\xe0\x9d\x79\x85\x6a\x98\xef\x4d\xfb\x20\xbc\x89\x79\x40\x54\x9d\x47\xca\x9a\xd9\xb6\x46\x13\x30\x64\xe1\x91\xba\x59\xb4\x93\xbd\x2d\x70\xbf\x3c\xff\x2c\x61\xbf\x56\x56\xcb\x72\xbc\x4a\xf7\x4a\x10\x1e\x28\xcc\xf0\x40\xe1\xe8\xc5\x8d\x3e\x27\xb2\x25\xea\x93\x35\x7e\xaf\x8f\x86\x8b\xab\xc4\x3e\x37\x3a\x02\x51\x6b\xc1\xe3\x14\x71\x95\x5d\xff\x40\x45\x98\x9c\xac\x07\x1d\xf3\x55\xd1\xa0\xd5\x3e\x28\x70\x34\x44\xbe\x31\xc2\x63\x8b\x71\xea\x74\xec\xd3\xf1\x28\x87\x53\xf6\x81\xc7\xc2\x44\x28\xb9\xae\xff\x1c\xa6\x20\xe8\x54\xd1\xbf\xa0\x1e\x14\x15\x59\x62\x38\x4a\x09\x20\xa2\x66\xec\xf1\x38\x24\x96\x4a\x98\x72\x48\xd0\x9d\x99\x68\x47\xd1\xc0\x30\x55\xca\x3b\x81\x79\x38\xa5\x43\x22\xac\xaf\x67\x92\x26\x76\x64\xa8\x03\x72\xcf\x47\x4c\x17\x94\x67\x81\x83\x47\x80\xa7\x8b\x55\x2d\x9d\xdb\xaa\x4d\x2f\xf1\x72\x4a\x5f\x00\xfe\x26\x70\x78\xe2\xb8\xb1\x25\x47\x4d\x13\x06\x83\x03\x7e\x69\xd0\x4d\x2b\xf2\x81\x79\x82\x17\xf1\x6e\xae\x1d\x98\xda\xb9\x07\xf6\x8f\xb6\x34\xa9\x66\xf0\xe1\x22\x23\xb8\x28\x85\x27\xee\x76\xf0\xc0\x62\xad\xc3\xdd\x87\xdd\x89\xb1\x4e\x1f\xa6\xf2\x0d\x9a\x99\x1e\x77\xd4\x50\x3f\xdc\x3e\xa4\x65\xc4\x4a\x8c\xfa\x61\xc5\x24\x42\x15\xe5\x2f\xed\x78\xa0\x9c\xb1\x1f\xbc\xb8\xfd\xba\x56\xa6\x02\x55\xbb\xe1\x94\xaf\x6b\x3c\x1a\x23\x1e\x40\x5f\xa5\xfa\xf0\xb2\x8c\xed\xfa\x67\x3a\x15\xc4\x65\x1d\x8e\x8f\x29\xac\x35\x01\xb3\x88\xa1\x49\x34\xb4\x3b\x40\x56\x66\xd2\x78\x22\x4f\x41\x4d\x42\x0d\xcf\x16\x14\xe9\x82\x9f\xe0\xae\x2f\xf9\xba\x57\x76\x75\x92\xb5\x1a\x5a\xdc\x7a\xdc\xc7\xe1\x3a\xa1\x38\x37\x6f\xcf\xa8\xf4\xfb\x12\xdb\x29\x3f\x58\xbe\x36\xad\xdf\x36\xef\x40\x49\x9f\x7c\xe4\xeb\x95\x84\x8e\x05\x0f\x33\xbb\x0a\x56\xd3\x2d\xe3\xbb\x37\x8f\xa2\x87\xb9\x8e\x46\x1f\x37\x1d\x63\xe3\x70\xce\xfa\x62\x79\xdd\xae\x53\x3c\xff\x77\x6c\xa6\x81\xf5\x02\x88\x2e\x33\x7d\x7c\x8b\x2a\x19\x8c\x74\x60\xaf\x1c\xc5\xf4\x7c\x07\x31\x0e\x6d\x66\xf6\x97\xf0\x9c\xe4\xd7\x3c\xc4\x60\x7e\xc5\x91\xfd\x8c\xd7\xbc\x65\xc7\xa6\x16\x76\xeb\xe7\x77\x77\xa0\x4b\x79\x3b\x1a\x04\x87\x68\x66\xbd\x5a\xc5\xc3\x64\x7b\x90\x58\xb3\x16\x91\x43\x8e\x34\x48\x1d\xc1\xb6\x9b\xc4\x54\xfc\xe3\x17\xa9\x6d\x15\x9d\xc9\xb4\xad\x70\xdb\xba\x58\x11\x03\xd0\x92\x2c\x64\x83\x87\x36\xbe\x70\x69\xf5\x54\x0d\x12\x73\x88\x3b\x5b\xb4\x1c\xbd\xab\xaf\x04\xaa\x0a\x3d\x96\xdc\x22\xa4\x11\xda\x64\x8e\xc1\x55\x84\x4e\x38\xe5\x4b\x83\x7b\x74\xac\xc1\x86\x36\x6c\x13\xdd\xf1\xb3\x66\x6c\x13\xad\xf1\x60\xc3\x26\xb4\x72\xb9\x6c\x12\x1a\x18\xbc\x90\xf1\x6d\x9e\xe8\x77\x58\x74\x57\xb2\xd9\xc8\x62\x43\xe0\x6b\x77\x0b\x40\x00\x07\x97\x13\xcd\x43\x4e\x34\xe7\x48\x9c\x68\xdf\x0d\x4e\x6b\x69\x2f\x77\x35\xf5\x68\x35\x44\xd8\x88\xab\xfc\x81\x52\xc6\xc5\x1d\x0c\x2f\x6d\xb2\x3b\x0a\x41\xda\x57\x75\xc4\xe2\x70\xe9\x21\x00\xbe\xa4\x44\x73\x03\x14\xc2\x4a\x79\x46\x62\x66\x58\xe1\x01\x25\x1c\x2d\xcc\xd6\x17\xcc\xbf\x86\xeb\x79\xf3\xb0\xf4\xda\x2b\x1e\xd6\x33\x4d\x1c\x55\x2a\x97\x57\x36\x25\x22\xf2\x60\x23\x76\xf2\x50\x7b\xac\xf9\xf2\x17\x0f\x65\xd3\x32\x49\x38\x64\x5f\x69\x59\x96\x0d\xb4\x00\x3b\x70\x85\x6c\x6e\xc7\x90\x73\xa9\xe6\x0c\xa9\xe6\x39\x52\x07\xac\x21\x15\x1e\x02\x4e\x0a\xdf\x00\xb9\x2d\x62\x88\x2e\x10\x29\x25\x6d\x5a\x3a\xbc\xda\xdd\xa3\x33\x44\x1e\x3d\xf3\xc9\xe3\xfe\x46\x15\xfb\xdd\x3a\xac\x3b\xd9\x6f\x9a\xa4\x97\x76\xa2\xe3\x7b\x48\xbf\xb9\xe7\x51\xd5\xbe\xeb\x51\xed\xc9\x33\xc3\x2f\x50\xe1\x8e\x62\xd9\xa6\x6b\xdb\xc0\xe3\xeb\x72\xc1\x77\xfb\x7d\x53\x4f\x5d\x21\xf3\x19\x17\x32\x5f\x52\x21\x73\x8e\x42\x93\x8d\x12\xc5\xda\xda\x26\x61\x7b\x0d\xdf\x88\x5b\xf3\x96\x88\xd7\x5a\xed\x8b\xe5\x9f\x98\x27\x7f\x71\x2f\xe2\xa4\xe0\xd3\xbd\x50\x91\x40\x0f\x27\xf8\x2a\xdf\xdc\x13\x14\x30\x67\x5c\xc0\x9d\x53\x5c\x4e\x4c\x8d\x07\xb1\x9e\x84\x8c\x12\x43\xce\x37\xf2\x6a\x17\xd2\x9b\x8d\xd9\x41\xff\x2c\xff\x50\x15\xc6\xa6\xf7\x70\xd3\x5f\x66\xee\x7d\x4a\xb1\x4f\x70\xf6\x66\x83\x8a\x82\xf2\x5c\xcd\xb3\x16\xcf\xed\xf0\x4b\x1a\x6c\x2e\xb0\xaf\xe5\x5d\x74\x76\x7f\x9c\x98\xb6\xaf\xbd\x83\x63\xfb\xaf\xae\xee\x46\x2d\xb5\x7b\xe3\x38\x5f\xcd\x4e\x56\xd3\xd1\xf6\xe7\x52\x67\x47\x3c\x0a\x0a\xaa\x64\x2b\x0e\x1a\xfa\x6c\x01\x6d\x6b\xbb\x99\x3f\xc5\x5f\x5c\x09\xca\xab\x05\xfc\xe6\x89\xbc\xc8\x16\xbf\x46\x26\xf5\xf9\x61\x2e\xff\x4a\x3e\xd8\xf8\xeb\x5f\x24\xec\xa8\x7b\x65\x4e\x8a\x79\x56\xdc\xa5\x38\xf6\x31\x13\xdb\x4a\xb6\x24\xf4\x79\x61\x78\x24\x49\x12\x1e\x2b\x92\xa8\x25\x43\xed\x3f\x71\x37\x2c\x7e\xd4\x2e\x43\xdf\x6c\xd7\xb7\xbc\xd9\xe3\xa2\x9b\x9f\x51\x22\xa1\xb2\x95\xe8\x21\xb1\xb7\x1e\x87\xae\x18\xe7\xa5\x81\xd1\x6f\x38\xb9\xd0\x78\x4c\x27\x3a\xb0\x1c\xd3\x11\x0c\x09\xb9\x34\x11\x05\x0a\xd2\xd9\x31\x8f\x2f\x26\x54\x77\x23\xad\x80\x39\xe3\x54\x57\x90\x43\x09\xcf\x1f\x96\x1c\x3c\x3d\xaa\xcd\xa2\x9a\xc8\x37\x83\x16\x1e\xb2\x10\xf7\x98\xad\x96\xa5\xc2\xf0\x79\xf7\x87\xb8\x25\x30\x79\x63\x38\x52\xab\x38\x6a\xc2\x50\xd1\xb4\x85\x32\x3c\x7e\xf0\x47\xde\xb9\xd3\xe7\x01\x23\x8e\xfe\xc6\x77\xee\x7a\x50\xf8\xbd\xe2\xfc\xd9\xc3\x4d\x92\xd7\x8b\x7e\x57\xf8\x20\xf8\x7c\x9f\xac\x52\x44\x58\x92\xf7\x88\x2f\xb5\x4d\x6e\xf0\x83\xf5\xb0\xc3\x0d\x36\x6c\xf7\x99\x69\xeb\x2b\x3b\x67\xd7\xb0\x05\x31\x01\x55\x4b\xea\xde\x4c\xfd\x0b\xaf\x14\x9a\xbd\xf6\xa1\x40\x27\x3c\x49\xf1\xe9\x5b\xd0\x32\x06\xc1\x7f\xd0\x5b\xae\x61\x67\xff\x31\x2f\xba\x06\x30\x08\x4d\x10\xef\xea\x89\x7a\xbd\xfd\x21\xde\xb4\x9c\xb1\x1b\xd9\x6b\x90\x55\x70\xa9\xfc\xa3\x56\x0b\xb1\x0f\x27\x0c\x6d\x54\x38\x71\xe2\xca\x41\x2c\xf2\x08\x0e\x8c\x7f\x5e\xdb\xf5\xf8\x39\x85\xe9\x3b\x4a\xc9\x09\x47\x25\x29\xe3\xdb\x50\x49\xe7\x10\xd4\x36\x7e\x21\x15\xd1\xa6\x24\x17\x96\xe7\xb5\xbe\x93\x6a\xd5\x1c\x0d\xe9\xa3\x38\xc7\xa2\x84\x54\x14\x12\xcd\x65\x80\x44\x1e\x71\x9e\xe1\x19\xba\x4a\x88\x83\x22\x76\xd4\x82\xde\xaf\xff\x8f\xda\xea\xf9\x02\xc1\x74\x24\xa5\x8f\x06\x2a\xdf\xf2\x18\x64\xe6\x1e\x7e\x2c\x0b\x5f\xf7\x98\xe5\x51\x30\x5e\x6f\xf2\xdd\xc6\x2f\x23\x27\x51\xa9\x40\xe5\x73\xac\xdc\xc0\x2c\x5b\x12\xe1\x75\x37\xff\xb2\x44\x10\x1b\x49\xd8\x21\xde\xe7\x53\x8e\xf7\x29\x09\xac\x9f\xc9\x0a\x62\xf1\x89\x82\xdc\x7f\x1c\x25\xfb\x87\x10\x39\xf3\xa9\x7e\x4d\x16\xf1\x96\x89\x49\x85\x50\xa3\x1f\x89\x83\xb4\xcb\x95\xd8\x45\x65\x25\xcf\x2c\xed\x36\x40\xcb\x88\x8b\xcf\xa6\xbe\x88\xec\x8e\xc8\x38\x89\xb9\xcc\x57\x97\xec\x1e\x4c\x78\x67\x25\x56\xc2\xfa\x90\xa7\x82\x13\x44\x9d\xe3\x9a\x81\x9a\x99\x33\x8e\xf5\x6c\x3e\xe3\x18\x67\x41\x89\xac\x90\xfc\x7e\x36\x49\xd3\x54\xf9\xb2\xc5\xdd\x33\xd3\x96\xa6\xea\xe8\xcb\xe4\x5b\xdd\x58\xc3\x52\x75\x5b\x45\x05\x0b\xb1\xce\x99\x28\xc9\xcf\xeb\xb9\x62\x56\xdf\xd7\xe3\x32\x12\x4f\x4d\x46\x22\xd1\xd4\x7c\x6d\xbe\x24\xd1\x7c\xe6\x06\x06\x05\xb6\x20\x03\x8b\x3a\x99\x3f\xaa\xcd\xdd\xcc\x9c\xdd\x75\x19\xf5\xb6\xd9\xc9\xfb\x05\x67\x8f\xce\x9f\x9a\xc1\xf6\xa6\x5d\x64\xc3\x92\xbc\xf8\x67\x2c\x56\x1b\x94\x0f\xf3\xfc\x3e\x88\x72\xd4\x14\x4a\x4d\xfc\x59\xea\xc7\x37\xad\x12\x7f\x1f\x29\x76\x9c\x02\x63\x69\x2b\xc4\x73\x44\x20\x2b\xb6\xc6\x97\x1a\x78\x15\x7d\xd3\xe4\x88\xcf\xa2\x29\xa6\xbe\x2c\xdb\x4d\x06\x63\x8e\xda\xee\x92\xca\x05\xb9\xe5\x38\x4e\xe6\xed\xd3\xb7\x67\xf1\x69\x5b\x34\x88\x69\xad\x2f\xad\xd6\x87\xee\x42\xaf\x08\xcc\xf9\xc3\x33\x3f\xcf\x75\xbe\x43\x39\x7d\x06\x1d\x7a\xb1\x1c\x6a\x36\x79\xf5\x5c\xdc\x25\x88\xa2\x35\x78\x67\xf0\x87\x36\xac\xb9\xc3\x6d\xa1\xad\x5e\xe6\xa9\x8d\x8e\x9e\x78\x1c\x9a\xa7\x77\x1f\x0d\x46\xc3\xb1\xa8\x1c\x53\xe6\xc7\x85\xd4\x6d\xd2\x80\x29\x26\x3a\xa2\xa1\x2d\xd5\x2a\x48\x51\x49\xbe\x83\x8e\x8c\x08\x18\x11\x61\xdc\x40\x68\xab\xc2\x5d\x11\x28\x87\x8c\x94\xdc\x09\xfb\x85\x08\xd9\x8a\xd1\xab\xde\xfe\x2d\xaf\xc4\x71\xa2\x36\xc0\x7a\x31\x07\x18\x77\xf3\x3a\x17\x82\x59\x8c\xe0\xa6\x6c\xc6\x06\xa3\x09\x54\xa4\xb1\xb5\x58\xac\xf1\x0b\x5b\x9d\xbe\xf7\x3e\x8e\xff\xc4\x62\x4b\x1d\x11\x18\xfd\xc4\xc0\x8b\x0b\x2e\x04\xfb\xf2\xe5\xf6\x00\xc8\x7d\xa8\x9d\x71\x05\x67\x28\x3c\x0d\xec\x48\x4b\x7d\x93\x79\x53\xd0\x70\xc4\x36\xc4\x03\x79\x3d\xf7\x20\x9a\x3d\xa7\x50\x9b\xb8\x6a\xeb\xd5\x6a\x5a\x34\xd9\xed\xc2\x2d\xed\x5e\xd7\xce\xa3\x02\x2f\xb1\x89\xc5\x0a\x38\x99\x2c\x00\x27\x41\x7e\x4c\x96\x9f\x10\x19\x97\x19\x10\x23\x4d\x2d\x2f\x2e\x10\x8f\x0d\x01\x43\x89\xe6\x11\xce\x34\x9a\xd2\xd7\xcb\x6b\x3e\x4f\xd0\xed\xb1\x76\x6c\x05\x5f\x02\x39\x4d\x50\xbd\x15\xf0\xae\x97\xcc\xbe\xd9\xaa\xd5\xa7\xed\x27\x9e\x46\x6f\xe5\x5e\x23\x17\x27\xa3\x55\x19\x55\xea\xc7\xc1\xc5\x92\x6d\x74\x65\x29\xbc\x51\x55\x96\xcd\xf0\xd9\x93\x81\x0a\xdc\x2d\x02\x2e\xf9\xd2\x85\x3c\x88\x30\x51\x4b\x1d\x30\xc4\x83\x43\x94\xc2\xbe\x2e\x4d\xf4\xf5\x15\x1d\x00\xfa\x11\x4a\xfc\xab\x09\xb7\x31\x3f\x03\x44\x6b\xd4\xad\xcb\x20\x0a\xa3\x14\x64\xea\xdc\xc7\x41\xba\x58\xd4\x96\xa8\x34\xec\x85\x5d\x7e\xdf\xf5\xab\xb2\x9c\xdc\x5a\xcb\x84\xf6\xb7\xe8\x45\xc2\xa2\x3d\x7b\xd4\xa7\x05\x7c\x48\x9f\x18\x72\x56\x7d\xea\x70\x98\x61\x5e\x5d\x6f\x82\x45\x3b\x3b\x7b\x38\x95\xe9\xdf\xa5\x6a\xd8\x6f\x14\x0f\x10\x9f\x20\x5a\x31\x02\x26\x9e\xbc\x1b\xd6\x88\xe1\x3c\xcc\xf1\xed\x70\x0b\xf5\x9f\x36\x79\x63\x3f\x3c\x31\xb9\x39\x69\xf2\x6c\x19\xb4\xe4\x28\xc5\x14\x8c\x94\x64\x04\x2b\xa2\x82\x7b\xf4\x00\xaf\x3e\x47\x74\x15\x3d\xb2\x9b\xf8\x07\x7b\x87\x87\xc3\xd3\x19\x77\x34\x62\xd2\xe2\x86\x05\x07\xa2\x2a\xd0\x09\x2c\x88\x47\x69\xca\x82\x3d\x89\x44\x9a\x3b\x74\x29\xb1\x35\x41\xf5\x70\xa0\x12\x60\xd9\x05\x5c\x66\xb7\x0c\x37\xcc\x25\xd5\x4b\xfc\x0b\xd4\x45\xb7\xf5\xd5\xdc\xc3\xe8\xac\xea\x1b\x3c\xa6\xce\x89\xfd\x83\xdf\xbe\x0e\x43\x42\x15\x19\xb1\x41\xc0\x11\x00\xb0\xf3\x5b\x7e\xb0\x12\x31\xb3\x07\x83\x3e\x38\xac\xaf\x52\x15\xf9\x16\x0a\x06\xf8\x3a\x96\x70\x95\xaa\x5a\xff\xde\xeb\x70\xb0\x3b\x92\x43\x12\x3f\xce\x7b\xf2\xdd\x23\x3c\x71\x89\x85\x3b\xcf\x62\xc3\xf7\x75\x2f\x92\xeb\x5f\x34\x7c\xca\xba\xcc\x70\x36\x99\xc4\x26\x69\x77\x15\x9d\x06\x58\xa9\x37\x3d\x8f\x1c\xb4\xc0\x6a\x3a\xd6\x5e\x43\x0d\x95\x21\x48\x54\x6d\x1b\x7d\x8b\x57\x1e\xee\xf6\xad\x38\x5f\xfb\x49\xf4\x3e\xed\x68\xee\xeb\xfe\xa9\xb5\x2d\xf5\x69\x8b\x15\x6d\xf5\xfb\xd8\x8b\x6e\xd8\x24\x09\xaf\x03\x84\x2d\x7e\xaa\xac\x5b\x23\xf4\x3a\x7f\x98\x23\x26\x38\x14\x79\x6d\xef\xec\xdb\x6f\xad\xdf\xc0\x59\x05\x8b\x7d\x84\x54\xed\xca\xf4\xd0\x74\xc3\x92\x4e\xba\xba\xeb\x54\x25\x71\xb6\xdb\x13\x74\x58\xcb\x7e\x27\x7c\xf9\xf9\xc3\x27\xc3\x92\x13\xe8\x46\x73\xc6\xd8\x49\x33\x8e\xe2\x22\xb9\xd0\x9e\x9a\x84\x5e\x84\x47\xe5\x8e\x4d\x41\x4e\xc9\x54\x2b\x9c\x33\x28\x97\x64\xb4\x2f\x59\x62\xe0\xff\x93\x65\xfc\x13\x6d\x0f\xf0\x83\x1d\x3d\xfc\xdd\xc8\xae\xcc\x2a\xfa\x71\x28\xec\xd5\x78\x04\xc0\x0a\x3e\x7e\xba\x45\x10\x0d\xad\x06\x9b\x49\x57\x11\x8a\x07\x8f\xf3\xc4\xbe\x6b\x9a\xe5\xa8\x03\x44\xe2\x4a\xd2\x7e\x78\x99\x67\xce\xa7\x7c\x9f\x0e\xcb\xb9\xfc\xc9\x26\x33\xa9\xd3\x6f\x8e\x94\x0e\x44\x1e\x31\xe7\x74\x92\x08\x29\xa6\x87\xf5\xe8\x7c\xe3\x0c\x4a\xf9\x1e\x15\x8d\x0b\xaf\x52\x0f\x3d\xd1\x87\xf7\x20\x0c\x6e\xa8\x93\xd1\xbc\x36\xf9\x85\x0d\x54\xef\x7a\xa6\xe3\xb9\x5d\x36\xcd\xae\x0e\x83\x19\xf0\x13\x6c\xc3\xc9\x4c\xb7\x34\x31\xd4\x5d\xce\xb7\x24\x0e\x52\xa1\xa7\xc6\xb2\x62\x51\x62\x54\x54\x69\x14\x8b\x83\xb0\x7a\x1f\x96\x73\xc7\x68\x55\x39\xa4\xed\x8e\xd2\x17\x9a\x92\x44\xcc\xca\xe4\x22\x8d\xf8\x13\x94\xec\xe9\x75\x90\xef\x0d\xbc\x66\x69\x55\xe2\x2d\x61\x76\x38\x34\xf8\xe8\xb3\xc2\x03\xeb\xd2\x6a\xda\xaf\x59\x8b\x9b\x42\x3c\x0b\x50\x94\x34\xde\x6d\x50\x23\x7a\x28\x83\xd1\x57\x9f\xd9\xbf\xaf\x51\x82\xdb\xc1\xdb\x52\x71\x01\xfb\xbd\x4d\x5b\x7f\xad\xca\x6b\xc0\x41\x63\x64\xd9\xfb\x66\x4a\xa7\x2d\xa6\xff\x5d\x9f\x11\x86\x7a\x75\xa3\x25\xb8\x35\xd2\x12\x3f\xd4\x0c\x63\xd5\x34\x6c\x2c\xec\x72\xd4\xa3\x37\x93\x73\xe6\x66\xf2\xb9\x40\x50\x9b\x49\xcb\xb9\xb6\xaf\xd1\x33\x61\x61\xca\xe2\x83\xc8\xbe\xb0\xcf\x0c\xc6\xee\x92\xca\x1d\x25\xcc\xc2\x22\x2c\x05\xf5\x46\x26\x93\x96\x7b\xaf\xb5\x84\x81\x55\x62\x0a\x6e\xe4\xdb\xf8\x71\x4a\x17\x2f\x76\x10\x36\x32\x7e\xa2\xe1\x4e\xed\x9c\x48\x0b\x1f\xe8\x51\x7e\x67\x61\xc0\xb6\x28\xe6\xf9\x07\x7d\x6c\x73\x78\xd2\x1c\x7f\xb3\xc5\xbf\x99\x41\x8d\xee\xbb\x5d\x7a\x49\xf8\x8e\xa3\x51\x84\x83\x78\xbf\xae\xd2\xf7\xef\x84\x4f\x62\x48\x58\x98\x20\x80\x3c\xc6\x19\xb4\x2a\x73\x94\x77\x46\xbe\x93\x87\x17\x72\xa0\x65\x51\x5f\x46\x6d\x8b\x66\x93\x9b\xff\x1d\xb7\xdf\x37\xf4\x9d\x6f\x29\x0e\x7b\xef\x2e\x69\xa2\xe8\xd1\x61\x9b\x1a\xcd\x1e\x23\xae\x7f\x17\xbe\xe3\x11\xbf\x80\xf2\x5d\xed\x9f\xbb\xf8\x4d\x83\x9b\x88\xa4\xfd\x9d\x06\x54\xff\xf5\x43\xf3\xf1\xea\x78\x2d\x24\x14\xdd\xdf\xfe\x42\x3c\xd1\x60\x6f\xc8\x0a\xfb\xe5\x8d\x57\xea\xe4\x13\xb7\x5b\x38\x30\x4a\x93\xac\xe6\xa5\x78\x40\xcb\x1c\x11\x64\xe5\xd7\x2e\x6c\xbc\x5b\xf8\x35\x85\xdf\xfb\xd8\xf7\xfa\xa6\xdd\x8e\x4d\x12\x0b\xf1\x78\xc2\x95\xf1\xef\x7b\xbf\x71\xde\xfe\x88\x46\x4e\x9b\x3f\x59\x95\x73\x39\xb3\xfc\xd6\x25\x9c\x62\xd8\xa1\x9c\xfd\x61\xf0\xa5\x3f\x3f\xa8\xe7\x1f\x10\x39\x59\xb7\x45\x46\x5c\x15\xe2\x68\x7f\xb0\xa5\x14\x44\xc9\x6e\x5c\xc2\x25\x25\xc8\xdb\xab\x2e\x25\xa3\x14\xe0\x5b\xe2\xca\xf8\x7b\x4f\xdf\x4d\x17\xa6\x10\x0a\xe2\x66\x6c\x4d\x34\x3e\x95\xb4\x8e\x52\x10\xfb\xf9\x0e\x47\xfe\x22\x24\x9e\xf1\xc3\x21\xd2\xbb\xc6\xf0\xa6\x6e\xe5\x39\x11\xfe\xc9\x89\x97\x65\x5b\x71\x92\x8c\x81\xd3\xf0\x88\x3e\x92\x80\x66\xf1\xbd\xb7\x76\xcd\x09\x4d\xb7\x2a\x5d\x22\x8d\xa1\xb9\xd4\xc6\x30\x8e\x9f\xd2\x8e\xd3\x3b\x9b\x48\x83\x9b\x44\x7a\x20\xbe\x7e\xe1\x06\x24\xa3\x91\x34\x37\x1c\xfe\xcf\xd0\xcd\xaa\x72\x87\x80\xbc\xdf\xf6\x2f\xdb\xba\x57\xfc\x9e\x8b\x07\x91\xc6\x0f\x6b\xda\x86\x24\x19\x5c\x21\xad\xe9\xbb\xc8\xaf\x24\x4c\x18\x76\x5b\xcd\x96\xe5\x33\x76\x09\xe6\xb0\xda\x79\xb1\x6b\x55\xcc\x7e\xac\x61\xfb\x8a\x24\x28\xea\x45\x74\x79\xcb\xbc\xdb\xc1\xba\x9c\xe5\x79\x5a\xec\xc5\x92\x08\xe5\x33\x11\x41\xd4\x2e\xed\x9d\x7f\xfc\x47\x7e\x16\x81\x64\x98\x7f\xfa\x27\xf3\xe8\xb3\x77\xe5\x1a\x8b\xc8\xe8\x21\x71\xd2\x0a\x1e\xfc\xa8\x3b\x88\x30\x1d\xca\x6f\x93\xef\xff\x10\x55\x61\x7f\x71\xb6\x2c\xe7\x6b\x3a\x7d\xf2\x5f\xc3\x2d\xfc\xbf\x00\x00\x00\xff\xff\x09\xb7\xab\x96\x1f\xb6\x00\x00") +var _confLocaleLocale_plPlIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\xcd\x92\x1b\x47\x92\x27\x7e\xc7\x53\x84\xaa\x8d\x26\xc9\xac\x04\x99\x5a\xff\xff\xee\x9a\x56\x90\x96\x2a\xaa\x25\xb6\x48\x16\x57\x55\x34\xda\x48\x46\x83\x12\x99\x51\xa8\x2c\x00\x19\xe8\xfc\x20\x94\x18\x9b\xc3\xca\x5a\xb6\x97\x7d\x80\xd5\xe8\x32\xef\xd0\xa7\xed\xd1\x69\x9a\xf5\x22\xfb\x24\xeb\x3f\x77\x8f\xc8\xc8\x44\xa2\x48\x69\xda\x86\x07\xa2\x32\xbe\xc3\xc3\xc3\xc3\xdd\xc3\xdd\x23\xd9\x6e\xe7\x99\xad\xd2\xd9\x67\x76\xbf\x70\x6b\x5b\x15\x89\x69\xaa\xdb\x1f\x9a\x65\x62\xbe\xc8\x6b\x53\x24\xdb\xbc\x4a\x28\x71\x67\xbe\x70\x26\xdb\xe7\xc9\xed\x0f\xc9\xcd\xab\x1f\xd3\xc4\x20\x91\x3e\xaa\xa2\xdd\x98\xca\x96\x3b\x5b\xee\xed\x64\x72\xed\x36\x76\x76\x51\x97\x8e\xb2\x97\xb7\x3f\xfc\xed\x2f\xbb\x22\x99\x64\x49\x75\xbd\x70\x49\x99\xcd\x9e\x36\xeb\x6d\x5e\x4f\xec\xf7\xdb\xb5\x2b\xed\xec\x3c\x5b\x95\xed\x2e\xb9\x99\x5c\xdb\xf5\x76\xf6\xd4\x6d\x5c\x3a\xa9\xf2\x65\x31\xcf\x8b\xd9\x37\xc9\xda\x2d\x9b\x1b\x53\xe5\xaf\x7e\x92\x44\xd7\xd4\xb3\xe7\x2d\xa7\x4a\x42\xb3\xa5\x52\xa5\xbd\xb1\x55\x5d\xfa\x92\xa5\x5d\xe6\x55\x6d\xcb\xc3\x9c\x9d\x5d\x54\x79\xed\x47\x37\x79\x69\xcb\x2a\x77\xc5\xec\x39\xfd\xde\x24\x93\x6d\xb2\x0c\x59\xb5\xdd\x6c\xd7\x09\x8a\xee\x93\xc5\xda\x15\x93\x75\x52\x2c\x1b\x14\xf8\xe3\xab\x9f\xf6\xed\x6a\x92\x96\x96\xb2\xe7\x85\xdd\xcd\x9e\xd5\xbb\xbf\xfd\xa5\xdc\x4f\xa7\xd3\x49\x43\x60\x98\x6f\x4b\x77\x95\xaf\xed\x3c\x29\xb2\xf9\x06\x73\x7c\xca\x09\xa6\xb9\xfd\xa5\xad\x57\x6e\x57\xe4\xab\xc4\xe4\x66\x47\x23\x4a\xad\xcc\xc3\x66\x34\xdf\x79\x52\xc9\x94\xdd\x2e\x29\x5a\x73\x93\xac\xdc\x84\x5b\x2c\x12\x82\xe8\x93\x64\xbf\x4b\xcc\xb3\xa8\x8d\x89\xdd\x24\xf9\x7a\xf6\xf9\x7b\xf8\xa1\xd1\x57\xd5\xce\x11\x80\xbf\x4c\x68\xf5\x1c\x41\x61\x5e\xb7\x5b\x3b\x7b\x4e\xcb\xb7\x37\x5b\x57\xa0\x92\x9d\xa4\xc9\xb6\x4e\xaf\x93\xd9\x99\xfc\x4e\xa8\xdc\xd6\x11\x50\x5c\xd9\xce\xbe\xa6\x3f\xf7\x2d\xfd\x99\x37\x9b\x89\x2b\x97\x49\x91\xef\x93\x1a\x10\x3a\xd7\x8f\x94\xc0\xb4\xc9\xcb\xd2\x95\xb3\xc7\xfc\x33\x21\x00\xcc\xd1\xc4\xec\x89\xdb\x59\x53\xc6\x2d\x20\x6b\x93\x2f\x4b\x80\x91\x72\x13\xc3\x1f\x68\x02\x39\x57\xae\x5c\xcd\xfe\x40\xff\xd1\xe2\x1c\x54\xa3\xce\xa5\x8a\x8b\x3b\x26\x2c\x5c\x5a\xce\xa3\x95\xdd\xbf\xfa\x31\xdb\x27\x37\x71\x89\x4d\x3e\x49\xb2\x0d\x01\x72\x9b\x14\x76\x3d\x7b\x8a\xff\x0d\xa7\x24\x93\x24\x4d\x5d\x53\xd4\xf3\xca\xd6\x75\x5e\x2c\xab\xd9\xb3\xaa\x4e\x76\xb9\x2d\xf2\xc4\xac\x5c\x51\x27\x93\x91\x9c\x49\xeb\x9a\xb0\x9e\xb3\x4b\x5a\xe6\x1b\x23\x5f\x92\x13\xaa\x5c\xee\xdc\x8d\xa5\x6d\x13\x2a\x62\x16\xd5\xfc\xca\xda\x6c\xf6\x15\x0d\xfb\xf6\x07\x93\xac\xea\x26\x59\x17\xee\xf6\xe7\x34\x9f\x6c\x9b\xf5\x9a\xc0\xf6\xa7\x86\xb0\xb3\x9a\x9d\xa7\x7b\x4b\x60\xa0\x3d\x65\xcd\x7e\x93\xd3\xe2\x4f\xf2\xaa\xa2\x3c\x60\xce\x62\x6d\x37\xed\x84\xd6\xad\x48\x69\x4e\xf7\x8b\x66\x4d\xb8\x3f\xf9\xb6\xb2\x49\x99\x5e\xbf\x98\xc8\x2f\x6d\x8a\x6a\xdf\xac\x72\x42\x9c\xdc\x02\x11\x8f\xad\x2a\xd0\x69\x16\x21\x91\x74\x34\xfb\x86\x36\xaa\xab\xf6\x96\x31\xc4\x65\x76\xf6\x95\xcb\xa8\x93\xbc\xa0\x19\xad\xd7\x2f\x26\xfa\xc7\xec\x21\xff\xf2\x6a\xd4\x79\x4d\x30\xf9\xaa\x74\xab\xdc\xe4\x9a\xdc\xde\x14\xd6\x64\xeb\xc4\x6c\x73\x22\x07\xd4\xde\xd2\x99\xa6\x6c\x52\x22\x09\x02\x96\xcc\xa5\x2b\xda\x21\xd8\xeb\x34\x8e\x87\x57\x86\xc0\xf8\x76\x49\x78\xd3\x14\x05\x01\x92\x28\xcc\xb2\x42\x6b\x79\x66\xcd\x03\x2e\x7b\x6a\xb6\x6b\x9b\x54\x40\xad\x24\x33\x1f\x27\xa6\x4e\xca\xa5\xad\x67\x27\xf3\x05\x6d\xc9\xd5\x89\xb9\x2e\xed\xd5\xec\xe4\x5e\x75\xf2\xc9\x17\x0d\x55\x5b\xe7\x85\xad\x3e\x7e\x3f\xf9\xc4\xa4\xb4\xfb\xaf\x08\xce\xad\x59\x58\x42\x36\x8b\xbe\x0c\xa1\x7c\xb1\xb4\x86\x40\x5c\x5f\xa3\xc3\xbc\x30\xf4\x47\x65\xb0\xf7\xdf\x9a\x60\x45\x88\x3e\xcc\xb3\x85\x90\x44\x1e\x0e\x27\x96\xb6\x32\x8f\xdb\x8b\xff\xfe\xe8\xd4\x3c\x75\x55\xbd\x2c\x2d\xff\x4d\xff\x51\xf9\x0f\x09\x09\xcd\x65\xfe\xe0\xb3\xe9\x84\x6a\x0a\x60\x22\xf4\x5a\x24\xfb\xd6\x64\xd4\x65\x7a\xcd\xf9\xd8\x95\x97\xed\xb6\x97\x7e\x4d\x8d\xce\xbe\xa4\xff\x0e\x57\x68\xb8\xb1\xa9\x89\x88\x20\x0c\x1a\x57\xc8\x12\xde\x54\xfb\x57\x3f\x31\xc9\x79\xf5\x3f\x89\xf8\xad\x99\xe8\x3c\x7c\xf2\xe4\xfc\xc1\x67\x66\x4f\x18\x9f\x39\xc6\x95\x8d\x69\xea\xab\xff\x32\x5f\xda\xc2\x96\xc9\x7a\x9e\xe6\xbc\x7c\x3c\xd3\xe9\xa4\xaa\xd6\x44\xc0\x08\x1b\x2e\xcb\x76\x61\x2e\x2e\x1e\xd1\x58\xea\xeb\xd9\xed\x3f\xa7\xb9\xbd\xfd\x85\x08\x50\xf5\xa7\x35\xc0\xa5\x9d\x5e\x5e\x5b\x83\x8d\x62\x50\xca\xb8\xab\x21\x74\x68\x98\x75\xb2\xa0\xb5\x9c\x4e\x6c\x59\xce\x89\xc2\xd6\x2d\x40\xcd\x8d\x1e\x2b\x2b\x8d\x11\xf6\x17\xae\xa6\x85\x34\x5c\x4b\x1a\xc8\x8b\x97\xc9\x3a\xcf\x08\xe0\x1e\x24\xfd\x9a\x48\x32\x99\xa3\x95\x43\x5d\x42\x5f\xb7\xc3\xfa\x13\x09\xa2\xc3\xa1\x32\x27\xd3\x13\xc2\x83\xcc\x9c\xbc\x77\x32\x9d\x14\x6e\x2e\xa4\x03\x44\x3b\xa3\x03\x8f\xb6\xdd\x5c\x0e\x92\x52\x48\xe0\xd7\x72\x94\x10\xee\xe7\x86\x00\x67\x36\xee\xf6\x17\x1c\x80\xed\xed\x0f\xb4\x71\xf7\x00\xf3\xc2\xee\x4d\x4d\x4b\xb5\xef\xa8\x8a\x92\x9f\x78\xc6\x9e\x44\xf5\x56\x55\xcb\x85\x96\xad\x59\xa0\xc5\x2d\x48\xca\x74\x32\xf1\xeb\x73\x80\x5b\x6e\xf9\xb7\xbf\xac\x69\xd3\x01\x53\x27\x38\xca\x23\xd4\x48\xb6\x6b\x5a\x74\x1a\x6f\xc8\xf0\x2b\xf5\x8c\xb6\xe3\xed\xcf\xd4\x7e\xdd\xd4\x44\x42\xa9\xad\xf5\xea\xd5\x8f\x74\x26\x81\x0c\xdc\xfe\x5c\xd0\xdf\x05\x35\x41\x08\x54\x81\xb0\xc5\x44\x36\x7f\x8b\x69\x8b\x2c\xda\x57\x04\x6a\x3a\xaf\x22\xfa\x4d\xa7\x7d\x97\xef\xbb\x7b\x6e\x6a\xe2\x10\x56\x52\xb8\x31\x7b\x42\xf3\x04\x7d\xec\x85\xb5\xb0\x86\x48\x45\x5b\xd5\xab\x3c\x3e\x40\x98\xfb\x20\x42\xd6\xd0\x21\x8f\x2d\x21\x73\xea\x9d\xa1\x11\x69\xa1\xc3\x67\xe9\x42\xe1\x30\xcf\xae\xb4\xd9\x34\x55\x4e\x27\x90\xa5\x59\x67\x34\x80\x57\x3f\x6d\xe9\xb7\x1b\x54\x6f\x0a\x04\x09\x6e\x3b\x01\x31\xc6\x48\x08\xba\xb4\xb7\x1d\x1d\xb4\xc5\xec\x01\xf1\x37\xe0\x68\xf8\x2b\xe0\xbe\x33\xbb\xed\xed\x0f\x2d\xd6\x8f\x96\xf1\xd9\xd7\x8f\x2c\x37\xbf\xc6\xb9\xcb\x6d\x6c\xdd\x96\x10\x63\x4f\xdb\xe8\x4b\xec\xac\xeb\xf9\xd6\x95\x35\x31\x3c\x65\x8d\xa4\x90\xe2\x1b\x7c\xd2\x6c\x6c\x69\x90\xd2\x9c\x62\xc3\xd6\xc4\x62\x80\x9c\xae\x08\xbd\x08\x56\x09\xa5\x09\xcb\x85\xda\xff\x95\x0a\x32\x54\x77\x8c\x31\xf6\xd4\x24\x8b\xb6\x87\x9a\x57\x4d\xb1\x4a\x6f\x68\x41\xb9\xfb\xeb\xba\xde\x46\xfd\x7f\x79\x79\xf9\xb4\x4b\x1b\x19\x01\xa6\xc4\x23\xa0\x65\xf4\x58\x95\x18\xec\x07\x0f\x4b\xa0\x38\xb0\xac\x29\xe9\x8c\xca\x40\x2d\x09\x04\x03\x0c\xa4\xbc\x23\xe0\x4a\x50\xa3\x8d\xa1\x85\x21\xbd\x8f\xff\x2e\xc0\x29\x11\x86\x26\x04\x6f\x3e\x3b\x93\xf4\xda\x58\x66\x79\x68\x5f\xb8\x2d\xf6\xe6\xe8\xc6\xd8\xa6\x37\xc8\x29\xac\xb0\x49\x87\x25\x04\x7c\x89\x36\x36\xa9\x36\x34\x7f\x26\xc3\x17\x0a\xd7\xc7\x04\x15\x4e\xbd\x2a\xdd\x86\x18\xd5\xee\xc3\x4f\x43\x66\x4a\x40\x77\xeb\xc6\x9c\x9c\x67\x27\xb4\x54\x4b\x97\x61\x56\x7b\xf3\xf5\x1f\xce\xcc\xff\xff\xe1\xef\x7f\x3f\x35\x8f\xbb\x0d\x5d\x3b\x2a\x0c\x1e\xa2\x22\xa8\xf2\xb4\x0d\x0f\xef\xd4\x2c\x88\x9f\xb9\xfd\xeb\xbf\xfd\x4b\xa2\x6d\xd2\x91\xb5\x49\x88\xd0\x9a\x13\xc6\xfc\x13\xf3\x31\x17\xfc\x6f\xf6\xfb\x84\x58\x53\x3b\x4d\xdd\xe6\x93\xe9\x04\x49\x84\xef\xba\x43\xb2\x64\x47\x6c\x79\x04\x2c\xa3\xcc\xa1\x16\x1b\x12\x9d\x82\x6b\xb4\x81\x63\x9e\xa7\xae\xb8\xca\xcb\xcd\xec\xb9\x60\x0e\x8d\xb5\x26\x68\x95\x99\x50\xb4\xb2\x23\x81\xdc\xe2\x9c\xe8\x6a\x7e\xd5\x46\xa5\xa5\x6b\x81\xaf\x87\xab\x2d\x89\xcf\x9e\xe3\x27\x4f\xed\xf1\x65\x00\x17\x81\x53\x4c\x85\x8f\x89\xbb\xba\xc2\x59\x2e\x07\x90\xef\xa1\xc6\x41\xa4\x39\xbd\x12\x84\xb9\x5b\x92\x05\x9e\x2b\xca\x9b\xb3\x07\x4f\x4e\x69\x7a\x3b\x5b\x13\x28\x51\x8b\x00\x49\x50\xcf\x9a\x15\x98\x94\x76\x73\x1a\xd1\x1c\x20\x69\x4e\xc4\xa8\x72\x0b\xec\xfd\xc5\xab\x9f\x32\x22\x4e\x5b\x47\xb0\x01\x71\x5a\xbb\x15\xa1\x11\xb1\x55\x13\x7f\x2e\x10\x17\xfb\x92\xe8\x46\xd9\x75\x27\x63\xa6\xed\xf5\x85\x66\x1d\x94\xd5\x01\x3e\x90\xe4\x50\x8e\x4f\xa0\x94\xf6\xac\x23\x11\x8a\x58\xca\xd4\x56\xa7\x38\xaa\x8c\x64\x57\x86\x98\x18\xd3\x90\xa8\x94\x64\x36\x23\x14\x32\x58\xe9\x0a\xa7\x64\x66\xaf\x92\x66\x5d\x77\xa3\xea\x9d\x56\x61\x64\x55\x42\xe0\xd9\x13\x81\x07\xc1\xed\x16\x90\x84\xa1\xb1\x7a\x43\x30\x1e\xad\xdd\x23\xc4\xa7\x44\xdf\xd7\x2b\x3d\xc3\xa4\x2d\x1a\x20\xe0\xb8\xc7\x71\xf6\xb7\xbf\xd0\xb1\x22\x07\x23\xb6\x00\x9f\x8b\x74\x20\x16\xdc\xbb\x97\x47\xfc\x0a\x7b\xb9\xa4\x9f\xad\xe3\xfa\x5a\x58\x31\xc3\xe7\x3e\x89\x15\x46\xb3\xb1\x59\x18\x32\x84\x4d\xeb\xab\xf7\xe2\x19\x4d\x27\xca\xbf\xcd\x55\xaa\x9c\xbf\xcc\x49\x66\xf3\xdd\xed\x5a\x0c\x8f\x16\x5f\xc5\x2e\x42\xc8\x0c\xfb\x93\x58\xd7\x35\x6d\x48\x4e\xa8\x20\x12\x8e\x36\xa3\xc3\xba\xe4\xd9\x77\x6d\x44\xc0\x49\x5b\x8f\x4f\x1b\xb7\x5c\xe7\x51\xcb\x60\xcb\xd0\x70\x7b\x6a\x96\xbc\x57\x89\x66\xb8\x45\x92\x92\x5c\xa3\xe0\xe4\x6c\x02\x75\x18\xda\x54\xc5\x1b\x15\x3b\x84\x47\x7d\x02\x10\xd3\xd9\x56\xed\x07\x20\xee\x2f\x07\x31\xce\xb4\xcb\xf6\xa7\xf1\xc2\x11\x91\x7a\xf8\xc0\xcc\xcc\x07\x86\xb6\xc2\x2a\x09\xe7\xe2\xa0\x62\xd2\x10\x76\x26\x75\x9b\xee\x79\x17\xc8\x18\x0e\xf6\xf1\x58\x9f\x5a\xf6\x98\xfc\x3a\xca\x09\x4d\x94\x06\x75\xe9\x4f\x95\x08\xdd\xfe\xd5\x5c\x4b\x11\xa9\x28\xe2\xef\x7d\xfc\xed\xe9\x9c\xca\x29\xf3\x25\x1d\xd8\x24\x24\xca\x27\x09\x98\xcc\x1e\xd5\x84\xbd\xf3\x65\x5e\xcf\xaf\x40\x0d\x33\x86\x5c\x93\x25\x20\x84\xd0\x0e\xf0\xda\xa0\x0c\x01\x1b\xac\x97\x5b\xdb\x94\x67\x76\x42\x75\x4e\x3e\x32\xf7\x5e\x2a\xbf\xfb\x21\xe8\xde\x9c\x36\x68\xbe\x06\x8e\xaa\xf0\xb7\x6b\x81\x2d\x96\x39\x38\xb7\x60\x7a\xd0\x50\xb2\xf2\xb5\xa7\x4c\xf3\xc1\x92\x6f\xdd\xa2\x44\xfb\x24\x45\xd2\x21\x0a\xde\xcd\xd7\xdc\x9b\x7b\xd8\xfc\xe6\xc9\xc3\xcf\xcd\x0e\x2a\x09\x2a\xbd\x27\xe4\x58\x34\xf9\x3a\x9b\x4e\x3c\xbb\x4b\xcc\xae\x22\xc0\x11\x21\x83\x87\x50\x31\x09\xdb\x96\xc9\xae\xb0\x3c\x76\x5f\xbd\xe3\xde\x02\x1f\x3f\x60\x7e\x50\x9d\xcf\x76\xad\x9f\x70\xfd\xc0\x5b\x61\xf2\x84\x0e\x24\x74\xc6\xec\x55\x38\xea\xbb\xea\x2a\xf1\x12\xcf\x10\xe1\x1c\x89\x1c\xd4\x5c\x65\xde\xfb\x84\xfe\x9f\x54\xc9\x4b\x2b\x87\xce\xf2\xd8\xaa\x08\x93\x28\x48\x4d\xc5\x1a\x3e\x7e\x7a\x33\xea\x6d\x0a\xd4\xc7\xa8\xf3\x8c\x5a\xd8\xc5\x32\x79\x8f\x21\xd7\x06\x04\x5b\xaa\x26\x25\xba\x5b\xcd\xce\xf6\xcc\x15\xbf\x65\xce\x72\x4b\xa7\xc3\xa6\xe5\x11\x9c\x1a\x9c\xde\x3b\x1c\x21\x25\x0d\x8b\x8a\x30\x3a\xd1\x89\x4d\xec\x16\x0f\x31\xa3\x25\xdd\xd3\xce\x98\x7c\x0b\xdd\xd7\x8b\x49\x23\xbc\xb6\x5b\x67\xe3\x7c\xeb\xba\x59\xf8\xd3\xd1\x23\xb9\x2f\xad\x7b\xa0\xda\xe5\x04\xe0\x79\xd0\x9a\x01\x46\xb5\xfd\x9e\xf8\x35\xea\x48\x49\x17\xa6\x63\x57\x04\x67\x21\x23\x5e\xd7\x66\x6f\x26\x9b\x96\x57\xb9\x9a\x3d\x06\x62\x46\x2c\x35\xed\xad\x35\xe1\xac\x03\x69\x7c\x69\xb5\xd0\xf3\x6a\x2b\x32\x44\x5c\x90\x9a\x20\x9e\x5f\x5b\xe8\xb8\x7f\x8b\x0c\x51\x00\x69\x9e\x7c\xb4\x13\x26\x87\xac\xfa\xfb\x86\xa9\x18\x56\x57\xb5\x18\x53\x5a\x1d\x56\x97\x68\x7f\xa0\x53\x39\xa1\x69\xd4\x1f\x09\xaf\x93\x6f\x55\x25\xf8\x42\x94\x17\x91\xde\x22\xa1\x4c\x22\x42\xd7\x2f\x22\xad\xdb\x5c\x15\x3a\xb4\xcb\x31\xef\xdb\x5f\x48\xc8\xa3\xe5\x06\x50\x5c\xc7\xcf\x5c\xdb\x2d\xf8\x9e\x4d\xb5\x9c\x3d\x4e\x88\x42\xde\xd0\x3a\x48\x99\x4f\x4d\xac\x5d\x14\xe2\xf8\xd6\xa4\x72\xc4\x60\xae\xe7\x6f\x54\xff\x29\x71\x3b\xaf\x7e\xa4\x6f\x82\x82\x56\xef\x1f\xa9\xa2\x0a\x24\x99\x8f\x57\x8d\x90\xb2\xda\x27\x84\x53\xdd\x31\x9a\x88\x28\x74\xfb\x43\x27\x46\x12\xcb\x3a\x35\x90\xde\x73\x2a\xe9\x04\x65\x57\x35\x91\x81\x1e\x61\xb5\xa2\x6f\xcd\xab\x66\x78\xfc\x63\xb0\xa0\x8a\x71\x8f\xa7\xc7\xd9\x38\x3f\x80\x36\x1a\x80\x35\x22\xa8\xf4\x49\x39\xce\xd1\x8d\xdd\x2c\xd0\x01\xad\x71\xb2\x25\xd9\xe8\xd5\x4f\x90\x1e\x37\x50\x1a\xd1\x01\xbc\x24\xba\x10\x68\x36\x15\x70\x94\x81\xfd\xb2\x11\xaa\x9d\x70\x19\x3b\x5e\x86\xf6\x94\x14\xfa\xd4\xab\x75\x89\xcc\xec\x40\xf9\x69\x28\x0b\xa2\xa3\x95\xe0\x7b\x82\x65\xeb\x2b\x75\x05\xf6\x53\x7f\x6c\x08\x1b\xc3\xdc\x69\x65\x8b\xda\xaf\x00\x2b\x13\x03\x63\x4c\xd4\x44\xf6\x9f\xe9\xb3\xb8\x34\xd6\x68\x45\x30\x9e\x82\xf9\x81\x8f\x17\x9f\xdc\xab\x3e\x7e\x7f\xf1\x49\x47\xc6\x2b\x10\x19\xe2\x6f\x70\x8c\x13\xfd\x27\x6a\x5b\xad\xe8\xf0\x2d\x56\x94\xe7\xb2\x45\xee\x4a\x3e\xc9\x77\x26\x25\x24\x59\x42\x82\xba\x59\xac\xf3\xdb\x5f\x88\xae\x10\xea\x2f\xc1\x55\x15\xe6\x5e\xc6\x82\x5a\xe6\x56\xee\xf6\xcf\x22\xa8\x51\xfb\x44\x8b\xe2\x35\xa2\x13\x37\xe5\xed\xca\x7b\xc8\xa3\xfd\xfd\x55\xdd\xee\x00\x02\x3e\x7c\x3c\xda\xf3\x94\xd7\xf9\x26\xef\x26\x4e\xa4\xac\xb6\x35\x21\xc1\x7e\xd1\xd6\x86\x06\xf5\x13\x9d\x70\x98\x5d\x0b\xd5\xfd\xde\x03\x22\x41\x7b\xac\xc1\x6b\x05\x01\xf7\x3c\x11\x68\x26\x41\x7c\x3f\xa4\x8d\x5e\x34\xd0\xbc\xd0\x3a\xcd\x9b\x42\xa1\x6d\x33\x41\xb7\xe7\x39\x61\xc2\x29\x9f\x5f\x1b\x34\x4a\xa0\x0c\x70\x05\x6d\x52\x49\x47\xba\x7a\x27\x80\xf3\xdd\xa9\xf9\x23\xad\xfd\x5a\x0e\x0d\x2c\x76\xbb\x51\x74\x88\x85\x98\x63\x6b\x05\x3a\xba\x8d\x51\x44\xd6\x8c\x86\x4b\xc8\xf3\xea\xc7\x53\x12\x28\xf3\x55\x91\xdf\x40\xc4\xdc\xba\x42\xa0\x0f\xec\x6e\xd3\xbc\x5a\x4d\x05\x5e\x3a\x83\xaf\xb4\x28\x6b\x44\xbc\xfc\xac\xad\x1d\x82\x48\x65\x4a\xe6\x03\x2a\x26\x1a\x35\xf1\x01\xb6\xe8\x4f\x34\x9c\x84\xd5\xca\xdd\x24\x25\x43\x62\x4f\xa7\x49\x92\xe1\x50\x64\xfa\xbd\x99\x4e\x78\x0c\x18\x4a\x7d\x74\x24\xef\x78\xf5\xfd\xbb\x07\x83\xda\xb3\xf2\xb5\x24\xb9\x06\xfa\x6f\xc3\xed\x28\x23\xab\xdb\x4e\x9a\x0e\xbb\xee\xeb\x50\xc2\xfa\x12\xfe\x20\x65\xcd\x6f\x87\x30\x35\xeb\xbb\x57\x2e\xeb\xe0\xce\x17\x3f\x80\xcc\x12\x35\x79\x01\x78\x82\x45\x7c\xe8\xb6\xd3\x41\x9f\x5e\x5c\x1e\x99\xd9\xde\x0f\x98\x66\xa4\xcc\x5d\xa8\x55\x3b\x37\xaf\xae\xa1\xa5\x78\x00\x6e\x4a\xf6\xad\x0c\x79\xa8\x27\x03\x0d\xba\x21\x62\x67\xb0\xc8\xe6\x3f\x99\x7d\x91\xac\xe8\x30\xc4\x91\x0c\x28\xbd\x90\x2d\x84\xa3\xc3\xef\x1f\x4f\x63\x79\x51\xa5\xff\x78\x2b\x85\xf2\xc2\x64\x5e\xf0\x6e\x27\x06\x54\xee\x00\xe2\x55\x1e\xc2\xf7\x1b\xe8\xd6\xfe\xac\x8d\x5d\xfb\xbb\x18\xa5\xcd\x9e\xd3\xf8\x46\xa8\x0c\x10\x7d\xef\xe9\x19\xdf\xfa\x90\x5c\x4a\x5b\x69\x13\x89\xe4\x5e\xc6\xb6\x6b\x92\xf8\x69\x93\x14\x86\x39\x02\xcc\x8c\x24\x54\x9a\x5a\x6b\xab\xd9\x65\xb2\x9a\x14\x0e\x6b\x37\xa1\x54\x94\x97\x61\x50\x29\xe8\x11\x5e\x4c\x9e\xd1\x79\xf1\xe4\x08\x1b\x8e\x83\x36\xca\xeb\x5d\xc6\x7c\xae\x3c\x76\x34\xdf\xa7\x03\x7e\xfd\x6b\x3b\x72\xcf\xe4\x67\x7e\x71\xf1\xe5\x25\x4b\x0a\xd2\xf6\x6a\xdd\xa4\xb4\x4a\x50\x78\x7d\x59\xd7\xdb\xea\x59\xb9\x9e\x89\x96\xe7\xd9\xd7\x8f\xa8\xe5\x16\x82\x2e\x12\xa1\x3d\xca\x40\xa6\x76\x0e\x54\x98\x58\x80\x4b\x9b\x6c\xa2\x51\xee\x6d\xb5\xa5\xac\x66\x72\x9f\x18\x83\x28\x1d\xc2\x4a\xd9\xb2\xa6\x72\xc2\xa2\xc1\xe7\xd1\x25\xd9\x50\x3c\x09\x42\x9d\xe5\x2b\xad\xef\xc6\xd4\xaf\x76\xfa\xdd\x24\x59\x6f\x49\x06\x05\x37\x16\x4a\xb2\x3a\x91\xcf\x9f\x6a\x45\x23\x64\x79\x8e\xa6\xdf\x6d\x02\xa2\xf2\x8a\x85\x24\xcf\x5f\x25\x05\xb4\x69\x10\xa1\x28\x83\x88\x64\x4b\x54\x8f\x80\x8f\x5c\x1a\x08\xe0\x96\xad\x4a\x90\x42\x5a\xb4\x7e\x87\x19\xd1\x98\xbf\x7b\xa7\xa7\xbd\x0e\x65\x08\xab\xd2\x6d\xed\x8a\x3a\xaf\xf2\xbd\x87\xc8\x09\xf7\xc8\xb0\x60\x25\xb1\xd0\xe3\x7b\xd5\xf4\x64\xc2\x3c\x77\x57\x52\x07\xb7\x07\xb3\xcd\xf2\x4d\x0a\xf5\xd2\x0d\xb1\x15\xbf\xd8\x1b\x30\xfc\x7e\x4b\x7e\x37\xd9\x24\xdf\xff\xc6\x9a\x42\x75\xe3\xc5\x8a\xe5\x14\x28\x27\x81\xa8\x74\x32\xa8\x82\xf0\xbb\x09\x74\x8e\x6f\x50\x9e\xd0\x8d\x0a\xe7\x45\xba\x6e\xb2\xde\xb8\xe8\xc4\x04\xdb\x41\x67\x75\xd5\x2c\x08\x6f\x70\x67\xf4\xf6\xbd\xea\x6d\x34\x5d\xac\x80\xeb\x5a\x9a\xb6\x1e\x8d\x93\x08\xfc\x02\x7c\x54\xf6\x91\xbf\x68\x9d\x53\xa3\xae\x2c\x6d\x5a\xe3\x4e\x2d\x28\x2c\x58\xde\x5b\x26\x44\x51\x79\x3d\xa7\x1d\xd5\xeb\xc4\x2b\x55\xd2\xe5\xfd\x63\x2f\xaa\xca\x5c\x07\xd7\x0e\xd7\xc4\xf3\x85\xb5\x24\x9c\x27\x2b\x5b\x8c\x49\x1e\x3c\x7d\x66\x62\x51\xfb\xa7\x3a\x91\x9b\xc2\xf9\x78\xd5\x98\x12\x8c\x55\x25\x7e\xee\x48\xcd\xe8\xbe\x60\xac\x62\x4d\x7b\xf9\x48\x4d\xbf\xaf\xc7\xaa\xc9\xf2\x73\x15\x9a\x6f\xd6\x23\x4b\xbd\xf2\x31\x45\x25\xc1\x79\xbd\xb6\x4b\xe8\x88\x7d\xaf\xc3\xae\x14\xf5\x00\xd9\xcc\xed\x77\x6e\x0d\x26\x18\x58\x97\x4f\x3b\xc0\x86\x05\xea\x16\xf4\x88\x68\x77\xad\xca\xd5\x80\x6e\x9d\x38\x0a\xb5\x17\x11\xf5\x92\xef\xfb\x23\x79\x9c\x47\xf5\x6c\x6b\x77\x38\x1e\x23\xa1\x73\x8b\x39\x80\x85\x4a\xf8\x42\x66\x6c\x49\xbc\x90\x3e\xd2\x34\x8d\x09\x07\xc8\x78\xdb\xd2\x1e\xec\x37\xb0\xa7\x53\xda\xdd\xbf\xb2\xf5\x4e\x3f\xe3\x2f\x1b\xef\x18\xbf\xf3\x50\x89\x5b\xb5\x6a\x30\x01\x94\xb7\xdf\x13\x59\x26\x86\x1f\x2a\x8c\x9e\x8e\x0a\x60\xa4\x2c\x1c\xf0\x54\x7e\x9d\x54\x35\x24\x53\x99\xdb\xec\x59\xd5\xec\x86\x15\xb8\x07\x9c\xaf\x54\x67\x43\x0c\x2f\xf5\x5a\x40\xed\x60\xec\x2a\xdf\xb6\xbd\x19\xe7\x53\xf3\x38\x10\x38\xa8\x9f\x7b\xb9\xb4\xad\xfc\x5c\x71\x3b\xb3\xb2\x6d\xc4\x1c\xf9\xd5\x25\x12\x0a\x3d\x41\x2d\x1a\x9c\x1d\x91\xdb\xab\x7c\x25\xfc\x44\x0d\x16\x00\x57\x36\xe1\xd0\x83\xe6\x03\xda\x01\xc8\x6b\x2f\x6d\x49\xe7\x74\x68\x99\xaf\x9a\xbb\xe3\xe7\x75\x2d\x41\x49\x4c\xa5\x12\x39\x06\x20\xe3\xa1\x56\x8f\xba\x0d\x65\x15\xe2\x5e\x88\xf1\xef\x34\xba\xac\xcb\xa3\xc3\xd3\x2b\x5e\x9e\x61\x13\xd0\xea\x23\x2b\x68\xb2\xa0\xd2\x77\x99\x57\xc6\xb0\xd6\x64\x52\xd5\xb4\xa3\xb0\x00\x62\xf8\x71\xd9\xb1\x4d\x7a\x25\x44\x43\xbb\xe9\x41\x92\x80\x1f\xa3\xd6\xa9\x57\x58\xb2\xcd\x44\x53\xbc\xfa\x91\xe6\xc8\xcc\x7c\x09\x71\x63\x4f\x53\x9e\x6a\x2f\x90\x36\x60\xf0\x11\x77\x22\xed\xc3\xbe\x81\xa6\xee\x17\x98\x16\x7c\x47\xfc\x42\x4c\x79\xba\x6e\x88\x4e\xba\x6d\x83\xd1\xe0\x96\x56\x2f\x5a\x7c\xcf\x42\xc7\x86\x93\xea\x99\x9e\x68\x97\x3c\xbb\x5f\x39\xaf\x7f\xfb\x17\xdf\x5f\x3c\xb9\x08\x86\x7c\x75\x73\xe9\x4c\x13\x81\x9f\xe9\x7c\xd4\x27\xd0\x9b\xef\x22\x44\x32\x5f\xe5\xeb\x55\x13\xe3\x3c\x9f\xe8\x5d\xdf\x5b\xbe\x81\x96\x1b\xde\xbc\x83\xb0\xe7\xcd\xa8\x7b\x31\xa2\x98\x2f\xca\xa4\x48\xaf\x87\xfb\x2f\x31\xcb\x04\x87\x18\x21\x4c\xbc\xf9\x88\x97\xc4\x58\x5f\x4c\xc4\x86\x62\xae\x77\x20\x81\xdf\x65\xc6\x58\x2e\x35\xd0\x84\x5e\x70\xe0\x9e\xca\xd7\x90\x7b\x8e\x41\xc5\x64\xc7\x55\x76\x91\xa6\x2e\xbd\x9e\xdc\x38\x62\x2f\x1c\x2e\x5b\xf5\x0e\xf3\xf6\x87\xce\xa6\x85\x36\x61\x4f\x3b\xc4\xcc\x7a\x5e\xb7\xb3\xa7\x0d\xc9\xd8\xc4\xee\x24\xc2\xd6\x17\x2c\x32\x4c\xae\x1c\xae\xfe\x6d\x59\xcd\xce\x17\x50\x9b\xb0\xa5\x4d\x4b\x4b\x90\x80\x9e\xd1\x9c\x09\xf5\x72\xc7\x16\x14\x52\x14\x6a\x44\x29\xca\x72\xd2\x04\x9a\x8b\xcd\x94\x4f\x01\xb0\x0b\xe5\x4b\xa8\x29\x0f\x69\x3f\x8c\x50\x64\xbd\x70\x02\xed\xb5\x3a\x91\xce\xae\xfa\x36\xa9\x89\x8a\x16\x22\x38\xf2\xa8\xb2\xd9\xf3\x3d\x2c\x06\x52\x26\xc8\xed\xb1\x16\xa3\xa3\xa9\x9d\xb2\xf9\x8f\x58\x1e\xbd\x98\x78\xeb\x24\x31\x32\x3b\xb0\x16\x51\xfa\x52\x91\xf0\x45\xb4\xc3\xca\x5d\x33\x6b\xb9\x88\x1f\x81\x3e\x94\xcf\x40\x4b\x40\x63\xde\x8e\x46\x84\xbb\x5a\x82\x22\x2b\x52\xaa\xd9\x7d\xd5\xeb\xda\x09\xeb\x03\xcf\x23\x55\x60\x46\x1b\xa0\xc6\x1d\x40\x43\xcb\x28\x62\x53\x93\x13\x1d\x79\xf8\x60\x32\xd9\xf2\x4a\xcc\xfb\x83\x33\x5b\x5d\x9f\xd6\x8f\x5a\xae\x30\x0e\x85\x2a\xa5\x64\xbe\x38\x61\xb1\xbf\x4d\xd2\xad\xd0\xb2\x9d\x8a\xbf\xc3\x23\xb6\xb7\xbb\x7b\xa4\xc1\xec\xa1\x99\xdb\x8b\x32\x5c\x15\xa5\x1b\x23\xa6\x2d\xab\xe4\xf6\x97\x0c\x16\x0d\x24\x90\x32\x7b\xb2\x6b\x29\x9f\xf6\xd6\x8d\x6e\xae\xfa\xd5\x4f\xff\xf6\x2f\x7a\xf5\x42\x4b\x07\x43\x2d\x3e\x41\x1f\x42\xdf\x45\x8d\x60\xe1\x73\x12\xe8\x87\xc6\x84\x6b\x27\x20\x9b\x3d\x72\x6b\x3a\x33\xc4\x64\xad\xd9\xe2\x9a\x2a\x80\xe1\x1b\x51\x89\xe7\xfb\x26\xd8\x91\xf5\x4b\x04\x01\x31\xb6\x35\xf3\x3a\x29\x9a\xa3\xb2\xf0\x4c\xf9\xa5\x25\xe5\x71\x74\x87\x05\x6b\xc1\x6f\xc4\x2a\xa2\x70\xde\x90\x23\xc6\xab\x61\x69\xaf\x2b\xba\x84\x25\x94\x5a\x48\xed\x72\x5c\x42\x5e\x5d\x11\x9f\x63\xea\x6b\xfa\x4e\x5a\x73\xed\x76\x66\x9d\x17\x2b\xa8\xa7\x60\x1c\x89\xf3\x04\x4a\x29\xa3\x42\x35\x2b\xe1\x08\x2d\x1b\xd8\x8f\x15\x6d\xd1\x34\x37\x43\xbb\x35\x7f\xad\xd7\xa3\x04\xfe\x32\xae\xc0\xe9\x9a\x14\x19\x89\xb7\xd0\xe5\x0a\x65\x68\x47\xeb\x04\xd3\x12\x7f\x31\xec\xcc\xc0\xe2\x81\x08\x90\xd6\x4f\xaf\x9d\xab\x54\x69\xec\xef\x6d\xa1\xcc\xdf\x43\x4d\xd4\x2a\xcd\xf2\x0b\xe1\x89\x53\xb4\x52\xd1\x15\x82\x34\x89\x75\x95\x1b\x59\x3f\x1a\xde\xcf\xf3\x7c\x03\x03\x51\x28\xa4\x93\x4c\x6c\x38\xb1\x79\x3a\x46\x10\x37\x3f\x7b\xa8\x7c\x0a\x37\x98\x4d\x77\x99\xf4\x5c\x0c\x6a\x03\x25\xc5\xbe\x17\x0b\x0b\x65\x3a\xd4\xee\x88\xb8\x81\x5d\x98\xec\xb4\x3f\xfa\x80\x45\xcf\x86\x23\x87\x60\x18\x54\xbe\xc7\xd0\x09\x07\x84\x62\xc8\x50\xab\xa1\x52\xbd\x5b\x47\xec\xdf\x7d\xb9\xe6\x09\x22\x3f\xe0\x1c\x32\xd9\x2a\x34\x68\x41\xa0\x28\x98\xf7\xf2\x9f\xba\x1d\xec\x4a\xf6\xa2\xbd\x1f\x6a\x80\x3a\x56\xfb\x33\xdc\x54\xb1\x81\xe4\x9d\xdc\xf5\x60\xd8\x01\x10\x2a\x4a\xe9\xd4\x1d\xac\x2c\x79\x7b\xd8\x08\x08\x6a\xa7\x81\x7b\x54\x68\x94\xc3\x7d\x2e\xdb\xcf\xf1\x45\x14\x0a\xbb\x14\xc6\x51\x6c\x6e\xa4\xba\x28\x82\x16\x0b\x26\x95\xc8\x23\xad\xd7\x93\xa8\xb9\xaa\xe6\x45\x16\xab\x4c\xe8\xa0\xac\xd3\x82\x22\xd6\x44\x94\x90\x64\x73\x2c\x1c\x23\x67\x4c\x14\x47\x69\x60\x8f\xf0\x05\x23\x0a\xb5\xd3\xbe\xfd\x33\x49\x96\x25\xe1\x65\xd9\xe2\x6c\xd7\x56\x7d\x92\x2a\xb7\x18\x4b\xd8\xdc\x38\xea\x59\xa9\x7b\x28\x42\x34\x3e\x0c\x94\x32\x40\xe8\x28\xb1\x80\x0d\x73\x6e\x47\xb4\xb5\x83\xc2\x32\xbd\x07\xdc\xa6\x58\x5c\x7a\xa5\x6a\x86\x19\x56\x42\x6f\x4a\xbb\x71\x2f\xad\x52\x97\x8c\xe6\xc2\x46\x30\xa8\x6f\x60\x76\xd3\x27\x36\xe6\x01\x53\x1f\xa2\x4c\x45\x8d\xfd\xef\x69\xcf\xa7\xc3\xae\x3d\x12\xa8\x0e\xc8\x53\xd3\x46\x86\x5f\xc7\x1b\xe1\xad\x09\x8d\x87\x31\x54\xe6\xfd\x80\xf8\xa1\x1b\x21\x13\x3a\x2d\xe4\xc7\x79\xc3\xe4\x79\xef\x1e\x02\xfa\xf8\x7f\xe7\xdd\x03\xb4\x0d\xbf\xfd\xda\xe1\x5e\xa6\x77\x0d\xa7\xc7\x6e\x1a\x3a\xdd\xae\x5a\x18\xf8\x89\xf4\x8f\xa2\x08\x06\x01\x82\x99\x48\x6b\xd1\x16\x9a\x78\xac\x0f\x6c\x47\x84\xf7\x22\xbd\x10\xde\x83\x07\x41\x3f\x90\x7b\x04\x8a\x9c\xc5\xbc\x8a\x6c\x03\x95\x24\xd6\x39\x2c\xdd\x38\xb3\x45\x2d\x46\xf6\xe8\x64\x27\xa9\x20\x0f\x8a\x74\xa3\x8c\x08\xf3\x39\xa7\x6a\x31\xc7\x74\xa2\x74\x7b\x62\x16\x8b\x04\x77\x04\x62\x7b\xa7\xa7\xc7\xc7\x7c\xce\x2f\x3f\xe9\xdd\x33\xf1\x26\x6f\x3f\xfd\xf8\x7d\xcd\x34\x41\xf9\x5b\xe0\x6a\x03\x5c\xc2\x0e\x36\x5e\x2b\x58\x23\x77\xd6\xc7\x86\x6d\x34\x55\xf5\xde\x0d\x99\x4d\x91\x21\xdb\xd0\x20\x78\xec\xad\xa8\xde\x7b\x75\x89\x2e\x8a\xf2\x6e\x2b\xf6\xde\x4c\xa6\x7d\xed\x69\xc0\xc9\x01\xbc\x82\xdd\x20\xa5\x47\x5a\x11\x61\x82\x0d\x25\xf2\x96\x20\x0c\x04\xa1\x32\x28\x00\x1b\x99\x6c\x1a\xea\xf0\xd9\xcf\x75\x98\x39\x8c\xf8\x2d\x47\x34\xf0\x06\xb2\xa2\xbd\x61\x06\x02\xc4\x16\xaa\x95\x4e\x10\xf7\xf5\x7b\x8a\x5d\x4e\xd5\x4e\x67\x97\x25\x4b\x20\x7e\xa5\x03\x3e\x3d\xed\x8e\x1d\x46\x20\x27\xb8\x15\xa6\xc4\x18\xff\x96\xa7\x3f\x98\xb3\x50\x1f\x3f\xea\x31\xfa\x13\xe9\x95\x87\xc5\x04\xa3\xa2\xb2\x75\x5f\x92\x0e\x54\xb5\x5a\x35\xb5\xca\xdb\x4d\x28\xbd\x19\xf2\x98\x01\xfb\xf4\x58\xc6\x52\xd1\x2e\x0d\x12\x3a\x1b\x37\x99\x33\x5a\xfc\xf4\x3a\xf5\xd7\x96\xc4\x0a\x71\xc3\x9f\x1e\x8e\xce\x43\xe5\xab\x30\xfd\xd7\xd3\x27\x96\x8b\x00\x39\x51\x87\xf0\x0a\x9e\x8b\xc2\xc3\x09\xa3\xe7\xd8\xa0\xd9\x8b\x45\x9f\x95\xc9\xaa\x93\x88\xd2\x9c\x97\x09\xe5\x3d\xff\x0d\x7a\x0c\x7c\xa1\x1f\x34\x06\xab\x78\xb4\x6c\xfe\x33\x09\xa1\x6d\x35\xa9\xdd\x8a\x90\x6b\x58\x81\x53\x8f\x55\x09\x74\x40\x44\x8d\x88\x0a\x74\x40\x24\x4a\xc0\xe0\xa2\xdf\xa1\x10\x42\x79\xfe\x2e\x7e\x84\x20\xf4\xd6\x01\x4d\x1c\xd6\x4f\xaf\x3d\x3d\x08\x85\xf3\x44\x89\x82\x37\x91\xe9\x93\x85\xa6\x58\xe4\x45\x36\x1b\x56\xb2\x9a\xd1\x2d\x14\xeb\x20\x0e\xa4\xa6\x8e\xb7\x70\xd9\x16\xcb\x16\x11\xc3\x84\x6b\xce\x19\x60\x3d\xd7\x95\xca\x2d\x68\x42\x00\x04\xe7\x01\x12\x8a\x56\x8d\x9a\x7c\xab\xb1\x83\x54\x7d\xde\x72\x62\xa3\xd4\x98\x13\x65\x71\x2a\x0f\x26\xfc\xcd\xa7\xe2\x75\x42\x07\xa9\x6f\x23\xa3\x23\x37\xa9\x61\x45\x0f\x13\x7a\x5e\x2f\x9a\x83\x0c\x8b\xb9\x7b\xd6\x3e\xdd\x7f\xfa\xb0\x9a\x4e\x42\x77\xd2\xe4\x1f\x09\x75\xe8\x20\x22\x86\x28\x07\x51\x85\xf4\xa4\x3d\xc3\x32\x07\x0a\x3f\x5a\x0f\x4b\xb0\x28\x62\xb3\xea\xcb\xde\x76\x50\x04\x8a\xc8\x85\x4c\xb7\x9b\xe3\x70\x7e\x32\xb5\x7e\xb6\xac\x00\x89\xfe\x4f\xc2\xe4\x03\xb4\xc2\xa6\xd9\xb5\x81\x0c\xf7\xf6\x8d\x39\x54\x80\x0a\x97\x47\x83\x24\x61\x6e\x4b\x4b\x28\xf7\x71\x53\x03\x03\x24\xa5\x09\xb4\x7d\xd5\x7a\x71\xe9\xd4\x3a\xaf\x8d\x14\x29\x81\x48\xc9\xf0\x85\x4c\xc5\x8b\xdd\xa3\x55\x42\xf7\x75\xcd\x01\x1c\x01\x42\xb7\xe2\xa3\x35\xc7\xc9\x97\x56\x8d\x1a\xf3\xc0\x27\xc4\xa4\xd3\xa9\x51\x0d\x94\x67\xcf\xde\x88\x86\x05\x13\xae\x3b\xe8\x57\x3c\xe1\xb0\x25\xce\x15\x8f\x8f\x2d\xca\x28\x25\x63\x38\xef\xc5\x04\xe4\xc6\x40\x32\x81\xca\xea\x97\x9e\x28\x22\x5c\x0e\x86\xdd\x8d\x6d\xe2\xc7\xe0\x6f\x72\x63\xfd\x83\x66\x79\x79\x36\xf1\x62\x3e\x61\x5c\xb9\x83\xc6\xb4\xc1\x3a\x48\xe1\x53\xe2\x96\x3d\x03\x00\x93\xbb\xc7\xe7\xb7\xff\xfa\x79\x77\xea\xf3\xe0\xf9\x36\xea\x8a\x07\x9f\xbc\x15\x2c\x13\x07\x03\x88\xec\x13\x3b\x98\x0f\x46\x19\xec\x25\xbb\x23\x8b\x9d\xce\x06\xa5\x3c\xb1\x13\x45\x67\xe0\xf7\x15\x7e\x6c\x2b\xbf\x4f\xe0\x58\x75\x3a\xbe\x3c\x93\x6f\xa1\x24\x7b\x31\x11\xed\xf8\xf3\x48\x55\xd9\xdd\xf3\x8c\x5d\xf3\x76\x97\x40\xca\x19\x3d\x20\x59\xd5\xaa\x4a\xaa\x77\x2b\x00\xbb\xc2\x15\xad\x16\x2c\xa7\x4f\xcd\x6e\x9b\x64\x89\x38\xae\xed\x8c\x98\x04\xb1\xce\xd1\xc3\xb5\x81\xba\x81\x64\xc3\x00\xd6\xe9\xe4\x65\x5e\xe5\x8b\x7c\x8d\x73\xe9\x79\x9e\x39\x21\xa1\xc4\x26\x70\x3a\x92\x23\x1f\x81\xc3\xfb\x88\x8f\xab\x2d\x11\xb1\x94\x8e\x9a\x6a\x76\xd2\xc0\xde\x81\x48\x99\xfd\xbe\x3e\xf9\x64\x0b\x37\xd2\x9a\xbb\xa2\x22\x9f\x1c\xb4\x07\x87\xc3\x94\x0e\xca\x8b\x9c\xe0\xc8\xf7\xc0\xcc\x16\x49\x2a\x9b\x5c\x13\xe5\x33\xb1\x8e\x91\x95\x0a\xf6\x8e\x2e\x9f\x96\x6c\x23\x70\xd8\x23\x7c\x1b\xfd\x34\xde\x39\x13\x85\x8a\xbb\x12\xb9\xe7\x65\xb2\x6e\xfa\xea\x15\xf4\x8d\x1a\xd5\xbb\x93\x14\x57\x4f\xc1\x89\xeb\x90\x2b\x85\x36\xcb\x3b\x49\xd8\xcd\xa7\xe6\x3c\x23\xcc\x03\xe2\xdd\xe9\x18\xc7\x5e\xb5\x60\x25\xdf\x9a\xf0\xc8\x58\xc3\x7d\x81\x3f\x59\xdc\x97\x44\x76\x72\x50\x7f\xcc\xbd\x24\x1d\x2c\x09\xb2\xe3\x4b\x0a\xb1\xf4\xf7\xa6\x13\x70\x24\xf2\x0b\x4a\x4c\x06\xe3\x14\x23\xf4\xf9\x36\xaf\xe4\x13\x5e\xb4\xde\x83\x36\x24\x04\x5d\x8e\x6a\x65\xc4\x1e\x7f\xba\xcc\xeb\x7c\x59\xb8\xd2\x4e\x88\x29\xa5\x63\xcd\xce\x1e\xe1\x17\x6a\x35\x4d\x18\xab\x68\xd6\x52\x08\xfd\xd3\x2a\xdb\xd9\xd7\xfc\xa3\x5f\xc3\x1a\x95\x78\xf7\x1a\xc9\xc5\x75\x88\x9b\xe7\x45\x5e\xcf\x1e\xd2\x7f\x39\xa8\x90\x4a\xab\x9d\x3f\x25\x0c\x34\xae\x61\x67\x4e\x4b\x47\x98\x00\xad\x5d\xc5\x56\xfc\xde\x65\xd8\x1b\x29\x32\x94\xd5\x37\xb8\xbf\xdb\xd4\x74\x5f\xd5\xef\x70\x28\x62\xa2\xd8\xe9\xdd\xd5\xc7\x96\x86\x42\x87\x14\x21\xcc\xec\x3c\xbb\xfd\x79\x07\xf2\xc8\x67\x88\xe4\x82\x6a\xbf\x23\xc2\x5d\xfb\xee\x64\x87\x2b\x63\xe8\xb8\x9f\xeb\x1f\xac\xdf\x5e\x26\x7b\xa4\x5d\x84\x3f\x79\x61\x2b\x5e\xc8\xea\x0e\xbd\x76\x6f\xe3\xfd\x5d\xf4\xda\x47\x5a\x1c\xe8\xb5\x0b\x0b\x9d\x5a\x53\xc3\xa1\x75\x93\x2c\xfb\xe6\x1c\xea\x4b\xdc\x39\x50\xaa\x3f\x71\x3f\xa7\xf3\x46\x1c\x2e\x1b\x6d\x33\xda\xce\x49\x7f\x43\x63\x27\x9b\x05\x6d\xc9\x93\x4f\x04\xac\x7e\x37\xfb\x36\x79\x19\x9f\xfa\x1b\x95\xfe\x42\x6a\x99\xa9\x6c\x5b\x55\x65\xcc\x2e\xb0\x45\x1b\xd5\xf3\x8c\x97\x89\xd8\x68\x65\xca\x62\x97\xa7\xf7\xbf\x78\x78\xc9\xfe\x53\xae\x34\x50\x2b\xaf\x8d\x38\xd1\xb0\x2f\xe4\x34\xb4\x48\xb3\xdc\xe4\x55\x25\x4c\x02\x00\x39\xfb\x07\x62\xfc\xe0\x30\x12\xfc\x1d\x85\xd1\xcb\x37\xf0\xe2\xd2\xa6\x62\x0a\xd7\xb5\xe5\x2f\x3a\xb9\xcc\xd0\x3c\x3c\x98\x78\xf9\xcb\x60\x3e\xbb\xbd\x2c\xc8\xd2\x6d\x50\xc7\xa9\x43\x5d\x0e\x35\xa7\x6f\x5c\x2f\x18\x1f\xf3\x27\x2b\x73\x38\x41\x6e\x13\x81\x90\xb4\xe8\x4c\x7e\x2a\x4f\xdc\x5a\x4f\x82\xd8\xdb\x0a\x4e\x1d\x3c\x37\x75\x03\x45\x4e\xbc\xb4\xe0\x77\x93\x35\xf6\x30\x49\xae\x74\xf2\x65\x38\xaa\xb7\xed\x1c\xba\x6a\xe2\xd7\xb7\x39\xf4\xd0\x3e\x21\x70\x2d\x17\xca\xf6\x15\x36\x2a\xee\xad\x39\x92\x34\xbf\xfd\x19\x8c\xc9\x6a\x9d\xec\x72\x3a\x70\xcd\xff\xfd\x5f\xff\xfb\xbd\x33\x3a\xda\xce\xea\x72\xfd\xde\x99\xa8\x53\x3c\xe7\x48\xc7\x17\xb5\x80\x15\x08\x8d\x3a\x92\x1b\x78\x4f\x32\xee\x80\x0f\xfa\x33\xdc\x02\x64\xf3\x50\x79\xc9\xf3\x17\x52\x54\x18\xdb\x55\x79\x99\xe5\x2e\x4f\xf6\xd9\x0a\x41\x0f\x90\xc8\x17\x54\x93\xe0\x2f\x3f\x81\x6c\x27\x11\x1b\x20\xd7\x51\x7f\x55\x33\xf9\x53\x93\xa7\xab\xf9\x12\x1e\xd0\x34\x06\xa2\x0d\x29\x6c\x06\x3a\xd3\x40\x3d\x59\x40\xcb\x04\xa3\xbf\x12\x1c\xed\xa1\x73\x64\x5d\xcd\xc4\x39\x75\x1b\x92\x60\xb2\x40\xc4\x8a\xa1\x8b\x3f\x1d\x47\xe0\x7c\x2a\x56\x8d\xc2\x5d\x82\xf8\xdf\x6d\x03\x2b\x29\xdc\x26\x4a\x47\xcf\x41\xdb\x08\x90\x8a\x2e\xcc\x2b\xbc\xae\x0d\xee\x9d\x46\xca\x0e\xb3\xe3\x8c\x80\xfa\x39\x7a\xbd\xd8\x0e\x53\x86\x56\x8c\x98\xd9\xdb\xbf\xa2\xa3\xb7\x26\x13\xa5\xaf\x5f\x78\xaa\x5a\x97\xd6\xce\x1e\xb0\xfe\x66\x42\x74\x1b\xd6\x75\x7a\x03\x0a\xaf\xdf\x3a\x59\xce\xfe\xc0\xa9\x46\x52\xb1\xfd\x28\x51\x9b\x21\xc1\x83\x1b\xfa\x89\x38\xb2\x09\x25\xc3\xe8\x6e\x99\x1f\x38\xea\xc3\xb3\xbf\x42\x90\x8b\xb5\xf9\x5a\xfd\xfb\x49\x4a\x5f\x58\x4a\xfc\xbc\x6e\x89\x69\xaa\x5b\xda\x17\x6b\xb8\x99\x14\x54\xef\xab\x64\x23\xb7\xbd\x94\x86\xbb\x37\x80\x3c\xaf\xab\xd9\x19\xff\xc2\x0c\x90\xbd\xdf\x89\xac\xb3\x93\x48\x32\xe1\x5b\x22\xda\x85\xb3\x33\xb0\xf4\xad\x7c\xd3\xaa\xb2\xab\xff\x97\xfc\xeb\x4b\xb1\x49\x3e\x8a\xaa\x45\x7e\x1a\xd5\x00\xed\x48\x78\x7f\x7c\x66\x49\x0a\xbe\xfd\x99\xb8\x9a\x22\x27\xd9\x15\x87\x37\xbc\xce\xfd\x48\xa6\xc3\x11\xf9\x74\x0d\x3c\xc0\xd8\xbd\x6f\x56\x24\xce\xa6\x83\x12\x57\x90\xa7\x2f\x38\x2f\xa4\x81\xb6\xd3\xfe\xba\x0f\xb2\x1e\x12\x37\xb4\x1d\x71\x73\xf2\xbc\xd3\x91\x86\x3c\x5c\x6b\xcc\x1e\x10\x51\x09\x29\xe2\x28\x81\x23\x8d\xb6\x65\x48\x25\xa4\x85\xb3\x85\x03\x73\x1c\x1c\x0f\x10\x9d\x83\x6f\x20\xf6\x51\x7c\x83\x2e\x6f\x3a\x5c\x98\x28\xab\x00\x6f\x42\xb9\xb2\xc9\xec\x48\x89\x94\x56\xa6\x9c\x6b\x13\xcf\x5b\xdc\x51\xb3\x72\x77\xa4\x68\x58\x70\x59\x6f\xda\xe2\xbc\xdc\xc3\x0e\xbb\x62\x4f\x9c\x79\xec\x3f\x0e\xfb\xec\xca\x9d\xe1\xdb\x6c\xc6\x8a\x92\xe4\x53\x44\x25\xcf\x75\x0f\x9f\xac\xfa\x18\x77\xd2\x6f\xde\x55\x30\xe9\x0e\xb5\xbe\x49\x36\x2b\x15\x3d\xee\xac\x48\x47\x29\xa2\x98\xd8\xd9\x7d\xfd\xe3\x70\xd0\xa1\x88\x8c\x39\x19\x29\x08\x9d\x95\x2f\x45\x10\x18\x16\x11\xf2\x34\x3b\xe3\x1f\xf3\x10\x89\x51\x6d\x5d\x2e\x56\xb6\xeb\x1a\x24\x07\xd9\x73\xe2\xd0\x52\xab\xbe\x36\x8f\x90\xc2\x51\x02\x10\x31\xa3\xd7\x89\x36\xa6\x5d\x71\x41\x5f\x80\xe1\x5a\x27\x8b\xd9\xbd\xcc\x9c\xd3\xdf\xa1\x22\x60\xe7\x33\xce\x18\x90\x3e\x4b\x69\x8d\xb4\xf9\xf9\x60\x6c\x71\x26\xf1\x4f\x73\xe1\x2c\x31\xff\xc0\x63\xae\xe3\xfe\xb5\xfc\xeb\x50\x6a\x58\xec\x48\xd3\x07\xa8\xa3\xf5\xc2\x3a\xd0\xfe\x6e\xd9\x4b\x7f\xd8\x32\x95\x58\xe6\x54\xe2\x48\xc3\x43\x44\xd0\x5a\x9e\x77\x1b\x49\x9e\xc2\x15\x4b\xc9\xe9\x7d\x22\x9f\xf2\xe7\x68\xc1\x4a\x63\xe6\x10\xb7\x4e\x67\xbf\x47\xba\x4c\xef\xa3\xc7\xaa\xc8\xb2\x66\xf3\x45\xcb\x35\x64\x61\xd9\xa1\xf6\x48\x85\x8d\x2d\xc0\xaa\xc0\xcd\x12\x15\x1e\x87\xcf\x91\x0a\x15\x6c\xd4\x2f\xe8\xbf\x91\xf4\x29\x44\x82\x0a\xb6\x82\x37\x05\x88\xd3\x10\x8c\x5c\x06\xf8\x48\x65\xce\xf9\x67\xac\x40\x09\x57\xc4\x5a\x2e\x79\x49\xa2\xc1\xc7\xba\x35\xf2\x3d\x44\x33\xe9\x95\x4e\x0d\x5f\xfe\x11\xfe\x36\xe5\x1b\xd4\xda\xb8\xaa\x06\x41\x85\xfa\xfe\xb1\x63\xe3\x57\xfe\xb8\xa3\x0f\x5f\x5c\x3a\x39\x28\x8f\xdd\xc2\x60\x9f\xc9\x5f\xe6\xde\xb7\x1f\xbc\xa8\x00\xf7\xee\x02\xe4\xdb\xdf\xbf\x20\x21\xf5\xde\xb7\x1f\xbe\xe0\xc0\x2d\x07\x55\xe7\x57\xc9\xca\x1e\xd4\xe7\x6a\xbe\xec\xb6\xb4\x2f\x73\xd7\xe0\x1c\x96\x3f\xba\x9d\xff\x3d\x60\xaf\x37\xe8\xfd\x3d\xcc\x1a\x19\x57\xef\x92\xb2\xa3\xd6\x4a\x01\x25\x6f\xef\xa9\x5f\x47\xa8\x9b\xcd\x5c\xe7\x58\x61\x9f\xaf\x10\x0b\x82\x4e\xa2\x6e\x59\x03\x04\xe6\x49\x3d\xfb\x2e\x7c\x61\xba\x79\x86\xc9\xd2\xf0\xbd\x6c\xfe\x3b\xf9\xfa\x84\xa7\x82\xa9\x7f\x17\xfa\x71\xdd\x35\x0a\x09\x73\x60\xb6\x89\xfb\x0a\xf7\x39\xad\xad\xa7\x7d\xba\xa3\x61\x7c\x78\xc0\x37\xfd\x2c\x1d\x83\x16\xb9\x90\x21\x13\xeb\x07\x93\xeb\x5e\xf1\xd2\x32\x5c\xa4\x9c\x3f\x2f\x42\xe0\xa8\x7e\xa1\x7e\xa3\xc3\xc2\xb0\xb5\x91\x7b\x2a\x0f\x9f\x01\x79\xf5\x58\xf3\x95\x0e\x66\x00\x7e\x06\x1d\xff\xf9\x2b\xe1\x26\xa3\xd3\x16\xfc\xc7\xaf\x6c\x43\x38\x0a\x62\x5e\xaf\xb4\x95\x2b\x5a\x80\x22\x65\x25\x3a\x2d\x03\x97\x92\xeb\xe8\x44\x59\x9e\x5f\xd9\x01\xc9\x2d\x88\x4e\x26\x3c\x90\xa6\xb1\x42\x4a\x7c\x99\x03\x92\x1e\xea\xf0\x34\xc7\xbb\xc8\x91\x48\x40\x02\x92\xb5\x07\x81\xce\x60\xab\x90\x25\xe5\xc6\xf5\x6a\xe4\xc5\xdc\xfb\x3b\xb0\xf8\x20\x8e\xee\x6a\x32\x23\xb1\x18\xc4\x9b\x95\x2f\xff\x4a\xb7\xdf\xc0\x97\xc7\x1c\x38\x3e\xf6\xaf\x3d\x7b\x6e\x94\xb4\x2f\x65\xc9\x59\xc8\x89\x77\xb3\xcd\xf2\x7a\xf6\x79\xd6\xc6\x8b\xdd\x33\x0d\xf2\x23\x4d\x5e\xb2\x7b\x21\xc9\x5c\x3e\x49\x8e\xc6\x3a\x72\x23\x19\xf2\x58\x52\x22\x75\x6b\x62\x2d\xbf\xc2\xff\x47\x4b\x40\x5f\x4b\xfb\x76\x3c\xbb\x43\x7f\xde\xdc\x4a\x1a\x70\xd3\xac\xec\x23\x89\x26\xbd\x0a\x23\x93\x92\x8c\xd8\x34\xae\x9f\xa3\xee\x39\x8f\x5d\x06\xf3\x5e\x56\x4d\x8f\x0f\x66\xec\x9a\xf3\xee\x92\x87\x36\x16\x9c\xdf\x33\xad\x20\x56\xb9\x67\x56\x91\x17\xac\x7e\x0c\x16\x17\xd2\xee\x71\xd3\x8a\xf1\x8e\x83\x85\x85\xf2\x36\x9d\x25\x83\x57\x5d\x27\xbd\x4b\x4c\x91\x92\x84\x3d\xb7\x3b\x13\x4b\x4b\x9a\x45\x1b\x6b\x4b\x48\x3d\x17\x83\x1e\x96\x3e\xf0\x6d\x44\x99\x5a\x8d\x97\x12\x00\xf8\xa2\xb0\x07\xf6\xa2\x1b\x2b\xe8\x36\x74\x8c\xd0\x9e\x45\x55\xa3\xb1\xd7\x38\x70\x84\xd6\x9e\x0e\x1a\x45\x0c\xa9\x19\xfe\x1b\x76\x26\xbf\x33\xfd\xd5\xdc\x9e\x3c\xc9\x72\x24\x36\xa3\x7c\xfa\xe9\x3a\xa8\xd9\x9a\x35\x1d\x1d\x7c\xf7\x51\x24\x6b\xbb\x67\x1b\xbd\x5d\x2b\x46\xbc\xd3\x50\x92\xa3\x93\x81\xbf\xf1\xbd\x45\xc7\x80\x44\x2e\xe3\x65\x91\x99\x2e\x6c\x9a\x34\x15\xfd\x22\xea\x15\x66\x7a\x8d\x58\x69\xdd\xdc\xa9\x88\x7d\x69\x0b\xdf\x3a\x6c\xaa\xe3\x00\x74\xb3\xef\x42\xe3\x5e\x8b\x32\x80\xd2\xc2\xd6\x3b\x98\x0f\xd4\xd4\x9c\x00\x56\x94\xcd\xd5\x47\xf1\x31\x4e\xe4\xee\x7d\xee\xe1\x7d\x9c\xe5\x99\x92\xbe\xdf\xf1\x87\x10\x40\x05\xa4\xf0\xf1\x5e\xab\x30\xb2\xfa\xbc\xd7\x65\x35\x81\x82\xac\x89\xdf\x58\xea\x91\x8f\xff\x4c\xc9\x6e\x25\x54\xf8\x63\xb8\x2d\x7a\x32\xcb\x7f\x13\x56\x53\x05\x9f\xfe\x61\x48\xd7\xd6\xb9\x25\x3d\xe3\xa5\x13\x49\xf9\xf7\x35\x4e\xb5\xff\xbf\x17\x1e\x31\x49\x0c\xc0\x01\x8e\x00\x93\x62\x14\x7a\x16\x7d\xf4\xca\xf4\x85\xeb\x2e\x87\xf5\xca\xb3\xa7\x12\x9a\x66\x23\xd4\x42\xb4\xf5\x52\x46\xcf\x61\xc2\x10\x1e\x3c\x95\xd4\x28\x79\x48\xd6\x98\x76\xf1\x12\x22\xf0\x90\x2d\xb1\xf1\x15\x92\x7c\x33\x26\x11\x52\x62\xb0\xcc\x2e\xd2\x04\xaa\xa2\x08\x57\x34\xe3\xf2\xa0\xcd\x60\x56\xa2\xf0\x53\x32\xc0\x41\xf7\xde\xd2\x06\x10\x8d\x8d\x76\x05\x5f\x90\x42\x8c\x0f\xf7\x20\xe3\x2d\x49\x49\x93\x35\x6c\x5c\xea\x09\x0c\x2a\xb1\xd2\x2f\x22\x5d\x7e\xd8\x79\x45\xdb\xdf\xa6\x2b\x18\x6d\x23\x02\x1d\x2e\xe9\xd6\x79\x4a\xbc\xa8\xa6\x02\xaf\xd9\xdc\x1e\xc4\x6e\x5b\xba\x25\x14\xb0\x51\x58\x41\x3a\x41\xab\x6b\x0e\x00\x88\x02\x57\x44\x8f\x36\x7c\x84\x75\x04\x21\x29\xe6\x7c\x33\xc0\xd3\x14\x8c\x51\x6d\x64\x80\x29\xf2\xdf\x1b\x00\x16\xbe\x9a\x07\x53\x8d\x1a\x65\x65\xf9\x78\xbb\x6f\xd7\x77\xb7\xec\x77\x7c\xcd\x1b\x17\x1b\xdc\x4f\xbb\x0a\x9b\xd5\x6b\x46\x8e\x76\xe8\xaf\x99\x04\x10\x68\x4e\x15\x7e\x30\xf2\x05\xfc\xdd\x9a\x3d\x46\xdc\x9a\x0f\x8e\x1e\x9e\xf4\x09\x08\x70\x66\x6c\x1f\x33\x8a\x36\x85\x6e\x38\xae\xc2\x9a\xc1\x6a\xf6\xdd\xe1\x44\x15\x75\x8f\x4d\x32\xa6\x4e\x5c\xaa\xe8\xa3\xd0\x3b\xbf\xbb\x97\xbd\x2b\x9b\x16\x76\x4b\x87\x37\x36\x48\x14\x38\xc6\x07\x20\xa6\x4b\x4d\xef\x92\x1c\xf6\xf4\x7c\x1e\xa0\x10\xfd\x3d\xfd\x6e\x12\x69\xea\xbc\x2e\x89\x18\x9c\xbe\xbc\x1d\x15\x39\x50\x0d\x44\x79\x63\xea\x81\x61\x76\x36\x93\x0c\x78\x09\xc5\x3d\xbb\x39\xed\x87\x39\xcb\x72\x1c\x1d\x05\x51\x4b\x70\x6c\xd4\xb8\x00\x28\x9a\xe1\x10\x3c\x3b\x7e\xd0\x7e\x90\x0f\xfa\xd3\xa2\xe3\x7b\x81\x13\x83\x70\x41\x15\x1e\x5d\x3e\x10\x40\x1d\x61\xac\x98\x5f\x2a\x07\xd0\x6b\xbc\x4f\xd0\xb7\x4d\xb1\xaa\x99\x59\x2c\xdd\xba\xe8\x41\x48\x98\xb8\x4b\x62\x98\x6e\x7f\x88\xd3\xbb\x6b\xc2\x38\xd1\x4f\xfa\x92\xe7\x89\x4b\xba\xb5\xfa\x14\xbe\x13\xc2\xbb\xe5\xf6\xdd\xfe\x3c\x2d\xdb\x77\xab\x36\x2e\xce\x0a\xf1\x73\xb4\xd9\xb9\x20\x01\x74\xea\xf4\x83\xb0\x91\x6d\xdc\xc5\x88\x5f\xbb\xf8\xd8\x88\xb7\xd8\x49\x49\xff\xde\xdb\x6c\xde\xcb\xb2\x93\x11\x60\x74\xe6\x42\x3d\x6c\x91\x9b\xaf\x60\x17\xc1\x01\x9b\x5c\xdf\x52\x25\x6e\x2b\xe2\x2f\xef\x40\x3b\x94\x8a\xd6\xf0\x19\x38\x01\x8b\xfb\x38\x03\xb0\x96\xf9\x56\xee\x5c\x5c\x19\xaf\x6b\x85\xf3\xc0\x11\x11\x34\x3b\x87\x5d\xb8\x10\x12\x22\x06\x82\xf1\x74\x7a\x4c\x7a\x94\xd1\x67\x64\xdf\x64\x80\x1a\x64\x47\xb8\x2d\x90\xf4\x50\x84\x4d\xfe\xba\x43\x00\x32\xc0\xf0\x34\xe9\x21\x8b\x72\xc6\x41\x45\x6a\x1e\x68\xd2\x58\xb1\x43\xb6\xb8\xeb\xf7\xef\xc9\x1a\x8f\x75\x7d\x04\x0b\xee\x36\xf1\x1b\x8d\x44\xec\xd3\xa6\x12\xf2\xb0\xa2\xdd\x02\x1f\x9c\x90\x1c\x45\xf6\x41\xf8\x37\xc4\xf4\xb9\xfd\x81\x70\x37\x8d\xaa\x5e\x3b\xb7\xaa\x66\xcf\xed\x82\xff\xe8\xd2\x97\x44\x1f\x39\xeb\x62\x55\xb6\x5b\x1a\xcd\x17\x79\xdd\xe5\x12\x57\x99\xa7\xa3\x71\x93\x83\xb5\x78\x34\x8e\x0c\xab\x5b\xce\x11\x47\x06\x9e\x31\xf6\x8a\xdd\x6a\x17\x76\xbf\xcd\x6d\x0a\x09\xaa\x22\xa9\xaa\x2b\xce\x1e\x34\xe7\x1a\x0a\x2b\x31\xea\x4b\x13\xb2\xd5\xad\x21\x74\x7e\x7f\xcc\x2b\x23\x02\x82\x98\xff\x83\xf4\xc7\x7e\x2d\xdf\x20\x8c\x67\x32\x76\x11\x1d\x07\xa1\xc4\x6d\x08\xf4\x16\x18\xef\xd2\x4d\xbb\x56\x6b\x62\xa4\xab\x2b\x8e\xaa\xcb\x37\x08\x95\xa8\xc1\x25\xf4\xb9\xd8\x3a\x1c\x94\x15\xa4\xeb\xae\x8d\xeb\xc1\x1d\x16\x75\x93\x17\x05\xc7\x47\x1e\xba\x0f\xc7\xbe\xd3\x4b\x89\xa0\x07\x09\xbc\xe1\xbb\x57\x75\xe6\x18\x84\xe6\x09\xdd\x73\xec\x6c\xf6\xfa\x05\xe3\x56\xc9\xcd\xbe\x04\xe7\xee\xfb\xb6\x8a\x40\xef\x7d\x28\x7b\x43\x3b\xb4\xfd\x8d\x3a\xe8\xf9\x7c\x0d\x26\x35\x2c\xa5\x30\x70\x9d\x55\x54\xd3\xef\x89\x2f\x13\x88\x23\xcc\x76\xa5\xab\x9b\xe9\xa8\x8d\x1e\x41\x48\x2c\x9d\x46\x16\x84\x63\x63\x50\xde\xfc\x83\xd9\x7b\x06\x0c\x05\x6f\x67\x9c\x74\xde\xb6\x31\xbf\x62\xab\x1e\x06\x09\x73\x10\x04\xf5\x2c\x7f\x99\x67\x84\x45\x1c\x30\xf0\xae\x56\x7f\x1f\xb7\x4a\xfb\x9c\x2f\xe1\x8f\xb6\x5c\x98\x38\x62\xba\xf0\x15\x21\xbe\x35\x68\x0d\x33\xbe\x56\x6a\x54\x63\xfd\x82\xf4\xa8\x9a\x43\x79\x32\xf6\xb9\x36\xc1\x29\xb1\x47\x9e\x84\xf6\xc0\x1e\x4d\xce\xe5\xc0\x37\x7d\x74\xb0\x0e\x31\x98\x98\x8b\xef\x78\x2c\x6f\xa8\x75\x76\xff\xc9\x93\xf3\xcb\xce\xfa\x0d\x66\xa2\x45\xe6\x8a\xc3\xb5\xef\x81\x67\xd0\x1a\x43\x8a\xaf\x16\x0b\xd1\x35\x67\x9e\xea\xb2\x04\x5a\x6a\xd0\x6d\x2f\x02\x74\x2c\xda\xa9\x91\xd8\x0b\x1c\x03\x3c\xe7\xc3\x38\x39\x55\x92\x7b\xea\xb5\xca\x22\xc5\x0b\xfc\xe5\x00\xe9\x88\x9e\xeb\x81\x74\x30\x52\xb6\x24\xc0\xe4\x1f\x1e\x74\x6c\x98\x3d\x87\xd9\xfb\x69\x67\x87\x15\x6c\x45\xc0\x81\x6e\xc0\x2f\x66\x96\xf8\xaa\x0c\xaa\xd7\xe4\x4a\x0e\x56\x21\xf0\xaf\xe9\xf3\xf7\xc7\xfb\x14\xd3\xb1\xb1\x4e\xe5\x38\xa2\x89\x8a\xe3\x1d\xf3\xad\x75\xbe\xb9\x63\x25\xb8\xaf\x0f\xa5\xaf\xf8\x6c\x5a\x59\xbb\x8d\x3a\xe8\x0f\x3d\x48\x40\xea\xf0\xd7\xd9\xe5\x8d\xac\x0f\x8b\x8f\xe2\x57\x40\x18\x07\x29\xe6\x18\x89\xee\x8c\x42\x71\x3e\x0d\x6e\xfa\xdf\xc0\xf3\xec\x70\x5b\x88\x1e\xf4\x80\x82\x75\x25\xa1\xd7\x99\x0f\x89\xf4\xed\xcf\x23\x4d\x89\x05\x71\xa6\x4e\x76\xe2\x8c\x33\x36\xc2\xc4\xbb\x50\xc3\xb8\x26\xe9\x39\xb8\x44\x07\x6e\x6c\x0c\x7a\xc4\x08\x34\x94\x86\xd9\x7e\x8c\xad\x9d\x67\x11\x28\xdc\xae\x3b\xae\xd5\x43\xf3\x68\xc5\x61\x08\x21\xef\x84\xc3\x16\xe1\xc3\x76\xa2\xe1\x0a\x56\x8d\x37\xf5\x7c\x50\xed\x90\x3f\x89\x1a\x92\x7b\x7f\x09\x05\x19\xdf\xa6\x5e\x70\xba\x10\xd5\x69\x8c\x1f\x28\x98\xb3\x17\xff\x5c\x02\xc8\xf5\xe2\x46\x32\x9b\x1d\x05\x69\xe8\xf9\xef\x8b\xb9\xfe\x30\x2a\x8f\xce\x98\x1d\xd6\xee\x98\x31\x20\xb7\x13\x5e\x47\xa1\xad\x9c\xcf\x90\x23\x92\x73\xca\xb3\x45\x2c\x4d\x6f\x1a\x9a\xca\x3a\x5f\xb1\x4e\x8d\x90\x1e\x66\x59\xe6\xe9\xf9\xc5\x25\x2b\xd2\x68\x73\x95\xf9\x72\x09\x32\x6e\x9e\x5f\xdb\x02\xa4\x8d\x18\xea\x8d\x55\xf2\x96\xa6\x4d\x09\x5e\x52\xe3\x44\xee\x94\xcf\xa4\x7d\x96\xad\x85\x18\x72\x50\x27\xf5\xb1\xc6\xde\x42\x9a\xa8\xd4\x0c\x42\x50\xf3\x2e\xae\xb6\x36\x25\x0e\x7b\x6a\x1e\x11\x64\x0b\x83\x97\x44\xc2\x73\x05\x77\x9a\x7b\x86\x99\xf0\x83\x08\xe2\x42\x14\x66\xac\x10\xe9\xa9\x97\xe9\x28\xd7\x3a\xc7\xcb\x1d\x72\xd1\x5a\xe2\x4e\x1e\x9a\x09\x36\x65\xe3\x5d\x06\xd0\x7f\xa3\x96\x2a\x77\xb0\xd1\xc7\x47\x10\xd0\x55\x3b\x0e\xf2\x82\x6c\xc1\xa1\xc4\x30\x6c\x68\xea\xb5\x15\xb7\xff\x2a\x91\x7d\xed\x58\x91\x6a\x8b\x83\x1e\x51\xd2\xf8\x8f\xc3\x22\x22\x65\x55\xb3\x2f\xe5\xf7\xb0\xc0\x56\xa2\x58\xcd\x34\x9a\xd5\x61\x81\x05\x89\x4c\xb3\xcf\xe8\xbf\x43\x0e\x5c\xa1\xec\x88\x53\xde\x12\x33\x8a\xa3\xb0\xe2\x60\xfc\x5b\x98\x82\x77\x11\x20\x70\x28\x10\xdd\xa0\xfc\x53\xef\x10\x6c\x49\x4c\xd4\xc8\xb5\xac\x34\xd4\x18\xb4\x78\x12\x44\x4c\xfd\xd1\xa6\x5d\xb1\xd7\xa1\x84\xc2\x23\xfe\x0e\xfe\x34\xad\x8f\x76\x47\x12\x7b\xcb\x0d\x0c\xfc\xb0\xd5\x86\x3e\x26\x7e\x3a\x5e\xbe\x00\x51\x3f\x11\x4b\xfb\x73\x9d\x6b\x3f\x91\xd1\xa0\xf8\x1d\x25\x30\xd5\xb2\x7b\xb9\x19\xa2\xd1\x7a\xd3\x76\x5c\x40\xad\xd4\x5f\x9a\x76\x15\x7b\x8c\x4d\xcd\x53\x8d\x66\x2f\x8c\x36\x9b\x7a\xdd\x18\x5c\xc6\x88\x87\x69\x70\xf3\x36\x35\x01\x47\x7b\x84\xb7\xfe\xc1\xf8\x22\x7b\xf7\x8a\x65\x9b\xe6\xb0\xcc\xc0\x5f\xed\xb0\xa0\x9e\x70\x5a\xbe\xe7\x1a\x2e\x65\x47\x69\x8e\x52\x15\x1c\x1c\x76\xd3\x1a\x78\x2f\x4b\x98\x5f\x51\x1d\x83\x98\x78\xcd\xf1\x96\x43\xec\xf9\xf8\x84\xe2\xf2\xbb\xa7\x93\x7f\x4f\x13\x5b\x82\xbc\xc1\x31\x68\x4f\xcb\x01\xf9\xa9\x73\x53\x0e\x3e\x13\x88\x65\x52\xd3\x88\x10\x6d\xe4\xca\x6b\x33\xc4\x45\x32\xd9\xb6\x35\x7b\x24\xbe\xf3\xc7\x8b\xf3\x27\xa7\xda\xf9\xf7\xef\xed\x76\xbb\xf7\x50\xf4\xbd\xa6\x5c\xdb\x02\x89\x99\x8e\xe6\x14\x81\xe6\x3f\xc9\xeb\xed\xc7\xef\xd3\xef\xbb\x44\xe1\xe4\x9d\x22\xbf\xaf\x21\x96\x28\xca\xf1\x0d\xc6\xed\x5f\x11\x1c\xec\x6e\x8a\xd4\xf9\x4c\x36\x0a\x32\x7e\x64\x01\xdc\x6d\x81\xe8\x7f\x34\xd4\x01\x99\xd2\x4d\xc4\xef\x09\x1c\xc6\x82\x8b\x0f\x61\xac\x5d\x67\x12\xbc\x4f\x02\x9a\xc4\x47\x56\x5a\x5a\xc4\xf5\x5f\xd1\x4f\x94\x4c\xa7\xd7\xaa\x0b\x99\xf0\x4c\xff\x18\x16\xc8\xa9\x13\x1e\xc7\x43\xfa\x83\xe3\xd4\x0d\x0a\x44\xf7\x8e\x5d\x16\x9f\x13\xc1\x85\x0a\x8c\x0e\xaf\x1f\x96\x62\xc3\x81\xbb\x64\x3a\xb2\xe1\x6a\x28\x3d\x18\x2e\x31\x50\x3e\x1d\xb6\xc6\xa6\x95\xae\x58\xb7\x3e\xe2\x78\x68\x52\x96\x15\xf9\xba\x8a\xd3\x61\x5d\x8e\x32\xd9\xf1\xe0\x9d\x73\xc1\xab\x9f\x82\x10\x10\x42\xe2\x2f\x5d\xe4\xb0\x31\x68\x48\xa2\x29\x50\xfd\xfd\xee\x6f\x7f\x59\x9b\x0d\xb6\x23\x47\xb4\x26\x3e\x9d\x1f\xfc\xd9\x76\x2d\x1f\x56\xee\x69\x0a\xc7\x73\x83\x6d\x6b\x81\xa0\x75\x62\x83\x69\xd4\x7e\x67\x0c\x22\xb3\xa7\xf4\xdf\x28\xa8\xe4\x0d\x9f\x9c\x8d\x45\xaf\xd9\xe3\x2d\x62\x69\xa3\x4d\xcb\xe1\x55\x25\xa2\x6a\x71\x90\xde\x79\xc4\xc0\x18\x37\x95\xb0\xd0\x61\x67\xb6\xdd\x22\x9c\x92\xb4\xde\xc6\x4b\x29\xef\x9c\x40\x53\xa0\x98\xdb\x0e\xb8\x13\x26\x13\xfe\x54\x63\x06\x37\xae\x19\x78\xbb\x43\x66\xdb\xb3\x35\x87\xa4\x28\xc6\x9f\x83\x6a\xbd\xfe\x2e\x0e\xca\x87\x6e\x87\xc1\x45\x86\x72\x87\xef\x5e\x58\x87\xbb\x3a\x16\xa3\xa3\xb9\x1e\xff\x88\xdb\xa3\x7e\xaa\x76\x74\x3b\xf3\x00\xc3\x5e\x3e\x20\xc4\x80\x99\x6c\xb9\x8e\xc0\x82\xb3\x03\xdd\x43\xf7\x4b\x7d\x9b\x60\x3f\x70\xaf\xbe\x40\x1d\x62\x2e\xd9\x17\x3b\x72\xd6\x8d\x59\xff\xe9\x70\x57\x8b\x4f\x1f\x7b\x54\x0e\xb3\xfa\x0f\xc1\x0c\xa9\x01\xb1\x79\x78\x7d\x4c\x9e\xfd\x8a\x61\xb7\x5d\xbb\xb6\x17\x8b\x67\x97\x95\x20\xe5\xfc\x7a\x4d\x7f\x96\x5d\xe1\xd9\xfd\x2c\x33\x0f\xf8\xd3\x7c\x65\x23\xd0\xb2\x11\x78\xd7\xe4\x3f\xa8\xcf\x27\x74\xb9\xd4\x02\xe4\x47\x04\x88\x90\x8a\x54\x22\x96\xac\x62\x25\xfc\xc8\xf8\x0e\x3c\xb8\x43\x99\xbe\xa3\xf9\x83\xd0\xf8\x51\x47\xf3\xb8\x62\xe7\x6d\x1e\x55\xec\xae\x66\xf8\xb5\x26\xd4\xf7\xb7\x3c\x7c\x53\xd4\x6b\x65\xe8\x49\x0e\xdb\x81\x6e\x86\x03\x25\xb2\x00\xe1\x08\x4b\x18\x4d\x36\x30\xc2\xca\xdb\x8e\xc1\x7a\xa4\xf8\x21\x3f\x9c\xc5\xb3\xea\x58\xe2\x58\x87\x1c\x74\x17\x50\xc6\x0f\x44\xec\x37\x61\x89\xc7\xc6\xe1\x81\x11\x01\xf5\x35\x8c\xf1\x24\xcb\xaf\xae\xa6\x8b\xd2\xed\x2a\x38\x68\xe3\xd1\x11\x96\x9a\xe5\x5d\x8a\x1b\x73\xfb\x57\xe2\x2c\x32\x04\x06\xe6\x82\x30\x31\x20\x64\x28\xe1\x69\x94\x4a\x92\x5c\x2d\xce\xe4\x47\x92\xf8\x9e\xb7\xff\x2e\xc2\x43\xcf\x30\xd0\xe2\xd6\x53\x7d\xd9\x2e\x3c\x4e\xe0\xc3\xda\xf0\xbb\x2a\xd4\x40\x75\xed\x76\x73\xfc\xc5\x8e\xe6\x08\x13\x00\x67\x63\x44\xd6\xab\x61\xb6\xce\xd7\xe0\xd4\x80\x16\x46\x11\x59\x02\x7f\x78\xdd\xcb\x42\x54\x17\x8e\xa4\xb0\x66\x8b\x8a\xc8\x9f\xd3\x44\x25\x41\x58\x6f\xff\xdc\x65\xe6\x71\xa6\x4a\xbd\xb0\x5f\xd2\x44\x85\x18\xed\xf9\xcf\x1e\x3e\x91\x0f\x36\xae\xe7\xa0\x4e\x60\xf1\x88\x53\xad\xd7\xdc\xe7\xc4\x9b\xec\x4f\x0f\x4c\xf7\x7d\x86\xf8\x57\xf0\xdf\x62\x9d\xae\x0f\x40\x84\x02\x59\x99\x5c\x11\xbb\xb2\x5f\x11\xbc\x7d\x1a\x71\xcf\xbe\x8e\x3c\x57\x49\xa2\xaf\x3c\xbc\x14\x8a\x10\x50\x00\xf6\x0b\xfa\xc9\x71\xef\xe6\xd3\xf9\x16\xc9\x8a\x95\x92\x4f\x4b\x20\xc6\x44\xb0\xeb\x40\x21\x8b\x0a\xfe\x6c\x87\xe0\xab\x2e\x13\x25\xec\x6e\x30\x09\xc1\x9b\xb9\x7f\x2c\x30\x20\x0d\xc8\x7f\x3c\xd1\xee\x5e\x8a\xe3\x52\x54\x08\xfb\x2f\x70\x61\xcf\xa4\x9a\x1d\xbc\xe5\x69\x9e\x14\xcf\x7d\x45\x63\x8e\xea\x3e\xb0\x35\xbb\x0c\x79\x65\x15\x1e\x1d\xc3\xf5\x3b\xce\x66\x7d\x12\xa7\x29\x20\x8e\x41\x6c\x31\x3b\x38\xbb\x87\x4d\x90\x6f\xa8\xf5\x97\x20\x24\xbe\x71\x62\x28\x7a\xce\xe8\xc9\xb2\x89\xf2\x98\x89\x3d\x63\x8f\xd9\xae\xf8\xc0\x6f\xb0\x73\x66\x69\x51\xbd\x7b\xbd\xa9\xe9\x5c\x65\xa0\xe6\xca\xd2\x7d\xa2\x0a\x46\xf5\x5e\x0e\x8d\x0a\x11\xc6\xff\x21\xcd\xd3\xdd\x33\xf9\x0d\xe9\xbb\x12\xb7\x24\x4f\xc4\x28\x2e\x42\x08\x7e\xc9\xe6\xa9\x5b\x66\xd8\xb8\x21\x03\x7c\x33\x38\xbc\xdb\xff\x91\xe8\x23\x7f\xf2\x20\xe4\x10\x8f\xfa\x91\x15\x76\x47\x90\x2a\x2a\xaf\x30\x38\xbb\x4e\x21\xd0\xec\xbd\xcb\x0d\x4d\x7a\x97\x2c\x83\xc6\x3e\xf1\x4d\x49\xc8\x2b\x92\x11\xf8\x55\x03\x51\xd7\xd8\x55\x45\x4d\xb4\x6c\x14\xba\x2e\x92\x6e\x58\x7a\xcd\x78\xc6\x3f\x5d\xe7\x82\x32\x82\x3a\xb8\x63\xd4\x67\x51\x3a\x2c\xc4\xfb\x21\xb2\x5d\xc4\x66\x90\x58\xb3\x78\xd7\x30\x1a\xf9\x7d\xa3\x17\xa9\x07\xbb\x4d\x98\x1a\x5f\x4a\x49\x3a\x6b\xb6\xbf\x96\xb4\x7e\x51\x79\x0c\x50\x74\xa7\xe1\xde\x71\x58\xe2\xf0\x78\xd0\x12\x72\x36\xa8\x5e\x9c\xa3\x5b\x41\xd1\x10\x14\xdf\x84\x4c\x77\x1c\x04\x07\xbd\x78\xe2\xef\xc7\xf3\x1a\xca\x3f\xdc\x00\x73\x3d\x6b\x35\xfa\xa3\x12\x16\xb9\x00\xd2\xb0\x2f\xd8\x1c\x7c\x59\x44\x2c\x56\x08\xfe\x12\xc6\xe1\x76\x05\xd0\x8d\x4e\x1f\xff\xd7\x64\xf2\xad\x2b\x97\x2f\xba\xd8\xc0\xbd\x67\x50\x22\xed\x1e\x97\x08\xe1\xf5\x7c\xb1\xf3\xf8\x0e\xe5\x0f\xb0\xef\x40\x6c\xef\xa8\x35\xc1\xc1\xdb\x7f\x06\xc5\x2d\xbc\x87\x7a\x7c\x65\x16\x3b\xa8\x13\x5d\xa7\x63\xac\xde\xf1\x5b\x7c\xfb\xf0\x66\x05\x07\x3a\x52\x61\x03\xc1\x45\xbd\xe1\x42\xd7\x0c\xa3\xd8\xd6\xcd\xd5\x56\xbe\x63\xb4\xc5\xb5\x4f\x6e\xce\x67\x8f\x1a\xe8\x30\x10\x24\x16\xaf\x60\x42\x01\x28\x3e\x33\x44\x6f\x6e\x7f\x36\x2b\x87\x90\xf5\x1c\xeb\xb8\x9a\x7d\x23\xb1\x86\xdb\x09\x47\xa2\x54\x45\x68\x35\xf3\xc1\x4b\x69\x36\x9a\xd3\x0b\x72\xd9\x7b\xba\xa5\x73\xce\x43\x93\xb1\x53\x5e\xcb\xa1\x8c\x21\x8e\x30\xa0\x3a\x63\x8a\x63\x11\x8f\x25\x63\xa4\x9c\x87\xef\x67\x21\xfe\x85\xc4\x1a\xc3\xfb\x5d\x8a\x13\x6d\x27\x8b\xb7\x12\xec\x88\xcf\x87\x10\x4c\x99\x58\xb2\xb6\x5a\x35\x84\x48\xe9\xf5\xb4\xeb\x28\x50\x0f\x12\xa0\x10\xd1\x79\x83\x10\x15\xfa\x7e\x47\x11\xc6\xff\xa9\x54\xe8\x79\xb6\xaa\x04\x8d\x27\x0e\x73\xb7\x09\xf7\xa0\x1a\xa5\x05\x37\xa2\xfa\xac\x63\xbf\xa1\xe3\xce\xcd\x31\xb6\xfc\x5d\x7c\x9b\xc7\x1b\x1c\xb8\x36\xff\x96\x4b\xfd\x3b\xa2\x4f\xc6\x5a\xc5\x38\x0c\x65\x48\x1f\x8d\x47\xf9\x5b\x2f\xd6\xfb\xc5\xc7\xe2\x0b\xc6\x30\xf8\x55\xf7\x3c\x7a\x67\x4f\xf5\xdf\x24\x14\xe5\x58\x08\x4a\xbe\x55\x8d\xe8\xc6\xa1\xbc\x3c\x08\x8b\xd8\x23\x32\x1a\x68\x51\xab\x44\x12\x8c\x6c\xfd\x1e\x05\x3d\x76\x11\x7e\x1e\x13\x8e\xa1\xb4\xdc\x8f\x53\x02\x8d\xa5\xbb\xab\xb8\x02\x20\x7a\x71\xbb\x53\x24\x74\x41\x4c\xc4\xa8\x1a\xaf\x85\xc1\x18\xf5\x78\x14\x13\xbe\x30\xf1\x21\x4c\xec\x5b\xc7\xae\xaf\x5e\x13\xcb\x64\x38\x46\x50\x99\x83\x80\x26\x31\x6d\x1f\xab\x20\xec\x46\x3f\xae\xf2\x1d\x33\x4b\x8f\x86\xd0\x1a\xb9\xbc\x81\x90\xbc\xf3\xd7\x1e\x1c\xeb\xc8\xdf\xa6\xea\x4d\x0d\x22\x35\x90\xcc\xe5\x21\x25\x42\x59\x47\x69\x3b\x80\x31\x1b\x29\x27\x76\x1f\xa7\x26\x4a\xb3\x85\x29\x49\x43\xac\x61\x3b\xc8\xf0\x84\xae\x92\x80\x24\xed\x1e\x66\x53\xbe\x84\xdc\xfa\x92\xb4\x25\xb1\x4a\x86\x19\xbe\x6e\xe3\x23\xb1\xe5\x5d\xdd\x11\x77\x10\x9f\xa5\xd7\x6a\x67\x7c\x98\xd8\x55\x48\xa7\x35\x4e\x6d\xb2\x9e\x3d\x5b\x95\x6d\xd7\x90\xc8\xa5\xea\x9b\xe0\x13\xe9\x3c\xa7\xb4\x73\x04\xc9\x86\xd5\x9c\xa6\xea\xc9\xc6\x20\xfe\x26\xe1\xf1\x98\x1d\x1d\x18\x7a\x4d\x70\x18\x59\x16\x0e\x20\x7b\x9c\x7f\x55\x2e\xaf\xf0\xb0\xfd\x86\x1c\x72\x1c\xcd\xf0\x5e\xf5\xd1\xb0\x75\x3c\xf4\xe4\xcf\x4c\x8e\xc9\x34\x91\x33\x73\x8a\x18\xd0\x21\x00\xb4\xa6\xf5\xc7\x29\x69\x60\x61\x34\xc6\x16\x6b\xe9\x34\x06\x15\x98\x6f\x62\xf8\x0e\x0b\x85\x08\x11\xd1\x79\x31\x7c\xad\x72\xe7\x85\xba\x84\xe3\xd9\x68\x5c\x82\xf0\x48\x4c\x74\x30\x4f\xb5\x03\x66\xd2\x47\x86\xc1\xef\xd7\x35\x23\x85\xde\x64\x18\x32\x07\x01\x77\xee\x1f\x6d\xe2\x2b\x50\x1f\x18\xa9\xf7\x74\x9f\x1f\x8b\x3e\x65\xad\x44\x7a\x68\x38\x94\x8c\x94\x7a\x33\x98\xf8\xee\x71\x18\x2f\xf4\xb5\x8e\x03\x80\x9c\xca\x73\x22\x19\xbf\x9f\x2a\x63\x2d\x30\xd2\xe1\x55\x6d\x34\x5e\x1f\xd0\xa0\xd7\xbb\xb7\x0e\x8a\xc0\x37\x76\x86\x4a\x8e\x58\xd5\x1c\x30\x0e\xf1\x76\xb1\xaa\x78\x47\xb4\x32\xa8\xc6\xba\x25\x1a\xea\xbf\x87\x60\x8d\xf5\x04\xd2\x86\xaf\x01\xd0\x0e\xcd\xb1\xba\xd2\xbd\x68\xf4\x7e\xae\x9e\xf5\x3b\xeb\x58\xbf\x3e\x5f\xf6\xa6\x87\xb3\x94\xf5\x01\xb9\x98\x25\x94\x13\x26\x02\x62\x58\xe9\x4c\x5e\xbf\x50\x4a\x21\xd7\xe1\x61\x5f\x0e\xba\x8f\x9a\xec\xa8\xbc\x44\x2f\xbb\xa3\xe4\xe1\x02\x06\xe2\x1e\xcc\x08\x84\xaa\xc3\xa2\xc2\xee\x0a\x37\x4a\xde\xcd\x1f\x23\x92\xc1\xc0\xd9\xb8\x25\x41\xbc\xc1\x63\x68\x2c\x6d\x46\x0b\x87\xd7\xcc\xf8\x46\x70\x74\x17\xc4\xa3\x0b\x56\x13\xbd\xc1\x1d\x31\xc1\x9c\xc6\x34\x63\x88\x52\xbd\x29\x12\x18\xed\x18\x26\x29\xed\x09\xa8\xf0\xd1\xc8\x8c\x8e\x92\x98\xf8\x0d\x74\x0f\xf0\x3e\x95\xf9\x4d\x63\x12\x42\xf4\x6b\x86\xd4\xa3\x37\xfd\x37\x42\x87\xe3\xd2\xa7\x5c\xdf\x78\x5c\x61\x03\xf1\x66\x7c\xe3\x41\x9d\xf6\x88\x50\x20\x31\x23\xa4\xe5\xf5\x43\x3e\xf6\x9c\xc0\x10\xc9\xc3\xe6\xe9\x74\xb5\xba\x81\xfa\xa6\x43\xfd\x5a\x6a\x6f\x23\x41\xa0\xf8\xa8\xed\x5a\x2b\xe8\x94\x66\xe5\x76\xa1\x31\x52\xbe\xee\x3d\x22\xa1\x91\x6b\xb7\x24\xc4\x6a\xf0\xaf\x8c\x2f\x39\x4e\x7b\xcf\x31\x20\xf8\x1a\x91\xe0\x1d\x3f\x36\x21\xb2\x20\x1e\x06\xe0\x85\x78\x31\x09\x2f\x87\x22\x14\xc9\x36\xaf\xf9\xa1\x95\x2a\xb2\xbc\x49\xdb\x49\xcc\xdf\xf4\x23\xfb\x1f\x7f\x69\xa1\x21\x66\xbb\xa8\xd5\x72\xa5\xf7\x64\x08\xd3\x24\x79\xca\x15\x31\x32\xfd\x53\xad\xc9\x44\xad\xd4\x10\xea\x3b\x7a\x1d\xbc\x22\x4a\x4b\x20\xda\xe1\xc1\xb2\x02\x5d\xcd\x1e\xcb\xaf\xa8\xac\x26\x6c\x66\x36\x87\x57\xce\xec\x29\xa6\x59\xed\x13\x89\x76\xca\x49\x7a\x8b\x44\x44\xd0\xd5\x08\x8f\xc5\x77\x71\xfc\xb2\x6c\x36\xe9\xe6\xce\x6a\x62\x82\x17\x71\x6b\x17\x41\x8d\x1c\x65\x07\xc3\x45\x08\x5e\x62\xe3\x10\x57\xe6\x11\xb2\x36\xba\xe1\x10\x5a\xb0\xc1\xe1\x21\xfa\xd1\x37\x63\x5d\xcd\x71\x4f\x3e\xfb\x2c\x61\x17\x5c\x56\x45\x73\x70\x4d\xff\xc6\x10\xde\x3e\xcc\xf0\xf6\xe1\xc1\xfb\x1d\x5d\x4e\xcf\x06\xaa\x4b\xd6\xa0\xc2\x21\x4a\x2f\xae\x47\xbb\xdc\x1e\xb2\xf7\x5a\x8b\x1e\xbd\xe8\x57\xd9\x76\x2f\x5f\xc4\xc9\xc9\x6a\xd0\x31\x5f\x85\x0d\x5a\xed\x22\x15\xf7\x86\xc8\x57\x62\x78\xc7\xb1\x9f\x3a\x1e\xa2\xf5\x70\x94\xc3\x29\x87\x48\x67\x71\x22\x14\x78\xb7\x7f\x8e\x53\x10\x70\xaa\xe8\xde\x4f\x8f\x8a\x8a\x4c\x30\x1c\xa5\x44\x32\x51\x6b\xfc\xfe\x38\x24\x9e\x4b\x9c\xb2\x4f\xd0\x9d\x19\x69\x47\xb7\xfc\x30\x55\xca\x7b\x79\x77\x38\xa5\x7d\x22\x0c\xad\xe7\x80\x46\xd0\x31\x56\xd9\xf8\x77\x2a\x46\xcb\xc9\x33\xc1\xd1\xa3\xc0\xa3\xa5\xca\x86\x76\x6a\xd9\xa4\xd7\x6e\x13\xe5\xc3\x53\x06\xce\x59\x1c\xdc\xd6\x71\xcc\x35\xe1\x1f\x38\xd0\x97\x06\x09\xb5\xc2\xee\x9b\x73\xbc\xb2\x77\x67\xe5\xc8\x98\xd0\xbf\xab\x7f\xb4\xa1\x51\x05\x41\x08\x72\x19\x83\x44\x8f\x70\xe2\x59\x07\xef\x37\x56\x3a\xd8\x5d\xdc\x9b\x98\x1a\x85\xd0\x9a\x6f\xd0\xca\xf8\xa8\x7b\xed\x74\x83\xed\xc2\x70\xc6\xac\xc2\x41\x37\xac\x38\x84\x2d\x64\xfe\xd2\x1e\x0e\x93\x33\x76\x83\x27\xb7\x5f\xd3\xc8\x58\xe8\x6c\x3f\x18\xf7\xba\xb6\x47\x46\xc8\x67\x74\xb1\xd4\xf7\x98\x55\x49\xdd\x13\x89\xe1\x26\x91\xba\x32\x53\x61\x7a\x0d\x9b\x44\xa8\xa7\xd9\x2b\xf5\x35\x0d\x86\xd1\xde\x7f\xe3\x16\x25\x5a\xf1\x51\xc5\x75\x3c\x05\xbc\xdf\xbe\x4c\x75\xe8\x02\xdc\xdb\x9f\x69\x3b\x13\x13\xb8\x3f\x0a\xd4\xb8\xd2\xc8\x92\xf7\x18\xae\x44\x23\xe4\x63\xc5\x5d\x26\x6d\x27\xf2\x14\xd6\xd8\xa2\xe3\xc5\x87\x22\x9d\xf3\x33\xe2\xd5\x35\x5f\xc5\xcb\x76\x4c\xb2\x46\xe3\xb4\xdb\x40\xb2\x39\x4a\x2a\x6e\x32\xcc\xdb\x53\x2a\xfd\xbe\x44\xc3\xca\xf7\x96\xef\xb5\xab\xb7\xcd\x3b\xb8\x4a\x49\x3e\x0a\xf5\x1c\x9d\x22\x72\x7c\x30\x2f\x0d\x3e\xd8\x23\xe1\xbb\x77\x0e\xa2\x43\x19\x1d\x8c\xbe\xf8\x7a\x78\x86\xc4\x33\xd6\x27\xd7\xab\x66\x95\xe2\x59\xc4\x23\xf3\x8c\xac\x49\xc0\x1d\x30\x4b\xca\xe8\x23\x19\x4c\x29\x61\x43\xde\x8b\xa5\xfa\x0e\x42\x3b\x5a\xdc\xcd\xc1\x35\x95\x1f\x3f\x11\xff\x85\x25\x47\x35\x34\x41\xdd\x97\x1d\x99\x58\xdc\xeb\x38\x8a\x51\x37\x6f\xf7\xc6\xd0\x61\x55\xc9\xa3\x64\xdb\x9c\x1e\x5e\xc5\x07\x38\x87\x58\xa4\x6e\x60\x6b\x4f\x42\x33\x7e\xf8\x95\x6d\x22\xa3\x31\xe5\x6b\x4a\x5c\x87\xcf\x97\xc4\xa9\x34\x24\x9e\xd9\xe8\x69\x92\x2f\x7c\x5a\x35\x52\x81\x44\x2f\xda\x05\xf3\x86\x23\x9d\x75\x75\xc0\x05\x40\x7b\x26\x77\x13\x69\x4c\xe7\x99\xb7\xf1\xf5\xa0\x79\x4e\xf9\x2e\xe2\x8c\x88\x11\xf8\xe3\x9a\xad\xd4\x5b\x7e\xcc\x8d\xad\xd4\x35\xfc\x6e\xd4\x82\xd6\x75\x0b\xbc\x60\x89\x08\x8c\xfc\x6d\xce\xf5\x3b\x2a\xb9\x75\x6c\xbf\x33\x5f\x13\xdc\x9a\xed\x1c\x93\x07\xb9\xe1\x44\xf3\x88\x13\xcd\x25\x12\x0f\x5b\xf7\x23\xd3\x4a\xda\xc7\x7d\x4d\x3d\x56\x0b\x71\x4b\xfa\x35\xfe\x40\x29\x07\xa5\x3d\xf4\xae\x6d\xb2\x3d\x0a\x3b\x42\xa6\x2a\xe6\xc5\xb8\xf0\x70\xee\x5f\x52\xa2\x39\x0e\x80\xb8\x4e\x9e\x91\xcc\x1b\x97\x7f\x48\x09\xc7\xca\xb2\x31\x0c\x33\xd6\xf1\x32\xde\x39\x26\xbd\x3e\xeb\x8f\x49\xaf\xf0\x0e\xc6\xe4\x16\x37\x36\xa5\xf3\xee\xe1\x5a\xfc\x15\xa0\x78\x59\xf1\xfd\x3c\xad\x39\x02\xc9\x70\xb0\xe9\x50\x67\xe1\x5c\x0d\x4d\xc4\x16\x8c\x2b\x9b\x37\x32\xcc\x7c\xaa\xb9\x40\xaa\x79\x86\xd4\x3e\xf7\x4a\x65\x87\x20\x93\xb2\xc7\x61\xb6\x41\xa4\xd4\x39\xc2\xce\xa4\x75\x43\x5b\x55\x3b\x7b\x7c\x81\xf8\xaa\x17\x21\xf9\xa0\xb7\x83\x7a\x1d\x82\x0e\xab\x8e\xf5\x9a\x26\xe9\xb5\x1d\xe9\xf6\x0c\xe9\x77\xf6\x7b\x50\xb3\xeb\xf8\xa0\xf2\xd8\x26\xe1\xe7\xb8\x70\xd0\x2d\x9a\x74\x65\x6b\x38\xd9\x5d\xcf\xd9\xea\xa2\x6b\xe9\xa9\x2f\x64\x3e\xe3\x42\xe6\x4b\x2a\x64\x2e\x51\x68\xac\x4d\x3a\x96\x36\xb6\x4e\xd8\x7c\x26\xb4\xe1\xd7\xba\xa1\x13\x6a\xa5\xf6\xdb\xf2\x23\xe6\xdf\x5f\x9c\xc5\x8c\x1e\xfc\xe3\xe7\x2a\xad\xe8\x66\x04\xdb\x17\x5a\x3b\x47\x01\x73\xc1\x05\xfc\xbe\xc4\xcd\xc7\xc8\x68\x10\x2e\x4b\x4e\x4a\x92\x15\x38\xdc\x8e\x1a\xe9\x74\xe6\x7a\xb6\xdf\x3b\xcb\x64\x54\x83\xa9\xe6\x19\xac\x1d\x5c\xe6\x5f\xdf\x14\xbb\x11\x6f\xe6\xd7\xaf\x27\xc4\xcd\x57\xbc\x68\xf0\x1e\x11\x3f\x3d\xc2\x16\x13\xbb\x4a\xde\x82\x67\x2f\xd3\xc3\x29\x87\xca\x5b\x04\x08\xf8\xb5\xb5\xfd\x90\xa5\x72\x67\x90\x18\x6a\xd9\xb1\x5a\x3a\xd4\x6e\x23\xea\xcc\x88\x01\xa1\x72\x22\x5f\x8b\xb3\x8b\xbe\xfa\x40\x98\x6c\xd7\xb3\xa7\xf8\x1f\x97\x8b\xf2\xe8\x03\x3f\x0e\x23\xef\xd1\xf5\x5e\x64\x93\xea\xfc\x44\x99\xde\xc4\xe0\x19\x31\x92\x6a\x7f\x91\xa8\xab\xfa\xbc\x9e\x94\x0a\xd2\x81\x26\x78\xb6\x36\x13\x1b\x56\xb6\xda\xf4\x59\x51\x5c\x29\x49\x11\xce\x29\x16\xea\x25\x5d\x2d\x6c\x71\xaf\x2c\x4e\xe9\x9a\xae\xcf\xd3\xf7\x5f\x23\xbf\xa0\x44\xa2\x58\x4b\x51\x7a\x02\x99\x9e\xc4\x1e\x2d\x97\xce\xc0\x9a\x3a\x9a\x55\x6c\xb2\xa7\x33\x1c\xd8\xeb\x69\xff\x83\x03\x5a\x5a\x88\xe3\x2c\xe9\xbc\x58\xe4\x10\xdb\xb5\xfb\x3d\xa5\x84\xb9\xe0\x54\x2d\xc7\xf1\x8c\x67\x8f\x1c\x47\xa1\x8f\xeb\xb2\xc8\x28\x82\xd6\xa0\xfe\x23\x16\x26\xd9\xec\x40\xca\x0f\x9f\xb1\x7f\x84\x3b\x08\x43\xbc\x2b\x87\xa7\x15\x2f\x58\x18\x84\x9a\xa6\x50\x16\xc6\x8f\xfb\xc8\xe3\x7e\xfa\x1a\x62\x4f\xbc\xb8\xeb\x71\xbf\x0e\x08\x01\x3b\x7c\x50\x80\x08\x2d\xf2\x6a\xde\x21\x42\x78\x43\x80\xaf\xa2\x55\xa0\x89\x0a\x32\x5a\x84\x42\x9b\xe4\x0e\xf7\x62\x0f\x35\x5c\x7d\xc3\x09\x82\x59\xb0\xae\xae\xf7\x21\x8e\x1b\x10\x1b\x5b\xb5\x4d\xef\x0c\xfe\xbf\xf0\x7a\x28\x6d\x4c\xe2\x52\x4b\xcc\x69\xb9\xf1\xf5\xa8\x01\xac\xe8\x94\x89\xd5\x9d\x41\xac\x47\x61\x3d\xf2\xd4\xa2\x8a\x85\x52\x7a\xfc\x6e\xd6\xf5\x00\xfa\x1f\xf3\xce\x6d\xdc\xd7\x7f\xc8\x6b\xb7\x11\x00\x62\x13\xa2\xfb\x11\xe8\xef\x32\x1e\xc5\x33\xa0\x53\x76\xe6\x7b\x0d\x99\x8b\x6e\xb9\x7f\x94\x5a\x11\xe1\xe2\xef\x81\x69\x0c\xa7\x8d\x5c\x8f\x4c\x44\x1f\xc9\x94\xeb\xb5\xbd\x1e\x3c\x6b\x31\x7a\x73\x2a\x19\xd1\x78\x24\xe1\xe0\x7e\x56\x92\x25\xb6\x7e\xff\xf9\xd8\xf4\x5a\x33\xe1\x15\x50\xe9\x23\xb2\x56\x2c\x24\x91\x3c\x8c\x0b\xcd\xaa\x53\xa5\x3d\xbd\x39\x0c\xa8\xcf\x63\xce\x33\x3c\x33\xad\x83\xc8\x33\x62\xe6\x2e\x67\xc1\xed\xff\x51\x53\x4b\x9f\xdf\x4d\x43\x12\x42\x90\x55\xf9\x94\xf7\x33\x33\xff\x56\xa6\x2b\x7c\xc5\x23\xd6\x4d\xd1\x48\x83\x2d\x7e\xd3\x7f\x1c\x3a\x89\x0b\x45\xda\xaa\x23\xc5\xfa\x06\xf3\x92\x06\x3f\xc7\xd9\x97\xf4\x9f\x7e\x63\x77\x13\x18\x4b\xff\xcd\xaa\xa5\xac\x20\x76\x9f\x8e\x9a\x07\x4f\xe2\xd4\xf0\x7a\x24\xe7\x3d\xd5\xaf\xb1\x12\xc1\x6e\x33\x29\x11\xbb\xf5\x23\x31\xeb\xf3\xb9\x12\x19\xca\x95\xf2\x7c\xd5\x76\x0d\x1a\x8e\xf7\x00\xd8\x02\x0f\x81\xe6\x11\x7d\x28\x31\xd7\xf9\xf2\x9a\x1d\xb6\x89\xae\x2c\xc5\x8a\x5b\x5e\x3b\x55\x28\xe2\xcc\xe7\x60\x71\x38\xf3\x8c\xfa\xc1\x7e\x06\xbb\xc1\xa8\x40\x56\x48\x76\x98\x49\x52\xd7\x65\xbe\x68\x70\x01\xce\x87\x50\x5d\xb6\xf4\x45\x64\x4e\xb0\x68\x58\xa8\x6a\xca\x5e\xb9\x42\x0c\x81\x0e\x0b\xf2\xdb\x84\xbe\x94\x95\xc7\x09\xb9\x88\x44\xa8\x93\x51\x48\x9c\x73\x5f\x97\xef\x6e\x34\x9b\x59\x85\x7e\xfe\x06\xe7\xc5\xbc\x4a\x66\x8f\x2b\x73\x3f\x33\x17\xf7\x35\xbd\xda\xd4\x5b\x79\xac\xe1\xe2\xf1\xe5\x53\x33\x40\x64\xc2\x1a\x1b\x15\xe4\xe5\xbe\x60\x71\xda\xa0\x78\x94\x15\x56\x3e\xce\x50\x4b\x2b\xf5\xb5\xc0\x8d\xba\x7f\x98\x3f\x03\x16\xb5\xe3\xc5\xba\xa7\x53\xc4\x81\x50\x7c\x07\xd9\xbf\x91\x1f\x5f\x5a\x96\x84\x95\xe9\x5e\xae\xb4\xa8\x19\x78\xb7\xe1\x66\x98\x3f\xc4\x9e\xac\x70\x62\x34\xe3\x32\x95\xac\x85\x1b\x4c\xf3\x02\x6a\x63\xf3\xf6\xe9\xdb\xd3\xde\xbe\x9a\xd7\x08\xff\xad\xcf\xd0\x56\xfb\xf6\x4a\x6f\x30\xcc\xe5\xa3\x0b\x3f\xc9\x55\xbe\x45\x31\x7d\xf3\x1d\x6a\xbc\x1c\x4a\x41\x79\xe2\x5d\x7c\x56\xe8\x8c\xaa\xf1\x38\xe3\x0f\x4d\x54\x71\x8b\x9b\x4b\x5b\xbe\xcc\x53\xdb\xdb\x65\xe2\xd9\x69\x9e\xde\x7f\xdc\x1f\x0a\x07\xf7\xf2\xbc\x5a\x18\x14\x52\x37\x49\x0d\x06\x99\x8e\x06\x8d\x14\x2a\xc6\x47\x4a\x2f\xf2\x2d\xd4\x61\x74\x22\xd1\x29\xbd\xca\x7d\x9b\x51\xf0\xa1\xe8\x09\xdc\x63\x94\x20\x66\x3d\x0e\xde\x32\x0f\x8f\xa3\x25\x9e\x41\xb5\x1d\x71\xbb\xfb\x65\x40\x3b\xec\x51\xa2\x05\x4d\x7b\x34\x6c\xcc\x22\x6d\x30\x88\x48\x91\xdb\xb7\x45\xeb\x29\xf6\xe2\x46\xc7\xef\xdd\x8f\xd2\xb8\x41\x64\x94\xe1\xa8\x7b\xc5\xe6\x42\x5d\x87\x26\x54\x77\x36\x2d\x75\xbc\xd1\xf6\x38\x88\x7b\x8a\xf4\x3b\x6c\xa8\xa2\x76\x63\x1e\xe0\xd9\x10\xd2\x61\xdd\xc6\x74\xdf\x6f\x4d\xf4\xbe\xcf\xeb\xce\x46\x6e\xff\x82\x06\x4d\x4b\x26\xdb\x6d\x8c\xc9\xfe\x75\xf1\x3c\xce\x7f\x09\xdc\x15\x53\xe4\x64\x2c\x1f\xbe\x98\xfc\xd4\x2e\xbf\x91\x72\x50\xa4\x7f\xd8\x68\xa2\xbb\xba\x42\x50\x3b\x84\x5f\xa5\x03\x8d\x88\xa3\xd1\x94\x50\x2b\xaf\x78\x0b\x41\x83\xc7\x7a\xb0\x25\x1c\x3b\x64\x03\x81\x10\x14\x08\x56\x20\x99\xa1\xd1\xb2\xd1\xe7\xfb\x47\x1e\x83\x6f\xe4\xc2\x25\x17\xef\xae\xa5\x8b\xeb\x74\x83\xe0\x52\xc9\x26\xbe\x3c\x15\x36\xa7\x74\xae\x1e\x3e\xc3\xd2\xd7\x6e\x7b\xd0\xe3\xde\x31\x9d\xcb\xb3\x10\x23\x95\xd4\x0f\x46\xfc\x68\x44\xe3\xeb\xab\xd2\x1c\x5f\x5f\xcf\xcf\x3d\x0c\x4f\x22\x8a\x1d\x7a\xe9\x85\xd1\x23\xce\xa5\x22\x2b\x03\x27\x8e\xf6\x90\xa9\x13\x25\xc7\x3c\x63\x19\x5b\x82\xff\x30\x91\x75\xdf\xb7\x61\x35\x16\xa3\xc8\xb4\x48\x08\xa1\x45\x13\x12\x95\x0c\xec\x4e\x97\xd4\x31\x17\x5d\x5a\xc4\x26\x75\x89\xc3\x11\x46\x59\x55\xb5\x8e\x56\xea\xe2\xe2\xd1\x48\x5e\x78\xe4\xab\x66\x87\x5c\xbc\xc7\x7c\x82\xf0\xce\x88\x31\x79\xf2\x6e\x54\xa1\x0f\xdd\x41\x46\x68\x85\xeb\x57\x7f\x5a\xe7\xb5\xfd\xf0\xc4\xe4\xe6\xa4\xce\xb3\x45\xd7\x8e\x3f\x0a\xc6\x40\xa3\x67\x42\xb7\x0c\x2a\xb0\xf7\x1e\x25\xd6\x57\x95\x6e\x7a\x0f\x0f\x27\xfe\x0d\xe3\xe1\x4e\x08\xe7\x88\xdf\x07\xbd\xa3\xc3\x8f\x09\x6e\x5b\x65\xa4\x09\x98\x13\xdf\x51\xbb\x82\xfd\xb7\x44\xf8\xda\xb7\x29\x71\x2a\x51\xed\x68\x94\x12\x8e\xda\x87\xa7\x66\x87\x16\x3f\xc6\x05\x55\x4b\xc2\x2b\xdc\x45\xbb\xf1\xb5\xfc\x7b\xf0\xac\xcc\x1b\x3c\x21\xcf\x89\xdd\x63\xe7\xbe\x0a\x03\x41\x75\x17\x7d\x3b\x84\xf1\xb9\xb3\x97\x61\xbe\xb7\x12\x5a\xb4\x83\x80\x3e\xbf\xac\xaf\x70\x15\xf9\x06\x6a\x05\x78\x92\x3a\x38\xa7\x95\x8d\x7f\x07\x77\x38\xd2\x2d\x09\x10\x49\x18\xe4\x99\x7c\x07\x9a\x26\x7e\xc6\x70\xa5\x9a\xaf\xf9\xd2\xf0\x79\x72\xfb\x8b\x86\xa7\x59\xb9\x0c\xdb\x90\xcf\xcd\x24\x6d\x6f\x62\xdc\x87\x5d\x7b\xdd\xf1\xba\x51\x03\xac\x88\x63\x95\x34\xd4\x4d\x19\xe2\x6e\x55\xb6\xd6\xc7\x89\xe5\xd9\x72\xdf\x88\x0f\x57\x30\x4a\xbc\xc7\x7d\xf5\x7d\xd5\x3f\x35\xb6\xa1\x1e\x6d\xb1\x24\xe4\x7e\x00\xfc\xf3\x63\x26\x91\x75\xd5\x11\x64\xf1\xfe\x65\xf5\x19\x11\xd0\xd9\xa3\x1c\x31\xd3\xa1\xa9\x6b\x3a\xef\xe9\x80\x4f\xbf\x9e\x57\x8a\xd6\xf8\xc8\x21\xb4\x75\xe9\xbe\x6e\x07\x05\xbd\x58\x74\x5f\x95\x23\xfd\x5c\x8f\x09\xb4\x35\x5d\xb7\xfe\x5f\x7e\xfe\xe8\x7c\x50\xf0\x90\xac\x68\xc6\x01\x0d\xd2\xf4\x63\x24\x47\xae\xd1\xc7\x86\x2f\xb7\xef\xbd\x62\x47\x06\x2f\x7b\x62\xac\x0d\xce\xe9\x17\x4b\x32\xc2\x43\x66\xf9\xf9\x77\xac\x48\x78\x80\xee\x21\xfe\x60\x3f\x90\x70\xc3\xb1\x75\x59\x49\x7f\xec\x0b\x7b\x73\xd0\x3d\xb6\x7f\x88\x2b\x6f\x11\x73\x44\x6b\xc1\xfe\xd2\xd7\x7b\xf5\x63\x47\xd8\xc4\x68\x6c\x9c\x81\xa8\x3a\x82\xe1\x0b\xc2\xa3\x2f\xcf\xbc\x57\xfe\x2e\x1d\x14\xf3\xd9\xa3\x0d\x66\x52\x25\xa0\x43\x4a\xd8\x9f\xf7\xf8\x6b\xda\x35\x44\xf8\xd2\xfd\x6a\xb8\x91\xb1\xdd\xa4\x78\x47\x70\x0e\xca\x2e\xd3\x00\x36\x51\x6e\x77\xb0\x8b\xee\x93\x93\xe1\x94\xd6\xf9\x95\x8d\xb4\xe8\xba\x79\x7b\xd3\xba\xae\xeb\x6d\x15\x07\x80\xe0\xd7\xe2\x06\xf3\x18\x6f\xe7\x70\x98\xdb\x9c\x2f\x3a\x3c\x88\x62\x57\x8e\x45\xc9\x92\xc0\xb0\xa4\x1e\x3f\x2c\xc5\xc1\x3c\x7e\x50\xcc\xef\x18\x92\xb1\x94\x26\xfb\x5d\xf3\x85\xa6\x24\x31\xe7\x31\xba\x34\x43\x66\x03\x05\xbb\x33\xb8\xcb\xf6\x46\x63\xd3\xb4\x74\x78\x52\x99\x7d\x53\x0d\x3e\x42\x4e\xb4\x2f\x7d\x52\x45\xd8\x99\x35\xb8\xdb\xc3\xdb\x08\x05\xa4\xc1\x4d\x57\xbe\xf7\x52\x08\x93\xa7\x90\xd7\x3d\x2f\xe2\xc0\xb5\xe0\xa5\xac\x5e\xbe\xfd\xde\xa6\x4d\xb8\x01\x65\xb8\x73\x38\x1d\x5e\xe7\xae\x11\xe7\xb5\xbf\xf4\xdb\x86\xf4\x28\xf6\xad\x1f\x27\xc1\xaa\x96\x66\xf8\x8d\x6a\x98\xb9\xa6\x51\x4b\x71\x77\xc3\xde\xbc\xb9\x9d\x37\x5f\x93\xcf\x39\x02\xfd\x8c\x5a\xe0\x35\xa1\x42\x60\xa3\xe2\x84\xf9\x07\x3d\xe3\xc4\x90\xd7\x0d\xda\xa7\xb8\x2d\x7d\x4f\xa3\x02\x2c\xb3\x74\xa2\xdd\xa8\xf1\xdf\xeb\x8c\x6b\x26\xdf\xe2\x70\x74\xc5\x8b\xde\xa3\x9a\x3e\x6e\xee\x20\xa6\x66\xff\x5d\x8a\x7b\xf2\x98\x4c\x69\x8b\x10\x05\xb3\x38\x7c\xdb\xd2\xbb\x8c\x27\xf0\x0f\xd7\x98\xee\x1f\x74\x31\xdd\x29\xfd\xf8\x3b\x35\xe1\xa1\x10\x6a\x7a\xd7\x6e\xd3\x6b\xa2\x68\x1c\xb4\x63\x18\x14\xbf\x2a\xd3\xf7\x87\xb5\x25\x64\x4e\x54\xea\x44\x23\xc8\x4b\xd3\x32\x5b\x79\x5d\xe5\x3b\x79\x7e\x22\x07\xf1\x15\x75\x62\x3c\xd5\xf7\x45\xd3\xf8\x3e\x26\xfd\x3b\xee\xc5\x84\x4e\xbe\xf3\x0d\xf5\xa2\x75\x9f\x54\x0c\xbf\x16\xed\xc5\x11\xb4\xe3\x46\x35\x8e\xbf\x00\xd2\x48\xbb\x27\x61\xd6\xdd\xcb\x2f\xdf\x55\xe1\xbd\x8f\xdf\x32\xbc\x91\x58\xe2\x55\x4a\x22\xf7\x6f\x1b\x5a\x88\xf3\xc7\x4b\x22\x21\xfc\xfe\xf6\x17\x62\x76\x06\x78\x22\xeb\x1c\x16\xb9\xb7\x60\x58\x23\x59\x03\x0e\x21\x83\x47\x01\x9d\xf8\x6f\xcb\x14\x11\x8c\x26\x1e\x0d\xaf\x6d\xfc\xcc\xcb\xc8\xc2\xf6\x50\x86\xdf\x90\xf8\x7d\x88\xfc\xaf\x6f\xf3\x6d\xd9\xca\xb1\x10\x5f\x28\x5c\xf4\xfe\xbe\x73\xc4\xa7\x5d\x80\x58\xec\x2f\x26\xc9\xd2\xcd\x78\xcb\xf2\xab\x98\xf0\x9b\x61\xef\x7c\xb8\xcc\xe0\x43\xfe\xfa\xa0\x9a\x7d\x40\xc7\xc6\xaa\x29\x32\x62\x95\xee\x55\x93\x0f\x36\x94\x80\x38\xe1\xb5\x7e\x5f\xd3\xb7\xbc\x1b\xab\x09\x19\x25\x80\xb6\x12\x9f\x85\xcf\x1d\x7d\xd6\x6d\x94\x40\x74\x87\x9b\xb0\x15\x9d\xdf\x29\x27\xb5\x94\x50\xba\x15\xfe\xae\x2c\x11\xeb\x8c\x5f\x4c\x91\x6e\x25\x7c\x39\xf5\x27\xcf\xa8\xf0\x9f\x48\xbb\x76\x4d\xc9\x29\xd2\x39\x92\xb2\xa4\xe5\x14\x50\x54\xfa\xdc\x59\xbb\xe2\xef\xba\x5d\x3a\x4d\xa3\xce\xeb\x6b\x6d\x08\x03\xf8\x29\x6d\x91\xdc\xda\x44\x1a\x5b\x27\xdc\x38\xf1\xe5\x73\x3f\x12\x19\x06\x27\xf9\x71\xf0\x2f\x01\x32\x2b\xdd\x16\xb1\x89\x5f\x84\x47\x78\xfd\xe3\x83\xcf\xc4\xa7\x48\xa3\xa7\xd5\x4d\x4d\x22\x08\xee\x6a\x56\xf4\x5d\xe4\x37\x12\x24\x0d\x38\x55\xb1\xf9\xf9\x74\xe2\xe3\x89\xe7\xc5\xb6\x51\x79\xf8\x89\x06\x2a\x2c\x92\xa8\x64\x10\xa5\xe5\xe5\xf6\x76\xdb\x4c\xe5\x0d\x46\x5a\xd4\xf9\x82\x8e\xc0\xaf\x45\x78\x50\xcb\xb0\x77\xfe\xf1\x1f\xd9\x26\x8e\xa4\x8f\x7f\xfa\x27\xf3\xf8\xb3\x77\xe5\xb6\x88\x0e\xc8\x7d\xe2\xe5\x0c\x3c\x65\x52\xb5\x10\x3e\x5a\x94\xdf\x24\xdf\xff\xa1\x57\x05\x1e\xda\x6c\x7e\xce\x57\x61\xa2\x92\x92\xe0\x14\xff\x2f\x00\x00\xff\xff\x7c\xbb\x85\x61\xee\xb5\x00\x00") func confLocaleLocale_plPlIniBytes() ([]byte, error) { return bindataRead( @@ -4519,12 +4519,12 @@ func confLocaleLocale_plPlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 46623, mode: os.FileMode(493), modTime: time.Unix(1446027990, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 46574, mode: os.FileMode(493), modTime: time.Unix(1448150144, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_ptBrIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\x4b\x8f\x1c\x47\xb6\xde\xda\x04\xf8\x1f\x72\x78\x41\x53\x02\x9a\x25\x48\xf2\x0b\x82\x4a\x72\xb3\xd9\x7a\x0c\x48\x76\x0f\x9b\xa2\x01\x0b\x42\x29\xba\x32\xba\x3a\x87\x59\x99\xa5\x8c\xcc\x26\x9b\x17\x77\x71\xe1\xad\x7f\x80\xe1\xd5\x15\x66\x71\xa1\x01\xb4\x1a\x78\x33\x4b\xf7\x3f\xf1\x2f\xf1\xf9\xce\x39\xf1\xca\xcc\x6a\x52\x73\xed\x3b\x18\x88\x5d\x19\xef\x13\x27\x4e\x9c\x77\x98\xdd\x6e\x55\x5a\xb7\x5e\x7e\xb7\x2d\x9c\xed\xae\xaa\x9b\x7f\x6e\x8b\xd2\x16\x5f\x57\x7d\x61\x86\xbe\x7d\x78\xd9\xba\x9d\x2d\x4d\xd9\x16\xb6\x30\xdb\x6a\x73\xf3\xf3\x95\xad\x0b\x6a\xd1\x55\x3d\x7d\xdb\x16\x5f\xb7\x77\xef\xdc\xbd\x73\xd9\x6e\xed\xf2\xf4\xe6\xe7\x4d\xd5\x98\xe2\xdb\xa6\x5a\x57\xa6\xbe\x7b\xa7\x34\xee\xf2\xbc\x35\x5d\xb9\x3c\x35\x55\x43\xed\xa8\xe7\x75\xdb\xf4\x5d\x5b\xdb\xbb\x77\xec\x9b\x5d\xdd\x76\x76\x79\xcc\xff\x9a\x8e\x7a\xb1\xf5\x6e\x79\xf8\xc7\xa1\x34\x77\xef\xb8\x6a\xd3\xac\xaa\x66\x79\x4c\xd5\x51\xc6\xbf\xdb\xa1\x5f\x9e\x99\xca\xff\x1c\x76\xcb\x23\x43\x83\x48\x8d\xce\x6e\x2a\xd7\xdb\x6e\xf9\x9c\xff\xe0\x6f\xaf\xed\xb9\xab\x7a\xbb\x3c\xa3\xff\xdc\xbd\x73\x65\x3b\x57\xb5\xcd\xf2\x25\xfd\x7b\xf3\x27\x9a\xf8\xce\x6c\xc2\xb4\xef\xde\xe9\xed\x76\x57\x1b\xaa\xfd\xb4\x2d\x6d\x4d\xc5\xb5\x69\x36\x03\xaa\x7c\x5b\x56\xed\x96\x6a\xac\x3b\x4b\xe5\xab\xc6\xbe\x5e\x1e\x75\x95\xe9\x16\x8b\xc5\xdd\x3b\x03\x01\x6e\xb5\xeb\xda\x8b\xaa\xb6\x2b\xd3\x94\xab\x2d\x56\x75\x6a\x3b\xfa\x50\x10\xe0\x06\x37\xdc\xfc\xdc\x55\x80\x20\x2d\xfe\xa2\xda\x0c\x9d\xb9\xf9\xe7\x9b\xff\x65\x9d\x2c\xc3\x96\xb4\xce\x95\x71\xcb\x97\xed\xfa\xe6\xcf\xc5\xcd\x2f\x00\x28\x3a\x6d\x0c\x01\xf5\x3b\x6d\x4d\xf0\xda\x9a\xaa\x5e\x1e\x3f\xc4\x3f\x98\xba\x73\xaf\x5b\x02\xed\x99\x6d\x2e\x0d\x56\xbf\xea\xaf\x77\x96\x16\x5f\x56\x1b\x5e\xed\xda\xec\xfa\xf5\xa5\x21\x10\xf1\xbf\xe8\xb5\xb3\xbb\x96\xe0\xd1\x76\xd7\x54\x8f\xff\xbc\xf9\x0b\xf7\xdd\x76\x1b\xd3\x54\x6f\x4d\x0f\xf0\x9c\xe8\x0f\x9a\x24\x80\xb4\xad\xba\xae\xed\x96\xc7\x84\x08\xf5\x25\xfd\xa6\xd5\xaf\xd0\xd1\xf2\x59\x7b\xd5\x16\x79\x3f\x28\x23\x2c\xe9\x00\x45\x2a\x36\xc5\x53\xfc\xd0\x8e\x50\x78\xd1\x76\xaf\xa4\xe1\x57\xf4\x17\x10\x62\xda\x01\x4d\x46\x1a\x8f\x27\x62\x1a\xda\x0c\x2e\xfe\xda\x76\xb6\x21\x24\xeb\xd2\x3a\x0c\x51\x53\x6e\x09\x9a\x3b\x43\xe8\x16\xb0\xae\x2d\x0e\xf1\x95\x91\xa2\x6c\x09\x2d\xcc\x7a\xdd\x0e\x4d\xbf\x72\xb6\xef\xab\x66\xe3\x96\x47\xf9\xc6\x14\xa5\x29\xe8\x53\x0f\x3c\xdc\x53\xe5\xee\x9d\xeb\x76\x08\xfb\x4e\xbb\x30\x14\x3b\xde\x72\x2d\x08\xed\xce\x06\xe3\xa6\x1b\xcf\x2b\x75\xab\x0b\x6b\xcb\xe5\x57\xf4\x1f\x40\xe2\x59\xdb\xdf\xfc\x4a\x8b\xa2\xe2\xdd\x50\xd7\x04\xe4\x9f\x06\xeb\x7a\xea\xa2\xad\xe9\x44\xf5\x61\x72\xb6\x38\xa5\xf2\xbb\x77\x2a\xe7\xa8\xc2\xf2\xb4\x6b\xcf\x6b\xc2\x0e\xee\x76\x6d\x9a\x35\x2d\xfd\x88\xff\xc1\x11\xb8\x7b\xe7\x7b\x67\x4d\xb7\xbe\xfc\x01\x8b\xc1\x1f\x84\x9b\xee\xa7\xa1\x72\x8a\xbf\x7b\x91\x02\x38\x98\xe0\x1f\x8f\x16\x06\xa3\x91\xe8\x94\x2c\x8f\x6e\xfe\x42\xf8\xc6\x34\xe0\xfb\xaa\x71\xbd\xa9\x6b\x1a\x47\xff\x5a\x7e\xcb\xff\xfa\xfd\xeb\xab\x9e\x20\x75\xdc\x1b\xc2\x5d\x2c\xa2\x4a\x4a\x8b\x9d\xe9\x4c\x71\xda\x55\x5b\x5b\xd1\x1f\xc7\x6f\xec\x7a\xd0\x66\x65\xbb\x7e\x45\x27\x0c\xc4\x81\xe6\x73\x66\x8b\x2b\x3e\x27\x04\x99\x9b\x9f\x8b\xae\x2d\xe9\xc8\xb5\x45\x4b\x84\x68\x83\x5e\x41\x5d\xb0\xe3\x8f\xb9\xd5\x41\xb1\x6b\xbb\xe2\xc2\x5c\xd1\x7f\x6b\x5b\x99\xa2\x75\xc5\xe7\xa6\xe8\x4d\xb7\xb1\xfd\xf2\xde\xea\x9c\x8e\xf8\xab\x7b\xc5\x65\x67\x2f\x96\xf7\xee\xbb\x7b\x5f\x7c\x3d\x10\xfc\x3f\xff\xc8\x7c\x51\xac\x87\x0a\x74\xcf\xd1\x21\x6c\x7a\x22\x7e\xf4\x1f\x9e\xf5\x96\xc8\x53\x57\xfc\x34\x98\x9a\x76\xa7\xa3\x9d\x25\x40\x16\x0d\xcd\xc6\x14\x3b\xa1\x24\xbf\x03\x4c\x09\xc0\x44\x29\xca\x73\x21\xaf\x3c\x39\xde\xcf\xae\x78\x7a\x7d\xf6\x87\x27\x07\xc5\x69\xeb\xfa\x4d\x67\xf9\x6f\xfa\x0f\xd5\xfe\xb4\x68\x87\xe2\x45\xf5\xf8\x11\x6d\x0a\x35\x14\x70\x4d\x30\xd3\x16\x8f\x68\x6f\x99\x4a\x3f\xc6\xfc\xa4\x2e\x8e\xfe\x8b\x6a\xc7\x4b\x1f\x97\x13\x0d\xef\x97\xdf\xd0\x7f\x26\x5b\x3a\x26\x22\xd4\x13\x13\x9d\x67\x44\xce\xe7\x7a\xa2\x72\xdd\x86\x53\x0f\xd6\x03\xa2\x6f\x96\xc0\xbf\xb5\x84\x79\x95\xdb\xb6\xc5\xb7\xcf\x9e\x9d\x3c\x7e\x44\x80\xd9\xd2\x67\x42\xfc\x3f\xd2\x49\xe3\x4e\xd6\xb4\xc5\x6b\x22\xd0\xb4\x8a\xa1\xbf\xf8\x4f\xab\x8d\x6d\x6c\x67\xea\xd5\xba\x92\xdd\x67\xc0\xd0\xda\x9d\xab\x89\x86\x96\x4c\x87\xdb\xe2\xec\xec\x09\x26\xda\x5f\x12\x4e\xd3\x21\x06\x05\x72\x3f\xd5\x00\xae\x4e\xe5\x84\x3a\xe6\x02\xcc\xd8\x74\x04\xf8\x2b\xfe\xf3\xdc\x4f\x9e\xb7\x71\x06\xc6\xb6\xeb\x56\x44\xf2\xfb\x6b\x6c\x13\x8f\x70\x52\x1c\xc5\xae\x6e\x6f\x5f\x34\x8c\xb5\x34\x4d\x5c\x9c\xc5\x95\x79\x5b\xb5\xda\x67\xd5\x5c\x99\xba\x2a\x69\x03\xc7\xf0\x1c\x75\x99\xf4\x63\xbb\x2d\xf5\x0e\xf4\x4c\xa0\x74\x6f\x71\x8f\x2e\x8d\x7b\x0f\xef\x51\xc7\x4d\xbb\x12\xd2\x86\x1b\xa6\x24\x9c\xa3\x53\xb8\xea\xf4\xa6\x63\xb2\x2d\xd7\x47\x9c\x16\x21\x9e\x39\xaf\x08\x52\x84\xae\x6d\xa1\x55\x5b\x9a\xed\xb6\x58\xe3\xf2\x2a\x86\xad\xe1\xeb\xd8\x60\x46\x26\xa5\x90\x19\x70\x3c\x45\x55\x54\x39\xa4\x1e\x08\x59\x26\x6d\x66\x00\x62\x16\xa0\x0b\x7e\x9b\xe7\xf1\x99\x28\xb9\xa9\x1c\x80\x83\x33\x42\xa4\x99\x38\x92\x0c\x66\x87\x3b\x22\x7e\xb4\xc2\xab\x36\x16\xfa\xad\x3f\x6a\xeb\x96\xce\x14\x2d\xaf\xe1\xda\xa6\x70\x03\x9d\xf1\xf4\xda\x28\x0c\x21\xc4\xef\x84\xca\xad\x52\x34\x42\xed\xe7\xa6\x7a\x8b\x31\x72\xba\x17\xaa\xfa\x61\x5e\xb4\xd8\xad\x16\x27\x38\xd6\xc3\xaf\x6d\xdb\xb7\x32\x77\xe2\x97\x68\xd5\x18\xcf\x99\xfa\x8a\x3e\x82\x22\xd0\x8c\xaa\xce\x4a\x75\x10\xda\x81\x58\x16\x1c\x40\xa6\x6e\xd8\x96\x78\x12\x7d\x59\x44\xea\xc0\x36\x94\xf6\xca\x16\x84\x10\x85\x59\x5b\xe7\x68\x41\x6d\x40\xf8\x4e\xe7\x9f\xce\x8b\x30\xc6\xfa\xfe\x3d\x50\x4b\xe2\x5e\x88\x97\x7a\xdc\x6e\x6f\x7e\x6d\xaa\xd6\x7f\xf0\x83\x7d\xeb\xe8\x80\x9a\x0b\x4b\x98\xf0\xdd\xf3\x27\x4e\x4e\xe3\xba\x6e\x71\xdd\x6e\x8b\x2b\x22\x9b\x67\x67\xdf\xf0\xc1\xbc\x5c\x11\x3d\xed\x71\xfa\x7b\xfe\x18\xbf\xf9\xbe\x9e\xdd\xfc\x75\x6b\x3b\x86\xee\x8e\x6b\x61\x7f\x1c\xdd\x8e\xcc\x5e\x02\x4f\xa8\x99\x12\xef\xc1\x81\x76\x1f\xd0\x0a\xab\x37\x56\x8e\x90\x8c\x0d\xd4\xa5\x1d\x57\xc4\x5d\x0f\x9d\x6b\x75\x0a\x97\x7d\xbf\x4b\xe7\xf0\xcd\x8b\x17\xa7\xc9\xd7\xbd\xb3\xa0\x75\x60\x22\xa6\x30\x8c\x4e\x82\x1a\x55\x47\x93\xf0\xc0\x5a\x08\x7a\x0d\x5d\xbd\x24\x20\xcc\x61\x1e\x15\xcd\x40\x8c\x61\xc6\xe4\x2d\x05\x18\xe6\xf5\x11\xfe\xe3\x68\x3f\x7a\xb3\x3d\xbf\xf9\x05\xe4\x90\x79\x38\x3e\x15\xed\x0e\x87\x76\xef\xb1\x38\xd9\xad\x51\x5c\x39\xe5\xfb\xf6\xdd\x06\x04\x97\x84\x6d\xf7\xcc\xa1\xdb\x12\x3c\x02\xd9\x2f\xce\x9e\x02\x48\xfc\xf1\xa2\x6b\xb7\xcb\xc7\xf6\xdf\x24\x3f\x23\xca\xd9\xa6\x24\xba\xa3\x7d\xf1\xb0\x82\x7c\xc4\xcd\xa1\x84\x96\x6a\x89\x09\x5c\x57\x17\x01\x82\xcf\xbf\x3a\x2a\xfe\xfd\xa7\x9f\x7c\xb2\x28\x4e\x0a\x62\xed\xb6\xa6\x57\x7c\x05\x09\x18\xb6\xda\x09\x91\xcc\xe2\x1e\xce\xf3\xbd\xe2\x73\xfe\xf2\x9f\xed\x1b\x43\xbc\xb6\x5d\xd0\x25\xf1\xc5\x02\x9c\x1d\xf1\x50\x9d\x1e\x8e\x87\x32\x30\x4e\xe5\xd6\xf6\xb8\x7c\x43\x85\xfc\xbe\x1a\xd5\xf1\xfc\xff\x8a\x99\xad\x6e\xbb\xfc\x26\x90\xbf\x23\xf9\xa2\x93\x66\xa6\x53\xa8\xa1\xf4\xbc\x6a\xda\xbe\xba\xb8\x4e\x1a\x3c\xc3\x87\xb0\x4a\x6a\x70\xd4\x76\x9d\xc5\xc9\x01\x1a\x5b\xb0\x77\x04\xf5\xb5\xdd\x7f\x49\x9f\x79\x74\xb7\xc5\xc9\x40\x23\xb9\xb0\x51\xb4\xa5\xed\xc5\x45\x4d\xac\xa9\xdc\x72\x87\x82\xe9\x7c\xd9\x9d\x48\x41\x5e\x83\x30\x7b\x47\xa2\xce\x63\x39\x14\xa0\x76\x47\x8f\x9f\xd1\x85\x8b\xcb\x96\xd0\x6d\x8b\x86\x34\x22\xb1\xa2\xa5\xf0\x4c\x07\x45\x1f\x29\x16\x9f\x1e\xe7\xa9\x13\xdd\x1c\xbb\xb6\xa9\xb0\xce\xb7\x7c\x07\xd5\xed\xda\xd4\xcc\xe2\x80\xeb\xd0\x7b\x85\x78\xf6\x2b\x43\x70\xf0\x63\xd2\xf4\x02\x9a\x7d\xad\x65\xd3\xda\xc9\x3c\xe3\xbd\xe3\xab\x13\x1c\x2e\x5a\xe6\xa1\x08\xd7\x1c\x30\x1f\x13\x30\x2e\x99\xab\x54\xa4\x1a\x10\xce\x08\x19\xe9\x1c\xa1\x04\x1c\x9c\x27\x86\x0e\xb8\xb4\x33\x25\xd6\x92\xcc\x37\xbb\x07\xe3\x9c\x59\x82\xed\xc2\x56\xcf\xd5\xce\x61\xcb\x33\xce\x5a\x01\xb0\x7e\xf0\x03\x21\x4e\x4c\xd0\x5a\xe1\x0a\xdb\xd1\x1d\x48\x64\x98\xb8\x41\xb9\x5e\xf9\x6a\x75\xb8\x4a\x1b\x1e\xd6\xcb\x63\x09\x5a\x7a\xc9\x2c\xaf\xa1\x73\x3a\x39\xef\xaa\x8d\xc1\x4d\x4a\xcc\x84\xe7\x92\x69\x0c\xad\x25\x93\xd9\x3b\x59\xb7\x50\x2e\x94\x04\x43\x95\xa5\x57\x57\x15\x09\xae\xcf\x99\x0b\xa5\xe3\x59\xb7\xc4\xac\x6a\x2f\x44\xb3\xe8\xe6\xac\xc3\xa5\x09\x74\x12\x66\xd6\xcd\x77\xa3\x73\x3c\x53\x38\xc4\xfd\xa1\x09\xd1\x17\x3a\x3a\xb2\x75\x25\xe8\x21\x0d\x46\x9b\x4c\x4c\x3f\xfd\xdf\x77\x7b\x80\x21\x09\x0a\x8c\x12\x1e\x9c\x52\xdf\xb2\xc8\x8f\x9d\x76\x60\x1a\x55\xc0\x5f\x78\xd9\x4e\x25\x2b\x61\xac\x53\xa6\x87\x70\xbd\x0a\xd0\xdf\xcf\xdc\x14\x66\xd3\x76\xe6\x80\x58\x06\x8c\x64\xc0\x9c\xa2\x31\x4b\x1e\x89\xb4\xfe\xc1\xb7\x8f\x97\x1f\x7f\xc8\x00\x26\xb2\x46\x0b\x92\x29\x12\x81\xa1\x4b\x43\xaf\xe2\x19\xbe\x49\xe6\xb8\x87\x2c\xa8\x54\x89\x76\x63\x89\x94\x9b\x25\x8c\x8f\x4d\x98\x83\x11\x07\xa6\xcc\xba\x92\xb9\xf8\xdd\x53\x39\x1c\x56\xae\x21\xed\x72\xbd\x81\x8a\x66\xab\x0d\x31\x06\x5e\x3e\xeb\x94\x4d\xa0\xad\xe8\x57\x9b\xaa\x5f\x5d\x80\xdc\x92\x60\x6a\x6a\xc2\x33\xe2\x37\x50\xc0\x67\x83\xe8\x35\x8b\x5b\x0f\xa8\xd6\x83\xcf\x8a\xfb\x57\x9e\x19\xff\x14\x34\x74\x45\x27\xb8\xaa\x81\xca\x90\x7a\xb1\xef\x7c\x92\x79\x77\xdc\x20\x17\xb1\xb2\xd1\xa9\x60\x76\x41\xf0\x21\xae\x8d\xc8\xf9\xeb\xa6\x6e\x4d\x09\x38\xf9\xb6\xe7\x55\x03\x20\x50\xf1\x05\x2b\x95\x40\xf0\xee\x13\xf2\x3c\xbb\xf9\x6f\x27\x69\xbd\x4d\x7b\x3e\x54\x75\xb9\xc0\x02\x85\xfb\x26\xde\x5b\x31\x25\xdb\x87\x3f\xcd\xf1\xf6\x3c\x43\xe1\x49\xd6\x20\xf4\xbd\x91\xb5\xf9\xbe\x22\xf3\x78\x38\xcf\x73\xdd\xfc\x42\xd2\xec\xd5\xcd\xcf\x38\xa9\xd2\x34\x30\x74\x80\x0b\x21\xd0\xfa\x32\xe3\xe9\x8c\xf0\x1d\x32\x21\x1e\x9e\xba\x48\xb0\xcf\xf4\x74\x1c\xa9\x27\x57\x3c\xfc\x82\xfe\x4b\x60\x36\x57\x56\x6e\xb6\xcd\x64\x7b\xc0\x72\x82\xdc\x65\x6a\x86\x3f\xb5\xf9\x1a\xb2\xc3\x33\x01\xc9\xde\xc3\x22\x50\x19\x2d\xce\x23\x91\x1b\xd6\x38\x08\xcb\x47\x76\xfb\xf0\xaa\x22\xc4\xf8\x5d\x71\x4c\x25\xdb\x96\x35\x1e\x7c\x2f\x3b\xa6\x97\x5e\x64\x5f\xb7\xf5\x25\xf1\x82\xc2\x97\x12\xe3\x57\x5d\x55\x84\x14\x0f\xe9\x9c\xe3\x64\xe1\x4e\x57\xb1\x9b\x79\xa4\xef\xa1\x56\xfc\x81\xa4\x56\xe1\xf9\xdb\xba\x04\x6b\x37\x3a\x1e\xa0\x13\x63\xa5\x98\xaf\xab\xe7\xc0\xbd\xae\x08\xfe\xab\xa0\x8e\x5c\xf1\xe4\xde\xf4\xcb\x17\x1d\xdd\x7e\xcc\x1e\xe0\x27\x63\x46\xd4\x54\x1e\x05\x4d\xe5\xf6\x9a\x31\xc0\x2d\x9f\xda\xc1\x65\xc2\x82\xc3\x31\xac\x09\xe5\xdb\x8e\xef\x66\xad\x97\x55\xa1\x8e\x42\x05\x34\xa0\xde\x48\x42\xa1\xce\x88\x85\x27\x82\x38\x56\x60\x51\xb1\x68\xdc\x74\x38\xd5\xbb\x51\x09\xd3\x5d\xd6\xb4\xbe\x24\x8a\x7a\x9f\xd5\x3d\xa2\x02\x5a\xd0\xce\xb2\xd6\x49\x86\x3f\x86\x32\x77\x18\x89\x2b\x0c\x50\xd5\xb9\xfe\xa0\x5a\x9f\xe5\xf3\x49\x0d\xa2\x77\xd0\x14\x45\x4d\xe7\x4a\x95\x65\xa2\xf1\x2c\x58\x31\xa7\xba\xb1\xc0\x71\x5d\xda\x1d\xd8\xb3\xad\xdb\x2c\x7f\x4f\xd8\xd2\xd3\x21\x0d\xf4\xf7\xcb\x02\x2a\x5c\x2b\x54\x97\x04\x31\xd7\xe2\x1c\xaf\xde\xb3\xed\xef\x69\x64\x0b\xfc\xf0\xcd\xf3\x4b\x5c\x34\xaf\x24\xa6\xe2\x06\x5f\x0f\xc4\xc7\x82\xae\x5f\x31\xe3\x23\x77\xa2\x63\x0c\xe6\x2b\xcd\xb3\x25\x74\xe2\x17\x45\x50\x60\xf0\x75\x03\x76\x57\x86\xec\x5b\xd5\x5c\xe4\xc7\x80\x30\x03\x8a\xe4\x09\xcf\x81\x99\x83\xbc\xc6\xe1\xf5\x14\xa6\xdc\x66\xb8\x9f\x41\xf3\xac\xf0\xb7\x17\x6d\x95\x4e\xc9\xf0\x75\xbd\xb5\xdb\x73\xf4\x68\x97\x4f\xe8\x2f\x5c\x82\xd4\xfa\x69\xb5\xbd\x7b\x87\x98\xeb\x0d\x11\x92\x40\xeb\x8f\x1d\x1d\xab\x75\x45\xa3\x29\x8e\xa3\x82\x9d\x54\xa0\xb3\x66\x44\x5e\xff\x32\xe8\xcc\x89\x22\xbd\x5e\x9e\xea\x65\x09\x8e\x21\x42\x5b\xb5\xe9\x11\xe0\x8b\x70\xcd\x08\xb7\xc4\xdc\x32\xf5\xd7\x7b\xb0\x7f\xb7\x65\x78\xfb\x55\x95\x76\xb4\x7a\x2c\x53\x39\x39\x61\x35\x3e\x3f\xff\xe2\xbe\xfb\xfc\xa3\xf3\x2f\x92\x1b\xe0\x00\x64\x9c\xf8\x6d\xe6\xac\xe8\xe2\x58\x9b\xea\x0d\x4f\x8d\x39\x01\xa2\x4d\x0d\x18\x87\xee\xe6\x2f\x6f\xaa\x2d\xfd\x75\xbf\x2c\x2e\x69\x6e\x5e\x4e\x6d\x21\x49\xe0\x7a\x82\x94\xe9\x41\xbd\x08\x16\x84\x55\xdf\x06\x14\x16\x4c\xc4\xfe\xf2\x30\x82\xc5\x66\xcd\x27\x97\xcf\x8f\xaf\xa8\x3c\x39\x6e\xb1\x80\xeb\xbc\xec\xba\xda\x56\xfd\x14\xe7\x52\x95\x24\x2f\x17\x97\x24\xe4\x9f\x00\x16\x66\x2f\x05\x26\x18\x7f\x3b\xd0\xae\x17\x17\x60\xad\x6e\xfe\x0c\x4d\x76\x82\x91\x84\x43\x9b\x81\xc8\x94\x2d\x3e\x2d\x08\x07\x89\x01\x01\x33\x47\xb4\x62\x35\x34\x0a\x5d\x5b\x0a\xda\x9d\x54\x7c\x1b\xca\xf0\x60\x3e\x87\x8a\x87\xcd\x04\x39\x99\x43\x23\x43\xcb\xe6\xd0\xec\x3e\x08\x3b\xf1\xe1\xa2\x08\x5a\x55\xae\x45\xb8\x61\xcf\x09\x98\xd9\x02\xf2\x7d\x05\x1b\xae\x28\xd4\x59\x5e\x31\xcb\x7b\xc0\x85\x03\x92\x84\x79\x2b\x89\xc1\x3a\x6f\xf9\xec\x99\x73\xda\x51\x56\x81\x00\x8a\x3a\xf7\x23\xa9\x05\xfd\x8c\xec\x64\xe8\x08\x1b\x39\x07\x39\x2f\x0b\x33\xab\xe1\x98\x90\xf4\x96\x30\xbd\xb7\xfb\x57\x4c\xd7\xaa\x56\xa5\x35\xdf\xfc\x53\xd1\xd0\x61\x08\x18\x0f\x2c\xc1\x7c\x30\xad\x7e\xcf\xac\x3e\xe8\xec\x87\xb3\xf3\xea\x6c\x69\x2f\x88\x44\x84\x1b\xd4\x79\x4b\x8c\x4b\x0f\xe2\x73\xad\x26\xd8\xa4\xa7\xd5\x5f\xca\xac\x43\x8f\x68\x84\x01\xd6\xa2\x51\x9f\x82\x9c\x68\x37\x31\xa8\x03\x40\xef\x57\x26\x97\xb2\x07\x6c\x1c\x34\xe8\xc7\xa6\x20\xf6\x93\xc1\x01\xd0\x09\x87\x56\x7d\xdb\xae\xdc\x25\x94\x2b\x27\x7c\xac\xc0\x13\xb3\xee\x56\xab\x8e\x54\x7c\x54\xd8\x76\x7c\xbd\xff\x07\xb9\xae\x01\x99\x1f\xf4\x40\xe1\xf6\xf0\xa7\x29\xc5\x6c\x96\x60\xc7\xa7\x0f\x95\x85\x4d\x7d\x19\x09\x01\x80\x3d\xdd\xd5\x19\xf8\x3a\x39\xfd\x43\xb2\x03\x4a\x9a\x3d\x7f\xe2\x2d\x82\x65\xab\x87\x9f\xd9\xf7\x45\xf1\x88\xb5\x35\x74\x56\x65\xfa\x24\xa3\x60\xfe\xd7\xd6\x2d\xcf\x40\x74\x9b\x76\xf9\x4c\x2c\x4f\x6d\x09\xfd\xc0\x61\x4d\x9d\xaa\x4d\x05\xda\x0e\xaa\xfb\x1d\x01\xe2\x59\xca\xb5\x0f\x81\x6b\xc7\xdd\xfa\x2c\xd5\x64\x76\x99\x96\xf1\x58\xd8\xf2\xb9\x15\x9e\x8e\x38\xfd\xe7\x36\x33\xed\x15\x61\xa1\x67\x67\xdf\xbc\x60\x49\xe3\x99\xaa\x3f\x49\x2e\x24\xf0\xb2\x62\xee\x9b\xbe\xdf\xb9\xef\x54\x9b\x05\x4d\xd4\x19\x3a\xbe\x06\x83\xed\xbf\x8a\x4e\x7e\x43\x1d\xbd\xb0\x66\x9b\xcc\x95\xb8\x53\x42\x99\x1d\xb1\x3e\x87\xc4\x0e\x64\xeb\x83\x3c\xd4\x45\x9b\x1c\x8b\x31\xc7\x89\x84\x31\x63\x6d\x8b\x12\xa4\x65\x4b\xe2\x8f\x09\x1e\x89\x60\x21\xda\xf3\x1f\x09\x1b\xea\x1d\xc9\xbf\x60\xd4\x42\x5d\xa8\x93\xd8\x38\x9d\x6a\xc6\x4d\x7d\x61\x9a\x61\x7b\xf3\x4b\x57\xad\x45\x29\x70\x79\xf3\xeb\x85\x6d\x8a\x0f\x1e\x7e\xc8\x82\xe3\x70\x5e\x83\xbd\x02\x9d\x5b\x7d\x38\xea\xb9\x24\xf2\xf1\xff\xb8\x77\x57\xbd\xf5\xab\x7b\x10\xf4\x5f\x2d\x14\x7f\x06\x7a\xda\xfb\x6e\xf1\x00\x86\x54\xe2\xbf\x63\x45\x19\x5c\x18\xe5\xae\x20\x26\xaf\xe5\x13\xe5\xc0\xf4\xc7\xc9\xa0\xf7\xad\x79\xb3\xbf\x21\x51\xd9\xed\xcd\xcf\x74\x33\xb6\xd3\x86\x42\x2e\x33\xa8\x13\xd5\xd8\x73\x41\x78\x62\x42\xed\xa0\xe9\xd4\x56\xb1\x91\x28\x3a\x55\x0e\xe0\x5a\xcd\x2b\x62\x25\x1a\xad\x79\xdc\xb1\x02\x82\x58\xfc\xe6\x92\x2e\x86\xb2\xfd\x2c\x98\xa0\xe9\x16\x66\xb1\x6a\xcd\x84\x45\xd5\x17\x7a\x1f\xd1\x67\x68\xa4\x4a\x3b\x2c\x12\x4a\x14\x85\x26\xd1\xf4\x8d\x69\x61\x4e\x91\x58\x02\x24\x7e\x00\x2a\x31\xd6\xb8\x44\xfb\xf9\xea\x9c\x2e\x95\x55\x6f\x5e\xd9\x66\x72\x44\x8b\x3f\xd2\x6d\x0d\x06\x05\x12\xbe\x52\x51\x92\xf3\xe6\x9b\x8d\x04\xbe\x49\x53\x62\xbf\xf6\xb4\x1c\x1b\x24\x26\x4d\x7b\x3a\x7c\x7b\xdb\xca\x41\x9c\x36\x92\xad\xe5\x06\xb4\xd6\x72\x8e\x90\x84\x46\x83\x93\x36\x55\x5d\xdb\x0d\x54\xce\x7e\x40\xda\x8e\x26\x1f\x07\x48\x05\x55\x75\x72\x1a\x12\x03\x55\x55\x32\x2b\x12\x80\x1b\xf6\x2b\x6e\x70\x2a\x96\xc9\x16\x69\x99\x70\x31\x10\x09\xe9\x47\xb9\xca\x44\x6b\x9e\x4b\xe4\xc8\xd7\xb6\xeb\xe5\x16\x00\x23\x8a\xcb\xa0\x6a\x40\x6f\x71\xf9\xe9\x84\x47\xdb\xa1\x52\xbb\xd7\x63\x4e\x46\x21\x34\x85\x28\x9e\x0d\x93\x71\x9d\x36\xe9\x99\xb8\x3b\xba\xfa\x6c\xaf\x5e\x1b\x89\x5a\xa0\x9d\xeb\x3b\xdc\x44\xfb\x7a\xf6\xb8\x1a\x05\x61\xa6\xe3\xb4\x9a\x4c\xe5\xe0\x5d\x49\x80\xfb\xf6\x0d\x91\xcf\x54\x61\x20\x00\x00\xc5\x11\x5d\x05\xca\xb1\xd2\x9a\xf8\x75\x88\x93\xb2\xc2\xb4\x85\x61\x1a\x04\x1b\x15\xf4\xd0\xa2\x5e\xb8\xf9\x6b\xdd\x83\x50\x40\xce\xa0\xd3\xda\x84\x6d\x17\xf5\x71\x5c\x35\x09\x48\x8f\x41\x63\x70\x9d\x30\x63\xd7\x0e\x2c\xbf\xa4\x75\xf8\x9c\x79\x20\xc0\x0c\xf4\xca\x5e\xa7\x62\x98\xf2\x9b\xce\x6e\x86\x0a\x1a\x01\x81\xc9\x9a\x15\x15\xcc\x00\xf8\xbb\xea\x33\x96\x65\x07\xd1\x81\x72\xad\xeb\xd0\x1f\x1b\xce\xe3\x75\x11\xfb\xc8\x7a\x38\x28\xb6\xac\x5d\x74\xc3\x96\x87\x02\xa4\x03\x7b\x64\xf6\x48\x1a\xbe\xfd\x0e\xbc\x40\xd4\x81\x43\x00\xf6\x1a\x96\xc3\xa8\xce\x54\x71\xc6\x90\x28\x3e\x88\x12\x84\xa8\x7e\x4f\x27\x0a\x90\x17\x7f\x98\x33\xcf\xd5\x14\x86\x78\x0a\xc3\xa2\xac\x42\xac\x34\xe5\x04\x69\x3d\xdb\xde\xab\x6d\xca\xbe\x59\xd7\x74\x4b\xe2\xe0\xd0\xcd\xd9\xb8\x0b\xdb\xdd\xfc\xfa\xb0\x36\x41\x37\xb9\xf0\x23\x42\x14\x80\x17\xcc\x78\xc0\x0b\xf3\x16\x6c\x5e\x3f\x25\x3a\x7e\x2c\xb9\x9b\x8c\x8c\xc2\x03\x4e\x86\x00\x32\x8d\x16\x06\x9d\xce\xd8\xaa\x1a\x56\x68\xde\x67\x8d\x3c\xee\xfb\x2c\x30\x05\xaa\x98\x83\x30\xf6\x68\x17\x64\x70\x5c\x4a\xce\x88\x85\x8f\xae\xec\xcd\xd0\xb8\xa8\x87\xce\x06\xa6\x23\x70\xf3\xe7\x87\x35\x74\x01\xf4\x61\xd7\x56\x84\x2b\x3b\x03\xdd\x3a\xc9\x2b\x81\x68\x10\x21\x66\xb7\x90\x15\x09\xde\xcd\xfa\x32\x3b\x87\xf2\xa9\x10\xab\x7a\x5f\x35\xe3\x63\x48\x0c\x21\x66\x0b\xc5\xc9\xa5\x69\x36\x76\xa5\xf6\x13\xe6\x18\x41\x5b\xc0\xcd\x7a\x43\xc8\xb6\xf0\x16\x13\xd8\xbf\x42\x93\xf5\xe0\x88\xba\x8f\x5a\x26\xed\x9a\x39\x3f\xa2\x3f\xb6\xc4\x54\xb4\x0d\x34\xb9\xeb\x8e\xd6\x3a\xb0\x2e\x6d\x9b\x78\xf5\x54\x76\xa2\xe6\x61\x9e\xbb\xea\xaf\x59\xcc\xad\x78\xdf\x4e\x6f\xfe\x7a\x0e\x6b\x27\x14\x09\x75\xdd\xbe\xb6\x1d\xf1\xc0\x38\xb9\xc4\xc1\xb1\xa3\x1a\xcd\xa0\x63\x9d\x23\x9d\x22\xea\xd6\xd7\x83\x2e\x91\xeb\x29\x13\x0d\x2a\xb5\xe0\xbb\x01\x6c\x7a\x77\x45\x4d\xfc\x1d\x93\x5c\xbc\x0f\xee\xbb\x07\x23\x61\xc2\xdf\x51\xb1\x83\x9d\xe9\x09\x04\x8d\x48\x7b\x3c\xa7\x92\xd9\x71\x6c\x7c\xb8\x8e\xd0\x0e\x9c\x96\xda\x84\xa4\x67\x16\x75\xda\xc9\xb0\x0b\x75\x86\x12\xc7\x2c\xda\x2b\xef\xbc\x75\xaa\x8e\x5b\x63\x0d\xbb\x12\x21\xb7\x3c\x02\xa1\x70\x6a\xf0\x66\xfd\xd5\x92\xd5\x02\xf4\x09\xbf\x2a\xf1\x5b\x10\x6b\x31\x51\xbc\x65\xb4\x1c\x3b\x3e\x50\x6e\x39\xd6\xf2\x95\xb6\xb6\x3d\x44\x3f\x51\x5d\xa8\x92\x81\xc0\xbd\xfc\xae\x2a\x31\xcf\x1d\x78\xcc\xf5\x2a\x9f\xa2\xdf\xa6\x36\xcc\x5d\xac\x20\x67\x63\x59\x49\x79\x71\x40\x8a\xfb\x81\x57\x80\x63\xcb\x05\xc3\xd9\x1b\xb2\xd4\x87\xa9\xc9\xac\x9d\x9d\xad\x0d\x1b\x9f\x71\xc6\xfe\x49\x08\xcc\x41\x61\x63\xf5\x96\xa0\xaf\x75\xe9\x06\x79\x6d\xcf\x8b\x0b\x0b\x6d\x86\xa1\x53\x7d\x75\xf3\x8b\x4b\x94\x65\x17\xf0\x63\x8b\x56\x8d\x23\xd1\xd5\xb4\x63\xc7\x4c\x18\x21\xd9\x76\xf7\x04\xd6\xc8\x28\x5d\x0c\xbb\x12\xa2\xa1\x07\xc2\x61\x2f\x36\x2a\x6c\xb8\xdf\xb3\xbc\x4a\x90\xf8\x4e\xf8\xe4\x88\x47\x1e\xf3\x40\x46\xdb\x8e\x44\xc0\x70\xfa\x82\xc3\xe5\x44\xbf\x2c\x52\x1f\xd0\x7b\x54\xd5\xab\x81\x8e\x61\xf3\x33\x5c\x4b\xe9\x13\x1c\x03\x00\x6c\xd8\x57\xab\xe6\x95\xf3\x56\xb6\x20\xf7\x8a\x5e\x8d\xf0\x70\x60\x2b\x11\xfe\x80\x5c\x39\xe3\xbc\xe7\x4d\x83\x19\x71\x88\x26\xc4\x43\xa1\x0d\x47\x5c\xcc\xcb\x9b\x6f\xe2\x35\x02\xda\xd2\x8e\xfd\x2c\x4c\x71\x3e\xb8\xb5\x81\x34\x11\x0d\xbc\xeb\xcb\xb6\x75\xaa\x04\x96\x81\x8f\x59\x83\x6f\xbc\xaa\xa7\xf0\x35\x75\x17\x3c\xed\x0a\xfb\xb4\x1e\x99\x19\xac\x4e\x18\x2d\x20\x89\x12\x1b\xa5\xf3\xe3\x53\xbe\xaa\xb6\x70\xb7\x3d\x09\x6e\x5c\x5e\x75\x98\x4a\x21\x5c\x67\x2b\x2e\x51\xf9\x1a\xa3\xf9\xe9\x19\x6b\x79\x3c\xe5\x4c\x2d\xce\xde\x04\x7e\xf3\xeb\x95\xad\x0f\x12\x22\x74\x29\x90\xb9\xf9\x99\x2e\x8a\xc5\x68\x45\x01\xad\xf4\xc6\x1d\xad\x49\x87\xc9\xd0\xcc\x8c\xd0\x2c\x60\x4f\x20\x32\x4f\x87\xd2\x34\xb0\x7c\x31\x05\x64\x82\xd3\xd6\xe5\xd8\xc7\x81\x61\x29\x7e\xb1\xa1\x84\x75\xf0\xc1\xef\x17\xba\x81\x55\x56\xfe\x58\xd4\x04\xe1\x72\x2b\x0c\xff\x3d\xd1\xf7\x44\xae\xdd\x3b\x75\xf1\xf4\x67\xcc\x61\x8b\xc9\xf4\x03\x48\x7c\x53\xa9\x2f\xc7\x60\xb4\xfa\xe2\xa5\xea\x27\x4b\x55\x2b\x7b\x13\x2f\x2a\x05\x49\x8e\x66\xc8\x70\x62\xc9\xc6\x45\x81\xc6\xa5\x9e\x2d\xea\x03\xac\x75\xa2\x1b\xb0\xcd\x6a\x7b\x45\x8a\x08\x49\xf3\x24\x52\x65\x24\xe2\x3d\xa8\x87\x1d\xad\x7a\x42\x1f\x13\xb2\x08\xeb\xad\x65\x26\x98\x68\xbe\xa7\x7f\xf4\x11\x32\x2b\x31\x2f\xa6\xbb\x5e\x9e\xfa\x8e\xc2\x27\x55\x69\x3d\x56\x8d\x1b\x2d\xb6\x8d\xc3\xf9\x2b\x20\x54\xe2\x8b\x20\x4e\x99\x7e\x82\x20\x1e\x83\x67\x72\x6a\xb5\xb4\xf9\xaa\xa4\x8a\x2c\xef\xb0\x2d\x8e\x95\xbd\xb2\xfb\xf4\xa1\xb2\xc0\x20\x11\xa8\x48\xa1\xab\x4b\xa8\xbe\xf3\xfb\x12\xa8\x95\x6e\x20\x8d\x64\xff\x28\xdf\x98\x60\x7d\x39\x99\x4b\x24\xbf\xc7\xd1\xcc\xa1\x7c\x66\x4e\x79\x7f\x07\xf3\x74\xc9\x78\x2b\x10\x38\x2c\x2b\x1e\xbf\x53\x83\xc2\x9c\x62\x0c\x2d\xc6\xb5\x27\x65\xab\xcc\x62\x01\xad\xfd\x6f\xb7\x52\x80\x8d\xc8\x34\xf2\xb9\x81\xe2\xc8\x1b\x28\x8e\xd5\x40\xe1\xfd\x8e\x67\xed\x14\x07\xde\x50\xd1\x28\xff\x0b\x8e\x39\x38\x10\x64\x33\x59\xa4\xeb\x08\x44\x87\x50\x77\x0a\x93\x04\xc0\x46\x81\x31\xb9\xdb\xc2\x79\x09\x9c\x4c\x3c\x31\x29\x4f\x83\x31\x21\x6d\x45\xa8\xb2\x68\x24\x1c\x10\xe3\x17\xb3\xe1\x4a\x80\xeb\xca\x89\xa5\x78\x1d\xba\x08\x3a\xf6\x39\xe4\x39\x02\xe2\xd3\x8c\x50\x26\x2d\xd4\xdd\x55\xe4\x9e\xc0\x57\x0c\xea\xa3\x07\x36\x9e\xca\xd8\x1e\xbc\x8d\x5e\x8f\x6e\xc6\xa8\x79\xc0\xfa\xfd\x5a\x25\x7f\xba\x1a\xd8\xc9\x00\x7f\x46\x61\x9b\x08\x1c\x54\x52\xa0\xb4\x84\xe3\x4e\xfd\x18\xf5\x3e\xfc\x1c\xc6\xa2\x66\xf3\x45\x62\x0f\x33\x08\x40\xf9\xf2\xf3\x8f\xb4\x44\x9d\xc7\x40\x0e\x30\x0f\x62\x75\xd5\xf5\xe6\x73\x93\xf8\x8d\x6f\x6c\xe7\xa1\xc6\x00\x61\x17\x72\xa8\x40\xda\x7a\x50\x90\x66\xf5\x77\xde\x67\x1f\xe0\x82\xe4\x02\xa8\x69\xbb\x45\x3c\x1a\xf9\xa6\x1c\x45\xed\xae\x6e\x68\xa2\x00\xfa\x6e\x1b\x04\x5a\xe5\xe5\xb9\x4f\x02\x9e\x55\x5f\x31\x56\x18\xde\xfc\xb5\x14\x15\x94\x1a\xab\xb6\x04\xec\x76\x11\x3b\x64\xc6\x26\x74\xc8\x14\x6f\xdc\x2d\xb7\x66\xc9\x67\x3c\x02\x38\x6e\xea\xcb\xf7\x13\x94\x58\x47\x82\x4d\xf8\xae\x7e\x01\xcc\xf5\xf0\x64\x02\xf6\x25\x37\x0a\xdf\x56\xa3\x51\x99\xb3\xcf\xb0\xdd\x8c\xe8\x89\x12\x54\x51\x43\x28\x39\xf5\xcb\x9a\x23\xa8\x7e\x88\x72\x04\xd3\xdb\x28\x6b\xde\x66\x4c\x52\xa3\x2b\x1b\xcf\x49\xf9\xbe\xf7\xa1\xa3\x93\xb1\x23\x30\xb2\x01\x53\x7a\x3a\x5e\x3f\xe0\x48\x2b\x3c\x8c\xd4\x00\x82\x20\x6b\x88\x78\x43\x6f\xfe\x27\xb4\x3f\xf0\x99\x79\xab\xd7\x9c\xdd\x8a\x63\xb9\x97\x07\x9f\xa9\x71\xcc\x04\xb9\x10\xa6\x40\xf6\xae\xe4\x0d\xea\xc1\x12\x49\xbc\x18\x4b\xde\x26\x55\x5b\xff\x47\xe2\xac\xe0\x2e\xd6\xb7\xaf\x08\x27\x93\xba\x6c\xa0\xe3\xaf\x5e\x66\x67\xbf\xc5\x99\xa6\x91\x5e\x89\x90\x95\x50\xab\x4c\xdc\x2a\x0e\x03\xb9\x09\x0e\x05\xb7\x90\x29\x69\xeb\xa4\xed\x02\x3e\xa3\xc0\xaf\x40\x77\xea\x6a\xa3\xf7\x40\x24\x1a\xde\x0e\xaa\x94\x03\x0c\x61\x73\x4e\x42\x2e\x14\x5c\x57\x74\x85\x0f\xcc\x9e\xcb\xb7\x74\xaf\x58\x1b\x23\x33\xf2\x26\x7e\xad\x5e\x9a\x94\x20\x1b\x6e\xb1\x62\xa8\x24\xcb\x7c\x81\xdf\xcc\xc2\x1c\x0a\xd9\x3b\x15\xe5\x94\xf7\xa2\x57\x97\x8c\xd0\xcc\xdf\x96\xdc\x4e\x41\xef\x04\x14\xda\xd5\x86\x65\x17\xf1\xa2\x94\xa5\x61\x91\xe2\x68\x17\xe4\x6e\x2f\xa0\x60\x4c\x16\x06\x0e\x4f\xbf\xf5\x2e\xf9\x0b\x61\x3e\x65\x57\xb9\xe7\x53\x76\x9a\x20\xf0\x35\xbd\xba\x9a\xea\xee\x66\xbe\x71\x6a\x97\x67\xa3\x6b\x2a\xf7\x48\x47\x99\x8b\xbf\xce\x3e\x2c\x31\x5d\xde\x6c\x99\x40\xdc\x3a\x89\x24\x93\xc1\x41\xb9\x65\x64\x59\x72\x76\x38\x8a\xa3\x4c\xa5\xcc\x48\xb1\xf3\x26\xdd\x66\xae\x13\xd5\x0a\xaa\x1b\x44\x31\x0a\xae\xc0\x3a\x45\xa7\x14\xb9\xec\x48\x81\x64\xfe\x4a\x35\x38\xda\x2c\xec\xf5\x1e\xce\xee\xc5\xfc\xe8\x7b\xda\xce\xb3\x7c\xfb\x56\xf0\x2e\x1a\x85\xa8\x99\xa0\xaf\xb8\x85\x44\xa5\x8b\x4b\x18\xbd\x3d\x53\x67\xec\x0f\x83\x66\x7b\xc1\x4a\x1c\xa8\xa9\xe0\xa2\xa2\x02\x90\x09\x22\x23\x5f\xf2\x71\x42\xce\x7b\xcf\xf3\xe9\xd1\x39\x78\xc3\xb2\x57\x9f\x24\x7e\x1a\x5a\x43\x45\xf3\xc3\x54\x59\x51\x4a\x6d\x02\x46\xc0\x47\xe6\x44\x4c\x83\xed\xe3\x3d\x84\x9e\xc3\xb3\x04\xec\x62\x78\x7a\xf2\xf8\xf8\xf9\xcd\x3f\x46\x6e\x00\x67\x86\x80\xc3\x1a\x8f\xdf\x45\x27\xcc\xd1\xc4\xa2\x2b\x26\xa6\xe8\x03\xd9\xb2\x3a\xea\x23\x1a\xca\x93\x98\xc3\x51\xc5\x48\xd9\x94\xbc\xf0\x86\xca\x6a\xca\x99\x25\x84\x63\xde\x65\xfb\x77\xf7\xce\xf7\xe0\x9d\x7e\x20\x31\x93\x6d\x05\x8f\xdb\xa6\x4d\x4c\x5e\xe1\x34\xce\x04\xc3\xa4\x31\x37\xa8\xe6\xc4\xff\x21\x75\x72\x3b\x6f\x1b\x75\xdc\xde\xc1\xc1\xb8\x01\x6f\xb6\xa5\xed\xef\xaa\xb7\x88\x19\xae\x20\x3f\xdd\xfc\xb5\x81\x41\x75\x01\x57\x36\xc7\x3e\xe8\x74\xe7\xbc\xd4\x3f\x71\xdd\x68\x01\xbe\xfb\xe1\xf8\xf2\x10\xa3\x65\x66\xf1\xf9\xdc\xed\x4c\x53\xac\xe9\x76\x73\xcb\x7b\x03\x50\xad\x2c\xe0\xc4\x77\xef\x0b\xc8\x58\x57\x44\x00\x68\xcf\xa8\xca\x17\xd3\x3e\x11\x84\xba\x66\xc5\x24\xfb\x78\x79\x17\x2f\xfa\x4a\xac\xf5\x10\x0f\x88\x77\x24\x4b\x97\x29\x17\x3a\xd1\xeb\xed\x2d\x33\x38\x95\x09\xb8\x99\x19\x20\xfe\xd5\x2f\xed\x83\xc3\x4c\x6b\x54\x32\x23\x75\x65\x6a\x9a\x0b\x47\xa6\x88\x1a\x29\xce\x07\x6d\xdd\x87\xac\x22\x7d\x25\x8a\x79\x8e\xa1\x1d\xef\x18\x17\x73\x9c\x87\x86\xd8\xea\xa7\x09\x68\x83\x32\x95\x18\x5b\x56\x87\xe8\x74\x3a\xf1\x07\x0f\xbb\x22\x4e\x62\x39\xf8\xd1\x63\x62\x33\x65\x14\x7d\xcc\x61\xe1\x8a\xec\xfc\x19\x01\xd4\xcb\x27\x95\x44\x51\x6f\x93\x8f\x31\x9a\xb3\xb6\x60\x56\xac\xd7\xf8\xb8\x62\xb1\xa9\xfa\x6a\xd3\xb4\x1d\xf4\x82\x15\x71\x1f\xce\x52\x17\xf4\x2f\x51\x8a\xf0\x65\xda\x1e\xda\x1e\x1f\xfb\x67\x8b\x3a\x34\xe8\x2c\x6d\x32\xfc\xe9\x2a\xf3\x70\x6b\xfd\xef\xd9\xf6\x5b\x0e\xfb\xe6\xe6\xbe\x36\xbc\x1d\x56\x24\xbd\xf7\x4b\x0d\x6a\x67\x12\xc5\xe4\x76\x64\x7f\xdc\x32\x49\xf5\x8b\x70\xda\x2f\xdf\xad\x56\x7b\x0e\x5e\x95\xbc\x77\xe2\x4e\x99\x6f\x5d\x69\x2f\xcc\x50\x7b\x0b\xc4\xf2\x91\x58\x1d\x54\xb7\xed\x23\xb1\x69\x3e\xb4\x4b\x84\x27\x34\x27\xf9\x43\xe4\x41\xf1\x13\x2d\x3e\x80\xcc\xf9\xe1\x3b\x75\xf1\xd9\xf4\xff\x75\xf5\xf1\xe9\xd0\x0b\x09\x85\x86\x1e\x70\xe8\x2f\x53\xb7\xc4\xc3\xdc\xd1\x44\xa3\xca\xd3\x48\x57\x9b\x45\x97\xa7\x15\x32\xe2\x91\xad\x54\x95\x3c\xa3\xd3\x8b\x63\x5b\x9c\xd7\x83\x25\xea\x61\x05\x8e\xe1\xec\xfa\x7e\x79\xd3\x78\xc0\xf1\xae\x69\x8d\x05\x02\xc0\x88\x6a\x97\x65\x87\x9b\x31\x33\xc8\x1f\xa1\x68\x4f\x4d\x39\x3c\x1c\x51\x16\xa1\xbf\x0d\x61\x65\x21\x92\xec\xec\xa3\xaf\xbf\x7d\x01\x99\x72\xd8\xc6\x88\xd7\x34\xc4\x50\x62\x79\x16\x71\x18\x6f\x9c\xe5\xef\x79\xf0\x23\x7f\x0a\x6e\xdd\xed\x41\x6a\xcf\x4a\x3d\xcc\x68\xac\x2c\x86\x51\x68\x09\x6d\x17\x13\x18\xa5\x02\x91\xc6\x70\x3c\x19\x21\xff\xc5\x24\x1a\x55\xa2\x32\x2e\x34\xe8\x7f\x4c\x4e\xc0\x93\x42\xac\xa4\x11\xe9\xfe\xe7\x7b\x75\x77\xbd\x82\xee\x9c\xae\x52\x30\x6a\xc9\x97\xc0\x7b\x70\x49\xd9\xa6\xb5\xd5\x17\xe5\x14\x70\xe5\x63\xfd\x7f\xfe\xfb\xff\x78\x78\x84\x05\x1d\xf5\x5d\x4d\x7f\xa9\x26\x46\xbb\x24\x32\xf1\x0a\xfe\xa1\x68\xaf\x03\x79\x55\xfd\xcd\xcf\x74\x56\x31\xd5\x60\xaa\x64\x37\x4d\x1e\xab\xb2\xa5\x1f\x3c\xe5\x6c\xd0\x21\xf6\xd5\x87\x48\x8f\x54\x0a\xaa\x18\xf1\x61\x82\x5f\x16\xb8\xf9\x58\x39\x7b\x6b\x44\x3a\xe7\xc3\x80\x5a\xe0\x77\x90\x37\x5e\xb3\x53\xcc\x63\x5b\xbd\x11\xe7\xe0\x93\x73\x9c\x6c\x4e\x75\x21\x31\x06\xe1\xf7\x00\x1f\x7d\x24\xc3\x20\x16\xcc\xaa\x1e\x8b\x0d\x77\xfc\x39\xb5\xe3\x75\xaf\xf8\xa6\xe0\x93\xa8\xa4\xdc\x0b\x82\x19\x49\x27\xda\x46\xe0\x82\x4d\xd0\x2e\x11\x27\x5f\x3c\xbf\xf9\x79\x57\x95\x61\xdd\xfd\x65\xe5\x94\xb6\xd5\xa2\x9a\x1b\x1f\xbf\xcc\xaf\x9c\x2f\x03\x82\x09\x22\x4a\x94\x1a\x7a\xb3\x42\x86\x1b\x0d\x44\x39\x8d\x38\xd6\xf8\x13\x98\xc7\xe0\x22\x06\x74\x95\x11\x4f\xe9\xf7\x04\xab\x04\x9d\xa1\x0d\x9a\xed\x83\x27\x40\x53\xe6\x30\xe7\x19\x5a\x21\x1a\x12\xf6\x4d\x4b\xc3\x55\xae\x5a\xba\x25\x8b\x2d\xc4\xd0\x1e\x5e\xba\xbf\x03\xe0\xee\xde\xc9\x68\x36\x89\x39\x9d\xb5\xcb\x9b\x7f\xec\xae\xf8\x22\x53\x93\x32\x62\xb7\x7b\xb3\x71\x5a\x8b\xf8\xa8\x7f\x5b\xbc\x30\x08\xbd\x39\xd7\x0f\xa1\x04\xd6\x68\xaa\x28\xa5\xd3\x44\x0f\x48\x10\x41\x1f\xe8\xbf\xc5\x73\x4d\x13\x01\x51\xff\xdc\x42\x73\xde\x43\xce\xe9\x51\x6d\x5b\xd5\x54\x44\x9b\xe3\x96\x4f\x4d\xb7\x96\x78\x85\x2d\x91\x6a\x9c\x1e\xfe\x17\x60\xa8\xad\x71\x54\x83\xd3\xa2\xb0\x75\x92\x4d\x69\x9d\x41\x96\x93\x41\x7f\xd1\xde\x72\x8a\x88\x6f\xe8\x5f\x80\x07\x36\x48\x2e\xe0\xa8\x04\xd4\x45\x50\xc2\x3a\xd4\x67\xae\x94\x0f\x30\xdd\xff\xaf\x12\x26\x95\x4d\x21\x32\xf6\x62\x32\x17\x5f\x30\x4e\x54\x51\xac\xc7\x35\x2e\x20\x8c\x3f\x82\xcd\xaa\x8b\x1f\x71\x87\xd0\xf1\xe7\xab\x23\x7e\xdd\x42\xaa\xdd\xd8\xe5\x53\xe2\x1c\x84\x0f\xf1\x25\x30\xf1\x2c\x1f\x9b\xde\xc4\x4f\x12\x38\xf2\x94\x95\x0c\xc4\x3b\x23\xb5\x85\x2f\x22\xa4\xf5\x45\x90\x3b\x93\xf0\x0b\x24\x84\x61\x51\x74\x17\xb2\x63\xc4\x92\xc5\x74\x5b\x92\xc2\x06\x0c\x11\x95\x13\x2b\xb2\x2d\xac\x56\xc9\x6a\xac\x69\x7b\xba\x95\x76\xf2\xa4\xda\xee\xb0\xe2\xa4\x3c\xec\xb1\x6c\xf1\xb8\xf7\x58\x8c\x11\xb6\x93\x2a\xd2\x7d\xac\x35\x33\x02\xc9\x50\xcd\x6a\x34\x0c\x31\x3b\xe7\x24\x53\xb7\x6e\xd4\x59\xeb\xe0\x9b\x3e\xae\x7b\x61\xd7\x97\x92\x42\x22\xa9\x4c\x57\x2f\xd2\xdf\xc0\xb1\x15\x16\x39\xc7\xb9\x85\x66\xe6\x16\xea\xcd\x4c\x0d\xda\x2b\x5f\xcc\xcc\x88\xe9\xbb\xea\x9c\xb5\x63\xa1\x9e\xd0\x9c\xe5\x19\x47\x49\xa5\xad\x15\xf2\x6c\x4e\x9b\x03\xbd\x94\xaf\x76\x35\x89\xb6\x59\xf4\x51\xac\xce\x19\x54\xb2\x71\xfc\x76\xe6\xa3\x31\x08\x7b\x73\xbe\xbc\x5f\x2a\xe0\x62\x33\xc0\xcc\x97\x4d\x00\x45\x87\x09\x9e\xcc\xd2\xe9\xf1\x78\x92\x69\x29\x31\x66\x2b\xe6\x3b\xfb\x40\xbe\xfd\x2c\x13\x7e\x74\xd2\x76\x1f\xfa\x8c\x8b\x27\xdd\x0b\x2e\xa5\xac\xee\xb8\x6d\xd8\x99\x43\xbf\x29\x73\x55\x36\x15\x55\x49\x7a\x07\x9a\xca\x2e\xfa\x8b\x27\x6f\x12\x38\xc0\xb9\x82\x05\xc2\xd2\x94\x5c\x86\xb4\x0d\xbb\x48\x37\xe7\x5a\x38\xcd\xc2\x44\x8c\xc0\x75\x3b\x24\x93\x75\x10\x84\xc0\xc7\xcc\xb6\x93\xed\x2e\x57\xe7\xd7\xdc\x0c\x37\x58\xd9\x46\x3d\xdb\x6c\x1b\x48\xe8\x04\x2b\x84\xaf\xa2\xcd\x53\xa8\xfd\x08\x74\x88\x16\x99\x6d\xe4\xd8\x19\x9f\x2e\x99\xc6\xcc\xc2\x02\xe5\x0b\xe4\xac\x72\xbd\x10\x26\x96\x59\x67\x6b\x01\x7f\x7d\x2d\xc3\x94\x6d\xbe\x9e\x68\x7c\xc5\xfc\x2d\xb5\x55\x07\xac\xa6\xe4\xe0\x47\x31\xdf\x1c\x77\x49\x68\xcd\xca\xdd\xdf\xd4\x7c\xdb\xba\x1e\xf4\x16\x26\x02\x1e\x7c\xcd\xa1\xc1\xb7\x0f\x17\x1a\xf0\x78\x33\x2d\x70\xfa\x78\xa7\x96\xf7\xbf\xff\xf8\x07\x27\x66\x04\x3e\x85\xbc\x5f\xd1\x32\xf3\xfd\x27\x3f\x10\xcb\x75\xff\xfb\x4f\x7f\xe0\x24\x40\xd3\x0e\x56\x17\xe6\x95\x5d\x6a\x5b\xe9\x0c\x3d\x70\xc3\x50\x7b\xd7\xd9\xab\xaa\x1d\x5c\xc8\x88\x06\x8b\x14\x71\x14\x29\xf1\x79\xd3\xd3\x75\x2e\x96\x42\x1f\x13\x3d\x22\x16\xac\x1e\x9a\xa3\x15\xa5\x96\x29\xad\x88\x9d\x0e\xdb\x95\x82\xc2\x81\x96\x08\x20\xc4\x1f\x2e\xf6\x20\x15\x20\x70\xf5\xcb\x1f\x03\xac\x00\x83\xaa\x04\x04\x68\x49\x9e\xfd\xfc\x3b\xf9\xf5\x05\xaf\x0e\xf0\xf8\x31\x8e\xd5\x06\x4b\x8e\x52\x83\x68\x5d\x82\x34\x35\xb0\x20\x92\x51\x38\xc9\x1f\xf5\x15\x26\xdd\x8d\x8a\x74\x52\x5a\xe5\x48\x26\xc5\x29\x03\xf2\xda\x9d\x65\xd0\x48\xb5\xe7\xd6\x9c\x77\xd5\xa4\x30\xef\x4b\x2b\xb1\x03\xb9\xf4\x3a\x26\xd7\x1e\x79\x8e\x26\xe5\x02\x6b\x80\x49\x21\x0d\xab\xc5\x6f\x84\x93\x4c\x4a\xbb\xa1\x01\x05\x71\x7e\x7b\x3f\xc2\x83\x10\xaf\x7b\x21\xfb\xe6\xdd\x87\x6d\x20\x6e\x6c\xca\xdb\x2a\xa3\xf4\x5b\xbb\x27\xae\x17\x99\xf3\x94\x71\xd2\x8f\xac\x1d\x5b\x8e\x82\x39\x3c\x8a\xb2\x0a\xf1\x34\xf5\x07\x0e\x65\x3e\xce\x90\x24\x0b\x12\x08\x89\xfc\xa7\x61\x85\x90\x4c\x11\xfb\xb6\x15\x5e\x30\x6d\x52\x35\x2b\x1f\x28\xc2\x42\x08\x4b\x62\xf0\x67\xad\xe0\x31\xd1\x69\x92\x2d\xc2\x33\x04\x7d\x9b\x45\x31\x13\x2e\x9a\xd9\x58\xbf\xe2\xb8\xf2\x24\xcd\x81\x47\x81\xec\x68\xdb\xb2\xea\x97\xc7\x65\x95\x6d\xfd\xd8\x0f\xcb\x4f\xd3\x5c\x4d\xf8\x08\xb9\x7b\xfb\x2c\x0c\x67\xc2\x4c\x48\xa5\x75\x5b\xb7\x48\x5a\xd4\xdd\x5a\x07\xfa\x63\x3a\xbd\x76\xc2\x2e\x4a\x85\x78\x02\xf8\x90\x47\x43\xf2\x98\x1f\x93\xea\x73\xcb\x93\x12\x75\x41\x0c\x66\x8a\xac\x30\x8b\x78\x0a\x8e\x4e\x7b\xe6\x3c\x67\xd3\x78\x67\x65\x55\x6b\xab\x05\x23\xe3\x56\x10\xa7\xd6\x57\x9d\x11\x35\x77\x54\x80\xc6\xb5\xb2\xbf\x74\xcd\x4e\x47\x15\xa4\x5b\xb0\x22\xb8\x45\x17\xc5\x1f\x06\x8e\x4c\xf3\xf6\x6e\xaf\xfc\x9e\x9f\x42\x34\xdc\x85\xb1\x6f\x33\xb0\xaa\xd8\x85\xc3\x48\xf8\x44\xa4\x83\x5d\xa2\x58\x7c\x01\x7e\x75\x9c\x1b\x0e\x6a\x47\xb7\xa7\xa6\xac\x39\x54\x67\xe3\x0b\xdd\x71\x5e\xf8\x2b\xbc\x9a\x04\x8d\x0b\x4d\xff\x27\x6a\x03\x17\xfb\x5e\x8c\x3b\x3f\x27\xe9\x6d\x89\xff\x4c\x46\x95\x7f\x97\x6b\x1d\xd0\x97\xeb\x05\xaa\x12\xeb\x57\xf4\x0b\xb3\x39\x57\xc9\x55\xea\x10\x81\xef\xac\x1b\x6a\xba\x4a\x9e\xc1\xca\x60\x1b\xce\xdc\x29\x4a\x41\x5f\x85\x24\x7e\xe2\x64\x58\x81\x22\x23\x31\x0b\x7e\x49\xdb\xc6\xe6\xf9\x10\x9f\xcb\xab\xa5\x7b\x52\x72\x75\xa9\x33\x35\x66\x0c\xa7\xaa\xe2\xd2\x9a\xd2\x47\x69\x57\x9b\x01\x36\x5a\x3f\x04\x3c\xdd\xd3\x5c\x88\xcb\x1f\x7f\x1f\x9c\x0f\xb6\x19\x98\x9c\x8f\xe3\x76\xce\x2a\x58\x39\x11\xd7\x67\xe9\xed\x4e\xe4\xef\x23\xee\xf8\x23\x5c\xf1\xa5\x92\xc2\xbf\xe3\x1f\x4a\x10\x15\x82\x22\x32\x88\x56\x22\x95\xb2\x7d\x05\x3e\xef\xb2\x9d\x3f\x29\xc6\xad\x91\x48\x03\x63\x94\x5e\x5a\x05\xf2\x7e\x8e\x10\x4f\x4f\x72\xf9\x6f\xa6\xfe\xfa\xf5\xd3\xf0\xd5\x77\xbc\xb5\xdd\xc6\xdf\xf0\xd2\x3f\x77\x4d\xd4\xfe\x6f\xee\x9a\x5a\xfe\xbb\x1f\x02\x4a\x92\xa0\xb1\xf2\x34\x94\x0f\xed\x91\xfe\x50\x06\x33\xad\x35\x92\xce\x63\x11\x44\x7c\x3a\x36\x5e\xdd\xad\x5e\x7f\x6d\xa8\xa3\x77\x31\x61\x06\xaf\x27\x89\xed\xc1\x1d\x08\x07\x40\xd8\x3a\x32\x34\x67\x64\x09\x99\xcb\x4c\x6e\xb8\x53\xf8\x2e\x72\x28\x11\xc3\x47\xff\xa0\xcb\x5a\x5d\x5f\x23\xd6\x68\x0d\xd6\xea\x64\xe3\xe0\x80\x4b\x6f\x13\x87\x34\x69\x4d\xac\xab\xa1\xb3\xc1\x36\x5c\xce\x7b\xc8\x3e\xff\x93\x5e\x3a\xc3\xee\x4a\xe7\x9d\x56\x91\x28\x9b\x7f\x62\xbb\x5c\x98\x76\xf4\xb1\x13\x3b\x2f\x94\x6d\x61\x11\x95\x23\xba\x60\xd7\xaf\xe0\x43\x7f\x18\x42\x5b\x42\x5d\x98\x16\x6b\x64\xd9\x95\x70\x87\xe0\xaf\x43\x54\x70\x03\xfd\x66\xa6\x94\x22\x26\x1b\x0e\xfa\x1b\x8e\x6b\x51\x7e\x12\x95\x39\x53\x07\xd2\x70\x44\xaa\x61\x9a\x15\x9b\x35\x18\x42\x69\x16\x1d\xd6\xd3\x2a\x30\x85\x22\x73\x76\x21\x01\x96\x26\xb4\x4b\x81\x90\x76\xc9\x46\x81\xd9\x5e\xa3\x0a\x78\x6f\xd7\x4a\x19\x2e\xd9\xdf\x54\x16\xed\x8f\xb3\xf0\xf3\xac\x7e\xd9\x3f\xda\x4c\x4e\xca\x1e\x09\xae\xec\x44\xe9\xa7\xf6\xbb\xe8\x94\x05\xad\x56\x8e\x55\x39\xbd\x11\x0c\x9b\xa3\x00\x8c\xe0\x43\xa3\xe7\x95\x1b\x31\x5d\x72\xcb\x07\x63\x6f\x81\xfd\x68\xdd\x29\x7b\xaa\x10\x48\x3c\xab\x00\x23\x17\xf3\xbe\x6a\x4e\x26\xcc\x83\xef\x79\x53\x7c\xf0\x77\xf7\xcb\x0f\x81\x27\x72\xd9\x4d\xcc\x51\x21\x1e\x72\xe4\xe8\xc9\x87\x09\x8b\xb2\x1e\xa5\x1c\xa6\xc4\xc0\x11\x8f\x1c\x2a\x44\xb8\x6a\xaa\x3d\x8c\x1a\x2e\x55\x20\x25\x45\x53\xd5\x46\xa6\x78\xdc\xa7\xdf\x18\xd7\x28\x45\x34\x28\x5b\x8e\x06\x4b\x87\x6e\x57\xe5\x40\x28\xc5\x3a\x1c\xc6\x7f\xf3\x76\x3a\x83\x28\x0e\x8c\x3b\x0e\x22\x47\xbe\x1c\xba\xfc\xcf\x71\xf3\x20\x4c\x9e\x78\x58\x59\x98\x1a\x78\x37\xc1\x21\x87\xbd\x11\x02\xdf\xb1\xc8\x7b\x4f\xf5\x4a\x33\x80\x11\x9e\xf0\xc5\xcd\xaf\xfd\x50\xe7\x25\x53\x73\x69\x5a\xe8\x17\x7b\x8a\x85\x16\x1f\xb4\x92\x0a\xb0\xfe\x70\xb4\x34\x6b\xba\xa0\x11\x4b\x0a\x42\xfe\x23\xed\x66\x25\x79\xf9\xa0\xe2\xe7\xf4\x7c\xc1\xe6\x83\x9c\x7d\x62\x6d\xe6\x3c\x48\xec\x2b\xa5\x91\xcb\xa6\xde\xb4\xe2\xaf\xfc\xc0\xd0\xff\x1e\x6e\xb7\x0f\xcb\xf2\xc1\xdc\xea\x13\x47\x10\x51\x07\x05\x37\xbd\xe0\x26\x3f\x21\xb3\x49\x27\x9e\x3b\x8d\x74\x7e\x02\x45\x54\x49\xf6\x8a\xa1\x66\xaf\x4c\x71\x1e\x62\xcf\x5a\xf6\xf3\x52\xd4\x3c\x80\x2b\x6a\xc5\xe8\x2f\x9e\x28\x1a\x3e\xc8\x51\x83\x3e\x05\xc6\xe0\x26\x7b\x39\xe6\xf8\x93\x32\xe5\x85\x75\x9f\x83\xc9\x5e\xb2\xf5\x4c\x26\xba\x07\x1c\xfe\x8a\xdc\x0f\x8b\x79\x2e\x7a\x0a\x90\x79\x06\x9a\xa9\xb3\x8c\xd9\x89\xc9\x07\x1e\x04\xa3\x0b\x88\x5a\xe2\x52\x98\x61\xa8\x0d\x47\x4d\x42\xe1\xe2\x59\xea\x90\x35\xc3\xbb\x04\xfd\x34\xcf\x59\xcf\xcd\xcc\x43\x81\x35\x8a\x7b\xfd\xbf\x6f\x4b\xae\xed\x4b\x16\x92\x27\x93\x00\xba\x9b\x14\x25\x99\x97\x98\x8d\x91\x1f\x7a\xa0\x42\xad\xcb\xb6\x7d\xe5\x96\xff\xc5\x9e\xf3\x1f\x49\xc1\xa6\xea\xa5\xec\x1b\xfc\x57\xb3\xb8\x26\xe5\xc4\x9f\x56\xeb\xfd\x29\xc2\x1f\xdd\xfc\x4c\xe5\x26\xed\xb1\x04\x93\xdf\xad\xde\x42\x99\xfa\x5f\xe9\xc8\x62\xff\x4e\xe9\x5a\xdf\xa4\xf3\x09\x61\x4f\xc5\xc9\x85\xe6\xc9\x0f\x65\x1a\x74\xb2\x3f\x2d\xb9\x2d\x7c\x6c\xcd\x78\x99\x1a\x9e\x81\x6b\x20\x8f\x4d\xea\x6d\x14\x1d\xe8\xbc\x57\xde\xad\x24\x8f\x4d\x9a\x98\xea\x16\x49\xdf\xde\x04\xba\x7c\xa1\x7f\x10\xbe\x9d\xc6\xa0\xcf\x99\x9a\xea\x82\x18\xab\x4f\x5d\x26\xc4\x29\x80\xc3\x8a\x87\x24\x66\x9c\x3f\xe3\xf2\xcb\xe3\x4d\x91\x21\x20\x89\x97\x85\x4d\x9a\xb9\x84\x99\x0c\x7c\x61\x32\x9c\x4b\x9e\x03\xbf\xc1\x10\x3a\x71\x84\xd8\xb5\xec\x04\xc1\x29\xa2\x1b\xf1\x84\x16\x1d\xc2\x8c\x43\x47\xea\xd5\x9c\x06\x03\x58\x8d\x82\x92\xd9\xab\xd3\x73\xc4\x82\x3c\xb4\x8f\x77\x20\x77\x18\x18\x55\xf5\x2f\x30\x88\x67\x6e\x12\x25\xce\x3d\x8c\xa7\xa6\xa6\x7a\x4c\x1a\x96\xc8\x3c\x71\x90\xe6\x50\xa3\x4b\xd8\xbe\x35\x73\x5b\xc8\xa9\x4e\xe9\x00\xae\x3e\x5e\x3e\xd4\x73\x0d\x9c\x20\x0e\xa0\x8c\x19\x86\x35\x1a\xde\xc3\xe8\xa2\x65\xcb\x6c\x12\x8b\x8e\xbc\x6d\xa5\xa8\xf8\xf6\x8f\xf0\x49\x36\x42\x20\x19\x98\x23\x5c\x0e\x67\x87\x52\xd7\xdd\x7c\xef\x3d\x3c\xd4\x1d\xa1\x75\x1a\xbf\xee\x66\x87\x07\xbd\x53\x75\xcc\xb7\x4c\xfc\x24\x00\x1f\x21\xaa\xfd\x88\x21\xf7\x61\x19\xea\xaa\xa7\xd9\xa3\x03\x83\xf6\xd9\x74\xa7\x12\xe8\x49\x50\x74\xe4\xe6\xde\xdf\x6d\x70\x8a\x2c\x19\xcc\xc6\x1d\x8b\x2f\x98\xc4\x2b\x8f\x7c\xfd\x90\x62\x64\x60\xff\x8b\xf1\xf1\x3a\x40\xda\x85\x9a\xc3\x72\x59\xcd\x20\x42\x0a\x93\xb8\x83\x48\xf6\x0f\x32\x1d\x71\x61\x13\x9f\x50\xf0\xdd\x42\x50\x39\x02\xf8\x96\x39\xb3\xe3\x07\xd0\xe9\xcc\xce\x1c\x73\x38\x07\x69\xd0\xea\xc1\xc8\x95\x0d\x9b\xdf\xb7\x5d\x23\xf7\x32\x4d\xd5\xee\x10\xe1\xc2\x49\x03\xcd\xee\xe6\x2f\x30\xbf\x04\x69\xea\x5d\x13\xf8\xe4\xb6\x09\x88\x3f\xde\xcc\xf8\x9d\xb8\x79\x8b\x97\x2a\x71\xca\x5b\xba\xc4\x4d\xcc\x23\x71\xeb\x88\x9f\xca\x88\x57\xa9\xbf\xec\x96\x35\xfd\xa3\x71\x52\x39\x0d\xa4\x78\xe2\x5e\xd7\xce\x50\xc6\x10\xf7\x90\x46\xff\xef\xb9\x27\xa2\x1e\x0b\xc1\x69\x31\x35\xf4\xd8\x63\x0f\xd1\x34\x21\x3e\xd1\x8d\x62\x85\xa6\x27\x49\x74\xbc\xcc\xf5\x8b\xaf\x68\xa8\xb2\x35\xaf\x88\xa3\xf7\xb7\xc2\x57\xe6\x2d\xad\xf9\xc5\xc8\x4f\x66\xda\x9f\x38\x6d\x23\xab\x02\x3c\x0e\xa7\xeb\xe6\xfc\x26\xfe\xca\x98\xc4\x32\x25\xd7\x7e\xea\x72\x3b\xef\x6a\x1b\x2a\x23\x26\x22\xf2\x09\xf0\x0d\x08\xd1\x34\x44\x4b\x78\x6d\x47\x11\xcf\x6f\x69\x98\x70\x76\x4c\xae\x92\xd3\x31\x8a\xc1\x4a\xe7\x2a\xac\xd8\xbe\x8e\xc6\x7d\x78\x44\xcc\xb6\x1a\x29\x41\x2a\xce\xf7\xb0\x92\xf4\x80\x69\x92\x0f\x21\x89\x9a\xce\x63\x92\x69\x86\x93\xb0\x65\x5e\x7d\x79\xa4\x58\x2b\x06\x83\x30\x89\xc5\x68\xfd\xaf\x85\x69\x4a\x60\xa6\x6c\xd4\x98\xbd\x92\x1b\x4c\xf9\x28\x09\x09\xa7\xab\xdc\xf3\x5c\x31\xdc\xcb\x3f\x31\x44\xa4\xe6\x0d\x7c\x09\x25\x2f\xb5\xdd\x86\x50\xcb\x52\xd8\x50\x50\xad\x35\x4b\x92\x05\x89\x24\x4d\xcf\xde\xea\xb0\x2f\xad\xb9\xae\xc4\x25\x14\x7f\x90\x8a\xb1\x24\xa9\x1e\x13\x95\x97\xf0\x44\x96\x04\x6e\x16\xb9\x41\xa6\x82\xf5\xe9\xc9\xd9\x0b\xbd\x0b\xa0\xb5\x44\x05\x1c\x0f\x4e\x85\x1f\x6f\x63\x3a\x3f\x0d\x8d\xd2\x2d\x8a\x33\x53\x9d\x1b\x71\x00\x42\x22\x08\x0e\x0b\xbb\xd5\x85\xab\x60\x6f\x29\xda\x02\x0f\x11\x8d\xf2\x0a\x40\x54\x40\x47\x45\xba\x67\x1e\xa6\xf0\x1e\x57\xf5\xae\xb7\x52\x9f\xc9\x9f\x36\xe2\x6b\x57\x65\x01\xbe\xd9\xb2\xbb\x4f\xd4\xea\xd0\xbe\x06\x87\x1e\x9f\x71\xd1\x6e\x0c\xd2\xbf\x4c\x63\x94\xf6\xce\xc1\xa3\xb4\x1f\x59\x7d\xd3\xc7\x0c\xff\xb8\x83\x85\xd7\xb2\x9c\xa5\xfb\x31\x5b\x8f\x1d\x44\xd4\x53\xc4\xa5\xef\xf2\x84\x3a\x22\x1f\x12\xcf\x6c\xce\x11\x54\x20\x29\x53\x27\xb5\x76\x92\x01\x6d\xa9\x99\xd0\x66\x6a\x9c\xb7\xe5\xf5\xf2\x05\xd2\xc1\xce\xc8\x0a\x19\xa2\xeb\xb3\x0f\xcc\x9e\x5e\x40\x27\xc3\x81\x34\xd0\xa1\x20\x06\x74\x87\xf3\xc9\xd7\xed\x55\xd4\xae\x59\x36\xc4\x44\x3f\x61\xc4\x9d\x73\x67\x9a\x1e\x99\x93\x11\xfb\xd0\x25\xc9\x9a\xa8\x0e\x89\x1c\x10\xd1\xa5\xb1\xc7\xa3\x44\xea\x8b\xe9\x74\xd9\xf8\xe3\xc3\x9f\xb1\xd5\xd8\x1b\x1f\xdc\x2d\x42\x1e\x42\x2c\x0e\x8a\x34\x36\x50\xd4\x55\xdb\x5d\xed\x9d\x65\xcd\x4e\x72\x5f\xb2\x28\xa8\x9e\x87\x69\x03\x3a\x78\xac\xd1\x57\x4e\x25\xe6\x14\x60\x1d\x2f\xc3\x74\x66\x6a\x59\xc8\xc1\x37\x39\x8e\xfb\x3a\x93\x58\xc1\x99\xba\x7a\x15\x6a\x93\x24\xf5\xc0\xa8\x5e\x42\xcf\x54\x70\xbe\x8d\x24\x88\x12\x1d\x84\xc1\xeb\xd0\xd5\x87\x19\x4e\xb9\xba\x2f\xc0\xed\x92\xd0\xbc\xbe\x14\xc9\x8c\xc5\x67\x16\x92\x3d\x11\xaa\x1a\x79\x27\xcd\x65\x11\xf0\xfe\x35\x88\x48\xa2\xe4\x39\xa1\xe4\x01\x05\xe5\xd7\x04\x71\x36\x40\xf8\x4e\x08\x88\x64\xe6\xec\x8a\x0f\x7e\x7f\x76\xf2\xec\x40\xa7\xf9\xe6\xe1\xeb\xd7\xaf\x1f\xa2\xf5\xc3\xa1\xab\x61\xa8\x29\x6d\xa9\xf3\x3e\xc0\x8b\x0b\x5f\xd8\x7e\xfd\xf9\x47\xf4\xef\x87\x8b\x82\x9d\x2a\x72\x2e\xd8\x5f\x0e\xc1\xc4\x63\xd4\x40\xbd\x9f\xa2\x05\xd2\xfe\x35\xbc\x41\xc7\xe4\x4c\x0f\x59\x7c\x4b\x23\xe4\x19\x4c\x2f\x71\x6c\x6d\xee\xce\x9d\xc4\x84\x46\x71\xd9\xae\x3b\x0b\xa7\x20\xfc\x93\x15\xd4\x66\xfd\x6a\x9a\xb6\x23\xe6\x5f\x1c\xd5\x24\x02\xd7\xa4\xaf\x7b\xdc\xfc\xba\x66\x9f\xec\x51\xb5\x60\xa3\x4d\x4a\x78\x3f\x05\x6b\xfe\x20\x3a\x12\xdd\xe0\xe9\x06\x19\xbd\x28\xd5\xc2\xa1\x18\xf7\xe5\xa4\x33\xf6\x5f\x6d\x9b\xfa\x7a\x79\x48\x4c\x2f\x92\x0a\x68\xa7\xba\xa7\x28\xd7\x2d\x5c\x4c\x1a\x73\xce\x52\xfa\xb3\xbb\x66\x03\x9c\x7a\x1a\x33\x08\xbd\x14\x02\xb1\x20\x48\x1f\xd3\x1e\x24\xb3\x07\xfb\x11\xdb\x87\x5b\xeb\x33\x73\xe3\x60\xb3\x69\xd5\x67\x77\x6d\x67\x9a\x26\xa6\xb1\x3d\x85\x02\x2a\x8d\x5e\xc0\x7b\x49\x66\xc3\x86\xcd\x6c\x63\x23\x1c\xd8\x79\x77\x1e\x42\xf2\x78\x16\x51\x59\xfc\xf2\x67\xb0\x9b\x17\xa6\x25\x8f\xaf\xa6\xee\x9d\x7c\x0f\x21\x01\xf1\xd8\xc7\xc3\x1b\x80\xaf\xbc\x07\x5f\xa3\x4c\x2d\x21\xfb\x9a\x19\xc6\x0e\xe4\x84\x69\x89\xbf\xfa\x9e\x71\xb0\x90\x1c\x8a\xd2\x4a\x56\x1c\xe1\xb8\x03\xcb\xe5\x66\x58\xf8\xc0\x62\x05\xba\x35\xbd\xf2\xb5\x6a\x36\x9c\xbf\x69\xa3\x3f\xd5\x8c\xb8\xe2\x3b\xf7\x3a\xc2\x69\xd7\xe2\x9b\x85\x8b\x1c\xd7\x01\x52\x45\x1d\x0b\x03\x80\x34\xe7\xec\xb6\xe5\x46\xbc\x5e\x7e\x62\x67\x88\xac\x1c\xa3\x48\x67\x23\xf3\x98\x39\x67\x9c\xa1\x1a\x47\xc9\xb3\x99\xac\xb7\x3e\x92\xc3\xef\xb2\x64\x73\x9e\x57\x48\xc9\x18\x12\x66\xa9\x01\xa2\xa3\xb2\xc9\x8b\x47\xe3\x63\x7e\x69\x9a\x46\x14\xbe\x99\x06\x8e\x64\xd0\xba\xbd\xce\xb2\x3e\xd1\xfc\x1e\xf3\xd7\xd1\x42\x63\x55\xf1\x20\xf5\x29\x13\x82\xfa\xa9\x5d\xa5\xbd\xc9\x0d\x20\xb6\x3c\xbe\x83\x15\x31\xe8\x7c\xf8\xac\x08\x58\x78\x85\x37\x28\x9b\xc4\xe6\xe3\xda\x8b\xfe\x35\x61\x6c\x26\xa2\xe5\x96\x85\x99\xd9\xcf\xdd\x9d\xd3\x29\xee\xcb\x20\x50\xda\xd1\x3c\x7e\x53\x26\x81\xb4\xf7\x3c\x9d\xc0\x9e\xde\xe7\x12\x0a\x70\x92\xec\x34\xa9\x40\x06\xfb\xbd\xe9\x02\x26\x7d\xbf\x3b\x6d\xc0\x1c\xf4\xe6\x75\xf1\x61\x88\x72\x8c\x0f\x33\x4d\x27\xea\xf9\xbd\x53\x8c\xfa\x7a\x16\x94\x9c\xf3\xba\x5e\x9f\xfa\x62\x46\x3b\xbb\xcf\xcf\xe5\xd6\x19\x85\xc0\x99\xf9\x79\xec\x77\x7b\x29\xab\x8b\x8b\x05\x89\x98\xaf\x1d\x42\xf3\x87\x6e\x2d\x4f\x10\xe8\xe3\x8f\xc5\x57\x2d\xfb\x72\x71\x2d\xb8\x81\x10\xda\xed\x4c\xa5\x1f\xc4\x7c\xbb\x94\x7f\xf4\x1b\x9b\xd8\xf3\x07\x43\xbc\xa5\xbd\x78\x4c\x15\xe4\x80\xc4\x44\x4d\xec\x11\xc2\x2d\xdd\x65\xfb\x7a\x85\xbf\x38\xc1\x80\x5b\x3e\x6d\xf9\x71\x18\x86\x6f\x7f\xf3\xab\x43\x92\x40\x26\xe8\xe8\xc6\xb7\x41\x4d\xd9\x0e\x7f\x3d\x22\x37\x8b\x99\x78\x2f\x44\x75\x1d\x00\xe0\xeb\xa2\x2a\x5b\xa8\x68\x57\x62\x0d\x9b\x96\x5b\xc1\x92\xb4\x82\x07\x1a\x11\xa1\x47\xdf\x3e\xd3\x5f\x1c\x2b\xc1\xa9\xcc\x00\x3e\x75\x9f\x90\x04\xc9\x1c\x83\xb1\x98\x89\xc5\xf0\x45\x12\x32\xc3\x7f\x0b\xbd\x09\xaf\xd8\xfa\x1a\x65\x67\x2e\xfa\xe5\x73\xe3\xd6\x03\x3f\x93\xe8\xbf\xd3\x55\xee\x1b\x6a\x9b\xe2\xb4\xbb\xf9\xe5\xaa\x32\xb1\x0e\xc1\x08\xbb\x70\x8c\xa3\xcc\x5e\xf8\xbe\x80\x2d\x74\x56\xfd\xc7\xfc\x47\x03\x61\x6b\x19\x01\x90\x01\x8e\xdd\x53\x98\x96\xdd\x77\x3e\xdd\x62\xc9\xf8\x7f\x35\x9e\xb1\xe0\xd2\x2a\x7d\x49\x54\x5e\x89\x8a\x55\x7a\xb3\xc9\x73\x89\xd0\x87\xb4\x94\x39\xd4\xc7\x92\x94\x31\x6f\x15\x62\x00\x7d\xca\x32\x6e\x1b\x83\x82\x0e\xc0\x9a\xac\x61\xfa\x45\x11\xd3\x10\x2e\xdf\x6a\xce\x3c\x7e\x72\x68\xb4\x31\xab\x8c\xf2\x62\x3a\x93\x5d\xf0\x9c\xed\x6b\x92\x48\x56\xdb\x32\x21\xc0\x8c\x54\xe9\x1d\xf8\xd4\x74\xaf\xf0\xe8\x8d\xf8\x23\xfa\x0e\x5e\x77\x15\x67\xb5\xe7\x7c\x8e\x5d\xb6\x8d\xfc\x80\xd3\x4b\xff\x54\x53\x37\x1d\x34\x0d\x55\x38\x56\x43\x29\x52\x63\x26\xee\xb9\xb1\x11\x78\x74\x7e\x0b\x86\x3d\x47\xd8\x7d\x6e\xb1\x98\x43\x9b\x69\x6e\x0d\xff\xec\xce\x6e\x8c\x47\x49\x23\x85\xff\x4b\x64\xc1\xa1\xf9\x8a\x4b\x2f\x73\x97\x09\x2e\xf0\xcb\x39\xd0\xf9\x8a\xae\xc6\x88\x5a\x4a\xdf\x73\x92\x08\x7d\xd6\x86\x86\xb7\xcd\xd2\x09\x62\x9b\x98\x7d\x94\xed\x9a\xee\x05\x3f\x9a\x23\xc7\x42\xad\xb7\xd3\xd3\xc1\x32\xb2\x3f\x1f\xe2\x28\x39\xed\xc8\x63\xe1\xca\xd4\x08\x20\xbe\xd6\xc4\xa0\xc1\x19\xad\x1a\xc2\x82\xc2\x0d\xe6\xc3\x5d\xa9\xad\x64\x9e\x6c\xbb\xcd\x0f\x49\xa2\xe8\x51\x44\xc9\xe8\xb1\xe3\x58\x6d\x14\x76\xbf\x81\xaf\x06\xfd\xd9\x66\x19\x25\x45\x0d\xb1\x1e\x44\x67\x26\x91\xf7\x12\x77\xbf\x08\x41\x77\x48\x19\x2b\x1e\x6d\xa3\xb1\x38\x10\x4e\xb8\xcc\x32\x70\xa2\xec\x4e\x65\xdb\x1d\x27\x9f\x64\x43\x3a\x67\xfb\xc5\xc3\xab\x78\xae\x0b\x36\x4e\x78\x8e\x55\x78\x0d\xf7\x90\x50\x8c\x44\x5a\x49\x65\x4d\x3c\x24\x27\x15\x46\x40\x1a\x12\x89\xaa\xda\xd2\x2d\xd5\x6a\xe3\x3f\x67\x19\x4a\x47\x4f\xd5\x24\x61\x82\xe8\x32\x7d\x7b\xe6\x58\x33\xd3\x03\x40\x53\x3f\x8a\x98\xda\xda\xc3\xd5\xd7\xe7\x92\x5b\x1a\x44\x7c\x05\x9f\x86\x30\x66\x61\x6d\x74\x23\x19\x0d\xb7\x1a\xaf\xa1\xf7\xb9\x26\x4f\x96\xa7\x63\xd8\x87\xce\x2d\x92\x81\x7c\x8f\x8f\x45\xa8\xc2\x8b\x73\x2c\x16\xfa\x86\x5f\x6a\x5d\xbd\xf5\x03\xcf\xf0\x07\x56\xdb\x72\x40\x3e\x7c\x7e\x94\x27\x10\xad\x4d\x92\xb1\x59\x5e\x05\xfd\xf2\x9d\x91\xde\xb9\x4e\xf8\x5f\x37\xd4\x3b\x1b\x7b\xf1\x2f\x37\xf9\xef\xcd\x27\x9a\xaa\xf1\x92\xc4\xa2\xe1\xf3\xbe\x0c\xa3\x7b\x4d\xef\x51\x20\xdb\x3f\xd1\xbc\x4d\x12\x97\x3c\x7e\x5b\x6b\x94\x3b\x79\x5f\x8e\xc8\xb1\x31\x9f\x9a\x8d\x6c\xf9\x26\xd8\xf2\x6f\x35\xe5\x9b\x09\xe0\xc7\x73\x1e\xe5\xb5\x3c\xdc\x9f\xd5\x72\x32\xfd\x5b\xb3\xa9\xee\xb3\x82\x8f\x28\xce\x58\x52\x1d\x27\x74\xe1\xa5\xbe\xa3\xcd\xed\x29\x5e\xa6\x50\xf8\x17\xe7\x7a\xd9\x63\x81\xba\x3d\xe9\xcb\x78\xd6\x20\x5b\x33\x99\x5f\xde\xb1\xd6\x40\xec\x66\x52\x71\xff\x8d\xe9\x60\xe6\x2c\x38\x13\x43\x8f\xd3\xe7\x7b\xf9\x80\x9b\x90\xd1\x42\xf2\xdf\x79\x55\xd3\xec\xeb\xc8\x11\x8a\x25\x93\xbc\x29\x25\xd0\x6b\x41\xae\xf1\xf5\x32\xa6\x36\xce\x0b\x3c\x15\x15\x4b\xb1\xb7\xe5\x26\xb5\x3a\x7e\x3f\x66\x79\xba\xa7\x20\x69\x8f\xe6\x93\x51\xd2\x64\x38\xfe\x9b\x1a\xda\x9e\xf2\x85\x15\x3f\x23\x83\xa3\x35\xf5\xf2\x64\x3d\xd4\xcc\x0f\xfb\x02\x91\xe0\x7c\xac\x7d\xfc\x4e\xcc\x03\x07\x8c\x54\xc9\x37\xbd\x43\x7d\x24\x80\x5d\x5b\x79\x0e\xc0\x3f\x19\x35\x49\x96\xed\xbd\x14\xe8\xaa\xe5\xe4\xb4\xca\x22\xb1\x33\xa6\x18\xfe\x94\xd9\xfe\x6c\x32\x08\x5e\xfa\x8a\x97\x34\x32\x59\x71\x9a\x73\x5c\xd2\x0b\x64\x0e\x5f\xe2\x79\x35\xd3\x3d\x74\xd6\x7f\x95\x19\x8b\x96\xdf\x7f\x03\xc7\xa3\x09\xcb\x96\x87\x21\x6f\xe5\x13\x3a\x15\x03\x3a\x9c\x54\x4a\xb2\x6f\x84\xeb\x2a\x24\xcd\xb2\x1c\x8b\x25\xf9\x01\x26\xd9\x75\x08\x89\xcd\xc2\xf7\xc8\x7c\xf0\x74\xdc\x63\xd6\xa9\x9b\xb9\x5a\xd3\x81\x7d\xb2\xa4\xb5\xd9\x99\xb7\x92\xd9\x85\x87\x9d\xcb\x24\x79\xce\xf7\xf8\x16\x49\xfe\x61\xcf\x8e\x1a\x47\x3a\x59\x2e\xcc\x4a\x1f\x61\xcf\x67\x35\x79\xf2\x66\x5a\x77\x0e\x28\xa3\xb9\xc5\x71\x39\x48\xa1\xb0\x73\xcf\xf8\x25\xf3\xf4\x1a\x8d\xee\x21\x6b\x31\x5b\x79\x66\x78\xec\xb6\x21\x53\xf1\x89\x1d\xd2\xe1\x83\x1f\x51\x39\x66\x88\xa0\x76\xdf\x77\x4d\x4b\x39\x9f\x1a\x37\x61\x5d\x70\x8c\x9c\x3c\x0b\x20\xa0\xe9\xdb\x1e\x49\xd4\x46\xc4\x62\x0f\xa5\x88\xb6\x11\x5f\x7d\xaf\x9f\x57\x6c\xa4\xf9\x3a\xc6\xf4\x45\xa6\xe9\x59\x4f\x39\xc9\x6e\xcc\x0f\xfe\xa6\x6b\x5f\x1a\xf8\x2c\x68\xe0\x4a\xb3\xdb\x2a\xef\x17\x4a\x2a\x66\xee\x94\x94\x44\xca\xfa\x34\x18\xeb\xf3\x16\x49\xc7\x73\x17\xc4\xfe\xca\x31\xc7\x62\x86\x56\xfe\x42\xd8\x73\x01\x14\x01\x24\x76\x72\x4c\xe5\xae\x4c\x1c\xc2\x8c\x7f\x5f\x21\xdb\xb8\xc5\xdc\x6c\x92\x90\x2a\x65\x54\x71\x29\x49\x2a\x44\xbd\xa1\x72\x8e\x21\x21\x1f\x63\x6c\x3a\x8e\xbc\x32\x67\xcf\xb5\x49\x96\xb9\xf4\x06\x52\x52\x14\x70\xe2\x33\xef\x20\x96\x3c\x40\x7c\x0b\xd1\xf1\x63\x8c\x28\xcf\x74\x36\xfd\x7b\xcd\xc6\x0a\x81\x4a\x66\xf3\x34\x9b\x4d\xcd\xb3\x19\x13\x99\xf7\x98\x96\x3e\x03\xfc\xfe\xd3\x4a\xec\x41\x87\xb3\x87\x67\x66\x6a\x07\xe9\xcc\x6c\xa4\x31\xb3\xe4\xe5\xbd\xa7\xbe\xff\x35\x8a\x29\x6e\x87\xa3\x13\x1a\xa5\x39\x70\xd3\xc6\xd3\xb6\xea\x6f\xc3\x6e\x9e\xe1\x36\x8e\xdd\x36\x24\xb5\xaa\xfa\xc7\xbb\x82\x4e\xd2\x10\xa5\x4f\x39\xf6\xfc\x40\x74\x99\x90\xda\x34\x4f\x52\xf6\xae\x0c\x14\x49\x0f\xdb\xfc\x29\x93\xef\x79\xc7\x48\xe6\x0f\x2f\xcf\x2e\xe3\xf3\xb2\xeb\xf0\xbc\x2c\x6c\x98\x2e\x3c\x9c\x24\x2f\x46\x30\x2d\x53\x31\x68\xf4\x74\xc4\xad\x2f\x7b\x0c\xfd\xa5\xbc\x94\xc2\xc2\xce\x61\xf2\x6e\x0a\xb7\x15\x2e\x7f\x24\xa1\x20\xed\x0f\xfb\xb5\x91\xd0\x84\xb8\x3a\x36\x64\xe6\xc9\xcf\xf1\x04\x5e\x83\x31\x97\x4f\xe5\x5f\x76\x91\xe3\x14\x30\x9d\xc3\x63\x7c\x1b\x66\xc0\xb0\x74\xa3\x29\x67\xf9\x9b\xa6\x9c\x45\xd6\x4f\xba\x07\x96\x2f\xf0\xdf\xcf\x8a\xfb\xfc\xc2\x45\x00\x0a\x2b\x68\xa1\x44\x11\x64\xf6\x6a\xdc\xb4\x06\xb3\xf8\x5e\x2a\x4c\xdc\xef\x93\x3e\xae\x31\x75\xd6\x0a\x0f\xb4\x10\xfe\x07\x17\xb3\xce\x97\xf3\xe7\xca\xea\x66\x47\x5e\xc1\x24\x8e\x87\x5e\xf2\x87\xa1\x35\x07\x6a\xe1\x9f\xc5\xc2\x9b\x99\x25\xde\xcc\x4c\x5f\x9a\x89\x1f\x73\x9d\x4c\x5a\xe2\x4d\x3c\xea\xd5\x97\x95\x8d\xee\xf7\xa4\x3b\x49\xe6\xc4\x47\x2d\xfd\x6e\x11\x4c\x5d\xe7\x9d\xcc\x8c\xa9\xce\x9c\xe9\x27\x76\xb7\x99\xcc\x2d\xf1\x01\xcd\xbf\xa7\x79\x73\xd3\x12\x17\x5e\x86\xc9\xa7\x25\x2f\x15\xa7\xdf\xae\x54\x8f\x9d\x7e\x23\x30\x55\x1b\x4d\x73\xcb\xd1\xd9\x69\x61\x70\x22\x23\x09\x24\xfd\x1e\xc3\x0c\xd2\xaf\x92\x15\x27\xfd\x42\xf7\xb1\xbd\x30\x62\x89\xcd\x26\x27\x3a\xa9\xb9\xaa\x49\xfa\x51\x7d\x2c\x29\x81\x21\x11\x0c\xbe\xe9\x66\x70\x31\xd7\x33\x9d\x04\x29\x74\xbe\xb2\x3c\x42\xad\x4f\x4e\xcf\x57\xe9\x06\x18\x9c\x24\x54\x2c\xad\x81\x58\x1f\xc4\x9a\x71\xb2\xe1\x96\x13\xe5\x49\xe0\x4f\x71\x82\xf7\x19\xfd\x1b\x6d\x66\xdd\xee\x6a\x09\xae\xba\xad\x6d\xb8\xa2\x25\x3f\x8a\xef\x22\xc9\x54\x2c\x8e\xab\x66\x1b\x23\x37\xc6\xce\xa2\xb1\x7f\xbd\xfb\xab\x66\xfc\xea\xa7\x0b\xb6\xaf\xf0\xf6\xbf\x22\x14\xd5\x45\x55\xf7\x7e\xdd\xa4\xd3\x9d\xed\x66\x34\xd7\x89\x63\xeb\x64\x10\x56\x77\x22\xbf\x54\x75\x65\xb3\x59\x6a\x5e\xdc\xe0\x9c\x35\xbe\xd8\xde\xd5\xd7\x08\xb2\xb7\xf6\xf5\xfe\x10\xc6\x83\xfc\x9b\xb5\x3e\xed\x2d\xbe\xb6\x74\x09\x5b\xc9\x6d\x5d\xc3\x13\xa9\xb9\x6d\xa2\x69\xf3\x30\xc1\x63\x1f\x04\x34\xa2\x3d\x66\xdc\xb5\xb8\xa5\xce\xab\xab\xe2\x18\x44\x08\xae\x9b\xf5\x8a\x9f\x84\x77\x97\x6c\xee\x7e\x6e\xad\x5a\x30\xf0\x96\xb6\x66\xe6\x7c\xb0\xa0\xe2\x8f\x24\x4b\x57\xf5\xd6\xb2\x1d\xd7\x3d\x28\x3e\xa0\xfd\x6e\xf4\xc9\x7a\x25\x94\xc1\x75\x15\x5e\x88\xdb\x40\x87\x5d\xe4\x4e\x49\xa6\x45\x32\xd4\xdb\x26\x31\x83\x3a\x23\x32\xac\xbb\xd0\x59\x65\xda\xf6\xef\x42\xd2\x7b\xe2\x8f\x91\xad\x33\x60\x50\xf0\x02\xc9\xc8\xca\x0c\x0e\x7c\x00\x8f\x52\xe7\x44\xce\x57\xdf\x93\x36\x4d\xee\x38\xd2\xca\xad\xe3\x33\x3f\xfa\xf0\x01\x1b\x2e\xf7\x81\x21\x9d\x68\x74\x3b\xde\x3f\xbf\x24\xd5\xc2\x1c\xae\x7a\x28\x4d\x70\x35\xbb\x51\xa1\x7e\xee\x68\x68\xba\xf7\x11\xaf\xd9\xc1\xa1\xb9\x2b\x9e\x54\x1b\x56\xce\x24\x84\x69\xe8\x60\x29\x5e\x6d\xda\x8e\x58\x4b\xe2\x8a\x96\x5f\xfb\xbf\x1c\x47\x39\x55\x6e\xae\x3a\x5b\x36\xae\x57\x03\x67\x74\xfb\x4e\x98\x5c\x62\x62\x31\xd1\xf0\x58\x4e\x6c\xc5\x6c\x87\x6f\x03\x4d\xf6\x9a\x6d\x1c\xcc\x87\xe4\x2d\x51\x54\x66\xbc\x81\xb6\x6a\xcf\x7b\xf0\x6c\x08\x36\xd7\xba\x27\xe7\x7d\x95\x57\xdd\xb5\x9c\x93\x75\x55\x13\x60\x87\xdd\x0a\x4b\x77\xcb\x67\xff\xfb\xaf\xea\xd4\x86\x34\x0a\xc0\xbf\xe2\x14\x46\xb8\xaa\xcb\x0f\xe8\x68\x76\x79\x6b\x9e\x57\x8c\xfe\xf2\x73\x98\x69\x8f\x4c\x2b\x79\xdb\x27\xd5\xb9\xed\xde\xd1\xd8\x83\xf5\xd2\x9a\x5d\x02\x54\x06\x24\x6e\xb5\x6f\xe8\x7b\x5a\x9f\xeb\xed\x85\x0c\x3c\x82\xa8\xc2\x0c\x84\xd2\x76\x55\x59\xdb\xa4\x8d\xd1\x36\xc4\x60\xbb\xfd\x6d\xd8\x47\x65\xda\x8a\x84\x96\xef\x5c\xbb\xaf\x95\x9a\xef\xca\x69\x3b\x81\xcd\xcc\x1c\xdb\xf3\x3f\xda\x35\x5d\x5e\x27\xf4\x6f\x2f\xde\xb8\x63\x18\x9c\xb7\x6d\x0f\x49\x6a\x07\x6e\x93\x7d\x10\x13\x5c\x3c\xad\x60\x6c\x7e\xe4\xab\x8c\x98\x4d\xaa\x7d\x1b\xf0\xa4\xf1\x14\x7a\x5b\xe4\xa2\xa5\xd1\xba\x61\x4d\x82\x2e\x5d\x34\xd9\x90\xc7\x28\x80\x00\x2c\xbb\x7c\x46\x75\x6f\x6d\x1c\x86\x9e\x69\xa8\x83\xe7\x08\xba\x36\xeb\x4b\xfb\xbe\xc3\x1f\xa1\xf2\xed\xcd\xf7\x4d\x80\x9b\xce\xcd\x40\x5e\x77\x83\x8d\xe5\x7c\x58\xbf\xb2\x3d\x02\xfa\x2e\x57\xec\xb2\x10\x3b\xd3\x27\xf2\xb8\x39\x8b\x86\x8f\xb8\x6e\xf1\x0d\xd5\x2d\x5e\xa0\x6e\x76\x2d\xae\x69\x27\xa0\x8e\xe8\x4d\xba\x17\xf8\xe2\x19\xff\x23\xed\x2b\x9b\x4a\x4b\xcc\x52\xb7\x52\x69\x43\xcf\x2c\x78\xb7\xd0\xc7\x09\x3f\x99\xe2\xcf\xad\x90\x55\x2f\x57\x4d\x77\x16\x89\xc0\xe4\x7a\x5e\x5f\xaf\x61\x6a\xf5\x39\xc1\x9e\xdb\x75\xb5\xae\x91\xae\x52\xe6\x92\x36\x62\xf9\x8a\x1a\x31\x89\x7d\x6c\x1d\x8b\x2b\x85\x7f\xde\xe3\xa5\x7d\x3b\x6d\x22\x84\xd0\xb7\x39\x35\xb4\x83\x85\x52\xc1\xbd\x55\x77\x06\x47\xee\xd6\xba\x7e\x26\x52\xd5\xcf\x40\x9a\x4c\x2a\xeb\xe8\x42\x9f\x98\xcf\x8d\xa1\x4a\xa8\xa9\x92\xb0\x84\xbc\xe8\x3b\x19\x84\x92\xb6\x4e\xa4\x66\xff\x54\x86\x3e\x4c\xdf\x86\x67\xfa\x7c\x63\x7e\xac\xce\x1b\x64\xa2\xd5\xd8\x3f\xb0\x28\x75\x3c\xdf\xee\x3f\x78\xa6\xb3\x14\xef\xd1\x32\xf4\x36\x9b\x02\x4b\x8a\x84\x1f\x1b\xc9\xdf\x52\xa4\x99\x01\x35\x25\xa0\xff\xca\x5e\xbb\xe1\x69\x7a\x96\xaf\xaf\xd5\x1d\x75\xf4\x02\x23\x3b\x7a\xf3\x8b\xf5\xde\xfb\xbf\x4d\xfc\x9a\xe3\x3a\x13\xdf\x53\xff\x36\x40\x0c\xbf\xc7\xd8\x63\x8e\x4d\x9a\x66\x29\xa1\x74\x9d\x2c\x17\x88\x67\x17\x7b\x73\x01\xa1\xf2\x57\x57\x7d\x55\xce\x1c\x2d\x66\xd4\xac\x35\x4b\x72\xab\xcc\x17\x5b\x52\x6f\xed\xed\x29\x3c\x25\xe7\xed\xe4\xf0\x46\x4e\xc2\x09\xe4\x11\x36\x00\x04\x46\xcf\x2e\xcc\x7f\xef\x93\x8f\xfa\xdc\x63\xe9\x81\x71\xab\xa5\x32\xc2\x22\xe0\x8b\x7a\x7f\x64\xb8\x52\xb9\x55\xc4\x8e\xe4\x11\x06\x7d\xee\x8e\xd1\x25\xab\xcc\x18\x93\x54\xe4\x44\x45\x23\xbf\xbe\x39\x7c\x62\x3b\x3b\xe2\x18\x56\xe2\xb3\xbb\xbf\x07\x31\x08\x31\x6e\x5f\x66\xa1\xeb\x73\xe0\x49\x34\xda\xa7\x01\x3c\xd9\x0a\x6f\x33\xc1\x66\x15\xdf\xf1\xdc\x31\x07\x5a\xc6\x7c\x70\xe6\x6f\x78\xef\xb8\x7a\x58\x67\x2a\xb4\x74\xdc\xff\xaf\x8f\x1e\x27\x90\xc8\x1c\x25\x79\x9c\x39\xc5\x35\xbb\x45\xe2\x65\xd7\x05\x07\xe6\xbd\x17\xb1\x9a\xf3\xf1\xc9\x88\x11\xff\x1e\xb9\xd0\xf0\xb7\x91\x19\x43\x3c\x06\x09\xb2\x4c\x84\xde\x9b\x54\x4e\x1f\xf6\xc8\xad\x9f\xf2\x25\x99\x8f\x7c\x98\x18\x58\xe5\x33\xe7\x1b\xb7\xce\x67\x1c\xd7\x77\x82\xa5\x0c\xf1\x10\x2e\xe4\x18\x0f\x9f\xa7\x69\xac\x45\x63\xa9\x14\x64\xcf\x3a\x36\x63\x28\x8e\xa9\x89\x74\x81\x0c\x35\xd9\x1b\x82\xc6\xbb\x12\x6a\x79\x5c\x97\x7c\x48\xf2\xc8\xca\x07\x79\x37\xb5\x0c\xaf\xab\x96\xa1\x64\xce\x37\x2a\x99\x78\xe6\x12\x3f\x3f\x3b\xae\x97\xe9\x8b\xe6\xeb\x4d\xfc\xd6\xe5\xf3\x65\xeb\xfa\xe5\x37\x2d\xb2\x0f\xc9\x07\x44\x8b\x21\xe1\x11\x4e\xa7\x7c\x61\x05\x4f\xd9\x2c\x5f\xea\xeb\x54\xc5\xe3\x67\x59\x51\x78\x1d\x34\x54\xd0\xe7\x40\x67\xea\x78\x8a\x7c\x18\xe5\x72\x26\x07\xf2\x52\x27\x24\xcf\x6e\x6b\xde\xda\x46\x43\x85\x90\xf0\x93\xce\x6d\x6d\x9a\x76\x21\xaf\xfb\xd0\x79\x8a\x69\x19\xc5\x97\x7b\x60\xc1\x11\xc8\x54\xd5\x37\xbf\x6c\xc4\x7e\xa4\xe0\xc5\x85\xcf\x59\xec\x1e\x19\x79\x9d\x69\xa7\x89\xbf\x8b\x32\xbd\xf9\x92\xda\xb4\xd0\xf0\x40\x2f\xbc\x7d\xc3\x5a\x4d\xcf\xe9\x7b\x61\xfc\x06\xb4\x25\x99\x6f\x1f\xa9\x0a\xdb\xd7\xa7\x95\xdd\xd0\xe5\xf5\x5d\x7b\x4e\x68\x37\x5b\x57\x1e\xa0\xf4\x15\xc3\xfb\x93\x5c\x4b\x52\xeb\x49\x4e\xbd\x36\x8f\x47\xd2\x6e\xd8\x88\x33\xa9\x36\xba\x12\xa4\xee\x16\xd7\xc9\xca\x99\xe5\x53\x92\x88\xcb\xe2\xec\xd0\x17\xb8\x6d\xbf\x93\x07\x33\xe6\xb1\xae\x38\x7b\xfa\xe2\x34\xad\x1c\xf0\x67\x52\x12\x11\x29\x2b\x52\xaf\x2f\x8d\xa3\x70\x01\x21\x1d\x27\xee\xea\x7c\x06\xdf\xd9\xca\xb7\xde\xe7\xea\x3e\xd6\xc5\xe7\xd7\x4a\xed\x1a\xfb\x78\xe9\xa7\xb8\x28\x5e\x6a\x52\x82\x32\x8c\x0c\x3a\x2e\x8f\x96\x39\x8b\xbe\xc2\xb3\x66\x37\xbf\x76\x1b\xc2\xe8\xe2\xc1\xc1\x83\x45\x7e\x98\x57\x7d\xed\x92\xd7\x92\x89\x21\xdb\xf5\xed\xa6\x33\x17\x74\x3d\xbd\x78\x72\x16\x00\xf1\xaa\xda\xa1\xea\x8a\x93\xb0\x5d\x2f\xbf\xc5\xfb\x33\x54\x7f\x94\x93\xcd\xa6\x6d\x76\x30\x76\x42\xbd\xb1\xb6\x39\xd7\x73\xa6\x41\xce\xc5\xe9\xe1\xd3\xd1\x6c\x38\x67\x99\x67\x01\x93\x79\x3d\xf7\xdc\x1e\x12\xb0\x6e\x6f\x7e\xee\xd9\x43\x45\xc9\x54\xb5\x23\xf0\x4b\xa6\x19\xed\x2c\xf2\x6f\xc5\xec\x73\xc4\xf3\x14\x28\xe7\x62\x46\x08\x23\xac\x92\x32\x33\x81\xa0\xe6\x1c\xe6\xa8\xc9\x3b\x22\x2b\x16\x39\xf1\xbc\xc5\xd5\x6c\xcf\x64\xf6\x38\xc9\xa5\x9d\x26\xcc\xcd\x14\x10\x7b\x49\x6c\x96\xf7\x54\x1c\xc5\x6e\xab\xb9\x12\x1a\xcf\x26\xf9\xec\xf5\xc8\x77\x37\x8a\x06\xda\xd1\x0a\x79\x50\xc4\xd5\x72\xae\x0b\x75\x34\xf3\xf6\xfa\x99\xb7\xd7\x92\xae\xb3\xbc\xa5\x79\xaf\x7b\x19\x15\x01\x8d\xd7\xcd\xcd\x1a\x01\x71\xfa\xbc\xb6\x2e\x34\x30\xbb\x5d\x1e\xa8\x1b\x1f\xb6\xcf\xea\x5c\xc1\x6f\x56\xfd\x9f\xf7\xd7\x4a\x82\x2f\x67\x6a\x4c\x6e\x3e\xfd\xde\x5e\x5c\x90\xe4\x6f\x91\x91\xd6\x2e\x9f\x22\x66\xfd\x44\xbe\xc4\x96\x74\x51\xe0\x74\x41\x7b\xc8\x4a\xb8\x0d\x84\xe2\x70\xb8\xda\xe2\x49\xbb\x61\xfe\xa7\x25\xde\x2a\x5d\x5e\x37\xb0\x56\xa9\x4b\xae\x12\x1b\x04\xd3\x3f\xb5\x59\xbd\x38\xfc\x9e\x3a\xe0\xc4\xba\xb6\xed\xf3\x77\x76\x9e\x9b\xea\xed\x94\xf7\xf2\xfb\x01\xeb\xe3\x7a\x25\xaf\x6d\xcc\x37\x65\x9a\xa9\x81\x22\x05\x47\x67\x08\x6d\xd0\x1e\x68\xad\xef\xdf\x1c\x2a\xc1\x76\x13\x47\x5f\x83\x1a\xe6\xcc\xcb\x19\x7f\x4b\x16\x05\xfb\x9d\x22\xf3\x04\x52\x23\xec\x7b\xce\x95\x4d\xdc\x96\xf3\xfd\x98\xf6\xc8\x9b\x59\x1f\xcb\x3d\x12\x9b\x24\x5c\x59\xfc\x98\xb0\x3f\xf1\x63\xc2\xd0\xc5\x8f\xd9\x24\xd3\x02\xe7\xea\x64\x0f\xcf\xce\x9e\xcc\x15\x86\x97\xd9\x8c\x04\xe5\x32\xf8\xee\x21\xe3\x00\x32\x6e\xde\xfb\x30\x6d\x93\x02\x7b\xfc\x3d\xf4\x23\x1d\xb8\x9f\xf0\xe4\xfe\xa7\xf7\x0a\x5b\xdc\xeb\xab\xf2\x3c\xe9\xc8\xdf\x20\xb7\x9f\x49\xba\x4d\x92\x3d\x51\x0d\x42\xf6\xd8\xf5\x92\xb3\x53\x76\x56\xfd\x96\x92\x94\x6f\xe1\xe9\xf4\xf1\x69\xf1\xd7\x50\x7a\x56\xfc\x45\x14\xe7\x87\x78\x2b\x55\x46\x88\xa2\x8b\x98\x9e\xbe\x6d\x42\xe0\xd5\xa3\xb6\xd7\x71\xa4\x6d\x3a\x51\xc9\xe5\xed\x73\x7b\x73\xf0\x4a\x98\xe6\xb1\xbc\x00\xaf\xc9\x3c\x04\xd2\x2f\x6d\x3c\x9b\x7a\x63\x8a\xee\x50\x5c\x91\xd3\x8b\x9c\x35\x85\xc0\x41\x2e\x09\xad\x18\x24\xaa\x5a\x79\x36\xd6\xa9\x1c\xe1\x2d\xfb\x14\x2b\x14\x12\x1c\x4c\x58\xbd\xb5\x92\x8d\x95\xe1\x21\x09\x0c\x26\xd7\x7f\x6f\x48\x46\xa1\xb3\xc5\x24\x6a\x9b\x86\x54\x8e\x67\xbd\x23\xe1\xc8\x24\x13\x6e\x69\xca\xfc\x2d\x52\x44\x09\x4b\x46\xec\xd3\xaa\x66\x4b\xa4\x44\x2e\xd3\x34\x59\x77\x7f\x15\xfd\x35\x60\xd3\xb1\x7d\xe4\xce\x93\x36\xcf\x6d\xa9\xcf\xcb\x9f\x59\x4d\x75\x3a\xd3\xde\x27\x3e\xd8\x83\x65\x12\xc7\xab\x46\xf7\xd0\x88\x36\x6a\xa0\x61\x6c\xb3\x01\x9f\xa9\x2b\x87\xc0\x5d\xd5\xc9\x21\x97\xc8\x61\x56\xec\x11\xf9\x1d\x3d\x49\x27\xb1\xc4\x11\x99\x46\x6c\xd6\x29\x8b\x21\x2f\x15\xca\x9d\x70\x57\xc9\x4e\xee\xbf\xab\xa6\x9b\xa9\xf5\xe7\x64\xb8\xbc\x86\xdf\x75\x3a\xa2\x6d\x86\xfb\xdf\x1c\x3f\x39\x19\x57\x9e\xd2\x18\x2d\x98\x52\x24\x2d\x98\x27\x40\x62\x78\xdf\x7b\xc8\xd9\x06\x3f\xaa\x7c\xcb\x4a\xe4\x50\xec\x07\x8d\x68\xe0\xb3\xca\xc4\x15\xec\x38\xc3\x3f\xfe\xe5\x84\x43\x7b\x2a\xce\x3f\x2e\x38\x57\x93\x7e\x70\xf2\x68\xfb\x66\x76\x5c\x27\x4f\xb0\xed\x9b\x26\x89\x1b\xd6\xb9\xf4\x06\xf5\x0d\x76\x1d\x92\x20\xc9\xeb\x02\x57\xb6\x94\x6c\xf9\xe3\xca\xbe\xd2\x7e\x98\xfa\xd6\x71\xd6\x84\xe3\x95\xcd\xf9\x99\x23\xfe\x36\x3e\xbe\x38\x6c\x52\x3b\x39\xc1\x6a\xed\x18\xb5\xd8\xac\x03\xc4\x44\xb5\xfe\xc2\x6e\xe5\x2a\x4d\xe0\x27\xea\xed\xd1\x32\xeb\xea\xc2\x8e\x9a\xbc\xac\x4a\x33\xb7\xd8\xcb\xbe\xdf\xb9\x2c\x5b\x04\xbf\x07\x38\x5e\xd9\xde\x1e\x27\xeb\xdc\x55\x6c\x89\xd9\xbf\x37\xdf\x6e\xfd\x43\x59\x59\x7d\xbd\xad\x96\x41\xc4\xc1\x3a\x51\xb5\x71\x13\xaa\x4a\x52\x96\x50\xed\x48\x4f\xbf\xd6\x4f\x19\xfb\xb2\x17\x8d\x53\x5e\x05\x15\x13\x0e\xac\x95\xc2\xe0\x95\xb6\x58\x77\x74\x25\xbd\x50\x7f\x9e\x23\xfa\x11\x8b\x92\x23\xec\x3f\x39\xc2\xd3\x72\xa8\x91\xc4\xa2\x6d\x20\x0e\xc2\x29\x2c\xd4\xcf\x9e\x66\x79\x69\xdf\xc6\xa2\xf0\xae\x4b\x62\x6a\x89\xa5\x92\xe4\x79\x64\x83\x4d\xcc\x1c\x69\x3f\x2d\xb3\xef\xa7\xf2\x2f\x22\xf6\xb6\x19\x4f\xe9\x2b\xce\xe4\x09\xf6\x4b\x20\x30\x82\x00\x75\x46\x70\xed\xe6\xd7\x75\xd5\xce\xcf\x25\x62\x43\x3a\x44\x70\xfa\xf3\x9e\x73\xf2\x73\x85\xd4\x43\xa9\x1f\xe0\xb3\x91\x1f\xa0\x6f\x95\xf0\x69\xe9\xa7\xd5\xc7\xcb\x9c\xd5\xf5\x85\xd3\xa5\xf8\x92\x76\xb7\x3c\xd9\x2d\xd2\x9a\x2c\x40\x05\x19\xe7\xaa\x12\x17\x7b\xa7\x93\x4a\x7c\x89\xc7\x3a\x7d\xb8\x5c\xae\xc1\xa5\xfc\x90\xbf\xb5\x9a\xa7\xf6\x94\x87\x9a\xb2\x48\xdc\xe2\xbe\xf3\x41\xb8\x4d\xc8\x13\x2a\xfa\x9f\x76\x28\xda\x51\xd2\x91\x90\x63\xff\xe3\x98\x63\x5f\x5c\x80\xf7\x3f\x24\x14\x1e\x70\xa1\x8e\xe1\x5b\x6b\xcb\x71\x13\xf7\x91\xeb\xd6\x1f\xdd\x4f\x1f\x68\xd1\x3c\x3c\xc9\xf3\x05\x79\x9f\xb2\x44\x79\xe9\xe6\x81\xf8\xf6\xc1\x0f\x4c\x12\x84\xa7\x3d\x8b\xe6\x55\x3a\xc7\x7b\x07\xda\xff\x83\xd0\x47\xfe\xc8\x02\x81\x88\x97\x9d\xa5\xbc\x4f\xfb\xd3\x47\x14\x46\xdd\xfd\x28\xcb\x8c\xaf\xef\x3c\x10\xd7\x42\x44\x00\x43\x9d\x56\x98\x22\x4c\xf2\xfd\x66\x37\x93\x91\xfd\x47\xff\x1e\xc2\xdf\x32\xbd\x90\x8b\x70\x8a\x16\x69\xe6\xc1\x32\x3c\xae\xb0\x6f\x7f\xb9\x6b\xd9\x05\x4e\x54\xd3\x9b\xcd\xf2\x2b\x42\x4c\xc4\x8a\xb5\xe2\x3c\xdd\x48\x3c\xf9\xed\x1b\x3c\x46\x9b\xc9\x16\xeb\x53\x1e\x9f\x84\xd7\x18\xf8\x99\x45\x79\x53\xe3\x26\xbe\x1b\xed\x8a\x4f\xe2\x1b\x89\x74\x0c\xfa\xb6\xad\xe9\x10\x98\x4d\xbb\x34\x7d\x77\xf3\x33\x1e\x75\xc4\xdb\xac\x88\x08\xd2\x47\x75\x98\x05\x30\x12\x14\xc4\x9f\xe5\xcf\x8f\xdd\xf2\x63\x76\xf0\x6c\x34\x15\xfb\xc7\x5b\xfa\x40\x62\x0e\x94\x9d\xfc\xfb\x92\x7e\xe3\x91\x61\xf9\x55\xd2\xaf\xb2\xd2\x1f\xaf\xb9\x2d\x14\xf9\xda\x94\xc8\x32\x35\xbe\xf9\xb3\x93\xdf\xd7\xf4\xcb\x34\xd2\x8f\xb3\x44\xdc\x4b\x7e\xc4\x46\x87\x73\x9a\xfa\x9d\x86\x92\xc7\x6d\x64\x54\xf9\x7c\xd9\x0e\x1d\x7f\xc4\xd0\xf2\xa9\x34\xd7\xfc\x85\x86\x97\x0f\xaf\xad\x7d\xa5\x1d\x62\x0e\xda\x5f\xdb\xf4\x97\xd2\x9d\x05\xa0\xf0\xed\xda\x1a\xe9\xcc\x34\xda\x7d\x67\x5e\xaf\xfc\x8c\xfc\x74\xe4\xab\x9f\x8f\x4e\x86\xc1\x5b\x76\xed\x0e\x69\x9e\x7f\x88\x6f\x36\xfb\x57\x26\x0f\x3b\x9a\x1e\x82\x31\x90\x52\xac\x4f\x1e\xb6\x36\xf4\xaf\xe4\x1c\xa8\xf1\xd6\x8c\x7f\x4a\x5c\x5e\xcf\xe3\xc8\x2e\x68\xc4\x7d\xfa\xf6\xaa\xd9\x0d\x2a\x9c\x4f\x5e\x13\x10\x9b\x71\x92\x44\x8e\x9f\xff\x27\x5a\xbc\xd0\xc7\x37\x69\xf7\x57\xe7\x74\xa9\x9e\x04\x89\xa5\x8c\x4e\x78\x1f\xfc\xfd\xdf\xf3\xf3\x1d\x24\xf1\xfc\xc3\x3f\x14\x4f\x1f\x7d\x08\x9b\x18\xa2\x06\xda\xa2\xae\x90\xa7\x91\xf6\xeb\xe7\x37\x10\x6f\xa8\xe6\xd6\xbc\xf9\x2a\xab\xcc\xf1\xf7\xec\x64\xcf\xd6\xc5\xe0\x64\x7f\xf7\xce\xff\x0d\x00\x00\xff\xff\x16\x94\x13\xda\x4c\xba\x00\x00") +var _confLocaleLocale_ptBrIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\xdd\x8e\x1c\x47\x96\x18\x7c\xfd\xd5\x53\xa4\xb8\x20\x28\x02\xcd\x12\x24\xed\x67\x1b\x82\x4a\x72\xb3\xd9\x12\x35\x20\xd9\x3d\x6c\x8a\x0b\x58\x20\x4a\x51\x99\xd1\xd5\x39\xcc\xcc\x28\x65\x64\x36\xd9\x5c\xec\xc5\xc2\xb7\x7e\x00\xc3\x57\x2b\xcc\xc5\x42\x03\xe8\x6a\xe0\x1b\x5d\xba\xde\xc4\x4f\xe2\xf3\x17\xbf\x99\xd5\xa4\x66\xed\x1d\x0c\xc4\xae\xc8\xf8\x3d\x71\xe2\xc4\xf9\x0f\xb5\xdb\xad\x2b\x6d\xcb\xd5\xf7\x6d\x61\x75\x7f\x5d\xef\xff\xd5\x14\x95\x2e\xbe\xad\x87\x42\x8d\x83\x79\x70\x65\xec\x4e\x57\xaa\x32\x85\x2e\x54\x5b\x6f\xf7\x3f\x5f\xeb\xa6\x80\x16\x7d\x3d\x40\x59\x5b\x7c\x6b\x16\x8b\x2b\xd3\xea\xd5\xf9\xfe\xe7\x6d\xdd\xa9\xe2\xbb\xae\x2e\x6b\xd5\x2c\x2a\x65\xaf\x36\x46\xf5\xd5\xea\x5c\xd5\x1d\x34\x82\x6e\x4b\xd3\x0d\xbd\x69\xf4\x42\xbf\xdd\x35\xa6\xd7\xab\x53\xfa\x57\xf5\x8b\x2b\xdd\xec\x56\xc7\x7f\x1a\x2b\xb5\xb0\xf5\xb6\x5b\xd7\xdd\xea\x14\xea\xc2\x17\xfa\x69\xc6\x61\x75\xa1\x6a\xf9\x35\xee\x56\x27\x0a\xfa\xa7\xef\xbd\xde\xd6\x76\xd0\xfd\xea\x39\xfd\x81\x45\x6f\xf4\xc6\xd6\x83\x5e\x5d\xc0\x7f\x16\xd7\xba\xb7\xb5\xe9\x56\x2f\xe1\xdf\xfd\x9f\xcd\x62\xa7\xb6\x7e\xb2\x8b\x41\xb7\xbb\x46\x41\xd5\xa7\xa6\xd2\x8d\x59\x34\xaa\xdb\x8e\x58\xe1\xbb\xaa\x36\xad\x5a\x94\xbd\x86\xaf\xeb\x4e\xbf\x59\x9d\xf4\xb5\xea\x97\xcb\xe5\x62\x04\x40\xad\x77\xbd\xb9\xac\x1b\xbd\x56\x5d\xb5\x6e\x71\x25\xe7\xba\x87\x82\x02\x00\x35\xda\x71\xff\x73\x5f\x23\xc4\x60\xbd\x97\xf5\x76\xec\xd5\xfe\x5f\xf7\xff\x53\x5b\x9a\xbd\xae\x60\x71\x6b\x65\x57\x2f\x4d\xb9\xff\x4b\xb1\xff\x65\x41\x3d\x76\x0a\x60\xf8\xbd\x34\x5d\xe8\x56\xd5\xcd\xea\xf4\x01\xfe\x03\x33\xb6\xf6\x8d\x01\x40\x5e\xe8\xee\x4a\xc1\x82\xd7\xc3\xcd\x4e\xc3\x7a\xab\x7a\x8b\x2b\x2c\xd5\x6e\x28\xaf\x14\xc0\x84\xfe\x5d\x40\x8d\x9d\x01\x00\x98\xfe\x06\x2a\xd1\x9f\xfb\xbf\x62\xaf\xa6\xdf\xaa\xae\x7e\xa7\x06\x84\xc7\x99\xfc\x80\xa9\x01\x54\xda\xba\xef\x4d\xbf\x3a\x85\xdd\x6e\xae\xcc\x02\x16\xbc\xc6\x5e\x56\xcf\xcc\xb5\x29\x92\x4e\xf0\x13\x20\x42\x8f\x50\x83\xaf\xaa\x78\x8a\x3f\xb8\x17\xfc\x76\x69\xfa\xd7\xdc\xec\x1b\xf8\x0b\x77\x7d\xd2\x1c\xe6\xc1\x4d\xb3\x39\xa8\x0e\x40\x4f\x5f\xbf\xd5\xbd\xee\x00\x8d\xfa\xb8\x0a\x42\x50\x55\x2d\x40\x6f\xa7\x00\xa1\x3c\x5e\x99\xe2\x18\x4b\x69\xf3\x2b\xd3\x2f\x54\x59\x9a\xb1\x1b\xd6\x56\x0f\x43\xdd\x6d\xed\xea\x24\xdd\x86\xa2\x52\x05\x14\x0d\x80\x6a\x07\x6a\x2c\x6e\xcc\xe8\xf7\x18\xc0\x3e\x16\x3b\xda\x5e\x2e\xf7\xad\x2e\x46\x65\x27\x7b\x8c\x2b\xb4\xeb\x4b\xad\xab\xd5\x37\xf0\x1f\x04\xc0\x33\x33\xec\x7f\x85\xd5\xd8\xc5\x6e\x6c\x1a\x00\xec\x4f\xa3\xb6\x03\xb4\x37\x0d\x9c\x95\xc1\x4f\x4b\x17\xe7\xf0\x7d\x51\x5b\x0b\xdf\x57\xe7\xbd\xd9\x34\x80\x08\xd0\x65\xa9\xba\x12\x16\x7c\x42\xff\x00\x82\x2f\x7e\xb0\x5a\xf5\xe5\xd5\xab\x05\xff\x0b\xd8\x67\x7f\x1a\x6b\xcb\x08\x7a\x68\xfb\x11\xcd\x02\x8a\xd1\x28\x7e\x90\x45\x09\x07\x60\x75\xb2\xff\x2b\xe0\x14\x9c\xe8\x1f\xea\xce\x0e\xaa\x69\x5e\x2d\xe4\x8f\xd5\x77\xf4\xaf\xec\xd4\x50\x0f\x00\x97\xd3\x41\x01\x6a\xe2\xb4\xeb\xe8\x63\xb1\x53\xbd\x2a\xce\xfb\xba\xd5\x35\xfc\x71\xfa\x56\x97\x23\xb7\xaa\x4c\xf9\x1a\x8e\x0e\x1e\x75\x98\xc8\x85\x2e\xae\xe9\x04\x00\x28\xf6\x3f\x17\xbd\xa9\xe0\x2c\x99\xc2\x00\x45\xd9\x62\xa7\x48\x29\x70\x6f\x1f\x51\xab\xa3\x62\x67\xfa\xe2\x52\x5d\xc3\x7f\x1b\x5d\xab\xc2\xd8\xe2\x4b\x55\x0c\xaa\xdf\xea\x61\x75\x67\xbd\x81\x93\xfb\xfa\x4e\x71\xd5\xeb\xcb\xd5\x9d\xbb\xf6\xce\x57\xdf\x8e\x00\xef\x2f\x3f\x51\x5f\x15\xe5\x58\x23\x01\xb3\x70\xc0\xba\x01\xa8\x18\xfc\x87\x26\xdd\x02\xb1\xe9\x8b\x9f\x46\xd5\xc0\x76\xf4\xb0\x8f\x00\xbf\xa2\x83\xd9\xa8\x62\xc7\xe4\xe1\xa3\x05\x6e\x15\x1c\xb1\x75\xb5\x61\x32\x49\x73\xa3\xfd\xeb\x8b\xa7\x37\x17\x7f\x7c\x72\x54\x9c\x1b\x3b\x6c\x7b\x4d\x7f\xc3\x7f\xa0\xf6\xe7\x85\x19\x8b\x17\xf5\xa3\x87\xcb\x05\xb4\x63\x58\x4d\x50\x50\x17\x0f\x61\x37\x89\xd8\x3e\xc2\xd9\x51\x55\x3c\xd6\x2f\xea\x1d\xad\x3b\xfb\x0c\x84\x78\x58\x3d\x86\xff\x64\xdb\x98\x11\x07\xe8\x85\x28\xc9\x33\x20\xc9\x33\xbd\xc0\x67\x01\xff\xb9\x03\xe7\x11\x10\x2c\x0d\x60\x6f\x35\x60\x59\x6d\x5b\x53\x7c\xf7\xec\xd9\xd9\xa3\x87\x00\x90\x16\x8a\x01\xbd\xff\x04\x87\x89\xfa\x28\x61\x67\x4b\x20\xb5\x30\xff\x71\xb8\xfc\x4f\xeb\xad\xee\x74\xaf\x9a\x75\x59\xf3\xa6\x13\x44\x96\x0b\x6b\x1b\xa0\x89\x15\x11\x55\x53\x5c\x5c\x3c\x81\x49\x0e\x57\x80\xbd\x70\x48\x81\xb6\xd8\x9f\x1a\x04\xa9\xcc\xe3\x0c\x7a\xa5\x72\x9c\xad\xea\x01\xdc\xd7\xf4\xe7\xc6\x4d\x9c\xf6\x6e\x0a\x59\xdd\xf7\x6b\x20\xde\xc3\x0d\xee\x0d\xf5\x7f\x56\x9c\x84\x9e\x6e\x6f\x5e\x74\x84\xa8\x30\x47\xbc\xf5\x8a\x6b\xf5\xae\x36\xdc\x65\xdd\x5d\xab\xa6\xae\x60\xd7\x72\x48\x66\x3d\x46\xdd\xe8\xbe\x85\xce\x11\x23\x23\x00\xdd\x59\xde\x81\x0b\xe0\xce\x83\x3b\xcb\x45\x67\xd6\x4c\xb6\xf0\xb2\xa8\x00\xcb\xe0\xc4\xad\x7b\xb9\xad\x88\x16\xf3\x55\x10\x26\x05\xb8\xa6\x36\x35\x80\x09\x10\xd4\x14\x52\xd5\xc0\x5c\xdb\xa2\xc4\x6b\xa8\x18\x5b\x45\x97\xa9\xc2\x09\xa9\x98\xfa\xc5\x90\x71\xc4\x52\x30\xe4\x18\x3a\x00\x1c\x99\x34\x99\x81\x86\x5a\x2e\x16\x6e\x77\xe7\x11\x18\x28\xb4\xaa\x2d\x02\x06\xcf\xc4\x02\x19\x89\x04\x5c\xc7\x3b\xa0\x6d\xb0\xba\x6b\xe3\xbf\xb9\x2d\x3f\x31\x8d\x81\x13\x04\x2b\xeb\xa8\xb2\x2a\xec\x08\x07\x3a\xbe\x0b\x0a\x05\x88\xf0\x11\x51\xb2\x75\x8c\x3c\x58\xf9\xb9\xaa\xdf\xe1\x08\x09\x6d\xf3\x35\xdd\x20\x2f\x0c\xee\x92\xc1\xd3\x1a\xaa\xe1\xaf\xd6\x0c\x86\xe7\x0d\x3c\x0e\xac\x17\x47\xb3\xaa\xb9\x86\x42\x3c\xfc\x30\x9f\xba\xd7\x5c\x1d\x48\xe9\x08\xdc\x06\x9e\x37\x22\x63\xb8\x1d\xfe\xe0\xb9\x4f\x01\x91\xfd\xc5\x5f\xe9\x6b\x5d\x00\x1a\x14\xaa\xd4\xd6\xc2\x62\x8c\x47\xf2\x5e\x26\x1f\xcf\x0a\xf0\x44\xbb\xee\x05\x9c\x15\x30\x1f\xc0\x02\x3d\x32\xed\xfe\xd7\xae\x36\xf2\xdb\x0d\xf5\x9d\x85\xf3\xa8\x2e\x35\x6c\xff\xf7\xcf\x9f\x58\x3e\x7c\x65\x63\xf0\xfa\x6c\x8b\x6b\xa0\x8e\x17\x17\x8f\xf1\x1c\x5e\xad\x81\x6a\x0e\x78\xd6\x07\x2a\xf3\x45\xae\xa7\x67\xfb\xdf\x5a\xdd\x13\x58\x77\x54\x09\xf7\xc5\xc2\x7d\x47\xcc\x20\xe2\x06\xb4\x12\x0a\x3d\x5a\x24\xd0\x47\xb0\xba\xfa\xad\xe6\x33\xc3\x23\x23\xb6\xc2\x46\x0b\xae\x96\x63\x6f\x0d\x4f\xe0\x6a\x18\x76\xf1\x0c\x1e\xbf\x78\x71\x1e\x0a\x0f\xce\x01\xd6\x80\xd3\x50\x85\x22\x1c\x62\x84\xa8\x7b\x98\x82\x03\xd3\x92\x70\x6a\xec\x9b\x15\xac\x7f\x06\xdb\xe0\xcb\x0c\xac\x08\x5a\x44\xc7\x62\x50\xe1\xa4\x3e\xc1\xff\x58\xd8\x87\x41\xb5\x9b\xfd\x2f\x48\xf7\x88\x03\x83\x53\x60\x76\x78\x42\x0f\x1e\x83\xb3\x5d\x89\x9f\x6b\xcb\x2c\xdb\x21\x6a\x0f\x00\x89\xb8\x6b\xe1\xeb\x6c\x0b\x90\xf0\x74\xbd\xb8\x78\x0a\xd0\xa1\xb2\xcb\xde\xb4\xab\x47\xfa\xff\x0b\xbf\x02\x92\xe9\xae\x02\xfa\x22\x1d\xd1\x98\x8c\x6e\xc0\x8e\xe1\x17\x58\xa4\x06\x1e\xae\xac\x2f\x3d\xe4\x9e\x7f\x73\x52\xfc\xff\x9f\x7f\xf6\xd9\xb2\x38\x2b\x80\x39\x6b\xd5\x20\x18\x8a\x87\x7d\x6c\xa5\x13\xa0\x8c\xc5\x1d\x3c\xbc\x77\x8a\x2f\xa9\xe4\x3f\xeb\xb7\x0a\x98\x63\xbd\x84\x7b\xe0\xab\xe5\x02\x8b\x00\xd9\xf9\x30\x3c\xe0\x71\xf1\x0c\xb6\x7a\xc0\x6b\xd5\x7d\x4f\xaf\xa3\xb4\x8a\xe3\xd4\xd7\xc4\x32\xf5\xed\xea\xb1\x27\x72\x27\x5c\x22\x33\x26\x9e\x91\x69\x1e\xf5\xbb\xee\xcc\x50\x5f\xde\x44\xf5\x9f\x61\x81\x5f\x21\xd4\x3f\x31\x7d\xaf\xe1\xa0\x20\xde\x6a\x64\xd1\x00\xda\xa5\x3e\x7c\xf9\x5e\x38\xfc\xd6\xc5\xd9\x08\xe3\x58\xbf\x41\x76\x61\x2e\x2f\x1b\xe0\x2c\xf9\x0e\x3b\x66\xcc\xa6\xab\xec\x8c\x3f\x24\x15\x00\x95\x77\x20\x8f\x3c\xe2\x33\x80\x44\xed\xe4\xd1\x33\xb8\x4c\xf1\x22\x05\x0c\x6b\xb1\x1d\x8c\x07\xbc\x64\xc5\x6c\xd0\x51\x31\x04\xd2\x44\x87\xc5\x3a\x32\x04\x77\xc3\xce\x74\x35\x2e\xf2\x1d\x5d\x32\x8d\x29\x55\x43\x6c\x0b\xb0\x12\x72\x71\x00\xb3\x7d\xad\x00\x06\x6e\x48\x98\x9c\xc7\xad\x6f\xe5\xdb\xa4\x72\x34\xcb\x70\xaf\xb8\xda\x00\x83\x4b\x43\x5c\x11\xa0\x98\x45\x64\xc7\xe1\x95\x8d\x66\xca\x15\xa1\x06\x8a\x50\x80\x83\x70\x70\xf0\x0b\xf2\x64\x8e\xea\x59\x44\xa1\x9d\xaa\x70\x25\x61\xb6\xc9\x35\x17\x66\x4c\xb2\xa5\xbb\xd7\x66\x2b\xa7\x70\xa5\xf9\x26\x8d\x10\xa8\x6e\xe8\x23\xa6\x43\x44\xbb\x0c\x73\x79\x26\xbb\xe2\x80\xda\x02\x77\xc7\x97\x27\x5d\x9c\x16\x2e\xca\x8e\x46\x75\xe2\x53\x84\x8d\x22\x48\xa5\x15\x64\x46\x67\x9b\xbe\xde\x2a\xbc\x26\x81\x4f\x70\x2c\x2f\x8c\x20\xb5\x78\x2a\x07\xa7\x6a\x97\xcc\x53\x82\x10\x27\x72\xee\xfa\xba\x06\xe9\xf2\x39\xf1\x94\x70\x20\x1b\x03\x9c\xa7\x74\x02\xf4\x09\x6e\xc6\xc6\x5f\x8a\x88\x47\xcc\x99\xda\xd9\x5e\x64\x86\x17\x02\x83\xb0\x33\x30\x1d\x28\x81\xf3\xc2\x9b\x56\x21\xe9\x83\xb1\x60\x7b\x81\x7f\x87\xff\xbb\x5e\x8f\x70\x44\x00\x01\x21\x83\x03\x25\xd7\xd7\x24\x8d\xe3\x1e\x5b\x64\x04\x45\xfa\x5e\x8a\x40\x26\x22\x11\x33\xc9\x31\x37\x03\x28\x5e\x7b\xc0\x1f\xe6\x5a\x0a\xb5\x35\xbd\x3a\x02\x86\x00\x07\x52\xc8\x6f\x62\x63\x92\x21\x22\x89\xfa\xe3\xef\x1e\xad\x3e\xbd\x4f\xd0\x05\x32\x06\xeb\xe1\x19\x02\x4d\x81\xcb\x41\x2e\xdb\x29\x43\xc4\x53\x3c\x40\x0a\x44\x14\xc4\x66\x99\x14\x49\xad\x22\x9e\x46\x87\xbb\x3f\x63\xac\x98\xf5\x16\xaa\x16\x8a\x1d\x51\xc3\x03\x8a\x15\xb8\x55\x2c\xda\x4f\x65\x57\x11\xb7\xd6\x5b\xe0\x02\x9c\xcc\xd5\x33\x4f\x00\x7b\x32\xac\x41\xe0\x5f\x5f\x22\xa9\x05\xe9\x52\x35\x80\x6e\xc0\x5b\xe0\x07\x3a\x20\x40\xa9\x49\x86\xba\x07\xb5\xee\x7d\x51\xdc\xbd\x16\x5e\xfb\x73\x24\xa0\x6b\x38\xc3\x75\x83\x08\x8d\x72\x2b\xee\x3f\x9d\x65\xda\x26\x3b\xf2\xcd\x2b\x6c\x72\x2c\x6c\x5d\x02\xa4\x80\x39\x83\x99\xbe\xe9\x1a\xa3\x2a\x84\x98\x6b\xbb\xa9\x3b\x84\x07\x7c\xbe\x24\x9d\x0f\x12\xbc\xbb\x80\x44\xcf\xf6\xff\xf5\x2c\xae\xb7\x35\x9b\xb1\x6e\xaa\xe5\xc2\x71\xd7\xc0\x5b\x0b\xc6\x24\x1b\xf2\xe7\x39\xd6\x9d\x26\xc8\x1c\x48\x89\x44\x7e\x50\xb4\x32\xd7\x55\x60\x11\x8f\xe7\x99\xab\xfd\x2f\x20\x9e\x5e\xef\x7f\xc6\xd3\x4a\x2d\x3d\xe3\x86\x40\x01\x34\x2a\xaf\x12\xde\x4d\x31\x97\xc1\xd3\xa1\xc1\xa1\x87\x08\x07\xd5\x00\x47\x12\x3a\xb2\xc5\x83\xaf\xe0\xbf\x0b\xab\xae\x35\xdf\x68\xdb\xc9\xce\x20\x5f\x89\xd4\x2e\x51\x12\xfc\xd9\x24\x0b\x48\x0e\xd0\x04\x1c\x07\x0f\x0c\x43\x24\x5d\x99\x43\x1e\x3b\x96\x78\x16\x56\x0f\x75\xfb\xe0\xba\x06\x8c\xf8\xa8\x38\x85\x2f\xad\x21\x6d\x05\x5d\xc6\x96\xa8\xa5\x13\xc0\x4b\xd3\x5c\x01\xd3\xc7\xcc\x27\x70\x78\xf5\x75\x0d\xe8\xf0\x00\x4e\x3a\x1e\x2e\xbc\xc8\x45\x88\x06\x86\xe8\x07\xd4\xf6\xbd\x5a\x8c\xcc\xd1\x9b\xa6\x42\x16\x2e\x3b\x20\x48\x26\x32\xe5\x95\xab\xca\x47\xc1\xbe\xa9\x01\xee\x6b\xaf\x23\x5c\xd3\xbc\xde\x0e\xab\x17\x3d\x5c\x79\xc4\x0f\xe0\x4f\xc2\x87\xa0\x3e\x3c\x71\xea\xc3\xf6\x86\xf6\xdd\xae\x9e\xea\xd1\x26\x82\x80\x85\x63\xd8\x00\x96\x9b\x9e\xae\x63\xa9\x96\xd4\x80\x6e\x7c\x05\xa8\x0f\x7d\x81\xe8\x01\x5d\x01\x7f\x0e\xa4\x30\xd3\x37\xc1\x57\x56\x8d\xc9\x58\xa2\x20\xb3\x0b\xa2\xb7\xa4\xf8\x7c\x09\x94\x14\xf0\x40\xd4\x36\x4b\xd8\x4c\xd2\x12\xf1\xc8\xa7\xa8\x57\x1d\x33\x29\x04\x80\x28\x0a\xd0\x57\x8b\x99\x09\xc2\x67\xa0\x70\x57\xaf\x22\xed\xe3\x5a\x74\x5a\xac\x85\x2c\x48\x79\xc6\x2a\x2c\xcf\x54\x5d\xe9\x1d\x32\x60\xad\xdd\xae\xfe\x00\x98\x31\xc0\x59\xf4\xf4\xf6\xeb\x02\x95\xa9\x9a\xa9\xec\x47\x0b\x6b\xf0\xb4\xae\x3f\xb0\xe9\x1f\x60\x5c\x8d\xb8\x20\xad\xd3\xdb\x9a\x75\xa1\x20\x6e\xe2\x55\x5d\x8e\xc0\xa5\x22\x15\xbf\x26\xee\x86\xaf\x3f\x4b\xb8\x4a\xd7\x97\xe3\x3e\xe0\x5c\x2f\x0b\xaf\x81\xa0\xbb\x05\x99\x59\x1e\x71\x30\xa2\x7a\x48\x11\x1e\x30\x01\x95\xba\x39\x6b\x81\xf3\x46\x82\x1a\x46\x97\xd3\x16\x73\x93\xfe\x26\x46\xba\xa6\x99\xf4\x5e\x9a\x3a\x9e\x91\xc2\x8b\xb9\xd5\xed\x06\x3b\xd4\xab\x27\xf0\x17\xde\x77\xd0\xf8\x69\xdd\x2e\x80\x6f\xde\x02\xb5\xf0\xa4\xfd\xd4\xc2\xf1\x29\x6b\x18\x8b\xf1\x19\xbf\xeb\xc9\x77\x38\x52\x8a\x65\xee\xaf\x9d\xe2\x1a\x88\xce\x9b\xd5\xb9\xdc\x8a\xc8\x17\x04\x38\x8b\x4a\x3b\x80\x7a\xe9\xae\x14\x66\x88\x88\x13\x86\xde\x06\x07\xf0\xef\x5b\x82\xb4\x5b\x50\xa5\xb3\x85\xe3\x0a\x85\x55\x63\x86\xe2\xcb\xcd\x57\x77\xed\x97\x9f\x6c\xbe\x8a\x08\xfc\x11\x52\x69\xe0\xa5\x89\x79\x82\x7b\xa1\x54\xf5\x5b\x9a\x19\x5d\xf8\x40\x7f\x3a\xe4\x0f\xfa\xfd\x5f\xdf\xd6\x2d\xfc\x75\xb7\x2a\xae\x60\x6a\x4e\xe6\x34\x28\x21\xe0\xe5\x83\x32\xa3\x83\x32\xdc\xb8\x25\x1d\x3e\x3a\x07\x0e\x73\x85\x91\xc6\xbb\xc7\x61\x2e\x2d\xa6\xa9\xdb\x7a\x98\xe2\x50\xac\x1b\xa4\x45\xe0\xc5\x86\xd2\x8a\x5f\x2c\xf1\x85\xbc\x52\xc4\x97\x76\x84\x6d\x2c\x2e\x91\x2f\xda\xff\x05\x75\xc7\x11\x86\x01\x52\x6c\x47\x20\x33\xba\xf8\xbc\x00\x9c\x02\xf6\x01\xf8\x30\x38\xed\xeb\xb1\x13\x90\xe9\x8a\xd1\xe8\xac\xa6\x1b\x8c\x47\x47\xa6\x71\xac\x69\xd4\x44\xea\xe2\x29\x74\x3c\x32\x43\x1c\x26\xf7\xb1\x07\xef\xfd\x65\xe1\xb5\x9b\x54\x0b\xf6\x5b\x6f\x00\x42\xc9\xfc\xd3\xcd\x42\xe6\x59\xd0\xa2\xd7\xb4\x60\x12\xce\x70\x83\x8f\x40\x60\xa5\xfd\x01\xee\x68\x63\xe8\x28\xa9\x0d\x6c\x13\xea\x27\x10\x86\x32\xf5\x13\xae\x84\x9a\x13\xde\x1d\xdf\x0f\x6e\xce\x1c\xdc\x44\x66\x25\xe6\xc0\x12\x51\x18\x34\xa0\xee\xa0\x0f\xaf\x17\xee\x42\xa9\x0a\x2b\xde\xff\x4b\xd1\x01\x76\x7b\x1c\x5e\x2e\x68\x36\x38\xa9\xe1\xc0\x9c\x3e\xee\xf5\xfd\xd9\x59\xf5\xba\xd2\x97\x70\xdc\xfd\xbd\x67\xc5\xd8\x61\xe3\x73\xf5\x5c\x6a\x31\x1e\xf1\xd9\x73\x17\x29\x69\xb0\x03\x02\x61\xf7\x25\xeb\xb3\xa7\xd0\x06\xf2\x0b\x8c\xe5\x88\x50\x77\xcb\xe2\x8b\x54\x60\x1a\x86\xf4\x4a\xab\x29\x74\xdd\x54\xf0\xd8\xf0\x6c\x7d\xa3\xc1\x98\xb5\xbd\x42\xcd\xc7\x19\x1d\x12\xe4\x64\x49\x89\x2a\x35\x33\x95\x1b\x7c\x34\x3d\xdd\xc8\xff\x01\x6f\x58\x84\xc9\x2b\x3e\x44\x48\xff\xdd\x09\x8a\xd1\x99\x64\x4d\x3a\xaf\x74\x96\x7c\x5d\xe6\x2e\x5f\x86\x23\x8d\x40\x9e\x6e\xe6\x14\xae\x96\x8f\xf1\x18\x00\x2f\xd4\xd5\x31\x13\xce\xbc\x56\xf1\x71\x83\x62\x64\xb7\x97\xc5\x43\xd2\xa3\xc0\xe9\x0c\x4d\x44\x5c\xff\x07\xdd\x94\xc8\x18\x98\xae\xa0\x4b\x1e\x57\x06\x12\x07\x2c\xed\x46\xdb\xd5\x05\x90\xd5\xce\xac\x9e\x91\xe5\xc7\x54\xd8\xe0\xb8\x81\xd6\x64\xde\x40\x3d\xc5\xab\xc5\xf7\x00\x9b\x67\x31\x03\xee\x98\xb0\x05\xde\x97\xcf\x62\x75\x63\x7c\xbf\x2e\x4e\x99\xc5\x9e\x59\xf6\x79\xca\xb2\x3f\xd7\x89\x25\xcd\x51\xeb\xc5\xc5\xc5\xe3\x17\x24\x2e\x3c\x13\x05\x25\x08\x76\x00\x6f\xd4\xa0\x3d\x1e\x86\x9d\xfd\x5e\x34\x4f\xa8\x36\xba\x80\x4e\x6f\x90\x33\x76\x85\xac\x28\xdf\xaa\xc5\x0b\xad\xda\x68\x92\xc0\x58\x02\xf2\xec\xf4\xe2\x18\x2e\xf7\x64\x59\x28\xcf\xf4\xde\x0c\x46\x02\xc1\xe9\xad\x52\x82\x97\xfe\x34\x59\xed\x7e\x8c\xd0\x89\x65\x01\xd6\x68\xff\xb8\x50\xcd\x0e\x04\x57\x64\xb3\x7c\x55\x54\xfd\x90\xb1\x37\xd6\x56\xab\xe6\x52\x75\x63\xbb\xff\xa5\xaf\x4b\x96\xe4\xaf\xf6\xbf\x5e\xea\xae\xf8\xf8\xc1\x7d\x92\xf9\xc6\x4d\x83\xfc\x11\x92\xb9\xf5\xfd\xb4\xe3\x0a\xc8\xc7\xff\xdd\xce\x6d\xfd\xce\x2d\xed\x9e\xd7\x54\x19\x54\xce\x29\xd4\xa1\xde\xb5\xcb\x7b\x0b\x62\x9a\x43\x3d\x1e\x9a\xd9\x5b\x90\xf6\x75\x63\xe8\x50\x59\xe4\xd3\xc3\x54\xa0\xef\x56\xbd\x3d\xdc\x0e\x08\x6c\xbb\xff\x19\x6e\x3a\x33\x69\xc7\xa4\x32\x81\x37\x10\x8d\x03\x57\x83\xa3\x25\x3f\x2e\x50\x13\x29\x8d\x42\x1b\x56\x44\x0a\xe7\x0e\x95\xea\xae\x6c\xc6\x6a\x7e\x4a\xf7\xee\xda\x7b\xd8\x4f\xf7\x1a\x38\x87\x4e\xaa\x9c\xf6\xa4\x55\x00\xbe\xbd\xbb\x82\x3b\xa3\x32\x5f\x38\x23\xf0\x1a\xfa\x42\x29\xa9\x24\xca\x23\x2a\x09\xb9\xa9\xa0\x18\xf5\x4b\x95\x1e\x97\x81\x52\x05\x21\x88\x35\x76\x39\xa5\x4c\x29\x16\x89\x73\x70\xfb\xa3\x7e\x0b\x55\x28\xde\x74\xbd\xde\xc0\x65\xb3\x1e\xd4\x6b\xdd\x4d\x4e\x6b\xf1\x27\xb8\xc3\x91\x19\x41\xa9\x9d\x29\x2c\xc8\x6c\xf3\xad\x32\xe1\x2d\x6f\x09\x6c\xd6\x81\x86\xb9\x01\x21\x6f\x39\xc0\x61\x3c\xd8\x94\x0f\xe6\xa4\x0d\xef\x39\xd5\x87\x75\x56\x73\x14\xc5\xb7\x19\x2d\x35\xa9\x9b\x46\x6f\x51\x5b\xec\x86\x83\x6d\xe8\xd2\x51\x70\x63\x51\xc7\x1c\x9d\x90\xc8\x8e\x54\x23\x6f\x1c\xc0\xea\xf7\x29\xec\x6b\x2c\x64\xf1\xd6\xc8\x37\xe2\x6a\x50\xb8\x83\xbf\xab\x75\x22\x20\xd3\x4c\x02\xc3\x5d\xea\x7e\xe0\x0b\x02\x99\x4d\xbc\x27\xea\x0e\x49\x2e\xde\x88\x32\xdd\x6c\x23\x44\xf4\x16\x5d\xe4\x64\x10\x40\x4d\xa4\xfb\xc9\x28\x09\x67\xa9\xa3\x8e\x81\xd7\x83\x0b\x51\x0f\xe2\x25\x11\x89\xf6\x66\xa6\x6b\x7f\x47\x1d\xea\xd8\x21\x68\x10\x68\x89\x9a\xc3\x5a\x12\xad\x81\x38\x6e\x20\xbe\xeb\xb7\x40\x49\x63\xa1\x9f\x57\x8f\x04\x88\xb5\x0d\xf8\x1d\x96\xd9\x00\x3f\x8e\xc2\x21\x2f\x2f\x6e\xa0\x88\x24\xa1\x31\x09\xb5\xc8\xac\x21\xd8\xff\xd6\x0c\x48\x39\x50\x88\x80\xe3\xd9\xf9\x0d\x67\xf5\x6f\x58\x32\xc8\x3e\x8f\xf0\x84\xe3\x9d\x42\x4c\x9e\x19\x49\x36\x89\xeb\xc0\xd1\x72\x00\x40\x9b\xcd\x6b\x7d\x13\xcb\x57\xc2\x79\x5a\xbd\x1d\x6b\x94\xea\x19\x1e\x25\xa9\x1a\x88\x29\x70\xd7\x15\xea\x29\x50\x54\x47\x79\x89\x2a\xdd\xf8\xee\xc8\x94\x1d\xee\x8d\xd0\x45\xd2\xc1\x51\xd1\x92\x8a\xd0\x8e\x2d\x8d\x84\x40\xf6\xcc\x92\x3a\x20\x47\xb8\xf6\x3b\xe4\x10\xbc\x02\x1b\x65\x5a\xa7\x21\x39\x0e\x2a\x49\x91\x55\x14\x48\xd5\x23\x69\x31\x16\x76\x80\x53\x84\x30\x67\x17\x94\x0b\xc7\xe5\x14\x0a\xd8\x0c\x45\xe2\xa9\xc0\xaa\x52\xd5\x04\x55\x1d\xf3\x3e\x88\x19\x49\xbf\x05\xe2\x5a\x93\xe6\x12\x6e\xcf\xce\x5e\xea\x7e\xff\xeb\x83\x46\x79\xf5\xe2\x52\x06\x44\x79\x00\x7d\x4f\xf2\xf1\x2e\xd5\x3b\xe4\xf8\x86\x29\x91\x71\x43\xf1\x1d\xa5\x78\x10\x1a\x2f\x1f\x01\x91\x28\x5b\x16\x6a\x64\x72\xa3\xa7\x5f\x9f\xfa\x90\x15\xd2\xb0\x1f\xb0\xbc\x08\xa0\x6c\xbe\xc1\x91\x33\xf8\xf3\xd0\x78\x3b\x59\xc5\x86\x38\xb8\xb6\xb7\x63\x67\x83\x16\x39\x19\x16\x10\x7f\xff\x97\x07\x0d\x0a\xf7\x50\xb0\x33\x35\x20\xc9\x4e\xa1\x5e\x1c\x24\x16\x47\x26\x16\xec\x9e\xb1\x06\x49\xba\x2b\xaf\x92\xa3\xc7\x45\x05\xdb\xba\x87\xba\xcb\x4e\xde\xe2\x07\x9c\xe9\xab\x05\xe0\x51\xb7\xd5\x6b\xb1\x78\x10\x7f\x88\x94\x04\xb9\x5a\x67\xbb\x68\x0b\x67\xe4\x40\x4b\x95\x6b\x51\x8e\x16\xa8\x78\xd6\x30\x6a\xd6\xcd\x78\xee\xfc\xc9\x00\x4f\x61\x3a\x54\xbb\x96\x3d\x2c\x72\x24\x05\x58\x1b\xfc\x69\x6a\x9d\x6b\x6a\x88\xef\xae\x87\x1b\x92\x6e\x6b\xda\xac\xf3\xfd\x6f\x1b\x34\x46\x2e\x2e\x4d\xd3\x98\x37\xba\x07\x56\x17\xcf\x29\xf0\x6d\xe8\x01\x06\x83\xf7\xa4\x22\x84\x33\x03\x7d\x4a\x2d\x54\xfd\x51\x2d\xe4\xa3\x51\x9b\xd0\x2e\x89\xfc\x23\x9b\xde\x5f\x43\x7d\x77\x8b\x44\xb7\x2a\x72\x06\x99\x1c\x21\x97\x50\x68\xbf\x53\x03\xac\xbc\x63\x11\x8f\xa6\x53\x11\xc7\x8d\x3b\xed\xef\x1b\x6c\x86\xfc\x95\x18\x6f\xb8\x63\x92\x71\xcc\x64\xd4\x25\xf9\x1e\xb1\xff\xd3\xab\x85\xf3\x90\x62\xe7\xb7\xdc\x17\x45\x28\x8d\x5d\x9d\x20\x35\xb0\x6c\x80\x26\xd5\xd3\x8a\x34\x00\x50\x82\xbf\x6a\xf2\x1e\x60\xfb\x2d\xd0\xb4\x55\xb0\xe5\xda\x05\x69\xe6\x32\x95\x5c\xa5\x1b\x3d\xa0\xa4\xc7\x9a\x07\x56\x26\x00\x7c\x57\xdf\xd7\x20\x62\xec\x90\x99\x2c\xd7\xe9\xcc\xdc\xa6\x18\x37\x63\x36\x54\x5c\xe4\xc2\x91\xf0\xdb\x08\x1c\xea\x06\x4d\xf3\x96\x8c\x0b\x04\x59\x67\x66\x12\x8f\xa1\x2e\x31\x42\xf6\xba\x51\x64\x0b\xc6\x73\xf4\x2f\x4c\x41\x8e\x0a\x1d\xaa\x1b\x00\xb8\xd4\x85\xbb\xe1\x8d\xde\x14\x97\x1a\x55\x16\x0a\xce\xed\xf5\xfe\x17\x1b\x34\x5c\x97\xe8\x25\x16\x2c\x0f\x27\xac\x65\x31\xa9\x5f\x23\xda\x06\xc9\xaa\xf6\x04\x8d\x84\x5e\x7a\x18\x77\x15\xca\x81\x6e\xfd\xc7\x03\x1b\x90\x70\x7f\x65\x97\xd2\x1a\x5e\xbe\x3b\xa3\xe3\xc1\x7e\x6e\xc4\xd1\x28\x69\x9a\x09\x7c\xee\x84\x79\xa7\xc5\x89\xf2\x97\xc5\x38\x40\xe4\xac\xa6\x53\xf2\x9c\xa2\x29\x4e\x51\x25\x21\x3e\x68\x9e\x47\x28\xa3\xc9\xb3\xee\x5e\x5b\x67\xff\xf2\x02\x2e\xa9\xc2\x00\xe9\x46\xb2\xe0\xe0\x1f\x20\x26\x4e\xbc\xe2\x9c\xbd\x2e\x39\xfb\xc1\xac\x77\xcc\x47\xff\x84\x3e\xd3\xc2\x66\x5b\x38\x89\x5f\x1a\xea\xdc\xc9\x41\x15\x9b\xd1\x96\x0a\x85\x05\x6f\x6f\x2d\xaf\x8c\xb1\xa2\xa9\xe5\x61\x4f\x49\xa9\xae\x9c\x0e\x47\xe8\x8e\x03\xbe\xa3\x4b\x7e\x77\xca\x4c\xef\xaf\x65\xb6\xd0\x00\x65\x4b\xe0\x87\x64\x72\x74\x92\xd7\x75\x8b\x4e\xaa\x67\xde\x61\xca\xa9\xf9\x62\x19\x83\xea\xb4\xe4\x7e\x94\xae\x2f\x18\x82\x9e\x91\xf6\xc6\xd1\xc4\xd8\xfa\xeb\x8c\xd1\xfb\x5f\xaf\x75\x73\x14\x91\x99\x2b\x86\xca\xfe\x67\x20\xfe\xcb\x74\x39\x1e\x95\xe4\x06\xcd\x16\x24\xa3\x24\xa8\xa5\x52\xd4\x72\x18\xe3\x09\xc9\xd3\xb1\x52\x1d\x1a\xa0\x88\xc0\x21\x51\x31\x4d\x95\x3b\x19\x10\x14\xc9\xb1\xd4\x7f\x20\x05\xb9\x73\x97\x45\x19\x7f\x9d\x7c\x7e\xc4\xe2\xbe\xbf\xaa\x0a\x45\x7f\xe7\x5a\x9c\xc0\x73\x3b\xd7\x29\x9a\xf8\x8c\x49\x6a\x99\xcf\xdc\xc3\xc2\xb5\xe4\xea\x8c\xf5\xd9\xb2\x8b\x97\xa2\x6d\xac\x44\xf1\xeb\x8c\xad\x58\xc9\x8b\x5f\x30\x3f\x00\x10\x89\x24\x36\x48\x22\x36\xf2\x27\x11\xff\x59\xa9\x12\x5c\x68\x75\x52\x59\x34\x21\x2c\xdb\xcc\x93\x41\x11\x6d\x80\x83\x80\x0e\x76\xb0\xe0\x09\x0d\x8c\x48\x1f\x5a\x51\x35\xb1\xb0\x40\xd0\x1d\x8d\x83\x42\x90\x31\x81\x03\x51\xfd\xcd\xea\xdc\xf5\xe3\x4a\x44\x4b\xf5\x48\xf4\x67\xb0\x4c\x13\x06\x13\xfa\xee\xeb\x10\x95\xf7\xd3\x85\x5f\x48\xf3\x4e\x91\xeb\xb1\x62\x30\xd4\xc9\x82\xb8\x06\xaf\xec\xd8\x14\xa7\xc2\x1f\xe9\x43\x6a\x4d\x5e\x9b\x67\xe5\x45\x14\x90\x85\x45\x44\xdd\xba\xed\xf0\x34\x49\xf6\x0d\x46\xd2\x7f\xe2\x32\xa2\x4b\x5f\xe7\x53\x09\x14\xf6\x34\x98\x1e\x84\x4d\x4c\x89\xeb\x47\x0b\x55\x55\x84\xaa\xbc\xfa\xe3\xaa\xa6\xd1\x7b\x51\xf4\xcf\x68\xb4\xb0\x41\x5e\x39\xff\xb4\x4e\xec\x08\xa8\x75\xff\xfd\xb6\x03\xd2\x43\x14\xf3\x32\x18\xaa\xf4\x9d\xd9\xe0\x54\xcc\x06\xce\x81\x77\xd6\x7a\x70\xe4\xcc\x07\x9d\x30\xaf\xc8\xee\x7a\xf3\x7d\x32\x93\x65\xb4\x0c\x4f\x5f\x00\x61\xa7\x00\x89\x80\xab\x04\x14\xf9\xd5\xe5\x8e\x88\xe7\x4c\xc2\x21\x89\x78\x14\x1c\x10\x25\xa4\x00\x50\x12\x67\x88\x9f\x21\xb4\x22\x06\x5a\xa8\x6c\x53\x5b\x36\xcf\x96\xbe\x03\xaf\x21\x9f\xc3\x99\x13\x44\x76\x98\x0d\x7e\xe3\x16\xe2\x3f\xca\xd2\x8a\xe7\x16\x46\x71\x82\x43\x06\x1c\xbe\x91\x15\xb6\x0d\x0e\x85\x76\xc6\xac\x78\x44\xda\xf9\x46\xa4\x74\xa0\xff\x64\xd4\xc7\x3f\x83\x68\x0c\xd4\x0c\x75\x46\x48\x52\x01\xb5\x2d\x3b\x09\xca\x85\xf7\x25\x1a\x6f\xba\xed\x57\x91\x79\x4a\x61\x44\xc6\xd7\x5f\x7e\x22\x5f\xc4\x4f\x0b\xcf\x3f\x4e\x03\xf8\x55\xf1\x77\xf9\x52\x45\xae\xd7\x5b\xdd\x3b\x98\x11\x3c\xc8\x0b\x1b\x95\x15\xa6\x19\x05\xa0\x49\xfd\x9d\x73\x74\x47\x68\xa1\xc8\x81\x40\x93\x76\x4b\x7f\x22\xd2\x1d\x39\xf1\x0a\x59\xd9\xcb\x48\x4d\xf3\x7d\xeb\x05\x50\xe1\xc5\xa9\x47\x80\x9c\x16\xc7\x2c\xd2\xad\xed\x7f\xab\x58\x4d\x24\x46\xa6\x16\x20\x6d\x96\xbe\x3f\xe2\x58\x7c\x7f\x44\xdf\xf2\x5e\xa9\x31\x49\x2c\xf9\x00\xc8\x36\x2f\x17\xae\x1b\xaf\x67\xa2\x59\x53\xb1\xd8\xe1\x89\x9b\xa1\x99\x38\xac\x8b\x2e\x0e\xba\x92\xb2\x21\x89\x37\x4f\x50\x5c\xa5\x04\x44\xa8\x27\x2b\x0c\x98\x76\xba\x15\xcd\x51\x4f\x37\x40\x95\x02\xf3\x36\x32\x9a\x36\xc9\xe9\x67\x70\x19\xa3\x09\x09\x2b\xf7\x01\x44\x73\x32\x74\x00\x44\x32\x5e\x4c\x3c\xd5\x94\x78\xc2\xf2\x8e\xc3\xe9\x07\xe9\x8d\x94\x38\xb4\x8f\xfb\xff\x81\x0a\x1a\x74\x4b\x79\x27\x77\x99\x6e\xc9\x39\xdb\x09\x71\xcf\xc4\x98\xa5\xbc\x30\x87\x86\x3b\x74\x5d\xa4\x8d\x19\x90\xd5\xe1\x68\x29\x12\x92\x55\xac\x67\xfe\x8f\xc0\x30\x29\xbb\x18\xcc\x6b\x40\xc3\xa8\x2a\x99\xd3\xa8\xd4\x49\xd7\xe4\x17\x38\x6d\xe9\x69\x13\x4b\x48\x11\x65\x4a\x64\xa5\xe2\xd8\x13\x17\x67\xc7\xbf\x85\x26\x71\x53\xcb\x4d\x97\xe8\x8b\x89\x38\xe5\x89\x4c\x53\x6f\x85\xde\x07\x0a\xe1\x0c\x96\x42\x26\x80\xc7\xeb\x36\x20\x96\xa2\xfa\xe9\x1a\xae\xe8\x11\x39\x6d\x2e\x8a\x77\x88\xf4\x25\x3c\x1f\x67\x59\x97\xda\x68\x59\x77\x6b\x53\x54\x7f\x4d\xe0\x88\x56\xf8\x02\x7f\x13\x73\x72\xcc\xf4\xed\x9c\x15\x47\xe2\x82\x2e\x2e\x10\xbe\x95\xbb\x0e\xa9\x19\x43\xdc\x32\x10\xa4\xa3\x2d\x89\x1f\xec\x9e\xc8\x8b\xc2\xe5\xb1\x1f\x9b\x17\x93\x9d\x90\x81\x23\x12\x57\x7f\x7c\xfe\x9d\x73\x67\x5f\x2e\xfc\x80\xdc\xf1\x39\x79\x29\x00\xdc\xba\x41\x1c\x38\x65\x4f\x13\xd7\x33\x31\x87\x93\x61\x34\x12\x5d\xb8\x9f\xc4\x3b\x9e\xa7\xee\x97\x17\x2f\x6d\xee\x13\x43\x5a\x5b\x8e\xab\xe2\x91\x91\x3a\xf3\xb0\xbc\xdc\xe4\x28\x14\x27\x89\x86\x97\x50\x61\xe7\x8c\xae\xdd\x5c\x27\xa2\xab\x13\xcf\x83\x22\x8b\x48\xc0\x45\xb2\xc2\x27\x30\xcd\x9e\xd6\xf0\xec\x85\x42\x2c\xe2\x3d\x3e\xc0\xb0\xbd\x98\x1f\x7b\xbe\xe9\x3c\x27\x77\x68\xfa\xef\xa3\x46\x18\x64\xe2\xf5\x0b\x87\x89\x51\xbc\xb2\x88\x7f\x3b\x30\x71\xc2\x78\x3f\x66\xb2\x0f\xa4\x6c\x41\x35\x12\x3a\x84\x88\x20\xa3\xbc\xd4\x47\x77\x78\x98\x8f\x75\xfe\xe7\x70\x62\x64\x06\xce\xf6\xeb\xb4\x1d\xc1\x7d\x42\x2a\x88\x4c\x7d\x1c\xab\x17\x2a\xae\x0c\x80\xf0\x58\x48\x5c\x86\xea\x70\xdf\x68\xf3\x50\x33\xe1\xee\x7b\x72\xd7\x3b\x3f\x7b\x74\xfa\x7c\xff\xcf\xe1\xaa\xc7\x83\x02\x80\x21\x1d\xc5\x47\xde\xb9\x31\x9b\x56\x70\x71\xc4\x09\x4a\x98\x57\x52\x45\xfc\x2e\xfd\xe7\x10\x7c\x97\xd5\x0b\x54\x4c\x88\x09\xed\x24\x2f\xa5\x9a\x99\xbf\x3f\xd8\x7d\xbc\x71\x8b\x1f\x90\x25\x7a\xb5\x60\x8d\xfd\x23\xd3\x99\x60\x6d\xf2\xa7\x6f\x1a\x39\x12\x87\xa7\x60\x2d\xcb\x2e\x09\xb1\xd7\xd8\xc6\x74\xe2\xfe\xbc\x43\x5f\xdd\x0e\xf9\xad\x16\xf6\xbc\xaf\xdf\x61\x50\x6c\x8d\x52\xd0\xfe\xb7\x0e\x4d\x9c\xcb\x05\xba\xd1\x92\x9c\x7c\xb3\x7a\x29\x7f\xe2\x7d\xc2\xe5\x58\xec\x06\xa3\xeb\x81\x0d\x89\x89\xbd\xe5\x4b\xbb\x53\x5d\x51\xc2\xe5\x65\x57\x77\x46\xc4\xae\xaa\x40\x8f\xb8\x3b\x5f\xa1\xa4\x74\x0d\xe7\x1d\x76\x0a\xaa\x7c\x35\xe9\x12\x03\x30\x4b\xd2\x18\x92\xff\x94\x73\x9f\x82\x52\xe0\x93\xc7\x70\x22\x9c\x93\x56\xbc\x46\xbe\xab\x81\x2e\xb7\xb7\x4c\xe0\x9c\xc7\xb7\xd3\x09\x60\xe8\xa7\x5b\xd8\xc7\xc7\x89\x8a\xa7\x22\xe6\xe8\x5a\x35\x30\x15\x0a\xe5\x60\x9d\x4f\x98\x0e\xb6\xb5\xf7\x17\x18\x9a\xe1\x77\x22\x67\x44\x85\x9b\x76\xe1\x1b\x5f\x17\x08\x5b\x92\xde\x6f\x0d\x05\xa4\xb0\x62\x64\x26\x3f\x5a\xd0\x0c\x49\xfd\x4e\xc1\xa9\x19\x2a\xd0\x57\x0a\xbe\x90\xd0\x55\x2e\x99\x6c\x9a\xd7\xa0\x02\x17\x4c\x0a\x12\x59\x6a\xcf\x2e\xdb\x7e\xbb\xd9\xc1\x2b\xdd\x58\xec\x31\x18\x41\x09\xe9\x1f\x51\x38\x35\x1f\x1e\x2a\xc5\x28\xe4\xd5\x93\x9a\x43\x91\xdb\x50\x16\x42\x27\x1b\x8d\x1c\x8e\x76\xfa\x1f\x5b\x2c\xb7\xf5\x50\x6f\x3b\xd3\xeb\x05\x50\x13\xb8\x04\x35\x74\x00\xff\x02\xc9\x71\x05\xd3\xd6\xa8\xfa\x71\x11\x77\xba\x68\x5c\xfd\x5e\x03\xe6\xa0\x0b\x5c\xad\x1e\xb4\x5a\x7e\xce\xb6\x6e\x29\x6a\x9a\x1a\x4b\x65\x74\x65\x58\x83\x54\x3f\xac\x24\x0e\x9c\xe8\x1c\x91\xec\xcc\x9e\xd8\x12\x59\x76\xf3\xb7\xd2\x2d\x5d\xcc\x5a\x3a\x76\x0e\x90\xb4\x61\xec\xf9\x98\xec\x57\xa5\x2f\xd5\xd8\x38\xfb\xc2\xea\x21\xdb\x14\x44\x8d\x2d\x21\xcd\x30\x19\xd8\x1a\x40\x3c\x98\x10\xff\xc1\xc2\x22\xfb\x71\x16\x1f\xa3\x3c\x7a\x7f\xf1\x06\x2d\xe0\xa8\xaa\xff\x07\xf9\x83\x14\xf5\x5b\xf5\x8e\xd4\xf7\xfe\x4f\xc2\x07\x4b\xd8\x61\xdf\xa3\xa6\x4f\x56\xfb\xef\xaa\xaa\x8f\x47\x5e\x62\x38\x32\x2a\x0f\xc7\xe1\x2a\x3e\x4e\xc7\x89\xc7\x89\x84\x73\xc7\xf1\xa7\x3a\x0e\xeb\x8e\xbf\x27\x84\x2b\x59\xa4\x28\x89\x32\xd2\x81\x34\xa3\xd8\x34\xa3\x06\xca\xa5\x19\xe8\x8e\x70\xb8\x6e\x69\x7b\x69\xb8\x6c\x7f\xa5\xc2\x92\x89\x02\x70\xf7\x3d\x5e\xc3\x89\x15\xfe\x04\x3f\xcd\x57\xe4\xc3\x45\xf1\x5f\x01\xea\xad\x0f\x02\xf3\x71\x5f\x17\x9f\x7c\xfb\xdd\x0b\x94\x4f\xc7\x36\xc4\xa2\xc6\x61\x80\x1c\x86\xb3\xf4\xa3\xd0\x6e\x58\xcb\xbc\x49\x57\xc3\x3e\xe5\xf1\x9b\x22\x7a\xf7\x19\x79\xc5\x7e\x80\x0d\xf7\x1d\x39\x0b\x2f\xf5\x9f\xc6\x39\x52\x91\x77\xef\x36\x47\xb1\x79\x2c\xf6\x5a\x83\x39\xc7\xf1\x8a\xae\x67\x31\xb3\x12\x50\x91\x89\x2a\xb8\x80\xed\xab\x88\xc4\x80\x13\x44\xe8\x84\x1c\x79\x5a\x47\xc1\x66\x70\x18\x2f\x27\x6b\xe2\x10\x8e\x4b\x89\xe9\xcf\xc9\x1a\x32\xd8\x28\x0e\xc3\x94\x80\xa9\x41\x7e\x61\x77\xb3\x46\x5d\x3e\xb0\x08\xc8\x78\x86\x02\xcf\x4e\xd1\x87\xca\x44\x75\xc5\xbb\xe5\x1c\x77\x8f\x48\xcc\xff\xfe\x6f\xff\xfd\xc1\x09\x2e\xf7\x64\xe8\x1b\xf8\x4b\xb4\x46\xae\x43\x04\xbd\xf4\x12\x73\x5d\x20\x9e\xd0\x79\x06\xc2\x5a\xbf\x65\x1f\xde\xb3\x0d\x1e\x50\x4c\x0d\xc1\xfe\xfe\xee\xe7\x88\x1e\xf3\x98\x3a\x02\x78\x37\x2d\xaa\x2d\xb4\xca\x51\x69\x64\xa3\xeb\x5f\xd3\xa1\x5f\xa0\xb8\x48\x68\xe5\x44\xc5\x98\x76\x03\x29\x2b\x5f\xaf\xd1\xd4\xa7\x57\x18\x7e\x5e\x3c\xdf\xff\xbc\xab\xd1\x0e\x42\x68\x39\x5c\xd5\x56\x48\x59\xc3\x6a\xba\xfc\x08\xc5\x0e\xdf\x44\xf4\x61\x51\x18\xd1\x21\xb4\xcf\x99\x12\x12\xc0\x77\x28\xee\x49\x54\xaf\xc4\x7f\x2c\x76\x23\xfa\x7b\x21\xae\xf0\x78\xe7\xf0\x7b\xb2\x63\x8c\x4b\xa8\x1d\x9a\xeb\x82\x86\x87\xf9\x52\x20\xf1\xcc\x61\x67\x9d\x09\xb9\x99\xc5\xd1\x22\xd7\x06\x2e\xc2\xa2\x45\x39\x75\x40\x7f\xdb\x8f\x16\x8b\x84\x38\x2f\x86\x5e\xeb\xd5\xfe\x9f\xfb\x6b\xbc\xa9\x2e\x6b\xbc\x36\x9d\x79\x18\xa3\xa3\x07\xb5\x5d\x7d\x43\xa5\xce\x42\x0c\x9d\x42\xa1\xf4\x02\x12\xd0\x43\xf9\x63\x01\xa5\x76\xf5\x02\xfe\x33\xcd\x97\x80\x59\x16\xe0\x37\xfc\xb7\x78\x2e\xb9\x16\x16\x8d\xda\x68\x54\x9c\x0f\x28\x13\x81\x50\x0c\x47\xa5\x81\x0f\xb0\x31\x76\xf5\x54\xf5\x25\x45\x0e\xb4\x40\x65\x11\x31\xe9\x5f\x80\x41\xa3\x95\x85\xef\x94\x3a\x04\x4d\x8f\x64\x30\xeb\x15\x26\x03\x19\xf9\x07\xec\x29\x25\x5a\x78\x0c\xff\x22\x64\x4a\xc3\xe5\x14\x1e\x80\x35\x31\x3a\xa0\x74\xb5\x89\x89\xa5\x53\x01\xb7\xfb\xeb\x88\xa7\x5d\xb8\xc1\x97\xf9\x24\x5c\x79\x9e\xe8\xa1\x28\xb3\x0a\x97\x28\xa4\x3f\x44\xcb\x54\xef\xcb\x90\xec\xc3\x81\x22\x6a\xef\x0b\x5b\x14\x78\xb7\x7a\xf5\x14\x98\x02\xe2\x2f\xdc\x07\x34\xe5\xac\x1e\xa9\x41\xf9\x12\x0e\xd9\x78\x4a\x6a\x07\x60\xb1\xb7\xc6\x7f\x01\x14\x75\x5f\x50\x26\xf5\xd1\x0f\x98\x29\x85\x84\x54\xa7\xd4\x8b\x3e\x2c\x27\x7b\x10\x7d\xeb\x90\xc5\x81\xcf\xc0\x60\xb4\x85\x96\x1a\x71\x85\x12\x36\xa3\x5f\x4b\x17\x4f\x80\xc2\xc2\x3a\xa3\xcf\x7e\x3b\x79\x37\xb3\xae\xc3\x57\xec\xbe\xcd\x6b\x70\xdf\xa1\xd2\xb4\x7b\x90\xae\xba\x75\x36\x06\xb0\x2f\x1b\x10\xb3\x8d\x4d\xbb\x32\x16\x9d\xc9\xf3\xaa\x97\xba\xbc\xa2\x14\x0c\x51\x5d\xb8\x20\x31\x21\x0c\x3a\xa0\xa2\xad\xcd\x52\x72\x9d\xe9\xbc\x7c\xb5\xe9\xb4\x50\x7b\xe5\xbe\x12\xb3\xa0\x86\xbe\xde\x90\x6a\xcc\x55\x63\x9a\xb2\xba\xa0\x50\xa4\xa8\xad\x80\x9b\x2c\x65\x33\xf0\xe6\xcf\xeb\x5d\x03\xa2\x6e\x12\xe5\x13\x6a\x63\xae\x91\x64\x10\xb7\x83\xc9\x50\x04\xb9\x41\x6d\x56\x77\x2b\x81\x97\x6f\x84\xa0\x72\x9f\x72\xf8\x08\x6d\xe0\x1e\x4f\xb3\xf9\xc5\x1f\x81\x61\x5a\x13\xf7\x38\x78\xa2\xec\x26\x18\x71\x95\x79\xd3\x03\xe8\x92\x7f\x9d\x74\xce\xb8\x13\xb3\xab\x59\x53\xbf\x1d\xc7\x6e\x27\x66\x6a\x6c\x6b\xa8\x11\xf5\x8d\x48\xc9\x3b\x27\x57\x49\xda\xc2\xf3\x65\x33\xe5\x4b\x0c\xf8\x12\x0a\xe8\x73\x1e\x78\x8d\xfa\x6c\x03\x2b\x69\x88\x80\x53\xbf\x31\x63\x34\x51\x8b\xf2\x0b\x5e\xfb\x73\xcd\x78\x8b\xab\xf5\xe6\x86\x5a\xe1\x95\x54\x99\xa0\x62\x9b\x6b\x82\x92\x3a\x00\x09\x03\x43\xb1\xc9\x53\x54\xf7\x01\xcc\x30\x92\x63\xae\x8d\x25\x7f\x79\xb8\x35\x3a\x35\x07\x05\xfc\xbc\xc4\x64\x4d\x76\x60\xc2\x43\x12\xec\x5c\x25\x44\x57\x57\x49\x11\xdd\x9a\xad\xc6\xca\x5d\x36\x61\x73\x65\x51\xf7\x8a\x4d\xd8\xfb\x3f\xcc\xb6\xc6\xbb\xc1\x37\x26\x45\xee\xef\x69\xdd\x1a\x3b\x20\x2d\x45\x1b\x00\x0d\x5d\x52\xb4\xed\xad\x83\xf9\xfa\x34\xda\xb4\x01\x9e\x34\xda\xa0\xd5\xdd\x1f\x3e\x7d\x65\xd9\x4c\x40\x27\x8e\xb6\x29\xd8\x5c\x7e\xf8\xec\x15\x88\xc5\x77\x7f\xf8\xfc\x15\x65\xc8\x99\xb4\x5f\x5f\xaa\xd7\x7a\x25\x4d\xb9\x2f\xec\x80\xda\xb9\xca\xbb\x5e\x5f\xd7\x66\xb4\x3e\xef\x17\x1a\x9a\x80\x33\x88\x48\xcc\xdb\x01\xee\x64\x36\xfd\xb9\x08\xe3\x94\x28\x90\x66\x68\x86\x26\x54\xf2\x49\x68\x82\xef\x71\x6c\xd7\x02\x03\x8b\x24\x83\x21\xc0\xce\x69\xbe\x3d\x7f\x47\x91\x67\x58\xfd\xe8\x61\x84\x8b\xaf\x2b\x5c\x3a\x2c\xc6\xe9\x06\xfe\x8e\x7f\x7d\x45\xeb\x42\x40\xfc\xe8\x47\x32\xde\x40\x23\xc7\x3e\x58\x8c\x50\xa0\x19\x51\x1c\x48\xa8\x18\x67\x53\xfa\x06\x27\xdc\xa7\x5f\x64\x46\x52\xe3\x84\x67\x44\x31\xf7\x49\xe5\x5e\x13\x4c\xb8\xd6\x73\xad\x36\x7d\x9d\x7f\x3b\xd8\x53\x9f\x56\x17\x62\xec\xd0\xc5\x55\xcc\x40\x8c\xf0\x11\x00\xa3\x41\xe2\xf7\x01\x88\x67\x24\xbd\xe0\xf0\x84\x2a\xbf\xbb\x1b\xe6\x26\x80\x49\xbd\xe4\xed\x72\x5e\xbb\xda\x53\x30\x32\xcb\xb5\xc2\xec\xfc\xce\xde\x81\x5d\xc5\xbc\x70\xcc\xfd\x48\x19\xe9\xc4\x56\x59\xcc\xb5\xe0\x24\xa9\x0c\xcf\x63\x2f\x5c\xf7\xc9\x05\xef\x81\x20\x00\x12\x12\x10\xf7\x38\x56\x0f\x45\x2c\x8c\x3d\x23\xbc\x4b\x5a\xd4\xdd\xda\x05\x6a\x90\xd0\x40\xe2\x0b\xba\x92\xd6\xe8\xe9\xd0\x4b\xb2\x29\x40\x2d\x0c\x94\x56\xcb\x62\x26\xf8\x32\x31\x94\x7e\x43\xb1\xd8\x51\x86\x00\xc1\xef\x3e\x3e\xc5\xba\xaa\x87\xd5\x69\x55\xc7\x3b\x9e\x39\x4a\xb9\x39\xaa\xeb\x9c\x2f\xe0\x1b\x75\x48\x62\x5f\x72\xe6\x80\xeb\x94\xa6\x31\x98\xca\xa7\xbf\xad\x0a\xaa\x88\xe1\xa0\xea\x9c\xe1\xe3\xef\x01\xe1\xe9\x38\x07\x33\x70\xc6\x56\x71\xed\x99\x75\xf1\x07\xf1\x07\x74\xf6\x87\xe4\x5b\x12\x58\xe4\x3d\x91\xe6\xa7\x3b\x67\xab\x78\x5f\x5d\xd1\x5a\x8b\x65\x22\xe1\x3d\x30\x42\x6c\xa8\x7b\xc5\x5a\xec\xa0\xe8\x0c\xcb\x24\xef\xe4\x86\x5c\x83\x6a\x94\x3e\x91\xb5\xc0\xcb\x71\x59\xfc\x71\xa4\xa0\x30\x67\xaa\x16\xdd\xf6\xfc\x0c\x82\x11\xce\x0f\x7d\x8b\x89\x94\x65\x23\x66\xd3\xf5\x9b\x22\x96\x91\xe4\x13\x1a\xb1\x14\x60\x2c\x3b\x34\x91\x20\x82\xb8\xd6\x53\xbe\x34\xd4\x0f\xda\xf9\x8a\x0c\x0a\x5f\x9b\x6c\x2d\x70\xaf\x39\xc1\xad\x70\x1a\x04\x6c\x5c\x48\x0a\x3c\x56\xe8\xda\xd0\xf5\x32\xeb\x7b\x03\xf2\xd7\x0a\xff\x93\x8f\xc9\xff\xae\x4a\x19\x4e\x3e\x27\x02\x25\x09\x92\x38\x15\xfe\xe9\x56\x6e\x50\x5b\x37\x36\x70\x85\x3c\x43\xbb\x82\xee\x28\x29\x25\x29\xe3\x5c\x0d\x90\xd4\x81\x65\x19\x8c\x1f\x86\x58\xeb\x2b\xd8\x48\xb2\xb7\xfb\xd0\x57\x5a\x28\xdc\x8c\x9c\xcc\x4a\x04\x56\x9c\x2d\x3a\x44\x15\x57\x5a\x55\x2e\xf4\xb9\xde\x8e\xa4\xf9\xe1\x11\xd0\xd3\x3c\xce\x04\xb8\xfa\xf1\x0f\xde\x93\xa0\x4d\x00\x64\x5d\x6c\xb4\xb5\x5a\x00\x4a\xa9\xaa\xbe\x88\x6f\x73\x20\x7f\x9f\x50\xc7\x9f\xe0\x95\x5e\x09\x29\xfc\x3b\xfa\xc1\x04\x51\x80\xc7\x92\x00\x2b\x13\x66\x76\x9e\x8e\x3d\x6f\xe3\x4f\x82\x80\x25\x66\x9f\xc0\x11\x2a\x27\x6f\x22\x2e\x7f\x89\xa1\x96\x8e\xe0\xd2\xdf\x44\xfa\xa5\xf4\x73\x5f\x2a\xfd\xb6\xba\xdf\xba\x3b\x9d\xbb\xa7\x9e\x81\xd4\xff\xcd\x3d\x43\xcb\xbf\x7f\xe5\x10\x11\x24\x88\xb5\x23\xa2\x74\x80\x4f\xe4\x07\x73\x91\x71\xa5\x54\xb6\x0e\x5f\x50\x3a\x87\x23\xe4\xb4\xd1\xe2\xa6\x67\x5c\x15\xb9\x80\x01\x23\x68\x2d\x51\x24\x0d\x5d\xbd\x8a\x5d\x3f\x12\xcc\x26\x24\xf1\x69\xbd\x54\x6a\x9e\x13\xd0\x2e\x13\x00\x01\x5f\x07\xff\x60\x8f\xcc\x37\x46\xc8\x22\x15\x48\x0d\x93\x8c\x82\x27\x9d\xfb\xca\x1d\xc9\xb8\x31\x70\xa7\x0a\x8e\x03\x19\x68\x29\x03\x20\xb9\xdb\x4f\x3a\xe9\x15\x79\x1b\x6d\x7a\xa9\xc2\x41\x2d\xff\x42\xd6\x37\x3f\xe7\xe0\x19\xc7\x56\x5c\xd4\x8a\xb9\x15\xd4\x16\xc8\x80\x2e\x5f\xa3\x1f\xfb\xb1\x8f\x25\xf1\x55\xd1\x7a\xd8\x60\xc2\x58\x0e\x33\xf0\x0e\x37\x40\x0b\xb7\xa8\xec\x4b\x74\x48\xc0\x46\xa3\x8f\xfc\x96\x02\x49\x84\x6f\xc4\xca\x94\xdd\x02\x53\x57\x78\x22\xa1\xba\x35\xd9\x1b\x08\x3c\x71\xee\x19\x52\x58\x0a\x20\x99\x2c\x53\x42\x1e\x86\x94\xa4\x79\x8b\x41\x10\xf5\x48\xea\xf7\xd9\x4e\x83\x2a\xf4\x60\xcf\x42\x0b\xae\xc8\x31\x94\x97\xec\x4e\x30\x73\xec\xa4\x3b\x39\x38\xd8\x4c\x6a\xc6\x01\x73\x41\xe9\x89\x7e\x4e\x2c\x75\xc1\xa1\x0a\xd5\x50\x09\x3a\xa5\x04\x86\x51\x6b\xe6\xcc\x13\x5e\x8f\x9d\x1c\x51\x6a\x43\x74\xc8\xae\xee\xe5\x3e\x00\x87\xb1\x59\xf8\x4f\xb7\xfc\xc8\x2d\x0a\x01\x64\x43\x96\x53\xc9\x61\x84\xd3\xa0\x3b\x5e\x15\x1f\xff\xdd\xdd\xea\x3e\xa2\x08\xdf\x76\x13\x1b\x91\x8f\x35\xcc\x1c\x33\xe9\x0c\xe1\x9a\xb4\xc3\x26\x8b\x53\x22\xd0\xb0\x6b\x0d\x7c\x5c\xde\x5b\x44\x6a\xbe\xa0\x9b\x62\xfd\x4f\xf4\x65\xaa\xa3\x88\xf5\x83\x07\x14\x15\x79\x85\x8a\xd9\xff\x0a\x63\x47\x93\x61\xcd\xba\x1a\x01\x93\x48\x0b\x43\x48\xaf\xde\x4d\x46\xf7\x2c\x7f\xde\xab\x93\x29\xd2\x75\xc0\xad\xbf\xc1\xfb\x05\x03\xd3\x81\x5b\xe5\x15\x89\xfd\x76\xeb\xfd\x6a\xc8\xbd\xc0\xf3\x1b\xcb\xa4\xef\x58\x2b\x34\x05\x08\x73\x80\x2f\xf6\xbf\x0e\x63\x93\x7c\x98\x18\x2c\xe3\x6f\x6e\x95\xe7\xb8\xc2\xe2\x63\xc3\xb9\xf1\x9a\xfb\xe9\xa2\xb4\xea\x9d\x26\x2b\x2a\xf7\xa9\x81\xa4\x93\x35\xa7\xaa\x43\xb5\x3b\x65\xac\xf3\xa6\x10\x4c\x63\xc7\x76\x64\x4a\x11\x44\x8e\x4e\x12\x22\xac\x9a\xad\x61\x6f\xe2\x7b\x0a\xfe\xf7\xa0\x6d\x1f\x54\xd5\xbd\x99\x75\x47\x2e\x1d\xac\xcf\xf1\x6e\x75\xde\x6d\x3d\xa7\xa7\x51\x1f\x8e\x13\x0d\xd4\x3c\x07\x1f\xd6\x88\xb6\x88\xe0\xa5\xaf\x55\xb1\xf1\xa1\x5d\x86\x3c\xb4\x04\x15\x8f\xd0\x63\xb4\x26\x64\x67\x8f\x12\x09\xcc\xa3\x78\x3c\x97\x65\x62\xb4\xf9\x16\x66\x5c\x7d\xf4\x49\xd8\x5e\xd9\x5d\x6f\x87\xa7\x84\x36\x93\x59\x1e\x80\x84\xbb\x03\x0f\x82\x61\x9e\x5f\x9e\xc0\x62\x9e\x55\x26\x12\xcc\x23\xf6\x6c\x7c\x41\x9f\x80\xec\x8e\x81\x96\x48\xf8\x67\x58\x67\x45\xa1\x88\xa8\x37\x71\xcc\xb3\xcf\x4a\xe1\x9c\x7a\x7e\x9a\xe5\xa1\xe7\x26\xe6\x40\x40\x9a\xc0\x43\x8e\xd9\x87\x73\x45\xbb\x0f\x4b\x4e\x15\x09\xa0\xdc\xe5\x5f\xa2\x9c\x44\xc4\x9e\xf0\x0f\x3e\x40\xbe\xd2\x95\x31\xaf\xed\xea\x1f\xf4\x86\xfe\x08\xe5\xdb\x7a\xe0\x4f\x8f\xf1\xbf\x92\xb9\x34\x7c\x06\x7e\xb3\x2e\x0f\xe7\xba\x7e\xb8\xff\x19\xbe\xab\xa8\xbf\x0a\xd9\xf5\x7e\xfd\x0e\x95\x9f\xff\x05\xce\x27\xee\xda\x39\xdc\xd8\xdb\x68\x2e\x3e\xcc\xa8\x38\xe3\xd4\x5e\xe1\x93\x84\x7c\x1c\x4e\xae\xad\x0b\x17\xd6\x92\x2d\x50\x42\x24\x90\xc6\xa7\xe1\x40\x83\x0e\x12\x00\x9c\xed\xda\x39\x87\xa4\xe1\x40\x13\x73\xd9\x32\x74\xed\x42\x1f\x57\x2f\xe4\x0f\x40\xb1\xf3\x10\x41\x39\xad\x28\xfe\x82\xa1\xf6\xd4\x45\x81\xcd\xea\x14\x9a\x3b\x46\x21\xd7\x54\x8c\xf7\x5a\x1a\xbb\x89\x71\xf5\x51\xe4\x29\x1a\x65\xe9\xf6\x9f\xa6\xa3\xf3\x73\xa1\x54\xe8\x14\x38\x8d\x3c\x9e\x65\x47\x82\x9d\x21\x27\x02\x4a\x82\xdc\xb1\x7f\x32\xab\x04\x66\xfc\x27\x62\x67\xe3\xd8\x35\x5f\x4b\xec\x11\x4f\x9e\x7d\x91\xc3\xf6\xa7\xe1\x73\x04\xfd\xc4\xea\x9e\xd5\x74\xef\x03\xb0\xdf\x6c\x14\x64\x4d\x1d\xe4\x13\x13\x43\x35\x4e\x19\x6d\x81\x69\x12\x1e\x49\x25\x06\xf7\xab\x7e\xa7\x66\x76\x8f\x12\x87\xc0\x79\x5b\x7f\xba\x7a\x20\xa7\x18\xb1\x01\x2e\xf6\x2a\x24\xd3\x95\x50\x72\x07\xa0\x4b\x43\x86\xd1\x28\x94\x1b\xb3\x97\x55\xa4\xa1\x3b\x3c\xc0\x67\xc9\x00\x9e\x3e\xe0\x0c\xd1\x43\x70\x76\x24\x71\xae\x4d\xb7\xdd\x41\x43\x4c\xf1\xc6\x4a\xf8\xb7\x9d\x1b\x1d\x69\x9b\x28\x57\xbe\x23\x42\xc7\xc1\xeb\x18\xf6\x39\x64\xfc\xb5\x8b\x8f\x10\xef\x3a\x49\x91\xec\xb9\xae\x2f\x26\xbb\x14\x81\x8e\x23\x8b\x03\x87\xf6\xe1\x7e\x7e\x13\x34\x49\x00\x96\xf7\xcb\x7e\x5c\x1c\xf5\x9b\xb9\xe7\x61\xb6\x8e\x91\xdc\x0a\xf2\x63\x75\x54\x50\xb6\x8b\x9a\x72\xbd\x5b\xc9\xf1\xc7\x34\xed\x28\x10\xf8\xa3\x44\xb9\x5b\xe8\xc8\x7f\x13\xf9\x68\xa6\x9f\x14\x51\x7b\x78\xca\xe4\xcf\x80\x98\x74\xa1\x67\x4e\x37\x7a\xd5\x48\x50\xe8\x51\xe6\x85\x86\x1b\x3f\x98\xbe\xe3\xbb\x17\x66\xaa\x77\x18\x68\x42\x59\xf3\xd4\x6e\xff\x57\x34\x93\x78\xc9\xe8\x3d\xe3\x7f\x76\xdb\xf8\xec\x48\x37\x33\x7c\xcf\x3e\xd8\xec\x50\x0a\xac\x6f\x0b\x57\xb5\xf2\xd9\x17\x6e\x1d\xf0\x73\x1e\xf0\x3a\x76\x6c\x6d\x49\x37\x9f\x0d\x13\x8b\x5c\x48\x7d\x27\xbe\x6b\x66\x86\x1c\xfa\x38\x84\x28\x78\xfe\xc0\xc5\x10\x14\x53\x18\x16\x16\x12\x21\xe7\xde\x70\x18\xd5\xe2\xc3\x01\x6d\x1a\xaf\x33\x3d\x42\xac\xa4\x25\x2e\x9e\x9c\x3b\x7d\x8d\x56\xbd\x06\x16\xdd\x5d\x03\xdf\xa0\xbb\x56\xe1\xc8\x3b\xe7\x03\x9b\xe9\x8d\xdd\xaa\x31\x1d\x01\xba\xf2\x4d\xd7\x4c\xc9\x40\xdc\x1d\x91\x07\x13\x45\xb7\x7b\xec\x1b\x3b\xeb\x13\xeb\xeb\x62\x88\x42\xe0\x06\xd0\x36\xef\x43\x5a\x80\x7e\xd0\xba\x4e\x02\x7a\x1f\x6e\x17\xf1\x6d\x44\xa1\xa2\x33\x91\x45\x40\x45\x13\x65\x4e\xeb\x50\x3f\x79\x17\x0e\xff\xa2\x0e\xd8\x09\x81\xb3\x67\xc6\x96\xe1\x0b\x2a\xc7\x48\x25\x7a\x80\x22\xa0\x04\x56\xac\x29\xad\xc2\x9a\x73\xeb\xc5\x49\x34\x98\x66\x4a\xba\x8c\x49\x02\x17\x4a\x78\x96\xb8\xcc\xa5\x51\x5d\x86\xed\x02\x7e\xce\xcb\x14\x58\x6f\x98\x8f\x8a\xe0\x2b\x9c\x55\xc6\x70\xf1\xf5\x26\xac\x15\x87\x65\xc3\x25\xef\xb8\xb0\x10\x9c\xe5\x5e\xc7\x01\x62\xf4\x16\xfd\xf4\x38\x6b\xb3\x6e\x7d\x28\x64\xc5\x2c\x29\xd2\xb5\x92\x24\xc8\x02\xc4\x92\x6e\x20\xdf\x73\x34\x1e\x95\x54\x97\xc3\x0b\x8a\x3f\x72\xc5\xf0\x25\xaa\x1e\xf2\x77\x57\xe8\x63\xcc\xd9\xd2\x34\x26\xdf\x98\x4a\xd3\xe7\x67\x17\x2f\xe4\xae\x40\xcd\x24\x56\xc0\x43\x44\x59\xe1\xc3\x55\x0d\xa7\xac\x83\x51\xfa\x65\x71\xa1\xea\x8d\x62\xff\x1c\x4c\xb9\x40\x51\x5c\xb7\xfa\xce\x16\xe4\xc8\x04\x1b\xe0\x20\xc2\x41\x59\x1e\x86\x02\xe6\xa0\x3c\x77\x7c\xc5\x04\xda\x79\x4d\xe7\xfb\xca\xd5\x89\x40\x4a\x1b\xba\x93\x45\x2a\xa0\x7b\x2f\xb9\x19\x59\x95\x8e\xfa\x55\xef\x72\xe3\xd2\x15\xea\xad\xc2\xd4\x2a\x93\xc8\xa2\x83\x53\x70\xc8\xef\x06\x16\x6f\xf3\x8c\xf5\xcf\xdb\x2f\x9d\x56\xe5\x22\xde\x8b\xb9\x6a\xe4\xd5\x21\xee\x1d\x36\x7a\x6f\xc6\x57\x61\x01\x11\x98\x68\xb5\xc1\xe8\x00\xca\x2c\x3a\xa9\xb4\xe3\xfc\x62\x2b\xc9\x33\x36\xad\xb0\x31\xd5\xcd\xea\x05\xe6\x4b\x9d\x4a\x0d\x09\x7e\xcb\xa3\x07\xc4\xaf\x5e\xa2\xfe\x85\xc2\x60\x50\x5f\x82\x31\x9a\x3b\x3c\x94\x74\x0f\x5f\x07\x2d\x9a\x26\x8b\x4b\x70\xd4\xc5\x10\x70\xea\x4c\x72\x06\x53\x8a\x5e\x17\x72\xc4\x69\x09\x25\xb0\x86\xc2\x1a\xfa\x38\x24\x38\xcb\x2f\xbe\x9c\xcc\x96\x8c\x3c\x2e\x28\x19\xb7\x18\x37\xc5\x45\x5b\xb3\x98\x87\x71\x12\x47\x45\x1c\xc2\xc7\x9a\xa9\x76\xd7\x38\x17\x54\xb5\xe3\xd4\x92\x24\x0c\x8a\x0f\x60\xdc\x00\x8e\x1b\xe9\xea\x85\x83\x09\x91\xfd\xa4\xc5\x25\x88\x4e\x67\x96\x04\x10\x3c\x4e\x30\xdb\x55\x99\xc4\xf4\x4d\xab\xca\x1d\x29\x2d\xa2\xf8\xff\xb4\x5a\x44\xc0\x44\x6c\xbe\x8d\x08\xb0\x7a\x1c\x49\x81\xd3\x8e\x8b\x47\x30\x7a\xba\xca\x96\x20\x42\x57\x80\xdb\xcd\x15\x8b\x68\x24\x3c\x93\x88\xec\xc8\x4e\xdd\xf1\xa3\x5e\x36\x89\x47\x77\x0f\x22\x04\xa2\xc4\x4f\xe6\x44\x2f\x09\x08\x0f\xc7\x38\xb3\x45\x3c\xef\x99\x64\x70\xd6\xcb\xbe\xf8\xf8\x0f\x17\x67\xcf\x8e\x64\x9a\x6f\x1f\xbc\x79\xf3\xe6\x01\xb6\x7e\x30\xf6\x0d\x5a\x5f\x2a\x5d\xc9\xbc\x8f\xf0\xe9\x81\xaf\xf4\x50\x7e\xf9\x09\xfc\x7b\x7f\x59\x90\x67\x44\xca\x17\xbb\xcb\xc0\xdb\x6d\x94\x98\x9d\x0f\xd3\x30\x4f\xcc\xbf\x45\xd7\xcc\x8c\x80\xc9\xe1\x0a\x8f\x49\xb8\xec\x7d\xf1\xf5\x8e\xdb\x9a\x7a\x47\x87\xb8\xcd\xe8\x72\x2c\x7b\x8d\xbe\x3c\xf8\x4f\x5c\x0e\x17\xe5\xeb\x69\xba\x0c\x9f\xcb\x30\xab\x08\xf4\xac\x8b\x9f\xb6\xd8\xff\x5a\xa2\x8b\x73\x56\xcb\x9b\x5f\xc3\x07\xda\x48\x46\x97\x3f\xb2\x6a\x44\x76\x76\xba\x33\x4a\xae\x44\x31\x5c\x08\xaa\x7d\x9d\xf7\x45\x7e\xa4\xa6\x6b\x6e\x56\xc7\xc0\x01\x63\x78\xbf\xf4\x29\x7b\x89\xdf\x65\xeb\x96\x79\x5b\xca\x04\x0a\x7f\xf6\x37\x64\x4d\x13\xe7\x73\x82\x9d\x93\x47\x50\x42\xf0\x72\xc8\xa4\x03\x4e\xa9\x41\x3e\xbc\xfa\x41\xab\x5d\x96\x6a\x3c\xca\x64\x38\x75\xf9\x52\xcd\xb4\x65\x64\xe7\x9a\xff\xc6\x50\x92\x78\x01\x7c\x13\x48\x6d\xc9\x3a\x19\x6f\x67\x00\x01\xf9\xcf\xce\xc2\x86\xdf\x84\x02\x92\x8a\xbf\xdc\xa9\xeb\x67\x85\x69\x4e\x89\x2b\x59\x70\xf3\x62\xef\x54\x1f\x8e\x79\x38\xac\x1e\xe8\xc2\x5d\xd0\x55\x49\x94\x11\x65\x5f\x35\x65\xf3\x90\x7a\x10\xe9\x70\xd7\xdb\x33\x0a\xf5\xe1\x33\x50\x69\x4e\x3d\xc3\x8c\xb7\xe7\xa8\xec\x94\x91\xf7\x1c\x94\x27\x52\x93\x3b\x5d\x6a\x26\x83\xb9\xbb\x34\x38\x40\x4d\x25\x16\xd7\xb5\xd3\x06\x4e\x3a\x66\x57\x2a\xbc\xa8\x91\xea\x63\xde\xa5\x53\xbe\xdf\x31\xdb\x37\x79\x59\xd9\x94\x8f\x4b\x4f\xe7\x94\x9a\xf2\xa9\x09\x04\x35\xb0\x85\x89\x87\xc5\x05\x56\xa3\x78\x75\x32\x78\x0d\xda\xc5\x40\xb8\xcd\xe5\x3c\xc7\xb3\x3a\x28\x1e\x82\x83\x21\x39\x88\x33\xfb\x94\x3f\xea\x93\x1f\xe9\x2b\xd5\x75\xac\xd0\x8d\xf5\x6d\x20\x7d\x36\xe6\x26\x49\xa4\x04\x73\x7b\x44\xa5\xe9\x1a\x43\x4d\xf6\xea\x94\xac\x05\x5e\xdd\x64\xd6\x71\x5f\x4c\xe4\xd9\x20\x47\x57\xac\x20\x03\x1c\x07\x97\x98\x00\x97\x5c\xe3\x03\x89\x5d\x64\xbd\xb1\xe6\x72\x78\x03\x48\x1a\x4b\x67\x89\xb5\x60\x66\xe6\x73\x57\xe3\x64\x7e\x87\x82\xf8\x39\x9e\x22\x9a\xc4\xef\x09\xe6\x8f\x3b\x4f\x23\xfa\x0f\x74\x3e\x17\xd3\x4f\xe9\xa5\xa3\xb8\xfe\x04\xea\x07\x63\xf6\x27\x5d\xbf\x37\x76\x7f\x0e\x72\xf3\x5a\x76\x3f\x42\x95\xe1\xc1\x4c\xcb\x89\xe2\xfd\xe0\x04\x83\x26\x5e\x42\x5c\x9c\x42\xd7\xa5\x9d\x98\xd1\xc1\x1e\xf0\x55\xb9\x75\x42\x3e\x02\x64\x7e\x1a\x87\x5c\x57\xaa\xfa\xf2\x72\x09\xb2\xe2\x1b\x8b\x51\xf2\x63\x5f\x72\xee\x7d\x79\xb4\xb0\xf8\x06\xf1\x80\x2b\xa1\xd3\x06\x60\xdb\x4e\xd5\xfc\x9b\x2d\xaf\x2b\xfe\x87\x8b\xc8\x32\x9e\x3e\x8b\xe1\x0c\xe4\xc5\x23\xa8\xc0\x67\x22\x24\x41\x42\xef\x0d\x6a\x68\xaf\xcc\x9b\x35\xfe\x45\x51\xfe\x76\xf5\xd4\xd0\x4b\x28\x04\xd8\x61\xff\xab\xc5\x9c\x7a\x44\xb5\xb1\x17\x69\x82\x15\x79\x1b\xdc\xdd\x87\xa9\x50\xd4\xc4\xdd\x20\x68\xe5\x70\xe5\xae\x2e\x56\x25\x6b\x13\xec\x46\xa8\xa1\xe3\xef\x9a\x91\x23\xae\x20\xe0\x02\x82\xf3\xf0\xbb\x67\xfc\x83\x82\x12\x28\x2d\x18\xc2\x4d\xbc\x1d\x16\x2e\xce\x61\x39\x8d\x77\x70\x5f\x38\x20\x85\xfe\x66\xd2\xe2\x1e\x53\x75\x15\xaa\x5e\x5d\x0e\xab\xe7\xca\x96\x23\x3e\xf1\xe7\x8a\xe1\x86\x76\xcd\xa4\x45\x71\xde\xef\x7f\x81\x4b\xce\x57\x01\xd8\x20\xec\x4f\xf1\xd8\xa2\xf7\xbb\x2b\x27\x23\x1b\x0b\x1f\xbe\x4c\xa1\xb8\xb4\x0a\xcb\x4e\xc0\x45\x2e\x24\x44\xb2\xee\x5a\x97\x92\xb0\x22\x6c\xbf\xce\x26\xcb\xb8\xb3\x8e\x5f\xbc\xe4\x07\x90\x92\xf5\x06\xf3\xdd\x39\xe6\x82\x83\xfb\xdd\xc1\xa7\x40\x73\xe4\x40\xe1\xf9\xfc\xae\x53\x39\x2c\x93\x79\x27\xa6\xbf\x81\x22\xaf\x0a\x36\x7e\xa0\xf3\x1e\xf0\x97\x5d\x81\x17\x3e\xe9\x4b\x80\xa1\xc7\x78\x36\x74\x6d\xa8\x8a\x37\x57\x6a\x28\xf0\x15\x0a\xa4\x83\x78\x2a\x7a\x38\x8f\x55\xe8\x7c\x50\xdb\x34\xa1\x08\x86\xc6\x84\x8f\xc4\x00\x3f\xe2\x7c\x8a\x49\x1b\x1f\xb3\xe7\x72\x92\x51\xcb\x10\x02\x74\x84\x4c\x50\x89\x86\x64\xfc\x44\x34\x8c\xbe\xb7\x92\x07\x0f\x1f\xfa\xf1\xfd\x31\xb1\xc7\xff\xfa\xb2\x84\xbc\x77\x83\x2f\x7f\xd3\xd7\x94\x51\x9e\xd2\x29\xf6\x31\x5a\xd0\xa3\x47\x2f\xdd\xf3\x46\xe1\x13\xf2\xe2\xf4\x0e\x0a\xb9\x80\x90\x37\xdc\x72\x39\x83\x4f\xd3\xa4\x17\xee\xb1\x99\x5d\x86\x60\x51\x1b\x01\xc3\x4b\xcc\x45\x03\xe3\xb2\xfb\x2c\x31\x93\x11\x9a\xd0\x83\x31\xa8\xed\x65\x15\x8c\x62\x5d\x93\xbc\x66\xc4\xa1\xf4\xa4\x09\xf5\x0f\x7a\x85\xe9\x25\x16\xd9\x30\x01\x46\x1f\x46\x23\x94\x9f\xf2\xc3\x43\x2f\xc8\xf0\x09\x12\x8b\xed\xe4\x20\x11\x56\xb9\xa3\xc4\x4e\x90\xd3\x33\xc8\xbc\x95\xab\x45\x9a\x15\x5d\xbc\xb8\xaa\x91\x67\xa2\xb2\xb4\x2a\x5e\x2a\xf2\x81\x34\x95\x58\x30\xa9\x11\x69\x69\x40\x18\xbc\x22\x1f\x79\x6e\xf2\xa6\x6e\x1a\x56\x98\xe8\x28\xb7\x34\xec\x1d\xe9\x18\x00\x7d\x40\xf6\x36\xc5\x0d\xc0\xfa\x0d\x90\xf6\x62\xf0\xd7\x83\xfe\x7a\x3a\x4a\x48\x32\xcf\x9d\xfb\x33\xc0\x03\x54\x85\x54\xc0\xcc\x88\x37\x1f\x4d\xce\xc3\x5a\x35\x18\xa5\x7c\x23\xe9\x45\xbd\x37\x5d\x3d\xfa\x5d\xf5\x97\xb9\x0b\x93\xc5\x19\x86\x89\xc8\xeb\x46\x16\xb8\x33\xf9\x6b\xb1\xf8\xc1\xf4\xdb\x57\x21\xe5\x74\x16\x05\x93\xbe\x5d\x8c\xb5\x7c\xda\xc6\xa4\xaa\x4f\x0a\x92\x6b\x38\xa3\x9e\xb3\xc4\x03\x5b\x74\x64\x81\x3f\x4d\x92\xf8\x92\xf5\x36\xe5\xc8\xba\x45\xce\x3d\xc0\x99\x07\x96\x2e\x70\x10\xd3\xd7\xb2\x7b\x5f\x3a\x3b\x8a\xe6\x63\x66\xbd\xf2\xfc\x3c\x7a\x98\x69\xb3\xa3\x24\x99\xe4\x74\x80\x19\x87\xf1\x65\x56\x7c\xf8\x0b\x8d\xc3\xe8\x46\x57\xe3\x1b\xb9\xc7\xcd\x76\xdc\xff\xd2\x52\x0e\x6d\xe0\xc4\x29\xab\xb1\x5d\x50\x72\x53\x51\xeb\xda\x95\x98\xbd\xa4\x34\x49\x99\x9a\xbe\x7d\x13\xc5\x38\x62\x7f\xf1\x8b\x36\xdc\x33\xc1\x65\xe2\x67\x12\x12\x6a\xbb\x0d\x90\xda\xf4\xe1\x70\xf5\x70\xe8\x91\xdd\xc5\xf0\x69\x66\x12\x05\x11\xe8\x2c\xb7\x12\x98\x22\xdc\x91\xa4\x6d\xe6\xf7\x68\xc8\x91\xd0\x2e\xc3\x30\xae\xc3\x47\x2c\x87\xe2\x73\x75\x24\x46\xbb\x76\x5f\x73\xd5\x24\x48\x98\x44\x72\x54\x67\x53\xb2\x00\x74\x81\x12\xfe\x8a\x35\x5b\x51\xa6\x68\x7e\x38\xf4\xeb\xf7\x04\x97\xa7\x9a\xf2\x7f\xd7\xe8\xf2\x64\xe8\xe5\xbf\xcd\x2d\xe2\x50\x9e\xd3\x58\xc1\x19\x12\x9e\xfa\xd2\x03\x99\x4f\x0f\x7a\x28\x04\x01\xf6\xe0\x1c\xd3\x26\x51\x88\x72\xfe\x1a\x57\x96\xb0\xf9\x40\x1e\xcb\xdc\xe5\x01\x5a\x65\x1e\x0f\xca\x7b\x3c\xdc\xea\xf0\xa0\x72\x78\xe7\x33\xce\x32\x6f\x1e\x1f\xce\xbb\x39\x99\xfc\x6d\x39\x5e\x0f\x79\x0b\xa4\x64\x25\x17\xeb\xf3\x64\x35\xb4\xce\xdb\x9b\xdc\x9e\xbe\x66\x0a\x81\x7f\x6b\x1e\x9b\x03\x46\xbb\x5b\x13\xda\xe4\x73\x46\xfa\x34\x93\xd5\xe6\xf6\x85\x7a\xa2\x36\x93\xf7\xfb\x6f\x4b\x75\x33\x67\xc7\x9a\x58\xbb\xac\xbc\xe8\x4b\xe7\x59\xf9\x0c\x1b\x9c\xb4\xcf\xe9\xe1\x66\x9f\x4a\x0e\x10\xac\x88\xba\xe5\x07\x5f\x08\x3f\xb3\x37\xe5\xca\x67\x58\x4e\xcb\x1d\xb5\x64\x7b\xba\x33\x79\x87\x4a\x3d\x3d\x5b\xb3\x3a\x9f\x2f\x8f\x5a\x63\xe3\x7c\x88\x28\xc9\x8f\x2b\x12\x2b\xe3\x53\xba\x8d\x7c\x29\x26\x9a\xd4\xaa\x59\x9d\x95\x63\x83\x02\x85\x2b\x67\x81\xd7\x85\xff\xfb\x62\xe0\x09\x28\x32\xa6\x0e\x45\x72\x35\xba\x18\x07\x5d\x6a\x7e\x65\xc0\x3d\x4b\x35\xc9\xce\xed\x1c\x38\xe0\x06\xa5\x5c\xb9\xc2\x46\x92\xfb\x29\x5b\x3c\x45\x56\xf9\x22\x1f\x03\x5f\x08\x0b\x57\x2f\xa6\xe3\x5a\xf0\xcd\xbb\xc4\x04\xe5\x2b\x7c\x8e\x4d\xf5\x0f\xac\x96\x42\x9e\x2c\x9b\x39\xa4\x08\x79\x21\xc9\xb5\xb6\x3a\xf6\x69\x35\x9f\xc0\x09\x00\xba\x30\xad\x13\xa5\xf4\xf0\x37\x91\x4f\xfa\x85\xaa\x76\xce\xb8\xd3\x4f\x5f\xd3\x06\x94\x55\x4b\xe9\x90\x78\xfd\xe9\xa8\xa7\x64\x55\x50\x33\x95\xa6\xc3\xba\xa4\x4f\xa5\xda\xa9\x77\x9c\x55\x86\x06\x9d\x4b\x75\xb9\xa1\xeb\xb9\xc5\x97\x03\xd0\xd4\x1f\x14\xb0\x70\x8a\xac\x9b\x93\x3c\xbb\x9e\xce\x29\x7f\x4c\x67\x5a\x75\x0e\x20\xd9\xcc\xc2\xa8\x14\x7a\x51\xe8\xb9\x77\xfe\xa2\x59\x3a\x95\x4f\xff\x80\x94\xba\x86\xdf\x1c\xce\x3c\x59\x78\x26\x2e\xc5\x44\x3c\xba\x77\xaa\xaa\x32\x1e\x07\xcd\x0e\x07\x2e\x60\xfe\x4c\x67\xc4\x4e\xd8\x11\x3c\x34\x96\x9f\x1a\x60\xb0\x0c\x66\xc0\xec\x6f\x19\x51\x38\x40\x11\x82\x5d\xc8\x55\x3f\xe8\xef\x16\x1a\x49\x4e\xef\x8c\x8e\xf0\x2c\x1d\x17\xc9\xe7\xd6\x66\xec\xdd\xef\xb9\xd2\xb9\xbe\xcb\xdf\x86\x0c\x66\x72\x1b\x25\xbd\xa2\xfa\x8e\x98\x35\xa1\x1a\x81\x7a\x3e\xf5\x4e\x09\x49\x83\xa8\xdb\xb9\x1b\xe0\x60\xdd\x90\x09\x32\xc1\x26\x47\xf1\x0f\x50\xf8\xc2\x43\x43\x4f\x4e\x26\xdf\x84\x91\x5b\x9c\x72\xef\x35\x24\x5b\xb6\x9c\x99\x4c\x14\x30\x26\x5c\x27\x5e\x3a\x9c\xb4\x51\x6e\xa0\x84\x17\x88\xe8\x45\x8e\x45\xa7\x81\xed\xa5\x64\xbe\x3a\x4a\x8d\x17\xdf\x30\x42\x7a\x3c\x2e\x7c\xe1\xbc\xe4\xa2\xc7\x88\x6f\xa1\x32\x6e\x8c\x94\xd4\x4c\x27\x33\x7c\xd0\x64\x34\x53\xa4\x68\x32\x4f\x93\xc9\x34\x34\x99\x9c\xac\xbc\x7f\x56\xf2\x28\xf0\x87\xcf\x2a\x32\x85\x1d\xcf\x1e\x99\x99\x99\x1d\xc5\x13\xd3\x81\xac\xcc\x52\x94\x0f\x9d\xf9\xe1\x07\x2e\x26\x58\xed\x8f\x8c\x6f\x13\x67\xe5\x8d\xdb\x4e\x9a\x8a\xf7\x11\xb9\xb8\xba\x1b\x37\x74\xda\x81\xc4\x29\xea\x28\xe7\x05\x3b\x49\x30\x14\xbf\x09\x39\xd0\x3b\xd1\x55\x44\x59\xe3\x14\x49\xc9\xc3\x34\xa8\xd8\x7a\x60\xe2\x07\x51\x7e\xa0\xbd\x7a\xb5\xf0\xef\xcf\xae\xc2\x23\xb3\xa5\x7b\x64\x96\xb4\x73\xfe\xb5\x25\x7a\x8b\x82\x08\x97\x48\x33\xe9\xa3\x14\xb7\xbd\x11\x32\x0e\x57\xfc\xd4\x0a\x09\x2d\xc7\xd1\xc3\x2b\xd8\x92\x19\xf6\x4c\xd4\x58\x88\x4f\x1f\x48\x3e\x18\x13\x48\x46\xdb\x34\xe7\xfa\xa2\x35\x1d\x8e\xb7\x7a\xca\xff\x92\x73\x20\x26\x9f\xe9\x2d\xbe\xeb\xb7\x25\x9e\x0a\xd7\xab\x38\x03\x2e\x15\x49\x06\xdc\x05\x11\xfb\xd5\x0b\xfc\xef\x17\xc5\xdd\x6a\x11\x00\x41\xba\x6a\xd4\x9c\x30\xe6\x3a\x85\x76\x54\x81\x18\x75\x27\xd1\x85\xb8\x82\xa8\x87\x1b\x9c\x32\x69\xc7\x47\x4a\x9e\x06\xff\xe0\xad\x2b\x13\xa5\x3c\xbe\xbc\xaa\xb9\x61\xd7\x68\xee\xc7\x07\x62\xd2\x57\xa0\x25\x31\x6b\xe1\x1e\xcf\xc2\xb7\x36\x2b\x7c\x6b\x33\x7e\x9f\x26\x14\xa6\x9a\x93\xf8\x8b\xb3\x6d\x89\x23\x63\xf2\x2d\xbb\xbc\xa3\xee\x38\x5f\x14\x1d\xaa\xb8\x5c\x63\x0c\x78\x93\x76\x32\x33\xa6\x38\xaf\xc6\x45\xe4\x40\x34\x99\x5b\xe4\xf3\x9a\x96\xc7\x69\x7c\xe3\x2f\xd6\xbf\x2c\x93\x4e\x8b\x1f\x29\x8e\xcb\xae\x45\xa7\x1f\x97\x01\x98\xea\xad\x64\xde\xa5\xa8\xf2\xf8\xa3\x77\x89\x03\x49\x22\x2e\x0f\x11\x14\x71\x29\xe7\xe5\x89\x4b\xe0\xca\xd5\x97\x8a\xcd\xce\xc9\xe4\x58\x7d\x34\x57\x35\xca\x8d\x2a\xef\x2b\x45\x30\x04\xf2\x80\xf7\xd9\x0c\x22\xa6\x6a\xa1\x33\x2f\x48\xce\xd6\xe5\x97\xa7\xe5\x9d\xe9\xd9\x1a\xfd\x88\xc6\x36\x0e\x75\x8b\x2a\x60\xe0\x12\x86\xca\x51\xe6\x63\x43\x09\xf5\x38\x8a\xa9\x38\xc3\x07\x1d\xdd\x2b\x6e\xaa\x34\xbb\x86\xe2\xc3\x6e\x6b\xea\x2f\x61\x4e\xd9\xe2\x7a\x88\xb2\x26\xb3\x9b\xae\x6a\x43\x3c\x4a\xe6\x1b\x1b\xba\x97\xcb\xbd\xee\xf2\x17\x43\xad\xb7\xfa\xf9\x97\xfe\x05\x95\xa0\x2e\x56\xb5\x1f\xd4\x4b\x3c\xd9\xd9\x5e\xb2\x99\xe6\x5e\xbc\x93\x31\x48\x1d\x89\x1e\xa3\xf5\xb5\x4e\xe6\x28\xb9\x7a\xbd\xaf\x59\x7e\x75\xbd\xa7\xab\x0c\xaa\xb7\x76\xf5\x7b\xa1\x4b\x97\x7a\xb7\x95\x67\xbd\x45\x21\xae\x28\x84\xd4\x5d\x84\x94\x35\xbb\xaf\x80\xad\x46\x33\x4e\x63\xec\x40\xaa\x70\x8a\x2d\x7e\x4f\x87\x81\x29\xfb\xe0\x1e\xe9\xf9\xb8\xc3\x4a\xf2\x78\x09\x20\xa7\xae\xb7\xa5\x4c\x9d\x5d\xa3\x81\x4f\xd0\x9c\x23\xbc\x41\xf7\xb0\xee\x16\x48\xc7\xad\xfd\x3c\x4f\x5d\x58\x56\x46\x33\x55\xde\x33\x7b\x12\xcf\x6a\xc9\xc2\x10\x40\xbf\x6e\xba\x72\x4d\x6f\xd7\xdb\x2b\x72\x4f\x78\xae\xb5\x98\x8d\xf0\x25\x70\xc9\x52\x7a\x6f\x09\x9f\x3f\xe1\xac\x66\xf5\x3b\x4d\xc6\x77\x7b\xaf\xf8\x18\xb0\xb5\x93\x97\xf5\x85\xbe\x7b\xef\x61\x74\x06\x6d\xfd\xf5\x61\x03\xeb\x0c\xe2\xb5\xbd\x7f\xeb\x1c\x66\xf0\x3e\xbb\x3c\x04\x89\x7a\x2d\x3c\xe5\x41\x24\x8a\x3a\x8f\x7c\x66\x92\x55\x7a\xf4\xf7\x7e\x3a\x09\x2d\x9c\xc1\xe0\x8f\xd1\xa9\xd7\x5a\xd6\x37\x88\x73\x90\x89\x53\x58\x66\xba\xc0\x32\x3c\x7c\x24\x2f\x45\x90\xd5\xf9\x00\x10\xe2\x79\x06\x2f\xf1\xc3\xd3\x8b\x52\x5c\xcc\x1d\x34\x07\xa3\xfc\xa0\xc5\x3c\x00\xaa\xb9\x7b\x18\x18\x78\x14\x0c\x95\xed\xd1\xfb\xbc\x2f\x9e\xd4\x5b\x54\x0d\x45\xe4\x74\xec\xd1\xbc\xbf\xde\x9a\x1e\xb8\x5e\xe0\xdb\x56\xdf\xba\xbf\x2c\xc5\x9e\xd5\x76\xa6\x36\xd9\x4b\x6e\xd6\x23\xe5\xbe\xfb\x9e\xd9\x6f\x60\xaf\x71\x92\xee\x09\xa1\xd0\x88\x18\x24\xd7\x04\xf5\xe5\x25\x99\x4e\x88\x63\x4a\x1b\xe2\xa7\x2a\xe6\x64\xa4\x91\xd9\x0c\xc8\x52\x62\x54\xbf\x54\x3d\xdb\x0c\x75\x52\x73\x67\x28\x37\xed\xba\x01\x88\x8e\xbb\x35\xae\xda\xae\x9e\xfd\xaf\xdf\xc4\xbf\x10\x93\x54\x20\xda\x15\xe7\x68\x55\xad\xfb\xe4\x50\x66\x53\x4b\x1b\xd3\xa4\x42\x38\x9e\x9b\xc1\xb4\x39\xe6\xb2\x49\x9b\x3e\xa9\x37\xba\xbf\xbd\xad\x03\xe8\x95\x56\xbb\x08\x9c\x04\x42\xbc\x80\x1f\x43\x79\x54\x9d\xaa\x1d\x04\x0a\x3a\x6b\x41\x85\x29\x70\xe2\x66\x75\xd5\xe8\xa8\x89\x92\x26\xc0\xf6\xdb\x83\x4d\xc8\x8d\x68\xda\x08\xa4\x28\x98\xec\x81\x46\x62\x0d\xac\xa6\xcd\x18\x2c\xd3\x09\x9a\xcd\x9f\x74\x09\xf7\xec\x19\xfc\x3b\xb0\x27\x74\xb6\xfc\x8d\x31\x03\xca\x75\x3b\x64\x88\xc9\x0f\x34\xc2\xbf\xf3\x1a\xcd\xf1\x0f\x5d\x95\x94\x1f\x86\xca\xb7\x81\x8d\xdb\x4e\xe0\xd6\x62\x6e\x5d\x18\xab\x1f\x4b\x10\xb9\xe1\x4e\x4c\x06\x3c\xc5\x0f\x28\x8a\xf3\xe6\x5e\x40\xdd\xdb\xda\xfa\x81\x67\xda\xc9\xd0\x09\x52\x96\xaa\xbc\xd2\x1f\x3a\xf8\x09\x56\xbe\xb5\xf5\xa1\xe1\xa9\xe5\xcc\xf8\xfc\xa4\x1d\x5e\xaa\x9b\xb1\x7c\xad\x07\x8c\xab\xbc\x5a\x93\x83\x49\xe8\x4b\x5e\x04\xa4\xd6\x24\xa4\x3e\xa4\xba\xc5\x63\xa8\x5b\xbc\xc0\xba\xf1\xdd\x57\xc2\x1e\xa0\x4a\x64\x50\xf1\x2e\x60\x89\x93\x4a\x4e\xa4\xab\x78\x22\x06\xb8\xb9\x7e\x2d\x82\x90\x9c\x51\x64\x2d\x7d\x17\x67\xf4\x9c\x8c\x3b\xa7\x4c\x3e\x9d\xa8\x37\xd9\x52\xcc\xa4\xc6\x37\x70\x79\x53\xa2\xb9\xd6\x25\x55\x7b\xae\xcb\xba\x6c\x30\x87\x27\xcf\x24\x6a\x43\x32\x1f\xb4\x21\x52\xfa\x48\x5b\x12\xa4\x0a\xf7\x02\xca\x4b\xfd\x6e\xd2\x82\x49\x9e\x6b\x72\xae\x60\xeb\x0a\xa1\x77\x87\x6a\xee\x14\x9e\xb1\xdb\xaa\xba\x69\x70\x4d\x37\x3c\xb7\xc8\xeb\xca\xd0\x4c\x8a\x88\x01\x0f\x41\x63\x50\x91\xe5\x71\x0e\x29\x92\xe7\x44\x00\x0b\x75\x13\x89\xee\xee\x45\x11\x79\x6b\xdf\xf8\x27\x09\xa5\x2d\x3d\xcf\xe7\x0c\x3d\xc1\xec\x2c\x2f\x48\x72\x15\x27\x4a\xc8\x6f\xc7\x0c\x57\xec\xb9\x5b\xb9\xae\xe6\xf2\x88\xf1\x17\xe6\xb2\x52\x15\x00\x7f\x91\x0c\x8a\x92\x3a\x51\x0a\xc9\x4f\x3a\x7f\x39\x9f\xfd\x80\xb3\x07\x26\xc9\xa3\x9e\xde\xe0\x77\x11\x16\x21\x30\x39\x5a\x60\xe4\xf4\xeb\x9e\x52\x08\xd9\x0d\x70\xe4\x8c\x0b\xe3\x96\x71\x76\x2d\x59\x21\x89\x29\xec\x66\x47\xae\x75\x88\x40\xe9\xab\xb1\x52\x93\x72\x55\xb3\x31\x36\x6e\x4b\x12\xe5\x3a\xf1\x79\xe7\xd4\x65\x87\xfa\xf1\x6f\xe7\x39\x0b\x3b\xba\x7e\x47\xd1\x1a\xfc\xf2\x1c\x82\x02\x6d\xa7\xbd\x9b\xfa\xc1\xf7\x2c\xe5\x2d\xcb\xca\x81\xe1\x36\x83\x67\x80\x82\xc7\x10\x71\xb3\x89\xb1\xa3\xb6\xeb\x80\x10\xd1\x5b\x15\xf2\xb8\x1f\x61\x48\x5c\x97\x90\x24\xaa\x47\xe9\x9d\x32\xd7\xca\x19\x14\x22\x03\x3d\x06\x89\xac\xd9\x4b\xfa\x70\x07\x6c\x65\x22\x54\xbe\x8a\xb3\x03\xc4\xfd\x70\x32\x72\x4e\x32\xfe\xde\xbe\x6e\xcd\x5c\x3e\x0b\xf0\x48\x17\x7f\xee\x01\x1e\x03\xed\x36\xe3\x70\x5c\xef\x3d\xcf\x3e\x53\xc0\x6c\xc8\xcd\xa7\xfe\x86\x77\x9f\xeb\x07\x4d\xac\x06\x8c\x87\xfd\x7f\xf9\xf8\x73\x04\x86\xc4\xfb\x95\x86\x99\xd3\xb9\x7f\xb4\xa0\x87\x6f\x97\x14\x36\xf9\x41\xa4\x6e\xc6\x1d\x29\xa6\x65\xf4\x33\xf5\xde\xa1\xa2\xcc\xec\xb2\x60\x35\x26\x91\xb0\x0f\xa6\xb1\x93\xc7\x54\x12\xbb\x2c\x17\x84\x99\xf0\xef\xdc\xec\xcb\xa5\xfc\x08\x83\x75\xd9\xd9\xf9\xc1\x64\xfe\x84\xa1\x2b\xd6\x27\x64\x77\xa5\x93\xc4\xdf\xa4\x6b\x15\xf2\x73\x60\xfe\xdb\x1c\x70\x19\x29\xe2\x1e\x30\x55\x50\xf2\xf8\xa2\x12\x0f\x51\xf9\xec\xd7\xc3\xbf\x43\x82\x5e\xfe\xcd\xcf\xca\x56\xfe\xed\xd9\xca\x7d\x98\xf1\xc1\x8a\xa6\x9c\xc4\x30\xcc\xce\x8b\xaa\x25\xea\xae\xd9\x6a\x79\xa4\x01\x97\x5e\x19\x3b\xac\x1e\xc3\x7f\xe4\x37\x9e\x74\x4c\x36\x05\x27\x90\x0b\x48\x3f\x55\x75\xab\x97\xf2\xce\x57\xf1\xe8\x59\xfc\xc5\x3f\x9f\xea\xbf\xf3\x7b\xa9\x33\x55\x1c\x09\x3f\x0e\x82\x39\x9d\x77\x7e\xcb\x14\x85\xcf\xbe\x55\xef\x74\x27\xe1\x5b\x98\x53\x15\x4e\x66\xa3\x3a\xb3\xe4\x27\x93\xe0\xcc\x84\x34\x98\xec\x80\x3f\x92\xf0\x88\xa8\x53\x37\xfb\x5f\xb6\x64\xdd\x12\xa8\x22\x4f\x40\xa9\x02\x1f\x2a\x7e\xed\x6a\x27\x69\xd2\x8b\x2a\xba\x23\xa3\xca\xb0\x48\xff\x5c\x31\xba\x6a\xbb\x75\xaa\x81\x92\x21\xa3\x15\x1e\x81\xcc\xa9\x91\x87\x40\x34\xc8\xce\x3f\xa9\x6b\xc7\x3e\xad\x6e\xcd\x06\xb0\x6c\xae\x2a\xbf\xd4\xe9\xea\xb9\x87\x3a\xa9\x12\x27\x2f\xe4\xac\x85\x26\x89\x10\x93\x4e\xc8\xbe\x34\xa9\x95\x5e\x20\x5c\xb5\xc5\xbb\x67\x6d\xd5\xea\x29\x08\xc4\x55\x71\x71\x2c\xe5\xb6\x1d\x76\xfc\x16\xc8\x3c\x96\x15\x17\x4f\x5f\x9c\x47\x75\x3d\xc6\xe4\x1f\x02\xea\xc4\x5f\xc4\xb1\x4c\x02\x5d\xac\xc7\x3f\x4b\x49\xd2\x7a\xc9\x86\x3c\x5b\xf7\xd6\x3b\x5f\x1c\xd4\xfa\xf0\x70\x5d\x25\x3d\xe3\xe6\x5d\xb9\xf9\x2d\x8b\x97\x92\x2f\xa2\xf2\x03\x23\x75\xe6\x47\xdf\xac\xc6\xbe\xfc\xb3\x70\xfb\x5f\xfb\x2d\xe0\x70\x71\xef\xe8\xde\x32\x39\xb5\xeb\xa1\xb1\xd1\xa3\xd1\xc0\xac\xed\x06\xb3\xed\xd5\x25\x5c\x39\x2f\x9e\x5c\x38\x20\xbc\xae\x77\x58\x73\x4d\xb9\xee\x6e\x56\xdf\xe1\xdb\x3b\x50\x3d\x4b\x7d\xa7\xa3\x26\x3b\xb4\xbd\xa2\x52\xa3\xd4\x29\x57\x74\x21\xa1\xe5\xc5\xf9\xf1\xd3\x74\x2a\x94\x1b\xce\x31\x87\xd1\xa4\x9e\x3b\x3e\x10\x73\xdb\xb6\xfb\x9f\x07\xf4\x8a\x11\x52\x54\xef\x00\xf0\x94\xf1\x47\xba\x0a\x9c\x5d\x31\xfb\x2c\xf3\x2c\x9d\x49\xb9\x9c\x0c\x4b\x98\x91\x62\x66\xc7\xd3\xcb\x94\xf1\xcc\x5a\xbc\x27\xf4\x65\x99\x90\xc7\x5b\xbc\xd9\x0e\x4c\x65\xde\x0b\x2f\xee\x33\xe2\x52\xa6\x40\x38\x44\x45\x93\xc4\xb2\xec\x8c\x76\x4b\xc5\x35\xd3\x70\x72\x0b\x48\x5e\xd8\x7c\x6f\x9b\x60\x28\xce\x56\x47\x43\x62\x34\x33\xa5\x1e\x11\x57\x36\xe7\x33\x30\x7d\xb5\x2e\xea\x39\xc9\x0c\x9b\x76\x7a\x80\xe3\x60\xa0\x38\x25\xdc\xac\x55\x12\x4f\x9b\x53\xcb\xb9\xfa\x6a\xb7\x4b\x63\xa3\xc3\xf3\xfd\x71\x95\x6b\x74\xc1\x15\x57\xec\x83\x95\xa2\xa8\xd7\x69\x85\xfc\x4e\x93\x62\x73\x79\x09\x12\xbf\xc6\x4c\xbf\x7a\xf5\x14\x33\x03\x9c\x71\x89\x6f\x07\xd7\x00\x9e\x25\xd4\x10\x92\xb2\x6d\x8b\xf2\xb0\x3f\x4a\xa6\x78\x62\xb6\xc4\xc7\x18\x60\x90\xa2\x85\xf5\x23\xa9\x90\xfa\xe8\xa2\xd0\x5e\x2c\xfd\xb3\x89\xab\x85\xb1\xe7\xab\x20\x3b\xd5\x1b\x33\xa4\x4f\xfc\x3c\x57\xf5\xbb\x09\x03\xe5\x76\x01\xcd\xa1\xe5\x9a\xdf\x1b\x99\x6f\x49\x94\x51\x62\x78\x0a\x0a\x9f\x21\x2a\x20\x1d\xc0\x32\x3f\xbc\x35\xea\xfd\xcc\xd6\x8f\x5d\x22\xc9\x4b\x99\x91\x0b\x2a\x0b\x0b\x42\x6b\xa2\x20\xef\x04\x46\x19\xba\x3d\xa7\xca\xca\x6f\xc7\xe6\x30\x6e\x3d\x74\x36\x5f\x8a\xc4\x8a\x5a\x04\xfe\x2a\x94\x05\x6e\x26\x94\x05\xbe\x2c\x94\x25\xf3\x8b\xca\xad\x6d\xa2\x8d\xbb\xb8\x78\x32\xf3\xcd\x3f\x66\xa7\x38\xfe\x99\xa0\x76\x07\x73\x39\x60\xda\xd2\x3b\xf7\xa3\x26\x31\x88\xb3\x62\xdf\x0b\x37\xb7\x3f\x01\xe6\xe9\xcf\xef\x14\xba\xb8\x33\xd4\xd5\x26\x74\xe3\x6e\x87\xdb\x0f\x1f\xdc\x14\x61\x23\x44\x6f\x90\x3c\xf3\xbd\xa2\x14\x9f\xbd\x16\xe7\xa8\x28\x9f\x9e\x7b\x29\x3e\x3f\x1a\xee\x86\x89\x0f\x86\xbb\x63\xfc\xe4\x30\xee\x4d\x14\x10\xac\xcd\x02\x16\x66\x30\x9d\x0f\x80\x7b\x68\x06\x19\x85\x9b\x46\xb3\xe4\x1c\xe8\x2e\x27\x3a\xc5\xfe\xf8\x39\x9e\xf2\x5b\xf7\x92\x1a\x85\x41\x0c\x94\xc2\x35\x96\x9b\x90\x75\x83\xec\xca\x1c\xdf\xce\xa4\x09\x44\xa4\xa3\x2f\xae\x11\x41\x43\x74\x29\xcf\x72\x25\xca\x09\x06\xab\x44\xa8\x20\x40\xa0\x38\xce\xfa\x9d\xe6\x44\xb6\x04\x0a\xce\x0a\x31\xb9\xd2\x07\x05\xb2\x05\x1c\x24\x22\x44\x6d\x14\xca\x9a\x4f\x79\x07\xf2\x8c\x8a\x66\x6b\x60\xbe\x54\xe6\x89\x1e\x47\x7f\x63\x24\xda\xba\x21\x63\x28\xc7\x87\xc3\x1c\x49\x17\x7f\xed\xfd\x43\xd0\x32\xa3\x87\xc0\x5f\x47\x4d\x9e\xeb\x4a\x1e\xd2\xbf\xd0\x92\x25\x76\xda\xdc\x65\x93\x38\x80\x5a\x1c\x32\x2d\xd6\x7e\xd7\x06\x36\x68\x84\x41\x74\xb7\x45\x86\x51\x16\x8d\x32\x71\xdd\x84\xe3\xcc\x11\xda\xa4\xb9\x03\x02\x9b\x3d\xb2\xc7\x31\xdb\x1e\x83\x32\x9e\xe9\x9c\x64\x88\x97\x02\xde\x9e\x58\xa5\x68\x03\x0f\xdf\x42\x93\x3d\x94\xea\x33\x62\x57\x5a\xc1\xed\x35\x1c\x48\x93\x20\xfb\xe3\xd3\x27\x67\x59\xdd\x09\x2d\x91\xf2\x09\xdd\x91\xf2\x59\x3a\xc3\xc6\xfe\x83\xe7\x99\xec\xfe\x69\xdd\xc3\x6b\xe0\x23\x70\x18\x24\xa4\x4e\x4f\xea\xc2\x25\xbf\xa3\x17\x10\xf0\x5f\xca\xeb\x34\x5f\x6f\xfe\x89\xc4\x99\x8a\xf0\x83\xb2\x6b\xeb\xb7\x73\x83\x5a\x7e\xb6\xed\xd0\x14\x41\x54\xd0\x14\xf2\x92\xd7\xc7\x28\xc7\xba\xe2\xb7\x17\xae\x75\xc5\x4f\x0a\x64\x75\x5d\x9d\xc3\xb0\x74\x8d\xfd\x8c\x01\xa1\x6b\x9d\xf2\x26\x27\x54\x96\x9d\x53\x3c\x57\x5c\x39\x3a\xaa\x62\xb2\x48\x1b\x6c\x4b\x0f\x2a\xd6\x92\xbf\xd0\x2d\xdf\x8f\x11\xe0\x48\x59\x9d\xad\xb0\xa9\x2f\x75\xd6\xe2\x65\x5d\xa9\x99\x75\x5e\x0d\xc3\xce\x26\x39\x37\xe8\x89\xc2\x6c\x51\x07\xfb\xcb\x97\xb8\xab\xc9\x94\x72\x78\x4b\xbe\x6b\xe5\x09\xb0\xa4\xba\x5c\x44\x2b\x2f\x99\xe0\x12\xb1\x66\x67\x73\xb2\x09\x92\x11\x13\xe5\x40\x30\xbf\x95\xa2\x98\x17\x39\x88\xb6\x11\xe3\x81\xf5\x22\x56\x8a\x38\xb3\x85\xf3\x73\x5b\x96\x3d\xdc\x35\x2f\xc4\x53\xe8\x04\x7e\xf8\x2f\xe1\xa4\xba\x12\x0b\x58\x59\x8d\x0d\xe6\x00\x31\x1d\x0a\x6f\xad\x0a\xb5\x93\x77\x69\x5e\xea\x77\xfe\x8b\x7f\xd2\x26\x32\x93\xf8\x8f\x9c\xfc\x3a\xb3\x96\x46\x56\x8a\xa8\x17\x43\x5c\xf7\x39\xff\x8b\xb1\x7a\x6d\xcc\x14\xba\x7a\xd3\x4c\xca\x6e\xf2\x00\x3a\xa4\x30\xbd\x62\xcc\xda\xff\x5a\xd6\x66\x76\x1e\x61\xf7\xa3\xfe\x9d\xeb\xa0\xf3\xc3\xe3\x9f\x6b\x4c\xd0\x14\x7b\x13\x3e\x4b\xbd\x09\x5d\xa3\xc0\x69\xc5\x25\xeb\x4f\x13\x83\x86\xff\x36\x59\x83\xfb\x60\x76\xab\xb3\xdd\x32\xaa\x47\xc2\x8e\x17\x48\xae\x6b\x76\xc4\xb7\x32\x9f\xc8\xf9\x38\xd3\xcb\x2f\x7e\xc0\x3b\xd2\x74\xaf\x92\xb7\x60\xd3\x54\xa8\xfc\x12\x55\x92\xc7\xa3\xb8\xcb\x2f\x1b\xf5\xba\xf3\x69\x55\x59\x23\x63\xc6\xc2\x64\x49\x5a\xfc\xfb\x02\x9f\x86\xf7\x05\xd8\x63\xf8\xe0\x8b\x49\xfe\xe1\x1a\xe8\x17\x5d\x71\x75\x35\x69\x81\xaf\x32\xd8\xbe\xfc\x24\x6f\x2b\xe9\x8a\xa2\x6a\xf8\xf1\xef\x5d\xc7\xbc\x4a\x7e\xe2\xe7\x1e\x7b\x09\xa2\x57\x19\x67\x4b\x8f\xd6\xf8\x09\x2b\x3f\x3f\xc1\xd5\xde\xc5\xc7\x1e\xe4\xf5\x9b\x7b\xae\x8b\xf4\x81\x09\x00\x12\xad\x3c\x49\xfc\x1f\x77\x27\x0f\x48\x64\xbd\xfd\xb8\x48\x1f\x1d\xba\xc7\x2e\x8a\x18\x40\x8d\x2a\x2e\x90\x49\xfd\x14\x3f\x68\x6e\x33\xa9\xe9\x7f\x74\x8f\x41\xfc\x0d\x93\xf3\x89\x1c\xa7\x58\x11\xa7\x6d\xac\xfc\xc3\x12\x87\xf6\x97\x7a\xa6\x0d\xa0\xbc\x3e\xf4\x0c\x25\xe0\x24\x06\x8d\x19\xf6\xb5\xee\x38\x24\x3e\x9e\x15\xed\x6e\xfc\xf2\xd0\x1c\x0e\x64\x58\x43\xaf\x97\x7c\xe6\x5f\xa2\xa0\xd7\x21\xf9\x25\x91\x7d\x78\x27\xdb\x16\x9f\xf9\xe7\x1d\x17\x3f\x0c\xc6\x34\xaf\x16\x6a\x6b\x56\x6a\xe8\xf7\x3f\xdb\x05\xbd\xd1\x8a\x51\x42\xf2\x98\x10\x5d\xeb\xf4\x6e\xff\x82\x4a\xe9\xaf\x4f\xed\xea\x53\x72\x0f\xed\x38\x21\xfd\xa7\x2d\xfc\x06\xe9\x04\xd5\x8e\xf8\xf3\x0a\x7e\xe2\xdb\xc7\xf4\xa3\x82\x1f\x55\xcd\x7f\xbf\xa1\x76\xa8\x3d\xe7\x66\x40\x75\xa1\xe1\xfe\x2f\x96\x7e\xde\xc0\x0f\xd5\x51\x17\x56\x03\xdd\xae\xe8\xe9\x1e\x19\xc7\x72\xe6\x7b\x18\x83\x5f\xf4\xe1\xe1\xa8\xf4\xca\x8c\x3d\x95\xe1\x98\x54\x52\xa9\x1b\x2a\x80\x71\xe9\xf7\x1b\xad\x5f\x4b\x67\x38\x38\xf7\x65\xba\xe1\x8a\xbb\xd2\x08\x16\x28\xba\xd1\x8a\x3b\x52\x1d\xf7\xdc\xab\x37\x6b\x37\x15\x37\x0f\x2a\x74\x13\x91\x59\x00\x24\xab\xde\xec\x30\xed\xf5\x2b\xff\x72\xb4\x7b\x0b\xf3\xb8\x87\x59\x61\x78\x06\xa6\x56\x1b\xa2\x77\xb5\x15\xfc\xcb\xd9\x11\x1a\x7c\x5c\xc7\xbd\x90\xce\xaf\xff\x51\x60\x97\x5d\x2e\x5c\xee\xfa\xba\xdb\x8d\x22\x38\x4f\xde\x4e\x60\x8b\x6e\x94\x46\x0f\x87\x1b\x80\xd0\x2e\xf9\x69\x50\xd8\xe5\xf5\x06\x6e\xc8\x33\x2f\x5e\x54\xc1\xef\xed\xe3\x7f\xfc\x47\xf2\xf9\x03\xf1\xe4\x9f\xfe\xa9\x78\xfa\xf0\x3e\x1a\x9a\x30\x92\xc0\x14\x4d\x8d\xf9\x29\x61\x83\x7e\x7e\x8b\xb2\x08\xd4\x6c\xd5\xdb\x6f\x92\xca\x18\xe6\x4e\xae\xf7\x64\xae\x73\xae\xf7\x8b\xff\x13\x00\x00\xff\xff\x93\xbb\x91\xbf\xfc\xb9\x00\x00") func confLocaleLocale_ptBrIniBytes() ([]byte, error) { return bindataRead( @@ -4539,12 +4539,12 @@ func confLocaleLocale_ptBrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 47692, mode: os.FileMode(493), modTime: time.Unix(1446027992, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 47612, mode: os.FileMode(493), modTime: time.Unix(1448150152, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_ruRuIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xf9\x8e\x14\x67\x9e\xe0\xff\x25\xd5\x3b\x7c\x66\x84\xb0\xa5\x22\x2d\xb7\xf7\x92\xe5\xc4\x8b\xc1\x6d\xb3\x0b\x98\xa1\xf0\x8e\x56\x96\x95\x8e\xca\x8c\xaa\x8a\x21\x33\x23\x3b\x22\x92\x72\xf5\x68\x24\xa0\xec\xb6\x7b\xf1\x98\x6e\xc6\xbd\xdd\xdb\x63\x43\xd3\xde\x39\xa4\xd6\x68\x93\x82\x82\xa4\xa8\x2a\x24\x3f\x41\xe6\x2b\xcc\x93\xec\xef\xfa\xae\x88\x2f\x32\x13\xbb\x77\xff\x80\xca\x88\xf8\xee\xe3\x77\x1f\xd1\x60\xd0\xea\xc4\x79\xbb\x39\xf9\x6e\xf2\x68\x72\x34\x79\x30\x39\x9c\x8c\xa6\xb7\xd5\xf4\xc6\xe4\xd9\x74\x67\xf2\x18\x5e\x8c\x14\x7c\x79\xc6\xef\xa0\xc0\xf4\xc6\xf4\xe6\x64\x77\xb2\x07\x05\x0f\xe1\xf9\xe1\xe4\x48\xbd\x9b\x14\x27\xa7\xd7\xe1\xd5\x73\x78\xf1\x64\x32\x86\x02\x47\xf0\x3c\x9e\xde\x5e\x51\xd8\x1e\xbc\x1f\x43\xe5\x11\x55\xc1\xd6\xf1\x8f\x9a\xde\x9e\x3c\x99\xde\x9a\xec\x4f\xf6\xd4\xbb\xe9\xf2\xd2\xf2\xd2\x66\xda\x8b\x9b\x93\xbf\x9f\x3c\x83\x92\xbb\x5c\x72\x79\xa9\x13\xe5\x9b\x6b\x69\x94\x75\x9a\x93\x7b\xd4\xc2\x1e\x8c\xe5\x4b\x35\x39\x80\xae\x0e\x6d\x57\xf0\xfb\xe1\x64\xb4\xbc\x14\x7f\x32\xe8\xa6\x19\x34\x73\x17\x46\xfe\x04\xbf\x41\xbb\x71\x77\x80\xb5\x8f\xb0\xd2\xf4\x97\xd3\x2f\x97\x97\xf2\x64\xa3\xdf\x4a\xfa\xcd\xc9\x1d\x78\xfb\x14\x1a\x19\xcb\xbb\x74\x58\xc0\xcb\xe9\xad\xe9\x67\xf0\xe1\x91\xbc\x1c\x42\xf5\x3f\x40\xc7\x0f\x71\x1a\xd3\x9b\xd0\xdf\x68\xfa\x0b\x9c\xde\xf2\x52\x16\x6f\x24\x79\x11\x67\xcd\xc9\x6f\xe1\xe5\x75\xaf\xd0\x18\xfe\x1d\xc1\x4c\x46\xf0\xf4\x25\xbc\x83\xe2\x5b\xf1\x5a\x9e\x14\x31\xf6\xbb\x37\x79\x70\x92\x16\x05\xba\x5f\x5e\xba\x16\x67\x79\x92\xd2\x80\xf6\xa6\xd7\xe1\x3d\xb5\x3e\x88\x36\xa0\xec\x7d\xee\x92\xa6\xfb\x0b\x9c\x64\x11\xf7\x06\xdd\x08\x9b\xf9\x17\x78\xfd\x00\x16\x0c\xd6\x62\x79\xa9\x1b\xf5\x37\x86\x54\xe3\xff\xf0\xca\x2e\x2f\xb5\xb3\x18\xca\xb5\xfa\xf1\x16\x34\x43\x9b\xf3\x88\x87\xd3\x68\x34\x96\x97\x86\x79\x9c\xb5\x06\x59\xba\x9e\x74\xe3\x56\xd4\xef\xb4\x7a\xb4\x74\xf7\x70\xdc\xd3\x4f\x61\x51\x69\xa5\xc7\x0a\x9e\x70\xd3\x47\xf8\x4c\x9b\xbe\xc7\x0b\x13\x77\x60\x0d\x5b\x51\x4e\x2b\xa6\x60\xa6\x47\xd3\x2f\x60\x30\x50\x61\x1f\x0a\xef\xe3\x9e\x62\x17\xfd\x08\xf7\xf5\x77\x93\x03\xdc\x79\x3c\x22\xd8\xcc\x13\xbd\x34\xb4\xa1\x30\xd7\xb8\x17\x25\xdd\xe6\xe4\x5f\x27\xcf\x1a\x54\x6a\xfa\x39\x76\x89\x6b\x90\xe7\x5b\xa9\xec\x3f\xad\xe8\x33\xdc\xc1\x2c\x6e\x15\xdb\x83\x98\xf7\x75\x97\x8f\x01\xcc\x37\x1a\x14\xed\xcd\xa8\x79\x86\xff\xe2\x08\xb2\x78\x90\xc2\x9a\xa7\xd9\x36\x6f\x62\xe9\x8c\x4e\x9e\x2e\x2f\xa5\xd9\x46\xd4\x4f\x7e\x1e\x15\xb4\x03\x77\xe1\xf5\x43\x5e\x6e\x28\x68\x76\xba\x97\x64\x59\x4a\xfb\x0c\x1b\x44\x13\x84\x65\x5f\x5e\x82\xa5\x6d\x61\x17\xcd\xc9\xb7\x34\x90\x5b\x93\xa7\x2a\x74\x17\xb0\x1f\x2c\xdb\x4b\x36\x32\xda\xba\x6f\x65\x01\x60\x4d\xbe\x81\xcf\x0f\xdd\x53\x85\x05\xd7\xd3\xec\xaa\xdb\xe8\xe4\x39\x4d\x7e\x6f\xb2\x3f\xbd\xa9\x70\x68\xc1\x6e\x74\x6d\x98\x92\xd7\x45\xdd\xa4\xa2\x3e\x1c\x18\x2e\xfd\x1d\xf5\x80\x57\xef\x19\xdd\xee\x31\x5c\xcc\x50\x3d\xf8\x08\x73\x89\x3a\x3d\xd8\xfb\x41\xd4\x8f\xbb\xa5\x9b\x39\x82\x33\x76\x40\x37\xd2\xde\x16\x1e\x1d\xec\x66\xd4\x6e\xa7\xc3\x7e\xd1\xca\xe3\xa2\x48\xfa\x1b\x39\x0e\x72\x24\xc5\xe0\x26\xc2\xba\x8e\xb1\x85\x7d\x5c\x60\x80\x3f\x87\x7c\x06\x66\x94\x5e\x5e\xda\x4e\x87\xe6\x14\xe3\xfd\x19\x4d\xbf\x90\xc5\xd2\x67\x58\xca\xd8\x56\xa8\x10\xf6\x74\x58\x6d\x8e\xd6\x2f\x6f\xad\xc7\x31\x1c\xb9\x7f\xc0\x95\xc0\x31\x28\x3a\xf7\xbb\x72\x13\x68\x05\x06\xc3\x6e\x17\xb6\xfe\x67\xc3\x38\x2f\xf2\xe6\x25\x78\x52\x97\xe5\x69\x79\x29\xc9\x73\xf8\xc5\xf0\x85\xc7\x72\x63\x7a\x0b\x1b\x6f\x47\xfd\x36\x2e\xd9\x5d\x68\xe6\x80\xd6\x79\x84\xaf\x3f\xcc\xe3\x28\x6b\x6f\x7e\x84\x73\xc5\x1f\x7c\xae\x11\x6a\xee\xd3\x55\x5d\xe0\x14\xe3\x55\xe3\x6a\xd5\xfb\xf5\xa5\x8c\x48\x2e\x37\xc1\x8c\x3d\xe8\x1f\xfa\x6e\xa7\x1d\x78\xfd\x7b\x06\x77\x30\x90\xa4\x9f\x17\x51\xb7\x0b\x23\x91\x5f\x70\x32\xe4\xfa\xf3\x12\xec\x13\x08\x4a\x0a\x5c\x6d\xff\x0b\xdc\x59\x58\xad\x5b\x70\x6e\x60\x75\x47\x08\x09\x35\xea\x80\xf1\xe2\xad\xd9\x15\x84\x81\x47\x09\x96\x65\x07\xa7\x87\xad\x75\xd2\xf6\x55\x00\x45\x08\xa8\x71\x0e\xbf\x41\xec\x83\x95\x77\x11\xac\xe0\x22\x18\xa8\x01\x67\x62\x0f\xe7\x04\x28\x63\x23\x87\x02\xea\x2c\x55\x3d\x09\xed\x1c\xd1\x4e\xc1\xd6\xe0\x51\xc4\xbb\xb1\xc2\xd0\xe6\x31\x01\xae\x1d\x80\xb3\x37\x78\x27\x79\x3f\x10\xbc\x8c\xa9\xa9\x37\x23\x55\x44\xd9\x46\x5c\x34\x8f\xb5\xd6\x00\x88\x5e\x3d\xa6\x36\xb3\x78\xbd\x79\xec\x78\x7e\xec\xd4\xf4\xef\xb0\x1c\xe3\xbe\x5d\xec\x7b\x7a\xeb\xcd\x57\xa3\x53\x2b\x7a\x4a\x7b\x93\x47\x8a\xba\x3d\x10\xa8\xa7\xa8\xe5\xa3\x93\x38\x03\x58\xe7\x23\xba\xab\xb2\xd5\x63\x04\xbd\x2f\xe1\x6e\xfe\x6c\x08\x68\xa0\xd5\x59\x63\xe4\x4b\x93\xa1\x63\x08\x58\x81\xa7\xa8\x2e\x6c\xaf\xfe\xe5\xf9\x15\x75\x29\xcd\x8b\x8d\x2c\xa6\xdf\xf0\x1f\xd4\x7a\x1d\x5b\xc4\xe5\xb9\x92\x9c\x7d\x1b\x8e\x06\x34\x22\xbb\x11\xb8\x4a\x80\xbe\x11\x17\xe0\x3e\x10\xfa\x45\xcc\xc6\x55\x08\x78\xfe\x11\x9a\x7a\x5e\x57\x6a\x13\xba\x6e\x4e\xfe\x91\xcf\xfc\xdc\xf3\x55\x03\xa7\xa1\x2b\x0f\xfe\xd7\x0e\x48\x6f\xfe\xd7\x74\x60\x68\xf6\xd5\xbd\x7f\x4a\x1b\x86\x3b\x02\xc3\xa6\x93\x87\x27\x19\xd0\xa2\x3a\xd7\xef\xa7\x67\xdf\x86\x7d\x52\x74\x14\x1e\x19\xec\x8b\x4f\x4f\xd5\xb0\x58\xff\x4f\xad\x8d\xb8\x1f\x67\x51\xb7\xd5\x4e\x60\xd9\xf2\xbc\x0b\xf8\x0e\xcf\x3e\xde\xa7\xc7\xd0\xe2\x81\x5a\x5d\x3d\x8f\x13\x29\xf0\xfa\xc1\xe9\xbc\x49\xa4\xc2\xcf\xba\xb8\x55\x7a\x78\xf2\x1e\xc7\x7f\x14\x9e\x8d\x6c\x53\x69\x97\xe2\x2c\x6b\x01\xda\x2e\xb6\x71\xd3\xbd\x2e\x60\xc0\xd2\x10\x02\xdc\x6a\x43\xde\x7e\x23\x1c\xda\x63\xea\xe7\x31\x1d\x13\x38\x2f\xb7\xb8\x15\xba\x4f\x78\x3e\x27\x07\xd2\x5f\xd2\xbf\x16\x75\x93\x0e\x1c\x0f\xb3\x0b\xdf\x52\x3f\xbb\x02\xd1\xf7\x6a\x66\x10\xec\x89\xae\xc0\x23\x3a\xf4\x8f\x99\x88\xc0\x57\xb0\x6c\x74\xad\x9f\x41\x1b\xc7\x1a\xc7\x90\x5c\x38\x76\xf2\x18\x0c\xa0\x9f\xb6\x18\x47\x20\x61\xd1\x49\xf2\x68\x0d\x88\x0c\x26\x97\x32\xc1\xb4\x44\x35\xf8\xbd\xe0\xc3\x11\xfc\xd9\x87\x06\xbf\x02\x70\x32\xe6\x7e\xae\x07\xa8\xaf\xaf\x56\xb8\x32\x8d\x8b\x08\x1b\x00\x07\x3e\xee\x98\x89\x8c\xbc\x4d\xd1\xe8\x2c\x70\x86\x67\x36\xb2\xf0\x7e\x2c\x2f\xe9\xd3\x27\x97\x15\x08\xd4\xe9\x2f\x79\x0f\x9e\x53\x67\x23\x04\x12\xd8\x3a\xac\x0a\x02\x04\x40\x96\x40\x9c\xfb\xc4\x13\xc1\xfa\x67\xdc\x19\x0d\xe7\xb6\x2d\x65\x8e\xe8\x77\x04\x88\x1e\x0b\x74\xa3\xa5\xd9\x83\x91\x7c\xc9\xb4\xb8\xb7\xfb\xbb\x84\x08\xf7\x88\xbc\xc0\x75\x87\xce\x6f\x23\x51\x0a\x6b\xff\x4b\x7e\x7d\x14\x20\x00\xc6\x2f\x31\x42\xaa\x9c\x63\x2a\x7d\x88\xac\x42\x0d\x69\x62\x6a\x99\xc1\xde\x81\xee\x60\x0f\x77\x68\xff\x98\xf0\x10\x14\x12\x22\xa2\xc6\xc8\x6b\x28\x82\x91\x8f\xb0\x57\xda\xfc\xe9\x67\x42\x1e\x23\xae\x46\x3a\x54\x11\xd0\xc6\x6b\x2f\x70\x80\x88\x26\xdd\x04\x62\xd3\x21\x10\xf5\xb3\xc1\x99\x2e\x62\x57\xb5\x96\x76\x25\x58\x00\x63\xa7\x3d\x71\x0e\xc0\x23\x86\x9c\x30\xd6\xe7\x74\xc7\xf1\x40\xdc\x24\xea\xd8\x2e\xd5\x57\x35\x4b\xa5\xa4\x9c\x83\x28\xa7\x3b\x74\x2c\x10\xe2\xa7\x40\x2b\xf7\x11\x54\x1e\x31\x62\xd1\xaf\xec\xaa\x12\x54\xbc\xcd\x27\x12\x99\xad\x0f\x2e\x9f\x3f\x89\xe7\x18\x7b\xc3\x0d\x36\x88\x79\x9f\xb9\x07\xcb\xac\xf0\xb1\xa2\xc9\x02\x3c\x7c\x8f\x20\xe5\x66\x6b\x90\x66\x45\x13\x1e\xf9\x9c\x5c\x47\x7c\xa0\x5f\x9b\x4e\xbf\xe5\xe1\x4c\xaf\x9b\x42\x93\xd1\x0a\x4f\x95\xe6\xc5\x64\x6c\x00\x9d\x63\x3f\xb8\x93\x4c\x22\xc0\xff\x0d\x24\x3c\x99\xb2\xd8\x05\xd6\x89\x8e\xb1\x73\x9d\x56\x04\xc7\xe2\x52\x87\xc0\x05\x0f\x7b\xb3\x28\x06\x3c\x6e\xdc\x65\x1c\x8e\x7a\xef\xca\x95\x4b\xce\x87\x17\x1c\x79\xe5\xf6\x11\xfc\xa4\xa3\x2b\xf0\x11\xc8\x0c\xa4\x7c\x88\xc1\xe2\x8b\x39\xcc\xba\x4d\x58\xfb\x19\x57\x17\x4a\x98\x71\xfc\x2b\x75\x77\xb3\x02\x11\x14\x11\xe5\xe5\x0d\x5d\x6c\x0f\x71\xce\xaf\xe2\x7f\xab\x4a\x28\x5e\xe5\x1f\x04\xbc\x2e\x74\xf3\xf6\x85\x74\x60\xc6\xfe\xa9\xe5\xc2\xf6\x08\x7e\xa5\x03\x84\xda\x16\x80\xfd\x81\xa8\x8d\x2f\xe4\x82\xe9\x6b\x1b\x22\xa9\x89\xb5\xab\x27\x52\xac\xac\x01\xb6\x73\xce\x58\x90\x88\xce\x7b\xb0\x7f\x4c\x9c\x7c\x87\x48\x73\xf2\x4c\xad\x5e\xc0\x8d\xa5\x0f\xeb\x59\xda\x43\x80\xf9\xc4\x79\xb6\xd8\x5b\xf3\x95\x8a\xd7\xd9\x59\x88\x15\x75\xf9\xa7\x67\xd4\xbf\x7f\xfd\x27\x3f\x81\xd3\x47\x1b\x11\x04\xeb\x34\x17\xa7\xa2\x46\xce\xc0\x6b\xe0\xd5\x3d\xc0\xdd\x57\xc7\x18\x60\x1f\x53\x6f\x52\xf1\xff\x1c\x7f\x12\x01\xc7\x1e\x37\xda\x69\xef\x54\x03\xb9\x2e\x60\x55\x32\x81\x40\xff\x5a\x99\xef\x48\xb6\xce\x19\xa9\x61\xcd\xc6\x96\x61\x96\x56\x6a\x70\x56\x4d\x25\x2d\xaf\x68\xb5\xd3\xfe\x7a\x92\xf5\x10\x54\xf8\x97\x87\x2e\xe7\x23\x96\xf1\x10\xaa\x7f\x64\x0e\x7b\x08\x0d\xe3\xfe\xd2\xf6\xf6\xd3\x22\x59\x27\xee\x04\x09\x0a\x5c\x9b\x2f\x9c\x16\xe5\xc2\xee\x32\x68\xdf\x21\x01\xd2\x23\xba\x75\xcf\xec\x75\x80\xf5\xb8\x16\x23\x9f\x96\x5d\x4b\xda\xb1\x3e\x30\xf7\x2d\x5c\xa0\x13\x0c\x0b\x0f\x0d\x3c\xe4\xeb\x57\x39\x6d\xce\x69\x82\x23\xbb\xbe\xde\x4d\xfa\xb1\xd0\x79\x76\xa6\xe6\xf6\x22\x8b\x88\xe2\x26\xe0\x19\x78\x76\x44\x07\x22\x4b\xe2\x56\x05\x60\x31\x40\x19\xd0\xdd\x0a\xa4\x39\x73\xf6\x22\x53\x4e\x8f\x09\x9b\x6a\x26\x7d\x4c\x58\x16\x97\xd1\x17\x96\x1d\xb8\x9d\x20\x7f\xb2\xcb\xd8\xef\x53\x1a\x02\x92\x50\x7c\xa8\x00\x8c\x5c\x67\x8e\xc3\xc3\x75\xd7\x09\x7d\x13\xa1\x63\x85\x4a\x8a\x2e\xff\xbe\x95\xce\x20\x82\x10\x72\x6b\x23\x8b\xae\x45\xc0\xdb\x84\x86\xee\xdc\x3a\x40\x2c\x52\xb0\x5a\x55\xe6\x7e\x96\x5f\x9b\x82\x0a\xa8\x3a\xd5\x1e\xe6\x45\xda\x53\x39\x30\xd7\xed\x38\x5f\x51\xc0\x2c\x2a\xfe\x9c\xab\x28\x8b\xd5\x70\xd0\x4d\xa3\x4e\xdc\x51\x6b\xdb\x0a\x0f\x7b\xae\xd2\x4c\x75\xe2\xf5\x68\xd8\x2d\x9c\x51\xfa\x44\x61\x70\xa4\x23\x12\xdd\xdd\x20\xf0\x78\x5b\x23\x69\x80\x38\x3b\x1a\x81\x56\x88\xc3\x70\xf3\x7a\x27\x7f\x4b\x68\xf5\x3a\x51\x9c\xce\xb1\x0f\x20\x77\xdc\xb3\x1f\xd2\xff\x8a\xa2\x03\x8f\xc5\xf6\x11\x94\xd4\xd2\x90\x15\x12\xdb\xdb\xe1\x12\x41\x3b\xbd\x85\x54\x6b\x9f\xe6\xa5\x65\x5d\xd5\x1b\xbc\x4f\xb3\xfb\x7c\xba\x53\x2e\x5b\x9e\x3e\x49\x41\x6c\x57\xa6\x9e\xa0\xab\x9a\x0b\x5f\xbb\x56\x0d\xe1\x6c\xb3\xb8\x25\x02\xd6\xd6\xb5\x04\x45\x8f\x55\x98\xa0\x99\x5d\x2b\x20\x55\x84\xec\x35\x95\xa6\x65\x54\x5f\x59\x09\x02\x4b\x51\x68\x23\x68\x30\x4a\x8f\x8a\x05\xa3\xe1\xbe\xf5\x8c\xff\xe8\xef\x85\xdb\x91\x8b\x35\x05\x87\x05\xe7\x87\x13\xc7\xad\x7a\x48\x97\xd1\x19\xcf\x88\xa5\xbd\x66\x22\xfe\xb8\xa6\xb7\x58\x0e\x41\xf4\xcd\x4d\x0d\x8b\x19\x50\xd9\xe6\x08\x24\x8e\x99\x92\xa0\xe5\x71\xc6\x8b\x0d\xde\x80\x81\x3d\x23\x1a\x50\x63\xf0\xe0\x5a\xed\x32\x9c\x04\x8a\x78\xa7\x32\x8c\x86\x16\xda\x89\x1c\x4c\xe4\xfe\x96\x09\xd3\x54\x2c\x12\xd1\xf6\x24\xf2\x78\x76\x10\x6a\x42\x8f\x7c\xe4\x99\x2c\xa5\x73\x31\x8f\x3d\x7a\x8e\x2c\x05\x4e\x94\x08\x3c\x60\xe0\x3f\x47\x88\xbd\x52\x77\x86\x70\xf5\xd4\xb9\xb3\xaa\xa9\x5e\xd3\x45\x76\xf8\x60\xfb\xf4\x34\x22\x5e\x8d\xde\xf0\x72\x8e\xe7\x0c\x43\xd6\x8b\x77\x0b\x0a\x7c\x4e\x48\x7f\x9f\xb8\x01\x5e\x95\x7a\xf2\x04\x06\x30\xfd\x35\xce\x9d\x29\x11\x33\xf7\x39\x9d\xea\x86\x17\x13\x7f\xcf\x60\x40\x51\x46\x47\xc8\xda\xfb\xec\x22\xe9\x47\x16\x88\x39\xb5\xb8\xc9\x3a\xb9\xba\x48\xf7\x5a\x1b\x29\x4a\x44\x7d\x41\x1e\xb7\xc6\x4c\x68\x11\xe7\x45\x6b\x23\x29\x5a\xeb\x48\x6f\x74\x70\x85\x1c\x7e\xed\x88\x8f\xc0\x73\xb9\x43\x7b\xc4\xbd\x60\xe5\x13\x50\xe5\x04\xcb\x62\x0e\xa8\x5d\xc0\x61\x6f\xa8\xe3\xd7\xb4\x40\xe5\x75\x24\x18\x5a\x80\x2d\x92\x2e\x42\x28\x2d\x93\x45\x7a\xd4\x6a\x40\xe4\x60\x12\x45\x62\x44\x0f\x74\xd1\x98\x6d\x60\xf9\x48\x8d\x9c\x8f\x85\x8b\x78\xde\x44\x6c\xc4\x02\x61\x82\x61\x23\x07\x7e\x03\x10\x1a\x13\x1d\x71\x5d\xbf\xb0\x23\xf8\x8a\xe9\xc4\xe3\x80\xdc\x0c\xaf\xef\x7e\xdd\x48\xd7\x86\x49\xb7\xd3\xc0\xe5\x64\x59\x4b\x67\x4d\xdf\xaf\x85\xe5\x71\x7a\x96\x9a\x5a\x93\xb1\x01\x24\xe2\x05\xd3\x4d\x3b\x2c\xf7\xb7\x42\x3e\x09\x53\x84\xf4\x84\xe6\x51\xac\x4c\x69\x1e\x8f\xc9\xad\x1b\x46\x17\xf7\xa3\x17\x15\x28\x7b\xfe\x23\x51\xa4\x3b\x24\x9f\x78\x5a\x7f\x55\x59\xfc\x72\x1b\x99\x13\x66\x4d\x98\x1e\x09\x43\x4f\x92\x90\x0a\x2c\xf7\xc4\xbf\x30\x8c\x5c\x9d\x3c\x05\xff\xc3\xd9\x88\xae\xc5\x4c\x9a\x6e\xcc\x3a\x6f\x1e\xd7\x6f\x90\x1e\x0a\x80\x3f\x25\x55\xca\x8e\xc5\xc3\xfe\x12\x7a\x00\x50\x4b\x4a\x70\x34\x87\x34\x99\x9a\x35\x2d\x31\x63\x16\x18\xbe\x18\x40\xd0\x43\xe1\x7b\x97\x0f\xdb\x40\x34\xe5\xcc\xc5\x3f\xc0\x33\xe2\x1c\x63\x8b\x16\x5f\x52\x93\x6f\x98\x2e\x44\x96\xe3\x96\x66\x7d\x45\x36\x8e\xf4\xf4\x03\xfa\x86\x18\x85\xc4\x03\x8a\x54\x88\x37\x18\xc9\xe0\xda\xf3\x0d\xa5\xb3\xb7\x67\x10\xfa\x4d\x16\x9c\xa1\xb8\xf9\x36\x71\x77\x1f\xa2\xf6\xf5\xa3\xe5\xa5\x21\x8b\x92\xd2\x6e\x07\x99\x93\x99\x50\xeb\x4b\xcd\xfb\xbc\x73\x12\x61\x8c\x15\x01\x9b\xea\x1e\x10\xcb\xb7\x12\x38\x5c\x2d\xa3\xd0\xc5\x7d\x2e\xe2\x4f\x88\x3d\xe7\x81\x55\xc8\x18\x2d\xd2\xdf\xc7\xa5\xa4\x8d\x60\x35\x13\x41\xe5\xb2\xba\x8a\x78\xa2\x6d\xba\x25\xb0\xaa\xdf\x20\x19\x5e\x23\x44\x42\x80\xda\x05\xb0\x93\x22\x51\x78\x2d\xd6\x55\xee\xd3\xec\x0e\x68\xc5\x6e\xce\x94\x42\x51\x47\x69\xb6\xc1\xfd\xcc\xd2\xaf\x6d\xb7\x58\x6f\x68\x46\x84\x0c\xeb\x54\xeb\x0f\x01\x0c\x13\x91\xc2\x9a\xef\x7b\x42\xc7\x3f\x11\xa4\x8b\x17\x42\x6b\x92\x1a\x70\x6c\x49\x89\x25\x63\xbd\x63\x65\x77\x07\xb5\x83\x84\x5d\x15\x7d\xf8\x47\xa2\x41\x0a\x2b\x8f\xb8\x68\x34\x2c\x50\xff\x64\x55\xc6\x2d\x51\xd6\x95\x54\xc7\xa2\x0a\xe3\xbb\xe1\x51\xa7\x0e\x7b\xb9\x19\x0f\x90\x39\xed\xe5\x74\xcb\x88\x3b\xa2\x65\xad\x50\xb4\x6f\xa9\xc9\xaf\x5c\x5a\x46\x0b\xf9\xf1\xd4\xbe\x04\x87\x26\x6d\x27\x51\xb7\xb5\x48\xbb\xce\xb5\x1c\x19\x20\xc3\x34\x0a\x74\x72\x1f\x3a\xb9\x6d\x85\xa2\x7b\x74\xfe\x19\x90\xfc\x82\x49\x33\x60\xa7\xbe\x7a\xa9\xcc\x36\xb0\x82\xbc\x37\x28\x48\xa4\x40\xd0\x99\xad\x0e\x80\x7b\x23\x8d\x37\xe9\x76\xf0\xd6\x1e\x0a\x75\x12\x96\x56\xb3\x16\xfd\xa6\xc7\x81\x8e\xe0\xae\xde\xab\x22\xae\x15\x1c\x95\x33\x58\x81\x78\xb3\x40\xcb\x91\xe6\x52\x70\xe9\x46\x15\xd6\x0a\x17\x8c\x88\x80\xdf\x33\x5d\xf7\xd8\x88\x5a\x09\xc3\xbd\x28\xc3\xcf\x72\x25\x2b\x1d\xaa\xce\xec\x88\x38\x81\x5e\xdc\x5b\xc3\xae\x63\x61\x38\x88\x14\x30\xf0\x9a\x04\x97\x78\x47\xd6\xe1\x22\x01\xea\xb1\xb4\x0d\x16\x7e\x40\xf4\xee\xb8\x44\xd1\x60\xd1\x78\x91\xa2\x6f\x19\xcb\x0d\x40\x6b\xc0\x80\x7c\x4b\x9c\x2e\x89\x67\xcb\xa7\x2f\x68\xb7\xe1\x9e\xc2\x86\xa1\xbf\x98\x85\x24\x69\x47\x1e\xf7\x0b\x73\x32\x58\xcf\x7e\xc4\xa4\x0a\x1d\x38\x22\x78\xad\xee\x33\xb8\xbe\xa4\x0d\xa3\xb1\x1f\x89\x95\x8c\x07\xcf\xf8\xa5\x7a\x73\xed\xd4\xf1\xfc\xcd\x57\xd7\x4e\x85\xa9\x9c\x15\x8f\xf6\xd2\xb2\xd2\x5d\x51\x82\x7b\x72\x97\xa7\x80\xaa\x09\xa3\xef\x93\xcc\x0f\x67\x67\x25\x21\xc7\x3b\x8a\x29\x73\x16\x3a\x38\x78\x9a\x1b\xfe\xc2\x8c\x39\x7c\x26\x1a\xc6\xa6\xa6\x55\xa4\x16\x70\x90\x79\x0d\x93\xa7\x8c\x70\x76\x19\x65\x96\xc0\x46\xd4\x26\x38\x4c\x00\xce\xd4\xfd\x15\x09\xed\xc7\x44\x8e\x5e\xb7\xba\xbf\xba\x36\xb2\x98\xf6\xa4\x9b\xf4\x12\xbb\x33\x77\x98\x95\x41\x4c\xf8\x05\xd3\xa2\x32\x4d\xc6\xa1\xae\x90\x4c\x48\x98\xf2\x26\xf2\xc5\xd3\x23\x31\x06\x10\x72\x75\x1f\xd1\x8e\xe8\xf9\xbd\xae\xf8\x7e\x12\x0d\x76\x2b\xbc\x61\x28\x98\x8e\xf2\xd6\xb0\x2f\x67\x2a\xee\xc8\xdd\xfc\x2d\x49\x14\x91\x4f\x21\x99\x91\x9e\xf0\x0a\xa0\x01\xa0\x01\xbe\xe3\x4d\xbd\xe1\x80\xd1\x43\x81\xe4\xd5\xa3\x75\xa8\x61\xb3\x96\x51\xce\x15\xaa\xaa\x97\xcd\x39\x7b\x05\xa6\x66\x15\xf0\x48\xf6\x38\xf4\xe9\x98\xed\xa2\x58\x92\x5d\x5d\xa8\x5a\x48\x82\x8d\x30\xad\x80\xab\xc3\xd0\x92\xa8\x17\xea\xc8\x45\x2b\x95\x6b\x24\x26\x64\x8f\x71\x69\x79\x7b\x88\x01\xde\xa7\xe2\xcf\x35\x4b\x3c\xc6\xeb\xdd\x90\x53\xa0\x97\xf4\x5b\xbf\x9e\x51\x84\xf9\xfa\x03\xad\xc7\x2f\x49\x4c\x05\x53\x79\x1b\xaf\x97\xce\x1f\xa1\x16\x70\x13\x43\x93\x13\xc6\x42\x03\x1f\x23\xcc\x7f\x91\x7d\xd0\x1a\x4d\x84\xff\x86\x2e\x1d\xd3\xe2\xe2\xba\x73\xf9\x5a\x02\x14\x51\x18\xde\x44\x5c\x02\x5c\x89\x22\xb8\x10\x50\xee\x2b\x44\xe6\x55\x35\x4a\x69\xfa\x01\x60\x06\x43\x7b\x20\x82\x8f\x91\x0b\x71\x6f\xf3\xd2\xbb\xb0\xf9\xbe\x2e\x59\x2a\xa7\x69\x71\x36\x3c\xa9\x60\x55\x0d\xbc\x48\x8b\x3f\x13\x78\x8e\xc5\x16\x67\xdf\x9e\xad\x20\x3f\x52\x25\xea\x0f\x1a\xe5\xe1\x3a\xaa\xa0\x05\xce\x8c\xb3\x0a\x46\x44\xb9\xab\xb7\xd2\xc1\x57\xa6\xf5\x22\x4d\x5b\xf9\x26\xe9\xa2\xbe\x26\xc3\x90\xc3\xd2\xf2\x19\x3d\xf2\x1e\xdd\xeb\x3d\xf5\x1f\x3c\xe5\x3a\xde\x0c\x26\xd3\x71\x43\x3f\x12\x88\x89\x74\x9a\x01\x97\x01\x4a\xc2\x3d\xc0\x0b\xc1\x50\xd3\xaa\x08\x0d\x02\x52\x06\x1c\xa5\x73\xa0\xb9\x25\xd4\x14\x2f\xa0\xb8\x29\x9f\x90\x3b\x44\x32\x95\x04\x0f\x1e\xfe\xf2\x0c\xfe\x84\x94\x31\x8c\x53\xd0\x24\x53\x11\x11\x8d\x8c\x83\x25\xb2\xe6\x70\x58\xbc\xae\x69\x27\xc2\x85\xdd\x8e\x89\x25\x1b\xa1\x01\x03\xf1\x9e\xb8\x2e\xf0\x91\x74\x1b\xbf\xf3\x2d\x79\xa8\x22\xd0\x24\x3d\xa8\xf7\x01\xb0\xd0\x17\x23\x4d\xc6\x07\x55\xca\x97\x81\x02\xbf\xe8\x08\x83\xc2\x5c\xf9\xf2\xd2\x3b\xbc\xf8\xbf\xf2\xc0\x46\xc3\x5b\xc9\x4b\x61\x39\xd1\xe5\x98\xcd\x7a\xee\x88\x7e\x65\xac\xf1\x99\xa3\x18\xda\x43\xcd\xbe\xe8\x12\x96\x97\x56\x57\xdf\xbb\xc2\x82\x2f\x1e\x13\xa9\x78\x35\x29\x07\x8b\xf0\x5e\x51\x0c\xf2\x0f\x44\x89\x49\x5a\x44\xec\x7c\x1b\xe5\xfa\xfa\xad\x2c\x2e\x9a\xe2\xa0\x64\xf6\x73\xa4\x30\xb0\xea\x95\x38\xea\x5d\x0c\x1b\x9d\xb8\x52\x21\x98\xcd\x69\xe0\x3c\xdc\x85\x09\x49\x37\x91\x49\x39\x8d\xdc\xfb\x3b\x46\x9e\x35\x47\x6d\x36\x53\x34\x67\xa5\xc5\x31\x99\x75\x7e\xbc\xa0\x21\xc7\xc7\x70\x49\xba\x83\xcd\x88\xd8\x58\xa9\xfb\xfd\x9f\xea\x0d\x00\xca\x80\xc7\x37\x99\x61\x31\x0f\xe9\xb3\x49\x7e\xf0\x4c\x48\x35\x83\x2d\xb1\x97\x97\x4f\xb6\x5e\x41\x40\x74\x48\xc2\x2c\x83\x50\x1b\xdf\x3f\xf3\xc6\xd2\x01\xec\xf3\xff\x6f\x3c\x1e\x70\x22\x01\x2c\x41\x6e\x73\x72\xf0\x78\xdf\x24\x83\x40\x40\xd0\x34\xd4\x3c\xf9\xb9\xb3\xd8\xc1\x01\x8a\x82\x8b\x35\xf1\xc7\x73\x5c\x6c\x12\xd7\xd8\x9a\xa5\xa9\x05\x4c\x92\x98\x37\xd9\xa7\xa6\xc8\x12\x10\x61\xd0\x01\xa3\x78\x14\x34\x55\xa0\x2a\x8e\xad\x17\x7d\xd2\xaa\x1f\x5f\xa8\x97\x03\x02\xad\xd4\x16\x00\xcf\x83\x60\xcb\x1f\x6b\xc2\xc0\x8c\x3d\x8c\x9f\xac\x12\x9a\xe8\xd3\x79\x70\x94\x46\x8c\x56\x03\x73\x9a\x0d\xed\x76\xc9\x0c\xe4\x48\x8e\xd1\xb0\x7f\x15\xd8\xa4\xbe\xb4\x48\xd2\x45\x56\x61\x8a\x28\x84\xef\xd6\x11\x69\x8b\x1e\x90\xcc\xce\x98\x5a\x03\xc5\xdf\x4e\xb3\x2c\x6e\x17\xcd\x33\xa7\x2f\x5d\x39\xf3\xde\x69\xc7\x2a\x6b\x97\x44\x36\x8f\x58\x5c\xdb\x70\xf0\xa1\x23\x6b\xf4\xb4\xd6\xe3\x59\xdc\x68\x15\x5f\xfa\x9d\xc0\xc9\xbb\xd9\x70\x8d\xce\x5b\x6b\x71\x0c\xfc\x48\x74\x35\xee\xcf\x13\xc0\x2b\x66\x10\xb5\x9d\xc6\x21\x69\xf9\x8e\xc4\xf0\xb6\x55\xd3\x58\x18\x80\xd7\x36\x05\xcc\x6b\xb5\xa5\x0a\x6c\x0c\x1a\x5c\x59\x4e\xb1\xae\xf1\x02\xa0\xed\x02\xad\x7b\x90\x77\x7e\xab\x7c\x7e\xa9\x45\x58\xd4\x4e\x19\x29\xcd\xa6\x65\x75\xa3\x01\x8b\x1f\x3c\xa1\x28\x34\xef\x76\xe3\x0d\xb4\x28\xd1\x83\x37\xdb\xf4\x90\xc8\x95\xe7\x30\xa0\x5b\xfe\xfd\x1b\xb3\x01\x4c\x48\x54\xbb\x27\x50\x52\xd4\x3a\xe6\x14\x98\x53\x67\x8f\xea\xbc\xd3\xa0\x09\x4a\x0f\x73\xd6\x48\xe9\x9f\x92\x4a\x16\x28\x93\x8c\xfc\x21\x1c\x59\x7d\xdf\xd0\x03\x55\x11\xcf\x0e\x8a\x63\x35\x8a\x76\x09\x4c\x51\xe2\x69\x56\x8e\x88\x16\xbf\x4f\x66\x40\xc6\x7c\x04\x8d\x14\x9c\x98\xdc\x5f\xb2\x59\x63\x79\x34\x70\xb7\x51\xc0\x4f\xc3\xf9\x6e\xe1\x8e\x6d\x2f\x24\x94\x18\xd1\x17\x18\x01\x3a\xa1\x88\x1a\x84\x8b\x85\xba\xb4\x54\xde\xa2\x1d\xba\xc2\x76\x59\xf1\x5d\x61\xcd\x0e\xb5\xb3\x0a\xc2\x8d\xf8\x93\x24\x27\x3a\x7a\xe4\xd6\x9a\xa5\xa1\xb8\x41\xaa\x8c\x3d\xc3\x58\x33\x30\xea\x46\x79\x81\x42\x5c\x5e\x1d\x76\x80\x1a\x31\x08\xb5\x92\xff\x1a\x1d\x65\x48\xe7\x41\xf8\x72\x8f\x98\x34\xb4\x25\x46\x31\x8a\x73\xdb\x98\xac\xf5\x57\x71\x0f\x90\x04\x53\xa7\x55\x54\xf8\x19\x11\x53\x2c\x22\x52\xc2\x73\x1f\x7a\x4d\x40\xe7\xbf\x20\x70\xa7\x97\x1c\x0d\xf2\xae\xc6\xdb\x61\x31\x1f\xa0\xe7\x03\x87\xbf\x24\xcd\xb3\x9c\xf1\x8a\xee\x4e\xe8\x6f\xa0\x05\x4f\x6a\x8c\xfe\x06\x49\xa3\x87\x6c\x4d\x70\x2d\xce\x80\x1c\x36\xfd\xb1\x29\x7e\x99\x7c\x5a\xa8\x59\x62\xee\x8f\x64\x68\xe6\x46\x93\x14\x7c\xcf\xda\xf9\xe1\xfc\x0f\x15\xcd\xfa\xa9\x58\xd4\x8c\x8d\x56\xe9\xb0\x56\x8a\xba\xa3\x35\xc6\xbe\x78\x4c\x6b\x90\x6a\x6c\x3a\x50\xe2\xa0\xbb\x95\x51\xd6\x77\x0d\x14\x18\xd0\xae\x46\x55\x75\xd7\x62\x48\x85\x5c\x15\x95\x3c\x24\x85\xf3\xa7\x4c\x16\x33\x38\x67\x4d\x10\xd0\x44\x05\x40\x40\x3c\x7f\xc6\x85\x68\xe4\xca\xf5\x7d\xf6\x8c\x4e\x10\xd9\x0b\x09\x0d\x6f\xdc\xb2\xcc\x29\x64\x07\x04\x4d\xf5\x0a\x69\x62\x0e\x4f\x50\x4d\xf0\x94\xc4\xcd\x87\xa2\x28\x7d\x26\x03\x20\xa1\x8f\x11\xd4\x18\xed\x9b\xec\xa3\x01\x8e\xe2\x00\xa1\x89\x22\x64\xc7\x10\x6b\xf0\xb4\x50\xcc\x45\x8e\x45\x62\x61\x30\xd2\xb2\x23\xab\x94\xda\xad\x41\x77\x34\x26\xed\x32\x32\x42\x8d\x96\x16\x43\x11\xb3\xa1\x65\x50\x07\x9a\xa3\xdb\x37\x52\xb7\x2f\x59\xb4\xaf\x8d\xf2\xbc\x81\x0b\x0a\x2e\x2f\xba\x00\x12\x4d\xe3\x04\xf4\x38\xa5\x75\xaf\xde\xfe\xea\xc5\xae\x51\xca\xc0\x8d\x5f\x09\xcf\x63\xce\x1a\x6b\xad\x94\xfe\x8a\x5a\xe3\x5d\xe5\xec\x1b\xdb\x68\xda\xb9\x89\x71\xe1\xd4\x7a\xbc\xc8\x5d\xdc\x67\xc9\x03\xf6\xcc\x82\x08\x51\x5c\x08\xed\x75\x92\xed\xa2\x68\xe7\x11\x0e\xee\xd4\xe2\x6f\x9e\x87\x6b\x23\x7b\x30\xc3\x36\x48\xb3\x08\xfa\xa2\x6b\x43\x93\x99\x33\x24\x75\x19\x37\x71\xc0\xc7\x94\xda\xac\xee\x2b\xd0\x3f\xe4\xc1\xd3\x5a\xcb\xa2\x7e\x7b\xd3\xc5\x13\xff\x24\x97\x55\x1c\xe1\xc8\x87\x87\x17\xa1\x0e\x37\x10\x5b\x8f\xeb\x87\xda\xb0\xcd\xa8\xbf\x11\xb7\xb4\x19\x9d\x27\x00\x70\x24\x15\x62\xaf\x85\xb8\x8b\xe5\x93\xda\x7c\x0e\x4d\x3e\x4d\x2b\x6c\x2f\xf7\x62\x8d\xed\x56\x6d\x1c\x47\xe8\x31\xf3\xd7\x29\x70\x46\x68\x2f\x77\x8f\xe0\xeb\x0d\x92\xc2\x3c\x92\x8b\xff\x8c\x6a\xa0\x0a\xd5\xf1\x1c\x4b\xe2\x7a\xf5\x1f\x09\x7e\x92\x62\xdb\x95\xba\x1b\x85\x16\xea\x5d\xba\xdd\x74\x2b\x46\x2d\x26\x4b\xbd\x59\x32\xc8\xac\x3e\xba\xce\xc2\x7c\x32\x04\x80\x38\xa5\x07\x42\x91\x88\xa3\x28\xd7\x25\x75\xbb\x53\x17\x4b\xe0\x3a\xa3\xf4\xa4\x41\x54\x1a\x0a\x87\xb2\x6b\xdc\xc8\x4c\xda\xec\xc4\xf1\xfc\x04\x9f\x0b\x3c\x36\x4f\x04\x4a\xb8\x56\x5c\x08\x83\x6c\xc3\x83\xa8\x00\xda\xa4\xcf\xe2\x59\x9a\xc7\xfc\x3e\xbe\xff\xd3\xf1\xfc\xfb\x67\x8e\x5d\x94\x83\x97\x0c\xf5\x4a\x5e\x7b\xec\x52\x08\x27\xc5\x78\x20\x7a\xee\xb3\xb5\x7e\x51\x82\x3c\xf3\xa6\x27\x71\x19\x6b\x8d\x27\x5a\xe4\x68\x8b\x2b\xa1\x6c\x1d\x23\x83\x5d\x5f\x71\x79\x1b\x0f\x44\x34\x18\x74\x93\x36\xa9\xa8\x72\x39\x15\x65\x73\x73\xd6\x58\x87\x5c\x3a\xa1\xdf\x4e\xdc\x8d\x8b\xd8\x90\x41\x8e\x08\xdc\x95\x10\x0e\x93\x4e\xf3\x83\x73\x67\x71\xf2\x83\xe1\x1a\x74\x68\x3d\x2f\xc9\x70\x13\xe1\x00\x89\x4a\x9e\x56\x7c\x30\xb5\xa3\x31\x9b\x9d\x59\x46\x62\x62\x9d\x50\x16\xe0\x29\xaa\x94\x17\x91\xd2\xcf\xc8\xa6\xeb\x50\x64\x15\xae\x59\xbe\x0f\xbe\xf4\x19\x31\x2a\x2e\x58\x77\x22\xba\x3e\x0b\x5a\x25\x0b\x7a\x34\xd2\x78\x31\xd8\x11\xa5\x90\x83\x9b\x8f\x90\x5a\x41\xc8\x74\x93\x3e\x3c\xe6\x73\x53\xea\xc1\x27\x23\xa4\xed\x23\x4f\xc3\x26\xed\x7f\x2e\x40\xf1\x89\x51\xeb\xe2\x91\x46\x87\x53\x26\xe2\xff\x37\x1c\xe0\xbb\x33\xdc\xc9\xbb\x69\x5b\xcc\x69\xbf\x11\xd8\x76\xc4\x6b\x30\x71\x9c\x17\x60\x37\x07\x1d\x94\xf6\xda\x2d\x24\xff\xff\x23\x47\x03\xe0\x6f\xa1\x5f\xde\x4a\x62\x43\x4e\xb7\xc2\x5c\x2a\xba\x38\xcf\xc9\xf4\xf3\x90\x49\x39\xdd\x87\x26\xa1\x04\x3a\x2e\xea\x2a\xee\x3a\x54\x92\xa2\xb4\xd2\x82\x51\xff\x89\x19\xbf\x5f\x7e\x5c\x26\x54\xf5\x60\xe0\x88\x7d\x49\x17\x4d\x22\x1d\xf0\xd9\xab\x56\x36\xe6\x98\x47\x48\x6c\x1d\xb1\x1e\x86\x55\x01\x96\x88\xb4\xc7\xfa\x21\x9b\x9c\x7a\x2e\xcd\xac\x53\x06\xd0\x81\x2e\xb9\x5f\x0b\x9d\xbe\x57\xeb\x1d\xac\xad\x78\x7d\xfc\x51\xb6\xfb\xad\xc6\x67\xd0\x7a\x40\x83\x4f\xc2\x4d\x39\x6e\x43\x4e\x8b\x38\xd3\xbf\x43\x73\x4b\x45\xf0\x4f\x5b\x35\x8b\x16\x24\xe4\x77\x43\x77\x84\x39\xf7\x27\xa4\x98\x83\x7b\x62\x2d\xcb\xdb\x9b\x69\x9a\x8b\x61\x89\x9e\x81\x36\x5f\x0a\xd8\x95\x38\x63\x96\x63\x67\x6c\xd9\xcb\xa7\xb4\x84\x20\x71\xc4\x4e\x7d\x5c\x42\x6d\x89\xae\x27\x4c\xb8\xa0\x95\xf4\x28\x5a\xc2\x6f\xcd\xa8\x1f\x33\xdf\xc1\xca\x72\x31\xca\xaf\xd3\x2a\x8d\xe9\x5c\x32\xb2\x7b\xec\x88\x65\xc9\xf3\xd1\x5f\x5e\xc7\xca\xf1\xfe\xdc\x2d\x32\xd2\x0d\x6d\xeb\x8a\xe5\x3c\xe1\xea\xd8\xa1\xb6\xb9\x74\xc9\x0e\xa5\x51\x5a\x32\x7b\x51\xcb\x16\x89\xa3\xca\x31\x75\x96\xad\x72\x57\x89\xf2\x72\x6f\x33\x21\x41\xb9\x7c\xae\xe2\xcf\xd1\x91\x94\xb4\x38\x69\xd7\x15\x0d\x54\xec\x0c\x9d\x92\x78\x4e\x6c\x49\x37\x0e\x82\xaf\x15\x42\x8d\x47\xcb\x2f\x7c\xaf\x5e\x84\xa8\x75\xcc\x0f\x99\x75\x70\xd4\x92\x21\x29\x51\xfd\xf8\x66\x4a\x83\x4a\x2b\x62\x97\xdf\x95\x75\x12\x13\x2e\x60\xa5\xbc\xac\x8a\x7a\x7e\xce\x3c\xab\x10\xcd\x9e\x8b\x2c\xa9\xef\xa6\x37\x45\x33\xac\xef\xcd\x81\x33\x44\x39\x8b\x22\xc2\xcb\x1d\x84\x8b\xbb\x38\x5f\x57\x27\x91\x21\x74\xed\x60\x70\x08\xc7\x7b\x8a\x68\xff\x05\x9a\x65\x81\xa2\x58\x9e\x33\xd6\x38\x32\x84\xbd\x14\x7f\x21\x7d\xf9\xa2\x88\x3e\x8c\xdd\x7d\x87\x22\x44\xd1\x47\xc2\x90\x30\x5d\x84\xbb\x39\xc8\x00\x4e\x60\xdc\x85\xbb\xfe\x40\xcd\x17\xad\x2d\x0d\xd9\x50\x6b\x96\xfc\xa8\x5c\x97\xc9\x2d\x53\xd5\x25\xba\xec\x2a\x41\x11\x42\xe2\xdf\x39\xde\xb1\xe5\x95\x7f\x91\x55\xe7\xf6\x9c\x80\x3f\x6e\xa3\xe2\x34\x2b\x70\xe0\x05\xda\x5f\xd1\x72\x63\x11\xe6\xe1\x5e\xec\xfb\x2e\xbd\x68\x67\xe6\xd3\x51\xd4\x86\xa5\xfe\xc6\x55\x71\x07\x93\x54\x63\x32\xea\xd5\xae\x75\x6c\x6b\xa4\xd8\xae\x87\xf5\x4b\x24\xa0\x20\x69\x99\x51\x77\xd2\x38\x35\x93\x49\x4b\xfa\x56\x65\x0d\xcc\x9d\x7c\x31\x89\xb6\x47\xcb\xb8\x53\x24\x3f\x82\x0e\x01\x22\xd9\x53\xd2\x3a\xbb\xe6\x14\x1e\x7a\x5b\xb8\x53\x6e\xb7\xa6\xcd\x6a\x6d\xb6\x60\xd7\xb5\x77\x9c\xda\x2d\xcf\x8a\x0d\x8d\xa5\x4a\x96\x6b\x33\xf4\x2e\x47\xf3\x7d\x44\x1d\x63\x36\xcf\xac\x8a\x69\x34\xe2\xda\x5e\xc0\x84\xcd\x35\xa8\x58\xd8\x88\x4d\x4b\x60\x71\x0d\xb0\x10\xdc\x67\xcf\xae\xcd\x37\x78\x71\x8d\xdb\x3c\x72\xf7\x17\x44\x32\xd7\x9b\x33\x11\xf3\x67\x97\xd5\x41\xae\x3f\x64\x7f\x2b\x04\xf2\x23\xb3\xc7\xfa\x60\x19\x68\x6c\x98\xc6\x20\x3c\xf6\x75\xf7\x08\x91\x79\x98\x24\x13\xae\x9c\x46\x29\xc8\x9c\x28\x43\x04\x26\x97\x69\x34\x2c\x51\xd8\x57\x8e\x59\xe7\x53\xed\xa6\x1d\xe2\x86\x1c\x1e\x6e\xa6\x71\x92\x72\xc4\xec\xe2\x95\x21\xfc\x11\x63\xe7\x92\xe2\x91\x5f\x8b\x40\xd2\xd0\x3f\xe2\x93\x2e\x54\xeb\x9b\x79\x91\xa5\xfd\x8d\x53\x62\xe4\x79\xa8\xe5\x5b\x12\xec\xeb\xad\x37\x5f\x95\x02\x0a\x28\x47\xad\x20\x82\xcf\x9e\x34\x98\x89\x48\x81\x43\xcf\x45\x72\xbb\x3b\x31\xf2\x4a\xed\xc0\x80\x57\xe1\xcd\xc8\x8d\x0f\x63\x5d\xf6\x18\xcc\xb9\xe2\x6d\x5c\x10\x8c\x16\xe3\x88\xf3\x5c\x17\x36\x21\xb2\xd9\x2f\x4e\x9b\x35\xf9\xad\x8b\xb1\x22\xb3\x8f\x7c\x4d\x24\x76\x4f\x1d\x63\x0a\xfd\x63\x97\x0e\x3c\x0a\xee\xbf\x7b\x58\x8c\x34\xc2\xd5\xf4\xfd\x7a\x2e\x62\x2d\x73\xde\x4f\x4d\x83\x0d\xdb\x22\xf1\x63\xdc\xe2\xbd\xda\xf2\x64\x8a\xcd\x9c\x33\x6d\xc0\x63\x51\x3d\x09\x7d\x74\xa0\x55\x89\x35\x9a\x1c\xdd\x8f\xe1\x1c\x1d\x03\x16\xfc\x46\x8e\x06\xda\x8e\xdd\xba\x11\x1d\xb0\x80\x4a\xae\x88\xbd\xc7\xbf\x0e\xf2\xad\xa5\x6b\xe9\x81\x73\x3d\x0d\x5c\x54\x16\x1d\xbd\x64\x30\x3c\xad\x7e\x09\xbf\xeb\xc5\x99\x81\xe1\xcd\x14\xb0\xd1\x6a\x8d\x12\x0e\xd7\xd8\x60\xca\x26\x87\xee\xe6\x7a\xc2\x52\xe3\x71\x5c\x3a\x3a\x6c\x0d\x3f\x11\xcd\x95\xc3\x7c\xb0\xb8\xf6\x19\x4b\x4e\xe7\x5e\x71\x8b\x9b\x17\x40\xc8\x95\x29\xe9\x0d\xf0\x46\x1f\x96\x22\xb8\x98\xf7\x25\xde\xc2\xb4\xef\x1e\xf2\x67\x5a\x34\x40\x5a\x3e\x39\x7f\x25\x1d\xdd\x53\x31\x38\x09\x1f\xf0\x67\x53\x8a\xd8\x87\x61\x6c\x8c\x70\xf4\x37\xac\x77\xb1\xe6\xb0\xda\x8a\x5d\x97\xa6\x73\x54\x20\xe7\xe5\x40\x54\xa2\x87\xf4\x74\x6a\xbb\x62\xc9\x43\x45\x91\xb8\xa7\xfe\xa3\xa2\x9f\x14\x73\xac\x48\xaf\xc2\x05\x0d\xf5\x40\x78\x6d\x9f\x4f\xe6\x8f\xeb\xc3\x62\x1b\x2d\x89\x0c\xd1\xfe\x42\xf1\x79\x87\xe8\x40\xbc\x25\x8d\xdc\xf2\x40\x24\xf8\x82\x00\x6e\xf3\x8b\x90\xf4\x52\xfc\x3c\xea\xf1\x50\xa0\x3f\x92\xd9\xd9\xde\x10\x42\xda\x93\x48\x76\x3f\xd5\x9e\x7e\x14\x02\x72\xc7\x20\x36\x06\xfd\xb5\xa4\xdf\x61\x79\x8d\x8c\x8d\x6f\x38\x7f\xb0\x30\xe5\x3e\xd1\x15\xc6\xf1\x90\x0d\xa4\xea\x1d\x56\x98\x86\xb2\xb3\x1d\xb9\x54\x40\x44\x6d\xb6\xe8\x2c\xd4\xec\xce\x1f\xf5\x61\x10\xce\x8c\x5d\xac\x68\x2d\x0f\x27\x36\x8e\x23\xd1\xfa\x5f\x3b\xa2\x86\x91\x0e\x53\x24\x1e\x40\xd2\x47\xad\xff\x0f\x7d\x97\x63\x99\xcb\xee\xdd\x77\x10\xa2\xbb\x7e\x78\x38\xcc\x21\xd5\x1c\xad\x38\x53\x07\x4e\xec\xd4\xc4\x37\x10\xf8\xe3\x8a\x44\xd0\x00\x9c\x43\xc0\x9d\xbe\x74\xae\xc1\xc2\x02\xbe\x1b\x3c\x06\x71\xa5\x72\x14\xb9\x28\xa4\x79\xc4\x04\xa4\x73\x53\x5c\xee\x51\xfc\xfb\x74\x28\x00\x8d\xa2\xca\x51\x7c\x16\x03\x83\xfa\xaa\x7a\x68\xe9\x80\x98\xf3\x7d\xe6\x2f\x9d\x95\x96\x55\xfe\x7b\x46\x77\xd3\x52\xe4\x50\xaf\x5e\xb9\x16\x9f\xb0\x98\x3d\x78\x5d\x00\xe9\x90\x25\xee\x86\xb9\x93\xf7\x16\xf4\xa5\xa0\x16\x1d\xdb\x61\x63\x03\xe3\x44\xbb\x4f\x2c\xb2\x78\x9b\x3b\xa2\x23\x57\xb2\x62\x7b\x61\x70\x53\x7b\xf6\xbc\x21\x08\xee\x98\x38\x26\x0a\x5a\xe0\x51\x72\x8f\x97\x3e\xad\x46\xd0\xa2\x5b\x73\x2b\x3c\x84\xeb\x5e\x19\x8b\x75\x2f\xc5\x59\x8e\x11\x6d\xd4\x69\xfa\xac\xae\xe0\x67\x75\x56\x3e\xd7\xd4\xe2\x13\x46\x85\x62\x55\x6c\x26\xb9\x1a\xe8\x66\xb8\x3c\x5f\x0a\xb5\x95\x74\xbb\x2a\x8b\x7b\xe9\xb5\x98\x02\x63\x64\x31\x86\x6c\xed\x48\xa1\x38\x57\xe9\xba\x72\x74\x36\x0d\x75\x36\x55\xdb\xe9\x50\x6d\x45\xfd\x02\x9a\x50\x5a\x3e\xfc\x96\x3f\x35\x03\x52\x2e\x05\x7b\xdd\x8c\x72\x85\x44\x9c\xf4\xdc\x51\x52\x1c\x75\x07\xdb\x2f\x41\x1f\xfd\x13\x85\x62\x37\x2a\xec\x84\xc5\x84\xd8\x6f\xe6\x0e\x46\x41\x2b\x5b\x71\xb7\x4b\x50\x47\x7a\x37\x86\xe6\x25\x9a\xa3\xce\x96\x5c\xaa\xb9\xa2\x78\x21\x2e\x5c\x1d\x08\x11\xd5\xbb\x6c\x2c\x66\x9a\x35\xfc\x1f\x4a\x0d\x66\x45\x1e\xc0\xf3\x44\x04\x0d\x1c\x87\x47\x78\xd4\xc6\xca\x72\x03\x93\xdf\xa0\xd7\xdf\x37\x40\xf4\xff\xcf\xc9\x6f\x00\x22\xfe\xc6\x61\x04\xf6\x8c\x23\xb7\xb6\x1b\x78\xc9\x7a\xd9\x97\x27\x1c\xb6\x82\xf7\xe5\x1b\x48\x48\xfa\xf5\x74\x40\x81\x80\xec\xa6\x14\xdd\xb4\x54\xcf\xe2\xc0\xd1\x6c\x14\xe1\x84\x9e\x72\xc7\x32\x12\x81\x38\xdd\xf9\x1b\x24\x07\x5c\x9c\x28\x5b\x5e\xfa\x10\x15\xc6\x1f\x2d\x2f\x89\x55\xd4\x1d\xdf\xe0\xc8\x31\x88\x9c\x67\xc6\x6e\x2d\x27\xb5\x7a\xe1\x1f\x28\x94\xc2\x17\x5a\x12\xeb\x98\x26\xd6\x34\x83\x3c\x98\xf6\x63\x67\x75\x03\xda\x10\xf0\x22\x1c\x89\x99\x8b\x48\xec\xdd\xbd\xc7\xa5\x65\x73\x1b\x2d\x96\x35\x5b\xdf\x40\x8f\xdb\x3c\x59\x4b\xba\x44\xd0\xdd\x21\xa0\x32\xd6\x96\x40\x08\x2a\xe8\x33\x7e\xd5\xc3\xbe\x82\x77\xdc\xc6\x5f\x55\xf0\xf4\x66\x3e\x88\xfa\xaa\x0d\xb4\x65\xde\x3c\x36\x4c\xe0\x6b\x47\xa1\x2b\xf3\xb1\x53\x97\x32\x72\xa0\x80\xfe\xa0\xc4\xa9\x6a\x6b\x18\xd6\xb7\x0d\xc4\xe8\x2a\x46\x88\x24\x6f\x74\xba\xb2\xfc\x96\xe0\x04\xa0\x32\xe5\xea\xec\xf1\x9a\xae\xc5\x3f\xa8\x4b\x0c\x21\xac\x67\xf1\xf2\x19\x12\x4a\x23\xd4\x21\xa0\x75\x2d\xea\x0e\x63\x06\x52\xd1\xfa\x7a\xdc\x2e\xa8\x73\xac\x91\xbf\x42\xda\xf3\xab\x62\x1e\x73\x57\x4e\xfe\x4d\x2b\x74\xaa\x09\x6f\x4c\x95\x38\xfc\x96\x5b\xc9\x39\xfa\x47\x08\x18\xa8\x58\x65\x95\x03\x55\x28\x62\x12\x6a\x91\x42\x07\xec\x2b\x26\xd6\xd8\x26\xe5\xb6\xe6\xf8\xf7\xd8\x76\x95\xbd\x81\x45\xa6\x04\xaf\xc8\xf6\xcc\xdb\x69\x94\x8d\xd0\x01\xe5\xdb\x76\xd7\x5a\x25\xf0\x5d\xa6\x6f\x18\x50\xdb\x09\xa6\x6d\xde\x39\xc1\x0b\x6f\x89\x57\xbd\xc0\x04\x1b\xc8\xa9\xb1\x91\x14\xc9\x46\x3f\xcd\x62\xe0\x41\x92\x36\x90\x47\x31\x86\x13\x1e\x93\x75\xd0\x21\x4d\xe5\xb6\xf9\x32\xb7\x41\x45\x80\xd1\x54\xe5\xd1\xc3\xf1\x89\x9b\x97\xe9\x8f\x7e\xac\x6f\x08\x03\xf2\x4a\xa4\x70\x23\x12\x97\xc6\x01\x62\x64\xd2\x4a\x34\x2c\xd2\x56\xd2\x4f\xc8\x42\x96\xe3\x8d\x8f\x19\x2a\xbb\x81\x72\x7c\x66\x33\x7c\x1c\xdc\xd8\x04\x0e\x77\x60\xba\x64\xb2\x74\xec\x0d\x0c\xb7\xd0\x38\xa0\xf3\xe9\xf3\x29\xcf\xba\x93\x27\x31\xa5\xc4\xfa\x87\x83\xa8\xdf\x34\x96\x4e\x08\x1e\x0f\x88\xb8\xfc\x5c\x4b\x69\x74\x38\x6f\x98\x6b\x11\x67\xd7\x90\xcb\xf9\x1d\xdb\xd8\xb1\xc9\x19\xae\xb8\xeb\xa8\x5f\x8e\xac\xf7\x32\x0b\x66\x5e\x99\x6d\xc2\x12\x86\x8c\x8a\x2d\x58\x7e\xb4\x09\xcb\xbf\xb8\x3b\xaa\x85\x25\xe1\x90\x07\xc6\x6a\x66\x8e\x3d\x4b\x3f\x46\x15\xe9\x10\x23\x8c\xfc\x71\xea\x04\x23\xd6\x7e\x0a\xd5\x98\x43\x14\x18\x7d\x83\xe9\x51\x37\xa2\x30\xc2\x66\x13\xd2\x9c\x02\x26\x38\xa5\xea\x20\x2b\x41\x23\x80\x75\x91\x0f\xed\x10\xcc\xa9\x35\x00\x57\xc7\x4e\xf1\xae\x19\x50\xa7\x1b\xe5\xb3\xa2\xc3\x48\x90\x36\xbe\x16\x2d\x49\x9d\x46\xbb\x9b\xf6\x01\xe9\x76\x3a\x99\x30\x68\x9a\xb0\xf5\x48\x6f\x23\xc8\xad\xa9\xc8\xf0\x83\x26\xd2\x86\x11\xd3\xe0\x6d\xc4\xc5\x57\xdf\x3d\x77\x85\x22\x35\xa6\x99\x42\x93\x8c\xae\xe2\x10\x77\x0a\xa3\xb8\x34\x6c\x93\xda\x82\x97\xca\xcc\x0b\xf1\xe2\x85\x7b\xf3\xa2\xbe\x50\xec\x0f\x4f\x13\x2c\x96\xb3\x75\x96\x6e\xc6\x4e\xb2\xa2\xdd\x96\xb8\x3b\x88\x68\x29\x80\x72\x43\x4e\xfa\x55\x38\x20\x04\xe2\xf9\xb7\xc2\xdf\x0e\xe4\x6f\xe5\x71\x77\xbd\x2e\xb0\xaf\xe8\x71\xf6\x8d\xa9\x66\x69\x8b\x46\x53\x6d\x90\x7a\x93\x95\x66\xa2\x3b\xbb\xe3\xf8\x12\x08\xb3\x51\x32\x83\x26\xe2\x6d\xb0\xdd\xea\x26\xfd\xab\x35\x5b\xe9\x94\x70\xb9\xf2\x52\x49\x5c\x33\xb7\x31\xf1\x88\xb9\x84\x5b\xad\xfe\xed\xcb\xdf\x9d\x3c\x83\x5b\x79\xa6\xc8\xba\xf0\x8b\x88\xf4\xc1\x36\x14\x07\x30\x7e\x15\xfd\xde\xf1\xb1\xf6\x28\x71\x2c\x3f\x58\x04\x0a\x64\x88\x82\x2a\x63\xe1\x01\xf5\x12\xbc\xd2\x15\x1e\x2e\x30\x3c\xec\x0e\x0f\xa0\x71\x58\x0d\x4a\xbd\xc5\xfc\x3c\x10\x17\x74\x32\x7e\x4b\x89\x28\xcc\xc4\x23\x2b\xc7\x0a\xdb\x99\x1d\x13\xdd\x76\x34\x19\xa3\xac\xf9\x25\x94\x77\x6c\x69\x77\x9e\x3d\xbe\x30\xb4\xa1\x3a\xd0\xe0\x44\x1c\x00\x70\x1f\xa4\xe0\x7d\xff\xed\x10\xc3\xe2\x64\xe4\x2d\x60\x0d\x42\xc6\x24\x9c\x2b\xd9\x14\x3e\xc4\x35\xe0\xc2\x77\xaa\x5f\xf7\xf8\x34\x06\xe8\x16\x02\x70\x1a\xe1\x7f\xcb\xc7\xff\xc8\xc5\xfb\x08\x1d\x7e\x36\xc4\xad\xdc\x18\x26\x14\x14\x9f\x47\x42\xbb\x80\x72\x7a\x58\xe9\x7d\xe1\x72\x75\x64\x47\xb3\x1d\x48\x54\x09\x1c\xfa\x7d\x79\xd9\x67\xe2\x2e\x27\xde\x0a\x11\x18\xed\xb4\xd7\x8b\xfa\x9d\x19\x42\x97\x3a\x84\x4b\xab\xe5\xba\x1c\x68\x25\xab\xe8\x9e\xc8\x54\x73\x30\x44\xbf\x45\x34\x8d\x75\xe8\x3b\xdf\xef\xbb\x0c\x29\x58\x99\xf6\x63\x3b\xa6\xc9\xc1\x1a\x51\xbc\xed\x10\x51\x4d\x1f\x56\xd4\xa0\x1b\x47\x79\x0c\x37\xab\x17\xab\xb5\xa8\x7d\x55\x21\xdb\x9c\x91\x93\xee\xf2\x52\x05\xc1\x2f\x2f\x15\x59\x4c\x36\x54\x0c\xfb\x69\x47\xc4\x08\x18\x03\x8f\x17\x11\xe7\x7b\xe0\xe2\x44\x71\xb0\x9c\x87\x07\xc5\x25\x63\xb7\x08\x9a\x12\x73\x60\x1f\xf3\x42\x27\x73\xb8\x4b\xa6\x3b\x3b\xae\x26\x90\xd3\x40\x54\xd2\x3f\x74\xa3\xb5\xb8\xeb\x37\xd2\x4b\xba\xf0\x0d\x8e\x4a\x2e\xcc\x1d\x0a\xd7\xf1\xea\xf7\x7a\x49\x91\x73\x06\x86\x03\x76\x3c\x67\x5f\x69\x5a\x07\x31\xd9\x25\x02\x0c\x5f\x93\xdd\x5d\x16\x6d\x01\x89\x01\x43\x61\x03\x72\xe2\x75\xe4\x13\x2c\x2b\x27\x89\xf8\x9d\x78\x36\x08\xd6\xa3\x8f\x14\x6b\x88\x2a\xdf\xf3\xf4\x50\x7b\xda\xe4\x3a\xd4\x22\x00\x99\x5e\xc4\x80\xf5\x9e\xf5\x97\x98\x68\x8b\x79\x63\x0c\xb7\xcf\xa6\x6a\x32\x9f\x46\xdd\xbc\xf4\xf7\x4a\x9a\x0b\x7d\x82\xd8\xf5\x1e\xce\xba\x2d\xbb\x4e\x32\xd6\x6f\x45\x06\x35\xb6\x1f\x90\x54\x41\x87\xc5\x5f\x39\x19\x60\xe4\x53\x0f\x20\x36\x67\xcf\x81\xb6\x8e\x28\xd6\xba\x61\xd4\x75\x99\x0e\xc5\x69\xf8\x9a\x2d\x9e\xec\x6b\x09\x5e\x85\x41\x2b\x81\x75\x40\x09\x97\xfd\x06\xd7\x54\x07\x8c\xde\x65\x93\x3d\x13\xa1\x89\x92\xec\x38\x29\x57\x9e\x4c\xd8\x2b\x91\xd4\x50\xb6\x4c\x23\x70\x36\x9c\xaf\x7d\x64\x31\xd6\xe2\x2e\xc7\x3d\x33\x67\xd5\x6f\xa2\x0d\x67\x23\x6b\xe9\x86\xe0\x06\xb3\xbf\xee\xd4\x58\xcf\x1f\x04\xdb\x36\x47\xb0\x79\x41\xff\x2a\xf7\x6d\x8b\x5c\x4c\x55\xb8\x14\x77\x6e\x0b\x9e\xc1\x67\xd5\x0b\x96\x4d\x07\x71\xdf\x29\xfa\x3e\x3c\xda\x56\xf3\x52\xb3\x69\x8e\xc1\x50\x9c\x76\xf1\x45\x5d\x71\xa0\x0c\x31\x03\x51\xdc\x3c\x2d\x3f\x02\x63\x34\x65\x78\x88\x51\xa8\x24\xea\x77\x74\x31\x98\x72\xa5\x0c\x83\xe7\xe6\x19\xfa\xa3\xce\xe1\x4b\xb7\xbe\xdd\x2c\xb3\xef\xc1\x2d\xe3\x72\xad\x41\x37\x6a\xc7\xa5\xe0\x6a\x66\xaf\x28\xd1\x8b\xd7\xad\xb4\x2e\x9d\x9f\xc7\x07\x53\x82\x96\xb6\x88\xd6\x9a\xc7\x3b\xca\xb3\xbd\xfe\xd2\x36\x82\x2b\x68\xca\xa0\x99\x63\xb5\x0c\xdc\x71\x0c\xaa\x20\xd3\xf8\xa6\x32\x76\xf7\x3b\xf0\x1f\x48\xe0\x91\x69\x9c\x20\x50\x8f\xc9\x63\x39\x60\xf5\xec\x49\x1b\x76\x6b\x35\x00\xac\x2d\xe1\xf4\x04\x9b\xc2\xbf\xe0\x2c\x54\x0f\x99\x54\x34\x5b\x28\x1e\xaf\xd6\x57\xfe\x28\x50\x74\x23\x81\xa2\x35\x5d\x54\x8e\x93\x54\x73\xb8\x9b\xd0\xa7\x06\x86\xf4\x33\x49\x7f\xd8\x5b\xc8\x02\x80\xca\x52\x70\x95\x5c\x92\x68\x01\xe5\xb8\x9d\x0e\x03\x63\x17\xcf\xa7\x60\x6d\x3e\x21\x9d\xd6\xda\x36\x57\xae\x57\xbb\x04\xab\xf7\xe2\x3e\x4a\x7a\x31\x0e\x2c\x55\x17\x22\x9b\x28\x3b\x04\xef\x1c\xc3\xa8\x5c\x35\xa7\x10\x26\xf7\x27\x1c\x23\xbf\x44\x60\x57\x8b\x36\x10\x77\xe7\x85\x85\x97\x4f\x59\xfa\x17\x2c\x8b\xb7\x02\xcb\xde\x17\x56\x60\x76\xe9\x2c\x6e\xc3\x0c\x58\x7e\xdd\xbc\x4c\x0f\xdd\x6d\x91\x67\x77\xc2\x63\x01\x7c\xaa\x2b\x9c\xc7\xdf\x2a\x5b\xa4\x5a\x2f\xcd\x0b\x84\xfe\x68\x40\x70\x01\x7e\x2b\x79\x98\xd5\x8b\x2e\xcf\xdd\x54\x2b\xe0\xdd\xa5\xad\x6b\xf2\x2f\x75\xfc\xc3\xd7\x3e\xca\x31\x4c\xb6\xb5\xfe\xf8\xf0\x27\x1f\x01\xa9\x7d\xfc\xc3\xd7\x3f\xca\x91\xc6\xae\xd6\x6d\xad\x47\x57\xe3\x4a\x03\x54\xcf\x14\x1e\x64\xf1\xb5\x24\x1d\x8a\x43\xc8\x1e\x69\xc0\x1e\x11\x75\x27\xb8\xbb\x94\x59\xce\x00\xac\x4f\x0a\x43\xa1\x0b\x01\x38\xb3\x02\x03\x23\x12\x78\x23\x8c\xf7\x21\x50\x47\xbe\x30\x40\xb7\x9d\x0c\x7b\x2d\x59\x9a\x1c\x01\x94\xfe\x6d\x2b\xeb\x75\x6b\x45\x45\xf3\x63\xf3\x84\x6b\x94\x74\x70\x85\x60\xca\x9a\x2d\xf9\x0b\x7e\x3a\x45\xd3\xc7\xf5\xfa\xd8\xf6\x93\x1a\x03\x90\x2b\x9b\x71\x16\x23\xad\xd9\x67\xfd\x0a\xbc\x53\xdb\x71\xd1\x28\x41\x4c\x49\x95\x15\x06\x98\x5c\x44\x46\x13\x2c\xca\xb9\x3b\x84\x98\xd1\xfe\x9f\xa1\x9b\x92\xc5\xb4\x6e\xdc\xc6\x65\x7a\x28\x7f\xf3\xfb\xe1\x32\x1c\x7b\x9d\x3f\x94\x11\x86\x3e\x79\x86\xec\x9a\xd5\xbf\xec\x0e\xad\x2e\x23\xdb\x17\x5c\x5a\x1e\xa4\x34\xa1\x1f\x5e\xb4\x11\x26\xad\x80\x1b\x59\x97\x66\xd6\x61\x93\xfa\x28\x0e\x27\x41\x35\x95\x22\x39\x83\x8a\x14\x97\x7d\xd1\x1e\x80\xcb\xc0\x14\x8d\x97\xe8\x8f\x79\x4b\xd2\x77\xb2\xff\x0c\x87\x89\xb1\x87\xbb\x46\x13\x22\x9f\x75\xa0\x41\x60\x3b\x5b\xeb\xc4\x8c\xcc\x0d\x29\xc8\xb1\x58\x91\xd7\xa7\xe0\x67\x1e\x9a\xd2\x61\xf4\x74\x7c\x1a\xe2\x57\x8b\x54\xa1\xc3\x1f\xaf\x08\x9c\x5c\x4c\x17\x29\x6a\xc3\xd3\x5d\x14\xde\x6e\xab\xcd\x08\x15\x8d\x7d\x25\x6a\xa4\xb7\x7c\x43\xb2\x55\x68\x55\x61\x03\xa9\x3e\x39\x1e\x50\x89\x3b\x49\x11\x08\x6f\xa4\x77\x28\xe4\x95\xa2\x87\x0b\xdd\x36\x57\xe1\x3f\xf3\x86\x49\x85\xc2\x8d\x2a\x14\xa0\x09\xb8\x54\x3b\xed\x22\xfd\xfe\x4f\xcc\xa9\xcf\x2a\x87\x9a\x38\xa4\x62\xb8\xc4\x11\xb2\x27\x5e\x09\x7b\x93\x08\x98\xb0\xba\x48\x7b\xa3\x69\xd3\x10\xc2\xc6\xa5\x8a\x3c\xf5\x3f\x90\x2c\x42\xc2\x65\x05\x2f\x0b\x97\x0e\x7a\xc9\x95\xca\x54\xa3\x45\x39\x6e\x47\xe1\xf9\xcd\x30\x04\x9b\x57\xa5\xce\x9a\xfb\x36\xcc\xe2\x19\xe5\x57\x1d\x89\x17\xad\x18\xa0\xee\xcd\x34\x03\x73\xa9\x16\xf4\xac\x0f\x6a\x09\xc3\x03\x31\x62\xb5\x6f\xac\xf8\x9d\x6d\x82\x47\x65\x0d\xa5\x6f\xce\xf5\x12\xbb\x13\x02\x1f\x8d\xc0\x60\x10\xc1\xa9\x67\x17\x0a\x14\xd1\x89\x68\xc2\xb8\x93\x94\xfc\xb1\x0c\x0b\x5e\xae\xca\xeb\x72\x86\x5f\xaa\x62\x2b\x55\x9a\xd9\x27\xf8\xd9\x03\xe4\x09\x00\x05\xab\x2a\x49\xe2\x88\xda\x2f\x25\xb5\x1b\xe5\x56\xd7\x80\x19\x6f\xe2\x7f\x95\xee\xf8\x6f\x53\xfe\xea\xcf\x42\x13\x88\xc0\xe2\xa7\xf4\x24\x23\xd0\x45\x00\x31\x65\x71\x3e\xec\x02\xfa\x03\x0a\x54\x7e\xc2\x20\x86\xfd\x4e\xc3\x96\x81\x2b\x0f\x34\x1a\x09\x17\xb9\x23\x07\x89\xd1\x37\xb9\xd3\x34\xcd\xb5\xb8\x1d\x0d\x73\x14\x9c\xe4\x31\x4d\x73\x13\x60\x83\x33\x71\x28\x12\x5f\x8b\xfb\xa6\x79\xf4\xd1\x77\xf3\x58\x36\x3f\x36\xad\x47\x02\x57\x4a\x6b\xb4\x16\x17\x5b\x68\x5f\x50\x40\x7b\xbc\xac\x2c\x27\xcc\xdf\x70\x69\x17\x80\xc4\xaf\x52\x0f\xaf\x22\x01\xd3\x11\xa8\xfc\x17\xf4\x20\xb0\x59\x56\xd1\x63\xaf\x5c\x29\x8a\x2e\x41\x80\x84\x37\x13\x4d\x23\x48\x1f\xda\x8b\xa1\x4b\xa2\x79\x3a\x82\x12\x72\xc6\x10\x6f\x62\x50\x41\x8d\x02\xe8\x37\x00\x3d\xa8\xa0\xdf\xbf\x6e\xde\xeb\xe6\xa9\x29\xa1\x50\xb8\x17\x7e\xf3\xe3\x5a\x87\xda\xff\x0e\xc9\x30\x99\x42\xb4\xd6\x72\x81\x76\x40\x92\x84\x54\xae\x5b\x38\x2c\x3c\xb1\x25\x50\x34\x93\x97\x41\x8c\x18\x72\x1a\x25\xa4\xae\x20\xb4\x04\x9c\x21\x9a\x5b\xf3\x12\x8b\xd8\xf8\xb5\xd8\xb0\xb8\x7b\x0c\x53\x1a\xc4\x19\xaa\x9f\x64\xa5\xa1\x1c\xe7\x4f\x69\xf8\xcb\xd6\xbc\x40\x7f\xdc\xd3\x24\x1f\xae\x54\x1a\x35\x96\x29\xb2\xbe\x9e\x61\x8a\x6e\x01\xc8\xf0\x08\xee\x0c\xd9\xf0\x9c\x85\xdf\x46\x5d\x1d\x6e\x8a\x4b\xaa\x0e\x10\x08\x30\x66\x0d\x88\xb0\x12\xca\x80\x61\x73\x70\x0e\xfe\xc0\x93\x1c\x00\x44\xdc\xbe\x8a\x0e\xe9\x70\xd6\x11\x99\xae\x77\x93\x36\x50\xe9\xf2\x16\xcf\x3e\x85\x51\x40\x74\x39\xc8\xd2\x0d\x94\xfd\x1b\xb1\x24\x9c\x6f\x78\xde\x54\x98\x99\x19\x0b\xac\xc7\x5b\xaa\x97\x12\xdd\x6a\x41\x46\xd4\x6f\x91\x22\x95\x66\xca\x87\xea\xbf\xa7\x43\x52\x10\xe9\x75\xc5\xef\x27\x4b\x8b\xab\xd2\xc0\x66\xb8\xad\x92\xfa\x2f\xdc\xf0\x89\x62\x76\xd3\x1a\x30\x14\x74\xbd\x11\x0e\xe8\x89\xe7\xe6\x4a\x6b\x19\x57\x7d\x8f\xa2\x73\x90\xf3\x33\x64\x31\x2d\x4a\xab\x15\xe6\x4a\x82\x3d\x48\xbb\xb8\x11\x79\xda\x05\x5a\x24\x29\xfc\xd3\xe2\x03\x1a\x3a\x39\xc1\x0b\x4f\x67\x75\xd8\x97\x8b\x49\x95\x48\x5e\x9d\x37\x3f\xae\x4e\x56\xce\x70\xdd\x44\x5d\x38\x46\xa5\xfa\xfe\x49\x7a\xf9\x2f\x8e\x77\x5e\xe1\xcb\x9d\x47\xbd\xd8\x57\x46\x16\x9b\xfc\x92\xd7\xd2\x39\x4c\x04\x59\xa1\xe9\xad\x28\x41\xef\x7f\xc2\x1b\x58\x08\x7e\x63\xd0\x37\x57\xd6\x4b\x52\xc1\x8b\x70\x48\x1c\x59\x9a\xf3\xd5\x15\xe2\x30\xe3\xe4\x7c\xf4\xc4\x37\x9a\x79\x2a\x7f\xef\x68\x39\x19\xc6\xe7\x71\xfb\x4d\x5b\x70\x2d\x5a\xc4\xed\x02\x76\xc1\x2b\x82\xbf\x2b\xbd\x37\xc3\xdd\x72\xab\xe5\x99\x00\x8a\x5f\x43\x8c\x02\x67\x40\x20\xb6\xfd\x8e\x1b\x2f\x89\xb4\xc5\xa0\x4c\xa8\x04\xbf\x71\x0f\xde\x87\x17\x85\x49\x47\x0a\x4b\xe9\xbd\x17\xc3\xbb\xbc\x9d\x25\x03\x36\xd0\x73\x3f\xea\xc9\x9e\x85\x99\x9e\xc5\xc6\x5f\xd6\x09\xeb\x5e\x29\x4d\x2f\x8e\x32\x96\x08\x7a\xef\x4d\x02\x0f\x69\xa8\xc5\xdb\x4d\xed\x91\x91\x1c\x3f\xe3\xbe\x4b\xd1\x15\xd5\x1b\x12\x46\x54\x27\xb6\xa1\xb5\x93\xbd\xde\xc9\x4e\xe7\x44\x68\xbe\x86\x34\x32\x13\x66\x7d\xbc\x01\x64\x22\xcc\x29\x03\x45\xa7\x21\x22\x53\xdf\x81\xff\x6a\x16\x0d\xbf\x3b\xdb\xf3\x01\x12\x01\x31\x5a\x0d\xa8\x8e\x5d\x31\x3e\xa9\x76\xcb\x72\x04\xf4\x29\x80\x36\xb5\x45\x86\x81\x6b\x0c\x16\xd0\x5c\xbe\x34\x0d\xe6\x00\xce\xd0\x1f\xef\x8b\x10\xbb\x17\xe8\xcf\xec\xb1\xf1\x12\xb0\x1d\x12\x99\x3f\xf6\x6a\x56\x03\x79\x8a\x59\x6b\x61\xa8\x65\xbb\x9c\xd6\x68\x33\x50\xae\x6a\xb2\x69\x7b\x76\xcd\x34\x11\xd1\xbb\xd7\x1c\xe0\xbb\x6b\xb9\x29\xe7\x79\x86\xa1\x66\xa8\xef\xea\xd6\x9b\x79\x32\x33\x51\x99\xe9\x9c\x7c\xe7\xfa\x63\x83\xcf\x37\xe9\xa5\x9e\x6b\x33\x0b\xf3\xd1\xc9\x70\x91\xb2\x05\x37\xb6\x42\x64\xf8\xe1\x44\xf2\x1f\x69\x0d\xa6\xa9\xb4\x99\xa6\x57\x73\xa3\x4e\xa9\x24\x4b\x22\x3f\xc1\xb2\x4f\x38\x91\x2e\xa6\x85\x0d\x80\x9a\xd4\x08\xe6\x69\xc5\x34\x54\xa5\x31\x03\x61\x9a\xb4\x9d\x4c\xec\x8e\x4f\xad\x4e\xbd\x55\xca\x85\xeb\x54\xee\xe0\xc9\xc9\x5a\x3f\x27\x11\xf2\x5d\x2a\x7a\xc3\x5a\x46\x1e\x31\x5f\x6a\x4a\x73\x64\x8c\xbb\x95\x9c\x3f\xa4\x42\x35\x91\x32\x4c\x71\xf1\x98\x77\x86\x36\x27\xcc\x80\xbf\xdc\xec\xf2\x8d\xf8\xc3\x8d\x40\xc1\x86\x21\x6c\x79\xe7\xda\xda\x6d\xa6\x5b\x88\x32\xaf\xe6\x72\xb8\xf0\x1c\x01\xc6\x72\xf0\x4f\xc3\x69\xbc\x00\xfa\x3d\x5f\xe7\x84\x2a\xa5\x90\x5b\x26\x07\x56\x20\xfa\x83\xb5\x74\xab\xb4\x64\xcc\xe4\xfd\xe6\xea\x14\xbc\xda\x43\x9a\xed\xf1\x6a\x02\x73\x7c\x65\xbc\xdc\x6a\x42\x58\x3e\xa4\x28\x78\xd8\x40\x39\x94\xbd\x9d\xc5\x64\x76\xc2\x66\x33\x11\x44\x46\x1c\xd5\x10\x89\xce\x9c\xad\xaf\x50\x9d\xfd\x5d\xc9\xc7\xbf\x1a\xb9\xd0\x98\x92\x48\xef\x95\x10\x8a\x7b\x65\x77\xb4\x52\xda\x64\x72\xac\xb7\x87\x32\x18\x37\x67\x8e\x75\x5c\xa5\xbe\x6c\xc8\xef\xc9\xe2\x65\xea\x65\x0e\x0c\x59\x47\x87\xf7\xe9\xdf\xae\x7f\xad\x6c\x96\x61\x1e\xf5\x08\x83\xa8\x1f\x4e\xdc\x4c\xb5\xe2\x03\x53\x13\x1a\xcf\x8d\xce\x38\xa2\x78\xb4\xec\x8d\x63\xbd\xad\x6d\x64\xb8\xd0\x21\xa5\x44\xa0\x00\xce\x5a\xaf\x35\x4f\x2a\x24\xd8\xe8\xdc\x23\x35\xa1\x2d\xd5\x93\x75\x32\x72\xa5\xed\x23\x0a\x0d\x00\x6d\x27\xb9\x96\x74\x86\x51\x97\xf2\x44\xce\x6c\xf6\x27\x6e\xb3\x00\x7b\xc9\xa2\xaa\xb6\xe9\xbe\xa6\x49\x1c\xc2\x6d\x1d\xc1\xf7\x09\xa0\x0e\x11\x18\x13\x83\x11\x73\x8d\x3c\xd8\x31\xe2\x03\x11\x67\x09\xe1\x4b\xc1\x2e\x95\x09\x6c\xe5\xe1\x0c\x46\x08\x68\x47\xce\x44\x90\xa1\x4c\xdf\xa8\xee\xb9\xbb\x52\x04\x29\x2c\x19\xab\x4d\x99\xcf\x9c\xbe\x78\xf1\xfd\x2b\xd6\x72\x1d\x30\xf4\xb0\xdf\x81\x81\x57\x8f\xa0\xb7\x42\xa5\xe6\x68\xb1\x48\x93\xdf\x67\x8d\x47\x47\x23\x43\x12\x08\x64\xdb\x2c\x49\xd0\xdc\x96\x05\x43\x2b\x30\xb9\x76\x77\xd8\xc1\xaf\x08\xd2\x91\x41\x5b\x11\x4c\xb8\x62\x44\xf6\xb4\xae\xae\x63\x83\xc5\x3e\xa9\xbf\xaa\xa5\xa1\x92\xe1\x18\x4e\xff\x5c\xa5\x67\x45\x8c\x10\x86\x98\x5a\xb1\xa6\xc9\xc6\x44\x10\xc9\xfc\x1e\x12\xe5\x9d\x18\xe8\xd7\x0e\x0a\xf2\xa3\x75\xa6\x76\x18\xef\xce\xeb\xf4\x27\xf5\x9d\xb2\x3d\x75\xa8\x57\xed\x54\x01\x64\x20\xae\x1c\x71\x07\x45\xd2\x9b\xb5\x19\xd4\xd9\xeb\xdc\x99\x4b\x35\x5c\x8d\xe3\x81\xd3\x83\x3f\x78\x6b\x05\xc3\xa8\xc3\x9a\xac\x07\xb6\x88\xd8\x75\x5a\x28\x05\xc7\x8e\x38\xc6\x3a\xa4\x36\x2b\x10\x4c\x8d\xdd\x68\x05\xdf\x07\x62\xc0\x54\xef\x8c\x88\xcc\x1d\x8f\xf8\xdd\xb2\xf4\xdc\x54\x42\x49\x5c\xcb\xa2\x38\xb4\x5c\x16\x07\x2c\xe3\x96\xef\xa0\x29\xca\x6a\x5a\xed\x90\xdd\xa0\x3a\xae\x94\xde\x49\x61\x54\x75\x2b\x38\x70\x63\x1f\xfb\x8e\xbe\x4e\x6f\xe5\xf9\xf9\x1e\x22\x75\x59\x18\xab\x9e\x21\xa6\x01\x74\x54\x75\xef\x46\x5d\x94\x08\xc1\x5e\x84\xd3\xad\xd9\xed\x68\x46\x4b\x65\xf7\xe5\x59\xfe\xca\x7e\xb3\xee\x04\xf9\x80\xd7\x34\x7c\xdf\xad\x65\x1d\x73\xbd\x18\x18\xf6\xe4\x61\xb8\xde\x84\x22\x80\xb6\x38\x11\x54\x6d\x66\x84\xaa\xf9\x29\x20\x1a\x71\xe0\xa5\xf8\xa5\x21\x72\x62\x45\x99\x52\x68\x6c\x6a\xc2\x50\xb2\x0d\x82\xb1\x3d\x15\xff\x42\x2f\x04\xbe\xb3\x2a\x94\x43\x8f\x0c\x4d\x1d\x8a\x78\xaf\xb2\xee\x8d\xd2\xc2\x6f\xc5\x6b\x48\xe5\x56\x77\xef\xaf\xf8\x43\x99\xa4\x66\xec\x2e\x1f\x73\x25\xe7\x91\x63\xee\xdf\xc6\xb0\xe5\x8a\x24\xdc\x7c\x04\xc7\x1c\xeb\x52\x92\x33\x8b\xe7\xe9\x44\x67\x42\xd5\xf9\x58\xab\xd1\x6c\x74\x92\xdc\xb1\xce\x4b\xc6\x3e\x30\x87\xa2\x7a\x3f\x64\x22\xec\x48\xe2\x7b\xca\x4d\x9c\xd8\xc8\x01\x44\x3e\xde\x22\x4b\xe3\xa7\x1c\xc4\x52\xf2\x09\xde\x9b\xd7\x28\x51\xf9\xa3\x52\x20\x02\xbf\xb9\x83\x4a\x8a\x19\x9c\x16\xe7\x81\xe4\x24\x31\x97\xde\x5f\xbd\x62\x72\xfb\x58\x6f\x4d\xad\x8f\x98\x98\x58\x59\xda\x99\xf4\x83\xcb\xe7\x89\x92\x61\x8b\x89\x9b\xac\x55\xa3\x03\x86\x26\x5b\xca\x35\x82\xde\xd5\xe1\x1d\xf0\xe2\xcf\x36\x6d\xfd\x43\xc0\xc8\x53\x42\xa0\xe8\xfd\x93\xf0\x0a\x66\x8b\xe5\x34\x58\x25\x8e\x70\x9a\xd5\xc3\x50\x2e\x59\x65\x4c\xa5\xc4\x4c\xb6\x94\x90\x2d\x7c\x86\x56\x12\xc4\xdd\x4a\x8c\xfe\x66\x71\xa6\xf5\x43\xd0\xd7\x5b\x46\x3b\x97\x3b\x2d\xb7\xd4\xd0\x12\x3d\x23\xc6\x0b\x94\xc8\x07\x48\xa8\x41\x11\xfe\x11\x28\xc3\x72\x8b\xbc\xf9\x1e\xff\x0d\x94\x18\x70\xda\x91\xa6\xa4\x1f\x09\x94\x58\x4b\x3b\xdb\xcd\xb7\xe1\xbf\x00\x43\xca\x4b\x8d\x24\xcc\x7b\x74\x07\x51\x04\x3a\xc0\x98\xa6\x9c\x9e\x1c\x3f\xc0\x3a\xc7\xdd\xf5\x15\x5a\x42\x94\xd5\xa2\xd8\x42\x91\xa0\x1d\xb1\x6e\x3e\x1c\x0c\xd2\x0c\x17\x84\x2f\x31\x69\x63\x63\xe0\xe2\x48\x04\x04\x94\xa0\x2b\x36\x97\xcc\xe8\x86\x00\xf3\x68\x20\x19\x12\x69\x1e\x79\x58\xe7\x98\x08\xa5\xf5\x27\xf9\x12\x27\x44\x5b\x41\x0a\x03\xa5\x33\xda\x56\x41\xd3\x21\x03\x4e\x76\x16\x77\x1a\xea\x7c\x1c\x5d\x43\xe2\x4c\x17\x81\x41\xe0\xd0\xd1\x96\xd6\xf5\xf1\x92\x84\x80\x7c\xc8\x68\xb1\x02\x03\xea\x07\xb3\xb5\xe0\x7a\x9d\x88\x02\xc5\x4d\x58\x0d\x6d\xf3\xfd\x99\x40\x75\x27\x1c\xa1\x49\x9b\x51\x41\x85\x42\x9a\x48\x63\x55\x76\xfb\x3d\xff\xea\x38\x60\x57\x78\xa5\x6f\xe6\x82\x14\xd6\xcb\x20\x60\xd1\x6a\x19\xa1\x5f\x7c\x70\xc5\xe0\x8e\x32\x88\x91\xb3\x06\xb2\xa6\xd5\xb0\x53\x14\x50\xe0\xc8\x03\x6c\x12\x50\xe0\x1b\x03\x68\xa6\x36\xfa\xa7\xed\x84\x17\xc3\x36\x76\x73\x45\xc7\x86\x9f\xda\xec\x8d\x1c\xe3\xed\x81\xf5\xd2\xdc\x33\x01\x63\x26\x26\x05\x36\x23\x30\xab\xab\x7d\xf9\xbf\xac\xbe\x7f\x71\x45\xa6\xf9\xc9\xc9\xad\xad\xad\x93\x78\xfa\x4e\x0e\xb3\x6e\xdc\xc7\x97\x1d\x99\x37\x94\x89\x7b\xa7\xc8\x01\xbf\x31\x79\xd4\x78\xf3\x55\x78\x7a\x45\x42\xcf\x3b\xb4\xd6\xc4\x4d\x6b\x5f\x5d\x02\x7c\xe9\x00\xd5\x43\x6d\x8f\x8b\xd3\xf9\xb1\x40\xb5\x0c\x53\xe5\xb2\xb7\x86\x73\x92\x0c\xb9\xa4\x19\x1e\x46\xcf\x0b\xc9\x4f\x1c\x21\x31\xef\x5d\x79\x57\x1e\xb7\x33\x18\xf2\x2a\xfd\x71\xdf\x77\xa3\xf6\x55\x1b\x90\xf4\x03\xf9\x51\x29\x91\x40\xaf\x34\xc4\x73\xf0\x03\xcf\x4e\xa5\x04\x1b\x38\x9c\xc1\xff\x9d\x6f\xa8\x83\x2d\x8c\x27\x82\x60\xbc\x7d\x1d\xc3\xca\x39\x5f\x56\x8e\xa0\x11\xc3\xc4\xcf\x4c\x23\x6b\x82\x87\xec\x96\x36\x59\x78\xab\xd2\x13\x19\xfd\xa7\xfd\xee\xb6\x8e\x4e\xcc\xf9\x0f\xe5\xe4\xe0\x57\x7d\x41\x3c\xbc\xbd\xd7\xa8\xb4\x44\xa9\xe5\x2c\xc7\xd8\x3c\xa7\xd0\x67\xcc\xb0\xab\xf6\x8b\xeb\x71\x5b\x6a\x83\x03\x81\x36\xcf\xc7\x85\xea\x21\x8b\x83\x4f\x6a\x6b\x13\x98\x2a\x6e\x2d\x50\xc3\xd5\x1a\xd4\x7c\xe5\xe5\x7c\x9b\x54\xdd\x2b\xe8\xa5\x53\x44\x1b\x5a\xae\x1e\x5c\x90\xe6\x25\xf8\x2f\xbc\x54\x06\x57\xe0\x13\x81\x54\x87\xdf\x72\x81\x12\x81\x69\x37\x68\xf6\x1e\x86\xb5\x2e\x7d\xd7\x6a\xb3\xb3\x71\x81\xc1\x14\xa1\xa9\x8d\x28\x23\x8e\x5a\xd8\x6f\x84\xec\x9b\x49\x1b\x7a\xca\x92\x8d\x0d\x42\x49\x06\x1d\x68\x90\x2f\xc8\x1e\x99\x4f\xe3\x9b\xef\x01\x47\x82\x8c\x2f\xc0\x04\x68\xa4\x59\x05\xc9\x86\xba\xbd\x5b\x15\xf5\x06\x88\x1a\xa9\xe5\xf5\xaf\x89\x89\x32\xf7\x18\x60\x94\x4d\x6f\x95\xc0\xd3\x3f\x58\x08\xcd\x76\x9d\x2d\x59\x32\x8a\x7b\xfe\xad\x30\x74\xbb\x96\x2d\x1c\x39\xae\x0b\xe3\x12\xc5\xee\x3b\x33\x3e\xf7\xf1\x5b\x00\xfa\xe0\x06\xf0\x85\x77\x10\x54\x85\xb5\x1b\x4b\x3a\x6b\xe3\x18\x49\x51\x11\x4b\x86\x5a\xd8\x0a\xc7\x0c\xdb\xd5\x11\xe1\xc3\xe2\xbe\x46\x05\xd8\x70\xec\x8b\x2b\x1c\x93\xa5\xf4\xad\x93\xf6\xa2\x44\x42\x24\x1d\x94\x8e\xa9\x80\xaa\xcd\xa8\xdf\x47\x33\xaf\xdf\x13\x8a\x81\xad\xf0\x36\x6b\xd0\x4d\xb7\x25\xf8\xdc\xef\x75\x20\x36\x9d\xb1\x8b\x45\x88\x02\x82\xb4\x55\x8e\xb7\x38\xb6\x7e\xf3\x74\xa7\xa3\xce\xd2\xa3\xfa\xaf\xb1\x7b\x9b\xc8\x39\xcb\x76\x83\x42\x3e\x34\x6a\x43\xc5\x14\x34\x81\x27\xbf\x8f\x82\x2b\xaa\x09\x25\x3c\xc1\x83\xab\x32\x0c\x0c\xda\xd0\x2a\x67\xf8\xaf\x53\xc8\x0f\x7b\x76\xd6\x34\x6f\x28\x2a\x43\x10\x8b\x5a\xcc\xab\x69\xc3\x9b\x39\x35\xad\xea\x18\x3f\x53\x03\x5a\x0b\x4d\x9a\x6c\xbf\x99\x72\xfc\x31\xd4\x16\xdb\x59\x96\x54\x63\xbc\x10\x75\x24\xb9\x33\xe1\x32\x33\x12\x5c\xf1\x40\xf9\x2a\x4b\xd2\x71\x27\x36\x27\xa6\x09\xea\x17\x4b\xe2\xa9\x85\xb8\x92\xd0\x40\xf4\x7a\x38\x0b\x3b\x5f\x73\xd6\x49\xd6\xd7\x1b\x6b\x59\xba\x95\x63\xfc\xaa\x61\xd6\x36\x01\xf9\x8d\xbb\x93\xef\xe8\x24\x6a\x02\xca\x36\x4a\xc1\x38\xb0\x01\xb4\xa5\xea\x93\x55\xa0\x13\x00\x10\xed\xfc\xe8\x2b\xdb\x49\x34\x27\xf7\xe9\xaf\xbc\x24\xcb\x15\x32\x97\xb0\xc1\x9e\xbf\x76\x68\xb5\xb3\x50\xc8\xfa\x5f\x9b\xa0\x37\xf0\xb1\x21\x2d\xe4\x9b\xe9\x56\x0b\x7f\x51\x7c\xaf\xbc\x9a\x0f\x5e\xfb\x54\x6a\x57\x1f\x8a\x74\x8d\xed\xea\x06\xb0\x1a\xef\x9f\xc6\xc7\x18\xff\xb2\x64\x31\x27\xfc\xb9\x76\xc4\x07\x18\x6a\xa5\xcb\x08\x8c\xe4\x37\x56\x2c\x61\x8f\xc9\x91\x13\x41\x65\xec\x96\xf4\x24\x5e\xb6\x94\xde\x0e\x80\x3b\x6f\x9f\xbb\x28\x4f\xe4\x84\xe6\x66\x4a\x28\xfb\xa1\xe9\xa1\x71\x92\x46\x92\x83\x36\x6a\xbc\xe1\xf4\x67\x76\x9e\xa4\xdf\xae\xd0\x91\xe0\x26\x15\xb6\x45\x3b\x59\xb4\x0e\x7b\xf7\xcf\x13\x9d\xbd\x6a\x97\x7d\xdd\xf4\x77\x60\xad\x4c\x4b\xda\x66\x3e\xd0\x0c\xac\x35\xc7\xf3\x26\x92\xff\xc1\xc4\x09\x00\x6d\x0b\xcd\x35\x2d\xd5\x05\x23\xe4\x7e\x9b\x76\x41\x9d\x75\x2e\x39\xc5\x61\xa2\x41\xf1\x10\x19\x1b\x0f\x3c\x37\x74\xaf\x1d\x2c\x9e\x66\x33\x5c\xba\x0a\x3a\xe5\xae\x3d\xfe\x3a\x7c\x21\x3c\xd8\xc2\x40\x38\xf9\x01\x5e\x08\x67\xb9\xcd\x09\xa9\xcf\xb9\x55\xdc\x89\x60\xd5\xda\x10\x14\xb5\x6e\xa5\xd4\xfe\x8a\x71\x46\xb7\xa1\xab\x24\xe4\x94\x21\x5a\x1a\x95\x13\xa1\xed\x8c\xcb\x4c\x6b\x78\x19\x34\x93\x80\x00\xba\xd5\xeb\x04\x03\x42\x56\x30\xf2\x85\x28\xbb\xda\x49\xb7\xfa\x6c\x30\xad\x9b\xda\xca\x48\xbd\xcc\x89\xed\x29\x20\x8f\x77\x86\xf0\x94\x9b\x03\x44\x1b\x7e\xdd\xe3\xb0\x9c\x04\x19\xe6\xfc\x57\xc7\xe9\xb9\x8b\x7d\x2b\x5d\x7d\xa1\xd7\x93\xd4\x74\x27\x69\xc2\xa4\xdb\x73\x87\x80\xcc\x13\xe5\x5c\xb1\xc1\xed\x31\x66\xdd\x88\x7c\xcc\xaa\x67\xdd\x0b\xbc\x67\x24\x84\xe1\x61\x87\xae\x83\xd3\x92\x6c\xff\x5f\xc5\xff\x76\xfd\x7f\xa1\xd2\x29\x4d\x00\xec\xa7\x43\xd4\x98\x90\xda\x84\x90\x03\x6b\x37\xd8\x86\x15\x8d\xec\x3a\xc3\x36\xc2\xfc\x93\x84\x24\xdd\x11\xa2\x5e\x03\x48\x75\x32\x71\x90\xe8\xa1\xc2\x49\x3a\x1a\xeb\xf2\xdd\x04\xa2\xa1\x25\xf7\x1c\xed\x1e\x8c\x7e\x97\x6b\x7c\x5e\x77\xf5\x49\x1e\x63\x2e\x7f\xed\xb5\x0d\xf6\xa9\xef\x4c\x4b\x10\xbd\xce\x3e\x64\xc0\x95\xb9\xa6\x63\xce\xa6\xea\xc4\x36\x95\xeb\x35\x27\xc8\xe9\xf2\xd2\x87\x69\xb6\xf1\x91\x93\x46\xd2\x3d\x18\xf3\x53\x48\xba\x15\x17\x89\xc7\x14\x6c\xe5\x69\x29\x1a\x93\xb2\x01\x1e\x4b\xf1\x98\x1a\xc6\xb3\x9d\x72\x80\x95\x9c\xd9\x03\x39\x68\x30\x28\x0b\xf9\x88\x8b\x33\x56\x95\xfd\x00\xce\x9d\xad\x95\x70\xe4\x98\xc1\x7c\x4c\xb9\xef\x12\x54\x70\xa5\xbd\x98\xac\x42\x38\xef\xcd\x43\xf2\xab\xd0\xc9\xb9\xe9\xc0\x3c\xac\x5c\x15\x4c\x3a\x69\x4c\x6c\x4d\x2e\x62\xca\x73\x24\x1a\x8b\x9c\xb3\xf0\x8c\x24\x09\xaa\x24\x3b\xe2\x12\x0b\xa5\x55\x72\x7c\xfb\xb1\xb7\xca\x32\x30\xaa\x22\x69\x8b\x3b\x8c\x1d\xde\xab\x9a\xd0\x44\x4e\xb2\xcc\x79\x89\x95\xa9\xe8\xbc\x66\x5c\x80\xed\x58\x09\x54\x32\x77\x4e\xca\xb1\x7f\x4c\x76\x48\x13\x61\xdf\x3d\x05\x87\x8e\xfc\x42\x23\x19\x27\xf3\xe8\xae\x12\x73\x15\xd7\x08\x7a\xdc\x70\xc6\x6c\x20\xc9\x26\x5b\xdd\x11\xe8\xc0\xaf\x44\x7a\x46\x6b\x00\x53\xde\x92\xe2\xa8\xd9\x4e\xf2\xdc\x7a\x43\x90\x1d\xc5\x44\x72\xe5\xbb\x71\xa0\x98\x61\x99\x3a\x21\x97\x25\xc6\xe3\xa4\x9a\x82\x71\xa7\x6e\xf4\x6f\xd5\x85\xfd\xc1\xfd\xd0\x57\xfb\x68\xee\x8d\x54\x0b\xa4\xb2\x7a\xf1\x48\x40\x33\xbb\x9a\x13\xff\xe7\xcf\x60\x77\xe6\x24\x29\xba\x27\x92\x45\x9b\x48\xd4\x97\xd9\xb3\x81\xd6\xfd\x8a\x25\xd6\x82\xc9\x8b\xfe\x4c\x96\x5b\x7e\xed\x7a\x0d\xf9\x38\x08\xb5\x6c\x6a\xde\xf1\xbc\x4c\x47\x04\x13\xcb\x06\x63\x70\xcf\x7f\x8c\xbd\x98\x6b\xdc\x12\x90\xe4\x94\xd2\xbf\xbc\xef\x99\xc2\xd0\x37\x25\x55\x1c\x2e\x97\xc1\xaf\xc7\x5a\xcd\xb7\x77\xaa\x83\xe8\x65\x69\x4f\x4d\x14\x49\xa4\x3c\xd0\x30\x6c\xc1\x56\x4a\xf9\x9d\x4a\x21\x25\xc9\xbb\x4e\xf4\xab\xf0\xbf\x98\x90\x95\x13\x59\xda\xe4\x46\xa1\x3e\x2b\xb1\x25\x1b\xaa\xd6\x0e\x60\x66\xa4\xc8\xd9\xf6\x00\xd2\x00\x42\xfb\xba\x70\x91\x35\xe9\xda\x42\x4d\xb8\x91\x23\x83\xd3\xba\x3d\x27\x68\xa4\x3f\xe1\xc9\x3f\xba\xf1\x22\xe1\xd3\xf4\xd7\x27\x8d\x37\xd6\x51\x6d\x58\xef\x80\xe6\xdb\x8a\xc2\x24\xbd\xc3\x0b\x4b\xf7\x56\x1c\x85\x09\x13\xcf\x4e\xe8\x5e\xe4\x0d\x9e\x58\xf9\xb7\x1b\x35\xd8\x84\x03\xa5\x99\x21\xe3\xeb\xca\xd2\x88\xa4\x71\x98\x2d\x4a\xf8\xe0\x40\xfd\xbf\xd7\x59\xa8\x27\x3a\x04\x96\x10\x06\x4c\x98\xb6\x03\x31\xed\xcb\x45\x0c\x76\xbd\xaf\x03\xe9\xf2\x81\x67\x42\x85\xf5\x65\x14\x1d\xcf\xa9\xc8\x06\x48\xcd\x4a\x99\xa7\x95\x32\xf5\xad\x97\x92\xe2\xd9\x9a\x75\xde\xac\xfa\xbb\x36\xd6\x28\x51\x3e\xb6\x00\x1c\xfe\x76\x8c\x11\xf3\xee\xbb\xde\xd1\xfa\x2b\x4b\x87\x2a\x0e\x92\xfa\x33\x50\xcb\xd7\x62\x2d\xda\x30\x49\x5b\xed\x77\xa1\xe7\x8c\x6a\x84\x4c\x0e\x4d\x7a\x4c\x93\x90\x81\xa5\xa9\xb3\x13\xba\x3b\xa9\x3e\x9e\x87\xa8\x42\xcf\xd0\xe6\x73\x73\x0f\x8e\xe7\x6f\x54\x86\xd3\x4f\xb7\x02\xa4\x25\x6b\x6b\x10\xf4\xd0\x4a\x51\x16\x52\xa4\x29\x1b\xe8\xaa\xcb\x3e\x5e\xff\x63\x62\x92\x72\xf2\x3c\xb9\x80\xac\x02\x72\xc8\x12\xd1\x86\xdf\x23\xeb\x20\xe1\xbd\x9b\x6e\x5c\x6e\xd1\x5b\x52\x9e\x15\x97\x7e\xf3\x6a\x98\xb3\x20\x00\xc0\x0d\xc8\x34\xaa\x0b\x75\x5d\xca\x1c\xe6\x1a\xe4\x32\x67\xca\x7e\xa3\x63\x1b\xc6\x6c\x1c\x88\x2b\x36\x35\x89\x77\x83\xa2\x6a\x4d\xd6\xe5\xcc\x35\xd7\xcf\xd0\x8d\x6f\x1b\xaa\xb2\xf8\x14\x25\xf2\xbb\x8d\x56\x34\x36\xa9\xae\x25\xbb\xdd\xdc\x41\x57\xf2\x39\x52\xd8\x7c\xf6\x67\xad\x71\x45\x35\xf3\x24\xdf\xf2\xf0\x3c\x67\x18\x38\x87\x6a\xff\x39\x77\x75\xd7\x9a\xd6\x49\x94\x54\xd4\x6f\x91\xa3\x26\x11\xe4\x7b\x56\x82\x54\x31\x04\x9c\x7e\x16\xc8\x6f\x69\xc4\x83\xd2\x9c\x97\x4a\x8b\x36\xc0\xf1\x39\x60\xbe\x9d\x62\xa8\x4b\x6a\x61\xb3\x5c\x26\x2c\x9b\x4c\xd2\x64\xff\xd7\x69\x7a\x85\xaa\x0e\xc7\x6c\xe3\x36\x66\xd2\xae\x5c\x84\x8d\x7c\xab\xdc\xc2\x1d\xdf\x46\x9c\x82\x09\xd3\x62\x7e\xa5\xf3\x43\xd6\x44\x83\xc7\x64\x30\x1e\x82\xa9\xc9\xfb\x8c\x99\x0f\x3c\xd9\xa9\xd3\xbe\x69\x60\x31\x23\x78\xa7\x99\x20\xa5\x6f\xd6\xd4\xb0\xb0\xff\x6c\x4d\xdd\xcc\xba\xa2\x9d\x81\xe6\x84\x44\xa7\xee\x2e\xd4\x0f\xa2\xa8\xb9\xaa\x8e\x55\x4e\xec\x6e\xd5\x26\x1e\x09\x2e\x3b\x8a\x9d\x99\xa3\x40\xc5\x08\xb1\x77\x1a\x25\x95\xd3\x7b\x90\xa0\xcf\x42\xee\x85\xa7\xe7\x8c\xb1\x4c\x76\xc9\xf4\x16\x1d\xa2\xdb\x92\x77\x82\x6b\xaf\xa9\x4f\x75\x2d\x1c\x99\x5b\x39\xdb\x68\xe9\x13\x77\xc2\xae\xb9\xe3\x73\x36\x21\x81\xaf\xb7\x8d\xd9\xa3\x97\xc4\xa0\x92\xb9\xbb\xf6\xd8\x36\x42\x53\x35\x4c\x92\x97\x3b\xbd\x32\xe7\x05\x5c\xff\x1b\x1e\x22\xab\xdc\xcc\xf0\x6a\x6a\xf9\xa4\xce\x7f\x6f\x8c\x47\x4b\x13\xc5\xee\xcc\xf5\xfa\x67\x8b\x3c\xcd\x1d\x7a\xc3\xb3\x21\x75\x17\xf0\x07\xe0\xbf\x30\x16\x29\x89\x0e\x4a\x98\xf0\xff\xe5\x84\x1d\xd1\xf4\x02\x13\x9e\xf8\x06\xa6\x64\xd5\x13\x44\x17\x01\x49\xce\x1c\xa4\xcf\xe8\xac\x3c\xd5\x2b\x46\x9c\xb3\x91\x91\x5f\xbf\x1e\xf8\x69\x2c\x6e\xc1\x1c\xa3\xc1\x37\x94\xc0\x33\xb2\xcc\xc3\xc3\x42\x5e\xbb\x2b\xda\x42\x63\x85\xad\x22\x3b\x1d\xdf\xf5\x40\xf3\xc9\xd8\xcf\x89\xdc\x8b\xab\xee\x9c\xbc\xb9\x92\xbc\xc5\x41\x8b\x81\x59\x56\x01\x1a\xc8\xda\x57\xe3\x66\xb5\x68\x27\x62\xa5\x2d\x0e\x4f\x3e\xa1\x6d\x87\xd1\x4f\xfb\xac\x6d\xee\xeb\x50\x9f\x77\x74\xf2\xfd\x07\xee\x19\x22\xd2\x9a\x2c\xe9\x48\xf2\x7c\x73\xc1\xb0\x9f\xe1\x64\x7e\x4a\x3c\xf2\x3e\xa7\x31\x8d\x9c\x4c\x1d\x9e\x4e\x87\xe5\xd9\x74\x30\x3e\x5a\x5e\xea\x44\xf9\xe6\x5a\x1a\x49\x8e\xf4\xc9\xa1\x36\x0b\xdf\x29\xa7\xb6\x41\x6c\x8f\x56\x59\x79\x8d\x2d\xb9\x48\xb9\x8d\x90\xa3\x3e\xdb\xf9\x62\x59\xf1\x87\x70\x76\xfa\x45\xa2\xc5\x51\xbf\x0a\x07\xc0\x26\x69\xc0\x46\x90\xee\x10\x2f\x10\xe4\x95\x58\x69\x0b\x14\x82\x0e\xd3\x10\x34\xe1\x06\xd6\x23\xed\x27\xe4\x19\xf0\x8d\xc0\x18\xdd\xe3\xe1\xe4\x21\x86\xe4\xcc\xf2\xa2\x85\xd1\x07\x9a\x3f\xc5\x9f\x92\xe0\x8a\x5e\x9c\x8f\xf0\xb9\x48\x0b\x60\xce\xae\xe0\xff\x6f\xa8\xe3\x1d\x52\x8a\xeb\xf5\x25\x15\x31\x1c\x09\xe4\x5c\xef\x97\x95\xc9\xa4\xfd\x36\x25\xad\xe9\x2a\xcb\x8e\x6d\x4e\xd4\xb1\xd7\xe0\x36\x1c\xb0\x1e\x69\xac\x87\xb9\x69\x14\x61\xbc\x22\x26\xc9\xcc\x59\x18\x2d\x82\x39\x76\x56\xa3\xe0\xe0\x5a\x68\xed\x4c\xd1\x7d\x1f\x90\x80\x7b\xcf\x31\x7b\x04\xc2\x92\xf2\xfe\x38\xd9\x76\xc8\x4d\x43\xbd\xb9\x46\x8a\xd3\xb5\x53\x35\x2c\x21\x32\x6a\x2b\x6e\xa9\xa0\x7e\xc3\x2b\x51\x4a\x70\x87\x51\x84\x9c\xc4\x7e\x6e\xd1\xba\x2b\x52\x1a\xd4\x23\x37\xa3\xd5\x61\x8d\xd3\x0d\x72\x1e\x4e\xbd\xb2\x12\x9e\x63\xeb\x07\x02\x1f\x97\x6a\x95\x32\xcd\xfb\x2d\x1a\xfb\x03\xca\x8a\xe9\x2e\x4a\x45\x26\xef\xd7\xf5\xc3\x9a\x71\xc4\xee\x3d\xbf\x0d\x4e\xb9\x35\x71\x1c\x6e\xe7\x25\xea\x9a\xbf\x4e\x0b\x6e\xa9\x13\xb2\xbf\xb2\x3b\xac\x0c\x2e\xcf\x77\x2c\x2c\xe2\xe7\x2e\x87\xb2\x2b\xea\xf1\x91\x57\x14\x6f\xeb\x83\x93\xe2\xd3\x5c\x6e\x07\x25\x7e\x9f\x79\x6f\x4c\xa0\xaa\xd2\x08\x25\xba\x92\xaa\x69\xc8\x41\xae\x35\x15\xc9\x6c\xb6\x2a\x23\xc3\xe4\xec\xde\xd9\xbd\x2e\x4b\xa8\x25\x10\x61\xe3\x8f\x46\xf0\xd2\x3b\xfa\xa5\xa0\x3e\x63\x06\x44\xb0\x6d\xe4\x5b\x89\x1b\x12\x7c\xe2\xe5\x2f\x0f\x57\xc9\x86\x7d\xd1\xa9\xb3\x7e\xc2\x2d\x85\x81\x1b\x30\x30\x08\x25\x56\x4b\x39\x4b\x41\x89\x6c\x3f\xac\xcb\x4c\xb7\xa7\xde\x3f\xfd\x41\xb1\x39\xbb\x39\x57\xf6\x3f\xa3\x1d\x28\x59\x4a\xe2\x33\x3b\x33\x30\x5b\xf8\x98\x7e\x85\x8e\x16\x1b\xff\xc8\x8a\x8f\xf3\xca\x74\x38\x48\x17\x6d\xdd\xc8\x58\x98\x7a\xda\x21\xc1\x24\x4e\xca\xbd\x3d\x2f\x0f\xd9\x62\x1d\xdb\x89\xdf\xf9\xd1\x3d\x96\xa6\x5e\x25\xf7\x2b\x03\x22\xa5\x2f\x06\x83\x4e\xae\xc5\x79\x40\x00\xae\x25\xb7\x08\x6d\xe0\x62\x8e\x49\xba\x51\x43\x74\xee\x61\xd8\xe8\xd9\x3d\x54\x26\x6b\x9a\x65\xaa\xab\x26\x09\x51\x8d\x92\x67\xc6\x46\x6f\x24\x45\x6b\xa3\xcd\x84\x60\xc8\xad\x11\xda\x79\xc0\x09\x11\x90\x29\x3e\xa0\x86\x09\x27\xd6\xa3\x06\xce\x95\x18\xee\xc2\xf5\xd3\x93\x76\xb1\xa9\x4a\xbb\x61\x49\xb8\xd3\x41\x45\x8f\xe5\xf0\x01\xc2\xb5\xba\x63\xc8\xe2\x7c\xbb\xdf\x46\x65\x24\xa6\x27\x66\x03\x51\x7d\xe3\x05\x3f\x7b\x66\x5d\xea\xfb\x3f\x35\xa0\xe0\xab\x1c\xbb\x3b\xf9\x79\x4c\xd6\x8f\xf9\xf7\xcf\xd4\xcb\x46\x60\x77\x5d\x4b\xae\xde\xe0\x3b\xcd\x18\xdf\xc0\x0f\xe1\xa7\x89\x73\xe1\x54\xbd\xc8\xe9\xe2\x06\xbc\x32\x7b\x64\x25\xfb\xe8\x80\xce\xee\xb9\x3f\x72\xf1\x10\xe4\x83\xe2\x85\x14\x74\x73\xb4\x8e\xeb\x16\xc4\x31\x8d\xce\x9b\x97\x63\xe2\xf9\x48\x7b\x2d\x79\xd7\xc8\x46\x3a\x5d\xf7\xf3\x3d\xbd\x8c\x36\xf0\x71\x47\x6d\x6d\x62\x60\x18\x76\x24\x62\x12\x93\xd2\x86\x28\xa3\x21\xec\xd4\xcd\xd6\xed\xd6\x4c\xf9\x34\xd9\x6b\xda\x7e\x4e\x78\x83\xa0\xe8\x91\x92\x38\x0e\x87\x59\x60\x18\x16\x5f\x03\xe8\x91\x6a\x94\xc6\x04\x3a\x42\xef\x67\x3c\xdc\xd7\x49\xa2\xc7\x89\x43\x98\x5d\x25\xb9\x82\xce\xe9\x6f\xf9\x18\xbc\x64\x37\x44\xd1\xbd\x57\xa6\x00\xdb\xc3\x0c\x0d\x2f\x5b\x1b\x69\x96\x0e\x8b\xa4\x4f\x26\xd8\x98\x3c\x7b\x47\x58\x91\x77\xf5\x87\x3c\x54\x0d\x58\x44\xe0\xb7\x5a\x43\x0e\xfc\x6e\x6b\xee\xd5\xd8\x32\x4c\x4c\x7e\xf3\x11\x0e\x9e\x25\xf1\xb6\x59\xa2\xa4\x75\xa3\xa8\x6c\x6f\xb3\x5d\xca\x1d\x51\x92\x1d\x79\x35\xf9\x9e\x58\xb7\xca\x23\xb7\x29\x69\x24\x5d\x2b\x22\x18\x3c\xc6\x4d\xc3\x67\xf5\xbe\x3c\xbb\x45\xc9\x60\x0a\x23\x6e\xc3\xb6\x0c\x07\x2d\x5c\xe0\xbc\x79\x89\x5f\xaa\xf3\xf4\x52\x5d\xc1\x97\x81\xf6\xf5\x20\xa5\x96\xf4\x72\x5a\xde\xd6\x56\xc3\xa8\xa5\x7e\x95\x9f\xc2\x9b\x6a\x71\xbd\xce\x9b\x71\x34\x78\xf1\x55\xde\x67\x37\x26\xb7\x41\x6a\xa8\xbc\x36\xef\xc1\x4b\x35\x63\x81\xdc\x4a\x49\xa7\x1b\x7b\x15\xce\x75\xd0\x02\xbc\xa6\x30\xd9\x78\x63\x5a\x8f\x1d\x86\x22\xfe\xee\x39\x87\x94\xb2\xf9\x05\xdb\x10\x7b\x2f\x7f\x94\x97\xe5\x65\xa5\x52\xba\xf6\xd7\x71\xbb\xc8\xb9\xf0\xfb\xfc\xe0\x16\x5a\x4b\xd3\x22\x2f\x32\x28\x09\xbc\x0f\x79\x1c\xe1\x9a\xbe\xad\xdf\xaa\x55\x7c\xab\x3e\xc0\xb7\x25\x46\x09\x0a\x97\xd7\x8d\x0b\xcf\x58\xb8\x1e\x66\x4d\x82\x9e\xb2\x61\xbb\x18\x02\xb8\x90\xee\x2e\xac\x62\xae\xa5\x55\xf3\xba\xda\x5f\xa5\xa2\x3d\xc7\xe5\xba\xc1\x7e\xdb\x51\x7b\x33\x0e\x74\x7c\x06\xdf\xcf\xee\xb9\x52\xd5\x76\x5d\xa9\x1d\xbc\x4d\x59\xba\x9e\x74\xd1\xb0\x63\x6d\xd8\xbe\x1a\x17\x18\x2e\x66\xb3\x45\xc6\xbb\xb6\xa9\x4b\xba\x90\x7a\x9b\x0a\xa9\xf7\xa0\x90\xba\x42\x0e\x93\xa1\x46\x01\xe5\xf6\xe2\x22\x22\x93\x6f\xd3\xc8\xbb\x67\x60\xed\xf1\x65\x27\x0a\x56\x4a\x31\x22\x5d\x4b\xf8\x65\xb9\xa8\x48\xf2\x9a\x06\xde\xc7\x02\x6a\x95\x0a\xe8\x3b\x8b\x86\x1a\xa1\xc6\x30\x40\x37\x63\xfe\xf6\x36\x10\xb2\xcd\x8b\x98\x22\x0b\x46\x70\x99\x9f\xdd\xa2\x24\x1f\x80\xa2\x04\xa9\x57\x93\x7e\x1b\x13\x09\xe4\x54\x1a\x2f\x78\x15\xe0\xe9\xb2\x24\x42\xc0\x62\x97\x30\xa0\x5e\xb0\xdc\x00\xbf\xcc\x28\xa8\xfb\xe6\x72\xba\xdb\x4a\x31\xe9\x31\x6f\xca\x98\x72\x44\x36\x24\xe7\xe1\x30\x02\x92\xf7\x18\x8e\x5a\xdc\x25\x67\x3c\x75\x81\xde\x40\x4b\x7d\x0c\x47\xc6\x45\xd1\xca\xce\x58\x62\xd4\x26\xcf\x99\x94\xd2\x94\x4a\x5d\x6b\xee\xac\x5f\x69\x2a\xb9\xe3\xba\x77\x39\xa4\xb0\x29\x37\x37\x8c\x34\x97\x13\x3a\xb0\x46\xd4\xc4\x65\xc4\x5d\xcd\x0f\xe6\x7f\xa4\xbf\x92\xef\x5d\x16\x6f\xa0\x4c\x8f\xe3\xe1\xac\x6f\x37\x57\xe1\x25\x6c\x3b\xbe\x94\x58\x2f\x17\xf1\x83\x4e\xe4\x7a\x25\x55\xb8\x60\xee\x1a\xb9\x7e\x26\xb2\x5e\x0b\x44\xa3\x6b\xe8\x26\xe6\x1a\xb5\xcb\xb2\x10\x43\xc5\x1e\x18\xa7\x3d\x39\x9a\x5a\xa5\xb7\xba\x20\xe5\x3c\xc3\xd4\x88\xa5\xac\x66\x5e\x43\xdd\x74\x23\x11\xa6\xb4\xd4\xd8\x79\xfc\xa2\x2e\x92\x77\x26\x57\x18\x44\x79\xbe\x95\x66\x1d\xad\x39\x45\x0f\x69\x74\xa2\x17\xa7\xe8\x02\x43\xed\xa2\x2f\x94\x1a\xf6\x85\x8e\x32\x73\x13\xc2\x89\x81\x86\x8d\xda\x27\x8e\x0a\x9f\x4e\xc6\x22\x97\xac\xcd\xfb\x5c\xe1\xcb\xab\xfc\x8f\x5d\x45\x7b\x5a\xab\x91\xa2\x67\xf4\xa1\x9b\x48\xf2\x96\x73\x46\x17\xc8\x17\x1b\xe6\xe8\x46\x6e\x7b\x7c\x96\xbf\xb3\x2a\xa6\x99\x73\x7d\xc1\xf8\x5d\x66\x47\xd1\x6e\x11\x1d\xbf\x5b\xec\xf8\x57\x17\x16\xc4\x55\xfa\xea\x1e\x5c\x51\x32\xf5\x8d\x5e\x9a\x61\x07\xbd\xf0\xa6\x06\x74\x99\xcf\x17\xdd\x5d\xdd\xe2\x9c\x8c\xc8\xac\xe6\x9c\x91\xb8\xd8\x5c\x68\x0c\x33\x8b\xb1\x72\x44\x3e\x4f\xae\xc0\xbb\x26\x50\x85\x0f\xaa\x0c\x2b\x8c\xeb\xfe\x4b\xe6\x47\x58\x1b\x64\x92\xf6\x49\xbe\x3c\x59\x7e\x64\xfd\x28\x7c\x0a\xcb\x7f\x6a\x65\x94\x65\x89\xbd\x24\xbb\x37\x41\xbe\x3c\xab\x39\xde\x16\x71\x4d\x2f\xc5\xa2\x23\x9a\xb8\xe1\x4f\x0e\xa3\xb3\xa1\x01\x38\x69\x7b\x34\xb4\xe1\xf0\xba\x08\x6e\x44\xa9\xb3\x99\x0c\x28\xd8\x62\xa1\x28\x7d\x06\x07\xe6\x72\xe4\xf8\x1c\x93\x81\x78\x14\xb8\xbe\x64\x3d\x83\x1e\xbe\x4e\x10\x2b\x4f\xea\x6f\xe2\x20\x39\xdb\xe5\x7a\x94\x9d\x96\x71\xcc\x77\x27\x83\x66\xf3\x06\x85\xb0\x71\x51\x50\x38\xe7\xbe\x63\xb4\xc0\x59\x57\xa8\xb2\x87\x59\xe8\x4d\xd8\xee\x9c\x3e\xcd\x32\x3b\x17\x9d\x05\xe1\x11\x7f\x38\x97\x6d\x28\x28\x1f\x2f\x72\x85\x59\x89\x9c\x4b\xe3\xe3\x57\xb3\xec\xcf\xb8\x04\xa5\xf0\x63\xb5\x06\xa7\x08\xb9\x8d\xa8\x94\xbf\x61\x66\xbe\x3c\x98\x9a\xef\x40\x17\x31\x79\x72\x26\x47\x5a\xd3\x8a\x4b\xc0\x0a\x17\x81\xf8\xde\x0c\x4b\x30\xdf\x9f\x25\x57\xc2\x38\xbb\xe8\x59\x8a\x58\x4d\x23\x18\xf9\xe2\xce\x90\x5f\x79\xc9\x7c\xf8\x55\xdc\x47\x72\x8f\x02\x48\x59\x19\x3f\x21\x5f\xfe\x3e\xcb\x2b\xc1\x19\x36\xb5\x5c\x1a\xee\x15\x78\xe7\x15\x0a\xe1\x31\xc6\x60\x5c\x28\xe0\xab\xcb\x1f\x36\x53\xf4\x29\xf9\x47\xbe\xf9\xfa\xe5\x80\x72\xf2\xdc\x23\x4d\xbe\x79\x49\x52\xcd\x4e\xbf\xf9\x36\xfc\x55\x67\x2f\x7a\xaf\x35\x82\xe4\x8f\x97\xe4\x29\x58\xc4\xd8\xe0\x47\x19\xa6\x0a\x7a\x83\xe3\xca\xe9\xaf\x1c\x2a\x3b\x45\xa7\x74\x8c\x95\xdd\x45\xa4\x8a\xc9\x5a\xc9\xe5\x13\x3d\x7b\x30\x10\x73\xa4\x36\x93\x8d\x4d\x8a\xaa\x06\xe0\x77\x83\xbd\x45\xf1\xfa\x35\xcc\xd2\x22\x8d\x47\xf1\xf5\x89\xb6\x5b\xa5\xcc\x70\xea\x6d\x8a\xb5\xef\x94\x80\xd9\xd0\x77\x3b\x9b\xa8\x28\xb2\x64\x6d\x88\x06\x7a\xb8\xa2\xa4\x10\x63\x97\x5b\xf3\xa5\x5a\x34\x1f\x72\x50\x87\x55\xfe\x3b\xab\x28\xec\x42\xb7\xf9\xce\x49\xfc\x53\x2d\xc6\x01\xfe\x79\x48\x1c\xde\xdf\x34\x40\xfa\x6e\xf9\x4e\xda\xec\x52\x81\x1e\x62\xda\x56\x1e\x35\x2f\xe4\xea\x74\x47\xad\x9e\xd6\x1f\xf2\x5e\x31\xe0\xfc\xbb\xab\x17\xae\x5c\x52\x33\xce\x11\x96\xe4\xd3\x80\x01\x90\xe0\x4e\x2b\xac\xe1\x7e\xa5\x63\x81\x2f\x4f\x92\x39\x88\x73\x36\xc4\x6f\x40\x5c\xc2\x49\x32\x84\xcf\xb0\x69\xf4\x5c\x53\xac\x9e\x9c\xc2\x9d\x06\xfe\x0b\xd6\x07\xb3\x88\xa3\x8f\x36\xd7\x68\xa8\x0b\xc3\x6e\x91\x60\x00\x1b\x79\xa3\xf2\xcd\x74\xd8\xed\x60\x3c\x83\x3c\x1e\x44\x19\x51\x99\x6b\xdb\x1c\x45\x5c\x9d\x58\x39\xd1\xf0\xaf\x63\xab\xe8\xe6\xe5\x1b\x39\xe6\x6c\xd6\xe3\xe9\xa7\x53\x3f\x27\xf3\x95\xf3\xab\x66\xfe\x57\x93\x01\xd6\x6d\xa1\xfb\x3f\x12\xc9\xf0\x8c\xdf\xd5\x7f\xa3\x67\x73\x73\xd0\x94\x25\xce\xae\x25\x6d\x39\x41\x97\x4e\x5f\x80\xe3\x47\x2f\xbc\x0b\x29\xa3\xa1\x48\xe8\x9a\x00\x77\xc7\x35\x3b\x64\x01\xe1\xff\xa9\x9f\x10\xc6\x98\xb6\x0b\x40\x4a\x06\x12\x60\x8d\x12\xa1\x20\x34\x94\x9e\x4d\xd8\xe7\x32\x11\xcd\xb6\x59\x66\xb3\xca\x94\x20\x92\x0d\x6c\xf1\x42\x43\xf9\x94\x35\xbc\xda\x0a\xbc\x96\x14\x34\xc0\xd4\x67\x13\xfc\xbe\xe7\xb9\xa4\x37\x7c\xa0\x69\xf1\xae\xdf\xcc\xa2\xae\x07\x6e\x5b\xcd\x0f\x58\x68\x39\x7b\x35\xc4\x47\x41\xbc\xd8\x09\x66\xf9\x15\xfc\x82\x2d\x06\xdd\x64\x09\x56\x6a\xd8\xc6\x95\xae\x56\xb0\x66\x2c\xa5\xf5\x81\x37\x1b\xa9\x64\xe6\xe0\xd0\x1d\x48\x5d\xac\xc0\x2d\xa8\x73\x84\x77\x1a\xf7\x08\x15\xbf\xdd\xf9\xf4\x0a\xcb\x89\xb5\x78\x56\x1b\x26\x20\xa9\x71\x48\x47\xe0\x21\xb9\x43\xe9\x63\x50\x16\xc4\x4a\xed\x68\x30\xf0\xfc\x7f\x45\x13\xe6\xb8\xdf\x58\xab\x07\x2a\x7c\x8d\x6f\x03\x8a\x7c\x6f\x4c\xc6\x8b\xd4\x30\x61\x7d\x66\x15\x0c\xa0\x41\xf9\x92\xae\xaf\x63\xc2\x01\xcc\xb4\x13\xdb\x70\xd5\x44\x63\xb8\x4e\xaa\xe4\xd3\x6b\x9b\xe3\x10\x58\x2d\x94\x20\x93\x7c\x75\x83\x33\x1a\x95\x81\xcb\xe4\x31\x2d\xd2\xa1\xa6\x87\x0f\x48\x43\xf4\x05\x52\x77\x74\x67\x9e\xb8\x1c\x8d\xb4\x9d\x0d\x49\xb6\x98\x79\xca\xcb\x7a\xad\xf5\x81\x57\x91\x67\xf1\x07\x3d\xe0\xaa\xc2\xc5\x5d\x14\x22\xff\xb2\x34\x2d\x38\x4d\xb8\x43\xfb\x5d\x86\x97\x80\xcd\x51\xcb\xa9\x8f\x01\x1a\x54\xb4\x5b\x9c\x33\xd6\x54\x59\xa5\xb7\x88\x92\xe2\x40\x1d\x58\x96\x72\x05\x60\xb1\xeb\x4a\x73\x64\xf9\x52\xd0\x25\x38\x5d\xa4\x26\x9a\x5e\x2f\x8d\x1c\x13\xa0\xc8\xdd\xa1\xc5\xba\xcc\x6f\xca\x97\x99\x05\x16\x7a\xd7\xd6\xe6\x1e\x63\xb6\x12\x61\xdb\x26\x63\x25\xe2\x36\xe0\x91\x7b\xf6\x75\x89\x9a\xb2\x1f\x3c\x8a\xd1\xbe\xe6\x0d\xae\xe1\x56\xdd\x82\x79\xde\xad\x6c\xea\xea\xea\xf9\x50\x11\x8d\x55\x5f\x9e\x7a\x31\x9f\xd9\x79\xe5\xfb\x3f\x61\xe6\x32\x4c\x40\xf2\xfd\xb3\x57\xdc\xda\x9c\x21\xfe\x9e\x76\x9e\xf0\x3f\x98\x26\x31\x18\xc7\xb1\xfc\x67\xdd\xa4\x88\x5f\x3f\x46\xf6\x71\xc7\x8a\xa4\xb3\x76\xec\x15\x0f\x4e\x24\x14\x17\x80\x56\x58\xa3\xbe\x33\xf4\x38\xcc\x04\x54\x9a\xfd\x13\xc9\x13\x4a\x4f\xba\x2d\xf1\x81\xa2\xb0\x7f\x49\x16\x2b\xa1\x93\xce\xf0\x6b\xbf\xaa\xb9\x7a\x06\x77\xba\x17\xcf\x31\x8a\x0b\x20\x48\x3d\x54\x8c\x8e\x91\x39\x72\xae\x16\x10\x63\x45\xda\x6f\xae\xa2\x6f\xdc\x65\x69\x58\xbd\x4d\x2f\x9d\x31\x73\x12\x35\x9d\x54\x8d\xdd\xf2\xbf\xa6\xd5\x2d\xbb\xdf\x8b\xad\x39\x99\xc0\x7c\x26\x5c\xf3\x01\x8b\x34\x66\x98\x7d\x69\xda\x80\x05\xd5\xec\x54\x87\x47\x75\x8f\x68\x14\xcf\x3f\x62\x24\xe7\x65\xc4\x79\x8a\xa9\x36\x2d\xa5\x88\xf2\x88\x86\x67\xaf\x95\xdd\x99\x26\x62\xa5\x55\xa5\xe0\x31\xc9\xcf\x63\x4e\x6c\xd3\x3c\x2b\xa1\xfe\x2e\x24\xfd\xa4\x37\xec\x61\xc8\x17\xb5\x8a\x49\x39\xce\xe0\xe7\xea\xb8\x07\xc0\xcb\x45\xcd\x77\xe8\x51\x9d\xe1\x47\x0b\xac\x39\x82\x15\x06\x8e\x68\x75\x49\x41\x7f\x9a\xde\xc0\x3e\x77\x62\x75\x1e\xdf\x38\x8b\x0d\x18\xdd\xb2\x0e\x4e\x9d\xcb\xf8\xc5\x70\x1a\xa1\xba\x3a\xb4\x5f\x9d\x2d\xdd\x68\x96\xcb\xd8\xc3\xb0\x41\xcc\xed\xaa\xb3\xd7\xd8\x74\xf8\xb3\x61\x3c\x84\xe1\xc5\xfd\x0d\xb8\x4a\x7f\x89\x0f\xea\x3c\x3d\xd8\xe5\xe5\xf0\x51\x24\x9a\x06\x94\xc1\xa0\x5d\x07\x8b\xa0\x11\xb9\x06\xb9\xfb\x4e\xdb\x65\xf2\x53\xb2\xa8\x11\x5a\x98\xea\xf0\x88\x48\x8e\x8a\xa9\xf7\xae\x36\x5b\xf2\x8e\x85\x83\xc0\x03\xbe\xa8\xcf\xf9\xac\x70\x4a\x6d\xb7\x4e\x3d\x23\xeb\x97\xd3\xa7\x07\xa0\x45\x1a\xba\x8f\xef\xbd\x73\xfe\xfd\x72\x9d\x10\x60\x94\x4f\x0c\x4c\xef\x5b\x82\xa2\x5c\x60\x31\xe8\xc9\x86\x38\xf3\x20\x3e\x19\xe1\x94\xea\xcc\x9d\x37\xdf\xd0\x19\x4b\xba\x4f\x97\x76\x54\xaa\x10\x75\xe0\x4a\x60\xc2\x1b\x52\x37\x9d\xe6\xa7\x52\x19\x52\xce\x5e\x8b\xba\x52\xe8\x9c\x3c\x56\xbb\xee\x4b\x09\x80\x92\xfd\xb8\xed\xc1\xc8\x3c\x66\xe3\x68\x03\x8b\xe9\xb1\x06\x16\xeb\xc2\x83\x2c\xbd\x96\x60\x10\x08\x5d\xfc\x92\xbc\x30\x25\x75\x09\xdd\xae\x2e\x20\x0d\xdb\x21\xc2\xed\x4b\x62\x3f\xee\x8b\x36\x13\x1b\x29\xfe\x5a\x86\x1d\x78\xdd\xf9\x8b\x06\x1f\x40\x87\x43\xc3\x5e\xd9\x8d\xb6\x59\x1e\xd6\x2b\xbd\x7b\xc6\x2c\x90\x68\xa0\x4a\x93\xea\x26\xeb\xac\x8e\xf6\x0c\x0b\x1e\x13\xf4\x3d\xe4\x00\x31\x28\x79\xbe\xe1\xdd\xe7\xcd\xa2\x18\xe4\x12\xe3\xf0\x8f\x0e\x2a\x7d\xef\xca\x95\x4b\xab\xe5\x59\xce\xed\xa1\x76\xe6\x83\x84\x94\x8d\xb3\xe0\x14\x9b\x19\xb2\xe0\xab\x4a\xd4\xea\x06\x04\xf5\x36\x2f\xf1\xb3\x66\x3b\x2b\xc0\x7d\x23\xd3\x38\xa5\x7a\x45\xdf\x95\x6f\x1e\xf1\x36\x97\x5a\xf2\xc8\x5b\xaf\x6a\x85\x10\x75\x8b\x8e\x7d\x76\x9b\x9c\x61\xd9\x54\xb9\xd1\xce\xd2\xbe\x06\x8f\x14\x99\x48\xe1\x1b\xfb\xdd\x03\x1b\xfa\x65\x0e\xf7\xa0\x33\xec\x52\x87\x23\xd2\x91\x78\xe1\x29\x4c\x5d\x4a\x45\x7c\x87\x22\x62\x4f\x6c\x36\xe2\xb1\x36\x2a\x79\x62\x8b\xd6\x27\x3b\x0e\x95\x8e\x3f\x89\xdb\x43\x63\x2a\xf1\x0e\x3f\x69\xf5\xa3\x6d\x32\x65\x0d\x90\x26\xeb\x7f\x39\xb1\x89\xf6\x84\x80\xf8\x05\x9f\x46\x84\xc4\xba\x5a\x4d\xc8\x0d\x33\x75\xd8\xb3\x82\x0d\xbc\xc5\x92\x56\xb9\x22\xf8\xf0\x18\xbd\xa3\x1a\xe4\x10\x8c\xb9\xb9\xb6\xca\xe6\xc7\x56\x37\x61\xd0\x6c\xad\xb1\x47\x41\xd2\x02\xe5\xbb\xba\x05\x8f\x64\x76\x5f\xb6\x5e\x0b\xeb\x30\x9d\xba\x35\xb3\xd7\x9f\xd3\x41\xf3\xfd\x41\xc3\x2d\x4e\x2c\xb5\x63\xbe\xe6\x9b\x8d\x87\xe9\x20\xd6\x91\xd5\x99\xe2\x91\x1e\x02\x3d\x0c\x08\xc6\x7e\x64\x22\xb1\x90\x9e\xc5\x71\x46\xa8\xd3\x8a\xf8\x11\xa0\xd4\xf1\x5c\x07\x7f\xea\x9b\x4c\x33\xfc\xbb\xe3\x26\x62\xf0\x92\x44\xbe\x66\x93\x41\x62\x8a\xc8\xfa\xbc\xde\x26\xff\x31\x34\x8a\xde\x2c\x18\xfd\xd3\xad\x90\xbf\x9a\x67\xed\x57\x8f\xbb\xa9\x8d\x51\x53\xe2\x67\xdb\xf4\x5b\xe4\xc9\x72\xce\xe8\x8f\x25\x2b\x33\xe7\x51\x76\x9b\x65\x31\x3c\xb7\x8c\xb9\x39\x6d\xde\x64\x69\xc0\xcf\x0c\xaa\xb5\xc2\x5e\x02\x3d\xb7\x3d\x49\xf8\x19\x68\xce\x4b\x62\xed\x64\xf2\x26\x59\xc9\xe2\xc3\x0a\xa4\x11\xfc\x58\xb2\x49\xbe\xf8\xa0\x4c\xea\x08\x5a\x78\xfd\xe4\x6f\xa8\xec\x65\x78\x23\xa9\x49\x5e\x70\x0a\x1a\x5b\x44\x1b\x66\xff\xa2\x8d\x39\x1b\xe8\x1f\x89\xca\x06\x4a\x6e\xd9\x9f\xd8\x4c\xa0\x35\xb1\xf2\x6e\x4c\x75\x40\x06\x23\xbe\x78\x44\xce\x3b\x9f\x55\x42\xc7\xd1\x85\xc0\x14\x8d\x70\x1d\xa2\x0d\xa0\xf9\x4c\x82\xa0\xe5\x25\x3c\xb9\xe4\xe5\x4e\x47\x18\x7e\xe0\xf5\xdc\x6a\xfa\xee\xed\xaf\xe5\xcd\xd7\x54\x1e\x03\xc2\xe0\x6c\x83\xaf\xf5\xe0\x99\xb5\x8d\x24\x1a\x19\xf1\xdb\x4d\x78\xcb\x55\xf8\xb9\x83\xa5\xc8\x9b\x00\x06\x4c\x6f\xb6\xf0\xcd\xe1\x44\x92\x10\x00\x3c\xe3\xd6\x00\x89\xbc\xa6\xe0\xff\x62\x93\x5f\x6c\x63\x31\x4c\x3a\xf5\x88\x9e\xb9\x67\xca\xee\x4c\xe3\xda\x47\xbd\xa8\x7c\xeb\x25\x7d\x80\x93\xb9\x64\x88\x96\x01\xd1\x97\xcd\x74\x98\x71\x1d\x1a\xd2\x84\x63\xe8\xa1\xf5\xc9\x36\x17\x7f\x44\x23\x79\x8a\x81\xf5\x96\x97\xb6\xe2\xf8\x2a\xbd\xa6\x1f\xdc\x34\x0e\x88\xde\xf1\x2f\x7a\x89\xf9\xfe\xe8\x1d\xfd\xa0\x57\x59\xb4\xd5\xd2\x43\x74\xc7\xc7\x5f\xf4\x00\xed\xe8\x68\x3b\x3a\x59\x3a\xc0\x74\x66\xe8\x04\x15\xaf\x47\xc3\x2e\x1a\x31\xe6\x64\x1d\x75\x16\x3e\x49\xf4\x79\x4a\x65\x89\xb9\x89\xbb\x49\xfb\x2a\x1e\x9d\xe1\x00\xe3\xbb\x35\x28\xfc\x15\x25\x2d\x4c\xfa\x83\xa1\x88\x61\x6c\x8e\x4c\x2e\x65\x23\xd8\x73\x00\x25\x28\x83\x11\x85\x50\xc4\x03\x87\xa1\xb5\x06\xb4\x02\x09\x77\x90\x83\x7c\xf9\x6f\xfe\x86\x4a\xc3\xcf\xbf\xfd\x5b\x75\xe1\xed\x57\x54\xfc\x09\xa6\x55\xc9\x55\x2f\xfa\x84\x98\x49\x29\x05\x8f\x3f\xf5\x0a\x52\xcc\x36\xf2\x4a\x23\x25\xfb\x65\x8e\x11\x8a\xbf\x71\x9e\xff\x37\x00\x00\xff\xff\x15\xe0\xa1\xd9\x66\xf0\x00\x00") +var _confLocaleLocale_ruRuIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\xfb\x8e\x1b\xc7\x99\x28\xfe\x7f\x3f\x45\x4b\x81\x60\x1b\x90\x68\xd8\xde\xdf\xef\x1c\x04\x1e\xfb\x38\x56\x12\xe7\x20\x71\xbc\x91\x82\xfc\x61\x08\x74\x0f\xd9\x33\xd3\x2b\x0e\x9b\x61\x37\x25\xcb\x8b\x05\xa4\x99\xf8\x92\x23\x47\x8a\xbd\xce\x89\xe1\xd8\x56\x14\x6f\x36\x0b\x04\xc1\xa1\x46\x43\x89\x73\xa3\x00\x3f\x41\xf3\x15\xf6\x49\x4e\x7d\x97\xaa\xfa\xaa\xba\x9a\xe4\xd8\xd9\x83\xc5\xc6\x9a\x66\xdd\xeb\xab\xef\x7e\x49\x06\x83\x76\x37\x2d\x3a\x6b\xd5\x57\xd5\x7e\x35\xab\x1e\x54\x27\xd5\x78\x7e\x37\x9e\xdf\xaa\x8e\xe6\xbb\xd5\x23\xf5\x61\x1c\xab\x5f\x8e\xe8\x9b\x6a\x30\xbf\x35\xdf\xa9\xf6\xaa\x89\x6a\x78\xa2\xfe\x7e\x58\xcd\xe2\x1f\x66\xe5\x85\xf9\x4d\xf5\xe9\x89\xfa\xf0\xb8\x9a\xaa\x06\x33\xf5\xf7\x74\x7e\xf7\x7c\x0c\xe3\xa9\xef\x53\xd5\x79\x8c\x5d\x60\x74\xf8\x4f\x3c\xbf\x5b\x3d\x9e\xdf\xae\x0e\xab\x49\xfc\xc3\x3c\x8a\xb6\xf2\xed\x74\xad\xfa\xd7\xea\x48\xb5\xdb\xa3\x76\x51\x37\x29\xb6\xd6\xf3\x64\xd8\x5d\xab\xee\x61\xf7\x89\x5a\xc8\x87\x71\x75\xac\xe6\x39\xb1\xf3\xa8\x7f\x3f\xac\xc6\x51\xfa\xf6\xa0\x97\x0f\xd5\x20\x5f\xaa\x55\x3f\x86\x9f\xa2\xad\xb4\x37\x80\xbe\x33\xe8\x32\xff\xf5\xfc\xc3\xa8\xc8\x36\xfb\xed\xac\xbf\x56\x7d\xac\x3e\x1e\xa8\x11\xa6\xf4\x29\x1f\x95\xea\xdb\xfc\xf6\xfc\x5d\xf5\x7d\x9f\xbe\x8d\x54\xdf\x3f\xaa\x39\x1f\xc2\xf2\xe7\x3b\x6a\xaa\xf1\xfc\x3d\xd8\x56\x34\x4c\x37\xb3\xa2\x4c\x87\x6b\xd5\xef\xd5\xb7\x9b\x4e\x9b\xa9\xfa\xff\x99\xda\xc2\x58\xfd\xf5\xa1\xfa\x76\x37\xba\x9e\xae\x17\x59\x99\xc2\x9c\x93\xea\xc1\x05\x3c\x0a\x35\x75\x74\x2d\x1d\x16\x59\x8e\x6b\x99\xcc\x6f\xaa\xcf\x30\xf4\x20\xd9\x54\x2d\xef\xd3\x74\xb8\xcb\xf7\xd4\xde\xca\x74\x7b\xd0\x4b\x60\x8c\xff\x50\x5f\x1f\xa8\x53\x52\x27\x10\xf5\x92\xfe\xe6\x08\xdb\xff\x1f\x3a\xcb\xa8\x33\x4c\x55\xab\x76\x3f\xbd\xae\xc6\xc0\xdb\xd8\xa7\x85\xb4\x5a\xad\x68\x54\xa4\xc3\xf6\x60\x98\x6f\x64\xbd\xb4\x9d\xf4\xbb\xed\x6d\x3c\xae\x7b\xb0\xe0\xf9\xaf\xd4\x39\xe2\xe1\x4e\x63\xf5\x17\x5c\xf2\x18\xfe\xc6\x4b\x9e\xe0\x79\xa4\x5d\x75\x70\xed\xa4\xc0\x73\x8a\xd5\x0e\x67\xf3\x0f\xd4\x42\x54\xfb\x43\xd5\xf6\x30\xc2\xf1\xfb\x09\x5c\xe3\xa7\xd5\x31\x5c\x33\xc0\x03\x8c\xf1\x58\x1f\x08\x5e\xe0\xdd\x28\xdd\x4e\xb2\xde\x5a\xf5\xb7\xea\xa8\x85\x8d\xe6\xef\xc3\x74\x6a\xeb\x45\x71\x3d\xe7\xdb\xc6\x53\x54\x9d\xd5\x59\xb7\xcb\x1b\x83\x94\xae\x71\x8f\xee\x3c\xea\x24\x83\xb2\xb3\x95\xac\xbd\x4a\xff\x8d\x54\xab\x41\xae\x0e\x39\x1f\xde\xa0\x3b\xf3\x40\xb1\x3a\x88\xf2\xe1\x66\xd2\xcf\xde\x49\x4a\x3c\xf2\x2f\xd5\xd7\x87\x74\xc0\xaa\x9d\xbe\xd7\xed\x6c\x38\xcc\xf1\x56\xd5\x85\xe0\xb6\xd4\x41\x47\xea\x34\xdb\x30\xfe\x5a\xf5\x05\x2e\xe1\x76\x75\x10\x87\xe0\x5d\x4d\x02\x4d\xb7\xb3\xcd\x21\x5e\xd5\x17\xbc\x6d\x75\x12\x9f\xab\x5f\x1f\x0a\x00\x82\x76\x1b\xf9\xf0\xaa\x1c\xb2\x7a\x82\x7b\x9e\x54\x87\xf3\x9d\x18\x96\x15\x9c\x84\x3b\xab\xdd\x38\x13\x34\xec\x27\xe9\x2b\xf0\xa0\xc6\x5f\xe1\xf8\xf0\xb8\x8e\xf0\xf5\x4e\xd5\xc3\x0b\x75\x53\x3f\x1e\x44\x49\x77\x5b\xdd\xf5\x20\xe9\xa7\x3d\xef\xed\x8d\x15\x44\x1d\xe3\x9b\xb3\x8f\x82\x96\x36\x8e\x92\x4e\x27\x1f\xf5\xcb\x76\x91\x96\x65\xd6\xdf\x2c\x60\x85\x63\x6e\xa5\x5e\x9b\x3a\xd0\x29\x0c\x70\x08\x27\xab\xb0\xcb\x09\xde\xfa\x82\xc6\xd1\x8d\x7c\x64\x20\x16\x9e\xc9\x78\xfe\x01\x1f\x93\x86\x57\x6a\x62\xc7\xc0\x36\x30\xcd\x49\x6d\x30\x38\xb7\xa2\xbd\x91\xa6\x0a\xc0\xfe\x00\x47\x00\xd3\xc7\x08\xe0\x7b\x0c\xf2\xb0\xf5\xc1\xa8\xd7\x53\xd7\xfd\xcb\x51\x5a\x94\xc5\xda\x1b\xea\xaf\xf8\x67\xfc\x57\x94\x15\x85\xfa\x07\x21\x0f\x5a\xc6\xad\xf9\xed\x48\x41\x63\xbf\x03\x07\xf5\xa5\x1a\xe2\x18\x0f\x77\x1c\x45\x6f\x16\x69\x32\xec\x6c\x5d\x89\xe8\xbf\x04\xbf\x80\x07\x0f\xe1\x2d\x2e\x87\x57\x78\x4d\xd4\xa9\xfe\x84\x3e\xa4\x95\xf0\xdb\x45\x7c\x30\x51\x33\x8f\xa3\x4e\xde\x55\x5f\x3f\x43\x1c\x16\xbd\x99\xf5\x8b\x32\xe9\xf5\xae\x44\xfc\x0f\x05\x04\xfc\xb2\x69\xd3\x87\x80\x59\xb2\x12\xce\xd6\xfd\x41\xbd\x48\x75\x3c\xb7\x15\x84\xa8\xc3\x1c\x03\x72\xd3\x44\x40\x2d\x14\x9e\xc6\x1e\xa3\x7e\x00\x1a\x75\x12\xbb\xb0\x2d\x35\x58\x37\xef\x5c\x55\x38\x06\xd0\x2e\x2c\xfe\x77\x40\x46\xa0\xef\x1e\x20\x0c\xd8\xbb\xc1\x08\xea\xfa\x27\xb0\x19\x85\xfb\x37\x0b\xd5\x20\xbe\x88\x5d\x2f\xa8\x61\x66\x78\x33\xea\x2a\x00\xe8\xe0\x09\x9c\x27\x4c\xf2\x08\x31\xd2\xae\x42\x9d\xb7\xe8\xe6\xe8\x06\x00\x77\x4c\x71\xa8\x17\x93\xb8\x4c\x86\x9b\x69\xb9\x76\xb6\xbd\xae\x70\xe3\xd5\xb3\xf1\xd6\x30\xdd\x58\x3b\x7b\xae\x38\xfb\xd2\xfc\x37\xd0\x8e\x88\xd8\x1e\xcc\x3d\xbf\xfd\xe2\xb3\xc9\x4b\xe7\xf5\x8e\x26\xd5\x7e\x8c\xd3\x1e\x33\x3e\x8b\x71\xe4\xd9\x05\xd8\x81\x3a\xe1\x19\x3e\x49\xbe\xde\x29\xa0\xd4\x33\x11\x40\x89\x42\xec\xed\xee\x3a\x11\x51\xdc\x0b\xc2\x9c\xc2\xf3\xb4\xc3\xf8\x27\x37\x2e\xfd\xe3\x8f\xcf\xc7\x6f\xe4\x45\xb9\x39\x4c\xf1\xdf\xea\x7f\x54\xaf\x17\x60\x40\x38\x9d\xcb\xd9\xc5\xef\xb5\x22\x35\x06\x5f\x45\xe0\xcd\x28\x2a\x0c\x08\x1e\x2e\x01\xa9\x28\xd0\x29\xec\x81\x88\xf1\x4f\x6a\xa0\x27\x0d\x8d\xb6\xd4\xbc\x6b\xd5\x9f\x09\xbe\x97\xc0\x54\x18\xff\xaa\x69\x1c\xa4\xde\xb4\x16\x7d\xe9\x9f\x20\x9c\xe0\xb6\xeb\x77\x7e\x80\x17\x05\x37\xa1\x56\x8c\x00\x07\xb0\xab\x68\x5c\xfc\xa3\x7e\x3f\xbf\xf8\x3d\x75\x3f\x31\x82\xc0\xbe\xa1\xa3\xf0\xd7\x41\x3c\x2a\x37\xfe\x7b\x7b\x33\xed\xa7\xc3\xa4\xd7\xee\x64\xad\xa8\x28\x7a\x8a\x7e\x01\xb4\xc3\xf3\x79\xa4\x06\x3c\x8e\x2f\x5d\xfa\xb1\xda\x44\x09\x6f\x4d\x81\xe4\x0e\x90\xfb\x5f\xf6\xe0\x82\xf4\xda\xf8\x33\xac\x7d\x16\xde\x09\x5f\x8e\x7b\x37\xe9\x70\xd8\x56\x04\xb8\xbc\x01\x37\xed\x4c\xa0\x16\xcb\xe3\x00\x36\xad\x8f\xe3\x5c\x32\xe0\x9a\x09\x71\x2f\x8f\x10\x36\x14\x90\xdc\xa6\x51\xf0\x09\x01\x4c\x56\xc7\x34\x5d\xd6\xbf\x96\xf4\xb2\xae\x82\x09\x73\xfe\x5f\xe0\x34\x7b\x8c\xad\x27\x0d\xeb\x0f\x4e\x84\x50\xbf\x8f\x70\xfe\x88\xf8\x01\xf8\xa4\x8e\x0c\x1f\xf2\x91\x1a\xe3\x6c\xeb\x2c\x90\xfe\xb3\x17\xce\xb6\xa2\x7e\xde\x26\xfc\x0f\x3c\x42\x37\x2b\x92\x75\xc5\x2f\x10\xcb\x33\x64\xf2\x89\x1c\x80\x3b\x09\xfc\x31\x53\xff\x39\x54\xe3\xdd\x51\xf8\x63\x4a\xd3\xdc\x0c\x30\x50\x77\xce\x53\x67\x5c\x16\xb2\x28\x0a\x01\xb8\x84\x61\x21\xa1\x91\x37\xa2\x29\x55\x00\x74\x17\x8e\xb1\xea\x65\x44\x1a\xe8\xf8\x75\x2a\xe6\x72\xfe\x6b\x3a\xff\x27\x38\xd5\x18\x70\x02\x8c\xad\x8e\x04\x10\x40\x04\x3c\xb5\xcb\x06\x21\x46\x3f\xa2\x99\x70\x2d\x77\x4d\x23\x03\x9a\x5f\x21\xd6\x79\xc4\xa8\x0c\x4f\x65\xa2\x56\xf1\x21\x71\xd0\xce\xbd\xef\x21\x8d\x9b\x20\xcb\x00\x47\xae\xa6\xbe\x0b\x4c\xa5\x3a\xf6\x5f\xd3\xe7\x59\x80\xac\x4f\xcf\x20\xd1\xa9\xc1\x2f\x36\x3e\x01\xfe\x3e\xcc\x6d\x98\x4e\x66\xa9\x1f\xab\xc9\xd4\xe5\xed\xe2\xc5\x11\x33\xc1\xc4\x22\xc4\x14\x4d\x41\x3e\x88\x11\x1f\xee\xc3\xa4\x78\xeb\xf3\x77\x99\xbd\x05\x32\x0c\xcc\x64\x8c\xf8\x19\x5e\x3a\x3f\x7d\x64\x83\xf4\x10\x8a\x5e\x8e\x14\x3f\xbe\x10\x7b\xe9\x16\xf6\x44\x1b\x19\x50\x7c\xff\x6a\xe5\x78\x1d\xe2\xe2\xf7\x09\x4d\xaa\x95\x3e\xc1\x87\x0d\x80\xb0\x83\x0c\xae\x3d\xa7\x3b\x0d\xe7\x14\x73\x3b\x41\x10\xe7\xbb\x08\x10\x0a\xb7\xe7\x8a\xe1\xed\x03\x6a\x9c\x11\x01\xe1\x2f\xf6\x44\x11\x09\xde\x25\x38\x04\xe1\xe8\xe7\x3f\xfb\xf1\x05\x80\x5e\x98\x0b\xae\xd6\x90\xdf\x43\x62\xfd\xad\x94\x41\xf0\x84\x5b\x55\xf8\xef\x35\x40\x8c\x5b\xed\x41\x3e\x2c\xd7\xd4\x5f\x04\x20\x37\x15\xe6\xd7\x5f\xcd\x94\x5f\xd0\x5a\xe6\x37\x4d\x9b\x6a\x7c\x9e\xb6\x89\x7b\x22\x96\x34\x40\xb3\x61\x16\xb8\x43\x62\x03\xd4\xff\xb6\x80\x8d\x24\xee\x61\x4f\x49\x3c\x08\xbe\xe2\x09\x9d\x67\x42\x0a\xc7\x1c\xc2\x10\xb8\xe8\xad\xb2\x1c\xd0\xaa\xe1\x7e\x61\x35\xf1\x6b\x97\x2f\xbf\x61\xbf\x9f\x72\xdd\xb5\x27\x87\xf8\x12\x41\x96\xf1\xa1\xe2\x24\x80\xb7\x41\xd9\x08\x5f\xe3\x68\xd8\x5b\x53\xc7\xde\xfc\x5c\x55\x03\xb3\x8a\xbf\xe1\x64\x3b\x35\x1c\x10\x23\x7b\xed\x5f\xe5\x6a\xb7\x07\x1b\x7e\x16\xfe\xe7\x52\xcc\x0c\x6c\xec\x82\x00\x3c\x12\x7c\x6f\x87\xcc\x1d\x90\x08\x7e\x60\x65\xa8\x89\xc2\x57\xf9\x00\x50\xb4\x45\x58\x7f\x44\x76\xe2\x03\x7e\x54\xfa\xa9\x06\xf8\x63\x94\xca\x9a\x99\x10\xab\x12\x50\xf7\xb8\x64\x21\x8a\x29\x2e\xb6\xd5\xcd\x11\xf7\xf1\x15\x50\xc7\xea\x28\xbe\xf4\x13\x75\xa3\xf8\x7d\x63\x98\x6f\x03\x7a\x7c\x6c\xff\xb4\x34\x5a\xcb\x83\x31\x9d\xb0\x38\x82\xf3\xf1\xcf\x7e\xf0\x6a\xfc\xff\xbd\xf0\xfc\xf3\x0a\xe6\xf0\x0a\x82\x08\x1c\x37\x22\x3a\x6a\x1a\xac\x64\x06\x78\xac\xc7\x70\xeb\xf1\x59\xc2\xce\x67\xe3\x17\xb1\xf9\xff\x48\xdf\x4e\x94\x88\x9d\xb6\x3a\xf9\xf6\x4b\xad\x08\x3e\x29\x54\x42\x18\xe7\x6f\xb5\xbd\x8e\xf9\xce\xc4\x42\x8d\x74\x35\x35\x62\x2e\x0f\xd2\x40\x9b\xc2\x7d\xb4\x66\xa1\xdd\xc9\xfb\x1b\xd9\x70\x1b\x70\x83\xfb\x5e\xf0\x3d\xee\x93\x12\x06\xe9\xf9\xbe\x81\xf0\x10\xb1\x55\x17\x8b\xf7\xda\xcf\xcb\x6c\x03\x85\x0d\x60\x1a\xe0\x5c\x3e\x10\x03\xf2\x13\xdd\x23\x34\xbe\x8b\x0a\x9e\x7d\x7c\x69\x47\xe6\x0d\xa8\xb3\xb8\x96\x82\xac\x35\xbc\x96\x75\x52\x0d\x28\xf7\x2d\x22\x40\xb0\x55\x67\xae\xfa\x3f\xa4\x17\x57\x03\x32\x01\x45\x51\xbe\xb1\xd1\xcb\xfa\x29\x73\x71\x76\x9b\xe6\xbd\x82\x90\x07\xea\x20\x25\x08\xd0\xd6\x90\xcb\x53\x62\x86\xec\xa9\xb0\xc3\x00\x14\x35\x5f\xd6\x10\xcb\xab\x17\x5f\x27\xd6\xe8\x11\x12\x4d\x2d\x5f\x4f\x91\x98\xc2\x11\xba\x9a\xac\x63\x39\x07\xc8\x1c\x7b\x44\xe6\x7e\x85\x2b\x00\x1e\x89\xa0\x49\xe1\x8d\x9b\x24\x45\x38\x44\xed\x26\x52\x69\x64\x65\xac\xea\x27\xc6\xf7\x7e\x68\x55\x29\x8a\x16\x30\x3f\xb5\x39\x4c\xae\x25\x4a\x5c\x09\xad\x5c\x3c\x35\x45\x42\xb8\x61\xad\x67\xf3\xce\x75\x17\xbc\x90\x30\x0d\xfc\x10\x25\x36\x3c\x66\x04\x17\x12\xf9\xd4\x07\xf5\xd1\xec\x5d\x6f\x06\xc0\x16\x90\xb7\x1a\xea\x82\x5a\xd7\x31\x8e\xf8\x3e\x63\xaf\x3b\x44\xf3\x1e\xe2\xbd\x3f\x42\x2e\x64\x87\xf6\xde\x40\x7d\x81\x23\xb3\xe7\xe0\xf2\x95\xc1\xb3\x18\xa3\xf6\x8e\x16\x79\x57\xaf\x5f\xe1\xb1\x5d\x4d\x8c\x6b\xfc\x65\x70\x74\x7d\x5e\xbf\x47\x0a\x7d\x13\x79\x56\xf1\xa4\x82\x2b\xfd\x66\xd3\x9f\x8f\xf1\x35\x41\xb3\x43\xc0\x51\x8d\x6c\x68\x8d\x47\x77\x20\xc8\x63\x89\xe7\xb7\x15\xdf\xdb\xc7\x6d\x69\xf5\x57\x1d\x39\x1c\xe2\xe6\xde\x9f\xef\x7a\x4d\xfd\xcd\xa3\x96\xc4\x4e\x64\xba\x31\xf9\x6b\x40\x25\x8d\x27\xd5\x22\x59\x78\x98\xb6\x59\xc1\xda\xbe\x96\x81\x0e\xb2\x8e\x6d\xb4\x78\x6c\x75\xa4\x08\x66\x86\xd7\xd3\xca\xab\x3b\x56\xe3\x40\x8a\x16\xbc\x05\x5c\x4b\xac\x17\x45\xea\xd1\xe0\xd4\x7a\xbf\x7f\x72\xef\x41\xce\x23\x89\x30\x13\xc5\xe0\xee\x60\xdb\x70\x4d\x0f\xf1\xa1\x8b\xe5\x8c\x49\xdf\x6b\xf6\xe1\x2e\x6b\x7e\x9b\xf4\x16\xc8\x2a\xed\x68\x14\x4f\x28\xd0\x0e\x87\xb8\x76\x4a\x6c\x09\x9e\x8e\x58\x2f\x0c\x78\x4b\x2d\xec\x08\x59\x49\xcd\x10\x04\x8f\x6a\x8f\x30\xb0\x62\xab\x77\x6b\xcb\x68\xb1\x36\x8f\x95\x64\xac\xef\xb7\x12\x9c\xe6\x85\x81\x11\xb7\x40\x48\xcb\xd9\x05\x7c\xac\x26\x24\x68\x27\xe6\x16\x81\x62\x99\x70\xf5\x04\x84\x12\xd8\x27\xb2\x8a\x4a\xee\x7f\x1f\x48\xc1\xf9\x46\x74\x04\x82\xff\x8f\x2e\xc6\x6b\xf1\x73\xba\xc9\x2e\x01\xb5\xcb\x95\x03\x31\xd7\x44\x13\xde\xe5\x74\xc9\x32\xf8\xb8\xe8\xb2\x54\x83\xf7\x91\x91\x38\x04\x04\x44\x87\xd2\xcc\xee\xa8\xf9\xe7\x1f\xc1\xd6\x89\xb3\x31\x5b\x5f\x32\x27\x8f\xbb\x92\x1e\x7c\x81\xec\x1a\x31\xfd\x77\x7e\x95\x74\x7f\xdf\xe2\x2e\xdb\x89\x06\xb4\xea\xf5\x25\x6c\xcb\xa2\x6d\xb0\xca\xb0\xbd\x99\x83\x5a\xd5\x55\x0f\x32\x95\x01\x61\xb7\x4c\x8b\xb2\xbd\x99\x95\xed\x0d\x60\x76\xba\x70\x92\x42\x34\x9c\x11\xa4\x3c\xe1\x97\x36\x41\x51\x09\xfa\x3e\xa5\xba\x3c\x45\x9a\x9e\x63\x1c\x56\x51\xd1\xef\xc6\xe7\xae\xb1\xc2\xe6\x05\x60\x57\xda\x8a\x88\x65\x3d\x40\x62\x5a\xad\x0b\x3c\xb0\x35\x95\x30\xf8\x22\x3b\x64\x94\x1b\xf8\x1a\x49\x4c\x21\x05\x4c\x83\xf2\x90\x14\x96\x48\xc4\x0e\xb4\xee\xe2\x57\x68\x6c\x99\x6a\x6a\x4d\x20\xff\x00\xcf\x67\x8c\xb2\xdf\x2e\x3d\x35\xbd\x82\x3b\xc4\xa1\x9e\x2b\xd4\x1c\x5a\x9f\x20\x7f\xdd\xcc\xd7\x47\x59\xaf\xdb\x8a\xb4\x32\xa7\xbb\xae\x1f\xe1\xca\x5a\x3e\xbd\x49\xcd\x28\xf2\xd2\x14\xb6\xc2\xe3\xd2\x23\x0b\xc9\xfe\x0b\x66\xdd\x58\x04\x03\x76\x46\xcb\x44\x56\x65\xb5\x4c\x9a\xc5\xc1\x8d\x44\x0d\x97\xb1\x9d\x94\xa0\xc4\xfe\x13\x82\xd4\x2e\xaa\x40\x0e\x9a\x5f\x33\xa9\x77\xee\x82\x34\x44\xb2\xd0\x02\x8e\x80\x74\xae\x8c\xec\x1d\x7d\xb2\x5a\x45\x11\x5f\x78\x49\xfd\x6f\x54\x24\xd7\x52\xe2\x89\x37\x17\x81\x9a\xa3\x5b\x30\x24\x11\x34\xca\xbf\x42\x0b\xcc\xae\x25\xd2\xce\xf9\x39\x18\x52\x2b\x63\x60\x2d\x27\xb8\x95\x86\x03\xf5\x64\x3f\x8b\x2d\x4f\x87\x32\x78\x25\xf4\xde\x8a\x51\xa7\x93\x16\x05\x29\x0b\x1e\x00\x78\x08\x00\xb6\x44\xf3\x4c\x5c\x7d\x4e\x2c\x29\x88\x39\xb7\xb5\x90\xcd\xaa\x76\xe0\xe3\x1f\xe0\x6f\x40\x70\x50\x09\x11\xa3\x95\xf1\x16\xd1\x20\x38\x78\x7a\x9a\x08\x76\x13\x43\xed\x77\x48\x2b\x07\xea\x6b\x45\xd3\xa3\x37\xc1\x2a\x7b\x25\x1a\x91\xa6\x2a\xef\x75\x41\x1c\x5a\x88\xd4\x3e\xd4\xc2\xd6\xf7\x2f\x00\x16\x32\x3a\x65\xd3\x5b\xe2\xb8\xe2\x7a\xa6\x80\xaa\x6d\xcc\xbc\x70\xc1\x65\xfa\x36\x2a\x01\x68\x4d\x35\xee\x46\x1b\x07\x0e\xe1\x10\xf1\x0a\xc8\x34\x85\x18\xdb\xb7\x70\x81\x0c\x76\x03\xdf\x86\x3a\xcf\xcf\x81\xf7\x6f\x50\x51\x29\x6c\xdb\x53\x98\x26\x07\x46\xf1\x5a\xaa\x7b\xdc\xc7\x9d\x1d\xe3\x51\xed\x2c\x54\x71\xc1\x34\xf9\x70\x93\x66\x59\x60\x8e\xbb\xd1\x26\x0b\xa3\x59\x0e\x48\xc6\x73\x6d\x69\x1c\x47\xc8\xb9\x90\x25\xfc\x1e\x0b\x0e\x8f\x99\x14\xab\x37\xc0\xe6\xa7\x96\x82\x54\xb4\x7a\xf1\x32\x3f\xb6\x1a\xc1\xe3\xa6\xf5\x45\x6f\xb2\x75\xfc\x4a\xc4\xbd\x42\x46\x27\x68\x97\x8c\xca\xad\x2b\xc2\x8e\xdc\x66\xa3\x9e\x67\x4f\x66\xbb\x19\x3d\x04\x87\x4d\xb5\x22\xec\x56\x3a\x00\xf9\x77\xbb\xc0\x17\x85\x52\x18\x1e\x65\x8d\xb3\x7d\x39\xae\x7e\x2b\xf9\x1a\x6d\x28\x00\x10\x3d\x13\x15\x79\x27\x4b\x7a\xed\x55\x86\x15\x2f\x70\x6c\xb0\x09\xf1\x2b\x6a\x8e\xfb\x6a\x8e\xbb\x56\xc5\x3a\x41\x58\x27\x94\xf1\x1e\x71\x69\x4a\x2c\xba\x73\xc6\x13\x1e\xc8\x66\xbe\x3d\x28\x51\x61\x81\x38\x98\x7c\x0f\x94\x8c\x88\x56\x70\xb4\x0a\xc1\x03\x3d\x61\x46\x25\xac\xf5\x26\xc3\xfa\x8e\x23\xe6\x8e\xd5\xb3\xbc\x57\xa7\x4e\xe7\x61\x51\x62\xad\x8c\xda\x16\x21\x91\x99\x96\x55\xe0\xe0\xc6\xbe\x78\x05\xc7\x85\x3c\xc1\x67\xc4\xe1\x3d\x32\x8a\x5b\xa4\x62\xa7\xd5\x28\x90\xbe\xca\x6a\x9d\xea\x1b\x9b\x81\x40\xb0\x9d\x6e\xaf\xc3\xcc\x29\x8b\x1d\x48\xec\x0d\x5a\x46\x45\xa8\x7a\x14\x1b\xea\xe1\x28\xfa\x62\xf9\x1c\x68\xfb\x00\xd9\xde\xa9\xcb\xdd\x40\xcb\x74\x95\x96\x2f\x6b\xff\x0d\x45\xb9\x94\x10\xf2\x05\x0a\xa6\xa8\xea\xf5\xc1\x2e\xe8\xbe\x21\xc1\xaf\xa5\x19\x31\x12\x21\x51\x95\x52\xa4\xfd\xd2\xc0\x04\xd9\xe0\x67\xc4\x89\x20\xa4\x21\xd7\x6b\xcd\xa5\xc1\xa3\x45\x43\x1a\xae\x7c\xc6\x2e\x32\x0e\xe6\xa2\x8f\xf1\x8b\xeb\x2f\x9d\x2b\x5e\x7c\x76\xfd\xa5\x30\x13\x73\xde\xe1\xac\xb4\xea\x75\x8f\xad\xe4\x8e\x52\xe7\x40\x11\x63\xa4\xd9\x87\xa8\x46\x84\xcd\x59\x45\xcb\xb9\x6e\x4c\xec\x39\x29\x35\x04\x25\xa6\x81\x3f\x30\x6b\x0e\x83\x83\xe2\xa5\x3b\x88\x37\x11\x2b\x19\x7c\xf1\x5b\xd4\xe0\x4f\x91\x5f\xbc\x69\x6d\x7f\xb7\xf0\xb8\x02\x58\x03\x8f\xb5\x97\x6d\x67\xf6\x70\x3f\x26\x91\x04\x28\xd6\x07\xc4\x2c\xf2\x4a\x89\xd6\x49\x15\x1a\xf3\x19\xfe\x3d\xd0\xab\xd1\x0b\x31\x0e\x0e\xfc\xee\xf6\xf1\x50\xf7\x19\x23\xbc\x10\xd3\xe3\x42\x3e\xe9\x76\xf8\xcc\x5b\xd1\x56\x52\xb4\x47\x7d\x86\x8a\xb4\xcb\x0f\xeb\xf7\xa8\x6c\x04\x71\x03\xb5\x4a\x7a\xbb\xe7\x15\xde\x56\xa4\xfa\x2b\xba\x96\x5b\x02\x01\x9e\x30\xfe\xad\x03\xc7\x89\x46\xaa\x5a\x7d\xb9\x54\xd9\x1a\x3f\x6d\x20\xe5\x19\xb5\x33\x6b\x76\x07\xe6\x44\x70\x90\x53\xf2\x6e\x22\xed\x76\xfd\x9c\x1a\xd1\x00\x0c\x42\x54\x1d\x0e\x87\x30\x1d\x32\x19\x38\x91\xa4\x07\xb5\x87\xc0\x1e\x60\x8f\xe0\x64\xe9\x76\x50\x8c\x3d\xc4\xe6\x4f\xb4\x60\x3b\x85\xf7\xd9\x22\x18\xd0\x27\xfa\x85\xdb\xcd\x18\xc4\x5c\x7b\x82\x36\xde\x7b\xda\x54\x26\x31\xce\xb5\xeb\x93\x73\x17\xc8\x6a\x6f\x94\x37\x0a\x24\x35\xe0\xba\x63\xf4\xfb\xa7\xb9\x05\x6d\xd3\x04\xcc\x6d\x78\xc7\x29\x1e\x2d\x9c\x3a\xb5\x6f\x64\x12\x81\xf6\xb4\x22\x3c\x00\x38\x87\x32\x78\x0c\xaa\xd9\x1d\x20\xc1\x75\xa3\x8a\xb7\xf9\x00\x2e\x52\x2b\x7b\xc0\xba\x8b\xb1\x44\x97\x77\x23\x9a\xcf\xe2\xd5\xfb\xba\xa1\xdb\x4c\x33\xcb\xe4\x64\x52\x23\x86\x1a\xf3\xa0\xf9\x7e\x21\xe6\x9b\xb2\xb3\xcd\xa1\x05\xab\xa0\xb8\x50\xe7\xba\x8f\x5b\xde\x62\x85\x5d\x68\x05\x70\x11\x47\x60\xb4\x8b\x7b\xfa\x1a\x2d\xa1\x31\x83\x97\x79\xde\x2e\xb6\xd0\x2c\xf5\x09\xfa\x81\x9c\x78\x47\x67\xac\xc8\x13\x7c\xd0\x93\xf8\xff\x77\x0c\xeb\xf0\x24\x80\x8d\x86\xab\xbc\x42\x58\x12\xd8\x2a\x83\x22\x03\xb4\x5f\xc2\xed\x2a\x78\xd3\x0c\xca\x52\x7f\x40\x4b\x40\x9a\x5c\x03\xc7\x34\x10\xd8\x89\x97\x5b\x71\x7c\xc8\xf8\x18\x59\x1c\x4f\x17\xe0\x50\x1d\xe9\xb8\xc7\xac\x87\x11\x69\x82\xce\x94\x31\x32\xba\xc0\xd7\x5b\x9e\x68\x89\xec\x63\x87\x66\xab\xc6\x2f\xd2\x5e\x47\x71\xcd\x71\xde\x8f\x51\x90\x80\x23\xcf\xbb\x89\x3a\xf3\x1b\x29\x8a\x52\xe3\xa8\x8f\xee\x7b\x0a\xb4\x22\xf5\x0b\x5a\x42\x3e\x75\xdd\x79\x54\x1f\xc5\x60\x6c\x5f\x89\x7e\xae\x44\xde\xd7\x13\xcd\x83\x87\x4c\xcd\x3f\x53\x2c\xf4\xeb\x42\xc1\x13\x96\xa1\xa3\xef\xd3\x8d\xfc\xd6\x41\x21\x2d\x79\xbc\x6f\x04\x55\x3f\x3f\x4b\xc9\xaf\xe7\x63\x36\xc3\x4c\x35\x59\x13\xd6\xa3\x09\x98\xfa\xd9\xea\x10\x5d\xba\xf4\xda\x65\xd2\x63\xd1\x7a\xd0\xf2\xab\xd9\xb1\x71\xf4\x5a\x59\x0e\x8a\x9f\xb3\x79\x13\x0d\x8c\x6a\xe2\x1b\xbd\x3c\xe9\xea\x8f\x7c\xdc\xe0\x8d\x03\x3a\xd6\xf7\xd1\x0e\x30\x8e\x2e\xa7\xc9\xf6\xeb\x61\xdf\x13\xa9\xb9\xb9\x1d\xbd\xa2\x84\x06\x79\x20\x21\x35\xa5\x92\x2e\x5e\x01\x29\xfb\xfb\x7f\x0f\xed\x94\xd1\xf9\xa6\xe8\xb0\xf9\xd6\x8a\xde\x1c\x6f\x45\x49\x6f\xb0\x95\xa0\xc4\xc9\x5d\xbf\xfe\x6b\xb3\x33\x80\x8f\x7c\x5c\xa7\x19\xd2\xc3\xa0\x7d\x1b\x85\xfc\x23\xe6\xb5\x0c\xb1\x84\x59\x9e\xbe\xd0\x7e\x06\xb0\xd1\x09\x2a\x9b\x0c\x3d\x6d\x7d\x7d\x24\x97\xd2\x55\xd4\xe7\xff\xdd\x72\x1c\x0c\x85\x5a\x54\x44\xde\x06\x60\x00\xa2\xc9\x20\xa4\xc8\x33\xac\xb4\xc8\xde\x11\x27\x1d\x5c\x1f\xdb\xbf\xc8\x32\x7f\xae\x50\x27\x8d\x0a\x15\xdb\xd1\xdb\x58\xc0\x23\x89\x84\x8a\x43\x1c\x09\x7d\xff\x00\x15\x1d\x13\x7d\x07\x45\x50\x0d\xb1\xaa\x95\x6d\x27\x6f\xb7\x9b\x57\x17\x9a\xe4\x18\xf1\x2b\x0e\x05\xa6\xac\xe0\xc0\x6f\x31\x53\x60\x56\x1e\x26\x4f\xd6\x32\x8d\x8c\xe9\x32\x64\x0a\xeb\x05\x1f\x82\x25\xa3\x86\x2e\xda\x73\x07\x99\x11\x00\x65\xfd\x4e\x6f\xd4\x5d\x7d\xef\x4f\x9d\x2b\x9e\x7a\x2b\x1a\xf5\xaf\x2a\xa9\xa8\xcf\xbd\x50\x5d\x48\x26\x51\x56\x73\xd0\x3b\x9c\xa1\x7d\xe8\x01\x6a\xe1\xb4\xb7\x75\x5b\x4d\x98\x0f\x87\x69\xa7\x5c\x7b\xf5\x95\x37\x2e\xbf\xfa\xda\x2b\xc2\x8d\x6b\x0f\x75\x31\xfb\xa4\x7c\x6d\x59\x12\x2a\x74\x87\x8e\xf9\x7b\xba\x48\xec\xac\x93\x58\x77\x0e\xb0\x31\xb6\xac\xc3\x79\x7b\x3d\x4d\xfb\xed\x32\xb9\x9a\xf6\x97\xe9\xdc\x63\x92\x05\xb5\x97\xc7\x09\x5a\xf4\x66\xe4\x8f\xdb\x6e\x18\x2b\x8c\xde\x9b\x46\x52\x42\x6a\x7d\xa0\x1a\xfe\x0c\x7a\x68\x59\x99\xb0\x61\xec\x52\x21\xe4\x15\x06\x77\x90\xf3\xd2\x41\x09\xd6\x71\x40\x75\xa0\x5d\x9f\x60\x2d\xe6\x79\xf5\x98\x01\x47\x21\x00\xe7\x56\x94\xf5\x7a\xe9\x26\x78\xa3\xe8\xa5\x9b\x1b\x22\x8b\xf1\x13\xb5\x9c\xdb\x2e\xb4\x4e\xc9\x75\x26\xa4\x75\x9d\x30\x2e\x25\x13\x8e\xb9\x7f\x03\x6d\x16\x42\x97\xc1\x81\xe6\x3c\x1d\xaa\xda\xa0\x6b\x3f\x00\xc3\xab\x62\x37\x86\x18\x02\x21\x34\xee\x7d\xc3\x26\xd4\x35\x38\xbb\xa0\x58\xd5\xd4\x5b\x72\xa2\x6c\xad\xd3\xd2\x1e\x32\x39\xee\x94\x24\xa4\x4c\x09\xf8\x8c\x36\x1b\xc5\xe0\x5f\xa3\xf7\xa3\xbf\x18\xf5\x9e\x81\x19\xc2\xd5\x7c\xb5\xf2\xbc\x76\x12\x54\x3c\x8c\xf1\x17\x70\x0d\x78\xcf\x58\x5a\xa8\x59\x60\x46\xcb\x12\xae\x3a\x9f\xd4\x99\xf3\x71\xef\xb1\xf0\x76\xc2\xb1\x29\x80\x2b\xd2\xb7\xb3\x02\xd9\xed\xb1\xec\xb4\xc8\xca\x70\x0b\xcd\x11\x13\x23\x78\x23\xfe\xe9\x25\x45\x09\x2a\x59\x3a\x1a\x0a\x6f\x1a\x13\xa2\xb5\xea\xfb\x06\x4b\x64\xc8\x6c\x81\x04\x75\x82\x52\x1c\x78\x1a\x83\x9e\x44\xbc\x32\xe2\x80\xdd\x23\x9c\x28\x42\x42\x9c\x6c\x9d\x58\xbe\x8b\x6c\x16\xe9\x80\x62\x16\xc9\x4f\x9c\x21\xd4\xe4\xef\x29\x0c\xa7\x8f\x1b\xdc\xf7\xae\xa6\x37\xc2\x0a\x3c\x45\xbd\x8f\x85\xf8\x89\xc6\x65\x06\xee\x9a\xe1\x8d\x19\x75\xc5\x21\x5e\xd0\x04\x1f\xac\x2c\xa0\xe2\x07\x75\xe1\xb5\x74\xa8\x78\x63\x33\x1d\x39\xe7\xfb\xac\xd5\x4a\xa3\xa2\xe0\x3f\xe3\x95\x99\x87\x8c\x2a\xed\x89\x75\x0a\x84\xcd\x9f\xc4\xb8\xe5\x03\xf6\xc7\x99\x1a\xab\xd0\x49\xa3\x76\x74\x57\x1b\x85\x5d\xe5\x97\x36\x01\x35\x78\x6c\x80\x36\x42\x4f\xcb\xab\x6c\x9e\x3a\x02\x45\xb8\x31\x35\x7d\x69\xc9\x61\x0c\xa2\x17\x36\x3c\x41\x93\xf2\xaf\x88\x59\x26\x0c\x8e\xa6\x9c\xa8\x28\x15\xd6\x03\xc8\x33\x61\x43\x63\xa9\xa3\x77\x25\x38\x84\x1d\x72\xb7\x21\xa6\xde\x84\x5f\x19\xf8\xa3\x78\x04\xcd\x0c\x33\xe3\x62\xc0\x26\xa8\xf2\x3f\x40\x1d\xf2\x09\x9b\x38\x8f\x78\x01\xa8\x0d\x32\x1a\x1c\x63\x3b\xe3\x4b\x34\x18\x91\xe3\x21\x34\xcb\x04\x42\x9b\xa2\x13\xb4\x2b\x50\x7f\x61\x3c\x11\x3b\x10\x8c\xb5\x4e\xc9\xda\x94\xf6\x1a\xc8\x1b\x2e\x49\xc7\x8f\x8c\xc1\x20\xa5\xd5\x53\x28\x7f\x68\xdd\xd4\xb1\x16\xfb\x0e\x8d\x32\xee\x43\xd2\xd6\x6b\x3f\x3e\x67\xdd\x44\x71\xfd\x23\x67\xfc\xa1\x99\x99\x80\x35\xc6\x3b\xf5\xfa\xab\xaf\x3f\xe8\x06\xf3\x8a\x7a\xe9\xe7\xc3\xdb\x58\x72\xc2\xda\xb4\xa4\x7f\x05\x73\xef\x5e\x2c\x6e\x0d\xfc\x39\xed\xce\xd8\x1b\x71\x6e\x83\x5f\xf8\x11\x1e\x92\x56\x02\xe6\x25\x25\x05\x5b\x22\x98\xc9\xba\x40\xee\x4e\x78\xeb\x80\xfd\x76\x1b\xc9\x35\xed\x42\xfa\xd2\x1e\x2f\x70\xfa\xd1\x92\x83\x7e\xe1\xda\x89\x64\xe1\xfe\xd0\xe6\x45\x43\x1c\x13\x88\xe2\x98\xb5\x4b\x8d\x28\x94\xa7\xbd\x3e\x4c\xfa\x9d\x2d\x49\x1a\xfe\x9d\xdf\x28\x47\xbe\x61\x30\x0f\x1d\x41\x13\x39\x50\xa2\x3d\x9c\xdd\x95\x48\x31\xb1\xfd\xcd\xb4\xad\x3d\xef\x1c\x0d\x80\xd0\x62\x08\xb7\x37\xd2\x57\x6a\x97\x3b\xf0\x0e\xd5\x83\x74\x46\x45\x99\x6f\x9f\x6e\xac\xbd\xba\x4b\xa4\x7a\x3f\xd1\x3f\xe5\x4a\x56\x02\xf7\xb7\x7b\x88\x51\x6f\xa1\x7a\x66\x9f\x5f\xfb\x11\x76\x00\xe3\xa7\x0d\x1a\xcb\xd2\x46\x0b\x1e\xea\x83\xb2\xf2\x86\xd4\xbf\x1b\xc3\x54\xb4\x91\xf7\x7a\xf9\xf5\x14\x0c\x90\xa4\xff\x26\x3d\x21\x09\xfc\x53\x05\x6b\x09\x50\x79\xda\xcd\x03\x66\x3c\x28\x02\x94\x7a\xa2\x75\x5c\xf4\x84\x06\x11\x18\x66\xb6\x5b\xc8\x88\x81\xbe\x68\x78\x8d\x46\x58\xc8\x7e\x81\x2c\x42\x90\x00\x80\xf2\x98\x91\x82\x74\xc9\x52\x18\xc7\x8e\x3b\x48\x4a\xc5\x80\xf4\x49\x4d\x8b\x5b\x58\x3e\xc5\xd7\x7f\x3d\x57\x7c\x7d\x24\x9c\x9c\x04\x05\xd2\xdc\x29\x44\xe9\x51\xe8\xe0\x95\xc8\xc4\x19\x3a\x01\xb1\x0d\x51\x51\x4c\x21\x8b\x35\x47\xd7\x32\x65\x63\x25\x38\xcc\x68\xc7\x29\x66\x5a\x85\x2b\xc0\x9e\x6b\x73\xbc\xab\x20\x20\x19\x0c\x7a\x59\x07\x6d\x4c\x05\x83\x81\xe7\x81\x4e\xe6\xe5\x50\xbc\xe6\x34\xea\xa6\xbd\xb4\x4c\x0d\x93\x23\x14\xe0\x42\x51\x38\xca\xba\x6b\x3f\xff\xd1\xc5\x28\x1a\x8c\xd6\xd5\x5c\x36\xac\x12\x7d\x2e\xe1\xb1\xa3\x92\xe4\xc0\x0f\xb0\xd4\x01\xc3\xe4\x36\x66\x65\x83\xca\x86\xa1\xac\x20\x26\xd4\x79\x2a\x64\x90\x8f\xd0\x27\xeb\x84\xd5\x14\xd2\x45\xdf\x45\x51\x1a\x2a\x8c\x75\x4a\x9d\x37\xb2\x53\xef\x06\xbd\x95\x99\xfc\x19\x45\x3c\xfb\xd2\xb0\x31\x48\xd0\xde\x19\xb0\x22\x80\x7d\x76\xf0\x87\x47\x04\x2a\xde\x0c\x2e\x8f\xc0\x63\xcf\x1c\xe3\x18\x8f\xff\x3e\x23\xbe\xc7\xc6\x16\xab\x80\x18\xe2\x49\x89\x35\xff\x37\x05\xb2\x5f\x36\x86\x83\xf7\xf2\x0e\x7b\xc1\x7e\xce\xe8\x6b\x46\x07\x50\x89\x28\x86\x68\x34\xe8\x82\xb6\xd7\xde\x1e\xc6\xec\xcf\x84\xe6\xdf\xb9\x3d\xb7\xb9\x55\xc5\x86\x62\x69\x59\x52\x8c\xf1\x99\x3c\x41\x9f\xcd\x13\x62\xd1\xf4\x14\xcc\x1a\x31\x06\x5c\x35\xde\x5b\x46\x4e\xa2\x75\xd3\x1f\xc0\xd8\xfb\xd8\xa7\xdf\x6d\x3e\xf5\xd9\x4f\xbd\x14\x05\x5b\x1f\xe2\xd3\xe2\xd4\x04\x04\x74\xf5\xce\xc6\x8d\x72\x06\x5c\xd4\x8c\x6c\x2f\x64\x02\xb0\xac\xa1\x85\xe7\x87\xe4\x2a\xea\x44\x29\xa3\x19\x58\xe1\x09\x88\xb9\xfd\x84\x79\xef\x49\x38\xee\x57\xfb\xdd\xba\xe4\xc1\x77\xd4\xad\x27\x53\xd0\x56\x3f\x43\x2e\x82\x23\x89\x90\x21\x31\x20\x6c\xf2\x37\xe0\x22\x19\x23\x9a\xd3\x4e\xc8\x6c\xf8\x08\x45\xdd\x08\x9f\xed\xc7\x68\x85\x53\x6f\xc3\x78\x9a\x77\xb6\xf2\xbc\x60\xef\x0f\xbd\x7e\xed\x51\x14\x70\xfe\xb0\x2b\x66\x68\x33\x9e\xed\x3e\x6c\x7a\xc4\x0f\xd6\x2b\xba\xab\xd3\x1b\x0d\x40\x2d\xad\xe4\x4c\xde\x2d\xe2\xfb\x76\xb6\x8d\x49\x0e\x7e\x5f\x09\x37\x73\x23\xc7\x69\x07\xfd\x26\x23\xd2\x14\xc1\x91\x88\xd9\x23\xa1\x81\x85\x30\x47\xf7\x68\x85\xbf\xe1\xfd\xa5\xb7\x63\x34\x14\xda\x37\x15\xda\x39\x7a\xd4\xa9\xe0\x9e\xa9\xb5\xe7\x2c\xd2\x72\xcf\xcb\x3e\x4e\xdf\x37\x70\x5c\x03\x4e\x71\x66\xb5\xf7\x89\xcc\x94\x7c\xc1\x8a\xcc\xf1\x83\x93\x26\x3e\x61\xfa\x70\xed\x36\x79\x4f\x8a\xf7\x35\x87\x3f\xdb\x10\xe0\xc3\x36\x94\x89\x0c\x1c\x2b\x10\x18\x33\xda\x6e\xdb\x7b\xcd\x9a\x3f\x6d\x46\x7e\x48\x52\x80\xb5\x3e\x86\x74\x3c\xcd\x8b\x5b\xa4\xcb\xf1\x0e\xc3\x9e\xbb\x54\x50\xa2\x20\xcd\x58\xc4\x3f\xcf\x18\x27\x7e\x42\x82\x27\x33\xc0\x4e\x1c\x2c\x5a\xea\xe6\x3b\x6c\xfc\xd5\x8f\xe5\x58\xac\x90\x40\x90\x74\x6f\x85\x20\xab\x70\x79\x4b\xad\x72\x9c\xd6\x41\x77\x0e\x66\x76\x10\x61\x53\xc8\xc4\x2f\x1f\x95\xf4\x80\xec\x1d\x4e\xe4\x61\x66\x18\x74\x6e\x7d\x2a\x73\xf8\xaa\xc4\x3c\x4c\xc1\xdd\x68\x22\x20\xc3\x33\x16\x2c\x88\xed\x51\x17\x39\x18\x2a\xcc\x00\x19\x14\xbe\x74\xd7\xa9\x7f\xd0\x36\xd1\x90\xf7\xb2\x16\xaa\xbd\x2d\x32\x2f\x65\x7a\x4a\x8e\xca\x9c\x90\x6a\x81\x74\xfa\x2b\x11\x01\xeb\x1f\xfa\x29\x0e\x9c\x86\x13\x79\x78\xe4\x98\x1c\x17\xcb\xef\xfe\x14\xc3\x9f\xd7\x8a\x5e\xd6\xc1\xc1\x35\x1c\xba\x51\xbb\xe0\xfc\xe5\xb2\x49\x38\x86\x65\xee\xa6\x75\x6d\x05\x71\x4c\x53\xf4\xa8\xd5\xd1\x74\xe4\x05\x14\x93\xbb\x8e\x0e\x25\x9a\xb1\x9a\xcb\x98\x2f\x71\x9d\x5a\x4e\xc4\x03\x7d\xd9\x3f\x02\xf3\x12\x4f\xa7\x82\x76\xd8\x15\xb9\x43\xf0\xf2\xef\x22\xee\xe1\xfb\x44\xc3\xb2\xf4\x93\x70\x08\xd9\xca\x73\xe2\xb0\x0d\x43\xd6\x3b\x93\xdf\xb8\xee\xbc\x6b\x3b\xb7\x1d\xdf\x32\xf0\x7f\xf2\xfc\xc9\x16\xd8\x47\x66\xcb\x83\x41\x85\x8b\x99\xe3\x29\x45\x4c\x18\x8a\x60\xa7\x70\x2c\x93\xae\x12\x2b\xbb\x96\x69\xb5\x29\x1c\x01\x34\x52\xcf\xd8\xf1\x36\x73\xfd\x58\xa4\xcb\x99\xc3\xcd\xbe\x87\x0c\x71\xb3\x8b\x12\x88\x72\xf6\x54\x05\x1d\xfd\x26\x97\x5b\xe3\x7f\xf7\xcd\x0d\x33\x50\x69\x04\x6c\x84\xc0\x20\x0a\x76\xad\xf0\x80\x84\x71\x8d\xa8\xc6\xad\xc1\x21\xb7\x43\xb9\x92\x10\x01\xf1\xc2\xb8\x12\x52\x09\x1c\xc6\xc2\xc5\xf2\x40\x87\x61\x87\x64\x1c\x21\x99\x2d\xf4\x36\x8a\x85\x5a\x9c\xa3\x20\x58\xea\x21\x4a\xec\x59\x06\xe9\x33\xab\x11\x0d\x97\x43\x11\xe7\xcc\x96\xbe\x58\x94\xc3\xbc\xbf\xf9\x12\xfb\x5c\x9e\x68\xc5\x14\xa7\xdf\x7a\xf9\xc5\x67\xb9\x41\xac\x98\x43\x6d\xc9\x51\x3f\x3b\xfa\x5b\xe2\x13\x19\xfb\x3c\x61\x65\xeb\x5e\x65\xb4\x8c\x3a\x64\x00\x1e\xc1\x8b\x89\xcc\xf1\x62\x43\xe8\x08\xb9\x49\x85\x34\x9c\x07\x64\x7c\x11\x5a\x38\x19\x55\xc6\x5c\x34\x85\xaa\x69\x4f\x25\x77\x74\xf6\x3c\x24\x99\x90\x1e\x08\x67\xde\x69\x92\x36\xd5\xfc\x30\xa5\x45\x43\xc1\xcb\x97\x80\xa2\x15\x0b\xd2\x1e\xf7\xd1\x52\x3a\xea\x0b\xd3\x07\x66\xbc\x96\x19\x10\x05\x2d\x1a\xf0\x5e\x63\x73\x74\x88\x26\x59\x18\x4f\xff\x11\xdb\x88\x98\x13\x3a\xd6\xf6\xbe\xb0\xd1\x45\x4f\x63\x04\x42\xeb\x83\x02\x3f\xa1\x77\xbf\xf6\x24\xb7\x01\x3b\xc7\xa8\x5f\xe2\xa7\x61\x1f\xef\x47\x41\x59\xd4\x7b\x8b\x0e\x02\xd7\x7b\x80\xf3\x24\xe5\xcf\x19\x4d\xce\xf1\xdc\x5d\x62\xae\xcf\x65\x01\x39\x37\xcb\x87\x21\x6b\x1d\x3c\x82\xad\xb1\xff\x9c\x3c\x07\xe5\xa5\x3a\xca\x4d\x13\x58\xec\x41\x0c\x79\xa3\x57\x6c\x5f\x12\x82\x05\xa9\x57\x8f\x48\xd7\xb9\xf4\x61\x5b\x42\xbc\x9c\xfa\xd6\x76\xa4\x0f\xdf\x59\x7c\x58\x2b\x20\xc9\xec\x19\xbc\xbd\xbc\x2f\x41\x9b\xa9\x0c\x19\xe2\x18\xec\x3c\x33\xda\x01\x7b\x8d\x84\xc1\xfa\x08\xc4\x37\xcc\x45\x63\x34\x9a\xbf\x23\xfb\x88\xf5\x67\xd5\x4e\xe4\xdc\x18\xe1\xa7\x04\x89\x4a\xa0\x50\xe4\x7b\xf4\x56\x1a\x27\x22\x3d\x42\xcd\xd2\x37\x89\xff\x5b\x8c\xff\x84\xcc\x60\x65\x7e\x55\xbd\xc9\xd0\x04\x48\xc2\x0e\x09\x20\xbf\xd5\x14\x86\xb2\x68\x35\x62\x88\xb5\x67\xb6\xce\x01\x9e\x63\x0e\x59\x34\x4a\xc7\x63\xd6\xb4\x33\xba\xbf\x4b\x1f\x02\xaa\x47\x0e\xaf\x68\x26\x3a\x81\xe9\x50\xed\x66\x27\x03\x7c\x68\x01\x10\xfd\x76\xea\x13\x7d\x2b\x6a\x23\xd7\x40\xa6\xff\xfe\x7a\xd6\xef\x92\xea\x85\x97\x86\xaf\x9a\xbe\x5b\x2c\x72\x1f\xb9\x07\x13\xd3\x47\xce\x4d\xcd\x51\x22\xc4\x29\xd9\xbd\x8e\x2d\xb1\x4f\x70\xc4\x36\x02\x41\xc3\xc5\xfc\x49\x43\x01\xcb\x5c\x14\xc6\x84\xe7\x78\x52\xd9\x74\x8a\xc8\xcb\x7f\x22\x34\x07\x63\x4e\x32\xc4\x11\x37\x3c\x45\x63\xbc\x0d\xfe\x4e\xd0\x58\xf0\xbd\xdd\x17\x84\x4f\x9e\x1c\x40\x85\x81\x4d\x2d\xa6\x72\x20\x73\x00\x50\xe7\x26\x6f\x01\x23\x1c\xa9\xdf\x00\xb7\x6d\x4a\xd7\xf6\xca\x1b\x3f\x6a\x45\x66\xa5\xbc\x04\x0e\x58\x12\x16\x56\xd0\xb7\xec\x13\x87\x28\xde\x87\x94\x0a\x39\x74\x4e\x47\xe0\x6b\x62\xe4\xe7\xe1\x59\x0d\xed\xf1\xfb\x74\x08\xd0\x31\xca\xdb\x87\x24\x36\xda\x53\xe6\x13\xfe\x57\x22\x6b\x73\x2f\x69\xa7\xd3\xcd\xeb\x44\x90\x95\x52\x48\xac\x44\x87\x82\xf5\x90\x77\x25\x77\xee\x1c\xe6\x99\xa0\x6d\x1b\xc6\x21\xfb\xbf\x89\x4b\x3d\x44\xb9\x97\xa3\xbc\x85\x12\x48\x2a\x4a\xec\x2c\x84\x61\x1a\xa1\xce\x59\x02\x13\x8a\x4a\xf8\x0d\x68\x0d\x86\x17\x96\xce\x73\x5a\x73\x9d\x21\xac\xe6\x39\x48\xd2\x2a\x9f\xca\x22\xfa\xda\xbc\x50\x77\x43\xce\xaa\xc3\xa3\xaf\x20\x3d\x7f\xa3\xd9\x56\x13\xa2\x89\xa4\x23\xcf\x57\x43\x94\x1a\x51\x04\x1e\x53\x20\xd5\xd0\x9d\xd5\xa9\xb7\xbc\x01\xa9\xc3\xaa\xed\x72\x31\x20\x2e\x24\xec\x31\x06\xd9\xe2\x7e\x28\xd7\x09\x07\x19\x79\xa9\x10\x43\x99\x5e\x5c\x68\x0d\x24\x55\x52\xa8\x95\xb7\x60\xfc\xe1\x3d\x5e\xaa\xc1\xe5\x9d\x7b\x49\xa3\x01\xf3\x4c\xd2\x4c\x83\x22\xc2\x1e\xb9\xa8\x99\x51\x8d\x1c\x0b\x9a\x8f\x45\xc9\x0d\xe0\xf0\xf0\x52\xd5\xf2\xf7\xe1\xb6\xa6\xb1\x95\x6d\xaa\xdf\x41\x30\xe1\xe7\x4a\x84\xf9\xdf\xd5\xef\x14\xd6\xff\x9d\x10\x6b\x26\x26\x0a\x5c\xfb\x2e\x9c\x31\xb1\xfc\xfe\x76\xc3\xbe\xfa\x2e\x74\x29\xd6\xd8\xed\xa6\x53\x16\x04\x94\x4f\x6e\x62\x55\xaf\x9b\x25\xf0\xe3\xc5\x14\x50\xa4\xc9\x92\x2b\x19\xf3\x25\x23\x6a\xbb\x85\xfa\xcb\x95\x41\x35\x7a\x13\x4c\xd7\x57\x22\x76\xc6\xfa\xd8\xf5\x73\x8a\x84\x2f\xdd\x42\x87\x7a\xeb\xa4\xa9\xad\x20\x7f\xc0\x34\x0d\x1f\x68\xd5\xb1\xf0\x83\x6c\x18\x05\x24\x49\x1d\xfe\x4e\x56\x11\x70\x61\xa0\xfd\xcf\xd8\xc3\x86\x6d\x0b\xf2\xce\xe1\x50\xc9\xcf\x47\x3f\x29\x73\xe5\xad\xe8\x5a\x56\x64\xeb\x59\x0f\x59\xd4\x8f\x11\x6b\x4e\xb5\x03\x92\x42\x86\xf8\x2b\xfc\x68\x65\xe4\x41\xd2\x8f\x3b\x8a\x31\x2e\xd6\xce\x8e\xb2\x78\x98\x76\x63\x88\x7a\x3e\xfb\x52\xf5\x07\x2b\x92\xa9\xf1\x55\xb3\x97\x9a\x12\x0d\xfb\xa3\x42\x36\xe1\x0e\x30\xd9\x94\x9c\xcf\x50\xa0\xc6\xa4\x7c\xda\x50\x62\xd2\xf5\xac\xb4\x2c\x75\x40\x7a\x61\xe4\xae\xfd\x88\x89\x15\xe3\xc1\x45\xc9\x38\x6c\x78\xaa\x58\x3d\x24\x41\xd6\x07\xf3\xb4\x70\xa2\x08\x21\x70\xc7\x8b\x9e\xc1\xd6\x68\x71\x26\x42\xb2\x22\xcd\xa4\xba\xda\x67\xa2\x4e\x2f\xef\x5b\x70\x09\x6b\x25\xd8\x9b\x2f\x90\x9a\xad\x9a\xbe\x1c\xb3\xd8\x62\x72\xb8\xf8\xf9\x55\x76\x17\xe7\x9d\xb5\x13\xc1\xd1\x25\x2f\x9d\x89\x70\xcb\xe4\xa5\xf4\x25\x3f\xfe\x1d\xab\x3d\x0c\x5f\x37\xf6\xa1\xac\x69\xb2\x8f\x78\xfd\x0a\x98\xa9\x55\x0d\xde\x02\x3d\x30\xdf\x15\x18\xfd\x42\xef\xec\x0e\x31\xe3\xe4\x1a\x74\x57\x9f\xd4\x84\x1c\x86\x29\xc8\x9a\x75\x83\xea\x13\xfa\xfe\x39\x20\x5f\x4d\xe9\x9d\x12\xbe\xf9\xd2\xfa\x89\x20\x2e\xc3\x9f\x20\x6f\xb9\xcd\x59\x6e\x3e\x89\x04\x93\xb7\x39\x2b\x01\x9f\xb8\xcd\xc1\xd5\xda\xcc\xca\x6c\xb3\x9f\x0f\xd3\xa8\x97\x75\x14\x03\x9c\xae\x21\x78\xbe\x87\xfb\x7a\x8c\x68\x82\x7f\x58\x3a\x5c\x8c\x34\xc1\xf4\xc4\x85\x27\x5d\x85\x85\x7e\x86\xff\xe1\xbf\x9a\x87\x81\xd4\xc8\x9c\x8a\xdd\x98\x32\x78\x68\x05\x61\xd4\x1b\xdc\x08\xf3\x76\xd6\xcf\xd0\x23\x99\xd2\xb9\x4f\x89\x1a\xc9\x14\x44\xae\xee\x20\x0c\x04\x32\xad\x83\x10\xfa\xcc\x8c\x24\x72\x4c\x9d\x75\xc1\xd5\xe9\x60\x7e\x02\x39\x57\xaa\x68\x00\xb7\x6e\xba\x91\x8c\x7a\xda\xf9\x8a\x12\xd4\xef\x18\x37\xb3\xb8\x9e\x03\x8c\x33\xa7\xab\x8d\x96\xe9\xf0\x1a\x48\xae\x9f\x92\x6f\x23\xf9\xfa\xc1\x59\xcb\x4c\x07\x7e\xfe\xc3\xa7\x49\xb7\xf6\x4c\x74\x1d\x22\x05\xc0\x3d\xe9\x17\xfc\x0f\x74\x49\xda\x4c\xde\x81\x6f\x97\xcc\x3f\x11\xd2\x8b\xb5\x1f\xc0\xff\x2e\x72\x3f\x0a\xd3\x91\x98\xbc\x8f\xbe\xad\xfb\xd1\x7f\xc8\xeb\xd7\x3a\xb2\x70\x86\x09\xe3\xf0\xb4\xd0\x17\xa9\x9f\x82\xe1\x7b\x04\x49\x5c\xfe\x34\x17\x39\xa4\x75\xb4\x49\x3d\xf3\x13\x64\xac\xdf\x24\xe1\x44\x66\x82\x06\x0c\x6c\xb2\xcd\x43\x76\x0a\xd1\xa8\x96\xc2\xb2\x09\xd8\x2c\x1b\xe0\x50\x06\x20\x09\xf1\x7a\x6f\x94\x2a\xd4\x26\xaf\x54\x01\x1a\x53\x06\x33\x1d\x01\x9c\x4e\xe5\x81\x3e\x17\x4d\x94\x9d\xbb\xb4\x08\x5d\x27\xdd\xee\x90\xa5\x77\x2d\xfd\x38\xe2\x99\x51\xe6\x87\xfb\x39\xba\x8c\x50\x4c\x98\xcd\xb4\xf9\xec\x0f\x7f\x74\x39\x90\x29\xb2\x72\xd2\xf6\x79\xe9\x73\x4e\x88\x96\x99\xb4\x87\xe0\xa5\xa9\xd7\xa1\x4e\x76\x3b\x2b\x0a\x12\x48\xfa\x19\x80\x89\x8d\xfd\x3e\xb1\xee\xd3\x63\x76\x05\x24\xc0\x79\x52\x51\xca\x53\x7f\x5a\x10\x28\x1a\x78\x18\x3b\xa5\x76\x11\x07\xf7\xa1\xde\xb2\x1c\x40\xcd\xfb\xc2\x04\x31\x8e\x7b\x02\xfb\x66\x37\x39\x55\x1a\x6f\xdc\x9a\xc7\x05\xa7\x65\x02\x96\x0a\x93\x77\xdb\xb5\xb2\x3b\xf5\x4f\xf0\x4f\x75\x48\x31\x7d\x20\xaf\x69\x78\xd3\xea\x01\x20\x95\xd3\x24\x5c\xd0\x35\x4c\x12\x5a\xa4\xbd\x8d\xa6\xec\xd3\x86\xec\x6b\x9f\x61\xef\xec\xc6\x73\xed\x18\xbd\x43\xa6\x5f\xb6\x00\x7f\x2c\xc2\x58\x58\x5a\xf1\x1c\xf1\x81\x83\x1f\xdc\x68\xf7\xb2\xfe\xd5\x06\x98\xb4\x0d\xa4\xea\xc9\x6b\x08\x87\x2a\x86\xb2\x11\x58\x32\x72\xf9\x3f\x3f\xfc\xf4\xc2\xab\xfa\x6c\x5f\x2d\x87\x3d\xf8\xcb\xa4\x8f\xf5\xc7\x83\xb7\xa3\x06\x24\x40\xf3\x15\x12\x81\xe9\xa3\x51\xff\xba\x0e\xc6\x9a\x10\xcc\xe3\xc9\xe8\xac\x93\x15\x47\x72\xa8\x1d\x71\xbb\xfb\xce\xc7\x11\x64\x29\x1a\x62\xd0\xc7\xdc\x38\x03\x4d\x51\x85\xeb\x79\x8c\xaa\x73\x8c\xa8\xed\xc7\xf5\x1f\x27\x11\x15\xbf\xa8\xf1\x3f\x11\x28\x7c\xe9\xf9\x7e\x41\x40\x36\x93\x0c\x84\xda\xed\x2f\x47\x59\xe7\x6a\x7b\x73\x94\x61\xa1\x03\x66\x30\x61\xa7\xc0\xe9\xaa\x6b\x3c\x64\xb5\x88\x4e\xef\x39\x63\x16\xb0\xdc\xca\x0a\xc6\x48\x9f\xf9\xac\xde\x22\x52\x28\x32\xe1\x20\xa3\xd2\xc9\xb7\xb7\x93\x7e\x77\x81\x7a\xae\x09\xa1\xe2\x31\xc9\xa0\x11\x6d\x6d\x67\x1e\x16\x1c\x70\x07\x23\x08\x4c\x05\x3f\x67\xc1\x21\xba\xa1\xfd\xfe\x5b\x24\xc3\xea\xb7\x9c\x17\xb7\xa6\x0e\x08\x73\xaa\x2f\xa7\x0d\x8c\x57\x1a\xad\xc7\xe4\xe8\xb4\x87\xb7\xf3\x6b\xad\xca\x22\xe9\x92\x46\x53\x8f\xed\x4c\x14\xd5\xd8\x8b\xa8\x1c\xa6\xe8\x61\x47\x24\x03\x6e\x6f\x23\xeb\x41\xa0\x37\xbb\x81\x43\x46\xfa\x32\xd9\x5c\xfb\x01\x7e\x8d\xe9\x6b\x9c\x0f\x15\x03\xbe\xc9\xc3\x51\x7d\x0e\x1a\x70\x1a\xa9\xef\x05\x39\x54\xd2\xdf\xba\x82\xc7\x97\xe8\xde\xb5\x2b\x4d\xc8\x58\xf9\xa3\x20\xeb\xd8\x11\x18\x3c\x28\x01\x15\x2b\xa4\xe7\xb7\xa3\x5e\xb2\x9e\xf6\x9c\xd1\xb6\x15\xf6\x2a\x4a\x05\x5e\x05\x4b\xd6\x60\xad\x89\x00\x44\xb2\xb2\xa0\x3a\x1c\xc7\xf4\xb2\x31\x96\xbe\x97\x26\x85\xf6\xdc\x46\x06\x50\x7d\x45\xb7\xcc\x61\x72\x5d\xb1\x2c\x6a\x1a\x0a\x1e\x40\x51\x93\x7e\x51\x50\x4b\x45\x42\x3e\xe5\x78\x16\xa2\x97\xf8\x1b\x66\x8b\xc2\xae\xf7\x1c\x53\xe6\x44\xbb\xdb\x07\xc6\x03\x02\x95\x10\x22\xbb\x67\x63\x64\x2a\x1d\x2a\x61\x5c\x25\xe1\x32\xf4\x46\x5a\x0d\x1b\xd2\x3f\xd7\x0a\x9c\x68\x70\x23\x9c\xa6\xde\x85\x69\xba\x81\x4a\xfb\x2f\x18\x24\xa6\xe6\x3b\x70\x3d\x80\x0b\x7f\x6b\x2b\xfc\xf0\x2f\xdb\x0a\x97\x52\x49\x24\x35\xd0\x0c\x93\xef\x6b\xbd\x88\x6e\xd2\xc5\x94\x1d\x9f\x90\x4b\x9c\xf9\xca\xf9\xc6\x20\x03\xa9\x12\x53\x40\x13\x65\x7e\x52\x8f\x59\xa7\x12\x07\x29\x66\x62\x32\x6b\x61\xdd\x24\x51\x55\xe7\x71\x45\xe1\xa6\x60\xc1\xb4\x4d\x5a\x75\x40\x10\x3f\xf6\x41\x98\x59\x4f\x7b\x94\x9f\x8e\x34\xdc\x78\x9c\xa2\x4d\x47\x41\xc2\xb0\xad\x87\x51\x6f\x9c\x62\xb6\xe7\x26\x54\xe2\x38\x34\xb2\x81\x36\x03\x6c\xde\xbc\xa2\x01\x61\x4f\x94\x28\xc6\xa8\x35\xad\xcd\x2e\x1a\x7f\xe9\x4d\xaf\xbb\xc9\x4e\xf9\x20\xed\xbb\x7d\xac\xd7\x78\xb8\x87\xc2\xbb\x05\xe4\xc7\xb1\x7d\x7e\x5f\x8d\x7d\xaf\x69\x2d\xe2\xd3\xcb\x11\xbd\x15\xb3\x09\x35\xa7\x52\x41\x24\x7c\x7f\xcc\xfa\x9e\x6c\x27\x87\x40\xcd\x42\x23\x30\x8d\x72\x4f\xd0\x0e\xa0\xc9\xcf\xf2\xae\x44\x21\x02\x3e\x1d\x06\x7a\xe6\xbb\x62\x1a\x0b\x1d\x06\xcc\x42\x30\x42\xcd\xda\x83\x5e\xd2\x49\xbd\xcc\x7b\x06\x38\xa0\x90\x90\xb3\x08\x3d\x76\x6d\x29\xdc\xc5\x2e\x04\xaf\xb3\x4c\xd6\xd7\xce\x75\x63\xf7\x2e\xcd\x88\x70\x7d\xa6\x09\x5c\x5d\xad\x09\xe3\x66\x9e\xf4\x73\x7f\x17\xf2\x67\x25\x3a\x01\xf3\x86\x5e\x9b\x5f\x68\x65\xcd\x6d\x87\x29\x38\x08\x80\x3d\x0f\xd1\x0c\xf9\x7e\x03\x39\x0f\x37\xd5\x99\x39\xed\x74\x5e\x67\x79\xe9\x63\x47\xcb\x34\xab\xb7\xdc\xcc\x54\x4b\x39\x4b\x23\x78\x2e\x9d\x57\xc8\x6c\x81\x5f\x5a\x90\x0d\xd2\x14\x9c\x22\xad\x9e\xc5\x47\xfe\x09\x51\x8f\x82\xeb\xb4\x95\x39\xe4\xe2\x0a\xec\x87\x83\xee\x42\x9d\x09\x82\xba\xed\xf5\x1b\xd4\xb7\xd9\xa4\x18\xea\xbd\x9d\xf6\x81\xa1\x87\xfc\xc2\xd8\x9b\x99\x6a\xd4\x1d\x01\x7d\xa1\x9c\x5a\x5e\xcf\x02\x33\xeb\xdc\x27\xe9\xc7\x63\xa8\xeb\x2d\x5b\x50\x00\xaf\x28\x2d\xde\x3e\x20\xc5\x6f\xa8\x29\x3c\x18\x68\x7a\x9f\xf9\xfe\x85\x8d\x87\x69\x47\xad\x9e\x7c\xb1\xb5\xec\x44\x45\x08\xeb\xc1\x0f\x74\x14\xc1\xd5\x29\xe2\x6e\x06\xf9\xe4\x1b\x0c\xb0\x9d\x17\x25\x50\x28\x74\x91\xf9\x08\xf5\x2b\x1f\x5a\x03\x8a\xa6\xa8\x14\x76\x3a\xd6\x72\x60\xe3\x4a\xcc\x48\x9f\x93\x9e\x0e\x46\x5a\x3a\x0a\x60\x05\x04\x81\xb5\x73\x6f\x3e\x77\x85\xe3\x06\xe8\xd5\x43\x3a\x3a\xe3\x0d\xf5\xe6\xf3\x57\x8a\xb3\x2f\x9d\x7b\xf3\x85\x2b\x05\xe8\x34\x6b\xdd\xdb\x1b\xc9\xd5\x14\xc7\x28\xfc\x41\xb0\xaf\xee\x30\x18\xa6\xd7\xb2\x7c\xc4\x21\x4f\x13\xb4\x16\xef\x23\x7b\xcb\xcc\x88\x5b\x05\xd1\x60\xc7\xb7\x4b\x23\x98\x30\x03\xbc\xa8\x3d\xe1\x3a\x2e\xdf\x23\x17\xe3\xa0\xba\xae\x6e\x22\x50\x9d\x98\x73\xb4\xdd\xe6\x23\x55\xab\x6d\x38\x46\x25\xc7\x76\xcd\x98\xd4\x18\x34\x3a\x25\xe4\xe6\x78\xc2\xbc\xb6\xec\x68\x45\xb3\x23\x38\xdc\xac\x0b\x47\xab\xce\x4c\xeb\x8f\xbf\x43\x7f\xbd\x84\x67\x06\x07\xfd\x96\x59\x4e\x6e\xbd\xa9\xb4\xe1\x9d\xf5\x0b\x6e\x2a\x05\x8e\x06\x9f\xb5\x5c\xb4\xce\xe5\xe3\x82\x58\x9d\x5a\xf0\xfa\xdb\x4e\xa1\xb9\x86\xe5\x33\xbf\x49\xf8\xa9\x36\xde\x30\xc5\x0b\xe0\x81\x3c\xbe\xc1\x58\x94\xbd\xd6\xdf\x68\xfa\x59\x90\x8e\x11\x65\x34\xef\xe1\xb3\xe6\x41\x3c\x78\x80\x8b\xb3\x5b\x3a\xf5\x1d\xd1\x4e\xf4\x38\x66\x6d\x20\x59\xd8\xb0\xd7\xd3\x0d\x49\x0c\xac\x12\x0d\x37\x70\x50\x17\xc1\xc2\xc0\x1c\x04\x24\x38\x0f\x91\xaa\x40\xab\x18\x4e\x37\xe7\x20\xa7\x4a\xa7\x96\x35\xe7\x1f\x30\x67\x32\xba\x6a\x87\x4d\x3e\xe6\xf9\x85\x8d\x7e\xfc\xab\xce\xd4\xb9\x91\x0f\xdb\x1b\x28\xfd\x2d\xcd\xc9\x49\x29\x8b\x41\xd9\x81\xc9\x07\x25\x9d\xd6\x25\x00\x74\x7a\x28\x54\x25\x38\xf9\x02\xe7\xb5\x08\x5b\xeb\xf4\x72\x48\x89\xb0\x5c\xb9\x90\xdc\x64\x17\x66\xaf\x75\xdc\x44\xa9\xb2\xac\xb5\xe6\x7a\x93\x2f\x84\x62\x89\x4c\xd3\x6e\x56\xd6\x93\x94\x69\x40\x08\x44\x9e\xe9\x23\x48\xae\x91\xb4\xe4\xe6\xc1\xd6\x3f\x13\x37\x56\xca\x74\x61\x75\xb6\x8b\x1a\x75\xf2\x1e\xc8\x64\xff\x4e\xec\xcd\x82\x66\x60\xcc\x06\x26\x91\x1a\xa8\x1d\xba\x0d\xec\xf3\x2f\xb0\x99\x7c\xa6\xc6\x77\x0c\xc1\xd5\xed\x47\x27\xf0\x47\xa6\xc7\x87\x4d\xaf\x95\x1a\x07\x63\x60\xdd\x26\xf5\xc4\x6f\x22\xbc\x30\xb8\xb5\x05\xbe\x2b\x4b\x7a\x34\xf9\xa3\xdc\x55\x3b\x38\xc2\xb2\xc7\xe3\x66\xfb\x65\xdd\x33\x54\x72\x7e\x90\x15\x23\x64\x64\x0f\xaf\xc3\xa8\x23\x3f\xb7\x36\x1c\x0a\x0b\x18\xfb\xf6\x7d\xd7\x11\xe4\x4c\x44\x0a\x11\x14\x8a\x5f\x4f\xaf\xc7\xb2\x14\x2a\xff\xa4\xf0\xd1\x20\x51\xcf\x8c\x22\xaa\x40\xe7\xc9\xaa\x2a\xe3\x17\xe2\x45\x63\x6a\x2d\x8b\xdf\x53\xbb\xb1\xf9\xdd\xf7\x01\xf6\x6c\x8c\x3f\xd9\xb7\xdc\x1a\x15\xe8\xfc\x5c\xd7\xd7\x18\xa5\xa9\x1f\x0f\x0a\x71\x43\xce\x12\xd6\x93\x22\x5d\xe3\x03\x35\x21\xa1\x64\x9c\x71\xf2\x0b\xf8\x2b\xa7\xff\xae\xa9\xc9\x9c\x45\x73\x33\x47\x6f\x05\xa1\xbf\x18\x82\x36\xdf\xe1\xc2\x65\x76\xdc\x89\x3e\xe6\x1c\xcc\x57\xa3\x5e\xc9\x0a\x22\x48\xcb\x80\x3d\x08\x9f\x92\xc1\x80\xbd\x1c\x0e\x18\x3b\xcd\x5a\xa6\x73\xb9\x05\xbc\x77\x99\x9b\x75\xa1\x98\xf5\xbe\xf1\xdc\xb2\x8b\xd4\xef\xe7\x7c\xdc\xbc\xe9\x29\xd5\x42\x3d\x34\xbc\x58\x25\xd2\x2c\x70\xe2\x91\x8a\x7c\xf7\xd1\xcb\x40\xaf\x03\xb2\x83\xc8\x02\xba\x8a\xf0\x7d\xd5\xe8\x30\x6e\xae\xee\x82\x7f\x75\x70\x5f\xe0\x3b\xb8\x8b\x10\x00\xe6\x46\x60\xef\xde\xab\x4c\xda\x09\xc9\x8b\x2a\xba\xf5\x2c\xce\xfe\x2c\x30\xa4\x5d\xa6\x61\xdf\xc1\x3f\x88\x92\xf1\xc5\xb1\x9c\x7e\x3f\x08\x3e\xde\x1a\xb8\x0f\xe2\x49\xa6\x22\xef\x62\x60\x13\xb3\x58\xc7\xec\xb2\xc3\xaf\x2f\x86\x65\x74\x1d\x42\xfb\x34\x9c\xcd\x33\xa4\x7e\x7d\x11\x52\xa6\x6a\xda\x8a\xff\x06\xb2\xac\xbf\xbe\x60\xbe\xf2\xac\xdb\xe9\x70\x53\xf3\xa3\x3c\xf9\x2d\xf6\x5f\x9a\xfd\x9d\x66\x52\xc3\xfc\x83\xe2\xc3\x79\x97\xc9\x3a\xb0\x93\x50\x8f\x5c\xd7\x61\xf2\xc9\xa0\x01\x53\x6a\x1b\xd4\x07\xda\x06\xa0\x6a\x2c\x7c\x44\xcb\xda\x1e\x63\xcb\xe7\xf6\xcc\xf0\x29\xc8\xc5\x6d\x37\x24\x45\x7d\xa2\xcd\x15\x46\x2a\x65\xf7\xc8\x26\x10\x32\x39\x6f\xa9\x1c\x1f\x7b\x9c\xc9\xf3\x25\x11\x02\x0f\x55\x40\xaf\xfb\xdb\xdd\x80\x1b\x4a\x78\xc6\xba\x23\x5d\xe5\x67\xd0\x56\x28\x95\xe6\x51\x32\x62\xa2\x30\x83\x75\xf3\xf5\x82\x21\x56\x9b\xce\x49\x20\x0e\x1c\x92\x9e\x86\xeb\x77\x91\x78\xa4\xdd\xe1\xa6\xbe\xd7\xa2\x4d\x81\xd6\x58\x95\x30\x14\xe5\xc7\x5b\xc8\x0a\x85\xba\xd3\xce\x55\x4a\x08\xe2\x90\x23\x91\xb8\xa8\x96\xa4\x46\xd7\xe2\x00\xed\xf7\x21\xa1\xb5\x86\x02\x2d\x42\x6e\x6e\x70\xbb\x41\xa2\x49\x56\x2e\x53\xe1\xc9\x58\x17\x0c\x92\x4f\xfa\x6d\x74\xc1\xc0\x7b\x95\xb5\x8f\x9c\x80\x5d\xbb\x50\x4e\x9b\xe3\xc4\x9a\x92\x67\x53\xb8\x92\xd0\x4c\x7b\xc6\x0a\x38\x33\xd0\xb7\xc2\x35\x8a\x85\xa2\x77\x41\x70\xad\xf5\x4a\xbb\xb2\x96\xdd\xdf\x67\xd1\x5c\xad\x0a\x9b\xc3\xe9\x72\x11\xec\xba\xb5\x69\xa7\x76\x8d\x74\x9c\x06\x65\x4b\x69\x03\x15\x46\xcd\x7b\xd4\xce\x08\x9f\xce\x43\x75\xa2\x5d\xab\x15\x15\x5c\x33\x56\x2b\x22\x0e\x47\xec\xe5\x21\x93\xd4\x9b\x53\x77\xde\xbb\x4b\x97\xf4\xdb\x5f\x4a\x01\x10\x39\x8d\xfa\x8c\x92\x71\x0c\xb4\xcf\x15\x8a\xb4\x7d\xab\xbb\x91\x99\xcb\xb5\xba\xa1\x7e\x0d\xec\x4d\xbf\x20\xec\xaa\x11\x05\x3e\xfd\x9d\x73\x5d\xa6\x0a\x12\x10\x1f\x35\xf8\x04\xc2\xd4\x4e\xf4\x17\xac\xfa\x51\x55\xaf\x73\xcc\x9e\x46\x35\xe8\xf1\x4a\xb0\xce\x10\x9f\x71\x42\x50\x1f\x11\xbf\x15\x09\xdb\x59\xcd\xec\xc2\x65\x5e\xe6\x1c\x8b\xaf\x6d\x53\x9c\x93\x56\x71\x62\xa2\xaf\xa3\xc8\x76\x24\x0b\xd9\xaa\x51\x99\x5d\x6b\xd4\x75\xb4\x22\x90\x1a\x4f\x2e\x34\x6f\x77\x47\xea\x65\x12\x1f\x41\x70\xc8\x1e\x12\xbb\x95\x29\x19\xe4\x2f\xcf\x53\x7a\xd4\xa6\xf4\xf5\x30\xee\xc9\x28\x0e\x7e\x7d\x2b\x4d\xd0\x00\x60\x75\xb2\x7b\x95\x13\x20\xe0\x9c\x16\xd1\x59\x7d\x5a\xa6\x74\x3f\xd9\x06\xf1\x6e\x4f\x20\x89\x90\x09\xf2\xc6\xb4\x63\x00\xa0\x30\x04\x39\xf8\xb6\x9c\x45\x86\x19\xa7\xfa\xbc\xf8\x40\x4d\xe6\x60\x39\x84\x50\xad\x3d\xac\x38\xcd\x2e\x0a\x8a\xa2\x4d\xd8\x61\x50\x36\x30\x47\xcf\xb6\xbe\xb8\xb2\xa9\xc3\x8d\x2b\x59\xc5\x19\x50\x2a\xc7\xcf\xff\x19\xf7\xd4\x53\x2a\xbc\xe9\x98\xbd\x64\x0b\x53\xb1\x8b\xa7\x04\xf5\xc4\x76\x42\xb6\x0b\xf2\x1e\x9e\xeb\x12\xd5\xec\x42\xbd\xdf\xb8\x24\x96\xd7\xbc\x34\x14\x6e\x35\xda\x0b\xf1\x53\xea\x60\xf0\xff\x2e\x00\xee\xbc\xa0\xc6\xdb\x7f\x2a\x70\x0b\x56\x9e\xfb\x6c\xc9\x23\x21\x8f\x33\xdf\xb9\x5f\x46\xc8\x8e\xcf\xc8\xf1\x83\xfa\x86\xd3\xdd\x32\x0c\x21\xc1\xb5\x01\xab\x1f\xb1\xd3\x36\xba\xca\xcf\xdc\xfb\x0e\x3d\xfe\x19\x87\x2f\x10\x38\x93\x7b\x01\xfb\x94\x20\xd1\x31\x5d\x75\x4d\x0d\x8c\xa1\x34\x10\x01\x7b\x8e\x8d\xf5\x7c\x46\x71\x50\x4e\x62\x89\x23\x2c\xaa\x30\x21\x4f\x25\x7b\xe0\x01\x1d\x8b\xf8\xb9\x21\x8d\xfc\x37\x3a\x31\xbe\xd2\x4f\x7d\x61\x79\xf9\x69\x34\xde\xb2\x5b\x61\xfd\x8c\xfb\xd0\x16\x44\xbc\x2e\x9e\x2e\x34\xcc\xe2\xd0\x9b\x83\x15\xf6\x50\x8b\xb1\x01\x3a\x14\x8e\xb1\x21\x87\x96\x1a\x5b\xaa\x81\x42\xc7\xe1\x38\xf8\x6c\xac\x3e\x3c\xfd\x23\xd4\x8e\x3c\xa3\x63\x9e\x02\x69\x3f\x39\x0f\xd4\x0a\xe1\x0c\xa1\x43\x58\xfd\x5d\x2e\x88\xb7\x81\x27\x19\xe9\x8c\x74\x81\x1a\x81\xe6\xb7\x16\x55\xf9\x46\x47\x96\x27\xec\xe5\x69\x7e\x13\xc5\xcc\x72\x12\x30\x60\x0c\x9c\xe7\x44\x33\x81\x73\xf2\x8d\x32\x7d\xb6\xf2\xfc\x6a\x61\x94\xbc\x01\x86\x71\x52\xb7\x64\x01\x7a\x36\x03\x6c\x66\x25\x8d\x01\xd5\xfe\xa1\x0e\xa9\xbb\xde\xf5\xa4\xc8\x3a\x6d\xbb\x35\x91\xb1\x45\x97\x5e\x75\x98\x0c\xa8\x20\xae\xfb\x76\x41\x45\x34\x6c\xbf\x43\x7e\x07\xd8\xf2\x56\x65\x22\x57\x10\xcd\xdb\xc6\x94\x5a\xed\xcb\x5a\x31\x47\x44\xb9\x3a\xd5\x9a\x69\xcd\x09\x98\xc4\xba\x96\xa4\xac\x72\xce\x99\xf2\x08\x81\xef\xd4\x8a\x59\xcc\x74\xea\x32\xa7\x40\x7c\xa5\x33\x92\x09\x16\xd6\xc9\x58\x76\xa8\xdf\x52\xb3\xcb\x7e\xcb\xae\xaa\x1c\x26\xfd\x62\x83\x4a\xed\x79\x89\x5c\x4d\xe5\xd4\x40\xfa\x31\xe3\xbc\x5f\x1b\xc8\xc4\x77\xba\xa3\x35\xf9\x86\x69\xcc\xca\x62\x44\x38\x27\xdc\x1d\x23\x7c\x36\x24\x42\x87\xa8\x2b\xe0\xaa\xea\x85\x93\xec\x26\xaa\x05\xd1\x26\xe2\x40\x80\x87\xa2\x04\xd9\x20\xdf\x17\xe4\x27\x0e\xbe\x75\x5f\x79\xd9\xa6\xea\x49\xb0\x8d\x5b\x28\x4f\x5e\x4b\xc6\x3d\xf1\x13\x26\x38\x31\x48\x15\x26\x79\xb2\x70\x1c\x4c\xd3\xb8\xc4\xeb\xdf\xef\xce\xb7\xf1\x19\x49\x67\x3b\x52\xf8\x0d\x05\xbb\x85\x2f\xe9\x3f\x6f\x7e\xa2\x33\x6b\x4c\xf5\x9a\xc7\x50\xb4\xe7\x84\xb2\xc6\xb0\xe7\x37\x87\x6c\x37\x64\x5a\x96\x79\xbe\xc7\x58\x00\x81\x44\x15\x9b\x00\xc8\xe6\x1a\x0e\xc0\x27\xd6\x6e\x51\x28\xb3\xfd\xdc\xda\x85\x38\x24\x92\xe3\xbb\x80\x19\xef\x6a\x5d\xb0\x89\x5a\x3c\x8f\x57\x52\x71\xe9\x20\x93\x00\xc2\x73\xdb\x0d\xb8\x26\xc3\x90\xfb\x1a\xd9\xeb\x94\x5c\x0d\x35\x49\x17\xad\xf9\x79\xbd\xe6\xb9\x57\x70\x94\xfd\xfb\x17\x2d\xf4\xb8\x21\xb5\xb0\xce\x51\xc5\x7e\x47\x81\x94\xc5\xe7\xc3\x3d\xad\xe4\x45\xf4\x76\xcf\x4b\xb8\x59\x71\x25\xbb\xfa\x76\x80\xab\xd5\xb6\x20\xb7\xda\x0c\x22\x08\x72\x0d\x17\x7e\xa6\x14\x28\x59\xa3\xbf\xb2\x58\x77\xd5\x58\xf5\xc9\x4d\xdf\x35\xfd\x6e\x0d\xb2\x1d\x80\xf8\x9b\xe6\xa6\xa5\xd8\x7c\xd7\x0b\xc2\x34\x21\x98\x22\x00\xd3\x54\x4c\x99\x19\xbe\x0d\x29\x6b\xed\x21\xba\x97\xd9\x30\x1f\xff\x79\x6c\x58\xa9\x9d\xca\x4f\x9d\x8d\x5c\xc7\xfc\xa3\x9a\xa4\xdd\x24\x64\x57\x6e\xa9\x15\xc7\xc5\x46\x11\xcf\x7a\x2e\x19\x37\x33\x88\xe0\x6c\x30\xc9\x57\xc8\x17\x61\x1a\x6b\xae\x8a\x31\xa5\x17\x7a\x6c\x94\xa3\x0e\x67\x40\xea\xfc\xe6\x73\x42\x37\x7c\xbc\x1c\x53\x61\xce\xae\xbd\xd1\xff\x78\x85\xd4\xaf\xe7\x85\xe5\x2b\xa4\x8c\x5c\x54\x7a\x35\xae\x74\xba\xf4\x13\x86\x56\xce\x62\xfd\x98\xfd\xdf\x6e\x71\xf4\x03\x25\xab\x36\xd9\x37\x4c\x4c\xbb\xa7\x15\x5d\xb2\xfd\xe7\xff\x1e\xdb\xbf\xa9\x8d\x30\xde\xf6\xf5\x92\x4c\xfc\x22\xe3\x62\x5d\x29\xde\x2c\x14\x6b\xfc\x56\x3a\xbd\xb6\x00\x8f\x25\xab\x7f\xc1\x59\xfd\x9e\x1f\xbc\xeb\x23\x33\x4a\x6e\xe8\x86\x54\xca\x23\xac\x69\x94\x1b\xf5\x4a\x3b\x3a\x7b\x80\xcd\x47\x5f\xcf\x74\x30\xb1\x9a\x52\x07\x3c\x5a\x8d\xfc\xda\xa2\x94\x99\xe1\xb5\xac\x92\x2d\xb3\x8e\x27\xd9\x85\xe1\x8b\x46\x52\x63\xfb\x6c\x27\x57\xd3\xb6\xe5\xc1\x20\x68\x90\x73\x5b\x18\x75\xa3\x60\xa4\xc0\x35\xb4\x3e\x1d\xe5\x98\xe8\x4a\x9f\x09\x96\xa9\xc2\xd1\x40\xc7\xb2\xc6\x8b\x6b\x83\x10\x93\x79\x9b\x73\x83\xd2\x9b\xca\xcb\xd7\x82\xd1\x4d\x7f\x48\xf9\x63\x25\x0d\x70\x14\x08\x27\xd7\xb3\xca\xe6\x59\x65\x63\xd8\xc6\xcd\x03\xf9\x29\xa0\xaa\x05\x39\x9f\xdc\x51\xc5\xee\x86\xe9\x76\x8e\x15\xc3\x43\xe3\xde\x97\x9d\x6c\x7e\xa3\x4a\xe4\x0d\xb4\xf2\x04\x3a\xb7\x53\x1d\x74\xe9\x8c\x7b\x09\xbf\xc7\xf0\x1d\xdc\x70\x2d\x84\x42\xc3\x0c\x6b\x24\xb4\xa9\x00\x6e\x63\x1d\xb9\x3a\x6e\x50\x10\xcf\x79\x93\xb0\xc0\x43\x88\x35\x3e\x1f\x9b\x56\x80\x05\x3c\xd2\x6f\x94\xd1\x9c\xe3\xc5\x29\x1f\x26\xce\x10\x11\x08\xea\xf8\x85\x38\x38\xa9\x5d\x52\xcb\xbd\xa5\xeb\xe9\x3a\xc8\x78\xf5\x9b\xfe\x05\xfd\xe0\x89\x93\xc4\xaa\xf2\x6f\x85\x36\xce\x50\xb5\xb2\xbb\x64\x48\xd8\x43\x7e\xe7\x03\xa6\x6d\x80\x56\x90\x63\x7c\x50\x8d\x2d\x6b\xb6\x8b\x84\x92\x81\xb1\x96\x28\xd4\x60\x54\x1d\x75\x42\x84\x8c\x40\x8f\x80\x96\xb4\xef\xfc\x0c\x26\xd6\x0d\x93\xf2\x75\xcc\xe8\x90\x48\x78\x01\x74\xc0\xe5\xd2\xef\x2d\x1b\x54\xaa\x7c\x1b\x86\x3b\xae\x55\xe7\x84\x6d\x51\x8d\x7b\xa4\xe0\xf1\x1b\x3f\xbd\x74\xd9\xd4\x44\xb5\x09\x73\xb4\xbf\x87\xa1\x2e\xda\xf7\x16\x4a\x81\x21\x5b\x4e\x6e\xbd\x3b\xe4\x0d\x65\x7c\x45\x63\x19\xbe\xb7\xa7\x13\xe9\x01\x86\x58\x1c\xa4\xfe\xc7\x40\xe4\x14\xa7\x99\xd4\xf7\x47\x89\xec\xcc\x0d\x33\x2c\x04\x5c\x64\x34\xe1\xa8\x30\xbb\x39\x6a\x02\x9a\xbb\xad\x90\xb7\x45\x0e\x74\xba\x84\x2c\xf5\x34\xf0\x95\xce\x6f\x8a\x00\x17\x4e\x64\x5a\xe7\xd0\xa6\x22\xf6\x06\xdc\xc1\xfe\xbc\x54\x43\xd4\xbc\x5f\x91\x81\xdd\x6e\x6b\x71\x72\x35\x7f\xb0\x96\x31\x62\xfd\xde\x42\x52\xa8\x55\x31\xc8\x31\x40\xde\xb8\xa8\xd7\x1b\x91\xaa\xb6\xf0\x55\xf3\x8e\x9e\x43\xb7\x1d\x50\xd1\xc8\xb0\xc9\x5a\x42\xb5\xc4\xee\xba\xf3\x7a\xde\xbd\x41\x09\x9b\x4d\x42\x52\x72\x29\x19\xd7\x75\x48\x04\x14\x8a\x17\xd6\xb7\xce\xcc\xac\xc9\xb7\x5d\x71\xc5\x67\x93\xbc\x02\x95\x4e\x9c\xea\x58\xa7\x86\x44\x08\x78\x40\x95\x69\x6b\xd2\xa5\x51\xce\xe8\xa4\x06\x36\xc5\x00\xc9\x30\x62\x83\xf0\xf4\x30\x23\x08\xbc\xf0\x77\xf5\x4b\x61\x7e\x5f\xa7\x4a\x63\x0f\xdc\x29\xd9\xd7\x84\xd3\xdf\x9e\xe5\x00\xb4\x24\x2b\xb1\xde\xa4\x26\x18\xb5\x6a\x07\x82\x9e\x70\xfc\x52\x34\xf7\xc6\x80\x43\x18\xdf\x96\x8c\x9d\x60\x12\x72\x91\x63\xeb\x89\x79\xd1\x82\x80\x9a\xe4\x79\x8a\xfc\x35\xf8\x0b\x03\x02\xdc\x65\xc1\x7f\x52\xab\x60\x89\x09\xde\x58\x29\xa5\x93\x77\x4d\x82\x4f\xb3\xf2\x4b\xc3\x63\xd2\x61\x7e\xcc\x81\xad\xf6\x83\xf5\x46\x5f\x53\x3f\x3d\x95\xd4\x5b\x0b\x27\x68\xf2\x0f\x79\x97\x09\xac\xc8\xb2\x6f\x8a\x20\xfa\x1c\x0c\x33\x93\x3c\x56\x5d\xf7\xf7\x9a\x43\xd2\x04\x01\xe4\xab\xf8\x7c\x29\x76\x27\xbf\x1b\xc0\xf1\xc6\x19\x87\x18\x4e\x97\x72\x10\xe5\x21\xd0\x81\x72\xac\x14\x88\xee\x23\x26\xd4\x7d\xcf\x1c\x1a\xc3\x79\xf5\x3e\x37\x38\x7f\x6e\xeb\x58\xd8\x49\x34\x80\x1b\x73\xd3\x79\xed\x14\x6c\x58\x07\x4e\x95\x44\x45\x92\x49\x24\x98\x54\x47\xb6\xf6\xcf\xae\xcd\x67\x2f\xc5\xd5\xa7\xff\xe7\xa5\x9f\xbe\x7e\x9e\xb7\xf9\xf6\x85\xeb\xd7\xaf\x5f\x00\x95\xc2\x85\xd1\xb0\x97\xf6\xe1\x63\x97\xf7\xad\xda\xa4\xdb\x2f\xa1\x5b\x59\xab\xda\x6f\xbd\xf8\xac\xfa\xeb\x19\x2e\x8f\x26\xd8\x63\xa3\x99\x69\xd6\x33\x08\xfa\x76\xc2\xa2\x03\xe6\x35\xfc\xb6\xf4\xcd\x23\x6f\x8c\xeb\xda\xa3\xc5\x15\x72\x25\x37\x0d\x80\xe8\xe4\x61\x08\xbf\x2c\xc9\x5a\x76\x86\x6a\xbd\x97\xf0\x3f\xe2\xb3\xe2\x32\xaf\xae\x5c\x5c\xc3\xef\x97\xa9\x95\xd8\x55\x93\x4c\x7f\xe2\xe2\x73\x6a\xe8\x7a\xf7\xda\x5f\xd3\x6b\xa9\xc9\x16\xf5\x85\xe6\x4b\x0e\xab\xa9\x66\x0f\x0d\xe8\x59\xcd\x25\x3f\x0b\xbf\x00\x29\x9f\x17\xc0\xdf\x6d\xed\x74\xf8\xb2\x3f\x11\x46\x3c\xe7\xfd\xde\x0d\x5d\x77\x07\x51\x4e\xcc\x30\x05\xbf\xea\xa7\xe3\x30\x57\x93\x96\x3f\x10\x56\x4e\x57\xff\x1c\xde\x40\x57\x48\x70\x78\x25\x7f\x49\xad\x83\xb4\xba\x23\x64\x0e\x44\x02\x27\x6f\x24\x2a\x7f\x41\x6c\xbb\xe6\x57\x39\xef\xd9\x71\xe5\xc6\x74\xd1\xd3\xda\x91\x95\xe5\x42\x3a\x4f\x1e\x37\x64\x47\x0f\x37\x32\x69\xf8\x8d\xd3\x25\x27\x5b\xd8\x99\xff\xa6\x7a\xe8\x98\x71\xa5\xa5\xc4\x1e\xe9\xda\x1b\xea\x7f\x82\x67\x8d\x23\xc3\xaf\x88\xc3\x97\xe8\x9c\x31\xf7\x6a\x2a\x6b\x49\xa9\xab\xf5\x7f\x36\x5e\x3c\x24\x42\xde\xd4\x22\xb6\x71\x7d\x71\xaf\x8e\x6b\x86\x31\x7e\xdf\x63\xfe\xb4\x0e\x2e\x9a\x15\x64\x5a\x71\xde\x29\xd2\x63\xf5\x22\x21\xce\x80\x44\x1c\x4f\x7a\x41\xcc\x7d\x0a\xd9\x52\x73\x2e\x35\x82\x61\xc4\xa0\x2f\xeb\x06\xb1\xba\x28\xc4\x9d\x9c\xd9\x7f\xa1\x1f\x4c\xad\xb4\x8e\xaf\xbe\x31\x73\xd5\x6a\x3b\x7d\x53\x43\x1d\x45\xbb\x01\x43\x9a\x41\xb5\xc7\xb4\x70\x43\xde\x58\xcd\x30\x16\x91\xe0\x53\x57\xae\x73\x73\xcd\x3c\x71\x09\x6f\x1d\x33\xc2\xd1\x13\xc6\x11\xa4\xb3\xa6\x2a\x98\x52\xba\x20\x9b\xb6\x06\x7d\xbd\xdc\xc8\x8a\x4b\x30\x0a\xa5\xf0\xde\xd3\xf5\xd5\xc2\x00\xdc\xf2\x91\x1d\xa5\xa9\xbc\x8c\x89\x53\xbd\x9f\xba\xf9\x76\x92\x71\xea\xe2\x63\x17\xbc\x19\x51\x6e\x25\xfd\x3e\x38\x02\x7c\x46\x5e\x13\xd5\x91\xbc\xa5\x41\x2f\xbf\xc1\x49\xe0\x3f\xd3\x29\xd1\x75\x35\x6c\x32\x98\x08\x70\x96\xe8\x1a\xce\xc5\x76\x6f\x4e\x09\xbf\xd2\x60\x98\x35\x43\x2c\xc5\x7a\xa6\x09\x00\x87\x3c\xc9\xec\xef\xb9\x74\x9d\x52\x0b\xd6\xe4\xbb\x13\x38\x85\xc5\x39\xbe\x4d\x07\x2f\xc1\x79\x50\x9e\xb0\xc9\xb7\x9b\x57\xb9\xbc\xfc\xb0\x33\xa5\x48\x81\xfe\xd9\xd2\xc3\xf5\x2d\x7b\x8f\x3d\x01\x69\xb6\x2c\x1b\xba\x73\xd3\x4e\x6a\x73\xa1\x47\x5c\x7e\xc9\x41\x0f\x0f\x1f\x6f\x9d\x09\x5e\x46\xa3\x6c\x7e\x1a\xd0\x0a\x8c\xd7\x20\xb4\xaf\x76\x65\xff\x95\x09\x55\x1b\x8c\xe3\xab\x27\x44\x5f\xb4\x69\xe1\xe1\xb1\x1c\x76\x16\xc9\xf3\x51\x37\xdb\xd8\x68\xad\x0f\xf3\xeb\x05\x64\xfa\x1e\x0d\x3b\xa6\xe8\xa0\x49\xe2\xe1\xa6\xef\x98\xd9\x18\xe0\x7d\xc8\xec\x09\xfd\x21\xc8\xa3\x8f\xf1\x51\x4e\x0c\x07\xfd\x48\x1e\xfa\xea\x65\xe1\x7f\xe9\x1b\x7a\x9d\xa3\xff\xad\xad\x73\xf5\x89\x60\xe6\x2f\xaa\x46\x16\x69\x98\x83\x45\x42\x8a\x03\x14\x5b\xf9\xf5\x36\xfc\x0b\x73\xa0\x17\x26\xf2\xd4\xca\x18\x9c\x4c\x48\x7b\xd5\xa1\x93\x2e\x0c\xcb\xfd\xa1\x17\xc1\x8e\x66\xc5\xa0\x1a\x88\xe7\x28\xc1\x9a\x34\x9d\xd6\x4e\xbd\x14\x6b\xdc\x03\x8a\xc0\xff\x86\x8e\xde\x23\xa8\x66\xc2\x0c\x38\x95\x2d\x1d\xf8\xb2\xad\xf8\x22\x14\xf6\xff\xde\x8f\x5e\xa7\x3f\x30\xa7\x8a\x2c\x03\xe9\xa7\x55\xd1\x0b\x8b\x74\x3e\x97\x56\x38\xaf\x8b\xfe\x95\x12\x07\xe1\xbf\xe5\xc3\x47\x48\xc5\xb6\xa6\x65\x77\x98\x6c\xa8\x2b\xfb\x4b\xa5\xeb\x6e\x83\x40\x79\x68\x7e\x1e\x0c\x53\x33\x8e\x8e\x96\xae\x0f\xa2\xce\x98\x0a\x98\x21\xea\x7a\x20\x3d\x0e\x4d\x9b\x65\x71\x75\xba\x5d\x02\xca\xa1\x35\x7b\x8c\xe2\x74\xbd\xfc\x2e\xf1\xb9\x42\x97\xad\xc5\xc0\x20\xc6\x9e\x9e\x2d\x94\x72\x1e\x8e\xed\x5a\x11\xf4\xdb\xc0\xdd\x3b\xd9\x6f\x34\x66\x54\x7f\x38\xc7\x68\x3d\x0b\xdf\x80\x12\x96\x8a\x83\xd5\x47\x1f\x97\x79\x9c\x95\x98\xa6\x3b\x1e\x0c\xf3\xee\xa8\x53\xb6\x9c\xed\x8a\xbe\x17\xd3\x12\x93\x8e\xc5\xe4\xbe\x13\xf7\xf2\xcd\xb8\x93\xf4\x63\x60\x62\x51\x9d\x5f\xc4\xa3\x3e\xe8\xc4\xca\xa4\xdf\x8d\xaf\x6f\x25\x65\xbc\x95\x14\x31\x90\xab\x38\xdb\x56\xa3\x5f\x4b\xbb\x76\xf0\x32\xd9\x74\x33\xd7\x22\x13\x23\x36\xc9\x42\x29\x55\xad\x15\x87\x0b\x1d\x1b\x33\x4b\x36\xa6\x78\xc2\xd1\xcf\x1b\x69\xa0\x16\x0d\x63\xb8\x57\xb1\x42\x24\xdf\x97\xe1\x7f\xcd\x37\x4d\xa5\x5f\xa5\xff\x9a\xef\xd7\x87\xe8\x3d\x85\x6a\x45\x7c\xc4\x1f\x4a\xf0\x83\xb7\x61\x60\x0f\xa1\xe5\xa6\x23\xb4\x8b\xe2\xa1\xe6\xd5\x98\xfe\x20\x4d\xa3\x58\x66\xab\xf8\x3d\x46\x15\x50\xab\x15\x00\x71\x37\x85\xdf\x93\x85\x53\x06\x5e\x81\x18\x48\x26\x41\xdd\x17\x6e\x7e\xda\x3d\x00\xf1\x94\xad\x47\xee\x7a\xe3\xe0\xa8\x8c\x13\x1f\xb2\x57\xfe\x1e\x6a\xb5\x82\x85\x58\x98\x74\x59\xe2\x02\xaf\x8b\xbc\xba\x26\x76\x97\xec\x57\xfa\x2a\xfe\xc7\x2e\x99\x40\x9a\x1c\xfa\xd8\x00\xca\x2a\x0b\xe1\x6f\xe5\x3d\xf6\x44\x09\x5f\x8c\x36\x6a\x01\xbf\xba\x1a\x69\x1d\x93\xe0\x83\x30\xb8\xa4\x11\x0f\x04\x71\x14\x49\x25\xba\xf3\x45\xfc\x33\xbe\xbc\x95\x15\xf1\xcf\xe8\x9b\xdb\x14\x98\x0f\xfe\x21\xbe\xc8\x1f\x6a\x2d\xe8\xb2\x79\x2c\xc8\xd3\xa6\xdf\x75\x7c\x3d\xeb\xf5\x62\x9a\x33\xc6\xa2\x7f\xa0\xd1\x06\x30\x42\x85\xaf\x7a\x42\xad\xf8\x62\x1e\xdf\xc8\x47\xf1\xf5\xa4\x5f\x02\x16\xd0\x65\x3a\x5f\xae\xcf\xa2\xe9\xb7\x5e\x8f\x79\xd5\x34\x41\x37\xe6\x06\x50\xb0\xf5\xc6\x99\xda\x0b\x6f\x27\x3d\x48\xe9\x7a\x43\x97\xa1\x36\xc8\xde\xa0\x3a\x64\x13\x9d\x62\x39\x8c\x0c\x16\xf3\x89\x66\xa1\xf9\xf5\x3e\xbc\x92\x62\xed\xa2\xfe\x57\x14\xbd\x99\x0f\x37\xaf\x60\x85\x73\xca\x7b\xcd\x99\x80\x7c\xfd\x68\xd8\x56\x88\xfd\x4c\xfd\x59\xd3\xf9\x1e\x2b\xdc\x66\xb5\xa4\xd9\x8b\x47\x5a\x3d\xf3\x76\x70\x90\x03\x2f\xef\x76\x6c\x2b\x94\x78\x99\xb7\x5b\x3a\xeb\x1e\x16\x9a\xf7\xc2\x0e\x02\x25\x90\xe7\x77\x28\x81\x1d\x89\xda\xdd\xba\x60\x3e\x8b\x06\x69\x3e\x00\xba\xf8\x07\x74\xf5\x9e\x46\x59\xff\x5a\x06\x8e\x04\xf9\x76\x8a\x6e\xa5\x54\x72\xf9\x61\x85\xd5\xb6\xa5\x27\xf7\x43\xa8\x9f\x0e\x73\x71\xfe\xfb\xa8\x4c\x93\x6d\x13\xfa\x88\xa1\x49\x90\x1a\x0e\x8a\x6a\xb3\xbd\xb7\xa0\xea\xcf\xe8\x8f\xc0\x86\xc3\x29\x37\x58\xa5\x80\xb7\x48\x38\x08\x53\xd5\xf6\x4f\x3c\x04\x2a\x48\xe5\x1a\x76\xf1\x8a\xc2\x31\x14\x30\x4e\x83\x62\x5d\x86\x58\xa9\x7d\x60\xcb\x25\x83\x48\xb2\x25\x4c\x0d\x35\x31\xac\xf2\x33\x1b\xe3\xe3\x10\xd1\x71\xbb\xce\xcd\x3b\xc1\x5b\x07\xde\xc2\x10\xab\xd6\x72\x33\x60\xd1\x0f\xbd\x62\xb3\xac\xbf\x08\x44\xce\x35\x77\x64\x1c\xd9\xf8\x65\xea\xe3\xa4\x6a\x35\x2e\x95\x64\x20\x74\x33\x5c\x13\x9f\x3f\x17\x51\x66\x5c\xa4\xc4\xe8\x3a\x8d\x9d\x1d\x1c\x74\xc3\x3b\x78\x39\x9c\xa7\x18\xee\x43\xa3\x8c\xd9\xd2\x67\x18\xaf\x50\x37\xfd\xd4\xa9\x8b\x17\xce\xb4\x30\x61\xf1\xb7\xf6\x54\x17\xb5\xb1\x1d\xa4\x84\x70\xe2\xd8\x10\xc9\xad\xfb\x7e\xe5\xf9\x6f\xaf\x56\x33\xfb\xef\xe3\xee\xed\x76\x6e\x76\x3d\x9a\x06\x71\x14\x39\x73\xdd\x26\xbe\x6d\x71\x81\x6d\x47\x73\xc9\x4e\xe6\xea\x71\xaf\xe8\x63\xbe\x7a\x52\x09\x30\x33\x85\x2e\x9f\xed\xe6\x56\xff\x57\x57\x81\xfa\x15\x8b\x7f\x5b\x89\xc2\xc8\x61\x80\x5a\x5a\x55\x7c\x89\x9f\x74\x03\xe2\xf7\x15\xa6\x0d\xb5\x44\xe0\xc0\xc0\x9b\x7c\xb5\x41\xbc\x53\xf6\x0a\x8b\x60\xfe\x19\xb6\x0c\xe8\x2c\xa7\x01\xb7\x50\x53\x91\x3b\x34\x65\xad\xc2\x48\x2b\x6e\x72\xcd\x5a\x58\x2f\x64\xa1\x8b\x16\xf7\x07\xc2\xd0\x54\x34\x24\x08\xa9\xc1\x11\x64\xfd\x90\xb0\x7b\xf2\x92\xd2\x21\xee\x6e\x5d\x27\x0a\xf4\xa0\xbd\x30\xd7\x39\x2a\x66\xcb\xf4\x33\xc2\x4d\xc0\x2a\x4e\xb5\x91\xe6\xb4\xba\xf1\x7a\xec\xaa\xb0\x9f\xa3\xa5\xc2\xda\xaf\xe6\xa2\x3a\x96\x6b\x4f\xf2\x93\x75\x23\xcb\x23\x44\x66\x34\xc4\x0b\xea\xf0\xaf\x28\x03\x3d\xc1\xef\x07\x50\x66\x8c\x98\x07\x12\x04\x3a\x81\x22\x8d\x5e\x0b\x43\xef\xee\x6b\x3f\x4a\x02\xf4\x7b\x73\xcf\xbd\xd4\xf6\x1b\x66\xd7\xd0\x00\xe5\x37\x39\xf0\x9b\x34\x8f\xed\xb9\x66\x9a\x8e\x0d\x49\x9e\xf4\xcf\xda\x13\xce\x63\x8c\xcc\xef\x0a\xe2\x3b\x29\x94\x0d\xb8\x2f\xe3\x60\xf9\x47\xf2\xe5\xf3\x53\xfb\xe8\x5f\x15\xf3\x7c\x2d\xd5\xba\xa8\xa9\x4e\xfe\x6d\x7e\x66\x46\xcf\xd8\x33\x31\x34\x41\x43\x5d\x65\xaa\x8a\x92\x0d\x62\x91\xa1\xb5\x96\xc9\xa9\xc6\x2e\x3a\xee\x8e\xef\x1b\xd8\x3f\x57\x7c\xd7\x5f\x4d\x3f\xbf\x1e\x60\x39\x09\x4b\x03\xaa\xc1\x43\x8a\x88\xd5\x6c\xfd\x53\x9e\x71\x46\x8e\xff\x55\x39\x49\xab\xf8\x77\x3e\x00\x50\x22\x50\x52\x5d\xfa\x0c\xc2\x0a\x17\xad\x5b\x93\xd5\xe6\xd8\x05\x01\x2b\x04\x0b\xd6\xce\xe9\xe0\x14\x09\xf0\xf9\xa7\xa6\x12\x6e\x5e\x75\x7b\x19\xaf\x43\x0a\x01\xa2\x4b\x26\xff\x4c\x1c\xcc\x3d\x31\xe7\x7a\x63\x4d\xfe\xde\x2d\x5e\x2d\xaa\x2a\x9a\xf7\x57\x89\x92\x46\x81\x1e\xab\x6f\x90\x0b\x19\xda\x44\xc9\x53\xed\x8d\x34\x23\x9f\x88\xe5\x4b\x56\xf8\x65\xec\x18\x2f\x9f\x90\xf3\xbe\x7d\x57\xb5\x2c\x49\x7a\x97\x98\x63\x2d\xbc\xcb\x05\xc1\x4f\x81\xce\x7f\xcf\x1b\xad\x7b\x34\x81\x61\x19\x73\xf0\x20\x9f\x3e\x59\x10\xfe\x30\x7f\xb7\x76\x1a\x8e\x85\x8a\x7d\x4c\x44\x74\x6e\x38\x4a\x21\x66\xdf\x27\x08\x32\xd3\x87\x65\x52\xc7\xf3\x1e\x1f\x1a\x0c\x3b\x66\x46\x96\x38\xed\x60\x5e\x79\x1a\x62\x11\x47\x4b\x2d\x10\xd1\x15\x75\xe9\xe1\x63\x37\x30\x07\xcb\x47\xe1\x49\xde\xd1\x5e\x58\x0d\xe5\x0d\x6b\x8e\x09\xa0\x38\x08\x9e\x1d\x56\xd8\xb0\xfa\x6d\x31\xbe\x19\x60\xb5\xe0\x38\x31\x4c\x90\x57\xd3\x07\x6a\xe4\xd9\xbf\x58\xaf\x61\x73\xa8\x60\x51\xd1\x82\x11\xbb\xc5\x88\x63\xfa\x26\x9c\x36\xf5\xd4\x65\xed\x50\xf6\xad\x87\xca\x01\x47\x65\xd7\xb0\xbb\x68\x0d\x60\x77\x43\x51\x4f\x53\x1f\xbf\x3a\x2d\xda\xba\x2d\xa2\x5e\x75\x6f\x62\x85\x3e\x5f\xc5\x7b\x5b\x71\x81\x72\x20\x07\x72\x1b\x5f\xa7\xcb\x56\xad\x6c\xd8\x8a\xc5\x0d\x5a\x0e\x44\x6e\x57\x3a\x8d\x2f\x8a\xbc\x33\xef\x4e\x72\x4c\xcd\x00\xdb\x0a\xec\xd4\x08\x0d\x6c\x7c\xb2\x39\x3f\x9c\x2d\xaf\x90\xa2\xae\x25\x29\x57\xed\x45\x86\xcf\x32\xe8\x47\x4a\x28\x61\xdf\x27\x22\xe6\x59\xfd\xc5\x12\x4b\xf3\x76\xbe\xeb\xf8\xe1\xcb\xe3\xfb\x06\x04\x2f\x4c\x38\x3c\x15\x82\x4b\xfa\xfe\x2b\xf7\x2b\x0c\x00\x2b\xec\xb7\x72\xbd\xf4\x39\xb4\x28\x40\x22\x02\x4a\x9d\xc5\x44\x9e\x28\xd8\x8a\x3b\xd5\xa9\x66\xcc\x2e\xc2\x18\x10\xae\x43\x57\xd8\xd3\x58\x50\x9c\xc4\x77\x63\xde\x8a\xd0\xde\xc9\xed\x4a\xa2\x7f\x9e\x82\x68\x3f\x30\x0c\x64\x88\x98\x79\x31\x15\x9a\x76\x35\xb1\x0b\xf2\xd5\xac\xa0\x2e\x5c\x19\x69\x19\x64\x68\x06\x0d\xf8\x9c\x84\xbd\x69\x56\x9e\x83\x83\x6e\x38\xba\xda\xe1\xd6\xed\x22\xfa\x79\x1f\x35\xe8\xe0\x84\x44\x2d\x39\x21\x83\xf4\x53\x61\x7d\xe2\x1e\x9a\x69\x50\x6d\xbe\x53\x37\x86\x05\x17\xdb\x90\x4e\xcc\x0b\x3e\xab\x26\x36\x28\x49\x18\xd0\x94\x18\xf6\x26\xc2\xdc\x95\xa8\x9b\x14\x5b\xeb\x79\x32\xc4\xba\xe5\x14\xfc\x79\x44\xc2\xb6\x57\xf8\x59\xf1\x0e\x68\x35\x6c\x08\xf3\x21\xdd\x79\xd2\xcf\xde\x49\xb4\x1e\x2c\x28\x72\xaf\xa2\x1a\x86\x2a\x19\x90\x67\x5d\xeb\xbc\x7e\x1b\x2c\x09\x86\xda\x83\xcd\x10\x07\xc3\xb1\x80\x20\x65\x91\x85\x7e\x02\x0e\x8d\xa4\x0b\x0a\x86\xd6\x44\xdb\x79\x3f\xc3\xd8\xae\xcf\x19\x69\xe9\xe9\x4e\xaa\x87\xd1\x46\x36\x2c\xca\xf6\x20\xa1\xa4\x7d\xa8\x89\x44\x61\x12\x4b\xbe\xeb\xcf\x5e\xc9\xf7\xa8\xcc\x4b\x90\xf3\x3e\x66\x5d\xc0\x0c\x73\x66\xdb\xd3\x46\x27\x01\x05\x1d\x59\x47\x27\x6f\x17\xde\x04\xe0\xfa\x60\x1a\xe6\x83\x74\x98\x58\xd5\xa2\xf4\xa0\x97\xc3\xdd\x50\x90\xb6\x8d\x0e\x0b\xa3\xc2\x0c\x09\x64\x24\x46\xa1\xcb\x9c\x02\xcb\x6d\xf8\xd2\xed\x46\xc7\xa1\x95\xb5\xb3\xfe\x46\x8e\x75\x8d\x1e\xa0\x36\x7d\x22\x9c\xa2\x15\xc3\x8a\x25\xb2\xad\xfc\x81\xbf\x28\x1e\x6f\x1d\x2d\xe8\xeb\x2f\x35\x47\x9c\x2b\xd8\x15\xad\x82\x26\x14\xa7\x85\x17\x28\x09\xae\x31\xd6\xd1\xde\x69\xda\xf4\x54\xbc\x45\xed\x57\xa2\xec\xfb\x49\x43\x0c\x25\xc8\x33\xa2\x9f\xef\x83\x41\x85\x0a\x03\x25\x9f\xbc\x5e\x52\xa3\x76\xe0\x8f\x68\x9c\x4f\x30\x3f\xa0\x3c\x94\x9a\x09\xc0\xed\xdb\x90\x98\xdd\x39\x0b\xac\x4b\x5f\x89\xcc\x20\xcb\xaa\xd9\x2f\x3f\xa7\x15\xaf\x54\xd4\xcb\xab\xdd\x0e\x39\x47\xf8\xfb\xd5\x91\x47\xef\x4b\xc9\x67\x8f\x1d\x25\xc6\x4e\x53\x27\x4c\xca\x1f\x07\x34\x86\xef\x3a\x5f\x4c\xae\x66\x6f\x85\x9c\x66\x38\x6e\x18\x48\xd0\xdc\x86\x8e\xe8\x54\x5f\x57\xb3\xcd\xef\x78\xb0\xeb\xe7\xe1\x0e\xfb\xfe\xb4\x42\x2f\x5e\xd8\xb2\x82\xb6\x93\x66\x74\x60\x87\x28\xae\x67\xb2\x0e\x9a\x75\x8a\x44\x72\x15\xea\x31\x1c\xf5\x75\xc4\x15\x9a\x42\x44\x23\x48\x28\x06\x59\x02\xd7\xb3\x7e\xb7\x9d\x53\x09\x47\x4f\x24\x38\x11\xf1\x31\x9e\x1e\xfe\xa7\xaf\xfc\xbc\xdc\x5a\x38\x9a\x34\x36\x2c\x18\x46\xb5\xf4\x72\x93\x63\x46\x90\x46\x57\x34\xf4\xec\x32\xd3\x32\x8f\x9e\xf5\xd1\xab\x3b\xb1\x8a\xe7\xa2\x1e\xdb\x37\xbf\xa5\xf3\x6d\xd9\xd0\xa3\x40\xc4\xbe\x78\x55\x26\x44\x0c\xaf\x7d\xba\xd2\xbc\x22\x58\xee\x5b\x4f\xe8\xc7\xcf\xfb\x92\x44\x6d\x3d\x68\x51\x86\x18\xdf\xec\x5a\x5a\x04\x34\xe7\x26\xd5\x14\xe4\x5e\x7d\x17\x17\x34\x6b\x62\x68\xa1\xc4\xc6\xe2\x09\x6a\x5b\x35\xa3\x12\xcb\xd5\x50\xc8\xba\xc1\xa2\xb4\xf4\x92\x91\x9f\xee\x6f\x12\x33\xa8\x5d\x2f\x92\x5e\x2f\xb6\xdc\xa1\xfa\x67\x27\x1f\x76\x8b\xb8\x04\x17\xa8\x5e\x5e\x94\xe8\x74\x81\xa9\x7d\x97\x0c\x68\x36\xf3\xca\xca\x23\xc6\x5b\xc9\xb5\xb4\xd9\x1d\x43\x6e\x61\x33\x2b\xdb\x9b\x1d\x5e\x7a\x20\xc0\x5e\x9d\xc4\x03\xca\x56\x00\xba\x82\x63\x3c\x1a\xaa\x40\xdd\x48\xd3\x40\x2f\xd5\x30\x83\x8c\x1a\xe7\x61\x61\xa4\xda\xb0\x61\x23\x80\x18\xbf\x66\x00\x13\x32\x12\x8b\xf3\x62\x09\xc3\xb4\xb8\xd1\xef\x80\xc5\xb6\x5d\x14\x5b\xe4\xd4\xad\x51\x15\xb3\x15\x8e\x3b\x62\xfc\xf5\x5f\x5b\xaa\xe1\xb3\x54\x48\x2d\x7b\x27\x45\x97\xe3\xe2\xeb\x23\x48\x88\x28\x92\xdf\xa1\x22\xef\xbb\x84\x8e\x88\x51\xb1\xde\xe0\x4e\xb2\x09\xad\x01\x00\x00\x7a\x66\xe1\xc2\xbc\x98\x8a\x80\xa9\xef\x89\xbb\x70\x0e\x3f\x27\x38\x77\x52\x76\x4a\x27\xe2\x69\xc3\x71\x88\x78\x0a\x71\x26\x82\xdd\x72\x50\x14\x7c\x25\x66\x63\xc7\x06\x93\x2e\x4d\xd2\xa2\x0e\x0d\xee\x04\xb8\x0d\x22\xb5\xe8\x95\x7e\x5e\x7b\x84\xec\x53\x40\x8e\xd0\xd9\x8a\xf2\xb0\xfb\xb4\x63\xaa\x7e\x3a\xb5\xb9\x72\xa7\x28\x40\x6a\xa2\x74\xd0\x70\xa6\x72\x77\xd2\xbc\x1a\xd8\xc5\x42\x88\x43\xf4\xd0\x74\x0f\x0e\x6f\x0a\xf8\x41\x72\xb9\xe0\x98\x30\x54\xeb\x28\xb3\x6d\xb4\x2a\xdc\x44\x25\x2b\x27\x55\x41\x6d\x02\xea\x7c\xd0\x4c\x47\x52\x98\x0e\x8a\xbb\xed\x96\xc5\x95\xbc\x73\x67\x34\x04\x6f\xe5\xf6\x66\x3e\xcc\x47\x65\xd6\x4f\x29\x14\x98\xf2\xcb\x03\xcb\xf8\x43\xfd\x43\x11\xe8\xb5\xad\xe4\xca\xe1\x8d\xf6\x88\x0a\x01\xda\x8e\x93\x06\x9f\x93\xca\xa4\x5b\x1b\xc3\xd2\xd1\x28\x62\x47\x45\x09\x44\x8f\x09\x2e\x11\x1d\x72\x1a\x32\x22\x89\xd3\x91\xde\xa9\xcd\x1b\x30\x13\x23\xf1\x18\xf9\x7a\x99\xa8\x95\xb3\xa4\x68\xfa\x85\x17\x26\xfb\x0f\x72\xac\x97\xdd\xee\xa9\xdb\x1e\x0d\xda\x70\xe2\x85\x13\xd4\x4d\x14\x45\x04\x72\x92\x29\xaa\xbe\x04\xbd\x0d\x3d\xc6\xc7\xce\x9a\xa9\x66\x67\xf0\x30\xb8\x3f\x54\x5e\xd1\x7d\x21\x35\xdf\x1e\x32\x70\x33\xc9\x67\x37\x8d\xa0\x2f\x69\x2b\x4d\x06\xa7\xbf\xa2\x43\x0a\x2d\x15\xe3\xe1\x38\x81\x93\xd5\x4a\xa6\x49\xc5\x01\x10\xe4\x36\x74\xec\x18\x78\x1b\x57\x29\x47\xcd\xba\xbd\x94\x39\xa9\x86\xb8\x91\x6f\x37\x3c\x86\xb5\x40\x71\xda\x5d\x42\xab\x2e\x34\x89\x17\x53\x4d\x1a\x86\x60\x97\xc0\x6e\xf8\x32\xbe\xe1\xee\xf3\xf5\x7f\x4a\x3b\x65\x61\x4d\x89\x9c\x80\xfd\xd4\xa3\xad\xe7\x79\x59\x94\x43\x35\xa4\x12\x89\x31\x54\x15\x2f\xfd\xd3\xc6\x5b\x66\x29\x5b\xd7\x3c\xd1\xee\xbf\x26\x56\xcc\x91\xb1\xd5\x80\xcd\xef\x0a\x75\x6e\xc8\xf4\xe2\xaa\xc6\x26\xe5\x98\x99\x43\xc2\x36\x94\x23\x57\x6b\x1c\x8e\x3a\xe5\x48\xe1\xd8\xd5\x16\x4a\x55\x84\x51\x47\x70\x33\xfe\xc9\x25\x35\xc4\xa2\x21\x9b\x21\x74\xf9\x58\x9d\xa4\xb3\x95\x7e\xcb\xf5\xbd\x0a\x63\x2c\x1c\xf4\x34\x2b\xf4\x47\x1b\x0c\x73\xc5\x9d\x01\x5f\xb7\x3e\xea\x5c\x4d\x4b\xc8\xa0\xb8\xd5\xc6\x10\x03\x31\xee\x9f\x81\xc2\x5c\x98\x53\xc0\x01\xc8\x08\xef\x49\xa5\xf0\xc4\xfa\x73\x18\xc3\x29\x50\xc3\x23\x87\x7f\x77\xc5\x34\xc5\x7c\x6d\xa7\x65\x82\x11\x2b\x0d\xeb\xe7\x9c\xf3\x38\xab\x0c\x49\xd7\xdc\x1f\xd2\x15\x9f\x55\x93\x72\x5d\xb9\x05\x99\x96\x48\x3d\xc4\xe8\x13\xa4\xbc\x45\x28\xc7\xb5\x4a\x3a\x2a\x34\xcc\x39\xbb\x2a\xd2\x85\x02\x76\xc4\x60\x76\x6e\x74\x30\x5a\xa3\xf2\x6b\xd9\xb1\x75\xf9\xd6\x9c\xc2\x7f\x57\xdd\x15\xaa\xde\xd4\xc8\x44\xbc\x29\x82\xe5\x03\xcc\xb8\x01\xce\x5e\x4f\x1c\x6d\x9c\x51\x81\x3e\xd0\x7c\x6c\x78\x4c\xa2\x97\x66\xd0\x4f\x35\xef\x84\x78\x09\x05\x21\xcd\x22\xfc\xf0\xd5\x50\xb7\x41\x82\xe8\x50\xf6\x13\xc5\x75\x29\xea\x0f\xb6\xe4\xf4\xd6\x1b\xe1\xce\x8e\x1e\x51\x9d\xe7\x5d\x4a\x18\xbb\x8b\xee\x9d\xab\x1e\x0e\x6f\x81\x9d\x77\x8f\x2a\x27\x15\xae\x3d\x08\xd4\xea\xc8\x11\x48\xbf\x4b\x99\x9d\xb6\x93\x7e\x02\xb5\x04\x12\x8c\x08\x5d\xa6\x19\x6e\x74\x26\x01\x54\xcb\xc3\x82\xa3\xaf\xf1\xf0\x6a\x2c\x2a\xee\x8a\xf5\xba\xab\x0d\x3c\xe1\x2f\x5a\x84\xee\xca\x90\x6d\xf1\xce\x74\xb3\x65\xa5\xdb\xa8\x19\x8b\x58\x61\x65\x34\x35\xe1\xaa\xa1\x6e\xb9\xd0\x19\xff\x88\x21\xf9\xc3\x74\x13\xb4\xfd\x94\x3b\x13\x12\x66\xd7\x4b\x9a\x37\x9c\xd2\x9d\xa0\x56\x1a\x85\x06\xe2\x79\x1f\x8a\x75\xbf\x27\x16\x45\xc1\x42\x32\xd8\x92\x42\x92\x8c\x76\xc0\x02\x20\x5b\xb9\x56\x48\x96\xde\xe2\xc1\x97\x45\x4f\xf1\x09\xa3\xd6\x86\x63\xfb\x3e\x75\xb5\x78\x20\xdc\xef\x92\x45\x11\x7b\xff\x8a\xc0\xd6\xd9\x02\xe0\x23\x05\x60\x7f\xa8\x28\xc2\xce\x06\x71\x89\xe1\x7b\xf9\x66\xa6\x75\x61\x7f\xc0\xb7\x35\x05\x49\x84\x33\x71\x8e\xeb\xc6\x01\x33\xfa\x20\x29\x8a\xeb\x4a\x14\x17\xd1\x31\x6c\x1d\xd4\x3e\x74\x5c\xe1\x9d\xd2\x13\x4a\xcf\x27\x6b\x47\xe4\xbb\x43\x5f\xc8\x60\x99\x2d\x7e\x36\x24\xd1\x10\x29\x11\xf9\xeb\xef\x59\x4a\x80\xaf\xc7\xdc\xcd\x4c\xe7\xbf\xd2\x9a\x1b\x5f\x99\x58\xd3\xdd\xd8\x8b\xb1\x2f\xa9\x5e\xe4\x6d\xc1\x14\x3c\x42\x56\xb4\xc5\x03\x22\x2b\xe3\x22\xa0\x69\xd0\x45\x8d\xc5\x70\xf4\xd0\xbe\xb2\x56\xf7\x85\x1b\x3d\x65\x92\x63\x0d\x0c\xe0\xd6\x0d\x69\x6c\xda\x94\x2a\xa0\x29\xdd\x9c\x74\x7f\xd1\x13\xcc\xfc\x72\x6a\xa0\x91\x09\x07\xf5\x3b\xb3\x65\xdb\x83\x7c\x58\xb6\x19\x4c\x4f\x37\x23\x7e\x7d\x52\x05\xaa\xfe\xc6\xa8\xf4\x95\x00\xdf\xe4\x53\x15\x04\xae\x80\x97\xc9\x93\x55\xa1\x8c\x07\x5c\xec\x45\xcc\x0e\x28\x42\xcd\x88\x71\x18\xd2\xd7\x8c\x31\x5f\x99\x29\x61\x3e\xbf\xde\x67\x13\xe7\x17\xb6\xdc\x06\xa6\x6b\x74\xb0\xb9\xd1\x26\x02\x00\xfc\x9a\x94\x22\xf4\xc8\x8c\x38\x42\xc5\x78\x34\x1c\x00\x75\xc2\x04\x81\xc4\xb9\x37\x9a\x77\x7c\xa3\x27\xe5\x69\x16\x19\x51\xa4\xbf\x32\x5d\x17\xe7\xfc\xf1\x12\x87\x4f\xa8\x9a\x8e\xdc\x1b\xe4\xd2\xc6\xf0\x9c\x15\x9e\x89\xb3\xb9\x25\x49\x0f\x9b\x77\xca\x77\x16\xf6\x58\x82\x54\x42\x47\xb6\xe4\x94\x08\xce\xa8\x4c\x51\x1d\xf6\x0f\x65\x0c\xc7\x21\x94\x5e\xbe\xec\x45\x3e\xdb\x2d\x09\x23\x4e\x44\xf8\x57\xcd\x9b\x5f\x96\xed\x5f\x9d\x61\xd1\xc2\x64\x91\x0e\x67\xf1\x95\xcf\x4c\x60\x08\xa2\x75\x68\x43\x06\x02\xfb\x4a\x26\x00\x3f\x04\x03\x94\xf0\x97\x05\xf1\x49\x64\x7f\x46\x8a\x7f\x5a\x1e\xa7\x41\xfd\x74\xcc\x43\x36\x78\x06\xd3\x8f\x72\xf1\xf4\x65\x81\x93\x32\x35\xb8\x9e\x94\x4a\x48\x29\x2c\xd3\xac\xb8\x6b\xfe\x49\x49\x8f\xb0\xbb\x8f\xeb\xd6\x47\xbd\x18\x53\x4f\xbd\x12\x49\x94\x23\x34\xac\x33\x51\x3d\x2d\x83\x47\xa4\xfc\x24\x44\xcc\x99\xcd\xa3\xc1\xb1\xc6\x51\x38\x43\x2a\x31\x78\x9e\xa9\x4f\x77\x13\x07\x44\x5f\x64\xd5\x78\xfa\x92\xf6\x41\x20\xc3\x74\xb1\x32\xd1\xda\x8c\x7f\x5e\x10\x15\x27\xf6\xed\x24\x75\x59\xc4\x9f\x88\x3e\x4e\x7e\xaa\xe5\x7d\xea\x99\x56\xe8\xfb\x56\x0e\xf1\x94\x7f\x26\xac\xc7\xdf\x06\x58\x1a\xfe\x1e\x11\x09\xfe\x86\xf6\xb0\x6e\xdf\x80\x06\xd9\xbf\xf0\x20\x2f\xbe\x2e\xdb\x68\xf6\x26\xd4\xb2\xa2\x42\x13\x48\xaf\x42\x7d\x6c\x74\x1b\xe1\x1f\x2d\x7b\x7f\x97\x52\x84\xcf\xc8\xe3\xc9\x0c\x51\xab\xb5\xc2\x69\x37\x27\x1c\x23\x32\xab\x74\xb9\x0a\x4a\xb2\x56\x41\x49\xac\x49\x2b\x0e\xab\x9f\x0e\x34\x31\xb8\x4d\xd6\x65\x88\x3d\xd4\xe9\x32\xa6\x78\x6b\x0f\x3d\xab\x17\x96\x96\x69\x26\x47\x2d\x0d\x03\x20\xbb\x60\xa1\xd3\xea\x23\xd2\x25\x3a\x19\xdb\x4d\x02\xc3\xa6\x24\x63\x62\x14\x75\x01\x17\x5f\x5f\xd6\x32\x29\xcb\x61\xb6\x3e\x02\x57\x77\x17\x46\x76\xd8\x25\xee\x01\x42\xcb\xb8\xd6\xbc\x18\x71\xd6\xb3\x7f\x23\x1c\x87\x98\x79\xa5\x9e\x0a\xb6\xd4\x83\xfd\x1b\x9e\xd2\xa1\x89\x80\x3a\x31\x3a\x22\x64\x62\xc7\xcd\x23\x51\xc1\xd6\x7a\xa5\xd6\x45\xbb\x44\xf7\xb4\x60\xc7\x45\x5c\x1b\x75\xde\x06\xee\xb0\x5d\x24\x6b\x3f\x29\xe2\x57\xba\xf1\xa5\x57\xf8\x7b\xb1\x5d\x0e\xda\x64\x42\x5e\xfe\x1a\xe3\x4b\x3f\xb9\xfc\x86\xe8\x48\x4f\x09\xb2\xc3\xaa\x75\xfa\x3f\xe2\x9b\x82\x6f\x17\x34\xf7\xa5\xf7\x41\x71\x81\x9c\x0a\x09\x25\x3e\x37\xe0\x91\xcd\xa9\xfb\xfa\xe1\x2a\x9c\x19\xec\xb9\x92\x3c\xe1\x88\x13\x27\x14\x93\xf3\x70\xae\x23\xd7\xdf\xaf\x84\xbf\xa4\x98\x90\x9e\xcc\xdc\xab\xf7\x68\x1a\x68\x45\x26\x91\xfd\x13\xce\x65\xa8\x9d\xda\xc6\xc8\xe0\x4e\xac\xfb\x22\x25\x69\xbc\x4b\x0b\x82\x2a\x4a\xe7\x9f\x6a\x39\xd8\xb4\x5d\xf6\x0a\x1f\xa1\xa2\x10\x01\xce\x7e\xbf\x92\x8a\x2b\x05\x5e\x97\x7f\x7c\x49\x1f\xf3\xd5\x6c\x00\x5d\xdb\x90\x5a\x6b\x43\xe7\xb4\xd3\xbb\x77\x98\x52\xb6\x92\x80\x91\xd2\xf6\x1f\x80\x7f\x6c\x3a\xbc\x96\x75\xdc\x97\x33\x37\x99\x91\xd5\xea\xdf\x78\xe5\x27\xee\x5a\xb1\xa0\xa2\x96\xb3\xe5\xaa\x17\x27\x0b\x23\xe4\x11\x10\xa4\xe7\x77\x34\xad\xc9\x06\x9c\x2e\x1b\x93\x04\x9a\x6b\x6f\xa8\x15\x56\xab\xe1\x43\xec\xdc\x89\xe6\x3f\x57\x20\x2b\xbe\xf8\xd5\xdc\x87\x64\xdc\xb0\xfc\x65\x48\x6e\x43\xce\x25\x5e\xd3\xe2\xa7\xb5\x4c\x25\xd0\x72\xe8\xeb\xc2\x78\xd0\x55\x4f\x61\x79\x21\x2f\x77\xd2\x90\xc0\x53\xbf\x83\x15\x28\xf3\xe2\xca\x34\x2b\x9e\x98\x33\x58\x9b\xb8\x8a\x86\xb0\xc3\x53\x82\x85\x1c\x52\x64\x06\x59\x7d\x69\x4d\x3e\xf4\xda\x83\x7e\x97\x5f\x23\xfb\x86\x70\x2e\x90\xe5\x09\xa3\xc4\xf2\xbc\x14\x51\x2b\xad\x6a\x71\x9a\x28\x72\xe4\xd4\x16\x59\xed\xd6\xf9\x59\xc8\x9e\x4c\x28\x42\xda\x5e\xb9\x73\x32\x18\xb8\x24\x98\xd8\x09\x11\x1f\x6d\x3c\x46\xb1\xed\x35\x42\x20\x60\xe3\xbd\x55\x4d\x57\xe8\x60\x52\x8d\x2e\x68\x57\x67\xfc\xf8\x87\x7c\x63\xa3\x97\xf5\x53\xa8\xcc\x9f\xda\xe2\x63\xc8\x2b\xc9\xe4\x2e\x98\x15\xce\x0c\x96\x15\x88\xf4\xc0\x5e\x8c\xb6\xd3\x4d\xae\xaf\xe9\x61\xea\xea\x11\x1e\x8f\x81\xb2\x63\x74\xa9\xf9\x00\x0b\x25\xef\xb0\x58\xa7\x29\x32\x0f\x3d\x1c\xa1\xe9\x6e\xe8\xb8\x79\x2d\xa8\x10\x24\xfb\xd1\x16\xfe\xa8\x57\x5b\x77\xef\x10\xe7\x81\x52\xd6\x30\xcf\xc1\x4b\x16\xe8\xfc\x3d\xc7\x77\x80\x92\x64\x9c\x34\x96\xd3\x30\x70\x01\xfe\xa8\x1d\x4c\x56\x25\x07\xb3\x5e\xb3\xef\xdb\x9c\x3c\x62\x7c\xe3\x5d\x67\xb6\xad\x8e\xb0\x36\xca\xbd\x06\x77\x06\x30\x23\x1c\xa1\xae\x91\x44\x50\xbd\x96\xce\x30\x1b\xf8\xd9\x6f\xb1\x3c\xd1\x09\x79\x61\xca\xcd\x43\x9d\x71\x7e\xcc\xf6\xb4\x9d\xd4\x82\x9c\x01\xd9\x66\x52\x69\x62\xc4\x16\x6b\x3b\xc9\x33\x87\x27\x84\xc4\x50\x6f\xdf\x30\x50\xb4\xbe\xf4\x41\x91\x77\x2f\xf9\xa6\x1b\xef\x5e\xd1\x5f\x0a\x62\xf6\xab\x2b\xcc\xd8\xef\x52\x90\xb3\x5f\x69\xff\x0d\xea\x33\xd1\xae\x28\x7a\x35\x08\xbb\x74\xe9\xc7\x81\x16\x9a\x05\x7b\x7a\xbe\xe3\x32\x4a\x70\x4c\x5f\xff\x55\x09\xc1\xe5\xe6\x30\x2d\xbe\x3e\x7a\x46\x74\x76\xee\xdc\xfb\x6e\x06\xe4\x31\xce\x5e\xfa\xc7\x1f\x67\x65\xfa\xc2\x59\x88\x77\x38\x7b\x39\xbb\xf8\xbd\xb3\xcf\x48\x54\x95\x61\x4a\x2f\x3a\xda\xfb\x26\x3f\x85\x29\xd8\x17\x74\x87\x91\xd0\xc1\xd6\x82\x14\xf8\xf9\x36\x47\xc2\xab\x63\xc6\xb7\xf0\x40\x9a\xe8\x1b\x4a\x4d\xe9\xbc\xce\xf3\xdf\xd4\x44\x01\xb6\x69\x93\x28\x30\xa9\x21\x14\xc3\x40\x49\x74\x22\x02\x23\xea\x5c\x92\xde\x36\x24\xc6\xa3\xee\xec\x2b\xaa\x24\x92\x12\x3c\xf4\xfd\x0c\x79\x15\x15\x91\x78\x82\x6c\x5f\x83\x0d\xc3\x9c\xc4\x2f\x47\xd9\x50\xf1\x15\xd9\x66\x1f\x7c\x0a\x28\xfb\x96\xd4\x72\x89\xdc\x74\x14\xe0\x58\xb9\x0e\x4b\xe3\xe0\xb3\xb0\x67\xcd\xdc\x23\x59\x8c\x29\xa3\x03\xbc\x86\x09\xf2\xb8\x8e\x56\x76\x6c\xd3\x3b\xe8\xce\x78\x3d\xda\xa4\x73\x8f\xcf\x94\x58\xac\xc6\x68\x02\xef\xc0\x31\x27\x66\xf6\x4e\x4a\x95\xe4\x43\xc7\x5e\xe3\x94\xf1\x41\x5b\xe5\x60\x35\x76\xf3\x80\x8d\x89\x23\x05\x01\xcc\xe4\xa2\xac\xed\x76\x50\x76\xb6\x92\x00\x97\x7c\x88\x38\x1f\x2a\xf2\x68\xf2\x46\xd9\x8d\x21\x3f\x5d\xbb\x47\x5e\xa0\xc2\x1d\xea\x11\x1e\xe9\x89\x76\xf1\xda\x17\x22\xb5\x65\x4b\x6b\x77\x5a\xa4\xa5\x55\x35\xac\x3e\x32\x18\x27\xf9\xca\xc7\x52\xff\x60\xce\x54\x67\xa6\x6f\x0a\xfe\x18\x2f\x4a\x8b\xf0\x30\xec\xb1\x7d\xb7\x9e\xd0\xc0\xec\xe4\x97\xa3\x74\xa4\xd6\x9e\xf6\x37\x01\x73\x7c\x82\xee\xeb\x5c\xcc\xf2\x7d\xa3\x3d\x36\xad\x39\xd9\x30\x9a\x5f\x15\xd9\x26\x8c\x2f\x6d\xbf\x4e\x80\xda\xa1\xa0\x2b\xab\xc8\x53\x4a\x7c\xf2\x20\xc5\xde\x3a\x80\xa9\x60\x9e\x02\xbc\x39\xe3\x03\x25\xdb\xb8\x5d\x1a\xb5\x6a\x6e\x33\x0d\xcc\x0a\x4b\xe6\x21\x10\x7e\xed\xfb\x3f\xfe\xa9\xd7\x25\x40\x0a\xf8\x17\x22\x1e\xf7\x2d\x23\xe7\xfd\xbe\x12\xb9\x20\x8f\xf1\x65\xd4\x0d\xbd\xc5\xdd\x2e\xcb\x76\x4c\x88\x62\xc1\x51\x1e\x22\xee\x18\xbb\xed\x93\xae\x7a\x71\xb0\xec\xdf\x22\x1d\x7d\x32\xdf\xe1\x07\xaa\xc4\x8b\x5a\x63\xf4\x87\xbb\x06\x26\xa5\x4f\xc9\x32\x82\x07\x81\x7c\x34\xb5\x9f\xba\xa2\x77\x6d\x69\x8c\x73\xf7\xeb\xec\xa0\x37\x5f\x91\x52\x44\xe1\x4a\x6c\xf5\x2d\x60\x86\x05\x54\x72\x5f\x48\x06\x99\x51\x4a\x35\xb3\xac\x03\x82\xeb\x60\x3f\xdd\x7e\x39\xeb\xf1\xc4\x1f\x4f\x1c\x94\x7a\xe6\x99\xa7\x1d\x30\x2c\x5d\x4c\xbf\x7a\x38\x0f\x90\x0e\xfd\x50\x47\x7b\xfc\x92\xc6\xfc\xf6\x01\xc9\x52\xd3\x42\x0f\xb2\xd9\x31\xd7\xa2\x5d\x40\xbc\xbb\x99\x7b\x3e\xa0\x0b\xbc\x31\xbc\x13\xec\x65\x1b\x69\xbb\xe6\x69\x6a\x11\x60\xe8\x14\xb7\xca\x72\x50\x70\xc9\x80\x3f\x09\x1e\xe7\xb5\xcb\x97\xdf\xb8\xe4\x9d\xd2\xd2\xf1\x9b\x4e\x6e\x90\xa1\xfb\xd4\x22\x7c\x4a\xf1\x3a\x64\x65\xa8\x89\x3c\xba\x3f\x73\x44\x0e\x2b\x14\xec\x5a\x1d\xf8\xe4\x71\x73\xa8\x69\x72\x1d\xab\xfc\x90\x7f\x93\x2c\xfc\x52\xa0\x72\x04\x22\xd9\xb3\x26\xbb\xc8\x96\xfe\x8b\xd3\x31\x81\xad\xce\x30\xef\x6b\x4c\x8e\x99\x5f\x63\xf8\x62\x7e\x96\x58\x4e\x7f\x2b\xd4\x2b\xed\x8e\x7a\x38\xd9\x78\x7e\xab\xf2\x4a\xfd\xeb\x9e\xe9\xdb\x25\x58\x71\xb4\xc7\x8f\x1b\xf3\xa9\x68\xbc\x69\x89\x49\x49\xf3\x51\x61\x33\xe2\xde\xc6\xe6\xc1\xc6\xe9\xdb\x69\x67\x64\x5d\x64\x43\x3e\x40\x75\xa1\x0d\x72\xe3\x98\xc9\x72\x12\xee\xb5\x70\xf8\x6b\xa9\x1b\x25\x8e\xec\x3d\x02\x57\x45\x4c\x74\xaf\x70\x32\x3d\x73\x20\xea\x0e\x4b\x8a\xae\xe4\xa0\xb5\x58\x9a\x6c\x83\x6b\x77\x40\x39\x24\x65\xea\x38\x4f\x1d\xfc\x48\x7f\xaa\xb7\x40\xc4\xc5\xfa\xad\x8d\xc3\x0e\x36\x07\x66\x00\x29\xe2\xc8\x6f\xed\xe7\xc2\x5e\x41\xb6\x67\x78\xdb\xfa\xd7\x7c\xb0\xf6\xd3\x41\x4b\x34\x46\xf5\x8e\x88\xb4\x70\x03\x33\xc3\x0c\x25\xb9\x74\x34\x1a\x57\x67\x18\xcc\xdb\x01\x76\xfc\x8a\x4e\xaa\x88\xc6\x78\xa9\xc3\x6b\x8a\x78\x76\xea\x0e\xc4\xe7\xb0\xf8\x59\x34\x4c\xfb\xa6\x78\x74\x43\x3f\x63\x3a\xf7\xe2\xd2\xa8\x58\x14\xd5\x34\x39\xf7\xe6\x73\x57\x0a\x2e\x6a\x82\x3c\x93\x9d\xec\xcd\xe7\xaf\xa8\xf9\xce\xbd\xf9\xc2\x15\x9a\x91\xd2\x78\xb3\x0f\xc1\x63\x06\x3b\xc8\xb9\x79\x24\x3b\xa9\xe1\x9e\x2d\x86\x9d\x67\xfd\xee\x5c\x16\x47\x34\x83\x1f\xff\x41\x8f\x4d\x47\x82\x16\xd1\xb5\xb7\xbc\x38\x8c\x03\xa7\xce\xac\x3c\x8e\x67\xc9\x84\xfa\x2c\x1c\xcc\xb9\xe2\x3b\x30\x27\x0c\xf7\x96\x1e\x0f\xb2\xc0\xb4\x75\x81\xb2\xb7\x1c\x17\x2a\xab\x8d\x50\x57\x74\x74\x61\x4e\x61\x77\x7b\xf4\xfe\x9c\x39\x60\x10\x67\x8a\x82\xe7\x50\xe7\x01\xbe\xe6\x7a\xd1\x44\x26\xdd\xa0\x4f\x8b\xaf\x8e\x9e\xae\xc6\xcf\x9c\x66\x23\x3c\xcb\x76\x3a\xdc\x0c\x6c\xe4\x08\xcf\x9d\x96\x1f\x7f\x83\xc5\x9b\xf2\x9e\x74\x9d\x1a\x52\x20\x4b\xdf\xad\x46\x38\x24\x88\x29\x4c\xf9\xa8\x3d\x17\x34\x19\x32\xb1\xb0\x4b\x99\x6c\xfa\x40\x32\xa7\x72\x31\x72\x75\x08\x28\x08\x08\xcf\x2f\x82\x12\x01\x81\x90\x68\xbe\xfd\x7c\x9b\x60\xb1\x68\xcc\x8b\x7e\x6b\xae\xb3\xb7\x19\x96\x6b\x1f\xe3\xf5\xdf\xad\xa5\x0b\x57\x0f\xb3\xcc\xf3\xde\x95\x28\xd9\x54\x07\x61\xca\x8f\x47\x1b\xc3\x7c\x1b\x73\x63\xb9\xc9\xc3\x31\x26\xdb\xc4\xf4\x46\xd4\xa0\xb2\x79\xb2\x9e\x2b\xd6\x9e\xa3\xcc\x59\x87\xe0\x50\x03\x14\x40\x3d\xd9\xe8\xb9\x6d\xf5\x99\x64\x45\x32\xf4\xe1\xc7\x2d\x68\x8b\xfd\xf0\xcf\x2e\xb4\x41\xcd\x81\xda\x03\x7c\xb8\x0e\x1f\x4e\x2a\x2e\x15\xa9\x50\x2c\x8e\xa4\x28\xdd\x73\xe4\x6f\x7c\x6b\x7e\x77\xfe\x1e\x7e\xbc\x01\x9f\x40\x6d\xb5\x0f\x7f\x16\xa9\x22\xa8\xdd\x62\x0d\xb2\xcd\x8b\xa5\xc0\x4f\xdb\x59\x5f\xe1\x6e\xfc\xc9\x2e\x07\x7e\xd8\xca\x47\x43\xea\x81\x0b\xaa\x28\x93\x7a\xd4\x4d\x6e\x50\x63\xf2\xd2\x3d\x80\xec\xea\xd1\xf5\x34\x85\x78\x27\xbb\x32\x58\x2e\x06\xcf\xab\xc5\x95\x5b\xea\x27\xb3\xba\x6a\x82\xe3\xe0\x8f\x37\x52\x74\x89\x38\x42\xcd\x37\x7f\x1b\x26\xd7\xdb\x7a\xb9\x72\xad\xf8\x83\x5e\xac\x5d\xa9\xba\xad\xee\x30\x1f\xbc\x93\xf7\xd3\x2b\x51\x37\xdd\x48\x46\x3d\x08\xc9\x29\x0a\x11\xf8\x8f\x7e\xd8\x40\x76\xc9\x8b\x46\x07\xa5\xa9\xf5\xdc\xa1\x40\x65\xed\x5a\x74\x58\x51\x5e\x6b\x93\x83\x8d\x45\x66\x11\x16\x50\x61\xc6\xc9\xac\xaf\xf8\xcd\xac\xab\x58\xcf\xc1\x48\x2b\x16\x6d\x55\x13\xa7\x96\x9f\xed\xfb\xc8\x8b\x8a\xb3\xe9\x6e\x1e\x52\x71\xb4\x29\xc8\xce\xad\x08\xb5\x9d\x0a\x04\xdb\xeb\xc0\x30\xfd\x51\xe8\x0d\x04\x43\xf8\xf4\x3f\xff\x33\x86\x26\x66\xef\xa4\xff\xf2\x2f\x50\x64\xed\xa3\x67\xdc\x5a\x9b\x28\x5d\x1c\xa3\x66\x59\x1d\xe1\xad\xc5\x0a\x09\x35\xda\x76\xf2\xf6\x0f\xbc\x01\x21\xfb\x33\xe6\xcc\x20\xf7\x35\xcf\xfe\x62\x4a\x0d\xfc\xdf\x00\x00\x00\xff\xff\xa3\x81\x25\x70\xa7\x0f\x01\x00") func confLocaleLocale_ruRuIniBytes() ([]byte, error) { return bindataRead( @@ -4559,12 +4559,12 @@ func confLocaleLocale_ruRuIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 61542, mode: os.FileMode(493), modTime: time.Unix(1446027992, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 69543, mode: os.FileMode(493), modTime: time.Unix(1448150146, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_zhCnIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\x69\x73\x1b\x47\x96\xe0\x77\x45\xe8\x3f\x54\x68\x42\xd1\x5f\xd6\x74\xd8\xde\x2b\x36\x0c\xef\x76\xdb\x33\xdd\xbd\x61\xbb\xbd\x2d\x3b\xe6\x83\xc3\x01\x83\x40\x91\xc4\x08\x44\xc1\x28\x40\x32\x7b\x62\x22\x48\x49\x24\x41\xf1\x96\x28\x51\x94\x48\x51\xa4\x49\x91\xa2\xc4\x43\xd6\x45\x12\x3c\xfe\xcb\x1a\x55\x00\x3e\xe9\x2f\xec\xbb\x32\x2b\xeb\x00\x65\xf7\xce\xee\x17\x89\xa8\x7c\x79\xbd\x7c\xf9\xf2\x5d\xf9\x32\x53\x2a\xa5\x73\xb6\x9b\x4d\x79\xcb\x87\x8d\xc3\x29\xeb\x8f\x8e\xd5\xda\xdd\x6e\x6d\x0e\x36\xef\xdf\x68\x8d\x6e\x79\x37\x9f\x58\x7f\xcc\x57\x2c\x7f\x71\xd2\xbb\xb9\x72\xfe\xdc\xf9\x73\x7d\x4e\xbf\x9d\x6a\x3f\xbe\xdb\x5e\x79\x75\xfe\x5c\x2e\xe3\xf6\x75\x3b\x99\x72\x2e\xe5\x4f\x6d\x78\xb5\xd7\xed\xa5\x55\x7f\xe9\xf4\xfc\x39\xfb\xc7\x52\xc1\x29\xdb\xf0\x75\xb5\xf9\x72\x15\x2a\xd9\x85\x52\xca\xdb\xdf\x81\xe6\xce\x9f\x73\xf3\xbd\xc5\x74\xbe\x98\x6a\x2e\xd4\xbd\xe3\x3b\xf2\xdb\xa9\x56\x52\xed\xc1\x41\x6f\xf4\x50\x3e\x54\x4b\x29\xff\xc5\xa6\x37\x32\x71\xfe\x5c\xd9\xee\xcd\xbb\x15\xbb\xac\x3f\x5c\xb5\xbb\xdd\x7c\xc5\x4e\x79\x3b\xf7\xfc\xbb\x07\xcd\xe3\xd9\xe6\xd3\x85\xf3\xe7\xae\xd8\x65\x37\xef\x14\x53\xde\xf1\x6d\x6f\x6c\xb2\x39\x56\xf3\x17\x9f\x9d\x3f\x57\xca\xf4\xc2\x78\x57\x5e\xc1\xd0\xce\x9f\xab\xd8\xfd\xa5\x42\x06\x6a\xfa\x9b\x2b\x34\xd0\x42\xa6\xd8\x5b\x45\x08\x9e\x74\x7b\x70\xac\xbd\x72\x70\xfe\x5c\xb6\x6c\x03\x54\xba\x68\x5f\x4d\x79\xb5\x07\x5e\xfd\xb0\xab\xab\xeb\xfc\xb9\xaa\x6b\x97\xd3\xa5\xb2\xd3\x93\x2f\xd8\xe9\x4c\x31\x97\xee\xc7\x39\x36\xe7\x36\xfd\xda\x9b\xc6\xe9\x8a\x3f\xb4\xeb\x4d\xdf\xf4\x1f\xbc\xf4\xd6\xee\xf3\x24\xec\x1c\xcc\x33\x9d\x71\x53\xde\x9b\x9f\x79\xb6\x0c\x8c\x78\xc4\xc6\x8a\x99\x7e\x55\xdf\x9b\x99\x04\xb4\xf5\x67\xf2\x85\x54\xfb\xda\x4e\x73\xe7\x39\x8e\xdc\x75\xaf\x3a\x80\x5b\x6f\x77\xa4\xf9\x68\x08\xf1\x90\xae\x0c\x94\xa0\xc6\xca\x4e\x6b\x67\x4d\x7d\xcd\x66\x4a\x95\x6c\x5f\x26\xd5\xde\x9a\x68\xed\x0e\xd1\x27\x04\x2d\x39\x80\x22\xa7\x3c\x90\x6a\xd4\x6f\x7b\x87\xb7\xcf\x9f\x73\xca\xbd\x99\x62\xfe\x6f\x99\x0a\xe2\xa8\x59\xbf\xd1\xac\x8f\x9e\x3f\xd7\x9f\x2f\x97\x9d\x72\xaa\x7d\x67\xd1\xbb\x3e\x7d\xfe\x1c\x4c\x38\x8d\x55\x65\xd6\xfe\xdd\x3d\x20\x03\xd5\x00\x16\xf6\xe7\x7b\xcb\x88\xbf\xd6\xe9\x50\x73\xa3\xee\xad\xdd\x6d\x5f\xdf\x34\xcb\x7b\x9c\xf2\xe5\x50\x65\xff\xe5\x49\x73\x6e\xd9\x04\x81\x71\x84\x20\xf4\x50\x32\x45\x58\x08\x2a\x6e\xee\xac\x34\x67\x46\xfc\xda\xac\x51\x9c\xc9\xf5\x03\x2e\x4b\x99\xa2\x5d\x90\x72\x45\x6c\x99\x6c\xd6\xa9\x16\x2b\x69\xd7\xae\x54\xf2\xc5\x5e\xc0\xf6\xfe\x0c\x60\xb4\xb5\x73\xd2\x3c\xde\x81\x85\x48\xfe\x3c\xe0\x54\xf5\x62\xa6\x1a\xfb\x5b\x8d\xc3\x43\x5e\x43\x29\xd2\xd5\x78\x7d\x54\x35\x9a\x83\x9b\xee\xb1\x6d\xa0\xf9\xc5\x41\x98\x82\xff\xb2\xee\xdd\xdc\x84\xe5\xaa\x16\x0a\x80\xbc\x1f\xaa\xb6\x5b\x81\xce\x66\x6a\xde\xc1\xeb\xd6\xee\x1b\xff\xf9\xb5\xf3\xe7\xf2\xae\x0b\x9f\x81\x0c\xd6\xbd\xc9\x3b\x3c\x7a\x6c\x2a\x9b\x29\x66\x61\x3a\xde\xf4\x5d\xff\x75\x0d\x3f\x7c\xeb\xda\x99\x72\xb6\xef\x3b\x1c\x35\xfe\x91\xf2\x67\x16\x61\x03\x11\xf5\x25\x2c\x29\xd2\x50\x4a\x91\x14\xf5\x21\x5d\x40\xd3\x4e\x0e\xa6\x55\xff\x49\xe8\xe1\xdb\x7c\xd1\xad\x64\x0a\x05\x68\x59\xfe\x82\xcd\x33\xd6\xfa\x69\x58\xef\x8c\x7c\xa5\x40\xfb\xda\x7f\xb6\xd2\x3a\x9d\x69\xad\x4c\x70\x79\x73\x73\xdc\x3b\x04\xca\xc8\x39\xd9\xcb\x40\xfd\xb8\x91\xa1\x4f\xef\xf1\x35\xff\xe1\xa2\x7f\x6d\xd3\xdf\xfe\xc9\x5b\xdc\x6c\x1c\x9f\xc2\x28\xac\xcf\x08\xc6\xf2\x76\x0e\xbc\x85\x4d\x6e\x04\xf8\x49\xaf\xfb\xf6\x08\x28\xf3\x0d\xf0\x0f\xef\x74\xd8\x1b\xae\x35\xea\x73\xcd\xfa\x48\xfb\xde\x70\x6b\xb7\x6e\x7d\x9c\xb1\x2a\x99\x72\xaf\x5d\x49\x5d\x48\x77\xc3\x6e\xbc\x7c\xc1\xea\x2b\xdb\x3d\xa9\x0b\x17\xdd\x0b\x9f\xf0\xfe\xf6\xef\x8e\xfa\x2b\x3f\x7d\xfc\x7e\xe6\x13\xcb\x9b\x99\xf2\x46\x26\xbd\xdd\x03\xd8\xda\x3c\xf2\xd6\xe9\x03\x1c\xeb\xca\x53\x6f\x64\xe1\x97\xc1\x6b\x88\xa6\x1f\xaa\xc0\x1b\xd2\xb9\x6e\xe6\x6b\x38\x00\xab\xf5\x78\x08\xd6\x81\x67\x64\x7d\x31\x70\xe9\x7f\x7d\xfe\xcb\xe0\xd0\x57\x8e\x5b\xe9\x2d\xdb\xfc\x03\xfe\x85\x5a\x1f\x59\x7e\xed\xae\xf5\x75\xfe\xb3\x3f\x50\x5b\xd0\x06\xe3\xc5\xbf\xb3\xe7\x4f\xee\x00\xce\x15\x19\x60\x09\x6e\x45\x5d\xd0\x7c\x5e\xf7\x1e\x8e\x23\x7b\x74\x2b\xc1\xd7\xc6\x7e\xdd\x5f\x3c\x94\x85\x0a\x60\x65\xc5\xf4\x06\x8f\x94\xa8\x9d\x0d\x9d\x10\x87\xd0\xc5\xc0\x24\x9a\x1b\x7b\x54\x10\x5d\x08\x59\x02\x9a\x1b\xe3\x5b\xbe\xfc\xf9\xcb\x2f\xff\xf2\xd9\x1f\x2c\xef\xe8\x8e\x7f\x7b\xaa\x51\x5f\x07\x16\x65\x55\x2b\x3d\xff\x35\xdd\x6b\x17\xed\x72\xa6\x90\xce\xe6\x2d\x6f\x7b\xbe\xf9\xec\x71\xfb\xc1\x08\xcd\xda\x75\x0b\xc0\xd9\x80\x7c\x2e\x5d\xfa\xdc\x02\x46\xe9\x1d\x4d\xe3\x58\x2b\x7d\xc1\x40\x60\x49\x1a\xf5\xd7\xad\x37\xbb\xde\xc9\x0d\xa8\xf0\x43\x01\x31\x2e\x43\x8a\x62\xd2\x42\x2e\xa0\xf1\x47\x55\xa8\x1b\xbb\x5c\x4e\x03\x3b\xae\x0c\xe0\x52\x51\xf3\xbf\xa2\x66\x63\x7f\xb2\x75\xfd\xb8\xb1\x7f\xd8\x7c\x72\xa8\x5b\xc9\x17\xaf\x64\x0a\xf9\x1c\xac\x95\xc2\x18\xd5\x8e\xa0\x0d\xaa\x7a\xc3\x43\xad\x9d\x7d\x6f\x62\xd8\x9b\x79\xca\x73\xb6\x2e\x74\x5d\xa0\xfe\x2e\xbc\x77\xc1\xa2\x06\x8b\x4e\x9a\x59\x0d\x32\xf8\x5c\xde\xcd\x74\x03\xb3\xe7\x13\xa8\xcc\xbc\x13\xb1\x4d\xc3\xf0\xd6\x96\x81\xf8\xfd\xc5\x2d\x66\x67\xbc\xaf\xbd\xd9\x7b\xbc\x8a\x38\xf8\xeb\xc3\xde\xc8\xab\xc6\xfe\x78\x13\xe8\x6f\x7b\x95\x8f\xaf\xc8\xe4\x15\x5f\x13\x52\xd0\x8d\x30\x11\xc4\xe6\x7b\xfe\x9c\x5a\x37\xa6\x4c\xef\x70\x0e\xba\x83\xc3\x1b\x76\x84\x22\x4e\x3c\xd3\x09\x0d\x52\x28\x54\xa3\x3e\x6b\xda\x39\x7d\x0a\xa5\xcd\xf1\x6b\xfe\xf8\x71\x7b\xf8\x4d\xf3\xda\x53\xcd\x6e\xb9\x4a\x7b\x7e\xab\xf9\x70\x0a\xd8\x70\xa3\xfe\xec\xed\xd1\x10\xb3\x20\x5e\x2a\xe6\x40\xfe\xa3\x83\xe6\x83\x1d\x3a\xc4\x75\x91\x6a\xdd\x1f\x1b\xf4\x17\xc7\x48\x78\x68\x9d\x2e\x02\x1b\xe1\x2a\x6d\x40\xdb\xde\x48\x6b\x15\xf0\x7f\xcf\x9f\x3b\x01\x91\xa3\xb5\xbb\xce\x8d\xf0\xf6\xad\xc2\xd1\x8f\xbb\x85\xf9\x47\xf3\x45\xbd\x59\x5f\x56\x1b\x46\x15\xaa\x3e\xb0\x2a\xef\x98\x53\x60\x64\x75\x6f\xf8\x0d\x74\x09\xdc\x21\x32\x3a\xef\xd6\x84\xc1\x8d\x88\xaa\x6e\x4f\x36\x8e\x17\xfd\xa5\xeb\xed\x85\x19\xde\xe9\x0e\x1c\xbd\x20\x3a\x2c\x2f\xd3\x41\xcc\x3f\x8d\x6e\x18\xb5\xde\xf1\x73\xef\xf6\xa4\x75\xe9\xd2\x9f\x2c\x6f\x78\xbc\x7d\x7f\xc4\x5b\xdc\xf3\x96\x06\x65\xd7\xf4\xa5\x4b\x4e\xb9\x92\xc2\xd2\xe6\x53\x10\x05\x7e\xf2\xa6\xdf\x04\xdf\xf5\xf6\x80\x62\x96\xa6\x80\x49\x22\xc2\x1f\xcc\x7a\x33\xcf\x74\x05\xd8\xbb\xcd\x3b\x0b\xb0\xda\xad\x95\xcd\xe6\xda\x21\x10\x0e\x6e\x62\xea\xf1\xe6\x32\x90\x02\xf5\xd5\x57\xa9\x94\xb8\xb3\x3f\x7d\xfd\xf5\x57\x66\x6f\xba\x44\x2f\x32\x91\x80\x74\x02\xbd\x05\xa0\x48\x0e\xd5\x72\x41\x20\xac\x6f\xfe\xfa\xb9\xfe\xd6\x69\xe2\xd8\xdb\xfb\xf8\xcf\xa5\xd0\xfc\x01\xbf\x8d\xfd\xc1\xc6\xe1\x03\x96\x5c\x1a\xfb\xdb\xd0\x53\xfb\xf6\x89\x3f\xb5\x2e\x34\xeb\x94\x70\xe7\x04\x44\x3b\xbd\x0b\x92\x96\x22\x57\x92\x7a\xa4\x04\x5a\x00\xc6\xc2\xf8\xd1\x07\x78\x3f\xcc\x89\xf8\xea\xa5\x2f\x60\xb6\x8a\xa7\xd2\xe7\x9e\xb2\xd3\xaf\x2a\x2d\xad\x83\xc0\x6a\x7c\x57\xb3\x30\x8b\x79\xc0\x80\xe4\xf6\xd0\x2b\xef\x64\xcb\xfa\xeb\x3f\x7d\x6a\xfd\xa7\x8f\x3e\xfc\xd0\xf2\x1f\x8d\x7a\xa3\xc8\xff\x60\x6c\xc0\x25\xfd\x7b\xbb\x38\xa5\xfd\x2d\x3c\xaf\x0f\x77\x71\x3e\x34\x37\xae\x0f\x0c\x43\xb8\xeb\x85\x2f\x61\x43\x5d\xb0\x3e\xa6\x39\xfc\x0f\xfb\xc7\x0c\xc8\x97\x76\x57\xd6\xe9\xff\x84\xc8\xec\xd1\x11\x30\x4f\xc2\x01\x96\x03\xe1\x12\x69\x7b\xd3\xb3\xed\xc1\x21\x25\xe6\x49\x49\x20\xed\x19\xa5\x81\xe4\xc7\x12\x70\x3a\xeb\x14\x7b\xf2\xe5\x7e\x10\x2f\x76\x91\xf2\x89\xa1\x30\x28\x0b\x85\xdc\x5c\xba\xe8\x54\xf2\x3d\x03\x02\xc5\xf3\x6f\x0f\xde\x6f\x2e\xaf\xfb\xd3\x33\xed\x91\x5b\x28\x5e\x94\x41\x5c\x4e\xe3\x7f\xf9\xac\xad\x4e\x39\x45\x96\xb0\xa0\xde\xf0\x6b\x6f\xe7\x7a\x78\x21\x9c\x9e\x9e\x42\xbe\x68\xf3\xe1\xc0\x6d\x37\x1f\xd7\x9b\x87\xa7\xea\x90\x30\x01\x80\x0a\x4b\x20\xc3\x03\x83\x04\x11\xb1\x79\xfc\x33\xc3\x00\x2f\x6c\x1c\x2c\x33\x55\x37\xea\x53\xd6\xa7\x9f\x7d\x69\xb5\xa6\xde\xa0\x04\x44\x47\x0a\xac\x0c\x30\x0e\x58\x00\x54\x3f\x5e\xdd\xf0\x0f\x67\x98\x61\x00\x2c\x30\x38\xc0\xbe\x1e\x23\xd7\xe2\xcd\x2b\x5c\x1a\x44\xd3\x2b\x19\x90\x26\x52\xb2\x6b\xfe\x28\xbf\xb5\xf6\x12\x05\x94\x31\x46\xc1\x91\x5f\x00\xa9\xec\xdc\x6f\x1c\x8c\xc1\x08\x60\x4c\x8d\xfa\x30\x2f\x78\x73\xee\xb9\xc8\xfb\xfb\x37\x1b\x47\x8f\x70\x8d\x6b\x77\xdb\xf5\x7b\x80\x7a\xf8\xdb\x5b\x7b\x09\x62\x74\x68\x4c\xa1\x93\x83\x8f\x01\x11\x28\x47\xb7\x90\x92\x45\xa3\x49\x02\x0f\x46\x67\x56\x02\x36\xc6\x95\x98\x1f\xc0\xe0\xbc\xe9\x2d\x60\x7b\xc1\xc1\xc1\x04\xfc\x06\xa4\xd2\x47\x20\xf2\xc2\x5e\xe7\x13\xa7\x48\x1d\x28\x6d\x41\x48\x43\xe9\x0c\x0a\x43\x61\x28\x19\x81\x48\x4f\x8b\x9b\x3c\x08\xee\xde\x9f\x7f\xdd\x3a\xb9\xed\x0d\xaf\xb7\x57\x6f\x18\xaa\x07\x89\x5f\xa0\xa8\x88\x92\x97\xbe\x92\x47\x1d\x8a\x69\x85\x34\xa0\xd6\xce\x69\x7b\x7e\x07\xf8\x2e\xa8\x8b\xc9\xe0\x8a\x72\x68\x5a\x81\xe6\x04\xcc\x8b\xbb\x1f\x93\xb3\x57\x5a\x22\x31\x10\xd1\x30\xf3\xd8\xab\x2d\x00\xad\x40\x45\x00\x68\x2e\x8e\x7b\xb5\x3d\xae\x0b\x6b\x24\x5b\x85\x80\x09\x1f\x7c\xee\x8a\x94\x2f\x2a\x70\xf8\x18\x67\xe4\x81\x14\x0f\x87\x30\xf0\x03\x3e\x63\x60\x18\xd8\xd7\x83\x47\x70\x26\x5b\x7f\xfe\x2c\xf5\x81\xa5\x07\x86\xe7\x1a\x6a\xcc\x44\x9a\x27\xf3\xba\x1d\xe3\x98\xe1\x4e\x79\xb7\x45\xfa\xd1\x87\x37\x81\xb0\x66\x18\x16\x28\xe8\x64\x3a\x5b\x5c\x40\xb9\x9f\x18\x84\x01\x11\x52\x16\xb9\x3a\xeb\x99\xba\xae\xe2\x44\xa2\x19\xa4\x7b\x1d\x54\x7b\x9e\x8e\x7b\x93\x2f\x58\x64\x46\xc5\xd9\xad\xa4\x7b\xf3\x95\x74\x0f\x72\x2b\x90\x58\xe7\x1f\xf9\x2f\xee\xb4\x76\x47\xbc\xda\x53\xeb\x77\x50\xf0\x3b\xcb\x9b\x3d\x6e\xd4\xd7\xde\x1e\xdd\xbf\x78\x45\x89\x84\x1f\x21\x23\x4a\xc3\xae\xca\x17\x90\xac\x50\x72\xc2\xdd\xcd\x3b\x09\xb6\xcb\xf4\x2c\x1e\xf1\x63\x35\x44\xf0\xdc\xae\x3f\x31\x64\x89\x08\x28\x12\x2c\x30\x88\x8b\x2e\x30\xfc\xf1\xd6\xf1\xb1\xe8\x02\x0f\x6f\xe0\x12\x8d\xd5\x10\x62\x70\x82\x57\xc6\xea\x75\xba\xab\xf9\x42\xce\x62\x9d\x9f\x30\xad\x64\x42\x90\x08\x65\x8d\xa3\x42\x3c\xd6\xdd\xfe\x09\xd0\x23\x43\x56\x35\x3a\x0a\x39\xc9\xd5\xb4\x4c\x82\x53\xed\xcf\xc0\xb6\x49\x10\x5d\xda\x4b\x0f\xc5\x2a\x41\x3f\xb1\xaa\x6b\xbd\xf7\x09\xcc\x0e\x50\x95\xb9\x62\x33\x5f\xef\x55\xd8\xe5\x23\xb9\x3d\x3c\x89\xfd\x9d\x2e\x81\xa8\xe4\xad\x3d\x6f\xbd\x5c\x8f\x8c\x34\x44\xc2\x21\x7a\xd2\x0a\x6b\x7c\x92\xbc\xc4\x6e\x35\x9b\xb5\x5d\x17\x57\xc4\x5b\x07\x26\x32\xc4\x52\x9e\x77\x52\x6b\x3f\xbd\xe7\x0d\xbf\x84\xef\x70\x42\xfb\xe3\x4f\xe4\x9c\x13\x35\xae\xb9\xbe\xa4\x75\x0d\xff\xc6\x18\x48\x90\xc4\x1c\x51\xcb\x44\x0e\xbd\xbd\x06\x74\x61\xfd\xe1\x9b\x3f\x92\xb4\x08\x5a\x27\x1a\x8b\x40\xe5\xac\xb2\xd8\xe9\x14\x72\x5a\x5f\x05\x62\x46\xce\x19\x31\x75\x28\x18\x45\xae\xee\xd5\x3c\x20\x34\xad\xcd\x4c\x88\xa7\x8a\xfd\x63\x05\xb6\xea\xa8\x3f\xb9\x6a\x1a\x9d\x94\x8c\xd8\x3f\x40\x2b\x08\x53\x23\xf3\x81\x52\x95\xb3\x4e\x01\x68\xd0\x41\xce\x7a\xc5\x16\x08\x6f\xfa\x5a\x63\x7f\xca\x9b\x9c\x06\x59\xd0\x00\x85\x16\x9c\x72\xaf\x6a\x40\x9b\x27\x06\xd2\x6c\x2c\x51\x05\xca\x66\x42\x2c\x8b\xac\x62\xcc\x90\x68\x51\x95\xca\xdf\x05\x0b\x44\xe6\x04\xe9\xf1\xf9\x43\x91\x78\xf9\x10\xa1\x1e\xa1\x2d\x42\x96\x18\xcd\xbe\x13\x55\x5f\x8c\x67\x6a\x54\x00\x90\xa9\x56\xd0\x34\x10\x18\xa7\xd2\x62\xfa\x10\xce\xc5\x0b\x6f\x48\x0b\x7d\x76\x09\x45\x8b\x7e\xb7\x97\x2c\x50\xf5\x69\xe6\x82\x6f\x8f\x96\x79\x77\x33\x77\xa4\xc5\x72\x9d\x6c\x3e\x53\x48\xff\xfa\xaa\xf5\x59\x38\x20\xa9\x6a\xf8\xec\x62\x13\x19\xa8\x36\x29\x14\xc4\x41\x7d\x79\x85\x32\xad\x79\x64\x41\x7b\x28\xff\x0f\xbf\x68\xcf\x6f\xc3\x5e\x85\x8d\xde\x1a\x9a\xc3\xdd\x42\x76\x3c\x4d\xc6\x09\xc7\x28\x0e\x08\x39\x57\xbc\x65\x53\x06\x4a\xec\x05\xb1\xd2\x6f\xf7\x77\x63\x13\xb8\x52\x7b\x8d\xe3\x69\x65\x80\xec\x81\xe5\x86\xcd\x1b\x48\x60\xa7\x70\x9e\xef\x29\x1a\xc4\x52\xbb\x43\x29\xa0\x43\x9b\x2b\x81\x01\x5c\x85\xad\x7f\xcf\xff\x79\x85\x17\x02\x0a\xdb\x4f\x9e\x81\xa0\x60\xe8\x7d\xc2\x9e\xf9\x7c\x27\x51\xcd\xb5\x8b\x15\x85\x31\x10\x39\xbd\xbd\x21\x31\x8b\xd1\x5c\x58\x76\xe3\x15\xc0\xe9\x90\x6c\xd8\x1a\x7d\x61\x7d\xdc\xfd\xc9\x45\xf7\xe3\xf7\xbb\x3f\x61\x56\xe9\xff\x34\xe8\x83\x74\x77\x0d\xd9\xaa\x3f\xf7\x1a\xea\xa0\xf4\x78\xf0\x1a\x0e\x6d\xeb\x62\xce\xf2\xf6\xa6\xe1\xbc\xf6\x46\x86\xbd\x9d\x09\xbf\x36\xc3\x6d\xcb\x39\x4e\xaa\x10\xab\x30\x72\x08\x57\x1c\x4d\x58\x8c\x22\x38\x48\xb9\x69\x45\x61\x99\x2c\x6d\x23\xa2\x6c\x05\xea\x9f\x0e\xfa\x2f\xeb\x61\xb8\xb2\x4d\xd3\x2b\xe4\xfb\xf3\x95\x44\xb2\xb8\xb6\xc9\x26\x32\x9e\x18\x37\xc1\x73\x6e\x9d\x8e\xc2\x56\x69\xaf\xce\x36\x0f\x86\x78\x8e\xcd\xed\x31\xef\x64\xd8\xfa\xc8\xf2\x6a\x23\xed\x5b\xcb\x6c\x0b\x6a\xed\x32\xfd\xf6\x65\xdc\x74\xb5\x28\xe8\xb5\x73\x4c\x27\xc0\x64\x15\x83\x13\x76\x8c\x78\x7a\x35\xce\xf3\x01\xe9\x82\x11\x9e\x80\x55\xab\x71\x3c\x02\x8a\x3d\xa0\x9c\x71\xc5\x0a\x00\x0c\x0b\x35\x04\x6d\xfc\x5a\xdc\x02\x5c\x63\x63\xc6\xb8\x71\x56\xc0\xd8\x16\x07\x41\x6a\x6a\x8f\x4e\xc2\x62\x72\xf3\x62\x04\x9b\xbc\xe3\x8d\xd6\xe1\x44\x43\xbb\x35\x2c\xd5\xc4\x58\xfb\xd6\x8e\x90\x27\xa0\x4a\xc6\xcd\x50\xc0\x4e\xbd\xb5\x1b\x66\x1b\x26\x4d\x28\xbd\x89\x4e\x58\x97\xb6\x6f\x85\x4e\x58\x96\xca\xa2\x1a\x0b\xcd\x05\x76\x03\x6c\x35\x18\x70\xa3\x5e\x6f\xc0\xb2\x92\xe0\xc1\xdb\x1f\xfb\xc6\x21\x54\xe2\x23\x78\x7b\x54\xe3\x41\xbc\x3d\x1a\x93\x75\xe2\x45\xa6\x2d\x00\x45\x70\xce\xa8\x31\x71\x13\x7a\xaf\x70\xa1\xda\x49\xea\xdc\x22\xdb\x64\x84\x0c\x34\xc5\xf3\x69\x82\xbb\xf7\x74\xd4\x5f\x5c\x06\x5c\xc2\xdf\x70\xfc\xf9\x77\x6a\x1a\x4f\x41\x0f\x5a\xcd\x0d\x63\xcc\xe8\x54\x43\x56\x1c\x27\xed\xf6\xa1\xd2\x2c\x03\xbf\x73\xea\x1d\x3e\x16\x4b\xce\xde\x2c\x3a\x3f\xfe\x33\x2c\xfb\xa4\x3a\xbb\x10\x0f\xdf\x09\xa9\x23\xbf\x55\x74\x8e\x04\x9b\x40\xea\x1a\x8e\x85\x2b\x80\x62\xa9\x98\xa1\xcc\xb5\xe8\x80\x25\x13\xa9\x06\x0f\xd7\x27\x35\xef\xd6\xda\x0c\xb0\x37\x44\xd9\xb3\xd5\xd6\xe9\x14\x9f\xc4\x3c\x5c\x27\x97\xc1\xf1\x0e\xd8\xae\xc8\x7c\xbc\xb3\xd1\xa2\x25\x16\x66\xf5\x01\x40\x51\x3b\x14\x7c\x9f\xee\xf8\x73\x07\xd4\x04\x70\xba\x7e\x68\xe1\x1b\x90\x66\xbe\x8c\x78\x26\xfe\x0a\x27\x12\x7d\xe3\xe3\x48\x99\x94\xfe\xd1\x70\x58\xa8\xc9\x7d\x15\x75\x5b\xfc\xd5\x4e\xf0\x5a\x5c\xba\xf4\xa7\xaf\x49\x0c\x26\xd3\xc6\x2e\x6c\xe8\x75\xd5\xe8\x9f\x2a\x95\x92\xfb\x4d\xb9\x90\x62\x4b\xc3\x37\x7f\xfd\xdc\x0a\xda\x1e\x28\x38\x99\x1c\x16\xfa\x53\x20\xa1\x0c\xa9\x82\xaf\xed\x4c\x3f\x8d\xcf\x7b\xb0\xda\xbe\xb7\xac\x9a\xfa\x3d\x9c\x98\xf4\x19\x7a\x86\xb5\xd0\x9f\x51\x70\xfa\xc7\x64\x21\x38\xd0\x49\x6c\x72\x8d\xc4\x2c\x70\x99\x42\x09\x34\x23\x14\x49\x04\x82\x15\x03\x80\x68\x8d\x3f\x07\x2d\xd6\xdb\x9e\xf7\x77\x27\x7f\x01\x15\xfe\xde\xa9\x3f\x3e\xd6\x38\xda\x05\xc1\x13\x3f\x82\x12\xb2\xb9\x05\xda\x32\xec\xa7\xf7\xd2\xb0\x97\xa2\xad\xe5\x60\x27\xff\xa6\x16\xe1\x4b\xb8\x45\xe8\xa2\x79\xed\x40\x78\xf9\xdf\xd4\x0c\x98\xd0\x75\x9b\x20\x9f\xb0\x45\x02\x65\xc7\x28\x94\xbf\x08\x0c\x71\x9a\xa1\x2c\x34\x7f\x90\x95\x54\x2c\x18\x3f\x26\xc3\xaf\x6d\x24\xc2\x33\x7b\xd2\x48\xd4\x16\x15\x60\xbb\xb0\x97\x23\x7b\x82\x6a\xa0\xe5\xe9\x0c\x78\xa4\x04\x86\x2b\x5e\x86\xb3\xb6\x28\xb0\xc0\xda\x9a\xcb\xeb\xed\xb9\x85\xd6\xee\x2e\x48\xb9\xda\x21\x06\x27\x59\xd6\x29\x97\xed\x6c\x25\x65\xa8\xb9\x5b\xde\xc4\x01\x08\xd6\xd4\x8e\x66\x0d\x81\xe8\xae\xac\xae\x53\x26\xb5\x86\x6b\x05\xae\xbb\x74\xb7\x6d\xc3\x69\x99\xb9\x6c\x17\x83\xbd\x12\x9c\xd5\x93\x8f\xe0\xa3\xf0\x2c\x50\x29\xa2\x35\xcc\x9d\x94\x54\x09\xc4\x8e\x58\x1d\xd3\x3a\x9b\x54\xa7\x02\xdb\x20\x56\xc9\xdc\x12\x49\x95\x78\xa1\xa8\x02\xcc\x2c\x17\xda\xce\x1a\x9e\x39\x0d\xab\x56\x85\x82\xdd\x8b\xb6\x3c\xd5\x59\xb8\x07\xb2\xae\x83\xc2\x03\xfa\xa1\x41\x0d\x1a\x67\x1a\xe9\xc1\xf2\x98\x1a\x81\x36\x7b\xb3\xda\x22\xa6\x0b\x60\x84\x65\x72\xa6\x1a\x2a\x1a\xf5\x6c\x8a\x3e\xfa\xe0\x33\x31\x0b\x64\x74\x56\x4b\x40\x46\xa8\xba\x75\x6c\x0a\xfd\x7b\x64\xc8\x6e\x0d\x0e\x07\xc3\xbc\xb7\xeb\xcd\x3c\x3e\xab\x59\xcd\xda\x13\x1b\x15\xaa\x8a\xb6\xa2\xb5\x48\xfb\x47\x60\xfd\x29\x40\x3a\x33\x6c\x6d\x60\x40\x0f\x06\xa8\x82\x8b\x9b\x74\x44\x15\x32\xa0\x92\x23\x91\xd0\x1c\x10\xbc\xb9\x51\x6f\x2f\xac\x29\xd8\x43\xdc\x9b\x33\x53\xb8\x89\x8e\x27\x4d\xa9\x1a\xc7\x44\xd6\x21\x2e\x12\x71\x53\x6b\x8f\x20\x53\x91\x4f\x8d\x5b\xc3\x03\x67\xf6\x1e\x0f\x44\x4e\x46\x35\x49\xb4\x6c\x5f\xb6\x07\x52\xa0\x34\xfa\x37\x9f\xfb\xdb\x63\x24\xfa\xa0\x1a\xc9\xd6\x01\x7d\xfe\xe9\x89\x5b\x01\xb3\x27\x15\x98\x34\x43\x14\xef\xaf\xd8\x65\x38\x91\x74\x8b\x64\xa6\xff\x55\x8d\x4c\xa0\x9c\xc6\xaa\xeb\xd0\x28\xa8\xbc\xed\x6b\x3f\xe1\x8a\x2b\x96\xa1\xc1\x70\xce\xd0\x06\x99\xcf\x00\xdf\xa8\x54\x0f\xbf\x66\x30\x7f\x70\x83\x26\x86\xda\x95\x36\x6f\x4c\xd5\xd0\x6a\x43\x7d\x87\x54\x6f\x60\xac\x15\xa0\x7f\xc4\x39\x3b\xca\x4d\x21\xa0\x51\x9f\x6c\xde\x78\x8d\xfd\x2f\xcf\x34\x0e\x1f\x68\xed\xce\x1f\x5f\x67\x0a\x62\x51\x47\x39\x2b\x6a\xad\xe3\x67\x80\x64\x24\xfa\xda\x23\x40\xb5\xb7\x73\x1d\x71\x47\xe6\x2d\x7f\x6c\x03\xdd\x9a\xfc\x9d\x1a\x37\x96\x80\x87\x80\x12\x2f\x3a\xcb\x23\x23\xf0\xe7\x37\xf4\x08\x98\x5d\x90\x91\x12\x57\x31\xd2\x7d\xf3\x71\xdd\x3b\x1a\xd4\xdd\x33\xb0\x66\x3d\x91\x79\xa2\xce\x4a\x00\xff\x8f\x26\xc9\x8d\x87\xe8\x2c\x18\x01\x3b\x84\x76\xd7\x79\x59\xf8\x2c\x6f\x9c\x2c\xc1\x54\x81\xea\xdb\xd7\x37\x41\x21\x10\xaa\x27\x2e\x25\xa2\xf6\x70\x8d\x9b\x86\x8a\x26\x4c\x58\x6f\x00\x9e\x49\xee\xe7\x74\x77\x39\x53\xcc\xf6\x19\xfb\xaf\xf9\x60\x07\x9d\x02\xb5\x11\x7f\x6e\x57\xef\x3c\x39\x01\xbe\xc5\x11\xa1\x2a\xde\x97\x29\xf6\xda\x69\x31\x3b\x83\x60\x6d\x29\xd3\x32\xfa\x00\x2c\x34\x12\x93\x78\x25\x6b\x44\xe6\x61\x5d\x2b\x5b\x75\x2b\x4e\xbf\x51\x99\xa3\x10\x94\xe1\x66\x9b\xab\xaa\x4a\xff\xe2\xc0\x79\x8d\xd1\x2d\x37\x1f\xc1\x3e\x00\x69\xd5\x88\x08\xc8\x83\xcc\x27\x4c\xaf\x36\xdf\x5a\xd9\x14\x69\x34\x5f\x81\xcd\x39\xfc\x0c\x17\x59\x62\x14\x7a\x9c\x42\xc1\xb9\x6a\x97\x5d\xf8\xfe\x02\x24\x4a\x58\x2e\xc4\x73\x06\x99\x17\xe9\xf9\xd7\x0e\x5a\xaf\x1e\x2a\x38\xb4\x2a\x31\x1c\x8c\x06\xa7\x8d\x02\x62\x17\x71\x71\x94\x60\xcb\x57\xa0\x92\x66\x8a\xd6\xef\x2e\xba\xbf\xb3\x80\x2e\xf0\xb0\x38\x5d\x42\x27\xd6\x7d\x76\xf4\x06\xb5\x4a\x99\x0a\x30\xca\x22\xeb\x2c\x34\x12\xa3\x01\xed\x9f\xe5\x96\xc2\xee\x13\x0a\x8d\xe0\x80\x0c\x40\x7b\x72\xd8\x86\x66\xba\x82\x38\x65\x43\x62\xa6\xe2\x8a\xa8\x67\xb0\x0f\x65\xf5\x48\x35\xd7\x4e\x1a\x87\x6b\xac\x0e\xb1\x61\x83\x5c\x61\x85\x7c\x96\x14\x75\x55\x95\xc9\x8f\x8d\x73\xb4\x49\x54\x81\xb2\x11\xe5\xec\x82\x8d\x61\x49\xc6\xb6\x05\x16\x97\x57\x93\xb4\xfe\xfc\x19\xce\xa4\x54\xed\x86\x96\x75\xec\x09\xaf\x90\x9e\x84\x84\x17\x91\x41\x3a\xae\x3b\xa0\x2b\xe4\xe8\x3e\xa9\x72\x58\x0b\x4d\xd1\x07\xaf\x91\xf5\xcf\x6d\x02\x49\xf8\x53\xeb\xa8\x90\x52\xc7\x88\x3f\x3a\xb9\xd8\xe5\xe3\xdd\x9a\x60\x0f\x10\x2f\x09\xc6\xaa\xf0\xa9\xa7\x1c\x1d\x4a\x36\x56\xb1\x55\x8c\x5b\x15\x5b\x55\x70\xb2\xe2\xfc\x1e\x1b\x84\x6d\x80\x83\x99\xc0\xb8\x86\x52\x0e\x55\x1e\x35\x15\xff\xc1\x4b\x38\x4d\xd4\x54\xc2\x85\xa6\xc9\x11\xcf\x68\x63\xe9\xb8\x9a\x52\x6d\x86\xf4\x06\x89\x87\x48\xb1\xeb\x58\xa9\x2c\x11\x30\x65\x60\x40\x46\x41\x7c\x84\x91\xc5\xbe\x4b\xd4\xd2\x09\x1d\x20\xdb\x21\x7b\x62\x9e\xba\x38\x06\xf4\xad\x9d\x95\x64\x9e\x01\x1a\xab\x42\x8f\xf5\x8d\x66\x7d\x5b\x29\x4c\xa1\x38\x1d\xf5\x31\x70\x96\x84\xf7\xf1\xcc\x2e\xba\x00\x34\x5a\x65\xfb\x26\xc1\x6a\x57\x39\xa9\x93\xc8\xa6\x28\xfc\xcc\x5f\x5a\x67\x9f\x0f\xda\xbf\xb5\x53\x8a\xfd\x5d\x01\x0b\x71\x1c\x57\x6c\x80\xdc\x2f\x9b\x6b\xf9\x30\x57\x50\xb2\x02\x02\xc1\x68\xe6\x32\xe5\x6d\xa8\x96\x50\x9f\x02\xc9\x45\x46\x44\x3b\x33\x9d\xef\xc7\x90\xb8\xc0\xc5\x45\xae\x39\x2d\x93\x7b\x47\x8f\xbc\x07\x27\xcd\xb1\x51\x5a\xab\xa2\x13\x99\x94\x61\xee\x5f\xdc\xe2\x36\x40\x95\x8f\x20\x04\x0f\x09\x3a\xdf\x23\x73\x67\x41\xc8\x1c\x76\x84\x6e\xcc\xe1\xc7\xe8\x46\x93\x44\x07\x56\xe0\x14\x0c\xd1\x8c\x0d\xf2\xaa\x08\x31\x19\xc4\xe3\x30\x16\xb5\x2a\x8e\xfa\x6b\x3a\x04\xc1\x06\x11\x96\x49\xc2\xd0\x09\xf2\xad\xd9\x93\x61\x90\x1f\x8a\x0d\x57\xcf\x55\x60\xf9\xec\x50\xf3\x43\x04\x4c\xed\xe1\xee\x23\x0f\x9f\x58\xe1\x8d\xce\xd9\x58\x27\xfc\x92\xa4\x7a\x37\xa2\x9b\x4b\x8c\x9d\x94\x49\x18\x5d\x08\x82\x95\x01\x83\xfb\x34\xf6\xeb\x68\xc9\x0a\xf3\x20\xcd\x71\x4c\xaf\x72\xe0\x35\x0e\x4c\x8a\xa5\x32\xd0\x12\x46\xac\x51\x2b\xfa\xb7\x32\x92\xec\x9c\x80\x9c\xaa\xca\x98\x7b\x4a\x11\xf3\xd0\x60\x3c\x50\x84\xec\x47\xc6\x41\x85\x6a\x23\x86\x41\x94\x2b\x4f\x9d\xfc\x31\xe6\x29\x72\x2d\x31\x83\xe6\x83\x7d\x66\x00\xcc\x88\x60\xc8\x2c\x95\xf3\xf6\xff\xef\xb1\xb6\xd5\xfa\x84\x86\x11\xd0\x5f\x26\x97\x23\x32\xe1\x29\xb0\x90\xcd\x0b\x14\x46\x32\xc2\x99\x30\xca\xf6\xa0\xbf\xa7\x43\x76\x62\xb4\xa1\x8a\x6d\xd8\x3b\x19\xd6\x06\xc9\xe6\xdc\x2b\x6f\x7b\x46\x5b\x88\xd9\x34\x87\x32\x08\x9e\x9f\x22\x03\x45\xcc\xbf\x89\x66\x62\x3e\x44\x4c\xcb\x30\xec\xd7\xe6\xe6\xb8\x78\x2c\xd5\x90\xf4\x3e\x8c\x4d\x48\x26\x6a\xee\x43\x21\xb4\xb3\xce\x5e\x6c\x99\xd4\x87\xd5\x87\x28\xd3\xa8\x13\x19\x0d\x21\xb8\x82\x48\xe1\xfb\xe3\xc4\x71\x0c\x86\x0d\xa7\x0f\xd9\x30\x63\x7a\x80\x36\xca\x02\x1a\x60\x97\xc0\xda\xb6\x17\x26\x9a\x73\xcb\x11\x25\x40\xbc\x9a\x4a\x14\x65\x71\xda\xd5\x41\x4b\x1f\xbb\x95\xb2\x53\xec\xfd\x84\xcd\xb7\x1c\xb0\xfc\xf6\x68\xf9\xe3\xf7\xe5\xbb\x85\x7a\xc4\xf2\x7a\x73\x71\x9c\x8f\x0e\x0c\x5f\x34\xc2\x15\x1f\x5f\x6b\x60\x88\xef\x32\xa0\xc2\x18\x1d\x45\x2e\x62\x8c\x59\x18\x78\x7f\xbf\xb5\x31\x44\x60\xe8\xc5\x5e\xbd\xc7\x01\x8e\xbb\x75\x7f\xec\xa4\xb9\x3d\xe7\xaf\xd4\x34\xfe\x91\xa4\x02\x4c\x85\x05\x18\x46\xb0\xa1\xbd\xb3\x60\x20\x16\xb5\xb0\xf6\xae\x67\x8b\x35\xe8\xc4\xa4\x1a\xe2\x8f\x85\xad\x30\x33\xc1\x52\x00\x22\x2d\xd6\x8c\xa1\x7a\xaa\xfa\xa9\xb0\xe1\x0e\x3f\x93\x83\xae\x58\x51\x25\xe8\x71\x38\xd0\x6b\x1d\xa1\x21\x63\x26\x22\x3d\x46\x09\x49\x58\x02\x4d\x5e\x18\x82\x1a\xbf\x66\x09\x5c\x20\x41\x59\xcf\xa0\x2d\xc5\x17\xa2\x90\x11\xce\x60\xd4\xc0\xa0\x01\xde\xcb\x31\x11\x41\x73\x08\x76\xee\x69\x5f\x7e\x84\x4f\xc4\xfa\x52\x33\x35\x3a\x49\xe2\x16\x38\x7e\x5a\x55\x12\xe8\x49\xa5\xe7\x35\xd9\xbf\xe9\x3f\x5b\xe1\x95\x01\xac\x73\x58\xa2\x92\xe9\xfd\x9f\x57\x50\xae\x03\x1a\x3d\x9d\x55\x92\x3d\x61\xb7\x82\xc7\x26\xcd\x12\xe6\x27\x2b\x00\x1c\xe0\xbf\x58\xde\xda\x13\x58\x0a\x4d\x08\xb0\xbf\x41\xef\x71\x2e\x03\xcd\x84\xeb\x34\xea\x6b\xcd\xb1\x89\xce\x75\x82\x8d\x2d\x82\x33\x5b\x0d\x78\x4b\x2a\x21\x9a\xa4\x5e\xf1\x27\xfe\xba\xad\x6c\xca\xdf\xef\xd8\xcb\x54\xc5\xdc\xcb\xad\x8d\x9f\x48\x7d\xd4\xee\xc8\x6a\xb1\x3b\x5f\xcc\xa5\xcc\xef\xea\xa3\x5e\x15\xb3\x43\x13\x30\x89\x87\x65\xa8\x4a\x9a\xd0\x25\x13\x66\xe1\x95\xe9\x8c\x51\xa6\xc2\x32\xc5\x2f\x2b\xc0\xc4\x09\x54\x10\x3d\x83\x51\x89\xab\x0f\x58\xf3\x28\x6f\x9d\x2e\x80\x42\x8d\x9b\x8d\xea\xe9\x4a\x20\x0f\x72\x57\x1c\xbe\xf8\xfb\xaf\xfe\xcc\x81\xaa\xaa\x1f\x6e\x0c\x63\x14\xc6\x26\xd1\xec\xb3\xbd\x4a\x4e\x79\xf4\xf0\x70\x03\x18\x42\xb5\x7b\x60\xda\x09\x58\x59\x47\x96\x7f\xe7\x65\x52\x38\x24\xb7\x5b\x64\x83\x3f\x91\x84\x6c\x71\x3d\x4b\x73\x86\x31\x14\x08\x69\x21\xb2\x6d\xb5\xd9\x4d\x6c\x09\x62\x0c\xc1\x46\x82\x6b\x98\x3b\xaf\x81\xb4\xfe\x9a\xf4\x61\x8a\xc0\xdb\x01\x4e\x4b\x43\x5f\xdc\xf3\xef\x1e\xe8\xe8\x9b\x80\x5c\xa7\xb7\xe0\x58\xf7\xef\x9d\x34\xd7\x40\x96\x18\x84\x7d\x63\xf2\x0e\x1e\x28\x6f\x3e\x35\x50\x73\x49\xa3\x8c\x24\xbe\xb6\x8a\x9f\x24\xd6\x8a\x30\x95\x78\xed\x08\x6f\xd1\xfc\x44\x02\x33\x29\xbc\xfe\x9d\xec\xc5\x9c\x8b\x26\xe2\x84\xbe\xc2\x2c\x06\x0f\x2b\xd6\xc8\xf6\xa7\x34\xb6\xb4\xce\xc3\xe3\xe1\x61\x88\xcc\x28\xdd\x04\x51\x05\x74\x4c\xb2\xf4\x2a\xfb\x5a\x40\x94\x2f\xd7\x10\xc4\x70\x0d\xf6\xf6\x1b\x07\xc3\xfe\xfe\x30\x7e\x34\xcd\x52\x24\x5d\xb1\x9c\xd1\xd8\x9f\xb3\xd4\x31\x8b\x2a\xff\xf4\xae\x3f\xb4\x0a\x4b\xae\xcf\x58\x16\x8c\x25\x8c\x29\x32\x22\xb1\xca\x87\xf4\xeb\x30\x88\x8a\x30\xa5\xc2\xb0\x9c\x18\x01\xd4\x7c\x92\x41\x49\xa8\x95\x09\x0c\x6e\x70\x4d\x71\x4d\xae\xec\x00\x6b\x00\x79\xc0\x54\x0a\xbd\x99\x79\x72\xfe\x9f\x3f\xf7\x2d\x9a\x61\xbe\x03\xe5\x82\xcc\xb0\xda\x0c\x66\x58\xfd\x23\x4e\xb3\xc0\x1b\x20\x52\x47\xe3\x68\xd9\x5b\xdb\x88\x18\xae\x81\x92\x5b\xb5\x67\xb0\x75\x5b\x27\xd7\x9b\xcb\xdb\xbf\x0c\x0e\xc1\xfa\xe1\x7a\xbf\x01\xb9\xb3\x1e\x41\x64\x73\xfc\x19\x52\xfe\x3c\x1c\x23\x13\x81\xb0\xa2\x0c\x30\x57\xf2\x6e\xbe\x3b\x5f\x20\x73\xd0\xf4\x2e\x48\x1d\x30\x41\xf9\x8a\x1f\x8d\x68\x5f\x1e\x00\xba\x73\x3e\x76\x4b\x99\xa2\x95\x85\x13\xc9\x4d\x5d\xa8\xe6\xad\xb2\x9d\xb3\x30\xf2\xe6\xc2\x27\x4d\xa8\x0f\x74\x7c\xff\x06\x74\x04\x30\x9f\xc4\x5b\xc2\x5b\x40\x59\x34\xed\x84\x03\x3a\x50\x46\x3d\x3a\x84\xad\xcd\xf1\x84\x62\x9d\x00\x8d\xb4\x7e\x28\x13\xd7\x2e\xaa\xbf\xaf\x77\xbc\x7c\xa4\x26\xf3\xf6\xa8\xc6\xea\x13\xae\xf0\xe0\x51\xa2\x29\xc0\xbc\x9b\xf4\xf6\x68\x8c\x2c\x55\x97\xc5\xac\x1b\xba\xb6\x44\xdf\x29\xd4\x98\xbf\x53\x9c\x31\x7d\x8c\x21\xd1\xac\xc8\x1a\xae\xa8\xa0\x01\xe2\x69\xfd\xe5\x60\x24\xb0\xe9\xe9\xd6\xa9\xa2\x0b\xbc\x90\x26\xdf\xf9\x4a\x9a\xf1\x3d\x58\xa8\x37\xac\xed\x5b\x5d\xbd\xf9\x4a\xbe\xb7\xe8\x94\x6d\x8b\x95\x74\x90\x21\xf2\x59\x38\x60\xec\x94\xb2\x95\xee\x43\xcf\xfa\x6b\xac\x05\x13\x4a\xb5\x50\xb6\x33\x39\xb6\x0c\xc1\xb0\xf8\xf2\x8d\xfa\x18\xab\x6f\x02\xa9\x3b\x75\x99\x6a\xc5\x01\xed\x37\x5f\x11\xc9\x12\x20\x61\xff\x68\x3b\x02\xa8\x89\x0c\xe9\xd5\x96\xbc\x8d\x71\x6f\xe2\xae\x8e\xd1\xe2\xc0\x26\xe3\x02\x9a\x2a\xc9\xd9\x3d\x99\x6a\x41\x19\x69\x53\x1c\x70\xcb\xa6\x59\x75\x87\x0d\x7a\xac\xd8\xe5\x2b\x20\x94\x70\x60\x16\x08\xb3\xfe\xf6\xba\x37\xbb\xe9\x2f\x02\x2f\xac\xb1\x0a\x44\xab\x9c\x68\xc7\x34\xb7\xde\xdf\x6b\xca\x0c\x6f\xdf\x33\xad\x99\x45\x1b\x6d\x2e\xd5\x0a\xcc\x85\x54\x0d\xd3\xe1\x80\x33\xea\xe5\x73\x14\xfd\xe6\x7c\xd5\x4e\xdd\x2f\x32\x8b\x62\x1b\x17\xa8\x5c\xbb\x4d\xc3\x7b\x08\x37\x8f\xd5\x5d\xa8\xda\x17\x3e\x61\xf4\xe8\xed\xa3\x1a\x64\x2b\x3f\xf5\xa5\x03\xe1\xb8\xa8\x2b\x5b\x70\x8a\xc0\x37\x73\xb9\x32\xd9\x26\x8c\xc8\xff\x0e\x30\x01\x6f\x65\xbd\x5b\x85\xd4\x1b\x17\x08\xde\xff\xe3\x9f\xbf\x26\xd7\x3e\xba\xc5\x23\x91\xdd\xc1\x1d\x21\xd5\xba\x72\x39\xa1\x19\xb2\xc0\xc1\x99\xb8\xb9\xc8\xc7\xc3\xb5\xb9\x12\x0a\x3e\xca\x54\x8f\x41\xfa\x86\x1b\x99\x63\x38\x45\xb4\xc3\xbd\x0b\x0b\x90\xb8\xa5\xe9\xea\x80\x6b\x17\x7a\x24\xc8\x95\xcb\x25\x08\x8e\xb8\xbb\xe6\xd4\x72\x54\x95\x06\xd2\x85\x7c\xf1\x72\x8a\x05\x97\xc0\x96\x28\xdf\x03\xab\x0e\x95\x9b\x76\x4e\x0d\xc2\xae\x6c\x3c\xb0\x27\x40\xfd\x18\xb7\xfe\xf7\xc4\xbd\xf7\x3e\x25\xa5\xf1\xd3\x4a\xb9\x00\x7f\x72\x5d\xa8\x02\x3b\xf9\x32\x46\x68\x61\xdd\x94\x16\x95\xbc\xb1\x2d\x0c\x89\xc4\xed\x07\x05\x79\xd4\x03\x8d\xce\xb0\x1a\x2e\x8f\x3a\x6f\xf6\x27\xd1\x63\x3e\x74\x9b\x15\x56\xe5\x74\x91\x80\xea\xb3\xaf\xe4\x71\x88\x0d\xab\xb4\xa4\x08\x2b\x25\x99\x24\xef\xab\xec\x44\x27\x3b\x29\x7b\x0e\xce\x9f\x93\x6f\xf2\xab\x8a\x01\xa8\x65\x01\x51\xee\x06\xfa\x14\xf8\x1e\xca\x97\x65\x51\x68\xa7\x08\xaf\xf4\xef\x5f\xc3\xf5\x10\x5e\xf9\x43\x15\xd1\xd0\x5b\xcd\x63\x24\xd1\xe9\xd3\xf6\xe0\xb2\xba\x5d\xcc\x33\xad\xf4\xe5\x5d\x61\x24\x4c\xae\x24\xc4\x44\x18\x8d\xba\xed\x0a\xb8\xec\x07\x61\x1f\x37\xf0\x14\x47\x31\x93\x5b\x8a\x18\x10\x87\x20\x84\xee\xc1\x96\xaa\x18\xfa\x81\x3e\x22\xee\xc1\xac\x25\x51\x29\xac\x30\x73\x38\x79\x50\x91\xfa\x82\x71\xd1\xc5\x2f\xf3\xb8\x9d\x64\xa7\xb9\x44\x65\x91\xce\x2c\x2a\xce\xe6\xa4\xb8\xab\xc8\x25\xcb\x0b\x24\x34\x7c\xfe\x9c\x70\x43\xc5\x07\x2b\x65\xdb\x4e\x31\x99\xfb\x8f\x66\x55\x31\xdd\x63\xab\x64\xf0\xfe\xab\xb8\xb2\xa6\xfc\x47\xa3\xcd\xed\x13\x05\x60\xab\x12\xe5\x3b\x22\x60\x86\x51\x9f\x12\xef\xaf\xe2\x85\xd7\xe8\x45\xd7\x42\xa6\xdb\x2e\xa8\xda\x0a\xb0\x3f\x5f\xb0\xdd\x0a\x2c\x8b\x9b\x6a\x8f\x4e\x80\xc8\xdb\x5c\x9d\x45\x3a\xed\xef\xcf\x57\x00\x76\x7a\x06\x75\xb1\xa9\x11\x6f\xfa\x67\xc4\x51\xc1\xce\xb8\x18\xc3\x44\xb1\xdc\xa0\x01\x7a\xfb\xd7\x81\x28\xd0\x83\x50\xce\x5c\x4d\x79\x53\xcb\x70\x68\xa8\xa3\x8a\x3e\xc3\x52\xd3\xad\x58\x39\x5e\xa4\x21\x2a\xa2\xd8\x5c\xac\x26\xb4\x1a\xaf\x0c\xfb\xa1\x3f\x43\xbb\x97\x65\x3f\xb5\x7b\xf5\xf8\xba\xf4\x38\x41\x1f\xa7\xd8\x34\x1e\x70\x00\x10\xba\xaa\x1b\x9e\x8d\x02\xe9\x41\x8d\x14\x2d\x6f\x63\x27\xc1\x47\x64\xff\x18\xeb\x72\xbc\x48\xe2\xa2\xfa\xdc\x0f\xac\x02\xcd\xef\xde\xda\x28\xed\x18\xf5\x3d\x47\xf1\x7d\xd4\xbc\x3f\x0f\x6c\x68\x39\x28\xe2\xa0\x69\x94\xf5\xe7\x51\x8c\x8c\x0e\x10\xe8\xdc\x56\xe6\x7f\xa3\x58\xc7\x28\x07\xd7\xdc\xd5\xed\xe1\xa0\xa0\x2b\xb4\xa2\xa1\x92\x22\x4a\x25\x50\x88\x76\x7e\x91\x26\xe2\x40\x59\x58\xce\x72\x5a\x35\x42\x9a\x01\xc0\x36\xf6\xb7\x13\x60\x35\x9d\x98\x64\x12\xee\x30\x00\xd1\x9d\x26\xc3\x72\xbf\x01\x38\x33\x1c\xee\x3a\xb9\x86\x53\x02\xdd\xca\xa8\x70\x34\xe8\xcd\xec\xca\x5d\xb6\x0e\x5d\x38\x2e\x46\x9a\x06\x55\x40\xc0\xa5\x78\xe3\x8e\x55\xe0\x2c\xc6\xb4\x00\x30\xfa\x89\x51\x60\x71\xec\x96\x4f\x18\xb7\x86\x13\x97\x53\x27\x68\xb4\x0a\xe9\x26\x17\xb7\x12\xe1\x98\xd9\x75\x5c\x60\x59\x43\xb9\x91\x1f\x5b\x14\x2e\x4e\x97\x0a\x99\xac\x2d\xc1\xf9\xc2\x1a\x48\xcc\xa1\x9b\xe9\xa1\x8e\xce\x6a\x8f\x50\x5c\xc9\x74\xa7\x2e\xe6\x28\x58\x4c\xa1\x38\x68\x02\x51\x6a\x42\x28\x8c\x6a\x08\xd8\xb4\x18\x15\x29\x84\xc7\x6c\x66\xfb\x01\xac\x6b\x22\x04\x88\x67\x78\x94\xa3\x13\x06\x0e\x0f\x06\x8c\x8c\x49\xc0\x13\x68\x2f\xb9\x5d\x0d\x98\xd4\x76\x7c\xd5\xa5\x56\x64\xe1\xd1\xb3\x9a\xd8\x3a\xc0\xf5\xe6\x01\x2e\x71\xe0\xaa\x6a\xb4\x12\x87\x57\x92\x80\x98\xdc\x2a\x02\x74\xe1\xb5\x0f\xe1\xe3\xa2\xfa\x87\x69\x21\x04\xeb\x4a\xfa\x0a\x10\x34\x06\x9c\xaa\x8c\xba\x59\x5f\x60\xad\x3e\xb1\x0e\x2f\x7f\x2e\xdd\x3d\x40\x55\x9a\x73\xcf\xd1\xae\xa3\xce\xc0\xc4\x2a\xfd\x76\x11\x6d\x28\x78\x01\x8b\x7a\x99\x9e\xc1\x04\x1a\x89\x5d\xb8\x18\xb8\xeb\x4f\xdd\xa2\x64\x04\xf1\xa2\x2e\xcc\xea\x81\x37\xef\x29\x25\x03\xf7\x9a\x08\x87\x24\x2c\x70\xf3\x4f\xce\x80\x2b\xdb\xa0\x30\x55\xd8\x13\x99\x12\x53\x2b\x31\xd0\xe4\xde\xe1\xcc\x32\x80\xbd\xbd\xb3\x80\xfb\x1d\xb7\x82\xac\x19\xcd\xe4\x14\x3f\x79\xbf\xb5\x7b\xa3\xb5\x93\x3c\x0e\x6a\xd9\x84\xde\x9b\x8d\x40\xe3\xa6\x22\xb4\x23\xca\x0d\x1f\xc3\xb7\x1f\x7e\x07\xf2\xda\xc5\x6f\x3f\xfa\xce\x25\x71\x0d\x0e\x7e\xeb\xe2\xb7\x1f\x7c\xe7\x46\x66\xad\xeb\xa7\x7b\x32\x97\x6d\x6a\x84\xea\x5a\x18\x11\x9d\x54\xa1\x54\xb6\xaf\xe4\x9d\xaa\x4b\x0e\xe2\xfd\x41\x4a\x04\xa3\x19\xc6\x8f\xe8\xa9\x1a\x8f\x7c\xe6\x7d\xcf\x86\x99\xe4\x3d\x9f\x53\xc5\xb1\x0d\x5f\xac\xf6\xa7\x65\xfe\x2e\x72\x05\x7f\x69\x25\x82\x00\x29\x45\x85\xaa\x92\xfa\x1e\x47\x0d\x48\xc8\xe7\x10\x05\x30\x78\x25\xbc\xfe\x03\xff\xfa\x84\xe6\x46\x08\xe1\x66\xbe\x0f\x7a\x72\xb4\xf7\x02\x4d\xb1\x64\x5d\xc3\xd8\xb6\xd1\x5b\x64\x4f\x1d\x6c\x1c\xd4\xda\xd7\x8f\xfd\x9f\x57\x40\x21\x84\x39\x72\x2c\xa4\xc9\xb7\x24\x03\x47\x78\xfc\x5c\x24\x63\x0c\x81\x90\xd8\x14\x9a\x49\xd9\x26\x4c\x31\x90\x04\xfe\x13\xbe\xa2\x10\xe1\xe6\x4c\xc8\x78\xa3\xc2\x96\x15\x0d\x45\x4b\x19\xfb\xbf\x0d\x73\x3c\xfe\xef\x23\xa3\xfa\xcd\xcd\x98\xe3\xfe\x3e\xb4\x9c\x79\x14\xad\x7b\xa8\x39\x4c\x2f\x62\x88\x5d\xbf\xb2\x69\x20\x30\xef\xe8\x0e\xf9\xa8\x47\x50\x0f\x25\x56\x17\xf4\x51\x72\x28\x9f\x10\x4b\x97\x24\x7d\x49\x01\x5d\xa9\x0b\x82\xc2\x03\x0a\x66\xe3\x9e\x0a\x05\xd5\xdf\xd5\xdd\x1f\x50\x5a\x40\x71\xc4\x03\x7b\x78\xb2\xf5\xf2\x40\x5d\xeb\x35\xa1\xf2\xc5\xb4\x8a\x2c\x67\x9b\xf1\xc1\x6b\x8e\xe5\x42\xf5\x6d\xf7\xa0\xb5\xbb\x84\x52\xd1\xd2\xba\x79\xc3\x24\x7c\xf5\x6a\x82\x15\xe9\x26\xb0\x96\xa9\xf5\xb0\x37\x51\xee\xe9\xa8\xc5\x47\x1c\xe8\xde\xed\x5c\xbe\x92\x6a\x1e\xdd\x6d\x9d\x04\xc7\x52\x24\xf3\x8c\x1a\x67\xe6\x8a\x9d\xe2\x0b\x87\xfa\x1b\x9f\xa3\x72\x41\xdc\x38\xf9\x23\x00\x59\xa7\xe0\x28\xd1\xa0\xbd\xba\xd8\x1a\xfb\x39\x06\x80\x06\x5c\x3e\xd6\x23\x47\x30\x03\x04\xa4\xef\x86\xe4\x03\xb4\x22\x87\x4f\x2a\x86\x4f\x9a\x16\x97\x84\xc2\xb0\x22\x65\x72\xf7\x41\x42\x2b\x92\xc6\x11\xf1\x07\x30\x8c\xb2\x21\x27\x42\x46\x7c\x00\x82\xa5\x58\xb0\x01\xcf\x02\x25\xca\x33\xa3\x0e\xc8\xac\x9c\xdc\x8f\x76\x9f\x8a\x72\x16\x71\x28\x8a\x4a\x86\x3b\xa8\x94\x01\x32\xe3\xe8\x12\x8c\x26\x39\xf0\x77\xe7\x44\x3d\x9a\xbe\xe7\x4d\xdc\xed\x00\x29\x13\x21\xf0\xc6\x3e\xba\x42\x58\x33\x6c\xcf\xbf\x0c\xcc\x77\xd4\x00\x12\xef\xf4\x6c\xeb\xd5\x1b\xf1\xd1\x18\x4a\x20\xc7\x7d\x84\x9a\xef\x06\x8d\x0e\x13\x8c\x79\xa3\x23\x4a\x59\x8d\xf4\xcf\xff\x4b\xd7\x61\x18\x39\x0d\x45\xd9\xc5\x5b\x41\xf5\xb5\x30\x04\x30\xee\xb2\xed\x56\x0b\xa8\xa4\x81\x10\x3c\x76\x82\x17\xbf\xeb\xb7\x61\x0b\x05\x10\x95\x3e\x94\x32\xc8\x6e\x22\x5d\xf1\x70\x6e\x4d\x98\x7d\xea\xcb\x47\xa8\xbe\x93\x01\x91\x03\x95\xd0\x48\xc7\x89\x86\x08\xd8\x98\x22\x46\xe1\x9a\x99\x9f\x80\x61\x19\xde\x72\x33\x86\x14\xe9\xd8\x40\xd3\xdb\xa3\xfb\xc6\x59\x0d\xec\xeb\x7d\x6a\xf0\x7d\x3c\xb0\x73\xc2\xca\xfe\x81\x7e\xe0\x66\xfe\x5e\x63\x2c\x24\xcd\x87\x74\x6f\x06\xa0\x9d\xaa\x0c\x70\x74\xb5\x6e\x6f\x84\x8e\x71\x38\x3a\xc3\x1a\x2c\x86\x97\x7d\x8c\x77\xb1\x14\xdf\xa4\xbf\x2d\x69\x14\x6f\xc3\x49\xe1\x47\xba\x50\x75\xd2\x6f\x97\x7b\xd5\x99\x2d\xa6\x6c\x12\x16\xfe\x23\x88\x0d\xbf\xb1\xbf\xb3\xba\xb3\xf4\xa4\x32\xdd\x78\x36\x63\x86\x37\x0e\x43\x64\x86\xa9\xc2\x0b\x4c\x20\x56\xd6\xc3\x9a\x7a\x50\x8e\x3a\xbf\x9b\x0a\x28\x59\x25\xee\xd2\x27\x2b\x50\x08\x4d\x8e\x4c\xdc\xe6\xb9\x6a\xa0\x1a\x98\x34\x47\xcb\xf0\x47\x33\xdc\xc9\xc0\x0e\xc9\x32\x04\x60\xd2\x8a\x94\xe1\x99\x64\xb4\x28\x7c\x9e\xb6\x32\x7f\xa7\x0d\xcd\xd5\x40\xaa\xcc\x00\xf9\x93\x1f\x33\x52\x4f\x27\x48\x02\xa9\x0d\xe3\x3f\x0d\xe7\x03\xa5\x96\x41\x3e\xc3\x4c\x06\x43\x46\x99\x41\x0d\x4e\x60\xf4\xd6\xa3\x97\xde\xd2\xb4\x31\xe6\xbc\x0b\x4c\xc0\xce\x5e\xc6\x98\xdf\x48\x27\x9c\xe3\x4b\xe8\x7f\xe4\xe7\xe6\xd6\x10\x87\x11\x45\x4c\x54\x5e\xed\x0d\x60\xcb\xc8\xb0\x20\x04\x9b\x29\xa6\xc9\x23\x40\x33\x8f\x38\xbe\xbd\x9d\x87\xcd\xa9\xbd\xf8\xa4\x38\x8f\x42\x07\xf4\x42\x8b\x64\x75\x8f\x34\xca\x5e\x61\x73\xe1\x79\x0f\xf2\x90\xd9\x95\xc7\x16\x5d\x22\x9e\xf0\x14\x29\x12\xfd\x37\xf6\x1a\xf8\x42\x24\x4e\x43\x9b\x0e\x81\xd1\x0f\xbf\xc1\x84\x33\x1b\x3f\x79\x23\x2f\x78\x00\x51\xfa\x08\x73\x8d\xa4\x9d\x4c\xf4\x58\x2d\xca\x5e\x23\x70\xb2\x3a\xba\xa9\xef\x79\xb9\x4d\x4e\xc3\xe9\x6d\x38\x88\x47\x9c\x01\xc0\xda\xa8\x55\x26\x00\xb2\x94\x6f\x85\x39\x50\xed\x1f\x2e\xe6\xde\x1e\x8d\x99\xb8\x61\x4c\x98\x94\xaf\x31\xf1\x3d\x05\x45\x68\x5b\x1e\x99\x8d\x24\x18\x2c\x50\x7b\x8d\x72\x53\xdb\x37\xc4\x7e\x03\x22\xa4\xee\x1b\xa2\x7f\x14\x24\xc7\xec\xc5\x4d\x28\x47\xf3\x70\x15\x28\x80\x34\x2f\x36\x11\xd7\xb6\x30\xd7\x96\x98\xc8\x22\xe3\x49\x29\x79\x3a\xda\x45\x2a\xa9\x6d\xfb\x2a\x1c\xb9\xdd\x7d\x76\x86\x72\x12\x10\xcb\xd5\x53\xc5\xa8\x8c\x07\x2f\xbd\xf5\x63\x6f\x71\x4f\x2e\x2f\xb0\xc7\x9b\x4e\x79\xf1\x5e\x04\x7d\x98\x6c\x3b\x19\x5d\x5a\xc4\x6a\xaf\xde\x0b\x15\xf0\x96\x11\xc3\xb7\xf9\x5d\xcf\xdb\x98\x31\xba\xba\x28\xbb\x12\xb9\xba\x42\xb3\xb4\x31\x06\x98\x2c\x70\xa1\x02\x9d\x29\x43\x9a\x43\x59\xb6\x1f\x24\x6f\xb3\x55\xed\xbe\x52\xd7\xec\x26\xd8\x57\x8b\x3e\x9d\xdf\x0d\x40\xc3\xef\xf5\xf7\xbf\x97\xcb\x91\x9f\xcb\x3b\x5e\xd5\x49\x8f\xa2\x08\x08\x02\x28\x15\x0a\xd8\x3d\x26\xd6\xa2\x40\x94\x31\x6a\x1a\x72\x5e\x32\xe2\x10\xc0\x58\x27\x89\x8b\x85\xb5\xb9\xf9\x08\xa6\xeb\x2f\xb0\xcd\x13\xd1\x87\x8c\x9b\xdc\x04\x18\x7a\x5e\x7f\x16\xac\xdf\xcc\x08\x46\x01\x69\xc3\x0f\x48\x66\xc7\x8b\x2a\x2c\xc2\x9c\x44\x58\x6a\x36\x4a\x42\x62\xe5\x99\xc3\x4c\x9c\x3f\xc9\x82\xe4\x26\xa6\x13\x8d\x37\x36\x46\xc9\xdc\xa9\x45\xd1\x11\x11\x4f\x03\x7a\x54\x97\x7b\xe3\xa0\xd1\x90\x58\x55\xe5\xff\x4e\x44\x4d\xea\x28\x36\xbd\x04\x19\x55\x27\xd6\x14\x2f\x77\x24\x4d\x67\x17\xe7\x0a\x73\x53\xe1\x9c\x76\xba\xd8\x48\xe4\xe1\x68\x4d\x8d\x52\x78\xf0\x65\x16\x05\xd7\xe7\x38\x97\x75\xdc\xe9\x3f\xdb\xdd\x56\xfb\xd6\x13\x6f\x7b\xc6\x80\xe8\xcd\x57\x42\x40\x98\xaa\x2e\x06\x04\xa2\x6b\x3e\x6b\xa4\x16\x4d\x1e\x54\x0e\xc5\xe7\x72\xfa\x6f\x64\x05\x9e\x7c\xde\x5e\x78\x22\x51\x22\x78\x49\x42\x43\x25\xe4\xac\xd5\x65\x12\xf3\xae\x3b\x92\xc0\x9d\x64\x14\x49\xd8\x38\xfa\x93\x7e\xd3\xc5\x07\xed\x72\x8a\x5d\x7c\xd0\x4d\x57\x40\xcc\x76\x7b\xf0\x58\xa3\x7b\x5b\x02\xce\xe1\x12\x4b\xd7\x13\x00\xa3\x27\x3a\xe6\xea\xa2\x41\x53\x7d\x90\xeb\xf0\x68\x61\xb7\x69\x38\x21\x52\x10\x8c\x56\xbb\x6b\xdc\x3d\xd3\x1d\x50\xae\x58\xba\x9e\x89\x72\x93\xcb\xde\x7a\x0c\xcd\x30\x9c\x71\x3a\xda\xc6\x3c\x0a\x39\x8c\xd5\xf0\xd0\x06\xcb\x64\x2a\x86\xb0\x8e\xca\x31\x17\x01\x30\xf7\x8b\xf4\xc3\x11\x4e\x14\xae\xd4\x1e\x1c\x81\xb9\x49\x86\xa2\xfd\x31\x7f\x70\x09\x44\x2a\x10\x81\xe0\xd8\x0c\x4f\x40\x63\x08\xb3\xb1\xc1\xb6\x48\x7f\x90\x7a\xcf\x0a\x54\xfb\x30\xa2\x9a\x75\xb1\x38\xa9\x0c\x41\x13\x02\x73\x74\xbf\xb1\xbf\x8a\xf9\x0f\xa2\x31\x7a\x9d\xfb\xf9\xf0\xec\x7e\x70\x41\xee\xed\x06\xd7\x5a\x55\x8e\x1b\x9d\x88\xc1\xec\x4a\xdd\xb8\xc1\x28\x88\x0e\xdd\xe2\x79\x21\x06\x02\xcc\xe5\x42\x77\x22\x38\xe4\x93\x99\x07\x9a\x2c\x38\x21\x81\xd1\xfa\x7f\x8b\x63\xdd\x44\x13\xa6\x12\xe2\x98\xc7\x70\xac\x18\xb4\x65\x04\x63\x83\x4c\xfb\xe0\xa1\x5f\xbf\x1f\x1e\x58\xa4\xb9\x0f\xcd\xe6\x30\x42\x82\xfc\x7c\x41\xc4\x9e\xd0\xc9\x84\x37\x31\xec\x8f\x3f\xe3\x6c\xd7\x24\x53\xff\x32\x38\x64\xa9\xd3\x7c\x48\xac\x85\x28\x54\x29\x66\x93\x14\x38\xd9\x69\x10\x14\x59\x10\xac\xbf\x19\x6a\xc5\x91\xd6\x92\x57\xac\xb6\x80\x04\x6c\x50\x1e\x10\x96\x04\x0e\x86\x73\x29\x4b\x1e\xcd\xe3\x67\x98\x06\xa9\x36\xd3\x1c\x7f\xd6\x7c\x3a\xae\xf7\xc5\xbb\xc7\xf2\x61\xe2\x58\x38\xba\x8a\x07\x82\x1c\x64\x06\xd3\xbc\x85\xc2\x17\xc3\xa3\x78\x77\x3f\x1f\x99\xb4\xe8\x5f\x7f\xd1\x7a\x3c\xc4\xc4\x14\x0e\xbe\x52\x17\x36\x31\x7b\x9b\x04\x4a\xf1\x81\x68\x22\xc8\x74\x85\x9b\xa1\x7d\xe1\x51\x44\x38\x69\x10\x2e\x69\xf0\xd2\xd8\xcd\xa1\x38\x55\x8b\xc5\x0f\xa0\x82\x88\x3e\x0d\xd5\x9f\xb9\x0c\x72\xab\x62\x95\x72\x69\xc2\x60\x98\x49\x0d\x72\x38\xac\x8a\x12\xd2\x2c\x55\xdd\x8f\x8d\x0f\x25\x1c\x03\x19\x8a\x7d\x8c\xf5\x82\xb1\xe4\xc1\xc9\x88\x29\x24\x28\xaa\x5c\x6e\x07\x25\x1c\x8f\xd1\x0a\x81\x6d\x89\x46\x62\xde\x5d\xd1\xd5\xc3\xc3\x2b\xdb\xfd\x0e\x65\x2e\x4b\x68\xc4\xbc\xbb\xae\xab\xeb\xdb\x08\x78\x47\x11\xf6\x2d\xed\x9a\x70\x9b\x74\x05\x3e\x4f\xf7\x9a\xd3\x9c\xad\x29\xe1\x1a\x3c\x30\x2f\x11\xb8\xd5\xad\x66\x50\xfd\x38\xf7\x18\x2a\x30\x72\xb5\xfd\xb0\xc3\xb0\x71\xe2\x57\xed\x6e\x3c\xf9\xe5\xf6\x4d\xb2\x74\x40\xa2\x01\x9f\x04\x41\x39\x87\x74\xe1\x4d\xf2\x9d\x13\x6f\xe7\x3e\x06\xca\x53\x4c\x76\x63\xff\x26\xc6\xaa\x83\xc0\x36\x31\x8a\xd7\xdc\x0e\xc7\x31\xe3\x28\x6c\x9d\xdd\x03\xfe\xc2\x59\x4c\xe8\x86\x8e\xf5\xd5\x5f\x2e\x7d\x6d\xe9\xcb\x98\x1c\x99\x70\x76\xd0\xcd\x3f\xf3\x78\x5d\xcb\x48\x85\x2d\x59\x33\x29\xdb\xbc\x16\xd2\x8c\xf1\xcb\x1c\x63\xf7\x24\x12\x27\x1b\x05\x8e\x5e\x95\x30\x30\xc0\xa2\x85\x84\x4a\x4f\xf1\x2d\x7a\x53\x54\xc4\xf0\x3e\x0e\x82\xa1\x18\x88\x24\xc9\xb1\x73\xb7\x8a\x7e\x8c\xfe\xa2\x02\x64\xb4\x72\x97\x52\xa1\xc5\x92\x22\x26\xa1\x04\x30\x17\xa4\x25\x54\xf4\x40\x26\x3a\x9c\xeb\x08\xc7\x5a\x04\x06\x6b\xbd\x54\x17\x59\x63\x30\x25\x4e\x43\xa3\x72\xd0\x74\x6a\xaa\xdb\xc9\x0d\x48\x77\x8d\xe3\xdb\x09\x92\xa7\x64\x28\xd7\x72\x27\x52\xf6\xdc\x73\x79\x70\xe1\x59\xeb\xf0\x29\xda\x31\x4e\x1e\xe0\x26\x52\xc9\x3e\xe5\x60\xdd\x3f\x64\xc2\x43\x36\x42\x99\x13\x51\x96\x13\x84\x61\xc8\x4e\x98\x16\xa4\x3f\x32\x99\xcb\xd2\x12\x4b\x96\x5e\xd1\x2c\x80\x97\x56\x35\xdf\xe7\x58\x7a\xff\xd1\x9b\xc6\xc9\xb8\xba\xfc\x89\x41\x0d\x3c\xd3\xc0\x41\x41\xec\x5c\x56\x68\x79\x06\xe4\x17\x6e\x90\xdb\x61\x1b\x4c\xf3\xc9\x61\x73\xe1\x18\xe9\x76\xf1\x19\xc6\xf6\x4f\xef\x26\x0f\x8d\xe2\xa4\x65\x06\xe2\x5f\x88\xc1\x28\xef\x9c\x0c\x9b\xda\x8c\x33\x7e\x81\x16\x09\x9a\x61\x63\x12\xb4\xc1\x05\x44\x80\xa5\x24\x12\x30\x77\xd8\x98\xad\xd3\x51\x31\x46\xe2\x56\x55\xb6\x48\x6d\x4d\x6d\xed\xac\xb6\xef\x0d\xf3\x1e\x57\xcf\x3e\x48\x02\x31\x6f\x66\xd6\xdc\xef\x2a\xb5\x8d\x96\x8e\x75\x52\x46\x38\x59\xb5\xed\x8e\x6f\x6d\x83\x52\x00\x6a\x33\xa8\xef\xff\xf3\xd2\x5f\xbe\xe4\xeb\x62\xd4\xef\x8f\xef\x5d\xbd\x7a\xf5\x3d\x94\xb1\xde\xab\x96\x0b\x76\x11\x3f\xe6\x64\x4c\x9c\x44\x48\x2e\xa5\xc1\x98\xfe\x9d\xb8\x88\x65\x20\x4a\x48\x9d\x32\x45\x87\x53\x2e\x99\xe7\x14\x2e\x8b\x99\x10\x9f\x8d\x05\xa6\xea\x63\x67\xcb\xb6\xba\x15\x16\x5b\x39\xb7\x90\xc9\x5e\x0e\xae\x7b\x4b\x24\x68\x94\x0c\x18\x2a\x0f\xdd\x71\xde\xea\x07\x27\xfe\xa3\x51\xce\x5b\x1d\x81\x61\x67\x14\xbb\xa1\xd4\x1b\x08\x1a\xc4\xbe\x62\x07\xd1\xff\x92\x26\x93\x6e\x25\x4d\xf8\x8b\x0f\x5a\x1b\x8f\x61\x31\x0d\x7e\x87\x7c\x8d\x56\x9a\x52\x0b\x45\x1a\xa1\x48\x40\xa7\x58\x18\xa0\x64\xb5\x84\x1d\x59\x35\x2c\x51\x84\xc3\xf5\xc3\x64\xcf\xf5\x29\xeb\x1a\xfc\x59\x1e\x20\xf7\x04\xb1\xb0\x9b\x37\x0d\x91\x77\xd0\xab\x8d\x06\xf2\x2e\xc8\x7c\x28\xbe\xd7\x66\x63\x0d\xf1\x75\x70\x49\x4c\xe9\xcd\x1e\x63\x06\xd2\xd1\x2d\xef\xcd\xf3\xc6\x7e\xdd\xdb\xd9\x8b\xc3\x9b\xe6\xa8\x0e\xa5\x66\x4e\x5c\xf6\x60\x60\xa8\xae\x78\xcc\x12\x10\x21\xe4\x91\x8c\x24\xcd\xe8\x44\xfa\x89\x82\x72\x42\xc1\x94\xe4\xc4\xa1\x3b\xe1\xb1\x52\x9d\xeb\xed\xf8\xb6\x79\xcc\xca\xc1\x3b\xff\x5a\xf2\xc0\x70\x86\x04\x5a\x47\x10\x0a\x8c\xa5\x0c\xaf\x00\x72\x00\xda\xfe\xf1\x33\x27\x76\x0d\x31\xca\x62\xb4\xfc\x40\x2c\x26\xf9\x48\x15\xd0\x4e\x5d\x74\x14\x40\x45\x88\x56\x5d\x9c\x75\x6a\x73\x8c\x0a\x9e\x9e\x79\x4c\xa0\x83\x8e\x0d\x0e\x54\x21\xec\x62\x92\x4a\x7a\x5e\xc7\x94\x68\x78\x93\x0a\x69\x4b\x48\x79\x08\x25\xbc\x81\x02\xbe\x88\x17\xca\xf8\x1e\x38\xab\x23\x7c\x05\x35\xe4\x7b\xbe\x84\x55\xd8\xa1\xff\x60\x04\xa6\x14\xc6\x33\x37\xc8\xb7\xb0\xd4\xfd\xab\x48\x61\x24\xf9\x7e\x74\x33\xf7\x65\x8a\xf8\xe8\x4b\x7b\x75\xb6\x3d\x14\x56\xd6\x4b\x05\x67\xc0\xbc\x5f\xcc\x99\xc6\xf5\xdd\x58\x73\x5e\x01\xb0\xba\x73\x9d\x0c\x4b\xe1\xc6\x41\xbb\x28\xea\x51\x4a\x4f\x14\xd6\x59\xb2\xa4\x20\x5d\xb3\x76\x44\x2d\x0e\x99\x71\x13\x06\x1b\xb9\x22\x1b\x63\x86\xe1\xeb\xbc\x66\x47\x89\xd7\x79\xcd\x6a\xef\xb8\xd3\x1b\x6f\xcb\xb8\xd3\x1b\xc2\x56\xfc\xae\xae\x59\xb7\xc3\x65\xdd\xa4\xb9\x46\xad\x95\xc9\x48\x4f\xa8\x10\xb5\x59\x1a\x15\x03\x9b\xa5\xb2\xe0\x48\xca\x78\x65\xb3\x8c\x68\xe5\x9d\xe5\xcf\xa4\x7e\x75\xb0\x7e\x6c\xc0\x21\x2b\x66\x2e\xdf\xd3\xd3\xd5\x5d\x76\xae\xba\x78\x19\xb6\x5a\xce\xc2\x9a\xbf\x9a\x6e\x6d\xd4\xd4\x79\x43\x00\xe8\x69\xc6\x6b\x6b\xb5\xd7\xad\x9b\xd7\x9a\xd7\x0e\xe4\x33\x7b\x29\x25\x2f\x84\x72\x52\x52\x09\xf9\xfa\x22\x49\xb3\xc9\xab\x01\xf2\x03\x6a\x3f\x74\xba\x0a\xac\xdb\xe7\x5c\x4d\xe3\x5f\x74\x89\x17\x16\x8a\xa5\x36\x92\xd7\x9a\xf5\xe5\xd6\xce\x8a\x02\xc4\x62\x41\xe8\xf0\x73\x7c\x95\x43\x9d\x30\x96\xc4\x63\xf0\x73\x2e\xa0\x69\x01\x5b\x9a\x3b\x30\xae\xe2\x29\xab\x88\xaa\x70\x91\xbc\xba\xfe\xf4\x2d\x6f\xd8\x30\xc4\x80\xcc\x1f\x81\x60\xec\x69\x08\x85\x2f\xd8\xe5\x8d\xc3\x09\xd0\xe0\xe9\x2e\x03\x7d\xa3\x10\x6d\xce\x1e\xc3\x17\xeb\x25\x3a\x5b\x87\x82\x77\x75\x08\x09\x57\xc5\x1c\xc5\x4f\x7f\x4b\x40\x0f\x52\xec\x58\x2d\x80\xc8\x95\x33\x3d\xa0\x1f\x4c\x8e\x35\x37\x4f\x83\xaf\xa5\xb2\xad\xaa\xb5\x57\x25\x17\x79\x50\x0a\x38\x43\xe4\x37\x37\x5f\xd0\xfd\x61\xf5\x39\x14\x74\xa2\x3e\x66\x50\x67\xc0\x97\x0e\x30\x49\x96\x31\xc6\xc6\xc1\x38\x9a\x2c\xde\xfc\x6c\xa2\xfc\x62\x2e\xc0\x5b\xc4\x41\x8e\xb9\x1b\x2e\xba\x96\x0a\x6e\xd0\x43\x21\xf2\xe2\xac\xa9\xfe\xe1\x8c\x22\x30\x55\x5c\xc9\xf4\xca\x33\x41\xa1\xe8\x9c\xa0\x98\xe4\x41\x33\x12\x21\x5c\x57\xbd\x92\xc1\x11\xdc\x98\xa7\x2b\xb8\xf8\x10\x8a\x65\x40\x1f\x10\x9f\xfe\x91\x95\xd1\xaf\x7a\x10\xf2\x85\xf3\x29\x18\x25\x1d\x5e\x05\xb1\x3c\xdd\xaf\x38\x53\xf8\x04\xf9\x22\x53\xbe\x9c\x73\xae\x16\xe9\x10\x61\xec\x2a\xa5\x4a\x35\x73\xb5\x4c\xc6\x73\xfa\x1a\xc5\x3f\x05\x24\xa2\x33\xf2\x4e\x0d\x95\x9a\xd5\x1b\xb0\x0d\xe3\x03\x30\x43\x98\xb5\x9d\x32\xda\x0d\xca\xba\x94\x2b\x9e\x7c\xde\xc0\xdf\x5a\xc7\xc7\xf2\xfa\x56\x94\x6a\x44\x84\x3c\x5d\xd0\x57\x8c\x34\x19\xa9\xb7\xe7\x12\x2a\xa9\x6b\x82\x4a\xdd\xf0\x66\x6f\x36\x97\xd7\x83\xfc\x7e\xf5\xc3\xd6\xce\x0e\x5a\x29\x17\x9f\xe1\x36\x62\x94\xde\xbc\x83\xa9\xef\xe6\x96\x1b\x87\x1b\xcd\xa9\x5d\x6f\xf5\xba\x91\x8d\x51\xf7\x81\x59\xa5\xdc\x3e\x59\x85\xe8\x08\x28\xc9\x3c\xef\x03\x8e\xef\x8a\xee\x06\x52\x0d\xd5\x7e\x90\x25\x60\x22\x16\x25\x38\x4a\x6e\xe9\x4c\x01\xef\x04\x0e\x48\xb6\x34\x93\x52\xcc\xc3\x87\x49\x46\x6c\x76\x3c\xb4\xfb\x37\x8c\x3c\xfd\xe7\xcf\x7d\xeb\x94\x7b\xbf\x33\xd2\x5d\xaa\x34\xf1\x46\xaa\x4b\xb3\x34\x72\x65\x96\xc1\x30\x2e\x93\xb2\x39\xe3\x45\xaf\x9d\xc1\xe6\xf2\x36\xda\xe4\x77\x6f\xfb\x37\xa6\xf9\xbe\x2c\x59\x0f\x27\x29\x67\xea\x35\x7d\xff\x27\x78\x89\x4e\x25\xf0\xa2\x1b\x3a\x2c\xb9\xd1\xf3\x6e\x68\x7d\x65\x47\x0c\xa6\x67\x28\xd9\x4e\x09\x79\x82\x61\x7c\xa2\x6c\x88\xf8\xf8\x95\xeb\xf4\xdb\x14\x3d\x7e\x6d\x90\x5e\x2e\xb8\x8b\xc1\xa3\x14\xde\xc7\x59\x39\x5d\x35\x21\x4a\x95\x89\x09\xb5\xae\x52\x2a\x72\xb4\x71\xe1\x25\x9a\x49\xd5\x1e\x17\x84\x53\xbb\xed\x6f\x25\xdc\x5c\xc2\x56\x43\x0f\xe9\xa9\xa6\x11\x57\x9c\x12\x80\x07\x2a\x9e\xe3\xe4\x74\x9d\xf2\x5d\x22\x28\xf0\x7b\x0c\x5e\xd3\x6c\x24\x5d\xc1\xae\x24\xfe\xf0\x97\xd6\xd9\x9a\xc5\x39\x02\xbd\x61\x20\x80\xdb\x3c\x9d\x20\x29\x29\x76\x10\xdc\x3f\x1b\xf4\xa6\x01\x7a\x89\xbb\xe2\x60\x5b\xe9\x1c\xce\xea\xa1\xfb\x1c\x6c\xab\x2e\x5d\x52\x7d\xbc\xa7\x93\x77\x5d\x2d\x19\x04\x37\x50\x61\x18\x5c\x15\x13\x4a\xbc\x11\x1b\x35\x7b\x98\xb6\xc7\x9a\x87\x1b\xa4\xb8\x25\xe7\xae\x33\x48\xec\xef\x4e\x5f\x67\xb4\xf1\x8e\x3b\x9f\xc1\x8b\x82\x54\xe7\xb7\x3a\x3e\x83\x9c\x6d\xd2\xe7\xf0\x66\x58\x5c\x4e\x7e\x15\x53\x17\x77\x48\xe1\xf6\x0e\x0f\x64\x87\xb1\x86\x81\x83\xbc\x1a\x06\x74\x67\x15\x47\xdc\x97\x40\xa7\xbf\xd5\x7b\x29\x14\xdd\xd1\x7b\x99\x9c\x39\x4c\xf0\x45\x99\xc3\xde\xa5\x78\xa5\xcc\x74\x94\x71\xb5\x2c\x29\x35\x42\x27\xd8\x77\xe7\x48\xd0\x33\xd2\xd6\xd3\xdf\x92\x23\xa1\x83\xa3\x20\x31\x59\x42\xa7\x31\x22\xaf\x90\xe7\x68\x18\x49\xa1\x8c\x09\x49\xd0\xea\x6a\xaf\xc0\xff\x9d\x69\x13\x92\xcc\xec\x18\xc5\x44\xb7\x4b\x59\xb3\xc0\x04\x41\x31\xbb\x33\x3f\x68\x57\xdb\x0b\xd2\x91\xee\xa3\xd7\x4b\x63\x4b\x88\x85\xb8\xa5\xc6\x96\xec\x3f\x61\xb6\x7c\x52\x66\x55\x66\x4c\x61\xbb\xe1\x42\x1d\xdb\x45\x09\xca\xd8\x2b\x66\xc0\x94\x29\xd3\x7b\x8a\xbf\xc7\x5a\xe0\xd2\x70\x13\xdc\x59\x00\xc4\xde\x25\x23\xce\x5c\x15\x88\xd7\xc3\x5f\xd8\x01\x9e\x1a\x6d\x1a\x16\x3a\x6b\xe3\x0d\xf7\xfb\x33\xad\xf9\xe9\xd6\xe1\xd3\x46\xfd\x38\x28\x65\x87\x4c\xca\xcc\xdb\x1b\x14\xc2\xe1\x8d\x65\x94\xf2\x55\x3f\x69\x22\x65\x72\x84\x69\x93\x18\x49\x46\x98\x59\x95\xce\x32\x0a\xa6\xc5\x0a\x28\x9b\x6a\x27\x0c\x73\x3c\xe2\xad\x91\x66\xf0\x19\x0c\x4e\xe4\xc2\xf5\x29\xc7\x2a\x9e\x80\x5d\x98\xc2\x54\xf2\x97\xaa\xb3\x8a\x0b\xcc\xc1\x85\x4b\x50\xc4\x90\x0c\x3c\x30\xb4\x3a\xda\x2a\x89\xb5\x27\x94\x6b\x84\x1b\xc7\x09\x0a\x52\xe4\xbe\x93\xfb\x9f\x98\xa1\x0e\xaf\x03\x23\x0b\x7c\xfe\x30\xc8\x5d\x6b\x64\xbe\xa1\x66\x49\xda\x54\xfd\x7a\x23\x0b\x98\xe5\x2f\xd4\xaf\x09\xf0\x2b\x3a\xfe\x65\x70\x48\xee\x21\x2b\xef\xc8\xbb\x46\x20\x6f\x50\x0a\x03\xe3\xf4\xa3\xa1\x11\x98\x00\xbf\x65\x04\x98\x34\x9e\xed\xb8\x30\x14\x7e\x24\x6c\xf8\x35\xc8\x2b\xa6\x54\x83\x37\x12\xa8\x91\xa4\x91\xa9\x0b\xd9\xc1\xc1\x1b\xba\x99\xcd\x40\x41\xc0\x0c\x81\xa8\xf3\x83\x0b\x89\xf8\xdd\xd8\x91\x1e\x24\x0a\xe1\x09\xec\x1e\x9c\xbd\xad\x2d\x3e\xee\x4d\x6d\x9f\xee\xff\xcf\x41\x4d\x75\x44\xbe\x31\x55\xaf\x48\x00\x4a\x98\x3f\xf0\xd0\xb4\x40\xc6\x33\x93\x4d\xc4\x65\xc9\x07\x64\xd2\x04\x55\xba\x1e\x96\xd0\x8c\x24\x3a\x21\xda\x46\x43\x0b\xc9\x36\x6a\xcf\xf3\x6a\x24\xf4\x6c\xb4\xa7\x74\x2d\x46\x51\x88\x5b\xc7\x61\x0d\x1b\x4a\x72\x8e\x1e\x3a\x48\xf5\x42\x9a\xa7\xd0\xd9\x0c\xdc\x1c\x24\x3a\xec\xaf\x1f\x23\x73\x5e\x7b\xee\x4d\xd5\xd1\xe5\x19\xc9\x0c\x1d\xcb\x2e\x15\x1b\xa8\xb6\x35\x91\x5d\x37\x34\xb9\xe0\xa4\x36\x76\x7c\x5c\x1a\x54\xb4\xc8\x89\xad\x60\x0c\xe1\xfd\xa5\x69\x80\x99\x88\xa1\x82\x2b\xba\x89\x4c\x09\x9d\x35\xa4\xb4\x44\x38\x07\x3e\x42\x33\xbd\x05\xad\x18\xa1\x07\x26\x4b\xf8\xf7\x1b\x99\x69\x54\x61\x16\x14\xca\xec\xd3\x81\x63\xbc\xa3\x7f\x14\xbd\x29\x17\x4b\x64\x53\xfc\x3a\x84\xd0\x08\xe3\x9c\x84\x5f\x15\xd6\xcc\x84\x52\x7c\x93\xb1\x58\x79\xe0\x8d\x51\x86\x14\x1b\xee\x42\xe9\x36\x91\x5d\x61\xbc\x77\x6d\xee\x8c\x30\xb4\x04\x21\x50\x60\x18\x1f\x7c\xf1\xd6\x8a\xa0\x97\xa1\x8e\x8a\x46\x00\x95\xb3\xdd\xdb\x5b\x6a\xed\x4a\xac\x80\xc9\xed\x82\x8c\x0c\x62\x19\xd5\x99\xc4\x83\x74\x34\xea\x81\x18\x42\xf8\x77\x9d\x1f\xc1\x47\x7f\x96\x7a\x3e\x5c\xa5\x42\x30\x1f\x61\x57\x82\xa9\x2a\x4b\x48\xe7\xad\x8a\x30\x55\x00\xde\x95\x55\x12\xbc\x91\x07\x5d\x81\xf0\x0b\x72\xa1\xa7\xe3\x54\x91\x04\xe4\xa4\xe4\x09\xa4\xe9\x19\x7c\x58\x56\xe5\x66\x70\x8a\x79\x8a\x17\x51\xef\xc4\xc2\x1c\xd4\x04\x40\xa8\x74\xf1\x99\x9a\xde\xe0\xc1\x7f\xca\x50\x48\x5f\xfc\xc5\xa7\xf4\xa5\xe2\x54\x40\x22\xf1\x07\xeb\xad\x9d\x15\x4c\x92\x9f\x23\xeb\xa8\x42\x09\xd9\x1e\x01\xf7\x28\x6f\x71\x0f\x64\x98\xd4\x76\x4c\x0d\xe7\x94\xec\x72\x28\xd9\xb6\x7e\x75\x20\xd4\xda\x00\x2c\x63\x3f\xd9\x3b\xab\x6a\x3e\x30\xe6\xd6\xc6\x48\xf3\xe6\x6b\x1f\x3d\x4a\x09\x3d\xa7\xf3\xc5\x1e\x47\xde\x14\xd0\x0f\x6d\xd3\x30\xf0\x0e\x4e\x37\x59\xe4\xe8\xc5\x27\xfd\x3a\xdf\x84\xf1\x75\x7f\x4b\x47\xc7\x85\xbe\x72\x52\xc7\xe8\x57\x1d\xcf\x94\xf0\x95\x53\xa0\x44\xcb\x5a\xaf\x1e\x86\x3e\xe1\xfb\xeb\x2b\x70\x8a\x1d\x86\xbf\x2e\xad\xf0\xc6\x64\xaf\x4e\xa8\x0c\xf3\x31\x53\x98\x5a\xac\x1d\x0a\x59\x8b\x4d\x27\x9c\x6c\x31\x5c\xc6\xb2\x5d\xe2\x40\x39\x6f\x50\xac\x86\x61\xef\x8c\x95\xf1\xe3\x9b\xf4\x82\x6a\xa8\xc0\x90\xeb\x63\xbd\xa8\xc8\xe1\x68\x01\x1b\x92\x62\xe0\xd4\x48\xa3\x0e\xfb\x78\x25\xb6\x42\xb4\xa9\x63\xed\x48\x60\x6d\x52\x8d\xf6\xc2\x0d\xe5\xa9\x4d\xa0\x4c\xb1\xb2\xca\x31\x28\x2f\xb1\x27\x80\xf1\xa3\x85\x74\xd3\x60\xf8\x45\x32\x48\xb9\x8a\x6a\xf8\x06\x59\x9c\x83\x72\x0c\xd1\xc7\x1b\x1f\x94\xaa\xd2\xa1\xec\x50\x70\x4e\xa3\xe4\xb7\xb8\xc5\xf9\x29\xcd\xb5\x3b\xbb\x66\x70\xa4\x72\xa0\x59\xb8\x05\xf1\xd2\xb3\x10\x60\xa4\x5b\xd5\x0d\xca\xe1\x9c\x2f\x46\x9f\xbf\x52\x8e\x11\xdd\x2c\x3b\x6b\x75\x32\xbe\x5f\xd1\x42\x7c\x68\xba\x0d\x98\xd6\xbb\x07\x45\x46\x3a\x4c\xb9\x92\xbf\x62\x87\x87\x23\xfb\x6c\xfb\x1e\xa5\x2c\x3b\xbb\x62\x64\x14\x66\xd5\x33\x86\x80\x4f\xa0\xf6\x66\xd5\x6b\x8e\xea\xa5\x71\x31\x6f\x3e\xbc\xee\x2d\x9e\x60\x64\xdb\xdc\xeb\x4e\x75\x92\x7b\x35\x2a\x26\xf6\x5a\xb6\xdd\x81\x62\x36\x4d\x0f\x77\xba\x7d\xe4\x98\xe4\x1b\x3a\x92\x6b\xf8\x77\x5d\xf0\xf9\x7d\xce\x27\x93\xff\x9b\x4d\xfe\x3b\xb4\x66\xc9\x93\xca\xb5\xd6\xf6\x63\x6f\xf6\xe6\x5b\x0c\x25\xa6\xf7\x52\xd5\x33\xe8\xe2\x4f\x3b\x58\x96\x37\x05\x44\x7b\x1f\x3b\xbb\xef\xc8\x1c\x98\x11\x9a\xe3\x79\xd7\x1c\x0c\xd7\x78\x78\x22\x26\x52\x50\x46\xf9\x86\x00\x35\xa7\xa8\x71\xce\x71\x9d\x4a\x9e\x4f\x39\xed\xbc\xe2\x80\xd1\xce\xc3\x37\xbb\x4d\x5c\x87\x58\x97\x1d\x26\x15\x3a\x65\xf8\x21\xed\x6a\xa9\x92\xd7\x91\x2b\xfc\xfe\xab\x3f\xff\xba\x3d\xff\x32\xb4\x4b\xab\x65\x74\x07\xa6\x7b\x9d\xb2\x53\x05\x1d\xc2\x16\x0f\x20\xac\x87\x7c\xa0\x13\xaa\x3d\x3a\x9d\x54\x0b\xb4\x04\x90\x85\xd2\x55\x4e\x0e\xc4\xfa\xc4\xc8\x30\x50\xac\x64\xd9\x0b\xd7\xa2\x63\x59\xd5\x41\x63\x65\x96\x6d\xda\x1c\xf5\x8d\x6b\x3d\x82\xe8\xe3\x98\x2e\xbc\xee\x1d\x54\x95\x4a\x4e\x77\x25\x03\x43\xca\xa5\x18\x82\x1f\x8c\x8a\xf4\x52\x72\x28\xeb\x5e\xba\x00\x38\xad\x96\xd2\x88\x03\x12\xe2\xdb\xb7\x6a\x9c\xed\x08\x9d\x85\x77\xf6\x12\x5a\x57\x43\x92\x3a\xd2\x07\x0d\xaa\x63\x1d\xbc\x60\x1f\x82\x6f\x8f\xde\xf4\xe7\x12\xfa\x50\x28\xeb\xb3\x33\xa5\x10\xc2\xac\x3f\xc1\x17\xeb\x0c\xb4\x51\x8d\x28\x02\x8c\x4a\x89\x58\x30\x2b\xe5\x73\xa0\x9d\x19\x15\x9a\x4f\x0e\xdb\xf3\x3f\x9f\x55\x81\x1c\xfd\xe2\x70\xd2\x4f\x23\x9b\x03\xed\x54\x53\x3c\x32\x39\x0c\x91\x65\x4c\xbc\xab\xa2\xd3\xfd\x2f\x76\x16\x58\x38\xc3\xec\x1e\xb4\x9e\xaf\xc4\xe9\xad\xdb\x71\x2a\xf8\x04\x79\x09\xc5\x2c\x0a\xcb\x22\xfc\x51\x84\xa0\x75\x09\x3f\x59\x89\xa8\x63\xe8\x28\xee\x4c\x52\x93\xda\x09\x14\x87\xb9\x08\xa1\xbb\x72\x35\x5b\xa9\xc2\x8e\x95\x3e\xbf\xb8\x84\x19\x0c\xe9\x26\xf7\x8d\x33\xd6\x2c\x56\x3b\xb9\xf3\x78\x6b\xa1\x46\xb2\x99\x6c\x9f\x9d\x30\x86\x4f\xf1\xfb\xaf\x18\x44\xac\x7e\x87\x51\xc4\xdb\x0b\x6d\x28\x7a\x2c\x05\x4d\xea\xdd\xd5\xec\x65\xbb\x82\x77\x5f\xfa\xd2\xe4\x8b\x4e\x6e\xd0\x1b\xbb\xeb\x3f\x9c\xf1\x6e\xd7\xbc\xfd\x89\xd6\xca\x66\xbc\x45\x38\x79\xfa\xed\x4a\x86\x02\x0b\x92\x87\xf4\xc7\x4f\x2d\x6f\xf8\xba\x88\xc6\xb1\xfa\x0e\x68\x1e\xe5\xb4\x08\xde\xb2\x6b\x51\x84\x09\xd8\x03\x69\x7c\x66\x8b\x2c\x97\xc7\x9b\xc2\xec\x30\x7c\x12\x66\x07\xb2\xf4\x7c\xcf\x38\xec\x5d\xea\x9f\x37\x17\x9d\x80\x11\xc4\x92\xc6\x01\x95\x88\xbf\xb6\xde\x2c\x35\x1f\xd7\x39\x39\x3a\xd6\x8b\xf3\x58\xe6\x7b\x0a\x1e\x41\x48\xcc\x62\x40\xd0\x52\x12\xd9\x24\x80\x97\x32\xb8\x0b\x11\xfe\xfe\x35\x6f\x68\xb1\x13\xbc\x1a\x0d\x83\x1b\x03\x31\x6a\x45\xb0\xcf\x0c\x2b\x18\x89\x70\x2b\xd1\x0f\x39\xe4\x5d\x52\x8d\x03\x81\xda\x85\x90\xc6\x18\xd2\x25\xbb\xe2\x4f\x3e\x8b\xe7\x4f\x3d\x35\xc4\x50\x91\xb7\x3b\xf9\xab\x12\xc3\xe8\x5e\xba\x8a\xb0\x93\xa2\x68\xd2\x13\xfe\xcc\x42\x8e\x44\xd8\xe0\x90\xf9\xb3\xe4\x79\x52\x03\x90\x29\x73\x99\x3c\x23\x2b\x4f\x97\xa2\xde\xd9\x33\x00\xac\x63\x56\x46\xc3\x8f\xc7\xf2\x83\xcd\xe4\x31\x54\xcf\xc6\x06\xd3\x0b\x47\x1d\xc9\xbb\x49\xc9\x77\x44\xb9\x52\x28\x22\x43\xe6\x43\xf2\x2f\x07\xe5\xb0\x92\x0c\x3a\x88\x2a\xa4\x14\xa2\x29\x4e\x1a\x1a\xaa\x50\x70\x7a\xd5\xc3\xfb\xa2\x59\x73\x4e\x15\x91\xf4\x19\x32\xf6\xee\xec\xde\x88\x37\x78\x84\xde\xc2\x27\x87\xc0\x17\xd0\x94\x7a\xba\xe4\x4f\x0c\x91\xd7\xe6\x9e\x7e\xd6\x4f\x1b\x0f\xa3\x8f\x21\x05\x4f\x81\x27\xbf\x84\x14\xcc\x31\x70\xeb\xd0\x5c\xcd\x5a\x0a\x2c\xef\xa6\x83\x55\xd6\x2d\xf3\x43\xd8\xe1\x15\x47\x48\x5a\xf4\x00\x8a\x5d\xa7\x61\x0b\xa9\xc6\x0f\x3a\x3b\xe9\xf9\x7f\x8a\x49\x0c\x92\x66\x53\x25\x5e\x18\xe3\xfa\xa4\xb6\x4e\x25\x4f\x5e\x79\x16\x13\x66\x90\xe8\x65\xd3\x63\xd4\x54\x16\x7b\x9a\xee\xff\xef\xfb\x7b\xe6\x28\xd4\x2b\x7c\xe6\x20\x7e\xfd\x13\x7c\x4c\x32\x9d\x1f\xe2\x33\xb0\x62\xc6\xa6\xc9\x92\xc5\xef\xd6\xe2\x9b\x64\x5d\x74\x79\x26\xc4\x50\x0c\x33\x93\x62\x28\x04\x69\x7a\x93\x83\x40\x0b\xb7\x8b\x03\x16\xc4\x00\x78\x47\x7d\x55\xb6\x71\x79\x12\x92\x99\x18\x31\x09\x62\x15\xe1\x3e\x4d\xfb\x55\xf3\xce\x04\x74\xab\x60\x63\xa9\x94\xf8\x73\x87\x44\xe9\x51\x6f\x9b\x4e\xa4\xea\x76\x51\x62\x59\x5b\x3d\x65\x47\xe3\xe1\x02\x4c\x27\xeb\x4a\x3e\x59\xe3\x73\x28\x89\xa9\x0c\x1f\x77\xbe\xec\xff\xd0\xf0\x4d\xdb\x9a\x42\x19\xc3\x52\xd6\x03\xe3\x76\x14\xb1\x16\x29\x8a\xbf\x34\xcc\x05\x9c\xc7\x99\x9b\x94\xa0\x5b\x2e\xe0\x57\xc1\x24\x55\xc8\x2e\x3d\x2b\xc7\x05\x49\x31\x28\x8a\xd5\x1a\x63\xee\xd8\x30\x95\x76\x1c\x4f\x24\xe0\x96\x3f\xf6\x39\x2e\xe6\x6e\xab\xfb\x8b\x87\xfa\x9d\x22\x2a\x28\x61\xea\x3d\x2e\x68\x3e\xdd\xf5\xa6\x7f\x52\x05\x64\x6d\xc8\xe1\xab\xb4\x68\x59\xb0\x3e\xfb\x32\x54\xa0\xdf\xca\xe2\x62\xf5\x3e\x56\x02\x84\x76\x5f\x29\x35\x95\x5f\x2f\xc1\x4c\x3c\x7c\x01\x16\x93\x47\x4f\x81\x9e\xa7\xb3\x0b\x70\x0c\x13\x3a\x8c\x95\x41\xaf\xb1\xbf\xcd\x4f\x9b\xe2\x7b\xcd\x8f\x87\x24\x09\x00\x6d\xfc\xf6\xd3\xe8\x8d\x63\xfd\xde\xa7\x1c\xbf\x94\x9f\x48\x2e\x97\x51\x16\x57\x4e\x0e\x14\x82\x81\x79\xe2\xc3\xd8\xc6\x2c\x33\x95\x4a\x39\xdf\x5d\x45\x97\x27\x45\xd5\x50\x7c\x91\xf7\xfc\x21\x25\x79\x8f\x82\xb8\x55\xbe\xdb\xe0\x6d\xdc\xf6\xf7\xa6\x3b\x41\x99\xcf\x69\x87\x40\x38\x09\x92\x8c\x91\x73\x20\xb5\x36\x6e\x78\xb5\x05\xdd\x06\x59\xff\x15\x98\x62\xe3\x49\x90\xfd\xc8\xfb\xd3\x6e\x26\xf5\x85\x6b\xfd\x3e\x67\x5d\xfa\xbd\x2a\x70\xfb\x2b\x25\xce\x49\x7e\xe9\x8b\xaf\xbf\xb2\x92\xc8\x0a\x41\x88\x4e\x08\x22\x89\x58\x10\x82\x08\xc6\x80\x08\x53\x8d\x44\xce\x48\xd4\xb7\x2b\x54\xd8\x5c\x38\x46\x04\x62\x96\xaf\x44\xb0\xa4\x03\x17\xe4\x5d\x7a\xf2\x63\x12\x54\x19\x6e\x85\x62\x87\x28\x3e\x7b\x61\xc6\xab\xd1\x63\xfd\x6b\xf7\xd1\x14\x48\xa5\x8d\x83\x71\xd8\x40\x9c\x70\x5d\xa5\xa6\x9f\xf7\xa6\x41\xbe\xf8\x0f\x28\x5e\x8c\xb4\xef\x73\x66\x27\x73\x6f\xa6\x2b\x94\xe3\x18\xf7\xa6\xf5\xf5\xe7\x97\x2c\x7e\xaa\x4a\xcf\xf6\x72\xbe\x84\x10\xf2\x80\x6d\xca\x3b\x3d\x6e\xde\x59\x27\x40\x95\xcb\x5d\xf6\x10\x3a\xb9\xec\xf2\x95\x7c\x56\xa8\xe5\xab\xdf\x7f\x61\x85\xef\xb9\x84\x7a\xa5\x34\x33\x4a\x90\x4a\xc9\xb5\x43\xb2\xfa\x0b\x09\x50\xaa\x1a\x95\x66\x4e\xb8\x4c\xbe\x04\x43\xa5\xfc\x16\x6c\xe3\xd7\x6d\x06\x22\x12\x2f\xaa\xf2\x56\x0a\xa6\x4d\x99\xc1\x74\x2d\xa8\x3c\x58\x26\x63\x8a\xcb\x68\x5c\x03\xd8\xa0\x85\xb1\x9c\xf1\xb0\x70\x93\xa1\x05\x72\x8f\x31\x8e\x98\xd0\x63\xd6\x10\x61\x21\x69\xdc\xa1\x80\x1d\x18\x3a\xc3\x84\x4b\xd3\xcc\x26\xd9\x67\xca\x80\x2c\x10\xaa\x37\x5d\x62\xb0\xca\x6b\x26\x28\xa0\xf8\x16\xae\x99\x14\x4a\x6e\xd4\x0f\x25\x68\x53\x38\x49\x38\xa3\xd9\x51\xa3\x0c\x47\xe2\xb6\xd1\xc9\xef\xd9\xa6\xa5\xa1\x32\xa5\x92\x70\x17\x8e\x7c\x11\x5a\x31\x4a\xaf\xd8\xda\x79\x23\x31\x9f\x46\x21\xdd\x93\xa2\x42\xbe\x27\x25\x45\x8a\xff\x73\x9b\x72\x0a\x48\x99\xd3\xd3\x03\xfa\xa7\x8d\x89\xf2\x28\x24\xa3\x79\x78\xea\x6f\xae\xd0\x6d\x2e\x55\x3b\xef\x12\x8d\xa2\xcd\x8a\x6c\x3f\xbd\x92\x3c\xa7\xf5\x06\xaf\x2f\xfa\xf3\xeb\xde\xe9\xbc\x86\x2e\x57\xd5\xfb\xbd\x64\x15\x53\x92\x9c\x51\x4a\x3d\x89\xcd\x2c\xdc\x13\x89\x15\x65\xc7\xa9\x70\xca\x7f\x51\x45\x1e\x1d\x70\x92\xf3\x00\x95\xe8\xe9\xc9\xa6\x39\x47\xb8\x86\x6e\x2f\x2d\xf8\xa0\x6d\x90\x75\x30\x5e\x07\x46\x1d\xad\xc0\x03\xef\x54\xc1\xcd\x96\xf3\x25\xb9\xe4\xd6\xba\x71\x1f\x30\xad\x58\xa3\x1e\x2c\xa6\x27\x13\x2a\xa2\x19\x7b\xd3\x93\xa0\xfb\x60\xbc\xf6\xcc\x88\x22\x4e\x85\xc3\x6e\xbd\xf2\xea\x04\x8b\xac\x3c\x40\x18\x17\xea\x50\x96\x0a\x77\x07\xe5\x09\x27\x76\x50\xc8\xce\x0a\x55\x39\x42\x38\x50\x2e\x6b\xf2\xd0\x9f\x5a\x8f\xac\x09\x14\xba\x6e\x81\x97\xe5\xd2\xa5\xcf\xad\xe8\xf2\x07\xc5\xe6\x63\x2b\xf5\x61\xe0\xb9\xd6\x05\xcc\xac\xd9\x5b\xb6\x81\x11\xa8\x4b\x2a\x63\x66\x4d\x46\xb4\x1a\x15\x3f\xda\x10\x2d\x37\x5a\x65\x83\xaf\x75\xc1\xfd\xa1\x90\xaf\xd8\x1f\x5d\x20\xa7\xf8\x85\x4a\x3e\xd7\x7d\xc1\x6c\x58\x71\xd6\xd0\x66\x8a\xe0\x53\x6b\xa5\xa1\x07\x16\x53\xa2\x8d\x92\x1e\xca\x01\x73\x71\x3a\x0f\xd8\x30\x52\x39\xd7\xe0\x0b\xb9\xc1\x08\xf0\x2e\x06\x03\x8a\x8b\x07\xce\xf3\x0a\xba\x6a\xf9\x52\x06\xd5\xf1\x27\xc6\xda\xb7\xcc\x11\x71\x36\x50\x95\x1d\x94\x62\xd8\xf9\x85\x1c\xf1\x9c\xd1\x85\x12\x0d\xaf\x9e\x90\x25\x43\x93\x7a\x6d\x96\x53\x64\x1e\xa1\xe7\x42\xbf\x0d\xcb\xe0\x34\x4d\x51\xc1\x79\x7e\xe6\x63\x9d\xb1\x59\xd2\x95\x9f\xfc\xdf\x6c\x4e\x03\x07\x3b\x7f\x08\x79\x03\x5f\x7c\xc1\xb4\xc3\xd3\xed\x3b\xa7\xde\xe1\x63\x4e\xfd\x16\x1f\x53\x09\x64\xf1\x8c\x1c\x94\x7c\xf4\xe1\xb5\x06\x5a\x88\x80\x23\xf1\x35\x3e\xbc\xc8\x90\x2e\x90\xf3\x86\xb5\x52\xa6\x3f\x0e\xe6\x94\x37\xd9\x39\xbb\xbd\xa0\xc9\xb5\x2b\x81\xac\x68\xd4\x6e\x8f\xe2\x0a\xb3\xa4\xd8\xa9\xb6\xba\xe4\x2b\xa4\x11\x38\x1e\x23\xe4\xf1\x43\xd5\xae\x42\xbb\x76\xb1\x17\x59\x07\x46\x9f\xcc\xf3\x84\x03\x44\xf1\x35\x3b\xb2\xe7\x00\xe7\x93\xeb\x8e\xad\xd7\xc3\x20\x97\x07\x74\xf0\x6e\x81\xc0\x58\x9e\x80\xff\xcb\x02\x85\xc7\x24\x20\x5a\x49\x20\xe4\x46\x70\x2a\x30\x6a\x15\x61\xeb\x38\xb2\x76\xd6\x9f\xfe\xf1\xf3\xbf\x58\xfa\x09\xe3\x10\x38\x1f\x29\x7c\x6b\x79\x70\x38\xc2\x1c\x04\x86\xb8\x0b\x8f\x2b\x91\xc7\x08\x98\x70\x3a\xd5\x94\xb8\x26\xd5\x61\x42\xcc\x50\xe6\x68\x3a\x2f\x23\x33\x65\xb8\x33\x27\xca\x64\x2f\x4d\xb1\x11\x35\xd2\x88\x6c\x8c\x1c\xd0\x22\x0c\x49\x40\x06\xaf\x01\x14\x9c\xab\x11\x28\xfd\x58\x10\x83\xf1\x33\x41\xf1\xbe\x8a\x52\xce\x7c\x12\xc4\xfb\xe6\xb3\xc7\x8d\xfd\x9f\x0d\xc6\xc3\xa1\x36\x32\xac\x4b\xfc\x33\x3a\x30\x05\x55\x2a\x3b\x57\xf2\x78\xb7\x41\xc1\xf1\xf5\x7e\x79\xfd\x81\x40\x15\x88\x66\x65\x0a\x22\x3a\x57\xa0\xe9\xbc\x88\x92\x9f\xd2\xdf\x56\x64\x15\x65\x67\xe2\xde\x61\x60\x41\x2b\xcb\x50\x16\x57\xd2\xd0\xbd\x59\x8d\x12\x6d\x39\x8d\x20\x45\xcd\xa2\x90\xef\x61\x2f\x8c\x9e\x06\x3e\x8f\x33\x7b\x1c\x01\xef\xab\x54\x4a\x2e\x5f\x8e\x96\xb3\x81\xde\xfd\x89\xce\x20\x68\x4d\xa6\x91\xd8\x58\x29\x4f\x46\x75\x85\x15\x7e\x7e\x3a\x82\x12\x05\x23\x87\x81\x00\x45\xa8\x48\xed\x13\xf5\x4c\xbf\xda\x2b\xfa\x99\xed\x08\x13\x45\x31\x41\x2d\x05\x89\x07\x91\x4e\xb1\x9c\x0e\x4a\x11\x1e\xe4\xa8\xd4\x71\x35\x5d\xd9\x32\x1c\x02\x9f\xc2\x3f\x16\x87\x1c\x04\x25\x62\xf0\xa8\x1b\x2a\x80\x2a\x72\x81\xe6\x72\xd5\x82\x2e\xde\x19\xf3\xa7\x6e\x19\x35\x25\xcb\x3a\x9a\x92\x0d\xeb\x76\x00\x60\x66\x68\xef\x08\x64\xff\x68\x67\xab\xda\x01\x17\x36\x4e\x07\x0d\x39\x2c\xae\x93\x74\x06\x3a\x76\xeb\xf4\x41\x73\x73\x3c\x00\x90\x3b\x50\xf8\x51\x67\x28\x54\x93\x00\x74\x56\xe8\x80\xda\x18\x3f\xab\x6f\xb2\x47\x87\x46\xa8\x23\x96\x54\xbc\x0f\xff\x04\x5a\x01\x8e\x94\x14\xc4\xa4\xc0\x59\x60\xe2\x22\x91\x96\xcc\xa2\xf4\x07\x29\x15\x1d\xa6\x3e\x87\x72\x2b\xaa\x8f\x4e\x29\xa5\xd8\x66\x00\x47\x1a\x82\x36\xc0\x19\x83\x48\x10\xf1\xbf\xc5\x93\xce\xc1\xd8\xb0\x84\x27\xcd\x0e\x25\x1f\x57\xf8\x0a\xdc\x45\x97\x73\x76\x97\xed\xa2\xce\x74\x06\xe7\x1b\x6e\x05\x95\xcb\x4c\x27\xc8\xfd\x20\x48\x90\x4b\x8f\xe5\x75\x4a\xf9\xaf\x5e\x80\x91\xa8\x37\x8e\xd5\x3b\x1c\x31\x3b\x7e\xdf\x2d\x67\xdf\xbf\x18\x4e\xee\xae\xb2\x15\x4b\x32\xe4\xda\x9e\x15\x4e\x54\x1c\xee\x81\x27\xc8\x89\xe8\xbf\xd7\x53\x64\x23\x5b\xa8\x27\x36\xbf\x71\x67\x98\xd9\x58\xfa\xfb\x5e\xb7\x11\x49\xa3\xac\x9b\x32\x52\x96\x86\x1a\x94\x7c\xc9\x09\xed\x85\xb2\xe3\x7f\xcf\x61\x50\xbf\x75\x50\x09\x49\x5a\xbf\x97\x7c\xaa\x7f\xcf\x98\x74\x1a\x28\x26\x85\xbd\x91\xf0\x9a\xea\x05\xd5\x69\xf3\x92\xc9\x83\x92\x29\x54\x32\xbd\xc1\x6a\x72\x5c\xd4\x3b\xd7\xf4\xec\x45\x94\x34\xdc\x1f\xea\xfc\xc9\x92\x95\xe8\x43\xbe\xed\x4b\x89\x5c\x54\xfa\x17\x4e\x81\x4d\x64\x5e\x71\x9c\x02\x10\x79\xa6\xd7\x49\xe1\x5d\xd7\x31\xd0\x22\xe9\xf5\x34\xbc\x02\xc0\x97\x5f\x71\x07\x5d\x4d\xf1\xb3\xf5\xe7\xcf\x7d\xe0\xa6\x3e\xb0\x9a\x1b\xb7\x2e\xba\xf0\x77\x3f\xfc\x8d\x46\x97\x5b\xcb\xf4\xb3\x0f\x7f\xd2\x23\x7d\xf4\x33\x87\x3f\xd7\x9e\xd0\xdf\x57\xf1\xef\xd9\x4d\xae\x05\xec\xf4\x03\xcb\x5f\xac\xd1\xaf\x01\x2c\x39\x78\x89\x7f\xbb\x36\xb0\xe4\x1c\xa5\x8e\x97\x1e\xfa\xf3\x45\xe0\x31\xf4\x25\xe8\xa7\xcf\xa9\x96\xf9\x93\xee\x2b\x97\x19\xe0\x2f\xdc\xdd\x55\xdb\xbe\xcc\xbf\xb9\x4b\xe8\x11\x74\x7c\x7a\x7a\x82\x7b\xc5\x7c\xa7\x0c\xc0\x3d\x97\x33\x57\xd3\xaa\x77\xe8\x9a\x3f\xa8\xce\xb9\x67\xc2\x56\xae\xec\x94\x30\x43\xe4\x77\xc1\x7b\x86\xea\xad\x27\x7f\xfc\xae\xff\xe0\x85\xa4\xa5\xae\xed\xc9\x35\x98\xda\x5d\x20\x57\x6f\x14\xfd\x9d\x8d\xa3\x47\x74\xd5\x90\x32\xb5\xe6\x8b\xa5\xaa\x4a\xb7\x72\x6d\x13\x0d\x9e\xd7\x8f\x19\x06\x5d\x25\xfc\x0e\x8c\x4a\xd7\x2e\xcf\x5c\xc1\x4a\xa5\xbb\xf1\x10\xe3\x6c\x3e\xc7\xb7\x9b\x1b\xbb\xa0\x5f\xfd\xeb\xbf\x52\x42\x6c\x10\xfb\xff\xed\xdf\xac\x2f\xfe\x00\x3a\x15\xc8\xb3\xad\xd3\x51\xa4\x2b\x7c\x99\x64\x83\x2d\x4f\x06\x7c\x7f\xe6\xc7\x7f\x8a\x54\x41\xa6\x45\x51\xb8\xe4\xdc\x91\xeb\x27\xfa\x16\xf7\xff\x09\x00\x00\xff\xff\x5c\x3c\x88\xa8\x61\xaa\x00\x00") +var _confLocaleLocale_zhCnIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\x59\x73\x1b\x47\xb6\x20\xfc\x8e\x5f\x51\xa1\x0e\x45\xbf\x7c\x96\xc3\xf6\xfd\x66\x26\x26\x0c\xcf\x74\xdb\x7d\xbb\x7b\xc2\x76\x7b\x5a\xee\xb8\x0f\x0e\x05\x0c\x02\x45\x12\x57\x20\x0a\x8d\x02\x24\xb3\x6f\xdc\x08\x52\x12\x49\x50\xdc\x25\x6a\x27\x45\x51\x16\x45\x5a\x12\x17\xd9\xb2\x44\x12\x5c\xfe\xcb\x34\xaa\x00\x3c\xf9\x2f\xcc\xd9\x32\x2b\xb3\xaa\x48\xd9\x3d\x77\xc6\x0f\x16\x51\x79\x72\x3b\x99\x79\xf6\x3c\x99\xaf\x56\x73\x45\xd7\x2f\x64\x83\x95\xfd\xf6\xfe\xac\xf3\x7b\xcf\xe9\x6e\x6f\x76\x37\x46\x3a\xf7\xaf\x75\x27\x9e\x05\xd7\xbf\x73\x7e\x5f\xaa\x3b\xe1\xd2\x4c\x70\x7d\x35\x93\x19\xf4\x86\xdc\x6c\xef\xe9\xed\xde\xea\x8f\x99\x62\xde\x1f\xec\xf3\xf2\xb5\x62\x36\x9c\x5d\x0f\x9a\xaf\x7b\xcb\x8f\xc3\xe5\xe3\x8c\xfb\x4d\xb5\xec\xd5\x5c\xf8\xf8\xb8\xf3\xea\x71\x66\xd0\x2d\x57\xb3\xc1\xee\x16\xb4\x94\xf1\x4b\x03\x95\x5c\xa9\x92\xed\xdc\x6b\x05\x87\xb7\xf8\xa7\xd7\xa8\x67\x7b\x23\x23\xc1\xc4\x3e\xff\x6e\x54\xb3\xe1\x0f\x1b\xc1\xf8\x74\xa6\xe6\x0e\x94\xfc\xba\x5b\x53\xbf\x2f\xbb\x7d\x7e\xa9\xee\x66\x83\xad\xbb\xe1\xed\xbd\xce\xe1\x42\xe7\xf9\xbd\xcc\x25\xb7\xe6\x97\xbc\x4a\x36\x38\xbc\x19\x4c\xce\x74\x26\x9b\xe1\xd2\x8b\x4c\x35\x3f\x00\xa3\x5c\xfd\x11\x46\x94\xa9\xbb\x43\xd5\x72\x1e\xaa\x85\x1b\xab\x38\xbc\x72\xbe\x32\xd0\xc0\x72\x9e\x66\x6f\x64\xb2\xb7\xba\x97\x29\xd4\x5c\x80\xc9\x55\xdc\xcb\xd9\xa0\xf9\x20\x68\xed\x9f\x3b\x77\x2e\xd3\xf0\xdd\x5a\xae\x5a\xf3\xfa\x4b\x65\x37\x97\xaf\x14\x73\x43\x38\xaf\xce\xe2\x46\xd8\x7c\xd3\x3e\x5e\x0d\x47\xb7\x83\xb9\xeb\xe1\x83\x57\xc1\x93\xfb\x34\x76\xb7\x08\x93\xcb\xe5\xfd\x6c\xf0\xe6\x7b\x9e\x22\xc3\x66\xa8\xa5\x4a\x7e\x48\x55\x0e\xe6\x67\x32\xee\x50\xbe\x54\xce\xf6\xae\x6c\x75\xb6\x5e\xc2\x80\x7d\xff\xb2\x07\x98\x0c\xb6\xc7\x3b\x8f\x46\x61\xea\xb9\xfa\x70\x15\xc0\x57\xb7\xba\x5b\x4f\xe4\x63\x21\x5f\xad\x17\x06\xf3\xd9\xde\xb3\xe9\xee\xf6\x28\x7e\x01\xb8\xaa\x07\x38\xf1\x6a\xc3\xd9\x76\xeb\x66\xb0\x7f\x33\xe3\xd5\x06\xf2\x95\xd2\xdf\xf2\x75\x44\x4a\xa7\x75\xad\xd3\x9a\xc8\x0c\x95\x6a\x35\xaf\x96\xed\xdd\x5a\x0a\xae\xce\x65\x60\x8e\x39\xac\x27\x13\x0d\x6f\xef\xc0\x52\x4b\x6d\x2c\x1b\x2a\x0d\xd4\x10\x5f\xdd\xe3\xd1\xce\x7a\x2b\x78\x72\xbb\x77\x75\xc3\x28\xee\xf7\x6a\x17\xad\xaa\xe1\xab\xa3\xce\xe2\x8a\x01\x01\x43\xb0\x00\xd4\x28\xf2\x15\x40\x3b\x95\x76\xb6\x56\x3b\xf3\xe3\x61\x73\x21\x2a\xcd\x17\x87\x00\x77\xd5\x7c\xc5\x2d\x4b\xb1\x6c\xa7\x7c\xa1\xe0\x35\x2a\xf5\x9c\xef\xd6\xeb\xa5\xca\x00\x20\x77\x77\x1e\x50\xd8\xdd\x3a\xea\x1c\x6e\x65\xd2\xbf\x0e\x7b\x0d\xbd\x70\xd9\xf6\xee\xb3\xf6\xfe\x3e\xaf\x17\x97\xe8\x4a\xbc\x1a\x52\x09\xc7\xee\xe7\xfa\x5d\x17\xf6\xf3\xd2\x08\x0c\x3d\x7c\xd5\x0a\xae\x6f\x64\xaa\x8d\x72\x19\x10\xf6\xd7\x86\xeb\xd7\xa1\x9f\xf9\x66\xb0\xf7\xba\xbb\xfd\x26\x7c\x79\x25\x53\xf2\x7d\xf8\x0a\xcb\xbd\x16\xcc\xdc\xe2\x51\x67\x60\x99\x2a\x05\x98\x44\x30\x77\x3b\x7c\xdd\xcc\x64\xbe\xf2\xdd\x7c\xad\x30\x78\x21\xc3\xff\x66\xc3\xf9\x25\x38\x16\xb8\xbd\x92\x8b\x87\xdb\x44\x06\xc5\x6d\x4b\xd3\x99\x82\x57\x84\x89\xb4\xbe\xa5\x45\xff\xaa\x54\xf1\xeb\xf9\x72\xf9\x42\x46\xfe\x80\x13\x31\xd9\xfd\x76\x4c\x6d\xf8\x52\xbd\x4c\x67\x34\x7c\xb1\xda\x3d\x9e\xef\xae\x4e\x73\x71\x67\x63\x2a\xd8\x9f\xcb\x14\xbd\xc2\x45\xd8\xd6\x78\x2c\xa1\xb3\xe0\xe9\x95\xf0\xe1\x52\x78\x65\x23\xdc\xfc\x36\x58\xda\x68\x1f\x1e\x43\xf7\xce\x27\x04\xe3\x04\x5b\x7b\xc1\xbd\x0d\x6e\x03\x08\xc3\x80\xff\xd3\x01\xec\xbc\x37\x40\x08\x82\xe3\xb1\x60\xac\xd9\x6e\x2d\x76\x5a\xe3\xbd\xbb\x63\xdd\xed\x96\xf3\x61\xde\xa9\xe7\x6b\x03\x6e\x3d\x7b\x26\xd7\x07\x87\xec\xe2\x19\x67\xb0\xe6\xf6\x67\xcf\x9c\xf5\xcf\x7c\xc4\x47\x36\xbc\x3d\x11\xae\x7e\xfb\xe1\xbb\xf9\x8f\x9c\x60\x7e\x36\x18\x9f\x09\xb6\xf7\xe0\xb8\xf2\xb8\xbb\xc7\x0f\x70\xa8\xab\xcf\x83\xf1\x7b\x7f\x1f\xb9\x92\x41\x8c\xc3\x69\xcf\x15\xfb\x98\x3e\x61\xff\x4e\xf7\xe9\x28\xe0\x9d\xe7\xe3\x7c\x36\x7c\xfe\x7f\x7e\xfa\xf7\x91\xd1\x2f\x3c\xbf\x3e\x50\x73\xf9\x07\xfc\x1f\x6a\x7d\xe0\x84\xcd\xdb\xce\x97\xa5\x4f\x7e\x8b\x4d\x41\x13\x8c\x94\xf0\xd6\x4e\x38\xb3\x05\x98\x96\x25\xc7\x02\x3c\x66\xfa\x7b\xe7\x65\x2b\x78\x38\x05\x54\xce\xaf\x47\x1f\xdb\xbb\xad\x70\x69\x9f\x17\x27\x82\xe4\x55\xd2\x07\x37\x56\x20\x47\x16\x3a\xa0\x63\xaf\x4b\xe1\xe4\x77\xd6\x77\xf0\x7b\x7c\x01\x04\xf5\x34\x29\xc6\xb3\x7c\xf9\xe3\xe7\x9f\xff\xe9\x93\xdf\x3a\xc1\xc1\xad\xf0\xe6\x6c\xbb\xb5\x06\x34\xc7\x69\xd4\xfb\xff\x4b\x6e\xc0\xad\xb8\xb5\x7c\x39\x57\x28\x39\xc1\xe6\x9d\xce\x8b\xa7\xbd\x07\xe3\x38\x5d\xdf\x2f\x03\xa5\x82\x0d\x73\xfe\xfc\xa7\x0e\x50\xbd\xe0\x60\x0e\xc6\x59\x1f\x8c\x46\x01\x0b\xd1\x6e\xbd\xee\xbe\xd9\x0e\x8e\xae\x65\xfc\xbf\x96\x11\xcf\x32\x9e\x38\xfe\x1c\x3c\xe1\x1a\x6d\x54\x03\xfb\x70\x6b\xb5\x1c\x10\xd6\xfa\x30\xae\x0f\x35\xfe\x33\x2a\xb6\x77\x67\xba\x57\x0f\xdb\xbb\xfb\x9d\xef\xf6\x55\x23\xa5\xca\xa5\x7c\xb9\x54\x84\x05\x52\xb8\xa2\xca\x31\x84\x41\xcd\x60\x6c\xb4\xbb\xb5\x1b\x4c\x8f\x05\xf3\xcf\x79\xba\xce\x99\x73\x67\xa8\xbb\x33\xef\x9c\x71\xb0\xbd\x8a\x97\x63\x32\x82\xb4\xba\x58\xf2\xf3\x7d\x40\xb7\x99\x8b\xd4\x98\x20\x22\x9e\x69\x10\xc1\x93\x15\xd8\xee\xe1\xd2\x33\x26\x54\x7c\x76\x83\x85\xbb\xbc\x7a\x38\xf4\xab\x63\xc1\xf8\x8f\xed\xdd\xa9\x0e\x6c\xb9\xcd\xc7\xcc\x82\xec\x99\x2b\x92\x25\x3b\x40\xb7\xc1\x6b\x1f\x9f\x6c\x46\x2d\x17\x6f\xc5\x60\x7f\x11\xfa\x02\xa6\x0b\x07\x40\x76\x23\xb2\x62\xc2\x80\x94\xf1\x56\x51\x5f\xf5\x86\x39\x7e\x0e\x85\x9d\xa9\x2b\xe1\xd4\x61\x6f\xec\x4d\xe7\xca\x73\x4d\x44\xb9\x46\xef\xce\xb3\xce\xc3\x59\x20\xae\xed\xd6\x8b\x9f\x0e\x46\x89\xcc\xf0\x12\x31\x95\x09\x1f\xed\x75\x1e\x6c\x21\xff\xd5\x25\xaa\xed\x70\x72\x24\x5c\x9a\x24\x86\xdf\x3d\x5e\x02\x82\xc1\x35\x7a\x80\xaf\x9d\xf1\xee\x63\xc0\xfb\xdd\x70\xf1\x08\xc4\x84\xee\xf6\x1a\xb7\x41\x27\xb5\x01\x5c\x1b\x0f\x07\x53\x8a\xce\x0f\xad\x4e\x6b\x45\xce\x87\x2a\x53\x3d\x60\x45\x3e\x20\xc7\x40\xaf\x5a\xc1\xd8\x1b\xe8\x10\xc8\x40\x6c\x68\xc1\x8d\x69\x83\xec\xd0\x56\xba\x39\xd3\x3e\x5c\x0a\x97\xaf\xf6\xee\xcd\xd3\x99\xf6\x80\x7f\x02\xdb\x5f\x59\x41\x66\xca\xbf\x8c\x4e\x18\xa5\xc1\xe1\xcb\xe0\xe6\x8c\x73\xfe\xfc\x1f\x9c\x60\x6c\xaa\x77\x7f\x3c\x58\xda\x09\x96\x47\xf8\x90\x0c\xe6\xaa\x5e\xad\x9e\xc5\xc2\xce\x73\xe0\xe4\xdf\x06\x73\x6f\xf4\x67\x7d\x1c\xa0\x94\x65\x1f\xa0\x84\x88\xe8\x07\x0b\xc1\xfc\x0b\x0d\x0f\x07\xb5\x73\xeb\x1e\xac\x70\x77\x75\xa3\xf3\x64\x1f\xf6\x0a\x9e\x58\xea\xef\xfa\x0a\x2c\x3f\xf6\x34\x58\xaf\x57\xb9\xab\x3f\x7c\xf9\xe5\x17\x46\x5f\xba\x40\x2f\x2d\xad\xbb\x74\x01\x7d\x69\x48\xdc\x03\x8d\x5a\x59\x00\x9c\xbf\xfc\xf9\x53\xf5\xe9\xa4\x29\x63\x57\xef\xe2\xff\xce\x5b\x33\x07\xbc\xb6\x77\x47\xda\xfb\x0f\x58\xee\x68\xef\x6e\x42\x3f\xbd\x9b\x47\xe1\xec\x1a\xed\x51\xaf\x8a\xc7\x24\xda\xa4\x73\xdb\x20\x1f\xc9\xf6\x24\x81\x45\x0a\xa0\x3a\x10\x10\x46\x8c\xe2\xc4\x43\x30\x1b\x22\x9c\xe7\x3f\x83\x69\x0a\xd1\xa4\xaf\xfd\x35\x6f\x48\x55\x59\x5e\x03\xa9\x32\xfa\xac\xc6\x6f\x96\xf2\x50\x01\xb5\xbd\xd1\x1f\x83\xa3\x67\xce\x9f\xff\xf9\x63\xe7\xff\xff\xe0\xfd\xf7\x9d\xf0\xd1\x44\x30\x81\x24\x0e\xc6\x05\x84\x30\xbc\xbb\x8d\x93\xd9\x7d\x86\xcc\x77\x7f\x1b\x67\x42\xb3\xe2\xfa\x40\x18\x84\x80\x9e\xf9\x1c\x8e\xcf\x19\xe7\x43\x9a\xc0\x7f\x77\xbf\xc9\x83\x40\xe8\x9e\x2b\x78\x43\x1f\xd1\xc6\x7a\x74\x00\x04\x12\x67\x8f\xc5\xb0\x53\x69\x2b\x07\x73\x0b\xbd\x91\x51\x91\xce\xa4\x20\x12\xd2\x8c\x42\x2d\xb0\xb1\xac\x9a\x2b\x78\x95\xfe\x52\x6d\x08\xe4\x84\x6d\xdc\xe8\x44\x36\x18\x92\x65\x39\x6a\x2c\x57\xf1\xea\xa5\xfe\x61\x01\xe2\xb9\xf7\x46\xee\x77\x56\xd6\xc2\xb9\xf9\xde\xf8\x0d\x90\x15\x6a\x20\xd8\xe6\xf0\x9f\x52\xc1\x55\xdc\x4b\xed\x43\x58\xc5\x60\xec\x75\xb0\x75\xd5\x5a\x00\xaf\xbf\xbf\x5c\xaa\xb8\x4c\xfa\xb9\xe5\xce\xd3\x56\x67\xff\x58\x58\x80\x59\x0e\xdb\xae\x0a\x82\x36\x90\x40\x10\xee\x3a\x87\xdf\x33\x08\x50\xbb\xf6\xde\x0a\x6f\xe2\x76\x6b\xd6\xf9\xf8\x93\xcf\x9d\xee\xec\x1b\x94\x64\x88\x61\xc0\x92\x00\x85\x00\xcc\xa3\x6e\xf0\xe3\xb5\x70\x7f\x9e\x29\x03\xc0\x02\x15\x03\xb4\xeb\x11\x72\x2d\x3a\xa7\x42\x86\x41\xa6\xbc\x94\x07\x01\x21\x2b\x67\xe4\xf7\xf2\x5b\x69\x16\x71\x38\x19\x61\x1c\x1a\x09\x03\xec\x90\xad\xfb\xed\xbd\x49\xe8\x1f\x46\xd4\x6e\x8d\xf1\x3a\x77\x16\x5f\x8a\x68\xbe\x7b\xbd\x7d\xf0\x08\x97\xb6\x79\xbb\xd7\xba\x0b\x48\x87\xbf\x83\x27\xaf\x40\xf8\x35\x47\x64\x31\x06\xa6\xf2\x22\x0f\x4e\x3c\xc3\xdd\xcb\x4a\x47\x1a\x74\x34\x36\xb3\x0e\x50\x2b\xae\xc3\x47\x1f\x86\x16\xcc\x3d\x03\xea\x16\xf1\x05\xde\xb5\x6f\x40\xaa\x7c\x04\xe2\x2a\x1c\x6c\xe2\x27\x15\x6a\x5f\x09\xf7\xb2\x25\x94\x88\x2f\xd8\xb1\x81\xa4\x7f\x11\x86\x96\x36\x78\x08\xdc\x79\x78\xe7\x75\xf7\xe8\x66\x30\xb6\xd6\x7b\x7c\x2d\x52\x14\x48\x98\x02\xa5\x42\x14\xb0\xdc\xa5\x12\x2a\x3a\xbc\x47\x48\x51\xe9\x6e\x1d\xf7\xee\x6c\x01\x6d\x05\x3d\x2e\x15\x5a\xed\x18\x9a\x52\xa4\xdf\x00\x95\xe2\xce\x27\x85\xab\x4a\x43\x24\xd2\x21\x0a\xe6\x9f\x06\xcd\x7b\xb0\x47\xa0\x22\x00\x74\x96\xa6\x82\xe6\x0e\xd7\x85\xd5\x91\xe3\x41\xc0\x88\x0b\xe6\xa8\x22\x9e\x8b\x5a\x6a\xf3\x67\xc6\x1b\x48\xe0\xc0\x5e\xe1\xfc\x33\x17\x81\x51\x60\x57\x0f\x1e\x01\xb7\x75\xfe\xf8\x49\xf6\x3d\x47\x8f\x0b\xf9\x16\x6a\xb1\xb4\x23\x8f\xee\xe8\x76\x22\x46\xc2\x7d\xf2\x09\x8b\x75\xa3\xf8\x32\x41\xb0\xfa\x66\xcb\x09\xc8\x7a\x4e\x97\x02\x32\x42\x0f\x0c\x00\x53\xa5\xe3\xca\xac\x0a\xea\x9a\x42\x75\x44\xb8\xcf\x0d\x78\xa8\xa9\x3c\x9f\x0a\x66\x7e\x60\xc1\x17\x54\x5a\xbf\x9e\x1b\x28\xd5\x73\xfd\x48\x98\x40\xf6\xbc\xf3\x28\xfc\xe1\x56\x77\x7b\x3c\x68\x3e\x77\x7e\x0d\x05\xbf\x76\x82\x85\xc3\x76\xeb\xc9\x4f\x07\xf7\xcf\x5e\x12\x01\xef\x03\x24\x3a\x39\x38\x46\xa5\x32\xee\x25\x14\x85\xf0\x30\xf3\xd1\x81\xf3\x31\xb7\x80\xbc\x7b\xb2\x89\x88\x5d\xdc\x0e\xa7\x47\x1d\x91\xe8\x44\x18\x05\x7a\x70\xd6\x07\xb2\x3e\xd5\x3d\x3c\x14\x71\xfe\xe1\x35\x5c\x9a\xc9\x26\x42\x8c\x4c\xf3\x8a\x38\x03\x5e\x5f\xa3\x54\x2e\x3a\xac\x8a\x23\x86\x95\x88\x07\x02\x9e\x2c\x6d\x5c\x10\xc7\xaa\x9b\xdf\x02\x66\x78\xc0\xaa\xc2\x89\x92\x4b\x6a\x2d\x2d\x6a\xe0\x3c\x87\xf2\x70\x50\x52\x04\x92\xde\xf2\x43\xb1\x14\xd0\x4f\xac\xe9\x3b\xef\x7c\x04\x53\xcb\xf8\xf9\x4b\x2e\x93\xef\x01\x85\x58\xe6\xb7\xbd\xb1\x19\xec\xed\x78\x19\xc4\x9f\xe0\xc9\xcb\xee\xab\x35\x7b\x98\xd6\xae\xb5\xf6\x90\x56\x2e\x13\x13\xe4\xa5\xf5\x1b\x85\x82\xeb\xfb\xb8\x16\xc1\x1a\x50\x8c\x51\x96\xda\x82\xa3\x66\xef\xf9\xdd\x60\xec\x15\x7c\x07\xfe\x1b\x4e\x7d\x27\x9c\x4c\x74\xb0\xce\xda\xb2\x56\x18\xc2\x6b\x93\x20\x11\x12\x1d\x44\xed\x10\x49\xf1\xe6\x13\xd8\x10\xce\x6f\xff\xf2\x7b\x94\xfe\x32\x5f\xa1\xc9\xe6\x42\xa6\xc1\x32\xa4\x57\x2e\x6a\x15\x13\x76\x2f\x52\x48\xdb\x02\xa1\x40\x64\x83\xfa\x97\x4b\x80\xc8\x9c\x36\xf5\x20\x82\xea\xee\x37\x75\x38\x97\x13\xe1\xcc\x63\xd3\xf0\x23\x12\xdf\xd0\x30\xad\x1b\x4c\x8a\xd4\x7b\xd1\x6c\x0b\x5e\x19\xb6\x9d\x87\xf4\xf3\x92\x2b\x00\xc1\xdc\x95\xf6\xee\x6c\x30\x33\x07\x82\x5d\x04\x09\xf5\xbd\xda\x80\xaa\xae\x6c\x07\xc3\x39\x36\x62\xa8\xef\x62\xcb\x20\xca\x44\x36\x29\xa6\x3b\xb8\x8e\xa2\x95\x9f\x83\x35\x21\x6d\x5f\x3a\x7b\xf9\x50\xe4\x56\xe6\x11\xd4\x19\x34\x04\x08\x12\x83\xd5\x85\x8c\x8c\x9b\xec\x56\x32\x9a\xcc\x57\xf9\x46\x1d\x94\xf7\xc8\x3e\x94\x13\x83\x84\x50\x26\x5e\xe5\x88\xff\x0f\xba\x55\x94\x15\x86\xfc\x01\xb2\x02\xb5\xe6\x98\xc6\xfd\x74\xb0\xc2\x47\x98\x69\x1f\xae\x8c\xef\x15\x4a\xf9\x72\xee\xe7\xd7\x6c\x2d\x00\xdf\xc3\x9a\x36\x4f\x62\x1b\x15\x68\x24\x59\x94\xa3\x41\xeb\xf8\x11\xc5\x52\x93\x15\x41\x73\x28\xbc\x8f\xfd\xd0\xbb\xb3\x09\x07\x12\x4e\x73\x77\x74\x11\x4f\x05\x99\xd0\xf4\x86\x4d\x32\x47\x1c\x0e\x92\xa6\x64\xc3\xa6\x48\x93\xda\x09\x60\x64\xc8\x1d\xea\xc3\x16\x70\x71\x76\xda\x87\x73\x62\xf5\xeb\x87\xe5\x85\x13\x1a\x49\x53\xc7\xc0\xa2\x77\x64\xbf\x61\xa1\x7b\x42\x21\x60\x42\x99\x08\xe1\x8c\x5f\x86\xd3\x7d\x37\xfc\x7e\x95\x17\x00\xca\x7a\xdf\xbd\x00\xce\x1f\x29\x6a\x42\x79\x99\x63\x93\xd4\xe5\xbb\x95\xba\xc2\x15\x48\x8e\xc1\xce\xa8\x18\xa8\x68\x1a\x2c\x86\x31\xea\x71\x26\x24\xe4\x75\x27\x7e\x70\x3e\xec\xfb\xe8\xac\xff\xe1\xbb\x7d\x1f\x31\x25\x0c\xbf\x1d\x09\x41\x50\xbb\x82\x54\x33\x5c\x7c\x0d\x75\x50\x0c\xdc\x7b\x0d\x8c\xd8\x39\x5b\x74\x82\x9d\x39\xe0\xc1\xc1\xf8\x58\xb0\x35\x1d\x36\xe7\xb9\x6d\xe1\xcd\xa4\xc3\x10\xd3\x29\xd0\x39\xa0\xfd\xa9\xf6\x53\x78\x3c\x12\xbe\x6a\x71\xbb\x7a\x57\xd1\x90\xcb\xa5\xa1\x52\x3d\x75\x91\xaf\x6c\xb0\x25\x8a\x07\xcb\x2d\xf0\x3c\xba\xc7\x13\xb0\xdf\x7b\x8f\x17\x3a\x7b\xa3\x3c\xee\xce\xe6\x64\x70\x34\xe6\x7c\xe0\x04\xcd\xf1\xde\x8d\x15\xb6\xc0\x74\xb7\x69\x2f\x0e\xe6\xfd\x5c\xa3\x22\x18\x73\x8b\xbc\xea\x40\x19\x15\x61\x12\x1a\x8a\x53\xff\x11\x39\x38\x32\x8f\xa5\x49\xc6\x61\x0a\xa2\x9c\xf6\xe1\x38\xe8\xd6\x80\x45\x9e\x3e\x8b\xe6\x30\x2a\x94\xdd\xb5\xc5\x69\xe9\x19\xa0\x0f\x1b\x33\x86\x8d\x93\x02\x9a\xb4\x34\x02\xc2\x4d\x6f\x62\x06\xd6\x87\x9b\x17\xcb\xd3\xcc\xad\x60\xa2\x05\x3c\x08\xed\xbf\x80\xfd\xe9\xc9\xde\x8d\x2d\xde\x6c\x80\x28\x19\x36\x03\x01\x15\x0c\x9e\x5c\x33\x9b\x30\x57\x59\x94\x19\xe2\x88\x3e\x1d\xc4\x3a\x71\x44\x16\x9d\xe2\x9a\x04\xcd\x04\x76\x36\x9c\x1a\x18\x6e\xbb\xd5\x6a\x83\x86\x4a\x12\x02\x9d\x63\xec\x19\x07\x50\x4f\xf6\xff\xd3\x41\x93\x87\xf0\xd3\xc1\xa4\xac\x11\xaf\x2f\x6d\x68\x28\x02\xde\x20\x23\xe2\x16\xf4\xc6\xe7\x32\x39\x15\x8a\xd3\x90\x19\x30\xb6\x01\xf4\xfe\x65\x06\x80\xc7\xf0\x78\x22\x5c\x5a\x01\x34\xc2\xdf\xc0\xaf\xc2\x5b\x4d\x85\xa2\xa8\x7d\xad\x72\xda\xc8\x8a\xba\xd4\x80\x75\xcf\xcb\xf9\x83\xa8\xbe\xca\xa0\x6f\x1d\x07\xfb\x4f\xc5\x8a\xb2\xb3\x80\x3e\x83\xff\x04\xeb\x3d\xc3\xcc\x06\x31\x70\x81\xb7\x37\xd2\x4b\xb5\xb7\x71\x97\x26\xb7\xb7\x06\x63\x01\x08\x80\x58\x62\x65\x20\x73\x09\xd2\xb1\x63\xe2\x32\xa2\xc0\x9a\xa9\xf2\x99\x6b\xce\x03\x7d\x42\x54\xbd\x78\xdc\x3d\x9e\x65\xa6\x19\x01\x8b\x22\x66\x15\xc2\x2c\xbc\x62\x1e\xa6\x31\xec\xfa\x22\xae\xf1\xc9\xcd\x54\x3c\x31\xeb\xca\x6f\x80\xc3\xda\x82\xff\xe3\xad\x70\x71\x0f\x6a\x03\x0d\x1b\xba\x90\xf9\x0b\x88\x22\x9f\xdb\x26\xff\x3f\x03\x7f\xa1\x4f\xcc\x5c\xc4\xc0\xf3\x3b\xc3\x11\x20\xb3\xfd\x22\xe6\x0e\xf8\xb3\x9b\xf4\x06\x9c\x3f\xff\x87\x2f\x49\x68\x25\x6b\xc3\x36\x1c\xe9\x35\x69\xf0\x0f\xf5\x7a\xd5\xff\x4b\xad\x9c\x65\xfd\xff\x2f\x7f\xfe\xd4\xd1\xed\x0e\x97\xbd\x7c\x11\xcb\xc2\x59\x10\x2d\x46\xe5\xfb\x97\x6e\x7e\x88\x06\x16\x3c\x78\xdc\xbb\xbb\x22\xed\xfc\x06\x38\x1f\x7d\x85\x4e\x61\x55\xd4\x57\x94\x76\x7e\x97\x2a\xb1\x6a\xc5\xc1\x25\x7f\x43\xdc\x02\x96\x2f\x57\x41\x77\x41\x51\x42\x00\x58\x7a\x07\x80\xee\xd4\x4b\xd0\x30\x83\xcd\x3b\xe1\xf6\xcc\xdf\x41\xb3\xbe\x7b\x1c\x4e\x4d\xb6\x0f\xb6\x41\x4c\xc4\x8f\xa0\x28\x6c\x3c\x03\x45\x16\x4e\xd3\x3b\x39\x38\x49\xb1\xc6\x8a\x70\x8a\x7f\x51\x83\xf0\xc5\x6e\x10\x7a\xe8\x5c\xd9\x23\xb3\x50\xe9\x6f\x6a\xf8\xbc\xd1\x75\x93\x20\x5a\x90\x91\x00\x45\xbd\x38\x50\xb8\x04\x84\x70\x8e\x81\x1c\x34\x48\x90\x7d\x92\x6d\x0a\xdf\xa4\x83\x3f\x59\x4f\x03\x67\xb2\xa4\xd1\xa7\x2d\x1c\x40\x6c\xe1\x18\xc7\x0e\x05\x56\x40\x13\xd0\x29\xe0\xb8\xf8\x2c\x82\x17\xca\x8d\xa2\x6b\xa1\x49\x99\x52\xe7\xb9\xfb\xf6\xee\xf7\xce\xaf\xcf\xfa\xbf\xa6\x56\x2b\x17\x81\xc1\x56\x04\x1c\xe8\x5f\x67\x65\xad\xb7\x78\xaf\xbb\xbd\x0d\xf2\xab\xf2\x43\x81\x66\x58\xf0\x6a\x35\xb7\x50\xcf\x1a\xea\xea\xb3\x60\x7a\x0f\x04\x66\x6c\x45\x93\x90\x48\x20\x57\xa6\xd1\x59\x73\x2b\x5b\x95\xb4\xab\x2c\xd7\xe7\xba\xa0\x97\xe5\x2f\xba\x95\xe8\x08\x45\xdc\x79\xe6\x11\x7c\x64\xba\x06\x4a\x42\xbc\x82\x79\xc0\x52\xea\x80\x90\x91\xa8\x62\x9a\x50\x53\xaa\xd4\xe1\x88\x24\xea\x98\xc7\x25\xa5\x0e\xaf\x26\xc1\xc3\xac\x8a\xd6\x19\xd7\xe0\x4c\x74\x68\x91\xca\x65\x77\x00\x6d\x6f\xaa\x2b\xbb\x7d\x5a\x2e\xd0\x5f\x40\xd5\x8b\x36\x8c\xc6\x96\x46\x76\xb4\x2a\xa6\x94\xaf\x6d\xd2\xac\x86\xb0\xe1\x01\x08\x60\x8d\x7c\x96\x86\xba\x45\xfd\x9a\x52\x8e\x66\x89\x26\x4e\x61\xa7\x9d\xd2\x10\x6c\x1d\x24\xad\x27\xb6\x84\xbe\x35\xb2\x34\x77\x47\xc6\xa2\x41\x82\x36\x3f\xff\xf4\x94\x56\x35\xf1\x4f\x6d\x53\xb6\x52\xac\x11\xad\x0f\xba\xdf\x00\xbd\xcf\x02\xba\x99\x72\x6b\xfb\x00\x3a\x16\x40\xab\x5b\xda\x40\xf6\x55\xce\x83\x5e\x8d\x7b\x83\x26\x80\xd0\x9d\xf5\x56\xef\xde\x13\x05\xba\x8f\x07\x77\x7e\x16\xcf\xd8\xe1\x8c\x29\x36\xe3\x88\xc8\xac\xc3\x45\x22\x55\x6a\x45\x10\xc4\x2c\x72\x6e\x71\x6b\xc8\x91\x16\xee\xf2\x38\x88\x69\xaa\x09\xa2\xed\xf9\xa2\x3b\x9c\x05\xf5\x2f\xbc\xfe\x32\xdc\x9c\x24\x61\x08\x15\x42\x56\xf0\x35\x73\xd4\x93\x76\x22\xda\x4f\x9a\x2c\x6a\x79\x28\xbd\x5f\x72\x6b\xc0\x97\x74\x83\x64\x43\xff\x59\x6d\x4c\xa3\xe0\xc6\x3a\xe8\xe8\x04\xa8\xae\xbd\x2b\xdf\xe2\x52\x2b\x72\xa2\xc1\x70\xc2\xd0\x06\x19\xbd\x00\xd5\xa8\x1b\x8f\xbd\x66\xb0\x70\x64\x1d\x67\x85\x6a\x93\xb6\x4f\xcc\x36\xd1\xde\x42\x5d\x9b\x0a\x74\xc6\xaf\xc3\x9e\x47\x6c\xb3\x43\xda\x14\x0e\xda\xad\x99\xce\xb5\xd7\xd8\xf9\xca\x7c\x7b\xff\x81\xd6\xd7\xc2\xa9\x35\xde\x38\x2c\xfd\x28\x37\x42\xb3\x7b\xf8\x02\xd0\x8b\x3b\xbd\xf9\x08\x90\x1c\x6c\x5d\x45\xbc\x91\x55\x2a\x9c\x5c\x47\xcf\x22\x7f\xa7\xc6\x23\xe4\xf3\x08\x50\xfc\x45\xbf\x74\x6c\x00\xe1\x9d\x75\x3d\x00\x26\x0f\x64\x54\xc4\xe5\x8b\xf5\xde\x79\xda\x0a\x0e\x46\x74\xef\x0c\xac\x28\x4d\x6c\x96\xa8\x83\x52\xf9\xff\xa5\x29\x72\xe3\xc6\xfe\x8a\xfa\x67\x2f\xcd\xf6\x1a\x2f\x08\xb3\xf5\xf6\xd1\x32\xcc\x13\xf6\x7a\xef\xea\x06\x68\x06\xb2\xd7\x89\x28\x89\xd0\x3d\xd6\xe4\x86\xa1\xa2\x09\x63\x29\x10\x19\xf6\xfd\xe6\xfa\x6a\xf9\x4a\x61\xd0\x38\x72\x9d\x07\x5b\x68\xb6\x6f\x8e\x87\x8b\xdb\xfa\xb0\x11\xa1\xff\x0a\x47\x03\x9a\xf5\x60\xbe\x32\xe0\xe6\xc4\x3a\x0c\xf2\xb5\xa3\x4c\xc0\x68\xa2\x77\xd0\x98\x4b\x82\x95\xac\x0d\x99\x71\x55\xa5\x42\xc3\xaf\x7b\x43\x46\x5d\xf6\xf5\x2b\x9b\xcb\x26\xd7\x94\x3a\xff\xea\x01\xeb\xc6\x48\x91\xeb\x8f\x60\xe7\x83\xdc\x1a\x39\xe0\x4b\x20\xe8\x09\x79\x6b\xde\xe9\xae\x6e\xb0\x64\x5a\xaa\xc3\x59\x1c\x7b\x81\x0b\xcb\x91\x00\xfd\x5e\xb9\xec\x5d\x76\x6b\x3e\x7c\xfe\x01\xc4\x4b\x58\x22\x40\x6e\x1e\xa9\x14\xa9\xec\x57\xf6\xba\x3f\x3e\x14\x28\x34\x05\x31\x14\x8c\x23\x83\x7a\xed\xd0\x39\x22\xd4\x28\xc9\xd6\x2e\x41\x0d\x4d\xf9\x88\xed\x3a\xb0\x0f\x90\x1b\x1c\x2f\xa3\x43\xe9\x3e\x39\x59\xa3\x4a\xd5\x7c\x1d\xa8\x61\x85\x15\x16\x1a\x84\x51\x5f\x3b\x47\xb9\x21\xcb\xa7\x81\xe1\x07\x1c\xec\x70\x21\x93\x1a\x10\xa1\xa9\xaa\xe0\x4a\xcc\x3e\x4c\x39\x7c\x11\xf1\x0c\x1a\x21\x66\x8b\x6c\xe7\xc9\x51\x7b\xff\x09\x6b\x41\x6c\x99\x40\x97\x54\xb9\x54\x20\x7d\x5b\x55\xe4\x8d\xc6\x66\xb4\x0c\x99\x75\xf8\xbb\x98\x75\x8a\x6e\xd9\xc5\x80\x1e\xe3\x68\x66\x1a\x25\x35\x35\xe7\x8f\x9f\x64\x32\xd5\x46\x1f\x34\xaa\x83\x39\x78\x3d\xd4\xd8\x25\x34\x87\x0c\xc5\x49\xa5\x01\x3d\x13\x07\xf7\x49\x75\xc3\x4a\x68\x22\xde\x7b\x8d\x44\x7d\x71\x03\x56\x3f\x9c\x5d\x43\xf5\x93\x3a\x45\x94\x11\x43\x62\xf7\x4b\x70\x63\x9a\xbd\x31\xb4\x08\x18\xfe\xc1\xbc\x4c\x39\x1e\x44\x12\x56\xf1\x48\x8c\x4f\x89\x47\x2a\x7b\x05\x71\x35\x4f\x8e\xc0\x4e\xc7\x91\x4c\xef\x67\x1a\xd5\x22\xea\x39\x6a\x16\xe1\x83\x57\xc0\x23\x64\x16\x76\x99\x69\x13\x44\xa6\x6b\xac\x15\xd7\x52\x0a\xcd\xa8\x3a\x04\xc9\xd8\x22\x76\xd6\x8a\x3e\x12\x83\x52\x66\x04\xa4\x02\x44\x22\x18\x4b\xec\x36\x44\x65\x9c\xf0\x00\x12\x1a\x52\x1e\x26\x96\x4b\x93\xb0\x91\xb5\x9f\x10\xed\x2a\xb0\xa1\x1a\xd0\x5f\x6b\xbd\xd3\xda\x14\x55\xc8\x8a\x7a\x91\x6f\xda\x6d\x61\x1f\xd3\xf9\x6d\xb4\xc7\x6b\x64\xf2\xe9\x4c\x03\xd5\x6e\x69\x52\x1d\x91\xfc\x50\xb0\x56\xb8\xbc\xc6\xae\x17\xb4\x49\x6b\xcf\x10\xbb\x9c\x34\x7d\xf0\x3c\x5f\xcc\x75\xdc\x2b\xdb\x51\x99\x33\x0b\x90\x20\x5e\x00\x18\xbb\x5c\x24\x86\xff\x46\x15\xb5\x25\x10\x41\x64\x38\x74\xfa\x72\xa5\x21\x8c\x1e\x8b\x9c\x4c\xe4\x1a\xd3\xd2\x77\x70\xf0\x28\x78\x70\xd4\x99\x9c\xc0\x15\xaa\x78\xb1\x09\x19\xe6\xf7\xa5\x67\xdc\x04\x68\xeb\x31\x5c\x20\xd9\x27\x66\x1d\x9b\x37\x09\x34\xe6\x98\x63\x7b\xc5\x1c\x7b\x7c\xaf\xa8\x6d\x90\x7e\xdc\xbd\xb2\x21\x5e\xb1\x7d\x5c\x4a\x10\x83\x51\x8c\x0b\x63\x4f\xe9\xdb\xa8\x93\xe6\x2c\x00\xb6\x75\xb0\x68\x61\x01\xa7\x48\xa7\x66\x37\x86\x79\x7c\x34\x3e\x52\x3d\x49\x01\x65\x66\xa0\x26\x86\x33\x9f\xdd\xc1\x83\x46\xce\x35\xb1\x89\x1b\x5d\xb3\xd1\x91\x48\x21\x89\xe3\xbe\xad\x69\x4b\x50\x9a\x14\x49\xe0\x99\x09\xc0\x32\xbc\x41\x61\xda\xbb\x2d\xb4\x4d\xd9\x74\x46\x53\x15\xd3\x8b\x1b\xb9\x69\xb5\xdd\xaf\x5a\x83\xdd\x83\xf1\x5e\xd4\x88\xfa\xa9\xec\x1f\x5b\x47\x20\x63\x4a\x11\x93\x46\x29\x61\x02\xa9\xc7\x02\x25\x48\x61\x64\x0c\x54\x26\x27\xce\x86\x50\x1e\x34\xc5\xbc\x13\xb4\x51\x04\x52\x3a\xf2\x9d\x07\xbb\x7c\xcc\x99\xd8\xc0\x68\x59\x98\xe6\x53\xfe\xdf\xe2\x4d\xab\x55\xb1\x06\xa1\xb7\x5b\xbe\x58\xa4\x9d\xc1\xc3\x67\xd9\x98\x57\xc5\x42\x2e\x82\x99\x20\x62\x47\xd0\x9f\x73\x96\x0d\x17\x6d\xa1\x62\xb7\x0d\x8e\xc6\xb4\x65\xb1\xb3\xf8\x23\x28\xb1\xda\x7a\xcb\x66\x36\x94\x23\x90\x1b\x8a\x08\x13\x33\xcd\xa6\x9a\x70\x99\x3f\x98\x56\x5b\x38\x9a\x9d\x8d\x29\x76\x12\xaa\x11\xe9\x23\x97\x98\x8d\xcc\x32\x3a\x72\xb2\xb7\x4e\xe1\xa5\xd8\x2c\x49\xfc\x8f\x1f\xa2\x54\x22\x0c\x16\x4d\x1a\xb8\x70\xb8\x9f\x77\xa7\x88\xac\x18\xd4\x18\xd8\x0a\x59\x22\x13\xa2\xbb\x36\xac\x02\x06\xe0\x4c\xc0\x92\xf6\xee\x4d\x77\x16\x57\x62\x72\xbb\x78\x12\x95\x08\x49\x42\xb0\xaf\x23\x80\x3e\xf4\xeb\x35\xaf\x32\xf0\x11\x5b\x60\x39\x6c\xf7\xa7\x83\x95\x0f\xdf\x95\xef\x0e\x4a\xfe\x2b\x6b\x9d\xa5\x29\x66\x0b\x18\xf6\x67\x84\xf9\x3d\xbd\xd2\xc6\xa0\xd7\x15\xc0\x82\x31\x38\x8a\xf8\xc3\x40\x2d\x1b\x78\x77\xb7\xbb\x3e\x4a\x60\xe8\x31\x7e\x7c\x97\x03\x03\xb7\x5b\xe1\xe4\x51\x67\x73\x31\x5c\x6d\x2a\xcc\xe3\x4e\x8a\xd0\x64\x09\x23\x8c\x5b\x43\xc7\x66\x5e\x2f\xf6\x30\x5b\xc7\x56\x53\xc5\x0a\xc4\x0a\xa9\x82\x78\x40\x61\xf7\xcf\x4f\x33\x63\x47\x84\x25\x5a\x89\xb4\x44\x55\x3d\x6b\x19\xdd\xf0\x2b\xf9\xc6\x2a\x75\x55\x80\x2e\x80\x3d\xb5\xc6\xb1\x8d\x63\x4c\x42\xc4\xbf\xd8\xee\x91\xf3\x4f\xd3\xe6\xd3\xaf\x86\xae\xcf\x3f\x7f\x97\xe8\xa6\x17\xd0\x92\x10\x81\x38\x60\x8c\x0c\x18\x15\xd0\x2f\xcf\x27\x37\xc1\xf5\x35\x39\x60\xc7\x9a\xf6\x97\xdb\x44\x21\xd1\x95\x9a\xa5\xd1\x47\x0a\x69\xc0\xc1\xd3\x5a\xa2\x14\x4e\x5a\x37\x2f\xc5\xee\xf5\xf0\xc5\x2a\x2f\x08\x20\x9b\xe2\xf9\x94\x20\x1e\x7e\xbf\x8a\xf2\x19\x6c\xcb\xe3\x05\x11\xc7\x09\xab\x75\x64\x87\x34\x41\x98\x9a\x20\x1e\x4e\xfb\x7f\x76\x82\x27\xdf\xc1\x0a\xe8\xc5\x87\xb3\x9c\xa9\x7b\x17\x61\x9b\xd8\x55\xda\xad\x27\x9d\xc9\xe9\x13\xab\xe8\x43\x2c\x52\x2f\xeb\xf4\x7c\x00\x95\x04\x8c\x52\xab\x38\xf3\x7e\xde\xb9\x35\x65\xe7\xb7\x1c\x5c\xaa\x62\x1e\xdc\xee\xfa\xb7\xa4\xe3\x29\x5f\x60\xa3\xd2\x57\xaa\x14\xb3\xe6\x67\xf9\xa6\xd7\xc2\xec\xce\x84\x4b\x92\xaa\x3c\x55\xc8\x11\x9e\x64\xae\x2c\x80\xf2\xce\x62\x5c\x49\x20\xa3\x78\x43\x05\x96\x8e\xbc\x0a\x25\x27\x28\x2a\xf0\x35\xe7\x34\xf9\x73\xf7\xf8\x1e\xe8\xbb\x78\xae\xa8\x9a\xae\x03\x82\x1d\x77\xc4\x51\x7f\xbf\xf9\xe2\x8f\x14\xd5\xa9\x7a\xe1\xb6\x30\x02\x60\x72\x06\x8d\x31\x9b\x8f\xc9\xed\x8d\xde\x18\xae\x8f\xd1\x48\xdb\x7b\xa6\x12\xcf\xaa\x34\xd2\xf4\x5b\xaf\x52\x82\x08\xb9\xd9\x0a\x9b\xe4\x69\x1f\xf0\x61\xd6\x33\x34\x67\x17\x9f\xbd\xec\x26\x44\xb2\xab\x8e\xb5\x89\x27\xc1\x89\x21\xa9\x48\xb4\x0a\x13\xe0\x27\x20\x6d\xbf\x26\x95\x95\x42\xd8\xb6\x80\x9a\xd2\xb8\x97\x76\xc2\xdb\x7b\x3a\x9c\x25\xda\xa1\x73\xcf\x80\x61\x87\x77\x8f\x3a\x4f\x40\x44\x18\x81\x73\x62\x50\x09\x1e\x26\x9f\x34\x19\xa6\xb9\x94\x71\x92\x91\x5c\x53\xa1\x1c\xa9\x95\x62\xe4\x23\x59\x39\x46\x45\x34\xe5\x90\x70\x46\x0a\x3b\x7f\x1b\x21\x31\x27\xa2\x37\x6e\x4a\x57\x36\x31\x41\x66\xc4\xaa\xd4\xee\xac\xc6\x94\xd6\x57\x78\x38\x3c\x0a\x12\x00\xa5\x93\xc8\x81\x4f\x3c\x90\xe5\x50\x3e\xc6\x02\xa1\x5c\xad\x86\x68\x85\xc8\xdf\xd9\x6d\xef\x8d\x85\xbb\x63\xf8\xd1\xb4\x14\x91\xc0\xc4\xe2\x43\x7b\x77\xd1\x51\x3c\x14\xf5\xf2\xb9\xed\x70\xf4\x31\xac\xb5\x66\xa0\x24\xe1\x4a\x4c\x50\x6c\x3c\x62\x13\x37\x95\x61\x1b\x42\x45\x65\x52\x99\x25\xf7\xc5\xe0\x34\x3d\x64\x48\x92\x4f\x65\xf4\x23\xeb\x5c\x51\x9c\x87\xab\x5b\x40\x08\x80\xd3\x9b\xba\x5c\x30\x7f\x07\x5d\xed\x99\xaf\xd0\x3e\x72\x21\xc3\xc6\x50\x6d\x94\x8a\x0c\xee\xb6\x1b\x2b\xb2\xc3\x8b\x28\xd1\x3e\x58\x09\x9e\xac\xc7\x0c\xc7\xb0\x75\xbb\xcd\x17\x70\x50\xbb\x47\x57\x3b\x2b\x9b\x7f\x1f\x19\x85\x45\xc3\x45\x7e\x03\x32\x64\x2b\x86\xc0\xce\xd4\x0b\xdc\xea\x77\x80\x4d\x4c\x47\x12\x88\x18\x47\x2e\x95\xfc\x52\x5f\xa9\x4c\x46\x9a\xb9\x6d\x90\x24\x60\x6a\xfc\x11\xbf\x19\x71\xb1\xdc\x3d\x7a\x5b\x3e\xf4\xab\xf9\x8a\x53\x00\x86\xe3\x67\xcf\x34\x4a\x4e\xcd\x2d\x3a\x18\xcc\x72\xe6\xa3\x0e\x54\x87\x9d\x7b\xff\x1a\x74\x03\x30\x1f\x25\x1a\xc2\x6b\x2f\x05\x34\xba\xd8\x21\x13\x28\x6f\x1e\xec\xc3\x41\xe6\x58\x3c\x31\x22\x80\x1a\xd9\xda\x97\x59\x6b\xf7\xd1\x3f\xd4\x39\x5e\xb6\x51\x53\xf9\xe9\xa0\xc9\xca\x0f\x2e\xec\xc8\x41\xaa\xde\x6e\xde\xc5\xf9\xe9\x60\x32\x53\x28\x7b\x95\x68\x41\x76\x67\xd0\x8f\x33\x7a\x93\xc5\x34\x65\x21\x94\x90\xbd\xd3\x2f\x70\xb0\x87\x98\x05\x39\x12\xff\x94\x68\x48\x21\x1b\x17\xc5\x7e\x6b\xde\x04\xa2\xcf\x14\xf9\xcb\x9f\x31\xec\x97\xbe\x25\xd6\xc8\xac\xc6\x8a\xaf\x28\xa7\x7a\x59\x69\x6f\x09\x6f\x25\xa8\xb9\xb9\xee\xb1\x6c\x39\xbc\xcf\x25\x9f\xf9\x46\x57\xf4\x39\xda\x04\x6f\x58\xfd\x77\xce\x0d\x94\xea\xa5\x81\x8a\x57\x73\x1d\xd6\xdb\x33\xe5\x52\x01\xd8\x94\x9b\x55\x26\xd1\x5d\xe8\x55\x7d\x4c\xd4\x37\x81\xa4\x7e\xcd\xcd\x17\xd9\x36\x04\x23\xe2\x0b\x2e\xf2\x2d\x51\xdb\x84\x91\xcb\x68\xf9\x46\xdd\x03\x9d\xb8\x54\x17\x31\x14\x00\xe1\x3c\x6a\xab\x02\x68\x90\x0c\x18\x34\x97\x83\xf5\xa9\x60\xfa\xb6\x0a\xa7\xe2\x70\x24\xe3\x1a\x97\x14\x14\xdd\xfe\x7c\xa3\xac\xec\xb0\x59\x0e\x7f\x65\xeb\xab\x5c\x03\x83\xee\xea\x6e\xed\x12\x08\x33\x1c\x43\x05\x62\x6f\xb8\xb9\x16\x2c\x6c\x84\x4b\x40\x52\x9b\xac\x23\xe1\xde\xb9\x8c\x1e\xbb\xa4\xb1\x73\x20\xff\x37\xfc\x08\x67\xb9\xfb\xe3\x43\xfc\x88\x8b\xea\xdb\x6b\x9f\x66\xee\x34\xa9\xc0\x3f\x68\xf1\xb4\x09\xc9\x29\x46\xcf\x8a\x8b\x46\x9b\x46\x1d\x10\x40\x7a\x8c\xe9\x80\xc8\xc8\xfd\x36\xbe\xf9\xc3\x97\xdc\xe4\xda\x8f\x59\x92\x20\x20\x70\xde\xb4\x7f\xd5\x3e\xcc\x78\x8a\x9d\xbe\x72\xc3\x3d\xf3\x11\xa3\x54\x9d\x63\xd5\x1e\x9b\xfd\xa9\x27\x15\xe4\xc6\x25\xe7\xf8\x7c\x82\x48\x5c\x23\x0b\x87\x11\xa9\x9f\x0e\x12\x51\x76\xd6\xe2\x55\x1c\xbc\x11\xef\xff\xee\xef\xff\xf8\x25\xf9\xfc\xd1\x6d\x1e\x8b\xca\xd6\xd7\x77\x54\xe3\x30\xc3\xa1\x92\xef\x33\x97\xaf\x94\xd0\x57\x73\x65\x83\x45\x6d\x0e\x98\x0d\xb6\x0f\xd0\x96\x43\xed\x44\x0e\x0a\x2d\x40\xa9\x76\x94\x0b\x0b\xad\x9f\x65\x0e\xd9\xc4\x93\x4c\x4e\x23\xae\xcc\x7d\xa3\xc0\xa6\x9c\x00\x18\xa0\x6f\xf8\xac\x39\xb2\x13\x09\x8a\x6a\x54\xbc\x47\xea\x1e\xa2\xe1\x37\xc2\x2d\x07\x2b\x9c\x46\x5d\xe8\x52\x81\xef\x96\xfb\x25\x2a\x96\x8b\x25\xa0\x8e\x78\x98\xe6\x48\xcc\x8a\xab\xc3\xb9\x72\xa9\x72\x31\xcb\x02\x99\xb6\x71\xca\xe7\xc8\xfa\x44\xc5\x86\xf1\x55\x43\xb0\x93\x1c\x45\x91\x69\xd0\xa0\xa6\x9c\xff\x35\x7d\xf7\x9d\x8f\x49\xdd\xfd\xb8\x5e\x2b\xc3\x9f\x5c\x15\x6b\x20\x82\xcd\x86\x40\x52\xbf\xcc\x7e\x71\x32\x9b\xf2\x41\xcb\xc8\x27\xfe\xd1\xc0\x50\xd1\x9a\x00\x88\x87\x81\xbe\x68\x6f\x43\xed\xa2\xe0\x20\x83\x0a\x13\xcb\xdb\xf7\xaf\xe0\xec\x99\x4a\xfe\xb5\x51\x2a\x5c\xcc\x0d\x34\x4a\x18\x3b\x74\xfc\xbc\x37\xb2\x22\xb7\x71\x79\x67\xd5\x07\x4b\xbe\x10\x12\xde\x7e\x24\x0f\xd9\x74\x46\x5d\x19\x05\x0d\x77\x08\x54\x05\x3c\x89\xb3\x1c\x61\x4c\x5e\x27\xa2\x3f\x1c\x78\x60\x5e\x26\xad\x36\x30\xd2\x03\xbd\x40\xdc\xbe\x59\x49\xc2\x4f\x58\xb5\xe6\x10\x6f\x5d\x8f\x7a\x82\x41\xd1\x2d\x2b\x93\x83\xcf\xb0\x0f\x5c\x02\xb0\x48\xbd\x16\xd5\x68\x63\x46\xbc\x51\xe4\x67\x65\x86\x46\x8a\x8d\xd0\x41\xa1\x80\xf5\x9a\xeb\x66\x79\xa3\x85\x8f\x16\x32\xfd\xa5\x32\xc6\x00\x89\xcf\x0a\x2f\x8d\xd5\xf3\x03\x59\x0c\x9f\x6a\x09\xcd\xc4\x33\xf4\x68\xa2\xb3\x79\x24\x0d\xe1\x65\x4f\x2a\x10\x3f\x11\xc0\x03\xe9\x23\x08\xf9\x92\x76\x25\x14\x6f\x90\xc6\x6e\x8e\x96\xf3\x7d\x6e\x59\x55\x15\xb0\x21\xd8\xee\x7e\x1d\xd6\xc4\xcf\xf6\x26\xa6\x41\x6e\xee\x3c\x5e\xc8\x20\xc6\x4b\x75\x80\x9c\x9b\x47\x25\x6e\x76\x3c\x98\xfb\x1e\x30\x54\x76\xf3\x3e\x46\x27\x51\x90\x35\xe8\x8d\xc1\xee\xd5\x0c\xb9\x0f\x6a\xf9\xcb\xd9\x60\x76\x05\xb8\x85\x30\x28\xfa\x0a\x6b\x4c\xf7\x4c\x85\xad\x70\x2b\x54\x42\x11\xb4\x58\x49\xd8\x7a\xa2\x2a\x92\x88\x3c\x9d\x10\x96\x20\xe5\x84\xa8\x81\x9d\xd3\x03\x04\xcd\x9d\x22\xd0\x78\xa4\xba\xdc\xba\xf6\x6a\xcd\x42\x41\xf4\xa3\x02\x8b\xf6\xb8\xc9\x23\xfd\x0d\x89\x37\x06\xb5\x1c\x2e\x21\x8b\x51\x5f\x87\xe0\x24\xa2\xf1\x3d\x78\x32\x81\x67\x43\x7d\x2e\x52\xf4\x1e\x35\x1d\xde\x81\x23\xbe\xa2\x4b\x38\x96\x19\x75\x84\x3b\x28\x89\xc6\x86\x06\xdb\xda\x55\x86\xff\xa8\x54\xc5\x0f\x47\x77\xc1\xe5\x12\x6e\xf4\xfd\x9c\xb5\x7c\x66\x41\x05\x25\x0f\x28\x43\xfb\xbe\xc8\x0c\x09\x98\x02\x2c\x5e\x2d\xa7\x9a\x20\x75\x02\x40\xdb\xbb\x9b\x49\x50\xbd\x25\x8c\x1d\x61\xf7\x16\x41\xe8\x1e\x53\x41\xb9\xd3\x08\x9a\x09\x0a\xf7\x9b\x5a\xc1\xab\x82\x26\x66\xc0\x1f\x8c\x04\xf3\xdb\x72\x61\x2c\xbd\x03\xcf\xc7\xc8\xd1\xa8\x06\xc8\xc6\x14\x0d\x7c\x52\x0d\x60\x9e\x78\x69\x1e\x46\x3e\x3d\x01\x14\x8c\x1d\xeb\xc9\x31\x6b\x30\xf1\x2d\x9d\x00\x8c\xc6\x22\xdd\xe0\xd2\xb3\x34\x30\xa6\x66\x27\x2d\xaa\x2c\x9c\xdc\x5c\x8f\x2f\x05\x97\xe6\xaa\xe5\x7c\xc1\x95\x10\x79\x39\xf7\x24\x8e\xe0\x7d\x6e\xab\x97\x53\x5a\x23\xcc\xd6\xf3\x7d\xd9\xb3\x45\x8a\xfe\x52\x98\xd5\x0d\x20\x26\x4d\x00\x85\x48\x05\x20\x74\x4b\x36\x1a\x93\x90\xcd\x07\xb0\x96\x69\x00\x20\x41\x21\x3f\x44\x97\x0b\xf0\x04\x86\xb3\xc7\x23\xd0\x29\x7b\x2d\xb5\x55\x0d\x97\xd6\x72\x62\xa1\xa5\x52\x6c\xad\xd1\x5f\x9a\xd6\x36\x80\x0d\x94\x00\x2c\x75\xd0\xaa\x66\xac\x0e\x87\x46\x92\x04\x97\xda\x26\x96\x9f\xc3\xdb\x16\x42\x9a\xc5\x2c\x60\x2d\xbf\x05\xea\x4b\x2e\x07\x10\xcd\x87\xbd\x86\x8c\xb8\xd3\xba\xc7\x3a\x7f\x5a\x15\x5e\xf2\x62\xae\x6f\x98\x6a\x74\x16\x5f\xa2\xb5\x47\xb1\xb5\xb4\x1a\x43\x6e\x05\x6d\x2b\x78\xcd\x89\xfa\x98\x9b\xc7\x54\x12\x69\x1d\xf8\x18\x7a\x1b\xce\xde\xc0\xbb\xfb\xc9\x92\x73\x98\xda\x02\x2f\xab\x53\xc6\x02\xee\x32\x0d\x0c\x77\xac\x80\xdd\xf9\xee\x64\xb0\x9a\x0b\x8a\x4f\x9d\x9d\x8c\x59\x31\xb6\x12\x79\x4c\xed\x1a\x78\x90\x01\x1b\xec\x9c\x02\x3b\xe4\xf9\x75\x24\xbb\x68\x1e\xa7\xf0\xc7\xfb\xdd\xed\x6b\xdd\xad\xd4\x41\x50\xbb\x26\xf0\xce\x82\x0d\x8c\x07\x88\xb0\x8d\x98\x36\x9c\x0a\x5f\xbd\x7f\x01\x54\xd5\xb3\x5f\x7d\x70\xc1\x27\x4d\xb5\xbd\x3b\xeb\x9c\xfd\xea\xbd\x0b\xbe\x3d\x61\x5d\x3d\xd7\x9f\xbf\xe8\x52\x1b\x54\xd5\xc1\x58\xe6\x14\xf8\x6a\xcd\xbd\x54\xf2\x1a\x3e\xf9\x7c\x77\x47\x30\xf5\x89\xa6\x0b\xdf\xa0\x47\x6a\xca\xfe\xca\xe7\x9b\x4d\x35\xa9\x67\xbb\xa8\x4a\xe3\x07\xbb\xd2\x18\xca\xc9\xc4\x7d\x3c\xfc\xe1\xf2\xaa\x3d\x73\x29\x44\xed\xa6\x9e\xfd\x1a\xc7\x0b\xb3\x2f\x15\x71\xee\x30\x6c\xa5\xb0\xff\x8a\x7f\x7d\x44\xb3\x22\x4c\x70\x2b\x5f\xeb\x7e\x3c\xed\xab\x40\x5b\x2c\x99\xd9\x30\xea\x6c\xe2\x06\x59\x54\x47\xda\x7b\xcd\xde\xd5\x43\xd0\x03\x40\x33\x83\xe9\x51\x70\xa2\x49\x9b\x24\x37\x85\x35\x76\x2e\x91\x01\x0a\x04\x77\x8b\x5e\x35\x0b\xb4\xe6\x12\x8a\x18\x46\x42\xf4\x09\x51\x31\x80\x13\x1a\x4b\xab\x21\x44\x57\xed\x9a\x18\xd6\x18\xe9\xbf\x0c\x65\x3c\xe4\xaf\xed\x21\xfd\xe2\x56\xcc\xb1\x7e\x6d\xae\x62\x09\x85\xe2\x7e\x6a\x0d\xf3\x6e\x18\x92\xd3\xcf\x6c\x19\x36\x55\x70\x70\x8b\xbc\xce\xe3\xa8\x10\x12\x3d\xd3\x5d\x54\x3d\xca\x9c\xc3\x92\x21\x8a\x50\xf2\x9d\xee\xaa\x45\x81\xdb\x7a\xcb\xb2\x8d\x4f\x05\x65\xaa\xcf\xea\xb6\x0d\x28\x19\xa0\x58\x21\x0b\x1e\x9b\xe9\xbe\xda\x93\xab\xb1\x26\x50\xa9\x92\x53\xc1\xdf\x6c\x2e\x86\x35\xa7\x38\xab\xa0\xb9\x13\x6c\xef\x75\xb7\x97\x51\xbe\x59\x5e\x33\x2f\x80\xd8\xb7\x9c\xa6\x59\x99\xed\x00\x09\x99\x5d\xb3\x3d\x85\xec\xc3\x27\xe1\x19\x97\x15\xa7\xaf\x3a\x77\x8b\xa5\x7a\xb6\x73\x70\xbb\x7b\xa4\x39\x8e\x9d\x7f\x45\x0d\x32\x7f\xc9\xcd\xf2\x15\x3e\xf5\x89\xb9\xa3\x5c\xad\x36\x58\xb9\x5d\x5e\xf0\xca\x9e\x62\xf5\xbd\xc7\x4b\xdd\xc9\xef\xe3\xe5\x68\xba\x65\x46\x6d\xb3\x55\x2e\x8f\x76\xba\x6f\xf1\x7b\xb4\x1e\x5b\x2c\x88\xc1\x53\xe6\xc3\x05\x56\xa8\x94\x5d\x24\xb7\x10\x24\x32\x22\x65\x0c\x31\xf3\x3f\x83\x88\xe5\x38\x15\x30\x66\xf2\x17\xec\x24\x42\x06\x78\x02\x28\x13\x9e\x1a\x3b\x80\xc6\xe4\xf4\x6e\xb4\x4f\x54\x34\x28\xdb\x53\xc8\x7a\x93\x29\x87\x9b\x1a\x14\x17\xc2\x51\xaa\xe6\x61\xd3\x71\xd0\x08\x06\x89\xec\x85\xdb\x8b\xa2\xe6\xcc\xdd\x0d\xa6\x6f\xa7\x03\xca\x0c\x09\xba\xbd\x8b\x1e\x11\xd6\xeb\x7a\x77\x5e\x45\xd6\x37\xaa\x8f\x3b\x79\x6e\xa1\xfb\xe3\x1b\x71\xd4\x18\x63\xa0\x88\x0e\xab\xf5\x3e\xd0\xca\x30\x93\x56\x30\x31\x2e\x2a\x67\xac\x77\xfe\x57\x3a\xb6\x40\x2c\x65\xd4\x52\x42\x15\x1e\x3c\x34\xa6\x35\xca\xa8\x6b\x81\x7c\x3b\x79\x84\x37\xa9\x5b\x37\xe1\x2c\x69\x00\xd0\xe5\x41\xa0\xa8\x7b\x51\x3f\x3c\x94\x1b\xd3\x66\x87\xfa\xa2\x10\xea\xde\x64\xfd\xe3\x88\x23\xb4\x95\x71\x12\x1e\x02\x8e\x66\x87\xe1\xb1\x66\x16\x24\x20\x59\x86\x4f\xdc\x8c\xf0\xc4\x5d\x6d\x20\xe8\xa7\x83\xfb\x06\x77\x06\x02\xf6\x2e\x35\xf8\x2e\xb2\xe8\xa2\x10\xb3\x5f\xd1\x0f\x3c\xd3\x5f\x2b\x64\x59\x62\x7a\x72\xcd\xe9\xc8\x2a\x4b\x18\xdd\x7e\xdb\x19\x27\xbe\x0d\x0c\xd3\x56\x42\x31\x40\xec\x43\xbc\x34\xa5\xe8\x26\xfd\xed\x48\x9b\x78\x63\x4d\x0a\x3f\xd0\x85\xd2\xc7\x90\x5b\x1b\x50\x7c\x5a\x2c\xcf\x24\x1c\xfc\x13\x88\x09\xbf\xb0\xbb\xd3\x7a\x73\xd4\x94\xf2\x7d\xc8\x91\x31\x99\x19\x47\x0f\x32\xcd\x94\x10\x02\x13\x86\x95\x6d\x4b\xd3\x8e\x8a\x51\x61\xf7\xb3\xd1\xee\x95\xec\x55\x9a\xa1\xc2\xce\xa0\x89\x91\x4d\xda\xe0\x4c\x26\x92\x81\x48\x73\x0c\x0c\x7f\x34\x62\x97\x0c\xc4\x90\xe8\x42\xe5\xc6\x16\x91\x22\x64\x46\x46\x7b\x42\xe5\xe9\x54\xf3\x77\x3c\xdb\x5c\x0b\x44\xc7\x3c\xec\x78\xf2\x5e\xc6\xaa\xe9\xec\x41\x20\x9e\x61\xb4\xa6\x61\x5e\xa6\x34\x2c\x48\x70\x98\xda\x60\x80\x27\x53\xaa\x91\x69\x8c\xc3\x7a\xf4\x2a\x58\x9e\x8b\x06\x5c\xf2\xe1\xcc\xbb\x85\x8b\x18\x90\x1b\xeb\x83\x73\x5e\xc9\x9e\x1f\xff\xbe\xf3\x6c\x94\x03\x83\x62\x46\xa5\xa0\xf9\x06\x30\x15\x65\x29\x90\x5d\x9a\xaf\xe4\xc8\x7c\x4f\xd3\x8e\xf9\xb9\x83\xad\x87\x9d\xd9\x9d\xe4\x94\x38\x17\x41\x3a\x66\xa1\x41\x32\x76\xc7\xda\x64\x3f\xb0\xb9\xe0\x7c\xec\x78\xc0\xec\xc6\x63\x53\x27\xed\x19\x7b\x82\x14\x16\xfe\xcb\x3a\x8d\xbc\x16\x12\x88\xa1\xed\x7c\x40\xed\xc7\xde\x60\x8a\x96\xf5\x6f\x83\xf1\x1f\xb8\xff\xd8\xc6\xb0\xc9\x44\xca\xd9\xa5\x6d\xd8\xa8\xc8\xf1\x22\x68\xb2\x10\xfa\xd9\xaf\x79\xa1\x4d\xca\xc2\xe9\x60\x38\x34\x47\x8c\xf0\x40\xc9\xa8\x51\x5e\x7a\xb2\x2e\x3f\xb3\x29\x4e\xf3\x57\x67\x8b\x3f\x1d\x4c\x9a\x88\x61\x34\x98\x1b\x5e\xa3\xe1\xeb\x8c\x61\x76\x23\x56\x23\x81\x5d\x5a\x8f\x35\x8a\x4d\xc5\x3d\x92\xec\x0d\x00\x4b\x73\x8f\xa4\xfb\x38\x44\x91\x89\x89\x9f\x2c\x46\x03\x6e\x03\x16\x9e\x54\x2a\x36\xe2\x36\x9f\x61\xfa\x29\x36\x6b\xc5\xc6\x22\xea\x45\xa2\xfd\x6c\x4a\xc3\xee\x65\xe0\xb6\x7d\x83\x6e\x9e\x2e\xf7\x13\x69\xd5\x73\xc4\xb8\x8b\x07\xaf\x82\xb5\xc3\x60\x69\x47\x6e\x0f\xb0\x7b\x9b\xf8\x3b\xdb\xf9\xa3\x1e\x4c\xea\x9c\x8a\x26\x2d\x52\xf5\x1e\xdf\x35\xbf\xf3\x11\x61\xa3\xb4\xf9\x59\x4f\xd8\x98\x2a\x7a\xa2\x28\xf9\x10\x7a\xa2\xac\xf9\xb9\x18\xab\x4b\x46\x33\xf3\xbb\xce\x31\x21\x8d\xa1\xc8\x3a\x04\xc2\xb5\xd9\xa6\xf6\x11\xa9\xab\x6c\xd3\xec\x9d\x45\xff\xc9\xaf\x87\xe1\xbf\x77\x86\x86\xde\x29\x16\xc9\x99\x14\x1c\x3e\x56\x59\x81\xe2\x53\x8f\x42\x1f\xd5\xe4\xd9\x05\x25\xa6\x1e\x2d\xbe\x18\x15\x0d\xa9\x2e\x15\x63\x58\x6e\x2c\x8f\x44\xb1\xc2\x92\x5c\x7f\x04\x53\x0d\xef\xb1\x75\x12\x11\x87\xd4\x99\xac\xf7\x18\x15\xde\x7a\x11\x2d\xdb\xfc\x38\x86\xf6\x68\xc3\x0d\x88\x62\x87\x4b\x12\xf7\x60\xce\xc0\x92\x8d\x8d\x02\x4b\x86\x3c\x6d\x8c\xa9\x53\x27\xc9\x8f\x5c\xb6\xc4\xb0\xf8\x0c\x63\xfc\xcb\xad\x66\x0c\x13\x31\x51\x34\xda\x82\x72\xa1\x36\x09\x19\x0f\x62\x55\x35\xfe\x8f\xc4\xd1\xb4\x7e\x12\x73\x4b\xc8\xa3\x3a\x6f\xa4\xb8\x9b\xed\x14\x94\xe7\x38\x79\x96\x9f\xb5\x92\xba\xe9\x52\x23\x03\x86\xa7\x35\x30\xca\x7d\x41\x9e\x55\x05\x36\xe8\x79\x17\x75\xa8\xe8\xbf\xb8\x7d\x4e\xef\xc6\x77\xc1\xe6\x7c\x04\x30\x50\xaa\x5b\x30\x98\xac\x2d\x0e\x03\x62\x68\xa9\x60\x64\xcc\x4c\x1d\x50\x11\x05\xe1\x5a\xee\x6f\x64\xab\x9d\x79\xd9\xbb\xf7\x9d\x84\x7f\x4c\xef\x47\x40\xc9\x84\xab\xba\x48\x42\xd1\x75\x2f\x12\x89\x93\x8a\x1a\x89\xe9\x46\xcf\xce\x2f\xba\x84\xa0\x9d\x3f\xf1\x4b\x08\xba\xe5\x3a\xc8\xcb\x7e\x3f\x32\x2c\xba\x1d\x25\xd0\x1c\x0c\xb1\x7c\x35\x09\x17\x67\xd4\x98\xbd\x8a\x46\x4c\xd5\x41\x4a\x43\xae\xc1\x7e\x42\x3b\x57\x50\x14\x53\xd6\xbc\x1d\xdd\xef\xd2\xed\x53\xe2\x53\xba\xf7\x88\xa2\x90\xcf\xae\x6f\x8c\x89\x30\x3c\x62\x3a\x86\xc6\x64\x72\x1c\x76\x1a\x79\x24\xa3\xf5\x31\x35\x3e\x58\x3f\xf1\x8e\xc5\xca\xcd\xe3\x21\xbd\x70\xbc\x12\x05\x1f\xf5\x46\xc6\x61\x62\x92\xc1\x67\x77\x32\x1c\x59\x06\x21\x09\xa4\x1a\x60\x87\xd6\xe8\x35\x76\xf0\x3e\x3c\x9c\x82\xdc\x7b\xd9\x77\x9c\x48\x51\xb7\x91\xd4\x69\x89\xc9\x48\xe5\xd0\x99\x16\x98\x83\xfb\xed\xdd\xc7\x98\x71\x20\x16\x66\x77\x72\x37\xef\x9f\xde\x0d\xae\xc5\xdd\xed\xe8\xae\xa8\xca\x07\xa3\x33\x1f\x98\x3d\xa9\x5b\x2f\x18\x4e\x90\xde\x2b\xf2\x04\x51\xf8\x31\x07\x0a\x5d\x53\xe0\x60\x4d\x26\x14\x68\x7e\xe0\xeb\xfe\x46\xe3\xff\x35\x81\x71\x13\x47\x98\x6c\x87\x43\x16\xed\xa8\x2f\x68\xca\x88\x99\x06\x09\xf5\xc1\xc3\xb0\x75\xdf\x1a\x56\xac\xb5\xf7\xcd\xd6\x30\xd8\x80\xbc\x6d\x51\xd8\x9d\x6c\x90\xe9\x60\x7a\x2c\x9c\x7a\xc1\x49\x99\x49\x40\xfe\xfb\xc8\xa8\xa3\x38\xf5\xa8\x58\xfa\x50\x4e\x52\xb4\x25\x25\xee\xf1\xa4\x31\x90\x07\x3d\x5a\x7a\x33\x78\x8a\x23\xa2\x25\xd3\x56\xf3\x1e\x6e\x5c\x63\xcf\xc1\x96\x92\xe0\x3f\x3b\x1f\xb0\x64\x8e\x3c\x7c\x81\xb9\x82\x9a\xf3\x9d\xa9\x17\x9d\xe7\x53\xfa\x3c\xbc\x75\x28\xef\xa7\x0e\x85\xe3\xa5\x78\x1c\x48\x35\xe6\x31\xe9\x99\x15\x81\x68\x0f\xe2\xad\xdd\x7c\x60\xee\xc2\xf0\xea\x0f\xdd\xa7\xa3\xbc\x8d\xec\x70\x2a\x75\x19\x12\x93\x99\x49\x64\x12\x73\x3d\x13\x3d\xa6\x1f\xda\x0c\xd1\xb3\x06\x11\x23\x9d\x51\xc0\xa3\x41\x3c\xe3\x37\x78\x92\xdb\x59\x8c\x76\x00\xa4\x63\xf3\x34\xd0\x50\xfe\x22\x08\xa2\x8a\x36\xca\x75\x06\x83\x42\xa6\x34\xc7\x91\xac\x2a\xca\x46\x93\x50\x75\xeb\x34\x31\x0e\x3b\x8a\xd1\x8a\x5e\x8c\xf7\x81\x31\xdf\x11\xff\xc3\x0c\x04\x14\xfd\x2d\xf7\x74\x92\x4c\x30\x0e\x1f\x19\x8a\x68\x18\xe6\x7d\x12\x5d\xdb\x1a\x5b\xcd\x1d\xf2\x28\x9b\x57\x4a\x1b\xe6\x25\x70\x5d\x5b\x5f\x15\xc0\x3b\x81\x70\x56\xe9\xa8\x58\x4d\xb2\x1f\x9b\x33\x8c\x59\x5e\x40\x72\x6c\x33\x29\x44\x2f\x60\xb4\xc8\x08\x59\xa2\x8b\xc5\x39\x4e\x85\x94\x72\xff\x1c\xc8\x9b\x48\xdc\xea\x5a\x31\xe8\x7b\x9c\xc1\x0b\x15\x17\xb9\x54\xbe\x9f\x3e\x4b\x44\xd3\x65\xb7\x0f\xc5\x01\xb9\x40\x93\x2a\x31\x90\xb8\xc0\x7c\x22\x2a\xe6\xe0\x29\xbc\xc4\xbd\x75\x14\x6c\xdd\xc7\x00\x78\x0a\xba\x6e\xef\x5e\xc7\x30\x74\x90\xdd\xa6\x27\xf0\x52\xda\xfe\x14\xe6\xe5\x84\xf3\xb5\xbd\xc7\x5f\x38\x9f\x08\x5d\xb2\x71\xbe\xf8\xd3\xf9\x2f\x1d\x7d\x55\x92\x23\x08\x4e\x8f\x23\xfc\x17\x1e\xae\xef\x18\xb9\xa0\x25\xc5\x24\xe5\x51\xd7\x12\x5b\x34\x7c\x99\x61\xe2\xde\x43\xda\x54\xe3\xb0\xf1\xab\x0f\xc6\xfc\x59\xe2\x90\x78\xe8\x59\xbe\xbe\x6e\x4a\x8d\x18\x7b\xc7\x41\x2a\x14\xad\x90\x22\x44\x9e\xdc\xab\xda\x6a\x46\x77\x31\x59\x32\x5e\xf7\x9c\xd2\x99\xc5\x68\xc2\x86\x9f\x14\x28\x1f\x24\x28\xd4\xf0\x40\x4e\xda\x5f\x3c\x09\x8c\xf5\x08\x0c\x5a\x7a\x25\x97\x4c\x13\x20\x55\x4e\x05\xa3\xf2\xc0\x9c\xd0\x50\x9f\x57\x1c\x96\xbe\xda\x87\x37\x93\x42\xa8\xa4\xe6\xd6\x22\x28\x6e\xe7\xc5\x97\xf2\x62\xc0\x8b\xee\xfe\x73\xb4\x58\x1c\x3d\xc0\x93\xa6\x92\x62\x0a\xc3\xdd\xdd\xe7\xfd\x86\x74\x86\xd2\x0d\xa2\x6c\x27\xa8\xc2\x40\x1a\x6b\x0b\x48\x77\x64\x1d\x97\x25\x25\x72\x2d\x9d\xa2\x09\x00\xef\x94\x6a\x96\xc0\x61\xf2\xe1\xa3\x37\xed\xa3\x29\x75\x3f\x13\xc3\x10\x78\x9a\x91\x0f\x82\x48\xbd\x2c\xcd\xca\x3c\x08\x35\xdc\x20\xb7\xc3\xc6\x96\xce\x77\xfb\x9d\x7b\x87\xb8\x5b\x97\x5e\x60\xd8\xfe\xdc\x76\xea\xc8\x28\x1e\x5a\xc6\xcf\x5e\x84\x04\x88\xf2\xb8\xc9\xa0\xa9\xc5\x04\x4b\x10\x60\x11\xa6\x19\x34\x2e\x4c\x1b\xc7\x5e\xa4\x59\xca\xd8\x00\xf3\x86\xa3\xd8\x3d\x9e\x10\x3b\x23\x1e\x4e\x65\x66\xd4\x76\xd2\xee\xd6\xe3\xde\xdd\x31\x3e\xd5\xea\x09\x03\x49\xdf\x15\xcc\x2f\x98\x27\x5c\xa5\x98\xd1\xa2\xb2\xce\x64\x08\x0c\x57\x5b\xe7\xf8\x16\x35\x68\x07\xa0\x2d\x83\xce\xfe\x3f\xce\xff\xe9\x73\xbe\xe9\x45\xfd\x7e\xf3\xce\xe5\xcb\x97\xdf\x41\xb1\xeb\x9d\x46\xad\xec\x56\xf0\x63\x51\xc6\xc4\x79\x7c\xe4\x3e\x19\x8c\xe9\x3f\x88\x6e\x38\x11\x9e\x64\x8b\x53\xe6\x64\x2b\xdd\x91\xc9\xc2\x70\x49\xcc\x24\xf0\x6c\x21\x30\xc9\x3e\x68\xfd\xea\x4a\x57\x7c\xd1\x7c\xe0\x03\x17\xa3\x0b\xd8\x12\x68\x19\x5b\x7f\x06\x2a\x41\x5f\x9c\xc3\xf9\xc1\x51\xf8\x68\x82\x72\x38\xc7\x40\xd8\xd5\xc4\x4e\x26\xc9\xf5\xaf\x21\xdc\x4b\x6e\x14\xd7\x2f\x49\x25\xe9\x6e\xd1\x74\xb8\xf4\xa0\xbb\xfe\x14\x56\xd1\x20\x6e\x48\xc4\x68\x89\x31\x5d\x4f\xac\x0d\x8a\xca\xf3\x2a\xe5\x61\xca\xe5\x4a\x68\x91\xd5\xc2\x12\xb5\x61\xb8\xba\xb5\xd5\xb9\x3a\x65\x3b\x83\x3f\x6b\xc3\xe4\x6c\x20\x7a\x75\xfd\xba\x21\xfd\x8e\x04\xcd\x89\x48\xf4\x05\x01\x10\xe5\xf8\xe6\x42\xbc\x1d\xbe\xa1\x2d\xd9\x1c\x83\x85\x43\x4c\xd5\x39\xf1\x2c\x78\xf3\xb2\xbd\xdb\x0a\xb6\x76\x12\xe0\xa6\xd5\x29\xbd\xd0\xcc\x17\x1b\x8f\xde\x4b\xc1\x81\x6c\x89\x54\xf4\x68\xaa\x26\xb2\x50\x0c\x92\xb3\xf7\x65\x25\xd9\x0c\x5d\xd2\x8e\x17\xea\xfc\x6a\x87\x37\x4d\x46\x2a\xac\xf5\xce\x6b\x49\xb2\xc2\x19\x0a\x68\xf9\x80\xe9\x1b\x2b\x68\x61\x1e\x0f\x3c\x9d\xf6\x24\x5f\x89\x5f\x1b\x8c\xd3\x13\x2d\x1e\x10\x3d\x49\xe5\x99\x02\x79\x52\x07\x27\x89\xa1\x22\x48\xab\x0e\x4e\x61\xca\x1c\x54\x82\xdc\xb1\x84\x89\x69\xd0\x43\xc1\x91\x25\x84\x56\x4c\xef\x88\x6f\xc1\x98\xd2\x0a\x1f\x48\xd9\xcb\x1c\x9b\x6d\x21\x83\xcf\x4b\x44\x00\xf1\x36\x18\x5f\xce\x66\x6d\x84\xef\x89\x5a\x3e\xe4\xf3\x58\x85\x5d\xf2\x0f\xc6\x61\x3a\x16\x82\xb9\x3d\xbe\x45\x25\xf7\xa7\x62\x65\x76\xba\xf9\xf8\xc1\x1d\xcc\x57\xf0\xdd\x92\xde\xe3\x85\xde\xa8\xa5\xa1\x57\xcb\xde\xb0\x79\xf9\x97\xb3\x6d\xab\xcb\xab\xe6\x94\x22\x58\x75\x17\x3a\x15\x94\x22\x7c\xa3\x56\x51\x7e\xa3\x2c\x98\x28\xab\xb3\xb0\x48\xc1\xb1\x66\x65\x5b\x17\x36\x6d\xb3\x29\x03\x8d\xdd\x61\x8d\x13\x3c\xfb\xae\xad\xd9\x4b\xda\x5d\x5b\xb3\xd6\x5b\x2e\xdc\x26\x9b\x8a\x2e\xdc\x5a\x78\x4a\x5e\xa5\x35\xab\xa6\xdf\xa5\x4d\x9b\x67\xdc\x10\x99\x8a\xed\x14\xf8\xb8\x39\xd2\xa8\x17\x99\x23\x95\xb1\x46\xb2\xa5\x2b\x73\x64\x4c\x0d\x3f\x51\x9e\x4c\xeb\x56\xc7\xa1\x27\x86\x6b\x18\x28\x8b\xa5\xfe\xfe\x73\x7d\x35\xef\xb2\x8f\x37\x56\x1b\xb5\x02\x2c\xf5\x8f\x73\xdd\xf5\xa6\xb0\x13\x2a\x47\xc7\x30\xde\x36\x6b\xbe\xee\x5e\xbf\xd2\xb9\xb2\xc7\x5f\xd9\xb3\x28\x59\x19\xc4\xb1\x48\x05\xe4\xa3\x8b\xa5\x8e\x26\xcf\x04\x48\x05\xa8\xc3\x10\xd7\x64\x50\x7f\xd0\xbb\x9c\xc3\xbf\xe8\x8e\x2d\xac\x0f\x8b\x61\x24\x80\x75\x5a\x2b\xdd\xad\x55\x81\xc3\x52\x41\xe4\xd8\x4b\x7c\x71\x42\xb1\x0f\x47\x02\x29\xf8\x7d\x12\xd0\x96\x80\xfa\x2c\xee\x19\x97\xe7\x94\xf9\x43\x55\x38\x4b\x4e\xd8\x70\xee\x46\x30\x66\x18\x5c\x40\x76\x8f\x41\x30\xda\x34\x84\x60\x0a\x4e\x74\x7b\x7f\x1a\x94\x75\x8c\xcf\xa7\x4f\x14\x0e\xcd\x39\x5a\xf8\x96\x3b\x47\x42\xab\x88\xeb\x73\xe9\x91\xd7\xaa\x94\xe3\xe4\xe9\x6f\x09\xbd\xc1\x2d\x3a\xd9\xd4\x00\xc5\x5a\xbe\x1f\x64\xfc\x99\xc9\xce\xc6\xb1\xfe\x58\xad\xb9\xaa\x52\xef\xb1\x24\xe2\xd6\x85\x80\x2b\x44\x79\x67\xe3\x07\xbc\xd9\xab\xbe\x9a\x61\x22\xea\x5b\x1e\xa5\x7e\x4c\xe9\x8f\x09\xa6\x8c\xd1\xb5\xf7\xa6\xd0\x28\xf1\xe6\x7b\x13\xd1\x67\x8b\x11\xb6\x62\x5e\x6c\x4c\x9d\x70\xd6\x77\x24\xf6\x40\x8f\x83\xb6\x13\x67\x20\x0d\xf7\xe7\x65\x43\x99\x13\x37\xdc\x4b\xd4\xaf\x8c\x61\x7b\xaf\xbd\xbf\x1e\xdc\x1c\x95\xd0\xfc\xe3\x4d\xa8\xca\x79\xfb\xa2\xa9\x18\x75\xbb\xdb\x70\x22\xc6\x51\x26\x98\xbb\x4b\x71\xdb\x6b\xc1\xf1\x1d\xb1\xd5\x92\xe3\x43\xf4\x66\xe5\xf8\xc0\xe8\xa7\xf5\x6f\xb9\x8b\x60\x14\xd8\xec\x78\x70\xf3\x59\x7b\xff\x01\xde\x93\x3b\x7e\x60\x76\x54\xcf\x0f\xc8\x63\x3c\x66\xb0\x4f\x54\x4a\xa2\xa7\x19\xcc\x60\xd5\x54\xef\x54\x70\x4c\x37\xe6\xe0\x8a\x6e\x3d\x58\xd1\x10\xe8\x64\x22\x99\x43\xd7\x36\x49\xae\xfa\xa8\xc9\x2c\x2b\x5e\xea\xf3\xe5\x1a\xd9\xdb\xe9\x63\x6c\x79\x29\x0a\x11\xfd\x93\xb7\x9a\xa8\xf9\x3c\xbe\x06\xc7\x5a\x17\xa2\x9c\x4b\x79\xd5\xc9\xa3\x0d\xc4\xaf\x7b\x78\xc8\x4f\x4c\xc5\xb7\x98\xc8\x90\xc7\xf7\xf4\xc5\x1b\xbd\xe7\xe4\xf1\xb4\x94\x3a\xea\xa2\x9e\xd2\x33\x82\x85\xeb\xa0\xf2\x47\x19\xf4\x5a\xfb\xdd\xad\x2d\xb4\x59\x2e\xbd\xc0\xb3\xc6\x3b\xff\xfa\x2d\x4c\x30\xb7\xb8\x02\x6b\xd3\x99\xdd\x0e\x1e\x5f\x8d\x32\x1d\x6a\x2c\x58\xee\x28\xdd\x31\xa6\x7c\xf2\x07\xad\x6d\x14\xed\x43\xcc\xd2\xce\xc7\x88\xc3\xb9\x62\x87\x89\xb6\x93\x3a\x4e\x8c\x42\x39\x06\xac\x08\xeb\x93\xc8\xe2\x8b\x3e\xad\xac\x04\x6e\x3e\xd1\xe3\xb7\x21\x23\x4e\x61\x1e\x2d\xf1\x5a\xc5\x21\x63\x3c\xc2\xac\x61\x7a\xad\x90\x2f\xec\x53\x1e\x0f\xd2\x97\x69\xd7\xa4\xb0\x85\x44\xeb\xfa\x5e\xbf\xd9\x6e\xcc\xbe\x10\xdf\xf4\xb9\x7c\x19\x6f\x25\x0e\x4b\x56\x36\x73\xc7\x9a\xfc\x98\x07\x21\xd6\x4b\x46\xff\xfd\x6b\x51\x26\x7f\x3d\x14\xef\x72\x05\xb7\x1c\x86\xc4\xe2\x7b\x00\xbd\x7b\xd7\x88\x4a\x7e\xe5\xd5\x06\x2e\x44\xd9\x35\x55\xb6\x79\x23\xb3\x26\x15\xea\x94\x5a\x31\x88\x31\x7c\xf3\xc8\xa8\x1e\xbb\x47\xcc\x50\x18\x98\x4a\xa9\xa7\xf1\xce\xd8\xd6\x48\x67\x65\x13\x5d\x1a\xdb\x37\xc3\x6b\x73\x7c\x89\x98\x8c\xb0\x33\x94\xe6\xf5\x8a\xba\xc0\x14\x3d\x49\x27\x99\xc7\xe8\x8e\x11\x4b\xbe\xf4\xdc\x1b\x1a\xb0\xd9\x7f\xb5\x3f\x9b\xa9\xba\x5e\x15\x69\xae\x61\x98\xc3\x24\x8d\xf8\x4a\x96\xef\x0d\xb9\x14\x22\x7f\x65\x84\x1e\x45\xb8\x8d\x91\xb3\x14\xe8\x48\x19\x42\x7d\x35\x15\x4a\xdc\x99\xa1\x6c\x71\x62\xfc\xc3\x0b\x40\x33\xd2\x18\x7f\xb7\xd3\xcf\xed\x3e\x4b\xde\xb9\xc2\x26\xad\xa7\xf4\xa4\x5d\x44\x11\x27\x43\xe0\x21\xb2\x4f\x3d\x3d\x6f\x28\x7f\x96\x50\x12\xfc\x1c\x87\xd6\xa7\x3b\x96\xa4\x61\x5b\x52\x9b\x84\xcb\x6b\x6c\xe2\xe3\xc4\x85\xb0\x4a\x6d\x50\x6a\x68\x22\x3a\x31\x2a\x36\x1f\x5d\x33\x1e\x09\xe6\x00\x78\x99\x3b\xe2\x00\x63\xe9\x1a\xb6\x36\xd0\x68\x0a\x30\x96\x1b\x9f\x54\xdd\xba\x86\xc8\x2a\xae\x5c\x99\x85\x41\x70\x4d\x4c\x9f\xf1\x46\x6c\xfb\xec\x8f\xdb\x9c\xec\xec\xaf\xa3\x82\x9b\x9a\x5c\xcf\xd8\x73\xff\x68\x7e\x3d\xa3\x89\x53\x6f\x9b\x46\xcf\x09\x52\x8d\x5f\xe6\x16\x8e\xd2\xcb\x59\x87\xc0\xb4\xc4\x9d\xe2\x83\x4d\xcf\x36\xf7\x16\x17\x6d\xfa\x30\x6d\xd8\x88\xc8\x18\xc0\x27\xea\x82\xe2\xde\x85\x6d\xf9\x4b\xbd\xbb\xb2\x81\x4f\xf2\xee\xa6\xa7\x3b\x13\x4c\x51\xba\xb3\xb7\xe8\xa7\x59\x33\x27\x66\x42\x79\x4d\xcb\x04\x71\x02\xe8\xdb\x53\x42\xe8\xd9\x68\x13\xf2\x2f\x48\x09\x71\x82\x57\x25\x35\x37\xc4\x09\x23\x44\xa2\x20\xcf\xd8\x30\x7e\xcc\x04\x11\x69\xc0\xea\x2e\xb1\x80\xff\x63\x59\x22\xd2\xbc\x0c\x18\xba\x45\xf9\x02\x58\x11\x43\x0e\x97\x30\xbc\xf3\x13\x77\xcd\x9d\x28\x1b\xea\x2e\x3a\x06\x35\xa6\x64\x93\x10\x49\xd4\x98\xa2\xe3\x26\xe4\x94\xc5\x84\x82\xca\xd0\xc9\x84\xd5\x2e\xd3\xb1\x6c\x94\x58\x8d\xdd\x86\x11\x48\x8d\x72\xcf\x67\xf9\x73\xbc\x3e\x17\xda\x0d\x70\x4f\x1a\x86\xdd\x6f\x51\x28\xbd\xfa\x2e\xbe\x9e\xf0\xde\x16\x90\xcd\x58\xbb\xb0\xba\x05\x17\xaf\xde\xdf\x9f\xef\xde\x99\xeb\xee\x3f\x6f\xb7\x0e\x75\x21\x3b\xad\xb2\x66\x96\x60\x5d\x06\x7c\x17\x8b\x28\xcd\xac\x7a\x13\x45\x8a\x84\x33\x69\xdb\x20\xb9\xb5\x31\x9f\x2b\xb1\x28\x0a\x12\x46\x78\x94\xe9\xb5\xdb\x89\xa9\x1a\x12\xcf\x58\x2b\xf8\xae\x06\x27\xa8\xe1\xea\x19\x66\x6b\xe7\x30\x79\xaa\x64\x4e\x15\x1e\xc4\xdf\xcd\x71\x59\x05\x28\x6d\x48\x3e\x21\x18\x55\x0b\x45\x3c\x22\xdb\xc9\x62\x8d\x64\x83\x51\xa0\x2c\x49\x4e\x4d\xb9\x95\x8a\x99\xf4\xf0\x72\x32\x92\xb9\x97\x0f\x53\x2e\xa2\x73\xab\x24\x3e\xab\x5e\x83\xf1\x7b\x78\x75\xdd\xec\xd5\x2c\xff\x19\xdd\xfe\x7d\x64\x54\xee\x44\x2b\x5f\xd0\x5b\xfa\x97\xd7\x27\x85\x4a\x71\x06\x54\xb3\x7f\xb3\xfc\x97\xf4\x8f\x09\xeb\xd9\x80\x0d\x03\xe1\xf7\xc3\xc6\x5e\x83\xf0\x61\x4a\x28\x78\xd1\x82\x1a\x49\x19\x97\xba\x17\x1e\xb1\x53\xf3\x82\x38\xc3\x44\xd1\x42\x04\x21\xec\x81\xcb\x68\xab\xfb\x09\x36\x1d\xa5\x41\xe1\xd1\x6f\xef\x9d\x7e\x7c\x1d\x66\xe1\xa6\x19\x84\x12\x02\x2c\x42\x4d\xc5\xfd\xde\x98\x5a\x6a\x2c\x04\xc7\xa2\x03\x3c\x32\x2d\x5b\xf1\xb4\xf8\xd0\x70\x51\x3a\xf3\x4b\x99\x9d\xca\x3d\xc4\xc2\x96\x91\x13\xc8\xdc\xcf\x68\x7b\x22\x59\x45\x1d\x6f\x5e\x86\x64\xb7\x46\x6b\xea\x9a\x17\x63\xc7\x24\xc7\x49\x50\x43\x65\x48\x4f\x38\x44\x2c\x52\x2f\xa0\xc9\x63\x4e\xa7\xd0\xe6\x10\x31\x6e\xe1\xea\x21\x92\xdf\x27\x2f\x83\xd9\x16\xfa\x74\x63\xa9\xa7\xe3\x09\xb2\x12\xe3\xd4\xb6\x37\xb2\x6a\x5b\x53\xd3\x3c\xd8\x38\xe2\x49\xc9\x4e\xed\x40\xce\xcc\x05\x23\xb0\x8f\x94\x5e\x7b\x26\x1a\x86\x95\x42\xed\x97\xd8\x84\xd0\x33\x45\xfa\x4a\x8c\x54\xe0\x73\x37\x73\xcf\xa0\x95\x28\xfe\xc2\x24\x02\xff\x71\x03\x33\x8d\x4d\x4c\x73\xac\x5c\x45\xe9\x34\xe2\x2d\xdd\xa3\x0c\x4d\x79\x60\x62\x47\xe1\xe7\xa1\x83\x06\x98\x24\x1e\xfc\x76\xb0\xa6\x1f\x94\x3f\x9c\xcc\xe5\x2a\xb8\x20\x1a\xa4\xa5\x9a\x70\x0f\xa2\x9d\xc4\x4e\x83\xf1\x86\xb5\x79\x22\x2c\x60\x09\xc6\xa0\x70\x38\x66\x6e\x89\xb6\x2a\xa0\x53\xa1\x62\x8a\x7e\x02\x95\x0a\x3e\xd8\x59\xee\x6e\x4b\x08\x84\x49\xdc\xa2\x6c\x10\x62\x21\xd6\x49\xca\xa3\x3c\x38\xfc\x18\x0d\xa1\xfa\xc2\x49\xef\xd4\xa3\xdb\x4e\x3d\x01\x2e\x19\x18\xcc\xc7\xd3\x95\x98\x29\x45\x29\xb9\xc2\xa5\x04\x53\x15\xe0\x6d\x5e\x25\x89\x1b\xb9\xd5\x05\x82\x1f\x95\xb3\x5e\x93\x93\x12\x09\x43\xca\xca\xf3\x4a\x73\xf3\xf8\x88\xac\x64\x83\xf0\x2a\x25\x0a\x95\x51\x8f\xc2\xc2\xe0\x65\xe4\x20\x20\xfa\xf8\x18\xce\x80\x7e\x8a\x9f\x72\x28\xd2\x87\x70\xe9\x39\x7e\xa8\x7b\x75\x10\x33\xc2\x91\x56\x77\x6b\x15\x93\xa6\x14\x33\x11\x1a\xc8\xfe\x0a\xc8\x46\xe1\x89\x1b\x27\xdb\xac\xb2\xe4\x6a\x30\xaf\xea\xd6\xac\x6c\xde\xfa\xd9\x02\xb3\xad\x61\x58\xb5\x21\x32\xf8\x36\xd4\x3c\x60\xb0\xdd\xf5\xf1\xce\xf5\xd7\xe1\xc8\x68\x5a\xb7\xb9\x52\xa5\xdf\x93\x57\x09\xf4\xb3\xd9\x34\x06\xbc\x30\xd4\x47\xc6\x49\x7a\x44\x4a\xbf\xd2\x37\x6d\x7c\x05\xb5\x5f\x05\x01\x5a\x5f\x39\xdd\x64\xfc\xab\x0e\xde\x4a\xf9\xca\x29\x56\xe2\x65\xdd\x1f\x1f\x5a\x9f\xf0\x19\xf5\x55\xe0\x52\xfb\xf6\xd7\xe5\x55\x3e\x82\xec\xbf\xb2\xca\x30\x07\x34\x05\xe4\x25\xda\xa1\xe0\xbc\xc4\x74\xec\x74\x90\x76\x19\x8b\x6b\xa9\x03\xe5\x64\x43\x89\x1a\x86\x55\x28\x51\xc6\x0f\x6f\xd2\xbb\xa9\x56\x81\x21\x9f\x27\x7a\x51\xe1\xd0\xf1\x02\xb6\x15\x25\xc0\xa9\x91\x76\x0b\x4e\xed\x6a\x62\x85\xe8\x08\x27\xda\x91\xb8\xe1\xb4\x1a\x6c\x58\xa2\x87\xe9\x92\xdb\x52\xac\xb9\xc2\xeb\xf8\x5d\xf5\x14\x28\x7e\xc2\x90\xee\x4a\x8c\xfd\x90\x0a\x51\x6b\xa0\x02\x8d\x77\x44\x8c\x62\xbc\x69\x80\x57\x55\x28\x95\xa6\x47\xc9\xa4\x80\x13\xa3\x44\xb7\xf4\x8c\xf3\x67\x9a\xeb\x76\x6a\xc5\x88\x69\x72\x50\x9d\xdd\x80\xc4\x1d\x30\x97\x8f\xf2\xbf\xea\xf6\x84\xfb\x96\x2a\xf1\x57\xb5\x94\x33\x48\xb7\xca\xae\x68\x95\x3a\xf0\x67\x34\x90\x1c\x98\x6e\x02\xe6\xf4\xd6\x21\x91\x11\x0d\xa3\xe2\x4a\x97\x5c\x7b\x30\x72\xbe\x36\xef\x62\x3a\xb4\xd3\xeb\xc5\xc6\x60\xd6\x7c\xeb\x00\x88\x85\x56\x06\xd4\x13\x8f\x56\x2a\x5b\x0c\x44\x66\xc3\x2a\xfb\x9f\x14\xe3\x10\x7f\xf3\xe9\x6d\xc5\x07\xf5\x96\xd6\xe2\x02\x50\xd4\x38\xbe\xd2\x3a\x50\x50\x03\x54\xef\x9c\x8b\x81\xf5\xe1\xd5\x60\xe9\x08\xa3\x0d\x17\x5f\x9f\x50\x25\x1d\x39\x46\xbd\xb4\x3e\x6b\xae\x3f\x5c\x29\xe4\xe8\x81\x51\x7f\x90\xfc\xc4\x7c\xf7\x49\x12\x33\xff\xfa\x1c\x7c\x7e\x97\x33\xec\x94\xfe\xe6\x92\x4f\x15\x0d\x64\xf2\xc6\x73\xb3\xbb\xf9\x34\x58\xb8\xfe\x13\x46\x73\xd3\x8b\xae\xea\x09\x76\xf1\x72\xee\xad\xc8\xab\x0a\x62\x21\x98\x3c\xb5\xeb\xd8\x0c\x98\x48\x9b\xc3\x79\xcb\x0c\x8c\xe8\x04\x7b\x1a\x26\x46\x50\x50\xfa\x0b\x01\x6a\x22\xd6\xe4\x7c\xec\x3a\xb5\x3e\xb3\x5d\xed\x58\xe4\xc0\xdd\x13\x07\x6f\xf6\x9a\xba\x06\x89\x1e\xd3\xa7\x64\x72\x3f\x7e\xd2\xbb\x51\xad\x97\x74\xa8\x10\xbf\x4f\x1b\xde\x79\xdd\xbb\xf3\xca\xa4\x20\x8d\x1a\xba\x68\x73\x03\x5e\xcd\x6b\x80\xf2\xe2\x8a\x5b\x16\x56\x42\x3e\x10\xe3\xec\x4d\xcc\xa5\x54\x02\xfd\x04\xa4\xb1\x5c\x83\x13\x25\xb1\x22\x33\x3e\x06\x07\x4a\x32\x0c\x5a\x95\x48\x4c\x50\x55\xd0\xf0\x59\x60\x83\x38\x47\xdc\xe3\x1a\x8f\x23\xe2\x38\x72\x6e\xf3\xae\x51\x53\xea\x78\x7d\xf5\x3c\x8c\xa7\x98\x65\x00\x7e\xfb\xca\xee\xa3\xea\x51\xc6\xc1\x5c\x19\x90\xd9\xa8\xe6\x70\xfa\xa4\x3e\xf4\x6e\x34\x39\xe9\x13\x3a\x70\x6f\xed\x24\xdb\x56\xe3\x91\x2a\xd2\x03\x8d\xe8\xa4\x2a\x98\xa4\xc0\x02\xef\x4d\x5c\x0f\x17\x93\x3d\x28\x64\x0d\xba\xf9\xaa\x85\x2a\xe7\x0f\xf0\xc5\x39\x19\x61\x54\x21\x3e\x77\xa3\x4e\x1a\x02\xcc\x3a\xa5\x22\x28\x84\x06\x7c\xe7\xbb\xfd\xde\x9d\xef\x4f\x81\xa7\x50\x0b\xf1\xeb\xe9\xc7\x9a\xcd\x51\x9e\x50\x51\x5c\x35\x45\x8c\x39\x66\x24\xbc\xa5\x9e\xd7\xf7\xaf\x6e\x01\x78\x0a\x83\x6c\xef\x75\x5f\xae\x26\xf6\x58\x9f\xe7\xd5\xf1\x11\xf4\x2a\xca\x7b\x14\xf9\x46\x98\xa3\xe0\x4b\xe7\x3c\x7e\x72\xd2\x90\xc6\xc0\x71\xac\x99\xdb\x4b\x2a\x27\x77\x19\x26\x52\x84\xce\x6a\x8d\x42\xbd\x01\xe7\x53\x7a\xfc\xec\x3c\xa6\x5f\xa4\xcb\xef\xd7\x4e\x5e\xab\x44\xe5\xf4\xae\x93\x8d\x99\x6d\x14\xf2\x85\x41\x37\x65\x04\x1f\xe3\xf7\xb7\x0f\x21\x51\xfd\x84\x31\x24\x9b\x33\x4f\x10\x3d\x0d\x83\xcc\xa9\xaf\x51\xb8\xe8\xd6\xf1\x8a\xd1\x60\x8e\x02\x03\xd2\xdb\x0b\x26\x6f\x87\x0f\xe7\x83\x9b\xcd\x60\x77\xba\xbb\xba\x91\x68\x10\xd8\xcb\x90\x5b\xcf\x53\x68\x47\xfa\x80\x7e\xff\xb1\x13\x8c\x5d\x15\xe9\x3c\x5e\xdd\x03\x85\xa7\x96\x13\xc9\x5f\x4e\x29\xca\x51\x11\x31\x20\xed\xd2\x6c\x90\x15\x83\x44\x4b\x98\x40\x87\x99\x5d\x61\xb8\x40\x4f\x13\x4d\xc1\x59\xa5\xde\xf9\x38\x11\x93\xb3\x71\x4a\xba\x0e\xd4\x21\x3a\xda\x7d\xb3\xdc\x79\xda\xe2\xc4\xf1\x58\x2d\x41\x4b\x99\xc2\x29\x70\x84\x20\x41\x8f\xe1\x40\x3f\x4a\xa3\x87\x00\x5d\xcd\xe3\xb1\x43\xf0\xfb\x57\x82\xd1\xa5\x13\xc0\xd5\x50\x18\xda\x18\x85\x51\xc9\x46\x3b\xd3\xa6\x68\x18\x4c\x98\x58\x17\xe5\x1b\x03\x92\x8a\x1d\xf6\xa4\x5b\xb6\xb4\x53\x53\x6d\x3d\x97\x7c\x88\x5a\x1c\x84\xf2\x88\x12\x03\xd9\xcf\x8f\xf2\x47\x25\x04\xd2\x1d\x7e\x09\x5e\x94\x92\x58\x6e\x18\xfe\xca\xa2\x8b\xc4\x33\xc1\x58\xf9\xab\x64\xbc\x52\x7d\xf3\x4c\xb9\x48\xde\xc3\xb5\x1f\x58\x0d\xe6\x17\x64\x20\xfc\x0a\x2e\x3f\x22\x4d\x6e\x45\x79\xff\x36\x9a\x97\x1d\xde\x25\x6f\x41\xa5\x5e\xb1\xe5\x3a\x66\x30\x8c\xcc\x84\x84\x6e\x0e\x80\x62\x4d\x1c\x74\x1e\x29\xa3\x14\xa5\x59\x4e\x4a\x6a\x82\x97\xbd\x01\xf5\xca\xbf\x28\xef\x9c\x75\x86\x15\x0b\x06\x4c\xbc\x9e\xbb\x33\x1e\x8c\x1c\xa0\x43\xf1\xbb\x7d\x38\xfe\x68\x94\x3d\x5e\x0e\xa7\x47\xc9\xcd\x73\x57\x3d\x40\xa8\x4d\x91\xf1\x27\x9e\xa2\xd7\xc8\x53\xdf\x77\x8a\x66\x17\xb9\x81\x68\x96\x66\x25\x81\x2a\xf9\xb9\x68\x61\x75\xbb\xfc\x26\xb7\xb5\xc8\x08\x48\xeb\x1c\x01\xb1\x5f\xd5\x36\xb5\x2a\xcc\xa0\x2f\x14\x83\xd2\x49\x14\x8a\xd7\xe1\xe5\x30\x6e\xa0\x6a\x73\x97\x55\xbd\x34\x54\xf5\x6a\x75\xce\x0d\x9b\x68\xe2\xe4\xfc\xb2\xa9\xb8\x53\x2e\xcc\x24\x06\x52\x5d\x7a\xba\x37\xb5\x37\x13\x4f\xf1\xfd\x3f\x7d\x6d\xd0\x1c\x84\x7a\x73\xd0\x1c\xc3\xcf\x7f\x70\x90\x77\xdb\x89\xcf\x0e\x1a\x28\xb1\x22\x46\x18\xf3\xf1\x7b\xcd\xf8\x30\xdb\x39\xba\xa6\x64\xd1\x1e\xc3\xfc\x25\xb4\x87\x00\x4d\x67\xb5\x8e\xe9\xf0\xcf\x71\xf8\x83\x58\x23\x6f\xc9\x47\x65\x9e\x97\x37\x2f\x91\xd4\x11\x3d\x21\xaa\x62\x77\x67\xda\xd4\x3a\xb7\xa6\xa1\x47\x01\x8d\xe7\xa6\xe2\xaf\xe9\x09\xe8\xe3\x6e\x3d\x95\x4e\xd6\x3f\xc7\xd9\xac\x55\x32\x6b\x1c\x09\x7f\xc7\x5c\xba\xbe\x24\xd3\x8d\xbe\x5a\x59\x5c\x69\xd8\x48\x23\x84\x52\x58\xc3\x36\x0d\x7d\x82\x25\x06\xa5\x5c\x12\xc6\x45\x35\xa4\x40\x52\x92\x78\x53\x99\xbf\x73\x42\x6a\x6e\x8f\x83\x9e\xf9\x3b\x3f\x8d\x26\x39\x57\x30\xe6\x52\xbe\xa7\x85\xaf\x08\x25\x36\x46\x7b\x52\xab\x54\x78\xd2\x50\xec\x70\x67\xfe\x36\xe8\xf9\x98\xec\xae\x15\x2e\xed\xab\xe7\x9b\xe8\x3b\x1e\x6e\xf9\xde\x79\xbe\x1d\xcc\x7d\x2b\xdf\xc9\xfe\x51\xc4\x87\x75\xd1\xd6\xe1\x7c\xf2\xb9\xf9\x5d\x3f\x19\xc6\xa5\xf2\x4c\x58\x0a\x80\x76\x93\x29\xa5\x94\x9f\x79\xc1\x04\x46\x7c\xe3\x18\xf3\x5f\xcf\x82\x5e\xa7\x93\x36\x70\x58\x18\xfa\xa0\x95\x6d\xb1\xbd\xbb\xc9\x8f\xb4\xe2\x8b\xd4\x4f\x47\x25\xbd\x02\x1d\xed\xde\xf3\xf8\xf5\x6e\xf5\x78\xa9\xb0\x63\xca\xe8\x24\x31\x87\x74\xd3\x8f\x53\x2a\x99\x20\x30\x47\x7c\xec\x3b\x9a\x61\xbe\x5e\xaf\x95\xfa\x1a\xe8\x4e\xa5\x68\x1c\x8a\x46\x0a\x5e\x3e\xc4\x54\xf6\x71\x08\xbf\xc1\x77\x47\x82\xf5\x9b\xe1\xce\xdc\x09\x40\xe6\x0b\xe1\x26\x04\xe7\x8c\x92\xe1\x71\xca\xa8\xee\xfa\xb5\xa0\x79\x4f\xb5\x40\xbe\x06\x05\xa5\x28\x7c\x0a\xe0\x10\x72\x85\x9c\x9f\xcf\x7e\xe6\x3b\xbf\x29\x3a\xe7\x7f\x23\xdf\xfd\xa1\x7a\x95\x13\xa9\x9f\xff\xec\xcb\x2f\x9c\x94\x6d\x84\x10\xb4\x33\x08\x20\x65\x7b\x20\x00\x6d\x11\x03\xc0\xda\x27\x12\x6f\x23\x21\xf6\xbe\x6c\xba\xce\xbd\x43\xc4\xdb\xcc\xad\x74\xa8\x34\x0e\x0c\x92\x2e\x3d\x8e\x32\x03\xda\x0b\x37\x42\xc1\x46\x14\x0f\x7f\x6f\x3e\x68\xa2\x1d\x11\xaf\x0a\xed\x3e\xe3\xd2\xf6\xde\x14\x9c\x15\xce\x10\xaf\xd2\xef\xdf\x09\xe6\x40\xd6\xf8\xff\x50\xd4\x18\xef\xdd\xa7\x1c\x58\xe6\x21\xcc\xd5\x29\x91\x33\x1e\x42\xe7\xcb\x4f\xcf\x3b\xfc\x6a\x97\x9a\xe9\xc5\x52\x15\x01\xe4\xf9\xdd\x6c\x70\x7c\xd8\xb9\xb5\x46\x70\x92\x7a\x5e\x0e\x0c\xba\xd1\xdc\xda\xa5\x52\x41\x36\xc8\x17\xbf\xf9\xcc\xb1\xee\x0e\x59\x5d\x52\x6e\x1e\x25\x4f\x65\xe5\xde\x26\x39\x19\x64\xdd\x29\xbd\x8f\xe4\xe4\x13\x4a\x52\xaa\xc2\x30\x29\x5c\x96\x7d\x0a\xaa\xc5\x48\x52\xe2\xa5\x14\x3f\xa8\xa0\xd8\x14\x20\x4c\x37\x86\x4a\x15\x66\xd0\x9e\xa4\x9c\xc6\x15\x80\xca\x39\x78\xdf\x22\x11\x83\x6f\x92\xac\x48\x00\x32\x06\x11\x97\x7e\xcc\x0a\xc2\xf5\x53\xc6\x6c\x45\xf9\xc0\xb0\x19\xc4\x2a\xcc\x31\x19\x64\x57\x2c\xc3\xb1\x48\x28\x6f\xde\x24\x40\x95\x43\x4e\x26\x4f\x71\x31\x5c\x31\x25\x3a\xd3\xa8\x6e\x65\xb4\x53\xd8\x48\x30\x5b\x76\x06\x29\x73\x90\xb8\x86\x74\x8a\x7e\x36\x53\x29\xa0\x7c\xb5\x2a\x24\x84\xc3\x65\x78\x77\x18\x85\x97\x5c\xed\x20\xe2\x30\x59\xa3\x8c\x2e\x9b\x51\x19\x5d\x36\x93\x12\x45\xd9\xb9\x41\xa6\xef\x52\xe4\xf5\xf7\x83\x92\xe9\x62\x3e\x41\x0a\xe9\xe8\xec\x1f\x87\x1b\xab\x78\x1b\x4e\xd5\x2d\xf9\xb4\x23\xd1\x08\x45\x06\x9d\x01\xc9\x34\xd4\x7d\x83\xd7\x3e\x39\x56\x5b\x01\xd7\x1a\xea\xbd\x61\x32\x72\x89\x18\x66\x14\x52\x37\x62\x01\xb3\xba\x21\xd9\xa0\xe6\x79\x75\x7e\x48\x40\x54\x8f\x47\x7b\x9c\xb8\x5d\x23\x10\xbd\x49\x85\x1c\x27\x3d\xd7\xc0\xbd\xe5\x7b\x21\xa8\x17\x64\xe6\x4b\x54\x81\x01\xc7\xe1\x79\xcc\x27\xc0\xfb\x85\x5a\xa9\x2a\xb7\x03\xbb\xd7\xee\x03\x7e\x85\xf4\xe9\x81\x62\xc2\x36\xd9\x35\x34\xd7\x60\x6e\x06\x34\x1d\x0c\x8e\x9f\x1f\x97\xad\xa8\x70\xd7\xa7\xd7\x5a\xb1\x25\x7b\xad\x01\xc0\xb8\x86\x88\xa2\x90\xd5\x17\x14\x27\x19\x70\x54\xc6\xae\x10\x55\xd5\xde\x28\x50\x2c\x0b\xf1\x30\x9c\x5d\xb3\x17\x02\xca\x7c\xbf\xcc\x6b\x71\xfe\xfc\xa7\x4e\x6c\xc1\xa3\x52\xf3\x15\x9a\xd6\x18\xd0\x53\xe7\x0c\xe6\x18\x1d\xa8\xb9\x70\xd8\xd5\x9d\x9f\x49\xa3\x22\xa3\x57\x8d\x88\x9f\x7f\x88\x15\x1b\x6d\xb2\xb5\xd6\x39\xe3\xff\xb5\x5c\xaa\xbb\x1f\x9c\x21\xaf\xfa\x99\x7a\xa9\xd8\x77\xc6\x68\x56\x51\x4d\xeb\xd4\xd8\x68\xd4\x8a\xa7\xf5\x80\x64\x56\x14\x4e\x52\x35\x39\x96\x2e\xb1\xa9\x23\x0a\x8b\x5b\x9a\x2b\xf0\xad\x65\xdd\x3d\xde\x6f\x61\x38\xf1\x1c\x01\x77\xae\xa3\xcf\x97\x2f\xba\x50\x95\x70\x7a\xb2\x77\xc3\x18\x0e\x27\x45\x55\x49\x52\x29\x84\x9f\x9f\x0c\x12\x67\x1c\xdd\xcf\x51\xe0\xea\x15\x5c\xb2\x1a\xa9\xf7\x72\x39\x5f\xe8\x01\x3a\x45\xd4\xf3\xb6\x0c\x4d\x33\x14\x05\x9b\xa7\x66\x3e\x3f\x1a\x9f\x20\xdd\x9c\x2a\xfd\xcd\xe5\x74\x78\x70\xc0\x47\x91\x02\xf0\x15\x22\x4c\xb2\x3c\xd7\xbb\x75\x1c\xec\x3f\xe5\x14\x78\x89\x01\x55\x41\x7c\xce\x0b\xeb\x63\x6e\x86\x17\x46\x68\x01\x34\xd1\xe1\x9b\x8f\x78\x45\x24\x57\x26\x97\x10\x6b\x9e\xbc\xe3\x38\xb4\x53\xde\x88\xa7\x14\xfd\x82\x20\xdf\xad\x47\xd2\x9e\x51\xb9\x37\x81\xeb\xca\xb2\xde\x09\x95\xd5\x2d\x68\xd9\x0f\x91\x13\xd3\xde\x13\x7f\x6d\xb8\x0d\x68\xd5\xad\x0c\x20\x85\xc0\x78\x95\x3b\x3c\x57\x8d\x22\xbe\x9a\x48\xd6\x19\xa0\x6d\x72\x35\xb4\xfb\x7a\x0c\xc4\x69\xbd\xf8\x6f\xe5\xee\xc6\xaa\x44\x94\x5d\xd6\xc5\x1a\x8f\x40\x68\xb9\x9e\x90\x6a\xe3\x52\x40\xd4\xda\xc1\x41\xf1\x64\xc5\x9c\x3f\xfc\xee\xd3\x3f\x39\xea\xd5\x65\x0b\x9a\x59\x05\xdf\xe7\x1e\x19\xb3\x89\x80\x80\x10\x0d\xe1\x31\xa5\x51\x12\x81\x12\x5a\xa6\x1a\x62\x0f\xa7\xe2\x12\x44\xed\x64\x76\xa6\x0b\xd4\x9e\x23\x83\x9d\x36\x45\xde\xe4\xd2\x10\xdb\x3f\xed\x26\xe4\x14\x14\x61\xef\xc1\x70\x04\x62\xe4\x0a\x00\x01\xa3\xb4\x81\xf4\x9b\x46\x0c\xc5\xaf\x19\x25\x3a\xaa\x48\x31\x13\x42\x90\xc9\x3b\x2f\x9e\xb6\x77\xbf\x8f\xa8\x0b\x07\xe4\xc8\x90\xce\xf3\xcf\xd8\xa0\x14\x50\xb5\xe6\x5d\x2a\xe1\xdd\x05\x05\xc6\x99\x0e\xf8\xb5\x0a\x82\x54\x10\x9a\x5a\x29\x80\xd8\x2c\x61\x03\x97\x44\x10\xfc\x98\xfe\x76\xec\x95\x93\x23\x88\xc7\x84\x61\x05\x9b\x2c\x07\x39\x5c\x47\x01\x0f\x14\x34\x2e\xb4\xc5\xd3\xc6\x86\x9a\x40\xb9\xd4\xcf\xae\x12\x3d\x03\x7c\x27\x67\xe1\xd0\x86\x1e\xac\xd7\xab\x3e\x5f\x17\x17\xb2\x4f\x8f\x0c\xc5\x06\x1f\xb5\x25\x33\x48\x6b\xaa\x5a\x22\x13\xb8\x42\x07\xbf\x92\x6d\xe3\x42\x81\x08\x9d\x17\x18\x7b\xdb\xa8\x23\x31\x20\x0f\x7f\xab\x63\xa1\x1f\x02\xb7\x69\x24\xf2\x7c\xb5\x00\xc4\xeb\xed\x1e\xb1\x98\x98\x9f\x08\x02\xcc\xfe\x54\xf0\xcd\xb9\x42\x0d\xa8\xfb\xc7\xf0\x3f\x87\xe3\x13\x74\x81\x98\x1f\x5a\x91\xcc\xae\x4a\x7c\xd8\x61\xc5\x46\x59\x97\x6e\x4d\x86\xb3\x37\xa2\x7a\x92\x31\x1e\x0d\xbf\x86\x21\x5a\x97\x9b\xb9\xe6\x4f\x82\x71\xbf\x71\x0b\x0d\xed\x16\xb3\x0c\xc9\x51\x33\x1e\x0b\xd8\x24\x5e\x81\xfe\xdb\x3d\x7e\xd0\xd9\x98\xd2\xe5\x72\x09\x0c\xbf\xa9\x84\x8c\x6a\xf8\x80\xc2\x3a\xf1\x9c\xf5\xa9\x53\xfa\x25\xe3\xb1\x39\x38\x15\xca\xa4\x02\x82\xf8\x27\xec\x0c\xa0\x37\x29\xd1\x4d\x0a\x9a\x45\x1e\x2e\x61\x79\xc7\x2c\xc9\xbd\x27\xd2\x9f\xfe\x6a\xe6\x90\x54\xdf\xbc\xaa\x04\x81\x18\x50\x24\xcd\x6b\xb3\x97\xd1\x7f\x42\x1e\xff\x0a\xd9\x96\x57\xb9\x90\xf6\xa6\xda\xbe\x24\x24\xb3\xaf\x92\x9f\xa5\x04\xec\x99\x9a\x5b\xd1\x59\xde\x80\x57\xe1\x7e\x57\x79\xdc\x74\xa6\xdf\xf7\xa2\x4c\xbf\xf4\x06\xe0\x49\x4f\x15\x64\x74\x4a\x78\x8c\x7d\xe3\x68\xbd\xfd\x71\x27\x96\x3c\xd9\xaf\x15\xde\x4d\x3c\x72\xa0\x13\x2f\x4b\x5a\xe7\xe6\x4e\xac\x1a\x02\xff\x93\xea\x86\xe7\xc8\x09\xf5\xbf\xd6\xb3\x64\x3b\x97\x39\xcb\x77\xd9\x02\xf6\x2e\xcf\xf7\x57\x3a\xed\xfc\xd7\xaa\x89\x58\x3e\x68\xdd\x92\x91\x8b\xd5\x6a\x4f\x12\x3f\x27\x9b\xb3\x72\xfc\x7f\xcd\x11\x52\xbf\x70\x48\x29\xa9\x67\xbf\x96\x34\xb1\xff\xc0\x88\x74\x42\x2c\xde\x09\x3b\xe3\xf6\x9a\xea\x05\xd5\x19\x03\x53\x77\x07\xe5\x91\xc0\xe7\xa4\xf4\x6a\x72\xbc\x94\x35\x04\x5a\x50\xfb\xd5\x81\xd4\xe5\x33\x76\x09\xa5\x11\x7f\x5f\x27\x82\x96\x9c\x4b\xef\xf3\x2d\x68\x4a\x58\xa3\xd2\xdc\x70\x16\x6f\xd8\xe0\x75\xcf\x2b\x5f\xc8\xe4\x07\xbc\x2c\x5e\x05\x9e\x9c\xc9\xd0\x1b\x69\x18\xe9\xcf\x57\x83\x33\x14\xf4\x4f\xaf\xe8\x67\xde\xf3\xb3\xef\x39\x9d\xf5\x1b\x67\xfd\xcc\x7b\x43\xf0\x27\x9a\x41\x6e\xac\xe0\xaf\x41\xfc\x45\x8f\x03\xe2\xaf\x22\xfe\x7a\xf2\x1d\xfe\x79\x19\xff\x5c\xd8\xa0\x1a\x40\x2d\xdf\x73\xc2\xa5\x26\xfe\x18\xc6\xef\x7b\xaf\xe0\x4f\xdf\x05\x6a\x5b\xa4\xfc\xf7\xdc\xf4\x50\xa9\x02\x84\x84\x3e\xe8\x0e\x06\xbd\x46\x8d\xbf\xa8\x4e\x8a\xf9\x61\xfe\x40\xfd\x5c\x76\xdd\x8b\xfc\x93\xfa\x82\xae\x40\xf1\xa6\x47\x32\xa8\xbb\x61\x37\x2f\xd5\xa9\xcb\x5a\xfe\x72\x4e\x75\x0b\x7d\xd2\x6f\xd5\x2b\x77\x09\x88\x29\xd6\xbc\x2a\xa6\xbf\xbc\xa0\x9f\x4d\x54\x0f\x4c\x85\x53\xb7\xc3\x07\x3f\x48\x22\xed\xe6\x8e\xdc\x66\x69\xde\x86\x2d\x19\x4c\xa0\xbb\xb1\x7d\xf0\x28\xa3\x72\xce\x96\x2a\xd5\x86\xca\x21\x73\x65\x03\x6d\x8c\x57\x0f\x19\x04\xdd\x0f\xfc\x30\x8d\xca\x29\xcf\x6f\x6a\xc1\x8a\xe4\xfa\x90\x23\x71\x6e\xa2\xc3\x9b\x9d\xf5\x6d\x50\x82\xfe\xed\xdf\x28\x81\x37\xc8\xe8\xff\xfe\xef\xce\x67\xbf\x05\xc5\x07\x44\xd0\xee\xf1\x04\x6e\x1e\x7c\x33\x65\x9d\x8d\x3f\x06\xfc\x50\xfe\x9b\x7f\x8e\x55\xc9\x48\xb8\x2d\x79\x4b\xe4\x2e\x89\x5c\x62\xff\xdf\x01\x00\x00\xff\xff\xf7\x2f\x9c\x88\xec\xa9\x00\x00") func confLocaleLocale_zhCnIniBytes() ([]byte, error) { return bindataRead( @@ -4579,12 +4579,12 @@ func confLocaleLocale_zhCnIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 43617, mode: os.FileMode(493), modTime: time.Unix(1446027992, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 43500, mode: os.FileMode(493), modTime: time.Unix(1448150150, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_zhHkIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xfb\x73\x13\x57\xba\xe0\xef\x54\xf1\x3f\xf4\x70\x8b\xca\xbd\x55\xc1\xa9\x24\xfb\xaa\xa9\x28\x77\x13\x92\x99\x64\x37\xc9\xb0\x31\xd9\xa9\xad\x54\x4a\x91\xa5\xb6\xad\x8b\xa4\xd6\xa8\x5b\x38\x9e\x5b\xb7\xca\x86\x18\xcb\x2f\x6c\xc0\x36\x18\x0c\x06\xc2\xc3\x06\x0c\x36\x09\x60\xfc\xe2\x7f\xd9\x51\xb7\xa4\x9f\xf2\x2f\xec\xf7\x3a\xa7\x4f\x3f\x64\xc8\xdc\xdd\xad\x4a\x11\xab\xcf\x77\xde\xdf\xf9\xce\xf7\x3e\xb9\x6a\x35\x5b\xb0\xdd\x7c\xc6\x5f\xd9\x0e\x16\x77\xad\x3f\x3a\x56\xfb\xc1\x8d\xf6\xea\x48\xeb\xea\x8f\xed\xf1\x07\xfe\xe4\x9a\xf5\xc7\xa2\x67\x05\xcb\x33\xfe\xd4\xd2\xe1\x43\x87\x0f\x0d\x3a\x65\x3b\xd3\xb9\xb7\xd8\xb9\x39\x7a\xf8\x50\x21\xe7\x0e\xf6\x39\xb9\x5a\x21\x13\x9c\xbf\xef\x37\x9e\x77\xae\xdf\x6e\x4d\x34\x0e\x1f\xb2\x7f\xa8\x96\x9c\x9a\x0d\x5f\x6f\xb7\x7e\xb9\x0d\x95\xec\x52\x35\xe3\xbf\x7c\x08\xcd\x1d\x3e\xe4\x16\x07\x2a\xd9\x62\x25\xd3\x5a\xda\xe9\x4c\xff\x28\xbf\x9d\xba\x97\xe9\x8c\x8c\xf8\xe3\xdb\xf2\xa1\x5e\xcd\xb4\x57\x77\xfc\x73\x93\x87\x0f\xd5\xec\x81\xa2\xeb\xd9\x35\xfd\x61\xc8\xee\x73\x8b\x9e\x9d\xf1\x1f\x5f\x09\x16\x5f\xb6\x9e\x3f\x6d\x3d\x84\xb1\x9d\xb6\x6b\x6e\xd1\x81\x76\x17\x9e\xfb\x13\x33\x30\x8e\x60\xf9\xd1\xe1\x43\xd5\xdc\x00\x8c\xf7\xe6\x28\x0c\xed\xf0\x21\xcf\x2e\x57\x4b\x39\xa8\x19\xac\xde\xa2\x81\x96\x72\x95\x81\x3a\x42\xf0\xa4\x3b\xa3\x5b\x9d\x9b\x63\x87\x0f\xe5\x6b\x36\x40\x65\x2b\xf6\x50\xe6\x38\xfd\xd9\xd3\xd3\x73\xf8\x50\xdd\xb5\x6b\xd9\x6a\xcd\xe9\x2f\x96\xec\x6c\xae\x52\xc8\x96\x71\x8e\xad\xf9\xd5\xa0\xf1\xbc\xf9\xea\x56\x30\xfa\xc4\x9f\x9d\x0c\xae\xfd\xe2\xdf\xb9\xca\x93\xb0\x0b\x30\xcf\x6c\xce\xcd\xf8\x2f\x9e\xf2\x6c\x19\x18\xd7\x11\x1b\xab\xe4\xca\xaa\xbe\x3f\x37\x03\xcb\x56\xce\x15\x4b\x99\xce\xd9\x67\xad\xc7\x9b\x38\x72\xd7\x1d\x72\x60\x6d\xfd\x27\xe7\x5a\xb7\x77\x71\x1d\xb2\xde\x70\x15\x6a\xdc\xde\x6e\x3f\x98\x51\x5f\xf3\xb9\xaa\x97\x1f\xcc\x65\x3a\x6b\x97\xdb\xeb\x13\xf4\x09\x41\xab\x0e\x2c\x91\x53\x1b\xce\xf8\x23\x13\xfe\xf6\xc3\xc3\x87\x9c\xda\x40\xae\x52\xfc\x6b\xce\xa3\x35\x7a\xf6\x63\xeb\xe5\xfc\xe1\x43\xe5\x62\xad\xe6\xd4\x32\x9d\xd9\x5b\xfe\xd9\xd9\xc3\x87\x60\xc2\x59\xac\x9a\xf1\x27\x9e\xf9\x3b\x80\x10\x1b\x80\x06\xaa\x01\x2c\x2c\x17\x07\x6a\xb8\x7e\x9d\xd1\x17\xad\xfb\x3b\xfe\x9d\xc5\xce\xd9\x55\xb3\xbc\xdf\xa9\x9d\xca\x70\xb5\xe0\x97\xfd\xd6\xfc\x8a\x59\x08\x23\x88\x34\xac\x07\x91\xab\xc0\x16\x50\x71\xeb\xf1\xad\xd6\xdc\xb9\xa0\x71\xc1\x28\xce\x15\xca\xb0\x8a\xd5\x5c\xc5\x2e\x49\xb9\x42\xb3\x5c\x3e\xef\xd4\x2b\x5e\xd6\xb5\x3d\xaf\x58\x19\x80\x75\xde\xfa\x19\xd6\xb2\xbd\xba\xde\xda\x7b\x0c\x5b\x90\xfe\x79\xd8\xa9\xeb\x6d\x84\xd5\x99\x6a\x6e\x6f\xf3\xee\x49\x91\xae\xc6\x3b\xa3\xaa\xd1\x1c\xdc\x6c\xbf\x6d\x03\xb6\x2f\x8f\xc0\x14\x82\x5f\x76\xfc\xa9\x05\xd8\xa8\x7a\xa9\x04\xcb\xf6\x97\xba\xed\x7a\xd0\xd9\x5c\xa3\xb9\xf7\xac\xfd\x70\x2a\xd8\x3c\x73\xf8\x50\xd1\x75\xe1\x73\xc6\x5f\x98\xed\xdc\x9a\xe6\xd1\x63\x53\xf9\x5c\x25\x0f\xd3\xf1\x67\x17\x83\xe7\x0d\xfc\xf0\xad\x6b\xe7\x6a\xf9\xc1\xef\x70\xd4\xf8\x47\x26\x98\x5b\xf6\x37\xa6\x08\xef\x52\x36\x13\xb1\x27\xa3\x90\x89\xfa\x00\x1c\xbb\xeb\x2f\xc2\x38\xf3\x4e\x01\x50\x64\x75\xca\xdf\x9d\x15\x64\xf8\xb6\x58\x71\xbd\x5c\xa9\x04\x8d\xcb\x5f\x70\x72\x26\xda\x3f\x5d\xd7\xc7\xa2\xe8\x95\xe8\x50\x07\x8f\x6e\xf9\x2b\x2f\xda\xb7\xa6\xb9\x1c\x5b\xd9\x06\xb4\x28\x38\xf9\x53\x80\xfa\x78\x8a\xa1\xdb\xcf\xfb\x2d\x58\xa7\xb7\x6a\xb6\x55\xab\x57\x2a\xb0\x52\x40\x34\x06\x5c\x0b\x9a\x2e\x16\x6c\xeb\x13\x82\x7d\xdb\xaa\x96\xec\x9c\x0b\x20\x76\xae\x60\x7d\x90\xb3\xbc\x5c\x6d\xc0\xf6\x32\x47\xb2\x7d\x70\xe4\x4e\x1d\xb1\x06\x6b\x76\x7f\xe6\xc8\x51\xf7\xc8\x87\x7f\xac\x43\xb5\x52\xb1\x62\xbb\x1f\xbc\x93\xfb\xd0\xca\xe7\xa0\x04\x16\x74\xd8\xea\xb3\x01\x9b\x6c\xec\xcb\x02\xfc\xae\x0c\xd8\x56\xae\x32\xec\x0d\x62\x87\xc5\x8a\x05\x7f\xb8\x16\x1e\xee\xdf\xe1\x02\xfd\xa5\x0e\xf4\x20\x5b\xe8\x63\x5a\x46\xe3\xa1\x8f\x35\xdb\xb5\xbe\x1c\xee\xfd\x1f\x5f\xbc\x6d\x9d\x70\x5c\x6f\xa0\x66\xd3\xdf\xf0\x0f\xc0\xbf\x6f\x39\x35\xeb\x64\xf1\x93\x8f\x61\x8d\xa1\x2a\xaf\x42\xb0\xb0\x15\x5c\xba\x0a\x8b\xac\xf6\x1d\x4b\xf0\xd4\xe9\x82\xce\xad\x1b\xfe\x8d\x29\xa4\x84\xae\x17\x7e\x6d\x6e\xed\x04\x6b\x2b\xb2\x33\xfa\xab\xda\x22\x7d\x96\x63\x25\xea\x10\x43\x27\x44\x0c\x74\x31\xd0\x83\xd6\xea\x26\x15\xc8\xb2\xfb\xf7\xce\x04\x37\x96\x83\x33\xab\xcd\xbd\x57\x50\x99\xa7\xf5\xeb\xee\x34\x60\x9a\x7c\xf9\xfc\xab\xaf\xfe\xf4\xc9\xc7\x96\xbf\xbb\x10\x5c\x3a\xdf\xdc\xb9\x0b\xd4\xc8\xaa\x7b\xfd\xff\x25\x3b\x60\x57\xec\x5a\xae\x94\xcd\x17\x2d\x7f\xfd\x72\xeb\xd1\xbd\xce\xb5\x73\x7f\x1b\x01\xec\x74\xdd\x12\x10\x31\xc0\x97\xde\xde\x2f\x2c\xa0\x89\x80\x33\x38\x56\x6f\x30\x1c\x48\xb0\x38\xde\xdc\x79\xde\x7e\xf1\xc4\xdf\xbf\x00\x15\xfe\x52\xc2\x85\x96\x21\x9d\x1c\xb4\x2d\x3c\x45\x16\x56\xb1\x9c\xfe\xf8\xba\x5a\x85\x9c\x97\xeb\x03\x34\x80\x05\xb6\x6b\xb5\x2c\x50\x5f\x6f\x18\x77\x89\xba\xe8\x06\xcc\xad\xc1\x09\xa9\x38\x1e\x20\x81\x45\xb5\xa4\x85\x62\xe5\x74\xae\x54\x2c\xc0\x5e\xa9\x15\x8b\x56\xc5\x4f\x56\xc1\x81\x5d\xc7\xca\x80\xe9\xce\x10\x22\x4f\x2d\x97\x87\xfb\xc3\xb5\x8e\xf4\x1c\x01\x24\x2a\x58\x47\x8e\x1d\x81\x06\x2b\x4e\x96\x69\x0b\xd2\xf2\x42\xd1\xcd\xf5\x01\x5d\xe7\xcb\xa6\xc6\x64\xf2\x7f\x21\xee\xf1\x40\xa4\xdc\x32\xcb\xad\xa1\xa2\x37\x08\x37\x97\x45\xf7\x05\x22\x66\xae\x62\x51\x93\x96\x90\xa6\xc8\xc4\x15\x21\x13\x54\xf8\x88\x00\xd5\xcf\x94\x09\x1f\x3e\xa4\x36\x4e\x50\x73\x7c\x02\xb6\x19\x2f\xea\xe5\x47\x0a\x3b\xf1\xfe\x66\xcc\xe1\x42\x41\x1b\xf5\x59\xed\x54\xeb\xcc\x36\x60\x8e\x26\xaa\x40\x77\x80\xf0\x75\x56\x5e\x35\xb7\x1f\xb7\x47\xa6\xfd\xd9\x86\x3f\x3a\xe1\xdf\xb9\x8f\xd4\x5e\x5a\x40\xa2\xc3\xfb\xc4\x34\x27\xb8\xf9\xb2\x75\xed\x31\x5d\xd8\xba\x48\xb5\x1e\x4c\x8c\x04\xcb\x13\xc4\x28\x74\x46\x6f\x22\xd5\xa0\x2a\x9d\xb3\x7b\xfe\xc6\x78\xfb\xf6\x43\x7f\xfd\x4a\x30\xbf\x0f\xec\x45\x7b\xed\x29\x37\x42\xd8\x07\xe4\x23\x4b\xc7\x85\x69\x4e\xeb\xe7\x9d\xd6\xb3\x4d\x75\x62\x54\xa1\xea\x03\xab\xf2\x91\x79\x35\xd6\xb9\xd9\xf0\xc7\x5e\x40\x97\xfe\xc6\x4c\x6c\x74\xfe\xc5\x69\x6e\x8d\x89\x12\xde\x43\x97\x66\x9a\x7b\xcb\xc1\xa3\xc9\xce\xd2\x1c\x75\x5b\x70\xe0\x9a\xad\x40\xa7\x2b\x74\xe9\xf2\x4f\xa3\x1b\x5e\x5a\x7f\x6f\x13\xd6\xc7\xea\xed\xfd\xcc\x6a\xdf\x19\x6f\xff\xb4\xe7\x2f\x6f\xf8\xd7\x47\xe4\xd8\x0c\x66\xab\x4e\xcd\xcb\x60\xa9\xbf\x72\x33\xfc\xa2\x57\x84\x16\x9b\x6a\x33\xeb\x14\xac\xff\xe4\x2f\xcb\xd1\x0d\xd6\xef\x40\xa5\xf6\xd2\x0a\x9e\xde\xa9\xbb\xed\x7b\xa3\x2d\xf8\x6f\x7e\x95\x5a\x9b\x5c\x69\x9f\xdd\xc3\x33\xfd\xea\x7a\x30\x3d\x1a\x3c\xfa\xb1\xb9\x37\xd3\x5a\xdb\x6e\x2d\xed\x51\xd7\x83\x9e\x57\xe5\xbe\x3f\x3b\x79\xf2\x84\xd5\x7a\x08\x3c\xc7\x4f\xd0\x94\x51\xa2\xc7\x40\x18\xd1\xba\xf6\x53\x7b\x74\x0f\x77\x3e\x04\x45\xec\xa8\xd7\x4a\x02\x61\x7d\xf3\xf5\x17\xfa\x5b\xb7\x75\xc0\xde\xde\xc1\x7f\x7a\x23\xcb\x01\xcb\xdd\xdc\x1a\x69\x6e\x5f\x63\xa6\xa5\xb9\xb5\x0e\x3d\x75\x46\x7e\x6a\x3d\xe3\xb5\x06\xb6\xa3\x8a\x27\x45\xe3\xb0\x3f\xfb\x04\x98\x2c\x85\xbd\xc4\xf0\x48\x49\xe7\xda\x8e\xbf\x3e\x07\xed\x00\xb9\xe1\x35\x03\x28\xff\x31\xb2\x52\x65\x98\x19\x51\xdb\xde\x2f\x61\xce\x8a\xd2\xd2\xe7\xfe\x9a\x53\xce\x70\xa5\xe6\xfe\x39\xe0\x58\x8d\xef\x6a\x2e\x66\x31\x0f\x1b\x16\xbe\x33\xfa\xcc\xdf\x7f\x60\x7d\xfd\x87\xe3\xd6\x7f\x7c\xff\xbd\xf7\x80\xfa\x2d\xf9\xe3\x48\x15\x61\x84\x40\x3b\x83\x2b\x4f\x60\x62\x70\x48\xe0\x4e\x6d\xfd\x32\x8f\xb3\xa2\x19\x72\xfd\xa0\xb1\x28\x34\xf7\x08\x9e\xb2\x23\xd6\x07\x34\x93\xff\x6a\xff\x90\x03\x06\xd3\xee\xc9\x3b\xe5\x0f\x09\xf7\x6e\xee\x02\x49\xa5\x95\xc0\x72\xc0\x66\xbe\xb8\x97\x76\x3b\x23\xa3\x8a\xcf\x93\x12\x4d\x17\xcc\xd2\x90\xf5\x63\x16\x38\x9b\x77\x2a\xfd\xc5\x5a\x19\x18\x8a\x15\xe8\x9e\x19\x62\x06\x65\xae\x90\x9b\xcb\x02\x25\x29\xf6\x0f\x0b\x14\xcf\xbf\x33\x72\xb5\xb5\x72\x37\x98\x9d\xeb\x9c\xbb\x88\x5c\x46\x0d\xf8\xe5\x2c\xfe\xaf\x98\xb7\x65\x0b\x9a\xbb\xdb\xb8\xf2\x4b\xab\x78\x8a\xc6\x9e\x37\x77\x16\xf5\x46\xd0\x76\x39\xfd\xfd\x78\x51\xf3\x95\xe1\x2f\x5c\xc2\xb6\xaf\xdd\x6e\xbd\xb8\xaa\xae\x0e\x13\x00\x70\xb1\x0a\x4c\x3c\x60\x3d\xf0\x88\xad\xbd\xa7\x0c\xd3\xdc\x9a\x6a\xbe\x5c\x61\x7c\xf7\xf7\x6f\x58\xc7\x3f\xf9\xca\x6a\xcd\x3c\x45\x46\x88\x2e\x1a\xd8\x19\xa6\x26\x28\x7f\xfc\x3c\x1e\x6c\xcf\x01\x09\x01\x40\x20\x79\xb0\xf4\x7a\x80\x5c\x85\x8f\xb3\x10\x6e\x60\x4c\x4f\xc3\x35\x00\xab\x4b\x8d\x5b\x7f\x94\xdf\x5a\x76\x89\x03\xca\x00\xe3\xe0\x30\x77\xc4\x93\xc7\x57\x5b\xfb\x6b\xd0\x3d\x0c\xc8\x3f\x3b\xc6\xbb\xdd\x9a\x17\xf2\xd4\xdc\x9a\xf4\xcf\x00\x4f\xb9\xd8\xd9\xb9\x02\x8b\x8e\xd8\x71\x73\x1d\x38\xe8\xc8\x80\x22\x37\x09\xf4\x12\xac\xdf\x16\x8e\x72\xfc\x01\xe0\xb0\x12\x66\xd2\xc0\xc3\xa1\xa5\x56\x62\x22\x81\x23\x9b\x7d\x80\x4b\x45\x6c\xa5\x7f\xe9\x96\xa0\xee\x8b\x1d\x7f\xf2\x26\xf0\xbc\x70\xd6\x69\x40\x76\x85\x3a\x50\x82\xc2\xa7\xf4\xd3\x3a\xce\x3f\xe3\xc5\xd2\xf5\xd7\xcc\x3d\x59\x74\xdd\x02\xc7\x6f\x49\xb1\x05\x3c\x99\x85\x48\x6c\xb9\x76\xa9\xff\x98\x39\xe8\x1e\x61\xc4\x40\x4c\x11\x11\x2f\x7b\xba\x08\x12\x14\x23\x0a\xcb\x3f\xed\xd5\x07\xc8\x0a\x2f\xcd\xf9\x44\xe3\x53\xc0\x15\xda\xd0\xcc\x42\xb9\xe9\xaa\x88\x4e\xc1\xc4\x0c\x4c\xdd\xbf\x73\x53\x5a\x22\x0e\x16\x57\x62\xee\x9e\x3f\x31\x8e\xb8\x32\xfb\x00\x00\x5a\xcb\x53\x7e\x63\x83\xeb\xc2\x36\xc9\x39\x21\x60\x5a\x12\xbe\x8a\x85\xd3\x17\x01\x98\x24\x93\x70\x2d\x69\xfd\x9a\x5b\xf7\x9a\x5b\x33\x40\x0c\xf8\xd6\x81\x61\x60\x5f\xd7\x6e\xc2\x7d\x6a\x7d\xfe\x49\xe6\x5d\x4b\x0f\x0c\x6f\x3a\x40\x9b\xa9\x05\x44\xcd\xfd\xcb\xba\x1d\xe3\xe2\xe1\x4e\xf9\xa8\xc5\xfa\xd1\xd7\x39\x81\xb0\x5c\xa8\x20\x0c\x01\x31\xc6\x41\x84\x8d\x28\x59\x90\xa9\x83\x01\x11\x11\x15\xb9\x3a\x4b\x99\xba\xae\x22\x43\x22\x1a\x64\x07\x1c\x14\x7d\x1e\x4e\xf9\x33\x3f\xb3\x14\x80\x62\xb3\xeb\x65\x07\x8a\x5e\xb6\x1f\x49\x15\xb4\xfa\xe3\xad\xe0\xe7\x85\xf6\xfa\x15\xbf\x71\xd7\x7a\x0b\x0a\xde\xb2\xfc\x0b\x7b\xcd\x9d\x3b\xbf\xee\x5e\x3d\x7a\x5a\x71\x89\xef\x23\x15\xca\xc2\xa9\x2a\x96\x10\xc1\xf0\x4e\x84\xa3\x2d\x27\x09\x96\x6d\x69\x17\x2f\x7d\x12\xd3\x71\x8d\xe7\x9f\xc0\x7d\xa7\x38\x48\xe6\x6b\x91\x40\x1c\x75\x81\xe0\x4f\xb5\x77\x27\x58\xd8\x0f\xee\x4f\xe1\x2e\x4d\x34\x10\x62\x64\x9a\x37\xc7\x1a\x70\xfa\xea\xc5\x52\xc1\xe2\xd6\x68\xb1\x15\xa7\x08\x7c\xa2\x6c\x73\x9c\xb5\xc7\xba\xeb\x3f\xc1\x0a\xc9\xa8\x55\x8d\xae\x9c\x4f\x7a\x35\xcd\xa8\xe0\x6c\xcb\x39\x38\x24\x29\xfc\x4c\xe7\xfa\x0d\x51\x4b\xd0\x4f\xac\xea\x5a\xc7\x3e\x84\xd9\xc1\x6a\xe5\x4e\xdb\x4c\xd7\x07\xd4\x02\xf3\xc5\xdc\x19\x9b\xc1\xfe\x5e\x5d\x07\xfe\xc9\xbf\xb3\x19\x2c\x5c\x8e\x8d\x34\x82\xc5\x11\x94\xd2\x72\x6b\x72\x92\xbc\xcb\x6e\x3d\x9f\xb7\x5d\x17\x37\xc5\xbf\x0b\xa4\x64\x14\x64\x6e\x7f\xe4\x82\xbf\xdf\xe8\x3c\xbc\xd2\x6e\x34\xe0\x3b\xdc\xd3\xc1\xa5\x71\xb9\xe7\x90\x9b\x82\x25\x6f\xdd\xbd\xae\x25\x90\xe0\xc7\x09\xff\xd5\x43\xf8\xd8\xdc\x81\x0e\x76\x91\x48\xaf\xdf\x01\xd4\xb0\x3e\xfe\xe6\x8f\xd0\x20\x49\x9e\xa8\x2d\x02\xb1\xb3\xce\xbc\xa8\x53\x2a\x68\xb1\x15\xf0\x19\xe9\x67\x4c\xd7\xa1\x60\x14\xc6\xba\xc0\x61\xe7\x07\xb3\x5a\xcf\x84\xeb\xe4\xd9\x3f\x78\x19\xbf\x31\x1e\xcc\x5e\x33\xb5\x4e\x8a\x71\x2c\x0f\xd3\x0e\xc2\xd4\x48\x8b\xa0\x24\xe6\xbc\x53\x02\x34\x74\x90\x54\x9d\xb6\x05\xc2\x9f\x3d\xdb\x6e\x8c\xfb\x33\xf3\xc0\x20\x1a\xa0\xd0\x82\x53\x1b\x50\x0d\x68\x2d\xc5\x70\x96\xb5\x25\xaa\x40\x29\x4d\x88\x6a\x91\x5a\x8c\x69\x12\x6d\xaa\x92\xfc\x7b\x60\x83\x48\xab\x20\x3d\x6e\x3e\x12\x36\x98\x17\x81\x7a\x84\xb6\x68\xb1\x44\x6b\xf6\x9d\x48\xfc\xa2\x3d\x53\xa3\x02\x80\x5c\xdd\x43\x0d\x41\xa8\x9d\xca\x8a\x98\x21\xc4\x8b\x37\xde\xe0\x16\x06\xed\x2a\xb2\x16\x65\x77\x80\x54\x50\xcf\x2f\x31\x21\xfc\x75\x77\x85\x0f\x38\x13\x48\xda\x2c\xd7\xc9\x17\x73\xa5\xec\x9b\x57\x7d\x3e\x0a\x77\x24\x55\x8d\xde\x60\xac\x23\x03\x11\x26\x03\xdc\x39\xa0\x5f\xfb\xd9\x0b\x3c\xab\xc6\xc5\x05\xed\x81\x50\xd0\xb9\xbc\xdc\x59\x9c\x80\xb3\x0a\x07\xbd\x3d\xfa\x04\x4f\x0b\x29\xf2\x34\x1a\xa7\x5c\xa6\x38\x20\x24\x5e\xc9\x96\x4d\x1e\x28\xb5\x17\x5c\x95\xb2\x5d\xee\xc3\x26\x70\xa7\xae\x34\xf7\x66\x95\x06\x12\xee\xb4\x01\x38\xbc\xa1\xc2\xed\xd5\x15\x00\x50\x38\x88\xa5\x76\x97\x52\x58\x0e\xad\xaf\x04\x02\x30\x94\xe9\x9c\xf9\x31\x78\x7a\x91\x37\x02\x0a\x3b\xf7\x80\xb6\x4d\xf2\x10\x69\x10\x42\xa1\xf9\x96\x27\x56\xcd\xb5\x2b\x9e\x5a\x31\x64\x39\x37\x46\x45\x3b\x46\x73\x61\xde\x4d\x76\xe0\xf6\x43\xe6\x0d\xdb\xe3\x3f\x5b\x1f\xf4\x7d\x78\xd4\xfd\xe0\x9d\xbe\x0f\x99\x54\x06\x0f\x6e\x07\xc0\xdd\x91\xd8\x11\xcc\x03\xeb\xf6\x9c\xd8\xf1\x7b\xc0\x7e\x59\x47\x0b\x96\xbf\x31\x1b\x2c\x9d\xf1\xc7\xee\xfb\x8f\xa7\x83\xc6\x1c\xb7\xcd\xc3\x62\xf9\x88\xe5\x1a\xb9\x87\x3d\x47\x23\x56\x2f\x7c\x22\x75\x8b\x83\x8a\x98\x9a\x92\x6b\x51\xf7\x46\x07\x89\x70\x5b\x01\x07\xaf\x46\x82\x5f\x76\x78\x10\x21\x2e\xd2\x04\x4b\xc5\x72\xd1\x4b\x43\x0c\x80\x66\x5d\x19\x4f\x8d\x9b\x10\x8e\x75\xf4\x3c\x1c\x96\xce\xcd\x9d\xd6\xcb\x51\x9e\x65\x6b\x7d\xc2\xdf\x1f\xb3\xde\xb7\xfc\xc6\xb9\xce\xdc\x15\x7f\x7f\xda\x3f\x37\xd3\x5e\xbb\x47\x68\x38\x98\x73\xb3\xf5\x8a\x2c\xb0\x5d\x60\x4c\x01\x32\xab\x48\x1c\x76\x05\x3c\x05\xaf\xb1\x5e\xc8\x7f\x0c\x57\xf2\x9f\xac\xe6\xde\xb9\x60\xf9\x01\xae\x33\x2d\x10\x73\xfd\x30\x12\x14\x0b\x94\xfa\x05\x00\x60\x81\x81\xbb\x30\x87\x8a\xad\x03\x35\x5b\x1e\x01\x61\xae\x33\x3e\x83\x3b\x48\x1d\xc8\x3d\xb6\xf8\x38\xb8\x34\x09\xd7\x18\x6a\xab\x61\x7f\xa6\x27\x3a\x8d\x05\xc1\x49\x58\x1d\x19\x2a\x43\x01\x0d\x6d\x2f\x2d\x98\x6d\x98\x88\xa0\x44\x26\xba\x59\x5d\x3a\xb3\x1e\xdd\xac\xed\xdd\x2d\x7f\xec\x6e\x5c\x4c\xa1\xb9\xc0\x11\x80\xf3\x05\x03\x6e\xee\xec\x34\xf7\x16\x98\xe1\xe0\x33\x8f\x7d\xe3\x10\xbc\xe4\x08\x7e\xdd\x6d\xf0\x20\x7e\xdd\x9d\x90\xad\xe1\x7d\x25\xbc\x87\x22\xb8\x5c\xd4\x98\xb8\x09\x7d\x40\xb8\x50\x1d\x1f\x75\x59\x91\x5e\x32\xb6\xf3\x1a\xcd\xe5\x0a\x79\xf1\x14\xf7\x7c\x79\x05\xd6\x12\xfe\xa6\x3b\xaf\xa1\xd7\x29\xec\x41\xab\xc4\xa2\x2b\x66\x74\xaa\x21\x3d\xc7\xc9\xba\x83\x28\x2f\xcb\xc0\x17\x5e\xf8\xdb\xc8\xd3\x21\x85\xd8\xb8\x80\x26\x8f\xff\x04\xdb\x3e\xa3\x2e\x2c\x5c\x87\xef\x04\xbb\x91\xc8\x2a\xd4\x3e\xc1\xea\x4c\xf5\x3d\xed\x30\x20\x38\xf3\x56\xff\xd3\xae\x81\xf4\xc5\x30\xf6\x31\xfc\x64\xe5\x0a\x05\x98\x83\x9b\x58\xab\xaf\xf1\x27\x43\xaa\x6f\x06\xfd\x56\xb7\xf4\xd7\xf2\xc1\x92\x0f\x6f\x5b\x7f\xb6\x4b\x20\x64\xda\x3c\x66\xa7\x90\xc3\x41\x0f\xdb\xae\x30\x7c\x7c\xa6\x51\xc3\x25\x2a\x66\xf5\x01\x40\x51\x2e\x94\x45\x7f\xf5\x38\x98\x7f\x49\x4d\x00\x8d\x2b\x43\x0b\xdf\x00\x1f\xf3\x55\xcc\x28\xf1\x35\xdc\x45\xf4\x8d\x2f\x22\xa5\x1f\xfa\xd4\xb0\x55\x30\xb6\x1d\x3e\x74\x22\x6e\xb1\xf8\xda\x4e\x31\x58\xf4\xf6\x7e\x76\x92\x78\x60\xd2\x77\x3c\x39\xd7\xb9\xb0\xa1\x1a\xfd\xcc\xf3\xaa\xee\x37\xb5\x52\x86\x35\x0d\xdf\x7c\xfd\x85\x15\xb6\x3d\x5c\x72\x72\x05\x2c\x0c\xce\xaf\x02\x3a\xaa\x82\x93\x76\xae\xcc\xe3\x5b\xbe\xd2\xb9\x3a\xa9\x9a\xfa\x08\xee\x4a\xfa\x8c\x84\x0e\xc8\x86\xfa\x8c\x2c\xd3\xa7\xe9\x1c\x70\x28\x90\xd8\x64\x15\x61\x2c\x01\x56\xbf\xb5\xb6\xcd\x0c\x7c\xa9\x0a\x02\x12\x32\x23\x02\x21\x52\xc1\x99\xed\xf6\xd4\x26\xc8\xaf\xfe\xfa\xe5\xe0\xc9\xcc\xdf\x40\x78\xbf\xf2\x2a\x98\x9a\x68\xee\x3e\x01\x96\x13\x3f\x36\x16\x83\xb5\x87\x20\x27\xc3\xa1\x3a\x96\x85\x03\x15\x6f\xad\x00\xc7\xf9\x37\xb5\x08\x5f\xa2\x2d\x92\x2c\x7a\x43\xa8\xf8\x5f\xd5\x0c\x18\xdb\x75\x9b\xc0\x99\xb0\x2e\x02\xb9\xc6\x38\x54\xb0\x0c\x74\x71\x96\xa1\x2c\x54\x7c\x90\xa6\x58\x74\x17\x3f\xa4\xc3\xdf\xb9\x9f\x0a\xcf\x34\x4a\x2f\xa2\xd6\xa5\x00\xf5\x85\x03\x1d\x23\x52\x54\x03\x35\x4f\x07\xc0\x23\x26\x30\x5c\xe5\x14\xdc\xb2\x15\x81\x05\xfa\xd6\x5a\xb9\xdb\x99\x7e\xd2\x7e\x80\xa2\x87\xb6\x85\xc1\x1d\x96\x77\x6a\x35\x3b\xef\x85\x56\x31\x80\xf5\xa7\x5f\x02\x4b\x4d\xed\x68\xfa\x60\x30\xed\x84\x9e\xc0\x0f\x9a\xd8\x1a\xad\x15\x5a\xed\xb2\x7d\xb6\x0d\xf7\x64\xee\x94\x5d\x09\xcf\x8a\xbe\xa5\x9b\x7b\xf3\xf0\x51\x08\x17\x08\x13\xf1\x1a\xe6\x49\x4a\xab\x04\x0c\x47\xa2\x8e\x28\x6e\xbb\xd6\xf1\xe0\x18\x24\x3b\x32\x8e\x44\x5a\x25\xde\x28\xaa\x00\x33\x2b\x44\x8e\xb3\x01\xff\x4a\xc1\x17\x4b\x25\x7b\x00\x75\x79\xaa\xb3\x68\x0f\xd3\x63\xfe\xdc\x43\xd8\x40\x7f\xae\x01\xf2\xa1\x81\x10\x7a\xd9\xf4\xba\x87\x3b\x64\x8a\x03\xbc\xe8\x5a\x66\x11\xed\x05\x10\xbe\x1a\x99\x52\x0d\xf9\x8c\x3a\x37\xf9\x1e\x7d\x01\x9a\x8b\x0b\x98\x74\x50\x4b\x80\x49\x28\xb7\x75\x6d\x0a\x6d\x7c\xa4\x8c\x6a\x8f\x8c\x85\xc3\xbc\xf2\xc4\x9f\xbb\x77\x50\xb3\x9a\xb8\xa7\x8f\x8f\x11\x2b\xde\x8a\x16\x21\xed\x1f\x80\xd4\x67\x60\xdd\x99\x66\x6b\x05\x03\xae\x2b\xc8\x81\xcb\xab\x74\x55\x95\x72\x20\x92\x23\x9e\xd0\x1c\x10\xbc\x75\x7f\xa7\xb3\x74\x87\x61\x51\xdd\x0f\xc7\x73\x9f\x94\xb3\x7b\x33\x26\x4b\x8d\x63\x22\x05\x11\x17\x09\xaf\xa9\x45\xc7\x73\x33\x9d\x91\xa7\x28\xbc\x52\x6b\xc0\x2a\xa2\x0a\x83\x06\x22\x37\xa4\x9a\x24\x6a\xbc\x4f\xd9\xc3\x19\x90\x18\x83\xc9\xcd\x60\x7d\x82\x58\x20\x94\x21\x59\x3b\xc0\x07\xcf\x9c\xb8\x15\xd2\x7b\x92\x7f\x49\x2c\x44\xde\xfe\x34\x5d\x97\xba\x45\x56\xdc\xbf\x49\x23\xd3\xc8\xaf\xb1\xdc\x3a\x3a\x0e\xf2\x6e\xe7\xcc\x4f\xb8\xe3\x8a\x6a\x68\x30\x9c\x33\xb4\x31\xfe\x00\x27\x76\x7b\x1b\x25\xea\xb1\xe7\x0c\x16\x8c\xdc\xa7\x89\xa1\x68\xa5\xa5\xef\xf3\x0d\xd4\xda\x50\xdf\x11\xb9\x1b\x68\xab\x07\x47\x00\xd7\x9c\xcd\xe4\x26\xab\xdb\xdc\x99\x69\xfd\xf8\x1c\xfb\x5f\x99\x6b\x6e\x5f\xd3\xa2\x5d\x70\x69\x94\x31\x88\x59\x1e\x65\xbe\x68\xb4\xf7\x26\x60\x91\x11\xe9\x1b\x0f\x60\xa9\xfd\xc7\x67\x61\x1e\xa2\xde\x62\x1b\x2c\x7f\xa7\xc6\x8d\x2d\xe0\x21\x20\xb3\x8b\x06\xf3\xd8\x08\xda\x8d\x49\x3d\x02\xa6\x18\x38\x02\xda\xc5\x58\xf7\x9d\x6b\xb7\x3b\x8b\x53\xba\x7b\x06\xd6\xd4\x27\x36\x4f\x14\x58\x09\xe0\xff\xd1\x24\xb9\xf1\x08\x9e\x85\x23\x20\x95\x39\x8c\x80\xb7\x85\xaf\xf3\xe6\xfe\x75\x98\x2a\x32\xb7\x67\x57\x41\x16\x90\x13\x42\x84\x4a\x58\xee\xb1\x06\x37\x0d\x15\x4d\x98\xa8\xc8\x00\x64\x93\xec\xd2\xd9\xbe\x5a\xae\x92\x1f\x34\xce\x5f\xeb\xda\x63\xb4\x08\x34\xce\x05\xf3\x4f\xf4\xc9\x23\x56\x09\x87\x83\x42\x38\x99\xa4\xb3\xa2\x73\x06\xee\xda\x52\x7a\x65\xd4\xfe\x5b\x20\xf5\x31\x7b\xc5\x1b\xc4\xea\x61\x5d\x2b\x5f\x77\x3d\xa7\x6c\x54\x66\x37\x04\xa5\xb2\x59\xe7\xaa\xaa\xd2\xbf\x38\x70\x5f\x3b\x40\xcd\x27\x6f\xc2\x21\x00\x96\xd5\x70\x09\x28\xa2\x73\x01\x53\xbc\xc6\xe5\xf6\xad\x55\xe1\x45\x8b\x1e\x9c\xcc\xb1\x47\xb8\xc3\xe2\xa4\xd0\xef\xa0\x31\xd4\xae\xb9\x19\x94\x07\x56\x77\x60\xaf\x70\x91\x73\x48\xb9\x50\xc2\x6f\x3f\xbe\x0a\x52\x92\x82\x43\x7d\x12\xc3\xc1\x68\x70\xda\xc8\x20\xf6\x10\x09\x47\x06\xb6\x76\x1a\xb5\x80\x8a\x22\x5a\x6f\x1d\x75\xdf\xb2\x00\x29\xf0\xb2\x78\x75\xbd\xb5\xb0\x04\x33\x26\x54\x0a\x6b\x55\x73\x1e\x50\xc9\x0a\x0b\x2e\x34\x12\xa3\x01\x5c\xe0\xb1\xd1\xf6\xea\x26\xb7\x14\x35\x9c\x90\x6f\x04\x7b\x64\xc0\xb2\xa7\xfb\x6d\x68\x8a\xcb\x0b\xa7\xb5\x47\x4c\x51\x5c\x61\xf5\x0c\xda\xa1\xf4\x1d\x99\xd6\x9d\xfd\xe6\xf6\x1d\x96\x89\x58\xa5\x41\xa6\xb0\x52\x31\x4f\x22\xba\xaa\xca\xb8\xc7\x6a\x39\x3a\x21\xaa\x40\x69\x87\x0a\x76\xc9\x46\x8f\x24\xe3\xcc\x02\x7d\x2b\xaa\x49\x5a\x9f\x7f\x82\x33\xa9\xd6\xfb\xa0\xe5\xd0\xf9\x84\x76\x48\x4f\x42\x3c\x8b\x48\x1b\x2d\x68\x63\xde\xc7\x1b\xe3\xc1\xf2\x59\xb4\xa6\x52\x2d\xa4\x7e\x5b\xf7\x90\xee\x43\x07\x8b\xbb\xc1\xf9\xbb\x28\x95\x52\xc7\xb8\x7e\x74\x6d\xb1\xb1\xc7\xbf\x38\xcd\xb6\x1f\xde\x12\x74\x56\xe1\x2b\x4f\x59\x39\x14\x6f\xac\xdd\xaa\x68\x6d\x95\x5b\x55\xc9\xe1\xa5\x40\x2b\x2f\x9c\x01\x1c\xcc\x0c\xb0\xdd\xf5\x2a\x9a\x05\xf4\x54\x82\x6b\xbf\xc0\x55\xa2\xa6\x12\x2d\x34\x95\x8d\x74\x41\x87\x5b\xc7\xd5\x90\x40\x4d\xb2\x48\x2a\x07\x24\xe9\x1d\xc5\x96\x64\x25\xb2\xc4\xc0\x94\x62\xe1\x24\x3a\x85\x88\xb3\xc8\x10\xd0\x0f\x2b\xd7\xdf\x0f\x3c\x86\xe5\x0d\xc2\xef\xdc\xb0\x35\xe8\x0c\x59\xa5\x62\xe5\x14\x7a\x87\xa0\x1f\x58\x5c\xad\xd1\x43\x0a\x1a\xc0\xb5\x3a\xf4\xfc\x72\xb7\xb5\x3d\xad\x04\xa7\x88\xc3\x8e\xfa\x18\xda\x4e\xa2\xe7\x79\x61\x05\x8e\x9c\x5e\x5e\x75\x8c\xd3\x60\xb5\xad\x96\x74\x09\x48\xab\xc8\x03\xad\xb9\x7f\x8e\x6d\x3f\xa8\x01\xd7\x96\x29\x36\x7a\x85\xa4\xc4\x71\x5c\xd1\x02\x72\xbf\xac\xb0\xe5\x1b\x5d\x41\xc9\x4e\x08\x04\x2f\x37\x97\x29\x93\x43\xbd\x8a\x72\x15\xb0\x2f\x32\x22\x3a\xa1\xd9\x62\x19\xbd\xe2\xd8\xce\x45\x9c\x10\x1a\xe7\x42\xde\x7c\xf7\x99\xbf\xbc\xd8\x9a\x18\xa7\x3d\xab\x38\xb1\x49\x19\x3a\xff\xa7\x17\x51\xe5\x42\x8a\x87\xd8\x82\xa0\x36\x99\x2e\xf9\xd8\xdc\x99\x1b\x32\x87\x1d\xc3\x1f\x73\xf8\x09\xfc\xd1\xa8\xd1\x85\x24\x38\x25\x83\x3f\x63\x95\xbc\x2a\xc2\x95\x0c\xfd\x74\xd8\xf5\x4d\x9b\x5f\x51\x8e\xcd\x46\x20\x58\xb6\xb5\xbe\xb2\x87\xac\x13\x5a\x72\x4f\xe3\x6f\x8d\x4e\x0c\x6d\xfc\x68\x62\xa4\x7a\x9a\x02\xcb\xd7\x87\x9a\x1a\xce\x7d\x76\x1f\x0f\x20\x19\xf9\x44\x05\x6f\x8c\x92\x95\x99\x42\x32\x89\xb1\x77\x23\x36\x75\x25\x2f\x8b\xb7\x9d\x40\x88\x43\x5d\x0a\x1c\xcb\x06\x06\x31\x42\xf3\xe3\xbd\xd1\xce\x99\xc7\x06\x49\x3a\xc7\x04\xa8\xb9\x7d\xde\x34\x2f\xb3\xf9\x18\x2e\x7b\x43\xb7\x58\xad\x01\x4a\xd5\x86\x33\xdc\x8a\xfe\x2d\x1a\x93\xf6\xe3\xfd\xe6\xd6\xb6\x2a\x63\x62\x2a\x45\x4c\x52\xc3\xf1\x40\x11\x52\xa3\x4f\x59\xaf\xf2\x89\xfc\x8e\x97\xf3\xc0\xa9\xd4\x66\x5f\xb1\xa8\x22\x86\xc9\x43\xcd\x2e\x3b\xa7\x6d\x21\x06\x05\xab\x58\xc1\x0b\x8b\x5d\x7b\xd0\x81\x20\x4a\x1b\xac\x4f\x88\x58\x00\x21\xa9\x78\x48\x38\x14\xa5\xf8\xe7\x44\xdf\x6a\x23\x65\x8c\xc0\xab\x59\x28\x63\x59\x3c\xaf\x82\xd2\xe2\x90\x9b\xdb\xef\xd0\x2c\x57\x20\xd4\xe2\xf9\x32\x77\x2e\xa7\x38\x65\x5f\x10\xda\x84\x34\x61\x8c\xd2\x6c\x44\xd3\x8c\x3a\x58\xd1\x2e\xfb\xfb\x63\xa1\x76\xd3\x6c\x1f\x6d\xad\xa8\xe7\x43\x5e\x06\xef\x61\x61\xa4\x96\x57\x4d\xfd\x71\xaa\x9e\x99\xef\x22\x53\xb5\xdc\x19\x3d\xdf\x5a\x9d\x12\xab\xa7\x1a\x91\x3e\xc6\x3c\x37\x03\x91\x64\xce\x84\xeb\x82\xc1\x82\xa6\x07\x5d\xe1\xd8\x32\x89\x20\xb7\x6f\x20\x6b\xa4\x2e\x76\xd4\xa7\xe0\xe6\xe3\x29\xd9\x9a\x42\xb6\xa4\x31\x8e\x3c\x29\x33\xd2\x13\x23\xac\x0f\x4d\xc8\x12\x5a\xc1\x0b\xab\x00\x27\x0d\xc8\x56\x67\x69\xba\x35\xbf\x12\x13\x24\xc4\x32\xaa\xd8\x59\x66\xc9\x5d\xed\x0a\xf5\x81\xeb\xd5\x9c\xca\xc0\x87\xac\x0a\x66\x97\x67\xff\xf2\xf9\x7f\xfe\xe0\x1d\x29\xb0\x50\x18\x59\xb9\xdb\x5a\x46\xed\x06\x0c\x05\x9d\x23\x43\x67\x48\x0b\x46\x01\xa4\x12\xba\x85\xc5\x30\xc6\x47\xae\x91\xa4\x3a\x1e\xf7\x67\x50\x9f\x14\xab\x86\x90\x24\x07\x6c\xb5\xef\x4d\xb1\xb3\xa9\xaa\xd2\x5a\xbc\xd0\xb9\xf6\x53\x70\xfe\x62\xfb\xfe\x4f\x7a\x43\x10\xdd\xc2\xa5\x8b\x32\x46\xbc\xe2\x86\x56\x00\x18\x0e\x7f\x6c\x53\x34\x75\x51\xad\x40\x08\x4e\xd7\x30\x81\x8b\x85\xf7\xda\x96\x3f\x37\xcd\xac\x05\x8e\x2c\xd1\x86\x21\xcc\xaa\xfa\x99\xa8\x36\x10\x3f\x93\xbd\xaf\xe2\xa9\x12\x34\x60\xbc\xd4\x3b\x1f\xc3\x28\x63\x1a\xc2\x92\x1a\x68\xc5\x96\x2a\x26\x2c\x34\x73\x21\x2b\x6a\xfc\x9a\xb0\x70\x01\xb7\x05\x9c\x96\xb9\x24\x51\xe2\xa2\xe5\x0b\x03\x16\x1d\x10\xe8\xb3\xe8\x0d\x0c\xcc\x83\x05\x81\xed\x46\xb7\x16\xb2\x12\x6a\xbf\x00\xd6\x04\x30\xb7\xf1\xcf\x29\x7d\xa9\x39\x1a\x9d\x70\x0f\xe1\xb4\x70\x39\x70\xe4\xb4\x99\x24\x1f\x90\x7a\x80\x77\x63\x6b\x32\x78\x74\x8b\xf7\x84\x44\x18\xf4\x7a\x54\x22\x02\x5f\xcf\x01\xe0\xea\xab\x0b\x4a\x50\xa0\x75\xf5\xf0\xf6\xa5\x59\xc2\xfc\x64\xed\x97\x57\xad\xff\x6c\xf9\x77\xd6\x60\x13\xf4\xfe\xc3\x39\x07\x19\xca\x39\x05\xa8\x62\xd4\x09\xd6\xef\xd0\x37\xf4\xfd\x19\x3d\xef\x9f\x07\x21\xe2\x2c\x57\x0c\xae\xed\x9b\xe8\x43\xd5\xc3\xb3\x2e\x2c\x39\x5f\x49\x7c\x4a\x15\x7b\x4e\xfc\xb4\xd8\x28\xdf\xec\x74\x9b\x9c\xfd\xc1\xc7\x9b\xab\x98\xc7\x1b\x8e\x0a\x4a\xa5\xa1\x89\xb3\x5e\xe9\x2b\x56\x0a\x19\xf3\xbb\xfa\xa8\x37\xc8\xec\xd0\x04\x8c\x70\x27\x32\xd5\x1c\x55\xc9\xd2\x2a\x29\x45\x34\xb1\xc5\x7c\x63\x36\x77\xee\xb4\x26\xa6\x95\xff\xa7\xd8\x7a\x05\x98\x48\x03\x23\xbc\x02\xa3\x12\x57\xdf\xd5\xb0\x0a\xad\xf9\xdb\x3c\x37\xde\x07\xe2\x9d\xf1\x9e\xde\x3f\x87\xc7\x6e\x76\x91\x74\x2c\x1f\x9d\xf8\xdc\x65\xb6\x87\x77\x90\xea\x83\xe0\x8b\x6e\x0a\x67\xb6\x81\xfb\x24\xdb\x3e\xb2\x6e\xdc\x11\xf9\x73\xce\x98\x1a\x07\x16\xfb\x91\xf0\x2f\xfc\x92\xe6\x6a\xc9\xed\xd2\xd1\xe6\x26\xd4\xd1\xd6\x13\x33\x27\x95\x98\xb5\x20\x16\xae\xaf\xad\x0e\xb9\xb9\x40\xb2\x16\x06\x8b\x24\xaa\x6e\xde\x44\xf6\x53\x6c\x6c\x88\x23\xdf\xe3\x09\x7f\x8c\x86\xbe\xbc\x11\x2c\xbe\xd4\x7e\x3c\x80\xe0\x32\x36\x74\x39\x3a\xdb\xb9\x05\x48\x07\x9c\xc8\x08\x9c\x1a\x93\x66\xf0\x40\xfd\xc6\x4d\xd8\x57\x35\x50\x73\x17\xe3\x04\x44\x84\x28\xf2\x86\x04\xe1\x8c\x60\xba\xd4\x30\xc9\x09\x1c\x1d\xa3\x02\xcb\x7c\x42\x68\x1a\xe3\x4c\x42\xc4\xaf\x93\x3d\xfc\x0d\x6f\x4b\xdc\xf9\xb3\x3f\xa3\x37\x29\xd1\x12\xbc\x75\xa2\xa3\x8f\xf3\xd1\x46\x3f\x2f\x9e\xf2\x2a\x72\x57\x62\x94\x5f\xbd\xe2\xef\x5f\x16\x0e\x9b\x2f\x7c\xa3\x67\xb9\xa6\xa5\x7d\xed\x87\xc0\xea\x1c\x66\x79\xe5\xd4\x0a\x88\xb2\xfd\xf2\x34\x19\x53\x96\xcf\x06\x1b\x5b\xcd\x97\x63\xc1\xd6\x18\x7e\x34\x75\x59\x24\x1e\x32\x63\xd1\xdc\x9a\xb7\xd4\xbd\x8a\xaa\x82\xd9\x27\xc1\x28\x48\x46\x6b\xfa\x4e\x65\x6e\x5a\x7c\x9f\x62\x23\x12\x6d\x7e\x44\x2e\x8f\x82\x28\xcf\x54\x2a\x34\x87\x97\x00\xd4\x04\x91\x41\xe9\x54\xc9\x04\x46\xee\x73\x4d\xb1\x6b\xde\xde\x86\x83\xaf\xb7\x82\x9b\x83\x0d\x21\x77\x81\xc3\x87\xbe\x45\xf5\xcd\x77\x20\x8c\x90\xee\x56\xeb\xce\x0c\x6b\x41\xcc\xd8\x16\x5a\x11\x94\xe5\x53\xbb\x6b\x1b\x70\x80\xb4\xed\xc6\x23\x38\xa5\xed\xdd\xb3\xad\x95\xf5\xbf\x8d\x8c\x02\xa2\x22\x4d\x79\xb1\xe9\x37\x76\x62\x0b\xd9\x9a\x59\x05\x78\x90\xc0\x9a\xdb\xd3\x21\x73\xa2\x14\x37\xa7\x8b\x6e\xb1\xaf\x58\x22\x35\xd2\xec\x13\xe4\x29\xb6\xef\xc9\x57\xfc\x68\x78\x09\x8b\x0a\xf0\xcc\x36\xb4\x5c\xcd\x55\xac\x3c\x5c\x3d\x6e\xe6\x48\xbd\x08\x5c\x75\xc1\x42\x5f\x9d\x23\x1f\xb6\xee\x8f\xb2\x47\x27\x74\x04\x30\x1f\x26\x5b\xc2\xc0\xa1\x3c\xdc\x56\xbd\x45\x60\xd7\xd9\x83\x1e\xb9\x66\xfe\x8a\x7e\xfc\x16\x90\x29\xcb\xd4\x7a\x21\x07\xde\x67\x1f\xd0\xe9\x89\x1a\x99\x64\x53\xba\xc4\x20\x25\x35\x83\x5f\x77\x1b\x2c\x68\xd1\x54\x76\xe5\xc0\x91\xcf\x33\x9a\xf8\x59\x8d\x62\x44\x32\xfd\xba\x3b\x41\x6a\xad\x53\xa2\x00\x8e\x04\x39\xd1\x77\xf2\x48\xe6\xef\xe4\x8e\x4c\x1f\x13\x2b\x67\x56\x64\x31\x58\xe4\x54\x5a\x6d\x40\xa7\xd0\x7a\xc4\xd4\x81\x5d\xd1\x66\x67\xdb\xaf\x36\xe4\x3b\xc6\xae\xc9\x77\x8e\x5e\x33\xbe\xab\x6e\x7a\x01\x81\xf3\x9e\xd5\x33\x50\xf4\x8a\x03\x15\x0c\xa7\x41\x85\x0c\x50\xfd\x52\x31\x0f\x57\x86\x2d\xba\xee\xf6\xea\x26\x74\xac\xbf\xea\xed\x7d\x38\x25\x3a\x05\x03\x8a\x55\x01\xd8\x17\xec\x93\x0d\x62\x30\xfe\x4f\xfd\x8c\xf5\x9b\xb3\xf8\xb3\xa5\x02\xef\x48\xd1\xee\x80\x74\x5c\xf4\x32\x9f\xc3\x3f\x70\x9d\x17\xff\x2a\x02\x5a\x18\xe6\x44\x71\x15\xe8\x60\x0a\x6d\xc0\x7e\xd2\x90\x29\x6e\x23\x6c\x46\x7c\xa0\x8c\x60\x35\xb5\x09\x05\xbb\x3f\x57\x2f\x29\x95\x6e\x86\x3d\x74\x59\x91\xab\xe2\xdd\xa0\x7f\xcf\xae\x9d\x06\x5e\x83\x7d\xb8\x80\x51\x0d\xd6\xef\xfa\x17\x56\x83\x65\xb8\x47\x1a\x2c\xec\xd0\x4e\xa7\x2a\x3e\xcd\x33\xf7\xf7\xea\x3e\xa3\xe7\xf6\x40\xf5\x67\xc5\x46\xe5\x4c\xdd\x83\xb9\x90\x50\x61\x9a\x27\x70\x46\x03\x7c\x57\xa2\xa1\x9d\xc3\xf2\x54\x80\x92\x59\x94\x38\xb1\x88\xe9\xca\xce\x1a\x3d\x45\x78\x7c\xac\xbe\x52\xdd\x3e\xf2\x21\x2f\x8f\x3e\x42\xaa\x41\x5a\x75\x09\x01\x54\x3e\x73\x5c\xd4\x93\x2f\x39\x15\x20\x98\x2c\x64\x67\xcc\x50\x81\x2e\x30\x21\x51\x65\x95\x82\xf2\xbe\x37\x22\x0e\xde\xf9\xe3\xe7\x27\xc9\x17\x00\xed\xe8\xe4\x07\xce\x2e\xdd\xfe\xd2\x2a\xc7\x25\x89\x51\x9b\x5b\x57\x06\x2a\xd4\x5b\x96\xd8\x8f\x13\x0f\x18\x59\x84\xb8\x36\x57\x42\x7e\x6f\xed\x29\xff\xad\x35\xfc\xe8\xd8\x6f\x18\xa0\xd9\xef\x53\x58\x37\x3c\xc8\xb0\x13\xa9\xe7\x9b\xc2\x0d\xd0\x23\x5a\x7c\x63\xe5\x78\x93\xa0\xc3\xf4\x5d\xd3\x6a\xb9\xac\xaa\xc3\x59\xd4\x44\xca\x12\xf1\x25\x6e\x7c\xd7\x77\xf5\x71\xa7\x5a\xb4\x0b\xbf\x33\x8b\xd8\xf8\x7d\x82\xd4\x18\xff\x7b\xfa\xca\xb1\xe3\x18\x42\x75\xdc\xab\x95\xe0\x2f\xd2\x4b\x54\x87\x01\x1c\xce\xf2\x29\xf4\xe4\xc2\x9f\x19\xcd\x0b\xf9\x13\x0f\x7c\x60\x24\x36\x5e\x51\x83\xd0\xb2\x14\xf1\xf5\x8f\xd5\x70\x6f\x04\x59\x60\x29\xd0\xbe\x3e\x7a\x89\xa5\x52\x65\x9f\x59\x11\x3f\xc7\x64\x58\x9f\x29\xc8\x6e\x3d\x06\xd1\xb7\xfd\xe0\x51\x70\xe5\x3c\x89\xa2\xc2\x47\x0f\xb1\xb1\x9d\xf4\xa8\x6c\x61\x38\x7c\x88\xbf\xa9\x5f\x75\x74\x51\xad\x09\x88\x32\x4b\xd0\xa7\xd0\x46\x81\x51\xa6\xb4\xc4\x74\x40\x84\x46\x06\x57\x89\x94\x0a\x8d\xfc\x4b\x1d\x17\x60\x00\xa3\x0b\x33\xfe\xab\x87\x9d\x91\x15\x15\x80\xcc\x73\x44\x9a\x23\xd6\x2d\x5a\x01\x61\x5a\x94\xbb\x68\xe8\x63\x49\x44\x35\xef\x94\x81\x75\x87\x73\xbb\x7f\x83\x5d\x9d\xd1\x76\x45\x74\x47\x5c\x15\x22\xa1\xb2\xd5\x3a\xba\x88\xa0\x21\x49\x28\x94\x51\x4b\xbc\x57\x58\x06\x66\x9f\xf3\xb0\x22\xf5\x05\xe3\xa2\x10\x30\x56\x67\x1b\x64\x11\xb5\x58\x58\xa0\xa3\x2b\xd1\x05\xc8\xea\xcb\xe5\x4f\x59\x48\x15\x6b\xbf\xc3\xd5\x38\x7c\x48\x28\x9f\xa2\x79\x5e\xcd\xb6\x33\x8c\xc9\xc1\xea\x4b\x55\x4c\x41\x6f\x5e\x0e\xa3\x63\x09\x0e\xc5\xa8\xd5\xa5\xd6\xe6\x1d\x05\x60\xab\x12\x65\x58\x22\x60\x86\x51\x9f\x52\xa3\x5b\x31\x1c\xd6\xcd\x9c\x80\x7f\xad\xaf\x25\x28\x16\x05\xd2\x3e\xbb\xa4\xaa\xe3\x61\x05\x92\xee\xc1\x36\xb8\x99\xce\xf8\x34\x70\x94\xad\xdb\x17\x10\x23\xcb\xe5\xa2\x07\x50\xb3\x73\x20\x49\x05\xeb\x2f\xfc\xd9\xa7\xb8\x26\x34\x59\x10\xb0\xc8\xbb\x1b\xe4\xb7\xe6\x5e\x03\x90\x00\x2d\x0b\xb5\xdc\x50\xc6\x3f\xbf\xe2\xdf\x9f\x52\xd7\x12\x7d\x86\x75\xa3\x70\x59\xfe\xa8\x1a\xa2\x22\xf2\xd6\xc5\x6a\xac\x84\x49\xa9\x0c\x98\x5f\xce\xd1\xd9\x64\xde\x4e\x9d\x4d\x3d\xbe\x1e\x3d\x4e\x10\xac\xc9\x71\x8d\x07\x1c\x02\x84\x31\xbc\xad\x5f\x6e\x47\x67\xa3\x40\xfa\x51\x9e\x44\x55\xda\xc4\x7e\xf8\x11\xa9\x3c\xfa\xc0\xec\x2d\x13\x3b\xa8\x3e\x97\xe1\xa4\xa3\x3a\xde\x3f\xb3\x44\x27\x44\x7d\x2f\x90\xf3\x1f\x37\x7f\xf9\x2e\x5c\x5e\x61\x11\xbb\x51\x03\xf3\xde\x6e\x4c\x22\xe1\x8b\x0d\x10\xf0\xda\x56\xe6\x00\xa3\x58\x7b\x2d\x63\xe4\xbb\x5c\xab\xb4\xb7\x66\x41\x4f\x6c\x2f\x8d\x92\x0a\x72\x1f\x50\x88\x9e\x39\xc2\x39\x24\x81\xf2\xb0\x9d\xb5\xac\x6a\x84\x38\x7f\x72\xfc\xdb\xc2\x13\x9f\x04\xd7\xa8\x62\x62\x4a\xb4\xcf\x10\x44\xf7\x9b\x0e\xcb\x5d\x1b\xe0\xd1\xde\xd3\x2b\x39\x55\x10\x9d\x8c\x51\x2c\x4e\xf9\x0b\x2b\x12\xe9\xd6\xa5\x17\xc7\x45\xff\x53\x5d\x05\x3b\x20\x3f\xe4\xae\x55\xe0\xe2\xc5\x7c\x01\x30\xa2\xe9\x71\x20\x6c\x6c\xb1\x4f\x19\xba\x86\x13\x43\x54\x37\x68\x54\xf2\xe8\x26\x97\x1f\xa4\xc2\x31\x89\xeb\xba\xcd\xb2\x93\x12\xb0\x9f\xd8\x17\x2e\xce\x02\x3b\x96\xb7\xc5\x69\x5f\x68\x03\xf1\x34\x14\xb8\x1e\xe9\xe8\xa0\xf6\x68\x89\xbd\x5c\x5f\x06\x55\xcd\x23\x53\xb4\xc4\x97\xc8\xf2\xac\x9a\xc0\x25\x35\x20\xf4\x8a\x6a\x08\x38\xba\xe8\x31\x29\xe8\x47\xcd\xb7\x9e\xac\xc1\xbe\xa6\x42\x00\x2f\x96\x65\xfe\x12\x2f\x6c\x06\x8c\x8d\x49\xc0\x53\xd0\x2f\xbd\x5d\x0d\x98\xd6\x76\x72\xd7\xa5\x56\x6c\xe3\x51\x65\x90\xda\x3a\xc0\x0d\x14\x01\x2e\x75\xe0\xaa\x6a\xbc\x12\xf3\x84\xc4\x0d\xa6\xb7\x8a\x00\x3d\x18\x0e\x22\x84\x9c\xe5\x9d\x18\x2e\x44\x60\x5d\xc9\x6b\x01\x8c\xc5\xb0\x53\x97\x51\xb7\x9e\xdd\x63\xd9\x3d\xb5\x0e\x6f\x7f\x21\xdb\x37\x4c\x55\x5a\xf3\x9b\xa8\xa8\x51\x37\x5f\x6a\x95\xb2\x5d\x41\xc5\x08\xc6\x66\x51\x2f\xb3\x73\x98\x59\x23\xb5\x0b\x17\x7d\x7b\x83\xf3\x17\x29\x51\x41\xb2\xa8\x07\x2f\x46\x8c\xd3\xa7\x8c\x0d\xdc\x6b\x2a\x1c\xa2\xb0\xc0\x5d\x5e\x3b\x00\xae\x66\x83\x88\xe4\xb1\x7d\x32\x23\x9a\x53\x22\xa3\xe9\xbd\xc3\xcd\x65\x00\xa3\xc7\x71\x77\xe0\xb2\xe3\x7a\x48\xa0\x51\xdf\x4d\xde\x95\x57\xdb\x6b\x0b\xed\x87\x8b\xdd\x5b\x36\xa1\x37\x2e\xc4\xa0\xf1\x50\xd1\xb2\x67\xf8\x2f\xeb\xe8\xb7\xef\x7e\xe7\x5a\x7d\xc3\x86\xed\xe0\xdb\xf7\xbe\x03\x66\xed\xe8\xb7\xef\x7f\x47\xd9\x17\x92\x75\xb3\xfd\xb9\x53\x68\x85\xdf\xb4\x08\xd6\x42\x87\x69\x6a\x27\xb6\x44\xd5\x9a\x7d\xba\xe8\xd4\x5d\xd4\x37\x03\x47\x44\xd9\x61\x34\xb1\xf8\x01\x6d\x4f\x53\xb1\xcf\x7c\xe6\x39\xf4\x57\x91\xd4\xe8\x79\x2f\x28\xcd\x4c\xe2\xb0\x57\xea\xe5\xac\xcc\xdd\x45\x8a\x10\xdc\xbe\x1e\x9b\xbc\x94\xa2\xe4\xe4\x65\xbe\xc7\x51\xc3\xa4\x8b\x05\x9c\x32\x0c\x5e\xe5\x9f\xf8\x07\xfe\xf5\x21\xcd\x8d\xb8\x54\x6e\xe6\xfb\xb0\x27\x27\x34\x41\x6c\x5c\x45\x52\xaa\xcc\xd9\xca\x16\x11\xa1\x50\x9c\x8a\x23\x36\x5a\x2e\x92\x11\x45\x40\x00\xab\x63\xe3\xae\xd9\xb4\x2e\x02\x44\x0e\xf8\xbc\x3a\x71\x88\x58\x73\x06\x64\xb2\x51\x21\xc0\x0a\x5b\xe2\xa5\xbc\xd6\xbf\x6d\x9d\x78\xfc\xdf\xc7\x46\xf5\xdb\x9b\x31\xc6\xfd\x7d\x64\xf3\x8a\xc8\x3a\xf7\x53\x73\xf0\x7f\xbb\x66\x57\x50\x13\x44\x8a\x02\x82\x62\x03\x6d\xce\x62\xd8\x37\xeb\x2e\xec\x01\x58\x6a\x8f\x03\xb1\x81\x97\x24\x5e\x4b\x0a\x48\xf7\x14\xba\x86\x87\xd8\xca\xaa\x3a\xe5\x0d\xaa\xbf\xab\xd8\x1f\x10\x49\x40\x08\xc4\x8b\x79\x6c\xa6\xfd\x54\x07\xf7\x9a\x50\xc5\x4a\x56\xf9\x97\xb3\x4a\x67\x76\x92\x3d\xba\x50\x2c\xdb\x98\x69\xaf\x6d\x82\x08\x02\x87\xc0\x0c\x36\x89\x86\x5e\x4d\xb3\x74\xdc\x02\x12\x72\xfe\x6e\xd4\x02\xc8\xd6\x7f\xbd\xf5\x91\xc3\x6c\x17\x8a\x70\x5b\xbc\x58\x6d\xef\x3e\x09\x97\x38\x9a\x80\x46\x8d\x33\x77\xda\xce\x70\xc0\xa1\xfe\xc6\xf7\xa5\x64\xa0\x30\x6e\xf8\x18\x40\xde\x29\x39\x8a\x05\xe8\xdc\x9a\x6d\x4f\x3c\x4d\x00\xa0\x3a\x96\xaf\xef\xd8\x55\xcb\x00\x21\xe2\xbb\x11\x3e\x00\xc5\xa3\xe8\x8d\xc4\xf0\x69\xd3\xe2\x92\x88\x33\x56\xac\x4c\x22\x20\xc4\xbb\x22\x6d\x1c\x31\x45\xfe\x81\x30\x31\x4b\xa0\xac\x0f\x29\x11\xc5\x83\xd6\xb8\x51\x91\x67\x0c\x8d\x80\x93\xc1\xe8\x93\x98\xf9\x8f\xd4\xc3\xe9\xfd\x68\xd5\xbd\xc8\x5f\xa1\x05\xf0\x77\xec\x58\x06\x32\x17\x9e\x9b\x6a\x0e\xd0\x8b\x1d\x4b\x5c\x8c\xb6\x09\x9e\xcc\x4b\x06\x97\xc7\x93\xfe\xf4\x62\x17\x48\x99\x06\x81\xfb\x63\x6b\xc8\x60\x91\xe8\xd7\x59\xbc\xa4\x9d\x7f\xb8\x01\xc0\x30\x0c\xdc\x7d\xf6\x42\x8c\x2a\x46\xb2\x23\x76\xf3\x88\x34\x8f\x39\x59\x32\xf8\x4f\xa2\x5f\xfe\x7f\x46\xfe\xaf\x8a\xe5\x82\x13\x01\xf6\x0f\xf4\xcb\xe2\x5f\x0a\x04\x08\x72\xcd\x76\xeb\x25\x14\xbf\x80\x1a\x4f\xec\x63\x9c\xf7\xb3\x39\x38\x2e\x21\x04\x25\x09\x62\xdd\x07\x77\x73\x72\x10\x08\x08\x8a\xcf\x52\xc6\x6a\x12\x2a\xb3\xfa\xec\x7c\xae\xee\xa2\x18\x8d\xf1\x3d\x95\x82\x35\x88\x29\x8b\x94\x0c\x6c\x21\x88\x7d\xda\xc6\xe8\x76\x6e\x1e\x3d\x6f\xcd\x8c\x4f\x99\xef\x75\xeb\xb9\x12\xaa\x3b\x87\x81\x2a\x21\x80\x25\x00\xd0\x83\x37\x84\xee\x1f\x1e\xb4\x67\x5b\xde\x90\x23\x6a\x13\xf7\xf7\xe6\x4d\x0c\xa4\xea\x1d\xea\xe1\x1d\xbc\x8e\x0b\x42\xb6\xfe\x81\x7e\x08\xf1\x92\x35\x64\xbe\x9d\x13\x93\x59\xa6\x9c\xad\x20\xe8\xb0\xf2\x9e\xa2\xb3\x0a\xe9\xca\xcb\x36\x74\x49\x57\x77\x41\x68\xa6\xcb\x24\xf4\x03\x0c\xcc\x52\x34\x92\xfe\xb6\x8a\x15\xa8\xa0\xbe\xbf\xaf\xbf\xab\xe6\xa9\x29\xb9\x9c\xb9\x17\xfe\xf2\xef\x6b\x1d\x6a\xff\x87\xef\x5c\x3d\x85\x5c\x1f\x5e\xbc\x98\xd3\x8d\xbd\x0f\x8f\x1b\x3f\xa2\x40\x2c\x8b\x1f\xe7\xff\x9b\x45\xa4\x37\x46\x2c\xb2\x95\x53\x60\x41\x15\xcb\x25\x0a\x28\x42\x43\x57\xe1\x5d\xfc\x59\x72\x4b\x99\x5b\x08\x23\xae\xda\x35\x54\xe9\xca\x42\x02\x9c\xce\x7a\x60\xae\x4a\xe6\x4b\xfa\x9f\x89\x2c\x52\x70\x32\xd1\xa8\xf6\x0b\x92\xe5\x8b\xb9\x05\x71\x0b\x98\xda\x08\x0e\x04\x59\x1f\x3f\x81\xbf\x31\xcd\x52\x72\x7c\xba\x29\x86\xb4\x0a\x75\xf2\x6d\x54\xe4\x03\x2b\xa1\xd2\xcc\xf4\x70\xd2\x03\x2f\xba\x40\x06\xec\xfc\x29\xf4\xf9\xc5\x8c\x4e\x68\x48\x2b\x15\xf3\x9e\xa5\xbe\x22\x6a\x93\x3b\x36\x06\x82\x56\x6b\xce\x40\x8d\x42\xd0\x74\x86\x2f\xb8\xf7\xdc\x41\xca\xc5\x85\x00\xfd\xf6\x90\x55\x76\x88\x35\xd3\x5d\xc0\x6d\x93\x25\xc5\x3f\xcd\x94\x71\x46\x72\x2b\xe9\x75\xc5\xf2\x63\xb1\xc5\xb5\x9c\x94\xcd\x30\x5b\x25\x95\x7a\x7a\xc3\x6f\x79\x07\x37\xad\xce\xbd\x47\xa7\x17\x8f\xb9\x9a\xb8\xab\x4f\xac\x52\x97\x74\xef\x51\x34\xa5\x82\x3f\x75\xd6\xc9\xa1\xa6\x10\xfd\x4c\x71\x0f\x9c\x12\x6e\x84\xeb\x94\x4e\xc3\xea\x78\x51\x6c\x89\xd2\x11\xc2\x9c\xd4\xf3\x4c\xb8\x5a\xaf\xc8\xb9\xa3\x4a\xa4\x5c\x74\x33\xdf\x27\x27\x2b\x38\xdc\x6d\xa2\x26\x99\x22\xa8\x4a\x14\x93\xfe\xf1\x1f\x8e\x16\xfe\x89\xcf\xae\x8b\xc9\xb4\x12\x56\x19\xfc\xc8\x6b\x69\xba\xcb\xe1\x8c\xa1\xe9\xa1\x5c\x91\xf2\x60\x61\x96\x10\x04\x82\xbf\x7b\xbe\x27\xbf\x07\xad\xf0\x23\xdd\x92\xb8\x80\x85\x52\xb1\x51\x6e\x2a\x03\x0c\xc9\xc0\x80\x88\x6a\x03\x42\xe9\x20\x0e\x82\x6e\x9c\x20\xae\xb8\x29\xe5\xa8\x33\xae\x03\xc2\x90\x60\xc6\x7a\xe3\xc6\x83\x60\xfd\xb6\xd2\xa3\xc5\xc6\x93\x51\x4c\x78\xbc\x8b\x4c\x5a\xdb\xf6\x10\xdc\xd7\x7d\x78\x8f\xa0\xa9\x96\x04\x25\x3d\xd5\xe6\xfe\x39\x4c\x11\x79\x17\xad\x22\x12\x53\xb1\x77\xd3\x60\x71\xcc\x0e\x4c\x05\x4d\xfa\x5a\x69\xb6\x2c\x5e\x97\x15\xe2\xa2\x0a\x37\xbf\xeb\x49\x1b\xd3\x45\x9b\x17\xe5\x65\x22\x9b\x57\x64\x8a\x36\x7a\x0d\x93\x96\x2c\x52\xa0\xb3\x6b\x48\x73\x59\xc6\x84\x48\xab\xda\x8e\xa5\x02\xf4\xa6\xd9\x3b\x03\x8d\x3b\x6f\x0d\x43\xc3\xc7\xca\xe5\x63\x85\x02\x19\xbc\xfc\xbd\xdb\x3a\x51\x52\x7c\x01\x34\xef\xa3\x97\x80\xed\x64\xa2\x49\x0a\xbd\x6b\x8c\x9a\x06\x6f\x98\xbe\x70\x08\x60\x6c\x92\xb8\xd3\xc2\xc6\x4c\xde\x84\xe9\x06\x4b\xac\x15\xc5\xe5\x43\x9f\x19\x32\x1c\x34\xb7\xb7\x31\x78\x45\x6f\xde\xdc\x39\xf4\xf2\xd1\x4a\xa1\xab\x3f\x62\xb4\x96\x04\xca\x99\x93\x88\x72\xda\x46\x49\x84\x15\x3d\x70\x98\xa9\xf3\xc7\x1e\xd9\x66\x4c\x92\x28\x8b\x0a\xe8\x12\xb3\xd0\x88\x2f\x47\x8c\xa5\x4d\xef\xab\x0b\x4f\xab\x81\x5f\xcb\xd6\xb2\xcf\x46\x1a\x4f\x9b\xd6\x4b\x62\x56\x09\xb7\x36\x33\x83\x27\x9b\xb9\x63\x89\x3d\x7b\x38\xb9\x98\x9b\x89\xe6\xc4\xd3\xc5\x46\xce\x0f\x47\x0b\x75\x94\xed\x83\xa3\x5f\x14\xdc\xa0\xe3\x9c\xd2\x1e\xa6\x7f\xb6\xfb\xac\xce\xc4\x1d\x7f\x7d\xce\x80\x18\xc0\x44\x7f\x06\x10\xa5\xba\x8b\x03\x01\x07\x59\xcc\x1b\xc9\x48\xd3\x07\x55\x40\x46\xa4\x96\xfd\x2b\x29\x86\x67\x36\x3b\x57\x1f\x88\x7b\x08\x46\x55\x68\xa8\x94\xfc\xb6\xba\x4c\x9c\xe3\x75\x47\xac\x52\xea\xb2\x44\xe2\x64\x8e\x64\xfc\x4d\x22\x25\xd2\x22\x24\x30\x7a\x22\xbc\x06\x7a\x8c\xc6\x3d\xe0\x92\xdd\x7e\x34\x2b\x53\x9c\x97\x38\x29\xb0\xd3\xc4\xa3\xc9\x14\x40\xed\xa3\xc6\x92\x2c\xba\x4b\xf2\xb0\xa9\x7e\x7b\xfc\x67\x74\x62\x62\x7b\x69\x34\x81\x52\xe8\x72\xd6\x58\x34\x62\xd5\x74\x07\x94\x5f\x96\xc2\x39\x91\xe5\x72\xd9\x5e\x8f\x0e\x1a\x86\x5d\x4e\x3b\xda\x98\x0e\xa8\xec\xa4\x6a\x98\x66\xc3\x8d\x32\xa5\x48\xb4\x1c\x8b\x8d\x2e\x06\x60\x1e\x17\xd5\x0f\xb9\xa8\x91\xa7\x52\x67\xe4\x1c\xcc\x4d\xd2\x74\x6e\x4d\x04\x23\xd7\x31\xdf\xe2\xfe\x74\xfb\xd6\x74\x74\x02\x7a\x85\x30\x75\x1b\x1c\x8c\xec\xbb\x99\x63\x16\xde\xee\xb4\x3b\x78\xd5\x58\xec\x3c\x66\x15\xfb\xc9\x19\x86\x66\x4b\xd7\x39\x5c\xc4\x85\xe2\xe9\x62\xa1\x9e\x2b\x51\x6a\xae\xb4\x1d\xd2\xcd\xbe\x67\x36\x0b\x1c\x0f\xf9\x34\x74\x6d\x1a\x38\x04\x23\x6d\x30\xdf\xf2\x3a\xfd\x2b\x60\x30\x73\xa3\x36\xd7\x70\x53\x3b\xc6\x9b\x41\xd4\x07\xc2\x25\x51\xc0\xac\xa5\x03\xcd\x22\x7c\x04\xfb\xd5\xa3\x23\x17\x3b\xdf\x6b\x36\xe6\xf7\xc9\x85\x37\x57\x8a\xf0\x39\xe4\x79\x94\x97\xd3\xf1\x8f\xbe\xfa\xea\x4f\x27\x43\xff\xa6\x3e\xe0\xd1\x2a\x05\x18\x78\x4f\xf7\xe6\xde\x4b\x36\x47\x8b\x45\x76\xc1\x0a\x0c\xbe\x34\x2c\x9e\xfc\x34\x75\x10\x0e\x6b\x92\x96\x56\xb1\xe6\xe1\x61\x79\x1b\x26\x97\x2f\xd5\x0b\x94\x25\x17\x68\x06\x72\xf3\x6f\xb3\x02\x0b\x38\x68\xa5\xc2\xa4\x75\xe5\x2d\x00\x51\x05\x5a\x09\x09\x97\x13\x5d\xd5\xd8\x50\xc9\xf7\x00\xa7\xff\x79\xa2\x67\x8b\xb8\x66\x0c\x37\x7b\x9b\xfc\xa7\x10\x54\xa2\x1e\xfa\x58\xe8\x2d\x23\x07\x57\xb0\x81\xbb\x29\xc0\x20\x80\x00\xe0\xae\x28\xf2\xfc\xba\x4e\xdf\xeb\xde\x29\xfb\x5d\xa5\xf5\xca\xe1\x16\x30\x55\x8e\xc8\x22\x56\xd2\x2b\x96\x0f\xda\x0c\xea\xec\x7d\xee\xcc\x0c\xbe\x38\x65\xdb\x55\xa3\x87\xe8\xe0\x43\xfb\x38\x13\xb8\xd0\x9b\x2d\x65\x8b\x48\xb6\xa3\x85\xb2\x00\xed\x48\xbc\xe8\x46\x69\xc3\x08\x1d\x83\xd6\x26\x42\x90\x92\x47\x40\x94\x87\x00\x15\xba\xfa\x69\xa8\x72\xee\x14\xf0\xb2\x8a\x90\x4a\x66\x1e\x83\x9c\xa6\x35\xc8\x2e\xb1\xca\x8b\x48\x13\x5c\x15\x6d\x9b\x1c\x4a\xd4\x39\x32\xea\x14\x19\xef\x05\xbd\xc9\x4d\x04\xd4\x7e\xe5\x44\x49\x53\xae\xcf\x78\x85\x50\x59\x45\x23\x31\x03\x5a\x74\xf5\xe8\xf0\x18\x31\xd2\x1b\x31\x23\xe1\x75\x75\x1d\x86\x80\x41\x8f\xd7\x6e\xf0\x1d\x11\x6d\x93\x02\xea\x8b\x14\x25\x9d\xe5\xc4\x4f\x29\x41\xf5\xc0\xa9\x48\xec\xb1\x8a\x91\xf6\xaf\xdd\xe4\x34\x66\xe8\xc5\x43\x23\x6f\x9d\xd9\xee\x32\x6c\x9c\xf8\x90\xdd\x87\x9c\x81\x04\xe3\xa4\x73\x0f\xc4\x3a\xf0\x3d\x11\x96\xb3\xcb\x17\xc6\xa5\x53\x9a\x53\x74\xaf\x27\xaf\xec\xe6\x16\x6a\xd8\x90\x8f\x9b\x1e\x87\xef\xcd\xed\x29\x74\x61\x58\x3a\x83\xda\x39\xfa\x42\xae\x50\x1c\xaa\x63\x9d\xf8\x53\xef\x49\x4b\x47\x77\xb2\x4b\xc3\xc1\xe9\xb6\xff\xcc\xe3\x45\x4b\xce\x78\xf0\x60\x9e\xa3\x44\x38\x01\x27\x65\xae\xd7\x4c\x9c\x31\x7e\x99\x63\xa8\x19\x95\xb8\x2a\x69\xeb\x00\xc8\x64\x18\x96\x40\x44\xe2\xaf\x50\x5b\x14\x17\x26\xf1\x6c\x63\x5e\x70\xa4\xae\x96\xf8\x73\x1c\x14\x82\xd5\x7d\x08\x0a\x91\x64\xb4\xaf\x0d\xc7\x8a\xb7\xd4\xa3\x04\x74\x2d\x95\xa7\x40\xb8\x55\xbc\x4a\x31\x9d\x0f\xfd\x91\x02\xc3\x92\x86\x9b\xf9\x8c\xff\x9f\x02\x51\xe5\x14\x37\x19\x49\x75\x93\x02\xd1\xe7\x14\x86\x33\x1f\xc3\x3f\x29\xac\xa9\xa4\x3e\xd7\x8c\x29\xa2\xf6\xfc\xa6\xbc\xde\xf0\xa8\x8d\xce\xa3\x73\xcd\xfd\x6b\x78\x8a\x54\xfa\x50\x8e\xa1\x40\xdf\x5d\xc2\x3c\xa4\x23\x94\x85\x11\x45\x73\xc6\x51\xf2\xf3\x89\x22\x83\xf4\x47\xea\x77\xe1\x7d\xc8\x5a\x21\xbd\x2e\x3f\xe0\xf0\x57\x3c\x4a\x13\xe3\xda\xa1\x3e\x58\xfd\xa9\xb9\x3f\xa5\xc2\x48\xd7\x29\x22\x08\xa5\x96\xd0\xd8\x41\xae\xeb\xc2\x6c\xad\xcc\xa1\xf6\x9f\x1a\x94\x76\xc8\x41\x85\xf3\x20\x23\xe2\x02\x37\x36\xf3\x33\xb0\x57\xe9\x43\x23\x0f\x6a\x99\x81\xd8\x2a\x12\x30\xca\xaa\x27\xc3\xa6\x36\x93\x94\x5f\xa0\x55\xe0\x2c\xc1\x26\x58\x6c\x83\x0c\x08\x7f\x4b\x39\x29\x70\xee\x23\x57\x3b\xa3\xe7\x45\xd9\x89\x67\x55\xe9\x3a\x59\x63\x8e\x1e\xe4\xab\x67\x3a\x8b\x9b\x7c\xc8\xf9\xe8\xe9\xcc\x64\xfe\xdc\x05\xe3\xc0\xeb\x64\x39\x9a\x79\xd6\x09\x1e\x81\x85\x45\x69\x95\xb2\x5b\x72\x1c\x38\x48\x0d\x20\x4e\x83\x58\xff\xdf\x7a\xff\xf4\x95\x45\xe1\x62\xd4\xef\x0f\xc7\x86\x86\x86\x8e\xe1\x41\x3b\x56\xaf\x95\xec\x0a\x7e\x2c\xc8\x98\x38\x2d\x91\x84\xa7\xc1\x98\xde\x94\x8c\x50\x44\x1a\x92\x11\xf3\xe2\x14\x54\xe6\x2c\xd3\x91\x74\x4d\xe6\x95\x84\x1b\x60\x26\xd7\x67\x75\x81\x29\x05\xd9\xf9\x9a\xad\x82\xbf\x12\x7b\xe4\x96\x72\xf9\x53\x61\xa8\xf8\x37\xf2\x47\x02\xa2\x08\x5d\xd1\x48\x3e\x87\x3f\x38\xdb\x75\x0c\x82\x8d\x57\xc7\xf1\x5f\xa3\x0c\xd5\xfe\xca\xe9\x1f\xc3\x21\xe8\xb6\xc7\x50\xa3\xe9\x60\xf9\x5a\xfb\xfe\x16\xec\x94\x41\xef\x51\x1c\xa7\x6d\xa4\x4c\x44\xb1\x46\xc8\x21\xd0\xa9\x94\x86\x29\xb1\x2d\x2d\x88\x6c\x09\x96\x28\xac\xe0\xfa\x51\x9c\xe6\xfa\x94\xa9\x2d\xe4\x34\x33\x9f\x5b\xe8\x15\xac\xd9\xdc\xb0\x44\xb3\xba\x3d\x89\x36\x38\x60\x3c\xf3\x85\xed\x59\x65\x64\x8d\xf0\x97\x35\x34\x08\xcc\x18\xb7\x96\x52\xc3\xb4\x34\x74\x29\xe5\xf5\xf9\x98\xcc\x25\x6f\xa3\x23\xaa\x97\x1b\xb0\xc4\xe5\x23\x75\x19\x32\x27\xe0\x9f\xf4\x05\xd2\x14\x0c\x7f\x21\x7d\xcf\x19\x7c\x9a\x79\xe0\x28\xf7\x60\x46\x72\xe8\x50\xf8\x78\xa2\x54\x67\xbe\x5f\x78\x6e\x5e\xa4\x72\xb5\x2e\x9d\x91\xbc\x31\x9c\x54\x81\xf6\x12\xae\x7d\x63\x3b\xa3\xbb\x80\x47\x9c\xce\xb7\x71\x99\x28\x3a\x1b\x0f\x32\x8c\xd3\x10\xcd\x21\x10\x0d\x49\xe7\x10\x04\xb4\x5b\x17\x5d\x59\x4c\xe1\x96\x55\x17\x12\xbb\x98\xda\x05\x3b\xae\x64\xe5\x4e\xc5\xbc\x21\xe2\xbd\x42\xd8\xd8\x5e\xbd\xc2\x8f\xf1\x98\x3c\x8b\x38\x10\x51\x4b\xca\xa9\x3c\xb2\x24\x7c\x7a\x42\xc2\xa7\x9f\x19\x10\x1f\x73\x8e\x2e\x8d\x18\xaa\x7b\xb1\x0a\xdb\xfe\xaf\x9d\x83\x29\x45\xd7\x99\x1b\xe4\x58\x2b\x15\x65\x15\x2b\x8c\xa5\xef\x8f\x9f\x64\xe0\xf8\xf1\xa1\x98\xce\xcd\x9d\xce\xe8\xa5\xc8\x4a\x55\x4b\xce\xb0\x19\x4b\xcc\x69\xc9\x75\xd8\xab\x39\xaf\x10\x58\x05\x59\xa7\xc3\x92\xe7\x71\xd8\x2e\x26\xcd\xa5\xfc\x9f\xc8\x8e\x73\x92\x25\x72\x15\x31\x6b\xc7\xa4\xfe\x88\xfe\x36\x65\xb0\xb1\x00\xd8\x04\x0d\x8c\x46\xea\x9a\x1d\xc5\x22\x75\xa3\x78\xf3\x06\x11\xbb\xc9\xb6\x8c\x88\xdd\xc8\x6a\x25\x23\x71\xcd\xba\x5d\x42\x71\xd3\xe6\x1a\x57\x53\xa6\x2f\x7a\x4a\x85\xb8\xca\xd2\xa8\x18\xaa\x2c\x95\x06\x47\xf2\xcb\x2b\x4b\x7c\x2c\x68\x31\xa1\xbb\x3c\xb0\x5f\x2d\x10\x26\x06\x1c\xd1\x63\x16\x8a\xfd\xfd\x3d\x7d\x35\x67\xc8\xc5\x28\xd7\x7a\x2d\x0f\x22\xd8\xc8\x6c\xfb\xde\x1e\xbb\x0f\x0b\x00\x9a\xa3\x31\x62\xad\xf1\xbc\xf5\x64\xa4\xb3\x73\x43\x3e\xb3\x11\x4a\xf2\x48\x28\x4f\x5d\x2a\x21\xdb\x60\x2c\xc9\x36\xd9\x32\x80\x41\x40\xf9\x86\x2e\x55\x81\x75\x07\x9d\xa1\x2c\xfe\x45\x81\xba\x6e\x46\xd8\x32\x62\xc8\x5a\xcf\x36\xdb\xab\x0d\x05\x88\xc5\xb2\xa0\x63\x9b\xf8\xae\x87\xba\x65\x2c\x71\xde\x60\x77\x00\x90\xa5\x80\x2c\xcd\xbf\x34\xa2\xf0\xa6\xfd\xe9\xb1\x60\xea\x91\xae\x80\x9e\x59\x8f\x6e\x05\xb3\x17\xfd\xb1\xbb\xa1\x0e\xc6\xbf\x38\x1d\x83\xe0\xa8\x4a\x0d\xa1\xd6\x0b\x4e\x79\x73\x7b\xba\x33\xf2\x94\x92\xc5\xd3\x37\xf2\xde\xe6\x84\x33\x1c\x43\x2f\x8e\xdb\xda\x4b\xbc\xa7\x8b\xb7\xb8\x2a\x66\x87\x7e\xfa\x5b\xbc\x7f\x10\x63\xe5\xad\x30\x05\x54\xa8\xe5\xfa\xbd\x4c\x7b\x66\xa2\xb5\xfa\x2a\xfc\x5a\xad\xd9\xaa\x66\xe7\xe6\x1c\x57\x8e\xd7\x84\xc5\xc3\x5d\x68\xad\xad\x51\x84\xb0\xfa\x1c\x71\x55\x51\x1f\x73\x28\x11\xe0\xfb\x08\x98\x5d\xcb\x18\x6c\xf3\xe5\x14\x66\xa9\x7a\xf1\xd4\x5c\xfb\xa3\x85\x70\x01\x63\x6e\xe7\x98\xaf\x01\x53\x30\x8a\xbb\xbf\x1e\x0a\xe1\x19\xa7\x5d\x0d\xb6\xe7\x14\xa6\xa9\x62\xb8\xa6\xe5\xe1\x98\x88\x4f\x4f\x58\x4c\x9c\x9f\x99\x06\x2b\x5a\x57\xbd\xad\xc1\x5e\xde\x8d\x45\x33\x18\x02\x73\xb7\x12\xad\xc0\xe3\x25\xee\x33\xb1\xfd\x51\x69\xf0\x79\x0b\x84\xfe\x29\x18\xc5\x1a\xa2\xc1\x31\x5b\x56\xf4\x29\x7a\x8f\x7c\x99\xab\x9d\x2a\x38\x43\x15\x16\x60\x69\x69\x95\x47\x9e\x6a\x66\xa8\x46\x4a\x74\xfa\x1a\x5f\x7c\xf2\x57\x44\x43\xe4\x42\x03\x65\x97\x9b\x73\x70\x18\x93\x03\x30\xbd\x9b\x91\x05\xa4\x2c\x74\xf1\x6e\x90\xd1\xa5\xf4\xf2\xf4\xc4\x0b\x50\xb9\xf6\xee\x84\xbc\xdb\x15\x47\x1c\x3e\x56\x9d\x91\x25\x1d\x61\xd4\x15\x93\x8c\x4a\x2a\x64\x50\x49\x15\xfe\x85\x49\x90\xf7\xc3\xac\x80\x3b\xdb\xed\xf5\x0d\xe2\x64\x04\x83\x82\xc9\x05\xcc\x96\x37\xbf\x82\x61\xe0\x17\x37\xfc\xdb\x67\x8d\x1c\x8e\xba\x03\xd4\x79\x01\x3b\xd6\x05\x91\x31\x29\x3d\x9f\x03\xf4\x07\x03\x24\x8d\x9d\x06\x12\xff\xf4\x49\xa2\xd5\x15\xf4\x95\x1c\x50\x71\x44\xcb\x8a\xd9\x59\x12\xac\x99\x57\x8a\x79\xff\x88\xeb\x36\xbd\x0f\xa0\xc7\xa5\x12\x81\x39\xb5\x81\xef\x8c\xf4\x98\x2a\xa1\xbc\x91\x1a\xd3\x2c\x8d\x85\xca\x32\x58\xe7\xec\x9e\x24\x81\x1e\x99\x6a\x6d\xdc\x6a\xad\xac\xa3\x42\xfe\xc9\xa5\xe0\xc7\x59\x8e\x93\xe5\x37\x90\x28\xc7\xea\x19\x1d\x07\x14\x3e\x5d\xa7\x12\x7e\x51\xa4\x0e\xb3\x6d\xf4\x1e\x1c\x1c\x59\x61\xd3\x30\xff\x42\xd5\x76\xaa\x88\xde\x86\x6e\x89\x52\x27\xe2\xe3\x59\xae\x53\xb6\xc9\x9f\xfc\xcc\x08\x1a\x05\x76\x16\xd1\xb0\x48\x8e\x80\x9c\xc5\xd3\x55\x13\xa2\xd4\x9a\x98\x80\x6b\x88\x92\x96\xa3\x0a\x0b\x9f\x97\x9b\x51\xed\x71\x41\x2c\x15\xdc\x54\x4a\x04\x13\xb6\x1a\x7d\xd2\x4f\x9a\xc6\xb5\x62\xc6\x8d\x07\x2a\xf6\xe2\xf4\xf4\x9e\xf2\x9d\x6f\x06\xfa\x9e\x80\x37\x9e\x3f\x32\xd3\x14\x61\x74\x1f\x47\x3a\xee\x9f\x93\x3c\x41\xf3\x2f\xa1\x4b\x7f\x6c\xb5\xf3\x50\x96\x27\x4c\x62\x8a\x1d\x84\x11\x68\x23\xfe\xec\xdd\xf6\xda\x26\x77\x05\x27\x07\x67\xc8\x9d\xc3\x45\x3d\x7a\xb5\xb9\x33\xd2\xd9\xde\x55\x31\x97\x54\x1f\xf5\xf4\x45\xd7\xd5\x6c\x81\x8e\x62\xa5\x20\x43\xaa\x3a\x31\xc2\xef\x47\x21\x7d\x62\xf3\xd2\xfa\x44\xeb\x97\xab\x24\xb9\xa5\xe7\xba\x33\x50\xec\xef\x4e\x77\x67\xb4\xf1\x9a\x90\xcf\xf0\x09\x42\xaa\xf3\x5b\xed\x9e\x61\x8e\x37\xe9\x73\x6c\x35\xca\x2b\xa7\x3f\xa0\xa9\x8b\xbb\xa4\x7c\x7b\x8d\x01\xb2\xcb\x58\xa3\xc0\x61\xb6\x0c\x03\xba\xbb\x7c\x23\xd6\x4b\xc0\xd3\x7f\x8f\xf1\xd2\xb4\x61\xa5\xa8\xf7\x63\x59\xc6\xfe\x14\xb1\x78\x71\xea\x35\xa9\x12\xea\x0e\xe5\xe4\x47\x74\x87\x49\x33\x46\xc6\x4c\x6f\x99\x14\xdb\xd2\xb2\x26\x74\x83\x7d\x7d\xfa\x04\x9d\xa4\x93\x1c\x03\x7e\x6b\xfa\x84\x2e\xa6\x82\xd4\x3c\x0a\xdd\xc6\x88\xe4\x44\xee\x75\xc6\xbb\x48\x32\x85\x34\x68\x15\xfc\x2b\xf0\x7f\x67\x46\x85\x34\x45\x3b\x06\xf3\x52\x62\x78\x51\xe2\x5f\xfd\xd1\x10\x8b\x59\xec\x97\x27\xf3\x1a\x1b\x61\x7a\xd3\xad\x29\x04\x54\xab\x25\x5e\x0e\x44\x50\xf5\x6a\xa9\xfc\x54\x4c\x8f\xf9\x1a\xcd\xab\x64\x9b\x42\x99\xa3\x85\x3a\xf6\x1a\x90\xfd\xcc\x36\x27\x43\x30\x60\xd8\x5e\x96\xe1\xef\x89\x16\xb8\x34\xda\x04\x77\x16\x02\xb1\x7d\xc9\x70\x5a\x57\x05\x62\xf7\x08\x96\x1e\x03\xd9\x8d\x37\x0d\x1b\x9d\xb7\x31\x06\xfe\xea\x66\xfb\xf2\x6c\x7b\xfb\x61\x73\x67\x2f\x2c\x65\xd5\x7c\xc6\xcc\x03\x1c\x16\xc2\xcd\x7e\x1a\x5f\x6c\xc3\x14\xb2\xfa\x7d\x14\x29\x93\x5b\x4e\xab\xcd\x88\x67\xc2\x4c\xad\x74\xdd\x91\xb7\x2e\x56\x40\x96\x35\x7c\x3c\x89\x88\x22\x91\xdf\x58\x33\xf8\xa6\x06\xa7\x73\xe1\xfa\x94\xb3\x15\x2f\xc9\x1e\xcc\x8a\x2a\x29\x51\xd5\x75\xc6\x05\xe6\xe0\xa2\x25\xc8\x7f\x48\xea\x9d\x4c\xfb\xf1\x08\xda\x3c\x88\xfa\xa7\x94\x6b\xfe\xd6\xb8\x71\x10\x6b\xc8\x80\x27\xa1\xa3\x17\xa7\x25\x76\x1a\xa8\xe4\xe6\xa3\x30\x17\xae\x91\xff\x86\x9a\x25\x3e\x54\xf5\xeb\x3f\x79\x88\x49\x5c\x23\xfd\x9a\x00\x6f\xd0\xf1\xdf\x46\x46\x25\x9e\xfb\xa2\x44\x13\xbf\x6e\x04\xf2\xcc\xa5\x50\x5e\xce\x68\x1a\x19\x81\x09\xf0\x5b\x46\x80\x79\xe8\x59\xbd\x0b\x43\xe1\x77\xc7\xe8\xdd\x38\x93\xf1\xc1\xf0\x06\x6a\x24\x6d\x64\x2a\x76\x3b\xbc\x9b\x23\x41\xdc\x0c\x14\xba\xd4\x10\x88\xba\x62\xb8\x90\x5d\x0f\x12\xb7\x7e\x98\xd2\x5a\x26\x30\x73\xf0\xb1\xb6\x98\x23\x30\xb5\x01\x44\x3e\x81\x28\xcd\xa8\x5b\xf4\x85\x29\x91\xc5\x1c\x54\xa2\xf4\x81\x87\xa6\x79\x36\x9e\x99\x1c\x22\x2e\xeb\xe2\xc4\x93\x32\x41\x95\xc2\x87\x98\x38\x33\xbf\x4e\x04\xb7\x51\x11\x43\xec\x8f\x3a\xf3\xbc\x1b\x29\x3d\x1b\xed\xa9\x00\x2b\x5e\xa2\x08\xb5\x4e\xc2\x9a\x59\x8a\x52\xd3\xf7\x50\x3e\x3b\xbd\x91\xe6\x2d\x74\x30\x01\x37\x07\x89\xf9\x4f\x90\x43\x3f\xeb\xdf\xd9\xf4\xcf\xef\xa0\xd1\x33\x9e\x69\x3a\x9e\x63\x2a\x31\x50\xad\x8b\x22\xbd\x6f\x64\x72\x21\x8b\x61\x9c\xf8\x04\xc3\xa8\x71\x91\xd3\x5b\xc1\x18\xa2\xe7\x4b\xe3\x00\x13\x11\x53\x32\x17\xbc\x89\x4d\x09\x38\x61\x4e\xab\x1e\xa3\x1c\xf8\x9e\xcd\xec\x03\x68\xc5\x48\x94\x69\x92\x84\xff\x7b\x23\x33\x95\x2e\x4c\x82\x22\x49\x7f\xba\x50\x8c\xd7\xf4\x8f\xdc\xf9\xe3\xab\x66\xb7\x7c\x28\xde\x68\x41\x78\x84\x49\x4a\xc2\x0f\x17\x6b\x62\x42\x29\xc3\x49\x99\xac\x6c\xf0\xc6\x28\xa3\xb2\x0f\x6f\xb4\x88\x3f\xb1\x53\x61\xbc\xa1\x6d\x9e\x8c\x28\xb4\xb8\x21\x90\xe3\x18\x5f\x7c\xc9\xd6\x2a\x20\xba\xa1\x00\x8b\xea\x01\x95\x03\xde\xbf\x72\xb9\xbd\x76\x4f\xda\x35\xa8\x1d\xd7\x36\x12\xf7\xab\xcc\xe4\x46\xc2\x1a\xf5\xf0\x0c\x2d\xf8\x77\xdd\x9f\xd4\x47\x33\x97\x7a\x92\x5c\x65\x5a\x30\xf9\x5a\xc5\x51\xab\xb2\x94\x0c\xe1\xaa\x08\xb3\x0c\x60\x80\xad\x62\xf2\x8d\xbc\xea\x0a\x84\x9f\xa3\x8b\xbc\x43\xa7\x8a\xc4\x33\x27\xc3\xcf\xdb\x05\xb3\x73\xad\x3b\xdb\xaa\xac\xec\x54\xb0\xcb\xf0\xe9\x59\x98\x83\x9a\x00\x39\xd7\x64\xe9\x39\xfe\x3f\xe0\x9f\x92\xa4\x90\x3e\x7c\x91\xc3\xdf\x9e\xe3\x01\x3b\x72\x12\xff\xfd\xbd\x75\xb4\x40\x8a\x53\xb5\x1a\xa4\x96\x84\x65\x07\x56\x4b\x1a\x27\x9d\xa5\x56\x71\x6a\x38\xed\xb4\xe5\x86\x57\x80\x4e\xe7\x15\xb6\x36\x0c\x3b\x58\x26\x55\x68\x5d\x4d\x05\x5f\xca\xbd\xb7\xd8\x9a\x1a\x09\xc6\xa6\x52\x7b\xce\xa2\x8f\x02\x3f\x4f\x10\x3e\xe3\x4d\xc3\x00\xce\x05\x5f\x91\x2a\xe0\x2b\x52\xf8\x9a\x90\x7a\xe5\x6f\x3a\xfc\x8a\xea\x06\xda\xa0\xf8\x57\xce\xe9\x98\xf8\x2a\xc8\x91\xf6\x95\x13\xa5\xc4\xcb\xda\xbf\x4c\x46\x3e\x05\x8f\x6e\xe1\x73\x07\x67\xb6\xa3\x5f\x6f\x5f\xe7\x33\xc9\x06\x9f\x44\x07\xe4\xd1\x9b\x68\x87\x62\x0a\x13\xd3\x89\x26\x58\x8c\x96\xf1\xab\x87\xa9\x03\xe5\xa4\x42\x89\x1a\x86\x06\x34\x51\xc6\xef\x78\xd2\x63\xac\x91\x02\x83\xa5\x4f\xf4\xa2\xdc\x8a\xe3\x05\xac\x60\x4a\x80\x53\x23\xcd\x9d\x1d\x7f\x6a\x29\xb1\x28\x74\x9e\x13\xed\x70\xc6\xf3\xd4\x1a\x9d\xa5\x1f\x95\x21\x37\x05\x33\x45\xef\xca\x37\xa0\x7a\xe7\x3d\x05\x8c\x1f\x3f\xc4\xd0\x03\x58\xc8\x74\x90\x5a\xbd\x22\xaf\x4d\x9a\xe5\xe8\xb6\x8f\x01\x23\x94\x9e\xd2\xa1\xd4\x51\x70\x45\x23\xd3\xb7\xfc\x80\x73\x52\x9a\x7b\x77\x70\xcd\xf0\x36\x65\x2f\xb3\x68\x0b\x62\xb7\xe7\xfb\xdf\xc8\xb3\xaa\x1b\x94\x7b\xb9\x58\x89\xbf\xa8\xa5\x6c\x26\xba\x59\xb6\xe3\xea\x14\x7d\x6f\xd0\x42\x72\x68\xba\x0d\x98\xd6\xeb\x07\x45\x2a\x3c\x4c\xd4\x52\x3c\x6d\x47\x87\x23\x37\xce\xfa\x95\xe0\xc1\xfc\xeb\x2a\xc6\x46\x61\x56\x3d\x60\x08\xf8\x9a\xea\x40\x5e\xbd\x0a\xa9\x9e\x31\x67\x26\xc1\xbf\x71\xd6\x5f\xde\x47\xb7\xb6\xf9\xe7\xdd\xea\xa4\xf6\x8a\x57\x8e\x51\x37\xcc\xea\x48\x99\x99\x63\x23\xa8\xd9\xee\x70\x25\x9f\xa5\xc7\x40\xdd\x41\xb2\x5f\xca\xab\x73\x9c\x7c\xf8\xad\x1e\xf8\xfc\x0e\x67\xa4\x29\xfe\xd5\x26\x33\x1f\xea\xbd\xe4\x99\xe6\x46\x7b\xfd\x9e\x7f\x01\x4e\xc5\x55\x79\x83\x55\xbd\xb7\xce\xe6\xaf\xe6\xcb\x15\x79\xad\x40\x84\xf8\x89\x83\xfb\x8e\xcf\x87\x88\xa2\x39\x9e\xd4\x55\x34\xda\x31\x2c\xe8\xd1\x89\xc4\x16\xc8\xfa\x86\x00\xad\x4e\xe3\x3c\x51\x8d\x06\xbf\x9f\xa0\xdf\x16\xc0\xd8\x5c\x9d\xa8\x9e\x2e\x3e\x35\xe3\x6e\x33\x30\x7b\x0e\x0d\x82\x6a\xed\x7f\xc3\x50\x46\x63\x37\x1e\x3f\xd1\x5d\xaf\xa2\x8b\x6c\x46\x52\x9e\xd1\x59\x0f\x96\xce\x74\x16\x2f\x45\xce\x6d\xbd\x86\xb6\xc3\xec\x80\x53\x73\xea\x20\x50\xd8\x62\x2e\x84\x5d\x91\x0f\x74\x67\x75\xc6\x67\xd3\x6a\x81\xc8\x00\x8c\x51\xb6\x4e\x49\x86\x44\xb8\x18\xbb\x0f\x38\x2c\x59\x7a\xa3\xb5\xe8\x9a\x56\x75\x50\xb9\x99\x67\x1d\x38\xc7\xc6\xe3\x8e\x9f\xc3\x85\x63\x0f\x2f\x0c\x24\x0f\xab\x4a\x25\xa7\xcf\xcb\xc1\x90\x0a\x19\xd5\xcb\x7c\xb2\x97\xaa\x43\x49\xfa\xb2\x25\x58\xd6\x7a\x35\x8b\x6b\x40\x1c\x7d\x67\xfc\x3a\x67\x4d\x42\xcb\xe2\xc2\x56\x4a\xeb\x6a\x48\x52\x87\xfb\xe0\x41\x75\xad\x83\xa1\xfb\x11\xf8\xce\xf8\x54\x30\x9f\xd2\x87\x5a\xb2\x41\x3b\x57\x8d\x2c\x98\xf5\x19\x7c\xb1\x0e\x58\x36\xaa\x11\x5f\x80\x48\xa5\x94\x55\x30\x2b\x15\x0b\x20\xaa\x19\x15\x5a\x6b\xdb\x9d\xc5\x8b\x07\x55\x20\xaf\x00\xb1\x4b\xe9\x77\x97\xcd\x81\x76\xab\x29\xb6\x9b\x02\x7a\xcc\xf2\x4a\xbc\xae\xa2\xd3\xf7\x2f\x76\xde\x73\x65\x7c\x1b\x33\xed\xcd\x5b\x49\x7c\xeb\x73\x1c\x0f\x5f\x0b\xaf\x22\xe3\x45\xae\x5b\x94\xd5\x8a\xfc\x05\xad\x5e\xfc\x64\xa5\x2e\x1d\x43\xc7\xd7\xce\x44\x35\xa9\x9d\x82\x71\x98\xba\x10\xba\xab\xd5\xf3\x5e\x1d\x0e\xad\xf4\xf9\x65\x2f\x26\x3c\xc4\xb8\xf1\xfb\x53\x07\xec\x59\xa2\x76\x7a\xe7\xc9\xd6\x22\x8d\xe4\x73\xf9\x41\x3b\x65\x0c\xc7\xf1\xfb\x1b\x0c\x22\x51\xbf\xcb\x28\x92\xed\x45\x0e\x14\x3d\xc6\x82\x2a\xf8\xbe\x7a\xfe\x94\xed\x61\xa0\xcc\x60\x96\xec\xd5\xe9\x0d\xfa\x13\x8b\xc1\x0d\x90\xd7\x1a\xfe\xd6\x74\xfb\xd6\x6a\xb2\x45\xb8\x8b\xca\xb6\x97\x23\x2f\x84\xf4\x16\xe8\x32\x82\x9b\xa8\x73\xed\x9c\x3f\x76\x56\x98\xe6\x44\x3b\x0e\x46\xa6\x66\x85\x25\x97\xd3\x8b\xcc\x8d\x41\x26\x50\x0c\x34\x5b\x66\x8e\x3d\xd9\x14\xe6\x9a\xe1\x3b\x32\x3f\x0c\xbc\x0c\xa6\x9d\x41\xff\x82\xc8\x38\x88\x1c\xd0\x05\x19\x5b\x68\x92\x47\xa0\x32\xd1\xdb\xf6\x8b\xeb\x9d\x6b\xb7\x39\x7b\xba\x59\x3f\x49\x7b\x99\x1e\xaa\x7a\x91\xbe\x0c\x6a\xdd\xda\xda\x4b\xa5\xa3\x50\xaf\x8a\xe1\xb9\x91\x8a\xc1\xd5\x87\xfe\xe8\x72\xb7\x8a\x6a\x9c\x5c\x2f\x65\x88\x46\xed\xd8\x7e\x09\x89\x4b\x8e\x51\x08\x9d\xc8\x99\xec\x3c\x2f\xb9\xca\x01\xb7\xed\x52\x44\xf2\x8c\xc8\xa4\x3d\xc9\x77\xa8\xc5\xc8\xa8\x5e\x41\x62\xa8\xd8\xb3\xa2\xfc\x55\xf1\x74\xf4\x04\x95\xf2\xe4\x93\xa2\x78\x26\x16\xfe\x2c\x1c\x13\x7b\xf2\xe0\x90\xf9\xb3\x78\x1c\xaa\x01\xc8\xdc\xb9\x4c\x9e\xb9\x95\x37\x55\x51\x7e\xed\x1f\xce\xf4\xc2\x47\x8b\xdf\x55\x95\x20\x9f\xaf\xb0\x40\x84\x62\xeb\xa4\x63\xa1\x3f\xa9\x39\x47\x75\xb5\xe3\x8b\x2f\x32\x5f\xb6\xde\x69\xa3\x90\x0c\x22\x6e\x14\xe2\x26\x22\x3e\x20\x32\x45\xe2\xaf\xd9\x1f\xe8\xa3\x88\x50\x6e\xf5\xd2\x57\x05\x48\xb9\x4c\x33\x9c\xbd\x34\x52\xb9\xe4\x0c\x14\x45\x9e\x88\x35\xf0\x05\x96\x58\x5f\x91\x3f\x2c\x57\x88\xbf\x9e\xfb\x05\xea\xc9\xad\xa2\xc7\x39\x25\xd1\x56\x56\xc3\x77\x3a\x2a\x56\xbd\x22\xd9\x12\xf4\xd8\xbb\xbc\xe7\xa4\xdf\x31\xef\xf2\x98\x53\x38\xf1\xd0\x8c\xc4\x9e\x02\x46\x2d\x05\x56\x74\xb3\x21\x36\x84\x2f\xa4\xd3\x2b\xde\x51\xcc\x40\x48\x42\x8e\x10\x8a\xad\xb9\x51\x8d\xac\x5e\x28\xb4\xbf\xa2\x27\x37\xb1\x68\x46\xfe\x6e\xaa\xc4\x08\x63\x04\x74\x6a\x6d\x58\xfa\xe4\x95\xb1\x33\x65\x06\xa9\x56\x3d\x3d\x46\x8d\x8d\x89\xa7\xf5\xfe\xff\xbe\x1f\x68\x8e\x42\xbd\x22\x68\x0e\xe2\xcd\x9f\x10\x84\xdb\x0a\x28\x73\xf7\x87\x04\x8d\x55\x31\x7d\xe5\x3e\x92\xb3\xf3\xba\x38\x0c\x7e\x67\xad\x87\xe2\x77\x22\x94\xc8\xd0\x73\x29\x4a\x44\x90\xa6\xc5\x3b\x74\x06\x71\x7b\xd8\xa9\x42\x34\x90\x48\x32\xe8\xab\x52\xce\xcb\x1b\x97\x4c\xfd\x88\xba\x10\x8d\x89\xf6\x69\x2a\xd0\x5a\x0b\xd3\xd0\xad\x82\x4d\x24\x86\xe2\xcf\x5d\x92\xb8\xc7\xcd\x7d\x3a\xe9\xab\xdb\x43\x49\x70\x6d\xf5\x3c\x1f\x8d\x87\x0b\x30\xf5\xad\x2b\xb9\x6f\x8d\xcf\x91\xdc\xab\x32\x7c\xa4\x09\x42\x19\x22\xc3\x8f\xd1\x86\x2f\xa9\xcc\x3a\x81\x65\xaa\x12\x66\x65\xf8\xa8\x50\xa0\xf7\xac\x14\xf1\x91\x92\xe4\x2b\xca\x5c\x40\xde\xc1\x5c\xa0\xbc\x83\xb9\x80\x5f\x3a\x23\x9a\x0e\xcc\x1d\x3d\x13\xc3\x05\xa9\xfe\x32\x42\xab\x8d\xb1\x53\xc3\xb1\x31\x9f\x84\x6f\x11\xa0\x34\xa2\xc7\xe4\x8e\x81\x62\x7e\xc2\xfc\x71\xd0\x71\x31\x17\xdd\x4e\xb0\xb6\xa2\xdf\x53\xa2\x82\x2a\xa6\x11\xe4\x82\xd6\xc3\x27\xfe\xec\x4f\xaa\x80\x34\x21\x05\xb8\x88\x48\xeb\xf1\xc9\x57\x91\xef\xe1\x4b\x62\x54\xaa\x9e\x0b\x4b\x81\x50\x44\xf7\xcf\xb9\x1a\xa6\x35\xfc\x3d\x47\x98\xaa\x52\xce\xb0\xe2\xd4\xe8\x0d\x2a\xab\x5a\x42\x2a\x8c\x69\xb8\x29\xe0\x09\x2e\x2c\x4a\x2c\x92\xb3\x06\x8b\x03\x83\x14\x5f\x09\x74\x08\x13\xc6\x84\xaf\xd6\xc9\xf2\xe2\xad\x4d\x39\x97\xf0\xee\xb2\x7a\x29\x0b\xad\xf5\x31\xe5\x5f\x32\x20\x60\x36\x54\x1e\x4e\x26\xe7\x79\xb5\x62\x5f\x1d\xed\xad\x84\xb7\xe8\xff\x34\xe7\x6f\x3e\x0a\x46\xee\x27\x41\xdc\x3a\xc7\x5b\xf8\xf7\x2f\x05\x1b\xb3\xdd\xa0\xf8\x79\x70\xf5\xbe\x14\xbe\xf4\x14\x01\xe4\x4c\x4f\xe2\xd9\x87\xcf\xeb\x52\x7e\x4a\x7f\x49\xa3\x0a\x1b\x20\x04\x8c\x0f\x5e\x1a\x58\x19\xef\x82\xac\x9b\xcb\x7c\xe9\x5a\x1f\x15\xac\xde\x8f\x54\x81\x5b\xf6\xaa\x9c\x35\xbd\xf7\xcb\x93\x27\xac\x03\xb0\x09\x21\x09\x2f\x08\x30\x0d\x39\x10\x82\x10\xc4\x80\x88\x62\x89\xf8\xf8\x88\x73\x3a\xd0\x38\xfe\x0d\xdb\x47\xbf\xbb\x80\x75\xbf\x89\x71\xcf\x81\xd3\x87\xc5\xc4\x2c\xfa\x95\x61\x4b\x6a\xf4\x58\x5f\xd6\x4b\x5e\xb1\x5a\xb2\xd5\x17\xcb\x1d\x74\xea\xa5\x02\x86\xd7\xba\x76\x35\x57\x23\x06\xa4\x6f\x98\xd3\xd0\x58\x6f\xbd\xfd\x56\x4f\xf4\x54\x66\xbd\x12\x12\x0d\x3c\x95\xd6\xc9\x2f\x7a\x2d\x7e\x39\x4b\xcf\xf4\x54\xb1\x8a\x10\xf2\x26\x6f\xa6\x17\x7e\x13\x18\x3f\x69\xaf\x4f\x0b\x5a\xd9\xec\xda\xe9\x62\x5e\x30\xe6\xc4\x47\x5f\x5a\xa2\xa1\x88\x90\x08\xe9\x93\x12\xe6\x28\x0e\x2c\x23\x91\x8f\x64\x76\xe0\xbb\x11\x35\x2e\x53\x0b\x2a\x69\x9e\x50\x97\x62\x15\x06\x4a\x99\x37\xd8\xc8\xa0\xdb\x44\x46\xea\x53\xf8\x27\xbe\xa9\xbd\x6c\x4b\xd5\x8b\x6d\x72\x13\xa6\x91\x43\x5c\x0f\x23\x94\x29\xc1\xe0\x45\x9b\x8e\xf2\x79\xb9\x42\x21\xc9\xe5\x99\x14\x2e\xbc\xeb\xa2\xcd\xbc\xa9\x1b\x91\xd9\x56\x46\xb4\x44\x07\x4f\x56\xfc\x8d\x24\xd2\x92\x88\x4b\xb4\x42\x14\x30\xcb\x74\x96\xac\xbf\xb1\x86\xc3\x17\xf5\x92\x15\xc8\x08\x48\x8d\xc7\xd6\x07\xbe\x0c\x38\x92\x58\x0d\x30\x51\x6e\xf4\xb7\x01\x49\xbb\xc5\x6b\x1a\x8d\x47\x98\x83\x68\xbb\xaf\xe7\x11\xd8\x52\xa5\x94\x65\xca\x6e\xa5\xde\x07\x60\x0d\x9e\x86\xca\x55\xab\xa2\x7c\x67\xd7\x1f\xc1\x55\xa3\xf4\xb4\xad\xad\x57\xe2\x11\x6b\x14\x52\x34\x1b\x15\x72\x14\x99\x14\xc9\x4d\x23\x6d\xca\x7d\x23\x65\x4e\x7f\x3f\x26\x82\xc2\xb4\x83\xe4\x93\xd2\x7a\x71\x35\x58\xbd\x45\x51\x6e\xaa\x76\xd1\xa5\x33\x82\x7a\x3a\xd2\x77\x0d\x48\x4e\xa1\xf6\x0b\x0c\xe0\x0c\x2e\xdf\xf5\x5f\x5d\xd6\xd0\xb5\xba\x3c\x88\xcc\x3c\x9e\x62\x2d\x8d\x52\xea\x49\xa4\xba\x68\x4f\xc4\xd6\xd4\x1c\xc7\xe3\x57\x11\x44\x86\xba\xf9\x92\x73\xc3\x87\x4b\x89\xf6\xae\x7c\x96\xf3\xab\x6b\xe8\xce\xf5\xe5\x60\x4c\xfc\xed\x93\x75\x60\xd4\xf1\x0a\x3c\xf0\x6e\x15\xdc\x7c\xad\x58\x95\xe0\xbf\xf6\xd8\xcf\xb0\xd2\x8a\x85\xd0\x83\xc5\x74\x6f\x82\x77\x3c\xe3\xd9\x19\x7f\xee\x02\xfa\xb1\xc3\x55\x40\x07\x39\x5c\xc3\x3e\xbd\xf3\xca\x30\x17\xdb\x79\x80\x30\x02\x0d\xb1\x3c\xda\x1d\x94\xa7\xf0\x06\x61\x21\x63\x8d\xaa\x1c\x43\x1c\x28\xa7\x11\x86\x56\xc1\xe8\xb6\x40\xb9\xeb\x96\x78\x67\x7a\x7b\xbf\xb0\xe2\x18\x10\x16\x1b\xcf\xd2\xf8\x67\xc7\x40\x08\xb1\x8e\x60\xaa\x52\xcc\xb8\x76\xc4\x52\x81\x3c\x91\x79\xf3\x5a\xab\x8e\xf9\x39\x8b\x78\xb9\x6a\xf5\x1f\x31\x2d\xd7\x11\xf7\x2f\xa5\xa2\x67\xbf\x7f\x84\xc2\xac\x8f\x78\xc5\x42\xdf\x91\x7f\x8a\x9c\xa3\x22\x85\x0d\x18\x07\x29\xb6\x96\x5a\x94\x8e\x3c\x34\x99\x61\xf2\x6d\x3e\x29\xc9\x3e\x83\x49\x4c\x57\x17\x81\xe0\x39\xd5\xe3\xa0\xe4\x70\x1c\x18\xae\x52\x33\xc4\xf3\x2c\x70\x15\x9e\x53\x91\xb8\x15\xae\x13\x4c\x4f\x74\x1a\x0b\xc6\xb8\x38\xbb\xaa\xca\xb6\x4a\x0e\xfe\xfe\xee\x0b\xbf\xf1\x9c\x2d\x88\x1c\x73\xa3\xe1\xd5\x83\xbc\xa4\x5e\x53\x6f\xe8\x52\x9e\xaf\xd6\x8b\x35\xd4\x01\xab\x97\x76\x19\x9c\x26\x2b\xda\x03\x9e\x9f\xf9\xe6\x69\x62\x96\x14\x15\x55\xfc\xab\xcd\xc9\xf5\x32\x9f\xf0\x67\xeb\xcb\x62\xa5\x58\xae\x97\xad\xff\x6e\x0f\x5b\xbd\xf8\xf6\xcd\x71\x2c\x4e\x8e\xa9\x0a\xd2\x40\x2e\xf3\x29\xfd\xb4\x8e\xf3\xcf\x90\x18\x71\x88\x23\xc6\x76\x64\x4b\x64\xbd\x62\x09\x59\xcc\xae\xf4\x60\x81\xbc\x6f\xcf\x8f\x02\xc8\xfa\xc0\xfd\x13\x72\xa4\x46\xed\xce\x38\x6e\x30\xb3\xaf\xdd\x6a\xab\x08\x67\xc1\x8c\xd0\xf2\x1a\xc3\x8e\xbf\xd4\xed\x3a\xb4\x6b\x57\x06\x90\x6a\xa0\xe7\xcd\xe5\xce\xc2\x0b\x7a\x3f\x4a\xad\x10\x87\x20\x92\x32\x0a\x88\x9e\x04\x08\xb7\x9f\x8f\x81\x28\x10\x22\x40\x8c\x13\xf1\x5f\xed\xb5\x16\xee\x12\x2f\xa2\x9e\xbe\x31\xf6\x25\x24\xfd\xb2\x33\xd1\x31\x09\x88\x96\x4b\xe8\xea\x67\xdc\x8e\xc3\xa8\xed\x83\x23\xe3\x64\x5a\xf7\x46\x91\xd8\x7f\xf6\xe9\x17\x7f\xb2\xf4\x4b\xd0\x11\x70\x96\x39\x39\x64\x7b\x64\x2c\x46\x17\x04\x86\x08\x0b\x8f\x2b\x95\xbc\x08\x18\x91\x90\xb0\x29\xb1\xcd\xaa\x7b\x84\xe8\xa0\xcc\xd1\xb4\xde\xc6\x66\xca\x70\x07\x4e\x94\xf1\x5d\x9a\x62\x9d\x71\xac\x11\x39\x11\x05\xc0\x3a\x18\x92\x80\x8c\xa2\x39\x8c\x38\xef\x08\x94\x7e\x4a\x89\xc1\xf8\x11\xa5\x64\x5f\x15\xd5\x0c\x3d\x3a\xe7\xaf\x5f\x6e\x3d\xba\xd7\xdc\x7a\x6a\xd0\x1d\x76\x33\x92\x61\xf5\xf2\xcf\xf8\xc0\x14\x54\xb5\xe6\x9c\x2e\x16\xe8\x9d\x29\x86\xe3\xdc\x06\xf2\x68\x06\x81\x2a\x10\x4d\xc9\x14\x44\x7c\xae\x80\xd3\x45\xe1\x62\x8f\xd3\xdf\x56\x6c\x17\xe5\x48\xe2\xd9\x61\x60\x59\x56\xf6\xd2\xb3\xb8\x92\x86\x1e\xc8\xeb\x25\x49\x51\x08\x47\x57\x47\x4d\xa7\x54\xec\x67\xeb\x93\x9e\x0f\x3e\x1e\x74\x61\x2f\x06\x3e\xe8\x79\x55\x57\xa2\xc8\xf9\x72\xa0\xe7\x91\xe2\x53\x09\x5b\x93\xf9\xa4\x36\x56\x2d\x92\x31\x41\x2d\x0f\x3f\xe7\x1d\x5b\x1b\x05\x23\x97\x82\x00\xc5\xd0\x49\x1d\x98\x01\x79\xa6\x5c\x1d\x1a\xfd\x6c\x79\x8c\x8c\x22\xab\xa0\xf6\xe4\xf2\xdd\xf6\x83\xe9\x58\xa7\x58\x4e\x37\x25\x97\xaa\xbb\x52\x3b\x17\xf5\xe4\x6b\x98\x0e\x16\xfe\xb1\xd8\xf9\x22\x2c\x91\x87\x26\x77\x0c\x31\x44\x15\xb9\x80\x7c\x85\x7a\x49\x17\x3f\x9e\x08\xce\x5f\x34\x6a\x4a\x8e\x7a\xd4\xa4\x47\x4c\xac\x0a\xc0\xcc\x6f\xdf\x15\xc8\xfe\xc1\xce\xd7\x43\xc3\x63\x44\xb3\x1e\x36\xe4\xb0\x81\x98\x4a\x9b\x5b\xeb\x9d\x91\xa7\xad\xd5\xa9\x10\x40\x42\xc4\xf0\xa3\xce\xdf\xa8\x26\x01\xcb\xe9\xd1\x15\x75\x7f\xea\xa0\xbe\x49\xf1\x12\x19\xa1\x76\xdb\x52\x9e\x4f\xfc\x13\x70\x05\x48\x53\x9a\x27\x97\x02\x67\xa6\x89\x8a\x14\xc7\x64\x16\x65\xdf\xcd\x28\x17\x39\xf5\x39\x92\x79\x52\x7d\x74\xaa\x19\x45\x3f\x43\x38\x92\x2b\x74\x3c\x88\x31\x88\x94\x4c\x80\xdf\xe2\x95\xe7\xa0\x83\x5c\xf2\xe5\xb7\xe6\xf6\x39\x1e\x44\x34\x42\xf0\xa8\x3c\x69\x50\xb3\x2b\x3a\x1d\x1c\xff\x5d\x30\xd3\x3f\x45\xd2\x14\xbf\x1b\xa6\x23\xc6\x24\xc5\xdd\xdf\x49\xd0\x29\xea\xd1\x03\x90\xfd\x16\xb7\xcf\x99\xfd\xbf\xe3\xd6\xf2\xef\x1c\x8d\x24\xbb\xe7\x30\x4a\x7a\xb7\x15\x63\x31\x31\x6e\x33\x9a\xff\x39\xda\x03\xcf\x93\xf3\xfb\x7f\x1f\xce\x94\xf4\x7d\x91\x9e\x58\x13\xc8\x9d\x61\xc2\xe8\x30\xdb\xbd\xb4\x11\x4d\x57\xad\xac\x14\x91\xb4\xaf\x66\x7b\x92\x85\x3a\xa5\xb9\xc8\x9b\x03\xdf\xb3\x5b\xd8\x6f\x1d\x53\x4a\xe6\xdb\xef\x25\x01\xf2\x6f\x1f\x91\xce\x88\xc5\xe8\xa0\xd2\x09\xaa\xfd\xd4\x9b\xa9\xf3\x0b\xa6\xa3\x08\x65\x9f\xf0\x72\x03\xe1\x56\xb2\x97\xd8\x6b\x37\xf4\xe0\x1d\x94\x64\xe7\xef\xe9\x24\xd5\x92\xa0\xe9\x3d\x0e\x8b\xa6\x94\x36\x2a\x11\x0e\x27\x5f\x27\x54\xc7\xa4\xc1\x80\xe8\xb9\x01\x27\x83\xb1\xc0\x13\xc0\x41\xd3\xfb\x72\x18\x0b\xc1\xc1\xc1\x78\x8a\x86\x32\xad\xd9\x7d\x7a\xd1\xf9\x5d\x37\xf3\xae\xd5\xba\x7f\xf1\xa8\x0b\x7f\x97\xe1\x6f\x34\x93\xce\x5d\xa1\x9f\x83\xf8\x93\xde\x33\xa4\x9f\x05\xfc\x79\x67\x8d\xfe\x1e\xc2\xbf\x2f\xac\x72\x2d\x20\xa9\xef\x5a\xc1\x72\x83\x7e\x0d\x63\xc9\xcb\x5f\x8e\x52\x92\x22\x20\xcb\x05\x4a\xc8\x2f\x3d\x94\x41\x80\xf7\x24\x45\xbf\xee\x67\xd0\xa9\xd7\xf8\x93\xee\xab\x90\x1b\xe6\x2f\xdc\xdd\x90\x6d\x9f\xe2\xdf\xdc\x25\xf4\xe8\x0d\xf2\xe3\x1d\xdc\x2b\x66\x84\x65\x00\xee\xb9\x96\x1b\xca\xaa\xde\xa1\x6b\xfe\xa0\x3a\xe7\x9e\x69\xb5\x0a\x35\xa7\x8a\xc9\x34\xbf\x0b\x9f\x7e\x54\xef\x65\x05\x53\x8b\xc1\xb5\x9f\x59\x04\xc5\xd7\x3c\x39\x1e\xa8\xb1\xe8\x2f\x3e\x0e\x2e\x4d\x02\x25\xf7\xcf\xfc\x4c\x61\x99\x94\xcb\xb6\x58\xa9\xd6\x55\x3a\x9a\x33\xab\xcd\x2d\xb4\xa4\x30\x0c\xa6\x14\xe0\x57\x74\x54\x32\x7c\x79\x2a\x0c\x76\x2a\xdb\x87\x17\x19\x77\x71\xe7\x3e\x4c\x1f\x44\xb7\x7f\xfd\x57\x4a\x3d\x0e\xdc\xfd\xbf\xfd\x9b\xf5\xe5\xc7\x20\xb1\x01\x73\xdb\x19\x3d\x8f\x78\x85\xef\xba\xdc\x67\x0d\x98\x01\x5f\xce\xfd\xf0\x87\x58\x15\x24\x5c\xe4\x8e\x4c\x56\x27\x89\xc3\xd1\xe1\xee\xff\x27\x00\x00\xff\xff\x1c\x02\x8c\x3c\xb8\xab\x00\x00") +var _confLocaleLocale_zhHkIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\x7b\x73\x14\x57\x96\x20\xfe\x7f\x7d\x8a\x6c\x3a\x08\xcf\x44\xd8\x72\xd8\x9e\xdf\x6f\x37\x3a\x5c\x9e\xb5\xa1\xbb\xed\x5d\xdb\xcd\x5a\x78\x3b\x36\x1c\x44\xb9\x54\x95\x92\x72\xa8\xaa\xac\xae\xcc\x42\x96\x27\x26\x42\x02\x0b\x95\x90\x84\x04\x48\x02\x81\xb0\x00\xf3\x10\x0f\x01\xc2\x36\x08\xbd\xf8\x2e\xdb\x95\x59\x55\x7f\xf9\x2b\xec\x79\xdd\x9b\x37\x1f\x12\xf6\xcc\xee\x76\x74\x18\x55\xde\x73\xdf\xe7\x9e\x7b\xde\xb7\x58\xaf\x17\xca\xb6\x57\xca\x07\xab\x5b\xe1\xd2\x8e\xf5\x67\xd7\xea\x3e\xf8\xbe\xbb\x36\xd6\xb9\xfa\x5d\x77\xf2\x41\x70\xee\xbe\xf5\x67\xc7\xb7\xc2\x95\xd9\x60\x7a\x39\x97\x1b\x76\xab\x76\xbe\x77\x77\xa9\x77\x63\x3c\x57\x2e\x7a\xc3\x03\x6e\xb1\x51\xce\x87\xe7\xef\x05\xad\xe7\xbd\xeb\xb7\x3a\x53\xad\x9c\xfd\x4d\xbd\xe2\x36\x6c\xf8\x78\xab\xf3\xd3\xad\xdc\xb0\x5d\xa9\xe7\x83\x97\x0f\xa1\xa5\x9c\xe7\x0c\xd5\x0a\x4e\x2d\xdf\x59\xde\xee\xcd\x7c\xc7\x3f\xdd\xa6\x9f\xef\x8d\x8d\x05\x93\x5b\xfc\xbb\x59\xcf\x77\xd7\xb6\x83\xb3\xe7\x72\x0d\x7b\xc8\xf1\x7c\xbb\xa1\x7e\x8f\xd8\x03\x9e\xe3\xdb\xf9\xe0\xf1\x95\x70\xe9\x65\xe7\xf9\xb3\xce\xc3\xe5\xdc\x29\xbb\xe1\x39\x2e\x34\xb9\xf8\x3c\x98\x9a\x85\xfe\xc3\x95\x47\xb9\x7a\x71\x08\x46\x79\x63\x1c\x46\x94\xf3\xed\x6a\xbd\x52\x84\x6a\xe1\xda\x4d\x1c\x5e\xa5\x58\x1b\x6a\x62\x39\x4f\xb3\x37\xbe\xd9\xbb\x31\x91\x2b\x35\x6c\x80\x29\xd4\xec\x91\x7c\x30\xf5\x73\xb0\xbd\xd5\xd7\xd7\x97\x6b\x7a\x76\xa3\x50\x6f\xb8\x83\x4e\xc5\x2e\x14\x6b\xe5\x42\x15\xe7\xd5\x59\x58\x0b\x5b\xcf\xdb\xaf\x6e\x86\xe3\x4f\x82\xb9\x73\xe1\xb5\x9f\x82\xdb\x57\x69\xec\x76\x19\x26\x57\x28\x7a\xf9\xe0\xc5\x33\x9e\x22\xc3\xe6\xa8\xa5\x5a\xb1\xaa\x2a\x07\xf3\xb3\x39\xbb\x5a\x74\x2a\xf9\xde\x99\x9f\x3b\x8f\x37\x60\xc0\x9e\x37\xe2\xc2\x4a\x06\x4f\xce\x76\x6e\xed\xc0\xd4\x0b\xfe\x68\x1d\xc0\x6f\x6d\x75\x1f\xcc\xca\xc7\x52\xb1\xee\x97\x86\x8b\xf9\xde\xfd\xcb\xdd\xf5\x29\xfc\x02\x70\x75\x17\xd6\xc4\x6d\x8c\xe6\x83\xb1\xa9\x60\xeb\x61\xce\x6d\x0c\x15\x6b\xce\xb7\x45\x9f\x16\xe5\xe7\xef\x3a\x2f\x17\x72\x55\xa7\xd1\x70\x1b\xf9\xde\xdc\xcd\xe0\xcc\x5c\x0e\xe6\x58\xc0\x7a\x32\xd1\x70\xe9\x29\x6c\xb5\xd4\xc6\xb2\xaa\x33\xd4\xc0\xf5\xea\x8d\xbf\xe8\xdc\xdb\x0e\x6e\x2f\xf5\xce\xac\x19\xc5\x83\x6e\xe3\x64\x9e\x2b\x85\x3f\xed\x75\x16\x56\x8d\x32\xe8\x3c\xd6\xaa\xea\xbf\x58\x83\x05\xa7\xd2\xce\xe3\x9b\x9d\xf9\xb3\x61\xeb\x42\x54\x5a\x2c\x57\x61\xd5\xea\xc5\x9a\x5d\x91\x62\x41\xa4\x62\xa9\xe4\x36\x6b\x7e\xc1\xb3\x7d\xdf\xa9\x0d\xc1\xb2\x6e\xfe\x08\x8b\xd7\x5d\x5b\xef\xec\x3e\xce\x65\x7f\x1d\x75\x9b\x7a\xcb\x60\x49\xa6\xdb\x5b\x5b\xbc\x53\x5c\xa2\x2b\xf1\x3e\x48\x25\x1c\xbb\x57\x18\xb4\x6d\xc0\xe4\x95\x31\x18\x7a\xf8\xd3\x76\x30\xbd\x98\xab\x37\x2b\x15\x58\xaa\xbf\x35\x6d\xcf\x87\x7e\xe6\x5b\xed\xdd\x9f\xbb\x0f\xa7\xc3\x8d\xd3\x39\xc7\xf3\xe0\x6b\x3e\x58\x9c\xeb\xdd\x9c\xe1\x51\xe7\x60\x83\x6a\x25\x98\x44\x30\xb7\x14\x3e\x6f\xe5\x72\x5f\x79\x76\xb1\x51\x1a\x3e\x91\xe3\x7f\xf3\xe1\xfc\x4a\xf0\x74\x1a\x11\x2b\xbd\x6d\x88\x20\x32\x28\x6e\x1b\x70\xe8\x4e\xb0\xf4\x38\x57\x72\xcb\x80\x06\x6b\xd3\xc1\xce\x1c\xed\xf8\x57\x4e\xcd\xf3\x8b\x95\xca\x89\x9c\xfc\x01\xc7\x61\xaa\xfb\xc3\x75\x85\xed\x8e\x5f\xa1\x03\x1a\x3e\xba\x19\xac\xbe\xe8\xde\x9c\xe1\x62\x6c\x61\x6b\x2e\x57\x76\x4b\x27\x01\xa7\xf1\x4c\x42\x7f\x9f\x0c\x5a\xb0\x2a\x6f\x34\x6c\xab\xd1\xac\xd5\x60\x5d\xe0\xf4\x0f\x79\x16\x34\xec\x94\x6d\xeb\x28\xc1\xbe\x69\xd5\x2b\x76\xd1\x03\x10\xbb\x58\xb6\xde\x2f\x5a\x7e\xb1\x31\x64\xfb\xf9\x43\x85\x01\x38\x49\x27\x0f\x59\xc3\x0d\x7b\x30\x7f\xe8\xb0\x77\xe8\x83\x3f\x37\xa1\x5a\xc5\xa9\xd9\xde\xfb\x6f\x17\x3f\xb0\x4a\x45\x28\x81\x15\x1c\xb5\x06\x6c\x40\x1a\x1b\xfb\xb2\x00\x7f\x6b\x43\xb6\x55\xac\x8d\xfa\xc3\xd8\xa1\x53\xb3\xe0\x0f\xcf\xc2\x13\xfb\xbb\x1c\xae\x35\x9c\xf0\x42\x79\x80\x69\x12\x0d\x87\x3e\x36\x6c\xcf\xfa\x6c\xb4\xff\xbf\x7f\xfa\xa6\x75\xcc\xf5\xfc\xa1\x86\x4d\x7f\xc3\x7f\x00\xfe\x3d\xcb\x6d\x58\xc7\x9d\xa3\x1f\xf5\xe5\xa0\x26\x2f\x41\xb8\xb8\x19\x5e\xba\x0a\x4b\x2b\x7b\x8c\x05\x78\xa2\xf4\xf7\xde\xcd\xef\x83\xef\xa7\x81\xa0\x79\x7e\xf4\xb1\xbd\xb9\x1d\xde\x5f\xe5\xdd\xd0\x1f\x65\x5b\xf4\x19\x4d\x14\xc8\xe9\x84\x0e\xe8\x84\xeb\x52\x38\xe4\x9d\xb5\x0d\xfc\x2e\xcb\x1d\xdc\x3d\x1d\x7e\xbf\x12\x9e\x5e\x6b\xef\xbe\x82\xaa\x3c\x9f\x5f\x76\x66\x00\xa5\xe4\xcb\x27\x9f\x7f\xfe\x97\xa3\x1f\x59\xc1\xce\x62\x78\xe9\x7c\x7b\xfb\x0e\x90\x17\xab\xe9\x0f\xfe\xe7\xc2\x90\x5d\xb3\x1b\xc5\x4a\xa1\xe4\x58\xc1\xfa\xe5\xce\xa3\xbb\xbd\x6b\x67\xff\x3e\x76\x3a\xe7\x79\x15\x20\x4a\x80\x21\xfd\xfd\x9f\x5a\x40\xe0\x00\x4b\x60\x9c\xfe\x70\x34\x8a\x70\x69\xb2\xbd\xfd\xbc\xfb\xe2\x49\xb0\x77\x21\xe7\xfd\xad\x82\xcb\x2b\xe3\x39\x3e\x6c\x5b\x78\x4e\x2c\xac\x61\xb9\x83\xc9\xd5\xb4\xca\x45\xbf\x38\x00\x7b\xdf\x97\xb3\x1b\x8d\x02\xd0\x51\x7f\x14\xb7\x86\x3a\xd8\x0f\x96\x1b\x83\x93\x50\x73\x7d\xd8\x78\x8b\x6a\x71\x03\x4e\xed\x54\xb1\xe2\x94\x61\x83\xd4\x5a\xc5\x6b\xe2\x27\xab\xec\xc2\x4e\x63\x5d\x40\x6d\x77\x04\xf1\xa5\x51\x2c\xc1\x25\xe0\x59\x87\xfa\x0e\x01\xde\x94\xad\x43\x6f\x1d\xea\xcb\xd5\xdc\x02\xd3\x0d\x24\xcb\x65\xc7\x2b\x0e\x00\x89\xe6\x0b\xa3\xc1\xb4\xef\x7f\x22\xb6\xf1\x30\xa4\xdc\x32\xcb\xad\x11\xc7\x1f\x86\xbb\xc7\x22\xca\x8f\xa8\x58\xac\x59\xd4\xa4\x25\x74\xc7\x9c\xb5\xa2\x51\x82\x01\x1f\x12\x9c\xfa\x99\x9e\x6d\x4e\xed\x97\xe0\xe2\xe4\x14\xec\x2e\x5e\xb0\x2b\x8f\x04\x1d\xf1\xda\x65\x74\xe1\x32\xc6\x15\xf5\x55\xed\x50\xe7\xf4\x16\xa0\x8b\x26\x95\x40\x58\x80\xa4\xf5\x56\x5f\xb5\xb7\x1e\x77\xc7\x66\x82\xb9\x56\x30\x3e\x15\xdc\xbe\x87\xf4\x9b\x1b\x40\xc2\xc2\xfb\xc3\x74\x25\xbc\xf1\xb2\x73\xed\x31\xde\xb5\xba\x44\xb5\x1d\x4e\x8d\x85\x2b\x53\x74\xb9\xf7\xc6\x6f\x20\x7d\xa0\x1a\xbd\x33\xbb\xc1\xd3\xc9\xee\xad\x87\xc1\xfa\x95\x70\x61\x0f\x58\x82\xee\xfd\x67\xdc\x06\x22\x1c\x10\x8a\x02\x9d\x0e\x26\x2e\x9d\x1f\xb7\x3b\x3f\x6f\xc8\x01\x51\x65\xaa\x07\xac\xc8\x27\xe4\xd5\x44\xef\x46\x2b\x98\x78\x01\x1d\x06\x4f\x67\x13\x43\x0b\x2e\xce\x70\x63\x4c\x7d\xf0\x5e\xb9\x34\xdb\xde\x5d\x09\x1f\x9d\xeb\x2d\xcf\x63\xa7\x65\x17\xee\xca\x1a\x74\xb9\x8a\x17\x27\xff\x32\x3a\xe1\x25\x0d\x76\x37\x60\x65\xac\xfe\xfe\x8f\xad\xee\xed\xc9\xee\x0f\xbb\xc1\xca\xd3\xe0\xfa\x18\x9f\x92\xe1\x42\xdd\x6d\xf8\x79\x2c\x0c\x56\x6f\xe8\x0f\x7a\x2d\x68\x91\xa9\x2e\x33\x3a\xe1\xfa\x0f\xc1\x8a\x9c\xd3\x70\xfd\x36\xd4\xe9\x2e\xaf\xe2\x51\x9d\xbe\xd3\xbd\x3b\xde\x81\xff\x2f\xac\x51\x63\xe7\x56\xbb\x67\x76\xf1\x00\xbf\xba\x1e\xce\x8c\x87\x8f\xbe\x6b\xef\xce\x76\xee\x6f\x75\x96\x77\xb1\xe3\x61\xdf\xaf\x73\xcf\x1f\x1f\x3f\x7e\xcc\xea\x3c\x04\x86\xe1\x07\x68\x29\x2a\xd0\x23\x20\x34\xe8\x5c\xfb\xa1\x3b\xbe\x8b\xfb\xad\x21\x11\x25\x9a\x8d\x8a\x00\x58\x5f\x7e\xf1\xa9\xfa\xb4\xdf\x0a\x60\x57\x6f\xe3\x7f\xfa\x63\x0b\x01\xcb\xdc\xde\x1c\x6b\x6f\x5d\x63\x96\xa3\xbd\xb9\x0e\xfd\xf4\xc6\x7e\xe8\xfc\x4c\x6b\x9c\x73\xeb\x78\x2c\x34\xce\x06\x73\x4f\x80\x35\x12\x6c\x25\x5e\x45\x0a\x7a\xd7\xb6\x83\xf5\x79\x68\x04\xc8\x0a\x2f\x16\x00\x05\x8f\x81\x03\xaa\xc2\x9c\x88\x9c\xf6\x7f\x06\x93\x15\x52\x4a\x5f\x07\x1b\x6e\x35\xcf\x55\xda\x7b\x67\x81\xad\x8c\x3e\xab\x59\x98\xa5\x3c\x60\x58\xee\xde\xf8\xcf\xc1\xde\x03\xeb\x8b\x3f\x1d\xb1\xfe\xbf\xf7\xde\x7d\x17\x28\xdc\x72\x30\x89\x84\x0f\x46\x07\xe4\x31\xbc\xf2\x04\xa6\x04\x47\x02\x2e\xca\xce\x4f\x0b\x38\x1f\x9a\x1b\xd7\x0f\x5b\x4b\x42\x56\x0f\xe1\x99\x3a\x64\xbd\x4f\xd3\xf8\x2f\xf6\x37\x45\xe0\x08\xed\xbe\x92\x5b\xfd\x80\xb0\xed\xc6\x0e\x90\x4d\x5c\x03\x2c\x06\xf4\xe5\xbb\x78\x79\xa7\x37\x36\x2e\xec\x99\x14\xe8\xf3\x6f\x16\x6a\x8e\x8d\x99\xd5\x42\xc9\xad\x0d\x3a\x8d\x2a\xb0\x06\xab\xd0\x37\xb3\xae\x0c\xc9\xcc\x1c\x35\x56\x00\x7a\xe1\x0c\x8e\x0a\x10\xcf\xbd\x37\x76\xb5\xb3\x7a\x27\x9c\x9b\xef\x9d\xbd\x08\x2c\x43\x03\x38\xdb\x02\xfe\xe3\x94\x6c\x59\xfa\xf6\xce\x16\xae\xf8\xf2\x1a\x1e\x99\x89\xe7\xed\xed\x25\xbd\x01\xb8\x4b\xee\xe0\x20\xde\xbe\x7c\x21\x04\x8b\x97\xb0\xe5\x6b\xb7\x3a\x2f\xae\xca\xc5\x60\x96\x03\xf2\xd5\x81\xd3\x06\x24\x07\xee\xae\xb3\xfb\x8c\x41\xda\x9b\xd3\xed\x97\xab\x8c\xde\xc1\xde\xf7\xd6\x91\xa3\x9f\x5b\x9d\xd9\x67\xc8\xd0\xd0\x35\x02\x5b\xc2\x64\x03\x85\x83\x1f\x27\xc3\xad\x79\xa0\x15\x00\x08\x74\x0d\xd6\x5c\x0f\x8f\xab\xd0\xc9\x15\xca\x0c\x1c\xe5\x29\x20\xf3\xb0\xac\xd4\xb6\xf5\x67\xf9\xad\xe4\x8a\x24\x9c\x0c\x2f\x09\x0d\xf3\x46\xf4\x78\x7c\xb5\xb3\x77\x1f\x3a\x87\xe1\x04\x67\x26\x78\x93\x3b\x0b\x42\x86\xda\x9b\xe7\x82\xd3\xc0\x11\x2e\xf5\xb6\xaf\xc0\x72\x23\x52\xdc\x58\x07\xbe\xd7\x1c\x4e\xec\xa2\x80\x4e\xc2\xf5\x5b\xc2\x10\x4e\x3e\x00\xbc\x15\x79\x23\x0b\x3a\x1a\x58\x66\x1d\xa6\x07\x38\xae\xb9\x07\xb8\x4c\xc4\x18\x06\x97\x6e\x0a\xbe\xbe\xd8\x0e\xce\xdd\x00\x7e\x15\x0e\x36\x0e\xc7\xae\x51\xfb\x8a\xaf\xff\x23\xfd\xb4\x8e\xf0\xcf\x44\xa9\x74\xfc\x05\x33\x43\x16\xdd\xa4\xc0\xa5\x5b\x52\x6c\x01\x87\x65\x21\xe2\x5a\x9e\x5d\x19\x7c\xcb\x1c\x72\x5f\x4e\x38\xa8\x82\x88\x5f\x85\x53\x0e\x8a\x39\x84\x20\x2c\xa6\x74\xd7\x1e\x20\x27\xbb\x3c\x1f\x20\x19\xcf\x80\x56\xe8\x42\xb3\x8a\xa4\x9b\xab\x22\xe0\x84\x53\xb3\x30\xed\xe0\xf6\x0d\x69\x88\x78\x51\x5c\x85\xf9\xbb\xc1\xd4\x24\xe2\xc8\xdc\x03\x00\xe8\xac\x4c\x07\xad\xa7\x5c\x17\x36\x48\xce\x06\x01\xe3\x72\xf0\x25\x2b\x2c\xba\x08\xa5\x24\x4c\x44\xcb\x48\x4b\xd7\xde\xbc\xdb\xde\x9c\x85\xc3\xcf\xf7\x0a\x8c\x02\xbb\xba\x76\x03\x6e\x4b\xeb\x93\xa3\xf9\x77\x2c\x3d\x2e\xbc\xc9\x00\x5f\xa6\x17\x11\x23\xf7\x2e\xeb\x76\xa2\xab\x85\xfb\xe4\xe3\x95\xe8\x46\xdd\xd4\x04\xc1\xc2\x9b\x02\x88\xa4\xb8\x04\x63\x10\x35\x21\x22\x1b\x13\x03\x03\xc0\x14\xe8\xb8\x32\x0b\x82\xcc\x52\xfc\xf1\x2d\xfc\xa1\x58\xfb\xc2\x90\x8b\xa2\xca\xc3\xe9\x60\xf6\x47\x66\xe3\x41\x9a\xf5\xfc\xc2\x90\xe3\x17\x06\x91\x24\x41\x7b\xdf\xdd\x0c\x7f\x5c\xec\xae\x5f\x09\x5a\x77\xac\x37\xa0\xe0\x0d\x2b\xb8\xb0\xdb\xde\xbe\xfd\xcb\xce\xd5\xc3\xa7\x84\xe1\x7b\x0f\xc9\x4d\x01\xce\x90\x53\x41\x94\xc2\xeb\x0e\x8e\xb1\x9c\x1b\x58\xab\xe5\x1d\xbc\xca\x49\x74\xc6\x85\x5d\x78\x02\x57\x99\x62\x06\x99\x3f\x45\x62\x70\xd8\x03\x9a\x3e\xdd\xdd\x99\x62\xf9\x3b\xbc\x37\x8d\x5b\x33\xd5\x42\x88\xb1\x19\xde\x11\x6b\xc8\x1d\x68\x3a\x95\xb2\xc5\xad\xe1\x0a\x2b\xae\x0f\x78\x3e\xd9\xda\x24\x6f\x8e\x55\xd7\x7f\x80\x95\xe1\x31\xab\x0a\xfb\xf2\x32\x99\xb5\x34\xf3\x81\x53\xad\x16\xe1\x4c\x64\xb0\x28\xbd\xeb\xdf\x8b\x9e\x80\x7e\x62\x4d\xcf\x7a\xeb\x03\x98\x5a\xce\x2b\x9e\xb2\x99\x76\x0f\xa9\xb5\xe5\x2b\xb7\x37\x31\x8b\xbd\xbd\xba\x0e\x0c\x51\x70\x7b\x23\x5c\xbc\x1c\x1f\x66\x0c\x6b\x63\x38\xa4\x05\xcc\xd4\x04\x79\x77\xbd\x66\xa9\x64\x7b\x1e\x6e\x47\x70\x07\x88\xc6\x38\x88\xc5\xc1\xd8\x85\x60\xaf\xd5\x7b\x78\xa5\xdb\x6a\xc1\x77\xb8\x82\xc3\x4b\x93\x72\x8d\x21\x7b\x04\x8b\xdd\xb9\x73\x5d\xcb\x10\xe1\x77\x53\xc1\xab\x87\xf0\xb1\xbd\x0d\xed\xef\x20\x29\x5e\xbf\x0d\x38\x61\x7d\xf4\xe5\x9f\xa1\x41\x10\x17\x51\x61\x73\x22\xd7\x64\xae\xd2\xad\x94\xb5\x98\x09\xd8\x8b\x44\x32\xae\x7f\x50\x20\x82\xa0\x1e\x30\xc9\xa5\xe1\x82\x56\xf4\xe0\x02\xf9\xf6\x37\x7e\x3e\x68\x4d\x86\x73\xd7\x4c\xb5\x8f\xf0\x80\xd5\x51\xda\x37\x98\x14\x89\xf8\x22\xdd\x96\xdc\x0a\x60\x9e\x8b\xf4\xe8\x94\x2d\x00\xc1\xdc\x99\x6e\x6b\x32\x98\x5d\x00\x56\x2f\x82\x84\xfa\x6e\x63\x48\x55\x57\xfa\x83\xd1\x02\xab\x30\xd4\x77\xd1\x64\x10\x65\x22\x8d\x14\xd3\x1d\xdc\x47\x91\xcc\xfb\x60\x4f\x48\xe2\x97\xce\x36\x1e\x09\x27\xcb\x73\xa7\xce\xa0\x21\x58\x20\x51\x57\x9d\xc8\xc9\xb8\x49\x6b\x25\xa3\xc9\x7d\x55\x6c\xfa\x20\xc0\x47\xda\xa1\x82\x08\x07\x42\x99\x78\x97\xa3\xcb\x7f\xd8\xae\x23\xa3\x50\xf5\x86\x48\x07\xf4\xfc\x12\xd3\xb8\x5f\x76\x56\xf9\x14\x33\xed\xc3\x9d\xf1\xdc\x92\x53\xac\x14\x7e\x7d\xcd\xe7\xe3\x70\xef\x61\xcd\xf8\xb5\xc4\x1a\x2a\x10\x3b\xf2\xc0\x59\x03\xa2\x75\x7f\x7e\x81\x07\xd2\xb8\x8d\xa0\x39\x60\xe7\x7b\x97\x57\x7a\x4b\x53\x70\x20\xe1\x34\x77\xc7\x9f\xe0\xa9\x20\x05\x9a\x46\xd8\xf4\xfd\x88\xc3\x41\xd2\x94\x6e\xd8\xe4\x67\x32\x3b\x81\x15\xa9\xda\xd5\x01\x6c\x01\x37\xe7\x4a\x7b\x77\x4e\x74\x7e\x70\x4f\x0d\xc1\x09\x8d\x14\x5e\xaf\xae\x40\xb9\xe0\x1b\x16\xda\xfb\x14\xc2\x4a\x28\x05\x21\x9c\xf1\x91\x7c\xef\xf4\x77\xe1\xb3\x8b\xbc\x01\x50\xd6\xbb\x0b\xb4\xeb\x1c\x0f\x0f\x07\x20\x94\x97\x2f\x6d\x62\xb9\x3c\xbb\xe6\xab\xb5\x42\xb6\xf1\xe9\xb8\x28\xa9\x68\x1a\xcc\x83\xc9\xd2\xdf\x7a\xc8\x1c\x5e\x77\xf2\x47\xeb\xfd\x81\x0f\x0e\x7b\xef\xbf\x3d\xf0\x01\x53\xc2\xf0\xc1\xad\x10\xb8\x34\x12\x18\xc2\x05\xe0\xc1\x9e\x13\x33\x7d\x17\x38\x29\xeb\x70\xd9\x0a\x9e\xce\x85\xcb\xa7\x83\x89\x7b\xc1\xe3\x99\xb0\x35\xcf\x6d\xf3\xa8\x58\xaa\xa1\x4b\xa7\x44\xe7\x80\xf0\x53\xe1\x53\xf8\x6a\x2c\xfc\x69\x9b\xdb\xd5\x58\x45\x43\xae\x38\x55\xc7\xcf\xda\x64\x00\x66\x6d\x14\x0f\x96\x5b\x10\x5e\x72\xfc\x3c\xe0\x7b\xef\xc6\x76\xe7\xe5\x38\x8f\xbb\xb3\x3e\x15\xec\x4d\x58\xef\x59\x41\xeb\x6c\x6f\xfe\x4a\xb0\x37\x13\x9c\x9d\xed\xde\xbf\x8b\x18\x35\x5c\xf4\x0a\xcd\x9a\xac\x98\x5d\xe6\x5d\x07\xca\xa8\x08\x13\xf6\x04\xf7\x3e\x2f\x9a\x5e\x99\x7f\x88\x96\xe6\x1f\xad\xf6\xee\xd9\x70\xe5\x01\x2e\x1c\xcd\x98\x59\x71\x18\x08\xf2\xea\x4a\xed\x01\x00\xb0\x62\xc0\x01\x98\x23\xc5\xd6\x81\x0c\xad\x8c\x81\x5c\xd5\x9b\x9c\xc5\x2d\xa1\x0e\xe4\xde\x59\x7a\x1c\x5e\x3a\x07\xd7\x0e\x2a\x7c\x61\xc1\x67\xa6\x7a\xad\x45\xc6\x2f\x58\x1b\x19\x29\x03\x01\xe1\xeb\x2e\x2f\x9a\x4d\x98\x1b\x2b\x22\x0c\xdd\x83\x1e\x9d\x3d\x9f\xee\xc1\xee\xce\x66\x30\x71\x27\x29\x39\xd0\x4c\x00\x99\xe1\xa0\xc0\x70\xdb\xdb\xdb\xed\xdd\x45\x66\x0a\xe8\xe8\x62\xcf\x38\x00\x3f\xdd\xff\x2f\x3b\x2d\x1e\xc2\x2f\x3b\x53\xb2\x2d\xbc\xa5\x84\xc3\x50\x04\xd7\x81\x8c\x88\x5b\xd0\xb8\xce\x65\x72\x10\xd4\xe5\x42\xda\xbf\xc4\x9e\x6b\x94\x15\x9a\xff\xe2\x19\xee\xf6\xca\x2a\x2c\x23\xfc\x4d\x57\x54\x4b\x2d\x51\xd4\xbe\x56\x42\xc5\x17\x2b\xea\x52\x03\xfa\xae\x5b\xf0\x86\x51\x68\x95\x41\x2f\xbe\x08\xb6\x90\xe3\xc2\x63\xfe\xf4\x02\x1a\x09\xfe\x7f\xd8\xef\x59\xbe\x5f\x70\x05\x4e\x30\x46\x23\x89\x54\xe8\x7c\x8c\x95\x86\xea\x3b\xea\xfe\x1a\x4a\xb1\x12\x41\x33\xeb\xf3\x3f\xec\x06\xc8\x42\x0c\x62\x13\x03\x64\x15\xcb\x65\x18\xbe\x97\x5c\xa3\x2f\xf0\x27\x03\xaa\x6f\x11\xed\x55\xd7\xe9\x17\xf2\xc1\x92\x0f\x6f\x5a\x7f\xb5\x2b\x20\xec\xd9\x11\xa8\x48\x5f\xf2\xdd\x72\x6b\x16\x5d\x6f\x38\x1d\xb7\x5c\x84\xf9\x8c\xda\x9e\xb0\x6a\x7c\x6a\x73\x35\x57\xd4\xba\xf2\x1b\xe0\xb0\x05\xd9\x88\x57\x8f\xc3\x85\x97\x50\x1b\xe8\x57\xf5\x44\xee\x4b\x60\x43\x3e\x8f\x2b\xfb\xbf\x80\xbb\x85\x3e\xf1\xc5\x22\xda\x9a\x3f\x1a\x26\x00\xc6\xbc\xdc\xb1\x84\x21\xe0\x0b\x3b\x6d\x07\xe8\xef\xff\xf8\x38\x31\xac\xa4\x81\x78\x72\xb6\x77\xe1\xa9\x34\xf8\xb1\xef\xd7\xbd\x2f\x1b\x95\x3c\x8b\xff\x5f\x7e\xf1\xa9\xa5\xdb\x1d\xad\xb8\xc5\x32\x96\x85\xe7\xd7\x00\x2d\xe5\xfb\x71\xbb\x58\xe5\x81\xad\x5c\xe9\x5d\x3d\x27\xed\x7c\x08\xb7\x1e\x7d\x45\xe2\x05\x84\x43\xbe\x22\xa7\xc3\x63\xd6\xb7\x86\xf0\x0f\x5a\x68\xb0\xc9\xd2\xc0\xc8\x02\xfc\x78\xe7\xfe\x16\x11\xbc\x4a\x1d\x24\x18\x64\x23\x04\x40\x38\xf7\xd3\x5b\xdd\xe9\x0d\x10\x2d\x83\xf5\xcb\xe1\x93\xd9\xbf\x83\x48\x7d\xe5\x55\x38\x3d\xd5\xde\x79\x02\x2c\x22\x7e\x6c\x2d\x85\xf7\x1f\x82\x04\x0b\xc7\xea\xad\x02\x1c\xa9\x44\x63\x65\x38\xce\xbf\xa9\x41\xf8\x12\x6f\x90\xe4\xc4\xef\x49\x49\xe4\x7c\xab\x86\xcf\x18\xaf\x9b\x04\xb6\x82\xb4\x03\xc8\xe6\x25\x81\xc2\x15\xa0\x89\x73\x0c\x64\xa1\x26\x82\xb4\xb3\xac\x4c\xf8\x26\x1b\xfc\xf6\xbd\x2c\x70\xa6\x4f\x7a\xf9\xb4\x6a\x03\xe8\x2e\x9c\xe7\x04\x81\xc2\x0a\xa8\x01\x3a\x00\x1c\x37\x9f\xd9\xef\x52\xa5\x59\x56\xa3\xf8\xda\xaa\x36\x3d\xdf\x42\x36\xae\x08\xe2\x86\xd7\x1c\x00\x29\x11\x95\x9f\x6f\x1c\xf6\xde\xe8\xfb\x1a\xf8\xc4\x93\x70\xb7\xd6\x04\x1a\xe8\x60\x67\xf5\x4e\x6f\xe6\x49\xf7\x01\xca\x13\xca\x00\x05\x42\x61\xc9\x6d\x34\xec\x92\x1f\x99\xa2\x00\x34\x98\x79\x09\xbc\x32\xf6\xa9\x49\x89\xc1\x8b\x13\xea\x02\xc3\x67\x62\x72\xac\x92\xb6\x91\x15\x06\x6c\x1b\x44\xb2\xe2\x49\xbb\x16\x9d\x20\x7d\x31\xb7\x77\x17\xe0\x23\xd3\x37\x90\x0f\x92\x15\xcc\xf3\x95\x51\x07\xf8\x8b\x54\x15\xd1\xad\xee\x57\xc5\x87\x13\x92\xee\xc6\x38\x2d\x19\x75\x78\x33\x09\x1e\x66\x55\x8e\x1d\x71\x03\xfc\x95\x80\x3b\x95\x8a\x3d\x84\x9a\x37\xd5\x55\xbc\xfd\x99\x89\x60\xfe\x21\x6c\x72\x30\xdf\x02\x59\x2f\x42\x19\xbd\x60\x7a\xbd\xa3\x8d\x31\x79\x7c\x5e\x6c\x2d\x84\xb0\xe6\x01\xc8\x60\x83\xec\x95\x86\xb0\x45\x5d\x9b\x3c\x8e\xbe\x1d\xcd\x65\x05\x5c\x3b\xa0\x21\xc0\x1e\x24\xb0\xfb\xb6\x84\xd6\x35\x52\x21\x75\xc7\x26\xa2\x41\x82\x2c\x3f\x7f\xf7\x80\x56\xf5\x0d\x90\x3d\x3a\xc6\xa6\x44\x23\x5a\x1a\xb4\xbf\x01\xaa\x9f\x87\x15\x67\xda\xad\xb5\x03\xb8\xa4\x20\xd3\xad\xac\xe1\x4d\x56\x29\x82\x60\x8d\xe8\x41\x13\x40\xe8\xce\xbd\xed\xde\xf2\x6d\x06\x45\x45\x3c\x1c\xdd\x3d\x52\xa1\xee\xce\x9a\x4c\x33\x8e\x88\xf4\x3a\x5c\x24\x3c\xa5\x16\x03\xcf\xce\xf6\xc6\x9e\xa1\x18\x4a\xad\x01\x4b\x88\xea\x07\x1a\x07\xdd\x9f\x6a\x82\xa8\x91\x3e\x69\x8f\xe6\x41\xf8\x0b\xcf\x6d\x84\xeb\x53\xc4\x17\xa1\x38\xc8\x12\x3e\x1f\x34\x73\xd2\x56\x44\xfd\x49\x8e\x45\x19\x0f\x79\xf7\x53\x74\x9b\xea\x06\x59\xa7\xfe\x6b\xda\x98\x41\x1e\x8e\x25\xd0\xf1\x49\x10\x5c\x7b\xa7\x7f\xc0\xad\x56\x04\x45\x83\xe1\x84\xa1\x8d\xc9\x07\x38\xab\x5b\x5b\x28\x19\x4f\x3c\x67\xb0\x70\xec\x1e\xce\x0a\x85\x26\x2d\x44\x9f\x6f\xa1\xb6\x85\xba\x36\xc5\xe7\x9c\xe7\x03\xda\xe3\x6a\xb3\x31\xda\xe4\x7c\xdb\xdb\xb3\x9d\xef\x9e\x63\xe7\xab\xf3\xed\xad\x6b\x5a\x5a\x0b\x2f\x8d\x33\xe2\x30\x23\xa4\xcc\x0a\xad\xee\xee\x14\x2c\x2f\x62\x7a\xeb\x01\x2c\x72\xf0\xf8\x0c\x4c\x42\x74\x52\x6c\x03\xe5\xef\xd4\x78\xb4\xf8\x3c\x02\x64\x7e\xd1\x32\x9d\x18\x40\xb7\x75\x4e\x0f\x80\x29\x04\x0e\x80\xb6\x2f\xd1\x7b\xef\xda\xad\xde\xd2\xb4\xee\x9d\x81\x15\xb1\x49\xcc\x12\x25\x50\x2a\xff\xbf\x34\x45\x6e\xdc\xc0\xaf\xa8\x7f\xd2\x6a\x43\xff\xbc\x21\x7c\xb1\xb7\xf7\xae\xc3\x3c\x91\xd7\x3d\xb3\x06\x72\x81\x1c\x0b\xa2\x4b\xc2\x7f\x4f\xb4\xb8\x61\xa8\x68\xc2\xc4\xc4\x87\x1c\x9b\x84\x0b\x03\x8d\x62\xad\x34\x6c\x1c\xb9\xce\xb5\xc7\xa8\xb1\x6f\x9d\x0d\x17\x9e\xe8\xc3\x06\x6c\x12\x0e\x05\x84\x6a\x32\x05\x17\x44\x31\x0c\x7c\xb6\xa5\xb4\xbf\xa8\x9a\xb7\x40\x9a\x63\xbe\x8a\x37\x86\x95\xb8\xaa\x52\x09\x6e\x31\xb7\x6a\xd4\x65\x53\xbf\x52\xb7\xac\x73\x4d\xa9\xf3\x2f\x2e\xdc\xdc\x2e\x10\xed\x73\x37\x00\xed\x81\x7f\x8d\xec\xef\x0e\xda\xf0\x99\xb6\xb5\x2e\x77\x6f\xae\x31\x6b\xea\xf8\x70\x10\x27\x1e\xe1\xae\xb2\x23\xc0\xa0\x8b\xc6\x48\xbb\xe1\xe5\x51\x28\x58\xdb\x86\xfd\x81\x95\x2d\x22\x89\x42\x69\xbd\xfb\xf8\x2a\xc8\x49\x02\x85\x5a\x20\x86\x82\x71\xe4\x50\xa4\xad\xf6\x11\x95\x46\x5e\xb6\x71\x0a\x75\x76\x8a\xec\xd1\xad\x6b\x01\x12\xe0\x6d\xf0\xea\x7a\x67\x71\x19\x26\x8a\x98\x13\x55\xaa\x17\x7d\x20\x85\x35\x16\x5c\x68\x10\x46\x7d\x5c\xd3\x89\xf1\xee\xda\x06\x37\x14\xb3\x65\xa0\xf7\x01\xfb\x3a\x9c\xc8\x65\xfa\x43\x68\x92\xca\x6b\xa5\x34\x3e\x4c\x36\x3c\xe1\xf0\x0c\x02\x21\x1a\x8b\x7c\xe7\xf6\x5e\x7b\xeb\x36\x4b\x43\xac\x94\x40\x83\x54\xc5\x29\x91\xa8\xad\x2a\x32\x96\xb1\x06\x2d\x47\x1a\x1d\xfe\x2e\x1a\x9d\xb2\x5d\xb1\xd1\x93\xc7\x38\x97\xb9\xa6\xa3\xa6\x66\x7d\x72\x34\x97\xab\x37\x07\xa0\xd1\xc8\x97\x83\xf6\x43\x8d\x5d\x7c\x72\x48\x47\x2c\xf8\x61\x5e\xb1\x4f\x27\xc3\x95\x33\x68\xc3\xa4\x4a\x48\xda\x36\xef\x22\x45\x87\xd6\x97\x76\xc2\xf3\x77\x50\x0c\xa5\x4e\x71\xc9\xe8\x36\x62\xb3\x4b\x70\x71\x86\xad\x30\xb4\x09\xe8\xfd\xc1\x17\x99\xb2\x39\x08\x23\xac\x1d\x91\x68\x3d\xc5\x11\xa9\xe2\xf2\x0a\xa0\x61\x15\xd0\x1c\x47\x32\x3b\x96\x6b\xd6\x51\x4b\xaf\x67\x11\x5e\xfb\x09\x2e\x08\x99\x45\xbc\xcc\x54\x07\xd2\x8d\x1b\xed\x15\xd7\x42\xe2\x73\x8e\x04\x50\x39\x04\x69\xa7\x22\xb6\xdc\x8a\x38\x92\x80\x52\x1a\x84\xe3\xe8\x6e\x21\x6e\x18\x23\x40\x1c\xac\xe2\xe0\x20\x70\x0c\x96\x3f\x0c\xbf\x8b\xa3\xd6\xb0\x3b\x62\x55\x9c\xda\x49\x74\xbc\x40\xbf\x29\xcb\x77\x63\xd2\x5b\x1f\xaa\x56\x00\xb1\x9a\xd0\xef\xcb\x9d\xce\xd6\x8c\x48\x44\x31\xe7\x17\xf9\xa6\x6d\x18\xf1\xe3\xba\xb8\x0a\x87\x4a\x2f\xaa\x9c\xd2\x2c\x50\x6d\x1d\x25\x85\x01\xd2\x20\xf2\xd6\x6a\xef\x9d\x65\x03\x0c\xaa\xa5\xb5\x71\x88\xad\x4e\x9a\x4e\xb8\xae\x27\x1a\x3b\xee\x95\x55\xa9\x7c\x3d\x0b\x90\x6c\x80\x00\xf0\x2a\x73\x91\xe8\xfe\x9b\x75\x14\x9a\x80\x0f\x91\xe1\xd0\x29\x2c\x38\x55\x74\x1f\x63\x3b\x13\x71\x34\x68\x1a\x8b\x98\xf0\x9d\x9f\x83\x95\xa5\xce\xd4\x24\xee\x54\xcd\x4d\x4c\xc8\x50\xc2\x3f\xbb\x88\x3a\x15\xd2\x2d\x24\xd6\x02\x95\xbc\x74\x63\x27\xe6\x4d\x5c\x8d\x39\xe6\x04\xce\x98\x63\x4f\xe2\x8c\x42\x87\xec\x63\xef\x56\x0c\x1e\x8b\x55\xe4\x52\x82\x2b\x18\x79\xbe\xb0\xaf\x98\xb2\x78\xa2\x68\x5a\x88\x01\xb0\xb8\x6a\x7d\x6e\x8f\x58\x4a\x92\xcd\x65\x71\xa7\x46\x0f\x86\x72\x7c\x3c\x39\x48\x3d\x3f\x01\xe5\xfb\x40\xcd\x09\x27\x3d\xb7\x87\x67\x8d\xac\x6b\xa2\x11\x37\x86\xc8\x2a\x47\xa2\x86\xc4\x91\x7b\x31\xe3\xb5\x48\xc0\xe2\x9c\x26\x00\xe2\x80\x96\x06\x63\x96\xde\x20\x38\x68\xf3\xbb\x3b\xde\x3b\xfd\xd8\x20\x3b\x67\x99\xc8\xb4\xb7\xce\x9b\xc6\x5c\xb6\xd6\xc2\x95\x1d\x69\x00\xeb\x0d\x40\xa2\xc6\x68\x9e\x1b\x51\x3f\x45\x1f\xd2\x7d\xbc\xd7\xde\xdc\x92\x22\xa6\x94\x52\xc2\xf4\x52\x8f\x05\x4a\x90\xe0\xb0\xd1\xc8\x3a\x2a\xbf\x13\xc5\x3c\x66\x2a\xb4\xd9\xd7\x2a\xae\x63\x61\x22\xd0\xb0\xab\xee\x29\x5b\x8e\x7c\xd9\x72\x6a\x78\x05\xb1\xa3\x0c\x5a\xe9\xe3\x14\xc0\x3a\x4a\x24\x01\xc8\x45\xcd\x47\xf2\xa0\x08\xc2\x3f\x27\xbb\x56\xdb\x27\x23\x04\x56\xcb\x42\xa1\xc8\xe2\x49\x95\x95\x86\x86\xbc\xc4\x7e\x97\x83\x01\x11\x36\xf1\x5c\x99\xa9\x96\xf3\x9a\xde\x0f\x04\x36\x01\x4d\x90\xa8\xb0\x10\x53\x03\xa3\x3a\x55\x54\xbf\xc1\xde\x44\xa4\xa9\x34\x5b\x47\xdb\x26\xaa\xed\x90\x1f\xc1\x5b\x55\xf8\xa0\x95\x35\x53\xb9\x9b\xa9\x04\xe6\x6b\xc6\xd4\xfb\xf6\xc6\xcf\x77\xd6\xa6\xd9\xcc\xa8\x06\xa4\x4f\x2c\x4f\xcc\x40\x1f\x99\x30\x61\x37\xe1\xac\x60\xe6\x01\x57\x32\x36\x4b\x52\xc3\xad\xef\x91\xb9\x91\x7b\x1a\x15\x23\xb8\xe7\x78\x26\x36\xa7\x91\xbd\x68\x4d\x22\x2f\xc9\xec\xef\xd4\x18\x2b\x36\x53\xec\xbf\xd6\xd3\xc2\x02\xc0\xb9\x02\xe2\xd4\x5b\x9e\xe9\x2c\xac\x26\x78\x7f\x31\x47\x2a\x36\x94\x18\x69\x4f\x7b\x15\xbd\xef\xf9\x0d\xb7\x36\xf4\x01\x2b\x74\xd9\xed\x37\xb8\x7c\xfe\x9f\xdf\x7f\x5b\x0a\x2c\x14\x1f\x56\xef\x74\x56\x50\x55\x01\x23\x41\x97\xc2\xc8\x85\xd0\x82\x41\x00\x3d\x84\x5e\x61\x1d\x8c\xe1\x91\x43\x21\x29\x80\x27\x83\x59\x54\x0b\x25\xaa\x21\x24\x71\xef\x9b\xdd\xbb\xd3\xec\x94\xa9\xaa\x74\x96\x2e\xf4\xae\xfd\x10\x9e\xbf\xd8\xbd\xf7\x83\xda\x0a\xc4\xb2\x68\xdd\x62\x4c\x0e\x2f\xb6\x21\xbb\x03\x0f\x11\x4c\x6c\x88\x9a\x2d\x2e\xbb\x6b\x68\xba\x5f\x09\x5a\x8c\xaa\xd7\x36\x83\xf9\x19\xe6\x16\x70\x58\xa9\x26\x22\xb9\x53\x55\xcf\xc7\x14\x79\xf8\x95\x6c\x6d\x35\x5f\x15\xa0\x49\xe1\xa5\xda\xf1\x04\x1a\x19\x33\x10\x9e\xd2\xc0\x25\xb2\x19\x31\x15\xa1\x39\x33\x0d\x51\x43\xd7\x54\x84\xbf\x73\x4b\xc0\x36\x19\x6b\x11\xa7\x24\x5a\x1e\x30\x40\xd1\xc2\x4f\x9f\x45\xb4\x37\xf0\x0d\x96\x02\x76\x19\xfd\x45\xc8\x44\xa7\x2d\xef\x2c\xad\x33\x07\xf1\xcf\xe9\xae\xd4\xfc\x8c\x3e\xb8\x03\x3d\x25\x5c\x09\x1c\x36\x6d\x21\x32\xf5\x24\xc1\xf3\x26\x6c\x9e\x0b\x1f\xdd\xe4\xad\x40\x89\x03\x9d\x05\x15\x5f\xcf\xd7\x2e\x08\xf3\xdd\x57\x17\x84\xbb\xa7\xf5\xf4\xf1\x56\xa5\x09\xc2\xd4\x64\xc9\x57\xd6\xac\xff\x64\x05\xb7\xef\xc3\xda\xeb\x3d\x87\x33\x9d\xf3\xdd\x93\x80\x1d\x46\x95\x70\xfd\x36\x7d\x43\x77\x9a\xf1\xf3\xc1\x79\x60\xfd\xcf\x70\xbd\xf0\xda\x9e\x89\x31\x58\x5b\x9f\x6b\xe1\xa7\xf9\xc6\xe1\x33\xa9\x78\x6b\xe4\x87\xc5\x42\xf8\xeb\x8e\xb2\xc9\x95\x1f\x7c\x96\xb9\x8a\x79\x96\xe1\x60\xa0\xe8\xa8\x0d\x8c\xcd\xda\x80\x53\x2b\xe7\xcd\xcf\xf2\x4d\x6f\x8b\xd9\x9d\x09\x67\xf0\x1b\x32\xcb\x22\x55\x28\xd0\xf2\x28\xb5\x31\xb1\xb6\x7c\x19\xb6\xb7\x6f\x77\xa6\x66\xc4\x5f\x52\x4c\xac\x02\x4b\x34\x80\xf1\x5b\xa0\xa8\xc0\xd3\x97\x30\xcc\xbf\xb3\x70\x8b\x67\xc5\xcb\x4f\xec\x2f\x5e\xc0\x7b\x67\xf1\x84\xcd\x2d\x91\xf6\xe3\xc3\x63\x9f\x78\x39\xdd\x30\x57\x07\xd1\x14\xdd\x00\x4e\x6f\x01\x17\x49\xe6\x73\x64\xc3\xb8\x1b\xf2\x80\x9c\x35\xd5\x01\x2c\x94\x23\x65\x5f\xfc\x29\xc3\x3d\x91\x9b\xa5\x43\xcc\x2d\xc8\x21\xd6\x93\x32\x27\x94\x9c\xb0\xe0\x12\xae\xab\xad\x8e\xb3\xb9\x34\xb2\x0c\x06\xcf\x23\x7a\x69\xde\x3a\x76\xf0\x6b\x3d\x15\x3f\xb8\xc7\x53\xc1\x04\x8d\x7b\xe5\x69\xb8\xf4\x52\xbb\xc5\x00\x4a\xcb\xc8\xd0\x81\xe7\x4c\xef\x26\x60\x1a\x30\x18\x63\x70\x4a\x0c\xea\xc0\xc3\x0c\x5a\x37\x60\x3b\x65\x98\xe6\xee\x25\x49\x85\x48\x3f\xe4\x44\x08\x32\x15\xc1\x64\x57\x30\x09\x07\x1c\x15\x03\x9e\x25\x35\x21\x29\xad\x49\x26\x16\xe2\x0b\xc9\x3e\xef\x86\x8f\x22\x6e\xf9\x99\x1f\xd1\xff\x92\xa8\x06\x5e\x2b\xb1\xa1\x27\xb9\x61\xa3\x9b\x17\xcf\x78\x05\xb9\x27\xb1\x82\xaf\x5d\x09\xf6\x2e\x0b\x9f\xcc\x57\xb9\xd1\x31\xdd\xc0\xd2\xba\xb6\xf9\xb3\x8e\x85\x99\x57\x3e\xa4\x02\xa1\xac\xb3\x3c\x45\xc6\x8f\x95\x33\xe1\xd3\xcd\xf6\xcb\x89\x70\x73\x02\x3f\x9a\xea\x25\x92\xea\x98\x5f\x68\x6f\x2e\x58\xea\xd2\x44\x79\x7e\xee\x49\x38\x0e\x72\xcd\x7d\x7d\x61\x12\x5b\x2c\x6e\x44\x89\xf1\x88\x2e\xdd\x14\xa2\xe3\x10\xca\x97\x93\xca\xcc\xc1\x25\xe1\x34\xe1\x63\x48\x3a\x47\x32\xfa\xb1\x7b\x5c\x51\x8c\x8f\xb7\xb6\xe0\x98\xeb\x3d\xe0\xd6\x60\x27\xd0\x3a\x9f\xfb\x0a\xf5\x2a\x27\x72\xac\x41\xd5\x9a\xac\x48\x51\x1f\xb7\x7e\x45\xfa\x7b\x65\x9a\xd4\xce\xcc\x06\x18\x60\x69\xb7\xf5\x08\xce\x64\x77\xe7\x4c\x67\x75\xfd\xef\x63\xe3\x80\x9a\x48\x3e\x5e\x6c\x04\xad\xed\xc4\x02\x76\x66\xd7\x00\x1e\x64\xa7\xf6\xd6\x4c\xc4\x71\x88\x52\xe5\x94\xe3\x39\x03\x4e\x85\x94\x3b\x73\x4f\x90\x4f\xd8\xba\xcb\x1f\xf1\x9b\xe1\x4d\x2b\xca\xb8\xd3\x5b\xd0\x6e\xbd\x58\xb3\x4a\x70\xb3\x78\xf9\x43\x4d\x07\xd8\xe3\xb2\x85\xfe\x2f\x87\x3e\xe8\xdc\x1b\x67\x37\x48\xe8\x06\x60\x3e\x48\x35\x84\x71\x32\x25\xb8\x8b\xfa\x1d\x60\xbb\xd9\xaf\x1c\xd9\x5f\xfe\x8a\xce\xed\x16\x50\x24\xcb\x54\x44\x21\x27\x3d\x60\x1f\xd0\xe7\xb1\x06\x59\x4d\xd3\x3d\x62\x48\x8e\x1a\xff\x2f\x3b\x2d\x16\x93\x68\x22\x3b\x72\xc0\xc8\x33\x18\x2d\xef\xac\xec\x30\xe2\x76\x7e\xd9\x99\xca\x95\x2a\x6e\x4d\xef\x02\x20\x21\x1a\x7d\xc6\x2f\x31\x2b\xa6\x74\x89\xab\xe2\x62\x93\x8e\x00\x31\xb9\xb7\xcd\xc7\xc0\xef\x75\x1f\x3c\x0a\xaf\x9c\x27\xfe\x0b\x91\x97\x46\xc7\x3a\x5e\x33\x5e\x88\x3e\x93\x63\x30\x7f\x46\xaf\x60\xfa\x96\xda\x12\xb3\x1a\xcb\xc5\x22\xbb\xd2\x2e\x02\x82\x6a\x6b\x10\xd3\x19\xf6\x16\x9b\x9b\xeb\xbe\x7a\xca\x9f\x31\xe4\x4b\x3e\x73\xd0\x57\xf4\x59\xf5\xd1\x0f\xe7\xa1\xe4\x5b\x7d\x43\x8e\xef\x0c\xd5\x30\x5a\x05\x75\x32\x5e\xae\xe2\x94\xe0\xca\xb1\x45\x8d\xdd\x5d\xdb\x80\x4e\xd5\x47\x8d\x32\x0f\xa7\x45\xb9\x60\x00\xb1\x56\x20\x87\x51\x33\x80\xf8\x5f\xd0\x3f\xf2\x2b\xd1\x67\xd1\xe2\xcf\x96\x8a\x54\x43\xfd\xb9\x0b\xd2\xb2\xe3\xe7\x3f\x81\xff\x00\x13\xe0\x7c\x2b\xa2\x5b\x14\x38\x44\xf1\x0b\xe8\xec\x09\x4d\x00\x86\xd0\x68\x29\x3c\x42\xb7\x22\x4e\x4b\x46\xa8\x97\xac\x7c\xd9\x1e\x2c\x36\x2b\x4a\x5f\x9b\x67\x3f\x59\xd6\xd2\x4a\xa8\x18\x74\xee\xdb\x8d\x53\xc0\x9d\xb0\xa7\x15\x30\xb3\xe1\xfa\x9d\xe0\xc2\x5a\xb8\x02\x97\x50\x8b\xe5\x20\xc4\x9c\x11\x34\xee\xa1\x5e\xf4\xaf\xf2\x07\xa9\x45\x87\x8a\xdf\xe2\xb7\x7e\xfd\x27\x6d\xac\x97\xff\x13\xfe\x37\x53\x25\x6a\x9e\xf8\x7f\xa7\x56\x34\x4e\x34\x0e\x50\x8c\xd6\x6c\x54\xe8\x34\x7d\x98\x39\x09\x29\xa6\x85\x22\x27\xc1\x6f\x1c\x2b\xc4\x11\x70\x12\x28\x64\x96\xa4\x88\x05\x1e\x33\x65\x82\x8d\x9f\x60\x3c\xba\xd6\x40\xa5\x69\x1f\xfa\x80\xd7\x52\x1d\x5f\xd5\x1e\xed\x8f\xc4\xda\x89\x0f\x1c\x97\xf4\xf1\xb1\x14\x31\x3d\x6f\xfa\xf2\x67\x83\x44\x54\x9c\xd5\x11\xca\x47\xde\x88\x08\x78\xfb\xcf\x9f\x1c\x27\xb7\x00\xb4\xac\x93\xd3\x36\x3b\x60\x07\xcb\x6b\x1c\x22\xc4\x86\x6e\x6e\x1c\x66\x58\x75\x3c\x8f\x2f\xf0\x9a\x03\x6b\x8c\x31\x35\x45\x38\x1b\x3a\x3e\x07\x69\x93\x6b\x39\x55\x0c\x65\xb0\x50\x03\x5a\x89\x91\xb4\x3e\xdd\x96\xb2\x73\x11\x0c\x7b\x75\xe2\x51\x26\xcb\x12\x0f\x84\xfb\x47\xbe\xf4\xfe\x33\xfe\x5b\x9b\x0c\xd0\x93\xdf\xb0\x71\xb3\x17\x28\x92\x16\xd5\xba\xd8\x9a\x3e\xa3\x9f\xa4\xb3\xa0\x0f\x7f\xb0\xd0\xd0\x84\xb8\x07\x3b\x9e\x45\x6a\x28\x00\x01\x1d\xa6\xc5\x8f\x56\x28\x0d\x89\x68\x7c\x7f\xe9\xdb\x88\xaf\xe1\xfa\x68\x01\x75\xa3\xb2\x19\xcc\x99\x44\x9f\x35\x03\x72\xc4\xad\xc3\x72\xfd\xce\x28\x61\x83\xfa\x31\x52\xb8\xfc\xaf\x99\x2b\x6f\x1d\xc1\xc0\xa9\x23\x7e\xa3\x02\x7f\x91\x06\xa5\x3e\x8a\xd0\xb8\xc8\xdc\x36\xf3\x2b\xc0\x77\x8f\xb0\xfd\x9c\xd4\xaa\x6c\x57\xe0\x53\x27\x46\x06\x80\xf0\x48\xa9\x4a\x00\x62\x89\xa0\x2f\xda\x2a\x81\xf1\x9a\x34\xb1\x1c\x4a\x42\xcc\x3d\x5f\x25\x4a\xca\x34\xf2\x6f\x4d\xa7\x74\xb2\x30\x84\xd1\x7b\xf9\xe0\xd5\xc3\xde\xd8\xaa\x84\xeb\x32\x76\x21\xe1\x11\xeb\x15\x8d\x4c\xf8\x1f\xf1\xec\x8c\x3c\x23\x89\xa6\x96\xdc\x2a\x30\xfe\x70\x1a\xf7\xbe\x67\x3f\x64\x34\x4d\x11\xf1\x11\xff\x04\x33\xda\xb4\xde\x44\x87\x10\x34\x15\x09\x95\x32\x2a\x89\x97\x0a\x4b\xcb\xec\x05\xae\xeb\x51\x4f\x30\x28\x8a\xb6\x62\x85\xb6\x41\x18\x51\xc3\x85\x05\x3a\x72\x91\x7c\x7c\x06\x8a\xa5\x93\x16\xd2\xc5\xc6\xef\x72\x39\xa1\x7c\x42\xf3\xfc\x86\x6d\xe7\x19\xa9\xc2\xb5\x97\x39\x20\xa5\xe8\x23\x24\xd6\x2c\x8c\x2f\xf3\x8b\x43\xf9\x3f\xd1\x57\x8b\xbf\xe2\xe6\xc1\x47\x69\x07\x6d\x48\xd4\x92\xd8\x90\xa0\x04\x78\xd0\xb5\xe5\xce\xc6\x6d\xf9\x92\x15\x2d\x8a\xc1\xa5\x5e\xfe\x18\xfc\xd7\xfa\x42\x42\x4c\x41\x84\x1d\xb0\x2b\xaa\x2e\x60\x37\xd0\x74\x1f\xb6\xc0\xcb\xf7\x26\x67\x80\x2d\xed\xdc\xba\x90\xc3\x05\x76\x7c\x80\x99\x9b\x07\x09\x2c\x5c\x7f\x11\xcc\x3d\x83\x05\xa1\x99\x82\x5c\x46\x6e\xd7\x20\xf4\xb5\x77\x5b\x39\xb2\x2a\x34\x8a\x23\xf9\xe0\xfc\x6a\x70\x6f\x5a\x6e\x24\xfa\x0a\x4b\x46\xd1\xa7\xfc\x4d\x5a\xa1\x12\xf2\xa9\xc5\x4a\xac\xa4\x49\x57\x45\xaa\x50\xa4\x43\xc0\x0c\xa2\x1c\x02\x35\xb0\x3e\x3d\x40\x90\xc0\xc9\x41\x8d\x47\xaa\xcb\xa3\x60\xd8\xce\x4f\xb7\x62\xb3\x50\x10\x83\x28\x7d\xa2\x7e\x6d\x6a\x4f\x7f\x43\x7a\x8d\xae\x2e\xbb\x2b\xc8\x51\xaa\xaf\x55\x38\x4e\xa8\x8b\x0f\x4e\x2f\xe3\x51\x50\x9f\xcb\xe4\xdc\xc7\x4d\x5f\xbe\x03\x77\x96\x2e\x61\xef\x66\xe0\xf9\xbb\xad\x73\x48\x79\xe2\x43\x03\x2c\xb6\x95\x1d\x20\x2a\x55\x1e\xc5\x51\x6c\x38\xef\xa3\xf1\xbd\x2f\xbe\x71\x46\x41\x0d\xd9\x0c\x28\x43\x5f\x1a\x61\x12\x52\x30\x25\xd8\xbc\x46\x41\x35\x41\xd2\x02\x39\xf5\x6d\xe2\x99\x4e\x41\x6b\xac\x30\x90\x22\xde\x61\x04\xa1\x3b\xcd\x04\xe5\x7e\x0d\xe8\x78\xd7\x99\x75\xdc\x3a\xc8\x59\xc6\x10\x96\xa6\x83\xc5\x55\x89\x25\xcb\xee\xc3\xf5\xd0\xa3\x54\xd7\xc0\xe6\xc9\x4b\x78\xbf\x1a\x70\x6b\x62\x28\x3d\x0c\x67\x66\x12\xc8\x16\x9b\xdc\xd3\xc3\xd6\x60\x62\x70\xda\x07\x18\x55\x3f\xba\xc1\x95\x07\x59\x60\x4c\xc2\xf6\xdb\x5a\xd9\x3e\x89\x6a\x4f\xee\x06\x97\x16\x80\xe1\x2a\xd9\xe2\x3a\x2f\x07\x9f\xf8\x10\x8c\xf5\x8e\xf5\x72\x40\x6b\xb4\xb2\x7e\x71\x20\x8f\x8a\xe6\xb1\x69\x5a\xd9\x4b\x68\x42\x56\x0d\xe0\x4a\x1a\x00\x7a\x21\x15\x80\xd0\x2d\x41\x37\x6a\xbb\xf3\xe4\x3e\xec\x65\x16\x00\xb0\x4e\x05\x66\x1e\xf1\xea\x63\xb8\xf8\x78\x04\x3a\x03\xdd\x32\x5b\xd5\x70\x59\x2d\xa7\x36\x5a\x2a\x25\xf6\x1a\xd5\x09\x59\x6d\x03\xd8\x90\x03\x60\x99\x83\x56\x35\x13\x75\x98\x81\x23\xd6\x2d\xb3\x4d\x2c\xef\xc3\x28\x0c\xa1\xcd\x2c\x19\xc5\xb7\x3f\x06\xea\x49\x86\x07\x60\xcd\x47\xdd\xa6\x8c\xb8\xf3\xf3\x5d\x16\xec\xb3\xaa\xf0\x96\x97\x0b\x03\xa3\x54\xa3\xb3\xb0\x81\xda\x1b\x75\x97\x65\xd5\xa8\xda\x35\x64\x5f\x30\xfc\x89\xfa\x98\x9b\xc7\x04\x13\x59\x1d\x78\xe8\x9f\x1b\x9e\xbf\x88\x41\xfd\xe9\x92\x3e\xbc\xe8\x30\xae\x9d\xb2\x19\x70\x97\x59\x60\x88\xb1\x02\x76\xf9\xfe\xfe\x60\x0d\x1b\xe4\x1d\x9f\x2d\x8f\x79\x51\x9d\x12\x91\xcc\xec\x1a\x6e\x22\x03\x16\x3d\x86\xf7\x85\xad\xba\x9e\x8f\xc4\x17\xd5\xdc\xe4\x1a\x79\xb5\x7b\x7f\xb1\xfb\x70\x69\xdf\x76\x4d\xe0\xa7\x17\xe2\xc0\x78\x80\x68\xb5\xf3\xfc\x97\x75\xf8\xab\x77\x4e\x78\xd6\xc0\xa8\x61\x2b\xf8\xea\xdd\x13\x20\xa7\x1e\xfe\xea\xbd\x13\x94\xa3\x20\x55\xb5\x30\x58\x3c\x89\xf6\xf4\x0d\x8b\x40\x2d\x74\x76\xa6\x66\xe2\x8b\x53\x6f\xd8\xa7\x1c\xb7\xe9\xa1\xa6\x19\xf8\x1a\x4c\x86\xa2\x69\xc2\x37\x68\x62\x9a\x8e\x7f\xe5\xb3\xcd\xe1\xb3\x8a\x62\xc6\xce\x75\x59\x69\x6a\x92\x87\xba\xd6\xac\x16\x64\xd2\x1e\x1e\xfc\xf0\xd6\xf5\xf8\xac\xa5\x10\x45\x1a\x3f\xff\x35\x8e\x17\x66\xeb\x94\x71\xae\x30\x6c\x95\x9e\xe1\xf7\xfc\xeb\x03\x9a\x15\x49\xe6\xdc\xca\xd7\xba\x1f\x37\xb2\x37\x3c\xbd\x8a\x94\x52\xd9\xa6\xc5\xf0\x10\xa3\x42\x9c\xa1\x22\x3e\x52\x2e\x91\xe1\xc4\x20\x00\x87\xe3\x63\x6e\xd8\xb4\x20\x02\x43\xee\xf2\xbc\x2c\x09\x80\x44\x63\x06\x60\xaa\x49\x21\xaf\x0a\x3f\x12\x85\xbc\xc4\xbf\x6d\x81\x78\xec\x5f\xc7\x87\xf4\xdb\x5b\x31\x06\xfd\xb5\xb9\x67\x0e\xf2\xbc\x83\xd4\x1a\xfc\x6b\x37\xec\x1a\xea\x85\x48\xc8\x27\x28\x36\xbb\x16\x2d\x86\xfd\x75\xbd\xe9\x0e\x80\x17\xf6\x39\x86\x19\xf8\x40\x64\x98\xe4\x3b\xe9\xa1\x22\xe7\x6d\x8d\x9e\xac\xb0\x53\x6e\x99\xea\xb3\x8a\xb6\x01\x09\x02\x24\x25\xbc\x6a\x27\x66\xbb\xcf\x54\x74\xac\x09\xe4\xd4\x0a\xca\x01\x9c\x55\x30\x73\xe7\xd8\xd9\x0a\x3d\xb3\x9e\xce\x76\xef\x6f\x80\xd0\x00\x38\x6f\x46\x83\xc4\xa3\x9c\x66\x58\x5a\xed\x00\xa9\x38\x7f\x27\x6e\xdc\x63\x2b\xbe\xde\x71\xf3\xdc\xda\x65\x07\xae\x82\x17\x6b\xdd\x9d\x27\x7a\x6d\x63\x39\x58\xd4\x20\x8b\xa7\xec\x3c\x87\xf0\xa9\x4f\x7c\x0b\x4a\x7e\x06\xe3\xca\x8e\x97\x97\xdc\x8a\xab\xae\xf4\xde\xcd\xb9\xee\xd4\xb3\x64\x39\xea\x61\xf9\x42\x8e\x5f\x9f\x5c\x1e\xe1\xb9\x17\xbb\xd7\x51\x96\x89\x5d\x35\x0c\x9e\x31\x1f\x2e\x88\xf9\x4b\xc5\x8b\x24\x12\x41\x7c\x23\x32\xc6\x90\x50\xdb\x1f\x04\x92\xb0\xf0\xc9\xba\x90\x0a\x51\xfc\x57\x8d\x5b\x12\xb9\xbe\xc8\xb8\x77\x2e\x1c\x7f\x92\x30\xeb\xa1\x4e\x38\xbb\x1b\xad\xa8\x17\x21\x29\xb2\xec\xfd\x2e\xc7\x82\x11\x71\xdb\xe4\x46\x62\x08\x48\x52\x04\x47\xa2\x5e\x04\x54\x63\x67\x11\x0f\xe3\x63\xc2\x27\x0b\x92\xe8\xe4\xf1\xb9\x60\x66\x29\x1b\x50\x66\x47\xd0\xc1\xc4\x7d\xe4\xa1\x48\x6c\xeb\x2d\x5d\xd2\x6e\x3c\x5c\x1f\x90\x0d\x83\x62\x7f\x7e\x21\x66\x15\x23\xf3\x0f\x79\x6f\xc4\x5a\xc7\xdc\x25\x79\xfc\x4f\xb2\x57\xfe\x37\x2f\xff\x4a\x69\x4c\xba\x8c\x4b\x95\x6a\xe6\x2e\xea\xc5\x9a\x15\x94\xa1\x80\x0e\x4f\xed\x61\xcc\xf4\xcf\xf3\x70\x6a\x34\x00\xe5\xce\x41\x4e\x44\xf5\x71\x7c\x18\x28\x08\x4a\xbe\x52\xc6\x3a\x05\x2a\xb3\x06\xec\x52\xb1\xe9\xa1\x04\x8c\x01\x39\xb5\xb2\x35\x8c\x99\x7c\x94\xe8\x4a\xfa\x1c\xfb\x94\x5d\xeb\x93\xd6\xd1\x1f\xd6\x4c\x7c\x94\xff\x5a\x37\x5e\xac\xa0\xa6\x72\x14\xa8\x12\x02\x58\x02\x00\x1d\xf8\x23\xe8\xd5\xe1\x43\x73\xb6\xe5\x8f\xb8\xa2\x21\xf6\xfe\x60\xde\xbc\x40\xaa\xde\xa6\x1e\xde\xc6\xeb\xb7\x2c\x64\xeb\xf7\xf4\x83\x89\x97\x2c\x1f\xb3\xe3\x47\xe8\x9f\xac\xed\xa7\x33\xcb\x7b\x89\x0e\x28\xa4\x37\xaf\xda\xd0\x21\xdd\xd4\x65\xa1\x98\x1e\x13\xd0\xf7\x31\x82\x4a\x51\x48\xfa\xdb\x72\x6a\x50\x41\x7d\x7f\x4f\x7f\x97\xd6\xa9\x25\xb9\x8e\xb9\x13\xfe\xf2\x1f\x6b\x1c\x6a\xff\xd3\x09\x4f\x4d\xa0\x38\x80\x97\x2d\x66\x2e\x63\x8f\xc1\x23\xc6\x8f\x18\x0c\x4b\xd2\x47\xf8\x5f\xa3\x84\xb4\xbd\x88\x3c\xb6\x72\xe5\x2b\x4b\xa9\xdc\x9c\x80\x1a\x34\x6c\x15\x87\xc5\x9f\x25\xd5\x92\xb9\x77\x30\x5a\x10\xe8\x51\xb3\x2a\x6b\x08\x70\x2a\x6d\x80\xb9\x20\xf9\xcf\xe8\x1f\x03\x47\xe4\xfb\xf1\x54\x93\xda\xcb\x47\x16\x2e\xee\xe4\xc3\x0d\x60\xce\x1f\x38\x03\x64\x70\x3c\x0a\x7f\x63\xf6\xa1\xf4\xe0\x74\x4b\x0c\x69\x95\x9b\xe4\x8d\xa8\xc8\x08\x56\x42\xed\x96\xe9\xad\xa4\x46\xed\x78\x70\xea\xed\xd2\x49\xf4\xc6\xc5\x3c\x47\x68\x41\xab\x38\x25\xdf\x52\x5f\x11\x9f\xc9\x39\x1a\x53\x50\xd5\x1b\xee\x50\x83\x42\xc5\x74\xb2\x2b\xb8\xf0\xbc\x61\x4a\x4b\x85\x00\x83\x40\x89\xaa\x2e\x71\x61\xaa\x07\xb8\x68\x0a\xa4\xa8\xa7\x69\x32\xaa\x48\xce\x21\xbd\xa4\x58\xfe\x56\x62\x5d\x31\xda\x2c\x35\x55\xa3\x51\xd2\x69\x67\xb7\xfb\x86\x7f\x70\xcb\xea\xa4\xfb\x74\x60\xf1\x60\xab\x69\x7b\xfa\x90\x2a\x5d\xc7\xbe\x1d\x8a\x6a\x5b\x10\xa7\xc9\xfa\x33\xd4\xe9\xa1\x57\x28\xae\xbf\x5b\xc1\x4d\xf0\xdc\xca\x29\x58\x1a\x3f\x86\x26\x71\xc2\x41\x28\x93\x75\x82\x09\x45\x9b\x35\x39\x6a\x54\x87\xb4\x80\x5e\xfe\xeb\xf4\x4c\x05\x75\xf7\x9b\xa5\x49\x96\x08\xaa\x16\xc7\xa1\x7f\xf8\xfd\xe1\xf2\x3f\xf2\x71\xf5\x30\xbf\x54\xca\x82\x82\x1f\x79\x21\x4d\xa7\x37\x9c\x2f\x34\x3d\x52\x74\x28\x37\x14\x66\xd7\x40\x20\xf8\xbb\xef\xeb\x9c\xa1\x99\xa3\x7b\x4a\x7c\xb9\xb4\x90\x6b\x14\x9b\x52\x7d\xc4\xfa\x1b\x00\x71\xb1\x5e\xb3\xff\x49\x08\xf4\xbd\x04\x51\xc4\x4b\x17\xa3\x4a\xb7\x09\x78\x42\xf2\x16\xab\x75\x5b\x0f\xc2\xf5\x5b\xa2\xf9\x4a\x8c\x45\xe4\x8f\x54\xfb\xf9\x8c\x86\xed\x11\xb8\xa8\x07\xf0\xb6\x40\xe3\x2c\x09\x40\x7a\x8e\xed\xbd\xb3\x98\xf8\xf0\x0e\x1a\x24\x24\xa2\x61\xf7\x46\xc4\xd5\x98\xcd\x9b\xea\x95\xcc\x35\xd2\x4c\x58\xa2\x26\x6b\xaa\x59\x47\x6d\x7e\xd6\xb3\x35\xe6\x89\x56\x29\xca\x58\x84\x56\xa9\xd8\xe4\x6c\x74\xed\x25\xcd\x96\xf9\x5d\x67\xa5\x90\xc6\x0a\xbc\xf5\xb1\x36\xb5\xd9\x48\x45\xc0\xcd\xb0\xeb\x05\x9a\x54\xde\x18\x85\xff\xbd\x55\xad\xbe\x55\x2e\x93\x7d\x29\xd8\xbd\xa5\x92\x08\x25\xa7\xae\xb9\x1d\x3d\x79\xb6\x4a\x89\x12\x48\x7b\xcc\x18\x15\x0d\x3e\x30\x73\xc5\xb0\xdc\xd8\x1b\xf1\x7c\x85\xfd\x38\x77\x03\xa6\x1a\x2e\xb3\xf6\x12\x17\x0e\x3d\x61\x48\x99\xdf\xde\xda\xc2\x88\x11\xbd\x67\xf3\x67\xd1\x6f\x47\xab\x74\xae\x7e\x87\x91\x51\x1c\x8e\x66\xce\x20\xc6\x4d\x1b\x05\x31\xae\xf3\xa0\x31\x66\x4e\x1d\xbb\x63\x13\x2e\x09\x97\x2c\x0a\xa0\xa7\xcb\x62\x2b\xb1\x12\x09\xe6\x35\xb3\xa7\x7d\xb8\x57\x0d\xfb\x5a\x06\x96\xfd\x31\x32\xb8\xd7\xac\x4e\x52\x53\x4a\x3a\xa6\x19\x99\x29\xd9\xe4\x1c\xcf\x57\xd9\xc7\x89\xb6\xbc\x7c\x2c\x1f\x9c\x2e\x35\x52\x65\xb8\x5a\x54\xa3\x24\x19\x14\x74\xa2\xc0\x86\x5d\xf7\xa4\xf6\x08\xfd\xab\x3d\x60\xf5\xa6\x6e\x07\xeb\xf3\x11\xc0\x10\xa6\xb7\x33\x60\x28\xcf\x5b\x02\x06\x38\x42\xa7\x64\xa4\xd7\xcc\x1c\x50\x19\xd9\x8b\x46\xe1\x5b\x52\xde\xce\x6e\xf4\xae\x3e\x10\xa7\x8f\xd9\xb1\x08\x28\x9d\x97\x55\x17\x89\xc3\xba\xee\x85\xb5\x41\xd9\x4b\x23\xee\xdf\x48\xa3\x7f\x4d\xc8\x42\x56\xa8\x02\x86\x31\x44\x34\xbe\x2f\x6a\xdb\x07\x86\xd7\x1b\x44\xa3\x2d\x85\x52\x89\x97\x00\xfb\x43\x3c\x3a\x97\x86\xd3\x6e\x66\x2c\x99\xa2\x8b\x23\x8f\x99\xaa\x77\x27\x7f\x44\x77\x24\xb6\x11\xc6\xd3\x0a\x45\x6e\x63\xad\xa5\x28\x18\x4c\xb7\x4f\x79\x52\x29\x48\x12\xb9\x28\x8f\xcd\xe0\xe8\x1c\x61\x58\xc6\xb4\xef\x8c\xe9\x2d\xca\x1e\xa5\x91\x35\x32\xda\x21\x53\x38\x44\x63\x2a\x5b\xc9\x12\xe5\xe6\xe9\x50\xbd\x90\x9b\x19\x39\x1d\xf5\xc6\xce\xc2\xc4\x24\x19\xe5\xe6\x54\x38\x76\x1d\x13\x0c\xee\xcd\x74\x6f\xce\xc4\x46\xaf\x57\x07\x43\xe8\xe1\x1c\x14\xde\xc9\xbf\x65\xe1\xa5\x4d\xfb\x82\x37\x89\xc5\x2e\x60\x96\x33\x48\x1e\x2e\x34\x55\xba\xa5\xe1\x7e\x2d\x3b\xa7\x9c\x72\xb3\x58\xa1\x4c\x55\x19\x7b\xa3\x5b\x7d\xd7\x6c\x15\x98\x18\x72\x13\xd8\xb7\x65\xb8\xf7\x8d\xac\xb7\x7c\x77\xeb\xd4\xa6\x80\xb7\xcc\x5d\xda\x5c\xc3\xcb\xea\x17\xa9\xbf\x28\x03\x84\xf1\xa1\x10\x54\x4b\x87\x74\xc5\x98\x03\x76\x79\x47\x8f\x2c\xf6\x8b\xd7\xbc\xc9\x1f\x52\x8b\x6e\x2e\x13\xa1\x71\xc4\xc7\x28\xa7\xa5\x23\x1f\x7e\xfe\xf9\x5f\x8e\x47\xee\x4a\x03\xc0\x75\xd5\xca\x30\xec\xbe\x7d\x5b\x7b\x37\xdd\x1a\xad\x14\xd9\xe6\x6a\x30\xf4\xca\xa8\xf8\xd8\xd3\xbc\x41\xbc\x6b\x48\xbe\x55\xc5\x67\x47\x47\xe4\x4d\x8b\x43\xc4\x29\xfd\x2b\x10\x09\x64\xcd\xdf\x64\x1d\x14\xf0\xc3\x4a\xf7\x48\x8b\xca\xeb\x0f\x32\x07\xb4\x12\xd1\x29\x37\xb6\xa4\x89\x91\x92\x99\x1d\x27\xff\x49\xaa\x63\x8b\x78\x60\x0c\xf2\x7a\x93\xfc\xa1\xc8\x47\x84\xe7\x31\xc0\x52\x6b\x15\x79\xb2\xb2\x0d\x6c\x4b\x19\xc6\x00\xa7\x1e\xb7\x44\x11\xe2\xd7\xf4\xf9\xee\xfe\x7d\xb2\x1b\x55\x56\xa7\x1c\x05\x01\x13\xe5\x70\x28\xe2\x0d\x7d\xa7\x7a\xc0\x4e\x50\x5f\xef\x71\x5f\x66\x48\xc4\x49\xdb\xae\x1b\x1d\xc4\x87\x1e\x59\xa6\x99\xa6\x45\x9e\x69\x19\xfb\x43\x22\x1a\x2d\x93\x05\x18\x87\xa2\xc2\x7e\xa4\x35\x8a\x96\x31\x88\x6b\x32\x0e\x28\x8d\xfb\xa2\xfd\x03\x20\xed\xb1\xa7\x81\xaa\xc5\x93\xc0\x9c\x2a\xca\x29\xd9\x6c\x0c\xfa\x99\xd1\x1c\xbb\xb2\x2a\x7f\x1c\x4d\x60\x55\x00\x6b\x6a\x1c\x71\xdf\xc6\xb8\x4f\x63\xa2\x0f\x74\xf9\x36\xf1\x4e\x3b\x7f\x13\xe5\x4c\x5f\x92\x49\xf8\x48\xef\x44\xc3\x30\x23\x4c\x74\xed\xd8\xd8\x18\x1f\xb2\xdb\x30\xe3\xc9\x75\x6d\x1d\x20\x80\x11\x86\xd7\xbe\xe7\x0b\x21\xd6\x24\x9b\xbf\x39\x55\x99\x69\x36\xec\xa7\xef\x4c\x18\xfb\xcc\x3d\x46\x40\x87\x42\x94\x0b\x9c\x52\x29\x23\x92\x1d\xf8\x16\x89\xfc\x55\x01\xca\xc1\xb5\x1b\x9c\x09\x0c\xbd\x5a\x68\x9e\x9d\xd3\x5b\xd9\x93\xc4\x55\x1a\xb1\x07\x90\x5b\x90\x58\x9a\x4c\x86\x82\xb8\x09\xbe\x44\xa2\x62\xf6\xb2\xc2\x70\x70\xca\x01\x8a\x1e\xf3\xe4\x72\xdd\xde\x44\x05\x1a\x72\x74\x33\x93\xf0\xbd\xbd\x35\x8d\x6e\x06\xcb\xa7\x51\xf9\x46\x5f\xc8\x09\x89\x23\x6d\xac\x63\x7f\xe9\x3f\x6e\xe9\xb8\x4b\xf6\x3b\x38\x38\xd3\xf4\x5f\x79\xb8\x68\x9f\x99\x0c\x1f\x2c\x70\xa8\x07\xe7\xa9\xa4\x6c\xec\x9a\xa1\x8b\x86\x2f\x33\x8c\xb4\xa1\x12\x11\x25\x4d\xed\x0f\x98\x8e\x9f\x12\x88\x58\xe0\x14\xea\x84\x92\xf2\x23\x1e\x7f\x4c\x88\x8d\xd4\xd7\x12\x8f\x8b\x03\x62\xa7\xf6\x1f\x81\x42\x39\x19\xeb\xeb\xe2\xa8\x92\x0d\xf5\x29\x81\x5c\x49\xe1\x19\x00\x5e\x1d\x2f\x59\x4c\xb0\x43\x7f\xa4\x41\x58\xd4\xf0\xf2\x1f\xf3\xbf\x69\x80\x3a\x67\x98\xc9\x4b\xa6\x99\x34\xc0\x80\x5b\x1e\xcd\x7f\x04\xff\x49\x33\xa9\x92\xed\x5b\xb3\xa8\x88\xcf\x0b\x1b\xf2\xf0\xc0\xa3\x2e\x7a\x73\xce\xb7\xf7\xae\xe1\x49\x53\x09\x36\x39\x22\x02\x9d\x74\x09\xe1\x90\xce\x50\xde\x42\x14\xc4\x19\x35\xc9\xf5\x26\x86\x03\xd2\x1d\xa9\xd9\x85\x1d\x22\x6b\x84\x74\xba\xf2\x80\x23\x53\xf1\xf8\x4c\x4d\x6a\x3f\xf9\x70\xed\x87\xf6\xde\xb4\x8a\xf2\x5c\xa7\x78\x1e\x94\x5a\x22\x63\x06\x39\xa5\x0b\xfb\xb5\x3a\x8f\x4a\x7e\x6a\x50\xda\x21\x2f\x12\xce\x09\x8c\xe8\x0a\xfc\xd9\xec\x8f\xc0\x71\x65\x8e\x8c\xbc\xa4\x65\xfc\x6c\x8e\x48\x81\x28\x33\x9d\x0c\x9a\x5a\x4c\x5d\x09\x02\xac\x62\x5a\x09\x34\xc9\x6c\x1b\xe7\x5e\x78\x5d\x4a\xfe\x80\xf3\x1e\xbb\xda\x1b\x3f\x2f\x6a\x4c\x3c\x9d\x4a\x8b\xc9\x2a\x70\x74\x0f\x5f\x3b\xdd\x5b\xda\xe0\x63\xcd\x87\x4d\xa7\x05\x0b\xe6\x2f\x18\x47\x5c\xe7\xab\xd1\x8c\xb4\x4e\x89\x08\xfc\x2c\x8a\xa9\x94\x0b\x92\x63\xb2\x41\x7a\x00\x21\x1a\x44\xf9\xff\xda\xff\x97\xcf\x2d\x8a\xf2\xa2\x7e\xbf\x79\x6b\x64\x64\xe4\x2d\x3c\x5c\x6f\x35\x1b\x15\xbb\x86\x1f\xcb\x32\x26\x4e\x0a\x24\x51\x65\x30\xa6\x5f\x4b\x38\x28\x90\x0c\x09\x87\x41\x6b\x05\x85\x39\xdf\xb2\x99\x25\xc9\xbc\xac\x70\xf1\xcd\x54\xf2\xac\x22\x30\x09\x3c\x88\xfd\x2a\x6a\x2b\xb9\x3d\x1e\x50\xfc\x93\x51\xe0\xf6\x97\xf2\x47\x12\xc0\x81\x7e\x68\x14\x9f\xc0\x1f\x94\xf3\x39\x01\xc0\x76\xa9\x23\xf8\xdf\xa8\x08\xb5\xf8\xca\x95\x1f\xc3\x1b\xe8\xfa\xc7\x60\xa1\x99\x70\xe5\x5a\xf7\xde\x26\x6c\x91\x41\xd9\x51\x06\xa7\xfd\xc3\xcc\x3e\x89\x36\xc8\x31\xcf\xad\x55\x46\x29\xe3\x2b\xad\x84\x6c\x05\x96\x28\x6c\xe0\xea\x31\x3c\xe6\xea\x94\x20\x2d\x62\x3a\xf3\x9f\x58\xe8\x73\xab\x19\xde\xa8\x44\x33\xbd\x7d\xc9\x26\x38\x7e\x3b\xff\xa9\xed\x5b\x55\xe4\x93\xf0\x97\x35\x32\x0c\x8c\x19\x37\x96\xae\x60\x9a\x0d\xb2\x0b\x79\x69\x3e\x22\xc3\xc7\x9b\xe2\xc2\x67\x89\x93\x46\xd6\x0a\xe4\x8f\xc1\x7f\x32\x97\x46\x93\x2b\xfc\x85\x54\xbc\x68\x30\x6c\xc6\x09\xa3\x3c\x7f\x79\x49\x4c\x43\xb1\xdc\xc9\x42\x9d\xe9\x7d\xf1\xb9\x79\x55\xca\xe5\xb9\x7c\x5a\x12\xb2\x70\x42\x03\xda\x42\xb8\xd6\x8d\x5d\x8c\xad\x3e\x9e\x68\x3a\xce\xc6\x85\xa1\x28\x6a\x22\x20\x30\x49\x30\x34\x03\x40\x04\x23\x93\x01\x10\xc8\xfd\x3a\xd8\x8f\xcf\x14\x86\x59\x75\x20\x61\x86\x59\x1d\xb0\x9b\x49\x41\xae\x4c\x4c\xcd\x21\xbe\x26\x84\x80\xdd\xb5\x2b\xf4\x66\x8c\xc9\x8f\x88\x97\x0f\xb5\x23\x6e\xda\xb1\xc5\xe0\xc3\x12\x51\x38\x9d\x4f\x5f\xbc\xb6\x39\xfc\x33\x66\x6d\xee\xc7\x2a\x6c\xba\xbf\x76\x16\xa6\x13\x5b\x60\x6e\x8f\xe3\xa4\x24\x42\x2a\x51\x16\x4f\x55\x9f\x3c\xb5\xc0\xee\xe3\x2b\x27\xbd\x1b\xdb\xbd\xf1\x4b\xe6\x12\xd5\x2b\xee\xa8\x19\xe4\xcb\x49\xb9\x55\x4c\xaa\x39\xa5\x08\x56\x05\x3e\x67\x82\x92\xa3\x6f\xd4\x2a\xa6\x92\xa5\x7c\x99\xc8\x8c\x73\xb6\x22\x72\xee\x30\x2b\xc7\xe5\x7c\x53\x27\x9b\x31\xd0\x44\x74\x6a\x92\xce\xc5\x43\x68\xcd\x5e\x12\x21\xb4\x31\x54\xf9\x15\xa1\xb4\xe9\xa6\xa2\x50\xda\xd8\x3a\xa5\x83\x64\xcd\xaa\xd9\x51\xb2\x59\xf3\x4c\x2a\x20\x33\x57\x3b\x03\x3e\xa9\x8c\x34\xea\x45\xca\x48\xa5\xab\x91\xa4\xea\xca\x9a\x9e\x08\x30\x4c\x6a\x25\x0f\xec\x56\xcb\x80\xa9\xe1\x1a\x1a\xca\xb2\x33\x38\xd8\x37\xd0\x70\x47\x3c\x0c\x43\x6d\x36\x4a\x20\x77\x8d\xcd\x75\xef\xee\xb2\xc7\x2e\x97\xa3\xf1\x18\x83\xcc\x5a\xcf\x3b\x4f\xc6\x7a\xdb\xdf\xf3\x57\xb6\x1f\x49\x06\x07\xf1\x90\xa5\x02\x32\xe9\x25\xf2\x4c\x93\x39\x02\xae\x7d\x94\x52\xe8\xb2\x64\x50\x6f\xd8\x1d\x29\xe0\x5f\x14\x43\xeb\xe5\x85\xcf\x22\x0e\xab\xf3\xf3\x46\x77\xad\x25\x70\x58\x2a\x0b\x39\xb1\x81\xaf\x55\xa8\x2b\xc4\x12\x97\x0b\xb6\xd9\x83\x3c\x04\xd4\x67\xe1\xa5\x11\x33\x37\x13\xcc\x4c\x84\xd3\x8f\x74\x05\x74\x9d\x7a\x74\x33\x9c\xbb\x18\x4c\xdc\x89\x54\x2d\xc1\xc5\x99\x04\x04\x47\x3f\x6a\x08\x59\x29\x38\xd1\xed\xad\x99\xde\xd8\x33\xcc\x8f\x4e\x9f\xc8\x4d\x9a\x53\xba\x70\x30\x3b\x7b\x48\x2b\x4f\xec\xbe\x6c\x8f\x6c\x55\xca\xee\xf2\xf4\xb7\x38\xe9\x20\x8a\xf2\xdb\x55\x0a\xa6\xdc\x28\x0e\xfa\xf9\xee\xec\x54\x67\xed\x95\xfe\x58\x6f\xd8\xaa\x5e\xef\xc6\x3c\x57\x4d\xd4\x83\x45\xc3\xb5\xef\xdc\xbf\x8f\x71\xbb\xea\xab\xe9\x59\xa2\xbe\x15\x91\xa7\xc7\x27\x00\x30\x2b\x95\x31\xcc\xf6\xcb\x69\xcc\xef\xf4\xe2\x99\xb9\xe2\x87\xcb\xd1\xb2\x25\x5c\xbb\x31\x55\x02\xa6\x33\x64\x6f\x7a\x3d\x0e\xc2\x2b\xce\x60\x1a\x6e\xcd\x0b\x66\x99\x2b\x10\x19\x30\x8e\xa1\x7e\x03\x6e\x52\xb5\x6a\x14\x54\xe2\x53\x80\x2c\xda\x66\xcb\xcd\x92\xdf\x17\x9b\x8a\x51\xf7\xa8\xed\x53\xb0\x87\x52\xa6\x54\xdc\x21\xb2\xc1\xe2\xc5\x4a\xe2\xb4\x87\xea\x34\xf8\xc7\x47\x99\x8c\x58\x08\x2d\x3f\x39\x55\x68\xfd\x14\x72\x13\xaa\x71\x60\x09\xe4\x5d\x16\xd3\x27\x28\x2a\x25\xc6\xd2\xcc\x6b\x15\xab\xa9\xde\xb2\x60\x47\xef\xd6\x92\x19\xf9\x80\xb9\x59\x89\x54\xe1\x01\x67\x1f\x1c\x5d\x95\x88\x2d\xe5\xf4\xd4\xdf\x14\x7d\x3d\xc2\xff\xea\xef\x23\x0d\x52\xb5\x93\x04\x92\xd8\x4f\xf2\x4a\x44\x73\xe4\x62\x0b\x85\x9a\x1b\xf3\x70\xa0\x75\x21\x32\xb6\x94\x7b\x9d\x5e\x36\x01\xb2\xd7\xdd\x99\xe2\xa7\xa8\x92\x98\xc5\x07\xae\x37\xb6\xac\x03\x6e\xf6\x43\x35\xa3\x8e\x0a\xd5\x53\x22\x44\x70\xe1\x1c\x88\xf3\x51\x9e\xbd\xed\xad\xee\xfa\x53\x62\x63\x04\xc9\xc2\x73\x8b\x98\x83\x6e\x61\x15\x43\xb8\x2f\x3e\x0d\x6e\x9d\x89\xf2\x21\xea\x35\x60\xeb\xd3\x11\xfa\x27\xea\x95\x91\x25\x9f\x8d\xfd\x98\xc6\x9d\x8f\x0e\xfa\x7b\x01\x6e\xc7\x0f\x10\x21\x8f\x3e\x7a\xb4\x7e\x82\xf4\x9c\x93\x49\x9f\x3e\xe6\x5a\x14\xa4\x88\xff\xa4\x73\xfd\x82\xbf\xc5\x41\xf1\x86\x90\x82\x28\x11\x4b\x12\x22\xad\x4a\x10\x08\x56\x25\x88\xc6\x96\x92\xe4\xa0\x18\xae\x55\xb2\x80\x5a\x07\xe8\x0d\x52\xbd\x44\x89\x70\xb9\xf1\xd7\xa8\x0b\x92\xa8\x5f\x10\x7b\xba\x24\x71\x33\x6f\x59\xf3\x4a\x16\x0f\x73\x7a\x3e\x40\xef\x83\xb9\x7b\x65\x77\xa4\x86\x58\xe7\xe5\x8f\xaa\xbf\x72\xb9\xaf\xdc\xc6\xd0\x89\x28\x0d\xa7\xca\x48\x6f\xa4\xe0\xa4\x42\x9d\x7b\x4b\x41\xfc\xc5\x54\xf0\xff\x09\x0d\xfc\x98\x9f\xd6\x68\x28\x11\x42\xcc\x2d\xf6\xce\xec\x4a\xde\xea\xb1\xe9\xce\xd3\x9b\x9d\xd5\x75\xb4\x6a\x3c\xb9\x14\x7e\x37\xc7\xf1\xc3\xfc\x72\x12\x25\x86\x3d\xad\x62\x99\xa2\x47\xec\x24\x59\x19\x85\x1b\x31\xf7\x4b\x0f\xc4\x01\x71\x14\x6e\x77\x69\x27\x57\xb7\xdd\x3a\x92\x5b\x43\xfd\x86\x49\x1d\xf1\x99\x2d\xcf\xad\xda\xe4\x38\x7f\x7a\x0c\xad\x2a\xdb\x4b\x68\x83\x25\xb7\x48\x4a\x2a\xea\xa9\x69\x53\xae\xcf\x1c\x25\x98\x13\x15\x1f\x3e\x36\x37\x2b\x8d\xf1\xf7\x44\xc6\xba\xe9\x74\xf8\x15\x36\x19\x7f\xd2\x8f\xdb\xc5\x25\x62\xe6\x97\x87\xc8\xf6\xf4\xec\x54\xa3\xfc\x99\x2f\x5c\xfa\x9c\x84\x36\x1e\x4c\x32\x93\x2e\x61\xcc\x21\x07\x5e\xee\x9d\x95\xcc\x47\x0b\x2f\xa1\xbf\x60\x62\xad\xf7\x50\x56\x45\xe7\x52\xc5\xe6\xa3\x60\xe3\xb1\x60\xee\x4e\xf7\xfe\x06\x77\x04\x44\x07\xe7\xc6\x5d\x03\xd7\x33\x7e\xb5\xbd\x3d\xd6\xdb\xda\x91\x00\x50\xaa\x1e\x8b\x4a\x64\x51\x97\xe9\x2d\x05\x3e\x52\xcd\xa9\x31\x7e\x6b\x0a\x29\x2d\x9b\xe4\xd6\xa7\x3a\x3f\x5d\x45\x41\x37\x33\x1f\x9f\x81\x7d\xff\xde\x94\x7c\x46\x13\x07\x06\x9f\x46\x0f\x10\x52\x8d\xdf\x66\x1b\x8e\x32\xd2\x49\x7f\x13\x6b\x31\x29\x23\xf3\x81\x4c\x5d\x9a\x9d\xa0\xee\x35\x76\xda\xec\x61\xc6\x61\xa3\xac\x20\x06\xf0\xbe\xf2\xa0\xd8\x78\x01\x2d\xff\x23\x26\x5e\xd3\xe0\x97\xb6\x88\x24\xb2\xa3\xc5\x88\x87\x64\x8b\x93\x2a\x11\x71\x94\x03\x1e\x23\x8e\x29\xbb\x4f\xde\x4c\xb3\x99\x92\x71\xb3\xf2\x44\xec\x03\xfa\xfa\x84\x11\x3a\x55\x28\x39\x4b\xfc\xc6\x84\x11\xfb\x58\x57\x32\x33\x47\xec\x33\x42\xa4\x1b\xf2\x2e\x0e\x23\x9b\x99\x3e\x22\x0b\x58\x45\x1f\x0b\xf8\xbf\x2f\x87\x44\x96\xb9\x01\x23\x80\x29\x5f\xbd\x18\x32\xae\x7e\x67\xa8\x0f\x58\x35\x22\xaf\xe8\xb5\x9e\x46\x09\x56\x37\xa7\x11\x50\xad\x94\xf8\x7d\x10\xd5\xd4\x2b\xc5\x59\xb6\x98\xe2\x32\x5b\x51\x52\x79\x3f\x99\xf6\xc6\xcb\x74\xd4\x37\x20\xf8\xe9\x2d\xce\x00\x11\x81\xb0\x55\x31\xcf\x9f\x93\xf5\xb9\x30\xde\x00\xf7\xa4\x61\xd8\x0c\x17\xf9\xe6\xab\xef\x62\xf4\x09\x97\x1f\x03\x65\x4d\xb4\x0b\xbb\x5b\xb2\x31\x4a\xff\xea\x46\xf7\xf2\x5c\x77\xeb\x61\x7b\x7b\x57\x17\xb2\x65\x22\x6f\x26\x1e\xd6\x65\x70\x43\x9f\xc2\xa7\xdc\x30\x73\xad\x7a\x64\x45\x8a\xe4\xf2\xd2\x6a\x44\xca\x15\x8c\x29\x62\xe9\x16\x23\x5f\x64\x84\x47\x8e\x3f\x7a\x67\x89\x08\x1f\xd2\xd7\x44\x2b\xf8\x50\x07\x67\xaa\xe1\xea\x39\xbe\xf9\xfa\x30\x25\xab\xe4\x63\x95\x6b\x8a\xbf\x9b\xe3\x8a\x15\x20\x47\x22\xb9\x84\xf2\xdd\xc7\x63\x68\xe9\x21\xca\x9e\x2e\xd6\x4c\xb8\x71\x97\x20\x92\x90\x71\x53\x82\x5a\x2f\xce\x48\x90\x35\x50\xc2\x8d\x47\x51\xf2\xdd\x28\xa5\x0f\xb5\x4a\xbc\xb6\xea\x35\x78\xf2\x10\xb3\xc7\x9a\xbd\x9a\xe5\xbf\xa2\xdb\xbf\x8f\x8d\x4b\x10\xff\x45\x09\x6f\x7e\x4d\xff\xf2\xc2\xa5\x10\x57\xce\xab\x6a\xf6\x6f\x96\xff\x96\xfe\x31\x0b\x3e\xab\xb7\x61\x20\xfc\x26\x19\xbd\x26\x67\x32\x31\x18\xb9\x41\x8d\x64\x8c\x4b\x45\x91\x47\x37\xae\x19\x4e\xce\x30\x91\x57\x11\x41\xc8\x0d\xc2\x65\xec\x87\x91\xba\xc9\xa3\xa4\xd9\x32\xfa\xd9\x83\x8f\xaf\xc5\xb7\xbc\xa9\x2d\x21\x12\x09\xb4\x67\x56\x5d\x90\x2f\x4c\x19\x36\xe1\xa8\x13\xa3\x03\x3c\x32\xcd\x7e\xf1\xb4\xf8\xd0\x70\xd1\x3e\x7e\x4c\xe9\xd9\xa9\x94\x44\xc4\x8f\x99\x19\x83\x4c\x7c\x46\x15\x15\xb1\x33\xea\x78\xf3\x36\xa4\xbb\x35\x5a\x53\x31\x62\xbc\x3a\x26\x39\x4e\x83\x9a\x19\x97\x32\xd3\x11\x51\xf2\x3d\xbd\x81\xe6\x1d\x73\x30\x85\x36\x87\x88\x09\x58\x90\xc3\x3e\x13\xdc\xde\x08\xce\x6f\xa3\x71\x37\x99\xcd\x3a\x91\x29\x2b\x35\x4e\xad\xa2\x23\xe5\x77\x6c\x6a\x9a\x75\x30\x8e\x78\x8a\xf9\xd3\x18\xc8\x29\xba\x60\x04\xf1\x23\xa5\xf7\x9e\x89\x86\xa9\xc3\x10\x7c\x49\x4c\x08\x78\x5a\x4e\xd8\x9e\x20\x15\xf8\x7e\xce\xdc\x03\x68\x25\x4a\xe2\x69\x12\x81\xff\x73\x03\x33\x75\x52\x4c\x73\x62\x99\x8c\xb2\x69\xc4\x6b\xba\x47\x36\xfb\xf1\x55\xb3\x57\x3e\x0a\xbf\x6a\x39\x78\x80\x69\xe2\xc1\xef\x13\x6b\xfa\x41\x29\xc9\x49\xab\xae\xbc\x0c\xa2\x41\xc6\xa5\x17\xde\x64\x16\x60\x12\xa7\xc1\x78\x18\xdb\x3c\x11\x31\x60\x71\xca\x20\xa7\x39\xbe\xdc\x52\x6d\xd5\x40\xec\x42\xe1\x15\xcd\x09\x2a\xbb\x7c\x70\xe5\x72\xf7\xfe\x5d\x69\xd5\x20\x6e\x5c\xd9\x78\x0b\x40\xe5\x3d\x37\x52\xe6\xf0\x53\x37\xb4\xd4\x27\xf6\x7b\xf6\x9e\x54\x4d\x92\x8a\x59\x52\x3c\x98\x4c\xaa\xe2\x8e\xa5\x28\x23\x03\xb9\x94\x60\xa6\x03\x0c\x03\x56\xcc\xba\x91\xae\x5d\x20\xf8\x95\xba\xd8\xf3\x74\x52\x22\x5e\x49\x79\x7e\xf3\x2e\x9c\x9b\xef\xdc\x96\xc7\x13\x73\x55\xb7\x86\xdd\x45\x0f\xcd\xc2\xe0\x65\xe4\xe4\x56\x54\xa0\x37\xf3\xff\x84\x7f\x72\x26\x45\xfa\xfd\x29\xfc\x95\xf3\x5d\x1f\x78\x8c\xe3\xf8\xdf\x3f\x58\x87\xcb\xb9\x68\x05\x48\x43\x0b\xeb\x0c\x7c\x93\xb4\x4b\xda\x5b\xa5\xeb\xd5\x60\xda\x4d\xcd\x8b\x88\xbc\x4a\x44\x16\xb5\x35\x0a\x1b\x56\x25\x95\x70\x53\x4d\x01\x1f\xc4\xbd\xbb\xd4\x99\x1e\x0b\x27\xa6\xb3\xba\x2d\xa0\xcf\x05\xbf\x71\x10\xbd\xca\x4d\x63\x00\x66\x04\x9f\xa7\x2a\xe3\xf3\x54\xf8\x5a\x91\x7a\xf1\x6f\x26\xfa\x8a\x4a\x01\xda\x93\xe4\x57\x4e\x38\x99\xfa\x2a\xa8\x90\xf5\x95\x73\xb1\x24\xcb\xba\x3f\x9d\x8b\x7d\x0a\x1f\xdd\xc4\x37\x13\x4e\x6f\xc5\xbf\xde\xba\xce\xa7\x8f\x2d\x5c\xa9\x0e\xc8\x57\x39\xd5\x0e\xc5\x42\xa6\xa6\x13\xcf\x02\x19\x2f\xe3\x17\x10\x33\x07\xca\x99\x89\x52\x35\x0c\x9d\x70\xaa\x8c\x1f\xf1\xa4\x37\x58\x63\x05\x06\x6b\x9e\xea\x45\x79\x4c\x27\x0b\x58\x95\x94\x02\xa7\x46\xda\xdb\xdb\xc1\xf4\x72\x6a\x51\xe8\xf4\xa6\xda\xe1\xec\xea\x99\x35\x7a\xcb\xdf\x89\xb1\x3a\x03\x2d\x45\xe5\xcb\xd7\x9c\x3c\xdb\x9e\x01\xc5\xcf\x21\x62\x08\x05\x2c\x63\x26\x44\xa3\x59\x93\x67\x27\x8d\x62\x8c\x41\xc0\x78\x17\xca\xa0\xe9\x52\xe6\x29\xb8\x84\x91\x99\x5b\x79\xc0\x69\x33\xcd\x7d\x3b\xb0\x62\x74\x5f\xb2\x5f\x5d\xbc\x01\x71\x48\xe0\x0b\x3e\xca\xfd\xaa\xdb\x93\x8b\xd7\xa9\x25\x9f\xeb\x52\xe6\x22\xdd\x2a\x1b\xab\x55\x4e\xc1\x5f\xd1\x40\x7a\x60\xba\x09\x98\xd3\x6b\x87\x44\x2a\x36\x74\x80\x73\x4e\xd9\xf1\xc1\xc8\x9d\xb2\x7e\x25\x7c\xb0\xf0\x9a\x7a\x89\x31\x98\x35\x5f\x3b\x00\xba\x3d\x6b\x43\xf2\x5c\xa4\xa8\x68\x8b\x95\x8a\xe9\x88\xd9\xb0\x4b\x6e\xa3\xec\x59\x3e\xda\x10\x2a\xae\xe7\x93\x72\x96\xf3\xc4\x1d\xdc\xa0\x1e\xd9\x87\xbf\xba\x45\x6b\x18\x24\xa1\xfd\xd5\xb6\x7d\x46\x8f\xf8\x1c\xec\x50\x49\xbd\x74\xa9\xde\x57\x67\x2e\x26\xf8\xfe\x4c\xb0\xb2\x87\xae\x88\x0b\xcf\xf7\xa9\x92\xb9\x6c\x78\x31\x1a\x55\xa3\x04\x9a\x94\xde\x3a\xbe\x84\x0d\xdb\x1b\xad\x95\x0a\xf4\xa4\xa9\x37\x4c\xf6\x66\x79\x86\x8f\xd3\x38\xbf\xd1\x07\x9f\xdf\xe6\x0c\x3e\xce\xb7\x36\xd9\x66\x51\xc9\x26\x4f\x4a\xb7\xba\xeb\x77\x83\x0b\x70\x98\xaf\xca\x1b\xb2\xea\x19\x78\x36\x5b\xb6\x5f\xae\xca\x63\x0e\xa2\x42\x98\x3a\xb0\xeb\xe4\x6c\x88\x94\x9b\xc3\xc9\x42\x02\xa3\x19\xc3\xcb\x21\x3e\x8d\xc4\xea\x58\x5f\x12\xa0\xd5\x6b\x9d\x27\x52\xd7\xe2\xc7\x25\xf4\xf3\x0b\x18\x14\xad\xb3\xfa\xd3\x1d\xad\xe6\xbb\xcf\xf8\xcd\x8e\x23\x2b\xae\x5a\xf7\xdf\x30\x92\xf1\xd8\x05\xcd\xef\x88\x37\xeb\xe8\xc6\x9c\x97\x64\x6f\x44\xa0\xc2\xe5\xd3\xbd\xa5\x4b\x26\xb5\x69\x36\xd0\xe0\x5b\x18\x72\x1b\x6e\x13\x64\x1c\x5b\x8c\xbc\xb0\x1f\xf2\x81\x2e\xd9\xde\xe4\x5c\x46\x25\x10\x63\x00\xa1\x0b\x4d\x4a\xc7\x24\xf2\xce\xc4\x3d\x38\x7c\x92\xf7\x38\x56\x89\x18\x0a\x55\x05\x55\xa8\x25\x56\xad\x73\x02\x02\xdc\xe9\xb3\xb8\x64\xec\x68\xb7\x7e\xc5\xa8\x29\x75\xdc\x01\x7c\xbe\x8c\x92\x73\x73\x1f\x0b\xa9\x3e\xea\x2e\xe5\x30\x2c\x54\x60\x3d\x9b\xf5\x02\x4e\x9f\xa4\x8c\xde\xe4\x75\x4e\x2d\x85\xe6\xe0\xc5\xcd\x74\xdb\x6a\x3c\x52\x85\x7b\xe0\x11\xed\x57\x05\x93\x23\xc4\xc0\x7b\x93\xd3\xe1\x42\xba\x07\xb5\x58\xc3\x76\xb1\x1e\x5b\x2a\xeb\x63\xf8\x62\xed\xbf\x60\x54\x21\x39\xf7\x58\x9d\xf4\x02\x98\x75\x9c\x32\xc8\x8d\x06\x7c\xe7\xfe\x56\x6f\xe9\xe2\x01\xf0\xe4\xb8\x21\xb6\x42\xfd\x4e\xb4\x39\xca\x7d\x2a\x8a\xed\xa7\x8c\x3e\xca\xbc\x08\xaf\xa9\xe7\x0e\xfc\x8b\x5d\xf2\x3d\x19\xdc\xd3\xd9\xee\xc6\xcd\x14\x8e\x0d\xb8\xae\x8f\x8f\x99\xd7\x91\x37\x24\xf7\x39\xca\xf9\x45\xbe\x9a\x56\x3f\x7e\xb2\xb2\x16\x8d\x81\x93\xab\x66\xa2\x97\x54\x4e\x63\x19\x66\x68\x84\xce\x1a\xcd\x92\xdf\x84\x23\x2a\x3d\x7e\xd6\x8f\x79\x1d\x31\x14\xff\xde\xf4\xfe\x7b\x95\xaa\x9c\xdd\x75\xba\x31\xb3\x8d\x52\xb1\x34\x6c\x67\x8c\xe0\x08\x7e\x7f\xfd\x10\x52\xd5\xf7\x19\x43\xba\x39\xf3\x04\xd1\xbb\x34\x78\x87\x0d\x34\x4b\x27\x6d\x1f\xe3\x95\x86\x0b\xe4\x5d\x90\xdd\x5e\x30\xb5\x14\x7e\x0f\x72\x63\x2b\xd8\x9c\xe9\xde\x5c\x4b\x35\x08\x17\x4e\xd5\xf6\x8b\xe4\x28\x92\xdd\x00\xdd\x38\x70\xdd\xf4\xae\x9d\x0d\x26\xce\x08\x47\x9f\x6c\xc6\xc5\xc0\xdf\x82\x48\x0b\x72\x5a\x91\xf7\x32\x88\x02\x0a\xa3\x66\xc3\x2c\x4c\xa4\x5a\xc2\x64\x3d\x7c\x0d\x96\x46\x81\xd7\xc2\xbc\x3d\xe8\x02\x12\x1b\x05\x9d\x7e\xba\x03\xe3\x6b\x4c\x32\x12\xd4\x25\xba\xda\x7d\x71\xbd\x77\xed\x16\xa7\x9d\x37\xab\xa7\x68\x2c\x53\x3e\x55\x2d\xd6\x93\x41\x94\x3b\x9b\xbb\x59\x04\x13\xaa\xd5\x31\xf2\x39\x56\x2f\xbc\xfa\x30\x18\x5f\xd9\xa7\x9e\x1a\x24\x57\xcb\x18\x9f\x51\x39\xbe\x51\x42\xcd\xd2\x03\x64\x9a\xc6\xd2\x2e\x07\x27\x48\xa2\x77\x40\x67\xbb\x12\x93\x7f\x4d\xc1\xb8\x2f\xfd\x76\xb6\x58\x29\xe5\xf1\x27\x06\x8a\xbf\x9a\xca\x1f\x15\xaf\x49\x4f\x6d\x89\x17\xa5\x94\x24\xd2\xd9\xf0\x57\xe1\x83\xd8\xb1\x0a\xc6\xca\x5f\xc5\xcf\x53\xf5\xcd\x53\xe6\x22\x79\xcf\x37\xfe\x36\x6c\x3f\x7c\xb4\xf8\x29\x59\x89\xb0\xfa\x1c\x0b\x44\x2c\xb7\x8e\xbb\x16\x3a\xef\x1a\x93\x53\x57\x36\x26\x2d\x91\x89\xb2\x01\x50\x5b\x98\x64\x08\x09\x3e\x8e\x5b\x30\xfd\x73\x64\x72\xc4\xee\xb3\x73\xd6\x87\x31\x9d\x80\xd5\x4f\x5f\x05\x8e\x32\xaa\xe6\x39\x87\xaa\x59\xb5\xe2\x0e\x39\x22\xd8\x24\xaa\x7f\x8a\x25\x6c\x3f\x67\xf8\xe4\x1b\xc1\x9f\xa2\x16\xde\x02\x4e\x94\xf2\x68\xa2\xc9\xad\x81\x8f\x97\xd4\xac\x66\x4d\xb2\x4d\xa8\x61\xef\xf3\x84\x95\x7e\x68\x3d\xfb\xfd\xaa\x68\xca\x91\x41\x8a\x5d\x31\x8c\x4a\x02\xe5\x78\x85\x08\x01\xa2\x07\xdc\xe9\xb9\xf1\x18\x32\x20\x20\xe1\x43\x04\xc4\x46\xe0\xb8\xd2\x57\x2d\x11\x1a\x6e\xd1\x4d\x9e\x18\x2e\x23\xf5\x39\xd5\x61\x24\x31\x62\x66\xb5\xe2\x2d\x56\x9d\xf3\xde\x72\x4e\x5b\xb6\x60\xaa\x8d\xc7\x3d\x8f\x74\x72\xde\x81\x49\x72\x33\x97\x52\x99\x5f\xd3\x0b\x92\x69\x6b\xd4\x73\x56\x28\x9d\x7a\x76\xf0\xff\xe9\xcb\x8a\xe6\x20\xd4\xfb\x8a\xe6\x18\x7e\xfd\xe3\x8a\x70\xbd\x01\x39\xdf\xf7\x89\x45\x63\x49\x4c\xcf\x97\x0f\x8d\x6d\x38\xc0\xf3\x85\x1e\xa6\xeb\xa3\xc8\xaa\x18\x0d\x33\x14\x75\x42\xc3\x08\xd0\xb4\xbc\x6b\x57\x15\xaf\x8f\x7d\x39\x44\x6f\x0a\xf4\x86\x3e\x2a\x43\x82\x3c\xf8\x89\x24\x93\xf6\x9c\xa8\x53\xbc\x3b\x53\xfb\xd7\x59\x9c\x81\x1e\x05\x34\x99\x96\x8b\xbf\x66\x27\xd2\x4f\x1a\x20\x55\x9a\x5c\xaf\x8f\x53\x74\xab\x97\x0b\x71\x24\xfc\x1d\x73\x04\x7b\x92\x24\x38\xfa\x1a\xcb\x54\x4b\xc3\x46\x62\x22\x24\x25\x36\xec\x04\x51\xf9\x8c\xca\xac\x63\x58\x26\x75\x30\x35\xc6\x87\xe5\x32\xbd\x06\x26\x24\x4b\x0a\x52\x4f\x4b\xf3\x77\xf2\xe6\xe6\xef\xe2\xcd\xcd\xdf\xf9\x69\x38\xa2\xff\xc0\xf5\xe1\xc3\x3b\xfc\x3d\xd3\x27\x87\x29\xbb\x31\x6a\x6a\x35\x31\xda\xe3\xf0\xcd\x84\xc9\x22\x93\x44\x20\x19\x26\xee\xd5\xcd\xdf\x86\x41\x5c\xc7\xf7\xbb\xc2\xfb\xab\xea\x49\x2a\xfa\x8e\xa7\x5c\xbe\x77\x1e\x3e\x09\xe6\x7e\x90\xef\xa4\xc4\x29\xc3\x75\x45\x0a\x9b\xa3\x9f\x9b\x9f\xa3\xa7\xd7\xa8\x50\x1e\x58\xcb\x00\x50\x14\xfa\xaf\xc5\x06\x66\x89\xfc\x03\x7b\xa4\xa9\x52\xce\x69\xe3\x36\xe8\x01\x2f\xab\x5e\x41\x92\x8d\xf9\xc7\xc9\x79\x0c\x73\x76\x63\xda\x94\xa2\x35\xec\x0c\x0d\x53\x14\x2c\xd0\x19\x4c\xd0\xa3\x1f\xf6\x93\x55\xc5\x4b\x9d\x92\x5a\xe1\x0d\x67\x49\x60\xe2\x47\xe8\xf2\x66\x00\xc0\x4c\xa8\x58\x4f\xa4\xe8\xfb\x0d\x67\xa0\x89\x46\x5f\xc2\x50\x74\xab\x9a\x0f\x36\x1e\x85\x63\xf7\x52\x10\x5e\x93\xe3\x5f\x82\x7b\x97\xc2\xa7\x73\xfb\x00\xf1\xe3\xe8\xea\x6d\x2e\x7c\x26\xcb\x84\xe3\x3c\x5a\xe2\x24\x8e\x6f\x09\x53\x92\xcf\x60\x59\xe1\x06\xdb\x45\x04\x8a\x0f\x57\x06\x54\x15\x2f\x8d\x82\x57\xcc\x7f\xe6\x59\x1f\x96\xad\xfe\x0f\xe5\xbb\x57\xf5\xeb\x9c\x23\xbe\xff\xb3\xe3\xc7\xac\xfd\xb1\x07\x01\x09\x13\x08\x2e\x03\x1d\x10\x80\x50\xc2\x00\x88\xe1\x85\xb8\x10\x49\xe4\x00\xa9\x88\x28\xaf\xfa\x51\xfe\x9d\x0d\xb5\xff\x4d\x8d\xdb\x0c\x1c\x3f\x2c\x22\x3e\x2d\x50\x1b\xb5\xa4\x46\x9f\xf5\x59\xb3\xe2\x3b\xf5\x8a\xad\xbe\x58\xde\xb0\xdb\xac\x94\x31\xee\xd9\xb3\xeb\xc5\x06\xf1\x26\x03\xa3\x9c\xee\xc7\x7a\xe3\xcd\x37\xfa\x62\xc7\xaf\xe0\x57\x90\x2e\xe0\xf1\xb3\x8e\x7f\xda\x6f\xf1\x83\x63\x6a\x96\x27\x9d\x3a\x02\xc8\xeb\xc3\xf9\x7e\xf8\x4d\x50\xfc\xb6\xbf\x3a\x1a\x68\xf0\xb3\x1b\xa7\x9c\x92\x20\xc9\xb1\x0f\x3f\xb3\x44\x27\x61\xd2\x01\xe9\x90\x92\x12\x29\xbe\x2c\x2f\xa1\xa6\x64\x0e\xe1\xbb\x0e\xf5\x2b\xd3\x8b\x92\x8e\x50\x28\x88\x53\x87\x41\x52\xc2\x13\xb6\x7e\xa8\x16\x91\xbd\xfa\x23\xfc\x27\xb9\x95\xfd\x6c\xce\x55\xab\x6c\x72\x1a\xa6\xe5\x45\x9c\x20\x4d\xe2\x93\xe2\xf9\xe2\x0d\xc7\x59\xbf\x62\xb9\x9c\x62\xfc\x4c\x1a\x16\xdd\x5c\xf1\x56\x7e\xa5\x97\x92\xd9\x54\x5e\xd4\x41\x07\x4e\x54\xbc\x99\x4c\xb7\xd6\x38\x7c\x0c\xae\xc0\x74\x94\xac\xcf\x89\x66\xb5\xaf\x6b\x1a\x9e\x0c\x91\xcc\x15\xc5\xeb\xc0\x97\x21\xd7\xe1\x24\x75\x80\x7c\x72\x37\xbf\x09\x78\xb9\x8f\x87\xab\xd1\x76\xec\x96\x8f\x37\xfb\xba\xcb\x9e\xcd\x66\x4a\x23\xa6\x8c\x68\xea\xf9\x03\xd6\xd1\x29\xa0\x62\xbd\x2e\x36\x01\x76\x2c\x62\xec\x34\x0a\x4f\xd9\xda\x94\xc6\x0e\xc8\x46\x19\x85\x0f\x52\x19\x85\xee\x49\x89\xdc\x21\xd2\x20\xdf\x24\x52\xe4\x0e\x0e\x62\x6e\x2d\x4c\xe5\x48\xce\x2f\x9d\x17\x57\xc3\xb5\x9b\x18\x55\xa8\xea\x3a\x1e\x9d\x08\xd4\xc3\x91\x4e\x6b\x48\xf2\x35\x75\x5f\x60\xa0\x6c\x78\xf9\x4e\xf0\xea\xb2\x02\x6e\x34\xe5\xb1\x67\xe6\xd0\x84\x2f\x34\x0a\xa9\x1b\x11\xe7\x62\xdd\x10\x6f\xd2\x70\x5d\x9f\x1f\x68\x10\x11\xea\xc6\x4b\xce\x8d\xaf\x17\x10\x8d\x6f\xa5\x02\x67\x97\xd7\xc0\xbd\xeb\x2b\xe1\x84\x84\x41\xa4\xaa\xc0\x80\x93\xf0\x3c\xe6\x7d\xe0\xbd\x52\xc3\xa9\x4b\x94\x65\x77\xe2\x47\x58\x5f\xe1\x07\xf4\x40\x31\x5f\x9e\xe0\x19\xcf\x75\x6e\x36\x98\xbf\x80\x41\x06\x40\xe7\xe9\xc8\xea\xb5\x1b\xd0\x7b\xad\x2c\x84\xf1\xbd\x06\x00\x23\x9c\x13\x8b\x63\x7d\x41\x71\xfa\xaa\x8f\xca\x18\x4b\x54\xd5\x38\xa2\x40\x31\x0d\x2e\x32\x4d\xc6\xf6\x02\x8a\x3d\xaf\xc2\xdb\xd1\xdf\xff\xa9\x95\xd8\xf3\xa8\xd4\x78\xdb\x27\x38\x33\x01\x52\x88\x75\x08\x33\xbc\x62\xca\xba\x43\x96\x8a\xa3\x32\x27\xcc\x2b\xac\x7a\xe5\xd7\x34\x12\xc5\xaa\xcd\x7f\xc0\xd4\x66\x87\xbc\xbf\x55\x1c\xdf\x7e\xef\x10\xc5\xad\x1f\xf2\x9d\xf2\xc0\xa1\x7f\x34\x0f\x8c\x43\x91\x1c\xc6\x89\x89\x2f\xa1\x16\x9e\x63\x8f\x6e\xe6\x99\x34\x9b\xcf\x6b\xb2\xdf\x61\x0a\xad\x15\x8d\x17\xa4\xa6\x6a\x1c\xe9\xad\x07\x81\x21\x43\x0d\x43\x1c\x2f\x00\x8f\xe0\xbb\x35\x89\x1d\xe2\x2a\xe1\xcc\x54\xaf\xb5\x18\x0d\x8a\x33\xd2\xaa\x0c\xb5\x14\x1b\x11\xec\xbc\x08\x5a\xcf\xd9\x7a\xc9\x21\x4f\x0a\x5c\xbd\x3f\x4c\xaa\x33\xf5\x66\x30\x25\x4b\xeb\xbc\xb8\x8f\x3a\x5d\x79\x58\x98\xa1\x69\x9e\xa2\x2a\xe0\xa9\x99\x2f\xbe\x26\x27\x48\xc1\x68\xce\xb7\x36\xe7\x24\xcc\x1f\xe5\xcf\xd6\x67\x4e\xcd\xa9\x36\xab\xd6\x7f\xb3\x47\xad\x7e\x7c\xe3\xe7\x08\x16\xa7\x06\x54\x07\x06\xbe\x98\xff\x23\xfd\xb4\x8e\xf0\x4f\x4d\x6f\x38\x8a\x14\xa3\x6c\x0a\x15\x32\x9e\xb1\x50\x2c\xd6\x5e\x7a\x9b\x41\xde\xe6\xa7\x67\x10\x64\x65\xe0\x5e\x89\x78\x4a\xa3\x72\x6f\x12\xb7\x95\xf9\xcf\x7d\x2a\xab\x90\x71\x41\x87\xc8\xdc\x1b\x47\x89\xbf\x35\xed\x26\xb4\x6a\xd7\x86\x90\x38\xa0\x53\xcf\xe5\xde\xe2\x0b\x7c\x72\x4b\xad\x0d\x87\x79\x92\xa6\x09\xc8\x9a\x04\x5c\x77\x9f\x4f\x00\x07\xaf\x77\x3d\xc1\x56\x04\xaf\x76\x3b\x8b\x77\x88\xb1\x90\xf7\x7a\x8c\xed\x88\x88\xba\x6c\x48\x6c\x3c\x02\xa1\x45\x09\xba\xca\x19\x97\x13\x20\x6a\xd3\xe0\x80\xb8\xf9\xce\xdd\x71\xa4\xe3\x1f\xff\xf1\xd3\xbf\x58\xea\xa1\xeb\x18\x34\x0b\x85\x1c\xfc\x3e\x36\x11\x3f\xff\x02\x42\xe4\x83\xc7\x94\x45\x44\x04\x8a\x28\x45\xd4\x10\xdb\x82\xd5\x05\x41\x84\x4e\x66\x67\x1a\x8b\xe3\x73\x64\xb0\x83\xa6\xc8\xd8\x2d\x0d\xb1\xf6\x37\xde\x84\xa0\x7f\x19\xb0\x0c\x86\x23\x10\xe3\x68\xc1\x42\xa6\x39\x06\xa4\xdf\x88\x62\x28\x7e\x1d\x2a\xd5\x51\x4d\x35\x42\xaf\xf1\x05\xeb\x97\x3b\x8f\xee\xb6\x37\x9f\x45\xc4\x85\xbd\x96\x64\x48\xfd\xfc\x33\x31\x28\x05\x84\xc1\x5a\x0e\x27\x4b\x61\x30\x4e\x0b\xc1\x2f\x82\x10\xa4\x82\xd0\xc4\x4a\x01\x24\x66\x09\x08\xec\x08\x0f\x7a\x84\xfe\xb6\xe2\x3b\x27\x67\x0f\x8f\x09\xc3\xca\x6a\xb2\xa3\x9f\xc5\x75\x14\xf0\x50\x49\xaf\x45\x86\x5e\x37\xb6\x2c\x6a\x26\x15\x67\x90\x2d\x46\x7a\x2a\xf8\xee\xd0\x85\xdd\x38\xf4\xb0\xef\xd7\x3d\x89\xc3\x67\xba\x4f\x8f\x38\x25\x66\x11\xb5\x25\x53\xc9\x6a\xaa\xee\x90\x25\x40\xad\x0b\xbf\x50\x1e\x5f\x14\x05\x22\xf4\x5e\x60\xe2\xf8\xa3\xce\xc6\x90\x3c\xba\xae\xce\x87\x7e\x84\x3d\x4e\x25\xf1\xde\x57\x3b\x71\xf9\x4e\xf7\xc1\x4c\xbc\x47\x2c\xa6\xdb\x8f\x0b\xe5\xfe\x53\xae\x4a\x7d\xa5\x06\xe6\xc6\x85\xff\x58\xec\xd2\xa1\x0b\xe4\xa9\xcd\xed\x48\x6e\x50\x25\x1e\xa0\x5a\xb9\x59\xd1\xa5\x8f\xa7\xc2\xf3\x17\xa3\x7a\x92\x9c\x1f\xb5\xe0\xa6\x0d\x54\x95\x9b\x69\xfd\xf7\x83\xb1\xbf\xb1\x4b\xcd\xc8\x3a\x68\x2a\xc5\xa3\x66\x5c\x36\xde\x52\x61\x7b\x73\xbd\x37\xf6\xac\xb3\x36\xad\xcb\x25\xbe\x0e\xbf\xa9\xec\x96\x6a\xf8\xb0\x84\x3e\xdd\x3a\xf7\xa6\x0f\xe8\x97\x14\x21\xe6\xe0\x94\xe3\x97\xf2\xa1\xe2\x9f\x80\x19\x40\x78\x32\x7c\xc1\x14\x34\xb3\x3d\x54\x22\x3c\x8f\x59\x52\x78\x47\x38\x40\xfd\xd5\x4c\xc8\xa9\xbe\xb9\x75\xf1\x9b\x31\xa0\x48\x06\xd0\x41\x21\x46\xff\xa9\x54\x89\x5f\xe1\xfd\xe5\xd6\x4e\x64\x3c\x56\xd7\xde\x3a\xcb\xdd\xc7\xe3\xf3\x0f\xf3\xc3\x0d\x0d\xbb\xa6\x33\xe7\xf1\xdf\x65\xd3\xb1\x22\x96\x9e\xf9\x9d\x28\x0d\x33\x26\x67\xde\xf7\x31\x08\x9d\x96\x1f\x1d\x06\xd9\xc5\x71\xeb\x6c\x32\x85\xb5\xd7\x28\xbd\x9d\xac\x29\xa1\xaf\xf4\x50\x2d\x46\xb9\x62\x40\x6c\xbc\x1a\x02\xff\x93\xea\x86\xa7\xca\x8f\x1a\x7c\x1d\x4d\x96\x54\x6e\xe6\x64\xdf\x66\x65\xdc\xdb\x3c\xed\xdf\x1b\x69\xfe\xa5\x89\x78\x9a\x6e\x65\x5e\x88\xa5\xbf\x35\x9b\x93\xec\xdb\xe9\xd6\x62\xcf\x2c\x7c\xcd\xae\x65\xbf\x71\x44\x19\xe9\x7f\xbf\x96\xfc\xcf\xbf\x79\x3c\x3a\x95\x18\x63\x83\x4a\xbc\xa8\xf6\x53\x6f\xa6\xce\xc4\x98\x89\x21\x94\xa8\x03\x5f\xee\xd2\x5b\xc9\x6e\x66\xb1\x21\xd0\x6e\xc6\x1e\x6c\xc8\xde\x3b\x03\x45\x28\xb7\xfb\xbb\x3a\x39\xb7\xa4\xab\x7a\x97\xc3\xcb\x29\xd5\x8f\x4a\x10\xc4\x99\xe6\x01\xc9\x31\x67\xf2\x89\x5c\x71\xc8\xcd\x63\x68\xf5\xd4\x6c\x8e\xde\x9d\xc3\xd8\x08\x0e\xb5\xce\x51\x98\xc4\xdc\x1e\xbe\x55\xfd\x8e\x97\x7f\xc7\xea\xdc\xbb\x78\xd8\xcb\xbd\x53\x85\x3f\xd1\x86\x39\x7f\x05\x7f\x0d\xe3\x2f\x7a\x79\x11\x7f\x95\xf1\xd7\xed\xfb\xf8\xe7\x08\xfe\x79\x61\x8d\x6a\x00\xc5\x7c\xc7\x0a\x57\x5a\xf8\x63\x14\xbf\xbf\xfc\xe9\x30\x26\x6b\x02\x8a\x5b\xa6\x27\x08\xb8\xe9\x2a\x08\xd6\xbe\xbc\x49\xa0\x3a\x18\x76\x9b\x0d\xfe\xa2\x3a\x29\x17\x47\xf9\x03\xf5\x33\x62\xdb\x27\xf9\x27\xf5\x05\x5d\x81\x54\x4e\x6f\x92\x50\x77\xa3\x76\x51\xaa\x53\x97\x8d\xe2\x48\x41\x75\x0b\x7d\xd2\x6f\xd5\x2b\x77\x09\x0b\x53\x6e\xb8\x75\x4c\x2c\x7a\x42\xbf\x49\xa9\x5e\xf4\x0a\xa7\x97\xc2\x6b\x3f\xb2\x78\x88\xef\x96\x72\xfc\x4f\x6b\x29\x58\x7a\x1c\x5e\x3a\x07\xf4\x39\x38\xfd\x63\x4e\x25\xf1\x75\x6a\xf5\xa6\xca\xc9\x73\x7a\xad\xbd\x89\xe6\x09\x06\xc1\xcc\x0b\xfc\x06\x90\x4a\xf0\xcf\x8f\x98\xc1\x8e\x14\x06\xf0\x56\xe2\x0e\x6e\xdf\x83\x39\x83\x74\xf5\xaf\xff\x4a\xbe\x57\xc0\x8a\xff\xdb\xbf\x59\x9f\x7d\x04\x42\x15\xf0\xa3\xbd\xf1\xf3\x88\x3c\xf8\x3c\xcd\x3d\x56\x42\x19\xf0\xd5\xe2\x37\x7f\x4a\x54\xc9\x89\x83\x32\x99\x71\x24\xfa\x46\xb2\x03\xfc\xef\x00\x00\x00\xff\xff\x5c\xb5\x0e\x79\x6d\xab\x00\x00") func confLocaleLocale_zhHkIniBytes() ([]byte, error) { return bindataRead( @@ -4599,7 +4599,7 @@ func confLocaleLocale_zhHkIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 43960, mode: os.FileMode(493), modTime: time.Unix(1446027992, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 43885, mode: os.FileMode(493), modTime: time.Unix(1448150152, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/cron/parser_test.go b/modules/cron/parser_test.go index 9050cf78..f03299e5 100644 --- a/modules/cron/parser_test.go +++ b/modules/cron/parser_test.go @@ -111,7 +111,7 @@ func TestSpecSchedule(t *testing.T) { t.Error(err) } if !reflect.DeepEqual(actual, c.expected) { - t.Errorf("%s => (expected) %b != %b (actual)", c.expr, c.expected, actual) + t.Errorf("%s => (expected) %v != %v (actual)", c.expr, c.expected, actual) } } } diff --git a/modules/crypto/ssh/agent/client.go b/modules/crypto/ssh/agent/client.go deleted file mode 100755 index 99e30990..00000000 --- a/modules/crypto/ssh/agent/client.go +++ /dev/null @@ -1,615 +0,0 @@ -// Copyright 2012 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -/* - Package agent implements a client to an ssh-agent daemon. - -References: - [PROTOCOL.agent]: http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/PROTOCOL.agent?rev=HEAD -*/ -package agent - -import ( - "bytes" - "crypto/dsa" - "crypto/ecdsa" - "crypto/elliptic" - "crypto/rsa" - "encoding/base64" - "encoding/binary" - "errors" - "fmt" - "io" - "math/big" - "sync" - - "github.com/gogits/gogs/modules/crypto/ssh" -) - -// Agent represents the capabilities of an ssh-agent. -type Agent interface { - // List returns the identities known to the agent. - List() ([]*Key, error) - - // Sign has the agent sign the data using a protocol 2 key as defined - // in [PROTOCOL.agent] section 2.6.2. - Sign(key ssh.PublicKey, data []byte) (*ssh.Signature, error) - - // Add adds a private key to the agent. - Add(key AddedKey) error - - // Remove removes all identities with the given public key. - Remove(key ssh.PublicKey) error - - // RemoveAll removes all identities. - RemoveAll() error - - // Lock locks the agent. Sign and Remove will fail, and List will empty an empty list. - Lock(passphrase []byte) error - - // Unlock undoes the effect of Lock - Unlock(passphrase []byte) error - - // Signers returns signers for all the known keys. - Signers() ([]ssh.Signer, error) -} - -// AddedKey describes an SSH key to be added to an Agent. -type AddedKey struct { - // PrivateKey must be a *rsa.PrivateKey, *dsa.PrivateKey or - // *ecdsa.PrivateKey, which will be inserted into the agent. - PrivateKey interface{} - // Certificate, if not nil, is communicated to the agent and will be - // stored with the key. - Certificate *ssh.Certificate - // Comment is an optional, free-form string. - Comment string - // LifetimeSecs, if not zero, is the number of seconds that the - // agent will store the key for. - LifetimeSecs uint32 - // ConfirmBeforeUse, if true, requests that the agent confirm with the - // user before each use of this key. - ConfirmBeforeUse bool -} - -// See [PROTOCOL.agent], section 3. -const ( - agentRequestV1Identities = 1 - - // 3.2 Requests from client to agent for protocol 2 key operations - agentAddIdentity = 17 - agentRemoveIdentity = 18 - agentRemoveAllIdentities = 19 - agentAddIdConstrained = 25 - - // 3.3 Key-type independent requests from client to agent - agentAddSmartcardKey = 20 - agentRemoveSmartcardKey = 21 - agentLock = 22 - agentUnlock = 23 - agentAddSmartcardKeyConstrained = 26 - - // 3.7 Key constraint identifiers - agentConstrainLifetime = 1 - agentConstrainConfirm = 2 -) - -// maxAgentResponseBytes is the maximum agent reply size that is accepted. This -// is a sanity check, not a limit in the spec. -const maxAgentResponseBytes = 16 << 20 - -// Agent messages: -// These structures mirror the wire format of the corresponding ssh agent -// messages found in [PROTOCOL.agent]. - -// 3.4 Generic replies from agent to client -const agentFailure = 5 - -type failureAgentMsg struct{} - -const agentSuccess = 6 - -type successAgentMsg struct{} - -// See [PROTOCOL.agent], section 2.5.2. -const agentRequestIdentities = 11 - -type requestIdentitiesAgentMsg struct{} - -// See [PROTOCOL.agent], section 2.5.2. -const agentIdentitiesAnswer = 12 - -type identitiesAnswerAgentMsg struct { - NumKeys uint32 `sshtype:"12"` - Keys []byte `ssh:"rest"` -} - -// See [PROTOCOL.agent], section 2.6.2. -const agentSignRequest = 13 - -type signRequestAgentMsg struct { - KeyBlob []byte `sshtype:"13"` - Data []byte - Flags uint32 -} - -// See [PROTOCOL.agent], section 2.6.2. - -// 3.6 Replies from agent to client for protocol 2 key operations -const agentSignResponse = 14 - -type signResponseAgentMsg struct { - SigBlob []byte `sshtype:"14"` -} - -type publicKey struct { - Format string - Rest []byte `ssh:"rest"` -} - -// Key represents a protocol 2 public key as defined in -// [PROTOCOL.agent], section 2.5.2. -type Key struct { - Format string - Blob []byte - Comment string -} - -func clientErr(err error) error { - return fmt.Errorf("agent: client error: %v", err) -} - -// String returns the storage form of an agent key with the format, base64 -// encoded serialized key, and the comment if it is not empty. -func (k *Key) String() string { - s := string(k.Format) + " " + base64.StdEncoding.EncodeToString(k.Blob) - - if k.Comment != "" { - s += " " + k.Comment - } - - return s -} - -// Type returns the public key type. -func (k *Key) Type() string { - return k.Format -} - -// Marshal returns key blob to satisfy the ssh.PublicKey interface. -func (k *Key) Marshal() []byte { - return k.Blob -} - -// Verify satisfies the ssh.PublicKey interface, but is not -// implemented for agent keys. -func (k *Key) Verify(data []byte, sig *ssh.Signature) error { - return errors.New("agent: agent key does not know how to verify") -} - -type wireKey struct { - Format string - Rest []byte `ssh:"rest"` -} - -func parseKey(in []byte) (out *Key, rest []byte, err error) { - var record struct { - Blob []byte - Comment string - Rest []byte `ssh:"rest"` - } - - if err := ssh.Unmarshal(in, &record); err != nil { - return nil, nil, err - } - - var wk wireKey - if err := ssh.Unmarshal(record.Blob, &wk); err != nil { - return nil, nil, err - } - - return &Key{ - Format: wk.Format, - Blob: record.Blob, - Comment: record.Comment, - }, record.Rest, nil -} - -// client is a client for an ssh-agent process. -type client struct { - // conn is typically a *net.UnixConn - conn io.ReadWriter - // mu is used to prevent concurrent access to the agent - mu sync.Mutex -} - -// NewClient returns an Agent that talks to an ssh-agent process over -// the given connection. -func NewClient(rw io.ReadWriter) Agent { - return &client{conn: rw} -} - -// call sends an RPC to the agent. On success, the reply is -// unmarshaled into reply and replyType is set to the first byte of -// the reply, which contains the type of the message. -func (c *client) call(req []byte) (reply interface{}, err error) { - c.mu.Lock() - defer c.mu.Unlock() - - msg := make([]byte, 4+len(req)) - binary.BigEndian.PutUint32(msg, uint32(len(req))) - copy(msg[4:], req) - if _, err = c.conn.Write(msg); err != nil { - return nil, clientErr(err) - } - - var respSizeBuf [4]byte - if _, err = io.ReadFull(c.conn, respSizeBuf[:]); err != nil { - return nil, clientErr(err) - } - respSize := binary.BigEndian.Uint32(respSizeBuf[:]) - if respSize > maxAgentResponseBytes { - return nil, clientErr(err) - } - - buf := make([]byte, respSize) - if _, err = io.ReadFull(c.conn, buf); err != nil { - return nil, clientErr(err) - } - reply, err = unmarshal(buf) - if err != nil { - return nil, clientErr(err) - } - return reply, err -} - -func (c *client) simpleCall(req []byte) error { - resp, err := c.call(req) - if err != nil { - return err - } - if _, ok := resp.(*successAgentMsg); ok { - return nil - } - return errors.New("agent: failure") -} - -func (c *client) RemoveAll() error { - return c.simpleCall([]byte{agentRemoveAllIdentities}) -} - -func (c *client) Remove(key ssh.PublicKey) error { - req := ssh.Marshal(&agentRemoveIdentityMsg{ - KeyBlob: key.Marshal(), - }) - return c.simpleCall(req) -} - -func (c *client) Lock(passphrase []byte) error { - req := ssh.Marshal(&agentLockMsg{ - Passphrase: passphrase, - }) - return c.simpleCall(req) -} - -func (c *client) Unlock(passphrase []byte) error { - req := ssh.Marshal(&agentUnlockMsg{ - Passphrase: passphrase, - }) - return c.simpleCall(req) -} - -// List returns the identities known to the agent. -func (c *client) List() ([]*Key, error) { - // see [PROTOCOL.agent] section 2.5.2. - req := []byte{agentRequestIdentities} - - msg, err := c.call(req) - if err != nil { - return nil, err - } - - switch msg := msg.(type) { - case *identitiesAnswerAgentMsg: - if msg.NumKeys > maxAgentResponseBytes/8 { - return nil, errors.New("agent: too many keys in agent reply") - } - keys := make([]*Key, msg.NumKeys) - data := msg.Keys - for i := uint32(0); i < msg.NumKeys; i++ { - var key *Key - var err error - if key, data, err = parseKey(data); err != nil { - return nil, err - } - keys[i] = key - } - return keys, nil - case *failureAgentMsg: - return nil, errors.New("agent: failed to list keys") - } - panic("unreachable") -} - -// Sign has the agent sign the data using a protocol 2 key as defined -// in [PROTOCOL.agent] section 2.6.2. -func (c *client) Sign(key ssh.PublicKey, data []byte) (*ssh.Signature, error) { - req := ssh.Marshal(signRequestAgentMsg{ - KeyBlob: key.Marshal(), - Data: data, - }) - - msg, err := c.call(req) - if err != nil { - return nil, err - } - - switch msg := msg.(type) { - case *signResponseAgentMsg: - var sig ssh.Signature - if err := ssh.Unmarshal(msg.SigBlob, &sig); err != nil { - return nil, err - } - - return &sig, nil - case *failureAgentMsg: - return nil, errors.New("agent: failed to sign challenge") - } - panic("unreachable") -} - -// unmarshal parses an agent message in packet, returning the parsed -// form and the message type of packet. -func unmarshal(packet []byte) (interface{}, error) { - if len(packet) < 1 { - return nil, errors.New("agent: empty packet") - } - var msg interface{} - switch packet[0] { - case agentFailure: - return new(failureAgentMsg), nil - case agentSuccess: - return new(successAgentMsg), nil - case agentIdentitiesAnswer: - msg = new(identitiesAnswerAgentMsg) - case agentSignResponse: - msg = new(signResponseAgentMsg) - default: - return nil, fmt.Errorf("agent: unknown type tag %d", packet[0]) - } - if err := ssh.Unmarshal(packet, msg); err != nil { - return nil, err - } - return msg, nil -} - -type rsaKeyMsg struct { - Type string `sshtype:"17"` - N *big.Int - E *big.Int - D *big.Int - Iqmp *big.Int // IQMP = Inverse Q Mod P - P *big.Int - Q *big.Int - Comments string - Constraints []byte `ssh:"rest"` -} - -type dsaKeyMsg struct { - Type string `sshtype:"17"` - P *big.Int - Q *big.Int - G *big.Int - Y *big.Int - X *big.Int - Comments string - Constraints []byte `ssh:"rest"` -} - -type ecdsaKeyMsg struct { - Type string `sshtype:"17"` - Curve string - KeyBytes []byte - D *big.Int - Comments string - Constraints []byte `ssh:"rest"` -} - -// Insert adds a private key to the agent. -func (c *client) insertKey(s interface{}, comment string, constraints []byte) error { - var req []byte - switch k := s.(type) { - case *rsa.PrivateKey: - if len(k.Primes) != 2 { - return fmt.Errorf("agent: unsupported RSA key with %d primes", len(k.Primes)) - } - k.Precompute() - req = ssh.Marshal(rsaKeyMsg{ - Type: ssh.KeyAlgoRSA, - N: k.N, - E: big.NewInt(int64(k.E)), - D: k.D, - Iqmp: k.Precomputed.Qinv, - P: k.Primes[0], - Q: k.Primes[1], - Comments: comment, - Constraints: constraints, - }) - case *dsa.PrivateKey: - req = ssh.Marshal(dsaKeyMsg{ - Type: ssh.KeyAlgoDSA, - P: k.P, - Q: k.Q, - G: k.G, - Y: k.Y, - X: k.X, - Comments: comment, - Constraints: constraints, - }) - case *ecdsa.PrivateKey: - nistID := fmt.Sprintf("nistp%d", k.Params().BitSize) - req = ssh.Marshal(ecdsaKeyMsg{ - Type: "ecdsa-sha2-" + nistID, - Curve: nistID, - KeyBytes: elliptic.Marshal(k.Curve, k.X, k.Y), - D: k.D, - Comments: comment, - Constraints: constraints, - }) - default: - return fmt.Errorf("agent: unsupported key type %T", s) - } - - // if constraints are present then the message type needs to be changed. - if len(constraints) != 0 { - req[0] = agentAddIdConstrained - } - - resp, err := c.call(req) - if err != nil { - return err - } - if _, ok := resp.(*successAgentMsg); ok { - return nil - } - return errors.New("agent: failure") -} - -type rsaCertMsg struct { - Type string `sshtype:"17"` - CertBytes []byte - D *big.Int - Iqmp *big.Int // IQMP = Inverse Q Mod P - P *big.Int - Q *big.Int - Comments string - Constraints []byte `ssh:"rest"` -} - -type dsaCertMsg struct { - Type string `sshtype:"17"` - CertBytes []byte - X *big.Int - Comments string - Constraints []byte `ssh:"rest"` -} - -type ecdsaCertMsg struct { - Type string `sshtype:"17"` - CertBytes []byte - D *big.Int - Comments string - Constraints []byte `ssh:"rest"` -} - -// Insert adds a private key to the agent. If a certificate is given, -// that certificate is added instead as public key. -func (c *client) Add(key AddedKey) error { - var constraints []byte - - if secs := key.LifetimeSecs; secs != 0 { - constraints = append(constraints, agentConstrainLifetime) - - var secsBytes [4]byte - binary.BigEndian.PutUint32(secsBytes[:], secs) - constraints = append(constraints, secsBytes[:]...) - } - - if key.ConfirmBeforeUse { - constraints = append(constraints, agentConstrainConfirm) - } - - if cert := key.Certificate; cert == nil { - return c.insertKey(key.PrivateKey, key.Comment, constraints) - } else { - return c.insertCert(key.PrivateKey, cert, key.Comment, constraints) - } -} - -func (c *client) insertCert(s interface{}, cert *ssh.Certificate, comment string, constraints []byte) error { - var req []byte - switch k := s.(type) { - case *rsa.PrivateKey: - if len(k.Primes) != 2 { - return fmt.Errorf("agent: unsupported RSA key with %d primes", len(k.Primes)) - } - k.Precompute() - req = ssh.Marshal(rsaCertMsg{ - Type: cert.Type(), - CertBytes: cert.Marshal(), - D: k.D, - Iqmp: k.Precomputed.Qinv, - P: k.Primes[0], - Q: k.Primes[1], - Comments: comment, - Constraints: constraints, - }) - case *dsa.PrivateKey: - req = ssh.Marshal(dsaCertMsg{ - Type: cert.Type(), - CertBytes: cert.Marshal(), - X: k.X, - Comments: comment, - }) - case *ecdsa.PrivateKey: - req = ssh.Marshal(ecdsaCertMsg{ - Type: cert.Type(), - CertBytes: cert.Marshal(), - D: k.D, - Comments: comment, - }) - default: - return fmt.Errorf("agent: unsupported key type %T", s) - } - - // if constraints are present then the message type needs to be changed. - if len(constraints) != 0 { - req[0] = agentAddIdConstrained - } - - signer, err := ssh.NewSignerFromKey(s) - if err != nil { - return err - } - if bytes.Compare(cert.Key.Marshal(), signer.PublicKey().Marshal()) != 0 { - return errors.New("agent: signer and cert have different public key") - } - - resp, err := c.call(req) - if err != nil { - return err - } - if _, ok := resp.(*successAgentMsg); ok { - return nil - } - return errors.New("agent: failure") -} - -// Signers provides a callback for client authentication. -func (c *client) Signers() ([]ssh.Signer, error) { - keys, err := c.List() - if err != nil { - return nil, err - } - - var result []ssh.Signer - for _, k := range keys { - result = append(result, &agentKeyringSigner{c, k}) - } - return result, nil -} - -type agentKeyringSigner struct { - agent *client - pub ssh.PublicKey -} - -func (s *agentKeyringSigner) PublicKey() ssh.PublicKey { - return s.pub -} - -func (s *agentKeyringSigner) Sign(rand io.Reader, data []byte) (*ssh.Signature, error) { - // The agent has its own entropy source, so the rand argument is ignored. - return s.agent.Sign(s.pub, data) -} diff --git a/modules/crypto/ssh/agent/client_test.go b/modules/crypto/ssh/agent/client_test.go deleted file mode 100755 index 82b63515..00000000 --- a/modules/crypto/ssh/agent/client_test.go +++ /dev/null @@ -1,287 +0,0 @@ -// Copyright 2012 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package agent - -import ( - "bytes" - "crypto/rand" - "errors" - "net" - "os" - "os/exec" - "path/filepath" - "strconv" - "testing" - - "github.com/gogits/gogs/modules/crypto/ssh" -) - -// startAgent executes ssh-agent, and returns a Agent interface to it. -func startAgent(t *testing.T) (client Agent, socket string, cleanup func()) { - if testing.Short() { - // ssh-agent is not always available, and the key - // types supported vary by platform. - t.Skip("skipping test due to -short") - } - - bin, err := exec.LookPath("ssh-agent") - if err != nil { - t.Skip("could not find ssh-agent") - } - - cmd := exec.Command(bin, "-s") - out, err := cmd.Output() - if err != nil { - t.Fatalf("cmd.Output: %v", err) - } - - /* Output looks like: - - SSH_AUTH_SOCK=/tmp/ssh-P65gpcqArqvH/agent.15541; export SSH_AUTH_SOCK; - SSH_AGENT_PID=15542; export SSH_AGENT_PID; - echo Agent pid 15542; - */ - fields := bytes.Split(out, []byte(";")) - line := bytes.SplitN(fields[0], []byte("="), 2) - line[0] = bytes.TrimLeft(line[0], "\n") - if string(line[0]) != "SSH_AUTH_SOCK" { - t.Fatalf("could not find key SSH_AUTH_SOCK in %q", fields[0]) - } - socket = string(line[1]) - - line = bytes.SplitN(fields[2], []byte("="), 2) - line[0] = bytes.TrimLeft(line[0], "\n") - if string(line[0]) != "SSH_AGENT_PID" { - t.Fatalf("could not find key SSH_AGENT_PID in %q", fields[2]) - } - pidStr := line[1] - pid, err := strconv.Atoi(string(pidStr)) - if err != nil { - t.Fatalf("Atoi(%q): %v", pidStr, err) - } - - conn, err := net.Dial("unix", string(socket)) - if err != nil { - t.Fatalf("net.Dial: %v", err) - } - - ac := NewClient(conn) - return ac, socket, func() { - proc, _ := os.FindProcess(pid) - if proc != nil { - proc.Kill() - } - conn.Close() - os.RemoveAll(filepath.Dir(socket)) - } -} - -func testAgent(t *testing.T, key interface{}, cert *ssh.Certificate, lifetimeSecs uint32) { - agent, _, cleanup := startAgent(t) - defer cleanup() - - testAgentInterface(t, agent, key, cert, lifetimeSecs) -} - -func testAgentInterface(t *testing.T, agent Agent, key interface{}, cert *ssh.Certificate, lifetimeSecs uint32) { - signer, err := ssh.NewSignerFromKey(key) - if err != nil { - t.Fatalf("NewSignerFromKey(%T): %v", key, err) - } - // The agent should start up empty. - if keys, err := agent.List(); err != nil { - t.Fatalf("RequestIdentities: %v", err) - } else if len(keys) > 0 { - t.Fatalf("got %d keys, want 0: %v", len(keys), keys) - } - - // Attempt to insert the key, with certificate if specified. - var pubKey ssh.PublicKey - if cert != nil { - err = agent.Add(AddedKey{ - PrivateKey: key, - Certificate: cert, - Comment: "comment", - LifetimeSecs: lifetimeSecs, - }) - pubKey = cert - } else { - err = agent.Add(AddedKey{PrivateKey: key, Comment: "comment", LifetimeSecs: lifetimeSecs}) - pubKey = signer.PublicKey() - } - if err != nil { - t.Fatalf("insert(%T): %v", key, err) - } - - // Did the key get inserted successfully? - if keys, err := agent.List(); err != nil { - t.Fatalf("List: %v", err) - } else if len(keys) != 1 { - t.Fatalf("got %v, want 1 key", keys) - } else if keys[0].Comment != "comment" { - t.Fatalf("key comment: got %v, want %v", keys[0].Comment, "comment") - } else if !bytes.Equal(keys[0].Blob, pubKey.Marshal()) { - t.Fatalf("key mismatch") - } - - // Can the agent make a valid signature? - data := []byte("hello") - sig, err := agent.Sign(pubKey, data) - if err != nil { - t.Fatalf("Sign(%s): %v", pubKey.Type(), err) - } - - if err := pubKey.Verify(data, sig); err != nil { - t.Fatalf("Verify(%s): %v", pubKey.Type(), err) - } -} - -func TestAgent(t *testing.T) { - for _, keyType := range []string{"rsa", "dsa", "ecdsa"} { - testAgent(t, testPrivateKeys[keyType], nil, 0) - } -} - -func TestCert(t *testing.T) { - cert := &ssh.Certificate{ - Key: testPublicKeys["rsa"], - ValidBefore: ssh.CertTimeInfinity, - CertType: ssh.UserCert, - } - cert.SignCert(rand.Reader, testSigners["ecdsa"]) - - testAgent(t, testPrivateKeys["rsa"], cert, 0) -} - -func TestConstraints(t *testing.T) { - testAgent(t, testPrivateKeys["rsa"], nil, 3600 /* lifetime in seconds */) -} - -// netPipe is analogous to net.Pipe, but it uses a real net.Conn, and -// therefore is buffered (net.Pipe deadlocks if both sides start with -// a write.) -func netPipe() (net.Conn, net.Conn, error) { - listener, err := net.Listen("tcp", "127.0.0.1:0") - if err != nil { - return nil, nil, err - } - defer listener.Close() - c1, err := net.Dial("tcp", listener.Addr().String()) - if err != nil { - return nil, nil, err - } - - c2, err := listener.Accept() - if err != nil { - c1.Close() - return nil, nil, err - } - - return c1, c2, nil -} - -func TestAuth(t *testing.T) { - a, b, err := netPipe() - if err != nil { - t.Fatalf("netPipe: %v", err) - } - - defer a.Close() - defer b.Close() - - agent, _, cleanup := startAgent(t) - defer cleanup() - - if err := agent.Add(AddedKey{PrivateKey: testPrivateKeys["rsa"], Comment: "comment"}); err != nil { - t.Errorf("Add: %v", err) - } - - serverConf := ssh.ServerConfig{} - serverConf.AddHostKey(testSigners["rsa"]) - serverConf.PublicKeyCallback = func(c ssh.ConnMetadata, key ssh.PublicKey) (*ssh.Permissions, error) { - if bytes.Equal(key.Marshal(), testPublicKeys["rsa"].Marshal()) { - return nil, nil - } - - return nil, errors.New("pubkey rejected") - } - - go func() { - conn, _, _, err := ssh.NewServerConn(a, &serverConf) - if err != nil { - t.Fatalf("Server: %v", err) - } - conn.Close() - }() - - conf := ssh.ClientConfig{} - conf.Auth = append(conf.Auth, ssh.PublicKeysCallback(agent.Signers)) - conn, _, _, err := ssh.NewClientConn(b, "", &conf) - if err != nil { - t.Fatalf("NewClientConn: %v", err) - } - conn.Close() -} - -func TestLockClient(t *testing.T) { - agent, _, cleanup := startAgent(t) - defer cleanup() - testLockAgent(agent, t) -} - -func testLockAgent(agent Agent, t *testing.T) { - if err := agent.Add(AddedKey{PrivateKey: testPrivateKeys["rsa"], Comment: "comment 1"}); err != nil { - t.Errorf("Add: %v", err) - } - if err := agent.Add(AddedKey{PrivateKey: testPrivateKeys["dsa"], Comment: "comment dsa"}); err != nil { - t.Errorf("Add: %v", err) - } - if keys, err := agent.List(); err != nil { - t.Errorf("List: %v", err) - } else if len(keys) != 2 { - t.Errorf("Want 2 keys, got %v", keys) - } - - passphrase := []byte("secret") - if err := agent.Lock(passphrase); err != nil { - t.Errorf("Lock: %v", err) - } - - if keys, err := agent.List(); err != nil { - t.Errorf("List: %v", err) - } else if len(keys) != 0 { - t.Errorf("Want 0 keys, got %v", keys) - } - - signer, _ := ssh.NewSignerFromKey(testPrivateKeys["rsa"]) - if _, err := agent.Sign(signer.PublicKey(), []byte("hello")); err == nil { - t.Fatalf("Sign did not fail") - } - - if err := agent.Remove(signer.PublicKey()); err == nil { - t.Fatalf("Remove did not fail") - } - - if err := agent.RemoveAll(); err == nil { - t.Fatalf("RemoveAll did not fail") - } - - if err := agent.Unlock(nil); err == nil { - t.Errorf("Unlock with wrong passphrase succeeded") - } - if err := agent.Unlock(passphrase); err != nil { - t.Errorf("Unlock: %v", err) - } - - if err := agent.Remove(signer.PublicKey()); err != nil { - t.Fatalf("Remove: %v", err) - } - - if keys, err := agent.List(); err != nil { - t.Errorf("List: %v", err) - } else if len(keys) != 1 { - t.Errorf("Want 1 keys, got %v", keys) - } -} diff --git a/modules/crypto/ssh/agent/forward.go b/modules/crypto/ssh/agent/forward.go deleted file mode 100755 index 8b54acb0..00000000 --- a/modules/crypto/ssh/agent/forward.go +++ /dev/null @@ -1,103 +0,0 @@ -// Copyright 2014 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package agent - -import ( - "errors" - "io" - "net" - "sync" - - "github.com/gogits/gogs/modules/crypto/ssh" -) - -// RequestAgentForwarding sets up agent forwarding for the session. -// ForwardToAgent or ForwardToRemote should be called to route -// the authentication requests. -func RequestAgentForwarding(session *ssh.Session) error { - ok, err := session.SendRequest("auth-agent-req@openssh.com", true, nil) - if err != nil { - return err - } - if !ok { - return errors.New("forwarding request denied") - } - return nil -} - -// ForwardToAgent routes authentication requests to the given keyring. -func ForwardToAgent(client *ssh.Client, keyring Agent) error { - channels := client.HandleChannelOpen(channelType) - if channels == nil { - return errors.New("agent: already have handler for " + channelType) - } - - go func() { - for ch := range channels { - channel, reqs, err := ch.Accept() - if err != nil { - continue - } - go ssh.DiscardRequests(reqs) - go func() { - ServeAgent(keyring, channel) - channel.Close() - }() - } - }() - return nil -} - -const channelType = "auth-agent@openssh.com" - -// ForwardToRemote routes authentication requests to the ssh-agent -// process serving on the given unix socket. -func ForwardToRemote(client *ssh.Client, addr string) error { - channels := client.HandleChannelOpen(channelType) - if channels == nil { - return errors.New("agent: already have handler for " + channelType) - } - conn, err := net.Dial("unix", addr) - if err != nil { - return err - } - conn.Close() - - go func() { - for ch := range channels { - channel, reqs, err := ch.Accept() - if err != nil { - continue - } - go ssh.DiscardRequests(reqs) - go forwardUnixSocket(channel, addr) - } - }() - return nil -} - -func forwardUnixSocket(channel ssh.Channel, addr string) { - conn, err := net.Dial("unix", addr) - if err != nil { - return - } - - var wg sync.WaitGroup - wg.Add(2) - go func() { - io.Copy(conn, channel) - conn.(*net.UnixConn).CloseWrite() - wg.Done() - }() - go func() { - io.Copy(channel, conn) - channel.CloseWrite() - wg.Done() - }() - - wg.Wait() - conn.Close() - channel.Close() -} diff --git a/modules/crypto/ssh/agent/keyring.go b/modules/crypto/ssh/agent/keyring.go deleted file mode 100755 index e27c2c94..00000000 --- a/modules/crypto/ssh/agent/keyring.go +++ /dev/null @@ -1,184 +0,0 @@ -// Copyright 2014 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package agent - -import ( - "bytes" - "crypto/rand" - "crypto/subtle" - "errors" - "fmt" - "sync" - - "github.com/gogits/gogs/modules/crypto/ssh" -) - -type privKey struct { - signer ssh.Signer - comment string -} - -type keyring struct { - mu sync.Mutex - keys []privKey - - locked bool - passphrase []byte -} - -var errLocked = errors.New("agent: locked") - -// NewKeyring returns an Agent that holds keys in memory. It is safe -// for concurrent use by multiple goroutines. -func NewKeyring() Agent { - return &keyring{} -} - -// RemoveAll removes all identities. -func (r *keyring) RemoveAll() error { - r.mu.Lock() - defer r.mu.Unlock() - if r.locked { - return errLocked - } - - r.keys = nil - return nil -} - -// Remove removes all identities with the given public key. -func (r *keyring) Remove(key ssh.PublicKey) error { - r.mu.Lock() - defer r.mu.Unlock() - if r.locked { - return errLocked - } - - want := key.Marshal() - found := false - for i := 0; i < len(r.keys); { - if bytes.Equal(r.keys[i].signer.PublicKey().Marshal(), want) { - found = true - r.keys[i] = r.keys[len(r.keys)-1] - r.keys = r.keys[len(r.keys)-1:] - continue - } else { - i++ - } - } - - if !found { - return errors.New("agent: key not found") - } - return nil -} - -// Lock locks the agent. Sign and Remove will fail, and List will empty an empty list. -func (r *keyring) Lock(passphrase []byte) error { - r.mu.Lock() - defer r.mu.Unlock() - if r.locked { - return errLocked - } - - r.locked = true - r.passphrase = passphrase - return nil -} - -// Unlock undoes the effect of Lock -func (r *keyring) Unlock(passphrase []byte) error { - r.mu.Lock() - defer r.mu.Unlock() - if !r.locked { - return errors.New("agent: not locked") - } - if len(passphrase) != len(r.passphrase) || 1 != subtle.ConstantTimeCompare(passphrase, r.passphrase) { - return fmt.Errorf("agent: incorrect passphrase") - } - - r.locked = false - r.passphrase = nil - return nil -} - -// List returns the identities known to the agent. -func (r *keyring) List() ([]*Key, error) { - r.mu.Lock() - defer r.mu.Unlock() - if r.locked { - // section 2.7: locked agents return empty. - return nil, nil - } - - var ids []*Key - for _, k := range r.keys { - pub := k.signer.PublicKey() - ids = append(ids, &Key{ - Format: pub.Type(), - Blob: pub.Marshal(), - Comment: k.comment}) - } - return ids, nil -} - -// Insert adds a private key to the keyring. If a certificate -// is given, that certificate is added as public key. Note that -// any constraints given are ignored. -func (r *keyring) Add(key AddedKey) error { - r.mu.Lock() - defer r.mu.Unlock() - if r.locked { - return errLocked - } - signer, err := ssh.NewSignerFromKey(key.PrivateKey) - - if err != nil { - return err - } - - if cert := key.Certificate; cert != nil { - signer, err = ssh.NewCertSigner(cert, signer) - if err != nil { - return err - } - } - - r.keys = append(r.keys, privKey{signer, key.Comment}) - - return nil -} - -// Sign returns a signature for the data. -func (r *keyring) Sign(key ssh.PublicKey, data []byte) (*ssh.Signature, error) { - r.mu.Lock() - defer r.mu.Unlock() - if r.locked { - return nil, errLocked - } - - wanted := key.Marshal() - for _, k := range r.keys { - if bytes.Equal(k.signer.PublicKey().Marshal(), wanted) { - return k.signer.Sign(rand.Reader, data) - } - } - return nil, errors.New("not found") -} - -// Signers returns signers for all the known keys. -func (r *keyring) Signers() ([]ssh.Signer, error) { - r.mu.Lock() - defer r.mu.Unlock() - if r.locked { - return nil, errLocked - } - - s := make([]ssh.Signer, 0, len(r.keys)) - for _, k := range r.keys { - s = append(s, k.signer) - } - return s, nil -} diff --git a/modules/crypto/ssh/agent/server.go b/modules/crypto/ssh/agent/server.go deleted file mode 100755 index 71ec3bc0..00000000 --- a/modules/crypto/ssh/agent/server.go +++ /dev/null @@ -1,209 +0,0 @@ -// Copyright 2012 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package agent - -import ( - "crypto/rsa" - "encoding/binary" - "fmt" - "io" - "log" - "math/big" - - "github.com/gogits/gogs/modules/crypto/ssh" -) - -// Server wraps an Agent and uses it to implement the agent side of -// the SSH-agent, wire protocol. -type server struct { - agent Agent -} - -func (s *server) processRequestBytes(reqData []byte) []byte { - rep, err := s.processRequest(reqData) - if err != nil { - if err != errLocked { - // TODO(hanwen): provide better logging interface? - log.Printf("agent %d: %v", reqData[0], err) - } - return []byte{agentFailure} - } - - if err == nil && rep == nil { - return []byte{agentSuccess} - } - - return ssh.Marshal(rep) -} - -func marshalKey(k *Key) []byte { - var record struct { - Blob []byte - Comment string - } - record.Blob = k.Marshal() - record.Comment = k.Comment - - return ssh.Marshal(&record) -} - -type agentV1IdentityMsg struct { - Numkeys uint32 `sshtype:"2"` -} - -type agentRemoveIdentityMsg struct { - KeyBlob []byte `sshtype:"18"` -} - -type agentLockMsg struct { - Passphrase []byte `sshtype:"22"` -} - -type agentUnlockMsg struct { - Passphrase []byte `sshtype:"23"` -} - -func (s *server) processRequest(data []byte) (interface{}, error) { - switch data[0] { - case agentRequestV1Identities: - return &agentV1IdentityMsg{0}, nil - case agentRemoveIdentity: - var req agentRemoveIdentityMsg - if err := ssh.Unmarshal(data, &req); err != nil { - return nil, err - } - - var wk wireKey - if err := ssh.Unmarshal(req.KeyBlob, &wk); err != nil { - return nil, err - } - - return nil, s.agent.Remove(&Key{Format: wk.Format, Blob: req.KeyBlob}) - - case agentRemoveAllIdentities: - return nil, s.agent.RemoveAll() - - case agentLock: - var req agentLockMsg - if err := ssh.Unmarshal(data, &req); err != nil { - return nil, err - } - - return nil, s.agent.Lock(req.Passphrase) - - case agentUnlock: - var req agentLockMsg - if err := ssh.Unmarshal(data, &req); err != nil { - return nil, err - } - return nil, s.agent.Unlock(req.Passphrase) - - case agentSignRequest: - var req signRequestAgentMsg - if err := ssh.Unmarshal(data, &req); err != nil { - return nil, err - } - - var wk wireKey - if err := ssh.Unmarshal(req.KeyBlob, &wk); err != nil { - return nil, err - } - - k := &Key{ - Format: wk.Format, - Blob: req.KeyBlob, - } - - sig, err := s.agent.Sign(k, req.Data) // TODO(hanwen): flags. - if err != nil { - return nil, err - } - return &signResponseAgentMsg{SigBlob: ssh.Marshal(sig)}, nil - case agentRequestIdentities: - keys, err := s.agent.List() - if err != nil { - return nil, err - } - - rep := identitiesAnswerAgentMsg{ - NumKeys: uint32(len(keys)), - } - for _, k := range keys { - rep.Keys = append(rep.Keys, marshalKey(k)...) - } - return rep, nil - case agentAddIdentity: - return nil, s.insertIdentity(data) - } - - return nil, fmt.Errorf("unknown opcode %d", data[0]) -} - -func (s *server) insertIdentity(req []byte) error { - var record struct { - Type string `sshtype:"17"` - Rest []byte `ssh:"rest"` - } - if err := ssh.Unmarshal(req, &record); err != nil { - return err - } - - switch record.Type { - case ssh.KeyAlgoRSA: - var k rsaKeyMsg - if err := ssh.Unmarshal(req, &k); err != nil { - return err - } - - priv := rsa.PrivateKey{ - PublicKey: rsa.PublicKey{ - E: int(k.E.Int64()), - N: k.N, - }, - D: k.D, - Primes: []*big.Int{k.P, k.Q}, - } - priv.Precompute() - - return s.agent.Add(AddedKey{PrivateKey: &priv, Comment: k.Comments}) - } - return fmt.Errorf("not implemented: %s", record.Type) -} - -// ServeAgent serves the agent protocol on the given connection. It -// returns when an I/O error occurs. -func ServeAgent(agent Agent, c io.ReadWriter) error { - s := &server{agent} - - var length [4]byte - for { - if _, err := io.ReadFull(c, length[:]); err != nil { - return err - } - l := binary.BigEndian.Uint32(length[:]) - if l > maxAgentResponseBytes { - // We also cap requests. - return fmt.Errorf("agent: request too large: %d", l) - } - - req := make([]byte, l) - if _, err := io.ReadFull(c, req); err != nil { - return err - } - - repData := s.processRequestBytes(req) - if len(repData) > maxAgentResponseBytes { - return fmt.Errorf("agent: reply too large: %d bytes", len(repData)) - } - - binary.BigEndian.PutUint32(length[:], uint32(len(repData))) - if _, err := c.Write(length[:]); err != nil { - return err - } - if _, err := c.Write(repData); err != nil { - return err - } - } -} diff --git a/modules/crypto/ssh/agent/server_test.go b/modules/crypto/ssh/agent/server_test.go deleted file mode 100755 index 7f257bcf..00000000 --- a/modules/crypto/ssh/agent/server_test.go +++ /dev/null @@ -1,77 +0,0 @@ -// Copyright 2012 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package agent - -import ( - "testing" - - "github.com/gogits/gogs/modules/crypto/ssh" -) - -func TestServer(t *testing.T) { - c1, c2, err := netPipe() - if err != nil { - t.Fatalf("netPipe: %v", err) - } - defer c1.Close() - defer c2.Close() - client := NewClient(c1) - - go ServeAgent(NewKeyring(), c2) - - testAgentInterface(t, client, testPrivateKeys["rsa"], nil, 0) -} - -func TestLockServer(t *testing.T) { - testLockAgent(NewKeyring(), t) -} - -func TestSetupForwardAgent(t *testing.T) { - a, b, err := netPipe() - if err != nil { - t.Fatalf("netPipe: %v", err) - } - - defer a.Close() - defer b.Close() - - _, socket, cleanup := startAgent(t) - defer cleanup() - - serverConf := ssh.ServerConfig{ - NoClientAuth: true, - } - serverConf.AddHostKey(testSigners["rsa"]) - incoming := make(chan *ssh.ServerConn, 1) - go func() { - conn, _, _, err := ssh.NewServerConn(a, &serverConf) - if err != nil { - t.Fatalf("Server: %v", err) - } - incoming <- conn - }() - - conf := ssh.ClientConfig{} - conn, chans, reqs, err := ssh.NewClientConn(b, "", &conf) - if err != nil { - t.Fatalf("NewClientConn: %v", err) - } - client := ssh.NewClient(conn, chans, reqs) - - if err := ForwardToRemote(client, socket); err != nil { - t.Fatalf("SetupForwardAgent: %v", err) - } - - server := <-incoming - ch, reqs, err := server.OpenChannel(channelType, nil) - if err != nil { - t.Fatalf("OpenChannel(%q): %v", channelType, err) - } - go ssh.DiscardRequests(reqs) - - agentClient := NewClient(ch) - testAgentInterface(t, agentClient, testPrivateKeys["rsa"], nil, 0) - conn.Close() -} diff --git a/modules/crypto/ssh/agent/testdata_test.go b/modules/crypto/ssh/agent/testdata_test.go deleted file mode 100755 index 18dcde29..00000000 --- a/modules/crypto/ssh/agent/testdata_test.go +++ /dev/null @@ -1,64 +0,0 @@ -// Copyright 2014 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// IMPLEMENTOR NOTE: To avoid a package loop, this file is in three places: -// ssh/, ssh/agent, and ssh/test/. It should be kept in sync across all three -// instances. - -package agent - -import ( - "crypto/rand" - "fmt" - - "github.com/gogits/gogs/modules/crypto/ssh" - "github.com/gogits/gogs/modules/crypto/ssh/testdata" -) - -var ( - testPrivateKeys map[string]interface{} - testSigners map[string]ssh.Signer - testPublicKeys map[string]ssh.PublicKey -) - -func init() { - var err error - - n := len(testdata.PEMBytes) - testPrivateKeys = make(map[string]interface{}, n) - testSigners = make(map[string]ssh.Signer, n) - testPublicKeys = make(map[string]ssh.PublicKey, n) - for t, k := range testdata.PEMBytes { - testPrivateKeys[t], err = ssh.ParseRawPrivateKey(k) - if err != nil { - panic(fmt.Sprintf("Unable to parse test key %s: %v", t, err)) - } - testSigners[t], err = ssh.NewSignerFromKey(testPrivateKeys[t]) - if err != nil { - panic(fmt.Sprintf("Unable to create signer for test key %s: %v", t, err)) - } - testPublicKeys[t] = testSigners[t].PublicKey() - } - - // Create a cert and sign it for use in tests. - testCert := &ssh.Certificate{ - Nonce: []byte{}, // To pass reflect.DeepEqual after marshal & parse, this must be non-nil - ValidPrincipals: []string{"gopher1", "gopher2"}, // increases test coverage - ValidAfter: 0, // unix epoch - ValidBefore: ssh.CertTimeInfinity, // The end of currently representable time. - Reserved: []byte{}, // To pass reflect.DeepEqual after marshal & parse, this must be non-nil - Key: testPublicKeys["ecdsa"], - SignatureKey: testPublicKeys["rsa"], - Permissions: ssh.Permissions{ - CriticalOptions: map[string]string{}, - Extensions: map[string]string{}, - }, - } - testCert.SignCert(rand.Reader, testSigners["rsa"]) - testPrivateKeys["cert"] = testPrivateKeys["ecdsa"] - testSigners["cert"], err = ssh.NewCertSigner(testCert, testSigners["ecdsa"]) - if err != nil { - panic(fmt.Sprintf("Unable to create certificate signer: %v", err)) - } -} diff --git a/modules/crypto/ssh/benchmark_test.go b/modules/crypto/ssh/benchmark_test.go deleted file mode 100755 index d9f7eb9b..00000000 --- a/modules/crypto/ssh/benchmark_test.go +++ /dev/null @@ -1,122 +0,0 @@ -// Copyright 2013 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "errors" - "io" - "net" - "testing" -) - -type server struct { - *ServerConn - chans <-chan NewChannel -} - -func newServer(c net.Conn, conf *ServerConfig) (*server, error) { - sconn, chans, reqs, err := NewServerConn(c, conf) - if err != nil { - return nil, err - } - go DiscardRequests(reqs) - return &server{sconn, chans}, nil -} - -func (s *server) Accept() (NewChannel, error) { - n, ok := <-s.chans - if !ok { - return nil, io.EOF - } - return n, nil -} - -func sshPipe() (Conn, *server, error) { - c1, c2, err := netPipe() - if err != nil { - return nil, nil, err - } - - clientConf := ClientConfig{ - User: "user", - } - serverConf := ServerConfig{ - NoClientAuth: true, - } - serverConf.AddHostKey(testSigners["ecdsa"]) - done := make(chan *server, 1) - go func() { - server, err := newServer(c2, &serverConf) - if err != nil { - done <- nil - } - done <- server - }() - - client, _, reqs, err := NewClientConn(c1, "", &clientConf) - if err != nil { - return nil, nil, err - } - - server := <-done - if server == nil { - return nil, nil, errors.New("server handshake failed.") - } - go DiscardRequests(reqs) - - return client, server, nil -} - -func BenchmarkEndToEnd(b *testing.B) { - b.StopTimer() - - client, server, err := sshPipe() - if err != nil { - b.Fatalf("sshPipe: %v", err) - } - - defer client.Close() - defer server.Close() - - size := (1 << 20) - input := make([]byte, size) - output := make([]byte, size) - b.SetBytes(int64(size)) - done := make(chan int, 1) - - go func() { - newCh, err := server.Accept() - if err != nil { - b.Fatalf("Client: %v", err) - } - ch, incoming, err := newCh.Accept() - go DiscardRequests(incoming) - for i := 0; i < b.N; i++ { - if _, err := io.ReadFull(ch, output); err != nil { - b.Fatalf("ReadFull: %v", err) - } - } - ch.Close() - done <- 1 - }() - - ch, in, err := client.OpenChannel("speed", nil) - if err != nil { - b.Fatalf("OpenChannel: %v", err) - } - go DiscardRequests(in) - - b.ResetTimer() - b.StartTimer() - for i := 0; i < b.N; i++ { - if _, err := ch.Write(input); err != nil { - b.Fatalf("WriteFull: %v", err) - } - } - ch.Close() - b.StopTimer() - - <-done -} diff --git a/modules/crypto/ssh/buffer.go b/modules/crypto/ssh/buffer.go deleted file mode 100755 index 6931b511..00000000 --- a/modules/crypto/ssh/buffer.go +++ /dev/null @@ -1,98 +0,0 @@ -// Copyright 2012 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "io" - "sync" -) - -// buffer provides a linked list buffer for data exchange -// between producer and consumer. Theoretically the buffer is -// of unlimited capacity as it does no allocation of its own. -type buffer struct { - // protects concurrent access to head, tail and closed - *sync.Cond - - head *element // the buffer that will be read first - tail *element // the buffer that will be read last - - closed bool -} - -// An element represents a single link in a linked list. -type element struct { - buf []byte - next *element -} - -// newBuffer returns an empty buffer that is not closed. -func newBuffer() *buffer { - e := new(element) - b := &buffer{ - Cond: newCond(), - head: e, - tail: e, - } - return b -} - -// write makes buf available for Read to receive. -// buf must not be modified after the call to write. -func (b *buffer) write(buf []byte) { - b.Cond.L.Lock() - e := &element{buf: buf} - b.tail.next = e - b.tail = e - b.Cond.Signal() - b.Cond.L.Unlock() -} - -// eof closes the buffer. Reads from the buffer once all -// the data has been consumed will receive os.EOF. -func (b *buffer) eof() error { - b.Cond.L.Lock() - b.closed = true - b.Cond.Signal() - b.Cond.L.Unlock() - return nil -} - -// Read reads data from the internal buffer in buf. Reads will block -// if no data is available, or until the buffer is closed. -func (b *buffer) Read(buf []byte) (n int, err error) { - b.Cond.L.Lock() - defer b.Cond.L.Unlock() - - for len(buf) > 0 { - // if there is data in b.head, copy it - if len(b.head.buf) > 0 { - r := copy(buf, b.head.buf) - buf, b.head.buf = buf[r:], b.head.buf[r:] - n += r - continue - } - // if there is a next buffer, make it the head - if len(b.head.buf) == 0 && b.head != b.tail { - b.head = b.head.next - continue - } - - // if at least one byte has been copied, return - if n > 0 { - break - } - - // if nothing was read, and there is nothing outstanding - // check to see if the buffer is closed. - if b.closed { - err = io.EOF - break - } - // out of buffers, wait for producer - b.Cond.Wait() - } - return -} diff --git a/modules/crypto/ssh/buffer_test.go b/modules/crypto/ssh/buffer_test.go deleted file mode 100755 index d5781cb3..00000000 --- a/modules/crypto/ssh/buffer_test.go +++ /dev/null @@ -1,87 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "io" - "testing" -) - -var alphabet = []byte("abcdefghijklmnopqrstuvwxyz") - -func TestBufferReadwrite(t *testing.T) { - b := newBuffer() - b.write(alphabet[:10]) - r, _ := b.Read(make([]byte, 10)) - if r != 10 { - t.Fatalf("Expected written == read == 10, written: 10, read %d", r) - } - - b = newBuffer() - b.write(alphabet[:5]) - r, _ = b.Read(make([]byte, 10)) - if r != 5 { - t.Fatalf("Expected written == read == 5, written: 5, read %d", r) - } - - b = newBuffer() - b.write(alphabet[:10]) - r, _ = b.Read(make([]byte, 5)) - if r != 5 { - t.Fatalf("Expected written == 10, read == 5, written: 10, read %d", r) - } - - b = newBuffer() - b.write(alphabet[:5]) - b.write(alphabet[5:15]) - r, _ = b.Read(make([]byte, 10)) - r2, _ := b.Read(make([]byte, 10)) - if r != 10 || r2 != 5 || 15 != r+r2 { - t.Fatal("Expected written == read == 15") - } -} - -func TestBufferClose(t *testing.T) { - b := newBuffer() - b.write(alphabet[:10]) - b.eof() - _, err := b.Read(make([]byte, 5)) - if err != nil { - t.Fatal("expected read of 5 to not return EOF") - } - b = newBuffer() - b.write(alphabet[:10]) - b.eof() - r, err := b.Read(make([]byte, 5)) - r2, err2 := b.Read(make([]byte, 10)) - if r != 5 || r2 != 5 || err != nil || err2 != nil { - t.Fatal("expected reads of 5 and 5") - } - - b = newBuffer() - b.write(alphabet[:10]) - b.eof() - r, err = b.Read(make([]byte, 5)) - r2, err2 = b.Read(make([]byte, 10)) - r3, err3 := b.Read(make([]byte, 10)) - if r != 5 || r2 != 5 || r3 != 0 || err != nil || err2 != nil || err3 != io.EOF { - t.Fatal("expected reads of 5 and 5 and 0, with EOF") - } - - b = newBuffer() - b.write(make([]byte, 5)) - b.write(make([]byte, 10)) - b.eof() - r, err = b.Read(make([]byte, 9)) - r2, err2 = b.Read(make([]byte, 3)) - r3, err3 = b.Read(make([]byte, 3)) - r4, err4 := b.Read(make([]byte, 10)) - if err != nil || err2 != nil || err3 != nil || err4 != io.EOF { - t.Fatalf("Expected EOF on forth read only, err=%v, err2=%v, err3=%v, err4=%v", err, err2, err3, err4) - } - if r != 9 || r2 != 3 || r3 != 3 || r4 != 0 { - t.Fatal("Expected written == read == 15", r, r2, r3, r4) - } -} diff --git a/modules/crypto/ssh/certs.go b/modules/crypto/ssh/certs.go deleted file mode 100755 index 38577003..00000000 --- a/modules/crypto/ssh/certs.go +++ /dev/null @@ -1,501 +0,0 @@ -// Copyright 2012 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "bytes" - "errors" - "fmt" - "io" - "net" - "sort" - "time" -) - -// These constants from [PROTOCOL.certkeys] represent the algorithm names -// for certificate types supported by this package. -const ( - CertAlgoRSAv01 = "ssh-rsa-cert-v01@openssh.com" - CertAlgoDSAv01 = "ssh-dss-cert-v01@openssh.com" - CertAlgoECDSA256v01 = "ecdsa-sha2-nistp256-cert-v01@openssh.com" - CertAlgoECDSA384v01 = "ecdsa-sha2-nistp384-cert-v01@openssh.com" - CertAlgoECDSA521v01 = "ecdsa-sha2-nistp521-cert-v01@openssh.com" -) - -// Certificate types distinguish between host and user -// certificates. The values can be set in the CertType field of -// Certificate. -const ( - UserCert = 1 - HostCert = 2 -) - -// Signature represents a cryptographic signature. -type Signature struct { - Format string - Blob []byte -} - -// CertTimeInfinity can be used for OpenSSHCertV01.ValidBefore to indicate that -// a certificate does not expire. -const CertTimeInfinity = 1<<64 - 1 - -// An Certificate represents an OpenSSH certificate as defined in -// [PROTOCOL.certkeys]?rev=1.8. -type Certificate struct { - Nonce []byte - Key PublicKey - Serial uint64 - CertType uint32 - KeyId string - ValidPrincipals []string - ValidAfter uint64 - ValidBefore uint64 - Permissions - Reserved []byte - SignatureKey PublicKey - Signature *Signature -} - -// genericCertData holds the key-independent part of the certificate data. -// Overall, certificates contain an nonce, public key fields and -// key-independent fields. -type genericCertData struct { - Serial uint64 - CertType uint32 - KeyId string - ValidPrincipals []byte - ValidAfter uint64 - ValidBefore uint64 - CriticalOptions []byte - Extensions []byte - Reserved []byte - SignatureKey []byte - Signature []byte -} - -func marshalStringList(namelist []string) []byte { - var to []byte - for _, name := range namelist { - s := struct{ N string }{name} - to = append(to, Marshal(&s)...) - } - return to -} - -type optionsTuple struct { - Key string - Value []byte -} - -type optionsTupleValue struct { - Value string -} - -// serialize a map of critical options or extensions -// issue #10569 - per [PROTOCOL.certkeys] and SSH implementation, -// we need two length prefixes for a non-empty string value -func marshalTuples(tups map[string]string) []byte { - keys := make([]string, 0, len(tups)) - for key := range tups { - keys = append(keys, key) - } - sort.Strings(keys) - - var ret []byte - for _, key := range keys { - s := optionsTuple{Key: key} - if value := tups[key]; len(value) > 0 { - s.Value = Marshal(&optionsTupleValue{value}) - } - ret = append(ret, Marshal(&s)...) - } - return ret -} - -// issue #10569 - per [PROTOCOL.certkeys] and SSH implementation, -// we need two length prefixes for a non-empty option value -func parseTuples(in []byte) (map[string]string, error) { - tups := map[string]string{} - var lastKey string - var haveLastKey bool - - for len(in) > 0 { - var key, val, extra []byte - var ok bool - - if key, in, ok = parseString(in); !ok { - return nil, errShortRead - } - keyStr := string(key) - // according to [PROTOCOL.certkeys], the names must be in - // lexical order. - if haveLastKey && keyStr <= lastKey { - return nil, fmt.Errorf("ssh: certificate options are not in lexical order") - } - lastKey, haveLastKey = keyStr, true - // the next field is a data field, which if non-empty has a string embedded - if val, in, ok = parseString(in); !ok { - return nil, errShortRead - } - if len(val) > 0 { - val, extra, ok = parseString(val) - if !ok { - return nil, errShortRead - } - if len(extra) > 0 { - return nil, fmt.Errorf("ssh: unexpected trailing data after certificate option value") - } - tups[keyStr] = string(val) - } else { - tups[keyStr] = "" - } - } - return tups, nil -} - -func parseCert(in []byte, privAlgo string) (*Certificate, error) { - nonce, rest, ok := parseString(in) - if !ok { - return nil, errShortRead - } - - key, rest, err := parsePubKey(rest, privAlgo) - if err != nil { - return nil, err - } - - var g genericCertData - if err := Unmarshal(rest, &g); err != nil { - return nil, err - } - - c := &Certificate{ - Nonce: nonce, - Key: key, - Serial: g.Serial, - CertType: g.CertType, - KeyId: g.KeyId, - ValidAfter: g.ValidAfter, - ValidBefore: g.ValidBefore, - } - - for principals := g.ValidPrincipals; len(principals) > 0; { - principal, rest, ok := parseString(principals) - if !ok { - return nil, errShortRead - } - c.ValidPrincipals = append(c.ValidPrincipals, string(principal)) - principals = rest - } - - c.CriticalOptions, err = parseTuples(g.CriticalOptions) - if err != nil { - return nil, err - } - c.Extensions, err = parseTuples(g.Extensions) - if err != nil { - return nil, err - } - c.Reserved = g.Reserved - k, err := ParsePublicKey(g.SignatureKey) - if err != nil { - return nil, err - } - - c.SignatureKey = k - c.Signature, rest, ok = parseSignatureBody(g.Signature) - if !ok || len(rest) > 0 { - return nil, errors.New("ssh: signature parse error") - } - - return c, nil -} - -type openSSHCertSigner struct { - pub *Certificate - signer Signer -} - -// NewCertSigner returns a Signer that signs with the given Certificate, whose -// private key is held by signer. It returns an error if the public key in cert -// doesn't match the key used by signer. -func NewCertSigner(cert *Certificate, signer Signer) (Signer, error) { - if bytes.Compare(cert.Key.Marshal(), signer.PublicKey().Marshal()) != 0 { - return nil, errors.New("ssh: signer and cert have different public key") - } - - return &openSSHCertSigner{cert, signer}, nil -} - -func (s *openSSHCertSigner) Sign(rand io.Reader, data []byte) (*Signature, error) { - return s.signer.Sign(rand, data) -} - -func (s *openSSHCertSigner) PublicKey() PublicKey { - return s.pub -} - -const sourceAddressCriticalOption = "source-address" - -// CertChecker does the work of verifying a certificate. Its methods -// can be plugged into ClientConfig.HostKeyCallback and -// ServerConfig.PublicKeyCallback. For the CertChecker to work, -// minimally, the IsAuthority callback should be set. -type CertChecker struct { - // SupportedCriticalOptions lists the CriticalOptions that the - // server application layer understands. These are only used - // for user certificates. - SupportedCriticalOptions []string - - // IsAuthority should return true if the key is recognized as - // an authority. This allows for certificates to be signed by other - // certificates. - IsAuthority func(auth PublicKey) bool - - // Clock is used for verifying time stamps. If nil, time.Now - // is used. - Clock func() time.Time - - // UserKeyFallback is called when CertChecker.Authenticate encounters a - // public key that is not a certificate. It must implement validation - // of user keys or else, if nil, all such keys are rejected. - UserKeyFallback func(conn ConnMetadata, key PublicKey) (*Permissions, error) - - // HostKeyFallback is called when CertChecker.CheckHostKey encounters a - // public key that is not a certificate. It must implement host key - // validation or else, if nil, all such keys are rejected. - HostKeyFallback func(addr string, remote net.Addr, key PublicKey) error - - // IsRevoked is called for each certificate so that revocation checking - // can be implemented. It should return true if the given certificate - // is revoked and false otherwise. If nil, no certificates are - // considered to have been revoked. - IsRevoked func(cert *Certificate) bool -} - -// CheckHostKey checks a host key certificate. This method can be -// plugged into ClientConfig.HostKeyCallback. -func (c *CertChecker) CheckHostKey(addr string, remote net.Addr, key PublicKey) error { - cert, ok := key.(*Certificate) - if !ok { - if c.HostKeyFallback != nil { - return c.HostKeyFallback(addr, remote, key) - } - return errors.New("ssh: non-certificate host key") - } - if cert.CertType != HostCert { - return fmt.Errorf("ssh: certificate presented as a host key has type %d", cert.CertType) - } - - return c.CheckCert(addr, cert) -} - -// Authenticate checks a user certificate. Authenticate can be used as -// a value for ServerConfig.PublicKeyCallback. -func (c *CertChecker) Authenticate(conn ConnMetadata, pubKey PublicKey) (*Permissions, error) { - cert, ok := pubKey.(*Certificate) - if !ok { - if c.UserKeyFallback != nil { - return c.UserKeyFallback(conn, pubKey) - } - return nil, errors.New("ssh: normal key pairs not accepted") - } - - if cert.CertType != UserCert { - return nil, fmt.Errorf("ssh: cert has type %d", cert.CertType) - } - - if err := c.CheckCert(conn.User(), cert); err != nil { - return nil, err - } - - return &cert.Permissions, nil -} - -// CheckCert checks CriticalOptions, ValidPrincipals, revocation, timestamp and -// the signature of the certificate. -func (c *CertChecker) CheckCert(principal string, cert *Certificate) error { - if c.IsRevoked != nil && c.IsRevoked(cert) { - return fmt.Errorf("ssh: certicate serial %d revoked", cert.Serial) - } - - for opt, _ := range cert.CriticalOptions { - // sourceAddressCriticalOption will be enforced by - // serverAuthenticate - if opt == sourceAddressCriticalOption { - continue - } - - found := false - for _, supp := range c.SupportedCriticalOptions { - if supp == opt { - found = true - break - } - } - if !found { - return fmt.Errorf("ssh: unsupported critical option %q in certificate", opt) - } - } - - if len(cert.ValidPrincipals) > 0 { - // By default, certs are valid for all users/hosts. - found := false - for _, p := range cert.ValidPrincipals { - if p == principal { - found = true - break - } - } - if !found { - return fmt.Errorf("ssh: principal %q not in the set of valid principals for given certificate: %q", principal, cert.ValidPrincipals) - } - } - - if !c.IsAuthority(cert.SignatureKey) { - return fmt.Errorf("ssh: certificate signed by unrecognized authority") - } - - clock := c.Clock - if clock == nil { - clock = time.Now - } - - unixNow := clock().Unix() - if after := int64(cert.ValidAfter); after < 0 || unixNow < int64(cert.ValidAfter) { - return fmt.Errorf("ssh: cert is not yet valid") - } - if before := int64(cert.ValidBefore); cert.ValidBefore != uint64(CertTimeInfinity) && (unixNow >= before || before < 0) { - return fmt.Errorf("ssh: cert has expired") - } - if err := cert.SignatureKey.Verify(cert.bytesForSigning(), cert.Signature); err != nil { - return fmt.Errorf("ssh: certificate signature does not verify") - } - - return nil -} - -// SignCert sets c.SignatureKey to the authority's public key and stores a -// Signature, by authority, in the certificate. -func (c *Certificate) SignCert(rand io.Reader, authority Signer) error { - c.Nonce = make([]byte, 32) - if _, err := io.ReadFull(rand, c.Nonce); err != nil { - return err - } - c.SignatureKey = authority.PublicKey() - - sig, err := authority.Sign(rand, c.bytesForSigning()) - if err != nil { - return err - } - c.Signature = sig - return nil -} - -var certAlgoNames = map[string]string{ - KeyAlgoRSA: CertAlgoRSAv01, - KeyAlgoDSA: CertAlgoDSAv01, - KeyAlgoECDSA256: CertAlgoECDSA256v01, - KeyAlgoECDSA384: CertAlgoECDSA384v01, - KeyAlgoECDSA521: CertAlgoECDSA521v01, -} - -// certToPrivAlgo returns the underlying algorithm for a certificate algorithm. -// Panics if a non-certificate algorithm is passed. -func certToPrivAlgo(algo string) string { - for privAlgo, pubAlgo := range certAlgoNames { - if pubAlgo == algo { - return privAlgo - } - } - panic("unknown cert algorithm") -} - -func (cert *Certificate) bytesForSigning() []byte { - c2 := *cert - c2.Signature = nil - out := c2.Marshal() - // Drop trailing signature length. - return out[:len(out)-4] -} - -// Marshal serializes c into OpenSSH's wire format. It is part of the -// PublicKey interface. -func (c *Certificate) Marshal() []byte { - generic := genericCertData{ - Serial: c.Serial, - CertType: c.CertType, - KeyId: c.KeyId, - ValidPrincipals: marshalStringList(c.ValidPrincipals), - ValidAfter: uint64(c.ValidAfter), - ValidBefore: uint64(c.ValidBefore), - CriticalOptions: marshalTuples(c.CriticalOptions), - Extensions: marshalTuples(c.Extensions), - Reserved: c.Reserved, - SignatureKey: c.SignatureKey.Marshal(), - } - if c.Signature != nil { - generic.Signature = Marshal(c.Signature) - } - genericBytes := Marshal(&generic) - keyBytes := c.Key.Marshal() - _, keyBytes, _ = parseString(keyBytes) - prefix := Marshal(&struct { - Name string - Nonce []byte - Key []byte `ssh:"rest"` - }{c.Type(), c.Nonce, keyBytes}) - - result := make([]byte, 0, len(prefix)+len(genericBytes)) - result = append(result, prefix...) - result = append(result, genericBytes...) - return result -} - -// Type returns the key name. It is part of the PublicKey interface. -func (c *Certificate) Type() string { - algo, ok := certAlgoNames[c.Key.Type()] - if !ok { - panic("unknown cert key type") - } - return algo -} - -// Verify verifies a signature against the certificate's public -// key. It is part of the PublicKey interface. -func (c *Certificate) Verify(data []byte, sig *Signature) error { - return c.Key.Verify(data, sig) -} - -func parseSignatureBody(in []byte) (out *Signature, rest []byte, ok bool) { - format, in, ok := parseString(in) - if !ok { - return - } - - out = &Signature{ - Format: string(format), - } - - if out.Blob, in, ok = parseString(in); !ok { - return - } - - return out, in, ok -} - -func parseSignature(in []byte) (out *Signature, rest []byte, ok bool) { - sigBytes, rest, ok := parseString(in) - if !ok { - return - } - - out, trailing, ok := parseSignatureBody(sigBytes) - if !ok || len(trailing) > 0 { - return nil, nil, false - } - return -} diff --git a/modules/crypto/ssh/certs_test.go b/modules/crypto/ssh/certs_test.go deleted file mode 100755 index c5f2e533..00000000 --- a/modules/crypto/ssh/certs_test.go +++ /dev/null @@ -1,216 +0,0 @@ -// Copyright 2013 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "bytes" - "crypto/rand" - "reflect" - "testing" - "time" -) - -// Cert generated by ssh-keygen 6.0p1 Debian-4. -// % ssh-keygen -s ca-key -I test user-key -const exampleSSHCert = `ssh-rsa-cert-v01@openssh.com AAAAHHNzaC1yc2EtY2VydC12MDFAb3BlbnNzaC5jb20AAAAgb1srW/W3ZDjYAO45xLYAwzHBDLsJ4Ux6ICFIkTjb1LEAAAADAQABAAAAYQCkoR51poH0wE8w72cqSB8Sszx+vAhzcMdCO0wqHTj7UNENHWEXGrU0E0UQekD7U+yhkhtoyjbPOVIP7hNa6aRk/ezdh/iUnCIt4Jt1v3Z1h1P+hA4QuYFMHNB+rmjPwAcAAAAAAAAAAAAAAAEAAAAEdGVzdAAAAAAAAAAAAAAAAP//////////AAAAAAAAAIIAAAAVcGVybWl0LVgxMS1mb3J3YXJkaW5nAAAAAAAAABdwZXJtaXQtYWdlbnQtZm9yd2FyZGluZwAAAAAAAAAWcGVybWl0LXBvcnQtZm9yd2FyZGluZwAAAAAAAAAKcGVybWl0LXB0eQAAAAAAAAAOcGVybWl0LXVzZXItcmMAAAAAAAAAAAAAAHcAAAAHc3NoLXJzYQAAAAMBAAEAAABhANFS2kaktpSGc+CcmEKPyw9mJC4nZKxHKTgLVZeaGbFZOvJTNzBspQHdy7Q1uKSfktxpgjZnksiu/tFF9ngyY2KFoc+U88ya95IZUycBGCUbBQ8+bhDtw/icdDGQD5WnUwAAAG8AAAAHc3NoLXJzYQAAAGC8Y9Z2LQKhIhxf52773XaWrXdxP0t3GBVo4A10vUWiYoAGepr6rQIoGGXFxT4B9Gp+nEBJjOwKDXPrAevow0T9ca8gZN+0ykbhSrXLE5Ao48rqr3zP4O1/9P7e6gp0gw8=` - -func TestParseCert(t *testing.T) { - authKeyBytes := []byte(exampleSSHCert) - - key, _, _, rest, err := ParseAuthorizedKey(authKeyBytes) - if err != nil { - t.Fatalf("ParseAuthorizedKey: %v", err) - } - if len(rest) > 0 { - t.Errorf("rest: got %q, want empty", rest) - } - - if _, ok := key.(*Certificate); !ok { - t.Fatalf("got %v (%T), want *Certificate", key, key) - } - - marshaled := MarshalAuthorizedKey(key) - // Before comparison, remove the trailing newline that - // MarshalAuthorizedKey adds. - marshaled = marshaled[:len(marshaled)-1] - if !bytes.Equal(authKeyBytes, marshaled) { - t.Errorf("marshaled certificate does not match original: got %q, want %q", marshaled, authKeyBytes) - } -} - -// Cert generated by ssh-keygen OpenSSH_6.8p1 OS X 10.10.3 -// % ssh-keygen -s ca -I testcert -O source-address=192.168.1.0/24 -O force-command=/bin/sleep user.pub -// user.pub key: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDACh1rt2DXfV3hk6fszSQcQ/rueMId0kVD9U7nl8cfEnFxqOCrNT92g4laQIGl2mn8lsGZfTLg8ksHq3gkvgO3oo/0wHy4v32JeBOHTsN5AL4gfHNEhWeWb50ev47hnTsRIt9P4dxogeUo/hTu7j9+s9lLpEQXCvq6xocXQt0j8MV9qZBBXFLXVT3cWIkSqOdwt/5ZBg+1GSrc7WfCXVWgTk4a20uPMuJPxU4RQwZW6X3+O8Pqo8C3cW0OzZRFP6gUYUKUsTI5WntlS+LAxgw1mZNsozFGdbiOPRnEryE3SRldh9vjDR3tin1fGpA5P7+CEB/bqaXtG3V+F2OkqaMN -// Critical Options: -// force-command /bin/sleep -// source-address 192.168.1.0/24 -// Extensions: -// permit-X11-forwarding -// permit-agent-forwarding -// permit-port-forwarding -// permit-pty -// permit-user-rc -const exampleSSHCertWithOptions = `ssh-rsa-cert-v01@openssh.com AAAAHHNzaC1yc2EtY2VydC12MDFAb3BlbnNzaC5jb20AAAAgDyysCJY0XrO1n03EeRRoITnTPdjENFmWDs9X58PP3VUAAAADAQABAAABAQDACh1rt2DXfV3hk6fszSQcQ/rueMId0kVD9U7nl8cfEnFxqOCrNT92g4laQIGl2mn8lsGZfTLg8ksHq3gkvgO3oo/0wHy4v32JeBOHTsN5AL4gfHNEhWeWb50ev47hnTsRIt9P4dxogeUo/hTu7j9+s9lLpEQXCvq6xocXQt0j8MV9qZBBXFLXVT3cWIkSqOdwt/5ZBg+1GSrc7WfCXVWgTk4a20uPMuJPxU4RQwZW6X3+O8Pqo8C3cW0OzZRFP6gUYUKUsTI5WntlS+LAxgw1mZNsozFGdbiOPRnEryE3SRldh9vjDR3tin1fGpA5P7+CEB/bqaXtG3V+F2OkqaMNAAAAAAAAAAAAAAABAAAACHRlc3RjZXJ0AAAAAAAAAAAAAAAA//////////8AAABLAAAADWZvcmNlLWNvbW1hbmQAAAAOAAAACi9iaW4vc2xlZXAAAAAOc291cmNlLWFkZHJlc3MAAAASAAAADjE5Mi4xNjguMS4wLzI0AAAAggAAABVwZXJtaXQtWDExLWZvcndhcmRpbmcAAAAAAAAAF3Blcm1pdC1hZ2VudC1mb3J3YXJkaW5nAAAAAAAAABZwZXJtaXQtcG9ydC1mb3J3YXJkaW5nAAAAAAAAAApwZXJtaXQtcHR5AAAAAAAAAA5wZXJtaXQtdXNlci1yYwAAAAAAAAAAAAABFwAAAAdzc2gtcnNhAAAAAwEAAQAAAQEAwU+c5ui5A8+J/CFpjW8wCa52bEODA808WWQDCSuTG/eMXNf59v9Y8Pk0F1E9dGCosSNyVcB/hacUrc6He+i97+HJCyKavBsE6GDxrjRyxYqAlfcOXi/IVmaUGiO8OQ39d4GHrjToInKvExSUeleQyH4Y4/e27T/pILAqPFL3fyrvMLT5qU9QyIt6zIpa7GBP5+urouNavMprV3zsfIqNBbWypinOQAw823a5wN+zwXnhZrgQiHZ/USG09Y6k98y1dTVz8YHlQVR4D3lpTAsKDKJ5hCH9WU4fdf+lU8OyNGaJ/vz0XNqxcToe1l4numLTnaoSuH89pHryjqurB7lJKwAAAQ8AAAAHc3NoLXJzYQAAAQCaHvUIoPL1zWUHIXLvu96/HU1s/i4CAW2IIEuGgxCUCiFj6vyTyYtgxQxcmbfZf6eaITlS6XJZa7Qq4iaFZh75C1DXTX8labXhRSD4E2t//AIP9MC1rtQC5xo6FmbQ+BoKcDskr+mNACcbRSxs3IL3bwCfWDnIw2WbVox9ZdcthJKk4UoCW4ix4QwdHw7zlddlz++fGEEVhmTbll1SUkycGApPFBsAYRTMupUJcYPIeReBI/m8XfkoMk99bV8ZJQTAd7OekHY2/48Ff53jLmyDjP7kNw1F8OaPtkFs6dGJXta4krmaekPy87j+35In5hFj7yoOqvSbmYUkeX70/GGQ` - -func TestParseCertWithOptions(t *testing.T) { - opts := map[string]string{ - "source-address": "192.168.1.0/24", - "force-command": "/bin/sleep", - } - exts := map[string]string{ - "permit-X11-forwarding": "", - "permit-agent-forwarding": "", - "permit-port-forwarding": "", - "permit-pty": "", - "permit-user-rc": "", - } - authKeyBytes := []byte(exampleSSHCertWithOptions) - - key, _, _, rest, err := ParseAuthorizedKey(authKeyBytes) - if err != nil { - t.Fatalf("ParseAuthorizedKey: %v", err) - } - if len(rest) > 0 { - t.Errorf("rest: got %q, want empty", rest) - } - cert, ok := key.(*Certificate) - if !ok { - t.Fatalf("got %v (%T), want *Certificate", key, key) - } - if !reflect.DeepEqual(cert.CriticalOptions, opts) { - t.Errorf("unexpected critical options - got %v, want %v", cert.CriticalOptions, opts) - } - if !reflect.DeepEqual(cert.Extensions, exts) { - t.Errorf("unexpected Extensions - got %v, want %v", cert.Extensions, exts) - } - marshaled := MarshalAuthorizedKey(key) - // Before comparison, remove the trailing newline that - // MarshalAuthorizedKey adds. - marshaled = marshaled[:len(marshaled)-1] - if !bytes.Equal(authKeyBytes, marshaled) { - t.Errorf("marshaled certificate does not match original: got %q, want %q", marshaled, authKeyBytes) - } -} - -func TestValidateCert(t *testing.T) { - key, _, _, _, err := ParseAuthorizedKey([]byte(exampleSSHCert)) - if err != nil { - t.Fatalf("ParseAuthorizedKey: %v", err) - } - validCert, ok := key.(*Certificate) - if !ok { - t.Fatalf("got %v (%T), want *Certificate", key, key) - } - checker := CertChecker{} - checker.IsAuthority = func(k PublicKey) bool { - return bytes.Equal(k.Marshal(), validCert.SignatureKey.Marshal()) - } - - if err := checker.CheckCert("user", validCert); err != nil { - t.Errorf("Unable to validate certificate: %v", err) - } - invalidCert := &Certificate{ - Key: testPublicKeys["rsa"], - SignatureKey: testPublicKeys["ecdsa"], - ValidBefore: CertTimeInfinity, - Signature: &Signature{}, - } - if err := checker.CheckCert("user", invalidCert); err == nil { - t.Error("Invalid cert signature passed validation") - } -} - -func TestValidateCertTime(t *testing.T) { - cert := Certificate{ - ValidPrincipals: []string{"user"}, - Key: testPublicKeys["rsa"], - ValidAfter: 50, - ValidBefore: 100, - } - - cert.SignCert(rand.Reader, testSigners["ecdsa"]) - - for ts, ok := range map[int64]bool{ - 25: false, - 50: true, - 99: true, - 100: false, - 125: false, - } { - checker := CertChecker{ - Clock: func() time.Time { return time.Unix(ts, 0) }, - } - checker.IsAuthority = func(k PublicKey) bool { - return bytes.Equal(k.Marshal(), - testPublicKeys["ecdsa"].Marshal()) - } - - if v := checker.CheckCert("user", &cert); (v == nil) != ok { - t.Errorf("Authenticate(%d): %v", ts, v) - } - } -} - -// TODO(hanwen): tests for -// -// host keys: -// * fallbacks - -func TestHostKeyCert(t *testing.T) { - cert := &Certificate{ - ValidPrincipals: []string{"hostname", "hostname.domain"}, - Key: testPublicKeys["rsa"], - ValidBefore: CertTimeInfinity, - CertType: HostCert, - } - cert.SignCert(rand.Reader, testSigners["ecdsa"]) - - checker := &CertChecker{ - IsAuthority: func(p PublicKey) bool { - return bytes.Equal(testPublicKeys["ecdsa"].Marshal(), p.Marshal()) - }, - } - - certSigner, err := NewCertSigner(cert, testSigners["rsa"]) - if err != nil { - t.Errorf("NewCertSigner: %v", err) - } - - for _, name := range []string{"hostname", "otherhost"} { - c1, c2, err := netPipe() - if err != nil { - t.Fatalf("netPipe: %v", err) - } - defer c1.Close() - defer c2.Close() - - errc := make(chan error) - - go func() { - conf := ServerConfig{ - NoClientAuth: true, - } - conf.AddHostKey(certSigner) - _, _, _, err := NewServerConn(c1, &conf) - errc <- err - }() - - config := &ClientConfig{ - User: "user", - HostKeyCallback: checker.CheckHostKey, - } - _, _, _, err = NewClientConn(c2, name, config) - - succeed := name == "hostname" - if (err == nil) != succeed { - t.Fatalf("NewClientConn(%q): %v", name, err) - } - - err = <-errc - if (err == nil) != succeed { - t.Fatalf("NewServerConn(%q): %v", name, err) - } - } -} diff --git a/modules/crypto/ssh/channel.go b/modules/crypto/ssh/channel.go deleted file mode 100755 index 5403c7e4..00000000 --- a/modules/crypto/ssh/channel.go +++ /dev/null @@ -1,631 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "encoding/binary" - "errors" - "fmt" - "io" - "log" - "sync" -) - -const ( - minPacketLength = 9 - // channelMaxPacket contains the maximum number of bytes that will be - // sent in a single packet. As per RFC 4253, section 6.1, 32k is also - // the minimum. - channelMaxPacket = 1 << 15 - // We follow OpenSSH here. - channelWindowSize = 64 * channelMaxPacket -) - -// NewChannel represents an incoming request to a channel. It must either be -// accepted for use by calling Accept, or rejected by calling Reject. -type NewChannel interface { - // Accept accepts the channel creation request. It returns the Channel - // and a Go channel containing SSH requests. The Go channel must be - // serviced otherwise the Channel will hang. - Accept() (Channel, <-chan *Request, error) - - // Reject rejects the channel creation request. After calling - // this, no other methods on the Channel may be called. - Reject(reason RejectionReason, message string) error - - // ChannelType returns the type of the channel, as supplied by the - // client. - ChannelType() string - - // ExtraData returns the arbitrary payload for this channel, as supplied - // by the client. This data is specific to the channel type. - ExtraData() []byte -} - -// A Channel is an ordered, reliable, flow-controlled, duplex stream -// that is multiplexed over an SSH connection. -type Channel interface { - // Read reads up to len(data) bytes from the channel. - Read(data []byte) (int, error) - - // Write writes len(data) bytes to the channel. - Write(data []byte) (int, error) - - // Close signals end of channel use. No data may be sent after this - // call. - Close() error - - // CloseWrite signals the end of sending in-band - // data. Requests may still be sent, and the other side may - // still send data - CloseWrite() error - - // SendRequest sends a channel request. If wantReply is true, - // it will wait for a reply and return the result as a - // boolean, otherwise the return value will be false. Channel - // requests are out-of-band messages so they may be sent even - // if the data stream is closed or blocked by flow control. - SendRequest(name string, wantReply bool, payload []byte) (bool, error) - - // Stderr returns an io.ReadWriter that writes to this channel - // with the extended data type set to stderr. Stderr may - // safely be read and written from a different goroutine than - // Read and Write respectively. - Stderr() io.ReadWriter -} - -// Request is a request sent outside of the normal stream of -// data. Requests can either be specific to an SSH channel, or they -// can be global. -type Request struct { - Type string - WantReply bool - Payload []byte - - ch *channel - mux *mux -} - -// Reply sends a response to a request. It must be called for all requests -// where WantReply is true and is a no-op otherwise. The payload argument is -// ignored for replies to channel-specific requests. -func (r *Request) Reply(ok bool, payload []byte) error { - if !r.WantReply { - return nil - } - - if r.ch == nil { - return r.mux.ackRequest(ok, payload) - } - - return r.ch.ackRequest(ok) -} - -// RejectionReason is an enumeration used when rejecting channel creation -// requests. See RFC 4254, section 5.1. -type RejectionReason uint32 - -const ( - Prohibited RejectionReason = iota + 1 - ConnectionFailed - UnknownChannelType - ResourceShortage -) - -// String converts the rejection reason to human readable form. -func (r RejectionReason) String() string { - switch r { - case Prohibited: - return "administratively prohibited" - case ConnectionFailed: - return "connect failed" - case UnknownChannelType: - return "unknown channel type" - case ResourceShortage: - return "resource shortage" - } - return fmt.Sprintf("unknown reason %d", int(r)) -} - -func min(a uint32, b int) uint32 { - if a < uint32(b) { - return a - } - return uint32(b) -} - -type channelDirection uint8 - -const ( - channelInbound channelDirection = iota - channelOutbound -) - -// channel is an implementation of the Channel interface that works -// with the mux class. -type channel struct { - // R/O after creation - chanType string - extraData []byte - localId, remoteId uint32 - - // maxIncomingPayload and maxRemotePayload are the maximum - // payload sizes of normal and extended data packets for - // receiving and sending, respectively. The wire packet will - // be 9 or 13 bytes larger (excluding encryption overhead). - maxIncomingPayload uint32 - maxRemotePayload uint32 - - mux *mux - - // decided is set to true if an accept or reject message has been sent - // (for outbound channels) or received (for inbound channels). - decided bool - - // direction contains either channelOutbound, for channels created - // locally, or channelInbound, for channels created by the peer. - direction channelDirection - - // Pending internal channel messages. - msg chan interface{} - - // Since requests have no ID, there can be only one request - // with WantReply=true outstanding. This lock is held by a - // goroutine that has such an outgoing request pending. - sentRequestMu sync.Mutex - - incomingRequests chan *Request - - sentEOF bool - - // thread-safe data - remoteWin window - pending *buffer - extPending *buffer - - // windowMu protects myWindow, the flow-control window. - windowMu sync.Mutex - myWindow uint32 - - // writeMu serializes calls to mux.conn.writePacket() and - // protects sentClose and packetPool. This mutex must be - // different from windowMu, as writePacket can block if there - // is a key exchange pending. - writeMu sync.Mutex - sentClose bool - - // packetPool has a buffer for each extended channel ID to - // save allocations during writes. - packetPool map[uint32][]byte -} - -// writePacket sends a packet. If the packet is a channel close, it updates -// sentClose. This method takes the lock c.writeMu. -func (c *channel) writePacket(packet []byte) error { - c.writeMu.Lock() - if c.sentClose { - c.writeMu.Unlock() - return io.EOF - } - c.sentClose = (packet[0] == msgChannelClose) - err := c.mux.conn.writePacket(packet) - c.writeMu.Unlock() - return err -} - -func (c *channel) sendMessage(msg interface{}) error { - if debugMux { - log.Printf("send %d: %#v", c.mux.chanList.offset, msg) - } - - p := Marshal(msg) - binary.BigEndian.PutUint32(p[1:], c.remoteId) - return c.writePacket(p) -} - -// WriteExtended writes data to a specific extended stream. These streams are -// used, for example, for stderr. -func (c *channel) WriteExtended(data []byte, extendedCode uint32) (n int, err error) { - if c.sentEOF { - return 0, io.EOF - } - // 1 byte message type, 4 bytes remoteId, 4 bytes data length - opCode := byte(msgChannelData) - headerLength := uint32(9) - if extendedCode > 0 { - headerLength += 4 - opCode = msgChannelExtendedData - } - - c.writeMu.Lock() - packet := c.packetPool[extendedCode] - // We don't remove the buffer from packetPool, so - // WriteExtended calls from different goroutines will be - // flagged as errors by the race detector. - c.writeMu.Unlock() - - for len(data) > 0 { - space := min(c.maxRemotePayload, len(data)) - if space, err = c.remoteWin.reserve(space); err != nil { - return n, err - } - if want := headerLength + space; uint32(cap(packet)) < want { - packet = make([]byte, want) - } else { - packet = packet[:want] - } - - todo := data[:space] - - packet[0] = opCode - binary.BigEndian.PutUint32(packet[1:], c.remoteId) - if extendedCode > 0 { - binary.BigEndian.PutUint32(packet[5:], uint32(extendedCode)) - } - binary.BigEndian.PutUint32(packet[headerLength-4:], uint32(len(todo))) - copy(packet[headerLength:], todo) - if err = c.writePacket(packet); err != nil { - return n, err - } - - n += len(todo) - data = data[len(todo):] - } - - c.writeMu.Lock() - c.packetPool[extendedCode] = packet - c.writeMu.Unlock() - - return n, err -} - -func (c *channel) handleData(packet []byte) error { - headerLen := 9 - isExtendedData := packet[0] == msgChannelExtendedData - if isExtendedData { - headerLen = 13 - } - if len(packet) < headerLen { - // malformed data packet - return parseError(packet[0]) - } - - var extended uint32 - if isExtendedData { - extended = binary.BigEndian.Uint32(packet[5:]) - } - - length := binary.BigEndian.Uint32(packet[headerLen-4 : headerLen]) - if length == 0 { - return nil - } - if length > c.maxIncomingPayload { - // TODO(hanwen): should send Disconnect? - return errors.New("ssh: incoming packet exceeds maximum payload size") - } - - data := packet[headerLen:] - if length != uint32(len(data)) { - return errors.New("ssh: wrong packet length") - } - - c.windowMu.Lock() - if c.myWindow < length { - c.windowMu.Unlock() - // TODO(hanwen): should send Disconnect with reason? - return errors.New("ssh: remote side wrote too much") - } - c.myWindow -= length - c.windowMu.Unlock() - - if extended == 1 { - c.extPending.write(data) - } else if extended > 0 { - // discard other extended data. - } else { - c.pending.write(data) - } - return nil -} - -func (c *channel) adjustWindow(n uint32) error { - c.windowMu.Lock() - // Since myWindow is managed on our side, and can never exceed - // the initial window setting, we don't worry about overflow. - c.myWindow += uint32(n) - c.windowMu.Unlock() - return c.sendMessage(windowAdjustMsg{ - AdditionalBytes: uint32(n), - }) -} - -func (c *channel) ReadExtended(data []byte, extended uint32) (n int, err error) { - switch extended { - case 1: - n, err = c.extPending.Read(data) - case 0: - n, err = c.pending.Read(data) - default: - return 0, fmt.Errorf("ssh: extended code %d unimplemented", extended) - } - - if n > 0 { - err = c.adjustWindow(uint32(n)) - // sendWindowAdjust can return io.EOF if the remote - // peer has closed the connection, however we want to - // defer forwarding io.EOF to the caller of Read until - // the buffer has been drained. - if n > 0 && err == io.EOF { - err = nil - } - } - - return n, err -} - -func (c *channel) close() { - c.pending.eof() - c.extPending.eof() - close(c.msg) - close(c.incomingRequests) - c.writeMu.Lock() - // This is not necesary for a normal channel teardown, but if - // there was another error, it is. - c.sentClose = true - c.writeMu.Unlock() - // Unblock writers. - c.remoteWin.close() -} - -// responseMessageReceived is called when a success or failure message is -// received on a channel to check that such a message is reasonable for the -// given channel. -func (c *channel) responseMessageReceived() error { - if c.direction == channelInbound { - return errors.New("ssh: channel response message received on inbound channel") - } - if c.decided { - return errors.New("ssh: duplicate response received for channel") - } - c.decided = true - return nil -} - -func (c *channel) handlePacket(packet []byte) error { - switch packet[0] { - case msgChannelData, msgChannelExtendedData: - return c.handleData(packet) - case msgChannelClose: - c.sendMessage(channelCloseMsg{PeersId: c.remoteId}) - c.mux.chanList.remove(c.localId) - c.close() - return nil - case msgChannelEOF: - // RFC 4254 is mute on how EOF affects dataExt messages but - // it is logical to signal EOF at the same time. - c.extPending.eof() - c.pending.eof() - return nil - } - - decoded, err := decode(packet) - if err != nil { - return err - } - - switch msg := decoded.(type) { - case *channelOpenFailureMsg: - if err := c.responseMessageReceived(); err != nil { - return err - } - c.mux.chanList.remove(msg.PeersId) - c.msg <- msg - case *channelOpenConfirmMsg: - if err := c.responseMessageReceived(); err != nil { - return err - } - if msg.MaxPacketSize < minPacketLength || msg.MaxPacketSize > 1<<31 { - return fmt.Errorf("ssh: invalid MaxPacketSize %d from peer", msg.MaxPacketSize) - } - c.remoteId = msg.MyId - c.maxRemotePayload = msg.MaxPacketSize - c.remoteWin.add(msg.MyWindow) - c.msg <- msg - case *windowAdjustMsg: - if !c.remoteWin.add(msg.AdditionalBytes) { - return fmt.Errorf("ssh: invalid window update for %d bytes", msg.AdditionalBytes) - } - case *channelRequestMsg: - req := Request{ - Type: msg.Request, - WantReply: msg.WantReply, - Payload: msg.RequestSpecificData, - ch: c, - } - - c.incomingRequests <- &req - default: - c.msg <- msg - } - return nil -} - -func (m *mux) newChannel(chanType string, direction channelDirection, extraData []byte) *channel { - ch := &channel{ - remoteWin: window{Cond: newCond()}, - myWindow: channelWindowSize, - pending: newBuffer(), - extPending: newBuffer(), - direction: direction, - incomingRequests: make(chan *Request, 16), - msg: make(chan interface{}, 16), - chanType: chanType, - extraData: extraData, - mux: m, - packetPool: make(map[uint32][]byte), - } - ch.localId = m.chanList.add(ch) - return ch -} - -var errUndecided = errors.New("ssh: must Accept or Reject channel") -var errDecidedAlready = errors.New("ssh: can call Accept or Reject only once") - -type extChannel struct { - code uint32 - ch *channel -} - -func (e *extChannel) Write(data []byte) (n int, err error) { - return e.ch.WriteExtended(data, e.code) -} - -func (e *extChannel) Read(data []byte) (n int, err error) { - return e.ch.ReadExtended(data, e.code) -} - -func (c *channel) Accept() (Channel, <-chan *Request, error) { - if c.decided { - return nil, nil, errDecidedAlready - } - c.maxIncomingPayload = channelMaxPacket - confirm := channelOpenConfirmMsg{ - PeersId: c.remoteId, - MyId: c.localId, - MyWindow: c.myWindow, - MaxPacketSize: c.maxIncomingPayload, - } - c.decided = true - if err := c.sendMessage(confirm); err != nil { - return nil, nil, err - } - - return c, c.incomingRequests, nil -} - -func (ch *channel) Reject(reason RejectionReason, message string) error { - if ch.decided { - return errDecidedAlready - } - reject := channelOpenFailureMsg{ - PeersId: ch.remoteId, - Reason: reason, - Message: message, - Language: "en", - } - ch.decided = true - return ch.sendMessage(reject) -} - -func (ch *channel) Read(data []byte) (int, error) { - if !ch.decided { - return 0, errUndecided - } - return ch.ReadExtended(data, 0) -} - -func (ch *channel) Write(data []byte) (int, error) { - if !ch.decided { - return 0, errUndecided - } - return ch.WriteExtended(data, 0) -} - -func (ch *channel) CloseWrite() error { - if !ch.decided { - return errUndecided - } - ch.sentEOF = true - return ch.sendMessage(channelEOFMsg{ - PeersId: ch.remoteId}) -} - -func (ch *channel) Close() error { - if !ch.decided { - return errUndecided - } - - return ch.sendMessage(channelCloseMsg{ - PeersId: ch.remoteId}) -} - -// Extended returns an io.ReadWriter that sends and receives data on the given, -// SSH extended stream. Such streams are used, for example, for stderr. -func (ch *channel) Extended(code uint32) io.ReadWriter { - if !ch.decided { - return nil - } - return &extChannel{code, ch} -} - -func (ch *channel) Stderr() io.ReadWriter { - return ch.Extended(1) -} - -func (ch *channel) SendRequest(name string, wantReply bool, payload []byte) (bool, error) { - if !ch.decided { - return false, errUndecided - } - - if wantReply { - ch.sentRequestMu.Lock() - defer ch.sentRequestMu.Unlock() - } - - msg := channelRequestMsg{ - PeersId: ch.remoteId, - Request: name, - WantReply: wantReply, - RequestSpecificData: payload, - } - - if err := ch.sendMessage(msg); err != nil { - return false, err - } - - if wantReply { - m, ok := (<-ch.msg) - if !ok { - return false, io.EOF - } - switch m.(type) { - case *channelRequestFailureMsg: - return false, nil - case *channelRequestSuccessMsg: - return true, nil - default: - return false, fmt.Errorf("ssh: unexpected response to channel request: %#v", m) - } - } - - return false, nil -} - -// ackRequest either sends an ack or nack to the channel request. -func (ch *channel) ackRequest(ok bool) error { - if !ch.decided { - return errUndecided - } - - var msg interface{} - if !ok { - msg = channelRequestFailureMsg{ - PeersId: ch.remoteId, - } - } else { - msg = channelRequestSuccessMsg{ - PeersId: ch.remoteId, - } - } - return ch.sendMessage(msg) -} - -func (ch *channel) ChannelType() string { - return ch.chanType -} - -func (ch *channel) ExtraData() []byte { - return ch.extraData -} diff --git a/modules/crypto/ssh/cipher.go b/modules/crypto/ssh/cipher.go deleted file mode 100755 index 3e06da0d..00000000 --- a/modules/crypto/ssh/cipher.go +++ /dev/null @@ -1,549 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "crypto/aes" - "crypto/cipher" - "crypto/rc4" - "crypto/subtle" - "encoding/binary" - "errors" - "fmt" - "hash" - "io" - "io/ioutil" -) - -const ( - packetSizeMultiple = 16 // TODO(huin) this should be determined by the cipher. - - // RFC 4253 section 6.1 defines a minimum packet size of 32768 that implementations - // MUST be able to process (plus a few more kilobytes for padding and mac). The RFC - // indicates implementations SHOULD be able to handle larger packet sizes, but then - // waffles on about reasonable limits. - // - // OpenSSH caps their maxPacket at 256kB so we choose to do - // the same. maxPacket is also used to ensure that uint32 - // length fields do not overflow, so it should remain well - // below 4G. - maxPacket = 256 * 1024 -) - -// noneCipher implements cipher.Stream and provides no encryption. It is used -// by the transport before the first key-exchange. -type noneCipher struct{} - -func (c noneCipher) XORKeyStream(dst, src []byte) { - copy(dst, src) -} - -func newAESCTR(key, iv []byte) (cipher.Stream, error) { - c, err := aes.NewCipher(key) - if err != nil { - return nil, err - } - return cipher.NewCTR(c, iv), nil -} - -func newRC4(key, iv []byte) (cipher.Stream, error) { - return rc4.NewCipher(key) -} - -type streamCipherMode struct { - keySize int - ivSize int - skip int - createFunc func(key, iv []byte) (cipher.Stream, error) -} - -func (c *streamCipherMode) createStream(key, iv []byte) (cipher.Stream, error) { - if len(key) < c.keySize { - panic("ssh: key length too small for cipher") - } - if len(iv) < c.ivSize { - panic("ssh: iv too small for cipher") - } - - stream, err := c.createFunc(key[:c.keySize], iv[:c.ivSize]) - if err != nil { - return nil, err - } - - var streamDump []byte - if c.skip > 0 { - streamDump = make([]byte, 512) - } - - for remainingToDump := c.skip; remainingToDump > 0; { - dumpThisTime := remainingToDump - if dumpThisTime > len(streamDump) { - dumpThisTime = len(streamDump) - } - stream.XORKeyStream(streamDump[:dumpThisTime], streamDump[:dumpThisTime]) - remainingToDump -= dumpThisTime - } - - return stream, nil -} - -// cipherModes documents properties of supported ciphers. Ciphers not included -// are not supported and will not be negotiated, even if explicitly requested in -// ClientConfig.Crypto.Ciphers. -var cipherModes = map[string]*streamCipherMode{ - // Ciphers from RFC4344, which introduced many CTR-based ciphers. Algorithms - // are defined in the order specified in the RFC. - "aes128-ctr": {16, aes.BlockSize, 0, newAESCTR}, - "aes192-ctr": {24, aes.BlockSize, 0, newAESCTR}, - "aes256-ctr": {32, aes.BlockSize, 0, newAESCTR}, - - // Ciphers from RFC4345, which introduces security-improved arcfour ciphers. - // They are defined in the order specified in the RFC. - "arcfour128": {16, 0, 1536, newRC4}, - "arcfour256": {32, 0, 1536, newRC4}, - - // Cipher defined in RFC 4253, which describes SSH Transport Layer Protocol. - // Note that this cipher is not safe, as stated in RFC 4253: "Arcfour (and - // RC4) has problems with weak keys, and should be used with caution." - // RFC4345 introduces improved versions of Arcfour. - "arcfour": {16, 0, 0, newRC4}, - - // AES-GCM is not a stream cipher, so it is constructed with a - // special case. If we add any more non-stream ciphers, we - // should invest a cleaner way to do this. - gcmCipherID: {16, 12, 0, nil}, - - // insecure cipher, see http://www.isg.rhul.ac.uk/~kp/SandPfinal.pdf - // uncomment below to enable it. - // aes128cbcID: {16, aes.BlockSize, 0, nil}, -} - -// prefixLen is the length of the packet prefix that contains the packet length -// and number of padding bytes. -const prefixLen = 5 - -// streamPacketCipher is a packetCipher using a stream cipher. -type streamPacketCipher struct { - mac hash.Hash - cipher cipher.Stream - - // The following members are to avoid per-packet allocations. - prefix [prefixLen]byte - seqNumBytes [4]byte - padding [2 * packetSizeMultiple]byte - packetData []byte - macResult []byte -} - -// readPacket reads and decrypt a single packet from the reader argument. -func (s *streamPacketCipher) readPacket(seqNum uint32, r io.Reader) ([]byte, error) { - if _, err := io.ReadFull(r, s.prefix[:]); err != nil { - return nil, err - } - - s.cipher.XORKeyStream(s.prefix[:], s.prefix[:]) - length := binary.BigEndian.Uint32(s.prefix[0:4]) - paddingLength := uint32(s.prefix[4]) - - var macSize uint32 - if s.mac != nil { - s.mac.Reset() - binary.BigEndian.PutUint32(s.seqNumBytes[:], seqNum) - s.mac.Write(s.seqNumBytes[:]) - s.mac.Write(s.prefix[:]) - macSize = uint32(s.mac.Size()) - } - - if length <= paddingLength+1 { - return nil, errors.New("ssh: invalid packet length, packet too small") - } - - if length > maxPacket { - return nil, errors.New("ssh: invalid packet length, packet too large") - } - - // the maxPacket check above ensures that length-1+macSize - // does not overflow. - if uint32(cap(s.packetData)) < length-1+macSize { - s.packetData = make([]byte, length-1+macSize) - } else { - s.packetData = s.packetData[:length-1+macSize] - } - - if _, err := io.ReadFull(r, s.packetData); err != nil { - return nil, err - } - mac := s.packetData[length-1:] - data := s.packetData[:length-1] - s.cipher.XORKeyStream(data, data) - - if s.mac != nil { - s.mac.Write(data) - s.macResult = s.mac.Sum(s.macResult[:0]) - if subtle.ConstantTimeCompare(s.macResult, mac) != 1 { - return nil, errors.New("ssh: MAC failure") - } - } - - return s.packetData[:length-paddingLength-1], nil -} - -// writePacket encrypts and sends a packet of data to the writer argument -func (s *streamPacketCipher) writePacket(seqNum uint32, w io.Writer, rand io.Reader, packet []byte) error { - if len(packet) > maxPacket { - return errors.New("ssh: packet too large") - } - - paddingLength := packetSizeMultiple - (prefixLen+len(packet))%packetSizeMultiple - if paddingLength < 4 { - paddingLength += packetSizeMultiple - } - - length := len(packet) + 1 + paddingLength - binary.BigEndian.PutUint32(s.prefix[:], uint32(length)) - s.prefix[4] = byte(paddingLength) - padding := s.padding[:paddingLength] - if _, err := io.ReadFull(rand, padding); err != nil { - return err - } - - if s.mac != nil { - s.mac.Reset() - binary.BigEndian.PutUint32(s.seqNumBytes[:], seqNum) - s.mac.Write(s.seqNumBytes[:]) - s.mac.Write(s.prefix[:]) - s.mac.Write(packet) - s.mac.Write(padding) - } - - s.cipher.XORKeyStream(s.prefix[:], s.prefix[:]) - s.cipher.XORKeyStream(packet, packet) - s.cipher.XORKeyStream(padding, padding) - - if _, err := w.Write(s.prefix[:]); err != nil { - return err - } - if _, err := w.Write(packet); err != nil { - return err - } - if _, err := w.Write(padding); err != nil { - return err - } - - if s.mac != nil { - s.macResult = s.mac.Sum(s.macResult[:0]) - if _, err := w.Write(s.macResult); err != nil { - return err - } - } - - return nil -} - -type gcmCipher struct { - aead cipher.AEAD - prefix [4]byte - iv []byte - buf []byte -} - -func newGCMCipher(iv, key, macKey []byte) (packetCipher, error) { - c, err := aes.NewCipher(key) - if err != nil { - return nil, err - } - - aead, err := cipher.NewGCM(c) - if err != nil { - return nil, err - } - - return &gcmCipher{ - aead: aead, - iv: iv, - }, nil -} - -const gcmTagSize = 16 - -func (c *gcmCipher) writePacket(seqNum uint32, w io.Writer, rand io.Reader, packet []byte) error { - // Pad out to multiple of 16 bytes. This is different from the - // stream cipher because that encrypts the length too. - padding := byte(packetSizeMultiple - (1+len(packet))%packetSizeMultiple) - if padding < 4 { - padding += packetSizeMultiple - } - - length := uint32(len(packet) + int(padding) + 1) - binary.BigEndian.PutUint32(c.prefix[:], length) - if _, err := w.Write(c.prefix[:]); err != nil { - return err - } - - if cap(c.buf) < int(length) { - c.buf = make([]byte, length) - } else { - c.buf = c.buf[:length] - } - - c.buf[0] = padding - copy(c.buf[1:], packet) - if _, err := io.ReadFull(rand, c.buf[1+len(packet):]); err != nil { - return err - } - c.buf = c.aead.Seal(c.buf[:0], c.iv, c.buf, c.prefix[:]) - if _, err := w.Write(c.buf); err != nil { - return err - } - c.incIV() - - return nil -} - -func (c *gcmCipher) incIV() { - for i := 4 + 7; i >= 4; i-- { - c.iv[i]++ - if c.iv[i] != 0 { - break - } - } -} - -func (c *gcmCipher) readPacket(seqNum uint32, r io.Reader) ([]byte, error) { - if _, err := io.ReadFull(r, c.prefix[:]); err != nil { - return nil, err - } - length := binary.BigEndian.Uint32(c.prefix[:]) - if length > maxPacket { - return nil, errors.New("ssh: max packet length exceeded.") - } - - if cap(c.buf) < int(length+gcmTagSize) { - c.buf = make([]byte, length+gcmTagSize) - } else { - c.buf = c.buf[:length+gcmTagSize] - } - - if _, err := io.ReadFull(r, c.buf); err != nil { - return nil, err - } - - plain, err := c.aead.Open(c.buf[:0], c.iv, c.buf, c.prefix[:]) - if err != nil { - return nil, err - } - c.incIV() - - padding := plain[0] - if padding < 4 || padding >= 20 { - return nil, fmt.Errorf("ssh: illegal padding %d", padding) - } - - if int(padding+1) >= len(plain) { - return nil, fmt.Errorf("ssh: padding %d too large", padding) - } - plain = plain[1 : length-uint32(padding)] - return plain, nil -} - -// cbcCipher implements aes128-cbc cipher defined in RFC 4253 section 6.1 -type cbcCipher struct { - mac hash.Hash - macSize uint32 - decrypter cipher.BlockMode - encrypter cipher.BlockMode - - // The following members are to avoid per-packet allocations. - seqNumBytes [4]byte - packetData []byte - macResult []byte - - // Amount of data we should still read to hide which - // verification error triggered. - oracleCamouflage uint32 -} - -func newAESCBCCipher(iv, key, macKey []byte, algs directionAlgorithms) (packetCipher, error) { - c, err := aes.NewCipher(key) - if err != nil { - return nil, err - } - - cbc := &cbcCipher{ - mac: macModes[algs.MAC].new(macKey), - decrypter: cipher.NewCBCDecrypter(c, iv), - encrypter: cipher.NewCBCEncrypter(c, iv), - packetData: make([]byte, 1024), - } - if cbc.mac != nil { - cbc.macSize = uint32(cbc.mac.Size()) - } - - return cbc, nil -} - -func maxUInt32(a, b int) uint32 { - if a > b { - return uint32(a) - } - return uint32(b) -} - -const ( - cbcMinPacketSizeMultiple = 8 - cbcMinPacketSize = 16 - cbcMinPaddingSize = 4 -) - -// cbcError represents a verification error that may leak information. -type cbcError string - -func (e cbcError) Error() string { return string(e) } - -func (c *cbcCipher) readPacket(seqNum uint32, r io.Reader) ([]byte, error) { - p, err := c.readPacketLeaky(seqNum, r) - if err != nil { - if _, ok := err.(cbcError); ok { - // Verification error: read a fixed amount of - // data, to make distinguishing between - // failing MAC and failing length check more - // difficult. - io.CopyN(ioutil.Discard, r, int64(c.oracleCamouflage)) - } - } - return p, err -} - -func (c *cbcCipher) readPacketLeaky(seqNum uint32, r io.Reader) ([]byte, error) { - blockSize := c.decrypter.BlockSize() - - // Read the header, which will include some of the subsequent data in the - // case of block ciphers - this is copied back to the payload later. - // How many bytes of payload/padding will be read with this first read. - firstBlockLength := uint32((prefixLen + blockSize - 1) / blockSize * blockSize) - firstBlock := c.packetData[:firstBlockLength] - if _, err := io.ReadFull(r, firstBlock); err != nil { - return nil, err - } - - c.oracleCamouflage = maxPacket + 4 + c.macSize - firstBlockLength - - c.decrypter.CryptBlocks(firstBlock, firstBlock) - length := binary.BigEndian.Uint32(firstBlock[:4]) - if length > maxPacket { - return nil, cbcError("ssh: packet too large") - } - if length+4 < maxUInt32(cbcMinPacketSize, blockSize) { - // The minimum size of a packet is 16 (or the cipher block size, whichever - // is larger) bytes. - return nil, cbcError("ssh: packet too small") - } - // The length of the packet (including the length field but not the MAC) must - // be a multiple of the block size or 8, whichever is larger. - if (length+4)%maxUInt32(cbcMinPacketSizeMultiple, blockSize) != 0 { - return nil, cbcError("ssh: invalid packet length multiple") - } - - paddingLength := uint32(firstBlock[4]) - if paddingLength < cbcMinPaddingSize || length <= paddingLength+1 { - return nil, cbcError("ssh: invalid packet length") - } - - // Positions within the c.packetData buffer: - macStart := 4 + length - paddingStart := macStart - paddingLength - - // Entire packet size, starting before length, ending at end of mac. - entirePacketSize := macStart + c.macSize - - // Ensure c.packetData is large enough for the entire packet data. - if uint32(cap(c.packetData)) < entirePacketSize { - // Still need to upsize and copy, but this should be rare at runtime, only - // on upsizing the packetData buffer. - c.packetData = make([]byte, entirePacketSize) - copy(c.packetData, firstBlock) - } else { - c.packetData = c.packetData[:entirePacketSize] - } - - if n, err := io.ReadFull(r, c.packetData[firstBlockLength:]); err != nil { - return nil, err - } else { - c.oracleCamouflage -= uint32(n) - } - - remainingCrypted := c.packetData[firstBlockLength:macStart] - c.decrypter.CryptBlocks(remainingCrypted, remainingCrypted) - - mac := c.packetData[macStart:] - if c.mac != nil { - c.mac.Reset() - binary.BigEndian.PutUint32(c.seqNumBytes[:], seqNum) - c.mac.Write(c.seqNumBytes[:]) - c.mac.Write(c.packetData[:macStart]) - c.macResult = c.mac.Sum(c.macResult[:0]) - if subtle.ConstantTimeCompare(c.macResult, mac) != 1 { - return nil, cbcError("ssh: MAC failure") - } - } - - return c.packetData[prefixLen:paddingStart], nil -} - -func (c *cbcCipher) writePacket(seqNum uint32, w io.Writer, rand io.Reader, packet []byte) error { - effectiveBlockSize := maxUInt32(cbcMinPacketSizeMultiple, c.encrypter.BlockSize()) - - // Length of encrypted portion of the packet (header, payload, padding). - // Enforce minimum padding and packet size. - encLength := maxUInt32(prefixLen+len(packet)+cbcMinPaddingSize, cbcMinPaddingSize) - // Enforce block size. - encLength = (encLength + effectiveBlockSize - 1) / effectiveBlockSize * effectiveBlockSize - - length := encLength - 4 - paddingLength := int(length) - (1 + len(packet)) - - // Overall buffer contains: header, payload, padding, mac. - // Space for the MAC is reserved in the capacity but not the slice length. - bufferSize := encLength + c.macSize - if uint32(cap(c.packetData)) < bufferSize { - c.packetData = make([]byte, encLength, bufferSize) - } else { - c.packetData = c.packetData[:encLength] - } - - p := c.packetData - - // Packet header. - binary.BigEndian.PutUint32(p, length) - p = p[4:] - p[0] = byte(paddingLength) - - // Payload. - p = p[1:] - copy(p, packet) - - // Padding. - p = p[len(packet):] - if _, err := io.ReadFull(rand, p); err != nil { - return err - } - - if c.mac != nil { - c.mac.Reset() - binary.BigEndian.PutUint32(c.seqNumBytes[:], seqNum) - c.mac.Write(c.seqNumBytes[:]) - c.mac.Write(c.packetData) - // The MAC is now appended into the capacity reserved for it earlier. - c.packetData = c.mac.Sum(c.packetData) - } - - c.encrypter.CryptBlocks(c.packetData[:encLength], c.packetData[:encLength]) - - if _, err := w.Write(c.packetData); err != nil { - return err - } - - return nil -} diff --git a/modules/crypto/ssh/cipher_test.go b/modules/crypto/ssh/cipher_test.go deleted file mode 100755 index 54b92b6e..00000000 --- a/modules/crypto/ssh/cipher_test.go +++ /dev/null @@ -1,127 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "bytes" - "crypto" - "crypto/aes" - "crypto/rand" - "testing" -) - -func TestDefaultCiphersExist(t *testing.T) { - for _, cipherAlgo := range supportedCiphers { - if _, ok := cipherModes[cipherAlgo]; !ok { - t.Errorf("default cipher %q is unknown", cipherAlgo) - } - } -} - -func TestPacketCiphers(t *testing.T) { - // Still test aes128cbc cipher althought it's commented out. - cipherModes[aes128cbcID] = &streamCipherMode{16, aes.BlockSize, 0, nil} - defer delete(cipherModes, aes128cbcID) - - for cipher := range cipherModes { - kr := &kexResult{Hash: crypto.SHA1} - algs := directionAlgorithms{ - Cipher: cipher, - MAC: "hmac-sha1", - Compression: "none", - } - client, err := newPacketCipher(clientKeys, algs, kr) - if err != nil { - t.Errorf("newPacketCipher(client, %q): %v", cipher, err) - continue - } - server, err := newPacketCipher(clientKeys, algs, kr) - if err != nil { - t.Errorf("newPacketCipher(client, %q): %v", cipher, err) - continue - } - - want := "bla bla" - input := []byte(want) - buf := &bytes.Buffer{} - if err := client.writePacket(0, buf, rand.Reader, input); err != nil { - t.Errorf("writePacket(%q): %v", cipher, err) - continue - } - - packet, err := server.readPacket(0, buf) - if err != nil { - t.Errorf("readPacket(%q): %v", cipher, err) - continue - } - - if string(packet) != want { - t.Errorf("roundtrip(%q): got %q, want %q", cipher, packet, want) - } - } -} - -func TestCBCOracleCounterMeasure(t *testing.T) { - cipherModes[aes128cbcID] = &streamCipherMode{16, aes.BlockSize, 0, nil} - defer delete(cipherModes, aes128cbcID) - - kr := &kexResult{Hash: crypto.SHA1} - algs := directionAlgorithms{ - Cipher: aes128cbcID, - MAC: "hmac-sha1", - Compression: "none", - } - client, err := newPacketCipher(clientKeys, algs, kr) - if err != nil { - t.Fatalf("newPacketCipher(client): %v", err) - } - - want := "bla bla" - input := []byte(want) - buf := &bytes.Buffer{} - if err := client.writePacket(0, buf, rand.Reader, input); err != nil { - t.Errorf("writePacket: %v", err) - } - - packetSize := buf.Len() - buf.Write(make([]byte, 2*maxPacket)) - - // We corrupt each byte, but this usually will only test the - // 'packet too large' or 'MAC failure' cases. - lastRead := -1 - for i := 0; i < packetSize; i++ { - server, err := newPacketCipher(clientKeys, algs, kr) - if err != nil { - t.Fatalf("newPacketCipher(client): %v", err) - } - - fresh := &bytes.Buffer{} - fresh.Write(buf.Bytes()) - fresh.Bytes()[i] ^= 0x01 - - before := fresh.Len() - _, err = server.readPacket(0, fresh) - if err == nil { - t.Errorf("corrupt byte %d: readPacket succeeded ", i) - continue - } - if _, ok := err.(cbcError); !ok { - t.Errorf("corrupt byte %d: got %v (%T), want cbcError", i, err, err) - continue - } - - after := fresh.Len() - bytesRead := before - after - if bytesRead < maxPacket { - t.Errorf("corrupt byte %d: read %d bytes, want more than %d", i, bytesRead, maxPacket) - continue - } - - if i > 0 && bytesRead != lastRead { - t.Errorf("corrupt byte %d: read %d bytes, want %d bytes read", i, bytesRead, lastRead) - } - lastRead = bytesRead - } -} diff --git a/modules/crypto/ssh/client.go b/modules/crypto/ssh/client.go deleted file mode 100755 index 0b9fbe50..00000000 --- a/modules/crypto/ssh/client.go +++ /dev/null @@ -1,213 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "errors" - "fmt" - "net" - "sync" -) - -// Client implements a traditional SSH client that supports shells, -// subprocesses, port forwarding and tunneled dialing. -type Client struct { - Conn - - forwards forwardList // forwarded tcpip connections from the remote side - mu sync.Mutex - channelHandlers map[string]chan NewChannel -} - -// HandleChannelOpen returns a channel on which NewChannel requests -// for the given type are sent. If the type already is being handled, -// nil is returned. The channel is closed when the connection is closed. -func (c *Client) HandleChannelOpen(channelType string) <-chan NewChannel { - c.mu.Lock() - defer c.mu.Unlock() - if c.channelHandlers == nil { - // The SSH channel has been closed. - c := make(chan NewChannel) - close(c) - return c - } - - ch := c.channelHandlers[channelType] - if ch != nil { - return nil - } - - ch = make(chan NewChannel, 16) - c.channelHandlers[channelType] = ch - return ch -} - -// NewClient creates a Client on top of the given connection. -func NewClient(c Conn, chans <-chan NewChannel, reqs <-chan *Request) *Client { - conn := &Client{ - Conn: c, - channelHandlers: make(map[string]chan NewChannel, 1), - } - - go conn.handleGlobalRequests(reqs) - go conn.handleChannelOpens(chans) - go func() { - conn.Wait() - conn.forwards.closeAll() - }() - go conn.forwards.handleChannels(conn.HandleChannelOpen("forwarded-tcpip")) - return conn -} - -// NewClientConn establishes an authenticated SSH connection using c -// as the underlying transport. The Request and NewChannel channels -// must be serviced or the connection will hang. -func NewClientConn(c net.Conn, addr string, config *ClientConfig) (Conn, <-chan NewChannel, <-chan *Request, error) { - fullConf := *config - fullConf.SetDefaults() - conn := &connection{ - sshConn: sshConn{conn: c}, - } - - if err := conn.clientHandshake(addr, &fullConf); err != nil { - c.Close() - return nil, nil, nil, fmt.Errorf("ssh: handshake failed: %v", err) - } - conn.mux = newMux(conn.transport) - return conn, conn.mux.incomingChannels, conn.mux.incomingRequests, nil -} - -// clientHandshake performs the client side key exchange. See RFC 4253 Section -// 7. -func (c *connection) clientHandshake(dialAddress string, config *ClientConfig) error { - if config.ClientVersion != "" { - c.clientVersion = []byte(config.ClientVersion) - } else { - c.clientVersion = []byte(packageVersion) - } - var err error - c.serverVersion, err = exchangeVersions(c.sshConn.conn, c.clientVersion) - if err != nil { - return err - } - - c.transport = newClientTransport( - newTransport(c.sshConn.conn, config.Rand, true /* is client */), - c.clientVersion, c.serverVersion, config, dialAddress, c.sshConn.RemoteAddr()) - if err := c.transport.requestKeyChange(); err != nil { - return err - } - - if packet, err := c.transport.readPacket(); err != nil { - return err - } else if packet[0] != msgNewKeys { - return unexpectedMessageError(msgNewKeys, packet[0]) - } - - // We just did the key change, so the session ID is established. - c.sessionID = c.transport.getSessionID() - - return c.clientAuthenticate(config) -} - -// verifyHostKeySignature verifies the host key obtained in the key -// exchange. -func verifyHostKeySignature(hostKey PublicKey, result *kexResult) error { - sig, rest, ok := parseSignatureBody(result.Signature) - if len(rest) > 0 || !ok { - return errors.New("ssh: signature parse error") - } - - return hostKey.Verify(result.H, sig) -} - -// NewSession opens a new Session for this client. (A session is a remote -// execution of a program.) -func (c *Client) NewSession() (*Session, error) { - ch, in, err := c.OpenChannel("session", nil) - if err != nil { - return nil, err - } - return newSession(ch, in) -} - -func (c *Client) handleGlobalRequests(incoming <-chan *Request) { - for r := range incoming { - // This handles keepalive messages and matches - // the behaviour of OpenSSH. - r.Reply(false, nil) - } -} - -// handleChannelOpens channel open messages from the remote side. -func (c *Client) handleChannelOpens(in <-chan NewChannel) { - for ch := range in { - c.mu.Lock() - handler := c.channelHandlers[ch.ChannelType()] - c.mu.Unlock() - - if handler != nil { - handler <- ch - } else { - ch.Reject(UnknownChannelType, fmt.Sprintf("unknown channel type: %v", ch.ChannelType())) - } - } - - c.mu.Lock() - for _, ch := range c.channelHandlers { - close(ch) - } - c.channelHandlers = nil - c.mu.Unlock() -} - -// Dial starts a client connection to the given SSH server. It is a -// convenience function that connects to the given network address, -// initiates the SSH handshake, and then sets up a Client. For access -// to incoming channels and requests, use net.Dial with NewClientConn -// instead. -func Dial(network, addr string, config *ClientConfig) (*Client, error) { - conn, err := net.Dial(network, addr) - if err != nil { - return nil, err - } - c, chans, reqs, err := NewClientConn(conn, addr, config) - if err != nil { - return nil, err - } - return NewClient(c, chans, reqs), nil -} - -// A ClientConfig structure is used to configure a Client. It must not be -// modified after having been passed to an SSH function. -type ClientConfig struct { - // Config contains configuration that is shared between clients and - // servers. - Config - - // User contains the username to authenticate as. - User string - - // Auth contains possible authentication methods to use with the - // server. Only the first instance of a particular RFC 4252 method will - // be used during authentication. - Auth []AuthMethod - - // HostKeyCallback, if not nil, is called during the cryptographic - // handshake to validate the server's host key. A nil HostKeyCallback - // implies that all host keys are accepted. - HostKeyCallback func(hostname string, remote net.Addr, key PublicKey) error - - // ClientVersion contains the version identification string that will - // be used for the connection. If empty, a reasonable default is used. - ClientVersion string - - // HostKeyAlgorithms lists the key types that the client will - // accept from the server as host key, in order of - // preference. If empty, a reasonable default is used. Any - // string returned from PublicKey.Type method may be used, or - // any of the CertAlgoXxxx and KeyAlgoXxxx constants. - HostKeyAlgorithms []string -} diff --git a/modules/crypto/ssh/client_auth.go b/modules/crypto/ssh/client_auth.go deleted file mode 100755 index e15be3ef..00000000 --- a/modules/crypto/ssh/client_auth.go +++ /dev/null @@ -1,441 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "bytes" - "errors" - "fmt" - "io" -) - -// clientAuthenticate authenticates with the remote server. See RFC 4252. -func (c *connection) clientAuthenticate(config *ClientConfig) error { - // initiate user auth session - if err := c.transport.writePacket(Marshal(&serviceRequestMsg{serviceUserAuth})); err != nil { - return err - } - packet, err := c.transport.readPacket() - if err != nil { - return err - } - var serviceAccept serviceAcceptMsg - if err := Unmarshal(packet, &serviceAccept); err != nil { - return err - } - - // during the authentication phase the client first attempts the "none" method - // then any untried methods suggested by the server. - tried := make(map[string]bool) - var lastMethods []string - for auth := AuthMethod(new(noneAuth)); auth != nil; { - ok, methods, err := auth.auth(c.transport.getSessionID(), config.User, c.transport, config.Rand) - if err != nil { - return err - } - if ok { - // success - return nil - } - tried[auth.method()] = true - if methods == nil { - methods = lastMethods - } - lastMethods = methods - - auth = nil - - findNext: - for _, a := range config.Auth { - candidateMethod := a.method() - if tried[candidateMethod] { - continue - } - for _, meth := range methods { - if meth == candidateMethod { - auth = a - break findNext - } - } - } - } - return fmt.Errorf("ssh: unable to authenticate, attempted methods %v, no supported methods remain", keys(tried)) -} - -func keys(m map[string]bool) []string { - s := make([]string, 0, len(m)) - - for key := range m { - s = append(s, key) - } - return s -} - -// An AuthMethod represents an instance of an RFC 4252 authentication method. -type AuthMethod interface { - // auth authenticates user over transport t. - // Returns true if authentication is successful. - // If authentication is not successful, a []string of alternative - // method names is returned. If the slice is nil, it will be ignored - // and the previous set of possible methods will be reused. - auth(session []byte, user string, p packetConn, rand io.Reader) (bool, []string, error) - - // method returns the RFC 4252 method name. - method() string -} - -// "none" authentication, RFC 4252 section 5.2. -type noneAuth int - -func (n *noneAuth) auth(session []byte, user string, c packetConn, rand io.Reader) (bool, []string, error) { - if err := c.writePacket(Marshal(&userAuthRequestMsg{ - User: user, - Service: serviceSSH, - Method: "none", - })); err != nil { - return false, nil, err - } - - return handleAuthResponse(c) -} - -func (n *noneAuth) method() string { - return "none" -} - -// passwordCallback is an AuthMethod that fetches the password through -// a function call, e.g. by prompting the user. -type passwordCallback func() (password string, err error) - -func (cb passwordCallback) auth(session []byte, user string, c packetConn, rand io.Reader) (bool, []string, error) { - type passwordAuthMsg struct { - User string `sshtype:"50"` - Service string - Method string - Reply bool - Password string - } - - pw, err := cb() - // REVIEW NOTE: is there a need to support skipping a password attempt? - // The program may only find out that the user doesn't have a password - // when prompting. - if err != nil { - return false, nil, err - } - - if err := c.writePacket(Marshal(&passwordAuthMsg{ - User: user, - Service: serviceSSH, - Method: cb.method(), - Reply: false, - Password: pw, - })); err != nil { - return false, nil, err - } - - return handleAuthResponse(c) -} - -func (cb passwordCallback) method() string { - return "password" -} - -// Password returns an AuthMethod using the given password. -func Password(secret string) AuthMethod { - return passwordCallback(func() (string, error) { return secret, nil }) -} - -// PasswordCallback returns an AuthMethod that uses a callback for -// fetching a password. -func PasswordCallback(prompt func() (secret string, err error)) AuthMethod { - return passwordCallback(prompt) -} - -type publickeyAuthMsg struct { - User string `sshtype:"50"` - Service string - Method string - // HasSig indicates to the receiver packet that the auth request is signed and - // should be used for authentication of the request. - HasSig bool - Algoname string - PubKey []byte - // Sig is tagged with "rest" so Marshal will exclude it during - // validateKey - Sig []byte `ssh:"rest"` -} - -// publicKeyCallback is an AuthMethod that uses a set of key -// pairs for authentication. -type publicKeyCallback func() ([]Signer, error) - -func (cb publicKeyCallback) method() string { - return "publickey" -} - -func (cb publicKeyCallback) auth(session []byte, user string, c packetConn, rand io.Reader) (bool, []string, error) { - // Authentication is performed in two stages. The first stage sends an - // enquiry to test if each key is acceptable to the remote. The second - // stage attempts to authenticate with the valid keys obtained in the - // first stage. - - signers, err := cb() - if err != nil { - return false, nil, err - } - var validKeys []Signer - for _, signer := range signers { - if ok, err := validateKey(signer.PublicKey(), user, c); ok { - validKeys = append(validKeys, signer) - } else { - if err != nil { - return false, nil, err - } - } - } - - // methods that may continue if this auth is not successful. - var methods []string - for _, signer := range validKeys { - pub := signer.PublicKey() - - pubKey := pub.Marshal() - sign, err := signer.Sign(rand, buildDataSignedForAuth(session, userAuthRequestMsg{ - User: user, - Service: serviceSSH, - Method: cb.method(), - }, []byte(pub.Type()), pubKey)) - if err != nil { - return false, nil, err - } - - // manually wrap the serialized signature in a string - s := Marshal(sign) - sig := make([]byte, stringLength(len(s))) - marshalString(sig, s) - msg := publickeyAuthMsg{ - User: user, - Service: serviceSSH, - Method: cb.method(), - HasSig: true, - Algoname: pub.Type(), - PubKey: pubKey, - Sig: sig, - } - p := Marshal(&msg) - if err := c.writePacket(p); err != nil { - return false, nil, err - } - var success bool - success, methods, err = handleAuthResponse(c) - if err != nil { - return false, nil, err - } - if success { - return success, methods, err - } - } - return false, methods, nil -} - -// validateKey validates the key provided is acceptable to the server. -func validateKey(key PublicKey, user string, c packetConn) (bool, error) { - pubKey := key.Marshal() - msg := publickeyAuthMsg{ - User: user, - Service: serviceSSH, - Method: "publickey", - HasSig: false, - Algoname: key.Type(), - PubKey: pubKey, - } - if err := c.writePacket(Marshal(&msg)); err != nil { - return false, err - } - - return confirmKeyAck(key, c) -} - -func confirmKeyAck(key PublicKey, c packetConn) (bool, error) { - pubKey := key.Marshal() - algoname := key.Type() - - for { - packet, err := c.readPacket() - if err != nil { - return false, err - } - switch packet[0] { - case msgUserAuthBanner: - // TODO(gpaul): add callback to present the banner to the user - case msgUserAuthPubKeyOk: - var msg userAuthPubKeyOkMsg - if err := Unmarshal(packet, &msg); err != nil { - return false, err - } - if msg.Algo != algoname || !bytes.Equal(msg.PubKey, pubKey) { - return false, nil - } - return true, nil - case msgUserAuthFailure: - return false, nil - default: - return false, unexpectedMessageError(msgUserAuthSuccess, packet[0]) - } - } -} - -// PublicKeys returns an AuthMethod that uses the given key -// pairs. -func PublicKeys(signers ...Signer) AuthMethod { - return publicKeyCallback(func() ([]Signer, error) { return signers, nil }) -} - -// PublicKeysCallback returns an AuthMethod that runs the given -// function to obtain a list of key pairs. -func PublicKeysCallback(getSigners func() (signers []Signer, err error)) AuthMethod { - return publicKeyCallback(getSigners) -} - -// handleAuthResponse returns whether the preceding authentication request succeeded -// along with a list of remaining authentication methods to try next and -// an error if an unexpected response was received. -func handleAuthResponse(c packetConn) (bool, []string, error) { - for { - packet, err := c.readPacket() - if err != nil { - return false, nil, err - } - - switch packet[0] { - case msgUserAuthBanner: - // TODO: add callback to present the banner to the user - case msgUserAuthFailure: - var msg userAuthFailureMsg - if err := Unmarshal(packet, &msg); err != nil { - return false, nil, err - } - return false, msg.Methods, nil - case msgUserAuthSuccess: - return true, nil, nil - case msgDisconnect: - return false, nil, io.EOF - default: - return false, nil, unexpectedMessageError(msgUserAuthSuccess, packet[0]) - } - } -} - -// KeyboardInteractiveChallenge should print questions, optionally -// disabling echoing (e.g. for passwords), and return all the answers. -// Challenge may be called multiple times in a single session. After -// successful authentication, the server may send a challenge with no -// questions, for which the user and instruction messages should be -// printed. RFC 4256 section 3.3 details how the UI should behave for -// both CLI and GUI environments. -type KeyboardInteractiveChallenge func(user, instruction string, questions []string, echos []bool) (answers []string, err error) - -// KeyboardInteractive returns a AuthMethod using a prompt/response -// sequence controlled by the server. -func KeyboardInteractive(challenge KeyboardInteractiveChallenge) AuthMethod { - return challenge -} - -func (cb KeyboardInteractiveChallenge) method() string { - return "keyboard-interactive" -} - -func (cb KeyboardInteractiveChallenge) auth(session []byte, user string, c packetConn, rand io.Reader) (bool, []string, error) { - type initiateMsg struct { - User string `sshtype:"50"` - Service string - Method string - Language string - Submethods string - } - - if err := c.writePacket(Marshal(&initiateMsg{ - User: user, - Service: serviceSSH, - Method: "keyboard-interactive", - })); err != nil { - return false, nil, err - } - - for { - packet, err := c.readPacket() - if err != nil { - return false, nil, err - } - - // like handleAuthResponse, but with less options. - switch packet[0] { - case msgUserAuthBanner: - // TODO: Print banners during userauth. - continue - case msgUserAuthInfoRequest: - // OK - case msgUserAuthFailure: - var msg userAuthFailureMsg - if err := Unmarshal(packet, &msg); err != nil { - return false, nil, err - } - return false, msg.Methods, nil - case msgUserAuthSuccess: - return true, nil, nil - default: - return false, nil, unexpectedMessageError(msgUserAuthInfoRequest, packet[0]) - } - - var msg userAuthInfoRequestMsg - if err := Unmarshal(packet, &msg); err != nil { - return false, nil, err - } - - // Manually unpack the prompt/echo pairs. - rest := msg.Prompts - var prompts []string - var echos []bool - for i := 0; i < int(msg.NumPrompts); i++ { - prompt, r, ok := parseString(rest) - if !ok || len(r) == 0 { - return false, nil, errors.New("ssh: prompt format error") - } - prompts = append(prompts, string(prompt)) - echos = append(echos, r[0] != 0) - rest = r[1:] - } - - if len(rest) != 0 { - return false, nil, errors.New("ssh: extra data following keyboard-interactive pairs") - } - - answers, err := cb(msg.User, msg.Instruction, prompts, echos) - if err != nil { - return false, nil, err - } - - if len(answers) != len(prompts) { - return false, nil, errors.New("ssh: not enough answers from keyboard-interactive callback") - } - responseLength := 1 + 4 - for _, a := range answers { - responseLength += stringLength(len(a)) - } - serialized := make([]byte, responseLength) - p := serialized - p[0] = msgUserAuthInfoResponse - p = p[1:] - p = marshalUint32(p, uint32(len(answers))) - for _, a := range answers { - p = marshalString(p, []byte(a)) - } - - if err := c.writePacket(serialized); err != nil { - return false, nil, err - } - } -} diff --git a/modules/crypto/ssh/client_auth_test.go b/modules/crypto/ssh/client_auth_test.go deleted file mode 100755 index 2ea44624..00000000 --- a/modules/crypto/ssh/client_auth_test.go +++ /dev/null @@ -1,393 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "bytes" - "crypto/rand" - "errors" - "fmt" - "strings" - "testing" -) - -type keyboardInteractive map[string]string - -func (cr keyboardInteractive) Challenge(user string, instruction string, questions []string, echos []bool) ([]string, error) { - var answers []string - for _, q := range questions { - answers = append(answers, cr[q]) - } - return answers, nil -} - -// reused internally by tests -var clientPassword = "tiger" - -// tryAuth runs a handshake with a given config against an SSH server -// with config serverConfig -func tryAuth(t *testing.T, config *ClientConfig) error { - c1, c2, err := netPipe() - if err != nil { - t.Fatalf("netPipe: %v", err) - } - defer c1.Close() - defer c2.Close() - - certChecker := CertChecker{ - IsAuthority: func(k PublicKey) bool { - return bytes.Equal(k.Marshal(), testPublicKeys["ecdsa"].Marshal()) - }, - UserKeyFallback: func(conn ConnMetadata, key PublicKey) (*Permissions, error) { - if conn.User() == "testuser" && bytes.Equal(key.Marshal(), testPublicKeys["rsa"].Marshal()) { - return nil, nil - } - - return nil, fmt.Errorf("pubkey for %q not acceptable", conn.User()) - }, - IsRevoked: func(c *Certificate) bool { - return c.Serial == 666 - }, - } - - serverConfig := &ServerConfig{ - PasswordCallback: func(conn ConnMetadata, pass []byte) (*Permissions, error) { - if conn.User() == "testuser" && string(pass) == clientPassword { - return nil, nil - } - return nil, errors.New("password auth failed") - }, - PublicKeyCallback: certChecker.Authenticate, - KeyboardInteractiveCallback: func(conn ConnMetadata, challenge KeyboardInteractiveChallenge) (*Permissions, error) { - ans, err := challenge("user", - "instruction", - []string{"question1", "question2"}, - []bool{true, true}) - if err != nil { - return nil, err - } - ok := conn.User() == "testuser" && ans[0] == "answer1" && ans[1] == "answer2" - if ok { - challenge("user", "motd", nil, nil) - return nil, nil - } - return nil, errors.New("keyboard-interactive failed") - }, - AuthLogCallback: func(conn ConnMetadata, method string, err error) { - t.Logf("user %q, method %q: %v", conn.User(), method, err) - }, - } - serverConfig.AddHostKey(testSigners["rsa"]) - - go newServer(c1, serverConfig) - _, _, _, err = NewClientConn(c2, "", config) - return err -} - -func TestClientAuthPublicKey(t *testing.T) { - config := &ClientConfig{ - User: "testuser", - Auth: []AuthMethod{ - PublicKeys(testSigners["rsa"]), - }, - } - if err := tryAuth(t, config); err != nil { - t.Fatalf("unable to dial remote side: %s", err) - } -} - -func TestAuthMethodPassword(t *testing.T) { - config := &ClientConfig{ - User: "testuser", - Auth: []AuthMethod{ - Password(clientPassword), - }, - } - - if err := tryAuth(t, config); err != nil { - t.Fatalf("unable to dial remote side: %s", err) - } -} - -func TestAuthMethodFallback(t *testing.T) { - var passwordCalled bool - config := &ClientConfig{ - User: "testuser", - Auth: []AuthMethod{ - PublicKeys(testSigners["rsa"]), - PasswordCallback( - func() (string, error) { - passwordCalled = true - return "WRONG", nil - }), - }, - } - - if err := tryAuth(t, config); err != nil { - t.Fatalf("unable to dial remote side: %s", err) - } - - if passwordCalled { - t.Errorf("password auth tried before public-key auth.") - } -} - -func TestAuthMethodWrongPassword(t *testing.T) { - config := &ClientConfig{ - User: "testuser", - Auth: []AuthMethod{ - Password("wrong"), - PublicKeys(testSigners["rsa"]), - }, - } - - if err := tryAuth(t, config); err != nil { - t.Fatalf("unable to dial remote side: %s", err) - } -} - -func TestAuthMethodKeyboardInteractive(t *testing.T) { - answers := keyboardInteractive(map[string]string{ - "question1": "answer1", - "question2": "answer2", - }) - config := &ClientConfig{ - User: "testuser", - Auth: []AuthMethod{ - KeyboardInteractive(answers.Challenge), - }, - } - - if err := tryAuth(t, config); err != nil { - t.Fatalf("unable to dial remote side: %s", err) - } -} - -func TestAuthMethodWrongKeyboardInteractive(t *testing.T) { - answers := keyboardInteractive(map[string]string{ - "question1": "answer1", - "question2": "WRONG", - }) - config := &ClientConfig{ - User: "testuser", - Auth: []AuthMethod{ - KeyboardInteractive(answers.Challenge), - }, - } - - if err := tryAuth(t, config); err == nil { - t.Fatalf("wrong answers should not have authenticated with KeyboardInteractive") - } -} - -// the mock server will only authenticate ssh-rsa keys -func TestAuthMethodInvalidPublicKey(t *testing.T) { - config := &ClientConfig{ - User: "testuser", - Auth: []AuthMethod{ - PublicKeys(testSigners["dsa"]), - }, - } - - if err := tryAuth(t, config); err == nil { - t.Fatalf("dsa private key should not have authenticated with rsa public key") - } -} - -// the client should authenticate with the second key -func TestAuthMethodRSAandDSA(t *testing.T) { - config := &ClientConfig{ - User: "testuser", - Auth: []AuthMethod{ - PublicKeys(testSigners["dsa"], testSigners["rsa"]), - }, - } - if err := tryAuth(t, config); err != nil { - t.Fatalf("client could not authenticate with rsa key: %v", err) - } -} - -func TestClientHMAC(t *testing.T) { - for _, mac := range supportedMACs { - config := &ClientConfig{ - User: "testuser", - Auth: []AuthMethod{ - PublicKeys(testSigners["rsa"]), - }, - Config: Config{ - MACs: []string{mac}, - }, - } - if err := tryAuth(t, config); err != nil { - t.Fatalf("client could not authenticate with mac algo %s: %v", mac, err) - } - } -} - -// issue 4285. -func TestClientUnsupportedCipher(t *testing.T) { - config := &ClientConfig{ - User: "testuser", - Auth: []AuthMethod{ - PublicKeys(), - }, - Config: Config{ - Ciphers: []string{"aes128-cbc"}, // not currently supported - }, - } - if err := tryAuth(t, config); err == nil { - t.Errorf("expected no ciphers in common") - } -} - -func TestClientUnsupportedKex(t *testing.T) { - config := &ClientConfig{ - User: "testuser", - Auth: []AuthMethod{ - PublicKeys(), - }, - Config: Config{ - KeyExchanges: []string{"diffie-hellman-group-exchange-sha256"}, // not currently supported - }, - } - if err := tryAuth(t, config); err == nil || !strings.Contains(err.Error(), "common algorithm") { - t.Errorf("got %v, expected 'common algorithm'", err) - } -} - -func TestClientLoginCert(t *testing.T) { - cert := &Certificate{ - Key: testPublicKeys["rsa"], - ValidBefore: CertTimeInfinity, - CertType: UserCert, - } - cert.SignCert(rand.Reader, testSigners["ecdsa"]) - certSigner, err := NewCertSigner(cert, testSigners["rsa"]) - if err != nil { - t.Fatalf("NewCertSigner: %v", err) - } - - clientConfig := &ClientConfig{ - User: "user", - } - clientConfig.Auth = append(clientConfig.Auth, PublicKeys(certSigner)) - - t.Log("should succeed") - if err := tryAuth(t, clientConfig); err != nil { - t.Errorf("cert login failed: %v", err) - } - - t.Log("corrupted signature") - cert.Signature.Blob[0]++ - if err := tryAuth(t, clientConfig); err == nil { - t.Errorf("cert login passed with corrupted sig") - } - - t.Log("revoked") - cert.Serial = 666 - cert.SignCert(rand.Reader, testSigners["ecdsa"]) - if err := tryAuth(t, clientConfig); err == nil { - t.Errorf("revoked cert login succeeded") - } - cert.Serial = 1 - - t.Log("sign with wrong key") - cert.SignCert(rand.Reader, testSigners["dsa"]) - if err := tryAuth(t, clientConfig); err == nil { - t.Errorf("cert login passed with non-authoritive key") - } - - t.Log("host cert") - cert.CertType = HostCert - cert.SignCert(rand.Reader, testSigners["ecdsa"]) - if err := tryAuth(t, clientConfig); err == nil { - t.Errorf("cert login passed with wrong type") - } - cert.CertType = UserCert - - t.Log("principal specified") - cert.ValidPrincipals = []string{"user"} - cert.SignCert(rand.Reader, testSigners["ecdsa"]) - if err := tryAuth(t, clientConfig); err != nil { - t.Errorf("cert login failed: %v", err) - } - - t.Log("wrong principal specified") - cert.ValidPrincipals = []string{"fred"} - cert.SignCert(rand.Reader, testSigners["ecdsa"]) - if err := tryAuth(t, clientConfig); err == nil { - t.Errorf("cert login passed with wrong principal") - } - cert.ValidPrincipals = nil - - t.Log("added critical option") - cert.CriticalOptions = map[string]string{"root-access": "yes"} - cert.SignCert(rand.Reader, testSigners["ecdsa"]) - if err := tryAuth(t, clientConfig); err == nil { - t.Errorf("cert login passed with unrecognized critical option") - } - - t.Log("allowed source address") - cert.CriticalOptions = map[string]string{"source-address": "127.0.0.42/24"} - cert.SignCert(rand.Reader, testSigners["ecdsa"]) - if err := tryAuth(t, clientConfig); err != nil { - t.Errorf("cert login with source-address failed: %v", err) - } - - t.Log("disallowed source address") - cert.CriticalOptions = map[string]string{"source-address": "127.0.0.42"} - cert.SignCert(rand.Reader, testSigners["ecdsa"]) - if err := tryAuth(t, clientConfig); err == nil { - t.Errorf("cert login with source-address succeeded") - } -} - -func testPermissionsPassing(withPermissions bool, t *testing.T) { - serverConfig := &ServerConfig{ - PublicKeyCallback: func(conn ConnMetadata, key PublicKey) (*Permissions, error) { - if conn.User() == "nopermissions" { - return nil, nil - } else { - return &Permissions{}, nil - } - }, - } - serverConfig.AddHostKey(testSigners["rsa"]) - - clientConfig := &ClientConfig{ - Auth: []AuthMethod{ - PublicKeys(testSigners["rsa"]), - }, - } - if withPermissions { - clientConfig.User = "permissions" - } else { - clientConfig.User = "nopermissions" - } - - c1, c2, err := netPipe() - if err != nil { - t.Fatalf("netPipe: %v", err) - } - defer c1.Close() - defer c2.Close() - - go NewClientConn(c2, "", clientConfig) - serverConn, err := newServer(c1, serverConfig) - if err != nil { - t.Fatal(err) - } - if p := serverConn.Permissions; (p != nil) != withPermissions { - t.Fatalf("withPermissions is %t, but Permissions object is %#v", withPermissions, p) - } -} - -func TestPermissionsPassing(t *testing.T) { - testPermissionsPassing(true, t) -} - -func TestNoPermissionsPassing(t *testing.T) { - testPermissionsPassing(false, t) -} diff --git a/modules/crypto/ssh/client_test.go b/modules/crypto/ssh/client_test.go deleted file mode 100755 index 1fe790cb..00000000 --- a/modules/crypto/ssh/client_test.go +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright 2014 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "net" - "testing" -) - -func testClientVersion(t *testing.T, config *ClientConfig, expected string) { - clientConn, serverConn := net.Pipe() - defer clientConn.Close() - receivedVersion := make(chan string, 1) - go func() { - version, err := readVersion(serverConn) - if err != nil { - receivedVersion <- "" - } else { - receivedVersion <- string(version) - } - serverConn.Close() - }() - NewClientConn(clientConn, "", config) - actual := <-receivedVersion - if actual != expected { - t.Fatalf("got %s; want %s", actual, expected) - } -} - -func TestCustomClientVersion(t *testing.T) { - version := "Test-Client-Version-0.0" - testClientVersion(t, &ClientConfig{ClientVersion: version}, version) -} - -func TestDefaultClientVersion(t *testing.T) { - testClientVersion(t, &ClientConfig{}, packageVersion) -} diff --git a/modules/crypto/ssh/common.go b/modules/crypto/ssh/common.go deleted file mode 100755 index 9fc739e1..00000000 --- a/modules/crypto/ssh/common.go +++ /dev/null @@ -1,354 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "crypto" - "crypto/rand" - "fmt" - "io" - "sync" - - _ "crypto/sha1" - _ "crypto/sha256" - _ "crypto/sha512" -) - -// These are string constants in the SSH protocol. -const ( - compressionNone = "none" - serviceUserAuth = "ssh-userauth" - serviceSSH = "ssh-connection" -) - -// supportedCiphers specifies the supported ciphers in preference order. -var supportedCiphers = []string{ - "aes128-ctr", "aes192-ctr", "aes256-ctr", - "aes128-gcm@openssh.com", - "arcfour256", "arcfour128", -} - -// supportedKexAlgos specifies the supported key-exchange algorithms in -// preference order. -var supportedKexAlgos = []string{ - kexAlgoCurve25519SHA256, - // P384 and P521 are not constant-time yet, but since we don't - // reuse ephemeral keys, using them for ECDH should be OK. - kexAlgoECDH256, kexAlgoECDH384, kexAlgoECDH521, - kexAlgoDH14SHA1, kexAlgoDH1SHA1, -} - -// supportedKexAlgos specifies the supported host-key algorithms (i.e. methods -// of authenticating servers) in preference order. -var supportedHostKeyAlgos = []string{ - CertAlgoRSAv01, CertAlgoDSAv01, CertAlgoECDSA256v01, - CertAlgoECDSA384v01, CertAlgoECDSA521v01, - - KeyAlgoECDSA256, KeyAlgoECDSA384, KeyAlgoECDSA521, - KeyAlgoRSA, KeyAlgoDSA, -} - -// supportedMACs specifies a default set of MAC algorithms in preference order. -// This is based on RFC 4253, section 6.4, but with hmac-md5 variants removed -// because they have reached the end of their useful life. -var supportedMACs = []string{ - "hmac-sha2-256", "hmac-sha1", "hmac-sha1-96", -} - -var supportedCompressions = []string{compressionNone} - -// hashFuncs keeps the mapping of supported algorithms to their respective -// hashes needed for signature verification. -var hashFuncs = map[string]crypto.Hash{ - KeyAlgoRSA: crypto.SHA1, - KeyAlgoDSA: crypto.SHA1, - KeyAlgoECDSA256: crypto.SHA256, - KeyAlgoECDSA384: crypto.SHA384, - KeyAlgoECDSA521: crypto.SHA512, - CertAlgoRSAv01: crypto.SHA1, - CertAlgoDSAv01: crypto.SHA1, - CertAlgoECDSA256v01: crypto.SHA256, - CertAlgoECDSA384v01: crypto.SHA384, - CertAlgoECDSA521v01: crypto.SHA512, -} - -// unexpectedMessageError results when the SSH message that we received didn't -// match what we wanted. -func unexpectedMessageError(expected, got uint8) error { - return fmt.Errorf("ssh: unexpected message type %d (expected %d)", got, expected) -} - -// parseError results from a malformed SSH message. -func parseError(tag uint8) error { - return fmt.Errorf("ssh: parse error in message type %d", tag) -} - -func findCommon(what string, client []string, server []string) (common string, err error) { - for _, c := range client { - for _, s := range server { - if c == s { - return c, nil - } - } - } - return "", fmt.Errorf("ssh: no common algorithm for %s; client offered: %v, server offered: %v", what, client, server) -} - -type directionAlgorithms struct { - Cipher string - MAC string - Compression string -} - -type algorithms struct { - kex string - hostKey string - w directionAlgorithms - r directionAlgorithms -} - -func findAgreedAlgorithms(clientKexInit, serverKexInit *kexInitMsg) (algs *algorithms, err error) { - result := &algorithms{} - - result.kex, err = findCommon("key exchange", clientKexInit.KexAlgos, serverKexInit.KexAlgos) - if err != nil { - return - } - - result.hostKey, err = findCommon("host key", clientKexInit.ServerHostKeyAlgos, serverKexInit.ServerHostKeyAlgos) - if err != nil { - return - } - - result.w.Cipher, err = findCommon("client to server cipher", clientKexInit.CiphersClientServer, serverKexInit.CiphersClientServer) - if err != nil { - return - } - - result.r.Cipher, err = findCommon("server to client cipher", clientKexInit.CiphersServerClient, serverKexInit.CiphersServerClient) - if err != nil { - return - } - - result.w.MAC, err = findCommon("client to server MAC", clientKexInit.MACsClientServer, serverKexInit.MACsClientServer) - if err != nil { - return - } - - result.r.MAC, err = findCommon("server to client MAC", clientKexInit.MACsServerClient, serverKexInit.MACsServerClient) - if err != nil { - return - } - - result.w.Compression, err = findCommon("client to server compression", clientKexInit.CompressionClientServer, serverKexInit.CompressionClientServer) - if err != nil { - return - } - - result.r.Compression, err = findCommon("server to client compression", clientKexInit.CompressionServerClient, serverKexInit.CompressionServerClient) - if err != nil { - return - } - - return result, nil -} - -// If rekeythreshold is too small, we can't make any progress sending -// stuff. -const minRekeyThreshold uint64 = 256 - -// Config contains configuration data common to both ServerConfig and -// ClientConfig. -type Config struct { - // Rand provides the source of entropy for cryptographic - // primitives. If Rand is nil, the cryptographic random reader - // in package crypto/rand will be used. - Rand io.Reader - - // The maximum number of bytes sent or received after which a - // new key is negotiated. It must be at least 256. If - // unspecified, 1 gigabyte is used. - RekeyThreshold uint64 - - // The allowed key exchanges algorithms. If unspecified then a - // default set of algorithms is used. - KeyExchanges []string - - // The allowed cipher algorithms. If unspecified then a sensible - // default is used. - Ciphers []string - - // The allowed MAC algorithms. If unspecified then a sensible default - // is used. - MACs []string -} - -// SetDefaults sets sensible values for unset fields in config. This is -// exported for testing: Configs passed to SSH functions are copied and have -// default values set automatically. -func (c *Config) SetDefaults() { - if c.Rand == nil { - c.Rand = rand.Reader - } - if c.Ciphers == nil { - c.Ciphers = supportedCiphers - } - var ciphers []string - for _, c := range c.Ciphers { - if cipherModes[c] != nil { - // reject the cipher if we have no cipherModes definition - ciphers = append(ciphers, c) - } - } - c.Ciphers = ciphers - - if c.KeyExchanges == nil { - c.KeyExchanges = supportedKexAlgos - } - - if c.MACs == nil { - c.MACs = supportedMACs - } - - if c.RekeyThreshold == 0 { - // RFC 4253, section 9 suggests rekeying after 1G. - c.RekeyThreshold = 1 << 30 - } - if c.RekeyThreshold < minRekeyThreshold { - c.RekeyThreshold = minRekeyThreshold - } -} - -// buildDataSignedForAuth returns the data that is signed in order to prove -// possession of a private key. See RFC 4252, section 7. -func buildDataSignedForAuth(sessionId []byte, req userAuthRequestMsg, algo, pubKey []byte) []byte { - data := struct { - Session []byte - Type byte - User string - Service string - Method string - Sign bool - Algo []byte - PubKey []byte - }{ - sessionId, - msgUserAuthRequest, - req.User, - req.Service, - req.Method, - true, - algo, - pubKey, - } - return Marshal(data) -} - -func appendU16(buf []byte, n uint16) []byte { - return append(buf, byte(n>>8), byte(n)) -} - -func appendU32(buf []byte, n uint32) []byte { - return append(buf, byte(n>>24), byte(n>>16), byte(n>>8), byte(n)) -} - -func appendU64(buf []byte, n uint64) []byte { - return append(buf, - byte(n>>56), byte(n>>48), byte(n>>40), byte(n>>32), - byte(n>>24), byte(n>>16), byte(n>>8), byte(n)) -} - -func appendInt(buf []byte, n int) []byte { - return appendU32(buf, uint32(n)) -} - -func appendString(buf []byte, s string) []byte { - buf = appendU32(buf, uint32(len(s))) - buf = append(buf, s...) - return buf -} - -func appendBool(buf []byte, b bool) []byte { - if b { - return append(buf, 1) - } - return append(buf, 0) -} - -// newCond is a helper to hide the fact that there is no usable zero -// value for sync.Cond. -func newCond() *sync.Cond { return sync.NewCond(new(sync.Mutex)) } - -// window represents the buffer available to clients -// wishing to write to a channel. -type window struct { - *sync.Cond - win uint32 // RFC 4254 5.2 says the window size can grow to 2^32-1 - writeWaiters int - closed bool -} - -// add adds win to the amount of window available -// for consumers. -func (w *window) add(win uint32) bool { - // a zero sized window adjust is a noop. - if win == 0 { - return true - } - w.L.Lock() - if w.win+win < win { - w.L.Unlock() - return false - } - w.win += win - // It is unusual that multiple goroutines would be attempting to reserve - // window space, but not guaranteed. Use broadcast to notify all waiters - // that additional window is available. - w.Broadcast() - w.L.Unlock() - return true -} - -// close sets the window to closed, so all reservations fail -// immediately. -func (w *window) close() { - w.L.Lock() - w.closed = true - w.Broadcast() - w.L.Unlock() -} - -// reserve reserves win from the available window capacity. -// If no capacity remains, reserve will block. reserve may -// return less than requested. -func (w *window) reserve(win uint32) (uint32, error) { - var err error - w.L.Lock() - w.writeWaiters++ - w.Broadcast() - for w.win == 0 && !w.closed { - w.Wait() - } - w.writeWaiters-- - if w.win < win { - win = w.win - } - w.win -= win - if w.closed { - err = io.EOF - } - w.L.Unlock() - return win, err -} - -// waitWriterBlocked waits until some goroutine is blocked for further -// writes. It is used in tests only. -func (w *window) waitWriterBlocked() { - w.Cond.L.Lock() - for w.writeWaiters == 0 { - w.Cond.Wait() - } - w.Cond.L.Unlock() -} diff --git a/modules/crypto/ssh/connection.go b/modules/crypto/ssh/connection.go deleted file mode 100755 index 979d919e..00000000 --- a/modules/crypto/ssh/connection.go +++ /dev/null @@ -1,144 +0,0 @@ -// Copyright 2013 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "fmt" - "net" -) - -// OpenChannelError is returned if the other side rejects an -// OpenChannel request. -type OpenChannelError struct { - Reason RejectionReason - Message string -} - -func (e *OpenChannelError) Error() string { - return fmt.Sprintf("ssh: rejected: %s (%s)", e.Reason, e.Message) -} - -// ConnMetadata holds metadata for the connection. -type ConnMetadata interface { - // User returns the user ID for this connection. - // It is empty if no authentication is used. - User() string - - // SessionID returns the sesson hash, also denoted by H. - SessionID() []byte - - // ClientVersion returns the client's version string as hashed - // into the session ID. - ClientVersion() []byte - - // ServerVersion returns the server's version string as hashed - // into the session ID. - ServerVersion() []byte - - // RemoteAddr returns the remote address for this connection. - RemoteAddr() net.Addr - - // LocalAddr returns the local address for this connection. - LocalAddr() net.Addr -} - -// Conn represents an SSH connection for both server and client roles. -// Conn is the basis for implementing an application layer, such -// as ClientConn, which implements the traditional shell access for -// clients. -type Conn interface { - ConnMetadata - - // SendRequest sends a global request, and returns the - // reply. If wantReply is true, it returns the response status - // and payload. See also RFC4254, section 4. - SendRequest(name string, wantReply bool, payload []byte) (bool, []byte, error) - - // OpenChannel tries to open an channel. If the request is - // rejected, it returns *OpenChannelError. On success it returns - // the SSH Channel and a Go channel for incoming, out-of-band - // requests. The Go channel must be serviced, or the - // connection will hang. - OpenChannel(name string, data []byte) (Channel, <-chan *Request, error) - - // Close closes the underlying network connection - Close() error - - // Wait blocks until the connection has shut down, and returns the - // error causing the shutdown. - Wait() error - - // TODO(hanwen): consider exposing: - // RequestKeyChange - // Disconnect -} - -// DiscardRequests consumes and rejects all requests from the -// passed-in channel. -func DiscardRequests(in <-chan *Request) { - for req := range in { - if req.WantReply { - req.Reply(false, nil) - } - } -} - -// A connection represents an incoming connection. -type connection struct { - transport *handshakeTransport - sshConn - - // The connection protocol. - *mux -} - -func (c *connection) Close() error { - return c.sshConn.conn.Close() -} - -// sshconn provides net.Conn metadata, but disallows direct reads and -// writes. -type sshConn struct { - conn net.Conn - - user string - sessionID []byte - clientVersion []byte - serverVersion []byte -} - -func dup(src []byte) []byte { - dst := make([]byte, len(src)) - copy(dst, src) - return dst -} - -func (c *sshConn) User() string { - return c.user -} - -func (c *sshConn) RemoteAddr() net.Addr { - return c.conn.RemoteAddr() -} - -func (c *sshConn) Close() error { - return c.conn.Close() -} - -func (c *sshConn) LocalAddr() net.Addr { - return c.conn.LocalAddr() -} - -func (c *sshConn) SessionID() []byte { - return dup(c.sessionID) -} - -func (c *sshConn) ClientVersion() []byte { - return dup(c.clientVersion) -} - -func (c *sshConn) ServerVersion() []byte { - return dup(c.serverVersion) -} diff --git a/modules/crypto/ssh/doc.go b/modules/crypto/ssh/doc.go deleted file mode 100755 index a5ff8af6..00000000 --- a/modules/crypto/ssh/doc.go +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -/* -Package ssh implements an SSH client and server. - -SSH is a transport security protocol, an authentication protocol and a -family of application protocols. The most typical application level -protocol is a remote shell and this is specifically implemented. However, -the multiplexed nature of SSH is exposed to users that wish to support -others. - -References: - [PROTOCOL.certkeys]: http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/PROTOCOL.certkeys?rev=HEAD - [SSH-PARAMETERS]: http://www.iana.org/assignments/ssh-parameters/ssh-parameters.xml#ssh-parameters-1 -*/ -package ssh diff --git a/modules/crypto/ssh/example_test.go b/modules/crypto/ssh/example_test.go deleted file mode 100755 index 3b1327f4..00000000 --- a/modules/crypto/ssh/example_test.go +++ /dev/null @@ -1,211 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh_test - -import ( - "bytes" - "fmt" - "io/ioutil" - "log" - "net" - "net/http" - - "github.com/gogits/gogs/modules/crypto/ssh" - "github.com/gogits/gogs/modules/crypto/ssh/terminal" -) - -func ExampleNewServerConn() { - // An SSH server is represented by a ServerConfig, which holds - // certificate details and handles authentication of ServerConns. - config := &ssh.ServerConfig{ - PasswordCallback: func(c ssh.ConnMetadata, pass []byte) (*ssh.Permissions, error) { - // Should use constant-time compare (or better, salt+hash) in - // a production setting. - if c.User() == "testuser" && string(pass) == "tiger" { - return nil, nil - } - return nil, fmt.Errorf("password rejected for %q", c.User()) - }, - } - - privateBytes, err := ioutil.ReadFile("id_rsa") - if err != nil { - panic("Failed to load private key") - } - - private, err := ssh.ParsePrivateKey(privateBytes) - if err != nil { - panic("Failed to parse private key") - } - - config.AddHostKey(private) - - // Once a ServerConfig has been configured, connections can be - // accepted. - listener, err := net.Listen("tcp", "0.0.0.0:2022") - if err != nil { - panic("failed to listen for connection") - } - nConn, err := listener.Accept() - if err != nil { - panic("failed to accept incoming connection") - } - - // Before use, a handshake must be performed on the incoming - // net.Conn. - _, chans, reqs, err := ssh.NewServerConn(nConn, config) - if err != nil { - panic("failed to handshake") - } - // The incoming Request channel must be serviced. - go ssh.DiscardRequests(reqs) - - // Service the incoming Channel channel. - for newChannel := range chans { - // Channels have a type, depending on the application level - // protocol intended. In the case of a shell, the type is - // "session" and ServerShell may be used to present a simple - // terminal interface. - if newChannel.ChannelType() != "session" { - newChannel.Reject(ssh.UnknownChannelType, "unknown channel type") - continue - } - channel, requests, err := newChannel.Accept() - if err != nil { - panic("could not accept channel.") - } - - // Sessions have out-of-band requests such as "shell", - // "pty-req" and "env". Here we handle only the - // "shell" request. - go func(in <-chan *ssh.Request) { - for req := range in { - ok := false - switch req.Type { - case "shell": - ok = true - if len(req.Payload) > 0 { - // We don't accept any - // commands, only the - // default shell. - ok = false - } - } - req.Reply(ok, nil) - } - }(requests) - - term := terminal.NewTerminal(channel, "> ") - - go func() { - defer channel.Close() - for { - line, err := term.ReadLine() - if err != nil { - break - } - fmt.Println(line) - } - }() - } -} - -func ExampleDial() { - // An SSH client is represented with a ClientConn. Currently only - // the "password" authentication method is supported. - // - // To authenticate with the remote server you must pass at least one - // implementation of AuthMethod via the Auth field in ClientConfig. - config := &ssh.ClientConfig{ - User: "username", - Auth: []ssh.AuthMethod{ - ssh.Password("yourpassword"), - }, - } - client, err := ssh.Dial("tcp", "yourserver.com:22", config) - if err != nil { - panic("Failed to dial: " + err.Error()) - } - - // Each ClientConn can support multiple interactive sessions, - // represented by a Session. - session, err := client.NewSession() - if err != nil { - panic("Failed to create session: " + err.Error()) - } - defer session.Close() - - // Once a Session is created, you can execute a single command on - // the remote side using the Run method. - var b bytes.Buffer - session.Stdout = &b - if err := session.Run("/usr/bin/whoami"); err != nil { - panic("Failed to run: " + err.Error()) - } - fmt.Println(b.String()) -} - -func ExampleClient_Listen() { - config := &ssh.ClientConfig{ - User: "username", - Auth: []ssh.AuthMethod{ - ssh.Password("password"), - }, - } - // Dial your ssh server. - conn, err := ssh.Dial("tcp", "localhost:22", config) - if err != nil { - log.Fatalf("unable to connect: %s", err) - } - defer conn.Close() - - // Request the remote side to open port 8080 on all interfaces. - l, err := conn.Listen("tcp", "0.0.0.0:8080") - if err != nil { - log.Fatalf("unable to register tcp forward: %v", err) - } - defer l.Close() - - // Serve HTTP with your SSH server acting as a reverse proxy. - http.Serve(l, http.HandlerFunc(func(resp http.ResponseWriter, req *http.Request) { - fmt.Fprintf(resp, "Hello world!\n") - })) -} - -func ExampleSession_RequestPty() { - // Create client config - config := &ssh.ClientConfig{ - User: "username", - Auth: []ssh.AuthMethod{ - ssh.Password("password"), - }, - } - // Connect to ssh server - conn, err := ssh.Dial("tcp", "localhost:22", config) - if err != nil { - log.Fatalf("unable to connect: %s", err) - } - defer conn.Close() - // Create a session - session, err := conn.NewSession() - if err != nil { - log.Fatalf("unable to create session: %s", err) - } - defer session.Close() - // Set up terminal modes - modes := ssh.TerminalModes{ - ssh.ECHO: 0, // disable echoing - ssh.TTY_OP_ISPEED: 14400, // input speed = 14.4kbaud - ssh.TTY_OP_OSPEED: 14400, // output speed = 14.4kbaud - } - // Request pseudo terminal - if err := session.RequestPty("xterm", 80, 40, modes); err != nil { - log.Fatalf("request for pseudo terminal failed: %s", err) - } - // Start remote shell - if err := session.Shell(); err != nil { - log.Fatalf("failed to start shell: %s", err) - } -} diff --git a/modules/crypto/ssh/handshake.go b/modules/crypto/ssh/handshake.go deleted file mode 100755 index 1c54f758..00000000 --- a/modules/crypto/ssh/handshake.go +++ /dev/null @@ -1,412 +0,0 @@ -// Copyright 2013 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "crypto/rand" - "errors" - "fmt" - "io" - "log" - "net" - "sync" -) - -// debugHandshake, if set, prints messages sent and received. Key -// exchange messages are printed as if DH were used, so the debug -// messages are wrong when using ECDH. -const debugHandshake = false - -// keyingTransport is a packet based transport that supports key -// changes. It need not be thread-safe. It should pass through -// msgNewKeys in both directions. -type keyingTransport interface { - packetConn - - // prepareKeyChange sets up a key change. The key change for a - // direction will be effected if a msgNewKeys message is sent - // or received. - prepareKeyChange(*algorithms, *kexResult) error - - // getSessionID returns the session ID. prepareKeyChange must - // have been called once. - getSessionID() []byte -} - -// rekeyingTransport is the interface of handshakeTransport that we -// (internally) expose to ClientConn and ServerConn. -type rekeyingTransport interface { - packetConn - - // requestKeyChange asks the remote side to change keys. All - // writes are blocked until the key change succeeds, which is - // signaled by reading a msgNewKeys. - requestKeyChange() error - - // getSessionID returns the session ID. This is only valid - // after the first key change has completed. - getSessionID() []byte -} - -// handshakeTransport implements rekeying on top of a keyingTransport -// and offers a thread-safe writePacket() interface. -type handshakeTransport struct { - conn keyingTransport - config *Config - - serverVersion []byte - clientVersion []byte - - // hostKeys is non-empty if we are the server. In that case, - // it contains all host keys that can be used to sign the - // connection. - hostKeys []Signer - - // hostKeyAlgorithms is non-empty if we are the client. In that case, - // we accept these key types from the server as host key. - hostKeyAlgorithms []string - - // On read error, incoming is closed, and readError is set. - incoming chan []byte - readError error - - // data for host key checking - hostKeyCallback func(hostname string, remote net.Addr, key PublicKey) error - dialAddress string - remoteAddr net.Addr - - readSinceKex uint64 - - // Protects the writing side of the connection - mu sync.Mutex - cond *sync.Cond - sentInitPacket []byte - sentInitMsg *kexInitMsg - writtenSinceKex uint64 - writeError error -} - -func newHandshakeTransport(conn keyingTransport, config *Config, clientVersion, serverVersion []byte) *handshakeTransport { - t := &handshakeTransport{ - conn: conn, - serverVersion: serverVersion, - clientVersion: clientVersion, - incoming: make(chan []byte, 16), - config: config, - } - t.cond = sync.NewCond(&t.mu) - return t -} - -func newClientTransport(conn keyingTransport, clientVersion, serverVersion []byte, config *ClientConfig, dialAddr string, addr net.Addr) *handshakeTransport { - t := newHandshakeTransport(conn, &config.Config, clientVersion, serverVersion) - t.dialAddress = dialAddr - t.remoteAddr = addr - t.hostKeyCallback = config.HostKeyCallback - if config.HostKeyAlgorithms != nil { - t.hostKeyAlgorithms = config.HostKeyAlgorithms - } else { - t.hostKeyAlgorithms = supportedHostKeyAlgos - } - go t.readLoop() - return t -} - -func newServerTransport(conn keyingTransport, clientVersion, serverVersion []byte, config *ServerConfig) *handshakeTransport { - t := newHandshakeTransport(conn, &config.Config, clientVersion, serverVersion) - t.hostKeys = config.hostKeys - go t.readLoop() - return t -} - -func (t *handshakeTransport) getSessionID() []byte { - return t.conn.getSessionID() -} - -func (t *handshakeTransport) id() string { - if len(t.hostKeys) > 0 { - return "server" - } - return "client" -} - -func (t *handshakeTransport) readPacket() ([]byte, error) { - p, ok := <-t.incoming - if !ok { - return nil, t.readError - } - return p, nil -} - -func (t *handshakeTransport) readLoop() { - for { - p, err := t.readOnePacket() - if err != nil { - t.readError = err - close(t.incoming) - break - } - if p[0] == msgIgnore || p[0] == msgDebug { - continue - } - t.incoming <- p - } - - // If we can't read, declare the writing part dead too. - t.mu.Lock() - defer t.mu.Unlock() - if t.writeError == nil { - t.writeError = t.readError - } - t.cond.Broadcast() -} - -func (t *handshakeTransport) readOnePacket() ([]byte, error) { - if t.readSinceKex > t.config.RekeyThreshold { - if err := t.requestKeyChange(); err != nil { - return nil, err - } - } - - p, err := t.conn.readPacket() - if err != nil { - return nil, err - } - - t.readSinceKex += uint64(len(p)) - if debugHandshake { - msg, err := decode(p) - log.Printf("%s got %T %v (%v)", t.id(), msg, msg, err) - } - if p[0] != msgKexInit { - return p, nil - } - err = t.enterKeyExchange(p) - - t.mu.Lock() - if err != nil { - // drop connection - t.conn.Close() - t.writeError = err - } - - if debugHandshake { - log.Printf("%s exited key exchange, err %v", t.id(), err) - } - - // Unblock writers. - t.sentInitMsg = nil - t.sentInitPacket = nil - t.cond.Broadcast() - t.writtenSinceKex = 0 - t.mu.Unlock() - - if err != nil { - return nil, err - } - - t.readSinceKex = 0 - return []byte{msgNewKeys}, nil -} - -// sendKexInit sends a key change message, and returns the message -// that was sent. After initiating the key change, all writes will be -// blocked until the change is done, and a failed key change will -// close the underlying transport. This function is safe for -// concurrent use by multiple goroutines. -func (t *handshakeTransport) sendKexInit() (*kexInitMsg, []byte, error) { - t.mu.Lock() - defer t.mu.Unlock() - return t.sendKexInitLocked() -} - -func (t *handshakeTransport) requestKeyChange() error { - _, _, err := t.sendKexInit() - return err -} - -// sendKexInitLocked sends a key change message. t.mu must be locked -// while this happens. -func (t *handshakeTransport) sendKexInitLocked() (*kexInitMsg, []byte, error) { - // kexInits may be sent either in response to the other side, - // or because our side wants to initiate a key change, so we - // may have already sent a kexInit. In that case, don't send a - // second kexInit. - if t.sentInitMsg != nil { - return t.sentInitMsg, t.sentInitPacket, nil - } - msg := &kexInitMsg{ - KexAlgos: t.config.KeyExchanges, - CiphersClientServer: t.config.Ciphers, - CiphersServerClient: t.config.Ciphers, - MACsClientServer: t.config.MACs, - MACsServerClient: t.config.MACs, - CompressionClientServer: supportedCompressions, - CompressionServerClient: supportedCompressions, - } - io.ReadFull(rand.Reader, msg.Cookie[:]) - - if len(t.hostKeys) > 0 { - for _, k := range t.hostKeys { - msg.ServerHostKeyAlgos = append( - msg.ServerHostKeyAlgos, k.PublicKey().Type()) - } - } else { - msg.ServerHostKeyAlgos = t.hostKeyAlgorithms - } - packet := Marshal(msg) - - // writePacket destroys the contents, so save a copy. - packetCopy := make([]byte, len(packet)) - copy(packetCopy, packet) - - if err := t.conn.writePacket(packetCopy); err != nil { - return nil, nil, err - } - - t.sentInitMsg = msg - t.sentInitPacket = packet - return msg, packet, nil -} - -func (t *handshakeTransport) writePacket(p []byte) error { - t.mu.Lock() - defer t.mu.Unlock() - - if t.writtenSinceKex > t.config.RekeyThreshold { - t.sendKexInitLocked() - } - for t.sentInitMsg != nil && t.writeError == nil { - t.cond.Wait() - } - if t.writeError != nil { - return t.writeError - } - t.writtenSinceKex += uint64(len(p)) - - switch p[0] { - case msgKexInit: - return errors.New("ssh: only handshakeTransport can send kexInit") - case msgNewKeys: - return errors.New("ssh: only handshakeTransport can send newKeys") - default: - return t.conn.writePacket(p) - } -} - -func (t *handshakeTransport) Close() error { - return t.conn.Close() -} - -// enterKeyExchange runs the key exchange. -func (t *handshakeTransport) enterKeyExchange(otherInitPacket []byte) error { - if debugHandshake { - log.Printf("%s entered key exchange", t.id()) - } - myInit, myInitPacket, err := t.sendKexInit() - if err != nil { - return err - } - - otherInit := &kexInitMsg{} - if err := Unmarshal(otherInitPacket, otherInit); err != nil { - return err - } - - magics := handshakeMagics{ - clientVersion: t.clientVersion, - serverVersion: t.serverVersion, - clientKexInit: otherInitPacket, - serverKexInit: myInitPacket, - } - - clientInit := otherInit - serverInit := myInit - if len(t.hostKeys) == 0 { - clientInit = myInit - serverInit = otherInit - - magics.clientKexInit = myInitPacket - magics.serverKexInit = otherInitPacket - } - - algs, err := findAgreedAlgorithms(clientInit, serverInit) - if err != nil { - return err - } - - // We don't send FirstKexFollows, but we handle receiving it. - if otherInit.FirstKexFollows && algs.kex != otherInit.KexAlgos[0] { - // other side sent a kex message for the wrong algorithm, - // which we have to ignore. - if _, err := t.conn.readPacket(); err != nil { - return err - } - } - - kex, ok := kexAlgoMap[algs.kex] - if !ok { - return fmt.Errorf("ssh: unexpected key exchange algorithm %v", algs.kex) - } - - var result *kexResult - if len(t.hostKeys) > 0 { - result, err = t.server(kex, algs, &magics) - } else { - result, err = t.client(kex, algs, &magics) - } - - if err != nil { - return err - } - - t.conn.prepareKeyChange(algs, result) - if err = t.conn.writePacket([]byte{msgNewKeys}); err != nil { - return err - } - if packet, err := t.conn.readPacket(); err != nil { - return err - } else if packet[0] != msgNewKeys { - return unexpectedMessageError(msgNewKeys, packet[0]) - } - return nil -} - -func (t *handshakeTransport) server(kex kexAlgorithm, algs *algorithms, magics *handshakeMagics) (*kexResult, error) { - var hostKey Signer - for _, k := range t.hostKeys { - if algs.hostKey == k.PublicKey().Type() { - hostKey = k - } - } - - r, err := kex.Server(t.conn, t.config.Rand, magics, hostKey) - return r, err -} - -func (t *handshakeTransport) client(kex kexAlgorithm, algs *algorithms, magics *handshakeMagics) (*kexResult, error) { - result, err := kex.Client(t.conn, t.config.Rand, magics) - if err != nil { - return nil, err - } - - hostKey, err := ParsePublicKey(result.HostKey) - if err != nil { - return nil, err - } - - if err := verifyHostKeySignature(hostKey, result); err != nil { - return nil, err - } - - if t.hostKeyCallback != nil { - err = t.hostKeyCallback(t.dialAddress, t.remoteAddr, hostKey) - if err != nil { - return nil, err - } - } - - return result, nil -} diff --git a/modules/crypto/ssh/handshake_test.go b/modules/crypto/ssh/handshake_test.go deleted file mode 100755 index b86d369c..00000000 --- a/modules/crypto/ssh/handshake_test.go +++ /dev/null @@ -1,415 +0,0 @@ -// Copyright 2013 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "bytes" - "crypto/rand" - "errors" - "fmt" - "net" - "runtime" - "strings" - "sync" - "testing" -) - -type testChecker struct { - calls []string -} - -func (t *testChecker) Check(dialAddr string, addr net.Addr, key PublicKey) error { - if dialAddr == "bad" { - return fmt.Errorf("dialAddr is bad") - } - - if tcpAddr, ok := addr.(*net.TCPAddr); !ok || tcpAddr == nil { - return fmt.Errorf("testChecker: got %T want *net.TCPAddr", addr) - } - - t.calls = append(t.calls, fmt.Sprintf("%s %v %s %x", dialAddr, addr, key.Type(), key.Marshal())) - - return nil -} - -// netPipe is analogous to net.Pipe, but it uses a real net.Conn, and -// therefore is buffered (net.Pipe deadlocks if both sides start with -// a write.) -func netPipe() (net.Conn, net.Conn, error) { - listener, err := net.Listen("tcp", "127.0.0.1:0") - if err != nil { - return nil, nil, err - } - defer listener.Close() - c1, err := net.Dial("tcp", listener.Addr().String()) - if err != nil { - return nil, nil, err - } - - c2, err := listener.Accept() - if err != nil { - c1.Close() - return nil, nil, err - } - - return c1, c2, nil -} - -func handshakePair(clientConf *ClientConfig, addr string) (client *handshakeTransport, server *handshakeTransport, err error) { - a, b, err := netPipe() - if err != nil { - return nil, nil, err - } - - trC := newTransport(a, rand.Reader, true) - trS := newTransport(b, rand.Reader, false) - clientConf.SetDefaults() - - v := []byte("version") - client = newClientTransport(trC, v, v, clientConf, addr, a.RemoteAddr()) - - serverConf := &ServerConfig{} - serverConf.AddHostKey(testSigners["ecdsa"]) - serverConf.AddHostKey(testSigners["rsa"]) - serverConf.SetDefaults() - server = newServerTransport(trS, v, v, serverConf) - - return client, server, nil -} - -func TestHandshakeBasic(t *testing.T) { - if runtime.GOOS == "plan9" { - t.Skip("see golang.org/issue/7237") - } - checker := &testChecker{} - trC, trS, err := handshakePair(&ClientConfig{HostKeyCallback: checker.Check}, "addr") - if err != nil { - t.Fatalf("handshakePair: %v", err) - } - - defer trC.Close() - defer trS.Close() - - go func() { - // Client writes a bunch of stuff, and does a key - // change in the middle. This should not confuse the - // handshake in progress - for i := 0; i < 10; i++ { - p := []byte{msgRequestSuccess, byte(i)} - if err := trC.writePacket(p); err != nil { - t.Fatalf("sendPacket: %v", err) - } - if i == 5 { - // halfway through, we request a key change. - _, _, err := trC.sendKexInit() - if err != nil { - t.Fatalf("sendKexInit: %v", err) - } - } - } - trC.Close() - }() - - // Server checks that client messages come in cleanly - i := 0 - for { - p, err := trS.readPacket() - if err != nil { - break - } - if p[0] == msgNewKeys { - continue - } - want := []byte{msgRequestSuccess, byte(i)} - if bytes.Compare(p, want) != 0 { - t.Errorf("message %d: got %q, want %q", i, p, want) - } - i++ - } - if i != 10 { - t.Errorf("received %d messages, want 10.", i) - } - - // If all went well, we registered exactly 1 key change. - if len(checker.calls) != 1 { - t.Fatalf("got %d host key checks, want 1", len(checker.calls)) - } - - pub := testSigners["ecdsa"].PublicKey() - want := fmt.Sprintf("%s %v %s %x", "addr", trC.remoteAddr, pub.Type(), pub.Marshal()) - if want != checker.calls[0] { - t.Errorf("got %q want %q for host key check", checker.calls[0], want) - } -} - -func TestHandshakeError(t *testing.T) { - checker := &testChecker{} - trC, trS, err := handshakePair(&ClientConfig{HostKeyCallback: checker.Check}, "bad") - if err != nil { - t.Fatalf("handshakePair: %v", err) - } - defer trC.Close() - defer trS.Close() - - // send a packet - packet := []byte{msgRequestSuccess, 42} - if err := trC.writePacket(packet); err != nil { - t.Errorf("writePacket: %v", err) - } - - // Now request a key change. - _, _, err = trC.sendKexInit() - if err != nil { - t.Errorf("sendKexInit: %v", err) - } - - // the key change will fail, and afterwards we can't write. - if err := trC.writePacket([]byte{msgRequestSuccess, 43}); err == nil { - t.Errorf("writePacket after botched rekey succeeded.") - } - - readback, err := trS.readPacket() - if err != nil { - t.Fatalf("server closed too soon: %v", err) - } - if bytes.Compare(readback, packet) != 0 { - t.Errorf("got %q want %q", readback, packet) - } - readback, err = trS.readPacket() - if err == nil { - t.Errorf("got a message %q after failed key change", readback) - } -} - -func TestHandshakeTwice(t *testing.T) { - checker := &testChecker{} - trC, trS, err := handshakePair(&ClientConfig{HostKeyCallback: checker.Check}, "addr") - if err != nil { - t.Fatalf("handshakePair: %v", err) - } - - defer trC.Close() - defer trS.Close() - - // send a packet - packet := make([]byte, 5) - packet[0] = msgRequestSuccess - if err := trC.writePacket(packet); err != nil { - t.Errorf("writePacket: %v", err) - } - - // Now request a key change. - _, _, err = trC.sendKexInit() - if err != nil { - t.Errorf("sendKexInit: %v", err) - } - - // Send another packet. Use a fresh one, since writePacket destroys. - packet = make([]byte, 5) - packet[0] = msgRequestSuccess - if err := trC.writePacket(packet); err != nil { - t.Errorf("writePacket: %v", err) - } - - // 2nd key change. - _, _, err = trC.sendKexInit() - if err != nil { - t.Errorf("sendKexInit: %v", err) - } - - packet = make([]byte, 5) - packet[0] = msgRequestSuccess - if err := trC.writePacket(packet); err != nil { - t.Errorf("writePacket: %v", err) - } - - packet = make([]byte, 5) - packet[0] = msgRequestSuccess - for i := 0; i < 5; i++ { - msg, err := trS.readPacket() - if err != nil { - t.Fatalf("server closed too soon: %v", err) - } - if msg[0] == msgNewKeys { - continue - } - - if bytes.Compare(msg, packet) != 0 { - t.Errorf("packet %d: got %q want %q", i, msg, packet) - } - } - if len(checker.calls) != 2 { - t.Errorf("got %d key changes, want 2", len(checker.calls)) - } -} - -func TestHandshakeAutoRekeyWrite(t *testing.T) { - checker := &testChecker{} - clientConf := &ClientConfig{HostKeyCallback: checker.Check} - clientConf.RekeyThreshold = 500 - trC, trS, err := handshakePair(clientConf, "addr") - if err != nil { - t.Fatalf("handshakePair: %v", err) - } - defer trC.Close() - defer trS.Close() - - for i := 0; i < 5; i++ { - packet := make([]byte, 251) - packet[0] = msgRequestSuccess - if err := trC.writePacket(packet); err != nil { - t.Errorf("writePacket: %v", err) - } - } - - j := 0 - for ; j < 5; j++ { - _, err := trS.readPacket() - if err != nil { - break - } - } - - if j != 5 { - t.Errorf("got %d, want 5 messages", j) - } - - if len(checker.calls) != 2 { - t.Errorf("got %d key changes, wanted 2", len(checker.calls)) - } -} - -type syncChecker struct { - called chan int -} - -func (t *syncChecker) Check(dialAddr string, addr net.Addr, key PublicKey) error { - t.called <- 1 - return nil -} - -func TestHandshakeAutoRekeyRead(t *testing.T) { - sync := &syncChecker{make(chan int, 2)} - clientConf := &ClientConfig{ - HostKeyCallback: sync.Check, - } - clientConf.RekeyThreshold = 500 - - trC, trS, err := handshakePair(clientConf, "addr") - if err != nil { - t.Fatalf("handshakePair: %v", err) - } - defer trC.Close() - defer trS.Close() - - packet := make([]byte, 501) - packet[0] = msgRequestSuccess - if err := trS.writePacket(packet); err != nil { - t.Fatalf("writePacket: %v", err) - } - // While we read out the packet, a key change will be - // initiated. - if _, err := trC.readPacket(); err != nil { - t.Fatalf("readPacket(client): %v", err) - } - - <-sync.called -} - -// errorKeyingTransport generates errors after a given number of -// read/write operations. -type errorKeyingTransport struct { - packetConn - readLeft, writeLeft int -} - -func (n *errorKeyingTransport) prepareKeyChange(*algorithms, *kexResult) error { - return nil -} -func (n *errorKeyingTransport) getSessionID() []byte { - return nil -} - -func (n *errorKeyingTransport) writePacket(packet []byte) error { - if n.writeLeft == 0 { - n.Close() - return errors.New("barf") - } - - n.writeLeft-- - return n.packetConn.writePacket(packet) -} - -func (n *errorKeyingTransport) readPacket() ([]byte, error) { - if n.readLeft == 0 { - n.Close() - return nil, errors.New("barf") - } - - n.readLeft-- - return n.packetConn.readPacket() -} - -func TestHandshakeErrorHandlingRead(t *testing.T) { - for i := 0; i < 20; i++ { - testHandshakeErrorHandlingN(t, i, -1) - } -} - -func TestHandshakeErrorHandlingWrite(t *testing.T) { - for i := 0; i < 20; i++ { - testHandshakeErrorHandlingN(t, -1, i) - } -} - -// testHandshakeErrorHandlingN runs handshakes, injecting errors. If -// handshakeTransport deadlocks, the go runtime will detect it and -// panic. -func testHandshakeErrorHandlingN(t *testing.T, readLimit, writeLimit int) { - msg := Marshal(&serviceRequestMsg{strings.Repeat("x", int(minRekeyThreshold)/4)}) - - a, b := memPipe() - defer a.Close() - defer b.Close() - - key := testSigners["ecdsa"] - serverConf := Config{RekeyThreshold: minRekeyThreshold} - serverConf.SetDefaults() - serverConn := newHandshakeTransport(&errorKeyingTransport{a, readLimit, writeLimit}, &serverConf, []byte{'a'}, []byte{'b'}) - serverConn.hostKeys = []Signer{key} - go serverConn.readLoop() - - clientConf := Config{RekeyThreshold: 10 * minRekeyThreshold} - clientConf.SetDefaults() - clientConn := newHandshakeTransport(&errorKeyingTransport{b, -1, -1}, &clientConf, []byte{'a'}, []byte{'b'}) - clientConn.hostKeyAlgorithms = []string{key.PublicKey().Type()} - go clientConn.readLoop() - - var wg sync.WaitGroup - wg.Add(4) - - for _, hs := range []packetConn{serverConn, clientConn} { - go func(c packetConn) { - for { - err := c.writePacket(msg) - if err != nil { - break - } - } - wg.Done() - }(hs) - go func(c packetConn) { - for { - _, err := c.readPacket() - if err != nil { - break - } - } - wg.Done() - }(hs) - } - - wg.Wait() -} diff --git a/modules/crypto/ssh/kex.go b/modules/crypto/ssh/kex.go deleted file mode 100755 index ea19d537..00000000 --- a/modules/crypto/ssh/kex.go +++ /dev/null @@ -1,526 +0,0 @@ -// Copyright 2013 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "crypto" - "crypto/ecdsa" - "crypto/elliptic" - "crypto/subtle" - "crypto/rand" - "errors" - "io" - "math/big" - - "golang.org/x/crypto/curve25519" -) - -const ( - kexAlgoDH1SHA1 = "diffie-hellman-group1-sha1" - kexAlgoDH14SHA1 = "diffie-hellman-group14-sha1" - kexAlgoECDH256 = "ecdh-sha2-nistp256" - kexAlgoECDH384 = "ecdh-sha2-nistp384" - kexAlgoECDH521 = "ecdh-sha2-nistp521" - kexAlgoCurve25519SHA256 = "curve25519-sha256@libssh.org" -) - -// kexResult captures the outcome of a key exchange. -type kexResult struct { - // Session hash. See also RFC 4253, section 8. - H []byte - - // Shared secret. See also RFC 4253, section 8. - K []byte - - // Host key as hashed into H. - HostKey []byte - - // Signature of H. - Signature []byte - - // A cryptographic hash function that matches the security - // level of the key exchange algorithm. It is used for - // calculating H, and for deriving keys from H and K. - Hash crypto.Hash - - // The session ID, which is the first H computed. This is used - // to signal data inside transport. - SessionID []byte -} - -// handshakeMagics contains data that is always included in the -// session hash. -type handshakeMagics struct { - clientVersion, serverVersion []byte - clientKexInit, serverKexInit []byte -} - -func (m *handshakeMagics) write(w io.Writer) { - writeString(w, m.clientVersion) - writeString(w, m.serverVersion) - writeString(w, m.clientKexInit) - writeString(w, m.serverKexInit) -} - -// kexAlgorithm abstracts different key exchange algorithms. -type kexAlgorithm interface { - // Server runs server-side key agreement, signing the result - // with a hostkey. - Server(p packetConn, rand io.Reader, magics *handshakeMagics, s Signer) (*kexResult, error) - - // Client runs the client-side key agreement. Caller is - // responsible for verifying the host key signature. - Client(p packetConn, rand io.Reader, magics *handshakeMagics) (*kexResult, error) -} - -// dhGroup is a multiplicative group suitable for implementing Diffie-Hellman key agreement. -type dhGroup struct { - g, p *big.Int -} - -func (group *dhGroup) diffieHellman(theirPublic, myPrivate *big.Int) (*big.Int, error) { - if theirPublic.Sign() <= 0 || theirPublic.Cmp(group.p) >= 0 { - return nil, errors.New("ssh: DH parameter out of bounds") - } - return new(big.Int).Exp(theirPublic, myPrivate, group.p), nil -} - -func (group *dhGroup) Client(c packetConn, randSource io.Reader, magics *handshakeMagics) (*kexResult, error) { - hashFunc := crypto.SHA1 - - x, err := rand.Int(randSource, group.p) - if err != nil { - return nil, err - } - X := new(big.Int).Exp(group.g, x, group.p) - kexDHInit := kexDHInitMsg{ - X: X, - } - if err := c.writePacket(Marshal(&kexDHInit)); err != nil { - return nil, err - } - - packet, err := c.readPacket() - if err != nil { - return nil, err - } - - var kexDHReply kexDHReplyMsg - if err = Unmarshal(packet, &kexDHReply); err != nil { - return nil, err - } - - kInt, err := group.diffieHellman(kexDHReply.Y, x) - if err != nil { - return nil, err - } - - h := hashFunc.New() - magics.write(h) - writeString(h, kexDHReply.HostKey) - writeInt(h, X) - writeInt(h, kexDHReply.Y) - K := make([]byte, intLength(kInt)) - marshalInt(K, kInt) - h.Write(K) - - return &kexResult{ - H: h.Sum(nil), - K: K, - HostKey: kexDHReply.HostKey, - Signature: kexDHReply.Signature, - Hash: crypto.SHA1, - }, nil -} - -func (group *dhGroup) Server(c packetConn, randSource io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { - hashFunc := crypto.SHA1 - packet, err := c.readPacket() - if err != nil { - return - } - var kexDHInit kexDHInitMsg - if err = Unmarshal(packet, &kexDHInit); err != nil { - return - } - - y, err := rand.Int(randSource, group.p) - if err != nil { - return - } - - Y := new(big.Int).Exp(group.g, y, group.p) - kInt, err := group.diffieHellman(kexDHInit.X, y) - if err != nil { - return nil, err - } - - hostKeyBytes := priv.PublicKey().Marshal() - - h := hashFunc.New() - magics.write(h) - writeString(h, hostKeyBytes) - writeInt(h, kexDHInit.X) - writeInt(h, Y) - - K := make([]byte, intLength(kInt)) - marshalInt(K, kInt) - h.Write(K) - - H := h.Sum(nil) - - // H is already a hash, but the hostkey signing will apply its - // own key-specific hash algorithm. - sig, err := signAndMarshal(priv, randSource, H) - if err != nil { - return nil, err - } - - kexDHReply := kexDHReplyMsg{ - HostKey: hostKeyBytes, - Y: Y, - Signature: sig, - } - packet = Marshal(&kexDHReply) - - err = c.writePacket(packet) - return &kexResult{ - H: H, - K: K, - HostKey: hostKeyBytes, - Signature: sig, - Hash: crypto.SHA1, - }, nil -} - -// ecdh performs Elliptic Curve Diffie-Hellman key exchange as -// described in RFC 5656, section 4. -type ecdh struct { - curve elliptic.Curve -} - -func (kex *ecdh) Client(c packetConn, rand io.Reader, magics *handshakeMagics) (*kexResult, error) { - ephKey, err := ecdsa.GenerateKey(kex.curve, rand) - if err != nil { - return nil, err - } - - kexInit := kexECDHInitMsg{ - ClientPubKey: elliptic.Marshal(kex.curve, ephKey.PublicKey.X, ephKey.PublicKey.Y), - } - - serialized := Marshal(&kexInit) - if err := c.writePacket(serialized); err != nil { - return nil, err - } - - packet, err := c.readPacket() - if err != nil { - return nil, err - } - - var reply kexECDHReplyMsg - if err = Unmarshal(packet, &reply); err != nil { - return nil, err - } - - x, y, err := unmarshalECKey(kex.curve, reply.EphemeralPubKey) - if err != nil { - return nil, err - } - - // generate shared secret - secret, _ := kex.curve.ScalarMult(x, y, ephKey.D.Bytes()) - - h := ecHash(kex.curve).New() - magics.write(h) - writeString(h, reply.HostKey) - writeString(h, kexInit.ClientPubKey) - writeString(h, reply.EphemeralPubKey) - K := make([]byte, intLength(secret)) - marshalInt(K, secret) - h.Write(K) - - return &kexResult{ - H: h.Sum(nil), - K: K, - HostKey: reply.HostKey, - Signature: reply.Signature, - Hash: ecHash(kex.curve), - }, nil -} - -// unmarshalECKey parses and checks an EC key. -func unmarshalECKey(curve elliptic.Curve, pubkey []byte) (x, y *big.Int, err error) { - x, y = elliptic.Unmarshal(curve, pubkey) - if x == nil { - return nil, nil, errors.New("ssh: elliptic.Unmarshal failure") - } - if !validateECPublicKey(curve, x, y) { - return nil, nil, errors.New("ssh: public key not on curve") - } - return x, y, nil -} - -// validateECPublicKey checks that the point is a valid public key for -// the given curve. See [SEC1], 3.2.2 -func validateECPublicKey(curve elliptic.Curve, x, y *big.Int) bool { - if x.Sign() == 0 && y.Sign() == 0 { - return false - } - - if x.Cmp(curve.Params().P) >= 0 { - return false - } - - if y.Cmp(curve.Params().P) >= 0 { - return false - } - - if !curve.IsOnCurve(x, y) { - return false - } - - // We don't check if N * PubKey == 0, since - // - // - the NIST curves have cofactor = 1, so this is implicit. - // (We don't foresee an implementation that supports non NIST - // curves) - // - // - for ephemeral keys, we don't need to worry about small - // subgroup attacks. - return true -} - -func (kex *ecdh) Server(c packetConn, rand io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { - packet, err := c.readPacket() - if err != nil { - return nil, err - } - - var kexECDHInit kexECDHInitMsg - if err = Unmarshal(packet, &kexECDHInit); err != nil { - return nil, err - } - - clientX, clientY, err := unmarshalECKey(kex.curve, kexECDHInit.ClientPubKey) - if err != nil { - return nil, err - } - - // We could cache this key across multiple users/multiple - // connection attempts, but the benefit is small. OpenSSH - // generates a new key for each incoming connection. - ephKey, err := ecdsa.GenerateKey(kex.curve, rand) - if err != nil { - return nil, err - } - - hostKeyBytes := priv.PublicKey().Marshal() - - serializedEphKey := elliptic.Marshal(kex.curve, ephKey.PublicKey.X, ephKey.PublicKey.Y) - - // generate shared secret - secret, _ := kex.curve.ScalarMult(clientX, clientY, ephKey.D.Bytes()) - - h := ecHash(kex.curve).New() - magics.write(h) - writeString(h, hostKeyBytes) - writeString(h, kexECDHInit.ClientPubKey) - writeString(h, serializedEphKey) - - K := make([]byte, intLength(secret)) - marshalInt(K, secret) - h.Write(K) - - H := h.Sum(nil) - - // H is already a hash, but the hostkey signing will apply its - // own key-specific hash algorithm. - sig, err := signAndMarshal(priv, rand, H) - if err != nil { - return nil, err - } - - reply := kexECDHReplyMsg{ - EphemeralPubKey: serializedEphKey, - HostKey: hostKeyBytes, - Signature: sig, - } - - serialized := Marshal(&reply) - if err := c.writePacket(serialized); err != nil { - return nil, err - } - - return &kexResult{ - H: H, - K: K, - HostKey: reply.HostKey, - Signature: sig, - Hash: ecHash(kex.curve), - }, nil -} - -var kexAlgoMap = map[string]kexAlgorithm{} - -func init() { - // This is the group called diffie-hellman-group1-sha1 in RFC - // 4253 and Oakley Group 2 in RFC 2409. - p, _ := new(big.Int).SetString("FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE65381FFFFFFFFFFFFFFFF", 16) - kexAlgoMap[kexAlgoDH1SHA1] = &dhGroup{ - g: new(big.Int).SetInt64(2), - p: p, - } - - // This is the group called diffie-hellman-group14-sha1 in RFC - // 4253 and Oakley Group 14 in RFC 3526. - p, _ = new(big.Int).SetString("FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE45B3DC2007CB8A163BF0598DA48361C55D39A69163FA8FD24CF5F83655D23DCA3AD961C62F356208552BB9ED529077096966D670C354E4ABC9804F1746C08CA18217C32905E462E36CE3BE39E772C180E86039B2783A2EC07A28FB5C55DF06F4C52C9DE2BCBF6955817183995497CEA956AE515D2261898FA051015728E5A8AACAA68FFFFFFFFFFFFFFFF", 16) - - kexAlgoMap[kexAlgoDH14SHA1] = &dhGroup{ - g: new(big.Int).SetInt64(2), - p: p, - } - - kexAlgoMap[kexAlgoECDH521] = &ecdh{elliptic.P521()} - kexAlgoMap[kexAlgoECDH384] = &ecdh{elliptic.P384()} - kexAlgoMap[kexAlgoECDH256] = &ecdh{elliptic.P256()} - kexAlgoMap[kexAlgoCurve25519SHA256] = &curve25519sha256{} -} - -// curve25519sha256 implements the curve25519-sha256@libssh.org key -// agreement protocol, as described in -// https://git.libssh.org/projects/libssh.git/tree/doc/curve25519-sha256@libssh.org.txt -type curve25519sha256 struct{} - -type curve25519KeyPair struct { - priv [32]byte - pub [32]byte -} - -func (kp *curve25519KeyPair) generate(rand io.Reader) error { - if _, err := io.ReadFull(rand, kp.priv[:]); err != nil { - return err - } - curve25519.ScalarBaseMult(&kp.pub, &kp.priv) - return nil -} - -// curve25519Zeros is just an array of 32 zero bytes so that we have something -// convenient to compare against in order to reject curve25519 points with the -// wrong order. -var curve25519Zeros [32]byte - -func (kex *curve25519sha256) Client(c packetConn, rand io.Reader, magics *handshakeMagics) (*kexResult, error) { - var kp curve25519KeyPair - if err := kp.generate(rand); err != nil { - return nil, err - } - if err := c.writePacket(Marshal(&kexECDHInitMsg{kp.pub[:]})); err != nil { - return nil, err - } - - packet, err := c.readPacket() - if err != nil { - return nil, err - } - - var reply kexECDHReplyMsg - if err = Unmarshal(packet, &reply); err != nil { - return nil, err - } - if len(reply.EphemeralPubKey) != 32 { - return nil, errors.New("ssh: peer's curve25519 public value has wrong length") - } - - var servPub, secret [32]byte - copy(servPub[:], reply.EphemeralPubKey) - curve25519.ScalarMult(&secret, &kp.priv, &servPub) - if subtle.ConstantTimeCompare(secret[:], curve25519Zeros[:]) == 1 { - return nil, errors.New("ssh: peer's curve25519 public value has wrong order") - } - - h := crypto.SHA256.New() - magics.write(h) - writeString(h, reply.HostKey) - writeString(h, kp.pub[:]) - writeString(h, reply.EphemeralPubKey) - - kInt := new(big.Int).SetBytes(secret[:]) - K := make([]byte, intLength(kInt)) - marshalInt(K, kInt) - h.Write(K) - - return &kexResult{ - H: h.Sum(nil), - K: K, - HostKey: reply.HostKey, - Signature: reply.Signature, - Hash: crypto.SHA256, - }, nil -} - -func (kex *curve25519sha256) Server(c packetConn, rand io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { - packet, err := c.readPacket() - if err != nil { - return - } - var kexInit kexECDHInitMsg - if err = Unmarshal(packet, &kexInit); err != nil { - return - } - - if len(kexInit.ClientPubKey) != 32 { - return nil, errors.New("ssh: peer's curve25519 public value has wrong length") - } - - var kp curve25519KeyPair - if err := kp.generate(rand); err != nil { - return nil, err - } - - var clientPub, secret [32]byte - copy(clientPub[:], kexInit.ClientPubKey) - curve25519.ScalarMult(&secret, &kp.priv, &clientPub) - if subtle.ConstantTimeCompare(secret[:], curve25519Zeros[:]) == 1 { - return nil, errors.New("ssh: peer's curve25519 public value has wrong order") - } - - hostKeyBytes := priv.PublicKey().Marshal() - - h := crypto.SHA256.New() - magics.write(h) - writeString(h, hostKeyBytes) - writeString(h, kexInit.ClientPubKey) - writeString(h, kp.pub[:]) - - kInt := new(big.Int).SetBytes(secret[:]) - K := make([]byte, intLength(kInt)) - marshalInt(K, kInt) - h.Write(K) - - H := h.Sum(nil) - - sig, err := signAndMarshal(priv, rand, H) - if err != nil { - return nil, err - } - - reply := kexECDHReplyMsg{ - EphemeralPubKey: kp.pub[:], - HostKey: hostKeyBytes, - Signature: sig, - } - if err := c.writePacket(Marshal(&reply)); err != nil { - return nil, err - } - return &kexResult{ - H: H, - K: K, - HostKey: hostKeyBytes, - Signature: sig, - Hash: crypto.SHA256, - }, nil -} diff --git a/modules/crypto/ssh/kex_test.go b/modules/crypto/ssh/kex_test.go deleted file mode 100755 index 12ca0acd..00000000 --- a/modules/crypto/ssh/kex_test.go +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright 2013 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -// Key exchange tests. - -import ( - "crypto/rand" - "reflect" - "testing" -) - -func TestKexes(t *testing.T) { - type kexResultErr struct { - result *kexResult - err error - } - - for name, kex := range kexAlgoMap { - a, b := memPipe() - - s := make(chan kexResultErr, 1) - c := make(chan kexResultErr, 1) - var magics handshakeMagics - go func() { - r, e := kex.Client(a, rand.Reader, &magics) - a.Close() - c <- kexResultErr{r, e} - }() - go func() { - r, e := kex.Server(b, rand.Reader, &magics, testSigners["ecdsa"]) - b.Close() - s <- kexResultErr{r, e} - }() - - clientRes := <-c - serverRes := <-s - if clientRes.err != nil { - t.Errorf("client: %v", clientRes.err) - } - if serverRes.err != nil { - t.Errorf("server: %v", serverRes.err) - } - if !reflect.DeepEqual(clientRes.result, serverRes.result) { - t.Errorf("kex %q: mismatch %#v, %#v", name, clientRes.result, serverRes.result) - } - } -} diff --git a/modules/crypto/ssh/keys.go b/modules/crypto/ssh/keys.go deleted file mode 100755 index 3272d7c9..00000000 --- a/modules/crypto/ssh/keys.go +++ /dev/null @@ -1,628 +0,0 @@ -// Copyright 2012 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "bytes" - "crypto" - "crypto/dsa" - "crypto/ecdsa" - "crypto/elliptic" - "crypto/rsa" - "crypto/x509" - "encoding/asn1" - "encoding/base64" - "encoding/pem" - "errors" - "fmt" - "io" - "math/big" -) - -// These constants represent the algorithm names for key types supported by this -// package. -const ( - KeyAlgoRSA = "ssh-rsa" - KeyAlgoDSA = "ssh-dss" - KeyAlgoECDSA256 = "ecdsa-sha2-nistp256" - KeyAlgoECDSA384 = "ecdsa-sha2-nistp384" - KeyAlgoECDSA521 = "ecdsa-sha2-nistp521" -) - -// parsePubKey parses a public key of the given algorithm. -// Use ParsePublicKey for keys with prepended algorithm. -func parsePubKey(in []byte, algo string) (pubKey PublicKey, rest []byte, err error) { - switch algo { - case KeyAlgoRSA: - return parseRSA(in) - case KeyAlgoDSA: - return parseDSA(in) - case KeyAlgoECDSA256, KeyAlgoECDSA384, KeyAlgoECDSA521: - return parseECDSA(in) - case CertAlgoRSAv01, CertAlgoDSAv01, CertAlgoECDSA256v01, CertAlgoECDSA384v01, CertAlgoECDSA521v01: - cert, err := parseCert(in, certToPrivAlgo(algo)) - if err != nil { - return nil, nil, err - } - return cert, nil, nil - } - return nil, nil, fmt.Errorf("ssh: unknown key algorithm: %v", err) -} - -// parseAuthorizedKey parses a public key in OpenSSH authorized_keys format -// (see sshd(8) manual page) once the options and key type fields have been -// removed. -func parseAuthorizedKey(in []byte) (out PublicKey, comment string, err error) { - in = bytes.TrimSpace(in) - - i := bytes.IndexAny(in, " \t") - if i == -1 { - i = len(in) - } - base64Key := in[:i] - - key := make([]byte, base64.StdEncoding.DecodedLen(len(base64Key))) - n, err := base64.StdEncoding.Decode(key, base64Key) - if err != nil { - return nil, "", err - } - key = key[:n] - out, err = ParsePublicKey(key) - if err != nil { - return nil, "", err - } - comment = string(bytes.TrimSpace(in[i:])) - return out, comment, nil -} - -// ParseAuthorizedKeys parses a public key from an authorized_keys -// file used in OpenSSH according to the sshd(8) manual page. -func ParseAuthorizedKey(in []byte) (out PublicKey, comment string, options []string, rest []byte, err error) { - for len(in) > 0 { - end := bytes.IndexByte(in, '\n') - if end != -1 { - rest = in[end+1:] - in = in[:end] - } else { - rest = nil - } - - end = bytes.IndexByte(in, '\r') - if end != -1 { - in = in[:end] - } - - in = bytes.TrimSpace(in) - if len(in) == 0 || in[0] == '#' { - in = rest - continue - } - - i := bytes.IndexAny(in, " \t") - if i == -1 { - in = rest - continue - } - - if out, comment, err = parseAuthorizedKey(in[i:]); err == nil { - return out, comment, options, rest, nil - } - - // No key type recognised. Maybe there's an options field at - // the beginning. - var b byte - inQuote := false - var candidateOptions []string - optionStart := 0 - for i, b = range in { - isEnd := !inQuote && (b == ' ' || b == '\t') - if (b == ',' && !inQuote) || isEnd { - if i-optionStart > 0 { - candidateOptions = append(candidateOptions, string(in[optionStart:i])) - } - optionStart = i + 1 - } - if isEnd { - break - } - if b == '"' && (i == 0 || (i > 0 && in[i-1] != '\\')) { - inQuote = !inQuote - } - } - for i < len(in) && (in[i] == ' ' || in[i] == '\t') { - i++ - } - if i == len(in) { - // Invalid line: unmatched quote - in = rest - continue - } - - in = in[i:] - i = bytes.IndexAny(in, " \t") - if i == -1 { - in = rest - continue - } - - if out, comment, err = parseAuthorizedKey(in[i:]); err == nil { - options = candidateOptions - return out, comment, options, rest, nil - } - - in = rest - continue - } - - return nil, "", nil, nil, errors.New("ssh: no key found") -} - -// ParsePublicKey parses an SSH public key formatted for use in -// the SSH wire protocol according to RFC 4253, section 6.6. -func ParsePublicKey(in []byte) (out PublicKey, err error) { - algo, in, ok := parseString(in) - if !ok { - return nil, errShortRead - } - var rest []byte - out, rest, err = parsePubKey(in, string(algo)) - if len(rest) > 0 { - return nil, errors.New("ssh: trailing junk in public key") - } - - return out, err -} - -// MarshalAuthorizedKey serializes key for inclusion in an OpenSSH -// authorized_keys file. The return value ends with newline. -func MarshalAuthorizedKey(key PublicKey) []byte { - b := &bytes.Buffer{} - b.WriteString(key.Type()) - b.WriteByte(' ') - e := base64.NewEncoder(base64.StdEncoding, b) - e.Write(key.Marshal()) - e.Close() - b.WriteByte('\n') - return b.Bytes() -} - -// PublicKey is an abstraction of different types of public keys. -type PublicKey interface { - // Type returns the key's type, e.g. "ssh-rsa". - Type() string - - // Marshal returns the serialized key data in SSH wire format, - // with the name prefix. - Marshal() []byte - - // Verify that sig is a signature on the given data using this - // key. This function will hash the data appropriately first. - Verify(data []byte, sig *Signature) error -} - -// A Signer can create signatures that verify against a public key. -type Signer interface { - // PublicKey returns an associated PublicKey instance. - PublicKey() PublicKey - - // Sign returns raw signature for the given data. This method - // will apply the hash specified for the keytype to the data. - Sign(rand io.Reader, data []byte) (*Signature, error) -} - -type rsaPublicKey rsa.PublicKey - -func (r *rsaPublicKey) Type() string { - return "ssh-rsa" -} - -// parseRSA parses an RSA key according to RFC 4253, section 6.6. -func parseRSA(in []byte) (out PublicKey, rest []byte, err error) { - var w struct { - E *big.Int - N *big.Int - Rest []byte `ssh:"rest"` - } - if err := Unmarshal(in, &w); err != nil { - return nil, nil, err - } - - if w.E.BitLen() > 24 { - return nil, nil, errors.New("ssh: exponent too large") - } - e := w.E.Int64() - if e < 3 || e&1 == 0 { - return nil, nil, errors.New("ssh: incorrect exponent") - } - - var key rsa.PublicKey - key.E = int(e) - key.N = w.N - return (*rsaPublicKey)(&key), w.Rest, nil -} - -func (r *rsaPublicKey) Marshal() []byte { - e := new(big.Int).SetInt64(int64(r.E)) - wirekey := struct { - Name string - E *big.Int - N *big.Int - }{ - KeyAlgoRSA, - e, - r.N, - } - return Marshal(&wirekey) -} - -func (r *rsaPublicKey) Verify(data []byte, sig *Signature) error { - if sig.Format != r.Type() { - return fmt.Errorf("ssh: signature type %s for key type %s", sig.Format, r.Type()) - } - h := crypto.SHA1.New() - h.Write(data) - digest := h.Sum(nil) - return rsa.VerifyPKCS1v15((*rsa.PublicKey)(r), crypto.SHA1, digest, sig.Blob) -} - -type rsaPrivateKey struct { - *rsa.PrivateKey -} - -func (r *rsaPrivateKey) PublicKey() PublicKey { - return (*rsaPublicKey)(&r.PrivateKey.PublicKey) -} - -func (r *rsaPrivateKey) Sign(rand io.Reader, data []byte) (*Signature, error) { - h := crypto.SHA1.New() - h.Write(data) - digest := h.Sum(nil) - blob, err := rsa.SignPKCS1v15(rand, r.PrivateKey, crypto.SHA1, digest) - if err != nil { - return nil, err - } - return &Signature{ - Format: r.PublicKey().Type(), - Blob: blob, - }, nil -} - -type dsaPublicKey dsa.PublicKey - -func (r *dsaPublicKey) Type() string { - return "ssh-dss" -} - -// parseDSA parses an DSA key according to RFC 4253, section 6.6. -func parseDSA(in []byte) (out PublicKey, rest []byte, err error) { - var w struct { - P, Q, G, Y *big.Int - Rest []byte `ssh:"rest"` - } - if err := Unmarshal(in, &w); err != nil { - return nil, nil, err - } - - key := &dsaPublicKey{ - Parameters: dsa.Parameters{ - P: w.P, - Q: w.Q, - G: w.G, - }, - Y: w.Y, - } - return key, w.Rest, nil -} - -func (k *dsaPublicKey) Marshal() []byte { - w := struct { - Name string - P, Q, G, Y *big.Int - }{ - k.Type(), - k.P, - k.Q, - k.G, - k.Y, - } - - return Marshal(&w) -} - -func (k *dsaPublicKey) Verify(data []byte, sig *Signature) error { - if sig.Format != k.Type() { - return fmt.Errorf("ssh: signature type %s for key type %s", sig.Format, k.Type()) - } - h := crypto.SHA1.New() - h.Write(data) - digest := h.Sum(nil) - - // Per RFC 4253, section 6.6, - // The value for 'dss_signature_blob' is encoded as a string containing - // r, followed by s (which are 160-bit integers, without lengths or - // padding, unsigned, and in network byte order). - // For DSS purposes, sig.Blob should be exactly 40 bytes in length. - if len(sig.Blob) != 40 { - return errors.New("ssh: DSA signature parse error") - } - r := new(big.Int).SetBytes(sig.Blob[:20]) - s := new(big.Int).SetBytes(sig.Blob[20:]) - if dsa.Verify((*dsa.PublicKey)(k), digest, r, s) { - return nil - } - return errors.New("ssh: signature did not verify") -} - -type dsaPrivateKey struct { - *dsa.PrivateKey -} - -func (k *dsaPrivateKey) PublicKey() PublicKey { - return (*dsaPublicKey)(&k.PrivateKey.PublicKey) -} - -func (k *dsaPrivateKey) Sign(rand io.Reader, data []byte) (*Signature, error) { - h := crypto.SHA1.New() - h.Write(data) - digest := h.Sum(nil) - r, s, err := dsa.Sign(rand, k.PrivateKey, digest) - if err != nil { - return nil, err - } - - sig := make([]byte, 40) - rb := r.Bytes() - sb := s.Bytes() - - copy(sig[20-len(rb):20], rb) - copy(sig[40-len(sb):], sb) - - return &Signature{ - Format: k.PublicKey().Type(), - Blob: sig, - }, nil -} - -type ecdsaPublicKey ecdsa.PublicKey - -func (key *ecdsaPublicKey) Type() string { - return "ecdsa-sha2-" + key.nistID() -} - -func (key *ecdsaPublicKey) nistID() string { - switch key.Params().BitSize { - case 256: - return "nistp256" - case 384: - return "nistp384" - case 521: - return "nistp521" - } - panic("ssh: unsupported ecdsa key size") -} - -func supportedEllipticCurve(curve elliptic.Curve) bool { - return curve == elliptic.P256() || curve == elliptic.P384() || curve == elliptic.P521() -} - -// ecHash returns the hash to match the given elliptic curve, see RFC -// 5656, section 6.2.1 -func ecHash(curve elliptic.Curve) crypto.Hash { - bitSize := curve.Params().BitSize - switch { - case bitSize <= 256: - return crypto.SHA256 - case bitSize <= 384: - return crypto.SHA384 - } - return crypto.SHA512 -} - -// parseECDSA parses an ECDSA key according to RFC 5656, section 3.1. -func parseECDSA(in []byte) (out PublicKey, rest []byte, err error) { - var w struct { - Curve string - KeyBytes []byte - Rest []byte `ssh:"rest"` - } - - if err := Unmarshal(in, &w); err != nil { - return nil, nil, err - } - - key := new(ecdsa.PublicKey) - - switch w.Curve { - case "nistp256": - key.Curve = elliptic.P256() - case "nistp384": - key.Curve = elliptic.P384() - case "nistp521": - key.Curve = elliptic.P521() - default: - return nil, nil, errors.New("ssh: unsupported curve") - } - - key.X, key.Y = elliptic.Unmarshal(key.Curve, w.KeyBytes) - if key.X == nil || key.Y == nil { - return nil, nil, errors.New("ssh: invalid curve point") - } - return (*ecdsaPublicKey)(key), w.Rest, nil -} - -func (key *ecdsaPublicKey) Marshal() []byte { - // See RFC 5656, section 3.1. - keyBytes := elliptic.Marshal(key.Curve, key.X, key.Y) - w := struct { - Name string - ID string - Key []byte - }{ - key.Type(), - key.nistID(), - keyBytes, - } - - return Marshal(&w) -} - -func (key *ecdsaPublicKey) Verify(data []byte, sig *Signature) error { - if sig.Format != key.Type() { - return fmt.Errorf("ssh: signature type %s for key type %s", sig.Format, key.Type()) - } - - h := ecHash(key.Curve).New() - h.Write(data) - digest := h.Sum(nil) - - // Per RFC 5656, section 3.1.2, - // The ecdsa_signature_blob value has the following specific encoding: - // mpint r - // mpint s - var ecSig struct { - R *big.Int - S *big.Int - } - - if err := Unmarshal(sig.Blob, &ecSig); err != nil { - return err - } - - if ecdsa.Verify((*ecdsa.PublicKey)(key), digest, ecSig.R, ecSig.S) { - return nil - } - return errors.New("ssh: signature did not verify") -} - -type ecdsaPrivateKey struct { - *ecdsa.PrivateKey -} - -func (k *ecdsaPrivateKey) PublicKey() PublicKey { - return (*ecdsaPublicKey)(&k.PrivateKey.PublicKey) -} - -func (k *ecdsaPrivateKey) Sign(rand io.Reader, data []byte) (*Signature, error) { - h := ecHash(k.PrivateKey.PublicKey.Curve).New() - h.Write(data) - digest := h.Sum(nil) - r, s, err := ecdsa.Sign(rand, k.PrivateKey, digest) - if err != nil { - return nil, err - } - - sig := make([]byte, intLength(r)+intLength(s)) - rest := marshalInt(sig, r) - marshalInt(rest, s) - return &Signature{ - Format: k.PublicKey().Type(), - Blob: sig, - }, nil -} - -// NewSignerFromKey takes a pointer to rsa, dsa or ecdsa PrivateKey -// returns a corresponding Signer instance. EC keys should use P256, -// P384 or P521. -func NewSignerFromKey(k interface{}) (Signer, error) { - var sshKey Signer - switch t := k.(type) { - case *rsa.PrivateKey: - sshKey = &rsaPrivateKey{t} - case *dsa.PrivateKey: - sshKey = &dsaPrivateKey{t} - case *ecdsa.PrivateKey: - if !supportedEllipticCurve(t.Curve) { - return nil, errors.New("ssh: only P256, P384 and P521 EC keys are supported.") - } - - sshKey = &ecdsaPrivateKey{t} - default: - return nil, fmt.Errorf("ssh: unsupported key type %T", k) - } - return sshKey, nil -} - -// NewPublicKey takes a pointer to rsa, dsa or ecdsa PublicKey -// and returns a corresponding ssh PublicKey instance. EC keys should use P256, P384 or P521. -func NewPublicKey(k interface{}) (PublicKey, error) { - var sshKey PublicKey - switch t := k.(type) { - case *rsa.PublicKey: - sshKey = (*rsaPublicKey)(t) - case *ecdsa.PublicKey: - if !supportedEllipticCurve(t.Curve) { - return nil, errors.New("ssh: only P256, P384 and P521 EC keys are supported.") - } - sshKey = (*ecdsaPublicKey)(t) - case *dsa.PublicKey: - sshKey = (*dsaPublicKey)(t) - default: - return nil, fmt.Errorf("ssh: unsupported key type %T", k) - } - return sshKey, nil -} - -// ParsePrivateKey returns a Signer from a PEM encoded private key. It supports -// the same keys as ParseRawPrivateKey. -func ParsePrivateKey(pemBytes []byte) (Signer, error) { - key, err := ParseRawPrivateKey(pemBytes) - if err != nil { - return nil, err - } - - return NewSignerFromKey(key) -} - -// ParseRawPrivateKey returns a private key from a PEM encoded private key. It -// supports RSA (PKCS#1), DSA (OpenSSL), and ECDSA private keys. -func ParseRawPrivateKey(pemBytes []byte) (interface{}, error) { - block, _ := pem.Decode(pemBytes) - if block == nil { - return nil, errors.New("ssh: no key found") - } - - switch block.Type { - case "RSA PRIVATE KEY": - return x509.ParsePKCS1PrivateKey(block.Bytes) - case "EC PRIVATE KEY": - return x509.ParseECPrivateKey(block.Bytes) - case "DSA PRIVATE KEY": - return ParseDSAPrivateKey(block.Bytes) - default: - return nil, fmt.Errorf("ssh: unsupported key type %q", block.Type) - } -} - -// ParseDSAPrivateKey returns a DSA private key from its ASN.1 DER encoding, as -// specified by the OpenSSL DSA man page. -func ParseDSAPrivateKey(der []byte) (*dsa.PrivateKey, error) { - var k struct { - Version int - P *big.Int - Q *big.Int - G *big.Int - Priv *big.Int - Pub *big.Int - } - rest, err := asn1.Unmarshal(der, &k) - if err != nil { - return nil, errors.New("ssh: failed to parse DSA key: " + err.Error()) - } - if len(rest) > 0 { - return nil, errors.New("ssh: garbage after DSA key") - } - - return &dsa.PrivateKey{ - PublicKey: dsa.PublicKey{ - Parameters: dsa.Parameters{ - P: k.P, - Q: k.Q, - G: k.G, - }, - Y: k.Priv, - }, - X: k.Pub, - }, nil -} diff --git a/modules/crypto/ssh/keys_test.go b/modules/crypto/ssh/keys_test.go deleted file mode 100755 index 2b19ef92..00000000 --- a/modules/crypto/ssh/keys_test.go +++ /dev/null @@ -1,306 +0,0 @@ -// Copyright 2014 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "bytes" - "crypto/dsa" - "crypto/ecdsa" - "crypto/elliptic" - "crypto/rand" - "crypto/rsa" - "encoding/base64" - "fmt" - "reflect" - "strings" - "testing" - - "github.com/gogits/gogs/modules/crypto/ssh/testdata" -) - -func rawKey(pub PublicKey) interface{} { - switch k := pub.(type) { - case *rsaPublicKey: - return (*rsa.PublicKey)(k) - case *dsaPublicKey: - return (*dsa.PublicKey)(k) - case *ecdsaPublicKey: - return (*ecdsa.PublicKey)(k) - case *Certificate: - return k - } - panic("unknown key type") -} - -func TestKeyMarshalParse(t *testing.T) { - for _, priv := range testSigners { - pub := priv.PublicKey() - roundtrip, err := ParsePublicKey(pub.Marshal()) - if err != nil { - t.Errorf("ParsePublicKey(%T): %v", pub, err) - } - - k1 := rawKey(pub) - k2 := rawKey(roundtrip) - - if !reflect.DeepEqual(k1, k2) { - t.Errorf("got %#v in roundtrip, want %#v", k2, k1) - } - } -} - -func TestUnsupportedCurves(t *testing.T) { - raw, err := ecdsa.GenerateKey(elliptic.P224(), rand.Reader) - if err != nil { - t.Fatalf("GenerateKey: %v", err) - } - - if _, err = NewSignerFromKey(raw); err == nil || !strings.Contains(err.Error(), "only P256") { - t.Fatalf("NewPrivateKey should not succeed with P224, got: %v", err) - } - - if _, err = NewPublicKey(&raw.PublicKey); err == nil || !strings.Contains(err.Error(), "only P256") { - t.Fatalf("NewPublicKey should not succeed with P224, got: %v", err) - } -} - -func TestNewPublicKey(t *testing.T) { - for _, k := range testSigners { - raw := rawKey(k.PublicKey()) - // Skip certificates, as NewPublicKey does not support them. - if _, ok := raw.(*Certificate); ok { - continue - } - pub, err := NewPublicKey(raw) - if err != nil { - t.Errorf("NewPublicKey(%#v): %v", raw, err) - } - if !reflect.DeepEqual(k.PublicKey(), pub) { - t.Errorf("NewPublicKey(%#v) = %#v, want %#v", raw, pub, k.PublicKey()) - } - } -} - -func TestKeySignVerify(t *testing.T) { - for _, priv := range testSigners { - pub := priv.PublicKey() - - data := []byte("sign me") - sig, err := priv.Sign(rand.Reader, data) - if err != nil { - t.Fatalf("Sign(%T): %v", priv, err) - } - - if err := pub.Verify(data, sig); err != nil { - t.Errorf("publicKey.Verify(%T): %v", priv, err) - } - sig.Blob[5]++ - if err := pub.Verify(data, sig); err == nil { - t.Errorf("publicKey.Verify on broken sig did not fail") - } - } -} - -func TestParseRSAPrivateKey(t *testing.T) { - key := testPrivateKeys["rsa"] - - rsa, ok := key.(*rsa.PrivateKey) - if !ok { - t.Fatalf("got %T, want *rsa.PrivateKey", rsa) - } - - if err := rsa.Validate(); err != nil { - t.Errorf("Validate: %v", err) - } -} - -func TestParseECPrivateKey(t *testing.T) { - key := testPrivateKeys["ecdsa"] - - ecKey, ok := key.(*ecdsa.PrivateKey) - if !ok { - t.Fatalf("got %T, want *ecdsa.PrivateKey", ecKey) - } - - if !validateECPublicKey(ecKey.Curve, ecKey.X, ecKey.Y) { - t.Fatalf("public key does not validate.") - } -} - -func TestParseDSA(t *testing.T) { - // We actually exercise the ParsePrivateKey codepath here, as opposed to - // using the ParseRawPrivateKey+NewSignerFromKey path that testdata_test.go - // uses. - s, err := ParsePrivateKey(testdata.PEMBytes["dsa"]) - if err != nil { - t.Fatalf("ParsePrivateKey returned error: %s", err) - } - - data := []byte("sign me") - sig, err := s.Sign(rand.Reader, data) - if err != nil { - t.Fatalf("dsa.Sign: %v", err) - } - - if err := s.PublicKey().Verify(data, sig); err != nil { - t.Errorf("Verify failed: %v", err) - } -} - -// Tests for authorized_keys parsing. - -// getTestKey returns a public key, and its base64 encoding. -func getTestKey() (PublicKey, string) { - k := testPublicKeys["rsa"] - - b := &bytes.Buffer{} - e := base64.NewEncoder(base64.StdEncoding, b) - e.Write(k.Marshal()) - e.Close() - - return k, b.String() -} - -func TestMarshalParsePublicKey(t *testing.T) { - pub, pubSerialized := getTestKey() - line := fmt.Sprintf("%s %s user@host", pub.Type(), pubSerialized) - - authKeys := MarshalAuthorizedKey(pub) - actualFields := strings.Fields(string(authKeys)) - if len(actualFields) == 0 { - t.Fatalf("failed authKeys: %v", authKeys) - } - - // drop the comment - expectedFields := strings.Fields(line)[0:2] - - if !reflect.DeepEqual(actualFields, expectedFields) { - t.Errorf("got %v, expected %v", actualFields, expectedFields) - } - - actPub, _, _, _, err := ParseAuthorizedKey([]byte(line)) - if err != nil { - t.Fatalf("cannot parse %v: %v", line, err) - } - if !reflect.DeepEqual(actPub, pub) { - t.Errorf("got %v, expected %v", actPub, pub) - } -} - -type authResult struct { - pubKey PublicKey - options []string - comments string - rest string - ok bool -} - -func testAuthorizedKeys(t *testing.T, authKeys []byte, expected []authResult) { - rest := authKeys - var values []authResult - for len(rest) > 0 { - var r authResult - var err error - r.pubKey, r.comments, r.options, rest, err = ParseAuthorizedKey(rest) - r.ok = (err == nil) - t.Log(err) - r.rest = string(rest) - values = append(values, r) - } - - if !reflect.DeepEqual(values, expected) { - t.Errorf("got %#v, expected %#v", values, expected) - } -} - -func TestAuthorizedKeyBasic(t *testing.T) { - pub, pubSerialized := getTestKey() - line := "ssh-rsa " + pubSerialized + " user@host" - testAuthorizedKeys(t, []byte(line), - []authResult{ - {pub, nil, "user@host", "", true}, - }) -} - -func TestAuth(t *testing.T) { - pub, pubSerialized := getTestKey() - authWithOptions := []string{ - `# comments to ignore before any keys...`, - ``, - `env="HOME=/home/root",no-port-forwarding ssh-rsa ` + pubSerialized + ` user@host`, - `# comments to ignore, along with a blank line`, - ``, - `env="HOME=/home/root2" ssh-rsa ` + pubSerialized + ` user2@host2`, - ``, - `# more comments, plus a invalid entry`, - `ssh-rsa data-that-will-not-parse user@host3`, - } - for _, eol := range []string{"\n", "\r\n"} { - authOptions := strings.Join(authWithOptions, eol) - rest2 := strings.Join(authWithOptions[3:], eol) - rest3 := strings.Join(authWithOptions[6:], eol) - testAuthorizedKeys(t, []byte(authOptions), []authResult{ - {pub, []string{`env="HOME=/home/root"`, "no-port-forwarding"}, "user@host", rest2, true}, - {pub, []string{`env="HOME=/home/root2"`}, "user2@host2", rest3, true}, - {nil, nil, "", "", false}, - }) - } -} - -func TestAuthWithQuotedSpaceInEnv(t *testing.T) { - pub, pubSerialized := getTestKey() - authWithQuotedSpaceInEnv := []byte(`env="HOME=/home/root dir",no-port-forwarding ssh-rsa ` + pubSerialized + ` user@host`) - testAuthorizedKeys(t, []byte(authWithQuotedSpaceInEnv), []authResult{ - {pub, []string{`env="HOME=/home/root dir"`, "no-port-forwarding"}, "user@host", "", true}, - }) -} - -func TestAuthWithQuotedCommaInEnv(t *testing.T) { - pub, pubSerialized := getTestKey() - authWithQuotedCommaInEnv := []byte(`env="HOME=/home/root,dir",no-port-forwarding ssh-rsa ` + pubSerialized + ` user@host`) - testAuthorizedKeys(t, []byte(authWithQuotedCommaInEnv), []authResult{ - {pub, []string{`env="HOME=/home/root,dir"`, "no-port-forwarding"}, "user@host", "", true}, - }) -} - -func TestAuthWithQuotedQuoteInEnv(t *testing.T) { - pub, pubSerialized := getTestKey() - authWithQuotedQuoteInEnv := []byte(`env="HOME=/home/\"root dir",no-port-forwarding` + "\t" + `ssh-rsa` + "\t" + pubSerialized + ` user@host`) - authWithDoubleQuotedQuote := []byte(`no-port-forwarding,env="HOME=/home/ \"root dir\"" ssh-rsa ` + pubSerialized + "\t" + `user@host`) - testAuthorizedKeys(t, []byte(authWithQuotedQuoteInEnv), []authResult{ - {pub, []string{`env="HOME=/home/\"root dir"`, "no-port-forwarding"}, "user@host", "", true}, - }) - - testAuthorizedKeys(t, []byte(authWithDoubleQuotedQuote), []authResult{ - {pub, []string{"no-port-forwarding", `env="HOME=/home/ \"root dir\""`}, "user@host", "", true}, - }) -} - -func TestAuthWithInvalidSpace(t *testing.T) { - _, pubSerialized := getTestKey() - authWithInvalidSpace := []byte(`env="HOME=/home/root dir", no-port-forwarding ssh-rsa ` + pubSerialized + ` user@host -#more to follow but still no valid keys`) - testAuthorizedKeys(t, []byte(authWithInvalidSpace), []authResult{ - {nil, nil, "", "", false}, - }) -} - -func TestAuthWithMissingQuote(t *testing.T) { - pub, pubSerialized := getTestKey() - authWithMissingQuote := []byte(`env="HOME=/home/root,no-port-forwarding ssh-rsa ` + pubSerialized + ` user@host -env="HOME=/home/root",shared-control ssh-rsa ` + pubSerialized + ` user@host`) - - testAuthorizedKeys(t, []byte(authWithMissingQuote), []authResult{ - {pub, []string{`env="HOME=/home/root"`, `shared-control`}, "user@host", "", true}, - }) -} - -func TestInvalidEntry(t *testing.T) { - authInvalid := []byte(`ssh-rsa`) - _, _, _, _, err := ParseAuthorizedKey(authInvalid) - if err == nil { - t.Errorf("got valid entry for %q", authInvalid) - } -} diff --git a/modules/crypto/ssh/mac.go b/modules/crypto/ssh/mac.go deleted file mode 100755 index 07744ad6..00000000 --- a/modules/crypto/ssh/mac.go +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright 2012 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -// Message authentication support - -import ( - "crypto/hmac" - "crypto/sha1" - "crypto/sha256" - "hash" -) - -type macMode struct { - keySize int - new func(key []byte) hash.Hash -} - -// truncatingMAC wraps around a hash.Hash and truncates the output digest to -// a given size. -type truncatingMAC struct { - length int - hmac hash.Hash -} - -func (t truncatingMAC) Write(data []byte) (int, error) { - return t.hmac.Write(data) -} - -func (t truncatingMAC) Sum(in []byte) []byte { - out := t.hmac.Sum(in) - return out[:len(in)+t.length] -} - -func (t truncatingMAC) Reset() { - t.hmac.Reset() -} - -func (t truncatingMAC) Size() int { - return t.length -} - -func (t truncatingMAC) BlockSize() int { return t.hmac.BlockSize() } - -var macModes = map[string]*macMode{ - "hmac-sha2-256": {32, func(key []byte) hash.Hash { - return hmac.New(sha256.New, key) - }}, - "hmac-sha1": {20, func(key []byte) hash.Hash { - return hmac.New(sha1.New, key) - }}, - "hmac-sha1-96": {20, func(key []byte) hash.Hash { - return truncatingMAC{12, hmac.New(sha1.New, key)} - }}, -} diff --git a/modules/crypto/ssh/mempipe_test.go b/modules/crypto/ssh/mempipe_test.go deleted file mode 100755 index 8697cd61..00000000 --- a/modules/crypto/ssh/mempipe_test.go +++ /dev/null @@ -1,110 +0,0 @@ -// Copyright 2013 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "io" - "sync" - "testing" -) - -// An in-memory packetConn. It is safe to call Close and writePacket -// from different goroutines. -type memTransport struct { - eof bool - pending [][]byte - write *memTransport - sync.Mutex - *sync.Cond -} - -func (t *memTransport) readPacket() ([]byte, error) { - t.Lock() - defer t.Unlock() - for { - if len(t.pending) > 0 { - r := t.pending[0] - t.pending = t.pending[1:] - return r, nil - } - if t.eof { - return nil, io.EOF - } - t.Cond.Wait() - } -} - -func (t *memTransport) closeSelf() error { - t.Lock() - defer t.Unlock() - if t.eof { - return io.EOF - } - t.eof = true - t.Cond.Broadcast() - return nil -} - -func (t *memTransport) Close() error { - err := t.write.closeSelf() - t.closeSelf() - return err -} - -func (t *memTransport) writePacket(p []byte) error { - t.write.Lock() - defer t.write.Unlock() - if t.write.eof { - return io.EOF - } - c := make([]byte, len(p)) - copy(c, p) - t.write.pending = append(t.write.pending, c) - t.write.Cond.Signal() - return nil -} - -func memPipe() (a, b packetConn) { - t1 := memTransport{} - t2 := memTransport{} - t1.write = &t2 - t2.write = &t1 - t1.Cond = sync.NewCond(&t1.Mutex) - t2.Cond = sync.NewCond(&t2.Mutex) - return &t1, &t2 -} - -func TestMemPipe(t *testing.T) { - a, b := memPipe() - if err := a.writePacket([]byte{42}); err != nil { - t.Fatalf("writePacket: %v", err) - } - if err := a.Close(); err != nil { - t.Fatal("Close: ", err) - } - p, err := b.readPacket() - if err != nil { - t.Fatal("readPacket: ", err) - } - if len(p) != 1 || p[0] != 42 { - t.Fatalf("got %v, want {42}", p) - } - p, err = b.readPacket() - if err != io.EOF { - t.Fatalf("got %v, %v, want EOF", p, err) - } -} - -func TestDoubleClose(t *testing.T) { - a, _ := memPipe() - err := a.Close() - if err != nil { - t.Errorf("Close: %v", err) - } - err = a.Close() - if err != io.EOF { - t.Errorf("expect EOF on double close.") - } -} diff --git a/modules/crypto/ssh/messages.go b/modules/crypto/ssh/messages.go deleted file mode 100755 index eaf61066..00000000 --- a/modules/crypto/ssh/messages.go +++ /dev/null @@ -1,725 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "bytes" - "encoding/binary" - "errors" - "fmt" - "io" - "math/big" - "reflect" - "strconv" -) - -// These are SSH message type numbers. They are scattered around several -// documents but many were taken from [SSH-PARAMETERS]. -const ( - msgIgnore = 2 - msgUnimplemented = 3 - msgDebug = 4 - msgNewKeys = 21 - - // Standard authentication messages - msgUserAuthSuccess = 52 - msgUserAuthBanner = 53 -) - -// SSH messages: -// -// These structures mirror the wire format of the corresponding SSH messages. -// They are marshaled using reflection with the marshal and unmarshal functions -// in this file. The only wrinkle is that a final member of type []byte with a -// ssh tag of "rest" receives the remainder of a packet when unmarshaling. - -// See RFC 4253, section 11.1. -const msgDisconnect = 1 - -// disconnectMsg is the message that signals a disconnect. It is also -// the error type returned from mux.Wait() -type disconnectMsg struct { - Reason uint32 `sshtype:"1"` - Message string - Language string -} - -func (d *disconnectMsg) Error() string { - return fmt.Sprintf("ssh: disconnect reason %d: %s", d.Reason, d.Message) -} - -// See RFC 4253, section 7.1. -const msgKexInit = 20 - -type kexInitMsg struct { - Cookie [16]byte `sshtype:"20"` - KexAlgos []string - ServerHostKeyAlgos []string - CiphersClientServer []string - CiphersServerClient []string - MACsClientServer []string - MACsServerClient []string - CompressionClientServer []string - CompressionServerClient []string - LanguagesClientServer []string - LanguagesServerClient []string - FirstKexFollows bool - Reserved uint32 -} - -// See RFC 4253, section 8. - -// Diffie-Helman -const msgKexDHInit = 30 - -type kexDHInitMsg struct { - X *big.Int `sshtype:"30"` -} - -const msgKexECDHInit = 30 - -type kexECDHInitMsg struct { - ClientPubKey []byte `sshtype:"30"` -} - -const msgKexECDHReply = 31 - -type kexECDHReplyMsg struct { - HostKey []byte `sshtype:"31"` - EphemeralPubKey []byte - Signature []byte -} - -const msgKexDHReply = 31 - -type kexDHReplyMsg struct { - HostKey []byte `sshtype:"31"` - Y *big.Int - Signature []byte -} - -// See RFC 4253, section 10. -const msgServiceRequest = 5 - -type serviceRequestMsg struct { - Service string `sshtype:"5"` -} - -// See RFC 4253, section 10. -const msgServiceAccept = 6 - -type serviceAcceptMsg struct { - Service string `sshtype:"6"` -} - -// See RFC 4252, section 5. -const msgUserAuthRequest = 50 - -type userAuthRequestMsg struct { - User string `sshtype:"50"` - Service string - Method string - Payload []byte `ssh:"rest"` -} - -// See RFC 4252, section 5.1 -const msgUserAuthFailure = 51 - -type userAuthFailureMsg struct { - Methods []string `sshtype:"51"` - PartialSuccess bool -} - -// See RFC 4256, section 3.2 -const msgUserAuthInfoRequest = 60 -const msgUserAuthInfoResponse = 61 - -type userAuthInfoRequestMsg struct { - User string `sshtype:"60"` - Instruction string - DeprecatedLanguage string - NumPrompts uint32 - Prompts []byte `ssh:"rest"` -} - -// See RFC 4254, section 5.1. -const msgChannelOpen = 90 - -type channelOpenMsg struct { - ChanType string `sshtype:"90"` - PeersId uint32 - PeersWindow uint32 - MaxPacketSize uint32 - TypeSpecificData []byte `ssh:"rest"` -} - -const msgChannelExtendedData = 95 -const msgChannelData = 94 - -// See RFC 4254, section 5.1. -const msgChannelOpenConfirm = 91 - -type channelOpenConfirmMsg struct { - PeersId uint32 `sshtype:"91"` - MyId uint32 - MyWindow uint32 - MaxPacketSize uint32 - TypeSpecificData []byte `ssh:"rest"` -} - -// See RFC 4254, section 5.1. -const msgChannelOpenFailure = 92 - -type channelOpenFailureMsg struct { - PeersId uint32 `sshtype:"92"` - Reason RejectionReason - Message string - Language string -} - -const msgChannelRequest = 98 - -type channelRequestMsg struct { - PeersId uint32 `sshtype:"98"` - Request string - WantReply bool - RequestSpecificData []byte `ssh:"rest"` -} - -// See RFC 4254, section 5.4. -const msgChannelSuccess = 99 - -type channelRequestSuccessMsg struct { - PeersId uint32 `sshtype:"99"` -} - -// See RFC 4254, section 5.4. -const msgChannelFailure = 100 - -type channelRequestFailureMsg struct { - PeersId uint32 `sshtype:"100"` -} - -// See RFC 4254, section 5.3 -const msgChannelClose = 97 - -type channelCloseMsg struct { - PeersId uint32 `sshtype:"97"` -} - -// See RFC 4254, section 5.3 -const msgChannelEOF = 96 - -type channelEOFMsg struct { - PeersId uint32 `sshtype:"96"` -} - -// See RFC 4254, section 4 -const msgGlobalRequest = 80 - -type globalRequestMsg struct { - Type string `sshtype:"80"` - WantReply bool - Data []byte `ssh:"rest"` -} - -// See RFC 4254, section 4 -const msgRequestSuccess = 81 - -type globalRequestSuccessMsg struct { - Data []byte `ssh:"rest" sshtype:"81"` -} - -// See RFC 4254, section 4 -const msgRequestFailure = 82 - -type globalRequestFailureMsg struct { - Data []byte `ssh:"rest" sshtype:"82"` -} - -// See RFC 4254, section 5.2 -const msgChannelWindowAdjust = 93 - -type windowAdjustMsg struct { - PeersId uint32 `sshtype:"93"` - AdditionalBytes uint32 -} - -// See RFC 4252, section 7 -const msgUserAuthPubKeyOk = 60 - -type userAuthPubKeyOkMsg struct { - Algo string `sshtype:"60"` - PubKey []byte -} - -// typeTag returns the type byte for the given type. The type should -// be struct. -func typeTag(structType reflect.Type) byte { - var tag byte - var tagStr string - tagStr = structType.Field(0).Tag.Get("sshtype") - i, err := strconv.Atoi(tagStr) - if err == nil { - tag = byte(i) - } - return tag -} - -func fieldError(t reflect.Type, field int, problem string) error { - if problem != "" { - problem = ": " + problem - } - return fmt.Errorf("ssh: unmarshal error for field %s of type %s%s", t.Field(field).Name, t.Name(), problem) -} - -var errShortRead = errors.New("ssh: short read") - -// Unmarshal parses data in SSH wire format into a structure. The out -// argument should be a pointer to struct. If the first member of the -// struct has the "sshtype" tag set to a number in decimal, the packet -// must start that number. In case of error, Unmarshal returns a -// ParseError or UnexpectedMessageError. -func Unmarshal(data []byte, out interface{}) error { - v := reflect.ValueOf(out).Elem() - structType := v.Type() - expectedType := typeTag(structType) - if len(data) == 0 { - return parseError(expectedType) - } - if expectedType > 0 { - if data[0] != expectedType { - return unexpectedMessageError(expectedType, data[0]) - } - data = data[1:] - } - - var ok bool - for i := 0; i < v.NumField(); i++ { - field := v.Field(i) - t := field.Type() - switch t.Kind() { - case reflect.Bool: - if len(data) < 1 { - return errShortRead - } - field.SetBool(data[0] != 0) - data = data[1:] - case reflect.Array: - if t.Elem().Kind() != reflect.Uint8 { - return fieldError(structType, i, "array of unsupported type") - } - if len(data) < t.Len() { - return errShortRead - } - for j, n := 0, t.Len(); j < n; j++ { - field.Index(j).Set(reflect.ValueOf(data[j])) - } - data = data[t.Len():] - case reflect.Uint64: - var u64 uint64 - if u64, data, ok = parseUint64(data); !ok { - return errShortRead - } - field.SetUint(u64) - case reflect.Uint32: - var u32 uint32 - if u32, data, ok = parseUint32(data); !ok { - return errShortRead - } - field.SetUint(uint64(u32)) - case reflect.Uint8: - if len(data) < 1 { - return errShortRead - } - field.SetUint(uint64(data[0])) - data = data[1:] - case reflect.String: - var s []byte - if s, data, ok = parseString(data); !ok { - return fieldError(structType, i, "") - } - field.SetString(string(s)) - case reflect.Slice: - switch t.Elem().Kind() { - case reflect.Uint8: - if structType.Field(i).Tag.Get("ssh") == "rest" { - field.Set(reflect.ValueOf(data)) - data = nil - } else { - var s []byte - if s, data, ok = parseString(data); !ok { - return errShortRead - } - field.Set(reflect.ValueOf(s)) - } - case reflect.String: - var nl []string - if nl, data, ok = parseNameList(data); !ok { - return errShortRead - } - field.Set(reflect.ValueOf(nl)) - default: - return fieldError(structType, i, "slice of unsupported type") - } - case reflect.Ptr: - if t == bigIntType { - var n *big.Int - if n, data, ok = parseInt(data); !ok { - return errShortRead - } - field.Set(reflect.ValueOf(n)) - } else { - return fieldError(structType, i, "pointer to unsupported type") - } - default: - return fieldError(structType, i, "unsupported type") - } - } - - if len(data) != 0 { - return parseError(expectedType) - } - - return nil -} - -// Marshal serializes the message in msg to SSH wire format. The msg -// argument should be a struct or pointer to struct. If the first -// member has the "sshtype" tag set to a number in decimal, that -// number is prepended to the result. If the last of member has the -// "ssh" tag set to "rest", its contents are appended to the output. -func Marshal(msg interface{}) []byte { - out := make([]byte, 0, 64) - return marshalStruct(out, msg) -} - -func marshalStruct(out []byte, msg interface{}) []byte { - v := reflect.Indirect(reflect.ValueOf(msg)) - msgType := typeTag(v.Type()) - if msgType > 0 { - out = append(out, msgType) - } - - for i, n := 0, v.NumField(); i < n; i++ { - field := v.Field(i) - switch t := field.Type(); t.Kind() { - case reflect.Bool: - var v uint8 - if field.Bool() { - v = 1 - } - out = append(out, v) - case reflect.Array: - if t.Elem().Kind() != reflect.Uint8 { - panic(fmt.Sprintf("array of non-uint8 in field %d: %T", i, field.Interface())) - } - for j, l := 0, t.Len(); j < l; j++ { - out = append(out, uint8(field.Index(j).Uint())) - } - case reflect.Uint32: - out = appendU32(out, uint32(field.Uint())) - case reflect.Uint64: - out = appendU64(out, uint64(field.Uint())) - case reflect.Uint8: - out = append(out, uint8(field.Uint())) - case reflect.String: - s := field.String() - out = appendInt(out, len(s)) - out = append(out, s...) - case reflect.Slice: - switch t.Elem().Kind() { - case reflect.Uint8: - if v.Type().Field(i).Tag.Get("ssh") != "rest" { - out = appendInt(out, field.Len()) - } - out = append(out, field.Bytes()...) - case reflect.String: - offset := len(out) - out = appendU32(out, 0) - if n := field.Len(); n > 0 { - for j := 0; j < n; j++ { - f := field.Index(j) - if j != 0 { - out = append(out, ',') - } - out = append(out, f.String()...) - } - // overwrite length value - binary.BigEndian.PutUint32(out[offset:], uint32(len(out)-offset-4)) - } - default: - panic(fmt.Sprintf("slice of unknown type in field %d: %T", i, field.Interface())) - } - case reflect.Ptr: - if t == bigIntType { - var n *big.Int - nValue := reflect.ValueOf(&n) - nValue.Elem().Set(field) - needed := intLength(n) - oldLength := len(out) - - if cap(out)-len(out) < needed { - newOut := make([]byte, len(out), 2*(len(out)+needed)) - copy(newOut, out) - out = newOut - } - out = out[:oldLength+needed] - marshalInt(out[oldLength:], n) - } else { - panic(fmt.Sprintf("pointer to unknown type in field %d: %T", i, field.Interface())) - } - } - } - - return out -} - -var bigOne = big.NewInt(1) - -func parseString(in []byte) (out, rest []byte, ok bool) { - if len(in) < 4 { - return - } - length := binary.BigEndian.Uint32(in) - in = in[4:] - if uint32(len(in)) < length { - return - } - out = in[:length] - rest = in[length:] - ok = true - return -} - -var ( - comma = []byte{','} - emptyNameList = []string{} -) - -func parseNameList(in []byte) (out []string, rest []byte, ok bool) { - contents, rest, ok := parseString(in) - if !ok { - return - } - if len(contents) == 0 { - out = emptyNameList - return - } - parts := bytes.Split(contents, comma) - out = make([]string, len(parts)) - for i, part := range parts { - out[i] = string(part) - } - return -} - -func parseInt(in []byte) (out *big.Int, rest []byte, ok bool) { - contents, rest, ok := parseString(in) - if !ok { - return - } - out = new(big.Int) - - if len(contents) > 0 && contents[0]&0x80 == 0x80 { - // This is a negative number - notBytes := make([]byte, len(contents)) - for i := range notBytes { - notBytes[i] = ^contents[i] - } - out.SetBytes(notBytes) - out.Add(out, bigOne) - out.Neg(out) - } else { - // Positive number - out.SetBytes(contents) - } - ok = true - return -} - -func parseUint32(in []byte) (uint32, []byte, bool) { - if len(in) < 4 { - return 0, nil, false - } - return binary.BigEndian.Uint32(in), in[4:], true -} - -func parseUint64(in []byte) (uint64, []byte, bool) { - if len(in) < 8 { - return 0, nil, false - } - return binary.BigEndian.Uint64(in), in[8:], true -} - -func intLength(n *big.Int) int { - length := 4 /* length bytes */ - if n.Sign() < 0 { - nMinus1 := new(big.Int).Neg(n) - nMinus1.Sub(nMinus1, bigOne) - bitLen := nMinus1.BitLen() - if bitLen%8 == 0 { - // The number will need 0xff padding - length++ - } - length += (bitLen + 7) / 8 - } else if n.Sign() == 0 { - // A zero is the zero length string - } else { - bitLen := n.BitLen() - if bitLen%8 == 0 { - // The number will need 0x00 padding - length++ - } - length += (bitLen + 7) / 8 - } - - return length -} - -func marshalUint32(to []byte, n uint32) []byte { - binary.BigEndian.PutUint32(to, n) - return to[4:] -} - -func marshalUint64(to []byte, n uint64) []byte { - binary.BigEndian.PutUint64(to, n) - return to[8:] -} - -func marshalInt(to []byte, n *big.Int) []byte { - lengthBytes := to - to = to[4:] - length := 0 - - if n.Sign() < 0 { - // A negative number has to be converted to two's-complement - // form. So we'll subtract 1 and invert. If the - // most-significant-bit isn't set then we'll need to pad the - // beginning with 0xff in order to keep the number negative. - nMinus1 := new(big.Int).Neg(n) - nMinus1.Sub(nMinus1, bigOne) - bytes := nMinus1.Bytes() - for i := range bytes { - bytes[i] ^= 0xff - } - if len(bytes) == 0 || bytes[0]&0x80 == 0 { - to[0] = 0xff - to = to[1:] - length++ - } - nBytes := copy(to, bytes) - to = to[nBytes:] - length += nBytes - } else if n.Sign() == 0 { - // A zero is the zero length string - } else { - bytes := n.Bytes() - if len(bytes) > 0 && bytes[0]&0x80 != 0 { - // We'll have to pad this with a 0x00 in order to - // stop it looking like a negative number. - to[0] = 0 - to = to[1:] - length++ - } - nBytes := copy(to, bytes) - to = to[nBytes:] - length += nBytes - } - - lengthBytes[0] = byte(length >> 24) - lengthBytes[1] = byte(length >> 16) - lengthBytes[2] = byte(length >> 8) - lengthBytes[3] = byte(length) - return to -} - -func writeInt(w io.Writer, n *big.Int) { - length := intLength(n) - buf := make([]byte, length) - marshalInt(buf, n) - w.Write(buf) -} - -func writeString(w io.Writer, s []byte) { - var lengthBytes [4]byte - lengthBytes[0] = byte(len(s) >> 24) - lengthBytes[1] = byte(len(s) >> 16) - lengthBytes[2] = byte(len(s) >> 8) - lengthBytes[3] = byte(len(s)) - w.Write(lengthBytes[:]) - w.Write(s) -} - -func stringLength(n int) int { - return 4 + n -} - -func marshalString(to []byte, s []byte) []byte { - to[0] = byte(len(s) >> 24) - to[1] = byte(len(s) >> 16) - to[2] = byte(len(s) >> 8) - to[3] = byte(len(s)) - to = to[4:] - copy(to, s) - return to[len(s):] -} - -var bigIntType = reflect.TypeOf((*big.Int)(nil)) - -// Decode a packet into its corresponding message. -func decode(packet []byte) (interface{}, error) { - var msg interface{} - switch packet[0] { - case msgDisconnect: - msg = new(disconnectMsg) - case msgServiceRequest: - msg = new(serviceRequestMsg) - case msgServiceAccept: - msg = new(serviceAcceptMsg) - case msgKexInit: - msg = new(kexInitMsg) - case msgKexDHInit: - msg = new(kexDHInitMsg) - case msgKexDHReply: - msg = new(kexDHReplyMsg) - case msgUserAuthRequest: - msg = new(userAuthRequestMsg) - case msgUserAuthFailure: - msg = new(userAuthFailureMsg) - case msgUserAuthPubKeyOk: - msg = new(userAuthPubKeyOkMsg) - case msgGlobalRequest: - msg = new(globalRequestMsg) - case msgRequestSuccess: - msg = new(globalRequestSuccessMsg) - case msgRequestFailure: - msg = new(globalRequestFailureMsg) - case msgChannelOpen: - msg = new(channelOpenMsg) - case msgChannelOpenConfirm: - msg = new(channelOpenConfirmMsg) - case msgChannelOpenFailure: - msg = new(channelOpenFailureMsg) - case msgChannelWindowAdjust: - msg = new(windowAdjustMsg) - case msgChannelEOF: - msg = new(channelEOFMsg) - case msgChannelClose: - msg = new(channelCloseMsg) - case msgChannelRequest: - msg = new(channelRequestMsg) - case msgChannelSuccess: - msg = new(channelRequestSuccessMsg) - case msgChannelFailure: - msg = new(channelRequestFailureMsg) - default: - return nil, unexpectedMessageError(0, packet[0]) - } - if err := Unmarshal(packet, msg); err != nil { - return nil, err - } - return msg, nil -} diff --git a/modules/crypto/ssh/messages_test.go b/modules/crypto/ssh/messages_test.go deleted file mode 100755 index 955b5127..00000000 --- a/modules/crypto/ssh/messages_test.go +++ /dev/null @@ -1,254 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "bytes" - "math/big" - "math/rand" - "reflect" - "testing" - "testing/quick" -) - -var intLengthTests = []struct { - val, length int -}{ - {0, 4 + 0}, - {1, 4 + 1}, - {127, 4 + 1}, - {128, 4 + 2}, - {-1, 4 + 1}, -} - -func TestIntLength(t *testing.T) { - for _, test := range intLengthTests { - v := new(big.Int).SetInt64(int64(test.val)) - length := intLength(v) - if length != test.length { - t.Errorf("For %d, got length %d but expected %d", test.val, length, test.length) - } - } -} - -type msgAllTypes struct { - Bool bool `sshtype:"21"` - Array [16]byte - Uint64 uint64 - Uint32 uint32 - Uint8 uint8 - String string - Strings []string - Bytes []byte - Int *big.Int - Rest []byte `ssh:"rest"` -} - -func (t *msgAllTypes) Generate(rand *rand.Rand, size int) reflect.Value { - m := &msgAllTypes{} - m.Bool = rand.Intn(2) == 1 - randomBytes(m.Array[:], rand) - m.Uint64 = uint64(rand.Int63n(1<<63 - 1)) - m.Uint32 = uint32(rand.Intn((1 << 31) - 1)) - m.Uint8 = uint8(rand.Intn(1 << 8)) - m.String = string(m.Array[:]) - m.Strings = randomNameList(rand) - m.Bytes = m.Array[:] - m.Int = randomInt(rand) - m.Rest = m.Array[:] - return reflect.ValueOf(m) -} - -func TestMarshalUnmarshal(t *testing.T) { - rand := rand.New(rand.NewSource(0)) - iface := &msgAllTypes{} - ty := reflect.ValueOf(iface).Type() - - n := 100 - if testing.Short() { - n = 5 - } - for j := 0; j < n; j++ { - v, ok := quick.Value(ty, rand) - if !ok { - t.Errorf("failed to create value") - break - } - - m1 := v.Elem().Interface() - m2 := iface - - marshaled := Marshal(m1) - if err := Unmarshal(marshaled, m2); err != nil { - t.Errorf("Unmarshal %#v: %s", m1, err) - break - } - - if !reflect.DeepEqual(v.Interface(), m2) { - t.Errorf("got: %#v\nwant:%#v\n%x", m2, m1, marshaled) - break - } - } -} - -func TestUnmarshalEmptyPacket(t *testing.T) { - var b []byte - var m channelRequestSuccessMsg - if err := Unmarshal(b, &m); err == nil { - t.Fatalf("unmarshal of empty slice succeeded") - } -} - -func TestUnmarshalUnexpectedPacket(t *testing.T) { - type S struct { - I uint32 `sshtype:"43"` - S string - B bool - } - - s := S{11, "hello", true} - packet := Marshal(s) - packet[0] = 42 - roundtrip := S{} - err := Unmarshal(packet, &roundtrip) - if err == nil { - t.Fatal("expected error, not nil") - } -} - -func TestMarshalPtr(t *testing.T) { - s := struct { - S string - }{"hello"} - - m1 := Marshal(s) - m2 := Marshal(&s) - if !bytes.Equal(m1, m2) { - t.Errorf("got %q, want %q for marshaled pointer", m2, m1) - } -} - -func TestBareMarshalUnmarshal(t *testing.T) { - type S struct { - I uint32 - S string - B bool - } - - s := S{42, "hello", true} - packet := Marshal(s) - roundtrip := S{} - Unmarshal(packet, &roundtrip) - - if !reflect.DeepEqual(s, roundtrip) { - t.Errorf("got %#v, want %#v", roundtrip, s) - } -} - -func TestBareMarshal(t *testing.T) { - type S2 struct { - I uint32 - } - s := S2{42} - packet := Marshal(s) - i, rest, ok := parseUint32(packet) - if len(rest) > 0 || !ok { - t.Errorf("parseInt(%q): parse error", packet) - } - if i != s.I { - t.Errorf("got %d, want %d", i, s.I) - } -} - -func TestUnmarshalShortKexInitPacket(t *testing.T) { - // This used to panic. - // Issue 11348 - packet := []byte{0x14, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0xff, 0xff, 0xff, 0xff} - kim := &kexInitMsg{} - if err := Unmarshal(packet, kim); err == nil { - t.Error("truncated packet unmarshaled without error") - } -} - -func randomBytes(out []byte, rand *rand.Rand) { - for i := 0; i < len(out); i++ { - out[i] = byte(rand.Int31()) - } -} - -func randomNameList(rand *rand.Rand) []string { - ret := make([]string, rand.Int31()&15) - for i := range ret { - s := make([]byte, 1+(rand.Int31()&15)) - for j := range s { - s[j] = 'a' + uint8(rand.Int31()&15) - } - ret[i] = string(s) - } - return ret -} - -func randomInt(rand *rand.Rand) *big.Int { - return new(big.Int).SetInt64(int64(int32(rand.Uint32()))) -} - -func (*kexInitMsg) Generate(rand *rand.Rand, size int) reflect.Value { - ki := &kexInitMsg{} - randomBytes(ki.Cookie[:], rand) - ki.KexAlgos = randomNameList(rand) - ki.ServerHostKeyAlgos = randomNameList(rand) - ki.CiphersClientServer = randomNameList(rand) - ki.CiphersServerClient = randomNameList(rand) - ki.MACsClientServer = randomNameList(rand) - ki.MACsServerClient = randomNameList(rand) - ki.CompressionClientServer = randomNameList(rand) - ki.CompressionServerClient = randomNameList(rand) - ki.LanguagesClientServer = randomNameList(rand) - ki.LanguagesServerClient = randomNameList(rand) - if rand.Int31()&1 == 1 { - ki.FirstKexFollows = true - } - return reflect.ValueOf(ki) -} - -func (*kexDHInitMsg) Generate(rand *rand.Rand, size int) reflect.Value { - dhi := &kexDHInitMsg{} - dhi.X = randomInt(rand) - return reflect.ValueOf(dhi) -} - -var ( - _kexInitMsg = new(kexInitMsg).Generate(rand.New(rand.NewSource(0)), 10).Elem().Interface() - _kexDHInitMsg = new(kexDHInitMsg).Generate(rand.New(rand.NewSource(0)), 10).Elem().Interface() - - _kexInit = Marshal(_kexInitMsg) - _kexDHInit = Marshal(_kexDHInitMsg) -) - -func BenchmarkMarshalKexInitMsg(b *testing.B) { - for i := 0; i < b.N; i++ { - Marshal(_kexInitMsg) - } -} - -func BenchmarkUnmarshalKexInitMsg(b *testing.B) { - m := new(kexInitMsg) - for i := 0; i < b.N; i++ { - Unmarshal(_kexInit, m) - } -} - -func BenchmarkMarshalKexDHInitMsg(b *testing.B) { - for i := 0; i < b.N; i++ { - Marshal(_kexDHInitMsg) - } -} - -func BenchmarkUnmarshalKexDHInitMsg(b *testing.B) { - m := new(kexDHInitMsg) - for i := 0; i < b.N; i++ { - Unmarshal(_kexDHInit, m) - } -} diff --git a/modules/crypto/ssh/mux.go b/modules/crypto/ssh/mux.go deleted file mode 100755 index 321880ad..00000000 --- a/modules/crypto/ssh/mux.go +++ /dev/null @@ -1,356 +0,0 @@ -// Copyright 2013 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "encoding/binary" - "fmt" - "io" - "log" - "sync" - "sync/atomic" -) - -// debugMux, if set, causes messages in the connection protocol to be -// logged. -const debugMux = false - -// chanList is a thread safe channel list. -type chanList struct { - // protects concurrent access to chans - sync.Mutex - - // chans are indexed by the local id of the channel, which the - // other side should send in the PeersId field. - chans []*channel - - // This is a debugging aid: it offsets all IDs by this - // amount. This helps distinguish otherwise identical - // server/client muxes - offset uint32 -} - -// Assigns a channel ID to the given channel. -func (c *chanList) add(ch *channel) uint32 { - c.Lock() - defer c.Unlock() - for i := range c.chans { - if c.chans[i] == nil { - c.chans[i] = ch - return uint32(i) + c.offset - } - } - c.chans = append(c.chans, ch) - return uint32(len(c.chans)-1) + c.offset -} - -// getChan returns the channel for the given ID. -func (c *chanList) getChan(id uint32) *channel { - id -= c.offset - - c.Lock() - defer c.Unlock() - if id < uint32(len(c.chans)) { - return c.chans[id] - } - return nil -} - -func (c *chanList) remove(id uint32) { - id -= c.offset - c.Lock() - if id < uint32(len(c.chans)) { - c.chans[id] = nil - } - c.Unlock() -} - -// dropAll forgets all channels it knows, returning them in a slice. -func (c *chanList) dropAll() []*channel { - c.Lock() - defer c.Unlock() - var r []*channel - - for _, ch := range c.chans { - if ch == nil { - continue - } - r = append(r, ch) - } - c.chans = nil - return r -} - -// mux represents the state for the SSH connection protocol, which -// multiplexes many channels onto a single packet transport. -type mux struct { - conn packetConn - chanList chanList - - incomingChannels chan NewChannel - - globalSentMu sync.Mutex - globalResponses chan interface{} - incomingRequests chan *Request - - errCond *sync.Cond - err error -} - -// When debugging, each new chanList instantiation has a different -// offset. -var globalOff uint32 - -func (m *mux) Wait() error { - m.errCond.L.Lock() - defer m.errCond.L.Unlock() - for m.err == nil { - m.errCond.Wait() - } - return m.err -} - -// newMux returns a mux that runs over the given connection. -func newMux(p packetConn) *mux { - m := &mux{ - conn: p, - incomingChannels: make(chan NewChannel, 16), - globalResponses: make(chan interface{}, 1), - incomingRequests: make(chan *Request, 16), - errCond: newCond(), - } - if debugMux { - m.chanList.offset = atomic.AddUint32(&globalOff, 1) - } - - go m.loop() - return m -} - -func (m *mux) sendMessage(msg interface{}) error { - p := Marshal(msg) - return m.conn.writePacket(p) -} - -func (m *mux) SendRequest(name string, wantReply bool, payload []byte) (bool, []byte, error) { - if wantReply { - m.globalSentMu.Lock() - defer m.globalSentMu.Unlock() - } - - if err := m.sendMessage(globalRequestMsg{ - Type: name, - WantReply: wantReply, - Data: payload, - }); err != nil { - return false, nil, err - } - - if !wantReply { - return false, nil, nil - } - - msg, ok := <-m.globalResponses - if !ok { - return false, nil, io.EOF - } - switch msg := msg.(type) { - case *globalRequestFailureMsg: - return false, msg.Data, nil - case *globalRequestSuccessMsg: - return true, msg.Data, nil - default: - return false, nil, fmt.Errorf("ssh: unexpected response to request: %#v", msg) - } -} - -// ackRequest must be called after processing a global request that -// has WantReply set. -func (m *mux) ackRequest(ok bool, data []byte) error { - if ok { - return m.sendMessage(globalRequestSuccessMsg{Data: data}) - } - return m.sendMessage(globalRequestFailureMsg{Data: data}) -} - -// TODO(hanwen): Disconnect is a transport layer message. We should -// probably send and receive Disconnect somewhere in the transport -// code. - -// Disconnect sends a disconnect message. -func (m *mux) Disconnect(reason uint32, message string) error { - return m.sendMessage(disconnectMsg{ - Reason: reason, - Message: message, - }) -} - -func (m *mux) Close() error { - return m.conn.Close() -} - -// loop runs the connection machine. It will process packets until an -// error is encountered. To synchronize on loop exit, use mux.Wait. -func (m *mux) loop() { - var err error - for err == nil { - err = m.onePacket() - } - - for _, ch := range m.chanList.dropAll() { - ch.close() - } - - close(m.incomingChannels) - close(m.incomingRequests) - close(m.globalResponses) - - m.conn.Close() - - m.errCond.L.Lock() - m.err = err - m.errCond.Broadcast() - m.errCond.L.Unlock() - - if debugMux { - log.Println("loop exit", err) - } -} - -// onePacket reads and processes one packet. -func (m *mux) onePacket() error { - packet, err := m.conn.readPacket() - if err != nil { - return err - } - - if debugMux { - if packet[0] == msgChannelData || packet[0] == msgChannelExtendedData { - log.Printf("decoding(%d): data packet - %d bytes", m.chanList.offset, len(packet)) - } else { - p, _ := decode(packet) - log.Printf("decoding(%d): %d %#v - %d bytes", m.chanList.offset, packet[0], p, len(packet)) - } - } - - switch packet[0] { - case msgNewKeys: - // Ignore notification of key change. - return nil - case msgDisconnect: - return m.handleDisconnect(packet) - case msgChannelOpen: - return m.handleChannelOpen(packet) - case msgGlobalRequest, msgRequestSuccess, msgRequestFailure: - return m.handleGlobalPacket(packet) - } - - // assume a channel packet. - if len(packet) < 5 { - return parseError(packet[0]) - } - id := binary.BigEndian.Uint32(packet[1:]) - ch := m.chanList.getChan(id) - if ch == nil { - return fmt.Errorf("ssh: invalid channel %d", id) - } - - return ch.handlePacket(packet) -} - -func (m *mux) handleDisconnect(packet []byte) error { - var d disconnectMsg - if err := Unmarshal(packet, &d); err != nil { - return err - } - - if debugMux { - log.Printf("caught disconnect: %v", d) - } - return &d -} - -func (m *mux) handleGlobalPacket(packet []byte) error { - msg, err := decode(packet) - if err != nil { - return err - } - - switch msg := msg.(type) { - case *globalRequestMsg: - m.incomingRequests <- &Request{ - Type: msg.Type, - WantReply: msg.WantReply, - Payload: msg.Data, - mux: m, - } - case *globalRequestSuccessMsg, *globalRequestFailureMsg: - m.globalResponses <- msg - default: - panic(fmt.Sprintf("not a global message %#v", msg)) - } - - return nil -} - -// handleChannelOpen schedules a channel to be Accept()ed. -func (m *mux) handleChannelOpen(packet []byte) error { - var msg channelOpenMsg - if err := Unmarshal(packet, &msg); err != nil { - return err - } - - if msg.MaxPacketSize < minPacketLength || msg.MaxPacketSize > 1<<31 { - failMsg := channelOpenFailureMsg{ - PeersId: msg.PeersId, - Reason: ConnectionFailed, - Message: "invalid request", - Language: "en_US.UTF-8", - } - return m.sendMessage(failMsg) - } - - c := m.newChannel(msg.ChanType, channelInbound, msg.TypeSpecificData) - c.remoteId = msg.PeersId - c.maxRemotePayload = msg.MaxPacketSize - c.remoteWin.add(msg.PeersWindow) - m.incomingChannels <- c - return nil -} - -func (m *mux) OpenChannel(chanType string, extra []byte) (Channel, <-chan *Request, error) { - ch, err := m.openChannel(chanType, extra) - if err != nil { - return nil, nil, err - } - - return ch, ch.incomingRequests, nil -} - -func (m *mux) openChannel(chanType string, extra []byte) (*channel, error) { - ch := m.newChannel(chanType, channelOutbound, extra) - - ch.maxIncomingPayload = channelMaxPacket - - open := channelOpenMsg{ - ChanType: chanType, - PeersWindow: ch.myWindow, - MaxPacketSize: ch.maxIncomingPayload, - TypeSpecificData: extra, - PeersId: ch.localId, - } - if err := m.sendMessage(open); err != nil { - return nil, err - } - - switch msg := (<-ch.msg).(type) { - case *channelOpenConfirmMsg: - return ch, nil - case *channelOpenFailureMsg: - return nil, &OpenChannelError{msg.Reason, msg.Message} - default: - return nil, fmt.Errorf("ssh: unexpected packet in response to channel open: %T", msg) - } -} diff --git a/modules/crypto/ssh/mux_test.go b/modules/crypto/ssh/mux_test.go deleted file mode 100755 index 52303896..00000000 --- a/modules/crypto/ssh/mux_test.go +++ /dev/null @@ -1,525 +0,0 @@ -// Copyright 2013 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "io" - "io/ioutil" - "sync" - "testing" -) - -func muxPair() (*mux, *mux) { - a, b := memPipe() - - s := newMux(a) - c := newMux(b) - - return s, c -} - -// Returns both ends of a channel, and the mux for the the 2nd -// channel. -func channelPair(t *testing.T) (*channel, *channel, *mux) { - c, s := muxPair() - - res := make(chan *channel, 1) - go func() { - newCh, ok := <-s.incomingChannels - if !ok { - t.Fatalf("No incoming channel") - } - if newCh.ChannelType() != "chan" { - t.Fatalf("got type %q want chan", newCh.ChannelType()) - } - ch, _, err := newCh.Accept() - if err != nil { - t.Fatalf("Accept %v", err) - } - res <- ch.(*channel) - }() - - ch, err := c.openChannel("chan", nil) - if err != nil { - t.Fatalf("OpenChannel: %v", err) - } - - return <-res, ch, c -} - -// Test that stderr and stdout can be addressed from different -// goroutines. This is intended for use with the race detector. -func TestMuxChannelExtendedThreadSafety(t *testing.T) { - writer, reader, mux := channelPair(t) - defer writer.Close() - defer reader.Close() - defer mux.Close() - - var wr, rd sync.WaitGroup - magic := "hello world" - - wr.Add(2) - go func() { - io.WriteString(writer, magic) - wr.Done() - }() - go func() { - io.WriteString(writer.Stderr(), magic) - wr.Done() - }() - - rd.Add(2) - go func() { - c, err := ioutil.ReadAll(reader) - if string(c) != magic { - t.Fatalf("stdout read got %q, want %q (error %s)", c, magic, err) - } - rd.Done() - }() - go func() { - c, err := ioutil.ReadAll(reader.Stderr()) - if string(c) != magic { - t.Fatalf("stderr read got %q, want %q (error %s)", c, magic, err) - } - rd.Done() - }() - - wr.Wait() - writer.CloseWrite() - rd.Wait() -} - -func TestMuxReadWrite(t *testing.T) { - s, c, mux := channelPair(t) - defer s.Close() - defer c.Close() - defer mux.Close() - - magic := "hello world" - magicExt := "hello stderr" - go func() { - _, err := s.Write([]byte(magic)) - if err != nil { - t.Fatalf("Write: %v", err) - } - _, err = s.Extended(1).Write([]byte(magicExt)) - if err != nil { - t.Fatalf("Write: %v", err) - } - err = s.Close() - if err != nil { - t.Fatalf("Close: %v", err) - } - }() - - var buf [1024]byte - n, err := c.Read(buf[:]) - if err != nil { - t.Fatalf("server Read: %v", err) - } - got := string(buf[:n]) - if got != magic { - t.Fatalf("server: got %q want %q", got, magic) - } - - n, err = c.Extended(1).Read(buf[:]) - if err != nil { - t.Fatalf("server Read: %v", err) - } - - got = string(buf[:n]) - if got != magicExt { - t.Fatalf("server: got %q want %q", got, magic) - } -} - -func TestMuxChannelOverflow(t *testing.T) { - reader, writer, mux := channelPair(t) - defer reader.Close() - defer writer.Close() - defer mux.Close() - - wDone := make(chan int, 1) - go func() { - if _, err := writer.Write(make([]byte, channelWindowSize)); err != nil { - t.Errorf("could not fill window: %v", err) - } - writer.Write(make([]byte, 1)) - wDone <- 1 - }() - writer.remoteWin.waitWriterBlocked() - - // Send 1 byte. - packet := make([]byte, 1+4+4+1) - packet[0] = msgChannelData - marshalUint32(packet[1:], writer.remoteId) - marshalUint32(packet[5:], uint32(1)) - packet[9] = 42 - - if err := writer.mux.conn.writePacket(packet); err != nil { - t.Errorf("could not send packet") - } - if _, err := reader.SendRequest("hello", true, nil); err == nil { - t.Errorf("SendRequest succeeded.") - } - <-wDone -} - -func TestMuxChannelCloseWriteUnblock(t *testing.T) { - reader, writer, mux := channelPair(t) - defer reader.Close() - defer writer.Close() - defer mux.Close() - - wDone := make(chan int, 1) - go func() { - if _, err := writer.Write(make([]byte, channelWindowSize)); err != nil { - t.Errorf("could not fill window: %v", err) - } - if _, err := writer.Write(make([]byte, 1)); err != io.EOF { - t.Errorf("got %v, want EOF for unblock write", err) - } - wDone <- 1 - }() - - writer.remoteWin.waitWriterBlocked() - reader.Close() - <-wDone -} - -func TestMuxConnectionCloseWriteUnblock(t *testing.T) { - reader, writer, mux := channelPair(t) - defer reader.Close() - defer writer.Close() - defer mux.Close() - - wDone := make(chan int, 1) - go func() { - if _, err := writer.Write(make([]byte, channelWindowSize)); err != nil { - t.Errorf("could not fill window: %v", err) - } - if _, err := writer.Write(make([]byte, 1)); err != io.EOF { - t.Errorf("got %v, want EOF for unblock write", err) - } - wDone <- 1 - }() - - writer.remoteWin.waitWriterBlocked() - mux.Close() - <-wDone -} - -func TestMuxReject(t *testing.T) { - client, server := muxPair() - defer server.Close() - defer client.Close() - - go func() { - ch, ok := <-server.incomingChannels - if !ok { - t.Fatalf("Accept") - } - if ch.ChannelType() != "ch" || string(ch.ExtraData()) != "extra" { - t.Fatalf("unexpected channel: %q, %q", ch.ChannelType(), ch.ExtraData()) - } - ch.Reject(RejectionReason(42), "message") - }() - - ch, err := client.openChannel("ch", []byte("extra")) - if ch != nil { - t.Fatal("openChannel not rejected") - } - - ocf, ok := err.(*OpenChannelError) - if !ok { - t.Errorf("got %#v want *OpenChannelError", err) - } else if ocf.Reason != 42 || ocf.Message != "message" { - t.Errorf("got %#v, want {Reason: 42, Message: %q}", ocf, "message") - } - - want := "ssh: rejected: unknown reason 42 (message)" - if err.Error() != want { - t.Errorf("got %q, want %q", err.Error(), want) - } -} - -func TestMuxChannelRequest(t *testing.T) { - client, server, mux := channelPair(t) - defer server.Close() - defer client.Close() - defer mux.Close() - - var received int - var wg sync.WaitGroup - wg.Add(1) - go func() { - for r := range server.incomingRequests { - received++ - r.Reply(r.Type == "yes", nil) - } - wg.Done() - }() - _, err := client.SendRequest("yes", false, nil) - if err != nil { - t.Fatalf("SendRequest: %v", err) - } - ok, err := client.SendRequest("yes", true, nil) - if err != nil { - t.Fatalf("SendRequest: %v", err) - } - - if !ok { - t.Errorf("SendRequest(yes): %v", ok) - - } - - ok, err = client.SendRequest("no", true, nil) - if err != nil { - t.Fatalf("SendRequest: %v", err) - } - if ok { - t.Errorf("SendRequest(no): %v", ok) - - } - - client.Close() - wg.Wait() - - if received != 3 { - t.Errorf("got %d requests, want %d", received, 3) - } -} - -func TestMuxGlobalRequest(t *testing.T) { - clientMux, serverMux := muxPair() - defer serverMux.Close() - defer clientMux.Close() - - var seen bool - go func() { - for r := range serverMux.incomingRequests { - seen = seen || r.Type == "peek" - if r.WantReply { - err := r.Reply(r.Type == "yes", - append([]byte(r.Type), r.Payload...)) - if err != nil { - t.Errorf("AckRequest: %v", err) - } - } - } - }() - - _, _, err := clientMux.SendRequest("peek", false, nil) - if err != nil { - t.Errorf("SendRequest: %v", err) - } - - ok, data, err := clientMux.SendRequest("yes", true, []byte("a")) - if !ok || string(data) != "yesa" || err != nil { - t.Errorf("SendRequest(\"yes\", true, \"a\"): %v %v %v", - ok, data, err) - } - if ok, data, err := clientMux.SendRequest("yes", true, []byte("a")); !ok || string(data) != "yesa" || err != nil { - t.Errorf("SendRequest(\"yes\", true, \"a\"): %v %v %v", - ok, data, err) - } - - if ok, data, err := clientMux.SendRequest("no", true, []byte("a")); ok || string(data) != "noa" || err != nil { - t.Errorf("SendRequest(\"no\", true, \"a\"): %v %v %v", - ok, data, err) - } - - clientMux.Disconnect(0, "") - if !seen { - t.Errorf("never saw 'peek' request") - } -} - -func TestMuxGlobalRequestUnblock(t *testing.T) { - clientMux, serverMux := muxPair() - defer serverMux.Close() - defer clientMux.Close() - - result := make(chan error, 1) - go func() { - _, _, err := clientMux.SendRequest("hello", true, nil) - result <- err - }() - - <-serverMux.incomingRequests - serverMux.conn.Close() - err := <-result - - if err != io.EOF { - t.Errorf("want EOF, got %v", io.EOF) - } -} - -func TestMuxChannelRequestUnblock(t *testing.T) { - a, b, connB := channelPair(t) - defer a.Close() - defer b.Close() - defer connB.Close() - - result := make(chan error, 1) - go func() { - _, err := a.SendRequest("hello", true, nil) - result <- err - }() - - <-b.incomingRequests - connB.conn.Close() - err := <-result - - if err != io.EOF { - t.Errorf("want EOF, got %v", err) - } -} - -func TestMuxDisconnect(t *testing.T) { - a, b := muxPair() - defer a.Close() - defer b.Close() - - go func() { - for r := range b.incomingRequests { - r.Reply(true, nil) - } - }() - - a.Disconnect(42, "whatever") - ok, _, err := a.SendRequest("hello", true, nil) - if ok || err == nil { - t.Errorf("got reply after disconnecting") - } - err = b.Wait() - if d, ok := err.(*disconnectMsg); !ok || d.Reason != 42 { - t.Errorf("got %#v, want disconnectMsg{Reason:42}", err) - } -} - -func TestMuxCloseChannel(t *testing.T) { - r, w, mux := channelPair(t) - defer mux.Close() - defer r.Close() - defer w.Close() - - result := make(chan error, 1) - go func() { - var b [1024]byte - _, err := r.Read(b[:]) - result <- err - }() - if err := w.Close(); err != nil { - t.Errorf("w.Close: %v", err) - } - - if _, err := w.Write([]byte("hello")); err != io.EOF { - t.Errorf("got err %v, want io.EOF after Close", err) - } - - if err := <-result; err != io.EOF { - t.Errorf("got %v (%T), want io.EOF", err, err) - } -} - -func TestMuxCloseWriteChannel(t *testing.T) { - r, w, mux := channelPair(t) - defer mux.Close() - - result := make(chan error, 1) - go func() { - var b [1024]byte - _, err := r.Read(b[:]) - result <- err - }() - if err := w.CloseWrite(); err != nil { - t.Errorf("w.CloseWrite: %v", err) - } - - if _, err := w.Write([]byte("hello")); err != io.EOF { - t.Errorf("got err %v, want io.EOF after CloseWrite", err) - } - - if err := <-result; err != io.EOF { - t.Errorf("got %v (%T), want io.EOF", err, err) - } -} - -func TestMuxInvalidRecord(t *testing.T) { - a, b := muxPair() - defer a.Close() - defer b.Close() - - packet := make([]byte, 1+4+4+1) - packet[0] = msgChannelData - marshalUint32(packet[1:], 29348723 /* invalid channel id */) - marshalUint32(packet[5:], 1) - packet[9] = 42 - - a.conn.writePacket(packet) - go a.SendRequest("hello", false, nil) - // 'a' wrote an invalid packet, so 'b' has exited. - req, ok := <-b.incomingRequests - if ok { - t.Errorf("got request %#v after receiving invalid packet", req) - } -} - -func TestZeroWindowAdjust(t *testing.T) { - a, b, mux := channelPair(t) - defer a.Close() - defer b.Close() - defer mux.Close() - - go func() { - io.WriteString(a, "hello") - // bogus adjust. - a.sendMessage(windowAdjustMsg{}) - io.WriteString(a, "world") - a.Close() - }() - - want := "helloworld" - c, _ := ioutil.ReadAll(b) - if string(c) != want { - t.Errorf("got %q want %q", c, want) - } -} - -func TestMuxMaxPacketSize(t *testing.T) { - a, b, mux := channelPair(t) - defer a.Close() - defer b.Close() - defer mux.Close() - - large := make([]byte, a.maxRemotePayload+1) - packet := make([]byte, 1+4+4+1+len(large)) - packet[0] = msgChannelData - marshalUint32(packet[1:], a.remoteId) - marshalUint32(packet[5:], uint32(len(large))) - packet[9] = 42 - - if err := a.mux.conn.writePacket(packet); err != nil { - t.Errorf("could not send packet") - } - - go a.SendRequest("hello", false, nil) - - _, ok := <-b.incomingRequests - if ok { - t.Errorf("connection still alive after receiving large packet.") - } -} - -// Don't ship code with debug=true. -func TestDebug(t *testing.T) { - if debugMux { - t.Error("mux debug switched on") - } - if debugHandshake { - t.Error("handshake debug switched on") - } -} diff --git a/modules/crypto/ssh/server.go b/modules/crypto/ssh/server.go deleted file mode 100755 index baedf5bb..00000000 --- a/modules/crypto/ssh/server.go +++ /dev/null @@ -1,493 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "bytes" - "errors" - "fmt" - "io" - "net" -) - -// The Permissions type holds fine-grained permissions that are -// specific to a user or a specific authentication method for a -// user. Permissions, except for "source-address", must be enforced in -// the server application layer, after successful authentication. The -// Permissions are passed on in ServerConn so a server implementation -// can honor them. -type Permissions struct { - // Critical options restrict default permissions. Common - // restrictions are "source-address" and "force-command". If - // the server cannot enforce the restriction, or does not - // recognize it, the user should not authenticate. - CriticalOptions map[string]string - - // Extensions are extra functionality that the server may - // offer on authenticated connections. Common extensions are - // "permit-agent-forwarding", "permit-X11-forwarding". Lack of - // support for an extension does not preclude authenticating a - // user. - Extensions map[string]string -} - -// ServerConfig holds server specific configuration data. -type ServerConfig struct { - // Config contains configuration shared between client and server. - Config - - hostKeys []Signer - - // NoClientAuth is true if clients are allowed to connect without - // authenticating. - NoClientAuth bool - - // PasswordCallback, if non-nil, is called when a user - // attempts to authenticate using a password. - PasswordCallback func(conn ConnMetadata, password []byte) (*Permissions, error) - - // PublicKeyCallback, if non-nil, is called when a client attempts public - // key authentication. It must return true if the given public key is - // valid for the given user. For example, see CertChecker.Authenticate. - PublicKeyCallback func(conn ConnMetadata, key PublicKey) (*Permissions, error) - - // KeyboardInteractiveCallback, if non-nil, is called when - // keyboard-interactive authentication is selected (RFC - // 4256). The client object's Challenge function should be - // used to query the user. The callback may offer multiple - // Challenge rounds. To avoid information leaks, the client - // should be presented a challenge even if the user is - // unknown. - KeyboardInteractiveCallback func(conn ConnMetadata, client KeyboardInteractiveChallenge) (*Permissions, error) - - // AuthLogCallback, if non-nil, is called to log all authentication - // attempts. - AuthLogCallback func(conn ConnMetadata, method string, err error) - - // ServerVersion is the version identification string to - // announce in the public handshake. - // If empty, a reasonable default is used. - ServerVersion string -} - -// AddHostKey adds a private key as a host key. If an existing host -// key exists with the same algorithm, it is overwritten. Each server -// config must have at least one host key. -func (s *ServerConfig) AddHostKey(key Signer) { - for i, k := range s.hostKeys { - if k.PublicKey().Type() == key.PublicKey().Type() { - s.hostKeys[i] = key - return - } - } - - s.hostKeys = append(s.hostKeys, key) -} - -// cachedPubKey contains the results of querying whether a public key is -// acceptable for a user. -type cachedPubKey struct { - user string - pubKeyData []byte - result error - perms *Permissions -} - -const maxCachedPubKeys = 16 - -// pubKeyCache caches tests for public keys. Since SSH clients -// will query whether a public key is acceptable before attempting to -// authenticate with it, we end up with duplicate queries for public -// key validity. The cache only applies to a single ServerConn. -type pubKeyCache struct { - keys []cachedPubKey -} - -// get returns the result for a given user/algo/key tuple. -func (c *pubKeyCache) get(user string, pubKeyData []byte) (cachedPubKey, bool) { - for _, k := range c.keys { - if k.user == user && bytes.Equal(k.pubKeyData, pubKeyData) { - return k, true - } - } - return cachedPubKey{}, false -} - -// add adds the given tuple to the cache. -func (c *pubKeyCache) add(candidate cachedPubKey) { - if len(c.keys) < maxCachedPubKeys { - c.keys = append(c.keys, candidate) - } -} - -// ServerConn is an authenticated SSH connection, as seen from the -// server -type ServerConn struct { - Conn - - // If the succeeding authentication callback returned a - // non-nil Permissions pointer, it is stored here. - Permissions *Permissions -} - -// NewServerConn starts a new SSH server with c as the underlying -// transport. It starts with a handshake and, if the handshake is -// unsuccessful, it closes the connection and returns an error. The -// Request and NewChannel channels must be serviced, or the connection -// will hang. -func NewServerConn(c net.Conn, config *ServerConfig) (*ServerConn, <-chan NewChannel, <-chan *Request, error) { - fullConf := *config - fullConf.SetDefaults() - s := &connection{ - sshConn: sshConn{conn: c}, - } - perms, err := s.serverHandshake(&fullConf) - if err != nil { - c.Close() - return nil, nil, nil, err - } - return &ServerConn{s, perms}, s.mux.incomingChannels, s.mux.incomingRequests, nil -} - -// signAndMarshal signs the data with the appropriate algorithm, -// and serializes the result in SSH wire format. -func signAndMarshal(k Signer, rand io.Reader, data []byte) ([]byte, error) { - sig, err := k.Sign(rand, data) - if err != nil { - return nil, err - } - - return Marshal(sig), nil -} - -// handshake performs key exchange and user authentication. -func (s *connection) serverHandshake(config *ServerConfig) (*Permissions, error) { - if len(config.hostKeys) == 0 { - return nil, errors.New("ssh: server has no host keys") - } - - if !config.NoClientAuth && config.PasswordCallback == nil && config.PublicKeyCallback == nil && config.KeyboardInteractiveCallback == nil { - return nil, errors.New("ssh: no authentication methods configured but NoClientAuth is also false") - } - - if config.ServerVersion != "" { - s.serverVersion = []byte(config.ServerVersion) - } else { - s.serverVersion = []byte(packageVersion) - } - var err error - s.clientVersion, err = exchangeVersions(s.sshConn.conn, s.serverVersion) - if err != nil { - return nil, err - } - - tr := newTransport(s.sshConn.conn, config.Rand, false /* not client */) - s.transport = newServerTransport(tr, s.clientVersion, s.serverVersion, config) - - if err := s.transport.requestKeyChange(); err != nil { - return nil, err - } - - if packet, err := s.transport.readPacket(); err != nil { - return nil, err - } else if packet[0] != msgNewKeys { - return nil, unexpectedMessageError(msgNewKeys, packet[0]) - } - - // We just did the key change, so the session ID is established. - s.sessionID = s.transport.getSessionID() - - var packet []byte - if packet, err = s.transport.readPacket(); err != nil { - return nil, err - } - - var serviceRequest serviceRequestMsg - if err = Unmarshal(packet, &serviceRequest); err != nil { - return nil, err - } - if serviceRequest.Service != serviceUserAuth { - return nil, errors.New("ssh: requested service '" + serviceRequest.Service + "' before authenticating") - } - serviceAccept := serviceAcceptMsg{ - Service: serviceUserAuth, - } - if err := s.transport.writePacket(Marshal(&serviceAccept)); err != nil { - return nil, err - } - - perms, err := s.serverAuthenticate(config) - if err != nil { - return nil, err - } - s.mux = newMux(s.transport) - return perms, err -} - -func isAcceptableAlgo(algo string) bool { - switch algo { - case KeyAlgoRSA, KeyAlgoDSA, KeyAlgoECDSA256, KeyAlgoECDSA384, KeyAlgoECDSA521, - CertAlgoRSAv01, CertAlgoDSAv01, CertAlgoECDSA256v01, CertAlgoECDSA384v01, CertAlgoECDSA521v01: - return true - } - return false -} - -func checkSourceAddress(addr net.Addr, sourceAddr string) error { - if addr == nil { - return errors.New("ssh: no address known for client, but source-address match required") - } - - tcpAddr, ok := addr.(*net.TCPAddr) - if !ok { - return fmt.Errorf("ssh: remote address %v is not an TCP address when checking source-address match", addr) - } - - if allowedIP := net.ParseIP(sourceAddr); allowedIP != nil { - if bytes.Equal(allowedIP, tcpAddr.IP) { - return nil - } - } else { - _, ipNet, err := net.ParseCIDR(sourceAddr) - if err != nil { - return fmt.Errorf("ssh: error parsing source-address restriction %q: %v", sourceAddr, err) - } - - if ipNet.Contains(tcpAddr.IP) { - return nil - } - } - - return fmt.Errorf("ssh: remote address %v is not allowed because of source-address restriction", addr) -} - -func (s *connection) serverAuthenticate(config *ServerConfig) (*Permissions, error) { - var err error - var cache pubKeyCache - var perms *Permissions - -userAuthLoop: - for { - var userAuthReq userAuthRequestMsg - if packet, err := s.transport.readPacket(); err != nil { - return nil, err - } else if err = Unmarshal(packet, &userAuthReq); err != nil { - return nil, err - } - - if userAuthReq.Service != serviceSSH { - return nil, errors.New("ssh: client attempted to negotiate for unknown service: " + userAuthReq.Service) - } - - s.user = userAuthReq.User - perms = nil - authErr := errors.New("no auth passed yet") - - switch userAuthReq.Method { - case "none": - if config.NoClientAuth { - s.user = "" - authErr = nil - } - case "password": - if config.PasswordCallback == nil { - authErr = errors.New("ssh: password auth not configured") - break - } - payload := userAuthReq.Payload - if len(payload) < 1 || payload[0] != 0 { - return nil, parseError(msgUserAuthRequest) - } - payload = payload[1:] - password, payload, ok := parseString(payload) - if !ok || len(payload) > 0 { - return nil, parseError(msgUserAuthRequest) - } - - perms, authErr = config.PasswordCallback(s, password) - case "keyboard-interactive": - if config.KeyboardInteractiveCallback == nil { - authErr = errors.New("ssh: keyboard-interactive auth not configubred") - break - } - - prompter := &sshClientKeyboardInteractive{s} - perms, authErr = config.KeyboardInteractiveCallback(s, prompter.Challenge) - case "publickey": - if config.PublicKeyCallback == nil { - authErr = errors.New("ssh: publickey auth not configured") - break - } - payload := userAuthReq.Payload - if len(payload) < 1 { - return nil, parseError(msgUserAuthRequest) - } - isQuery := payload[0] == 0 - payload = payload[1:] - algoBytes, payload, ok := parseString(payload) - if !ok { - return nil, parseError(msgUserAuthRequest) - } - algo := string(algoBytes) - if !isAcceptableAlgo(algo) { - authErr = fmt.Errorf("ssh: algorithm %q not accepted", algo) - break - } - - pubKeyData, payload, ok := parseString(payload) - if !ok { - return nil, parseError(msgUserAuthRequest) - } - - pubKey, err := ParsePublicKey(pubKeyData) - if err != nil { - return nil, err - } - - candidate, ok := cache.get(s.user, pubKeyData) - if !ok { - candidate.user = s.user - candidate.pubKeyData = pubKeyData - candidate.perms, candidate.result = config.PublicKeyCallback(s, pubKey) - if candidate.result == nil && candidate.perms != nil && candidate.perms.CriticalOptions != nil && candidate.perms.CriticalOptions[sourceAddressCriticalOption] != "" { - candidate.result = checkSourceAddress( - s.RemoteAddr(), - candidate.perms.CriticalOptions[sourceAddressCriticalOption]) - } - cache.add(candidate) - } - - if isQuery { - // The client can query if the given public key - // would be okay. - if len(payload) > 0 { - return nil, parseError(msgUserAuthRequest) - } - - if candidate.result == nil { - okMsg := userAuthPubKeyOkMsg{ - Algo: algo, - PubKey: pubKeyData, - } - if err = s.transport.writePacket(Marshal(&okMsg)); err != nil { - return nil, err - } - continue userAuthLoop - } - authErr = candidate.result - } else { - sig, payload, ok := parseSignature(payload) - if !ok || len(payload) > 0 { - return nil, parseError(msgUserAuthRequest) - } - // Ensure the public key algo and signature algo - // are supported. Compare the private key - // algorithm name that corresponds to algo with - // sig.Format. This is usually the same, but - // for certs, the names differ. - if !isAcceptableAlgo(sig.Format) { - break - } - signedData := buildDataSignedForAuth(s.transport.getSessionID(), userAuthReq, algoBytes, pubKeyData) - - if err := pubKey.Verify(signedData, sig); err != nil { - return nil, err - } - - authErr = candidate.result - perms = candidate.perms - } - default: - authErr = fmt.Errorf("ssh: unknown method %q", userAuthReq.Method) - } - - if config.AuthLogCallback != nil { - config.AuthLogCallback(s, userAuthReq.Method, authErr) - } - - if authErr == nil { - break userAuthLoop - } - - var failureMsg userAuthFailureMsg - if config.PasswordCallback != nil { - failureMsg.Methods = append(failureMsg.Methods, "password") - } - if config.PublicKeyCallback != nil { - failureMsg.Methods = append(failureMsg.Methods, "publickey") - } - if config.KeyboardInteractiveCallback != nil { - failureMsg.Methods = append(failureMsg.Methods, "keyboard-interactive") - } - - if len(failureMsg.Methods) == 0 { - return nil, errors.New("ssh: no authentication methods configured but NoClientAuth is also false") - } - - if err = s.transport.writePacket(Marshal(&failureMsg)); err != nil { - return nil, err - } - } - - if err = s.transport.writePacket([]byte{msgUserAuthSuccess}); err != nil { - return nil, err - } - return perms, nil -} - -// sshClientKeyboardInteractive implements a ClientKeyboardInteractive by -// asking the client on the other side of a ServerConn. -type sshClientKeyboardInteractive struct { - *connection -} - -func (c *sshClientKeyboardInteractive) Challenge(user, instruction string, questions []string, echos []bool) (answers []string, err error) { - if len(questions) != len(echos) { - return nil, errors.New("ssh: echos and questions must have equal length") - } - - var prompts []byte - for i := range questions { - prompts = appendString(prompts, questions[i]) - prompts = appendBool(prompts, echos[i]) - } - - if err := c.transport.writePacket(Marshal(&userAuthInfoRequestMsg{ - Instruction: instruction, - NumPrompts: uint32(len(questions)), - Prompts: prompts, - })); err != nil { - return nil, err - } - - packet, err := c.transport.readPacket() - if err != nil { - return nil, err - } - if packet[0] != msgUserAuthInfoResponse { - return nil, unexpectedMessageError(msgUserAuthInfoResponse, packet[0]) - } - packet = packet[1:] - - n, packet, ok := parseUint32(packet) - if !ok || int(n) != len(questions) { - return nil, parseError(msgUserAuthInfoResponse) - } - - for i := uint32(0); i < n; i++ { - ans, rest, ok := parseString(packet) - if !ok { - return nil, parseError(msgUserAuthInfoResponse) - } - - answers = append(answers, string(ans)) - packet = rest - } - if len(packet) != 0 { - return nil, errors.New("ssh: junk at end of message") - } - - return answers, nil -} diff --git a/modules/crypto/ssh/session.go b/modules/crypto/ssh/session.go deleted file mode 100755 index 3b42b508..00000000 --- a/modules/crypto/ssh/session.go +++ /dev/null @@ -1,605 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -// Session implements an interactive session described in -// "RFC 4254, section 6". - -import ( - "bytes" - "errors" - "fmt" - "io" - "io/ioutil" - "sync" -) - -type Signal string - -// POSIX signals as listed in RFC 4254 Section 6.10. -const ( - SIGABRT Signal = "ABRT" - SIGALRM Signal = "ALRM" - SIGFPE Signal = "FPE" - SIGHUP Signal = "HUP" - SIGILL Signal = "ILL" - SIGINT Signal = "INT" - SIGKILL Signal = "KILL" - SIGPIPE Signal = "PIPE" - SIGQUIT Signal = "QUIT" - SIGSEGV Signal = "SEGV" - SIGTERM Signal = "TERM" - SIGUSR1 Signal = "USR1" - SIGUSR2 Signal = "USR2" -) - -var signals = map[Signal]int{ - SIGABRT: 6, - SIGALRM: 14, - SIGFPE: 8, - SIGHUP: 1, - SIGILL: 4, - SIGINT: 2, - SIGKILL: 9, - SIGPIPE: 13, - SIGQUIT: 3, - SIGSEGV: 11, - SIGTERM: 15, -} - -type TerminalModes map[uint8]uint32 - -// POSIX terminal mode flags as listed in RFC 4254 Section 8. -const ( - tty_OP_END = 0 - VINTR = 1 - VQUIT = 2 - VERASE = 3 - VKILL = 4 - VEOF = 5 - VEOL = 6 - VEOL2 = 7 - VSTART = 8 - VSTOP = 9 - VSUSP = 10 - VDSUSP = 11 - VREPRINT = 12 - VWERASE = 13 - VLNEXT = 14 - VFLUSH = 15 - VSWTCH = 16 - VSTATUS = 17 - VDISCARD = 18 - IGNPAR = 30 - PARMRK = 31 - INPCK = 32 - ISTRIP = 33 - INLCR = 34 - IGNCR = 35 - ICRNL = 36 - IUCLC = 37 - IXON = 38 - IXANY = 39 - IXOFF = 40 - IMAXBEL = 41 - ISIG = 50 - ICANON = 51 - XCASE = 52 - ECHO = 53 - ECHOE = 54 - ECHOK = 55 - ECHONL = 56 - NOFLSH = 57 - TOSTOP = 58 - IEXTEN = 59 - ECHOCTL = 60 - ECHOKE = 61 - PENDIN = 62 - OPOST = 70 - OLCUC = 71 - ONLCR = 72 - OCRNL = 73 - ONOCR = 74 - ONLRET = 75 - CS7 = 90 - CS8 = 91 - PARENB = 92 - PARODD = 93 - TTY_OP_ISPEED = 128 - TTY_OP_OSPEED = 129 -) - -// A Session represents a connection to a remote command or shell. -type Session struct { - // Stdin specifies the remote process's standard input. - // If Stdin is nil, the remote process reads from an empty - // bytes.Buffer. - Stdin io.Reader - - // Stdout and Stderr specify the remote process's standard - // output and error. - // - // If either is nil, Run connects the corresponding file - // descriptor to an instance of ioutil.Discard. There is a - // fixed amount of buffering that is shared for the two streams. - // If either blocks it may eventually cause the remote - // command to block. - Stdout io.Writer - Stderr io.Writer - - ch Channel // the channel backing this session - started bool // true once Start, Run or Shell is invoked. - copyFuncs []func() error - errors chan error // one send per copyFunc - - // true if pipe method is active - stdinpipe, stdoutpipe, stderrpipe bool - - // stdinPipeWriter is non-nil if StdinPipe has not been called - // and Stdin was specified by the user; it is the write end of - // a pipe connecting Session.Stdin to the stdin channel. - stdinPipeWriter io.WriteCloser - - exitStatus chan error -} - -// SendRequest sends an out-of-band channel request on the SSH channel -// underlying the session. -func (s *Session) SendRequest(name string, wantReply bool, payload []byte) (bool, error) { - return s.ch.SendRequest(name, wantReply, payload) -} - -func (s *Session) Close() error { - return s.ch.Close() -} - -// RFC 4254 Section 6.4. -type setenvRequest struct { - Name string - Value string -} - -// Setenv sets an environment variable that will be applied to any -// command executed by Shell or Run. -func (s *Session) Setenv(name, value string) error { - msg := setenvRequest{ - Name: name, - Value: value, - } - ok, err := s.ch.SendRequest("env", true, Marshal(&msg)) - if err == nil && !ok { - err = errors.New("ssh: setenv failed") - } - return err -} - -// RFC 4254 Section 6.2. -type ptyRequestMsg struct { - Term string - Columns uint32 - Rows uint32 - Width uint32 - Height uint32 - Modelist string -} - -// RequestPty requests the association of a pty with the session on the remote host. -func (s *Session) RequestPty(term string, h, w int, termmodes TerminalModes) error { - var tm []byte - for k, v := range termmodes { - kv := struct { - Key byte - Val uint32 - }{k, v} - - tm = append(tm, Marshal(&kv)...) - } - tm = append(tm, tty_OP_END) - req := ptyRequestMsg{ - Term: term, - Columns: uint32(w), - Rows: uint32(h), - Width: uint32(w * 8), - Height: uint32(h * 8), - Modelist: string(tm), - } - ok, err := s.ch.SendRequest("pty-req", true, Marshal(&req)) - if err == nil && !ok { - err = errors.New("ssh: pty-req failed") - } - return err -} - -// RFC 4254 Section 6.5. -type subsystemRequestMsg struct { - Subsystem string -} - -// RequestSubsystem requests the association of a subsystem with the session on the remote host. -// A subsystem is a predefined command that runs in the background when the ssh session is initiated -func (s *Session) RequestSubsystem(subsystem string) error { - msg := subsystemRequestMsg{ - Subsystem: subsystem, - } - ok, err := s.ch.SendRequest("subsystem", true, Marshal(&msg)) - if err == nil && !ok { - err = errors.New("ssh: subsystem request failed") - } - return err -} - -// RFC 4254 Section 6.9. -type signalMsg struct { - Signal string -} - -// Signal sends the given signal to the remote process. -// sig is one of the SIG* constants. -func (s *Session) Signal(sig Signal) error { - msg := signalMsg{ - Signal: string(sig), - } - - _, err := s.ch.SendRequest("signal", false, Marshal(&msg)) - return err -} - -// RFC 4254 Section 6.5. -type execMsg struct { - Command string -} - -// Start runs cmd on the remote host. Typically, the remote -// server passes cmd to the shell for interpretation. -// A Session only accepts one call to Run, Start or Shell. -func (s *Session) Start(cmd string) error { - if s.started { - return errors.New("ssh: session already started") - } - req := execMsg{ - Command: cmd, - } - - ok, err := s.ch.SendRequest("exec", true, Marshal(&req)) - if err == nil && !ok { - err = fmt.Errorf("ssh: command %v failed", cmd) - } - if err != nil { - return err - } - return s.start() -} - -// Run runs cmd on the remote host. Typically, the remote -// server passes cmd to the shell for interpretation. -// A Session only accepts one call to Run, Start, Shell, Output, -// or CombinedOutput. -// -// The returned error is nil if the command runs, has no problems -// copying stdin, stdout, and stderr, and exits with a zero exit -// status. -// -// If the command fails to run or doesn't complete successfully, the -// error is of type *ExitError. Other error types may be -// returned for I/O problems. -func (s *Session) Run(cmd string) error { - err := s.Start(cmd) - if err != nil { - return err - } - return s.Wait() -} - -// Output runs cmd on the remote host and returns its standard output. -func (s *Session) Output(cmd string) ([]byte, error) { - if s.Stdout != nil { - return nil, errors.New("ssh: Stdout already set") - } - var b bytes.Buffer - s.Stdout = &b - err := s.Run(cmd) - return b.Bytes(), err -} - -type singleWriter struct { - b bytes.Buffer - mu sync.Mutex -} - -func (w *singleWriter) Write(p []byte) (int, error) { - w.mu.Lock() - defer w.mu.Unlock() - return w.b.Write(p) -} - -// CombinedOutput runs cmd on the remote host and returns its combined -// standard output and standard error. -func (s *Session) CombinedOutput(cmd string) ([]byte, error) { - if s.Stdout != nil { - return nil, errors.New("ssh: Stdout already set") - } - if s.Stderr != nil { - return nil, errors.New("ssh: Stderr already set") - } - var b singleWriter - s.Stdout = &b - s.Stderr = &b - err := s.Run(cmd) - return b.b.Bytes(), err -} - -// Shell starts a login shell on the remote host. A Session only -// accepts one call to Run, Start, Shell, Output, or CombinedOutput. -func (s *Session) Shell() error { - if s.started { - return errors.New("ssh: session already started") - } - - ok, err := s.ch.SendRequest("shell", true, nil) - if err == nil && !ok { - return fmt.Errorf("ssh: cound not start shell") - } - if err != nil { - return err - } - return s.start() -} - -func (s *Session) start() error { - s.started = true - - type F func(*Session) - for _, setupFd := range []F{(*Session).stdin, (*Session).stdout, (*Session).stderr} { - setupFd(s) - } - - s.errors = make(chan error, len(s.copyFuncs)) - for _, fn := range s.copyFuncs { - go func(fn func() error) { - s.errors <- fn() - }(fn) - } - return nil -} - -// Wait waits for the remote command to exit. -// -// The returned error is nil if the command runs, has no problems -// copying stdin, stdout, and stderr, and exits with a zero exit -// status. -// -// If the command fails to run or doesn't complete successfully, the -// error is of type *ExitError. Other error types may be -// returned for I/O problems. -func (s *Session) Wait() error { - if !s.started { - return errors.New("ssh: session not started") - } - waitErr := <-s.exitStatus - - if s.stdinPipeWriter != nil { - s.stdinPipeWriter.Close() - } - var copyError error - for _ = range s.copyFuncs { - if err := <-s.errors; err != nil && copyError == nil { - copyError = err - } - } - if waitErr != nil { - return waitErr - } - return copyError -} - -func (s *Session) wait(reqs <-chan *Request) error { - wm := Waitmsg{status: -1} - // Wait for msg channel to be closed before returning. - for msg := range reqs { - switch msg.Type { - case "exit-status": - d := msg.Payload - wm.status = int(d[0])<<24 | int(d[1])<<16 | int(d[2])<<8 | int(d[3]) - case "exit-signal": - var sigval struct { - Signal string - CoreDumped bool - Error string - Lang string - } - if err := Unmarshal(msg.Payload, &sigval); err != nil { - return err - } - - // Must sanitize strings? - wm.signal = sigval.Signal - wm.msg = sigval.Error - wm.lang = sigval.Lang - default: - // This handles keepalives and matches - // OpenSSH's behaviour. - if msg.WantReply { - msg.Reply(false, nil) - } - } - } - if wm.status == 0 { - return nil - } - if wm.status == -1 { - // exit-status was never sent from server - if wm.signal == "" { - return errors.New("wait: remote command exited without exit status or exit signal") - } - wm.status = 128 - if _, ok := signals[Signal(wm.signal)]; ok { - wm.status += signals[Signal(wm.signal)] - } - } - return &ExitError{wm} -} - -func (s *Session) stdin() { - if s.stdinpipe { - return - } - var stdin io.Reader - if s.Stdin == nil { - stdin = new(bytes.Buffer) - } else { - r, w := io.Pipe() - go func() { - _, err := io.Copy(w, s.Stdin) - w.CloseWithError(err) - }() - stdin, s.stdinPipeWriter = r, w - } - s.copyFuncs = append(s.copyFuncs, func() error { - _, err := io.Copy(s.ch, stdin) - if err1 := s.ch.CloseWrite(); err == nil && err1 != io.EOF { - err = err1 - } - return err - }) -} - -func (s *Session) stdout() { - if s.stdoutpipe { - return - } - if s.Stdout == nil { - s.Stdout = ioutil.Discard - } - s.copyFuncs = append(s.copyFuncs, func() error { - _, err := io.Copy(s.Stdout, s.ch) - return err - }) -} - -func (s *Session) stderr() { - if s.stderrpipe { - return - } - if s.Stderr == nil { - s.Stderr = ioutil.Discard - } - s.copyFuncs = append(s.copyFuncs, func() error { - _, err := io.Copy(s.Stderr, s.ch.Stderr()) - return err - }) -} - -// sessionStdin reroutes Close to CloseWrite. -type sessionStdin struct { - io.Writer - ch Channel -} - -func (s *sessionStdin) Close() error { - return s.ch.CloseWrite() -} - -// StdinPipe returns a pipe that will be connected to the -// remote command's standard input when the command starts. -func (s *Session) StdinPipe() (io.WriteCloser, error) { - if s.Stdin != nil { - return nil, errors.New("ssh: Stdin already set") - } - if s.started { - return nil, errors.New("ssh: StdinPipe after process started") - } - s.stdinpipe = true - return &sessionStdin{s.ch, s.ch}, nil -} - -// StdoutPipe returns a pipe that will be connected to the -// remote command's standard output when the command starts. -// There is a fixed amount of buffering that is shared between -// stdout and stderr streams. If the StdoutPipe reader is -// not serviced fast enough it may eventually cause the -// remote command to block. -func (s *Session) StdoutPipe() (io.Reader, error) { - if s.Stdout != nil { - return nil, errors.New("ssh: Stdout already set") - } - if s.started { - return nil, errors.New("ssh: StdoutPipe after process started") - } - s.stdoutpipe = true - return s.ch, nil -} - -// StderrPipe returns a pipe that will be connected to the -// remote command's standard error when the command starts. -// There is a fixed amount of buffering that is shared between -// stdout and stderr streams. If the StderrPipe reader is -// not serviced fast enough it may eventually cause the -// remote command to block. -func (s *Session) StderrPipe() (io.Reader, error) { - if s.Stderr != nil { - return nil, errors.New("ssh: Stderr already set") - } - if s.started { - return nil, errors.New("ssh: StderrPipe after process started") - } - s.stderrpipe = true - return s.ch.Stderr(), nil -} - -// newSession returns a new interactive session on the remote host. -func newSession(ch Channel, reqs <-chan *Request) (*Session, error) { - s := &Session{ - ch: ch, - } - s.exitStatus = make(chan error, 1) - go func() { - s.exitStatus <- s.wait(reqs) - }() - - return s, nil -} - -// An ExitError reports unsuccessful completion of a remote command. -type ExitError struct { - Waitmsg -} - -func (e *ExitError) Error() string { - return e.Waitmsg.String() -} - -// Waitmsg stores the information about an exited remote command -// as reported by Wait. -type Waitmsg struct { - status int - signal string - msg string - lang string -} - -// ExitStatus returns the exit status of the remote command. -func (w Waitmsg) ExitStatus() int { - return w.status -} - -// Signal returns the exit signal of the remote command if -// it was terminated violently. -func (w Waitmsg) Signal() string { - return w.signal -} - -// Msg returns the exit message given by the remote command -func (w Waitmsg) Msg() string { - return w.msg -} - -// Lang returns the language tag. See RFC 3066 -func (w Waitmsg) Lang() string { - return w.lang -} - -func (w Waitmsg) String() string { - return fmt.Sprintf("Process exited with: %v. Reason was: %v (%v)", w.status, w.msg, w.signal) -} diff --git a/modules/crypto/ssh/session_test.go b/modules/crypto/ssh/session_test.go deleted file mode 100755 index 628845e4..00000000 --- a/modules/crypto/ssh/session_test.go +++ /dev/null @@ -1,774 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -// Session tests. - -import ( - "bytes" - crypto_rand "crypto/rand" - "errors" - "io" - "io/ioutil" - "math/rand" - "net" - "testing" - - "github.com/gogits/gogs/modules/crypto/ssh/terminal" -) - -type serverType func(Channel, <-chan *Request, *testing.T) - -// dial constructs a new test server and returns a *ClientConn. -func dial(handler serverType, t *testing.T) *Client { - c1, c2, err := netPipe() - if err != nil { - t.Fatalf("netPipe: %v", err) - } - - go func() { - defer c1.Close() - conf := ServerConfig{ - NoClientAuth: true, - } - conf.AddHostKey(testSigners["rsa"]) - - _, chans, reqs, err := NewServerConn(c1, &conf) - if err != nil { - t.Fatalf("Unable to handshake: %v", err) - } - go DiscardRequests(reqs) - - for newCh := range chans { - if newCh.ChannelType() != "session" { - newCh.Reject(UnknownChannelType, "unknown channel type") - continue - } - - ch, inReqs, err := newCh.Accept() - if err != nil { - t.Errorf("Accept: %v", err) - continue - } - go func() { - handler(ch, inReqs, t) - }() - } - }() - - config := &ClientConfig{ - User: "testuser", - } - - conn, chans, reqs, err := NewClientConn(c2, "", config) - if err != nil { - t.Fatalf("unable to dial remote side: %v", err) - } - - return NewClient(conn, chans, reqs) -} - -// Test a simple string is returned to session.Stdout. -func TestSessionShell(t *testing.T) { - conn := dial(shellHandler, t) - defer conn.Close() - session, err := conn.NewSession() - if err != nil { - t.Fatalf("Unable to request new session: %v", err) - } - defer session.Close() - stdout := new(bytes.Buffer) - session.Stdout = stdout - if err := session.Shell(); err != nil { - t.Fatalf("Unable to execute command: %s", err) - } - if err := session.Wait(); err != nil { - t.Fatalf("Remote command did not exit cleanly: %v", err) - } - actual := stdout.String() - if actual != "golang" { - t.Fatalf("Remote shell did not return expected string: expected=golang, actual=%s", actual) - } -} - -// TODO(dfc) add support for Std{in,err}Pipe when the Server supports it. - -// Test a simple string is returned via StdoutPipe. -func TestSessionStdoutPipe(t *testing.T) { - conn := dial(shellHandler, t) - defer conn.Close() - session, err := conn.NewSession() - if err != nil { - t.Fatalf("Unable to request new session: %v", err) - } - defer session.Close() - stdout, err := session.StdoutPipe() - if err != nil { - t.Fatalf("Unable to request StdoutPipe(): %v", err) - } - var buf bytes.Buffer - if err := session.Shell(); err != nil { - t.Fatalf("Unable to execute command: %v", err) - } - done := make(chan bool, 1) - go func() { - if _, err := io.Copy(&buf, stdout); err != nil { - t.Errorf("Copy of stdout failed: %v", err) - } - done <- true - }() - if err := session.Wait(); err != nil { - t.Fatalf("Remote command did not exit cleanly: %v", err) - } - <-done - actual := buf.String() - if actual != "golang" { - t.Fatalf("Remote shell did not return expected string: expected=golang, actual=%s", actual) - } -} - -// Test that a simple string is returned via the Output helper, -// and that stderr is discarded. -func TestSessionOutput(t *testing.T) { - conn := dial(fixedOutputHandler, t) - defer conn.Close() - session, err := conn.NewSession() - if err != nil { - t.Fatalf("Unable to request new session: %v", err) - } - defer session.Close() - - buf, err := session.Output("") // cmd is ignored by fixedOutputHandler - if err != nil { - t.Error("Remote command did not exit cleanly:", err) - } - w := "this-is-stdout." - g := string(buf) - if g != w { - t.Error("Remote command did not return expected string:") - t.Logf("want %q", w) - t.Logf("got %q", g) - } -} - -// Test that both stdout and stderr are returned -// via the CombinedOutput helper. -func TestSessionCombinedOutput(t *testing.T) { - conn := dial(fixedOutputHandler, t) - defer conn.Close() - session, err := conn.NewSession() - if err != nil { - t.Fatalf("Unable to request new session: %v", err) - } - defer session.Close() - - buf, err := session.CombinedOutput("") // cmd is ignored by fixedOutputHandler - if err != nil { - t.Error("Remote command did not exit cleanly:", err) - } - const stdout = "this-is-stdout." - const stderr = "this-is-stderr." - g := string(buf) - if g != stdout+stderr && g != stderr+stdout { - t.Error("Remote command did not return expected string:") - t.Logf("want %q, or %q", stdout+stderr, stderr+stdout) - t.Logf("got %q", g) - } -} - -// Test non-0 exit status is returned correctly. -func TestExitStatusNonZero(t *testing.T) { - conn := dial(exitStatusNonZeroHandler, t) - defer conn.Close() - session, err := conn.NewSession() - if err != nil { - t.Fatalf("Unable to request new session: %v", err) - } - defer session.Close() - if err := session.Shell(); err != nil { - t.Fatalf("Unable to execute command: %v", err) - } - err = session.Wait() - if err == nil { - t.Fatalf("expected command to fail but it didn't") - } - e, ok := err.(*ExitError) - if !ok { - t.Fatalf("expected *ExitError but got %T", err) - } - if e.ExitStatus() != 15 { - t.Fatalf("expected command to exit with 15 but got %v", e.ExitStatus()) - } -} - -// Test 0 exit status is returned correctly. -func TestExitStatusZero(t *testing.T) { - conn := dial(exitStatusZeroHandler, t) - defer conn.Close() - session, err := conn.NewSession() - if err != nil { - t.Fatalf("Unable to request new session: %v", err) - } - defer session.Close() - - if err := session.Shell(); err != nil { - t.Fatalf("Unable to execute command: %v", err) - } - err = session.Wait() - if err != nil { - t.Fatalf("expected nil but got %v", err) - } -} - -// Test exit signal and status are both returned correctly. -func TestExitSignalAndStatus(t *testing.T) { - conn := dial(exitSignalAndStatusHandler, t) - defer conn.Close() - session, err := conn.NewSession() - if err != nil { - t.Fatalf("Unable to request new session: %v", err) - } - defer session.Close() - if err := session.Shell(); err != nil { - t.Fatalf("Unable to execute command: %v", err) - } - err = session.Wait() - if err == nil { - t.Fatalf("expected command to fail but it didn't") - } - e, ok := err.(*ExitError) - if !ok { - t.Fatalf("expected *ExitError but got %T", err) - } - if e.Signal() != "TERM" || e.ExitStatus() != 15 { - t.Fatalf("expected command to exit with signal TERM and status 15 but got signal %s and status %v", e.Signal(), e.ExitStatus()) - } -} - -// Test exit signal and status are both returned correctly. -func TestKnownExitSignalOnly(t *testing.T) { - conn := dial(exitSignalHandler, t) - defer conn.Close() - session, err := conn.NewSession() - if err != nil { - t.Fatalf("Unable to request new session: %v", err) - } - defer session.Close() - if err := session.Shell(); err != nil { - t.Fatalf("Unable to execute command: %v", err) - } - err = session.Wait() - if err == nil { - t.Fatalf("expected command to fail but it didn't") - } - e, ok := err.(*ExitError) - if !ok { - t.Fatalf("expected *ExitError but got %T", err) - } - if e.Signal() != "TERM" || e.ExitStatus() != 143 { - t.Fatalf("expected command to exit with signal TERM and status 143 but got signal %s and status %v", e.Signal(), e.ExitStatus()) - } -} - -// Test exit signal and status are both returned correctly. -func TestUnknownExitSignal(t *testing.T) { - conn := dial(exitSignalUnknownHandler, t) - defer conn.Close() - session, err := conn.NewSession() - if err != nil { - t.Fatalf("Unable to request new session: %v", err) - } - defer session.Close() - if err := session.Shell(); err != nil { - t.Fatalf("Unable to execute command: %v", err) - } - err = session.Wait() - if err == nil { - t.Fatalf("expected command to fail but it didn't") - } - e, ok := err.(*ExitError) - if !ok { - t.Fatalf("expected *ExitError but got %T", err) - } - if e.Signal() != "SYS" || e.ExitStatus() != 128 { - t.Fatalf("expected command to exit with signal SYS and status 128 but got signal %s and status %v", e.Signal(), e.ExitStatus()) - } -} - -// Test WaitMsg is not returned if the channel closes abruptly. -func TestExitWithoutStatusOrSignal(t *testing.T) { - conn := dial(exitWithoutSignalOrStatus, t) - defer conn.Close() - session, err := conn.NewSession() - if err != nil { - t.Fatalf("Unable to request new session: %v", err) - } - defer session.Close() - if err := session.Shell(); err != nil { - t.Fatalf("Unable to execute command: %v", err) - } - err = session.Wait() - if err == nil { - t.Fatalf("expected command to fail but it didn't") - } - _, ok := err.(*ExitError) - if ok { - // you can't actually test for errors.errorString - // because it's not exported. - t.Fatalf("expected *errorString but got %T", err) - } -} - -// windowTestBytes is the number of bytes that we'll send to the SSH server. -const windowTestBytes = 16000 * 200 - -// TestServerWindow writes random data to the server. The server is expected to echo -// the same data back, which is compared against the original. -func TestServerWindow(t *testing.T) { - origBuf := bytes.NewBuffer(make([]byte, 0, windowTestBytes)) - io.CopyN(origBuf, crypto_rand.Reader, windowTestBytes) - origBytes := origBuf.Bytes() - - conn := dial(echoHandler, t) - defer conn.Close() - session, err := conn.NewSession() - if err != nil { - t.Fatal(err) - } - defer session.Close() - result := make(chan []byte) - - go func() { - defer close(result) - echoedBuf := bytes.NewBuffer(make([]byte, 0, windowTestBytes)) - serverStdout, err := session.StdoutPipe() - if err != nil { - t.Errorf("StdoutPipe failed: %v", err) - return - } - n, err := copyNRandomly("stdout", echoedBuf, serverStdout, windowTestBytes) - if err != nil && err != io.EOF { - t.Errorf("Read only %d bytes from server, expected %d: %v", n, windowTestBytes, err) - } - result <- echoedBuf.Bytes() - }() - - serverStdin, err := session.StdinPipe() - if err != nil { - t.Fatalf("StdinPipe failed: %v", err) - } - written, err := copyNRandomly("stdin", serverStdin, origBuf, windowTestBytes) - if err != nil { - t.Fatalf("failed to copy origBuf to serverStdin: %v", err) - } - if written != windowTestBytes { - t.Fatalf("Wrote only %d of %d bytes to server", written, windowTestBytes) - } - - echoedBytes := <-result - - if !bytes.Equal(origBytes, echoedBytes) { - t.Fatalf("Echoed buffer differed from original, orig %d, echoed %d", len(origBytes), len(echoedBytes)) - } -} - -// Verify the client can handle a keepalive packet from the server. -func TestClientHandlesKeepalives(t *testing.T) { - conn := dial(channelKeepaliveSender, t) - defer conn.Close() - session, err := conn.NewSession() - if err != nil { - t.Fatal(err) - } - defer session.Close() - if err := session.Shell(); err != nil { - t.Fatalf("Unable to execute command: %v", err) - } - err = session.Wait() - if err != nil { - t.Fatalf("expected nil but got: %v", err) - } -} - -type exitStatusMsg struct { - Status uint32 -} - -type exitSignalMsg struct { - Signal string - CoreDumped bool - Errmsg string - Lang string -} - -func handleTerminalRequests(in <-chan *Request) { - for req := range in { - ok := false - switch req.Type { - case "shell": - ok = true - if len(req.Payload) > 0 { - // We don't accept any commands, only the default shell. - ok = false - } - case "env": - ok = true - } - req.Reply(ok, nil) - } -} - -func newServerShell(ch Channel, in <-chan *Request, prompt string) *terminal.Terminal { - term := terminal.NewTerminal(ch, prompt) - go handleTerminalRequests(in) - return term -} - -func exitStatusZeroHandler(ch Channel, in <-chan *Request, t *testing.T) { - defer ch.Close() - // this string is returned to stdout - shell := newServerShell(ch, in, "> ") - readLine(shell, t) - sendStatus(0, ch, t) -} - -func exitStatusNonZeroHandler(ch Channel, in <-chan *Request, t *testing.T) { - defer ch.Close() - shell := newServerShell(ch, in, "> ") - readLine(shell, t) - sendStatus(15, ch, t) -} - -func exitSignalAndStatusHandler(ch Channel, in <-chan *Request, t *testing.T) { - defer ch.Close() - shell := newServerShell(ch, in, "> ") - readLine(shell, t) - sendStatus(15, ch, t) - sendSignal("TERM", ch, t) -} - -func exitSignalHandler(ch Channel, in <-chan *Request, t *testing.T) { - defer ch.Close() - shell := newServerShell(ch, in, "> ") - readLine(shell, t) - sendSignal("TERM", ch, t) -} - -func exitSignalUnknownHandler(ch Channel, in <-chan *Request, t *testing.T) { - defer ch.Close() - shell := newServerShell(ch, in, "> ") - readLine(shell, t) - sendSignal("SYS", ch, t) -} - -func exitWithoutSignalOrStatus(ch Channel, in <-chan *Request, t *testing.T) { - defer ch.Close() - shell := newServerShell(ch, in, "> ") - readLine(shell, t) -} - -func shellHandler(ch Channel, in <-chan *Request, t *testing.T) { - defer ch.Close() - // this string is returned to stdout - shell := newServerShell(ch, in, "golang") - readLine(shell, t) - sendStatus(0, ch, t) -} - -// Ignores the command, writes fixed strings to stderr and stdout. -// Strings are "this-is-stdout." and "this-is-stderr.". -func fixedOutputHandler(ch Channel, in <-chan *Request, t *testing.T) { - defer ch.Close() - _, err := ch.Read(nil) - - req, ok := <-in - if !ok { - t.Fatalf("error: expected channel request, got: %#v", err) - return - } - - // ignore request, always send some text - req.Reply(true, nil) - - _, err = io.WriteString(ch, "this-is-stdout.") - if err != nil { - t.Fatalf("error writing on server: %v", err) - } - _, err = io.WriteString(ch.Stderr(), "this-is-stderr.") - if err != nil { - t.Fatalf("error writing on server: %v", err) - } - sendStatus(0, ch, t) -} - -func readLine(shell *terminal.Terminal, t *testing.T) { - if _, err := shell.ReadLine(); err != nil && err != io.EOF { - t.Errorf("unable to read line: %v", err) - } -} - -func sendStatus(status uint32, ch Channel, t *testing.T) { - msg := exitStatusMsg{ - Status: status, - } - if _, err := ch.SendRequest("exit-status", false, Marshal(&msg)); err != nil { - t.Errorf("unable to send status: %v", err) - } -} - -func sendSignal(signal string, ch Channel, t *testing.T) { - sig := exitSignalMsg{ - Signal: signal, - CoreDumped: false, - Errmsg: "Process terminated", - Lang: "en-GB-oed", - } - if _, err := ch.SendRequest("exit-signal", false, Marshal(&sig)); err != nil { - t.Errorf("unable to send signal: %v", err) - } -} - -func discardHandler(ch Channel, t *testing.T) { - defer ch.Close() - io.Copy(ioutil.Discard, ch) -} - -func echoHandler(ch Channel, in <-chan *Request, t *testing.T) { - defer ch.Close() - if n, err := copyNRandomly("echohandler", ch, ch, windowTestBytes); err != nil { - t.Errorf("short write, wrote %d, expected %d: %v ", n, windowTestBytes, err) - } -} - -// copyNRandomly copies n bytes from src to dst. It uses a variable, and random, -// buffer size to exercise more code paths. -func copyNRandomly(title string, dst io.Writer, src io.Reader, n int) (int, error) { - var ( - buf = make([]byte, 32*1024) - written int - remaining = n - ) - for remaining > 0 { - l := rand.Intn(1 << 15) - if remaining < l { - l = remaining - } - nr, er := src.Read(buf[:l]) - nw, ew := dst.Write(buf[:nr]) - remaining -= nw - written += nw - if ew != nil { - return written, ew - } - if nr != nw { - return written, io.ErrShortWrite - } - if er != nil && er != io.EOF { - return written, er - } - } - return written, nil -} - -func channelKeepaliveSender(ch Channel, in <-chan *Request, t *testing.T) { - defer ch.Close() - shell := newServerShell(ch, in, "> ") - readLine(shell, t) - if _, err := ch.SendRequest("keepalive@openssh.com", true, nil); err != nil { - t.Errorf("unable to send channel keepalive request: %v", err) - } - sendStatus(0, ch, t) -} - -func TestClientWriteEOF(t *testing.T) { - conn := dial(simpleEchoHandler, t) - defer conn.Close() - - session, err := conn.NewSession() - if err != nil { - t.Fatal(err) - } - defer session.Close() - stdin, err := session.StdinPipe() - if err != nil { - t.Fatalf("StdinPipe failed: %v", err) - } - stdout, err := session.StdoutPipe() - if err != nil { - t.Fatalf("StdoutPipe failed: %v", err) - } - - data := []byte(`0000`) - _, err = stdin.Write(data) - if err != nil { - t.Fatalf("Write failed: %v", err) - } - stdin.Close() - - res, err := ioutil.ReadAll(stdout) - if err != nil { - t.Fatalf("Read failed: %v", err) - } - - if !bytes.Equal(data, res) { - t.Fatalf("Read differed from write, wrote: %v, read: %v", data, res) - } -} - -func simpleEchoHandler(ch Channel, in <-chan *Request, t *testing.T) { - defer ch.Close() - data, err := ioutil.ReadAll(ch) - if err != nil { - t.Errorf("handler read error: %v", err) - } - _, err = ch.Write(data) - if err != nil { - t.Errorf("handler write error: %v", err) - } -} - -func TestSessionID(t *testing.T) { - c1, c2, err := netPipe() - if err != nil { - t.Fatalf("netPipe: %v", err) - } - defer c1.Close() - defer c2.Close() - - serverID := make(chan []byte, 1) - clientID := make(chan []byte, 1) - - serverConf := &ServerConfig{ - NoClientAuth: true, - } - serverConf.AddHostKey(testSigners["ecdsa"]) - clientConf := &ClientConfig{ - User: "user", - } - - go func() { - conn, chans, reqs, err := NewServerConn(c1, serverConf) - if err != nil { - t.Fatalf("server handshake: %v", err) - } - serverID <- conn.SessionID() - go DiscardRequests(reqs) - for ch := range chans { - ch.Reject(Prohibited, "") - } - }() - - go func() { - conn, chans, reqs, err := NewClientConn(c2, "", clientConf) - if err != nil { - t.Fatalf("client handshake: %v", err) - } - clientID <- conn.SessionID() - go DiscardRequests(reqs) - for ch := range chans { - ch.Reject(Prohibited, "") - } - }() - - s := <-serverID - c := <-clientID - if bytes.Compare(s, c) != 0 { - t.Errorf("server session ID (%x) != client session ID (%x)", s, c) - } else if len(s) == 0 { - t.Errorf("client and server SessionID were empty.") - } -} - -type noReadConn struct { - readSeen bool - net.Conn -} - -func (c *noReadConn) Close() error { - return nil -} - -func (c *noReadConn) Read(b []byte) (int, error) { - c.readSeen = true - return 0, errors.New("noReadConn error") -} - -func TestInvalidServerConfiguration(t *testing.T) { - c1, c2, err := netPipe() - if err != nil { - t.Fatalf("netPipe: %v", err) - } - defer c1.Close() - defer c2.Close() - - serveConn := noReadConn{Conn: c1} - serverConf := &ServerConfig{} - - NewServerConn(&serveConn, serverConf) - if serveConn.readSeen { - t.Fatalf("NewServerConn attempted to Read() from Conn while configuration is missing host key") - } - - serverConf.AddHostKey(testSigners["ecdsa"]) - - NewServerConn(&serveConn, serverConf) - if serveConn.readSeen { - t.Fatalf("NewServerConn attempted to Read() from Conn while configuration is missing authentication method") - } -} - -func TestHostKeyAlgorithms(t *testing.T) { - serverConf := &ServerConfig{ - NoClientAuth: true, - } - serverConf.AddHostKey(testSigners["rsa"]) - serverConf.AddHostKey(testSigners["ecdsa"]) - - connect := func(clientConf *ClientConfig, want string) { - var alg string - clientConf.HostKeyCallback = func(h string, a net.Addr, key PublicKey) error { - alg = key.Type() - return nil - } - c1, c2, err := netPipe() - if err != nil { - t.Fatalf("netPipe: %v", err) - } - defer c1.Close() - defer c2.Close() - - go NewServerConn(c1, serverConf) - _, _, _, err = NewClientConn(c2, "", clientConf) - if err != nil { - t.Fatalf("NewClientConn: %v", err) - } - if alg != want { - t.Errorf("selected key algorithm %s, want %s", alg, want) - } - } - - // By default, we get the preferred algorithm, which is ECDSA 256. - - clientConf := &ClientConfig{} - connect(clientConf, KeyAlgoECDSA256) - - // Client asks for RSA explicitly. - clientConf.HostKeyAlgorithms = []string{KeyAlgoRSA} - connect(clientConf, KeyAlgoRSA) - - c1, c2, err := netPipe() - if err != nil { - t.Fatalf("netPipe: %v", err) - } - defer c1.Close() - defer c2.Close() - - go NewServerConn(c1, serverConf) - clientConf.HostKeyAlgorithms = []string{"nonexistent-hostkey-algo"} - _, _, _, err = NewClientConn(c2, "", clientConf) - if err == nil { - t.Fatal("succeeded connecting with unknown hostkey algorithm") - } -} diff --git a/modules/crypto/ssh/tcpip.go b/modules/crypto/ssh/tcpip.go deleted file mode 100755 index 6151241f..00000000 --- a/modules/crypto/ssh/tcpip.go +++ /dev/null @@ -1,407 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "errors" - "fmt" - "io" - "math/rand" - "net" - "strconv" - "strings" - "sync" - "time" -) - -// Listen requests the remote peer open a listening socket on -// addr. Incoming connections will be available by calling Accept on -// the returned net.Listener. The listener must be serviced, or the -// SSH connection may hang. -func (c *Client) Listen(n, addr string) (net.Listener, error) { - laddr, err := net.ResolveTCPAddr(n, addr) - if err != nil { - return nil, err - } - return c.ListenTCP(laddr) -} - -// Automatic port allocation is broken with OpenSSH before 6.0. See -// also https://bugzilla.mindrot.org/show_bug.cgi?id=2017. In -// particular, OpenSSH 5.9 sends a channelOpenMsg with port number 0, -// rather than the actual port number. This means you can never open -// two different listeners with auto allocated ports. We work around -// this by trying explicit ports until we succeed. - -const openSSHPrefix = "OpenSSH_" - -var portRandomizer = rand.New(rand.NewSource(time.Now().UnixNano())) - -// isBrokenOpenSSHVersion returns true if the given version string -// specifies a version of OpenSSH that is known to have a bug in port -// forwarding. -func isBrokenOpenSSHVersion(versionStr string) bool { - i := strings.Index(versionStr, openSSHPrefix) - if i < 0 { - return false - } - i += len(openSSHPrefix) - j := i - for ; j < len(versionStr); j++ { - if versionStr[j] < '0' || versionStr[j] > '9' { - break - } - } - version, _ := strconv.Atoi(versionStr[i:j]) - return version < 6 -} - -// autoPortListenWorkaround simulates automatic port allocation by -// trying random ports repeatedly. -func (c *Client) autoPortListenWorkaround(laddr *net.TCPAddr) (net.Listener, error) { - var sshListener net.Listener - var err error - const tries = 10 - for i := 0; i < tries; i++ { - addr := *laddr - addr.Port = 1024 + portRandomizer.Intn(60000) - sshListener, err = c.ListenTCP(&addr) - if err == nil { - laddr.Port = addr.Port - return sshListener, err - } - } - return nil, fmt.Errorf("ssh: listen on random port failed after %d tries: %v", tries, err) -} - -// RFC 4254 7.1 -type channelForwardMsg struct { - addr string - rport uint32 -} - -// ListenTCP requests the remote peer open a listening socket -// on laddr. Incoming connections will be available by calling -// Accept on the returned net.Listener. -func (c *Client) ListenTCP(laddr *net.TCPAddr) (net.Listener, error) { - if laddr.Port == 0 && isBrokenOpenSSHVersion(string(c.ServerVersion())) { - return c.autoPortListenWorkaround(laddr) - } - - m := channelForwardMsg{ - laddr.IP.String(), - uint32(laddr.Port), - } - // send message - ok, resp, err := c.SendRequest("tcpip-forward", true, Marshal(&m)) - if err != nil { - return nil, err - } - if !ok { - return nil, errors.New("ssh: tcpip-forward request denied by peer") - } - - // If the original port was 0, then the remote side will - // supply a real port number in the response. - if laddr.Port == 0 { - var p struct { - Port uint32 - } - if err := Unmarshal(resp, &p); err != nil { - return nil, err - } - laddr.Port = int(p.Port) - } - - // Register this forward, using the port number we obtained. - ch := c.forwards.add(*laddr) - - return &tcpListener{laddr, c, ch}, nil -} - -// forwardList stores a mapping between remote -// forward requests and the tcpListeners. -type forwardList struct { - sync.Mutex - entries []forwardEntry -} - -// forwardEntry represents an established mapping of a laddr on a -// remote ssh server to a channel connected to a tcpListener. -type forwardEntry struct { - laddr net.TCPAddr - c chan forward -} - -// forward represents an incoming forwarded tcpip connection. The -// arguments to add/remove/lookup should be address as specified in -// the original forward-request. -type forward struct { - newCh NewChannel // the ssh client channel underlying this forward - raddr *net.TCPAddr // the raddr of the incoming connection -} - -func (l *forwardList) add(addr net.TCPAddr) chan forward { - l.Lock() - defer l.Unlock() - f := forwardEntry{ - addr, - make(chan forward, 1), - } - l.entries = append(l.entries, f) - return f.c -} - -// See RFC 4254, section 7.2 -type forwardedTCPPayload struct { - Addr string - Port uint32 - OriginAddr string - OriginPort uint32 -} - -// parseTCPAddr parses the originating address from the remote into a *net.TCPAddr. -func parseTCPAddr(addr string, port uint32) (*net.TCPAddr, error) { - if port == 0 || port > 65535 { - return nil, fmt.Errorf("ssh: port number out of range: %d", port) - } - ip := net.ParseIP(string(addr)) - if ip == nil { - return nil, fmt.Errorf("ssh: cannot parse IP address %q", addr) - } - return &net.TCPAddr{IP: ip, Port: int(port)}, nil -} - -func (l *forwardList) handleChannels(in <-chan NewChannel) { - for ch := range in { - var payload forwardedTCPPayload - if err := Unmarshal(ch.ExtraData(), &payload); err != nil { - ch.Reject(ConnectionFailed, "could not parse forwarded-tcpip payload: "+err.Error()) - continue - } - - // RFC 4254 section 7.2 specifies that incoming - // addresses should list the address, in string - // format. It is implied that this should be an IP - // address, as it would be impossible to connect to it - // otherwise. - laddr, err := parseTCPAddr(payload.Addr, payload.Port) - if err != nil { - ch.Reject(ConnectionFailed, err.Error()) - continue - } - raddr, err := parseTCPAddr(payload.OriginAddr, payload.OriginPort) - if err != nil { - ch.Reject(ConnectionFailed, err.Error()) - continue - } - - if ok := l.forward(*laddr, *raddr, ch); !ok { - // Section 7.2, implementations MUST reject spurious incoming - // connections. - ch.Reject(Prohibited, "no forward for address") - continue - } - } -} - -// remove removes the forward entry, and the channel feeding its -// listener. -func (l *forwardList) remove(addr net.TCPAddr) { - l.Lock() - defer l.Unlock() - for i, f := range l.entries { - if addr.IP.Equal(f.laddr.IP) && addr.Port == f.laddr.Port { - l.entries = append(l.entries[:i], l.entries[i+1:]...) - close(f.c) - return - } - } -} - -// closeAll closes and clears all forwards. -func (l *forwardList) closeAll() { - l.Lock() - defer l.Unlock() - for _, f := range l.entries { - close(f.c) - } - l.entries = nil -} - -func (l *forwardList) forward(laddr, raddr net.TCPAddr, ch NewChannel) bool { - l.Lock() - defer l.Unlock() - for _, f := range l.entries { - if laddr.IP.Equal(f.laddr.IP) && laddr.Port == f.laddr.Port { - f.c <- forward{ch, &raddr} - return true - } - } - return false -} - -type tcpListener struct { - laddr *net.TCPAddr - - conn *Client - in <-chan forward -} - -// Accept waits for and returns the next connection to the listener. -func (l *tcpListener) Accept() (net.Conn, error) { - s, ok := <-l.in - if !ok { - return nil, io.EOF - } - ch, incoming, err := s.newCh.Accept() - if err != nil { - return nil, err - } - go DiscardRequests(incoming) - - return &tcpChanConn{ - Channel: ch, - laddr: l.laddr, - raddr: s.raddr, - }, nil -} - -// Close closes the listener. -func (l *tcpListener) Close() error { - m := channelForwardMsg{ - l.laddr.IP.String(), - uint32(l.laddr.Port), - } - - // this also closes the listener. - l.conn.forwards.remove(*l.laddr) - ok, _, err := l.conn.SendRequest("cancel-tcpip-forward", true, Marshal(&m)) - if err == nil && !ok { - err = errors.New("ssh: cancel-tcpip-forward failed") - } - return err -} - -// Addr returns the listener's network address. -func (l *tcpListener) Addr() net.Addr { - return l.laddr -} - -// Dial initiates a connection to the addr from the remote host. -// The resulting connection has a zero LocalAddr() and RemoteAddr(). -func (c *Client) Dial(n, addr string) (net.Conn, error) { - // Parse the address into host and numeric port. - host, portString, err := net.SplitHostPort(addr) - if err != nil { - return nil, err - } - port, err := strconv.ParseUint(portString, 10, 16) - if err != nil { - return nil, err - } - // Use a zero address for local and remote address. - zeroAddr := &net.TCPAddr{ - IP: net.IPv4zero, - Port: 0, - } - ch, err := c.dial(net.IPv4zero.String(), 0, host, int(port)) - if err != nil { - return nil, err - } - return &tcpChanConn{ - Channel: ch, - laddr: zeroAddr, - raddr: zeroAddr, - }, nil -} - -// DialTCP connects to the remote address raddr on the network net, -// which must be "tcp", "tcp4", or "tcp6". If laddr is not nil, it is used -// as the local address for the connection. -func (c *Client) DialTCP(n string, laddr, raddr *net.TCPAddr) (net.Conn, error) { - if laddr == nil { - laddr = &net.TCPAddr{ - IP: net.IPv4zero, - Port: 0, - } - } - ch, err := c.dial(laddr.IP.String(), laddr.Port, raddr.IP.String(), raddr.Port) - if err != nil { - return nil, err - } - return &tcpChanConn{ - Channel: ch, - laddr: laddr, - raddr: raddr, - }, nil -} - -// RFC 4254 7.2 -type channelOpenDirectMsg struct { - raddr string - rport uint32 - laddr string - lport uint32 -} - -func (c *Client) dial(laddr string, lport int, raddr string, rport int) (Channel, error) { - msg := channelOpenDirectMsg{ - raddr: raddr, - rport: uint32(rport), - laddr: laddr, - lport: uint32(lport), - } - ch, in, err := c.OpenChannel("direct-tcpip", Marshal(&msg)) - if err != nil { - return nil, err - } - go DiscardRequests(in) - return ch, err -} - -type tcpChan struct { - Channel // the backing channel -} - -// tcpChanConn fulfills the net.Conn interface without -// the tcpChan having to hold laddr or raddr directly. -type tcpChanConn struct { - Channel - laddr, raddr net.Addr -} - -// LocalAddr returns the local network address. -func (t *tcpChanConn) LocalAddr() net.Addr { - return t.laddr -} - -// RemoteAddr returns the remote network address. -func (t *tcpChanConn) RemoteAddr() net.Addr { - return t.raddr -} - -// SetDeadline sets the read and write deadlines associated -// with the connection. -func (t *tcpChanConn) SetDeadline(deadline time.Time) error { - if err := t.SetReadDeadline(deadline); err != nil { - return err - } - return t.SetWriteDeadline(deadline) -} - -// SetReadDeadline sets the read deadline. -// A zero value for t means Read will not time out. -// After the deadline, the error from Read will implement net.Error -// with Timeout() == true. -func (t *tcpChanConn) SetReadDeadline(deadline time.Time) error { - return errors.New("ssh: tcpChan: deadline not supported") -} - -// SetWriteDeadline exists to satisfy the net.Conn interface -// but is not implemented by this type. It always returns an error. -func (t *tcpChanConn) SetWriteDeadline(deadline time.Time) error { - return errors.New("ssh: tcpChan: deadline not supported") -} diff --git a/modules/crypto/ssh/tcpip_test.go b/modules/crypto/ssh/tcpip_test.go deleted file mode 100755 index f1265cb4..00000000 --- a/modules/crypto/ssh/tcpip_test.go +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright 2014 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "testing" -) - -func TestAutoPortListenBroken(t *testing.T) { - broken := "SSH-2.0-OpenSSH_5.9hh11" - works := "SSH-2.0-OpenSSH_6.1" - if !isBrokenOpenSSHVersion(broken) { - t.Errorf("version %q not marked as broken", broken) - } - if isBrokenOpenSSHVersion(works) { - t.Errorf("version %q marked as broken", works) - } -} diff --git a/modules/crypto/ssh/terminal/terminal.go b/modules/crypto/ssh/terminal/terminal.go deleted file mode 100755 index 741eeb13..00000000 --- a/modules/crypto/ssh/terminal/terminal.go +++ /dev/null @@ -1,892 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package terminal - -import ( - "bytes" - "io" - "sync" - "unicode/utf8" -) - -// EscapeCodes contains escape sequences that can be written to the terminal in -// order to achieve different styles of text. -type EscapeCodes struct { - // Foreground colors - Black, Red, Green, Yellow, Blue, Magenta, Cyan, White []byte - - // Reset all attributes - Reset []byte -} - -var vt100EscapeCodes = EscapeCodes{ - Black: []byte{keyEscape, '[', '3', '0', 'm'}, - Red: []byte{keyEscape, '[', '3', '1', 'm'}, - Green: []byte{keyEscape, '[', '3', '2', 'm'}, - Yellow: []byte{keyEscape, '[', '3', '3', 'm'}, - Blue: []byte{keyEscape, '[', '3', '4', 'm'}, - Magenta: []byte{keyEscape, '[', '3', '5', 'm'}, - Cyan: []byte{keyEscape, '[', '3', '6', 'm'}, - White: []byte{keyEscape, '[', '3', '7', 'm'}, - - Reset: []byte{keyEscape, '[', '0', 'm'}, -} - -// Terminal contains the state for running a VT100 terminal that is capable of -// reading lines of input. -type Terminal struct { - // AutoCompleteCallback, if non-null, is called for each keypress with - // the full input line and the current position of the cursor (in - // bytes, as an index into |line|). If it returns ok=false, the key - // press is processed normally. Otherwise it returns a replacement line - // and the new cursor position. - AutoCompleteCallback func(line string, pos int, key rune) (newLine string, newPos int, ok bool) - - // Escape contains a pointer to the escape codes for this terminal. - // It's always a valid pointer, although the escape codes themselves - // may be empty if the terminal doesn't support them. - Escape *EscapeCodes - - // lock protects the terminal and the state in this object from - // concurrent processing of a key press and a Write() call. - lock sync.Mutex - - c io.ReadWriter - prompt []rune - - // line is the current line being entered. - line []rune - // pos is the logical position of the cursor in line - pos int - // echo is true if local echo is enabled - echo bool - // pasteActive is true iff there is a bracketed paste operation in - // progress. - pasteActive bool - - // cursorX contains the current X value of the cursor where the left - // edge is 0. cursorY contains the row number where the first row of - // the current line is 0. - cursorX, cursorY int - // maxLine is the greatest value of cursorY so far. - maxLine int - - termWidth, termHeight int - - // outBuf contains the terminal data to be sent. - outBuf []byte - // remainder contains the remainder of any partial key sequences after - // a read. It aliases into inBuf. - remainder []byte - inBuf [256]byte - - // history contains previously entered commands so that they can be - // accessed with the up and down keys. - history stRingBuffer - // historyIndex stores the currently accessed history entry, where zero - // means the immediately previous entry. - historyIndex int - // When navigating up and down the history it's possible to return to - // the incomplete, initial line. That value is stored in - // historyPending. - historyPending string -} - -// NewTerminal runs a VT100 terminal on the given ReadWriter. If the ReadWriter is -// a local terminal, that terminal must first have been put into raw mode. -// prompt is a string that is written at the start of each input line (i.e. -// "> "). -func NewTerminal(c io.ReadWriter, prompt string) *Terminal { - return &Terminal{ - Escape: &vt100EscapeCodes, - c: c, - prompt: []rune(prompt), - termWidth: 80, - termHeight: 24, - echo: true, - historyIndex: -1, - } -} - -const ( - keyCtrlD = 4 - keyCtrlU = 21 - keyEnter = '\r' - keyEscape = 27 - keyBackspace = 127 - keyUnknown = 0xd800 /* UTF-16 surrogate area */ + iota - keyUp - keyDown - keyLeft - keyRight - keyAltLeft - keyAltRight - keyHome - keyEnd - keyDeleteWord - keyDeleteLine - keyClearScreen - keyPasteStart - keyPasteEnd -) - -var pasteStart = []byte{keyEscape, '[', '2', '0', '0', '~'} -var pasteEnd = []byte{keyEscape, '[', '2', '0', '1', '~'} - -// bytesToKey tries to parse a key sequence from b. If successful, it returns -// the key and the remainder of the input. Otherwise it returns utf8.RuneError. -func bytesToKey(b []byte, pasteActive bool) (rune, []byte) { - if len(b) == 0 { - return utf8.RuneError, nil - } - - if !pasteActive { - switch b[0] { - case 1: // ^A - return keyHome, b[1:] - case 5: // ^E - return keyEnd, b[1:] - case 8: // ^H - return keyBackspace, b[1:] - case 11: // ^K - return keyDeleteLine, b[1:] - case 12: // ^L - return keyClearScreen, b[1:] - case 23: // ^W - return keyDeleteWord, b[1:] - } - } - - if b[0] != keyEscape { - if !utf8.FullRune(b) { - return utf8.RuneError, b - } - r, l := utf8.DecodeRune(b) - return r, b[l:] - } - - if !pasteActive && len(b) >= 3 && b[0] == keyEscape && b[1] == '[' { - switch b[2] { - case 'A': - return keyUp, b[3:] - case 'B': - return keyDown, b[3:] - case 'C': - return keyRight, b[3:] - case 'D': - return keyLeft, b[3:] - case 'H': - return keyHome, b[3:] - case 'F': - return keyEnd, b[3:] - } - } - - if !pasteActive && len(b) >= 6 && b[0] == keyEscape && b[1] == '[' && b[2] == '1' && b[3] == ';' && b[4] == '3' { - switch b[5] { - case 'C': - return keyAltRight, b[6:] - case 'D': - return keyAltLeft, b[6:] - } - } - - if !pasteActive && len(b) >= 6 && bytes.Equal(b[:6], pasteStart) { - return keyPasteStart, b[6:] - } - - if pasteActive && len(b) >= 6 && bytes.Equal(b[:6], pasteEnd) { - return keyPasteEnd, b[6:] - } - - // If we get here then we have a key that we don't recognise, or a - // partial sequence. It's not clear how one should find the end of a - // sequence without knowing them all, but it seems that [a-zA-Z~] only - // appears at the end of a sequence. - for i, c := range b[0:] { - if c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z' || c == '~' { - return keyUnknown, b[i+1:] - } - } - - return utf8.RuneError, b -} - -// queue appends data to the end of t.outBuf -func (t *Terminal) queue(data []rune) { - t.outBuf = append(t.outBuf, []byte(string(data))...) -} - -var eraseUnderCursor = []rune{' ', keyEscape, '[', 'D'} -var space = []rune{' '} - -func isPrintable(key rune) bool { - isInSurrogateArea := key >= 0xd800 && key <= 0xdbff - return key >= 32 && !isInSurrogateArea -} - -// moveCursorToPos appends data to t.outBuf which will move the cursor to the -// given, logical position in the text. -func (t *Terminal) moveCursorToPos(pos int) { - if !t.echo { - return - } - - x := visualLength(t.prompt) + pos - y := x / t.termWidth - x = x % t.termWidth - - up := 0 - if y < t.cursorY { - up = t.cursorY - y - } - - down := 0 - if y > t.cursorY { - down = y - t.cursorY - } - - left := 0 - if x < t.cursorX { - left = t.cursorX - x - } - - right := 0 - if x > t.cursorX { - right = x - t.cursorX - } - - t.cursorX = x - t.cursorY = y - t.move(up, down, left, right) -} - -func (t *Terminal) move(up, down, left, right int) { - movement := make([]rune, 3*(up+down+left+right)) - m := movement - for i := 0; i < up; i++ { - m[0] = keyEscape - m[1] = '[' - m[2] = 'A' - m = m[3:] - } - for i := 0; i < down; i++ { - m[0] = keyEscape - m[1] = '[' - m[2] = 'B' - m = m[3:] - } - for i := 0; i < left; i++ { - m[0] = keyEscape - m[1] = '[' - m[2] = 'D' - m = m[3:] - } - for i := 0; i < right; i++ { - m[0] = keyEscape - m[1] = '[' - m[2] = 'C' - m = m[3:] - } - - t.queue(movement) -} - -func (t *Terminal) clearLineToRight() { - op := []rune{keyEscape, '[', 'K'} - t.queue(op) -} - -const maxLineLength = 4096 - -func (t *Terminal) setLine(newLine []rune, newPos int) { - if t.echo { - t.moveCursorToPos(0) - t.writeLine(newLine) - for i := len(newLine); i < len(t.line); i++ { - t.writeLine(space) - } - t.moveCursorToPos(newPos) - } - t.line = newLine - t.pos = newPos -} - -func (t *Terminal) advanceCursor(places int) { - t.cursorX += places - t.cursorY += t.cursorX / t.termWidth - if t.cursorY > t.maxLine { - t.maxLine = t.cursorY - } - t.cursorX = t.cursorX % t.termWidth - - if places > 0 && t.cursorX == 0 { - // Normally terminals will advance the current position - // when writing a character. But that doesn't happen - // for the last character in a line. However, when - // writing a character (except a new line) that causes - // a line wrap, the position will be advanced two - // places. - // - // So, if we are stopping at the end of a line, we - // need to write a newline so that our cursor can be - // advanced to the next line. - t.outBuf = append(t.outBuf, '\n') - } -} - -func (t *Terminal) eraseNPreviousChars(n int) { - if n == 0 { - return - } - - if t.pos < n { - n = t.pos - } - t.pos -= n - t.moveCursorToPos(t.pos) - - copy(t.line[t.pos:], t.line[n+t.pos:]) - t.line = t.line[:len(t.line)-n] - if t.echo { - t.writeLine(t.line[t.pos:]) - for i := 0; i < n; i++ { - t.queue(space) - } - t.advanceCursor(n) - t.moveCursorToPos(t.pos) - } -} - -// countToLeftWord returns then number of characters from the cursor to the -// start of the previous word. -func (t *Terminal) countToLeftWord() int { - if t.pos == 0 { - return 0 - } - - pos := t.pos - 1 - for pos > 0 { - if t.line[pos] != ' ' { - break - } - pos-- - } - for pos > 0 { - if t.line[pos] == ' ' { - pos++ - break - } - pos-- - } - - return t.pos - pos -} - -// countToRightWord returns then number of characters from the cursor to the -// start of the next word. -func (t *Terminal) countToRightWord() int { - pos := t.pos - for pos < len(t.line) { - if t.line[pos] == ' ' { - break - } - pos++ - } - for pos < len(t.line) { - if t.line[pos] != ' ' { - break - } - pos++ - } - return pos - t.pos -} - -// visualLength returns the number of visible glyphs in s. -func visualLength(runes []rune) int { - inEscapeSeq := false - length := 0 - - for _, r := range runes { - switch { - case inEscapeSeq: - if (r >= 'a' && r <= 'z') || (r >= 'A' && r <= 'Z') { - inEscapeSeq = false - } - case r == '\x1b': - inEscapeSeq = true - default: - length++ - } - } - - return length -} - -// handleKey processes the given key and, optionally, returns a line of text -// that the user has entered. -func (t *Terminal) handleKey(key rune) (line string, ok bool) { - if t.pasteActive && key != keyEnter { - t.addKeyToLine(key) - return - } - - switch key { - case keyBackspace: - if t.pos == 0 { - return - } - t.eraseNPreviousChars(1) - case keyAltLeft: - // move left by a word. - t.pos -= t.countToLeftWord() - t.moveCursorToPos(t.pos) - case keyAltRight: - // move right by a word. - t.pos += t.countToRightWord() - t.moveCursorToPos(t.pos) - case keyLeft: - if t.pos == 0 { - return - } - t.pos-- - t.moveCursorToPos(t.pos) - case keyRight: - if t.pos == len(t.line) { - return - } - t.pos++ - t.moveCursorToPos(t.pos) - case keyHome: - if t.pos == 0 { - return - } - t.pos = 0 - t.moveCursorToPos(t.pos) - case keyEnd: - if t.pos == len(t.line) { - return - } - t.pos = len(t.line) - t.moveCursorToPos(t.pos) - case keyUp: - entry, ok := t.history.NthPreviousEntry(t.historyIndex + 1) - if !ok { - return "", false - } - if t.historyIndex == -1 { - t.historyPending = string(t.line) - } - t.historyIndex++ - runes := []rune(entry) - t.setLine(runes, len(runes)) - case keyDown: - switch t.historyIndex { - case -1: - return - case 0: - runes := []rune(t.historyPending) - t.setLine(runes, len(runes)) - t.historyIndex-- - default: - entry, ok := t.history.NthPreviousEntry(t.historyIndex - 1) - if ok { - t.historyIndex-- - runes := []rune(entry) - t.setLine(runes, len(runes)) - } - } - case keyEnter: - t.moveCursorToPos(len(t.line)) - t.queue([]rune("\r\n")) - line = string(t.line) - ok = true - t.line = t.line[:0] - t.pos = 0 - t.cursorX = 0 - t.cursorY = 0 - t.maxLine = 0 - case keyDeleteWord: - // Delete zero or more spaces and then one or more characters. - t.eraseNPreviousChars(t.countToLeftWord()) - case keyDeleteLine: - // Delete everything from the current cursor position to the - // end of line. - for i := t.pos; i < len(t.line); i++ { - t.queue(space) - t.advanceCursor(1) - } - t.line = t.line[:t.pos] - t.moveCursorToPos(t.pos) - case keyCtrlD: - // Erase the character under the current position. - // The EOF case when the line is empty is handled in - // readLine(). - if t.pos < len(t.line) { - t.pos++ - t.eraseNPreviousChars(1) - } - case keyCtrlU: - t.eraseNPreviousChars(t.pos) - case keyClearScreen: - // Erases the screen and moves the cursor to the home position. - t.queue([]rune("\x1b[2J\x1b[H")) - t.queue(t.prompt) - t.cursorX, t.cursorY = 0, 0 - t.advanceCursor(visualLength(t.prompt)) - t.setLine(t.line, t.pos) - default: - if t.AutoCompleteCallback != nil { - prefix := string(t.line[:t.pos]) - suffix := string(t.line[t.pos:]) - - t.lock.Unlock() - newLine, newPos, completeOk := t.AutoCompleteCallback(prefix+suffix, len(prefix), key) - t.lock.Lock() - - if completeOk { - t.setLine([]rune(newLine), utf8.RuneCount([]byte(newLine)[:newPos])) - return - } - } - if !isPrintable(key) { - return - } - if len(t.line) == maxLineLength { - return - } - t.addKeyToLine(key) - } - return -} - -// addKeyToLine inserts the given key at the current position in the current -// line. -func (t *Terminal) addKeyToLine(key rune) { - if len(t.line) == cap(t.line) { - newLine := make([]rune, len(t.line), 2*(1+len(t.line))) - copy(newLine, t.line) - t.line = newLine - } - t.line = t.line[:len(t.line)+1] - copy(t.line[t.pos+1:], t.line[t.pos:]) - t.line[t.pos] = key - if t.echo { - t.writeLine(t.line[t.pos:]) - } - t.pos++ - t.moveCursorToPos(t.pos) -} - -func (t *Terminal) writeLine(line []rune) { - for len(line) != 0 { - remainingOnLine := t.termWidth - t.cursorX - todo := len(line) - if todo > remainingOnLine { - todo = remainingOnLine - } - t.queue(line[:todo]) - t.advanceCursor(visualLength(line[:todo])) - line = line[todo:] - } -} - -func (t *Terminal) Write(buf []byte) (n int, err error) { - t.lock.Lock() - defer t.lock.Unlock() - - if t.cursorX == 0 && t.cursorY == 0 { - // This is the easy case: there's nothing on the screen that we - // have to move out of the way. - return t.c.Write(buf) - } - - // We have a prompt and possibly user input on the screen. We - // have to clear it first. - t.move(0 /* up */, 0 /* down */, t.cursorX /* left */, 0 /* right */) - t.cursorX = 0 - t.clearLineToRight() - - for t.cursorY > 0 { - t.move(1 /* up */, 0, 0, 0) - t.cursorY-- - t.clearLineToRight() - } - - if _, err = t.c.Write(t.outBuf); err != nil { - return - } - t.outBuf = t.outBuf[:0] - - if n, err = t.c.Write(buf); err != nil { - return - } - - t.writeLine(t.prompt) - if t.echo { - t.writeLine(t.line) - } - - t.moveCursorToPos(t.pos) - - if _, err = t.c.Write(t.outBuf); err != nil { - return - } - t.outBuf = t.outBuf[:0] - return -} - -// ReadPassword temporarily changes the prompt and reads a password, without -// echo, from the terminal. -func (t *Terminal) ReadPassword(prompt string) (line string, err error) { - t.lock.Lock() - defer t.lock.Unlock() - - oldPrompt := t.prompt - t.prompt = []rune(prompt) - t.echo = false - - line, err = t.readLine() - - t.prompt = oldPrompt - t.echo = true - - return -} - -// ReadLine returns a line of input from the terminal. -func (t *Terminal) ReadLine() (line string, err error) { - t.lock.Lock() - defer t.lock.Unlock() - - return t.readLine() -} - -func (t *Terminal) readLine() (line string, err error) { - // t.lock must be held at this point - - if t.cursorX == 0 && t.cursorY == 0 { - t.writeLine(t.prompt) - t.c.Write(t.outBuf) - t.outBuf = t.outBuf[:0] - } - - lineIsPasted := t.pasteActive - - for { - rest := t.remainder - lineOk := false - for !lineOk { - var key rune - key, rest = bytesToKey(rest, t.pasteActive) - if key == utf8.RuneError { - break - } - if !t.pasteActive { - if key == keyCtrlD { - if len(t.line) == 0 { - return "", io.EOF - } - } - if key == keyPasteStart { - t.pasteActive = true - if len(t.line) == 0 { - lineIsPasted = true - } - continue - } - } else if key == keyPasteEnd { - t.pasteActive = false - continue - } - if !t.pasteActive { - lineIsPasted = false - } - line, lineOk = t.handleKey(key) - } - if len(rest) > 0 { - n := copy(t.inBuf[:], rest) - t.remainder = t.inBuf[:n] - } else { - t.remainder = nil - } - t.c.Write(t.outBuf) - t.outBuf = t.outBuf[:0] - if lineOk { - if t.echo { - t.historyIndex = -1 - t.history.Add(line) - } - if lineIsPasted { - err = ErrPasteIndicator - } - return - } - - // t.remainder is a slice at the beginning of t.inBuf - // containing a partial key sequence - readBuf := t.inBuf[len(t.remainder):] - var n int - - t.lock.Unlock() - n, err = t.c.Read(readBuf) - t.lock.Lock() - - if err != nil { - return - } - - t.remainder = t.inBuf[:n+len(t.remainder)] - } - - panic("unreachable") // for Go 1.0. -} - -// SetPrompt sets the prompt to be used when reading subsequent lines. -func (t *Terminal) SetPrompt(prompt string) { - t.lock.Lock() - defer t.lock.Unlock() - - t.prompt = []rune(prompt) -} - -func (t *Terminal) clearAndRepaintLinePlusNPrevious(numPrevLines int) { - // Move cursor to column zero at the start of the line. - t.move(t.cursorY, 0, t.cursorX, 0) - t.cursorX, t.cursorY = 0, 0 - t.clearLineToRight() - for t.cursorY < numPrevLines { - // Move down a line - t.move(0, 1, 0, 0) - t.cursorY++ - t.clearLineToRight() - } - // Move back to beginning. - t.move(t.cursorY, 0, 0, 0) - t.cursorX, t.cursorY = 0, 0 - - t.queue(t.prompt) - t.advanceCursor(visualLength(t.prompt)) - t.writeLine(t.line) - t.moveCursorToPos(t.pos) -} - -func (t *Terminal) SetSize(width, height int) error { - t.lock.Lock() - defer t.lock.Unlock() - - if width == 0 { - width = 1 - } - - oldWidth := t.termWidth - t.termWidth, t.termHeight = width, height - - switch { - case width == oldWidth: - // If the width didn't change then nothing else needs to be - // done. - return nil - case len(t.line) == 0 && t.cursorX == 0 && t.cursorY == 0: - // If there is nothing on current line and no prompt printed, - // just do nothing - return nil - case width < oldWidth: - // Some terminals (e.g. xterm) will truncate lines that were - // too long when shinking. Others, (e.g. gnome-terminal) will - // attempt to wrap them. For the former, repainting t.maxLine - // works great, but that behaviour goes badly wrong in the case - // of the latter because they have doubled every full line. - - // We assume that we are working on a terminal that wraps lines - // and adjust the cursor position based on every previous line - // wrapping and turning into two. This causes the prompt on - // xterms to move upwards, which isn't great, but it avoids a - // huge mess with gnome-terminal. - if t.cursorX >= t.termWidth { - t.cursorX = t.termWidth - 1 - } - t.cursorY *= 2 - t.clearAndRepaintLinePlusNPrevious(t.maxLine * 2) - case width > oldWidth: - // If the terminal expands then our position calculations will - // be wrong in the future because we think the cursor is - // |t.pos| chars into the string, but there will be a gap at - // the end of any wrapped line. - // - // But the position will actually be correct until we move, so - // we can move back to the beginning and repaint everything. - t.clearAndRepaintLinePlusNPrevious(t.maxLine) - } - - _, err := t.c.Write(t.outBuf) - t.outBuf = t.outBuf[:0] - return err -} - -type pasteIndicatorError struct{} - -func (pasteIndicatorError) Error() string { - return "terminal: ErrPasteIndicator not correctly handled" -} - -// ErrPasteIndicator may be returned from ReadLine as the error, in addition -// to valid line data. It indicates that bracketed paste mode is enabled and -// that the returned line consists only of pasted data. Programs may wish to -// interpret pasted data more literally than typed data. -var ErrPasteIndicator = pasteIndicatorError{} - -// SetBracketedPasteMode requests that the terminal bracket paste operations -// with markers. Not all terminals support this but, if it is supported, then -// enabling this mode will stop any autocomplete callback from running due to -// pastes. Additionally, any lines that are completely pasted will be returned -// from ReadLine with the error set to ErrPasteIndicator. -func (t *Terminal) SetBracketedPasteMode(on bool) { - if on { - io.WriteString(t.c, "\x1b[?2004h") - } else { - io.WriteString(t.c, "\x1b[?2004l") - } -} - -// stRingBuffer is a ring buffer of strings. -type stRingBuffer struct { - // entries contains max elements. - entries []string - max int - // head contains the index of the element most recently added to the ring. - head int - // size contains the number of elements in the ring. - size int -} - -func (s *stRingBuffer) Add(a string) { - if s.entries == nil { - const defaultNumEntries = 100 - s.entries = make([]string, defaultNumEntries) - s.max = defaultNumEntries - } - - s.head = (s.head + 1) % s.max - s.entries[s.head] = a - if s.size < s.max { - s.size++ - } -} - -// NthPreviousEntry returns the value passed to the nth previous call to Add. -// If n is zero then the immediately prior value is returned, if one, then the -// next most recent, and so on. If such an element doesn't exist then ok is -// false. -func (s *stRingBuffer) NthPreviousEntry(n int) (value string, ok bool) { - if n >= s.size { - return "", false - } - index := s.head - n - if index < 0 { - index += s.max - } - return s.entries[index], true -} diff --git a/modules/crypto/ssh/terminal/terminal_test.go b/modules/crypto/ssh/terminal/terminal_test.go deleted file mode 100755 index a663fe41..00000000 --- a/modules/crypto/ssh/terminal/terminal_test.go +++ /dev/null @@ -1,269 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package terminal - -import ( - "io" - "testing" -) - -type MockTerminal struct { - toSend []byte - bytesPerRead int - received []byte -} - -func (c *MockTerminal) Read(data []byte) (n int, err error) { - n = len(data) - if n == 0 { - return - } - if n > len(c.toSend) { - n = len(c.toSend) - } - if n == 0 { - return 0, io.EOF - } - if c.bytesPerRead > 0 && n > c.bytesPerRead { - n = c.bytesPerRead - } - copy(data, c.toSend[:n]) - c.toSend = c.toSend[n:] - return -} - -func (c *MockTerminal) Write(data []byte) (n int, err error) { - c.received = append(c.received, data...) - return len(data), nil -} - -func TestClose(t *testing.T) { - c := &MockTerminal{} - ss := NewTerminal(c, "> ") - line, err := ss.ReadLine() - if line != "" { - t.Errorf("Expected empty line but got: %s", line) - } - if err != io.EOF { - t.Errorf("Error should have been EOF but got: %s", err) - } -} - -var keyPressTests = []struct { - in string - line string - err error - throwAwayLines int -}{ - { - err: io.EOF, - }, - { - in: "\r", - line: "", - }, - { - in: "foo\r", - line: "foo", - }, - { - in: "a\x1b[Cb\r", // right - line: "ab", - }, - { - in: "a\x1b[Db\r", // left - line: "ba", - }, - { - in: "a\177b\r", // backspace - line: "b", - }, - { - in: "\x1b[A\r", // up - }, - { - in: "\x1b[B\r", // down - }, - { - in: "line\x1b[A\x1b[B\r", // up then down - line: "line", - }, - { - in: "line1\rline2\x1b[A\r", // recall previous line. - line: "line1", - throwAwayLines: 1, - }, - { - // recall two previous lines and append. - in: "line1\rline2\rline3\x1b[A\x1b[Axxx\r", - line: "line1xxx", - throwAwayLines: 2, - }, - { - // Ctrl-A to move to beginning of line followed by ^K to kill - // line. - in: "a b \001\013\r", - line: "", - }, - { - // Ctrl-A to move to beginning of line, Ctrl-E to move to end, - // finally ^K to kill nothing. - in: "a b \001\005\013\r", - line: "a b ", - }, - { - in: "\027\r", - line: "", - }, - { - in: "a\027\r", - line: "", - }, - { - in: "a \027\r", - line: "", - }, - { - in: "a b\027\r", - line: "a ", - }, - { - in: "a b \027\r", - line: "a ", - }, - { - in: "one two thr\x1b[D\027\r", - line: "one two r", - }, - { - in: "\013\r", - line: "", - }, - { - in: "a\013\r", - line: "a", - }, - { - in: "ab\x1b[D\013\r", - line: "a", - }, - { - in: "Ξεσκεπάζω\r", - line: "Ξεσκεπάζω", - }, - { - in: "£\r\x1b[A\177\r", // non-ASCII char, enter, up, backspace. - line: "", - throwAwayLines: 1, - }, - { - in: "£\r££\x1b[A\x1b[B\177\r", // non-ASCII char, enter, 2x non-ASCII, up, down, backspace, enter. - line: "£", - throwAwayLines: 1, - }, - { - // Ctrl-D at the end of the line should be ignored. - in: "a\004\r", - line: "a", - }, - { - // a, b, left, Ctrl-D should erase the b. - in: "ab\x1b[D\004\r", - line: "a", - }, - { - // a, b, c, d, left, left, ^U should erase to the beginning of - // the line. - in: "abcd\x1b[D\x1b[D\025\r", - line: "cd", - }, - { - // Bracketed paste mode: control sequences should be returned - // verbatim in paste mode. - in: "abc\x1b[200~de\177f\x1b[201~\177\r", - line: "abcde\177", - }, - { - // Enter in bracketed paste mode should still work. - in: "abc\x1b[200~d\refg\x1b[201~h\r", - line: "efgh", - throwAwayLines: 1, - }, - { - // Lines consisting entirely of pasted data should be indicated as such. - in: "\x1b[200~a\r", - line: "a", - err: ErrPasteIndicator, - }, -} - -func TestKeyPresses(t *testing.T) { - for i, test := range keyPressTests { - for j := 1; j < len(test.in); j++ { - c := &MockTerminal{ - toSend: []byte(test.in), - bytesPerRead: j, - } - ss := NewTerminal(c, "> ") - for k := 0; k < test.throwAwayLines; k++ { - _, err := ss.ReadLine() - if err != nil { - t.Errorf("Throwaway line %d from test %d resulted in error: %s", k, i, err) - } - } - line, err := ss.ReadLine() - if line != test.line { - t.Errorf("Line resulting from test %d (%d bytes per read) was '%s', expected '%s'", i, j, line, test.line) - break - } - if err != test.err { - t.Errorf("Error resulting from test %d (%d bytes per read) was '%v', expected '%v'", i, j, err, test.err) - break - } - } - } -} - -func TestPasswordNotSaved(t *testing.T) { - c := &MockTerminal{ - toSend: []byte("password\r\x1b[A\r"), - bytesPerRead: 1, - } - ss := NewTerminal(c, "> ") - pw, _ := ss.ReadPassword("> ") - if pw != "password" { - t.Fatalf("failed to read password, got %s", pw) - } - line, _ := ss.ReadLine() - if len(line) > 0 { - t.Fatalf("password was saved in history") - } -} - -var setSizeTests = []struct { - width, height int -}{ - {40, 13}, - {80, 24}, - {132, 43}, -} - -func TestTerminalSetSize(t *testing.T) { - for _, setSize := range setSizeTests { - c := &MockTerminal{ - toSend: []byte("password\r\x1b[A\r"), - bytesPerRead: 1, - } - ss := NewTerminal(c, "> ") - ss.SetSize(setSize.width, setSize.height) - pw, _ := ss.ReadPassword("Password: ") - if pw != "password" { - t.Fatalf("failed to read password, got %s", pw) - } - if string(c.received) != "Password: \r\n" { - t.Errorf("failed to set the temporary prompt expected %q, got %q", "Password: ", c.received) - } - } -} diff --git a/modules/crypto/ssh/terminal/util.go b/modules/crypto/ssh/terminal/util.go deleted file mode 100755 index 0763c9a9..00000000 --- a/modules/crypto/ssh/terminal/util.go +++ /dev/null @@ -1,128 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// +build darwin dragonfly freebsd linux,!appengine netbsd openbsd - -// Package terminal provides support functions for dealing with terminals, as -// commonly found on UNIX systems. -// -// Putting a terminal into raw mode is the most common requirement: -// -// oldState, err := terminal.MakeRaw(0) -// if err != nil { -// panic(err) -// } -// defer terminal.Restore(0, oldState) -package terminal - -import ( - "io" - "syscall" - "unsafe" -) - -// State contains the state of a terminal. -type State struct { - termios syscall.Termios -} - -// IsTerminal returns true if the given file descriptor is a terminal. -func IsTerminal(fd int) bool { - var termios syscall.Termios - _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlReadTermios, uintptr(unsafe.Pointer(&termios)), 0, 0, 0) - return err == 0 -} - -// MakeRaw put the terminal connected to the given file descriptor into raw -// mode and returns the previous state of the terminal so that it can be -// restored. -func MakeRaw(fd int) (*State, error) { - var oldState State - if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlReadTermios, uintptr(unsafe.Pointer(&oldState.termios)), 0, 0, 0); err != 0 { - return nil, err - } - - newState := oldState.termios - newState.Iflag &^= syscall.ISTRIP | syscall.INLCR | syscall.ICRNL | syscall.IGNCR | syscall.IXON | syscall.IXOFF - newState.Lflag &^= syscall.ECHO | syscall.ICANON | syscall.ISIG - if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlWriteTermios, uintptr(unsafe.Pointer(&newState)), 0, 0, 0); err != 0 { - return nil, err - } - - return &oldState, nil -} - -// GetState returns the current state of a terminal which may be useful to -// restore the terminal after a signal. -func GetState(fd int) (*State, error) { - var oldState State - if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlReadTermios, uintptr(unsafe.Pointer(&oldState.termios)), 0, 0, 0); err != 0 { - return nil, err - } - - return &oldState, nil -} - -// Restore restores the terminal connected to the given file descriptor to a -// previous state. -func Restore(fd int, state *State) error { - _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlWriteTermios, uintptr(unsafe.Pointer(&state.termios)), 0, 0, 0) - return err -} - -// GetSize returns the dimensions of the given terminal. -func GetSize(fd int) (width, height int, err error) { - var dimensions [4]uint16 - - if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), uintptr(syscall.TIOCGWINSZ), uintptr(unsafe.Pointer(&dimensions)), 0, 0, 0); err != 0 { - return -1, -1, err - } - return int(dimensions[1]), int(dimensions[0]), nil -} - -// ReadPassword reads a line of input from a terminal without local echo. This -// is commonly used for inputting passwords and other sensitive data. The slice -// returned does not include the \n. -func ReadPassword(fd int) ([]byte, error) { - var oldState syscall.Termios - if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlReadTermios, uintptr(unsafe.Pointer(&oldState)), 0, 0, 0); err != 0 { - return nil, err - } - - newState := oldState - newState.Lflag &^= syscall.ECHO - newState.Lflag |= syscall.ICANON | syscall.ISIG - newState.Iflag |= syscall.ICRNL - if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlWriteTermios, uintptr(unsafe.Pointer(&newState)), 0, 0, 0); err != 0 { - return nil, err - } - - defer func() { - syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlWriteTermios, uintptr(unsafe.Pointer(&oldState)), 0, 0, 0) - }() - - var buf [16]byte - var ret []byte - for { - n, err := syscall.Read(fd, buf[:]) - if err != nil { - return nil, err - } - if n == 0 { - if len(ret) == 0 { - return nil, io.EOF - } - break - } - if buf[n-1] == '\n' { - n-- - } - ret = append(ret, buf[:n]...) - if n < len(buf) { - break - } - } - - return ret, nil -} diff --git a/modules/crypto/ssh/terminal/util_bsd.go b/modules/crypto/ssh/terminal/util_bsd.go deleted file mode 100755 index 9c1ffd14..00000000 --- a/modules/crypto/ssh/terminal/util_bsd.go +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright 2013 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// +build darwin dragonfly freebsd netbsd openbsd - -package terminal - -import "syscall" - -const ioctlReadTermios = syscall.TIOCGETA -const ioctlWriteTermios = syscall.TIOCSETA diff --git a/modules/crypto/ssh/terminal/util_linux.go b/modules/crypto/ssh/terminal/util_linux.go deleted file mode 100755 index 5883b22d..00000000 --- a/modules/crypto/ssh/terminal/util_linux.go +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright 2013 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package terminal - -// These constants are declared here, rather than importing -// them from the syscall package as some syscall packages, even -// on linux, for example gccgo, do not declare them. -const ioctlReadTermios = 0x5401 // syscall.TCGETS -const ioctlWriteTermios = 0x5402 // syscall.TCSETS diff --git a/modules/crypto/ssh/terminal/util_windows.go b/modules/crypto/ssh/terminal/util_windows.go deleted file mode 100755 index 2dd6c3d9..00000000 --- a/modules/crypto/ssh/terminal/util_windows.go +++ /dev/null @@ -1,174 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// +build windows - -// Package terminal provides support functions for dealing with terminals, as -// commonly found on UNIX systems. -// -// Putting a terminal into raw mode is the most common requirement: -// -// oldState, err := terminal.MakeRaw(0) -// if err != nil { -// panic(err) -// } -// defer terminal.Restore(0, oldState) -package terminal - -import ( - "io" - "syscall" - "unsafe" -) - -const ( - enableLineInput = 2 - enableEchoInput = 4 - enableProcessedInput = 1 - enableWindowInput = 8 - enableMouseInput = 16 - enableInsertMode = 32 - enableQuickEditMode = 64 - enableExtendedFlags = 128 - enableAutoPosition = 256 - enableProcessedOutput = 1 - enableWrapAtEolOutput = 2 -) - -var kernel32 = syscall.NewLazyDLL("kernel32.dll") - -var ( - procGetConsoleMode = kernel32.NewProc("GetConsoleMode") - procSetConsoleMode = kernel32.NewProc("SetConsoleMode") - procGetConsoleScreenBufferInfo = kernel32.NewProc("GetConsoleScreenBufferInfo") -) - -type ( - short int16 - word uint16 - - coord struct { - x short - y short - } - smallRect struct { - left short - top short - right short - bottom short - } - consoleScreenBufferInfo struct { - size coord - cursorPosition coord - attributes word - window smallRect - maximumWindowSize coord - } -) - -type State struct { - mode uint32 -} - -// IsTerminal returns true if the given file descriptor is a terminal. -func IsTerminal(fd int) bool { - var st uint32 - r, _, e := syscall.Syscall(procGetConsoleMode.Addr(), 2, uintptr(fd), uintptr(unsafe.Pointer(&st)), 0) - return r != 0 && e == 0 -} - -// MakeRaw put the terminal connected to the given file descriptor into raw -// mode and returns the previous state of the terminal so that it can be -// restored. -func MakeRaw(fd int) (*State, error) { - var st uint32 - _, _, e := syscall.Syscall(procGetConsoleMode.Addr(), 2, uintptr(fd), uintptr(unsafe.Pointer(&st)), 0) - if e != 0 { - return nil, error(e) - } - st &^= (enableEchoInput | enableProcessedInput | enableLineInput | enableProcessedOutput) - _, _, e = syscall.Syscall(procSetConsoleMode.Addr(), 2, uintptr(fd), uintptr(st), 0) - if e != 0 { - return nil, error(e) - } - return &State{st}, nil -} - -// GetState returns the current state of a terminal which may be useful to -// restore the terminal after a signal. -func GetState(fd int) (*State, error) { - var st uint32 - _, _, e := syscall.Syscall(procGetConsoleMode.Addr(), 2, uintptr(fd), uintptr(unsafe.Pointer(&st)), 0) - if e != 0 { - return nil, error(e) - } - return &State{st}, nil -} - -// Restore restores the terminal connected to the given file descriptor to a -// previous state. -func Restore(fd int, state *State) error { - _, _, err := syscall.Syscall(procSetConsoleMode.Addr(), 2, uintptr(fd), uintptr(state.mode), 0) - return err -} - -// GetSize returns the dimensions of the given terminal. -func GetSize(fd int) (width, height int, err error) { - var info consoleScreenBufferInfo - _, _, e := syscall.Syscall(procGetConsoleScreenBufferInfo.Addr(), 2, uintptr(fd), uintptr(unsafe.Pointer(&info)), 0) - if e != 0 { - return 0, 0, error(e) - } - return int(info.size.x), int(info.size.y), nil -} - -// ReadPassword reads a line of input from a terminal without local echo. This -// is commonly used for inputting passwords and other sensitive data. The slice -// returned does not include the \n. -func ReadPassword(fd int) ([]byte, error) { - var st uint32 - _, _, e := syscall.Syscall(procGetConsoleMode.Addr(), 2, uintptr(fd), uintptr(unsafe.Pointer(&st)), 0) - if e != 0 { - return nil, error(e) - } - old := st - - st &^= (enableEchoInput) - st |= (enableProcessedInput | enableLineInput | enableProcessedOutput) - _, _, e = syscall.Syscall(procSetConsoleMode.Addr(), 2, uintptr(fd), uintptr(st), 0) - if e != 0 { - return nil, error(e) - } - - defer func() { - syscall.Syscall(procSetConsoleMode.Addr(), 2, uintptr(fd), uintptr(old), 0) - }() - - var buf [16]byte - var ret []byte - for { - n, err := syscall.Read(syscall.Handle(fd), buf[:]) - if err != nil { - return nil, err - } - if n == 0 { - if len(ret) == 0 { - return nil, io.EOF - } - break - } - if buf[n-1] == '\n' { - n-- - } - if n > 0 && buf[n-1] == '\r' { - n-- - } - ret = append(ret, buf[:n]...) - if n < len(buf) { - break - } - } - - return ret, nil -} diff --git a/modules/crypto/ssh/test/agent_unix_test.go b/modules/crypto/ssh/test/agent_unix_test.go deleted file mode 100755 index f481253c..00000000 --- a/modules/crypto/ssh/test/agent_unix_test.go +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright 2014 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// +build darwin dragonfly freebsd linux netbsd openbsd - -package test - -import ( - "bytes" - "testing" - - "golang.org/x/crypto/ssh" - "golang.org/x/crypto/ssh/agent" -) - -func TestAgentForward(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - conn := server.Dial(clientConfig()) - defer conn.Close() - - keyring := agent.NewKeyring() - if err := keyring.Add(agent.AddedKey{PrivateKey: testPrivateKeys["dsa"]}); err != nil { - t.Fatalf("Error adding key: %s", err) - } - if err := keyring.Add(agent.AddedKey{ - PrivateKey: testPrivateKeys["dsa"], - ConfirmBeforeUse: true, - LifetimeSecs: 3600, - }); err != nil { - t.Fatalf("Error adding key with constraints: %s", err) - } - pub := testPublicKeys["dsa"] - - sess, err := conn.NewSession() - if err != nil { - t.Fatalf("NewSession: %v", err) - } - if err := agent.RequestAgentForwarding(sess); err != nil { - t.Fatalf("RequestAgentForwarding: %v", err) - } - - if err := agent.ForwardToAgent(conn, keyring); err != nil { - t.Fatalf("SetupForwardKeyring: %v", err) - } - out, err := sess.CombinedOutput("ssh-add -L") - if err != nil { - t.Fatalf("running ssh-add: %v, out %s", err, out) - } - key, _, _, _, err := ssh.ParseAuthorizedKey(out) - if err != nil { - t.Fatalf("ParseAuthorizedKey(%q): %v", out, err) - } - - if !bytes.Equal(key.Marshal(), pub.Marshal()) { - t.Fatalf("got key %s, want %s", ssh.MarshalAuthorizedKey(key), ssh.MarshalAuthorizedKey(pub)) - } -} diff --git a/modules/crypto/ssh/test/cert_test.go b/modules/crypto/ssh/test/cert_test.go deleted file mode 100755 index 364790f1..00000000 --- a/modules/crypto/ssh/test/cert_test.go +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright 2014 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// +build darwin dragonfly freebsd linux netbsd openbsd - -package test - -import ( - "crypto/rand" - "testing" - - "golang.org/x/crypto/ssh" -) - -func TestCertLogin(t *testing.T) { - s := newServer(t) - defer s.Shutdown() - - // Use a key different from the default. - clientKey := testSigners["dsa"] - caAuthKey := testSigners["ecdsa"] - cert := &ssh.Certificate{ - Key: clientKey.PublicKey(), - ValidPrincipals: []string{username()}, - CertType: ssh.UserCert, - ValidBefore: ssh.CertTimeInfinity, - } - if err := cert.SignCert(rand.Reader, caAuthKey); err != nil { - t.Fatalf("SetSignature: %v", err) - } - - certSigner, err := ssh.NewCertSigner(cert, clientKey) - if err != nil { - t.Fatalf("NewCertSigner: %v", err) - } - - conf := &ssh.ClientConfig{ - User: username(), - } - conf.Auth = append(conf.Auth, ssh.PublicKeys(certSigner)) - client, err := s.TryDial(conf) - if err != nil { - t.Fatalf("TryDial: %v", err) - } - client.Close() -} diff --git a/modules/crypto/ssh/test/doc.go b/modules/crypto/ssh/test/doc.go deleted file mode 100755 index 29ad65e9..00000000 --- a/modules/crypto/ssh/test/doc.go +++ /dev/null @@ -1,7 +0,0 @@ -// Copyright 2012 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// This package contains integration tests for the -// golang.org/x/crypto/ssh package. -package test diff --git a/modules/crypto/ssh/test/forward_unix_test.go b/modules/crypto/ssh/test/forward_unix_test.go deleted file mode 100755 index 877a88cd..00000000 --- a/modules/crypto/ssh/test/forward_unix_test.go +++ /dev/null @@ -1,160 +0,0 @@ -// Copyright 2012 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// +build darwin dragonfly freebsd linux netbsd openbsd - -package test - -import ( - "bytes" - "io" - "io/ioutil" - "math/rand" - "net" - "testing" - "time" -) - -func TestPortForward(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - conn := server.Dial(clientConfig()) - defer conn.Close() - - sshListener, err := conn.Listen("tcp", "localhost:0") - if err != nil { - t.Fatal(err) - } - - go func() { - sshConn, err := sshListener.Accept() - if err != nil { - t.Fatalf("listen.Accept failed: %v", err) - } - - _, err = io.Copy(sshConn, sshConn) - if err != nil && err != io.EOF { - t.Fatalf("ssh client copy: %v", err) - } - sshConn.Close() - }() - - forwardedAddr := sshListener.Addr().String() - tcpConn, err := net.Dial("tcp", forwardedAddr) - if err != nil { - t.Fatalf("TCP dial failed: %v", err) - } - - readChan := make(chan []byte) - go func() { - data, _ := ioutil.ReadAll(tcpConn) - readChan <- data - }() - - // Invent some data. - data := make([]byte, 100*1000) - for i := range data { - data[i] = byte(i % 255) - } - - var sent []byte - for len(sent) < 1000*1000 { - // Send random sized chunks - m := rand.Intn(len(data)) - n, err := tcpConn.Write(data[:m]) - if err != nil { - break - } - sent = append(sent, data[:n]...) - } - if err := tcpConn.(*net.TCPConn).CloseWrite(); err != nil { - t.Errorf("tcpConn.CloseWrite: %v", err) - } - - read := <-readChan - - if len(sent) != len(read) { - t.Fatalf("got %d bytes, want %d", len(read), len(sent)) - } - if bytes.Compare(sent, read) != 0 { - t.Fatalf("read back data does not match") - } - - if err := sshListener.Close(); err != nil { - t.Fatalf("sshListener.Close: %v", err) - } - - // Check that the forward disappeared. - tcpConn, err = net.Dial("tcp", forwardedAddr) - if err == nil { - tcpConn.Close() - t.Errorf("still listening to %s after closing", forwardedAddr) - } -} - -func TestAcceptClose(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - conn := server.Dial(clientConfig()) - - sshListener, err := conn.Listen("tcp", "localhost:0") - if err != nil { - t.Fatal(err) - } - - quit := make(chan error, 1) - go func() { - for { - c, err := sshListener.Accept() - if err != nil { - quit <- err - break - } - c.Close() - } - }() - sshListener.Close() - - select { - case <-time.After(1 * time.Second): - t.Errorf("timeout: listener did not close.") - case err := <-quit: - t.Logf("quit as expected (error %v)", err) - } -} - -// Check that listeners exit if the underlying client transport dies. -func TestPortForwardConnectionClose(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - conn := server.Dial(clientConfig()) - - sshListener, err := conn.Listen("tcp", "localhost:0") - if err != nil { - t.Fatal(err) - } - - quit := make(chan error, 1) - go func() { - for { - c, err := sshListener.Accept() - if err != nil { - quit <- err - break - } - c.Close() - } - }() - - // It would be even nicer if we closed the server side, but it - // is more involved as the fd for that side is dup()ed. - server.clientConn.Close() - - select { - case <-time.After(1 * time.Second): - t.Errorf("timeout: listener did not close.") - case err := <-quit: - t.Logf("quit as expected (error %v)", err) - } -} diff --git a/modules/crypto/ssh/test/session_test.go b/modules/crypto/ssh/test/session_test.go deleted file mode 100755 index c0e714ba..00000000 --- a/modules/crypto/ssh/test/session_test.go +++ /dev/null @@ -1,340 +0,0 @@ -// Copyright 2012 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// +build !windows - -package test - -// Session functional tests. - -import ( - "bytes" - "errors" - "io" - "strings" - "testing" - - "golang.org/x/crypto/ssh" -) - -func TestRunCommandSuccess(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - conn := server.Dial(clientConfig()) - defer conn.Close() - - session, err := conn.NewSession() - if err != nil { - t.Fatalf("session failed: %v", err) - } - defer session.Close() - err = session.Run("true") - if err != nil { - t.Fatalf("session failed: %v", err) - } -} - -func TestHostKeyCheck(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - - conf := clientConfig() - hostDB := hostKeyDB() - conf.HostKeyCallback = hostDB.Check - - // change the keys. - hostDB.keys[ssh.KeyAlgoRSA][25]++ - hostDB.keys[ssh.KeyAlgoDSA][25]++ - hostDB.keys[ssh.KeyAlgoECDSA256][25]++ - - conn, err := server.TryDial(conf) - if err == nil { - conn.Close() - t.Fatalf("dial should have failed.") - } else if !strings.Contains(err.Error(), "host key mismatch") { - t.Fatalf("'host key mismatch' not found in %v", err) - } -} - -func TestRunCommandStdin(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - conn := server.Dial(clientConfig()) - defer conn.Close() - - session, err := conn.NewSession() - if err != nil { - t.Fatalf("session failed: %v", err) - } - defer session.Close() - - r, w := io.Pipe() - defer r.Close() - defer w.Close() - session.Stdin = r - - err = session.Run("true") - if err != nil { - t.Fatalf("session failed: %v", err) - } -} - -func TestRunCommandStdinError(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - conn := server.Dial(clientConfig()) - defer conn.Close() - - session, err := conn.NewSession() - if err != nil { - t.Fatalf("session failed: %v", err) - } - defer session.Close() - - r, w := io.Pipe() - defer r.Close() - session.Stdin = r - pipeErr := errors.New("closing write end of pipe") - w.CloseWithError(pipeErr) - - err = session.Run("true") - if err != pipeErr { - t.Fatalf("expected %v, found %v", pipeErr, err) - } -} - -func TestRunCommandFailed(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - conn := server.Dial(clientConfig()) - defer conn.Close() - - session, err := conn.NewSession() - if err != nil { - t.Fatalf("session failed: %v", err) - } - defer session.Close() - err = session.Run(`bash -c "kill -9 $$"`) - if err == nil { - t.Fatalf("session succeeded: %v", err) - } -} - -func TestRunCommandWeClosed(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - conn := server.Dial(clientConfig()) - defer conn.Close() - - session, err := conn.NewSession() - if err != nil { - t.Fatalf("session failed: %v", err) - } - err = session.Shell() - if err != nil { - t.Fatalf("shell failed: %v", err) - } - err = session.Close() - if err != nil { - t.Fatalf("shell failed: %v", err) - } -} - -func TestFuncLargeRead(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - conn := server.Dial(clientConfig()) - defer conn.Close() - - session, err := conn.NewSession() - if err != nil { - t.Fatalf("unable to create new session: %s", err) - } - - stdout, err := session.StdoutPipe() - if err != nil { - t.Fatalf("unable to acquire stdout pipe: %s", err) - } - - err = session.Start("dd if=/dev/urandom bs=2048 count=1024") - if err != nil { - t.Fatalf("unable to execute remote command: %s", err) - } - - buf := new(bytes.Buffer) - n, err := io.Copy(buf, stdout) - if err != nil { - t.Fatalf("error reading from remote stdout: %s", err) - } - - if n != 2048*1024 { - t.Fatalf("Expected %d bytes but read only %d from remote command", 2048, n) - } -} - -func TestKeyChange(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - conf := clientConfig() - hostDB := hostKeyDB() - conf.HostKeyCallback = hostDB.Check - conf.RekeyThreshold = 1024 - conn := server.Dial(conf) - defer conn.Close() - - for i := 0; i < 4; i++ { - session, err := conn.NewSession() - if err != nil { - t.Fatalf("unable to create new session: %s", err) - } - - stdout, err := session.StdoutPipe() - if err != nil { - t.Fatalf("unable to acquire stdout pipe: %s", err) - } - - err = session.Start("dd if=/dev/urandom bs=1024 count=1") - if err != nil { - t.Fatalf("unable to execute remote command: %s", err) - } - buf := new(bytes.Buffer) - n, err := io.Copy(buf, stdout) - if err != nil { - t.Fatalf("error reading from remote stdout: %s", err) - } - - want := int64(1024) - if n != want { - t.Fatalf("Expected %d bytes but read only %d from remote command", want, n) - } - } - - if changes := hostDB.checkCount; changes < 4 { - t.Errorf("got %d key changes, want 4", changes) - } -} - -func TestInvalidTerminalMode(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - conn := server.Dial(clientConfig()) - defer conn.Close() - - session, err := conn.NewSession() - if err != nil { - t.Fatalf("session failed: %v", err) - } - defer session.Close() - - if err = session.RequestPty("vt100", 80, 40, ssh.TerminalModes{255: 1984}); err == nil { - t.Fatalf("req-pty failed: successful request with invalid mode") - } -} - -func TestValidTerminalMode(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - conn := server.Dial(clientConfig()) - defer conn.Close() - - session, err := conn.NewSession() - if err != nil { - t.Fatalf("session failed: %v", err) - } - defer session.Close() - - stdout, err := session.StdoutPipe() - if err != nil { - t.Fatalf("unable to acquire stdout pipe: %s", err) - } - - stdin, err := session.StdinPipe() - if err != nil { - t.Fatalf("unable to acquire stdin pipe: %s", err) - } - - tm := ssh.TerminalModes{ssh.ECHO: 0} - if err = session.RequestPty("xterm", 80, 40, tm); err != nil { - t.Fatalf("req-pty failed: %s", err) - } - - err = session.Shell() - if err != nil { - t.Fatalf("session failed: %s", err) - } - - stdin.Write([]byte("stty -a && exit\n")) - - var buf bytes.Buffer - if _, err := io.Copy(&buf, stdout); err != nil { - t.Fatalf("reading failed: %s", err) - } - - if sttyOutput := buf.String(); !strings.Contains(sttyOutput, "-echo ") { - t.Fatalf("terminal mode failure: expected -echo in stty output, got %s", sttyOutput) - } -} - -func TestCiphers(t *testing.T) { - var config ssh.Config - config.SetDefaults() - cipherOrder := config.Ciphers - // This cipher will not be tested when commented out in cipher.go it will - // fallback to the next available as per line 292. - cipherOrder = append(cipherOrder, "aes128-cbc") - - for _, ciph := range cipherOrder { - server := newServer(t) - defer server.Shutdown() - conf := clientConfig() - conf.Ciphers = []string{ciph} - // Don't fail if sshd doesnt have the cipher. - conf.Ciphers = append(conf.Ciphers, cipherOrder...) - conn, err := server.TryDial(conf) - if err == nil { - conn.Close() - } else { - t.Fatalf("failed for cipher %q", ciph) - } - } -} - -func TestMACs(t *testing.T) { - var config ssh.Config - config.SetDefaults() - macOrder := config.MACs - - for _, mac := range macOrder { - server := newServer(t) - defer server.Shutdown() - conf := clientConfig() - conf.MACs = []string{mac} - // Don't fail if sshd doesnt have the MAC. - conf.MACs = append(conf.MACs, macOrder...) - if conn, err := server.TryDial(conf); err == nil { - conn.Close() - } else { - t.Fatalf("failed for MAC %q", mac) - } - } -} - -func TestKeyExchanges(t *testing.T) { - var config ssh.Config - config.SetDefaults() - kexOrder := config.KeyExchanges - for _, kex := range kexOrder { - server := newServer(t) - defer server.Shutdown() - conf := clientConfig() - // Don't fail if sshd doesnt have the kex. - conf.KeyExchanges = append([]string{kex}, kexOrder...) - conn, err := server.TryDial(conf) - if err == nil { - conn.Close() - } else { - t.Errorf("failed for kex %q", kex) - } - } -} diff --git a/modules/crypto/ssh/test/tcpip_test.go b/modules/crypto/ssh/test/tcpip_test.go deleted file mode 100755 index a2eb9358..00000000 --- a/modules/crypto/ssh/test/tcpip_test.go +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright 2012 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// +build !windows - -package test - -// direct-tcpip functional tests - -import ( - "io" - "net" - "testing" -) - -func TestDial(t *testing.T) { - server := newServer(t) - defer server.Shutdown() - sshConn := server.Dial(clientConfig()) - defer sshConn.Close() - - l, err := net.Listen("tcp", "127.0.0.1:0") - if err != nil { - t.Fatalf("Listen: %v", err) - } - defer l.Close() - - go func() { - for { - c, err := l.Accept() - if err != nil { - break - } - - io.WriteString(c, c.RemoteAddr().String()) - c.Close() - } - }() - - conn, err := sshConn.Dial("tcp", l.Addr().String()) - if err != nil { - t.Fatalf("Dial: %v", err) - } - defer conn.Close() -} diff --git a/modules/crypto/ssh/test/test_unix_test.go b/modules/crypto/ssh/test/test_unix_test.go deleted file mode 100755 index f1fc50b2..00000000 --- a/modules/crypto/ssh/test/test_unix_test.go +++ /dev/null @@ -1,261 +0,0 @@ -// Copyright 2012 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// +build darwin dragonfly freebsd linux netbsd openbsd plan9 - -package test - -// functional test harness for unix. - -import ( - "bytes" - "fmt" - "io/ioutil" - "log" - "net" - "os" - "os/exec" - "os/user" - "path/filepath" - "testing" - "text/template" - - "golang.org/x/crypto/ssh" - "golang.org/x/crypto/ssh/testdata" -) - -const sshd_config = ` -Protocol 2 -HostKey {{.Dir}}/id_rsa -HostKey {{.Dir}}/id_dsa -HostKey {{.Dir}}/id_ecdsa -Pidfile {{.Dir}}/sshd.pid -#UsePrivilegeSeparation no -KeyRegenerationInterval 3600 -ServerKeyBits 768 -SyslogFacility AUTH -LogLevel DEBUG2 -LoginGraceTime 120 -PermitRootLogin no -StrictModes no -RSAAuthentication yes -PubkeyAuthentication yes -AuthorizedKeysFile {{.Dir}}/id_user.pub -TrustedUserCAKeys {{.Dir}}/id_ecdsa.pub -IgnoreRhosts yes -RhostsRSAAuthentication no -HostbasedAuthentication no -` - -var configTmpl = template.Must(template.New("").Parse(sshd_config)) - -type server struct { - t *testing.T - cleanup func() // executed during Shutdown - configfile string - cmd *exec.Cmd - output bytes.Buffer // holds stderr from sshd process - - // Client half of the network connection. - clientConn net.Conn -} - -func username() string { - var username string - if user, err := user.Current(); err == nil { - username = user.Username - } else { - // user.Current() currently requires cgo. If an error is - // returned attempt to get the username from the environment. - log.Printf("user.Current: %v; falling back on $USER", err) - username = os.Getenv("USER") - } - if username == "" { - panic("Unable to get username") - } - return username -} - -type storedHostKey struct { - // keys map from an algorithm string to binary key data. - keys map[string][]byte - - // checkCount counts the Check calls. Used for testing - // rekeying. - checkCount int -} - -func (k *storedHostKey) Add(key ssh.PublicKey) { - if k.keys == nil { - k.keys = map[string][]byte{} - } - k.keys[key.Type()] = key.Marshal() -} - -func (k *storedHostKey) Check(addr string, remote net.Addr, key ssh.PublicKey) error { - k.checkCount++ - algo := key.Type() - - if k.keys == nil || bytes.Compare(key.Marshal(), k.keys[algo]) != 0 { - return fmt.Errorf("host key mismatch. Got %q, want %q", key, k.keys[algo]) - } - return nil -} - -func hostKeyDB() *storedHostKey { - keyChecker := &storedHostKey{} - keyChecker.Add(testPublicKeys["ecdsa"]) - keyChecker.Add(testPublicKeys["rsa"]) - keyChecker.Add(testPublicKeys["dsa"]) - return keyChecker -} - -func clientConfig() *ssh.ClientConfig { - config := &ssh.ClientConfig{ - User: username(), - Auth: []ssh.AuthMethod{ - ssh.PublicKeys(testSigners["user"]), - }, - HostKeyCallback: hostKeyDB().Check, - } - return config -} - -// unixConnection creates two halves of a connected net.UnixConn. It -// is used for connecting the Go SSH client with sshd without opening -// ports. -func unixConnection() (*net.UnixConn, *net.UnixConn, error) { - dir, err := ioutil.TempDir("", "unixConnection") - if err != nil { - return nil, nil, err - } - defer os.Remove(dir) - - addr := filepath.Join(dir, "ssh") - listener, err := net.Listen("unix", addr) - if err != nil { - return nil, nil, err - } - defer listener.Close() - c1, err := net.Dial("unix", addr) - if err != nil { - return nil, nil, err - } - - c2, err := listener.Accept() - if err != nil { - c1.Close() - return nil, nil, err - } - - return c1.(*net.UnixConn), c2.(*net.UnixConn), nil -} - -func (s *server) TryDial(config *ssh.ClientConfig) (*ssh.Client, error) { - sshd, err := exec.LookPath("sshd") - if err != nil { - s.t.Skipf("skipping test: %v", err) - } - - c1, c2, err := unixConnection() - if err != nil { - s.t.Fatalf("unixConnection: %v", err) - } - - s.cmd = exec.Command(sshd, "-f", s.configfile, "-i", "-e") - f, err := c2.File() - if err != nil { - s.t.Fatalf("UnixConn.File: %v", err) - } - defer f.Close() - s.cmd.Stdin = f - s.cmd.Stdout = f - s.cmd.Stderr = &s.output - if err := s.cmd.Start(); err != nil { - s.t.Fail() - s.Shutdown() - s.t.Fatalf("s.cmd.Start: %v", err) - } - s.clientConn = c1 - conn, chans, reqs, err := ssh.NewClientConn(c1, "", config) - if err != nil { - return nil, err - } - return ssh.NewClient(conn, chans, reqs), nil -} - -func (s *server) Dial(config *ssh.ClientConfig) *ssh.Client { - conn, err := s.TryDial(config) - if err != nil { - s.t.Fail() - s.Shutdown() - s.t.Fatalf("ssh.Client: %v", err) - } - return conn -} - -func (s *server) Shutdown() { - if s.cmd != nil && s.cmd.Process != nil { - // Don't check for errors; if it fails it's most - // likely "os: process already finished", and we don't - // care about that. Use os.Interrupt, so child - // processes are killed too. - s.cmd.Process.Signal(os.Interrupt) - s.cmd.Wait() - } - if s.t.Failed() { - // log any output from sshd process - s.t.Logf("sshd: %s", s.output.String()) - } - s.cleanup() -} - -func writeFile(path string, contents []byte) { - f, err := os.OpenFile(path, os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0600) - if err != nil { - panic(err) - } - defer f.Close() - if _, err := f.Write(contents); err != nil { - panic(err) - } -} - -// newServer returns a new mock ssh server. -func newServer(t *testing.T) *server { - if testing.Short() { - t.Skip("skipping test due to -short") - } - dir, err := ioutil.TempDir("", "sshtest") - if err != nil { - t.Fatal(err) - } - f, err := os.Create(filepath.Join(dir, "sshd_config")) - if err != nil { - t.Fatal(err) - } - err = configTmpl.Execute(f, map[string]string{ - "Dir": dir, - }) - if err != nil { - t.Fatal(err) - } - f.Close() - - for k, v := range testdata.PEMBytes { - filename := "id_" + k - writeFile(filepath.Join(dir, filename), v) - writeFile(filepath.Join(dir, filename+".pub"), ssh.MarshalAuthorizedKey(testPublicKeys[k])) - } - - return &server{ - t: t, - configfile: f.Name(), - cleanup: func() { - if err := os.RemoveAll(dir); err != nil { - t.Error(err) - } - }, - } -} diff --git a/modules/crypto/ssh/test/testdata_test.go b/modules/crypto/ssh/test/testdata_test.go deleted file mode 100755 index ae48c751..00000000 --- a/modules/crypto/ssh/test/testdata_test.go +++ /dev/null @@ -1,64 +0,0 @@ -// Copyright 2014 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// IMPLEMENTOR NOTE: To avoid a package loop, this file is in three places: -// ssh/, ssh/agent, and ssh/test/. It should be kept in sync across all three -// instances. - -package test - -import ( - "crypto/rand" - "fmt" - - "golang.org/x/crypto/ssh" - "golang.org/x/crypto/ssh/testdata" -) - -var ( - testPrivateKeys map[string]interface{} - testSigners map[string]ssh.Signer - testPublicKeys map[string]ssh.PublicKey -) - -func init() { - var err error - - n := len(testdata.PEMBytes) - testPrivateKeys = make(map[string]interface{}, n) - testSigners = make(map[string]ssh.Signer, n) - testPublicKeys = make(map[string]ssh.PublicKey, n) - for t, k := range testdata.PEMBytes { - testPrivateKeys[t], err = ssh.ParseRawPrivateKey(k) - if err != nil { - panic(fmt.Sprintf("Unable to parse test key %s: %v", t, err)) - } - testSigners[t], err = ssh.NewSignerFromKey(testPrivateKeys[t]) - if err != nil { - panic(fmt.Sprintf("Unable to create signer for test key %s: %v", t, err)) - } - testPublicKeys[t] = testSigners[t].PublicKey() - } - - // Create a cert and sign it for use in tests. - testCert := &ssh.Certificate{ - Nonce: []byte{}, // To pass reflect.DeepEqual after marshal & parse, this must be non-nil - ValidPrincipals: []string{"gopher1", "gopher2"}, // increases test coverage - ValidAfter: 0, // unix epoch - ValidBefore: ssh.CertTimeInfinity, // The end of currently representable time. - Reserved: []byte{}, // To pass reflect.DeepEqual after marshal & parse, this must be non-nil - Key: testPublicKeys["ecdsa"], - SignatureKey: testPublicKeys["rsa"], - Permissions: ssh.Permissions{ - CriticalOptions: map[string]string{}, - Extensions: map[string]string{}, - }, - } - testCert.SignCert(rand.Reader, testSigners["rsa"]) - testPrivateKeys["cert"] = testPrivateKeys["ecdsa"] - testSigners["cert"], err = ssh.NewCertSigner(testCert, testSigners["ecdsa"]) - if err != nil { - panic(fmt.Sprintf("Unable to create certificate signer: %v", err)) - } -} diff --git a/modules/crypto/ssh/testdata/doc.go b/modules/crypto/ssh/testdata/doc.go deleted file mode 100755 index ae7bd8b8..00000000 --- a/modules/crypto/ssh/testdata/doc.go +++ /dev/null @@ -1,8 +0,0 @@ -// Copyright 2014 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// This package contains test data shared between the various subpackages of -// the golang.org/x/crypto/ssh package. Under no circumstance should -// this data be used for production code. -package testdata diff --git a/modules/crypto/ssh/testdata/keys.go b/modules/crypto/ssh/testdata/keys.go deleted file mode 100755 index 5ff1c0e0..00000000 --- a/modules/crypto/ssh/testdata/keys.go +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright 2014 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package testdata - -var PEMBytes = map[string][]byte{ - "dsa": []byte(`-----BEGIN DSA PRIVATE KEY----- -MIIBuwIBAAKBgQD6PDSEyXiI9jfNs97WuM46MSDCYlOqWw80ajN16AohtBncs1YB -lHk//dQOvCYOsYaE+gNix2jtoRjwXhDsc25/IqQbU1ahb7mB8/rsaILRGIbA5WH3 -EgFtJmXFovDz3if6F6TzvhFpHgJRmLYVR8cqsezL3hEZOvvs2iH7MorkxwIVAJHD -nD82+lxh2fb4PMsIiaXudAsBAoGAQRf7Q/iaPRn43ZquUhd6WwvirqUj+tkIu6eV -2nZWYmXLlqFQKEy4Tejl7Wkyzr2OSYvbXLzo7TNxLKoWor6ips0phYPPMyXld14r -juhT24CrhOzuLMhDduMDi032wDIZG4Y+K7ElU8Oufn8Sj5Wge8r6ANmmVgmFfynr -FhdYCngCgYEA3ucGJ93/Mx4q4eKRDxcWD3QzWyqpbRVRRV1Vmih9Ha/qC994nJFz -DQIdjxDIT2Rk2AGzMqFEB68Zc3O+Wcsmz5eWWzEwFxaTwOGWTyDqsDRLm3fD+QYj -nOwuxb0Kce+gWI8voWcqC9cyRm09jGzu2Ab3Bhtpg8JJ8L7gS3MRZK4CFEx4UAfY -Fmsr0W6fHB9nhS4/UXM8 ------END DSA PRIVATE KEY----- -`), - "ecdsa": []byte(`-----BEGIN EC PRIVATE KEY----- -MHcCAQEEINGWx0zo6fhJ/0EAfrPzVFyFC9s18lBt3cRoEDhS3ARooAoGCCqGSM49 -AwEHoUQDQgAEi9Hdw6KvZcWxfg2IDhA7UkpDtzzt6ZqJXSsFdLd+Kx4S3Sx4cVO+ -6/ZOXRnPmNAlLUqjShUsUBBngG0u2fqEqA== ------END EC PRIVATE KEY----- -`), - "rsa": []byte(`-----BEGIN RSA PRIVATE KEY----- -MIIBOwIBAAJBALdGZxkXDAjsYk10ihwU6Id2KeILz1TAJuoq4tOgDWxEEGeTrcld -r/ZwVaFzjWzxaf6zQIJbfaSEAhqD5yo72+sCAwEAAQJBAK8PEVU23Wj8mV0QjwcJ -tZ4GcTUYQL7cF4+ezTCE9a1NrGnCP2RuQkHEKxuTVrxXt+6OF15/1/fuXnxKjmJC -nxkCIQDaXvPPBi0c7vAxGwNY9726x01/dNbHCE0CBtcotobxpwIhANbbQbh3JHVW -2haQh4fAG5mhesZKAGcxTyv4mQ7uMSQdAiAj+4dzMpJWdSzQ+qGHlHMIBvVHLkqB -y2VdEyF7DPCZewIhAI7GOI/6LDIFOvtPo6Bj2nNmyQ1HU6k/LRtNIXi4c9NJAiAr -rrxx26itVhJmcvoUhOjwuzSlP2bE5VHAvkGB352YBg== ------END RSA PRIVATE KEY----- -`), - "user": []byte(`-----BEGIN EC PRIVATE KEY----- -MHcCAQEEILYCAeq8f7V4vSSypRw7pxy8yz3V5W4qg8kSC3zJhqpQoAoGCCqGSM49 -AwEHoUQDQgAEYcO2xNKiRUYOLEHM7VYAp57HNyKbOdYtHD83Z4hzNPVC4tM5mdGD -PLL8IEwvYu2wq+lpXfGQnNMbzYf9gspG0w== ------END EC PRIVATE KEY----- -`), -} diff --git a/modules/crypto/ssh/testdata_test.go b/modules/crypto/ssh/testdata_test.go deleted file mode 100755 index ca43fc6d..00000000 --- a/modules/crypto/ssh/testdata_test.go +++ /dev/null @@ -1,63 +0,0 @@ -// Copyright 2014 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// IMPLEMENTOR NOTE: To avoid a package loop, this file is in three places: -// ssh/, ssh/agent, and ssh/test/. It should be kept in sync across all three -// instances. - -package ssh - -import ( - "crypto/rand" - "fmt" - - "github.com/gogits/gogs/modules/crypto/ssh/testdata" -) - -var ( - testPrivateKeys map[string]interface{} - testSigners map[string]Signer - testPublicKeys map[string]PublicKey -) - -func init() { - var err error - - n := len(testdata.PEMBytes) - testPrivateKeys = make(map[string]interface{}, n) - testSigners = make(map[string]Signer, n) - testPublicKeys = make(map[string]PublicKey, n) - for t, k := range testdata.PEMBytes { - testPrivateKeys[t], err = ParseRawPrivateKey(k) - if err != nil { - panic(fmt.Sprintf("Unable to parse test key %s: %v", t, err)) - } - testSigners[t], err = NewSignerFromKey(testPrivateKeys[t]) - if err != nil { - panic(fmt.Sprintf("Unable to create signer for test key %s: %v", t, err)) - } - testPublicKeys[t] = testSigners[t].PublicKey() - } - - // Create a cert and sign it for use in tests. - testCert := &Certificate{ - Nonce: []byte{}, // To pass reflect.DeepEqual after marshal & parse, this must be non-nil - ValidPrincipals: []string{"gopher1", "gopher2"}, // increases test coverage - ValidAfter: 0, // unix epoch - ValidBefore: CertTimeInfinity, // The end of currently representable time. - Reserved: []byte{}, // To pass reflect.DeepEqual after marshal & parse, this must be non-nil - Key: testPublicKeys["ecdsa"], - SignatureKey: testPublicKeys["rsa"], - Permissions: Permissions{ - CriticalOptions: map[string]string{}, - Extensions: map[string]string{}, - }, - } - testCert.SignCert(rand.Reader, testSigners["rsa"]) - testPrivateKeys["cert"] = testPrivateKeys["ecdsa"] - testSigners["cert"], err = NewCertSigner(testCert, testSigners["ecdsa"]) - if err != nil { - panic(fmt.Sprintf("Unable to create certificate signer: %v", err)) - } -} diff --git a/modules/crypto/ssh/transport.go b/modules/crypto/ssh/transport.go deleted file mode 100755 index 8351d378..00000000 --- a/modules/crypto/ssh/transport.go +++ /dev/null @@ -1,332 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "bufio" - "errors" - "io" -) - -const ( - gcmCipherID = "aes128-gcm@openssh.com" - aes128cbcID = "aes128-cbc" -) - -// packetConn represents a transport that implements packet based -// operations. -type packetConn interface { - // Encrypt and send a packet of data to the remote peer. - writePacket(packet []byte) error - - // Read a packet from the connection - readPacket() ([]byte, error) - - // Close closes the write-side of the connection. - Close() error -} - -// transport is the keyingTransport that implements the SSH packet -// protocol. -type transport struct { - reader connectionState - writer connectionState - - bufReader *bufio.Reader - bufWriter *bufio.Writer - rand io.Reader - - io.Closer - - // Initial H used for the session ID. Once assigned this does - // not change, even during subsequent key exchanges. - sessionID []byte -} - -// getSessionID returns the ID of the SSH connection. The return value -// should not be modified. -func (t *transport) getSessionID() []byte { - if t.sessionID == nil { - panic("session ID not set yet") - } - return t.sessionID -} - -// packetCipher represents a combination of SSH encryption/MAC -// protocol. A single instance should be used for one direction only. -type packetCipher interface { - // writePacket encrypts the packet and writes it to w. The - // contents of the packet are generally scrambled. - writePacket(seqnum uint32, w io.Writer, rand io.Reader, packet []byte) error - - // readPacket reads and decrypts a packet of data. The - // returned packet may be overwritten by future calls of - // readPacket. - readPacket(seqnum uint32, r io.Reader) ([]byte, error) -} - -// connectionState represents one side (read or write) of the -// connection. This is necessary because each direction has its own -// keys, and can even have its own algorithms -type connectionState struct { - packetCipher - seqNum uint32 - dir direction - pendingKeyChange chan packetCipher -} - -// prepareKeyChange sets up key material for a keychange. The key changes in -// both directions are triggered by reading and writing a msgNewKey packet -// respectively. -func (t *transport) prepareKeyChange(algs *algorithms, kexResult *kexResult) error { - if t.sessionID == nil { - t.sessionID = kexResult.H - } - - kexResult.SessionID = t.sessionID - - if ciph, err := newPacketCipher(t.reader.dir, algs.r, kexResult); err != nil { - return err - } else { - t.reader.pendingKeyChange <- ciph - } - - if ciph, err := newPacketCipher(t.writer.dir, algs.w, kexResult); err != nil { - return err - } else { - t.writer.pendingKeyChange <- ciph - } - - return nil -} - -// Read and decrypt next packet. -func (t *transport) readPacket() ([]byte, error) { - return t.reader.readPacket(t.bufReader) -} - -func (s *connectionState) readPacket(r *bufio.Reader) ([]byte, error) { - packet, err := s.packetCipher.readPacket(s.seqNum, r) - s.seqNum++ - if err == nil && len(packet) == 0 { - err = errors.New("ssh: zero length packet") - } - - if len(packet) > 0 && packet[0] == msgNewKeys { - select { - case cipher := <-s.pendingKeyChange: - s.packetCipher = cipher - default: - return nil, errors.New("ssh: got bogus newkeys message.") - } - } - - // The packet may point to an internal buffer, so copy the - // packet out here. - fresh := make([]byte, len(packet)) - copy(fresh, packet) - - return fresh, err -} - -func (t *transport) writePacket(packet []byte) error { - return t.writer.writePacket(t.bufWriter, t.rand, packet) -} - -func (s *connectionState) writePacket(w *bufio.Writer, rand io.Reader, packet []byte) error { - changeKeys := len(packet) > 0 && packet[0] == msgNewKeys - - err := s.packetCipher.writePacket(s.seqNum, w, rand, packet) - if err != nil { - return err - } - if err = w.Flush(); err != nil { - return err - } - s.seqNum++ - if changeKeys { - select { - case cipher := <-s.pendingKeyChange: - s.packetCipher = cipher - default: - panic("ssh: no key material for msgNewKeys") - } - } - return err -} - -func newTransport(rwc io.ReadWriteCloser, rand io.Reader, isClient bool) *transport { - t := &transport{ - bufReader: bufio.NewReader(rwc), - bufWriter: bufio.NewWriter(rwc), - rand: rand, - reader: connectionState{ - packetCipher: &streamPacketCipher{cipher: noneCipher{}}, - pendingKeyChange: make(chan packetCipher, 1), - }, - writer: connectionState{ - packetCipher: &streamPacketCipher{cipher: noneCipher{}}, - pendingKeyChange: make(chan packetCipher, 1), - }, - Closer: rwc, - } - if isClient { - t.reader.dir = serverKeys - t.writer.dir = clientKeys - } else { - t.reader.dir = clientKeys - t.writer.dir = serverKeys - } - - return t -} - -type direction struct { - ivTag []byte - keyTag []byte - macKeyTag []byte -} - -var ( - serverKeys = direction{[]byte{'B'}, []byte{'D'}, []byte{'F'}} - clientKeys = direction{[]byte{'A'}, []byte{'C'}, []byte{'E'}} -) - -// generateKeys generates key material for IV, MAC and encryption. -func generateKeys(d direction, algs directionAlgorithms, kex *kexResult) (iv, key, macKey []byte) { - cipherMode := cipherModes[algs.Cipher] - macMode := macModes[algs.MAC] - - iv = make([]byte, cipherMode.ivSize) - key = make([]byte, cipherMode.keySize) - macKey = make([]byte, macMode.keySize) - - generateKeyMaterial(iv, d.ivTag, kex) - generateKeyMaterial(key, d.keyTag, kex) - generateKeyMaterial(macKey, d.macKeyTag, kex) - return -} - -// setupKeys sets the cipher and MAC keys from kex.K, kex.H and sessionId, as -// described in RFC 4253, section 6.4. direction should either be serverKeys -// (to setup server->client keys) or clientKeys (for client->server keys). -func newPacketCipher(d direction, algs directionAlgorithms, kex *kexResult) (packetCipher, error) { - iv, key, macKey := generateKeys(d, algs, kex) - - if algs.Cipher == gcmCipherID { - return newGCMCipher(iv, key, macKey) - } - - if algs.Cipher == aes128cbcID { - return newAESCBCCipher(iv, key, macKey, algs) - } - - c := &streamPacketCipher{ - mac: macModes[algs.MAC].new(macKey), - } - c.macResult = make([]byte, c.mac.Size()) - - var err error - c.cipher, err = cipherModes[algs.Cipher].createStream(key, iv) - if err != nil { - return nil, err - } - - return c, nil -} - -// generateKeyMaterial fills out with key material generated from tag, K, H -// and sessionId, as specified in RFC 4253, section 7.2. -func generateKeyMaterial(out, tag []byte, r *kexResult) { - var digestsSoFar []byte - - h := r.Hash.New() - for len(out) > 0 { - h.Reset() - h.Write(r.K) - h.Write(r.H) - - if len(digestsSoFar) == 0 { - h.Write(tag) - h.Write(r.SessionID) - } else { - h.Write(digestsSoFar) - } - - digest := h.Sum(nil) - n := copy(out, digest) - out = out[n:] - if len(out) > 0 { - digestsSoFar = append(digestsSoFar, digest...) - } - } -} - -const packageVersion = "SSH-2.0-Go" - -// Sends and receives a version line. The versionLine string should -// be US ASCII, start with "SSH-2.0-", and should not include a -// newline. exchangeVersions returns the other side's version line. -func exchangeVersions(rw io.ReadWriter, versionLine []byte) (them []byte, err error) { - // Contrary to the RFC, we do not ignore lines that don't - // start with "SSH-2.0-" to make the library usable with - // nonconforming servers. - for _, c := range versionLine { - // The spec disallows non US-ASCII chars, and - // specifically forbids null chars. - if c < 32 { - return nil, errors.New("ssh: junk character in version line") - } - } - if _, err = rw.Write(append(versionLine, '\r', '\n')); err != nil { - return - } - - them, err = readVersion(rw) - return them, err -} - -// maxVersionStringBytes is the maximum number of bytes that we'll -// accept as a version string. RFC 4253 section 4.2 limits this at 255 -// chars -const maxVersionStringBytes = 255 - -// Read version string as specified by RFC 4253, section 4.2. -func readVersion(r io.Reader) ([]byte, error) { - versionString := make([]byte, 0, 64) - var ok bool - var buf [1]byte - - for len(versionString) < maxVersionStringBytes { - _, err := io.ReadFull(r, buf[:]) - if err != nil { - return nil, err - } - // The RFC says that the version should be terminated with \r\n - // but several SSH servers actually only send a \n. - if buf[0] == '\n' { - ok = true - break - } - - // non ASCII chars are disallowed, but we are lenient, - // since Go doesn't use null-terminated strings. - - // The RFC allows a comment after a space, however, - // all of it (version and comments) goes into the - // session hash. - versionString = append(versionString, buf[0]) - } - - if !ok { - return nil, errors.New("ssh: overflow reading version string") - } - - // There might be a '\r' on the end which we should remove. - if len(versionString) > 0 && versionString[len(versionString)-1] == '\r' { - versionString = versionString[:len(versionString)-1] - } - return versionString, nil -} diff --git a/modules/crypto/ssh/transport_test.go b/modules/crypto/ssh/transport_test.go deleted file mode 100755 index 92d83abf..00000000 --- a/modules/crypto/ssh/transport_test.go +++ /dev/null @@ -1,109 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package ssh - -import ( - "bytes" - "crypto/rand" - "encoding/binary" - "strings" - "testing" -) - -func TestReadVersion(t *testing.T) { - longversion := strings.Repeat("SSH-2.0-bla", 50)[:253] - cases := map[string]string{ - "SSH-2.0-bla\r\n": "SSH-2.0-bla", - "SSH-2.0-bla\n": "SSH-2.0-bla", - longversion + "\r\n": longversion, - } - - for in, want := range cases { - result, err := readVersion(bytes.NewBufferString(in)) - if err != nil { - t.Errorf("readVersion(%q): %s", in, err) - } - got := string(result) - if got != want { - t.Errorf("got %q, want %q", got, want) - } - } -} - -func TestReadVersionError(t *testing.T) { - longversion := strings.Repeat("SSH-2.0-bla", 50)[:253] - cases := []string{ - longversion + "too-long\r\n", - } - for _, in := range cases { - if _, err := readVersion(bytes.NewBufferString(in)); err == nil { - t.Errorf("readVersion(%q) should have failed", in) - } - } -} - -func TestExchangeVersionsBasic(t *testing.T) { - v := "SSH-2.0-bla" - buf := bytes.NewBufferString(v + "\r\n") - them, err := exchangeVersions(buf, []byte("xyz")) - if err != nil { - t.Errorf("exchangeVersions: %v", err) - } - - if want := "SSH-2.0-bla"; string(them) != want { - t.Errorf("got %q want %q for our version", them, want) - } -} - -func TestExchangeVersions(t *testing.T) { - cases := []string{ - "not\x000allowed", - "not allowed\n", - } - for _, c := range cases { - buf := bytes.NewBufferString("SSH-2.0-bla\r\n") - if _, err := exchangeVersions(buf, []byte(c)); err == nil { - t.Errorf("exchangeVersions(%q): should have failed", c) - } - } -} - -type closerBuffer struct { - bytes.Buffer -} - -func (b *closerBuffer) Close() error { - return nil -} - -func TestTransportMaxPacketWrite(t *testing.T) { - buf := &closerBuffer{} - tr := newTransport(buf, rand.Reader, true) - huge := make([]byte, maxPacket+1) - err := tr.writePacket(huge) - if err == nil { - t.Errorf("transport accepted write for a huge packet.") - } -} - -func TestTransportMaxPacketReader(t *testing.T) { - var header [5]byte - huge := make([]byte, maxPacket+128) - binary.BigEndian.PutUint32(header[0:], uint32(len(huge))) - // padding. - header[4] = 0 - - buf := &closerBuffer{} - buf.Write(header[:]) - buf.Write(huge) - - tr := newTransport(buf, rand.Reader, true) - _, err := tr.readPacket() - if err == nil { - t.Errorf("transport succeeded reading huge packet.") - } else if !strings.Contains(err.Error(), "large") { - t.Errorf("got %q, should mention %q", err.Error(), "large") - } -} diff --git a/modules/git/blob.go b/modules/git/blob.go index 3ce462a3..bdf0cae4 100644 --- a/modules/git/blob.go +++ b/modules/git/blob.go @@ -18,7 +18,7 @@ type Blob struct { } func (b *Blob) Data() (io.Reader, error) { - stdout, stderr, err := com.ExecCmdDirBytes(b.repo.Path, "git", "show", b.Id.String()) + stdout, stderr, err := com.ExecCmdDirBytes(b.repo.Path, "git", "show", b.ID.String()) if err != nil { return nil, errors.New(string(stderr)) } diff --git a/modules/git/commit.go b/modules/git/commit.go index da0ab644..674a0b85 100644 --- a/modules/git/commit.go +++ b/modules/git/commit.go @@ -14,7 +14,7 @@ import ( // Commit represents a git commit. type Commit struct { Tree - Id sha1 // The id of this commit object + ID sha1 // The id of this commit object Author *Signature Committer *Signature CommitMessage string @@ -35,7 +35,7 @@ func (c *Commit) Summary() string { // Return oid of the parent number n (0-based index). Return nil if no such parent exists. func (c *Commit) ParentId(n int) (id sha1, err error) { if n >= len(c.parents) { - err = IdNotExist + err = IDNotExist return } return c.parents[n], nil @@ -61,7 +61,7 @@ func (c *Commit) ParentCount() int { } func (c *Commit) CommitsBefore() (*list.List, error) { - return c.repo.getCommitsBefore(c.Id) + return c.repo.getCommitsBefore(c.ID) } func (c *Commit) CommitsBeforeUntil(commitId string) (*list.List, error) { @@ -73,19 +73,19 @@ func (c *Commit) CommitsBeforeUntil(commitId string) (*list.List, error) { } func (c *Commit) CommitsCount() (int, error) { - return c.repo.commitsCount(c.Id) + return c.repo.commitsCount(c.ID) } func (c *Commit) SearchCommits(keyword string) (*list.List, error) { - return c.repo.searchCommits(c.Id, keyword) + return c.repo.searchCommits(c.ID, keyword) } func (c *Commit) CommitsByRange(page int) (*list.List, error) { - return c.repo.commitsByRange(c.Id, page) + return c.repo.commitsByRange(c.ID, page) } func (c *Commit) GetCommitOfRelPath(relPath string) (*Commit, error) { - return c.repo.getCommitOfRelPath(c.Id, relPath) + return c.repo.getCommitOfRelPath(c.ID, relPath) } func (c *Commit) GetSubModule(entryname string) (*SubModule, error) { diff --git a/modules/git/commit_archive.go b/modules/git/commit_archive.go index 23b4b058..8bb6b129 100644 --- a/modules/git/commit_archive.go +++ b/modules/git/commit_archive.go @@ -28,7 +28,7 @@ func (c *Commit) CreateArchive(path string, archiveType ArchiveType) error { return fmt.Errorf("unknown format: %v", archiveType) } - _, stderr, err := com.ExecCmdDir(c.repo.Path, "git", "archive", "--format="+format, "-o", path, c.Id.String()) + _, stderr, err := com.ExecCmdDir(c.repo.Path, "git", "archive", "--format="+format, "-o", path, c.ID.String()) if err != nil { return fmt.Errorf("%s", stderr) } diff --git a/modules/git/error.go b/modules/git/error.go new file mode 100644 index 00000000..c86c56e5 --- /dev/null +++ b/modules/git/error.go @@ -0,0 +1,22 @@ +// Copyright 2015 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package git + +import ( + "fmt" +) + +type ErrUnsupportedVersion struct { + Required string +} + +func IsErrUnsupportedVersion(err error) bool { + _, ok := err.(ErrUnsupportedVersion) + return ok +} + +func (err ErrUnsupportedVersion) Error() string { + return fmt.Sprintf("Operation requires higher version [required: %s]", err.Required) +} diff --git a/modules/git/repo.go b/modules/git/repo.go index 14ac39a3..39fad97d 100644 --- a/modules/git/repo.go +++ b/modules/git/repo.go @@ -5,6 +5,7 @@ package git import ( + "errors" "path/filepath" ) @@ -21,6 +22,8 @@ func OpenRepository(repoPath string) (*Repository, error) { repoPath, err := filepath.Abs(repoPath) if err != nil { return nil, err + } else if !isDir(repoPath) { + return nil, errors.New("no such file or directory") } return &Repository{Path: repoPath}, nil diff --git a/modules/git/repo_branch.go b/modules/git/repo_branch.go index a4e06053..86c4f538 100644 --- a/modules/git/repo_branch.go +++ b/modules/git/repo_branch.go @@ -35,3 +35,16 @@ func (repo *Repository) GetBranches() ([]string, error) { } return branches, nil } + +// SetDefaultBranch sets default branch of repository. +func (repo *Repository) SetDefaultBranch(branchName string) error { + if gitVer.LessThan(MustParseVersion("1.7.10")) { + return ErrUnsupportedVersion{"1.7.10"} + } + + _, stderr, err := com.ExecCmdDir(repo.Path, "git", "symbolic-ref", "HEAD", "refs/heads/"+branchName) + if err != nil { + return concatenateError(err, stderr) + } + return nil +} diff --git a/modules/git/repo_commit.go b/modules/git/repo_commit.go index e8ac2dfc..28633058 100644 --- a/modules/git/repo_commit.go +++ b/modules/git/repo_commit.go @@ -70,7 +70,7 @@ l: if err != nil { return nil, err } - commit.Tree.Id = id + commit.Tree.ID = id case "parent": // A commit can have one or more parents oid, err := NewIdFromString(string(line[spacepos+1:])) @@ -121,7 +121,7 @@ func (repo *Repository) getCommit(id sha1) (*Commit, error) { return nil, err } commit.repo = repo - commit.Id = id + commit.ID = id repo.commitCache[id] = commit return commit, nil @@ -211,7 +211,7 @@ func (repo *Repository) CommitsBetween(last *Commit, before *Commit) (*list.List var err error cur := last for { - if cur.Id.Equal(before.Id) { + if cur.ID.Equal(before.ID) { break } l.PushBack(cur) @@ -240,7 +240,7 @@ func (repo *Repository) commitsBefore(lock *sync.Mutex, l *list.List, parent *li for { if in == nil { break - } else if in.Value.(*Commit).Id.Equal(commit.Id) { + } else if in.Value.(*Commit).ID.Equal(commit.ID) { return nil } else { if in.Next() == nil { diff --git a/modules/git/repo_pull.go b/modules/git/repo_pull.go index a9cc33a1..f9ea7100 100644 --- a/modules/git/repo_pull.go +++ b/modules/git/repo_pull.go @@ -20,31 +20,55 @@ type PullRequestInfo struct { NumFiles int } +// GetMergeBase checks and returns merge base of two branches. +func (repo *Repository) GetMergeBase(remoteBranch, headBranch string) (string, error) { + // Get merge base commit. + stdout, stderr, err := com.ExecCmdDir(repo.Path, "git", "merge-base", remoteBranch, headBranch) + if err != nil { + return "", fmt.Errorf("get merge base: %v", concatenateError(err, stderr)) + } + return strings.TrimSpace(stdout), nil +} + +// AddRemote adds a remote to repository. +func (repo *Repository) AddRemote(name, path string) error { + _, stderr, err := com.ExecCmdDir(repo.Path, "git", "remote", "add", "-f", name, path) + if err != nil { + return fmt.Errorf("add remote(%s - %s): %v", name, path, concatenateError(err, stderr)) + } + return nil +} + +// RemoveRemote removes a remote from repository. +func (repo *Repository) RemoveRemote(name string) error { + _, stderr, err := com.ExecCmdDir(repo.Path, "git", "remote", "remove", name) + if err != nil { + return fmt.Errorf("remove remote(%s): %v", name, concatenateError(err, stderr)) + } + return nil +} + // GetPullRequestInfo generates and returns pull request information // between base and head branches of repositories. -func (repo *Repository) GetPullRequestInfo(basePath, baseBranch, headBranch string) (*PullRequestInfo, error) { +func (repo *Repository) GetPullRequestInfo(basePath, baseBranch, headBranch string) (_ *PullRequestInfo, err error) { // Add a temporary remote. tmpRemote := com.ToStr(time.Now().UnixNano()) - _, stderr, err := com.ExecCmdDir(repo.Path, "git", "remote", "add", "-f", tmpRemote, basePath) - if err != nil { - return nil, fmt.Errorf("add base as remote: %v", concatenateError(err, stderr)) + if err = repo.AddRemote(tmpRemote, basePath); err != nil { + return nil, fmt.Errorf("AddRemote: %v", err) } defer func() { - com.ExecCmdDir(repo.Path, "git", "remote", "remove", tmpRemote) + repo.RemoveRemote(tmpRemote) }() - prInfo := new(PullRequestInfo) - - var stdout string remoteBranch := "remotes/" + tmpRemote + "/" + baseBranch - // Get merge base commit. - stdout, stderr, err = com.ExecCmdDir(repo.Path, "git", "merge-base", remoteBranch, headBranch) + + prInfo := new(PullRequestInfo) + prInfo.MergeBase, err = repo.GetMergeBase(remoteBranch, headBranch) if err != nil { - return nil, fmt.Errorf("get merge base: %v", concatenateError(err, stderr)) + return nil, fmt.Errorf("GetMergeBase: %v", err) } - prInfo.MergeBase = strings.TrimSpace(stdout) - stdout, stderr, err = com.ExecCmdDir(repo.Path, "git", "log", prInfo.MergeBase+"..."+headBranch, prettyLogFormat) + stdout, stderr, err := com.ExecCmdDir(repo.Path, "git", "log", prInfo.MergeBase+"..."+headBranch, prettyLogFormat) if err != nil { return nil, fmt.Errorf("list diff logs: %v", concatenateError(err, stderr)) } @@ -65,7 +89,7 @@ func (repo *Repository) GetPullRequestInfo(basePath, baseBranch, headBranch stri // GetPatch generates and returns patch data between given branches. func (repo *Repository) GetPatch(mergeBase, headBranch string) ([]byte, error) { - stdout, stderr, err := com.ExecCmdDirBytes(repo.Path, "git", "diff", "-p", mergeBase, headBranch) + stdout, stderr, err := com.ExecCmdDirBytes(repo.Path, "git", "diff", "-p", "--binary", mergeBase, headBranch) if err != nil { return nil, concatenateError(err, string(stderr)) } diff --git a/modules/git/repo_tag.go b/modules/git/repo_tag.go index 8f37d31a..a1f81649 100644 --- a/modules/git/repo_tag.go +++ b/modules/git/repo_tag.go @@ -69,7 +69,7 @@ func (repo *Repository) getTag(id sha1) (*Tag, error) { // Tag is a commit. if ObjectType(tp) == COMMIT { tag := &Tag{ - Id: id, + ID: id, Object: id, Type: string(COMMIT), repo: repo, @@ -89,7 +89,7 @@ func (repo *Repository) getTag(id sha1) (*Tag, error) { return nil, err } - tag.Id = id + tag.ID = id tag.repo = repo repo.tagCache[id] = tag diff --git a/modules/git/sha1.go b/modules/git/sha1.go index 5c57e89b..f286f35a 100644 --- a/modules/git/sha1.go +++ b/modules/git/sha1.go @@ -12,7 +12,7 @@ import ( ) var ( - IdNotExist = errors.New("sha1 id not exist") + IDNotExist = errors.New("sha1 ID does not exist") ) type sha1 [20]byte diff --git a/modules/git/signature.go b/modules/git/signature.go index b77f7a44..6cd92943 100644 --- a/modules/git/signature.go +++ b/modules/git/signature.go @@ -26,23 +26,23 @@ type Signature struct { // FIXME: include timezone for timestamp! func newSignatureFromCommitline(line []byte) (_ *Signature, err error) { sig := new(Signature) - emailstart := bytes.IndexByte(line, '<') - sig.Name = string(line[:emailstart-1]) - emailstop := bytes.IndexByte(line, '>') - sig.Email = string(line[emailstart+1 : emailstop]) + emailStart := bytes.IndexByte(line, '<') + sig.Name = string(line[:emailStart-1]) + emailEnd := bytes.IndexByte(line, '>') + sig.Email = string(line[emailStart+1 : emailEnd]) // Check date format. - firstChar := line[emailstop+2] + firstChar := line[emailEnd+2] if firstChar >= 48 && firstChar <= 57 { - timestop := bytes.IndexByte(line[emailstop+2:], ' ') - timestring := string(line[emailstop+2 : emailstop+2+timestop]) + timestop := bytes.IndexByte(line[emailEnd+2:], ' ') + timestring := string(line[emailEnd+2 : emailEnd+2+timestop]) seconds, err := strconv.ParseInt(timestring, 10, 64) if err != nil { return nil, err } sig.When = time.Unix(seconds, 0) } else { - sig.When, err = time.Parse("Mon Jan _2 15:04:05 2006 -0700", string(line[emailstop+2:])) + sig.When, err = time.Parse("Mon Jan _2 15:04:05 2006 -0700", string(line[emailEnd+2:])) if err != nil { return nil, err } diff --git a/modules/git/signature_test.go b/modules/git/signature_test.go new file mode 100644 index 00000000..a84f9b3d --- /dev/null +++ b/modules/git/signature_test.go @@ -0,0 +1,20 @@ +// Copyright 2015 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package git + +import ( + "testing" + + . "github.com/smartystreets/goconvey/convey" +) + +func Test_newSignatureFromCommitline(t *testing.T) { + Convey("Parse signature from commit line", t, func() { + line := "Intern <intern@macbook-intern.(none)> 1445412825 +0200" + sig, err := newSignatureFromCommitline([]byte(line)) + So(err, ShouldBeNil) + So(sig, ShouldNotBeNil) + }) +} diff --git a/modules/git/submodule.go b/modules/git/submodule.go index 0b8efc26..10680c24 100644 --- a/modules/git/submodule.go +++ b/modules/git/submodule.go @@ -6,6 +6,7 @@ package git import ( "strings" + "github.com/gogits/gogs/modules/setting" ) @@ -53,7 +54,7 @@ func (sf *SubModuleFile) RefUrl() string { j := strings.LastIndex(url, ":") if i > -1 && j > -1 { // fix problem with reverse proxy works only with local server - if strings.Contains(setting.AppUrl,url[i+1:j]) { + if strings.Contains(setting.AppUrl, url[i+1:j]) { return setting.AppUrl + url[j+1:] } else { return "http://" + url[i+1:j] + "/" + url[j+1:] diff --git a/modules/git/tag.go b/modules/git/tag.go index 7fbbcb1c..8010aa9d 100644 --- a/modules/git/tag.go +++ b/modules/git/tag.go @@ -11,7 +11,7 @@ import ( // Tag represents a Git tag. type Tag struct { Name string - Id sha1 + ID sha1 repo *Repository Object sha1 // The id of this commit object Type string diff --git a/modules/git/tree.go b/modules/git/tree.go index 27539f06..1a561cf5 100644 --- a/modules/git/tree.go +++ b/modules/git/tree.go @@ -18,7 +18,7 @@ var ( // A tree is a flat directory listing. type Tree struct { - Id sha1 + ID sha1 repo *Repository // parent tree @@ -28,6 +28,27 @@ type Tree struct { entriesParsed bool } +var escapeChar = []byte("\\") + +func UnescapeChars(in []byte) []byte { + if bytes.Index(in, escapeChar) == -1 { + return in + } + + endIdx := len(in) - 1 + isEscape := false + out := make([]byte, 0, endIdx+1) + for i := range in { + if in[i] == '\\' && !isEscape { + isEscape = true + continue + } + isEscape = false + out = append(out, in[i]) + } + return out +} + // Parse tree information from the (uncompressed) raw // data from the tree object. func parseTreeData(tree *Tree, data []byte) ([]*TreeEntry, error) { @@ -66,16 +87,16 @@ func parseTreeData(tree *Tree, data []byte) ([]*TreeEntry, error) { if err != nil { return nil, err } - entry.Id = id + entry.ID = id pos += step + 1 // Skip half of sha1. step = bytes.IndexByte(data[pos:], '\n') - entry.name = string(data[pos : pos+step]) // In case entry name is surrounded by double quotes(it happens only in git-shell). - if entry.name[0] == '"' { - entry.name = string(data[pos+1 : pos+step-1]) - entry.name = strings.Replace(entry.name, `\"`, `"`, -1) + if data[pos] == '"' { + entry.name = string(UnescapeChars(data[pos+1 : pos+step-1])) + } else { + entry.name = string(data[pos : pos+step]) } pos += step + 1 @@ -100,7 +121,7 @@ func (t *Tree) SubTree(rpath string) (*Tree, error) { return nil, err } - g, err = t.repo.getTree(te.Id) + g, err = t.repo.getTree(te.ID) if err != nil { return nil, err } @@ -117,7 +138,7 @@ func (t *Tree) ListEntries(relpath string) (Entries, error) { t.entriesParsed = true stdout, stderr, err := com.ExecCmdDirBytes(t.repo.Path, - "git", "ls-tree", t.Id.String()) + "git", "ls-tree", t.ID.String()) if err != nil { if strings.Contains(err.Error(), "exit status 128") { return nil, errors.New(strings.TrimSpace(string(stderr))) @@ -130,7 +151,7 @@ func (t *Tree) ListEntries(relpath string) (Entries, error) { func NewTree(repo *Repository, id sha1) *Tree { tree := new(Tree) - tree.Id = id + tree.ID = id tree.repo = repo return tree } diff --git a/modules/git/tree_blob.go b/modules/git/tree_blob.go index f996aba3..44c5d0c8 100644 --- a/modules/git/tree_blob.go +++ b/modules/git/tree_blob.go @@ -13,7 +13,7 @@ import ( func (t *Tree) GetTreeEntryByPath(relpath string) (*TreeEntry, error) { if len(relpath) == 0 { return &TreeEntry{ - Id: t.Id, + ID: t.ID, Type: TREE, mode: ModeTree, }, nil diff --git a/modules/git/tree_entry.go b/modules/git/tree_entry.go index e403e93e..18250257 100644 --- a/modules/git/tree_entry.go +++ b/modules/git/tree_entry.go @@ -24,7 +24,7 @@ const ( ) type TreeEntry struct { - Id sha1 + ID sha1 Type ObjectType mode EntryMode @@ -51,7 +51,7 @@ func (te *TreeEntry) Size() int64 { return te.size } - stdout, _, err := com.ExecCmdDir(te.ptree.repo.Path, "git", "cat-file", "-s", te.Id.String()) + stdout, _, err := com.ExecCmdDir(te.ptree.repo.Path, "git", "cat-file", "-s", te.ID.String()) if err != nil { return 0 } diff --git a/modules/git/utils.go b/modules/git/utils.go index 78792aaf..d2d0c19e 100644 --- a/modules/git/utils.go +++ b/modules/git/utils.go @@ -35,6 +35,11 @@ func parsePrettyFormatLog(repo *Repository, logByts []byte) (*list.List, error) } func RefEndName(refStr string) string { + if strings.HasPrefix(refStr, "refs/heads/") { + // trim the "refs/heads/" + return refStr[len("refs/heads/"):] + } + index := strings.LastIndex(refStr, "/") if index != -1 { return refStr[index+1:] diff --git a/modules/middleware/auth.go b/modules/middleware/auth.go index 823e457a..4b953157 100644 --- a/modules/middleware/auth.go +++ b/modules/middleware/auth.go @@ -109,6 +109,18 @@ func Toggle(options *ToggleOptions) macaron.Handler { } } + // Try auto-signin when not signed in. + if !options.SignOutRequire && !ctx.IsSigned && !auth.IsAPIPath(ctx.Req.URL.Path) { + succeed, err := AutoSignIn(ctx) + if err != nil { + ctx.Handle(500, "AutoSignIn", err) + return + } else if succeed { + ctx.Redirect(setting.AppSubUrl + ctx.Req.RequestURI) + return + } + } + if options.AdminRequire { if !ctx.User.IsAdmin { ctx.Error(403) diff --git a/modules/middleware/context.go b/modules/middleware/context.go index dffebe6f..4b217b63 100644 --- a/modules/middleware/context.go +++ b/modules/middleware/context.go @@ -205,18 +205,10 @@ func Contexter() macaron.Handler { Session: sess, } // Compute current URL for real-time change language. - ctx.Data["Link"] = setting.AppSubUrl + ctx.Req.URL.Path + ctx.Data["Link"] = setting.AppSubUrl + strings.TrimSuffix(ctx.Req.URL.Path, "/") ctx.Data["PageStartTime"] = time.Now() - // Check auto-signin. - if sess.Get("uid") == nil { - if _, err := AutoSignIn(ctx); err != nil { - ctx.Handle(500, "AutoSignIn", err) - return - } - } - // Get user from session if logined. ctx.User, ctx.IsBasicAuth = auth.SignedInUser(ctx.Context, ctx.Session) @@ -245,6 +237,7 @@ func Contexter() macaron.Handler { ctx.Data["ShowRegistrationButton"] = setting.Service.ShowRegistrationButton ctx.Data["ShowFooterBranding"] = setting.ShowFooterBranding + ctx.Data["ShowFooterVersion"] = setting.ShowFooterVersion c.Map(ctx) } diff --git a/modules/middleware/repo.go b/modules/middleware/repo.go index ba7cbac8..7780fa5c 100644 --- a/modules/middleware/repo.go +++ b/modules/middleware/repo.go @@ -7,10 +7,9 @@ package middleware import ( "fmt" "net/url" + "path" "strings" - "github.com/mcuadros/go-version" - "github.com/mssola/user_agent" "gopkg.in/macaron.v1" "github.com/gogits/gogs/models" @@ -19,26 +18,21 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const ( - FIREFOX_COPY_SUPPORT = "41.0" - CHROME_COPY_SUPPORT = "43.0.2356" -) - func ApiRepoAssignment() macaron.Handler { return func(ctx *Context) { userName := ctx.Params(":username") repoName := ctx.Params(":reponame") var ( - u *models.User - err error + owner *models.User + err error ) // Check if the user is the same as the repository owner. if ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName) { - u = ctx.User + owner = ctx.User } else { - u, err = models.GetUserByName(userName) + owner, err = models.GetUserByName(userName) if err != nil { if models.IsErrUserNotExist(err) { ctx.Error(404) @@ -48,10 +42,10 @@ func ApiRepoAssignment() macaron.Handler { return } } - ctx.Repo.Owner = u + ctx.Repo.Owner = owner // Get repository. - repo, err := models.GetRepositoryByName(u.Id, repoName) + repo, err := models.GetRepositoryByName(owner.Id, repoName) if err != nil { if models.IsErrRepoNotExist(err) { ctx.Error(404) @@ -85,6 +79,11 @@ func ApiRepoAssignment() macaron.Handler { // RepoRef handles repository reference name including those contain `/`. func RepoRef() macaron.Handler { return func(ctx *Context) { + // Empty repository does not have reference information. + if ctx.Repo.Repository.IsBare { + return + } + var ( refName string err error @@ -117,7 +116,7 @@ func RepoRef() macaron.Handler { ctx.Handle(500, "GetCommitOfBranch", err) return } - ctx.Repo.CommitID = ctx.Repo.Commit.Id.String() + ctx.Repo.CommitID = ctx.Repo.Commit.ID.String() ctx.Repo.IsBranch = true } else { @@ -148,7 +147,7 @@ func RepoRef() macaron.Handler { ctx.Handle(500, "GetCommitOfBranch", err) return } - ctx.Repo.CommitID = ctx.Repo.Commit.Id.String() + ctx.Repo.CommitID = ctx.Repo.Commit.ID.String() } else if ctx.Repo.GitRepo.IsTagExist(refName) { ctx.Repo.IsTag = true @@ -157,7 +156,7 @@ func RepoRef() macaron.Handler { ctx.Handle(500, "GetCommitOfTag", err) return } - ctx.Repo.CommitID = ctx.Repo.Commit.Id.String() + ctx.Repo.CommitID = ctx.Repo.Commit.ID.String() } else if len(refName) == 40 { ctx.Repo.IsCommit = true ctx.Repo.CommitID = refName @@ -234,8 +233,8 @@ func RepoAssignment(redirect bool, args ...bool) macaron.Handler { } var ( - u *models.User - err error + owner *models.User + err error ) userName := ctx.Params(":username") @@ -247,9 +246,9 @@ func RepoAssignment(redirect bool, args ...bool) macaron.Handler { // Check if the user is the same as the repository owner if ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName) { - u = ctx.User + owner = ctx.User } else { - u, err = models.GetUserByName(userName) + owner, err = models.GetUserByName(userName) if err != nil { if models.IsErrUserNotExist(err) { ctx.Handle(404, "GetUserByName", err) @@ -259,10 +258,10 @@ func RepoAssignment(redirect bool, args ...bool) macaron.Handler { return } } - ctx.Repo.Owner = u + ctx.Repo.Owner = owner // Get repository. - repo, err := models.GetRepositoryByName(u.Id, repoName) + repo, err := models.GetRepositoryByName(owner.Id, repoName) if err != nil { if models.IsErrRepoNotExist(err) { ctx.Handle(404, "GetRepositoryByName", err) @@ -275,19 +274,23 @@ func RepoAssignment(redirect bool, args ...bool) macaron.Handler { return } - mode, err := models.AccessLevel(ctx.User, repo) - if err != nil { - ctx.Handle(500, "AccessLevel", err) - return + // Admin has super access. + if ctx.IsSigned && ctx.User.IsAdmin { + ctx.Repo.AccessMode = models.ACCESS_MODE_OWNER + } else { + mode, err := models.AccessLevel(ctx.User, repo) + if err != nil { + ctx.Handle(500, "AccessLevel", err) + return + } + ctx.Repo.AccessMode = mode } - ctx.Repo.AccessMode = mode // Check access. if ctx.Repo.AccessMode == models.ACCESS_MODE_NONE { ctx.Handle(404, "no access right", err) return } - ctx.Data["HasAccess"] = true if repo.IsMirror { @@ -331,7 +334,7 @@ func RepoAssignment(redirect bool, args ...bool) macaron.Handler { } } - ctx.Data["Title"] = u.Name + "/" + repo.Name + ctx.Data["Title"] = owner.Name + "/" + repo.Name ctx.Data["Repository"] = repo ctx.Data["Owner"] = ctx.Repo.Repository.Owner ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner() @@ -345,10 +348,6 @@ func RepoAssignment(redirect bool, args ...bool) macaron.Handler { } ctx.Data["CloneLink"] = ctx.Repo.CloneLink - if ctx.Query("go-get") == "1" { - ctx.Data["GoGetImport"] = fmt.Sprintf("%s/%s/%s", setting.Domain, u.Name, repo.Name) - } - if ctx.IsSigned { ctx.Data["IsWatchingRepo"] = models.IsWatching(ctx.User.Id, repo.ID) ctx.Data["IsStaringRepo"] = models.IsStaring(ctx.User.Id, repo.ID) @@ -390,12 +389,12 @@ func RepoAssignment(redirect bool, args ...bool) macaron.Handler { ctx.Data["BranchName"] = ctx.Repo.BranchName ctx.Data["CommitID"] = ctx.Repo.CommitID - userAgent := ctx.Req.Header.Get("User-Agent") - ua := user_agent.New(userAgent) - browserName, browserVer := ua.Browser() - - ctx.Data["BrowserSupportsCopy"] = (browserName == "Chrome" && version.Compare(browserVer, CHROME_COPY_SUPPORT, ">=")) || - (browserName == "Firefox" && version.Compare(browserVer, FIREFOX_COPY_SUPPORT, ">=")) + if ctx.Query("go-get") == "1" { + ctx.Data["GoGetImport"] = path.Join(setting.Domain, setting.AppSubUrl, owner.Name, repo.Name) + prefix := path.Join(setting.AppUrl, owner.Name, repo.Name, "src", ctx.Repo.BranchName) + ctx.Data["GoDocDirectory"] = prefix + "{/dir}" + ctx.Data["GoDocFile"] = prefix + "{/dir}/{file}#L{line}" + } } } @@ -416,7 +415,7 @@ func RequireRepoAdmin() macaron.Handler { // GitHookService checks if repository Git hooks service has been enabled. func GitHookService() macaron.Handler { return func(ctx *Context) { - if !ctx.User.AllowGitHook && !ctx.User.IsAdmin { + if !ctx.User.CanEditGitHook() { ctx.Handle(404, "GitHookService", nil) return } diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 743127d0..a8a31ddc 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -15,14 +15,15 @@ import ( "strings" "time" - "gopkg.in/ini.v1" - "github.com/Unknwon/com" + _ "github.com/go-macaron/cache/memcache" + _ "github.com/go-macaron/cache/redis" "github.com/go-macaron/session" + _ "github.com/go-macaron/session/redis" + "gopkg.in/ini.v1" "github.com/gogits/gogs/modules/bindata" "github.com/gogits/gogs/modules/log" - // "github.com/gogits/gogs/modules/ssh" "github.com/gogits/gogs/modules/user" ) @@ -42,11 +43,16 @@ const ( ) var ( + // Build information. + BuildTime string + BuildGitHash string + // App settings. AppVer string AppName string AppUrl string AppSubUrl string + AppPath string AppDataPath = "data" // Server settings. @@ -54,8 +60,9 @@ var ( Domain string HttpAddr, HttpPort string DisableSSH bool - SSHPort int + StartSSHServer bool SSHDomain string + SSHPort int OfflineMode bool DisableRouterLog bool CertFile, KeyFile string @@ -135,9 +142,6 @@ var ( CacheInternal int CacheConn string - EnableRedis bool - EnableMemcache bool - // Session settings. SessionConfig session.Options @@ -173,6 +177,7 @@ var ( // Other settings. ShowFooterBranding bool + ShowFooterVersion bool // Global setting objects. Cfg *ini.File @@ -192,21 +197,27 @@ func DateLang(lang string) string { return "en" } -func init() { - IsWindows = runtime.GOOS == "windows" - log.NewLogger(0, "console", `{"level": 0}`) -} - -func ExecPath() (string, error) { +// execPath returns the executable path. +func execPath() (string, error) { file, err := exec.LookPath(os.Args[0]) if err != nil { return "", err } - p, err := filepath.Abs(file) - if err != nil { - return "", err + return filepath.Abs(file) +} + +func init() { + IsWindows = runtime.GOOS == "windows" + log.NewLogger(0, "console", `{"level": 0}`) + + var err error + if AppPath, err = execPath(); err != nil { + log.Fatal(4, "fail to get app path: %v\n", err) } - return p, nil + + // Note: we don't use path.Dir here because it does not handle case + // which path starts with two "/" in Windows: "//psf/Home/..." + AppPath = strings.Replace(AppPath, "\\", "/", -1) } // WorkDir returns absolute path of work directory. @@ -216,19 +227,11 @@ func WorkDir() (string, error) { return wd, nil } - execPath, err := ExecPath() - if err != nil { - return execPath, err - } - - // Note: we don't use path.Dir here because it does not handle case - // which path starts with two "/" in Windows: "//psf/Home/..." - execPath = strings.Replace(execPath, "\\", "/", -1) - i := strings.LastIndex(execPath, "/") + i := strings.LastIndex(AppPath, "/") if i == -1 { - return execPath, nil + return AppPath, nil } - return execPath[:i], nil + return AppPath[:i], nil } func forcePathSeparator(path string) { @@ -297,6 +300,9 @@ func NewContext() { HttpAddr = sec.Key("HTTP_ADDR").MustString("0.0.0.0") HttpPort = sec.Key("HTTP_PORT").MustString("3000") DisableSSH = sec.Key("DISABLE_SSH").MustBool() + if !DisableSSH { + StartSSHServer = sec.Key("START_SSH_SERVER").MustBool() + } SSHDomain = sec.Key("SSH_DOMAIN").MustString(Domain) SSHPort = sec.Key("SSH_PORT").MustInt(22) OfflineMode = sec.Key("OFFLINE_MODE").MustBool() @@ -419,6 +425,7 @@ func NewContext() { dateLangs = Cfg.Section("i18n.datelang").KeysHash() ShowFooterBranding = Cfg.Section("other").Key("SHOW_FOOTER_BRANDING").MustBool() + ShowFooterVersion = Cfg.Section("other").Key("SHOW_FOOTER_VERSION").MustBool() HasRobotsTxt = com.IsFile(path.Join(CustomPath, "robots.txt")) } @@ -435,6 +442,7 @@ var Service struct { EnableReverseProxyAuth bool EnableReverseProxyAutoRegister bool DisableMinimumKeySizeCheck bool + MinimumKeySizes map[string]int EnableCaptcha bool } @@ -450,6 +458,12 @@ func newService() { Service.EnableReverseProxyAutoRegister = sec.Key("ENABLE_REVERSE_PROXY_AUTO_REGISTRATION").MustBool() Service.DisableMinimumKeySizeCheck = sec.Key("DISABLE_MINIMUM_KEY_SIZE_CHECK").MustBool() Service.EnableCaptcha = sec.Key("ENABLE_CAPTCHA").MustBool() + + minimumKeySizes := Cfg.Section("service.minimum_key_sizes").Keys() + Service.MinimumKeySizes = make(map[string]int) + for _, key := range minimumKeySizes { + Service.MinimumKeySizes[key.Name()] = key.MustInt() + } } var logLevels = map[string]string{ @@ -464,6 +478,11 @@ var logLevels = map[string]string{ func newLogService() { log.Info("%s %s", AppName, AppVer) + if len(BuildTime) > 0 { + log.Info("Build Time: %s", BuildTime) + log.Info("Build Git Hash: %s", BuildGitHash) + } + // Get and check log mode. LogModes = strings.Split(Cfg.Section("log").Key("MODE").MustString("console"), ",") LogConfigs = make([]string, len(LogModes)) @@ -525,13 +544,6 @@ func newLogService() { func newCacheService() { CacheAdapter = Cfg.Section("cache").Key("ADAPTER").In("memory", []string{"memory", "redis", "memcache"}) - if EnableRedis { - log.Info("Redis Supported") - } - if EnableMemcache { - log.Info("Memcache Supported") - } - switch CacheAdapter { case "memory": CacheInternal = Cfg.Section("cache").Key("INTERVAL").MustInt(60) @@ -639,5 +651,4 @@ func NewServices() { newRegisterMailService() newNotifyMailService() newWebhookService() - // ssh.Listen("2222") } diff --git a/modules/setting/setting_memcache.go b/modules/setting/setting_memcache.go deleted file mode 100644 index 9a7653b7..00000000 --- a/modules/setting/setting_memcache.go +++ /dev/null @@ -1,15 +0,0 @@ -// +build memcache - -// Copyright 2014 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package setting - -import ( - _ "github.com/go-macaron/cache/memcache" -) - -func init() { - EnableMemcache = true -} diff --git a/modules/setting/setting_redis.go b/modules/setting/setting_redis.go deleted file mode 100644 index e12010cd..00000000 --- a/modules/setting/setting_redis.go +++ /dev/null @@ -1,16 +0,0 @@ -// +build redis - -// Copyright 2014 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package setting - -import ( - _ "github.com/go-macaron/cache/redis" - _ "github.com/go-macaron/session/redis" -) - -func init() { - EnableRedis = true -} diff --git a/modules/ssh/ssh.go b/modules/ssh/ssh.go index 557f08ff..fec43b79 100644 --- a/modules/ssh/ssh.go +++ b/modules/ssh/ssh.go @@ -1,80 +1,114 @@ +// +build go1.4 + // Copyright 2014 The Gogs Authors. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. -// Prototype, git client looks like do not recognize req.Reply. package ssh import ( "fmt" + "io" "io/ioutil" "net" "os" "os/exec" + "path/filepath" "strings" "github.com/Unknwon/com" + "golang.org/x/crypto/ssh" - "github.com/gogits/gogs/modules/crypto/ssh" + "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/log" + "github.com/gogits/gogs/modules/setting" ) -func handleServerConn(keyId string, chans <-chan ssh.NewChannel) { +func cleanCommand(cmd string) string { + i := strings.Index(cmd, "git") + if i == -1 { + return cmd + } + return cmd[i:] +} + +func handleServerConn(keyID string, chans <-chan ssh.NewChannel) { for newChan := range chans { if newChan.ChannelType() != "session" { newChan.Reject(ssh.UnknownChannelType, "unknown channel type") continue } - channel, requests, err := newChan.Accept() + + ch, reqs, err := newChan.Accept() if err != nil { - log.Error(3, "Could not accept channel: %v", err) + log.Error(3, "Error accepting channel: %v", err) continue } go func(in <-chan *ssh.Request) { - defer channel.Close() + defer ch.Close() for req := range in { - ok, payload := false, strings.TrimLeft(string(req.Payload), "\x00&") - fmt.Println("Request:", req.Type, req.WantReply, payload) - if req.WantReply { - fmt.Println(req.Reply(true, nil)) - } + payload := cleanCommand(string(req.Payload)) switch req.Type { case "env": args := strings.Split(strings.Replace(payload, "\x00", "", -1), "\v") if len(args) != 2 { - break + return } args[0] = strings.TrimLeft(args[0], "\x04") _, _, err := com.ExecCmdBytes("env", args[0]+"="+args[1]) if err != nil { log.Error(3, "env: %v", err) - channel.Stderr().Write([]byte(err.Error())) - break + return } - ok = true case "exec": - os.Setenv("SSH_ORIGINAL_COMMAND", strings.TrimLeft(payload, "'(")) - log.Info("Payload: %v", strings.TrimLeft(payload, "'(")) - cmd := exec.Command("/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/gogs", "serv", "key-"+keyId) - cmd.Stdout = channel - cmd.Stdin = channel - cmd.Stderr = channel.Stderr() - if err := cmd.Run(); err != nil { - log.Error(3, "exec: %v", err) - } else { - ok = true + cmdName := strings.TrimLeft(payload, "'()") + os.Setenv("SSH_ORIGINAL_COMMAND", cmdName) + log.Trace("Payload: %v", cmdName) + cmd := exec.Command(setting.AppPath, "serv", "key-"+keyID) + + stdout, err := cmd.StdoutPipe() + if err != nil { + log.Error(3, "StdoutPipe: %v", err) + return + } + stderr, err := cmd.StderrPipe() + if err != nil { + log.Error(3, "StderrPipe: %v", err) + return + } + input, err := cmd.StdinPipe() + if err != nil { + log.Error(3, "StdinPipe: %v", err) + return } + + // FIXME: check timeout + if err = cmd.Start(); err != nil { + log.Error(3, "Start: %v", err) + return + } + + go io.Copy(input, ch) + io.Copy(ch, stdout) + io.Copy(ch.Stderr(), stderr) + + if err = cmd.Wait(); err != nil { + log.Error(3, "Wait: %v", err) + return + } + + ch.SendRequest("exit-status", false, []byte{0, 0, 0, 0}) + return + default: } - fmt.Println("Done:", ok) } - fmt.Println("Done!!!") - }(requests) + }(reqs) } } -func listen(config *ssh.ServerConfig, port string) { - listener, err := net.Listen("tcp", "0.0.0.0:"+port) +func listen(config *ssh.ServerConfig, port int) { + listener, err := net.Listen("tcp", "0.0.0.0:"+com.ToStr(port)) if err != nil { panic(err) } @@ -82,15 +116,17 @@ func listen(config *ssh.ServerConfig, port string) { // Once a ServerConfig has been configured, connections can be accepted. conn, err := listener.Accept() if err != nil { - log.Error(3, "Fail to accept incoming connection: %v", err) + log.Error(3, "Error accepting incoming connection: %v", err) continue } // Before use, a handshake must be performed on the incoming net.Conn. sConn, chans, reqs, err := ssh.NewServerConn(conn, config) if err != nil { - log.Error(3, "Fail to handshake: %v", err) + log.Error(3, "Error on handshaking: %v", err) continue } + + log.Trace("Connection from %s (%s)", sConn.RemoteAddr(), sConn.ClientVersion()) // The incoming Request channel must be serviced. go ssh.DiscardRequests(reqs) go handleServerConn(sConn.Permissions.Extensions["key-id"], chans) @@ -98,21 +134,34 @@ func listen(config *ssh.ServerConfig, port string) { } // Listen starts a SSH server listens on given port. -func Listen(port string) { +func Listen(port int) { config := &ssh.ServerConfig{ PublicKeyCallback: func(conn ssh.ConnMetadata, key ssh.PublicKey) (*ssh.Permissions, error) { - // keyCache[string(ssh.MarshalAuthorizedKey(key))] = 2 - return &ssh.Permissions{Extensions: map[string]string{"key-id": "1"}}, nil + pkey, err := models.SearchPublicKeyByContent(strings.TrimSpace(string(ssh.MarshalAuthorizedKey(key)))) + if err != nil { + log.Error(3, "SearchPublicKeyByContent: %v", err) + return nil, err + } + return &ssh.Permissions{Extensions: map[string]string{"key-id": com.ToStr(pkey.ID)}}, nil }, } - privateBytes, err := ioutil.ReadFile("/Users/jiahuachen/.ssh/id_rsa") + keyPath := filepath.Join(setting.AppDataPath, "ssh/gogs.rsa") + if !com.IsExist(keyPath) { + os.MkdirAll(filepath.Dir(keyPath), os.ModePerm) + _, stderr, err := com.ExecCmd("ssh-keygen", "-f", keyPath, "-t", "rsa", "-N", "") + if err != nil { + panic(fmt.Sprintf("Fail to generate private key: %v - %s", err, stderr)) + } + } + + privateBytes, err := ioutil.ReadFile(keyPath) if err != nil { - panic("failed to load private key") + panic("Fail to load private key") } private, err := ssh.ParsePrivateKey(privateBytes) if err != nil { - panic("failed to parse private key") + panic("Fail to parse private key") } config.AddHostKey(private) diff --git a/modules/ssh/ssh_1.3.go b/modules/ssh/ssh_1.3.go new file mode 100644 index 00000000..62275ee6 --- /dev/null +++ b/modules/ssh/ssh_1.3.go @@ -0,0 +1,7 @@ +// +build !go1.4 + +package ssh + +func Listen(port int) { + panic("Gogs requires Go 1.4 for starting a SSH server") +} diff --git a/modules/base/template.go b/modules/template/template.go index 0fd1af75..8d602760 100644 --- a/modules/base/template.go +++ b/modules/template/template.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. -package base +package template import ( "container/list" @@ -16,16 +16,93 @@ import ( "golang.org/x/net/html/charset" "golang.org/x/text/transform" - "github.com/gogits/chardet" + "github.com/gogits/gogs/models" + "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/setting" ) +var Funcs template.FuncMap = map[string]interface{}{ + "GoVer": func() string { + return strings.Title(runtime.Version()) + }, + "Protocol": func() string { + return string(setting.Protocol) + }, + "AppName": func() string { + return setting.AppName + }, + "AppSubUrl": func() string { + return setting.AppSubUrl + }, + "AppVer": func() string { + return setting.AppVer + }, + "AppDomain": func() string { + return setting.Domain + }, + "DisableGravatar": func() bool { + return setting.DisableGravatar + }, + "LoadTimes": func(startTime time.Time) string { + return fmt.Sprint(time.Since(startTime).Nanoseconds()/1e6) + "ms" + }, + "AvatarLink": base.AvatarLink, + "Safe": Safe, + "Str2html": Str2html, + "TimeSince": base.TimeSince, + "RawTimeSince": base.RawTimeSince, + "FileSize": base.FileSize, + "Subtract": base.Subtract, + "Add": func(a, b int) int { + return a + b + }, + "ActionIcon": ActionIcon, + "DateFmtLong": func(t time.Time) string { + return t.Format(time.RFC1123Z) + }, + "DateFmtShort": func(t time.Time) string { + return t.Format("Jan 02, 2006") + }, + "List": List, + "Mail2Domain": func(mail string) string { + if !strings.Contains(mail, "@") { + return "try.gogs.io" + } + + return strings.SplitN(mail, "@", 2)[1] + }, + "SubStr": func(str string, start, length int) string { + if len(str) == 0 { + return "" + } + end := start + length + if length == -1 { + end = len(str) + } + if len(str) < end { + return str + } + return str[start:end] + }, + "DiffTypeToStr": DiffTypeToStr, + "DiffLineTypeToStr": DiffLineTypeToStr, + "Sha1": Sha1, + "ShortSha": base.ShortSha, + "Md5": base.EncodeMd5, + "ActionContent2Commits": ActionContent2Commits, + "ToUtf8": ToUtf8, + "EscapePound": func(str string) string { + return strings.Replace(strings.Replace(str, "%", "%25", -1), "#", "%23", -1) + }, + "RenderCommitMessage": RenderCommitMessage, +} + func Safe(raw string) template.HTML { return template.HTML(raw) } func Str2html(raw string) template.HTML { - return template.HTML(Sanitizer.Sanitize(raw)) + return template.HTML(base.Sanitizer.Sanitize(raw)) } func Range(l int) []int { @@ -46,27 +123,11 @@ func List(l *list.List) chan interface{} { } func Sha1(str string) string { - return EncodeSha1(str) -} - -func ShortSha(sha1 string) string { - if len(sha1) == 40 { - return sha1[:10] - } - return sha1 -} - -func DetectEncoding(content []byte) (string, error) { - detector := chardet.NewTextDetector() - result, err := detector.DetectBest(content) - if result.Charset != "UTF-8" && len(setting.Repository.AnsiCharset) > 0 { - return setting.Repository.AnsiCharset, err - } - return result.Charset, err + return base.EncodeSha1(str) } func ToUtf8WithErr(content []byte) (error, string) { - charsetLabel, err := DetectEncoding(content) + charsetLabel, err := base.DetectEncoding(content) if err != nil { return err, "" } @@ -124,7 +185,7 @@ func ReplaceLeft(s, old, new string) string { // RenderCommitMessage renders commit message with XSS-safe and special links. func RenderCommitMessage(msg, urlPrefix string) template.HTML { cleanMsg := template.HTMLEscapeString(msg) - fullMessage := string(RenderIssueIndexPattern([]byte(cleanMsg), urlPrefix)) + fullMessage := string(base.RenderIssueIndexPattern([]byte(cleanMsg), urlPrefix)) msgLines := strings.Split(strings.TrimSpace(fullMessage), "\n") for i := range msgLines { msgLines[i] = ReplaceLeft(msgLines[i], " ", " ") @@ -134,81 +195,6 @@ func RenderCommitMessage(msg, urlPrefix string) template.HTML { return template.HTML(fullMessage) } -var TemplateFuncs template.FuncMap = map[string]interface{}{ - "GoVer": func() string { - return strings.Title(runtime.Version()) - }, - "AppName": func() string { - return setting.AppName - }, - "AppSubUrl": func() string { - return setting.AppSubUrl - }, - "AppVer": func() string { - return setting.AppVer - }, - "AppDomain": func() string { - return setting.Domain - }, - "DisableGravatar": func() bool { - return setting.DisableGravatar - }, - "LoadTimes": func(startTime time.Time) string { - return fmt.Sprint(time.Since(startTime).Nanoseconds()/1e6) + "ms" - }, - "AvatarLink": AvatarLink, - "Safe": Safe, - "Str2html": Str2html, - "TimeSince": TimeSince, - "RawTimeSince": RawTimeSince, - "FileSize": FileSize, - "Subtract": Subtract, - "Add": func(a, b int) int { - return a + b - }, - "ActionIcon": ActionIcon, - "DateFmtLong": func(t time.Time) string { - return t.Format(time.RFC1123Z) - }, - "DateFmtShort": func(t time.Time) string { - return t.Format("Jan 02, 2006") - }, - "List": List, - "Mail2Domain": func(mail string) string { - if !strings.Contains(mail, "@") { - return "try.gogs.io" - } - - return strings.SplitN(mail, "@", 2)[1] - }, - "SubStr": func(str string, start, length int) string { - if len(str) == 0 { - return "" - } - end := start + length - if length == -1 { - end = len(str) - } - if len(str) < end { - return str - } - return str[start:end] - }, - "DiffTypeToStr": DiffTypeToStr, - "DiffLineTypeToStr": DiffLineTypeToStr, - "Sha1": Sha1, - "ShortSha": ShortSha, - "Md5": EncodeMd5, - "ActionContent2Commits": ActionContent2Commits, - "Oauth2Icon": Oauth2Icon, - "Oauth2Name": Oauth2Name, - "ToUtf8": ToUtf8, - "EscapePound": func(str string) string { - return strings.Replace(strings.Replace(str, "%", "%25", -1), "#", "%23", -1) - }, - "RenderCommitMessage": RenderCommitMessage, -} - type Actioner interface { GetOpType() int GetActUserName() string @@ -227,35 +213,26 @@ type Actioner interface { // and returns a icon class name. func ActionIcon(opType int) string { switch opType { - case 1, 8: // Create, transfer repository. + case 1, 8: // Create, transfer repository return "repo" - case 5, 9: // Commit repository. + case 5, 9: // Commit repository return "git-commit" - case 6: // Create issue. + case 6: // Create issue return "issue-opened" - case 10: // Comment issue. + case 7: // New pull request + return "git-pull-request" + case 10: // Comment issue return "comment" + case 11: // Merge pull request + return "git-merge" default: return "invalid type" } } -type PushCommit struct { - Sha1 string - Message string - AuthorEmail string - AuthorName string -} - -type PushCommits struct { - Len int - Commits []*PushCommit - CompareUrl string -} - -func ActionContent2Commits(act Actioner) *PushCommits { - var push *PushCommits - if err := json.Unmarshal([]byte(act.GetContent()), &push); err != nil { +func ActionContent2Commits(act Actioner) *models.PushCommits { + push := models.NewPushCommits() + if err := json.Unmarshal([]byte(act.GetContent()), push); err != nil { return nil } return push @@ -263,7 +240,7 @@ func ActionContent2Commits(act Actioner) *PushCommits { func DiffTypeToStr(diffType int) string { diffTypes := map[int]string{ - 1: "add", 2: "modify", 3: "del", + 1: "add", 2: "modify", 3: "del", 4: "rename", } return diffTypes[diffType] } @@ -279,35 +256,3 @@ func DiffLineTypeToStr(diffType int) string { } return "same" } - -func Oauth2Icon(t int) string { - switch t { - case 1: - return "fa-github-square" - case 2: - return "fa-google-plus-square" - case 3: - return "fa-twitter-square" - case 4: - return "fa-qq" - case 5: - return "fa-weibo" - } - return "" -} - -func Oauth2Name(t int) string { - switch t { - case 1: - return "GitHub" - case 2: - return "Google+" - case 3: - return "Twitter" - case 4: - return "腾讯 QQ" - case 5: - return "Weibo" - } - return "" -} diff --git a/public/config.codekit b/public/config.codekit index ecec2484..29dd366c 100644 --- a/public/config.codekit +++ b/public/config.codekit @@ -1,20 +1,20 @@ { "CodeKitInfo": "This is a CodeKit 2.x project configuration file. It is designed to sync project settings across multiple machines. MODIFYING THE CONTENTS OF THIS FILE IS A POOR LIFE DECISION. If you do so, you will likely cause CodeKit to crash. This file is not useful unless accompanied by the project that created it in CodeKit 2. This file is not backwards-compatible with CodeKit 1.x. For more information, see: http:\/\/incident57.com\/codekit", -"creatorBuild": "19076", +"creatorBuild": "19102", "files": { - "\/css\/dropzone-4.0.1.css": { + "\/css\/dropzone-4.2.0.css": { "fileType": 16, "ignore": 0, "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/css\/dropzone-4.0.1.css", + "inputAbbreviatedPath": "\/css\/dropzone-4.2.0.css", "outputAbbreviatedPath": "No Output Path", "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0 }, "\/css\/font-awesome-4.4.0.min.css": { "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, + "ignore": 1, + "ignoreWasSetByUser": 1, "inputAbbreviatedPath": "\/css\/font-awesome-4.4.0.min.css", "outputAbbreviatedPath": "No Output Path", "outputPathIsOutsideProject": 0, @@ -22,8 +22,8 @@ }, "\/css\/github.min.css": { "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, + "ignore": 1, + "ignoreWasSetByUser": 1, "inputAbbreviatedPath": "\/css\/github.min.css", "outputAbbreviatedPath": "No Output Path", "outputPathIsOutsideProject": 0, @@ -47,19 +47,28 @@ "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0 }, - "\/css\/highlight-8.7\/default.css": { + "\/css\/highlight-8.9.1\/default.css": { "fileType": 16, "ignore": 0, "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/css\/highlight-8.7\/default.css", + "inputAbbreviatedPath": "\/css\/highlight-8.9.1\/default.css", "outputAbbreviatedPath": "No Output Path", "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0 }, - "\/css\/jquery.datetimepicker-2.4.5.css": { + "\/css\/highlight-8.9.1\/github.css": { "fileType": 16, "ignore": 0, "ignoreWasSetByUser": 0, + "inputAbbreviatedPath": "\/css\/highlight-8.9.1\/github.css", + "outputAbbreviatedPath": "No Output Path", + "outputPathIsOutsideProject": 0, + "outputPathIsSetByUser": 0 + }, + "\/css\/jquery.datetimepicker-2.4.5.css": { + "fileType": 16, + "ignore": 1, + "ignoreWasSetByUser": 1, "inputAbbreviatedPath": "\/css\/jquery.datetimepicker-2.4.5.css", "outputAbbreviatedPath": "No Output Path", "outputPathIsOutsideProject": 0, @@ -67,18 +76,18 @@ }, "\/css\/jquery.minicolors-2.1.12.css": { "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, + "ignore": 1, + "ignoreWasSetByUser": 1, "inputAbbreviatedPath": "\/css\/jquery.minicolors-2.1.12.css", "outputAbbreviatedPath": "No Output Path", "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0 }, - "\/css\/semantic-2.1.3.min.css": { + "\/css\/semantic-2.1.6.min.css": { "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/css\/semantic-2.1.3.min.css", + "ignore": 1, + "ignoreWasSetByUser": 1, + "inputAbbreviatedPath": "\/css\/semantic-2.1.6.min.css", "outputAbbreviatedPath": "No Output Path", "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0 @@ -180,7 +189,7 @@ "outputAbbreviatedPath": "\/img\/slack.png", "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0, - "processed": 0 + "processed": 1 }, "\/js\/gogs.js": { "fileType": 64, @@ -195,8 +204,8 @@ }, "\/js\/jquery-1.11.3.min.js": { "fileType": 64, - "ignore": 0, - "ignoreWasSetByUser": 0, + "ignore": 1, + "ignoreWasSetByUser": 1, "inputAbbreviatedPath": "\/js\/jquery-1.11.3.min.js", "outputAbbreviatedPath": "\/js\/min\/jquery-1.11.3.min-min.js", "outputPathIsOutsideProject": 0, @@ -204,89 +213,12 @@ "outputStyle": 1, "syntaxCheckerStyle": 1 }, - "\/js\/libs\/clipboard-1.3.1.min.js": { - "fileType": 64, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/js\/libs\/clipboard-1.3.1.min.js", - "outputAbbreviatedPath": "\/js\/libs\/min\/clipboard-1.3.1.min-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/js\/libs\/dropzone-4.0.1.js": { - "fileType": 64, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/js\/libs\/dropzone-4.0.1.js", - "outputAbbreviatedPath": "\/js\/libs\/min\/dropzone-4.0.1-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/js\/libs\/emojify-1.1.0.min.js": { - "fileType": 64, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/js\/libs\/emojify-1.1.0.min.js", - "outputAbbreviatedPath": "\/js\/libs\/min\/emojify-1.1.0.min-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/js\/libs\/highlight-8.7.pack.js": { - "fileType": 64, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/js\/libs\/highlight-8.7.pack.js", - "outputAbbreviatedPath": "\/js\/libs\/min\/highlight-8.7.pack-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/js\/libs\/jquery.datetimepicker-2.4.5.js": { - "fileType": 64, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/js\/libs\/jquery.datetimepicker-2.4.5.js", - "outputAbbreviatedPath": "\/js\/libs\/min\/jquery.datetimepicker-2.4.5-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/js\/libs\/jquery.minicolors-2.1.12.min.js": { - "fileType": 64, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/js\/libs\/jquery.minicolors-2.1.12.min.js", - "outputAbbreviatedPath": "\/js\/libs\/min\/jquery.minicolors-2.1.12.min-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/js\/libs\/jquery.minicolors.png": { - "fileType": 32768, - "ignore": 0, - "ignoreWasSetByUser": 0, - "initialSize": 77459, - "inputAbbreviatedPath": "\/js\/libs\/jquery.minicolors.png", - "outputAbbreviatedPath": "\/js\/libs\/jquery.minicolors.png", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "processed": 0 - }, - "\/js\/semantic-2.1.3.min.js": { + "\/js\/semantic-2.1.6.min.js": { "fileType": 64, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/js\/semantic-2.1.3.min.js", - "outputAbbreviatedPath": "\/js\/min\/semantic-2.1.3.min-min.js", + "ignore": 1, + "ignoreWasSetByUser": 1, + "inputAbbreviatedPath": "\/js\/semantic-2.1.6.min.js", + "outputAbbreviatedPath": "\/js\/min\/semantic-2.1.6.min-min.js", "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0, "outputStyle": 1, @@ -571,639 +503,6 @@ "strictImports": 0, "strictMath": 0, "strictUnits": 0 - }, - "\/ng\/css\/font-awesome.min.css": { - "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/css\/font-awesome.min.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, - "\/ng\/css\/gogs.css": { - "fileType": 16, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/css\/gogs.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, - "\/ng\/css\/magnific-popup.css": { - "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/css\/magnific-popup.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, - "\/ng\/css\/tipsy.css": { - "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/css\/tipsy.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, - "\/ng\/css\/ui.css": { - "fileType": 16, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/css\/ui.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, - "\/ng\/fonts\/octicons.css": { - "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/fonts\/octicons.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, - "\/ng\/js\/gogs.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 1, - "inputAbbreviatedPath": "\/ng\/js\/gogs.js", - "outputAbbreviatedPath": "\/ng\/js\/min\/gogs-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/gogs\/issue_label.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/gogs\/issue_label.js", - "outputAbbreviatedPath": "\/ng\/js\/gogs\/min\/issue_label-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/lib\/jquery-1.11.1.min.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/lib\/jquery-1.11.1.min.js", - "outputAbbreviatedPath": "\/ng\/js\/lib\/min\/jquery-1.11.1.min-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/lib\/jquery.magnific-popup.min.js": { - "fileType": 64, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/lib\/jquery.magnific-popup.min.js", - "outputAbbreviatedPath": "\/ng\/js\/lib\/min\/jquery.magnific-popup.min-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/lib\/jquery.tipsy.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/lib\/jquery.tipsy.js", - "outputAbbreviatedPath": "\/ng\/js\/lib\/min\/jquery.tipsy-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/lib\/lib.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/lib\/lib.js", - "outputAbbreviatedPath": "\/ng\/js\/lib\/min\/lib-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/min\/gogs-min.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/min\/gogs-min.js", - "outputAbbreviatedPath": "\/ng\/js\/min\/min\/gogs-min-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/utils\/preview.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/utils\/preview.js", - "outputAbbreviatedPath": "\/ng\/js\/utils\/min\/preview-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/utils\/tabs.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/utils\/tabs.js", - "outputAbbreviatedPath": "\/ng\/js\/utils\/min\/tabs-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/less\/gogs.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs.less", - "outputAbbreviatedPath": "\/ng\/css\/gogs.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/admin.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/admin.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/admin.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/base.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/base.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/base.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/dashboard.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/dashboard.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/dashboard.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/external.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/external.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/external.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/issue.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/issue.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/issue.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/markdown.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/markdown.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/markdown.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/organization.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/organization.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/organization.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/profile.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/profile.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/profile.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/repository.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/repository.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/repository.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/settings.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/settings.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/settings.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/sign.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/sign.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/sign.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui.less", - "outputAbbreviatedPath": "\/ng\/css\/ui.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/alert.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/alert.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/alert.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/bread.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/bread.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/bread.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/form.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/form.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/form.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/grid.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/grid.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/grid.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/label.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/label.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/label.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/menu.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/menu.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/menu.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/pager.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/pager.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/pager.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/panel.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/panel.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/panel.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/reset.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/reset.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/reset.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/table.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/table.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/table.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/var.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/var.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/var.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 } }, "hooks": [ @@ -1308,10 +607,18 @@ "active": 0, "flagValue": -1 }, + "no_nested_string_interpolation": { + "active": 1, + "flagValue": -1 + }, "no_plusplus": { "active": 0, "flagValue": -1 }, + "no_private_function_fat_arrows": { + "active": 1, + "flagValue": -1 + }, "no_stand_alone_at": { "active": 1, "flagValue": -1 @@ -1320,6 +627,10 @@ "active": 1, "flagValue": -1 }, + "no_this": { + "active": 0, + "flagValue": -1 + }, "no_throwing_strings": { "active": 1, "flagValue": -1 @@ -1803,7 +1114,7 @@ "sassUseLibsass": 0, "shouldRunAutoprefixer": 0, "shouldRunBless": 0, - "skippedItemsString": "_cache, logs, _logs, cache, \/img\/emoji, .git, log, node_modules, .svn, .hg", + "skippedItemsString": "_cache, logs, _logs, cache, \/img\/emoji, .git, log, node_modules, \/js\/libs, .svn, .hg", "slimAutoOutputPathEnabled": 1, "slimAutoOutputPathFilenamePattern": "*.html", "slimAutoOutputPathRelativePath": "", diff --git a/public/css/dropzone-4.0.1.css b/public/css/dropzone-4.2.0.css index 0494d1cc..0494d1cc 100644..100755 --- a/public/css/dropzone-4.0.1.css +++ b/public/css/dropzone-4.2.0.css diff --git a/public/css/gogs.css b/public/css/gogs.css index 45223cb4..5d613829 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -1,6 +1,6 @@ @font-face { font-family: 'octicons'; - src: url('../fonts/octicons.eot?#iefix&v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d') format('embedded-opentype'), url('../fonts/octicons.woff?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d') format('woff'), url('../fonts/octicons.ttf?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d') format('truetype'), url('../fonts/octicons.svg?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d#octicons') format('svg'); + src: url('../fonts/octicons.eot?#iefix&v=30e752e9a0821a0a098947055eeece0b0f46bc34') format('embedded-opentype'), url('../fonts/octicons.woff?v=30e752e9a0821a0a098947055eeece0b0f46bc34') format('woff'), url('../fonts/octicons.ttf?v=30e752e9a0821a0a098947055eeece0b0f46bc34') format('truetype'), url('../fonts/octicons.svg?v=30e752e9a0821a0a098947055eeece0b0f46bc34#octicons') format('svg'); font-weight: normal; font-style: normal; } @@ -65,6 +65,10 @@ content: '\f0de'; } /* */ +.octicon-bold:before { + content: '\f0e2'; +} +/* */ .octicon-book:before { content: '\f007'; } @@ -364,6 +368,10 @@ content: '\f027'; } /* */ +.octicon-italic:before { + content: '\f0e4'; +} +/* */ .octicon-jersey:before { content: '\f019'; } @@ -411,6 +419,10 @@ content: '\f06a'; } /* */ +.octicon-logo-gist:before { + content: '\f0ad'; +} +/* */ .octicon-logo-github:before { content: '\f092'; } @@ -568,14 +580,6 @@ content: '\f047'; } /* */ -.octicon-screen-full:before { - content: '\f066'; -} -/* */ -.octicon-screen-normal:before { - content: '\f067'; -} -/* */ .octicon-search-save:before, .octicon-search:before { content: '\f02e'; @@ -628,6 +632,10 @@ content: '\f015'; } /* */ +.octicon-tasklist:before { + content: '\f0e5'; +} +/* */ .octicon-telescope:before { content: '\f088'; } @@ -636,6 +644,10 @@ content: '\f0c8'; } /* */ +.octicon-text-size:before { + content: '\f0e3'; +} +/* */ .octicon-three-bars:before { content: '\f05e'; } @@ -759,7 +771,7 @@ pre.raw { z-index: 900; } .following.bar .head.link.item { - padding-right: 0!important; + padding-right: 0 !important; } .following.bar .head.link.item .dropdown.icon, .following.bar .head.link.item .menu .octicon { @@ -792,50 +804,71 @@ pre.raw { float: right; } .ui .text.red { - color: #d95c5c!important; + color: #d95c5c !important; } .ui .text.red a { - color: #d95c5c!important; + color: #d95c5c !important; } .ui .text.red a:hover { - color: #E67777!important; + color: #E67777 !important; } .ui .text.blue { - color: #428bca!important; + color: #428bca !important; } .ui .text.blue a { - color: #15c!important; + color: #15c !important; } .ui .text.blue a:hover { - color: #428bca!important; + color: #428bca !important; +} +.ui .text.black { + color: #444; +} +.ui .text.black:hover { + color: #000; } .ui .text.grey { - color: #767676!important; + color: #767676 !important; } .ui .text.grey a { - color: #444!important; + color: #444 !important; } .ui .text.grey a:hover { - color: #000!important; + color: #000 !important; +} +.ui .text.light.grey { + color: #888 !important; } .ui .text.green { - color: #6cc644!important; + color: #6cc644 !important; } .ui .text.purple { - color: #6e5494!important; + color: #6e5494 !important; } .ui .text.yellow { - color: #FBBD08!important; + color: #FBBD08 !important; +} +.ui .text.gold { + color: #a1882b !important; } .ui .text.left { - text-align: left!important; + text-align: left !important; } .ui .text.right { - text-align: right!important; + text-align: right !important; } .ui .text.small { font-size: 0.75em; } +.ui .text.normal { + font-weight: normal; +} +.ui .text.bold { + font-weight: bold; +} +.ui .text.italic { + font-style: italic; +} .ui .text.truncate { overflow: hidden; text-overflow: ellipsis; @@ -856,14 +889,14 @@ pre.raw { vertical-align: middle; } .ui .warning.header { - background-color: #F9EDBE!important; + background-color: #F9EDBE !important; border-color: #F0C36D; } .ui .warning.segment { border-color: #F0C36D; } .ui .info.header { - background-color: #d9edf7!important; + background-color: #d9edf7 !important; border-color: #85c5e5; } .ui .info.segment { @@ -876,7 +909,7 @@ pre.raw { border-radius: 3px; } .ui .form .fake { - display: none!important; + display: none !important; } .ui.status.buttons .octicon { margin-right: 4px; @@ -894,7 +927,7 @@ pre.raw { border-top: none; line-height: 1em; color: rgba(0, 0, 0, 0.8); - padding: .71428571em 1.14285714em!important; + padding: .71428571em 1.14285714em !important; font-size: 1rem; text-transform: none; font-weight: 400; @@ -910,7 +943,7 @@ pre.raw { z-index: 13; } .scrolling.menu .item.selected { - font-weight: 700!important; + font-weight: 700 !important; } footer { margin-top: 54px !important; @@ -1010,7 +1043,7 @@ footer .container .links > *:first-child { .octicon.icon, .mega-octicon.icon { font-family: octicons; - opacity: 1!important; + opacity: 1 !important; } .sr-only { position: absolute; @@ -1040,9 +1073,12 @@ footer .container .links > *:first-child { overflow: hidden; font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif; font-size: 16px; - line-height: 1.6; + line-height: 1.6 !important; word-wrap: break-word; } +.markdown.file-view { + padding: 5px 2em 2em !important; +} .markdown > *:first-child { margin-top: 0 !important; } @@ -1176,6 +1212,9 @@ footer .container .links > *:first-child { margin-top: 0; margin-bottom: 16px; } +.markdown blockquote { + margin-left: 0; +} .markdown hr { height: 4px; padding: 0; @@ -1440,115 +1479,6 @@ footer .container .links > *:first-child { background: #f8f8f8; border-top: 0; } -/* Author: jmblog */ -/* Project: https://github.com/jmblog/color-themes-for-google-code-prettify */ -/* GitHub Theme */ -/* Pretty printing styles. Used with prettify.js. */ -/* SPAN elements with the classes below are added by prettyprint. */ -/* plain text */ -.pln { - color: #333333; -} -@media screen { - /* string content */ - .str { - color: #dd1144; - } - /* a keyword */ - .kwd { - color: #333333; - } - /* a comment */ - .com { - color: #999988; - font-style: italic; - } - /* a type name */ - .typ { - color: #445588; - } - /* a literal value */ - .lit { - color: #445588; - } - /* punctuation */ - .pun { - color: #333333; - } - /* lisp open bracket */ - .opn { - color: #333333; - } - /* lisp close bracket */ - .clo { - color: #333333; - } - /* a markup tag name */ - .tag { - color: navy; - } - /* a markup attribute name */ - .atn { - color: teal; - } - /* a markup attribute value */ - .atv { - color: #dd1144; - } - /* a declaration */ - .dec { - color: #333333; - } - /* a variable name */ - .var { - color: teal; - } - /* a function name */ - .fun { - color: #990000; - } -} -/* Use higher contrast and text-weight for printable form. */ -@media print, projection { - .str { - color: #006600; - } - .kwd { - color: #006; - font-weight: bold; - } - .com { - color: #600; - font-style: italic; - } - .typ { - color: #404; - font-weight: bold; - } - .lit { - color: #004444; - } - .pun, - .opn, - .clo { - color: #444400; - } - .tag { - color: #006; - font-weight: bold; - } - .atn { - color: #440044; - } - .atv { - color: #006600; - } -} -/* Specify class=linenums on a pre to get line numbering */ -ol.linenums { - margin-top: 0; - margin-bottom: 0; -} .home { padding-bottom: 80px; } @@ -1828,6 +1758,9 @@ ol.linenums { line-height: 10px; white-space: nowrap; } +.repository .owner.dropdown { + min-width: 40% !important; +} .repository .metas .menu { max-height: 300px; overflow-x: auto; @@ -1868,6 +1801,158 @@ ol.linenums { margin: 1px; padding-right: 0; } +.repository.file.list #repo-desc { + font-size: 1.2em; +} +.repository.file.list .choose.reference .header .icon { + font-size: 1.4em; +} +.repository.file.list .head.meta { + padding: 0; +} +.repository.file.list .head.meta li { + list-style: none; + display: inline-block; +} +.repository.file.list .head.meta li .ui.breadcrumb { + margin-top: -5px; +} +.repository.file.list .head.meta li .ui.breadcrumb span, +.repository.file.list .head.meta li .ui.breadcrumb a { + font-size: 16px; +} +.repository.file.list .clone.input { + margin-top: -8px; + width: 100%; +} +.repository.file.list .clone.input input { + border-radius: 0; + padding: 5px 10px; +} +.repository.file.list .clone.input .clone.button { + font-size: 13px; + padding: 0 5px; +} +.repository.file.list .clone.input .clone.button:first-child { + border-radius: .28571429rem 0 0 .28571429rem; +} +.repository.file.list .clone.input .icon.button { + padding: 0 10px; +} +.repository.file.list .clone.input .dropdown .menu { + right: 0!important; + left: auto!important; +} +.repository.file.list #repo-files-table .table.list { + width: 80% !important; +} +.repository.file.list #repo-files-table thead th { + padding-top: 8px; + padding-bottom: 5px; + font-weight: normal; +} +.repository.file.list #repo-files-table thead th #last-commit-message { + margin-left: 5px; + margin-bottom: -4px; + width: 400px; +} +.repository.file.list #repo-files-table thead th .age { + margin-top: 2px; +} +.repository.file.list #repo-files-table thead .ui.avatar { + margin-bottom: 5px; +} +.repository.file.list #repo-files-table tbody .icon { + margin-left: 5px; +} +.repository.file.list #repo-files-table tbody .name { + max-width: 120px; +} +.repository.file.list #repo-files-table tbody .message { + max-width: 300px; +} +.repository.file.list #repo-files-table tbody .age { + min-width: 150px; +} +.repository.file.list #repo-files-table tbody .text.truncate { + margin-bottom: -5px; + max-width: 100%; +} +.repository.file.list #repo-files-table td { + padding-top: 8px; + padding-bottom: 8px; +} +.repository.file.list #repo-files-table tr:hover { + background-color: #ffffEE; +} +.repository.file.list #file-content .header .icon { + font-size: 1em; + margin-top: -2px; +} +.repository.file.list #file-content .view-raw * { + width: 100%; +} +.repository.file.list #file-content .view-raw img { + padding: 5px 5px 0 5px; +} +.repository.file.list #file-content .code-view * { + font-size: 13px; + font-family: monospace; + line-height: 20px; +} +.repository.file.list #file-content .code-view table { + width: 100%; +} +.repository.file.list #file-content .code-view .lines-num { + vertical-align: top; + text-align: right; + color: #999; + background: #f5f5f5; + width: 1%; +} +.repository.file.list #file-content .code-view .lines-num span { + font-family: Monaco, Menlo, Consolas, "Courier New", monospace; + line-height: 20px; + padding: 0 10px; + cursor: pointer; + display: block; +} +.repository.file.list #file-content .code-view .lines-num, +.repository.file.list #file-content .code-view .lines-code { + padding: 0; +} +.repository.file.list #file-content .code-view .lines-num pre, +.repository.file.list #file-content .code-view .lines-code pre, +.repository.file.list #file-content .code-view .lines-num ol, +.repository.file.list #file-content .code-view .lines-code ol, +.repository.file.list #file-content .code-view .lines-num .hljs, +.repository.file.list #file-content .code-view .lines-code .hljs { + background-color: white; + margin: 0; + padding: 0 !important; +} +.repository.file.list #file-content .code-view .lines-num pre li, +.repository.file.list #file-content .code-view .lines-code pre li, +.repository.file.list #file-content .code-view .lines-num ol li, +.repository.file.list #file-content .code-view .lines-code ol li, +.repository.file.list #file-content .code-view .lines-num .hljs li, +.repository.file.list #file-content .code-view .lines-code .hljs li { + padding-left: 5px; +} +.repository.file.list #file-content .code-view .lines-num pre li.active, +.repository.file.list #file-content .code-view .lines-code pre li.active, +.repository.file.list #file-content .code-view .lines-num ol li.active, +.repository.file.list #file-content .code-view .lines-code ol li.active, +.repository.file.list #file-content .code-view .lines-num .hljs li.active, +.repository.file.list #file-content .code-view .lines-code .hljs li.active { + background: #ffffdd; +} +.repository.file.list .sidebar { + padding-left: 0; +} +.repository.file.list .sidebar .octicon { + width: 16px; +} .repository.options #interval { width: 100px!important; min-width: 100px; @@ -2156,11 +2241,6 @@ ol.linenums { font-weight: normal; padding: 5px 10px; } -.repository.commits .header .ui.right .button { - float: right; - margin-left: 5px; - margin-top: 1px; -} .repository .commits.table { font-size: 13px; } @@ -2288,6 +2368,10 @@ ol.linenums { .repository .diff-file-box .code-diff tbody tr:hover pre { background-color: transparent !important; } +.repository .diff-file-box.file-content img { + max-width: 100%; + padding: 5px 5px 0 5px; +} .repository .code-view { overflow: auto; overflow-x: auto; @@ -2310,6 +2394,161 @@ ol.linenums { padding: 5px 10px; font-size: 1.2em; } +.repository.release #release-list { + border-top: 1px solid #DDD; + margin-top: 20px; + padding-top: 15px; +} +.repository.release #release-list > li { + list-style: none; +} +.repository.release #release-list > li .meta, +.repository.release #release-list > li .detail { + padding-top: 30px; + padding-bottom: 40px; +} +.repository.release #release-list > li .meta { + text-align: right; + position: relative; +} +.repository.release #release-list > li .meta .tag:not(.icon) { + display: block; + margin-top: 15px; +} +.repository.release #release-list > li .meta .commit { + display: block; + margin-top: 10px; +} +.repository.release #release-list > li .detail { + border-left: 1px solid #DDD; +} +.repository.release #release-list > li .detail .author img { + margin-bottom: -3px; +} +.repository.release #release-list > li .detail .download { + margin-top: 20px; +} +.repository.release #release-list > li .detail .download > a .octicon { + margin-left: 5px; + margin-right: 5px; +} +.repository.release #release-list > li .detail .download .list { + padding-left: 0; + border-top: 1px solid #eee; +} +.repository.release #release-list > li .detail .download .list li { + list-style: none; + display: block; + padding-top: 8px; + padding-bottom: 8px; + border-bottom: 1px solid #eee; +} +.repository.release #release-list > li .detail .dot { + width: 9px; + height: 9px; + background-color: #ccc; + z-index: 999; + position: absolute; + display: block; + left: -5px; + top: 40px; + border-radius: 6px; + border: 1px solid #FFF; +} +.repository.new.release .target { + min-width: 500px; +} +.repository.new.release .target .at { + margin-left: -5px; + margin-right: 5px; +} +.repository.new.release .target .dropdown.icon { + margin: 0; + padding-top: 3px; +} +.repository.new.release .target .selection.dropdown { + padding-top: 10px; + padding-bottom: 10px; +} +.repository.new.release .prerelease.field { + margin-bottom: 0; +} +.repository.watchers .list { + padding: 0; +} +.repository.watchers .list .item { + list-style: none; + width: 32%; + margin: 10px 10px 10px 0; + padding-bottom: 14px; + float: left; +} +.repository.watchers .list .item .avatar { + width: 48px; + height: 48px; + float: left; + display: block; + margin-right: 10px; +} +.repository.watchers .list .item .name { + margin-top: 0; + margin-bottom: 0; + font-weight: normal; +} +.repository.watchers .list .item .meta { + margin-top: 5px; +} +.repository.forks .list { + margin-top: 0; +} +.repository.forks .list .item { + padding-top: 10px; + padding-bottom: 10px; + border-bottom: 1px solid #DDD; +} +.repository.forks .list .item .ui.avatar { + float: left; + margin-right: 5px; +} +.repository.forks .list .item .link { + padding-top: 5px; +} +.repository.settings.collaboration .collaborator.list { + padding: 0; +} +.repository.settings.collaboration .collaborator.list .item { + padding: 10px 20px; +} +.repository.settings.collaboration .collaborator.list .item:not(:last-child) { + border-bottom: 1px solid #DDD; +} +.repository.settings.collaboration #repo-collab-form #search-user-box .results { + left: 7px; +} +.repository.settings.collaboration #repo-collab-form .ui.button { + margin-left: 5px; + margin-top: -3px; +} +#search-repo-box .results, +#search-user-box .results { + padding: 0; + position: absolute; +} +#search-repo-box .results .item, +#search-user-box .results .item { + padding: 10px 15px; + border-bottom: 1px solid #DDD; + cursor: pointer; +} +#search-repo-box .results .item:hover, +#search-user-box .results .item:hover { + background: rgba(0, 0, 0, 0.05) !important; + color: rgba(0, 0, 0, 0.95) !important; +} +#search-repo-box .results .item img, +#search-user-box .results .item img { + margin-right: 8px; +} .issue.list { list-style: none; padding-top: 15px; @@ -2362,7 +2601,7 @@ ol.linenums { .settings .content { margin-top: 2px; } -.settings .content .header, +.settings .content > .header, .settings .content .segment { box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15); } @@ -2517,6 +2756,91 @@ ol.linenums { width: 50%!important; min-width: 300px; } +.organization.profile #org-avatar { + width: 100px; + height: 100px; + margin-right: 15px; +} +.organization.profile #org-info .ui.header { + font-size: 36px; + margin-bottom: 0; +} +.organization.profile #org-info .desc { + font-size: 16px; + margin-bottom: 10px; +} +.organization.profile #org-info .meta .item { + display: inline-block; + margin-right: 10px; +} +.organization.profile #org-info .meta .item .icon { + margin-right: 5px; +} +.organization.profile .ui.top.header .ui.right { + margin-top: 0; +} +.organization.profile .teams .item { + padding: 10px 15px; +} +.organization.teams .members .ui.avatar, +.organization.profile .members .ui.avatar { + width: 48px; + height: 48px; + margin-right: 5px; +} +.organization.invite #invite-box { + margin: auto; + margin-top: 50px; + width: 500px !important; +} +.organization.invite #invite-box #search-user-box input { + margin-left: 0; + width: 300px; +} +.organization.invite #invite-box .ui.button { + margin-left: 5px; + margin-top: -3px; +} +.organization.members .list .item { + margin-left: 0; + margin-right: 0; + border-bottom: 1px solid #eee; +} +.organization.members .list .item .ui.avatar { + width: 48px; + height: 48px; +} +.organization.members .list .item .meta { + line-height: 24px; +} +.organization.teams .detail .item { + padding: 10px 15px; +} +.organization.teams .detail .item:not(:last-child) { + border-bottom: 1px solid #eee; +} +.organization.teams .repositories .item, +.organization.teams .members .item { + padding: 10px 20px; + line-height: 32px; +} +.organization.teams .repositories .item:not(:last-child), +.organization.teams .members .item:not(:last-child) { + border-bottom: 1px solid #DDD; +} +.organization.teams .repositories .item .button, +.organization.teams .members .item .button { + padding: 9px 10px; +} +.organization.teams #add-repo-form input, +.organization.teams #add-member-form input { + margin-left: 0; +} +.organization.teams #add-repo-form .ui.button, +.organization.teams #add-member-form .ui.button { + margin-left: 5px; + margin-top: -3px; +} .user { padding-top: 15px; padding-bottom: 80px; @@ -2531,46 +2855,131 @@ ol.linenums { .user.settings .email.list .item:not(:first-child) .button { margin-top: -10px; } +.user.profile .ui.card .username { + display: block; +} +.user.profile .ui.card .extra.content { + padding: 0; +} +.user.profile .ui.card .extra.content ul { + margin: 0; + padding: 0; +} +.user.profile .ui.card .extra.content ul li { + padding: 10px; + list-style: none; +} +.user.profile .ui.card .extra.content ul li:not(:last-child) { + border-bottom: 1px solid #eaeaea; +} +.user.profile .ui.repository.list { + margin-top: 25px; +} .dashboard { padding-top: 15px; padding-bottom: 80px; } +.dashboard.feeds .context.user.menu, .dashboard.issues .context.user.menu { z-index: 101; min-width: 200px; } +.dashboard.feeds .context.user.menu .ui.header, .dashboard.issues .context.user.menu .ui.header { font-size: 1rem; text-transform: none; } +.dashboard.feeds .filter.menu .item, .dashboard.issues .filter.menu .item { text-align: left; } +.dashboard.feeds .filter.menu .item .text, .dashboard.issues .filter.menu .item .text { height: 16px; vertical-align: middle; } +.dashboard.feeds .filter.menu .item .text.truncate, +.dashboard.issues .filter.menu .item .text.truncate { + width: 85%; +} +.dashboard.feeds .filter.menu .item .floating.label, .dashboard.issues .filter.menu .item .floating.label { top: 7px; left: 90%; width: 15%; } -.dashboard.issues .filter.menu .item.active { - background-color: #4183c4; - color: #FFF; +.dashboard.feeds .filter.menu .jump.item, +.dashboard.issues .filter.menu .jump.item { + margin: 1px; + padding-right: 0; } -.dashboard.issues .filter.menu .item .text { - width: 85%; +.dashboard.feeds .filter.menu .menu, +.dashboard.issues .filter.menu .menu { + max-height: 300px; + overflow-x: auto; + right: 0!important; + left: auto!important; } +.dashboard.feeds .ui.right .head.menu, .dashboard.issues .ui.right .head.menu { margin-top: -5px; } +.dashboard.feeds .ui.right .head.menu .item.active, .dashboard.issues .ui.right .head.menu .item.active { color: #d9453d; } +.dashboard.feeds .head.menu .octicon, .dashboard.issues .head.menu .octicon { margin-right: 5px; } +.feeds .news .ui.avatar { + margin-top: 13px; +} +.feeds .news p { + line-height: 1em; +} +.feeds .news .time-since { + font-size: 13px; +} +.feeds .news .issue.title { + line-height: 1.1em; + width: 80%; +} +.feeds .news .push.news .content ul { + font-size: 13px; + list-style: none; + padding-left: 10px; +} +.feeds .news .push.news .content ul img { + margin-bottom: -2px; +} +.feeds .news .push.news .content ul .text.truncate { + width: 80%; + margin-bottom: -5px; +} +.feeds .list .header { + padding-top: 10px; + padding-bottom: 5px; +} +.feeds .list ul { + list-style: none; + margin: 0; + padding-left: 0; +} +.feeds .list ul li:not(:last-child) { + border-bottom: 1px solid #EAEAEA; +} +.feeds .list ul li.private { + background-color: #fcf8e9; +} +.feeds .list ul li a { + padding: 6px 1.2em; + display: block; +} +.feeds .list ul li a .octicon { + margin-right: 6px; + color: #888; +} .admin { padding-top: 15px; padding-bottom: 80px; @@ -2583,9 +2992,9 @@ ol.linenums { padding-top: 5px; padding-bottom: 5px; } -.admin .table.segment th:first-child, -.admin .table.segment td:first-child { - padding-left: 15px; +.admin .table.segment th:first-of-type, +.admin .table.segment td:first-of-type { + padding-left: 15px !important; } .admin .ui.header, .admin .ui.segment { @@ -2594,28 +3003,46 @@ ol.linenums { .admin.user .email { max-width: 200px; } +.admin dl.admin-dl-horizontal { + padding: 20px; + margin: 0; +} +.admin dl.admin-dl-horizontal dd { + margin-left: 240px; +} +.admin dl.admin-dl-horizontal dt { + font-weight: bolder; + float: left; + width: 250px; + clear: left; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} .explore { padding-top: 15px; padding-bottom: 80px; } -.explore.repositories .ui.repository.list .item { +.ui.repository.list .item { + padding-bottom: 25px; +} +.ui.repository.list .item:not(:first-child) { border-top: 1px solid #eee; padding-top: 25px; - padding-bottom: 25px; } -.explore.repositories .ui.repository.list .item .ui.header { +.ui.repository.list .item .ui.header { font-size: 1.5rem; padding-bottom: 10px; } -.explore.repositories .ui.repository.list .item .ui.header .metas { +.ui.repository.list .item .ui.header .metas { color: #888; font-size: 13px; font-weight: normal; } -.explore.repositories .ui.repository.list .item .ui.header .metas span:not(:last-child) { +.ui.repository.list .item .ui.header .metas span:not(:last-child) { margin-right: 5px; } -.explore.repositories .ui.repository.list .item .time { +.ui.repository.list .item .time { font-size: 12px; color: #808080; } diff --git a/public/css/highlight-8.7/default.css b/public/css/highlight-8.9.1/default.css index b0ac8b8a..b0ac8b8a 100644 --- a/public/css/highlight-8.7/default.css +++ b/public/css/highlight-8.9.1/default.css diff --git a/public/css/highlight-8.9.1/github.css b/public/css/highlight-8.9.1/github.css new file mode 100644 index 00000000..791537e4 --- /dev/null +++ b/public/css/highlight-8.9.1/github.css @@ -0,0 +1,123 @@ +/* + +github.com style (c) Vasily Polovnyov <vast@whiteants.net> + +*/ + +.hljs { + display: block; + overflow-x: auto; + padding: 0.5em; + color: #333; + background: #f8f8f8; + -webkit-text-size-adjust: none; +} + +.hljs-comment, +.diff .hljs-header { + color: #998; + font-style: italic; +} + +.hljs-keyword, +.css .rule .hljs-keyword, +.hljs-winutils, +.nginx .hljs-title, +.hljs-subst, +.hljs-request, +.hljs-status { + color: #333; + font-weight: bold; +} + +.hljs-number, +.hljs-hexcolor, +.ruby .hljs-constant { + color: #008080; +} + +.hljs-string, +.hljs-tag .hljs-value, +.hljs-doctag, +.tex .hljs-formula { + color: #d14; +} + +.hljs-title, +.hljs-id, +.scss .hljs-preprocessor { + color: #900; + font-weight: bold; +} + +.hljs-list .hljs-keyword, +.hljs-subst { + font-weight: normal; +} + +.hljs-class .hljs-title, +.hljs-type, +.vhdl .hljs-literal, +.tex .hljs-command { + color: #458; + font-weight: bold; +} + +.hljs-tag, +.hljs-tag .hljs-title, +.hljs-rule .hljs-property, +.django .hljs-tag .hljs-keyword { + color: #000080; + font-weight: normal; +} + +.hljs-attribute, +.hljs-variable, +.lisp .hljs-body, +.hljs-name { + color: #008080; +} + +.hljs-regexp { + color: #009926; +} + +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.lisp .hljs-keyword, +.clojure .hljs-keyword, +.scheme .hljs-keyword, +.tex .hljs-special, +.hljs-prompt { + color: #990073; +} + +.hljs-built_in { + color: #0086b3; +} + +.hljs-preprocessor, +.hljs-pragma, +.hljs-pi, +.hljs-doctype, +.hljs-shebang, +.hljs-cdata { + color: #999; + font-weight: bold; +} + +.hljs-deletion { + background: #fdd; +} + +.hljs-addition { + background: #dfd; +} + +.diff .hljs-change { + background: #0086b3; +} + +.hljs-chunk { + color: #aaa; +} diff --git a/public/css/semantic-2.1.3.min.css b/public/css/semantic-2.1.3.min.css deleted file mode 100755 index 60d2fda8..00000000 --- a/public/css/semantic-2.1.3.min.css +++ /dev/null @@ -1,11 +0,0 @@ - /* - * # Semantic UI - 2.1.3 - * https://github.com/Semantic-Org/Semantic-UI - * http://www.semantic-ui.com/ - * - * Copyright 2014 Contributors - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ -*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;font-size:14px}input[type=text],input[type=email],input[type=search],input[type=password]{-webkit-appearance:none;-moz-appearance:none}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0;color:#4183c4;text-decoration:none}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}body,html{height:100%}body{margin:0;padding:0;overflow-x:hidden;min-width:320px;background:#fff;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:14px;line-height:1.4285em;color:rgba(0,0,0,.87);font-smoothing:antialiased}h1,h2,h3,h4,h5{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;line-height:1.2857em;margin:calc(2rem - .14285em) 0 1rem;font-weight:700;padding:0}h1{min-height:1rem;font-size:2rem}h2{font-size:1.714rem}h3{font-size:1.28rem}h4{font-size:1.071rem}h5{font-size:1rem}h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,p:first-child{margin-top:0}h1:last-child,h2:last-child,h3:last-child,h4:last-child,h5:last-child,p:last-child{margin-bottom:0}p{margin:0 0 1em;line-height:1.4285em}a:hover{color:#1e70bf;text-decoration:none}::-webkit-selection{background-color:#cce2ff;color:rgba(0,0,0,.87)}::-moz-selection{background-color:#cce2ff;color:rgba(0,0,0,.87)}::selection{background-color:#cce2ff;color:rgba(0,0,0,.87)}input::-webkit-selection,textarea::-webkit-selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.87)}input::-moz-selection,textarea::-moz-selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.87)}input::selection,textarea::selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.87)}.ui.button{cursor:pointer;display:inline-block;min-height:1em;outline:0;border:none;vertical-align:baseline;background:#e0e1e2;color:rgba(0,0,0,.6);font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;margin:0 .25em 0 0;padding:.78571429em 1.5em;text-transform:none;text-shadow:none;font-weight:700;line-height:1em;font-style:normal;text-align:center;text-decoration:none;border-radius:.28571429rem;box-shadow:0 0 0 1px transparent inset,0 0 0 0 rgba(34,36,38,.15) inset;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;will-change:'';-webkit-tap-highlight-color:transparent}.ui.button:hover{background-color:#cacbcd;background-image:none;box-shadow:0 0 0 1px transparent inset,0 0 0 0 rgba(34,36,38,.15) inset;color:rgba(0,0,0,.8)}.ui.button:hover .icon{opacity:.85}.ui.button:focus{background-color:#cacbcd;color:rgba(0,0,0,.8);background-image:''!important;box-shadow:''!important}.ui.button:focus .icon{opacity:.85}.ui.active.button:active,.ui.button:active{background-color:#babbbc;background-image:'';color:rgba(0,0,0,.9);box-shadow:0 0 0 1px transparent inset,none}.ui.active.button{background-color:#c0c1c2;background-image:none;box-shadow:0 0 0 1px transparent inset;color:rgba(0,0,0,.95)}.ui.active.button:hover{background-color:#c0c1c2;background-image:none;color:rgba(0,0,0,.95)}.ui.active.button:active{background-color:#c0c1c2;background-image:none}.ui.loading.loading.loading.loading.loading.loading.button{position:relative;cursor:default;text-shadow:none!important;color:transparent!important;opacity:1;pointer-events:auto;-webkit-transition:all 0s linear,opacity .1s ease;transition:all 0s linear,opacity .1s ease}.ui.loading.button:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.15)}.ui.loading.button:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#fff transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.labeled.icon.loading.button .icon{background-color:transparent;box-shadow:none}@-webkit-keyframes button-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes button-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.basic.loading.button:not(.inverted):before{border-color:rgba(0,0,0,.1)}.ui.basic.loading.button:not(.inverted):after{border-top-color:#767676}.ui.button:disabled,.ui.buttons .disabled.button,.ui.disabled.active.button,.ui.disabled.button,.ui.disabled.button:hover{cursor:default;opacity:.45!important;background-image:none!important;box-shadow:none!important;pointer-events:none}.ui.basic.buttons .ui.disabled.button{border-color:rgba(34,36,38,.5)}.ui.animated.button{position:relative;overflow:hidden;padding-right:0!important;vertical-align:middle;z-index:1}.ui.animated.button .content{will-change:transform,opacity}.ui.animated.button .visible.content{position:relative;margin-right:1.5em;left:auto;right:0}.ui.animated.button .hidden.content{position:absolute;width:100%;top:50%;left:auto;right:-100%;margin-top:-.5em}.ui.animated.button .hidden.content,.ui.animated.button .visible.content{-webkit-transition:right .3s ease 0s;transition:right .3s ease 0s}.ui.animated.button:focus .visible.content,.ui.animated.button:hover .visible.content{left:auto;right:200%}.ui.animated.button:focus .hidden.content,.ui.animated.button:hover .hidden.content{left:auto;right:0}.ui.vertical.animated.button .hidden.content,.ui.vertical.animated.button .visible.content{-webkit-transition:top .3s ease,-webkit-transform .3s ease;transition:top .3s ease,transform .3s ease}.ui.vertical.animated.button .visible.content{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);right:auto}.ui.vertical.animated.button .hidden.content{top:-50%;left:0;right:auto}.ui.vertical.animated.button:focus .visible.content,.ui.vertical.animated.button:hover .visible.content{-webkit-transform:translateY(200%);-ms-transform:translateY(200%);transform:translateY(200%);right:auto}.ui.vertical.animated.button:focus .hidden.content,.ui.vertical.animated.button:hover .hidden.content{top:50%;right:auto}.ui.fade.animated.button .hidden.content,.ui.fade.animated.button .visible.content{-webkit-transition:opacity .3s ease,-webkit-transform .3s ease;transition:opacity .3s ease,transform .3s ease}.ui.fade.animated.button .visible.content{left:auto;right:auto;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.ui.fade.animated.button .hidden.content{opacity:0;left:0;right:auto;-webkit-transform:scale(1.5);-ms-transform:scale(1.5);transform:scale(1.5)}.ui.fade.animated.button:focus .visible.content,.ui.fade.animated.button:hover .visible.content{left:auto;right:auto;opacity:0;-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.ui.fade.animated.button:focus .hidden.content,.ui.fade.animated.button:hover .hidden.content{left:0;right:auto;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.ui.inverted.button{box-shadow:0 0 0 2px #fff inset!important;background:0 0;color:#fff;text-shadow:none!important}.ui.inverted.buttons .button{margin:0 0 0 -2px}.ui.inverted.buttons .button:first-child{margin-left:0}.ui.inverted.vertical.buttons .button{margin:0 0 -2px}.ui.inverted.vertical.buttons .button:first-child{margin-top:0}.ui.inverted.button.active,.ui.inverted.button:focus,.ui.inverted.button:hover{background:#fff;box-shadow:0 0 0 2px #fff inset!important;color:rgba(0,0,0,.8)}.ui.inverted.button.active:focus{background:#dcddde;box-shadow:0 0 0 2px #dcddde inset!important;color:rgba(0,0,0,.8)}.ui.labeled.button:not(.icon){display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;background:0 0!important;padding:0!important;border:none!important;box-shadow:none!important}.ui.labeled.button>.button{margin:0}.ui.labeled.button>.label{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin:0 0 0 -1px!important;padding:'';font-size:1em;border-color:rgba(34,36,38,.15)}.ui.labeled.button>.tag.label:before{width:1.85em;height:1.85em}.ui.labeled.button:not([class*="left labeled"])>.button{border-top-right-radius:0;border-bottom-right-radius:0}.ui.labeled.button:not([class*="left labeled"])>.label,.ui[class*="left labeled"].button>.button{border-top-left-radius:0;border-bottom-left-radius:0}.ui[class*="left labeled"].button>.label{border-top-right-radius:0;border-bottom-right-radius:0}.ui.facebook.button{background-color:#3b5998;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.facebook.button:hover{background-color:#304d8a;color:#fff;text-shadow:none}.ui.facebook.button:active{background-color:#2d4373;color:#fff;text-shadow:none}.ui.twitter.button{background-color:#0084b4;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.twitter.button:hover{background-color:#00719b;color:#fff;text-shadow:none}.ui.twitter.button:active{background-color:#005f81;color:#fff;text-shadow:none}.ui.google.plus.button{background-color:#dc4a38;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.google.plus.button:hover{background-color:#de321d;color:#fff;text-shadow:none}.ui.google.plus.button:active{background-color:#bf3322;color:#fff;text-shadow:none}.ui.linkedin.button{background-color:#1f88be;color:#fff;text-shadow:none}.ui.linkedin.button:hover{background-color:#147baf;color:#fff;text-shadow:none}.ui.linkedin.button:active{background-color:#186992;color:#fff;text-shadow:none}.ui.youtube.button{background-color:#cc181e;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.youtube.button:hover{background-color:#bd0d13;color:#fff;text-shadow:none}.ui.youtube.button:active{background-color:#9e1317;color:#fff;text-shadow:none}.ui.instagram.button{background-color:#49769c;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.instagram.button:hover{background-color:#3d698e;color:#fff;text-shadow:none}.ui.instagram.button:active{background-color:#395c79;color:#fff;text-shadow:none}.ui.pinterest.button{background-color:#00aced;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.pinterest.button:hover{background-color:#0099d4;color:#fff;text-shadow:none}.ui.pinterest.button:active{background-color:#0087ba;color:#fff;text-shadow:none}.ui.vk.button{background-color:#4D7198;color:#fff;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.vk.button:hover{background-color:#41648a;color:#fff}.ui.vk.button:active{background-color:#3c5876;color:#fff}.ui.button>.icon:not(.button){height:.85714286em;opacity:.8;margin:0 .42857143em 0 -.21428571em;-webkit-transition:opacity .1s ease;transition:opacity .1s ease;vertical-align:'';color:''}.ui.button>.right.icon:not(.button){margin:0 -.21428571em 0 .42857143em}.ui[class*="left floated"].button,.ui[class*="left floated"].buttons{float:left;margin-left:0;margin-right:.25em}.ui[class*="right floated"].button,.ui[class*="right floated"].buttons{float:right;margin-right:0;margin-left:.25em}.ui.compact.button,.ui.compact.buttons .button{padding:.58928571em 1.125em}.ui.compact.icon.button,.ui.compact.icon.buttons .button{padding:.58928571em}.ui.compact.labeled.icon.button,.ui.compact.labeled.icon.buttons .button{padding:.58928571em 3.69642857em}.ui.mini.button,.ui.mini.buttons .button,.ui.mini.buttons .or{font-size:.71428571rem}.ui.tiny.button,.ui.tiny.buttons .button,.ui.tiny.buttons .or{font-size:.85714286rem}.ui.small.button,.ui.small.buttons .button,.ui.small.buttons .or{font-size:.92857143rem}.ui.button,.ui.buttons .button,.ui.buttons .or{font-size:1rem}.ui.large.button,.ui.large.buttons .button,.ui.large.buttons .or{font-size:1.14285714rem}.ui.big.button,.ui.big.buttons .button,.ui.big.buttons .or{font-size:1.28571429rem}.ui.huge.button,.ui.huge.buttons .button,.ui.huge.buttons .or{font-size:1.42857143rem}.ui.massive.button,.ui.massive.buttons .button,.ui.massive.buttons .or{font-size:1.71428571rem}.ui.icon.button,.ui.icon.buttons .button{padding:.78571429em}.ui.icon.button>.icon,.ui.icon.buttons .button>.icon{opacity:.9;margin:0;vertical-align:top}.ui.basic.button,.ui.basic.buttons .button{background:0 0!important;color:rgba(0,0,0,.6)!important;font-weight:400;border-radius:.28571429rem;text-transform:none;text-shadow:none!important;box-shadow:0 0 0 1px rgba(34,36,38,.15) inset}.ui.basic.buttons{box-shadow:none;border:1px solid rgba(34,36,38,.15);border-radius:.28571429rem}.ui.basic.button:focus,.ui.basic.button:hover,.ui.basic.buttons .button:focus,.ui.basic.buttons .button:hover{background:#fff!important;color:rgba(0,0,0,.8)!important;box-shadow:0 0 0 1px rgba(34,36,38,.35) inset,0 0 0 0 rgba(34,36,38,.15) inset}.ui.basic.button:active,.ui.basic.buttons .button:active{background:#f8f8f8!important;color:rgba(0,0,0,.9)!important;box-shadow:0 0 0 1px rgba(0,0,0,.15) inset,0 1px 4px 0 rgba(34,36,38,.15) inset}.ui.basic.active.button,.ui.basic.buttons .active.button{background:rgba(0,0,0,.05)!important;box-shadow:''!important;color:rgba(0,0,0,.95)}.ui.basic.active.button:hover,.ui.basic.buttons .active.button:hover{background-color:rgba(0,0,0,.05)}.ui.basic.buttons .button:hover{box-shadow:0 0 0 1px rgba(34,36,38,.35) inset,0 0 0 0 rgba(34,36,38,.15) inset inset}.ui.basic.buttons .button:active{box-shadow:0 0 0 1px rgba(0,0,0,.15) inset,0 1px 4px 0 rgba(34,36,38,.15) inset inset}.ui.basic.buttons .active.button{box-shadow:rgba(34,36,38,.35) inset}.ui.basic.inverted.button,.ui.basic.inverted.buttons .button{background-color:transparent!important;color:#f9fafb!important;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important}.ui.basic.inverted.button:focus,.ui.basic.inverted.button:hover,.ui.basic.inverted.buttons .button:focus,.ui.basic.inverted.buttons .button:hover{color:#fff!important;box-shadow:0 0 0 2px #fff inset!important}.ui.basic.inverted.button:active,.ui.basic.inverted.buttons .button:active{background-color:rgba(255,255,255,.08)!important;color:#fff!important;box-shadow:0 0 0 2px rgba(255,255,255,.9) inset!important}.ui.basic.inverted.active.button,.ui.basic.inverted.buttons .active.button{background-color:rgba(255,255,255,.08);color:#fff;text-shadow:none;box-shadow:0 0 0 2px rgba(255,255,255,.7) inset}.ui.basic.inverted.active.button:hover,.ui.basic.inverted.buttons .active.button:hover{background-color:rgba(255,255,255,.15);box-shadow:0 0 0 2px #fff inset!important}.ui.basic.buttons .button{border-radius:0;border-left:1px solid rgba(34,36,38,.15);box-shadow:none}.ui.basic.vertical.buttons .button{border-left:none;border-left-width:0;border-top:1px solid rgba(34,36,38,.15)}.ui.basic.vertical.buttons .button:first-child{border-top-width:0}.ui.labeled.icon.button,.ui.labeled.icon.buttons .button{position:relative;padding-left:4.07142857em!important;padding-right:1.5em!important}.ui.labeled.icon.button>.icon,.ui.labeled.icon.buttons>.button>.icon{position:absolute;height:100%;line-height:1;border-radius:0;border-top-left-radius:inherit;border-bottom-left-radius:inherit;width:2.57142857em;background-color:rgba(0,0,0,.05);text-align:center;color:'';box-shadow:-1px 0 0 0 transparent inset;top:0;left:0}.ui[class*="right labeled"].icon.button{padding-right:4.07142857em!important;padding-left:1.5em!important}.ui[class*="right labeled"].icon.button>.icon{left:auto;right:0;border-radius:0;border-top-right-radius:inherit;border-bottom-right-radius:inherit;box-shadow:1px 0 0 0 transparent inset}.ui.labeled.icon.button>.icon:after,.ui.labeled.icon.button>.icon:before,.ui.labeled.icon.buttons>.button>.icon:after,.ui.labeled.icon.buttons>.button>.icon:before{display:block;position:absolute;width:100%;top:50%;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.ui.labeled.icon.buttons .button>.icon{border-radius:0}.ui.labeled.icon.buttons .button:first-child>.icon{border-top-left-radius:.28571429rem;border-bottom-left-radius:.28571429rem}.ui.labeled.icon.buttons .button:last-child>.icon{border-top-right-radius:.28571429rem;border-bottom-right-radius:.28571429rem}.ui.vertical.labeled.icon.buttons .button:first-child>.icon{border-radius:.28571429rem 0 0}.ui.vertical.labeled.icon.buttons .button:last-child>.icon{border-radius:0 0 0 .28571429rem}.ui.fluid[class*="left labeled"].icon.button,.ui.fluid[class*="right labeled"].icon.button{padding-left:1.5em!important;padding-right:1.5em!important}.ui.button.toggle.active,.ui.buttons .button.toggle.active,.ui.toggle.buttons .active.button{background-color:#21ba45!important;box-shadow:none!important;text-shadow:none;color:#fff!important}.ui.button.toggle.active:hover{background-color:#16ab39!important;text-shadow:none;color:#fff!important}.ui.circular.button{border-radius:10em}.ui.circular.button>.icon{width:1em;vertical-align:baseline}.ui.buttons .or{position:relative;width:.3em;height:2.57142857em;z-index:3}.ui.buttons .or:before{position:absolute;text-align:center;border-radius:500rem;content:'or';top:50%;left:50%;background-color:#fff;text-shadow:none;margin-top:-.89285714em;margin-left:-.89285714em;width:1.78571429em;height:1.78571429em;line-height:1.78571429em;color:rgba(0,0,0,.4);font-style:normal;font-weight:700;box-shadow:0 0 0 1px transparent inset}.ui.buttons .or[data-text]:before{content:attr(data-text)}.ui.fluid.buttons .or{width:0!important}.ui.fluid.buttons .or:after{display:none}.ui.attached.button{position:relative;display:block;margin:0;border-radius:0;box-shadow:0 0 0 1px rgba(34,36,38,.15)!important}.ui.attached.top.button{border-radius:.28571429rem .28571429rem 0 0}.ui.attached.bottom.button{border-radius:0 0 .28571429rem .28571429rem}.ui.left.attached.button{display:inline-block;border-left:none;text-align:right;padding-right:.75em;border-radius:.28571429rem 0 0 .28571429rem}.ui.right.attached.button{display:inline-block;text-align:left;padding-left:.75em;border-radius:0 .28571429rem .28571429rem 0}.ui.attached.buttons{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border-radius:0;width:auto!important;z-index:2;margin-left:-1px;margin-right:-1px}.ui.attached.buttons .button{margin:0}.ui.attached.buttons .button:first-child,.ui.attached.buttons .button:last-child{border-radius:0}.ui[class*="top attached"].buttons{margin-bottom:-1px;border-radius:.28571429rem .28571429rem 0 0}.ui[class*="top attached"].buttons .button:first-child{border-radius:.28571429rem 0 0}.ui[class*="top attached"].buttons .button:last-child{border-radius:0 .28571429rem 0 0}.ui[class*="bottom attached"].buttons{margin-top:-1px;border-radius:0 0 .28571429rem .28571429rem}.ui[class*="bottom attached"].buttons .button:first-child{border-radius:0 0 0 .28571429rem}.ui[class*="bottom attached"].buttons .button:last-child{border-radius:0 0 .28571429rem}.ui[class*="left attached"].buttons{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;margin-right:0;margin-left:-1px;border-radius:0 .28571429rem .28571429rem 0}.ui[class*="left attached"].buttons .button:first-child{margin-left:-1px;border-radius:0 .28571429rem 0 0}.ui[class*="left attached"].buttons .button:last-child{margin-left:-1px;border-radius:0 0 .28571429rem}.ui[class*="right attached"].buttons{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;margin-left:0;margin-right:-1px;border-radius:.28571429rem 0 0 .28571429rem}.ui[class*="right attached"].buttons .button:first-child{margin-left:-1px;border-radius:.28571429rem 0 0}.ui[class*="right attached"].buttons .button:last-child{margin-left:-1px;border-radius:0 0 0 .28571429rem}.ui.fluid.button,.ui.fluid.buttons{width:100%}.ui.fluid.button{display:block}.ui.two.buttons{width:100%}.ui.two.buttons>.button{width:50%}.ui.three.buttons{width:100%}.ui.three.buttons>.button{width:33.333%}.ui.four.buttons{width:100%}.ui.four.buttons>.button{width:25%}.ui.five.buttons{width:100%}.ui.five.buttons>.button{width:20%}.ui.six.buttons{width:100%}.ui.six.buttons>.button{width:16.666%}.ui.seven.buttons{width:100%}.ui.seven.buttons>.button{width:14.285%}.ui.eight.buttons{width:100%}.ui.eight.buttons>.button{width:12.5%}.ui.nine.buttons{width:100%}.ui.nine.buttons>.button{width:11.11%}.ui.ten.buttons{width:100%}.ui.ten.buttons>.button{width:10%}.ui.eleven.buttons{width:100%}.ui.eleven.buttons>.button{width:9.09%}.ui.twelve.buttons{width:100%}.ui.twelve.buttons>.button{width:8.3333%}.ui.fluid.vertical.buttons,.ui.fluid.vertical.buttons>.button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:auto}.ui.two.vertical.buttons>.button{height:50%}.ui.three.vertical.buttons>.button{height:33.333%}.ui.four.vertical.buttons>.button{height:25%}.ui.five.vertical.buttons>.button{height:20%}.ui.six.vertical.buttons>.button{height:16.666%}.ui.seven.vertical.buttons>.button{height:14.285%}.ui.eight.vertical.buttons>.button{height:12.5%}.ui.nine.vertical.buttons>.button{height:11.11%}.ui.ten.vertical.buttons>.button{height:10%}.ui.eleven.vertical.buttons>.button{height:9.09%}.ui.twelve.vertical.buttons>.button{height:8.3333%}.ui.black.button,.ui.black.buttons .button{background-color:#1b1c1d;color:#fff;text-shadow:none;background-image:none}.ui.black.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.black.button:hover,.ui.black.buttons .button:hover{background-color:#27292a;color:#fff;text-shadow:none}.ui.black.button:focus,.ui.black.buttons .button:focus{background-color:#2f3032;color:#fff;text-shadow:none}.ui.black.button:active,.ui.black.buttons .button:active{background-color:#343637;color:#fff;text-shadow:none}.ui.black.active.button,.ui.black.button .active.button:active,.ui.black.buttons .active.button,.ui.black.buttons .active.button:active{background-color:#0f0f10;color:#fff;text-shadow:none}.ui.basic.black.button,.ui.basic.black.buttons .button{box-shadow:0 0 0 1px #1b1c1d inset!important;color:#1b1c1d!important}.ui.basic.black.button:hover,.ui.basic.black.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #27292a inset!important;color:#27292a!important}.ui.basic.black.button:focus,.ui.basic.black.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #2f3032 inset!important;color:#27292a!important}.ui.basic.black.active.button,.ui.basic.black.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #0f0f10 inset!important;color:#343637!important}.ui.basic.black.button:active,.ui.basic.black.buttons .button:active{box-shadow:0 0 0 1px #343637 inset!important;color:#343637!important}.ui.buttons:not(.vertical)>.basic.black.button:not(:first-child){margin-left:-1px}.ui.inverted.black.button,.ui.inverted.black.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #d4d4d5 inset!important;color:#fff}.ui.inverted.black.button.active,.ui.inverted.black.button:active,.ui.inverted.black.button:focus,.ui.inverted.black.button:hover,.ui.inverted.black.buttons .button.active,.ui.inverted.black.buttons .button:active,.ui.inverted.black.buttons .button:focus,.ui.inverted.black.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.black.active.button,.ui.inverted.black.button:active,.ui.inverted.black.button:focus,.ui.inverted.black.button:hover,.ui.inverted.black.buttons .active.button,.ui.inverted.black.buttons .button:active,.ui.inverted.black.buttons .button:focus,.ui.inverted.black.buttons .button:hover{background-color:#000}.ui.inverted.black.basic.button,.ui.inverted.black.basic.buttons .button,.ui.inverted.black.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.black.basic.button:hover,.ui.inverted.black.basic.buttons .button:hover,.ui.inverted.black.buttons .basic.button:hover{box-shadow:0 0 0 2px #000 inset!important;color:#fff!important}.ui.inverted.black.basic.button:focus,.ui.inverted.black.basic.buttons .button:focus{box-shadow:0 0 0 2px #000 inset!important;color:#545454!important}.ui.inverted.black.basic.active.button,.ui.inverted.black.basic.button:active,.ui.inverted.black.basic.buttons .active.button,.ui.inverted.black.basic.buttons .button:active,.ui.inverted.black.buttons .basic.active.button,.ui.inverted.black.buttons .basic.button:active{box-shadow:0 0 0 2px #000 inset!important;color:#fff!important}.ui.grey.button,.ui.grey.buttons .button{background-color:#767676;color:#fff;text-shadow:none;background-image:none}.ui.grey.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.grey.button:hover,.ui.grey.buttons .button:hover{background-color:#838383;color:#fff;text-shadow:none}.ui.grey.button:focus,.ui.grey.buttons .button:focus{background-color:#8a8a8a;color:#fff;text-shadow:none}.ui.grey.button:active,.ui.grey.buttons .button:active{background-color:#909090;color:#fff;text-shadow:none}.ui.grey.active.button,.ui.grey.button .active.button:active,.ui.grey.buttons .active.button,.ui.grey.buttons .active.button:active{background-color:#696969;color:#fff;text-shadow:none}.ui.basic.grey.button,.ui.basic.grey.buttons .button{box-shadow:0 0 0 1px #767676 inset!important;color:#767676!important}.ui.basic.grey.button:hover,.ui.basic.grey.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #838383 inset!important;color:#838383!important}.ui.basic.grey.button:focus,.ui.basic.grey.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #8a8a8a inset!important;color:#838383!important}.ui.basic.grey.active.button,.ui.basic.grey.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #696969 inset!important;color:#909090!important}.ui.basic.grey.button:active,.ui.basic.grey.buttons .button:active{box-shadow:0 0 0 1px #909090 inset!important;color:#909090!important}.ui.buttons:not(.vertical)>.basic.grey.button:not(:first-child){margin-left:-1px}.ui.inverted.grey.button,.ui.inverted.grey.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #d4d4d5 inset!important;color:#fff}.ui.inverted.grey.button.active,.ui.inverted.grey.button:active,.ui.inverted.grey.button:focus,.ui.inverted.grey.button:hover,.ui.inverted.grey.buttons .button.active,.ui.inverted.grey.buttons .button:active,.ui.inverted.grey.buttons .button:focus,.ui.inverted.grey.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.grey.button:hover,.ui.inverted.grey.buttons .button:hover{background-color:#cfd0d2}.ui.inverted.grey.button:focus,.ui.inverted.grey.buttons .button:focus{background-color:#c7c9cb}.ui.inverted.grey.active.button,.ui.inverted.grey.buttons .active.button{background-color:#cfd0d2}.ui.inverted.grey.button:active,.ui.inverted.grey.buttons .button:active{background-color:#c2c4c5}.ui.inverted.grey.basic.button,.ui.inverted.grey.basic.buttons .button,.ui.inverted.grey.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.grey.basic.button:hover,.ui.inverted.grey.basic.buttons .button:hover,.ui.inverted.grey.buttons .basic.button:hover{box-shadow:0 0 0 2px #cfd0d2 inset!important;color:#fff!important}.ui.inverted.grey.basic.button:focus,.ui.inverted.grey.basic.buttons .button:focus{box-shadow:0 0 0 2px #c7c9cb inset!important;color:#dcddde!important}.ui.inverted.grey.basic.active.button,.ui.inverted.grey.basic.buttons .active.button,.ui.inverted.grey.buttons .basic.active.button{box-shadow:0 0 0 2px #cfd0d2 inset!important;color:#fff!important}.ui.inverted.grey.basic.button:active,.ui.inverted.grey.basic.buttons .button:active,.ui.inverted.grey.buttons .basic.button:active{box-shadow:0 0 0 2px #c2c4c5 inset!important;color:#fff!important}.ui.brown.button,.ui.brown.buttons .button{background-color:#a5673f;color:#fff;text-shadow:none;background-image:none}.ui.brown.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.brown.button:hover,.ui.brown.buttons .button:hover{background-color:#975b33;color:#fff;text-shadow:none}.ui.brown.button:focus,.ui.brown.buttons .button:focus{background-color:#90532b;color:#fff;text-shadow:none}.ui.brown.button:active,.ui.brown.buttons .button:active{background-color:#805031;color:#fff;text-shadow:none}.ui.brown.active.button,.ui.brown.button .active.button:active,.ui.brown.buttons .active.button,.ui.brown.buttons .active.button:active{background-color:#995a31;color:#fff;text-shadow:none}.ui.basic.brown.button,.ui.basic.brown.buttons .button{box-shadow:0 0 0 1px #a5673f inset!important;color:#a5673f!important}.ui.basic.brown.button:hover,.ui.basic.brown.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #975b33 inset!important;color:#975b33!important}.ui.basic.brown.button:focus,.ui.basic.brown.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #90532b inset!important;color:#975b33!important}.ui.basic.brown.active.button,.ui.basic.brown.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #995a31 inset!important;color:#805031!important}.ui.basic.brown.button:active,.ui.basic.brown.buttons .button:active{box-shadow:0 0 0 1px #805031 inset!important;color:#805031!important}.ui.buttons:not(.vertical)>.basic.brown.button:not(:first-child){margin-left:-1px}.ui.inverted.brown.button,.ui.inverted.brown.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #d67c1c inset!important;color:#d67c1c}.ui.inverted.brown.button.active,.ui.inverted.brown.button:active,.ui.inverted.brown.button:focus,.ui.inverted.brown.button:hover,.ui.inverted.brown.buttons .button.active,.ui.inverted.brown.buttons .button:active,.ui.inverted.brown.buttons .button:focus,.ui.inverted.brown.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.brown.button:hover,.ui.inverted.brown.buttons .button:hover{background-color:#c86f11}.ui.inverted.brown.button:focus,.ui.inverted.brown.buttons .button:focus{background-color:#c16808}.ui.inverted.brown.active.button,.ui.inverted.brown.buttons .active.button{background-color:#cc6f0d}.ui.inverted.brown.button:active,.ui.inverted.brown.buttons .button:active{background-color:#a96216}.ui.inverted.brown.basic.button,.ui.inverted.brown.basic.buttons .button,.ui.inverted.brown.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.brown.basic.button:hover,.ui.inverted.brown.basic.buttons .button:hover,.ui.inverted.brown.buttons .basic.button:hover{box-shadow:0 0 0 2px #c86f11 inset!important;color:#d67c1c!important}.ui.inverted.brown.basic.button:focus,.ui.inverted.brown.basic.buttons .button:focus{box-shadow:0 0 0 2px #c16808 inset!important;color:#d67c1c!important}.ui.inverted.brown.basic.active.button,.ui.inverted.brown.basic.buttons .active.button,.ui.inverted.brown.buttons .basic.active.button{box-shadow:0 0 0 2px #cc6f0d inset!important;color:#d67c1c!important}.ui.inverted.brown.basic.button:active,.ui.inverted.brown.basic.buttons .button:active,.ui.inverted.brown.buttons .basic.button:active{box-shadow:0 0 0 2px #a96216 inset!important;color:#d67c1c!important}.ui.blue.button,.ui.blue.buttons .button{background-color:#2185d0;color:#fff;text-shadow:none;background-image:none}.ui.blue.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.blue.button:hover,.ui.blue.buttons .button:hover{background-color:#1678c2;color:#fff;text-shadow:none}.ui.blue.button:focus,.ui.blue.buttons .button:focus{background-color:#0d71bb;color:#fff;text-shadow:none}.ui.blue.button:active,.ui.blue.buttons .button:active{background-color:#1a69a4;color:#fff;text-shadow:none}.ui.blue.active.button,.ui.blue.button .active.button:active,.ui.blue.buttons .active.button,.ui.blue.buttons .active.button:active{background-color:#1279c6;color:#fff;text-shadow:none}.ui.basic.blue.button,.ui.basic.blue.buttons .button{box-shadow:0 0 0 1px #2185d0 inset!important;color:#2185d0!important}.ui.basic.blue.button:hover,.ui.basic.blue.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #1678c2 inset!important;color:#1678c2!important}.ui.basic.blue.button:focus,.ui.basic.blue.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #0d71bb inset!important;color:#1678c2!important}.ui.basic.blue.active.button,.ui.basic.blue.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #1279c6 inset!important;color:#1a69a4!important}.ui.basic.blue.button:active,.ui.basic.blue.buttons .button:active{box-shadow:0 0 0 1px #1a69a4 inset!important;color:#1a69a4!important}.ui.buttons:not(.vertical)>.basic.blue.button:not(:first-child){margin-left:-1px}.ui.inverted.blue.button,.ui.inverted.blue.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #54c8ff inset!important;color:#54c8ff}.ui.inverted.blue.button.active,.ui.inverted.blue.button:active,.ui.inverted.blue.button:focus,.ui.inverted.blue.button:hover,.ui.inverted.blue.buttons .button.active,.ui.inverted.blue.buttons .button:active,.ui.inverted.blue.buttons .button:focus,.ui.inverted.blue.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.blue.button:hover,.ui.inverted.blue.buttons .button:hover{background-color:#3ac0ff}.ui.inverted.blue.button:focus,.ui.inverted.blue.buttons .button:focus{background-color:#2bbbff}.ui.inverted.blue.active.button,.ui.inverted.blue.buttons .active.button{background-color:#3ac0ff}.ui.inverted.blue.button:active,.ui.inverted.blue.buttons .button:active{background-color:#21b8ff}.ui.inverted.blue.basic.button,.ui.inverted.blue.basic.buttons .button,.ui.inverted.blue.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.blue.basic.button:hover,.ui.inverted.blue.basic.buttons .button:hover,.ui.inverted.blue.buttons .basic.button:hover{box-shadow:0 0 0 2px #3ac0ff inset!important;color:#54c8ff!important}.ui.inverted.blue.basic.button:focus,.ui.inverted.blue.basic.buttons .button:focus{box-shadow:0 0 0 2px #2bbbff inset!important;color:#54c8ff!important}.ui.inverted.blue.basic.active.button,.ui.inverted.blue.basic.buttons .active.button,.ui.inverted.blue.buttons .basic.active.button{box-shadow:0 0 0 2px #3ac0ff inset!important;color:#54c8ff!important}.ui.inverted.blue.basic.button:active,.ui.inverted.blue.basic.buttons .button:active,.ui.inverted.blue.buttons .basic.button:active{box-shadow:0 0 0 2px #21b8ff inset!important;color:#54c8ff!important}.ui.green.button,.ui.green.buttons .button{background-color:#21ba45;color:#fff;text-shadow:none;background-image:none}.ui.green.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.green.button:hover,.ui.green.buttons .button:hover{background-color:#16ab39;color:#fff;text-shadow:none}.ui.green.button:focus,.ui.green.buttons .button:focus{background-color:#0ea432;color:#fff;text-shadow:none}.ui.green.button:active,.ui.green.buttons .button:active{background-color:#198f35;color:#fff;text-shadow:none}.ui.green.active.button,.ui.green.button .active.button:active,.ui.green.buttons .active.button,.ui.green.buttons .active.button:active{background-color:#13ae38;color:#fff;text-shadow:none}.ui.basic.green.button,.ui.basic.green.buttons .button{box-shadow:0 0 0 1px #21ba45 inset!important;color:#21ba45!important}.ui.basic.green.button:hover,.ui.basic.green.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #16ab39 inset!important;color:#16ab39!important}.ui.basic.green.button:focus,.ui.basic.green.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #0ea432 inset!important;color:#16ab39!important}.ui.basic.green.active.button,.ui.basic.green.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #13ae38 inset!important;color:#198f35!important}.ui.basic.green.button:active,.ui.basic.green.buttons .button:active{box-shadow:0 0 0 1px #198f35 inset!important;color:#198f35!important}.ui.buttons:not(.vertical)>.basic.green.button:not(:first-child){margin-left:-1px}.ui.inverted.green.button,.ui.inverted.green.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #2ecc40 inset!important;color:#2ecc40}.ui.inverted.green.button.active,.ui.inverted.green.button:active,.ui.inverted.green.button:focus,.ui.inverted.green.button:hover,.ui.inverted.green.buttons .button.active,.ui.inverted.green.buttons .button:active,.ui.inverted.green.buttons .button:focus,.ui.inverted.green.buttons .button:hover{box-shadlightOw:none!important;color:#fff}.ui.inverted.green.button:hover,.ui.inverted.green.buttons .button:hover{background-color:#22be34}.ui.inverted.green.button:focus,.ui.inverted.green.buttons .button:focus{background-color:#19b82b}.ui.inverted.green.active.button,.ui.inverted.green.buttons .active.button{background-color:#1fc231}.ui.inverted.green.button:active,.ui.inverted.green.buttons .button:active{background-color:#25a233}.ui.inverted.green.basic.button,.ui.inverted.green.basic.buttons .button,.ui.inverted.green.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.green.basic.button:hover,.ui.inverted.green.basic.buttons .button:hover,.ui.inverted.green.buttons .basic.button:hover{box-shadow:0 0 0 2px #22be34 inset!important;color:#2ecc40!important}.ui.inverted.green.basic.button:focus,.ui.inverted.green.basic.buttons .button:focus{box-shadow:0 0 0 2px #19b82b inset!important;color:#2ecc40!important}.ui.inverted.green.basic.active.button,.ui.inverted.green.basic.buttons .active.button,.ui.inverted.green.buttons .basic.active.button{box-shadow:0 0 0 2px #1fc231 inset!important;color:#2ecc40!important}.ui.inverted.green.basic.button:active,.ui.inverted.green.basic.buttons .button:active,.ui.inverted.green.buttons .basic.button:active{box-shadow:0 0 0 2px #25a233 inset!important;color:#2ecc40!important}.ui.orange.button,.ui.orange.buttons .button{background-color:#f2711c;color:#fff;text-shadow:none;background-image:none}.ui.orange.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.orange.button:hover,.ui.orange.buttons .button:hover{background-color:#f26202;color:#fff;text-shadow:none}.ui.orange.button:focus,.ui.orange.buttons .button:focus{background-color:#e55b00;color:#fff;text-shadow:none}.ui.orange.button:active,.ui.orange.buttons .button:active{background-color:#cf590c;color:#fff;text-shadow:none}.ui.orange.active.button,.ui.orange.button .active.button:active,.ui.orange.buttons .active.button,.ui.orange.buttons .active.button:active{background-color:#f56100;color:#fff;text-shadow:none}.ui.basic.orange.button,.ui.basic.orange.buttons .button{box-shadow:0 0 0 1px #f2711c inset!important;color:#f2711c!important}.ui.basic.orange.button:hover,.ui.basic.orange.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #f26202 inset!important;color:#f26202!important}.ui.basic.orange.button:focus,.ui.basic.orange.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #e55b00 inset!important;color:#f26202!important}.ui.basic.orange.active.button,.ui.basic.orange.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #f56100 inset!important;color:#cf590c!important}.ui.basic.orange.button:active,.ui.basic.orange.buttons .button:active{box-shadow:0 0 0 1px #cf590c inset!important;color:#cf590c!important}.ui.buttons:not(.vertical)>.basic.orange.button:not(:first-child){margin-left:-1px}.ui.inverted.orange.button,.ui.inverted.orange.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ff851b inset!important;color:#ff851b}.ui.inverted.orange.button.active,.ui.inverted.orange.button:active,.ui.inverted.orange.button:focus,.ui.inverted.orange.button:hover,.ui.inverted.orange.buttons .button.active,.ui.inverted.orange.buttons .button:active,.ui.inverted.orange.buttons .button:focus,.ui.inverted.orange.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.orange.button:hover,.ui.inverted.orange.buttons .button:hover{background-color:#ff7701}.ui.inverted.orange.button:focus,.ui.inverted.orange.buttons .button:focus{background-color:#f17000}.ui.inverted.orange.active.button,.ui.inverted.orange.buttons .active.button{background-color:#ff7701}.ui.inverted.orange.button:active,.ui.inverted.orange.buttons .button:active{background-color:#e76b00}.ui.inverted.orange.basic.button,.ui.inverted.orange.basic.buttons .button,.ui.inverted.orange.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.orange.basic.button:hover,.ui.inverted.orange.basic.buttons .button:hover,.ui.inverted.orange.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff7701 inset!important;color:#ff851b!important}.ui.inverted.orange.basic.button:focus,.ui.inverted.orange.basic.buttons .button:focus{box-shadow:0 0 0 2px #f17000 inset!important;color:#ff851b!important}.ui.inverted.orange.basic.active.button,.ui.inverted.orange.basic.buttons .active.button,.ui.inverted.orange.buttons .basic.active.button{box-shadow:0 0 0 2px #ff7701 inset!important;color:#ff851b!important}.ui.inverted.orange.basic.button:active,.ui.inverted.orange.basic.buttons .button:active,.ui.inverted.orange.buttons .basic.button:active{box-shadow:0 0 0 2px #e76b00 inset!important;color:#ff851b!important}.ui.pink.button,.ui.pink.buttons .button{background-color:#e03997;color:#fff;text-shadow:none;background-image:none}.ui.pink.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.pink.button:hover,.ui.pink.buttons .button:hover{background-color:#e61a8d;color:#fff;text-shadow:none}.ui.pink.button:focus,.ui.pink.buttons .button:focus{background-color:#e10f85;color:#fff;text-shadow:none}.ui.pink.button:active,.ui.pink.buttons .button:active{background-color:#c71f7e;color:#fff;text-shadow:none}.ui.pink.active.button,.ui.pink.button .active.button:active,.ui.pink.buttons .active.button,.ui.pink.buttons .active.button:active{background-color:#ea158d;color:#fff;text-shadow:none}.ui.basic.pink.button,.ui.basic.pink.buttons .button{box-shadow:0 0 0 1px #e03997 inset!important;color:#e03997!important}.ui.basic.pink.button:hover,.ui.basic.pink.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #e61a8d inset!important;color:#e61a8d!important}.ui.basic.pink.button:focus,.ui.basic.pink.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #e10f85 inset!important;color:#e61a8d!important}.ui.basic.pink.active.button,.ui.basic.pink.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #ea158d inset!important;color:#c71f7e!important}.ui.basic.pink.button:active,.ui.basic.pink.buttons .button:active{box-shadow:0 0 0 1px #c71f7e inset!important;color:#c71f7e!important}.ui.buttons:not(.vertical)>.basic.pink.button:not(:first-child){margin-left:-1px}.ui.inverted.pink.button,.ui.inverted.pink.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ff8edf inset!important;color:#ff8edf}.ui.inverted.pink.button.active,.ui.inverted.pink.button:active,.ui.inverted.pink.button:focus,.ui.inverted.pink.button:hover,.ui.inverted.pink.buttons .button.active,.ui.inverted.pink.buttons .button:active,.ui.inverted.pink.buttons .button:focus,.ui.inverted.pink.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.pink.button:hover,.ui.inverted.pink.buttons .button:hover{background-color:#ff74d8}.ui.inverted.pink.button:focus,.ui.inverted.pink.buttons .button:focus{background-color:#ff65d3}.ui.inverted.pink.active.button,.ui.inverted.pink.buttons .active.button{background-color:#ff74d8}.ui.inverted.pink.button:active,.ui.inverted.pink.buttons .button:active{background-color:#ff5bd1}.ui.inverted.pink.basic.button,.ui.inverted.pink.basic.buttons .button,.ui.inverted.pink.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.pink.basic.button:hover,.ui.inverted.pink.basic.buttons .button:hover,.ui.inverted.pink.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff74d8 inset!important;color:#ff8edf!important}.ui.inverted.pink.basic.button:focus,.ui.inverted.pink.basic.buttons .button:focus{box-shadow:0 0 0 2px #ff65d3 inset!important;color:#ff8edf!important}.ui.inverted.pink.basic.active.button,.ui.inverted.pink.basic.buttons .active.button,.ui.inverted.pink.buttons .basic.active.button{box-shadow:0 0 0 2px #ff74d8 inset!important;color:#ff8edf!important}.ui.inverted.pink.basic.button:active,.ui.inverted.pink.basic.buttons .button:active,.ui.inverted.pink.buttons .basic.button:active{box-shadow:0 0 0 2px #ff5bd1 inset!important;color:#ff8edf!important}.ui.violet.button,.ui.violet.buttons .button{background-color:#6435c9;color:#fff;text-shadow:none;background-image:none}.ui.violet.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.violet.button:hover,.ui.violet.buttons .button:hover{background-color:#5829bb;color:#fff;text-shadow:none}.ui.violet.button:focus,.ui.violet.buttons .button:focus{background-color:#4f20b5;color:#fff;text-shadow:none}.ui.violet.button:active,.ui.violet.buttons .button:active{background-color:#502aa1;color:#fff;text-shadow:none}.ui.violet.active.button,.ui.violet.button .active.button:active,.ui.violet.buttons .active.button,.ui.violet.buttons .active.button:active{background-color:#5626bf;color:#fff;text-shadow:none}.ui.basic.violet.button,.ui.basic.violet.buttons .button{box-shadow:0 0 0 1px #6435c9 inset!important;color:#6435c9!important}.ui.basic.violet.button:hover,.ui.basic.violet.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #5829bb inset!important;color:#5829bb!important}.ui.basic.violet.button:focus,.ui.basic.violet.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #4f20b5 inset!important;color:#5829bb!important}.ui.basic.violet.active.button,.ui.basic.violet.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #5626bf inset!important;color:#502aa1!important}.ui.basic.violet.button:active,.ui.basic.violet.buttons .button:active{box-shadow:0 0 0 1px #502aa1 inset!important;color:#502aa1!important}.ui.buttons:not(.vertical)>.basic.violet.button:not(:first-child){margin-left:-1px}.ui.inverted.violet.button,.ui.inverted.violet.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #a291fb inset!important;color:#a291fb}.ui.inverted.violet.button.active,.ui.inverted.violet.button:active,.ui.inverted.violet.button:focus,.ui.inverted.violet.button:hover,.ui.inverted.violet.buttons .button.active,.ui.inverted.violet.buttons .button:active,.ui.inverted.violet.buttons .button:focus,.ui.inverted.violet.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.violet.button:hover,.ui.inverted.violet.buttons .button:hover{background-color:#8a73ff}.ui.inverted.violet.button:focus,.ui.inverted.violet.buttons .button:focus{background-color:#7d64ff}.ui.inverted.violet.active.button,.ui.inverted.violet.buttons .active.button{background-color:#8a73ff}.ui.inverted.violet.button:active,.ui.inverted.violet.buttons .button:active{background-color:#7860f9}.ui.inverted.violet.basic.button,.ui.inverted.violet.basic.buttons .button,.ui.inverted.violet.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.violet.basic.button:hover,.ui.inverted.violet.basic.buttons .button:hover,.ui.inverted.violet.buttons .basic.button:hover{box-shadow:0 0 0 2px #8a73ff inset!important;color:#a291fb!important}.ui.inverted.violet.basic.button:focus,.ui.inverted.violet.basic.buttons .button:focus{box-shadow:0 0 0 2px #7d64ff inset!important;color:#a291fb!important}.ui.inverted.violet.basic.active.button,.ui.inverted.violet.basic.buttons .active.button,.ui.inverted.violet.buttons .basic.active.button{box-shadow:0 0 0 2px #8a73ff inset!important;color:#a291fb!important}.ui.inverted.violet.basic.button:active,.ui.inverted.violet.basic.buttons .button:active,.ui.inverted.violet.buttons .basic.button:active{box-shadow:0 0 0 2px #7860f9 inset!important;color:#a291fb!important}.ui.purple.button,.ui.purple.buttons .button{background-color:#a333c8;color:#fff;text-shadow:none;background-image:none}.ui.purple.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.purple.button:hover,.ui.purple.buttons .button:hover{background-color:#9627ba;color:#fff;text-shadow:none}.ui.purple.button:focus,.ui.purple.buttons .button:focus{background-color:#8f1eb4;color:#fff;text-shadow:none}.ui.purple.button:active,.ui.purple.buttons .button:active{background-color:#82299f;color:#fff;text-shadow:none}.ui.purple.active.button,.ui.purple.button .active.button:active,.ui.purple.buttons .active.button,.ui.purple.buttons .active.button:active{background-color:#9724be;color:#fff;text-shadow:none}.ui.basic.purple.button,.ui.basic.purple.buttons .button{box-shadow:0 0 0 1px #a333c8 inset!important;color:#a333c8!important}.ui.basic.purple.button:hover,.ui.basic.purple.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #9627ba inset!important;color:#9627ba!important}.ui.basic.purple.button:focus,.ui.basic.purple.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #8f1eb4 inset!important;color:#9627ba!important}.ui.basic.purple.active.button,.ui.basic.purple.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #9724be inset!important;color:#82299f!important}.ui.basic.purple.button:active,.ui.basic.purple.buttons .button:active{box-shadow:0 0 0 1px #82299f inset!important;color:#82299f!important}.ui.buttons:not(.vertical)>.basic.purple.button:not(:first-child){margin-left:-1px}.ui.inverted.purple.button,.ui.inverted.purple.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #dc73ff inset!important;color:#dc73ff}.ui.inverted.purple.button.active,.ui.inverted.purple.button:active,.ui.inverted.purple.button:focus,.ui.inverted.purple.button:hover,.ui.inverted.purple.buttons .button.active,.ui.inverted.purple.buttons .button:active,.ui.inverted.purple.buttons .button:focus,.ui.inverted.purple.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.purple.button:hover,.ui.inverted.purple.buttons .button:hover{background-color:#d65aff}.ui.inverted.purple.button:focus,.ui.inverted.purple.buttons .button:focus{background-color:#d24aff}.ui.inverted.purple.active.button,.ui.inverted.purple.buttons .active.button{background-color:#d65aff}.ui.inverted.purple.button:active,.ui.inverted.purple.buttons .button:active{background-color:#cf40ff}.ui.inverted.purple.basic.button,.ui.inverted.purple.basic.buttons .button,.ui.inverted.purple.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.purple.basic.button:hover,.ui.inverted.purple.basic.buttons .button:hover,.ui.inverted.purple.buttons .basic.button:hover{box-shadow:0 0 0 2px #d65aff inset!important;color:#dc73ff!important}.ui.inverted.purple.basic.button:focus,.ui.inverted.purple.basic.buttons .button:focus{box-shadow:0 0 0 2px #d24aff inset!important;color:#dc73ff!important}.ui.inverted.purple.basic.active.button,.ui.inverted.purple.basic.buttons .active.button,.ui.inverted.purple.buttons .basic.active.button{box-shadow:0 0 0 2px #d65aff inset!important;color:#dc73ff!important}.ui.inverted.purple.basic.button:active,.ui.inverted.purple.basic.buttons .button:active,.ui.inverted.purple.buttons .basic.button:active{box-shadow:0 0 0 2px #cf40ff inset!important;color:#dc73ff!important}.ui.red.button,.ui.red.buttons .button{background-color:#db2828;color:#fff;text-shadow:none;background-image:none}.ui.red.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.red.button:hover,.ui.red.buttons .button:hover{background-color:#d01919;color:#fff;text-shadow:none}.ui.red.button:focus,.ui.red.buttons .button:focus{background-color:#ca1010;color:#fff;text-shadow:none}.ui.red.button:active,.ui.red.buttons .button:active{background-color:#b21e1e;color:#fff;text-shadow:none}.ui.red.active.button,.ui.red.button .active.button:active,.ui.red.buttons .active.button,.ui.red.buttons .active.button:active{background-color:#d41515;color:#fff;text-shadow:none}.ui.basic.red.button,.ui.basic.red.buttons .button{box-shadow:0 0 0 1px #db2828 inset!important;color:#db2828!important}.ui.basic.red.button:hover,.ui.basic.red.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #d01919 inset!important;color:#d01919!important}.ui.basic.red.button:focus,.ui.basic.red.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #ca1010 inset!important;color:#d01919!important}.ui.basic.red.active.button,.ui.basic.red.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #d41515 inset!important;color:#b21e1e!important}.ui.basic.red.button:active,.ui.basic.red.buttons .button:active{box-shadow:0 0 0 1px #b21e1e inset!important;color:#b21e1e!important}.ui.buttons:not(.vertical)>.basic.red.button:not(:first-child){margin-left:-1px}.ui.inverted.red.button,.ui.inverted.red.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ff695e inset!important;color:#ff695e}.ui.inverted.red.button.active,.ui.inverted.red.button:active,.ui.inverted.red.button:focus,.ui.inverted.red.button:hover,.ui.inverted.red.buttons .button.active,.ui.inverted.red.buttons .button:active,.ui.inverted.red.buttons .button:focus,.ui.inverted.red.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.red.button:hover,.ui.inverted.red.buttons .button:hover{background-color:#ff5144}.ui.inverted.red.button:focus,.ui.inverted.red.buttons .button:focus{background-color:#ff4335}.ui.inverted.red.active.button,.ui.inverted.red.buttons .active.button{background-color:#ff5144}.ui.inverted.red.button:active,.ui.inverted.red.buttons .button:active{background-color:#ff392b}.ui.inverted.red.basic.button,.ui.inverted.red.basic.buttons .button,.ui.inverted.red.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.red.basic.button:hover,.ui.inverted.red.basic.buttons .button:hover,.ui.inverted.red.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff5144 inset!important;color:#ff695e!important}.ui.inverted.red.basic.button:focus,.ui.inverted.red.basic.buttons .button:focus{box-shadow:0 0 0 2px #ff4335 inset!important;color:#ff695e!important}.ui.inverted.red.basic.active.button,.ui.inverted.red.basic.buttons .active.button,.ui.inverted.red.buttons .basic.active.button{box-shadow:0 0 0 2px #ff5144 inset!important;color:#ff695e!important}.ui.inverted.red.basic.button:active,.ui.inverted.red.basic.buttons .button:active,.ui.inverted.red.buttons .basic.button:active{box-shadow:0 0 0 2px #ff392b inset!important;color:#ff695e!important}.ui.teal.button,.ui.teal.buttons .button{background-color:#00b5ad;color:#fff;text-shadow:none;background-image:none}.ui.teal.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.teal.button:hover,.ui.teal.buttons .button:hover{background-color:#009c95;color:#fff;text-shadow:none}.ui.teal.button:focus,.ui.teal.buttons .button:focus{background-color:#008c86;color:#fff;text-shadow:none}.ui.teal.button:active,.ui.teal.buttons .button:active{background-color:#00827c;color:#fff;text-shadow:none}.ui.teal.active.button,.ui.teal.button .active.button:active,.ui.teal.buttons .active.button,.ui.teal.buttons .active.button:active{background-color:#009c95;color:#fff;text-shadow:none}.ui.basic.teal.button,.ui.basic.teal.buttons .button{box-shadow:0 0 0 1px #00b5ad inset!important;color:#00b5ad!important}.ui.basic.teal.button:hover,.ui.basic.teal.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #009c95 inset!important;color:#009c95!important}.ui.basic.teal.button:focus,.ui.basic.teal.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #008c86 inset!important;color:#009c95!important}.ui.basic.teal.active.button,.ui.basic.teal.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #009c95 inset!important;color:#00827c!important}.ui.basic.teal.button:active,.ui.basic.teal.buttons .button:active{box-shadow:0 0 0 1px #00827c inset!important;color:#00827c!important}.ui.buttons:not(.vertical)>.basic.teal.button:not(:first-child){margin-left:-1px}.ui.inverted.teal.button,.ui.inverted.teal.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #6dffff inset!important;color:#6dffff}.ui.inverted.teal.button.active,.ui.inverted.teal.button:active,.ui.inverted.teal.button:focus,.ui.inverted.teal.button:hover,.ui.inverted.teal.buttons .button.active,.ui.inverted.teal.buttons .button:active,.ui.inverted.teal.buttons .button:focus,.ui.inverted.teal.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.teal.button:hover,.ui.inverted.teal.buttons .button:hover{background-color:#54ffff}.ui.inverted.teal.button:focus,.ui.inverted.teal.buttons .button:focus{background-color:#4ff}.ui.inverted.teal.active.button,.ui.inverted.teal.buttons .active.button{background-color:#54ffff}.ui.inverted.teal.button:active,.ui.inverted.teal.buttons .button:active{background-color:#3affff}.ui.inverted.teal.basic.button,.ui.inverted.teal.basic.buttons .button,.ui.inverted.teal.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.teal.basic.button:hover,.ui.inverted.teal.basic.buttons .button:hover,.ui.inverted.teal.buttons .basic.button:hover{box-shadow:0 0 0 2px #54ffff inset!important;color:#6dffff!important}.ui.inverted.teal.basic.button:focus,.ui.inverted.teal.basic.buttons .button:focus{box-shadow:0 0 0 2px #4ff inset!important;color:#6dffff!important}.ui.inverted.teal.basic.active.button,.ui.inverted.teal.basic.buttons .active.button,.ui.inverted.teal.buttons .basic.active.button{box-shadow:0 0 0 2px #54ffff inset!important;color:#6dffff!important}.ui.inverted.teal.basic.button:active,.ui.inverted.teal.basic.buttons .button:active,.ui.inverted.teal.buttons .basic.button:active{box-shadow:0 0 0 2px #3affff inset!important;color:#6dffff!important}.ui.olive.button,.ui.olive.buttons .button{background-color:#b5cc18;color:#fff;text-shadow:none;background-image:none}.ui.olive.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.olive.button:hover,.ui.olive.buttons .button:hover{background-color:#a7bd0d;color:#fff;text-shadow:none}.ui.olive.button:focus,.ui.olive.buttons .button:focus{background-color:#a0b605;color:#fff;text-shadow:none}.ui.olive.button:active,.ui.olive.buttons .button:active{background-color:#8d9e13;color:#fff;text-shadow:none}.ui.olive.active.button,.ui.olive.button .active.button:active,.ui.olive.buttons .active.button,.ui.olive.buttons .active.button:active{background-color:#aac109;color:#fff;text-shadow:none}.ui.basic.olive.button,.ui.basic.olive.buttons .button{box-shadow:0 0 0 1px #b5cc18 inset!important;color:#b5cc18!important}.ui.basic.olive.button:hover,.ui.basic.olive.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #a7bd0d inset!important;color:#a7bd0d!important}.ui.basic.olive.button:focus,.ui.basic.olive.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #a0b605 inset!important;color:#a7bd0d!important}.ui.basic.olive.active.button,.ui.basic.olive.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #aac109 inset!important;color:#8d9e13!important}.ui.basic.olive.button:active,.ui.basic.olive.buttons .button:active{box-shadow:0 0 0 1px #8d9e13 inset!important;color:#8d9e13!important}.ui.buttons:not(.vertical)>.basic.olive.button:not(:first-child){margin-left:-1px}.ui.inverted.olive.button,.ui.inverted.olive.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #d9e778 inset!important;color:#d9e778}.ui.inverted.olive.button.active,.ui.inverted.olive.button:active,.ui.inverted.olive.button:focus,.ui.inverted.olive.button:hover,.ui.inverted.olive.buttons .button.active,.ui.inverted.olive.buttons .button:active,.ui.inverted.olive.buttons .button:focus,.ui.inverted.olive.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.olive.button:hover,.ui.inverted.olive.buttons .button:hover{background-color:#d8ea5c}.ui.inverted.olive.button:focus,.ui.inverted.olive.buttons .button:focus{background-color:#daef47}.ui.inverted.olive.active.button,.ui.inverted.olive.buttons .active.button{background-color:#daed59}.ui.inverted.olive.button:active,.ui.inverted.olive.buttons .button:active{background-color:#cddf4d}.ui.inverted.olive.basic.button,.ui.inverted.olive.basic.buttons .button,.ui.inverted.olive.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.olive.basic.button:hover,.ui.inverted.olive.basic.buttons .button:hover,.ui.inverted.olive.buttons .basic.button:hover{box-shadow:0 0 0 2px #d8ea5c inset!important;color:#d9e778!important}.ui.inverted.olive.basic.button:focus,.ui.inverted.olive.basic.buttons .button:focus{box-shadow:0 0 0 2px #daef47 inset!important;color:#d9e778!important}.ui.inverted.olive.basic.active.button,.ui.inverted.olive.basic.buttons .active.button,.ui.inverted.olive.buttons .basic.active.button{box-shadow:0 0 0 2px #daed59 inset!important;color:#d9e778!important}.ui.inverted.olive.basic.button:active,.ui.inverted.olive.basic.buttons .button:active,.ui.inverted.olive.buttons .basic.button:active{box-shadow:0 0 0 2px #cddf4d inset!important;color:#d9e778!important}.ui.yellow.button,.ui.yellow.buttons .button{background-color:#fbbd08;color:#fff;text-shadow:none;background-image:none}.ui.yellow.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.yellow.button:hover,.ui.yellow.buttons .button:hover{background-color:#eaae00;color:#fff;text-shadow:none}.ui.yellow.button:focus,.ui.yellow.buttons .button:focus{background-color:#daa300;color:#fff;text-shadow:none}.ui.yellow.button:active,.ui.yellow.buttons .button:active{background-color:#cd9903;color:#fff;text-shadow:none}.ui.yellow.active.button,.ui.yellow.button .active.button:active,.ui.yellow.buttons .active.button,.ui.yellow.buttons .active.button:active{background-color:#eaae00;color:#fff;text-shadow:none}.ui.basic.yellow.button,.ui.basic.yellow.buttons .button{box-shadow:0 0 0 1px #fbbd08 inset!important;color:#fbbd08!important}.ui.basic.yellow.button:hover,.ui.basic.yellow.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #eaae00 inset!important;color:#eaae00!important}.ui.basic.yellow.button:focus,.ui.basic.yellow.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #daa300 inset!important;color:#eaae00!important}.ui.basic.yellow.active.button,.ui.basic.yellow.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #eaae00 inset!important;color:#cd9903!important}.ui.basic.yellow.button:active,.ui.basic.yellow.buttons .button:active{box-shadow:0 0 0 1px #cd9903 inset!important;color:#cd9903!important}.ui.buttons:not(.vertical)>.basic.yellow.button:not(:first-child){margin-left:-1px}.ui.inverted.yellow.button,.ui.inverted.yellow.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ffe21f inset!important;color:#ffe21f}.ui.inverted.yellow.button.active,.ui.inverted.yellow.button:active,.ui.inverted.yellow.button:focus,.ui.inverted.yellow.button:hover,.ui.inverted.yellow.buttons .button.active,.ui.inverted.yellow.buttons .button:active,.ui.inverted.yellow.buttons .button:focus,.ui.inverted.yellow.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.yellow.button:hover,.ui.inverted.yellow.buttons .button:hover{background-color:#ffdf05}.ui.inverted.yellow.button:focus,.ui.inverted.yellow.buttons .button:focus{background-color:#f5d500}.ui.inverted.yellow.active.button,.ui.inverted.yellow.buttons .active.button{background-color:#ffdf05}.ui.inverted.yellow.button:active,.ui.inverted.yellow.buttons .button:active{background-color:#ebcd00}.ui.inverted.yellow.basic.button,.ui.inverted.yellow.basic.buttons .button,.ui.inverted.yellow.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.yellow.basic.button:hover,.ui.inverted.yellow.basic.buttons .button:hover,.ui.inverted.yellow.buttons .basic.button:hover{box-shadow:0 0 0 2px #ffdf05 inset!important;color:#ffe21f!important}.ui.inverted.yellow.basic.button:focus,.ui.inverted.yellow.basic.buttons .button:focus{box-shadow:0 0 0 2px #f5d500 inset!important;color:#ffe21f!important}.ui.inverted.yellow.basic.active.button,.ui.inverted.yellow.basic.buttons .active.button,.ui.inverted.yellow.buttons .basic.active.button{box-shadow:0 0 0 2px #ffdf05 inset!important;color:#ffe21f!important}.ui.inverted.yellow.basic.button:active,.ui.inverted.yellow.basic.buttons .button:active,.ui.inverted.yellow.buttons .basic.button:active{box-shadow:0 0 0 2px #ebcd00 inset!important;color:#ffe21f!important}.ui.primary.button,.ui.primary.buttons .button{background-color:#2185d0;color:#fff;text-shadow:none;background-image:none}.ui.primary.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.primary.button:hover,.ui.primary.buttons .button:hover{background-color:#1678c2;color:#fff;text-shadow:none}.ui.primary.button:focus,.ui.primary.buttons .button:focus{background-color:#0d71bb;color:#fff;text-shadow:none}.ui.primary.button:active,.ui.primary.buttons .button:active{background-color:#1a69a4;color:#fff;text-shadow:none}.ui.primary.active.button,.ui.primary.buttons .active.button{background-color:#1279c6;color:#fff;text-shadow:none}.ui.secondary.button,.ui.secondary.buttons .button{background-color:#1b1c1d;color:#fff;text-shadow:none;background-image:none}.ui.secondary.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.secondary.button:hover,.ui.secondary.buttons .button:hover{background-color:#27292a;color:#fff;text-shadow:none}.ui.secondary.button:focus,.ui.secondary.buttons .button:focus{background-color:#2e3032;color:#fff;text-shadow:none}.ui.secondary.button:active,.ui.secondary.buttons .button:active{background-color:#343637;color:#fff;text-shadow:none}.ui.secondary.active.button,.ui.secondary.buttons .active.button{background-color:#27292a;color:#fff;text-shadow:none}.ui.positive.button,.ui.positive.buttons .button{background-color:#21ba45!important;color:#fff;text-shadow:none;background-image:none}.ui.positive.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.positive.button:hover,.ui.positive.buttons .button:hover{background-color:#16ab39!important;color:#fff;text-shadow:none}.ui.positive.button:focus,.ui.positive.buttons .button:focus{background-color:#0ea432!important;color:#fff;text-shadow:none}.ui.positive.button:active,.ui.positive.buttons .button:active{background-color:#198f35!important;color:#fff;text-shadow:none}.ui.positive.active.button,.ui.positive.buttons .active.button,.ui.positive.buttons .active.button:active{background-color:#13ae38;color:#fff;text-shadow:none}.ui.negative.button,.ui.negative.buttons .button{background-color:#db2828!important;color:#fff;text-shadow:none;background-image:none}.ui.negative.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.negative.button:hover,.ui.negative.buttons .button:hover{background-color:#d01919!important;color:#fff;text-shadow:none}.ui.negative.button:focus,.ui.negative.buttons .button:focus{background-color:#ca1010!important;color:#fff;text-shadow:none}.ui.negative.button:active,.ui.negative.buttons .button:active{background-color:#b21e1e!important;color:#fff;text-shadow:none}.ui.negative.active.button,.ui.negative.buttons .active.button,.ui.negative.buttons .active.button:active{background-color:#d41515;color:#fff;text-shadow:none}.ui.buttons{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;font-size:0;vertical-align:baseline;margin:0 .25em 0 0}.ui.buttons:not(.basic):not(.inverted){box-shadow:none}.ui.buttons:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui.buttons .button{-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;border-radius:0;margin:0}.ui.buttons:not(.basic):not(.inverted)>.button,.ui.buttons>.ui.button:not(.basic):not(.inverted){box-shadow:0 0 0 1px transparent inset,0 0 0 0 rgba(34,36,38,.15) inset}.ui.buttons .button:first-child{border-left:none;margin-left:0;border-top-left-radius:.28571429rem;border-bottom-left-radius:.28571429rem}.ui.buttons .button:last-child{border-top-right-radius:.28571429rem;border-bottom-right-radius:.28571429rem}.ui.vertical.buttons{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.vertical.buttons .button{display:block;float:none;width:100%;margin:0;box-shadow:none}.ui.vertical.buttons .button:first-child,.ui.vertical.buttons .huge.button:first-child,.ui.vertical.buttons .massive.button:first-child,.ui.vertical.buttons .mini.button:first-child,.ui.vertical.buttons .small.button:first-child,.ui.vertical.buttons .tiny.button:first-child{border-radius:.28571429rem .28571429rem 0 0}.ui.vertical.buttons .button:last-child,.ui.vertical.buttons .gigantic.button:last-child,.ui.vertical.buttons .huge.button:last-child,.ui.vertical.buttons .massive.button:last-child,.ui.vertical.buttons .mini.button:last-child,.ui.vertical.buttons .small.button:last-child,.ui.vertical.buttons .tiny.button:last-child{margin-bottom:0;border-radius:0 0 .28571429rem .28571429rem}.ui.container{display:block;max-width:100%!important}@media only screen and (max-width:767px){.ui.container{width:auto!important;margin-left:1em!important;margin-right:1em!important}.ui.grid.container,.ui.relaxed.grid.container,.ui.very.relaxed.grid.container{width:auto!important}}@media only screen and (min-width:768px) and (max-width:991px){.ui.container{width:723px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{width:calc(723px + 2rem)!important}.ui.relaxed.grid.container{width:calc(723px + 3rem)!important}.ui.very.relaxed.grid.container{width:calc(723px + 5rem)!important}}@media only screen and (min-width:992px) and (max-width:1199px){.ui.container{width:933px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{width:calc(933px + 2rem)!important}.ui.relaxed.grid.container{width:calc(933px + 3rem)!important}.ui.very.relaxed.grid.container{width:calc(933px + 5rem)!important}}@media only screen and (min-width:1200px){.ui.container{width:1127px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{width:calc(1127px + 2rem)!important}.ui.relaxed.grid.container{width:calc(1127px + 3rem)!important}.ui.very.relaxed.grid.container{width:calc(1127px + 5rem)!important}}.ui.text.container{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;max-width:700px!important;line-height:1.5;font-size:1.14285714rem}.ui.fluid.container{width:100%}.ui[class*="left aligned"].container{text-align:left}.ui[class*="center aligned"].container{text-align:center}.ui[class*="right aligned"].container{text-align:right}.ui.justified.container{text-align:justify;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.ui.divider{margin:1rem 0;line-height:1;height:0;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:rgba(0,0,0,.85);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;font-size:1rem}.ui.divider:not(.vertical):not(.horizontal){border-top:1px solid rgba(34,36,38,.15);border-bottom:1px solid rgba(255,255,255,.1)}.ui.grid>.column+.divider,.ui.grid>.row>.column+.divider{left:auto}.ui.horizontal.divider{display:table;white-space:nowrap;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center}.ui.horizontal.divider:after,.ui.horizontal.divider:before{content:'';display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC)}.ui.horizontal.divider:before{background-position:right 1em top 50%}.ui.horizontal.divider:after{background-position:left 1em top 50%}.ui.vertical.divider{position:absolute;z-index:2;top:50%;left:50%;margin:0;padding:0;width:auto;height:50%;line-height:0;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.ui.vertical.divider:after,.ui.vertical.divider:before{position:absolute;left:50%;content:'';z-index:3;border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(255,255,255,.1);width:0;height:calc(100% - 1rem)}.ui.vertical.divider:before{top:-100%}.ui.vertical.divider:after{top:auto;bottom:0}@media only screen and (max-width:767px){.ui.grid .stackable.row .ui.vertical.divider,.ui.stackable.grid .ui.vertical.divider{display:table;white-space:nowrap;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center;position:static;top:0;left:0;-webkit-transform:none;-ms-transform:none;transform:none}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:before{left:0;border-left:none;border-right:none;content:'';display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat}.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:before{background-position:right 1em top 50%}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:after{background-position:left 1em top 50%}}.ui.divider>.icon{margin:0;font-size:1rem;height:1em;vertical-align:middle}.ui.hidden.divider{border-color:transparent!important}.ui.hidden.divider:after,.ui.hidden.divider:before{display:none}.ui.divider.inverted,.ui.horizontal.inverted.divider,.ui.vertical.inverted.divider{color:#fff}.ui.divider.inverted,.ui.divider.inverted:after,.ui.divider.inverted:before{border-top-color:rgba(34,36,38,.15)!important;border-left-color:rgba(34,36,38,.15)!important;border-bottom-color:rgba(255,255,255,.15)!important;border-right-color:rgba(255,255,255,.15)!important}.ui.fitted.divider{margin:0}.ui.clearing.divider{clear:both}.ui.section.divider{margin-top:2rem;margin-bottom:2rem}@media only screen and (max-width:767px){.ui.grid .stackable.row .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC)}}i.flag:not(.icon){display:inline-block;width:16px;height:11px;line-height:11px;vertical-align:baseline;margin:0 .5em 0 0;text-decoration:inherit;speak:none;font-smoothing:antialiased;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag:not(.icon):before{display:inline-block;content:'';background:url(themes/default/assets/images/flags.png) no-repeat;width:16px;height:11px}i.flag.ad:before,i.flag.andorra:before{background-position:0 0}i.flag.ae:before,i.flag.uae:before,i.flag.united.arab.emirates:before{background-position:0 -26px}i.flag.af:before,i.flag.afghanistan:before{background-position:0 -52px}i.flag.ag:before,i.flag.antigua:before{background-position:0 -78px}i.flag.ai:before,i.flag.anguilla:before{background-position:0 -104px}i.flag.al:before,i.flag.albania:before{background-position:0 -130px}i.flag.am:before,i.flag.armenia:before{background-position:0 -156px}i.flag.an:before,i.flag.netherlands.antilles:before{background-position:0 -182px}i.flag.angola:before,i.flag.ao:before{background-position:0 -208px}i.flag.ar:before,i.flag.argentina:before{background-position:0 -234px}i.flag.american.samoa:before,i.flag.as:before{background-position:0 -260px}i.flag.at:before,i.flag.austria:before{background-position:0 -286px}i.flag.au:before,i.flag.australia:before{background-position:0 -312px}i.flag.aruba:before,i.flag.aw:before{background-position:0 -338px}i.flag.aland.islands:before,i.flag.ax:before{background-position:0 -364px}i.flag.az:before,i.flag.azerbaijan:before{background-position:0 -390px}i.flag.ba:before,i.flag.bosnia:before{background-position:0 -416px}i.flag.barbados:before,i.flag.bb:before{background-position:0 -442px}i.flag.bangladesh:before,i.flag.bd:before{background-position:0 -468px}i.flag.be:before,i.flag.belgium:before{background-position:0 -494px}i.flag.bf:before,i.flag.burkina.faso:before{background-position:0 -520px}i.flag.bg:before,i.flag.bulgaria:before{background-position:0 -546px}i.flag.bahrain:before,i.flag.bh:before{background-position:0 -572px}i.flag.bi:before,i.flag.burundi:before{background-position:0 -598px}i.flag.benin:before,i.flag.bj:before{background-position:0 -624px}i.flag.bermuda:before,i.flag.bm:before{background-position:0 -650px}i.flag.bn:before,i.flag.brunei:before{background-position:0 -676px}i.flag.bo:before,i.flag.bolivia:before{background-position:0 -702px}i.flag.br:before,i.flag.brazil:before{background-position:0 -728px}i.flag.bahamas:before,i.flag.bs:before{background-position:0 -754px}i.flag.bhutan:before,i.flag.bt:before{background-position:0 -780px}i.flag.bouvet.island:before,i.flag.bv:before{background-position:0 -806px}i.flag.botswana:before,i.flag.bw:before{background-position:0 -832px}i.flag.belarus:before,i.flag.by:before{background-position:0 -858px}i.flag.belize:before,i.flag.bz:before{background-position:0 -884px}i.flag.ca:before,i.flag.canada:before{background-position:0 -910px}i.flag.cc:before,i.flag.cocos.islands:before{background-position:0 -962px}i.flag.cd:before,i.flag.congo:before{background-position:0 -988px}i.flag.central.african.republic:before,i.flag.cf:before{background-position:0 -1014px}i.flag.cg:before,i.flag.congo.brazzaville:before{background-position:0 -1040px}i.flag.ch:before,i.flag.switzerland:before{background-position:0 -1066px}i.flag.ci:before,i.flag.cote.divoire:before{background-position:0 -1092px}i.flag.ck:before,i.flag.cook.islands:before{background-position:0 -1118px}i.flag.chile:before,i.flag.cl:before{background-position:0 -1144px}i.flag.cameroon:before,i.flag.cm:before{background-position:0 -1170px}i.flag.china:before,i.flag.cn:before{background-position:0 -1196px}i.flag.co:before,i.flag.colombia:before{background-position:0 -1222px}i.flag.costa.rica:before,i.flag.cr:before{background-position:0 -1248px}i.flag.cs:before,i.flag.serbia:before{background-position:0 -1274px}i.flag.cu:before,i.flag.cuba:before{background-position:0 -1300px}i.flag.cape.verde:before,i.flag.cv:before{background-position:0 -1326px}i.flag.christmas.island:before,i.flag.cx:before{background-position:0 -1352px}i.flag.cy:before,i.flag.cyprus:before{background-position:0 -1378px}i.flag.cz:before,i.flag.czech.republic:before{background-position:0 -1404px}i.flag.de:before,i.flag.germany:before{background-position:0 -1430px}i.flag.dj:before,i.flag.djibouti:before{background-position:0 -1456px}i.flag.denmark:before,i.flag.dk:before{background-position:0 -1482px}i.flag.dm:before,i.flag.dominica:before{background-position:0 -1508px}i.flag.do:before,i.flag.dominican.republic:before{background-position:0 -1534px}i.flag.algeria:before,i.flag.dz:before{background-position:0 -1560px}i.flag.ec:before,i.flag.ecuador:before{background-position:0 -1586px}i.flag.ee:before,i.flag.estonia:before{background-position:0 -1612px}i.flag.eg:before,i.flag.egypt:before{background-position:0 -1638px}i.flag.eh:before,i.flag.western.sahara:before{background-position:0 -1664px}i.flag.er:before,i.flag.eritrea:before{background-position:0 -1716px}i.flag.es:before,i.flag.spain:before{background-position:0 -1742px}i.flag.et:before,i.flag.ethiopia:before{background-position:0 -1768px}i.flag.eu:before,i.flag.european.union:before{background-position:0 -1794px}i.flag.fi:before,i.flag.finland:before{background-position:0 -1846px}i.flag.fiji:before,i.flag.fj:before{background-position:0 -1872px}i.flag.falkland.islands:before,i.flag.fk:before{background-position:0 -1898px}i.flag.fm:before,i.flag.micronesia:before{background-position:0 -1924px}i.flag.faroe.islands:before,i.flag.fo:before{background-position:0 -1950px}i.flag.fr:before,i.flag.france:before{background-position:0 -1976px}i.flag.ga:before,i.flag.gabon:before{background-position:-36px 0}i.flag.gb:before,i.flag.united.kingdom:before{background-position:-36px -26px}i.flag.gd:before,i.flag.grenada:before{background-position:-36px -52px}i.flag.ge:before,i.flag.georgia:before{background-position:-36px -78px}i.flag.french.guiana:before,i.flag.gf:before{background-position:-36px -104px}i.flag.gh:before,i.flag.ghana:before{background-position:-36px -130px}i.flag.gi:before,i.flag.gibraltar:before{background-position:-36px -156px}i.flag.gl:before,i.flag.greenland:before{background-position:-36px -182px}i.flag.gambia:before,i.flag.gm:before{background-position:-36px -208px}i.flag.gn:before,i.flag.guinea:before{background-position:-36px -234px}i.flag.gp:before,i.flag.guadeloupe:before{background-position:-36px -260px}i.flag.equatorial.guinea:before,i.flag.gq:before{background-position:-36px -286px}i.flag.gr:before,i.flag.greece:before{background-position:-36px -312px}i.flag.gs:before,i.flag.sandwich.islands:before{background-position:-36px -338px}i.flag.gt:before,i.flag.guatemala:before{background-position:-36px -364px}i.flag.gu:before,i.flag.guam:before{background-position:-36px -390px}i.flag.guinea-bissau:before,i.flag.gw:before{background-position:-36px -416px}i.flag.guyana:before,i.flag.gy:before{background-position:-36px -442px}i.flag.hk:before,i.flag.hong.kong:before{background-position:-36px -468px}i.flag.heard.island:before,i.flag.hm:before{background-position:-36px -494px}i.flag.hn:before,i.flag.honduras:before{background-position:-36px -520px}i.flag.croatia:before,i.flag.hr:before{background-position:-36px -546px}i.flag.haiti:before,i.flag.ht:before{background-position:-36px -572px}i.flag.hu:before,i.flag.hungary:before{background-position:-36px -598px}i.flag.id:before,i.flag.indonesia:before{background-position:-36px -624px}i.flag.ie:before,i.flag.ireland:before{background-position:-36px -650px}i.flag.il:before,i.flag.israel:before{background-position:-36px -676px}i.flag.in:before,i.flag.india:before{background-position:-36px -702px}i.flag.indian.ocean.territory:before,i.flag.io:before{background-position:-36px -728px}i.flag.iq:before,i.flag.iraq:before{background-position:-36px -754px}i.flag.ir:before,i.flag.iran:before{background-position:-36px -780px}i.flag.iceland:before,i.flag.is:before{background-position:-36px -806px}i.flag.it:before,i.flag.italy:before{background-position:-36px -832px}i.flag.jamaica:before,i.flag.jm:before{background-position:-36px -858px}i.flag.jo:before,i.flag.jordan:before{background-position:-36px -884px}i.flag.japan:before,i.flag.jp:before{background-position:-36px -910px}i.flag.ke:before,i.flag.kenya:before{background-position:-36px -936px}i.flag.kg:before,i.flag.kyrgyzstan:before{background-position:-36px -962px}i.flag.cambodia:before,i.flag.kh:before{background-position:-36px -988px}i.flag.ki:before,i.flag.kiribati:before{background-position:-36px -1014px}i.flag.comoros:before,i.flag.km:before{background-position:-36px -1040px}i.flag.kn:before,i.flag.saint.kitts.and.nevis:before{background-position:-36px -1066px}i.flag.kp:before,i.flag.north.korea:before{background-position:-36px -1092px}i.flag.kr:before,i.flag.south.korea:before{background-position:-36px -1118px}i.flag.kuwait:before,i.flag.kw:before{background-position:-36px -1144px}i.flag.cayman.islands:before,i.flag.ky:before{background-position:-36px -1170px}i.flag.kazakhstan:before,i.flag.kz:before{background-position:-36px -1196px}i.flag.la:before,i.flag.laos:before{background-position:-36px -1222px}i.flag.lb:before,i.flag.lebanon:before{background-position:-36px -1248px}i.flag.lc:before,i.flag.saint.lucia:before{background-position:-36px -1274px}i.flag.li:before,i.flag.liechtenstein:before{background-position:-36px -1300px}i.flag.lk:before,i.flag.sri.lanka:before{background-position:-36px -1326px}i.flag.liberia:before,i.flag.lr:before{background-position:-36px -1352px}i.flag.lesotho:before,i.flag.ls:before{background-position:-36px -1378px}i.flag.lithuania:before,i.flag.lt:before{background-position:-36px -1404px}i.flag.lu:before,i.flag.luxembourg:before{background-position:-36px -1430px}i.flag.latvia:before,i.flag.lv:before{background-position:-36px -1456px}i.flag.libya:before,i.flag.ly:before{background-position:-36px -1482px}i.flag.ma:before,i.flag.morocco:before{background-position:-36px -1508px}i.flag.mc:before,i.flag.monaco:before{background-position:-36px -1534px}i.flag.md:before,i.flag.moldova:before{background-position:-36px -1560px}i.flag.me:before,i.flag.montenegro:before{background-position:-36px -1586px}i.flag.madagascar:before,i.flag.mg:before{background-position:-36px -1613px}i.flag.marshall.islands:before,i.flag.mh:before{background-position:-36px -1639px}i.flag.macedonia:before,i.flag.mk:before{background-position:-36px -1665px}i.flag.mali:before,i.flag.ml:before{background-position:-36px -1691px}i.flag.burma:before,i.flag.mm:before,i.flag.myanmar:before{background-position:-36px -1717px}i.flag.mn:before,i.flag.mongolia:before{background-position:-36px -1743px}i.flag.macau:before,i.flag.mo:before{background-position:-36px -1769px}i.flag.mp:before,i.flag.northern.mariana.islands:before{background-position:-36px -1795px}i.flag.martinique:before,i.flag.mq:before{background-position:-36px -1821px}i.flag.mauritania:before,i.flag.mr:before{background-position:-36px -1847px}i.flag.montserrat:before,i.flag.ms:before{background-position:-36px -1873px}i.flag.malta:before,i.flag.mt:before{background-position:-36px -1899px}i.flag.mauritius:before,i.flag.mu:before{background-position:-36px -1925px}i.flag.maldives:before,i.flag.mv:before{background-position:-36px -1951px}i.flag.malawi:before,i.flag.mw:before{background-position:-36px -1977px}i.flag.mexico:before,i.flag.mx:before{background-position:-72px 0}i.flag.malaysia:before,i.flag.my:before{background-position:-72px -26px}i.flag.mozambique:before,i.flag.mz:before{background-position:-72px -52px}i.flag.na:before,i.flag.namibia:before{background-position:-72px -78px}i.flag.nc:before,i.flag.new.caledonia:before{background-position:-72px -104px}i.flag.ne:before,i.flag.niger:before{background-position:-72px -130px}i.flag.nf:before,i.flag.norfolk.island:before{background-position:-72px -156px}i.flag.ng:before,i.flag.nigeria:before{background-position:-72px -182px}i.flag.ni:before,i.flag.nicaragua:before{background-position:-72px -208px}i.flag.netherlands:before,i.flag.nl:before{background-position:-72px -234px}i.flag.no:before,i.flag.norway:before{background-position:-72px -260px}i.flag.nepal:before,i.flag.np:before{background-position:-72px -286px}i.flag.nauru:before,i.flag.nr:before{background-position:-72px -312px}i.flag.niue:before,i.flag.nu:before{background-position:-72px -338px}i.flag.new.zealand:before,i.flag.nz:before{background-position:-72px -364px}i.flag.om:before,i.flag.oman:before{background-position:-72px -390px}i.flag.pa:before,i.flag.panama:before{background-position:-72px -416px}i.flag.pe:before,i.flag.peru:before{background-position:-72px -442px}i.flag.french.polynesia:before,i.flag.pf:before{background-position:-72px -468px}i.flag.new.guinea:before,i.flag.pg:before{background-position:-72px -494px}i.flag.ph:before,i.flag.philippines:before{background-position:-72px -520px}i.flag.pakistan:before,i.flag.pk:before{background-position:-72px -546px}i.flag.pl:before,i.flag.poland:before{background-position:-72px -572px}i.flag.pm:before,i.flag.saint.pierre:before{background-position:-72px -598px}i.flag.pitcairn.islands:before,i.flag.pn:before{background-position:-72px -624px}i.flag.pr:before,i.flag.puerto.rico:before{background-position:-72px -650px}i.flag.palestine:before,i.flag.ps:before{background-position:-72px -676px}i.flag.portugal:before,i.flag.pt:before{background-position:-72px -702px}i.flag.palau:before,i.flag.pw:before{background-position:-72px -728px}i.flag.paraguay:before,i.flag.py:before{background-position:-72px -754px}i.flag.qa:before,i.flag.qatar:before{background-position:-72px -780px}i.flag.re:before,i.flag.reunion:before{background-position:-72px -806px}i.flag.ro:before,i.flag.romania:before{background-position:-72px -832px}i.flag.rs:before,i.flag.serbia:before{background-position:-72px -858px}i.flag.ru:before,i.flag.russia:before{background-position:-72px -884px}i.flag.rw:before,i.flag.rwanda:before{background-position:-72px -910px}i.flag.sa:before,i.flag.saudi.arabia:before{background-position:-72px -936px}i.flag.sb:before,i.flag.solomon.islands:before{background-position:-72px -962px}i.flag.sc:before,i.flag.seychelles:before{background-position:-72px -988px}i.flag.sd:before,i.flag.sudan:before{background-position:-72px -1040px}i.flag.se:before,i.flag.sweden:before{background-position:-72px -1066px}i.flag.sg:before,i.flag.singapore:before{background-position:-72px -1092px}i.flag.saint.helena:before,i.flag.sh:before{background-position:-72px -1118px}i.flag.si:before,i.flag.slovenia:before{background-position:-72px -1144px}i.flag.jan.mayen:before,i.flag.sj:before,i.flag.svalbard:before{background-position:-72px -1170px}i.flag.sk:before,i.flag.slovakia:before{background-position:-72px -1196px}i.flag.sierra.leone:before,i.flag.sl:before{background-position:-72px -1222px}i.flag.san.marino:before,i.flag.sm:before{background-position:-72px -1248px}i.flag.senegal:before,i.flag.sn:before{background-position:-72px -1274px}i.flag.so:before,i.flag.somalia:before{background-position:-72px -1300px}i.flag.sr:before,i.flag.suriname:before{background-position:-72px -1326px}i.flag.sao.tome:before,i.flag.st:before{background-position:-72px -1352px}i.flag.el.salvador:before,i.flag.sv:before{background-position:-72px -1378px}i.flag.sy:before,i.flag.syria:before{background-position:-72px -1404px}i.flag.swaziland:before,i.flag.sz:before{background-position:-72px -1430px}i.flag.caicos.islands:before,i.flag.tc:before{background-position:-72px -1456px}i.flag.chad:before,i.flag.td:before{background-position:-72px -1482px}i.flag.french.territories:before,i.flag.tf:before{background-position:-72px -1508px}i.flag.tg:before,i.flag.togo:before{background-position:-72px -1534px}i.flag.th:before,i.flag.thailand:before{background-position:-72px -1560px}i.flag.tajikistan:before,i.flag.tj:before{background-position:-72px -1586px}i.flag.tk:before,i.flag.tokelau:before{background-position:-72px -1612px}i.flag.timorleste:before,i.flag.tl:before{background-position:-72px -1638px}i.flag.tm:before,i.flag.turkmenistan:before{background-position:-72px -1664px}i.flag.tn:before,i.flag.tunisia:before{background-position:-72px -1690px}i.flag.to:before,i.flag.tonga:before{background-position:-72px -1716px}i.flag.tr:before,i.flag.turkey:before{background-position:-72px -1742px}i.flag.trinidad:before,i.flag.tt:before{background-position:-72px -1768px}i.flag.tuvalu:before,i.flag.tv:before{background-position:-72px -1794px}i.flag.taiwan:before,i.flag.tw:before{background-position:-72px -1820px}i.flag.tanzania:before,i.flag.tz:before{background-position:-72px -1846px}i.flag.ua:before,i.flag.ukraine:before{background-position:-72px -1872px}i.flag.ug:before,i.flag.uganda:before{background-position:-72px -1898px}i.flag.um:before,i.flag.us.minor.islands:before{background-position:-72px -1924px}i.flag.america:before,i.flag.united.states:before,i.flag.us:before{background-position:-72px -1950px}i.flag.uruguay:before,i.flag.uy:before{background-position:-72px -1976px}i.flag.uz:before,i.flag.uzbekistan:before{background-position:-108px 0}i.flag.va:before,i.flag.vatican.city:before{background-position:-108px -26px}i.flag.saint.vincent:before,i.flag.vc:before{background-position:-108px -52px}i.flag.ve:before,i.flag.venezuela:before{background-position:-108px -78px}i.flag.british.virgin.islands:before,i.flag.vg:before{background-position:-108px -104px}i.flag.us.virgin.islands:before,i.flag.vi:before{background-position:-108px -130px}i.flag.vietnam:before,i.flag.vn:before{background-position:-108px -156px}i.flag.vanuatu:before,i.flag.vu:before{background-position:-108px -182px}i.flag.wallis.and.futuna:before,i.flag.wf:before{background-position:-108px -234px}i.flag.samoa:before,i.flag.ws:before{background-position:-108px -260px}i.flag.ye:before,i.flag.yemen:before{background-position:-108px -286px}i.flag.mayotte:before,i.flag.yt:before{background-position:-108px -312px}i.flag.south.africa:before,i.flag.za:before{background-position:-108px -338px}i.flag.zambia:before,i.flag.zm:before{background-position:-108px -364px}i.flag.zimbabwe:before,i.flag.zw:before{background-position:-108px -390px}.ui.header{border:none;margin:calc(2rem - .14285em) 0 1rem;padding:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;line-height:1.2857em;text-transform:none;color:rgba(0,0,0,.87)}.ui.header:first-child{margin-top:-.14285em}.ui.header:last-child{margin-bottom:0}.ui.header .sub.header{font-weight:400;padding:0;margin:0;line-height:1.2em;color:rgba(0,0,0,.6)}.ui.header>.icon{display:table-cell;opacity:1;font-size:1.5em;padding-top:.14285em;vertical-align:middle}.ui.header .icon:only-child{display:inline-block;padding:0;margin-right:.75rem}.ui.header>.image,.ui.header>img{display:inline-block;margin-top:.14285em;width:2.5em;height:auto;vertical-align:middle}.ui.header>.image:only-child,.ui.header>img:only-child{margin-right:.75rem}.ui.header .content{display:inline-block;vertical-align:top}.ui.header>.image+.content,.ui.header>img+.content{padding-left:.75rem;vertical-align:middle}.ui.header>.icon+.content{padding-left:.75rem;display:table-cell;vertical-align:middle}.ui.header .ui.label{font-size:'';margin-left:.5rem;vertical-align:middle}.ui.header+p{margin-top:0}h1.ui.header{font-size:2rem}h2.ui.header{font-size:1.714rem}h3.ui.header{font-size:1.28rem}h4.ui.header{font-size:1.071rem}h5.ui.header{font-size:1rem}h1.ui.header .sub.header,h2.ui.header .sub.header{font-size:1.14285714rem}h3.ui.header .sub.header,h4.ui.header .sub.header{font-size:1rem}h5.ui.header .sub.header{font-size:.92857143rem}.ui.huge.header{min-height:1em;font-size:2em}.ui.large.header{font-size:1.714em}.ui.medium.header{font-size:1.28em}.ui.small.header{font-size:1.071em}.ui.tiny.header{font-size:1em}.ui.huge.header .sub.header,.ui.large.header .sub.header{font-size:1.14285714rem}.ui.header .sub.header,.ui.small.header .sub.header{font-size:1rem}.ui.tiny.header .sub.header{font-size:.92857143rem}.ui.small.sub.header{font-size:.71428571em}.ui.sub.header{padding:0;margin-bottom:.14285714rem;font-weight:700;text-transform:uppercase;color:'';font-size:.85714286em}.ui.large.sub.header{font-size:.92857143em}.ui.huge.sub.header{font-size:1em}.ui.icon.header{display:inline-block;text-align:center;margin:2rem 0 1rem}.ui.icon.header:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.icon.header:first-child{margin-top:0}.ui.icon.header .icon{float:none;display:block;width:auto;height:auto;line-height:1;padding:0;font-size:3em;margin:0 auto .5rem;opacity:1}.ui.icon.header .content{display:block}.ui.icon.header .circular.icon,.ui.icon.header .square.icon{font-size:2em}.ui.block.icon.header .icon{margin-bottom:0}.ui.icon.header.aligned{margin-left:auto;margin-right:auto;display:block}.ui.disabled.header{opacity:.45}.ui.inverted.header{color:#fff}.ui.inverted.header .sub.header{color:rgba(255,255,255,.8)}.ui.inverted.attached.header{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) #545454;background:linear-gradient(transparent,rgba(0,0,0,.05)) #545454;box-shadow:none;border-color:transparent}.ui.inverted.block.header{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) #545454;background:linear-gradient(transparent,rgba(0,0,0,.05)) #545454;box-shadow:none;border-bottom:none}.ui.red.header{color:#db2828!important}a.ui.red.header:hover{color:#d01919!important}.ui.red.dividing.header{border-bottom:2px solid #db2828}.ui.inverted.red.header{color:#ff695e!important}a.ui.inverted.red.header:hover{color:#ff5144!important}.ui.orange.header{color:#f2711c!important}a.ui.orange.header:hover{color:#f26202!important}.ui.orange.dividing.header{border-bottom:2px solid #f2711c}.ui.inverted.orange.header{color:#ff851b!important}a.ui.inverted.orange.header:hover{color:#ff7701!important}.ui.olive.header{color:#b5cc18!important}a.ui.olive.header:hover{color:#a7bd0d!important}.ui.olive.dividing.header{border-bottom:2px solid #b5cc18}.ui.inverted.olive.header{color:#d9e778!important}a.ui.inverted.olive.header:hover{color:#d8ea5c!important}.ui.yellow.header{color:#fbbd08!important}a.ui.yellow.header:hover{color:#eaae00!important}.ui.yellow.dividing.header{border-bottom:2px solid #fbbd08}.ui.inverted.yellow.header{color:#ffe21f!important}a.ui.inverted.yellow.header:hover{color:#ffdf05!important}.ui.green.header{color:#21ba45!important}a.ui.green.header:hover{color:#16ab39!important}.ui.green.dividing.header{border-bottom:2px solid #21ba45}.ui.inverted.green.header{color:#2ecc40!important}a.ui.inverted.green.header:hover{color:#22be34!important}.ui.teal.header{color:#00b5ad!important}a.ui.teal.header:hover{color:#009c95!important}.ui.teal.dividing.header{border-bottom:2px solid #00b5ad}.ui.inverted.teal.header{color:#6dffff!important}a.ui.inverted.teal.header:hover{color:#54ffff!important}.ui.blue.header{color:#2185d0!important}a.ui.blue.header:hover{color:#1678c2!important}.ui.blue.dividing.header{border-bottom:2px solid #2185d0}.ui.inverted.blue.header{color:#54c8ff!important}a.ui.inverted.blue.header:hover{color:#3ac0ff!important}.ui.violet.header{color:#6435c9!important}a.ui.violet.header:hover{color:#5829bb!important}.ui.violet.dividing.header{border-bottom:2px solid #6435c9}.ui.inverted.violet.header{color:#a291fb!important}a.ui.inverted.violet.header:hover{color:#8a73ff!important}.ui.purple.header{color:#a333c8!important}a.ui.purple.header:hover{color:#9627ba!important}.ui.purple.dividing.header{border-bottom:2px solid #a333c8}.ui.inverted.purple.header{color:#dc73ff!important}a.ui.inverted.purple.header:hover{color:#d65aff!important}.ui.pink.header{color:#e03997!important}a.ui.pink.header:hover{color:#e61a8d!important}.ui.pink.dividing.header{border-bottom:2px solid #e03997}.ui.inverted.pink.header{color:#ff8edf!important}a.ui.inverted.pink.header:hover{color:#ff74d8!important}.ui.brown.header{color:#a5673f!important}a.ui.brown.header:hover{color:#975b33!important}.ui.brown.dividing.header{border-bottom:2px solid #a5673f}.ui.inverted.brown.header{color:#d67c1c!important}a.ui.inverted.brown.header:hover{color:#c86f11!important}.ui.grey.header{color:#767676!important}a.ui.grey.header:hover{color:#838383!important}.ui.grey.dividing.header{border-bottom:2px solid #767676}.ui.inverted.grey.header{color:#dcddde!important}a.ui.inverted.grey.header:hover{color:#cfd0d2!important}.ui.left.aligned.header{text-align:left}.ui.right.aligned.header{text-align:right}.ui.center.aligned.header,.ui.centered.header{text-align:center}.ui.justified.header{text-align:justify}.ui.justified.header:after{display:inline-block;content:'';width:100%}.ui.floated.header,.ui[class*="left floated"].header{float:left;margin-top:0;margin-right:.5em}.ui[class*="right floated"].header{float:right;margin-top:0;margin-left:.5em}.ui.fitted.header{padding:0}.ui.dividing.header{padding-bottom:.21428571rem;border-bottom:1px solid rgba(34,36,38,.15)}.ui.dividing.header .sub.header{padding-bottom:.21428571rem}.ui.dividing.header .icon{margin-bottom:0}.ui.inverted.dividing.header{border-bottom-color:rgba(255,255,255,.1)}.ui.block.header{background:#f3f4f5;padding:.71428571rem 1rem;box-shadow:none;border:1px solid #d4d4d5;border-radius:.28571429rem}.ui.tiny.block.header{font-size:.85714286rem}.ui.small.block.header{font-size:.92857143rem}.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1rem}.ui.large.block.header{font-size:1.14285714rem}.ui.huge.block.header{font-size:1.42857143rem}.ui.attached.header{background:#fff;padding:.71428571rem 1rem;margin-left:-1px;margin-right:-1px;box-shadow:none;border:1px solid #d4d4d5}.ui.attached.block.header{background:#f3f4f5}.ui.attached:not(.top):not(.bottom).header{margin-top:0;margin-bottom:0;border-top:none;border-radius:0}.ui.top.attached.header{margin-bottom:0;border-radius:.28571429rem .28571429rem 0 0}.ui.bottom.attached.header{margin-top:0;border-top:none;border-radius:0 0 .28571429rem .28571429rem}.ui.tiny.attached.header{font-size:.85714286em}.ui.small.attached.header{font-size:.92857143em}.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1em}.ui.large.attached.header{font-size:1.14285714em}.ui.huge.attached.header{font-size:1.42857143em}.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1.28em}@font-face{font-family:Icons;src:url(themes/default/assets/fonts/icons.eot);src:url(themes/default/assets/fonts/icons.eot?#iefix) format('embedded-opentype'),url(themes/default/assets/fonts/icons.woff2) format('woff2'),url(themes/default/assets/fonts/icons.woff) format('woff'),url(themes/default/assets/fonts/icons.ttf) format('truetype'),url(themes/default/assets/fonts/icons.svg#icons) format('svg');font-style:normal;font-weight:400;font-variant:normal;text-decoration:inherit;text-transform:none}i.icon{display:inline-block;opacity:1;margin:0 .25rem 0 0;width:1.18em;height:1em;font-family:Icons;font-style:normal;font-weight:400;text-decoration:inherit;text-align:center;speak:none;font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.icon:before{background:0 0!important}i.icon.loading{height:1em;line-height:1;-webkit-animation:icon-loading 2s linear infinite;animation:icon-loading 2s linear infinite}@-webkit-keyframes icon-loading{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes icon-loading{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}i.emphasized.icon,i.icon.active,i.icon.hover{opacity:1!important}i.disabled.icon{opacity:.45!important}i.fitted.icon{width:auto;margin:0}i.link.icon{cursor:pointer;opacity:.8;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}i.link.icon:hover{opacity:1!important}i.circular.icon{border-radius:500em!important;line-height:1!important;padding:.5em!important;box-shadow:0 0 0 .1em rgba(0,0,0,.1) inset;width:2em!important;height:2em!important}i.circular.inverted.icon{border:none;box-shadow:none}i.flipped.icon,i.horizontally.flipped.icon{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}i.vertically.flipped.icon{-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}i.clockwise.rotated.icon,i.right.rotated.icon,i.rotated.icon{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}i.counterclockwise.rotated.icon,i.left.rotated.icon{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}i.bordered.icon{line-height:1;vertical-align:baseline;width:2em;height:2em;padding:.5em .41em!important;box-shadow:0 0 0 .1em rgba(0,0,0,.1) inset}i.bordered.inverted.icon{border:none;box-shadow:none}i.inverted.bordered.icon,i.inverted.circular.icon{background-color:#1b1c1d!important;color:#fff!important}i.inverted.icon{color:#fff}i.red.icon{color:#db2828!important}i.inverted.red.icon{color:#ff695e!important}i.inverted.bordered.red.icon,i.inverted.circular.red.icon{background-color:#db2828!important;color:#fff!important}i.orange.icon{color:#f2711c!important}i.inverted.orange.icon{color:#ff851b!important}i.inverted.bordered.orange.icon,i.inverted.circular.orange.icon{background-color:#f2711c!important;color:#fff!important}i.yellow.icon{color:#fbbd08!important}i.inverted.yellow.icon{color:#ffe21f!important}i.inverted.bordered.yellow.icon,i.inverted.circular.yellow.icon{background-color:#fbbd08!important;color:#fff!important}i.olive.icon{color:#b5cc18!important}i.inverted.olive.icon{color:#d9e778!important}i.inverted.bordered.olive.icon,i.inverted.circular.olive.icon{background-color:#b5cc18!important;color:#fff!important}i.green.icon{color:#21ba45!important}i.inverted.green.icon{color:#2ecc40!important}i.inverted.bordered.green.icon,i.inverted.circular.green.icon{background-color:#21ba45!important;color:#fff!important}i.teal.icon{color:#00b5ad!important}i.inverted.teal.icon{color:#6dffff!important}i.inverted.bordered.teal.icon,i.inverted.circular.teal.icon{background-color:#00b5ad!important;color:#fff!important}i.blue.icon{color:#2185d0!important}i.inverted.blue.icon{color:#54c8ff!important}i.inverted.bordered.blue.icon,i.inverted.circular.blue.icon{background-color:#2185d0!important;color:#fff!important}i.violet.icon{color:#6435c9!important}i.inverted.violet.icon{color:#a291fb!important}i.inverted.bordered.violet.icon,i.inverted.circular.violet.icon{background-color:#6435c9!important;color:#fff!important}i.purple.icon{color:#a333c8!important}i.inverted.purple.icon{color:#dc73ff!important}i.inverted.bordered.purple.icon,i.inverted.circular.purple.icon{background-color:#a333c8!important;color:#fff!important}i.pink.icon{color:#e03997!important}i.inverted.pink.icon{color:#ff8edf!important}i.inverted.bordered.pink.icon,i.inverted.circular.pink.icon{background-color:#e03997!important;color:#fff!important}i.brown.icon{color:#a5673f!important}i.inverted.brown.icon{color:#d67c1c!important}i.inverted.bordered.brown.icon,i.inverted.circular.brown.icon{background-color:#a5673f!important;color:#fff!important}i.grey.icon{color:#767676!important}i.inverted.grey.icon{color:#dcddde!important}i.inverted.bordered.grey.icon,i.inverted.circular.grey.icon{background-color:#767676!important;color:#fff!important}i.black.icon{color:#1b1c1d!important}i.inverted.black.icon{color:#545454!important}i.inverted.bordeblack.black.icon,i.inverted.circular.black.icon{background-color:#1b1c1d!important;color:#fff!important}i.mini.icon,i.mini.icons{line-height:1;font-size:.71428571rem}i.tiny.icon,i.tiny.icons{line-height:1;font-size:.85714286rem}i.small.icon,i.small.icons{line-height:1;font-size:.92857143em}i.icon,i.icons{font-size:1em}i.large.icon,i.large.icons{line-height:1;vertical-align:middle;font-size:1.5em}i.big.icon,i.big.icons{line-height:1;vertical-align:middle;font-size:2em}i.huge.icon,i.huge.icons{line-height:1;vertical-align:middle;font-size:4em}i.massive.icon,i.massive.icons{line-height:1;vertical-align:middle;font-size:8em}i.icons{display:inline-block;position:relative;line-height:1}i.icons .icon{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);margin:0}i.icons .icon:first-child{position:static;width:auto;height:auto;vertical-align:top;-webkit-transform:none;-ms-transform:none;transform:none;margin-right:.25rem}i.icons .corner.icon{top:auto;left:auto;right:0;bottom:0;-webkit-transform:none;-ms-transform:none;transform:none;font-size:.45em;text-shadow:-1px -1px 0 #fff,1px -1px 0 #fff,-1px 1px 0 #fff,1px 1px 0 #fff}i.icons .inverted.corner.icon{text-shadow:-1px -1px 0 #1b1c1d,1px -1px 0 #1b1c1d,-1px 1px 0 #1b1c1d,1px 1px 0 #1b1c1d}i.icon.search:before{content:"\f002"}i.icon.mail.outline:before{content:"\f003"}i.icon.external:before{content:"\f08e"}i.icon.signal:before{content:"\f012"}i.icon.setting:before{content:"\f013"}i.icon.home:before{content:"\f015"}i.icon.inbox:before{content:"\f01c"}i.icon.browser:before{content:"\f022"}i.icon.tag:before{content:"\f02b"}i.icon.tags:before{content:"\f02c"}i.icon.calendar:before{content:"\f073"}i.icon.comment:before{content:"\f075"}i.icon.comments:before{content:"\f086"}i.icon.shop:before{content:"\f07a"}i.icon.privacy:before{content:"\f084"}i.icon.settings:before{content:"\f085"}i.icon.trophy:before{content:"\f091"}i.icon.payment:before{content:"\f09d"}i.icon.feed:before{content:"\f09e"}i.icon.alarm.outline:before{content:"\f0a2"}i.icon.tasks:before{content:"\f0ae"}i.icon.cloud:before{content:"\f0c2"}i.icon.lab:before{content:"\f0c3"}i.icon.mail:before{content:"\f0e0"}i.icon.idea:before{content:"\f0eb"}i.icon.dashboard:before{content:"\f0e4"}i.icon.sitemap:before{content:"\f0e8"}i.icon.alarm:before{content:"\f0f3"}i.icon.terminal:before{content:"\f120"}i.icon.code:before{content:"\f121"}i.icon.protect:before{content:"\f132"}i.icon.calendar.outline:before{content:"\f133"}i.icon.ticket:before{content:"\f145"}i.icon.external.square:before{content:"\f14c"}i.icon.map:before{content:"\f14e"}i.icon.bug:before{content:"\f188"}i.icon.mail.square:before{content:"\f199"}i.icon.history:before{content:"\f1da"}i.icon.options:before{content:"\f1de"}i.icon.comment.outline:before{content:"\f0e5"}i.icon.comments.outline:before{content:"\f0e6"}i.icon.text.telephone:before{content:"\f1e4"}i.icon.find:before{content:"\f1e5"}i.icon.wifi:before{content:"\f1eb"}i.icon.alarm.slash:before{content:"\f1f6"}i.icon.alarm.slash.outline:before{content:"\f1f7"}i.icon.copyright:before{content:"\f1f9"}i.icon.at:before{content:"\f1fa"}i.icon.eyedropper:before{content:"\f1fb"}i.icon.paint.brush:before{content:"\f1fc"}i.icon.heartbeat:before{content:"\f21e"}i.icon.download:before{content:"\f019"}i.icon.repeat:before{content:"\f01e"}i.icon.refresh:before{content:"\f021"}i.icon.lock:before{content:"\f023"}i.icon.bookmark:before{content:"\f02e"}i.icon.print:before{content:"\f02f"}i.icon.write:before{content:"\f040"}i.icon.theme:before{content:"\f043"}i.icon.adjust:before{content:"\f042"}i.icon.edit:before{content:"\f044"}i.icon.external.share:before{content:"\f045"}i.icon.ban:before{content:"\f05e"}i.icon.mail.forward:before,i.icon.share:before{content:"\f064"}i.icon.expand:before{content:"\f065"}i.icon.compress:before{content:"\f066"}i.icon.unhide:before{content:"\f06e"}i.icon.hide:before{content:"\f070"}i.icon.random:before{content:"\f074"}i.icon.retweet:before{content:"\f079"}i.icon.sign.out:before{content:"\f08b"}i.icon.pin:before{content:"\f08d"}i.icon.sign.in:before{content:"\f090"}i.icon.upload:before{content:"\f093"}i.icon.call:before{content:"\f095"}i.icon.call.square:before{content:"\f098"}i.icon.remove.bookmark:before{content:"\f097"}i.icon.unlock:before{content:"\f09c"}i.icon.configure:before{content:"\f0ad"}i.icon.filter:before{content:"\f0b0"}i.icon.wizard:before{content:"\f0d0"}i.icon.undo:before{content:"\f0e2"}i.icon.exchange:before{content:"\f0ec"}i.icon.cloud.download:before{content:"\f0ed"}i.icon.cloud.upload:before{content:"\f0ee"}i.icon.reply:before{content:"\f112"}i.icon.reply.all:before{content:"\f122"}i.icon.erase:before{content:"\f12d"}i.icon.unlock.alternate:before{content:"\f13e"}i.icon.archive:before{content:"\f187"}i.icon.translate:before{content:"\f1ab"}i.icon.recycle:before{content:"\f1b8"}i.icon.send:before{content:"\f1d8"}i.icon.send.outline:before{content:"\f1d9"}i.icon.share.alternate:before{content:"\f1e0"}i.icon.share.alternate.square:before{content:"\f1e1"}i.icon.wait:before{content:"\f017"}i.icon.write.square:before{content:"\f14b"}i.icon.share.square:before{content:"\f14d"}i.icon.add.to.cart:before{content:"\f217"}i.icon.in.cart:before{content:"\f218"}i.icon.add.user:before{content:"\f234"}i.icon.remove.user:before{content:"\f235"}i.icon.help.circle:before{content:"\f059"}i.icon.info.circle:before{content:"\f05a"}i.icon.warning:before{content:"\f12a"}i.icon.warning.circle:before{content:"\f06a"}i.icon.warning.sign:before{content:"\f071"}i.icon.help:before{content:"\f128"}i.icon.info:before{content:"\f129"}i.icon.announcement:before{content:"\f0a1"}i.icon.birthday:before{content:"\f1fd"}i.icon.users:before{content:"\f0c0"}i.icon.doctor:before{content:"\f0f0"}i.icon.child:before{content:"\f1ae"}i.icon.user:before{content:"\f007"}i.icon.handicap:before{content:"\f193"}i.icon.student:before{content:"\f19d"}i.icon.spy:before{content:"\f21b"}i.icon.female:before{content:"\f182"}i.icon.male:before{content:"\f183"}i.icon.woman:before{content:"\f221"}i.icon.man:before{content:"\f222"}i.icon.non.binary.transgender:before{content:"\f223"}i.icon.intergender:before{content:"\f224"}i.icon.transgender:before{content:"\f225"}i.icon.lesbian:before{content:"\f226"}i.icon.gay:before{content:"\f227"}i.icon.heterosexual:before{content:"\f228"}i.icon.other.gender:before{content:"\f229"}i.icon.other.gender.vertical:before{content:"\f22a"}i.icon.other.gender.horizontal:before{content:"\f22b"}i.icon.neuter:before{content:"\f22c"}i.icon.grid.layout:before{content:"\f00a"}i.icon.list.layout:before{content:"\f00b"}i.icon.block.layout:before{content:"\f009"}i.icon.zoom:before{content:"\f00e"}i.icon.zoom.out:before{content:"\f010"}i.icon.resize.vertical:before{content:"\f07d"}i.icon.resize.horizontal:before{content:"\f07e"}i.icon.maximize:before{content:"\f0b2"}i.icon.crop:before{content:"\f125"}i.icon.cocktail:before{content:"\f000"}i.icon.road:before{content:"\f018"}i.icon.flag:before{content:"\f024"}i.icon.book:before{content:"\f02d"}i.icon.gift:before{content:"\f06b"}i.icon.leaf:before{content:"\f06c"}i.icon.fire:before{content:"\f06d"}i.icon.plane:before{content:"\f072"}i.icon.magnet:before{content:"\f076"}i.icon.legal:before{content:"\f0e3"}i.icon.lemon:before{content:"\f094"}i.icon.world:before{content:"\f0ac"}i.icon.travel:before{content:"\f0b1"}i.icon.shipping:before{content:"\f0d1"}i.icon.money:before{content:"\f0d6"}i.icon.lightning:before{content:"\f0e7"}i.icon.rain:before{content:"\f0e9"}i.icon.treatment:before{content:"\f0f1"}i.icon.suitcase:before{content:"\f0f2"}i.icon.bar:before{content:"\f0fc"}i.icon.flag.outline:before{content:"\f11d"}i.icon.flag.checkered:before{content:"\f11e"}i.icon.puzzle:before{content:"\f12e"}i.icon.fire.extinguisher:before{content:"\f134"}i.icon.rocket:before{content:"\f135"}i.icon.anchor:before{content:"\f13d"}i.icon.bullseye:before{content:"\f140"}i.icon.sun:before{content:"\f185"}i.icon.moon:before{content:"\f186"}i.icon.fax:before{content:"\f1ac"}i.icon.life.ring:before{content:"\f1cd"}i.icon.bomb:before{content:"\f1e2"}i.icon.soccer:before{content:"\f1e3"}i.icon.calculator:before{content:"\f1ec"}i.icon.diamond:before{content:"\f219"}i.icon.crosshairs:before{content:"\f05b"}i.icon.asterisk:before{content:"\f069"}i.icon.certificate:before{content:"\f0a3"}i.icon.circle:before{content:"\f111"}i.icon.quote.left:before{content:"\f10d"}i.icon.quote.right:before{content:"\f10e"}i.icon.ellipsis.horizontal:before{content:"\f141"}i.icon.ellipsis.vertical:before{content:"\f142"}i.icon.cube:before{content:"\f1b2"}i.icon.cubes:before{content:"\f1b3"}i.icon.circle.notched:before{content:"\f1ce"}i.icon.circle.thin:before{content:"\f1db"}i.icon.square.outline:before{content:"\f096"}i.icon.square:before{content:"\f0c8"}i.icon.checkmark:before{content:"\f00c"}i.icon.remove:before{content:"\f00d"}i.icon.checkmark.box:before{content:"\f046"}i.icon.move:before{content:"\f047"}i.icon.add.circle:before{content:"\f055"}i.icon.minus.circle:before{content:"\f056"}i.icon.remove.circle:before{content:"\f057"}i.icon.check.circle:before{content:"\f058"}i.icon.remove.circle.outline:before{content:"\f05c"}i.icon.check.circle.outline:before{content:"\f05d"}i.icon.plus:before{content:"\f067"}i.icon.minus:before{content:"\f068"}i.icon.add.square:before{content:"\f0fe"}i.icon.radio:before{content:"\f10c"}i.icon.selected.radio:before{content:"\f192"}i.icon.minus.square:before{content:"\f146"}i.icon.minus.square.outline:before{content:"\f147"}i.icon.check.square:before{content:"\f14a"}i.icon.plus.square.outline:before{content:"\f196"}i.icon.toggle.off:before{content:"\f204"}i.icon.toggle.on:before{content:"\f205"}i.icon.film:before{content:"\f008"}i.icon.sound:before{content:"\f025"}i.icon.photo:before{content:"\f030"}i.icon.bar.chart:before{content:"\f080"}i.icon.camera.retro:before{content:"\f083"}i.icon.newspaper:before{content:"\f1ea"}i.icon.area.chart:before{content:"\f1fe"}i.icon.pie.chart:before{content:"\f200"}i.icon.line.chart:before{content:"\f201"}i.icon.arrow.circle.outline.down:before{content:"\f01a"}i.icon.arrow.circle.outline.up:before{content:"\f01b"}i.icon.chevron.left:before{content:"\f053"}i.icon.chevron.right:before{content:"\f054"}i.icon.arrow.left:before{content:"\f060"}i.icon.arrow.right:before{content:"\f061"}i.icon.arrow.up:before{content:"\f062"}i.icon.arrow.down:before{content:"\f063"}i.icon.chevron.up:before{content:"\f077"}i.icon.chevron.down:before{content:"\f078"}i.icon.pointing.right:before{content:"\f0a4"}i.icon.pointing.left:before{content:"\f0a5"}i.icon.pointing.up:before{content:"\f0a6"}i.icon.pointing.down:before{content:"\f0a7"}i.icon.arrow.circle.left:before{content:"\f0a8"}i.icon.arrow.circle.right:before{content:"\f0a9"}i.icon.arrow.circle.up:before{content:"\f0aa"}i.icon.arrow.circle.down:before{content:"\f0ab"}i.icon.caret.down:before{content:"\f0d7"}i.icon.caret.up:before{content:"\f0d8"}i.icon.caret.left:before{content:"\f0d9"}i.icon.caret.right:before{content:"\f0da"}i.icon.angle.double.left:before{content:"\f100"}i.icon.angle.double.right:before{content:"\f101"}i.icon.angle.double.up:before{content:"\f102"}i.icon.angle.double.down:before{content:"\f103"}i.icon.angle.left:before{content:"\f104"}i.icon.angle.right:before{content:"\f105"}i.icon.angle.up:before{content:"\f106"}i.icon.angle.down:before{content:"\f107"}i.icon.chevron.circle.left:before{content:"\f137"}i.icon.chevron.circle.right:before{content:"\f138"}i.icon.chevron.circle.up:before{content:"\f139"}i.icon.chevron.circle.down:before{content:"\f13a"}i.icon.toggle.down:before{content:"\f150"}i.icon.toggle.up:before{content:"\f151"}i.icon.toggle.right:before{content:"\f152"}i.icon.long.arrow.down:before{content:"\f175"}i.icon.long.arrow.up:before{content:"\f176"}i.icon.long.arrow.left:before{content:"\f177"}i.icon.long.arrow.right:before{content:"\f178"}i.icon.arrow.circle.outline.right:before{content:"\f18e"}i.icon.arrow.circle.outline.left:before{content:"\f190"}i.icon.toggle.left:before{content:"\f191"}i.icon.power:before{content:"\f011"}i.icon.trash:before{content:"\f1f8"}i.icon.trash.outline:before{content:"\f014"}i.icon.disk.outline:before{content:"\f0a0"}i.icon.desktop:before{content:"\f108"}i.icon.laptop:before{content:"\f109"}i.icon.tablet:before{content:"\f10a"}i.icon.mobile:before{content:"\f10b"}i.icon.game:before{content:"\f11b"}i.icon.keyboard:before{content:"\f11c"}i.icon.plug:before{content:"\f1e6"}i.icon.folder:before{content:"\f07b"}i.icon.folder.open:before{content:"\f07c"}i.icon.level.up:before{content:"\f148"}i.icon.level.down:before{content:"\f149"}i.icon.file:before{content:"\f15b"}i.icon.file.outline:before{content:"\f016"}i.icon.file.text:before{content:"\f15c"}i.icon.file.text.outline:before{content:"\f0f6"}i.icon.folder.outline:before{content:"\f114"}i.icon.folder.open.outline:before{content:"\f115"}i.icon.file.pdf.outline:before{content:"\f1c1"}i.icon.file.word.outline:before{content:"\f1c2"}i.icon.file.excel.outline:before{content:"\f1c3"}i.icon.file.powerpoint.outline:before{content:"\f1c4"}i.icon.file.image.outline:before{content:"\f1c5"}i.icon.file.archive.outline:before{content:"\f1c6"}i.icon.file.audio.outline:before{content:"\f1c7"}i.icon.file.video.outline:before{content:"\f1c8"}i.icon.file.code.outline:before{content:"\f1c9"}i.icon.barcode:before{content:"\f02a"}i.icon.qrcode:before{content:"\f029"}i.icon.fork:before{content:"\f126"}i.icon.html5:before{content:"\f13b"}i.icon.css3:before{content:"\f13c"}i.icon.rss:before{content:"\f09e"}i.icon.rss.square:before{content:"\f143"}i.icon.openid:before{content:"\f19b"}i.icon.database:before{content:"\f1c0"}i.icon.server:before{content:"\f233"}i.icon.heart:before{content:"\f004"}i.icon.star:before{content:"\f005"}i.icon.empty.star:before{content:"\f006"}i.icon.thumbs.outline.up:before{content:"\f087"}i.icon.thumbs.outline.down:before{content:"\f088"}i.icon.star.half:before{content:"\f089"}i.icon.empty.heart:before{content:"\f08a"}i.icon.smile:before{content:"\f118"}i.icon.frown:before{content:"\f119"}i.icon.meh:before{content:"\f11a"}i.icon.star.half.empty:before{content:"\f123"}i.icon.thumbs.up:before{content:"\f164"}i.icon.thumbs.down:before{content:"\f165"}i.icon.music:before{content:"\f001"}i.icon.video.play.outline:before{content:"\f01d"}i.icon.volume.off:before{content:"\f026"}i.icon.volume.down:before{content:"\f027"}i.icon.volume.up:before{content:"\f028"}i.icon.record:before{content:"\f03d"}i.icon.step.backward:before{content:"\f048"}i.icon.fast.backward:before{content:"\f049"}i.icon.backward:before{content:"\f04a"}i.icon.play:before{content:"\f04b"}i.icon.pause:before{content:"\f04c"}i.icon.stop:before{content:"\f04d"}i.icon.forward:before{content:"\f04e"}i.icon.fast.forward:before{content:"\f050"}i.icon.step.forward:before{content:"\f051"}i.icon.eject:before{content:"\f052"}i.icon.unmute:before{content:"\f130"}i.icon.mute:before{content:"\f131"}i.icon.video.play:before{content:"\f144"}i.icon.closed.captioning:before{content:"\f20a"}i.icon.marker:before{content:"\f041"}i.icon.coffee:before{content:"\f0f4"}i.icon.food:before{content:"\f0f5"}i.icon.building.outline:before{content:"\f0f7"}i.icon.hospital:before{content:"\f0f8"}i.icon.emergency:before{content:"\f0f9"}i.icon.first.aid:before{content:"\f0fa"}i.icon.military:before{content:"\f0fb"}i.icon.h:before{content:"\f0fd"}i.icon.location.arrow:before{content:"\f124"}i.icon.space.shuttle:before{content:"\f197"}i.icon.university:before{content:"\f19c"}i.icon.building:before{content:"\f1ad"}i.icon.paw:before{content:"\f1b0"}i.icon.spoon:before{content:"\f1b1"}i.icon.car:before{content:"\f1b9"}i.icon.taxi:before{content:"\f1ba"}i.icon.tree:before{content:"\f1bb"}i.icon.bicycle:before{content:"\f206"}i.icon.bus:before{content:"\f207"}i.icon.ship:before{content:"\f21a"}i.icon.motorcycle:before{content:"\f21c"}i.icon.street.view:before{content:"\f21d"}i.icon.hotel:before{content:"\f236"}i.icon.train:before{content:"\f238"}i.icon.subway:before{content:"\f239"}i.icon.table:before{content:"\f0ce"}i.icon.columns:before{content:"\f0db"}i.icon.sort:before{content:"\f0dc"}i.icon.sort.ascending:before{content:"\f0de"}i.icon.sort.descending:before{content:"\f0dd"}i.icon.sort.alphabet.ascending:before{content:"\f15d"}i.icon.sort.alphabet.descending:before{content:"\f15e"}i.icon.sort.content.ascending:before{content:"\f160"}i.icon.sort.content.descending:before{content:"\f161"}i.icon.sort.numeric.ascending:before{content:"\f162"}i.icon.sort.numeric.descending:before{content:"\f163"}i.icon.font:before{content:"\f031"}i.icon.bold:before{content:"\f032"}i.icon.italic:before{content:"\f033"}i.icon.text.height:before{content:"\f034"}i.icon.text.width:before{content:"\f035"}i.icon.align.left:before{content:"\f036"}i.icon.align.center:before{content:"\f037"}i.icon.align.right:before{content:"\f038"}i.icon.align.justify:before{content:"\f039"}i.icon.list:before{content:"\f03a"}i.icon.outdent:before{content:"\f03b"}i.icon.indent:before{content:"\f03c"}i.icon.linkify:before{content:"\f0c1"}i.icon.cut:before{content:"\f0c4"}i.icon.copy:before{content:"\f0c5"}i.icon.attach:before{content:"\f0c6"}i.icon.save:before{content:"\f0c7"}i.icon.content:before{content:"\f0c9"}i.icon.unordered.list:before{content:"\f0ca"}i.icon.ordered.list:before{content:"\f0cb"}i.icon.strikethrough:before{content:"\f0cc"}i.icon.underline:before{content:"\f0cd"}i.icon.paste:before{content:"\f0ea"}i.icon.unlink:before{content:"\f127"}i.icon.superscript:before{content:"\f12b"}i.icon.subscript:before{content:"\f12c"}i.icon.header:before{content:"\f1dc"}i.icon.paragraph:before{content:"\f1dd"}i.icon.euro:before{content:"\f153"}i.icon.pound:before{content:"\f154"}i.icon.dollar:before{content:"\f155"}i.icon.rupee:before{content:"\f156"}i.icon.yen:before{content:"\f157"}i.icon.ruble:before{content:"\f158"}i.icon.won:before{content:"\f159"}i.icon.lira:before{content:"\f195"}i.icon.shekel:before{content:"\f20b"}i.icon.paypal:before{content:"\f1ed"}i.icon.paypal.card:before{content:"\f1f4"}i.icon.google.wallet:before{content:"\f1ee"}i.icon.visa:before{content:"\f1f0"}i.icon.mastercard:before{content:"\f1f1"}i.icon.discover:before{content:"\f1f2"}i.icon.american.express:before{content:"\f1f3"}i.icon.stripe:before{content:"\f1f5"}i.icon.twitter.square:before{content:"\f081"}i.icon.facebook.square:before{content:"\f082"}i.icon.linkedin.square:before{content:"\f08c"}i.icon.github.square:before{content:"\f092"}i.icon.twitter:before{content:"\f099"}i.icon.facebook:before{content:"\f09a"}i.icon.github:before{content:"\f09b"}i.icon.pinterest:before{content:"\f0d2"}i.icon.pinterest.square:before{content:"\f0d3"}i.icon.google.plus.square:before{content:"\f0d4"}i.icon.google.plus:before{content:"\f0d5"}i.icon.linkedin:before{content:"\f0e1"}i.icon.github.alternate:before{content:"\f113"}i.icon.maxcdn:before{content:"\f136"}i.icon.bitcoin:before{content:"\f15a"}i.icon.youtube.square:before{content:"\f166"}i.icon.youtube:before{content:"\f167"}i.icon.xing:before{content:"\f168"}i.icon.xing.square:before{content:"\f169"}i.icon.youtube.play:before{content:"\f16a"}i.icon.dropbox:before{content:"\f16b"}i.icon.stack.overflow:before{content:"\f16c"}i.icon.instagram:before{content:"\f16d"}i.icon.flickr:before{content:"\f16e"}i.icon.adn:before{content:"\f170"}i.icon.bitbucket:before{content:"\f171"}i.icon.bitbucket.square:before{content:"\f172"}i.icon.tumblr:before{content:"\f173"}i.icon.tumblr.square:before{content:"\f174"}i.icon.apple:before{content:"\f179"}i.icon.windows:before{content:"\f17a"}i.icon.android:before{content:"\f17b"}i.icon.linux:before{content:"\f17c"}i.icon.dribbble:before{content:"\f17d"}i.icon.skype:before{content:"\f17e"}i.icon.foursquare:before{content:"\f180"}i.icon.trello:before{content:"\f181"}i.icon.gittip:before{content:"\f184"}i.icon.vk:before{content:"\f189"}i.icon.weibo:before{content:"\f18a"}i.icon.renren:before{content:"\f18b"}i.icon.pagelines:before{content:"\f18c"}i.icon.stack.exchange:before{content:"\f18d"}i.icon.vimeo:before{content:"\f194"}i.icon.slack:before{content:"\f198"}i.icon.wordpress:before{content:"\f19a"}i.icon.yahoo:before{content:"\f19e"}i.icon.google:before{content:"\f1a0"}i.icon.reddit:before{content:"\f1a1"}i.icon.reddit.square:before{content:"\f1a2"}i.icon.stumbleupon.circle:before{content:"\f1a3"}i.icon.stumbleupon:before{content:"\f1a4"}i.icon.delicious:before{content:"\f1a5"}i.icon.digg:before{content:"\f1a6"}i.icon.pied.piper:before{content:"\f1a7"}i.icon.pied.piper.alternate:before{content:"\f1a8"}i.icon.drupal:before{content:"\f1a9"}i.icon.joomla:before{content:"\f1aa"}i.icon.behance:before{content:"\f1b4"}i.icon.behance.square:before{content:"\f1b5"}i.icon.steam:before{content:"\f1b6"}i.icon.steam.square:before{content:"\f1b7"}i.icon.spotify:before{content:"\f1bc"}i.icon.deviantart:before{content:"\f1bd"}i.icon.soundcloud:before{content:"\f1be"}i.icon.vine:before{content:"\f1ca"}i.icon.codepen:before{content:"\f1cb"}i.icon.jsfiddle:before{content:"\f1cc"}i.icon.rebel:before{content:"\f1d0"}i.icon.empire:before{content:"\f1d1"}i.icon.git.square:before{content:"\f1d2"}i.icon.git:before{content:"\f1d3"}i.icon.hacker.news:before{content:"\f1d4"}i.icon.tencent.weibo:before{content:"\f1d5"}i.icon.qq:before{content:"\f1d6"}i.icon.wechat:before{content:"\f1d7"}i.icon.slideshare:before{content:"\f1e7"}i.icon.twitch:before{content:"\f1e8"}i.icon.yelp:before{content:"\f1e9"}i.icon.lastfm:before{content:"\f202"}i.icon.lastfm.square:before{content:"\f203"}i.icon.ioxhost:before{content:"\f208"}i.icon.angellist:before{content:"\f209"}i.icon.meanpath:before{content:"\f20c"}i.icon.buysellads:before{content:"\f20d"}i.icon.connectdevelop:before{content:"\f20e"}i.icon.dashcube:before{content:"\f210"}i.icon.forumbee:before{content:"\f211"}i.icon.leanpub:before{content:"\f212"}i.icon.sellsy:before{content:"\f213"}i.icon.shirtsinbulk:before{content:"\f214"}i.icon.simplybuilt:before{content:"\f215"}i.icon.skyatlas:before{content:"\f216"}i.icon.whatsapp:before{content:"\f232"}i.icon.viacoin:before{content:"\f237"}i.icon.medium:before{content:"\f23a"}i.icon.like:before{content:"\f004"}i.icon.favorite:before{content:"\f005"}i.icon.video:before{content:"\f008"}i.icon.check:before{content:"\f00c"}i.icon.cancel:before,i.icon.close:before,i.icon.delete:before,i.icon.x:before{content:"\f00d"}i.icon.user.cancel:before,i.icon.user.close:before,i.icon.user.delete:before,i.icon.user.times:before,i.icon.user.x:before{content:"\f235"}i.icon.magnify:before,i.icon.zoom.in:before{content:"\f00e"}i.icon.shutdown:before{content:"\f011"}i.icon.clock:before,i.icon.time:before{content:"\f017"}i.icon.play.circle.outline:before{content:"\f01d"}i.icon.headphone:before{content:"\f025"}i.icon.camera:before{content:"\f030"}i.icon.video.camera:before{content:"\f03d"}i.icon.picture:before{content:"\f03e"}i.icon.compose:before,i.icon.pencil:before{content:"\f040"}i.icon.point:before{content:"\f041"}i.icon.tint:before{content:"\f043"}i.icon.signup:before{content:"\f044"}i.icon.plus.circle:before{content:"\f055"}i.icon.dont:before{content:"\f05e"}i.icon.minimize:before{content:"\f066"}i.icon.add:before{content:"\f067"}i.icon.eye:before{content:"\f06e"}i.icon.attention:before{content:"\f06a"}i.icon.cart:before{content:"\f07a"}i.icon.shuffle:before{content:"\f074"}i.icon.chat:before,i.icon.talk:before{content:"\f075"}i.icon.shopping.cart:before{content:"\f07a"}i.icon.bar.graph:before{content:"\f080"}i.icon.area.graph:before{content:"\f1fe"}i.icon.pie.graph:before{content:"\f200"}i.icon.line.graph:before{content:"\f201"}i.icon.key:before{content:"\f084"}i.icon.cogs:before{content:"\f085"}i.icon.discussions:before{content:"\f086"}i.icon.like.outline:before{content:"\f087"}i.icon.dislike.outline:before{content:"\f088"}i.icon.heart.outline:before{content:"\f08a"}i.icon.log.out:before{content:"\f08b"}i.icon.thumb.tack:before{content:"\f08d"}i.icon.winner:before{content:"\f091"}i.icon.bookmark.outline:before{content:"\f097"}i.icon.phone:before{content:"\f095"}i.icon.phone.square:before{content:"\f098"}i.icon.credit.card:before{content:"\f09d"}i.icon.hdd.outline:before{content:"\f0a0"}i.icon.bullhorn:before{content:"\f0a1"}i.icon.bell:before{content:"\f0f3"}i.icon.bell.outline:before{content:"\f0a2"}i.icon.bell.slash:before{content:"\f1f6"}i.icon.bell.slash.outline:before{content:"\f1f7"}i.icon.hand.outline.right:before{content:"\f0a4"}i.icon.hand.outline.left:before{content:"\f0a5"}i.icon.hand.outline.up:before{content:"\f0a6"}i.icon.hand.outline.down:before{content:"\f0a7"}i.icon.globe:before{content:"\f0ac"}i.icon.wrench:before{content:"\f0ad"}i.icon.briefcase:before{content:"\f0b1"}i.icon.group:before{content:"\f0c0"}i.icon.flask:before{content:"\f0c3"}i.icon.bars:before,i.icon.sidebar:before{content:"\f0c9"}i.icon.list.ul:before{content:"\f0ca"}i.icon.list.ol:before,i.icon.numbered.list:before{content:"\f0cb"}i.icon.magic:before{content:"\f0d0"}i.icon.truck:before{content:"\f0d1"}i.icon.currency:before{content:"\f0d6"}i.icon.dropdown:before,i.icon.triangle.down:before{content:"\f0d7"}i.icon.triangle.up:before{content:"\f0d8"}i.icon.triangle.left:before{content:"\f0d9"}i.icon.triangle.right:before{content:"\f0da"}i.icon.envelope:before{content:"\f0e0"}i.icon.conversation:before{content:"\f0e6"}i.icon.umbrella:before{content:"\f0e9"}i.icon.lightbulb:before{content:"\f0eb"}i.icon.ambulance:before{content:"\f0f9"}i.icon.medkit:before{content:"\f0fa"}i.icon.fighter.jet:before{content:"\f0fb"}i.icon.beer:before{content:"\f0fc"}i.icon.plus.square:before{content:"\f0fe"}i.icon.computer:before{content:"\f108"}i.icon.asexual:before,i.icon.circle.outline:before,i.icon.intersex:before{content:"\f10c"}i.icon.spinner:before{content:"\f110"}i.icon.gamepad:before{content:"\f11b"}i.icon.star.half.full:before{content:"\f123"}i.icon.question:before{content:"\f128"}i.icon.eraser:before{content:"\f12d"}i.icon.microphone:before{content:"\f130"}i.icon.microphone.slash:before{content:"\f131"}i.icon.shield:before{content:"\f132"}i.icon.target:before{content:"\f140"}i.icon.play.circle:before{content:"\f144"}i.icon.pencil.square:before{content:"\f14b"}i.icon.compass:before{content:"\f14e"}i.icon.amex:before{content:"\f1f3"}i.icon.eur:before{content:"\f153"}i.icon.gbp:before{content:"\f154"}i.icon.usd:before{content:"\f155"}i.icon.inr:before{content:"\f156"}i.icon.cny:before,i.icon.jpy:before,i.icon.rmb:before{content:"\f157"}i.icon.rouble:before,i.icon.rub:before{content:"\f158"}i.icon.krw:before{content:"\f159"}i.icon.btc:before{content:"\f15a"}i.icon.ils:before,i.icon.sheqel:before{content:"\f20b"}i.icon.try:before{content:"\f195"}i.icon.zip:before{content:"\f187"}i.icon.dot.circle.outline:before{content:"\f192"}i.icon.sliders:before{content:"\f1de"}i.icon.wi-fi:before{content:"\f1eb"}i.icon.graduation:before{content:"\f19d"}i.icon.weixin:before{content:"\f1d7"}i.icon.binoculars:before{content:"\f1e5"}i.icon.gratipay:before{content:"\f184"}i.icon.genderless:before{content:"\f1db"}i.icon.teletype:before{content:"\f1e4"}i.icon.power.cord:before{content:"\f1e6"}i.icon.tty:before{content:"\f1e4"}i.icon.cc:before{content:"\f20a"}i.icon.plus.cart:before{content:"\f217"}i.icon.arrow.down.cart:before{content:"\f218"}i.icon.detective:before{content:"\f21b"}i.icon.venus:before{content:"\f221"}i.icon.mars:before{content:"\f222"}i.icon.mercury:before{content:"\f223"}i.icon.female.homosexual:before,i.icon.venus.double:before{content:"\f226"}i.icon.male.homosexual:before,i.icon.mars.double:before{content:"\f227"}i.icon.venus.mars:before{content:"\f228"}i.icon.mars.alternate:before,i.icon.mars.stroke:before{content:"\f229"}i.icon.mars.vertical:before{content:"\f22a"}i.icon.mars.horizontal:before{content:"\f22b"}i.icon.mars.stroke.vertical:before{content:"\f22a"}i.icon.mars.stroke.horizontal:before{content:"\f22b"}i.icon.facebook.official{content:"\f230"}i.icon.pinterest.official{content:"\f231"}i.icon.bed:before{content:"\f236"}.ui.image{position:relative;display:inline-block;vertical-align:middle;max-width:100%;background-color:transparent}img.ui.image{display:block}.ui.image img,.ui.image svg{display:block;max-width:100%;height:auto}.ui.hidden.image,.ui.hidden.images{display:none}.ui.disabled.image,.ui.disabled.images{cursor:default;opacity:.45}.ui.inline.image,.ui.inline.image img,.ui.inline.image svg{display:inline-block}.ui.top.aligned.image,.ui.top.aligned.image img,.ui.top.aligned.image svg,.ui.top.aligned.images .image{display:inline-block;vertical-align:top}.ui.middle.aligned.image,.ui.middle.aligned.image img,.ui.middle.aligned.image svg,.ui.middle.aligned.images .image{display:inline-block;vertical-align:middle}.ui.bottom.aligned.image,.ui.bottom.aligned.image img,.ui.bottom.aligned.image svg,.ui.bottom.aligned.images .image{display:inline-block;vertical-align:bottom}.ui.rounded.image,.ui.rounded.image>*,.ui.rounded.images .image,.ui.rounded.images .image>*{border-radius:.3125em}.ui.bordered.image img,.ui.bordered.image svg,.ui.bordered.images .image,.ui.bordered.images img,.ui.bordered.images svg,img.ui.bordered.image{border:1px solid rgba(0,0,0,.1)}.ui.circular.image,.ui.circular.images{overflow:hidden}.ui.circular.image,.ui.circular.image>*,.ui.circular.images .image,.ui.circular.images .image>*{border-radius:500rem}.ui.fluid.image,.ui.fluid.image img,.ui.fluid.image svg,.ui.fluid.images,.ui.fluid.images img,.ui.fluid.images svg{display:block;width:100%;height:auto}.ui.avatar.image,.ui.avatar.image img,.ui.avatar.image svg,.ui.avatar.images .image,.ui.avatar.images img,.ui.avatar.images svg{margin-right:.25em;display:inline-block;width:2em;height:2em;border-radius:500rem}.ui.spaced.image{display:inline-block!important;margin-left:.5em;margin-right:.5em}.ui[class*="left spaced"].image{margin-left:.5em;margin-right:0}.ui[class*="right spaced"].image{margin-left:0;margin-right:.5em}.ui.floated.image,.ui.floated.images{float:left;margin-right:1em;margin-bottom:1em}.ui.right.floated.image,.ui.right.floated.images{float:right;margin-right:0;margin-bottom:1em;margin-left:1em}.ui.floated.image:last-child,.ui.floated.images:last-child{margin-bottom:0}.ui.centered.image,.ui.centered.images{margin-left:auto;margin-right:auto}.ui.mini.image,.ui.mini.images .image,.ui.mini.images img,.ui.mini.images svg{width:35px;height:auto;font-size:.71428571rem}.ui.tiny.image,.ui.tiny.images .image,.ui.tiny.images img,.ui.tiny.images svg{width:80px;height:auto;font-size:.85714286rem}.ui.small.image,.ui.small.images .image,.ui.small.images img,.ui.small.images svg{width:150px;height:auto;font-size:.92857143rem}.ui.medium.image,.ui.medium.images .image,.ui.medium.images img,.ui.medium.images svg{width:300px;height:auto;font-size:1rem}.ui.large.image,.ui.large.images .image,.ui.large.images img,.ui.large.images svg{width:450px;height:auto;font-size:1.14285714rem}.ui.big.image,.ui.big.images .image,.ui.big.images img,.ui.big.images svg{width:600px;height:auto;font-size:1.28571429rem}.ui.huge.image,.ui.huge.images .image,.ui.huge.images img,.ui.huge.images svg{width:800px;height:auto;font-size:1.42857143rem}.ui.massive.image,.ui.massive.images .image,.ui.massive.images img,.ui.massive.images svg{width:960px;height:auto;font-size:1.71428571rem}.ui.images{font-size:0;margin:0 -.25rem}.ui.images .image,.ui.images img,.ui.images svg{display:inline-block;margin:0 .25rem .5rem}.ui.input{position:relative;font-weight:400;font-style:normal;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;color:rgba(0,0,0,.87)}.ui.input input{margin:0;max-width:100%;-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0);text-align:left;line-height:1.2142em;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;padding:.67861429em 1em;background:#fff;border:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87);border-radius:.28571429rem;-webkit-transition:box-shadow .1s ease,border-color .1s ease;transition:box-shadow .1s ease,border-color .1s ease;box-shadow:none}.ui.input input::-webkit-input-placeholder{color:rgba(0,0,0,.4)}.ui.input input::-moz-placeholder{color:rgba(0,0,0,.4)}.ui.input input::-ms-input-placeholder{color:rgba(0,0,0,.4)}.ui.disabled.input,.ui.input input[disabled]{opacity:.45}.ui.disabled.input input{pointer-events:none}.ui.input input:active,.ui.input.down input{border-color:rgba(0,0,0,.3);background:#fafafa;color:rgba(0,0,0,.87);box-shadow:none}.ui.loading.loading.input>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.loading.input>i.icon:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.input input:focus,.ui.input.focus input{border-color:#85b7d9;background:#fff;color:rgba(0,0,0,.8);box-shadow:none}.ui.input input:focus::-webkit-input-placeholder,.ui.input.focus input::-webkit-input-placeholder{color:rgba(0,0,0,.87)}.ui.input input:focus::-moz-placeholder,.ui.input.focus input::-moz-placeholder{color:rgba(0,0,0,.87)}.ui.input input:focus::-ms-input-placeholder,.ui.input.focus input::-ms-input-placeholder{color:rgba(0,0,0,.87)}.ui.input.error input{background-color:#fff6f6;border-color:#e0b4b4;color:#9f3a38;box-shadow:none}.ui.input.error input::-webkit-input-placeholder{color:#e7bdbc}.ui.input.error input::-moz-placeholder{color:#e7bdbc}.ui.input.error input::-ms-input-placeholder{color:#e7bdbc}.ui.input.error input:focus::-webkit-input-placeholder{color:#da9796}.ui.input.error input:focus::-moz-placeholder{color:#da9796}.ui.input.error input:focus::-ms-input-placeholder{color:#da9796}.ui.transparent.input input{border-color:transparent!important;background-color:transparent!important;padding:0!important;box-shadow:none!important}.ui.transparent.icon.input>i.icon{width:1.1em}.ui.transparent.icon.input>input{padding-left:0!important;padding-right:2em!important}.ui.transparent[class*="left icon"].input>input{padding-left:2em!important;padding-right:0!important}.ui.transparent.inverted.input{color:#fff}.ui.transparent.inverted.input input{color:inherit}.ui.transparent.inverted.input input::-webkit-input-placeholder{color:rgba(255,255,255,.5)}.ui.transparent.inverted.input input::-moz-placeholder{color:rgba(255,255,255,.5)}.ui.transparent.inverted.input input::-ms-input-placeholder{color:rgba(255,255,255,.5)}.ui.icon.input>i.icon{cursor:default;position:absolute;line-height:1;text-align:center;top:0;right:0;margin:0;height:100%;width:2.67142857em;opacity:.5;border-radius:0 .28571429rem .28571429rem 0;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}.ui.icon.input>i.icon:not(.link){pointer-events:none}.ui.icon.input input{padding-right:2.67142857em!important}.ui.icon.input>i.icon:after,.ui.icon.input>i.icon:before{left:0;position:absolute;text-align:center;top:50%;width:100%;margin-top:-.5em}.ui.icon.input>i.link.icon{cursor:pointer}.ui.icon.input>i.circular.icon{top:.35em;right:.5em}.ui[class*="left icon"].input>i.icon{right:auto;left:1px;border-radius:.28571429rem 0 0 .28571429rem}.ui[class*="left icon"].input>i.circular.icon{right:auto;left:.5em}.ui[class*="left icon"].input>input{padding-left:2.67142857em!important;padding-right:1em!important}.ui.icon.input>input:focus~i.icon{opacity:1}.ui.labeled.input>.label{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;margin:0;font-size:1em}.ui.labeled.input>.label:not(.corner){padding-top:.78571429em;padding-bottom:.78571429em}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child+input{border-top-left-radius:0;border-bottom-left-radius:0;border-left-color:transparent}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child+input:focus{border-left-color:#85b7d9}.ui[class*="right labeled"].input input{border-top-right-radius:0!important;border-bottom-right-radius:0!important;border-right-color:transparent!important}.ui[class*="right labeled"].input input+.label{border-top-left-radius:0;border-bottom-left-radius:0}.ui[class*="right labeled"].input input:focus{border-right-color:#85b7d9!important}.ui.labeled.input .corner.label{top:1px;right:1px;font-size:.64285714em;border-radius:0 .28571429rem 0 0}.ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input input{padding-right:2.5em!important}.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"])>input{padding-right:3.25em!important}.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"])>.icon{margin-right:1.25em}.ui[class*="left corner labeled"].labeled.input input{padding-left:2.5em!important}.ui[class*="left corner labeled"].icon.input>input{padding-left:3.25em!important}.ui[class*="left corner labeled"].icon.input>.icon{margin-left:1.25em}.ui.input>.ui.corner.label{top:1px;right:1px}.ui.input>.ui.left.corner.label{right:auto;left:1px}.ui.action.input>.button,.ui.action.input>.buttons{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.ui.action.input>.button,.ui.action.input>.buttons>.button{padding-top:.78571429em;padding-bottom:.78571429em;margin:0}.ui.action.input:not([class*="left action"])>input{border-top-right-radius:0!important;border-bottom-right-radius:0!important;border-right-color:transparent!important}.ui.action.input:not([class*="left action"])>.button,.ui.action.input:not([class*="left action"])>.buttons>.button,.ui.action.input:not([class*="left action"])>.dropdown{border-radius:0}.ui.action.input:not([class*="left action"])>.button:last-child,.ui.action.input:not([class*="left action"])>.buttons:last-child>.button,.ui.action.input:not([class*="left action"])>.dropdown:last-child{border-radius:0 .28571429rem .28571429rem 0}.ui.action.input:not([class*="left action"]) input:focus{border-right-color:#85b7d9!important}.ui[class*="left action"].input>input{border-top-left-radius:0!important;border-bottom-left-radius:0!important;border-left-color:transparent!important}.ui[class*="left action"].input>.button,.ui[class*="left action"].input>.buttons>.button,.ui[class*="left action"].input>.dropdown{border-radius:0}.ui[class*="left action"].input>.button:first-child,.ui[class*="left action"].input>.buttons:first-child>.button,.ui[class*="left action"].input>.dropdown:first-child{border-radius:.28571429rem 0 0 .28571429rem}.ui[class*="left action"].input>input:focus{border-left-color:#85b7d9!important}.ui.inverted.input input{border:none}.ui.fluid.input{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.fluid.input>input{width:0!important}.ui.mini.input{font-size:.71428571em}.ui.small.input{font-size:.92857143em}.ui.input{font-size:1em}.ui.large.input{font-size:1.14285714em}.ui.big.input{font-size:1.28571429em}.ui.huge.input{font-size:1.42857143em}.ui.massive.input{font-size:1.71428571em}.ui.label{display:inline-block;white-space:nowrap;line-height:1;vertical-align:baseline;margin:0 .14285714em;background-color:#e8e8e8;background-image:none;padding:.5833em .833em;color:rgba(0,0,0,.6);text-transform:none;font-weight:700;border:0 solid transparent;border-radius:.28571429rem;-webkit-transition:background .1s ease;transition:background .1s ease}.ui.label:first-child{margin-left:0}.ui.label:last-child{margin-right:0}a.ui.label{cursor:pointer}.ui.label>a{cursor:pointer;color:inherit;opacity:.5;-webkit-transition:.1s opacity ease;transition:.1s opacity ease}.ui.label>a:hover{opacity:1}.ui.label>img{width:auto!important;vertical-align:middle;height:2.1666em!important}.ui.label>.icon{width:auto;margin:0 .75em 0 0}.ui.label>.detail{display:inline-block;vertical-align:top;font-weight:700;margin-left:1em;opacity:.8}.ui.label>.detail .icon{margin:0 .25em 0 0}.ui.label>.close.icon,.ui.label>.delete.icon{cursor:pointer;margin-right:0;margin-left:.5em;font-size:.92857143em;opacity:.5;-webkit-transition:background .1s ease;transition:background .1s ease}.ui.label>.delete.icon:hover{opacity:1}.ui.labels>.label{margin:0 .5em .5em 0}.ui.header>.ui.label{margin-top:-.29165em}.ui.attached.segment>.ui.top.left.attached.label,.ui.bottom.attached.segment>.ui.top.left.attached.label{border-top-left-radius:0}.ui.attached.segment>.ui.top.right.attached.label,.ui.bottom.attached.segment>.ui.top.right.attached.label{border-top-right-radius:0}.ui.top.attached.segment>.ui.bottom.left.attached.label{border-bottom-left-radius:0}.ui.top.attached.segment>.ui.bottom.right.attached.label{border-bottom-right-radius:0}.ui.top.attached.label:first-child+:not(.attached){margin-top:2rem!important}.ui.bottom.attached.label:first-child~:last-child:not(.attached){margin-top:0;margin-bottom:2rem!important}.ui.image.label{width:auto!important;margin-top:0;margin-bottom:0;max-width:9999px;vertical-align:baseline;text-transform:none;background:#e8e8e8;padding:.5833em .833em .5833em .5em;border-radius:.28571429rem;box-shadow:none}.ui.image.label img{display:inline-block;vertical-align:top;height:2.1666em;margin:-.5833em .5em -.5833em -.5em;border-radius:.28571429rem 0 0 .28571429rem}.ui.image.label .detail{background:rgba(0,0,0,.1);margin:-.5833em -.833em -.5833em .5em;padding:.5833em .833em;border-radius:0 .28571429rem .28571429rem 0}.ui.tag.label,.ui.tag.labels .label{margin-left:1em;position:relative;padding-left:1.5em;padding-right:1.5em;border-radius:0 .28571429rem .28571429rem 0;-webkit-transition:none;transition:none}.ui.tag.label:before,.ui.tag.labels .label:before{position:absolute;-webkit-transform:translateY(-50%) translateX(50%) rotate(-45deg);-ms-transform:translateY(-50%) translateX(50%) rotate(-45deg);transform:translateY(-50%) translateX(50%) rotate(-45deg);top:50%;right:100%;content:'';background-color:inherit;background-image:none;width:1.56em;height:1.56em;-webkit-transition:none;transition:none}.ui.tag.label:after,.ui.tag.labels .label:after{position:absolute;content:'';top:50%;left:-.25em;margin-top:-.25em;background-color:#fff!important;width:.5em;height:.5em;box-shadow:0 -1px 1px 0 rgba(0,0,0,.3);border-radius:500rem}.ui.corner.label{position:absolute;top:0;right:0;margin:0;padding:0;text-align:center;border-color:#e8e8e8;width:4em;height:4em;z-index:1;-webkit-transition:border-color .1s ease;transition:border-color .1s ease;background-color:transparent!important}.ui.corner.label:after{position:absolute;content:"";right:0;top:0;z-index:-1;width:0;height:0;background-color:transparent!important;border-top:0 solid transparent;border-right:4em solid transparent;border-bottom:4em solid transparent;border-left:0 solid transparent;border-right-color:inherit;-webkit-transition:border-color .1s ease;transition:border-color .1s ease}.ui.corner.label .icon{cursor:default;position:relative;top:.64285714em;left:.78571429em;font-size:1.14285714em;margin:0}.ui.left.corner.label,.ui.left.corner.label:after{right:auto;left:0}.ui.left.corner.label:after{border-top:4em solid transparent;border-right:4em solid transparent;border-bottom:0 solid transparent;border-left:0 solid transparent;border-top-color:inherit}.ui.left.corner.label .icon{left:-.78571429em}.ui.segment>.ui.corner.label{top:-1px;right:-1px}.ui.segment>.ui.left.corner.label{right:auto;left:-1px}.ui.ribbon.label{position:relative;margin:0;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;border-radius:0 .28571429rem .28571429rem 0;border-color:rgba(0,0,0,.15)}.ui.ribbon.label:after{position:absolute;content:'';top:100%;left:0;background-color:transparent!important;border-style:solid;border-width:0 1.2em 1.2em 0;border-color:transparent;border-right-color:inherit;width:0;height:0}.ui.ribbon.label{left:calc(-1rem - 1.2em);margin-right:-1.2em;padding-left:calc(1rem + 1.2em);padding-right:1.2em}.ui[class*="right ribbon"].label{left:calc(100% + 1rem + 1.2em);padding-left:1.2em;padding-right:calc(1rem + 1.2em);text-align:left;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%);border-radius:.28571429rem 0 0 .28571429rem}.ui[class*="right ribbon"].label:after{left:auto;right:0;border-style:solid;border-width:1.2em 1.2em 0 0;border-color:transparent;border-top-color:inherit}.ui.card .image>.ribbon.label,.ui.image>.ribbon.label{position:absolute;top:1rem}.ui.card .image>.ui.ribbon.label,.ui.image>.ui.ribbon.label{left:calc(.05rem - 1.2em)}.ui.card .image>.ui[class*="right ribbon"].label,.ui.image>.ui[class*="right ribbon"].label{left:calc(100% + -.05rem + 1.2em);padding-left:.833em}.ui.table td>.ui.ribbon.label{left:calc(-.71428571em - 1.2em)}.ui.table td>.ui[class*="right ribbon"].label{left:calc(100% + .71428571em + 1.2em);padding-left:.833em}.ui.attached.label,.ui[class*="top attached"].label{width:100%;position:absolute;margin:0;top:0;left:0;padding:.75em 1em;border-radius:.21428571rem .21428571rem 0 0}.ui[class*="bottom attached"].label{top:auto;bottom:0;border-radius:0 0 .21428571rem .21428571rem}.ui[class*="top left attached"].label{width:auto;margin-top:0!important;border-radius:.21428571rem 0 .28571429rem}.ui[class*="top right attached"].label{width:auto;left:auto;right:0;border-radius:0 .21428571rem 0 .28571429rem}.ui[class*="bottom left attached"].label{width:auto;top:auto;bottom:0;border-radius:0 .28571429rem 0 .21428571rem}.ui[class*="bottom right attached"].label{top:auto;bottom:0;left:auto;right:0;width:auto;border-radius:.28571429rem 0 .21428571rem}.ui.label.disabled{opacity:.5}a.ui.label:hover,a.ui.labels .label:hover{background-color:#e0e0e0;border-color:#e0e0e0;background-image:none;color:rgba(0,0,0,.8)}.ui.labels a.label:hover:before,a.ui.label:hover:before{color:rgba(0,0,0,.8)}.ui.active.label{background-color:#d0d0d0;border-color:#d0d0d0;background-image:none;color:rgba(0,0,0,.95)}.ui.active.label:before{background-color:#d0d0d0;background-image:none;color:rgba(0,0,0,.95)}a.ui.active.label:hover,a.ui.labels .active.label:hover{background-color:#c8c8c8;border-color:#c8c8c8;background-image:none;color:rgba(0,0,0,.95)}.ui.labels a.active.label:ActiveHover:before,a.ui.active.label:ActiveHover:before{background-color:#c8c8c8;background-image:none;color:rgba(0,0,0,.95)}.ui.label.visible,.ui.labels.visible .label{display:inline-block!important}.ui.label.hidden,.ui.labels.hidden .label{display:none!important}.ui.red.label,.ui.red.labels .label{background-color:#db2828!important;border-color:#db2828!important;color:#fff!important}.ui.red.labels .label:hover,a.ui.red.label:hover{background-color:#d01919!important;border-color:#d01919!important;color:#fff!important}.ui.red.corner.label,.ui.red.corner.label:hover{background-color:transparent!important}.ui.red.ribbon.label{border-color:#b21e1e!important}.ui.basic.red.label{background-color:#fff!important;color:#db2828!important;border-color:#db2828!important}.ui.basic.red.labels a.label:hover,a.ui.basic.red.label:hover{background-color:#fff!important;color:#d01919!important;border-color:#d01919!important}.ui.orange.label,.ui.orange.labels .label{background-color:#f2711c!important;border-color:#f2711c!important;color:#fff!important}.ui.orange.labels .label:hover,a.ui.orange.label:hover{background-color:#f26202!important;border-color:#f26202!important;color:#fff!important}.ui.orange.corner.label,.ui.orange.corner.label:hover{background-color:transparent!important}.ui.orange.ribbon.label{border-color:#cf590c!important}.ui.basic.orange.label{background-color:#fff!important;color:#f2711c!important;border-color:#f2711c!important}.ui.basic.orange.labels a.label:hover,a.ui.basic.orange.label:hover{background-color:#fff!important;color:#f26202!important;border-color:#f26202!important}.ui.yellow.label,.ui.yellow.labels .label{background-color:#fbbd08!important;border-color:#fbbd08!important;color:#fff!important}.ui.yellow.labels .label:hover,a.ui.yellow.label:hover{background-color:#eaae00!important;border-color:#eaae00!important;color:#fff!important}.ui.yellow.corner.label,.ui.yellow.corner.label:hover{background-color:transparent!important}.ui.yellow.ribbon.label{border-color:#cd9903!important}.ui.basic.yellow.label{background-color:#fff!important;color:#fbbd08!important;border-color:#fbbd08!important}.ui.basic.yellow.labels a.label:hover,a.ui.basic.yellow.label:hover{background-color:#fff!important;color:#eaae00!important;border-color:#eaae00!important}.ui.olive.label,.ui.olive.labels .label{background-color:#b5cc18!important;border-color:#b5cc18!important;color:#fff!important}.ui.olive.labels .label:hover,a.ui.olive.label:hover{background-color:#a7bd0d!important;border-color:#a7bd0d!important;color:#fff!important}.ui.olive.corner.label,.ui.olive.corner.label:hover{background-color:transparent!important}.ui.olive.ribbon.label{border-color:#198f35!important}.ui.basic.olive.label{background-color:#fff!important;color:#b5cc18!important;border-color:#b5cc18!important}.ui.basic.olive.labels a.label:hover,a.ui.basic.olive.label:hover{background-color:#fff!important;color:#a7bd0d!important;border-color:#a7bd0d!important}.ui.green.label,.ui.green.labels .label{background-color:#21ba45!important;border-color:#21ba45!important;color:#fff!important}.ui.green.labels .label:hover,a.ui.green.label:hover{background-color:#16ab39!important;border-color:#16ab39!important;color:#fff!important}.ui.green.corner.label,.ui.green.corner.label:hover{background-color:transparent!important}.ui.green.ribbon.label{border-color:#198f35!important}.ui.basic.green.label{background-color:#fff!important;color:#21ba45!important;border-color:#21ba45!important}.ui.basic.green.labels a.label:hover,a.ui.basic.green.label:hover{background-color:#fff!important;color:#16ab39!important;border-color:#16ab39!important}.ui.teal.label,.ui.teal.labels .label{background-color:#00b5ad!important;border-color:#00b5ad!important;color:#fff!important}.ui.teal.labels .label:hover,a.ui.teal.label:hover{background-color:#009c95!important;border-color:#009c95!important;color:#fff!important}.ui.teal.corner.label,.ui.teal.corner.label:hover{background-color:transparent!important}.ui.teal.ribbon.label{border-color:#00827c!important}.ui.basic.teal.label{background-color:#fff!important;color:#00b5ad!important;border-color:#00b5ad!important}.ui.basic.teal.labels a.label:hover,a.ui.basic.teal.label:hover{background-color:#fff!important;color:#009c95!important;border-color:#009c95!important}.ui.blue.label,.ui.blue.labels .label{background-color:#2185d0!important;border-color:#2185d0!important;color:#fff!important}.ui.blue.labels .label:hover,a.ui.blue.label:hover{background-color:#1678c2!important;border-color:#1678c2!important;color:#fff!important}.ui.blue.corner.label,.ui.blue.corner.label:hover{background-color:transparent!important}.ui.blue.ribbon.label{border-color:#1a69a4!important}.ui.basic.blue.label{background-color:#fff!important;color:#2185d0!important;border-color:#2185d0!important}.ui.basic.blue.labels a.label:hover,a.ui.basic.blue.label:hover{background-color:#fff!important;color:#1678c2!important;border-color:#1678c2!important}.ui.violet.label,.ui.violet.labels .label{background-color:#6435c9!important;border-color:#6435c9!important;color:#fff!important}.ui.violet.labels .label:hover,a.ui.violet.label:hover{background-color:#5829bb!important;border-color:#5829bb!important;color:#fff!important}.ui.violet.corner.label,.ui.violet.corner.label:hover{background-color:transparent!important}.ui.violet.ribbon.label{border-color:#502aa1!important}.ui.basic.violet.label{background-color:#fff!important;color:#6435c9!important;border-color:#6435c9!important}.ui.basic.violet.labels a.label:hover,a.ui.basic.violet.label:hover{background-color:#fff!important;color:#5829bb!important;border-color:#5829bb!important}.ui.purple.label,.ui.purple.labels .label{background-color:#a333c8!important;border-color:#a333c8!important;color:#fff!important}.ui.purple.labels .label:hover,a.ui.purple.label:hover{background-color:#9627ba!important;border-color:#9627ba!important;color:#fff!important}.ui.purple.corner.label,.ui.purple.corner.label:hover{background-color:transparent!important}.ui.purple.ribbon.label{border-color:#82299f!important}.ui.basic.purple.label{background-color:#fff!important;color:#a333c8!important;border-color:#a333c8!important}.ui.basic.purple.labels a.label:hover,a.ui.basic.purple.label:hover{background-color:#fff!important;color:#9627ba!important;border-color:#9627ba!important}.ui.pink.label,.ui.pink.labels .label{background-color:#e03997!important;border-color:#e03997!important;color:#fff!important}.ui.pink.labels .label:hover,a.ui.pink.label:hover{background-color:#e61a8d!important;border-color:#e61a8d!important;color:#fff!important}.ui.pink.corner.label,.ui.pink.corner.label:hover{background-color:transparent!important}.ui.pink.ribbon.label{border-color:#c71f7e!important}.ui.basic.pink.label{background-color:#fff!important;color:#e03997!important;border-color:#e03997!important}.ui.basic.pink.labels a.label:hover,a.ui.basic.pink.label:hover{background-color:#fff!important;color:#e61a8d!important;border-color:#e61a8d!important}.ui.brown.label,.ui.brown.labels .label{background-color:#a5673f!important;border-color:#a5673f!important;color:#fff!important}.ui.brown.labels .label:hover,a.ui.brown.label:hover{background-color:#975b33!important;border-color:#975b33!important;color:#fff!important}.ui.brown.corner.label,.ui.brown.corner.label:hover{background-color:transparent!important}.ui.brown.ribbon.label{border-color:#805031!important}.ui.basic.brown.label{background-color:#fff!important;color:#a5673f!important;border-color:#a5673f!important}.ui.basic.brown.labels a.label:hover,a.ui.basic.brown.label:hover{background-color:#fff!important;color:#975b33!important;border-color:#975b33!important}.ui.grey.label,.ui.grey.labels .label{background-color:#767676!important;border-color:#767676!important;color:#fff!important}.ui.grey.labels .label:hover,a.ui.grey.label:hover{background-color:#838383!important;border-color:#838383!important;color:#fff!important}.ui.grey.corner.label,.ui.grey.corner.label:hover{background-color:transparent!important}.ui.grey.ribbon.label{border-color:#805031!important}.ui.basic.grey.label{background-color:#fff!important;color:#767676!important;border-color:#767676!important}.ui.basic.grey.labels a.label:hover,a.ui.basic.grey.label:hover{background-color:#fff!important;color:#838383!important;border-color:#838383!important}.ui.black.label,.ui.black.labels .label{background-color:#1b1c1d!important;border-color:#1b1c1d!important;color:#fff!important}.ui.black.labels .label:hover,a.ui.black.label:hover{background-color:#27292a!important;border-color:#27292a!important;color:#fff!important}.ui.black.corner.label,.ui.black.corner.label:hover{background-color:transparent!important}.ui.black.ribbon.label{border-color:#805031!important}.ui.basic.black.label{background-color:#fff!important;color:#1b1c1d!important;border-color:#1b1c1d!important}.ui.basic.black.labels a.label:hover,a.ui.basic.black.label:hover{background-color:#fff!important;color:#27292a!important;border-color:#27292a!important}.ui.basic.label{background:#fff;border:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87);box-shadow:none}a.ui.basic.label:hover{text-decoration:none;background:#fff;color:#1e70bf;box-shadow:1px solid rgba(34,36,38,.15);box-shadow:none}.ui.basic.pointing.label:before{border-color:inherit}.ui.fluid.labels>.label,.ui.label.fluid{width:100%;box-sizing:border-box}.ui.inverted.label,.ui.inverted.labels .label{color:rgba(255,255,255,.9)!important}.ui.horizontal.label,.ui.horizontal.labels .label{margin:0 .5em 0 0;padding:.4em .833em;min-width:3em;text-align:center}.ui.circular.label,.ui.circular.labels .label{min-width:2em;min-height:2em;padding:.5em!important;line-height:1em;text-align:center;border-radius:500rem}.ui.empty.circular.label,.ui.empty.circular.labels .label{min-width:0;min-height:0;overflow:hidden;width:.5em;height:.5em;vertical-align:baseline}.ui.pointing.label{position:relative}.ui.attached.pointing.label{position:absolute}.ui.pointing.label:before{background-color:inherit;border-style:solid;border-color:inherit;position:absolute;content:'';-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);background-image:none;z-index:2;width:.6666em;height:.6666em;-webkit-transition:background .1s ease;transition:background .1s ease}.ui.pointing.label,.ui[class*="pointing above"].label{margin-top:1em}.ui.pointing.label:before,.ui[class*="pointing above"].label:before{border-width:1px 0 0 1px;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);top:0;left:50%}.ui[class*="bottom pointing"].label,.ui[class*="pointing below"].label{margin-top:0;margin-bottom:1em}.ui[class*="bottom pointing"].label:before,.ui[class*="pointing below"].label:before{border-width:0 1px 1px 0;right:auto;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);top:100%;left:50%}.ui[class*="left pointing"].label{margin-top:0;margin-left:.6666em}.ui[class*="left pointing"].label:before{border-width:0 0 1px 1px;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);bottom:auto;right:auto;top:50%;left:0}.ui[class*="right pointing"].label{margin-top:0;margin-right:.6666em}.ui[class*="right pointing"].label:before{border-width:1px 1px 0 0;-webkit-transform:translateX(50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(50%) translateY(-50%) rotate(45deg);transform:translateX(50%) translateY(-50%) rotate(45deg);top:50%;right:0;bottom:auto;left:auto}.ui.basic.pointing.label:before,.ui.basic[class*="pointing above"].label:before{margin-top:-1px}.ui.basic[class*="bottom pointing"].label:before,.ui.basic[class*="pointing below"].label:before{bottom:auto;top:100%;margin-top:1px}.ui.basic[class*="left pointing"].label:before{top:50%;left:-1px}.ui.basic[class*="right pointing"].label:before{top:50%;right:-1px}.ui.floating.label{position:absolute;z-index:100;top:-1em;left:100%;margin:0 0 0 -1.5em!important}.ui.mini.label,.ui.mini.labels .label{font-size:.64285714rem}.ui.tiny.label,.ui.tiny.labels .label{font-size:.71428571rem}.ui.small.label,.ui.small.labels .label{font-size:.78571429rem}.ui.label,.ui.labels .label{font-size:.85714286rem}.ui.large.label,.ui.large.labels .label{font-size:1rem}.ui.big.label,.ui.big.labels .label{font-size:1.28571429rem}.ui.huge.label,.ui.huge.labels .label{font-size:1.42857143rem}.ui.massive.label,.ui.massive.labels .label{font-size:1.71428571rem}.ui.list,ol.ui.list,ul.ui.list{list-style-type:none;margin:1em 0;padding:0}.ui.list:first-child,ol.ui.list:first-child,ul.ui.list:first-child{margin-top:0;padding-top:0}.ui.list:last-child,ol.ui.list:last-child,ul.ui.list:last-child{margin-bottom:0;padding-bottom:0}.ui.list .list>.item,.ui.list>.item,ol.ui.list li,ul.ui.list li{display:list-item;table-layout:fixed;list-style-type:none;list-style-position:outside;padding:.21428571em 0;line-height:1.14285714em}.ui.list>.item:after,.ui.list>.list>.item,ol.ui.list>li:first-child:after,ul.ui.list>li:first-child:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.list .list>.item:first-child,.ui.list>.item:first-child,ol.ui.list li:first-child,ul.ui.list li:first-child{padding-top:0}.ui.list .list>.item:last-child,.ui.list>.item:last-child,ol.ui.list li:last-child,ul.ui.list li:last-child{padding-bottom:0}.ui.list .list,ol.ui.list ol,ul.ui.list ul{clear:both;margin:0;padding:.75em 0 .25em .5em}.ui.list .list>.item,ol.ui.list ol li,ul.ui.list ul li{padding:.14285714em 0;line-height:inherit}.ui.list .list>.item>i.icon,.ui.list>.item>i.icon{display:table-cell;margin:0;padding-top:.07142857em;padding-right:.28571429em;vertical-align:top;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.list .list>.item>i.icon:only-child,.ui.list>.item>i.icon:only-child{display:inline-block;vertical-align:top}.ui.list .list>.item>.image,.ui.list>.item>.image{display:table-cell;background-color:transparent;margin:0;vertical-align:top}.ui.list .list>.item>.image:not(:only-child):not(img),.ui.list>.item>.image:not(:only-child):not(img){padding-right:.5em}.ui.list .list>.item>.image img,.ui.list>.item>.image img{vertical-align:top}.ui.list .list>.item>.image:only-child,.ui.list .list>.item>img.image,.ui.list>.item>.image:only-child,.ui.list>.item>img.image{display:inline-block}.ui.list .list>.item>.content,.ui.list>.item>.content{line-height:1.14285714em}.ui.list .list>.item>.icon+.content,.ui.list .list>.item>.image+.content,.ui.list>.item>.icon+.content,.ui.list>.item>.image+.content{display:table-cell;padding:0 0 0 .5em;vertical-align:top}.ui.list .list>.item>img.image+.content,.ui.list>.item>img.image+.content{display:inline-block}.ui.list .list>.item>.content>.list,.ui.list>.item>.content>.list{margin-left:0;padding-left:0}.ui.list .list>.item .header,.ui.list>.item .header{display:block;margin:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;color:rgba(0,0,0,.87)}.ui.list .list>.item .description,.ui.list>.item .description{display:block;color:rgba(0,0,0,.7)}.ui.list .list>.item a,.ui.list>.item a{cursor:pointer}.ui.list .list>a.item,.ui.list>a.item{cursor:pointer;color:#4183c4}.ui.list .list>a.item:hover,.ui.list>a.item:hover{color:#1e70bf}.ui.list .list>a.item i.icon,.ui.list>a.item i.icon{color:rgba(0,0,0,.4)}.ui.list .list>.item a.header,.ui.list>.item a.header{cursor:pointer;color:#4183c4!important}.ui.list .list>.item a.header:hover,.ui.list>.item a.header:hover{color:#1e70bf!important}.ui[class*="left floated"].list{float:left}.ui[class*="right floated"].list{float:right}.ui.list .list>.item [class*="left floated"],.ui.list>.item [class*="left floated"]{float:left;margin:0 1em 0 0}.ui.list .list>.item [class*="right floated"],.ui.list>.item [class*="right floated"]{float:right;margin:0 0 0 1em}.ui.menu .ui.list .list>.item,.ui.menu .ui.list>.item{display:list-item;table-layout:fixed;background-color:transparent;list-style-type:none;list-style-position:outside;padding:.21428571em 0;line-height:1.14285714em}.ui.menu .ui.list .list>.item:before,.ui.menu .ui.list>.item:before{border:none;background:0 0}.ui.menu .ui.list .list>.item:first-child,.ui.menu .ui.list>.item:first-child{padding-top:0}.ui.menu .ui.list .list>.item:last-child,.ui.menu .ui.list>.item:last-child{padding-bottom:0}.ui.horizontal.list{display:inline-block;font-size:0}.ui.horizontal.list>.item{display:inline-block;margin-left:1em;font-size:1rem}.ui.horizontal.list:not(.celled)>.item:first-child{margin-left:0!important;padding-left:0!important}.ui.horizontal.list .list{padding-left:0;padding-bottom:0}.ui.horizontal.list .list>.item>.content,.ui.horizontal.list .list>.item>.icon,.ui.horizontal.list .list>.item>.image,.ui.horizontal.list>.item>.content,.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.image{vertical-align:middle}.ui.horizontal.list>.item:first-child,.ui.horizontal.list>.item:last-child{padding-top:.21428571em;padding-bottom:.21428571em}.ui.horizontal.list>.item>i.icon{margin:0;padding:0 .25em 0 0}.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.icon+.content{float:none;display:inline-block}.ui.list .list>.disabled.item,.ui.list>.disabled.item{pointer-events:none;color:rgba(40,40,40,.3)!important}.ui.inverted.list .list>.disabled.item,.ui.inverted.list>.disabled.item{color:rgba(225,225,225,.3)!important}.ui.list .list>a.item:hover .icon,.ui.list>a.item:hover .icon{color:rgba(0,0,0,.87)}.ui.inverted.list .list>a.item>.icon,.ui.inverted.list>a.item>.icon{color:rgba(255,255,255,.7)}.ui.inverted.list .list>.item .header,.ui.inverted.list>.item .header{color:rgba(255,255,255,.9)}.ui.inverted.list .list>.item .description,.ui.inverted.list>.item .description{color:rgba(255,255,255,.7)}.ui.inverted.list .list>a.item,.ui.inverted.list>a.item{cursor:pointer;color:rgba(255,255,255,.9)}.ui.inverted.list .list>a.item:hover,.ui.inverted.list>a.item:hover{color:#1e70bf}.ui.inverted.list .item a:not(.ui){color:rgba(255,255,255,.9)!important}.ui.inverted.list .item a:not(.ui):hover{color:#1e70bf!important}.ui.list [class*="top aligned"],.ui.list[class*="top aligned"] .content,.ui.list[class*="top aligned"] .image{vertical-align:top!important}.ui.list [class*="middle aligned"],.ui.list[class*="middle aligned"] .content,.ui.list[class*="middle aligned"] .image{vertical-align:middle!important}.ui.list [class*="bottom aligned"],.ui.list[class*="bottom aligned"] .content,.ui.list[class*="bottom aligned"] .image{vertical-align:bottom!important}.ui.link.list .item,.ui.link.list .item a:not(.ui),.ui.link.list a.item{color:rgba(0,0,0,.4);-webkit-transition:.1s color ease;transition:.1s color ease}.ui.link.list .item a:not(.ui):hover,.ui.link.list a.item:hover{color:rgba(0,0,0,.8)}.ui.link.list .item a:not(.ui):active,.ui.link.list a.item:active{color:rgba(0,0,0,.9)}.ui.link.list .active.item,.ui.link.list .active.item a:not(.ui){color:rgba(0,0,0,.95)}.ui.inverted.link.list .item,.ui.inverted.link.list .item a:not(.ui),.ui.inverted.link.list a.item{color:rgba(255,255,255,.5)}.ui.inverted.link.list .active.item a:not(.ui),.ui.inverted.link.list .item a:not(.ui):active,.ui.inverted.link.list .item a:not(.ui):hover,.ui.inverted.link.list a.active.item,.ui.inverted.link.list a.item:active,.ui.inverted.link.list a.item:hover{color:#fff}.ui.selection.list .list>.item,.ui.selection.list>.item{cursor:pointer;background:0 0;padding:.5em;margin:0;color:rgba(0,0,0,.4);border-radius:.5em;-webkit-transition:.1s color ease,.1s padding-left ease,.1s background-color ease;transition:.1s color ease,.1s padding-left ease,.1s background-color ease}.ui.selection.list .list>.item:last-child,.ui.selection.list>.item:last-child{margin-bottom:0}.ui.selection.list.list>.item:hover,.ui.selection.list>.item:hover{background:rgba(0,0,0,.03);color:rgba(0,0,0,.8)}.ui.selection.list .list>.item:active,.ui.selection.list>.item:active{background:rgba(0,0,0,.05);color:rgba(0,0,0,.9)}.ui.selection.list .list>.item.active,.ui.selection.list>.item.active{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.inverted.selection.list>.item{background:0 0;color:rgba(255,255,255,.5)}.ui.inverted.selection.list>.item:hover{background:rgba(255,255,255,.02);color:#fff}.ui.inverted.selection.list>.item.active,.ui.inverted.selection.list>.item:active{background:rgba(255,255,255,.08);color:#fff}.ui.celled.selection.list .list>.item,.ui.celled.selection.list>.item,.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{border-radius:0}.ui.animated.list>.item{-webkit-transition:.25s color ease .1s,.25s padding-left ease .1s,.25s background-color ease .1s;transition:.25s color ease .1s,.25s padding-left ease .1s,.25s background-color ease .1s}.ui.animated.list:not(.horizontal)>.item:hover{padding-left:1em}.ui.fitted.list:not(.selection) .list>.item,.ui.fitted.list:not(.selection)>.item{padding-left:0;padding-right:0}.ui.fitted.selection.list .list>.item,.ui.fitted.selection.list>.item{margin-left:-.5em;margin-right:-.5em}.ui.bulleted.list,ul.ui.list{margin-left:1.25rem}.ui.bulleted.list .list>.item,.ui.bulleted.list>.item,ul.ui.list li{position:relative}.ui.bulleted.list .list>.item:before,.ui.bulleted.list>.item:before,ul.ui.list li:before{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;position:absolute;top:auto;left:auto;margin-left:-1.25rem;content:'•';opacity:1;color:inherit;vertical-align:top}.ui.bulleted.list .list,ul.ui.list ul{padding-left:1.25rem}.ui.horizontal.bulleted.list,ul.ui.horizontal.bulleted.list{margin-left:0}.ui.horizontal.bulleted.list>.item,ul.ui.horizontal.bulleted.list li{margin-left:1.75rem}.ui.horizontal.bulleted.list>.item:first-child,ul.ui.horizontal.bulleted.list li:first-child{margin-left:0}.ui.horizontal.bulleted.list>.item::before,ul.ui.horizontal.bulleted.list li::before{color:rgba(0,0,0,.87)}.ui.horizontal.bulleted.list>.item:first-child::before,ul.ui.horizontal.bulleted.list li:first-child::before{display:none}.ui.ordered.list,.ui.ordered.list .list,ol.ui.list,ol.ui.list ol{counter-reset:ordered;margin-left:1.25rem;list-style-type:none}.ui.ordered.list .list>.item,.ui.ordered.list>.item,ol.ui.list li{list-style-type:none;position:relative}.ui.ordered.list .list>.item:before,.ui.ordered.list>.item:before,ol.ui.list li:before{position:absolute;top:auto;left:auto;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;margin-left:-1.25rem;counter-increment:ordered;content:counters(ordered,".") " ";text-align:right;color:rgba(0,0,0,.87);vertical-align:middle;opacity:.8}.ui.ordered.inverted.list .list>.item:before,.ui.ordered.inverted.list>.item:before,ol.ui.inverted.list li:before{color:rgba(255,255,255,.7)}.ui.ordered.list>.item[data-value],.ui.ordered.list>.list>.item[data-value]{content:attr(data-value)}ol.ui.list li[value]:before{content:attr(value)}.ui.ordered.list .list,ol.ui.list ol{margin-left:1em}.ui.ordered.list .list>.item:before,ol.ui.list ol li:before{margin-left:-2em}.ui.ordered.horizontal.list,ol.ui.horizontal.list{margin-left:0}.ui.ordered.horizontal.list .list>.item:before,.ui.ordered.horizontal.list>.item:before,ol.ui.horizontal.list li:before{position:static;margin:0 .5em 0 0}.ui.divided.list>.item{border-top:1px solid rgba(34,36,38,.15)}.ui.divided.list .item .list>.item,.ui.divided.list .list>.item,.ui.divided.list .list>.item:first-child,.ui.divided.list>.item:first-child{border-top:none}.ui.divided.list:not(.horizontal) .list>.item:first-child{border-top-width:1px}.ui.divided.bulleted.list .list,.ui.divided.bulleted.list:not(.horizontal){margin-left:0;padding-left:0}.ui.divided.bulleted.list>.item:not(.horizontal){padding-left:1.25rem}.ui.divided.ordered.list{margin-left:0}.ui.divided.ordered.list .list>.item,.ui.divided.ordered.list>.item{padding-left:1.25rem}.ui.divided.ordered.list .item .list{margin-left:0;margin-right:0;padding-bottom:.21428571em}.ui.divided.ordered.list .item .list>.item{padding-left:1em}.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{margin:0;border-radius:0}.ui.divided.horizontal.list{margin-left:0}.ui.divided.horizontal.list>.item{border-top:none;border-left:1px solid rgba(34,36,38,.15);margin:0;padding-left:.5em;padding-right:.5em;line-height:.6}.ui.horizontal.divided.list>.item:first-child{border-left:none}.ui.divided.inverted.horizontal.list>.item,.ui.divided.inverted.list>.item,.ui.divided.inverted.list>.list{border-color:rgba(255,255,255,.1)}.ui.celled.list>.item,.ui.celled.list>.list{border-top:1px solid rgba(34,36,38,.15);padding-left:.5em;padding-right:.5em}.ui.celled.list>.item:last-child{border-bottom:1px solid rgba(34,36,38,.15)}.ui.celled.list>.item:first-child,.ui.celled.list>.item:last-child{padding-top:.21428571em;padding-bottom:.21428571em}.ui.celled.list .item .list>.item{border-width:0}.ui.celled.list .list>.item:first-child{border-top-width:0}.ui.celled.bulleted.list{margin-left:0}.ui.celled.bulleted.list .list>.item,.ui.celled.bulleted.list>.item{padding-left:1.25rem}.ui.celled.bulleted.list .item .list{margin-left:-1.25rem;margin-right:-1.25rem;padding-bottom:.21428571em}.ui.celled.ordered.list{margin-left:0}.ui.celled.ordered.list .list>.item,.ui.celled.ordered.list>.item{padding-left:1.25rem}.ui.celled.ordered.list .item .list{margin-left:0;margin-right:0;padding-bottom:.21428571em}.ui.celled.ordered.list .list>.item{padding-left:1em}.ui.horizontal.celled.list{margin-left:0}.ui.horizontal.celled.list .list>.item,.ui.horizontal.celled.list>.item{border-top:none;border-left:1px solid rgba(34,36,38,.15);margin:0;padding-left:.5em;padding-right:.5em;line-height:.6}.ui.horizontal.celled.list .list>.item:last-child,.ui.horizontal.celled.list>.item:last-child{border-bottom:none;border-right:1px solid rgba(34,36,38,.15)}.ui.celled.inverted.horizontal.list .list>.item,.ui.celled.inverted.horizontal.list>.item,.ui.celled.inverted.list>.item,.ui.celled.inverted.list>.list{border-color:1px solid rgba(255,255,255,.1)}.ui.relaxed.list:not(.horizontal)>.item{padding-top:.42857143em;padding-bottom:.42857143em}.ui.relaxed.list:not(.horizontal) .list>.item{padding-top:.21428571em;padding-bottom:.21428571em}.ui.horizontal.relaxed.list>.item{padding-left:1rem;padding-right:1rem}.ui[class*="very relaxed"].list:not(.horizontal)>.item{padding-top:.85714286em;padding-bottom:.85714286em}.ui[class*="very relaxed"].list:not(.horizontal) .list>.item{padding-top:.28571429em;padding-bottom:.28571429em}.ui.horizontal[class*="very relaxed"].list .list>.item,.ui.horizontal[class*="very relaxed"].list>.item{padding-left:1.5rem;padding-right:1.5rem}.ui.mini.list{font-size:.71428571em}.ui.tiny.list{font-size:.85714286em}.ui.small.list{font-size:.92857143em}.ui.list{font-size:1em}.ui.large.list{font-size:1.14285714em}.ui.big.list{font-size:1.28571429em}.ui.huge.list{font-size:1.42857143em}.ui.massive.list{font-size:1.71428571em}.ui.mini.horizontal.list .list>.item,.ui.mini.horizontal.list>.item{font-size:.71428571rem}.ui.tiny.horizontal.list .list>.item,.ui.tiny.horizontal.list>.item{font-size:.85714286rem}.ui.small.horizontal.list .list>.item,.ui.small.horizontal.list>.item{font-size:.92857143rem}.ui.horizontal.list .list>.item,.ui.horizontal.list>.item{font-size:1rem}.ui.large.horizontal.list .list>.item,.ui.large.horizontal.list>.item{font-size:1.14285714rem}.ui.big.horizontal.list .list>.item,.ui.big.horizontal.list>.item{font-size:1.28571429rem}.ui.huge.horizontal.list .list>.item,.ui.huge.horizontal.list>.item{font-size:1.42857143rem}.ui.massive.horizontal.list .list>.item,.ui.massive.horizontal.list>.item{font-size:1.71428571rem}.ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0;text-align:center;z-index:1000;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.ui.loader:before{position:absolute;content:'';top:0;left:50%;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loader:after{position:absolute;content:'';top:0;left:50%;-webkit-animation:loader .6s linear;animation:loader .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}@-webkit-keyframes loader{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loader{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.loader:after,.ui.loader:before{width:2.2585em;height:2.2585em;margin:0 0 0 -1.12925em}.ui.mini.loader:after,.ui.mini.loader:before{width:1.2857em;height:1.2857em;margin:0 0 0 -.64285em}.ui.small.loader:after,.ui.small.loader:before{width:1.7142em;height:1.7142em;margin:0 0 0 -.8571em}.ui.large.loader:after,.ui.large.loader:before{width:4.5714em;height:4.5714em;margin:0 0 0 -2.2857em}.ui.dimmer .loader{display:block}.ui.dimmer .ui.loader{color:rgba(255,255,255,.9)}.ui.dimmer .ui.loader:before{border-color:rgba(255,255,255,.15)}.ui.dimmer .ui.loader:after{border-color:#fff transparent transparent}.ui.inverted.dimmer .ui.loader{color:rgba(0,0,0,.87)}.ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,.1)}.ui.inverted.dimmer .ui.loader:after{border-color:#767676 transparent transparent}.ui.text.loader{width:auto!important;height:auto!important;text-align:center;font-style:normal}.ui.indeterminate.loader:after{-webkit-animation-direction:reverse;animation-direction:reverse;-webkit-animation-duration:1.2s;animation-duration:1.2s}.ui.loader.active,.ui.loader.visible{display:block}.ui.loader.disabled,.ui.loader.hidden{display:none}.ui.inverted.dimmer .ui.mini.loader,.ui.mini.loader{width:1.2857em;height:1.2857em;font-size:.71428571em}.ui.inverted.dimmer .ui.small.loader,.ui.small.loader{width:1.7142em;height:1.7142em;font-size:.92857143em}.ui.inverted.dimmer .ui.loader,.ui.loader{width:2.2585em;height:2.2585em;font-size:1em}.ui.inverted.dimmer .ui.loader.large,.ui.loader.large{width:4.5714em;height:4.5714em;font-size:1.14285714em}.ui.mini.text.loader{min-width:1.2857em;padding-top:1.99998571em}.ui.small.text.loader{min-width:1.7142em;padding-top:2.42848571em}.ui.text.loader{min-width:2.2585em;padding-top:2.97278571em}.ui.large.text.loader{min-width:4.5714em;padding-top:5.28568571em}.ui.inverted.loader{color:rgba(255,255,255,.9)}.ui.inverted.loader:before{border-color:rgba(255,255,255,.15)}.ui.inverted.loader:after{border-top-color:#fff}.ui.inline.loader{position:relative;vertical-align:middle;margin:0;left:0;top:0;-webkit-transform:none;-ms-transform:none;transform:none}.ui.inline.loader.active,.ui.inline.loader.visible{display:inline-block}.ui.centered.inline.loader.active,.ui.centered.inline.loader.visible{display:block;margin-left:auto;margin-right:auto}.ui.rail{position:absolute;top:0;width:300px;height:100%;font-size:1rem}.ui.left.rail{left:auto;right:100%;padding:0 2rem 0 0;margin:0 2rem 0 0}.ui.right.rail{left:100%;right:auto;padding:0 0 0 2rem;margin:0 0 0 2rem}.ui.left.internal.rail{left:0;right:auto;padding:0 0 0 2rem;margin:0 0 0 2rem}.ui.right.internal.rail{left:auto;right:0;padding:0 2rem 0 0;margin:0 2rem 0 0}.ui.dividing.rail{width:302.5px}.ui.left.dividing.rail{padding:0 2.5rem 0 0;margin:0 2.5rem 0 0;border-right:1px solid rgba(34,36,38,.15)}.ui.right.dividing.rail{border-left:1px solid rgba(34,36,38,.15);padding:0 0 0 2.5rem;margin:0 0 0 2.5rem}.ui.close.rail{width:301px}.ui.close.left.rail{padding:0 1em 0 0;margin:0 1em 0 0}.ui.close.right.rail{padding:0 0 0 1em;margin:0 0 0 1em}.ui.very.close.rail{width:300.5px}.ui.very.close.left.rail{padding:0 .5em 0 0;margin:0 .5em 0 0}.ui.very.close.right.rail{padding:0 0 0 .5em;margin:0 0 0 .5em}.ui.attached.left.rail,.ui.attached.right.rail{padding:0;margin:0}.ui.reveal{display:inherit;position:relative!important;font-size:0!important}.ui.reveal>.visible.content{position:absolute!important;top:0!important;left:0!important;z-index:3!important;-webkit-transition:all .5s ease .1s;transition:all .5s ease .1s}.ui.reveal>.hidden.content{position:relative!important;z-index:2!important}.ui.active.reveal .visible.content,.ui.reveal:hover .visible.content{z-index:4!important}.ui.slide.reveal{position:relative!important;overflow:hidden!important;white-space:nowrap}.ui.slide.reveal>.content{display:block;width:100%;float:left;margin:0;-webkit-transition:-webkit-transform .5s ease .1s;transition:transform .5s ease .1s}.ui.slide.reveal>.visible.content{position:relative!important}.ui.slide.reveal>.hidden.content{position:absolute!important;left:0!important;width:100%!important;-webkit-transform:translateX(100%)!important;-ms-transform:translateX(100%)!important;transform:translateX(100%)!important}.ui.slide.active.reveal>.visible.content,.ui.slide.reveal:hover>.visible.content{-webkit-transform:translateX(-100%)!important;-ms-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.slide.active.reveal>.hidden.content,.ui.slide.reveal:hover>.hidden.content,.ui.slide.right.reveal>.visible.content{-webkit-transform:translateX(0)!important;-ms-transform:translateX(0)!important;transform:translateX(0)!important}.ui.slide.right.reveal>.hidden.content{-webkit-transform:translateX(-100%)!important;-ms-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.slide.right.active.reveal>.visible.content,.ui.slide.right.reveal:hover>.visible.content{-webkit-transform:translateX(100%)!important;-ms-transform:translateX(100%)!important;transform:translateX(100%)!important}.ui.slide.right.active.reveal>.hidden.content,.ui.slide.right.reveal:hover>.hidden.content{-webkit-transform:translateX(0)!important;-ms-transform:translateX(0)!important;transform:translateX(0)!important}.ui.slide.up.reveal>.hidden.content{-webkit-transform:translateY(100%)!important;-ms-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.slide.up.active.reveal>.visible.content,.ui.slide.up.reveal:hover>.visible.content{-webkit-transform:translateY(-100%)!important;-ms-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.slide.up.active.reveal>.hidden.content,.ui.slide.up.reveal:hover>.hidden.content{-webkit-transform:translateY(0)!important;-ms-transform:translateY(0)!important;transform:translateY(0)!important}.ui.slide.down.reveal>.hidden.content{-webkit-transform:translateY(-100%)!important;-ms-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.slide.down.active.reveal>.visible.content,.ui.slide.down.reveal:hover>.visible.content{-webkit-transform:translateY(100%)!important;-ms-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.slide.down.active.reveal>.hidden.content,.ui.slide.down.reveal:hover>.hidden.content{-webkit-transform:translateY(0)!important;-ms-transform:translateY(0)!important;transform:translateY(0)!important}.ui.fade.reveal>.visible.content{opacity:1}.ui.fade.active.reveal>.visible.content,.ui.fade.reveal:hover>.visible.content{opacity:0}.ui.move.reveal{position:relative!important;overflow:hidden!important;white-space:nowrap}.ui.move.reveal>.content{display:block;float:left;margin:0;-webkit-transition:-webkit-transform .5s cubic-bezier(.175,.885,.32,1) .1s;transition:transform .5s cubic-bezier(.175,.885,.32,1) .1s}.ui.move.reveal>.visible.content{position:relative!important}.ui.move.reveal>.hidden.content{position:absolute!important;left:0!important;width:100%!important}.ui.move.active.reveal>.visible.content,.ui.move.reveal:hover>.visible.content{-webkit-transform:translateX(-100%)!important;-ms-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.move.right.active.reveal>.visible.content,.ui.move.right.reveal:hover>.visible.content{-webkit-transform:translateX(100%)!important;-ms-transform:translateX(100%)!important;transform:translateX(100%)!important}.ui.move.up.active.reveal>.visible.content,.ui.move.up.reveal:hover>.visible.content{-webkit-transform:translateY(-100%)!important;-ms-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.move.down.active.reveal>.visible.content,.ui.move.down.reveal:hover>.visible.content{-webkit-transform:translateY(100%)!important;-ms-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.rotate.reveal>.visible.content{-webkit-transition-duration:.5s;transition-duration:.5s;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.ui.rotate.reveal>.visible.content,.ui.rotate.right.reveal>.visible.content{-webkit-transform-origin:bottom right;-ms-transform-origin:bottom right;transform-origin:bottom right}.ui.rotate.active.reveal>.visible.conten,.ui.rotate.reveal:hover>.visible.content,.ui.rotate.right.active.reveal>.visible.content,.ui.rotate.right.reveal:hover>.visible.content{-webkit-transform:rotate(110deg);-ms-transform:rotate(110deg);transform:rotate(110deg)}.ui.rotate.left.reveal>.visible.content{-webkit-transform-origin:bottom left;-ms-transform-origin:bottom left;transform-origin:bottom left}.ui.rotate.left.active.reveal>.visible.content,.ui.rotate.left.reveal:hover>.visible.content{-webkit-transform:rotate(-110deg);-ms-transform:rotate(-110deg);transform:rotate(-110deg)}.ui.disabled.reveal:hover>.visible.visible.content{position:static!important;display:block!important;opacity:1!important;top:0!important;left:0!important;right:auto!important;bottom:auto!important;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.ui.disabled.reveal:hover>.hidden.hidden.content{display:none!important}.ui.visible.reveal{overflow:visible}.ui.instant.reveal>.content{-webkit-transition-delay:0s!important;transition-delay:0s!important}.ui.reveal>.content{font-size:1rem!important}.ui.segment{position:relative;background:#fff;box-shadow:0 1px 2px 0 rgba(34,36,38,.15);margin:1rem 0;padding:1em;border-radius:.28571429rem;border:1px solid rgba(34,36,38,.15)}.ui.segment:first-child{margin-top:0}.ui.segment:last-child{margin-bottom:0}.ui.vertical.segment{margin:0;padding-left:0;padding-right:0;background:none;border-radius:0;box-shadow:none;border:none;border-bottom:1px solid rgba(34,36,38,.15)}.ui.vertical.segment:last-child{border-bottom:none}.ui.inverted.segment>.ui.header{color:#fff}.ui[class*="bottom attached"].segment>[class*="top attached"].label{border-top-left-radius:0;border-top-right-radius:0}.ui[class*="top attached"].segment>[class*="bottom attached"].label{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.attached.segment:not(.top):not(.bottom)>[class*="top attached"].label{border-top-left-radius:0;border-top-right-radius:0}.ui.attached.segment:not(.top):not(.bottom)>[class*="bottom attached"].label{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.grid .ui.segment.column,.ui.page.grid.segment{padding-top:2em;padding-bottom:2em}.ui.grid.segment{margin:1rem 0;border-radius:.28571429rem}.ui.basic.table.segment{background:#fff;border:1px solid rgba(34,36,38,.15);box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.ui[class*="very basic"].table.segment{padding:1em}.ui.piled.segment,.ui.piled.segments{margin:3em 0;box-shadow:'';z-index:auto}.ui.piled.segment:first-child{margin-top:0}.ui.piled.segment:last-child{margin-bottom:0}.ui.piled.segment:after,.ui.piled.segment:before,.ui.piled.segments:after,.ui.piled.segments:before{background-color:#fff;visibility:visible;content:'';display:block;height:100%;left:0;position:absolute;width:100%;border:1px solid rgba(34,36,38,.15);box-shadow:''}.ui.piled.segment:before,.ui.piled.segments:before{-webkit-transform:rotate(-1.2deg);-ms-transform:rotate(-1.2deg);transform:rotate(-1.2deg);top:0;z-index:-2}.ui.piled.segment:after,.ui.piled.segments:after{-webkit-transform:rotate(1.2deg);-ms-transform:rotate(1.2deg);transform:rotate(1.2deg);top:0;z-index:-1}.ui[class*="top attached"].piled.segment{margin-top:3em;margin-bottom:0}.ui.piled.segment[class*="top attached"]:first-child{margin-top:0}.ui.piled.segment[class*="bottom attached"]{margin-top:0;margin-bottom:3em}.ui.piled.segment[class*="bottom attached"]:last-child{margin-bottom:0}.ui.stacked.segment{padding-bottom:1.4em}.ui.stacked.segment:after,.ui.stacked.segment:before,.ui.stacked.segments:after,.ui.stacked.segments:before{content:'';position:absolute;bottom:-3px;left:0;border-top:1px solid rgba(34,36,38,.15);background:rgba(0,0,0,.03);width:100%;height:6px;visibility:visible}.ui.stacked.segment:before,.ui.stacked.segments:before{display:none}.ui.tall.stacked.segment:before,.ui.tall.stacked.segments:before{display:block;bottom:0}.ui.stacked.inverted.segment:after,.ui.stacked.inverted.segment:before,.ui.stacked.inverted.segments:after,.ui.stacked.inverted.segments:before{background-color:rgba(0,0,0,.03);border-top:1px solid rgba(34,36,38,.35)}.ui.padded.segment{padding:1.5em}.ui[class*="very padded"].segment{padding:3em}.ui.compact.segment{display:table}.ui.compact.segments{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}.ui.compact.segments .segment,.ui.segments .compact.segment{display:block;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.ui.circular.segment{display:table-cell;padding:2em;text-align:center;vertical-align:middle;border-radius:500em}.ui.raised.segment,.ui.raised.segments{box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08)}.ui.segments{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;position:relative;margin:1rem 0;border:1px solid rgba(34,36,38,.15);box-shadow:0 1px 2px 0 rgba(34,36,38,.15);border-radius:.28571429rem}.ui.segments:first-child{margin-top:0}.ui.segments:last-child{margin-bottom:0}.ui.segments>.segment{top:0;bottom:0;border-radius:0;margin:0;width:auto;box-shadow:none;border:none;border-top:1px solid rgba(34,36,38,.15)}.ui.segments:not(.horizontal)>.segment:first-child{border-top:none;margin-top:0;bottom:0;margin-bottom:0;top:0;border-radius:.28571429rem .28571429rem 0 0}.ui.segments:not(.horizontal)>.segment:last-child{top:0;bottom:0;margin-top:0;margin-bottom:0;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),none;border-radius:0 0 .28571429rem .28571429rem}.ui.segments>.ui.segments{border-top:1px solid rgba(34,36,38,.15);margin:1rem}.ui.segments>.segments:first-child{border-top:none}.ui.segments>.segment+.segments:not(.horizontal){margin-top:0}.ui.horizontal.segments{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;padding:0;background-color:#fff;box-shadow:0 1px 2px 0 rgba(34,36,38,.15);margin:1rem 0;border-radius:.28571429rem;border:1px solid rgba(34,36,38,.15)}.ui.segments>.horizontal.segments{margin:0;background-color:transparent;border-radius:0;border:none;box-shadow:none;border-top:1px solid rgba(34,36,38,.15)}.ui.horizontal.segments>.segment{-webkit-box-flex:1;-webkit-flex:1 1 auto;flex:1 1 auto;-ms-flex:1 1 0;margin:0;min-width:0;background-color:transparent;border-radius:0;border:none;box-shadow:none;border-left:1px solid rgba(34,36,38,.15)}.ui.horizontal.segments>.segment:first-child{border-left:none}.ui.disabled.segment{opacity:.45;color:rgba(40,40,40,.3)}.ui.loading.segment{position:relative;cursor:default;point-events:none;text-shadow:none!important;color:transparent!important;-webkit-transition:all 0s linear;transition:all 0s linear}.ui.loading.segment:before{position:absolute;content:'';top:0;left:0;background:rgba(255,255,255,.8);width:100%;height:100%;border-radius:.28571429rem;z-index:100}.ui.loading.segment:after{position:absolute;content:'';top:50%;left:50%;margin:-1.5em 0 0 -1.5em;width:3em;height:3em;-webkit-animation:segment-spin .6s linear;animation:segment-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 rgba(0,0,0,.1) rgba(0,0,0,.1);border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent;visibility:visible;z-index:101}@-webkit-keyframes segment-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes segment-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.basic.segment{background:none;box-shadow:none;border:none;border-radius:0}.ui.clearing.segment:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui.red.segment:not(.inverted){border-top:2px solid #db2828}.ui.inverted.red.segment{background-color:#db2828!important;color:#fff!important}.ui.orange.segment:not(.inverted){border-top:2px solid #f2711c}.ui.inverted.orange.segment{background-color:#f2711c!important;color:#fff!important}.ui.yellow.segment:not(.inverted){border-top:2px solid #fbbd08}.ui.inverted.yellow.segment{background-color:#fbbd08!important;color:#fff!important}.ui.olive.segment:not(.inverted){border-top:2px solid #b5cc18}.ui.inverted.olive.segment{background-color:#b5cc18!important;color:#fff!important}.ui.green.segment:not(.inverted){border-top:2px solid #21ba45}.ui.inverted.green.segment{background-color:#21ba45!important;color:#fff!important}.ui.teal.segment:not(.inverted){border-top:2px solid #00b5ad}.ui.inverted.teal.segment{background-color:#00b5ad!important;color:#fff!important}.ui.blue.segment:not(.inverted){border-top:2px solid #2185d0}.ui.inverted.blue.segment{background-color:#2185d0!important;color:#fff!important}.ui.violet.segment:not(.inverted){border-top:2px solid #6435c9}.ui.inverted.violet.segment{background-color:#6435c9!important;color:#fff!important}.ui.purple.segment:not(.inverted){border-top:2px solid #a333c8}.ui.inverted.purple.segment{background-color:#a333c8!important;color:#fff!important}.ui.pink.segment:not(.inverted){border-top:2px solid #e03997}.ui.inverted.pink.segment{background-color:#e03997!important;color:#fff!important}.ui.brown.segment:not(.inverted){border-top:2px solid #a5673f}.ui.inverted.brown.segment{background-color:#a5673f!important;color:#fff!important}.ui.grey.segment:not(.inverted){border-top:2px solid #767676}.ui.inverted.grey.segment{background-color:#767676!important;color:#fff!important}.ui.black.segment:not(.inverted){border-top:2px solid #1b1c1d}.ui.inverted.black.segment{background-color:#1b1c1d!important;color:#fff!important}.ui[class*="left aligned"].segment{text-align:left}.ui[class*="right aligned"].segment{text-align:right}.ui[class*="center aligned"].segment{text-align:center}.ui.floated.segment,.ui[class*="left floated"].segment{float:left;margin-right:1em}.ui[class*="right floated"].segment{float:right;margin-left:1em}.ui.inverted.segment{border:none;box-shadow:none}.ui.inverted.segment,.ui.primary.inverted.segment{background:#1b1c1d;color:rgba(255,255,255,.9)}.ui.inverted.segment .segment{color:rgba(0,0,0,.87)}.ui.inverted.segment .inverted.segment{color:rgba(255,255,255,.9)}.ui.inverted.attached.segment{border-color:#555}.ui.secondary.segment{background:#f3f4f5;color:rgba(0,0,0,.6)}.ui.secondary.inverted.segment{background:-webkit-linear-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.2) 100%) #4c4f52;background:linear-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.2) 100%) #4c4f52;color:rgba(255,255,255,.8)}.ui.tertiary.segment{background:#dcddde;color:rgba(0,0,0,.6)}.ui.tertiary.inverted.segment{background:-webkit-linear-gradient(rgba(255,255,255,.35) 0,rgba(255,255,255,.35) 100%) #717579;background:linear-gradient(rgba(255,255,255,.35) 0,rgba(255,255,255,.35) 100%) #717579;color:rgba(255,255,255,.8)}.ui.attached.segment{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);box-shadow:none;border:1px solid #d4d4d5}.ui.attached+.ui.attached.segment:not(.top){border-top:none}.ui[class*="top attached"].segment{bottom:0;margin-bottom:0;top:0;margin-top:1rem;border-radius:.28571429rem .28571429rem 0 0}.ui.segment[class*="top attached"]:first-child{margin-top:0}.ui.segment[class*="bottom attached"]{bottom:0;margin-top:0;top:0;margin-bottom:1rem;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),none;border-radius:0 0 .28571429rem .28571429rem}.ui.segment[class*="bottom attached"]:last-child{margin-bottom:0}.ui.steps{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;margin:1em 0;background:0 0;box-shadow:none;line-height:1.14285714em;border-radius:.28571429rem;border:1px solid rgba(34,36,38,.15)}.ui.steps:first-child{margin-top:0}.ui.steps:last-child{margin-bottom:0}.ui.steps .step{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;vertical-align:middle;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:1.14285714em 2em;background:#fff;color:rgba(0,0,0,.87);box-shadow:none;border-radius:0;border:none;border-right:1px solid rgba(34,36,38,.15);-webkit-transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease;transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease}.ui.steps .step:after{position:absolute;z-index:2;content:'';top:50%;right:0;border:solid;background-color:#fff;width:1.14285714em;height:1.14285714em;border-color:rgba(34,36,38,.15);border-width:0 1px 1px 0;-webkit-transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease;transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease;-webkit-transform:translateY(-50%) translateX(50%) rotate(-45deg);-ms-transform:translateY(-50%) translateX(50%) rotate(-45deg);transform:translateY(-50%) translateX(50%) rotate(-45deg)}.ui.steps .step:first-child{padding-left:2em;border-radius:.28571429rem 0 0 .28571429rem}.ui.steps .step:last-child{border-radius:0 .28571429rem .28571429rem 0;border-right:none;margin-right:0}.ui.steps .step:only-child{border-radius:.28571429rem}.ui.steps .step .title{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.14285714em;font-weight:700}.ui.steps .step>.title{width:100%}.ui.steps .step .description{font-weight:400;font-size:.92857143em;color:rgba(0,0,0,.87)}.ui.steps .step>.description{width:100%}.ui.steps .step .title~.description{margin-top:.25em}.ui.steps .step>.icon{line-height:1;font-size:2.5em;margin:0 1rem 0 0}.ui.steps .step>.icon,.ui.steps .step>.icon~.content{display:block;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle}.ui.steps .step>.icon~.content{-webkit-box-flex:1 0 auto;-webkit-flex-grow:1 0 auto;-ms-flex-positive:1 0 auto;flex-grow:1 0 auto}.ui.steps:not(.vertical) .step>.icon{width:auto}.ui.steps .link.step,.ui.steps a.step{cursor:pointer}.ui.ordered.steps{counter-reset:ordered}.ui.ordered.steps .step:before{display:block;position:static;text-align:center;content:counters(ordered,".");-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle;margin-right:1rem;font-size:2.5em;counter-increment:ordered;font-family:inherit;font-weight:700}.ui.ordered.steps .step>*{display:block;-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle}.ui.vertical.steps{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:visible}.ui.vertical.steps .step{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;border-radius:0;padding:1.14285714em 2em;border-right:none;border-bottom:1px solid rgba(34,36,38,.15)}.ui.vertical.steps .step:first-child{padding:1.14285714em 2em;border-radius:.28571429rem .28571429rem 0 0}.ui.vertical.steps .step:last-child{border-bottom:none;border-radius:0 0 .28571429rem .28571429rem}.ui.vertical.steps .step:only-child{border-radius:.28571429rem}.ui.vertical.steps .step:after{top:50%;right:0;border-width:0 1px 1px 0;display:none}.ui.vertical.steps .active.step:after{display:block}.ui.vertical.steps .step:last-child:after{display:none}.ui.vertical.steps .active.step:last-child:after{display:block}@media only screen and (max-width:767px){.ui.steps{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;overflow:visible;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.steps .step{width:100%!important;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;border-radius:0;padding:1.14285714em 2em}.ui.steps .step:first-child{padding:1.14285714em 2em;border-radius:.28571429rem .28571429rem 0 0}.ui.steps .step:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui.steps .step:after{display:none!important}.ui.steps .step .content{text-align:center}.ui.ordered.steps .step:before,.ui.steps .step>.icon{margin:0 0 1rem}}.ui.steps .link.step:hover,.ui.steps .link.step:hover::after,.ui.steps a.step:hover,.ui.steps a.step:hover::after{background:#f9fafb;color:rgba(0,0,0,.8)}.ui.steps .link.step:active,.ui.steps .link.step:active::after,.ui.steps a.step:active,.ui.steps a.step:active::after{background:#f3f4f5;color:rgba(0,0,0,.9)}.ui.steps .step.active{cursor:auto;background:#f3f4f5}.ui.steps .step.active:after{background:#f3f4f5}.ui.steps .step.active .title{color:#4183c4}.ui.ordered.steps .step.active:before,.ui.steps .active.step .icon{color:rgba(0,0,0,.85)}.ui.steps .active.step:after,.ui.steps .step:after{display:block}.ui.steps .active.step:last-child:after,.ui.steps .step:last-child:after{display:none}.ui.steps .link.active.step:hover,.ui.steps .link.active.step:hover::after,.ui.steps a.active.step:hover,.ui.steps a.active.step:hover::after{cursor:pointer;background:#dcddde;color:rgba(0,0,0,.87)}.ui.ordered.steps .step.completed:before,.ui.steps .step.completed>.icon:before{color:#21ba45;font-family:Step;content:'\e800'}.ui.steps .disabled.step{cursor:auto;background:#fff;pointer-events:none}.ui.steps .disabled.step,.ui.steps .disabled.step .description,.ui.steps .disabled.step .title{color:rgba(40,40,40,.3)}.ui.steps .disabled.step:after{background:#fff}@media only screen and (max-width:992px){.ui[class*="tablet stackable"].steps{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;overflow:visible;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui[class*="tablet stackable"].steps .step{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;border-radius:0;padding:1.14285714em 2em}.ui[class*="tablet stackable"].steps .step:first-child{padding:1.14285714em 2em;border-radius:.28571429rem .28571429rem 0 0}.ui[class*="tablet stackable"].steps .step:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui[class*="tablet stackable"].steps .step:after{display:none!important}.ui[class*="tablet stackable"].steps .step .content{text-align:center}.ui[class*="tablet stackable"].ordered.steps .step:before,.ui[class*="tablet stackable"].steps .step>.icon{margin:0 0 1rem}}.ui.fluid.steps{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%}.ui.attached.steps{width:calc(100% + 2px)!important;margin:0 -1px -1px;max-width:calc(100% + 2px);border-radius:.28571429rem .28571429rem 0 0}.ui.attached.steps .step:first-child{border-radius:.28571429rem 0 0}.ui.attached.steps .step:last-child{border-radius:0 .28571429rem 0 0}.ui.bottom.attached.steps{margin:-1px -1px 0;border-radius:0 0 .28571429rem .28571429rem}.ui.bottom.attached.steps .step:first-child{border-radius:0 0 0 .28571429rem}.ui.bottom.attached.steps .step:last-child{border-radius:0 0 .28571429rem}.ui.eight.steps,.ui.five.steps,.ui.four.steps,.ui.one.steps,.ui.seven.steps,.ui.six.steps,.ui.three.steps,.ui.two.steps{width:100%}.ui.eight.steps>.step,.ui.five.steps>.step,.ui.four.steps>.step,.ui.one.steps>.step,.ui.seven.steps>.step,.ui.six.steps>.step,.ui.three.steps>.step,.ui.two.steps>.step{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.ui.one.steps>.step{width:100%}.ui.two.steps>.step{width:50%}.ui.three.steps>.step{width:33.333%}.ui.four.steps>.step{width:25%}.ui.five.steps>.step{width:20%}.ui.six.steps>.step{width:16.666%}.ui.seven.steps>.step{width:14.285%}.ui.eight.steps>.step{width:12.5%}.ui.small.step,.ui.small.steps .step{font-size:.92857143rem}.ui.step,.ui.steps .step{font-size:1rem}.ui.large.step,.ui.large.steps .step{font-size:1.14285714rem}@font-face{font-family:Step;src:url(data:application/x-font-ttf;charset=utf-8;;base64,AAEAAAAOAIAAAwBgT1MvMj3hSQEAAADsAAAAVmNtYXDQEhm3AAABRAAAAUpjdnQgBkn/lAAABuwAAAAcZnBnbYoKeDsAAAcIAAAJkWdhc3AAAAAQAAAG5AAAAAhnbHlm32cEdgAAApAAAAC2aGVhZAErPHsAAANIAAAANmhoZWEHUwNNAAADgAAAACRobXR4CykAAAAAA6QAAAAMbG9jYQA4AFsAAAOwAAAACG1heHAApgm8AAADuAAAACBuYW1lzJ0aHAAAA9gAAALNcG9zdK69QJgAAAaoAAAAO3ByZXCSoZr/AAAQnAAAAFYAAQO4AZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6ADoAQNS/2oAWgMLAE8AAAABAAAAAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADoAf//AAAAAOgA//8AABgBAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADpAKYABUAHEAZDwEAAQFCAAIBAmoAAQABagAAAGEUFxQDEisBFAcBBiInASY0PwE2Mh8BATYyHwEWA6QP/iAQLBD+6g8PTBAsEKQBbhAsEEwPAhYWEP4gDw8BFhAsEEwQEKUBbxAQTBAAAAH//f+xA18DCwAMABJADwABAQpDAAAACwBEFRMCESsBFA4BIi4CPgEyHgEDWXLG6MhuBnq89Lp+AV51xHR0xOrEdHTEAAAAAAEAAAABAADDeRpdXw889QALA+gAAAAAzzWYjQAAAADPNWBN//3/sQOkAwsAAAAIAAIAAAAAAAAAAQAAA1L/agBaA+gAAP/3A6QAAQAAAAAAAAAAAAAAAAAAAAMD6AAAA+gAAANZAAAAAAAAADgAWwABAAAAAwAWAAEAAAAAAAIABgATAG4AAAAtCZEAAAAAAAAAEgDeAAEAAAAAAAAANQAAAAEAAAAAAAEACAA1AAEAAAAAAAIABwA9AAEAAAAAAAMACABEAAEAAAAAAAQACABMAAEAAAAAAAUACwBUAAEAAAAAAAYACABfAAEAAAAAAAoAKwBnAAEAAAAAAAsAEwCSAAMAAQQJAAAAagClAAMAAQQJAAEAEAEPAAMAAQQJAAIADgEfAAMAAQQJAAMAEAEtAAMAAQQJAAQAEAE9AAMAAQQJAAUAFgFNAAMAAQQJAAYAEAFjAAMAAQQJAAoAVgFzAAMAAQQJAAsAJgHJQ29weXJpZ2h0IChDKSAyMDE0IGJ5IG9yaWdpbmFsIGF1dGhvcnMgQCBmb250ZWxsby5jb21mb250ZWxsb1JlZ3VsYXJmb250ZWxsb2ZvbnRlbGxvVmVyc2lvbiAxLjBmb250ZWxsb0dlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAEMAbwBwAHkAcgBpAGcAaAB0ACAAKABDACkAIAAyADAAMQA0ACAAYgB5ACAAbwByAGkAZwBpAG4AYQBsACAAYQB1AHQAaABvAHIAcwAgAEAAIABmAG8AbgB0AGUAbABsAG8ALgBjAG8AbQBmAG8AbgB0AGUAbABsAG8AUgBlAGcAdQBsAGEAcgBmAG8AbgB0AGUAbABsAG8AZgBvAG4AdABlAGwAbABvAFYAZQByAHMAaQBvAG4AIAAxAC4AMABmAG8AbgB0AGUAbABsAG8ARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAAAAAIAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAQIBAwljaGVja21hcmsGY2lyY2xlAAAAAAEAAf//AA8AAAAAAAAAAAAAAAAAAAAAADIAMgML/7EDC/+xsAAssCBgZi2wASwgZCCwwFCwBCZasARFW1ghIyEbilggsFBQWCGwQFkbILA4UFghsDhZWSCwCkVhZLAoUFghsApFILAwUFghsDBZGyCwwFBYIGYgiophILAKUFhgGyCwIFBYIbAKYBsgsDZQWCGwNmAbYFlZWRuwACtZWSOwAFBYZVlZLbACLCBFILAEJWFkILAFQ1BYsAUjQrAGI0IbISFZsAFgLbADLCMhIyEgZLEFYkIgsAYjQrIKAAIqISCwBkMgiiCKsAArsTAFJYpRWGBQG2FSWVgjWSEgsEBTWLAAKxshsEBZI7AAUFhlWS2wBCywB0MrsgACAENgQi2wBSywByNCIyCwACNCYbCAYrABYLAEKi2wBiwgIEUgsAJFY7ABRWJgRLABYC2wBywgIEUgsAArI7ECBCVgIEWKI2EgZCCwIFBYIbAAG7AwUFiwIBuwQFlZI7AAUFhlWbADJSNhRESwAWAtsAgssQUFRbABYUQtsAkssAFgICCwCUNKsABQWCCwCSNCWbAKQ0qwAFJYILAKI0JZLbAKLCC4BABiILgEAGOKI2GwC0NgIIpgILALI0IjLbALLEtUWLEHAURZJLANZSN4LbAMLEtRWEtTWLEHAURZGyFZJLATZSN4LbANLLEADENVWLEMDEOwAWFCsAorWbAAQ7ACJUKxCQIlQrEKAiVCsAEWIyCwAyVQWLEBAENgsAQlQoqKIIojYbAJKiEjsAFhIIojYbAJKiEbsQEAQ2CwAiVCsAIlYbAJKiFZsAlDR7AKQ0dgsIBiILACRWOwAUViYLEAABMjRLABQ7AAPrIBAQFDYEItsA4ssQAFRVRYALAMI0IgYLABYbUNDQEACwBCQopgsQ0FK7BtKxsiWS2wDyyxAA4rLbAQLLEBDistsBEssQIOKy2wEiyxAw4rLbATLLEEDistsBQssQUOKy2wFSyxBg4rLbAWLLEHDistsBcssQgOKy2wGCyxCQ4rLbAZLLAIK7EABUVUWACwDCNCIGCwAWG1DQ0BAAsAQkKKYLENBSuwbSsbIlktsBossQAZKy2wGyyxARkrLbAcLLECGSstsB0ssQMZKy2wHiyxBBkrLbAfLLEFGSstsCAssQYZKy2wISyxBxkrLbAiLLEIGSstsCMssQkZKy2wJCwgPLABYC2wJSwgYLANYCBDI7ABYEOwAiVhsAFgsCQqIS2wJiywJSuwJSotsCcsICBHICCwAkVjsAFFYmAjYTgjIIpVWCBHICCwAkVjsAFFYmAjYTgbIVktsCgssQAFRVRYALABFrAnKrABFTAbIlktsCkssAgrsQAFRVRYALABFrAnKrABFTAbIlktsCosIDWwAWAtsCssALADRWOwAUVisAArsAJFY7ABRWKwACuwABa0AAAAAABEPiM4sSoBFSotsCwsIDwgRyCwAkVjsAFFYmCwAENhOC2wLSwuFzwtsC4sIDwgRyCwAkVjsAFFYmCwAENhsAFDYzgtsC8ssQIAFiUgLiBHsAAjQrACJUmKikcjRyNhIFhiGyFZsAEjQrIuAQEVFCotsDAssAAWsAQlsAQlRyNHI2GwBkUrZYouIyAgPIo4LbAxLLAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjILAIQyCKI0cjRyNhI0ZgsARDsIBiYCCwACsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsIBiYSMgILAEJiNGYTgbI7AIQ0awAiWwCENHI0cjYWAgsARDsIBiYCMgsAArI7AEQ2CwACuwBSVhsAUlsIBisAQmYSCwBCVgZCOwAyVgZFBYIRsjIVkjICCwBCYjRmE4WS2wMiywABYgICCwBSYgLkcjRyNhIzw4LbAzLLAAFiCwCCNCICAgRiNHsAArI2E4LbA0LLAAFrADJbACJUcjRyNhsABUWC4gPCMhG7ACJbACJUcjRyNhILAFJbAEJUcjRyNhsAYlsAUlSbACJWGwAUVjIyBYYhshWWOwAUViYCMuIyAgPIo4IyFZLbA1LLAAFiCwCEMgLkcjRyNhIGCwIGBmsIBiIyAgPIo4LbA2LCMgLkawAiVGUlggPFkusSYBFCstsDcsIyAuRrACJUZQWCA8WS6xJgEUKy2wOCwjIC5GsAIlRlJYIDxZIyAuRrACJUZQWCA8WS6xJgEUKy2wOSywMCsjIC5GsAIlRlJYIDxZLrEmARQrLbA6LLAxK4ogIDywBCNCijgjIC5GsAIlRlJYIDxZLrEmARQrsARDLrAmKy2wOyywABawBCWwBCYgLkcjRyNhsAZFKyMgPCAuIzixJgEUKy2wPCyxCAQlQrAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjIEewBEOwgGJgILAAKyCKimEgsAJDYGQjsANDYWRQWLACQ2EbsANDYFmwAyWwgGJhsAIlRmE4IyA8IzgbISAgRiNHsAArI2E4IVmxJgEUKy2wPSywMCsusSYBFCstsD4ssDErISMgIDywBCNCIzixJgEUK7AEQy6wJistsD8ssAAVIEewACNCsgABARUUEy6wLCotsEAssAAVIEewACNCsgABARUUEy6wLCotsEEssQABFBOwLSotsEIssC8qLbBDLLAAFkUjIC4gRoojYTixJgEUKy2wRCywCCNCsEMrLbBFLLIAADwrLbBGLLIAATwrLbBHLLIBADwrLbBILLIBATwrLbBJLLIAAD0rLbBKLLIAAT0rLbBLLLIBAD0rLbBMLLIBAT0rLbBNLLIAADkrLbBOLLIAATkrLbBPLLIBADkrLbBQLLIBATkrLbBRLLIAADsrLbBSLLIAATsrLbBTLLIBADsrLbBULLIBATsrLbBVLLIAAD4rLbBWLLIAAT4rLbBXLLIBAD4rLbBYLLIBAT4rLbBZLLIAADorLbBaLLIAATorLbBbLLIBADorLbBcLLIBATorLbBdLLAyKy6xJgEUKy2wXiywMiuwNistsF8ssDIrsDcrLbBgLLAAFrAyK7A4Ky2wYSywMysusSYBFCstsGIssDMrsDYrLbBjLLAzK7A3Ky2wZCywMyuwOCstsGUssDQrLrEmARQrLbBmLLA0K7A2Ky2wZyywNCuwNystsGgssDQrsDgrLbBpLLA1Ky6xJgEUKy2waiywNSuwNistsGsssDUrsDcrLbBsLLA1K7A4Ky2wbSwrsAhlsAMkUHiwARUwLQAAAEu4AMhSWLEBAY5ZuQgACABjILABI0SwAyNwsgQoCUVSRLIKAgcqsQYBRLEkAYhRWLBAiFixBgNEsSYBiFFYuAQAiFixBgFEWVlZWbgB/4WwBI2xBQBEAAA=) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAoUAA4AAAAAEPQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPeFJAWNtYXAAAAGIAAAAOgAAAUrQEhm3Y3Z0IAAAAcQAAAAUAAAAHAZJ/5RmcGdtAAAB2AAABPkAAAmRigp4O2dhc3AAAAbUAAAACAAAAAgAAAAQZ2x5ZgAABtwAAACuAAAAtt9nBHZoZWFkAAAHjAAAADUAAAA2ASs8e2hoZWEAAAfEAAAAIAAAACQHUwNNaG10eAAAB+QAAAAMAAAADAspAABsb2NhAAAH8AAAAAgAAAAIADgAW21heHAAAAf4AAAAIAAAACAApgm8bmFtZQAACBgAAAF3AAACzcydGhxwb3N0AAAJkAAAACoAAAA7rr1AmHByZXAAAAm8AAAAVgAAAFaSoZr/eJxjYGTewTiBgZWBg6mKaQ8DA0MPhGZ8wGDIyMTAwMTAysyAFQSkuaYwOLxgeMHIHPQ/iyGKmZvBHyjMCJIDAPe9C2B4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF4w/v8PUvCCAURLMELVAwEjG8OIBwBk5AavAAB4nGNgQANGDEbM3P83gjAAELQD4XicnVXZdtNWFJU8ZHASOmSgoA7X3DhQ68qEKRgwaSrFdiEdHAitBB2kDHTkncc+62uOQrtWH/m07n09JLR0rbYsls++R1tn2DrnRhwjKn0aiGvUoZKXA6msPZZK90lc13Uvj5UMBnFdthJPSZuonSRKat3sUC7xWOsqWSdYJ+PlIFZPVZ5noAziFB5lSUQbRBuplyZJ4onjJ4kWZxAfJUkgJaMQp9LIUEI1GsRS1aFM6dCr1xNx00DKRqMedVhU90PFJ8c1p9SsA0YqVznCFevVRr4bpwMve5DEOsGzrYcxHnisfpQqkIqR6cg/dkpOlIaBVHHUoVbi6DCTX/eRTCrNQKaMYkWl7oG43f102xYxPXQ6vi5KlUaqurnOKJrt0fGogygP2cbppNzQ2fbw5RlTVKtdcbPtQGYNXErJbHSfRAAdJlLj6QFONZwCqRn1R8XZ588BEslclKo8VTKHegOZMzt7cTHtbiersnCknwcyb3Z2452HQ6dXh3/R+hdM4cxHj+Jifj5C+lBqfiJOJKVGWMzyp4YfcVcgQrkxiAsXyuBThDl0RdrZZl3jtTH2hs/5SqlhPQna6KP4fgr9TiQrHGdRo/VInM1j13Wt3GdQS7W7Fzsyr0OVIu7vCwuuM+eEYZ4WC1VfnvneBTT/Bohn/EDeNIVL+5YpSrRvm6JMu2iKCu0SVKVdNsUU7YoppmnPmmKG9h1TzNKeMzLj/8vc55H7HN7xkJv2XeSmfQ+5ad9HbtoPkJtWITdtHblpLyA3rUZu2lWjOnYEGgZpF1IVQdA0svph3Fab9UDWjDR8aWDyLmLI+upER521tcofxX914gsHcmmip7siF5viLq/bFj483e6rj5pG3bDV+MaR8jAeRnocmtBZ+c3hv+1N3S6a7jKqMugBFUwKwABl7UAC0zrbCaT1mqf48gdgXIZ4zkpDtVSfO4am7+V5X/exOfG+x+3GLrdcd3kJWdYNcmP28N9SZKrrH+UtrVQnR6wrJ49VaxhDKrwour6SlHu0tRu/KKmy8l6U1srnk5CbPYMbQlu27mGwI0xpyiUeXlOlKD3UUo6yQyxvKco84JSLC1qGxLgOdQ9qa8TpoXoYGwshhqG0vRBwSCldFd+0ynfxHqtr2Oj4xRXh6XpyEhGf4ir7UfBU10b96A7avGbdMoMpVaqn+4xPsa/b9lFZaaSOsxe3VAfXNOsaORXTT+Rr4HRvOGjdAz1UfDRBI1U1x+jGKGM0ljXl3wR0MVZ+w2jVYvs93E+dpFWsuUuY7JsT9+C0u/0q+7WcW0bW/dcGvW3kip8jMb8tCvw7B2K3ZA3UO5OBGAvIWdAYxhYmdxiug23EbfY/Jqf/34aFRXJXOxq7eerD1ZNRJXfZ8rjLTXZZ16M2R9VOGvsIjS0PN+bY4XIstsRgQbb+wf8x7gF3aVEC4NDIZZiI2nShnurh6h6rsW04VxIBds2x43QAegAuQd8cu9bzCYD13CPnLsB9cgh2yCH4lByCz8i5BfA5OQRfkEMwIIdgl5w7AA/IIXhIDsEeOQSPyNkE+JIcgq/IIYjJIUjIuQ3wmByCJ+QQfE0OwTdGrk5k/pYH2QD6zqKbQKmdGhzaOGRGrk3Y+zxY9oFFZB9aROqRkesT6lMeLPV7i0j9wSJSfzRyY0L9iQdL/dkiUn+xiNRnxpeZIymvDp7zjg7+BJfqrV4AAAAAAQAB//8AD3icY2BkAALmJUwzGEQZZBwk+RkZGBmdGJgYmbIYgMwsoGSiiLgIs5A2owg7I5uSOqOaiT2jmZE8I5gQY17C/09BQEfg3yt+fh8gvYQxD0j68DOJiQn8U+DnZxQDcQUEljLmCwBpBgbG/3//b2SOZ+Zm4GEQcuAH2sblDLSEm8FFVJhJEGgLH6OSHpMdo5EcI3Nk0bEXJ/LYqvZ82VXHGFd6pKTkyCsQwQAAq+QkqAAAeJxjYGRgYADiw5VSsfH8Nl8ZuJlfAEUYzpvO6IXQCb7///7fyLyEmRvI5WBgAokCAFb/DJAAAAB4nGNgZGBgDvqfxRDF/IKB4f935iUMQBEUwAwAi5YFpgPoAAAD6AAAA1kAAAAAAAAAOABbAAEAAAADABYAAQAAAAAAAgAGABMAbgAAAC0JkQAAAAB4nHWQy2rCQBSG//HSi0JbWui2sypKabxgN4IgWHTTbqS4LTHGJBIzMhkFX6Pv0IfpS/RZ+puMpShNmMx3vjlz5mQAXOMbAvnzxJGzwBmjnAs4Rc9ykf7Zcon8YrmMKt4sn9C/W67gAYHlKm7wwQqidM5ogU/LAlfi0nIBF+LOcpH+0XKJ3LNcxq14tXxC71muYCJSy1Xci6+BWm11FIRG1gZ12W62OnK6lYoqStxYumsTKp3KvpyrxPhxrBxPLfc89oN17Op9uJ8nvk4jlciW09yrkZ/42jX+bFc93QRtY+ZyrtVSDm2GXGm18D3jhMasuo3G3/MwgMIKW2hEvKoQBhI12jrnNppooUOaMkMyM8+KkMBFTONizR1htpIy7nPMGSW0PjNisgOP3+WRH5MC7o9ZRR+tHsYT0u6MKPOSfTns7jBrREqyTDezs9/eU2x4WpvWcNeuS511JTE8qCF5H7u1BY1H72S3Ymi7aPD95/9+AN1fhEsAeJxjYGKAAC4G7ICZgYGRiZGZMzkjNTk7N7Eomy05syg5J5WBAQBE1QZBAABLuADIUlixAQGOWbkIAAgAYyCwASNEsAMjcLIEKAlFUkSyCgIHKrEGAUSxJAGIUViwQIhYsQYDRLEmAYhRWLgEAIhYsQYBRFlZWVm4Af+FsASNsQUARAAA) format('woff')}.ui.breadcrumb{line-height:1;display:inline-block;margin:0;vertical-align:middle}.ui.breadcrumb:first-child{margin-top:0}.ui.breadcrumb:last-child{margin-bottom:0}.ui.breadcrumb .divider{display:inline-block;opacity:.7;margin:0 .21428571rem;font-size:.92857143em;color:rgba(0,0,0,.4);vertical-align:baseline}.ui.breadcrumb a{color:#4183c4}.ui.breadcrumb a:hover{color:#1e70bf}.ui.breadcrumb .icon.divider{font-size:.85714286em;vertical-align:baseline}.ui.breadcrumb a.section{cursor:pointer}.ui.breadcrumb .section{display:inline-block;margin:0;padding:0}.ui.breadcrumb.segment{display:inline-block;padding:.71428571em 1em}.ui.breadcrumb .active.section{font-weight:700}.ui.mini.breadcrumb{font-size:.71428571rem}.ui.tiny.breadcrumb{font-size:.85714286rem}.ui.small.breadcrumb{font-size:.92857143rem}.ui.breadcrumb{font-size:1rem}.ui.large.breadcrumb{font-size:1.14285714rem}.ui.big.breadcrumb{font-size:1.28571429rem}.ui.huge.breadcrumb{font-size:1.42857143rem}.ui.massive.breadcrumb{font-size:1.71428571rem}.ui.form{position:relative;max-width:100%}.ui.form>p{margin:1em 0}.ui.form .field{clear:both;margin:0 0 1em}.ui.form .field:last-child,.ui.form .fields:last-child .field{margin-bottom:0}.ui.form .fields .field{clear:both;margin:0 0 1em}.ui.form .field>label{display:block;margin:0 0 .28571429rem;color:rgba(0,0,0,.87);font-size:.92857143em;font-weight:700;text-transform:none}.ui.form input:not([type]),.ui.form input[type=text],.ui.form input[type=email],.ui.form input[type=search],.ui.form input[type=password],.ui.form input[type=date],.ui.form input[type=datetime-local],.ui.form input[type=tel],.ui.form input[type=time],.ui.form input[type=url],.ui.form input[type=number],.ui.form textarea{width:100%;vertical-align:top}.ui.form ::-webkit-datetime-edit,.ui.form ::-webkit-inner-spin-button{height:1.2142em}.ui.form input:not([type]),.ui.form input[type=text],.ui.form input[type=email],.ui.form input[type=search],.ui.form input[type=password],.ui.form input[type=date],.ui.form input[type=datetime-local],.ui.form input[type=tel],.ui.form input[type=time],.ui.form input[type=url],.ui.form input[type=number]{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;margin:0;outline:0;-webkit-appearance:none;tap-highlight-color:rgba(255,255,255,0);line-height:1.2142em;padding:.67861429em 1em;font-size:1em;background:#fff;border:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87);border-radius:.28571429rem;box-shadow:0 0 0 0 transparent inset;-webkit-transition:color .1s ease,border-color .1s ease;transition:color .1s ease,border-color .1s ease}.ui.form textarea{margin:0;-webkit-appearance:none;tap-highlight-color:rgba(255,255,255,0);padding:.78571429em 1em;background:#fff;border:1px solid rgba(34,36,38,.15);outline:0;color:rgba(0,0,0,.87);border-radius:.28571429rem;box-shadow:0 0 0 0 transparent inset;-webkit-transition:color .1s ease,border-color .1s ease;transition:color .1s ease,border-color .1s ease;font-size:1em;line-height:1.2857;resize:vertical}.ui.form textarea:not([rows]){height:12em;min-height:8em;max-height:24em}.ui.form input[type=checkbox],.ui.form textarea{vertical-align:top}.ui.form input.attached{width:auto}.ui.form select{display:block;height:auto;width:100%;background:#fff;border:1px solid rgba(34,36,38,.15);border-radius:.28571429rem;box-shadow:0 0 0 0 transparent inset;padding:.62em 1em;color:rgba(0,0,0,.87);-webkit-transition:color .1s ease,border-color .1s ease;transition:color .1s ease,border-color .1s ease}.ui.form .field>.selection.dropdown{width:100%}.ui.form .field>.selection.dropdown>.dropdown.icon{float:right}.ui.form .inline.field>.selection.dropdown,.ui.form .inline.fields .field>.selection.dropdown{width:auto}.ui.form .inline.field>.selection.dropdown>.dropdown.icon,.ui.form .inline.fields .field>.selection.dropdown>.dropdown.icon{float:none}.ui.form .field .ui.input,.ui.form .fields .field .ui.input,.ui.form .wide.field .ui.input{width:100%}.ui.form .inline.field:not(.wide) .ui.input,.ui.form .inline.fields .field:not(.wide) .ui.input{width:auto;vertical-align:middle}.ui.form .field .ui.input input,.ui.form .fields .field .ui.input input{width:auto}.ui.form .eight.fields .ui.input input,.ui.form .five.fields .ui.input input,.ui.form .four.fields .ui.input input,.ui.form .nine.fields .ui.input input,.ui.form .seven.fields .ui.input input,.ui.form .six.fields .ui.input input,.ui.form .ten.fields .ui.input input,.ui.form .three.fields .ui.input input,.ui.form .two.fields .ui.input input,.ui.form .wide.field .ui.input input{-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;width:0}.ui.form .divider{clear:both;margin:1em 0}.ui.form .error.message,.ui.form .success.message,.ui.form .warning.message{display:none}.ui.form .message:first-child{margin-top:0}.ui.form .field .prompt.label{white-space:normal;background:#fff!important;border:1px solid #e0b4b4!important;color:#9f3a38!important}.ui.form .inline.field .prompt,.ui.form .inline.fields .field .prompt{vertical-align:top;margin:-.25em 0 -.5em .5em}.ui.form .inline.field .prompt:before,.ui.form .inline.fields .field .prompt:before{border-width:0 0 1px 1px;bottom:auto;right:auto;top:50%;left:0}.ui.form .field.field input:-webkit-autofill{box-shadow:0 0 0 100px ivory inset!important;border-color:#e5dfa1!important}.ui.form .field.field input:-webkit-autofill:focus{box-shadow:0 0 0 100px ivory inset!important;border-color:#d5c315!important}.ui.form .error.error input:-webkit-autofill{box-shadow:0 0 0 100px #fffaf0 inset!important;border-color:#e0b4b4!important}.ui.form ::-webkit-input-placeholder{color:rgba(140,140,140,.87)}.ui.form ::-ms-input-placeholder{color:rgba(140,140,140,.87)}.ui.form ::-moz-placeholder{color:rgba(140,140,140,.87)}.ui.form :focus::-webkit-input-placeholder{color:rgba(89,89,89,.87)}.ui.form :focus::-ms-input-placeholder{color:rgba(89,89,89,.87)}.ui.form :focus::-moz-placeholder{color:rgba(89,89,89,.87)}.ui.form .error ::-webkit-input-placeholder{color:#e7bdbc}.ui.form .error ::-ms-input-placeholder{color:#e7bdbc}.ui.form .error ::-moz-placeholder{color:#e7bdbc}.ui.form .error :focus::-webkit-input-placeholder{color:#da9796}.ui.form .error :focus::-ms-input-placeholder{color:#da9796}.ui.form .error :focus::-moz-placeholder{color:#da9796}.ui.form input:not([type]):focus,.ui.form input[type=text]:focus,.ui.form input[type=email]:focus,.ui.form input[type=search]:focus,.ui.form input[type=password]:focus,.ui.form input[type=date]:focus,.ui.form input[type=datetime-local]:focus,.ui.form input[type=tel]:focus,.ui.form input[type=time]:focus,.ui.form input[type=url]:focus,.ui.form input[type=number]:focus{color:rgba(0,0,0,.95);border-color:#85b7d9;border-radius:.28571429rem;background:#fff;box-shadow:0 0 0 0 rgba(34,36,38,.35) inset}.ui.form textarea:focus{color:rgba(0,0,0,.95);border-color:#85b7d9;border-radius:.28571429rem;background:#fff;box-shadow:0 0 0 0 rgba(34,36,38,.35) inset;-webkit-appearance:none}.ui.form.success .success.message:not(:empty){display:block}.ui.form.success .icon.success.message:not(:empty){display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.form.warning .warning.message:not(:empty){display:block}.ui.form.warning .icon.warning.message:not(:empty){display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.form.error .error.message:not(:empty){display:block}.ui.form.error .icon.error.message:not(:empty){display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.form .field.error .input,.ui.form .field.error label,.ui.form .fields.error .field .input,.ui.form .fields.error .field label{color:#9f3a38}.ui.form .field.error .corner.label,.ui.form .fields.error .field .corner.label{border-color:#9f3a38;color:#fff}.ui.form .field.error input:not([type]),.ui.form .field.error input[type=text],.ui.form .field.error input[type=email],.ui.form .field.error input[type=search],.ui.form .field.error input[type=password],.ui.form .field.error input[type=date],.ui.form .field.error input[type=datetime-local],.ui.form .field.error input[type=tel],.ui.form .field.error input[type=time],.ui.form .field.error input[type=url],.ui.form .field.error input[type=number],.ui.form .field.error select,.ui.form .field.error textarea,.ui.form .fields.error .field input:not([type]),.ui.form .fields.error .field input[type=text],.ui.form .fields.error .field input[type=email],.ui.form .fields.error .field input[type=search],.ui.form .fields.error .field input[type=password],.ui.form .fields.error .field input[type=date],.ui.form .fields.error .field input[type=datetime-local],.ui.form .fields.error .field input[type=tel],.ui.form .fields.error .field input[type=time],.ui.form .fields.error .field input[type=url],.ui.form .fields.error .field input[type=number],.ui.form .fields.error .field select,.ui.form .fields.error .field textarea{background:#fff6f6;border-color:#e0b4b4;color:#9f3a38;border-radius:'';box-shadow:none}.ui.form .field.error input:not([type]):focus,.ui.form .field.error input[type=text]:focus,.ui.form .field.error input[type=email]:focus,.ui.form .field.error input[type=search]:focus,.ui.form .field.error input[type=password]:focus,.ui.form .field.error input[type=date]:focus,.ui.form .field.error input[type=datetime-local]:focus,.ui.form .field.error input[type=tel]:focus,.ui.form .field.error input[type=time]:focus,.ui.form .field.error input[type=url]:focus,.ui.form .field.error input[type=number]:focus,.ui.form .field.error select:focus,.ui.form .field.error textarea:focus{background:#fff6f6;border-color:#e0b4b4;color:#9f3a38;-webkit-appearance:none;box-shadow:none}.ui.form .field.error select{-webkit-appearance:menulist-button}.ui.form .field.error .ui.dropdown,.ui.form .field.error .ui.dropdown .item,.ui.form .field.error .ui.dropdown .text,.ui.form .fields.error .field .ui.dropdown,.ui.form .fields.error .field .ui.dropdown .item{background:#fff6f6;color:#9f3a38}.ui.form .field.error .ui.dropdown,.ui.form .field.error .ui.dropdown:hover,.ui.form .fields.error .field .ui.dropdown,.ui.form .fields.error .field .ui.dropdown:hover{border-color:#e0b4b4!important}.ui.form .field.error .ui.dropdown:hover .menu,.ui.form .fields.error .field .ui.dropdown:hover .menu{border-color:#e0b4b4}.ui.form .field.error .ui.multiple.selection.dropdown>.label,.ui.form .fields.error .field .ui.multiple.selection.dropdown>.label{background-color:#eacbcb;color:#9f3a38}.ui.form .field.error .ui.dropdown .menu .item:hover,.ui.form .field.error .ui.dropdown .menu .selected.item,.ui.form .fields.error .field .ui.dropdown .menu .item:hover,.ui.form .fields.error .field .ui.dropdown .menu .selected.item{background-color:#fbe7e7}.ui.form .field.error .ui.dropdown .menu .active.item,.ui.form .fields.error .field .ui.dropdown .menu .active.item{background-color:#fdcfcf!important}.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box,.ui.form .field.error .checkbox:not(.toggle):not(.slider) label,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label{color:#9f3a38}.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box:before,.ui.form .field.error .checkbox:not(.toggle):not(.slider) label:before,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before{background:#fff6f6;border-color:#e0b4b4}.ui.form .field.error .checkbox .box:after,.ui.form .field.error .checkbox label:after,.ui.form .fields.error .field .checkbox .box:after,.ui.form .fields.error .field .checkbox label:after{color:#9f3a38}.ui.form .disabled.field,.ui.form .disabled.fields .field,.ui.form .field :disabled{pointer-events:none;opacity:.45}.ui.form .field.disabled label{opacity:.45}.ui.form .field.disabled :disabled{opacity:1}.ui.loading.form{position:relative;cursor:default;point-events:none;text-shadow:none!important;color:transparent!important;-webkit-transition:all 0s linear;transition:all 0s linear;z-index:100}.ui.loading.form:before{position:absolute;content:'';top:0;left:0;background:rgba(255,255,255,.8);width:100%;height:100%;z-index:100}.ui.loading.form:after{position:absolute;content:'';top:50%;left:50%;margin:-1.5em 0 0 -1.5em;width:3em;height:3em;-webkit-animation:form-spin .6s linear;animation:form-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 rgba(0,0,0,.1) rgba(0,0,0,.1);border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent;visibility:visible;z-index:101}@-webkit-keyframes form-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes form-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.form .required.field>.checkbox:after,.ui.form .required.field>label:after,.ui.form .required.fields.grouped>label:after,.ui.form .required.fields:not(.grouped)>.field>.checkbox:after,.ui.form .required.fields:not(.grouped)>.field>label:after{margin:-.2em 0 0 .2em;content:'*';color:#db2828}.ui.form .required.field>label:after,.ui.form .required.fields.grouped>label:after,.ui.form .required.fields:not(.grouped)>.field>label:after{display:inline-block;vertical-align:top}.ui.form .required.field>.checkbox:after,.ui.form .required.fields:not(.grouped)>.field>.checkbox:after{position:absolute;top:0;left:100%}.ui.form .inverted.segment .ui.checkbox .box,.ui.form .inverted.segment .ui.checkbox label,.ui.form .inverted.segment label,.ui.inverted.form .ui.checkbox .box,.ui.inverted.form .ui.checkbox label,.ui.inverted.form label{color:rgba(255,255,255,.9)}.ui.inverted.form input:not([type]),.ui.inverted.form input[type=text],.ui.inverted.form input[type=email],.ui.inverted.form input[type=search],.ui.inverted.form input[type=password],.ui.inverted.form input[type=date],.ui.inverted.form input[type=datetime-local],.ui.inverted.form input[type=tel],.ui.inverted.form input[type=time],.ui.inverted.form input[type=url],.ui.inverted.form input[type=number]{background:#fff;border-color:rgba(255,255,255,.1);color:rgba(0,0,0,.87);box-shadow:none}.ui.form .grouped.fields{display:block;margin:0 0 1em}.ui.form .grouped.fields:last-child{margin-bottom:0}.ui.form .grouped.fields>label{margin:0 0 .28571429rem;color:rgba(0,0,0,.87);font-size:.92857143em;font-weight:700;text-transform:none}.ui.form .grouped.fields .field,.ui.form .grouped.inline.fields .field{display:block;margin:.5em 0;padding:0}.ui.form .fields{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.ui.form .fields>.field{-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;padding-left:.5em;padding-right:.5em}.ui.form .fields>.field:first-child{border-left:none;box-shadow:none}.ui.form .two.fields>.field,.ui.form .two.fields>.fields{width:50%}.ui.form .three.fields>.field,.ui.form .three.fields>.fields{width:33.33333333%}.ui.form .four.fields>.field,.ui.form .four.fields>.fields{width:25%}.ui.form .five.fields>.field,.ui.form .five.fields>.fields{width:20%}.ui.form .six.fields>.field,.ui.form .six.fields>.fields{width:16.66666667%}.ui.form .seven.fields>.field,.ui.form .seven.fields>.fields{width:14.28571429%}.ui.form .eight.fields>.field,.ui.form .eight.fields>.fields{width:12.5%}.ui.form .nine.fields>.field,.ui.form .nine.fields>.fields{width:11.11111111%}.ui.form .ten.fields>.field,.ui.form .ten.fields>.fields{width:10%}@media only screen and (max-width:767px){.ui.form .fields{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.form .eight.fields>.field,.ui.form .eight.fields>.fields,.ui.form .five.fields>.field,.ui.form .five.fields>.fields,.ui.form .four.fields>.field,.ui.form .four.fields>.fields,.ui.form .nine.fields>.field,.ui.form .nine.fields>.fields,.ui.form .seven.fields>.field,.ui.form .seven.fields>.fields,.ui.form .six.fields>.field,.ui.form .six.fields>.fields,.ui.form .ten.fields>.field,.ui.form .ten.fields>.fields,.ui.form .three.fields>.field,.ui.form .three.fields>.fields,.ui.form .two.fields>.field,.ui.form .two.fields>.fields{width:100%!important;margin:0 0 1em;padding-left:0;padding-right:0}}.ui.form .fields .field:first-child{padding-left:0}.ui.form .fields .field:last-child{padding-right:0}.ui.form .fields .wide.field{width:6.25%;padding-left:.5em;padding-right:.5em}.ui.form .fields .wide.field:first-child{padding-left:0}.ui.form .fields .wide.field:last-child{padding-right:0}.ui.form .one.wide.field{width:6.25%!important}.ui.form .two.wide.field{width:12.5%!important}.ui.form .three.wide.field{width:18.75%!important}.ui.form .four.wide.field{width:25%!important}.ui.form .five.wide.field{width:31.25%!important}.ui.form .six.wide.field{width:37.5%!important}.ui.form .seven.wide.field{width:43.75%!important}.ui.form .eight.wide.field{width:50%!important}.ui.form .nine.wide.field{width:56.25%!important}.ui.form .ten.wide.field{width:62.5%!important}.ui.form .eleven.wide.field{width:68.75%!important}.ui.form .twelve.wide.field{width:75%!important}.ui.form .thirteen.wide.field{width:81.25%!important}.ui.form .fourteen.wide.field{width:87.5%!important}.ui.form .fifteen.wide.field{width:93.75%!important}.ui.form .sixteen.wide.field{width:100%!important}@media only screen and (max-width:767px){.ui.form .fields>.eight.wide.field,.ui.form .fields>.eleven.wide.field,.ui.form .fields>.fifteen.wide.field,.ui.form .fields>.five.wide.field,.ui.form .fields>.four.wide.field,.ui.form .fields>.fourteen.wide.field,.ui.form .fields>.nine.wide.field,.ui.form .fields>.seven.wide.field,.ui.form .fields>.six.wide.field,.ui.form .fields>.sixteen.wide.field,.ui.form .fields>.ten.wide.field,.ui.form .fields>.thirteen.wide.field,.ui.form .fields>.three.wide.field,.ui.form .fields>.twelve.wide.field,.ui.form .fields>.two.wide.field,.ui.form .five.fields>.field,.ui.form .five.fields>.fields,.ui.form .four.fields>.field,.ui.form .four.fields>.fields,.ui.form .three.fields>.field,.ui.form .three.fields>.fields,.ui.form .two.fields>.field,.ui.form .two.fields>.fields{width:100%!important;margin:0 0 1em;padding-left:0;padding-right:0}}.ui.form .inline.fields{margin:0 0 1em;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.form .inline.fields .field{margin:0;padding:0 1em 0 0}.ui.form .inline.field>label,.ui.form .inline.field>p,.ui.form .inline.fields .field>label,.ui.form .inline.fields .field>p,.ui.form .inline.fields>label{display:inline-block;width:auto;margin-top:0;margin-bottom:0;vertical-align:baseline;font-size:.92857143em;font-weight:700;color:rgba(0,0,0,.87);text-transform:none}.ui.form .inline.fields>label{margin:.035714em 1em 0 0}.ui.form .inline.field>input,.ui.form .inline.field>select,.ui.form .inline.fields .field>input,.ui.form .inline.fields .field>select{display:inline-block;width:auto;margin-top:0;margin-bottom:0;vertical-align:middle;font-size:1em}.ui.form .inline.field>:first-child,.ui.form .inline.fields .field>:first-child{margin:0 .85714286em 0 0}.ui.form .inline.field>:only-child,.ui.form .inline.fields .field>:only-child{margin:0}.ui.form .inline.fields .wide.field{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.form .inline.fields .wide.field>input,.ui.form .inline.fields .wide.field>select{width:100%}.ui.small.form{font-size:.92857143rem}.ui.form{font-size:1rem}.ui.large.form{font-size:1.14285714rem}.ui.huge.form{font-size:1.42857143rem}.ui.grid{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;padding:0;margin:-1rem}.ui.relaxed.grid{margin-left:-1.5rem;margin-right:-1.5rem}.ui[class*="very relaxed"].grid{margin-left:-2.5rem;margin-right:-2.5rem}.ui.grid+.grid{margin-top:1rem}.ui.grid>.column:not(.row),.ui.grid>.row>.column{position:relative;display:inline-block;width:6.25%;padding-left:1rem;padding-right:1rem;vertical-align:top}.ui.grid>*{padding-left:1rem;padding-right:1rem}.ui.grid>.row{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:inherit;-webkit-justify-content:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%!important;padding:1rem 0}.ui.grid>.column:not(.row){padding-top:1rem;padding-bottom:1rem}.ui.grid>.row>.column{margin-top:0;margin-bottom:0}.ui.grid>.row>.column>img,.ui.grid>.row>img{max-width:100%}.ui.grid>.ui.grid:first-child{margin-top:0}.ui.grid>.ui.grid:last-child{margin-bottom:0}.ui.aligned.grid .column>.segment:not(.compact),.ui.grid .aligned.row>.column>.segment:not(.compact){width:100%}.ui.grid .row+.ui.divider{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;margin:1rem}.ui.grid .column+.ui.vertical.divider{height:calc(50% - 1rem)}.ui.grid>.column:last-child>.horizontal.segment,.ui.grid>.row>.column:last-child>.horizontal.segment{box-shadow:none}@media only screen and (max-width:767px){.ui.page.grid{width:auto;padding-left:0;padding-right:0;margin-left:0;margin-right:0}}@media only screen and (min-width:768px) and (max-width:991px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:2em;padding-right:2em}}@media only screen and (min-width:992px) and (max-width:1199px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:3%;padding-right:3%}}@media only screen and (min-width:1200px) and (max-width:1919px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:15%;padding-right:15%}}@media only screen and (min-width:1920px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:23%;padding-right:23%}}.ui.grid>.column:only-child,.ui.grid>.row>.column:only-child,.ui[class*="one column"].grid>.column:not(.row),.ui[class*="one column"].grid>.row>.column{width:100%}.ui[class*="two column"].grid>.column:not(.row),.ui[class*="two column"].grid>.row>.column{width:50%}.ui[class*="three column"].grid>.column:not(.row),.ui[class*="three column"].grid>.row>.column{width:33.33333333%}.ui[class*="four column"].grid>.column:not(.row),.ui[class*="four column"].grid>.row>.column{width:25%}.ui[class*="five column"].grid>.column:not(.row),.ui[class*="five column"].grid>.row>.column{width:20%}.ui[class*="six column"].grid>.column:not(.row),.ui[class*="six column"].grid>.row>.column{width:16.66666667%}.ui[class*="seven column"].grid>.column:not(.row),.ui[class*="seven column"].grid>.row>.column{width:14.28571429%}.ui[class*="eight column"].grid>.column:not(.row),.ui[class*="eight column"].grid>.row>.column{width:12.5%}.ui[class*="nine column"].grid>.column:not(.row),.ui[class*="nine column"].grid>.row>.column{width:11.11111111%}.ui[class*="ten column"].grid>.column:not(.row),.ui[class*="ten column"].grid>.row>.column{width:10%}.ui[class*="eleven column"].grid>.column:not(.row),.ui[class*="eleven column"].grid>.row>.column{width:9.09090909%}.ui[class*="twelve column"].grid>.column:not(.row),.ui[class*="twelve column"].grid>.row>.column{width:8.33333333%}.ui[class*="thirteen column"].grid>.column:not(.row),.ui[class*="thirteen column"].grid>.row>.column{width:7.69230769%}.ui[class*="fourteen column"].grid>.column:not(.row),.ui[class*="fourteen column"].grid>.row>.column{width:7.14285714%}.ui[class*="fifteen column"].grid>.column:not(.row),.ui[class*="fifteen column"].grid>.row>.column{width:6.66666667%}.ui[class*="sixteen column"].grid>.column:not(.row),.ui[class*="sixteen column"].grid>.row>.column{width:6.25%}.ui.grid>[class*="one column"].row>.column{width:100%!important}.ui.grid>[class*="two column"].row>.column{width:50%!important}.ui.grid>[class*="three column"].row>.column{width:33.33333333%!important}.ui.grid>[class*="four column"].row>.column{width:25%!important}.ui.grid>[class*="five column"].row>.column{width:20%!important}.ui.grid>[class*="six column"].row>.column{width:16.66666667%!important}.ui.grid>[class*="seven column"].row>.column{width:14.28571429%!important}.ui.grid>[class*="eight column"].row>.column{width:12.5%!important}.ui.grid>[class*="nine column"].row>.column{width:11.11111111%!important}.ui.grid>[class*="ten column"].row>.column{width:10%!important}.ui.grid>[class*="eleven column"].row>.column{width:9.09090909%!important}.ui.grid>[class*="twelve column"].row>.column{width:8.33333333%!important}.ui.grid>[class*="thirteen column"].row>.column{width:7.69230769%!important}.ui.grid>[class*="fourteen column"].row>.column{width:7.14285714%!important}.ui.grid>[class*="fifteen column"].row>.column{width:6.66666667%!important}.ui.grid>[class*="sixteen column"].row>.column{width:6.25%!important}.ui.celled.page.grid{box-shadow:none}.ui.column.grid>[class*="one wide"].column,.ui.grid>.column.row>[class*="one wide"].column,.ui.grid>.row>[class*="one wide"].column,.ui.grid>[class*="one wide"].column{width:6.25%!important}.ui.column.grid>[class*="two wide"].column,.ui.grid>.column.row>[class*="two wide"].column,.ui.grid>.row>[class*="two wide"].column,.ui.grid>[class*="two wide"].column{width:12.5%!important}.ui.column.grid>[class*="three wide"].column,.ui.grid>.column.row>[class*="three wide"].column,.ui.grid>.row>[class*="three wide"].column,.ui.grid>[class*="three wide"].column{width:18.75%!important}.ui.column.grid>[class*="four wide"].column,.ui.grid>.column.row>[class*="four wide"].column,.ui.grid>.row>[class*="four wide"].column,.ui.grid>[class*="four wide"].column{width:25%!important}.ui.column.grid>[class*="five wide"].column,.ui.grid>.column.row>[class*="five wide"].column,.ui.grid>.row>[class*="five wide"].column,.ui.grid>[class*="five wide"].column{width:31.25%!important}.ui.column.grid>[class*="six wide"].column,.ui.grid>.column.row>[class*="six wide"].column,.ui.grid>.row>[class*="six wide"].column,.ui.grid>[class*="six wide"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide"].column,.ui.grid>.column.row>[class*="seven wide"].column,.ui.grid>.row>[class*="seven wide"].column,.ui.grid>[class*="seven wide"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide"].column,.ui.grid>.column.row>[class*="eight wide"].column,.ui.grid>.row>[class*="eight wide"].column,.ui.grid>[class*="eight wide"].column{width:50%!important}.ui.column.grid>[class*="nine wide"].column,.ui.grid>.column.row>[class*="nine wide"].column,.ui.grid>.row>[class*="nine wide"].column,.ui.grid>[class*="nine wide"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide"].column,.ui.grid>.column.row>[class*="ten wide"].column,.ui.grid>.row>[class*="ten wide"].column,.ui.grid>[class*="ten wide"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide"].column,.ui.grid>.column.row>[class*="eleven wide"].column,.ui.grid>.row>[class*="eleven wide"].column,.ui.grid>[class*="eleven wide"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide"].column,.ui.grid>.column.row>[class*="twelve wide"].column,.ui.grid>.row>[class*="twelve wide"].column,.ui.grid>[class*="twelve wide"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide"].column,.ui.grid>.column.row>[class*="thirteen wide"].column,.ui.grid>.row>[class*="thirteen wide"].column,.ui.grid>[class*="thirteen wide"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide"].column,.ui.grid>.column.row>[class*="fourteen wide"].column,.ui.grid>.row>[class*="fourteen wide"].column,.ui.grid>[class*="fourteen wide"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide"].column,.ui.grid>.column.row>[class*="fifteen wide"].column,.ui.grid>.row>[class*="fifteen wide"].column,.ui.grid>[class*="fifteen wide"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide"].column,.ui.grid>.column.row>[class*="sixteen wide"].column,.ui.grid>.row>[class*="sixteen wide"].column,.ui.grid>[class*="sixteen wide"].column{width:100%!important}@media only screen and (min-width:320px) and (max-width:767px){.ui.column.grid>[class*="one wide mobile"].column,.ui.grid>.column.row>[class*="one wide mobile"].column,.ui.grid>.row>[class*="one wide mobile"].column,.ui.grid>[class*="one wide mobile"].column{width:6.25%!important}.ui.column.grid>[class*="two wide mobile"].column,.ui.grid>.column.row>[class*="two wide mobile"].column,.ui.grid>.row>[class*="two wide mobile"].column,.ui.grid>[class*="two wide mobile"].column{width:12.5%!important}.ui.column.grid>[class*="three wide mobile"].column,.ui.grid>.column.row>[class*="three wide mobile"].column,.ui.grid>.row>[class*="three wide mobile"].column,.ui.grid>[class*="three wide mobile"].column{width:18.75%!important}.ui.column.grid>[class*="four wide mobile"].column,.ui.grid>.column.row>[class*="four wide mobile"].column,.ui.grid>.row>[class*="four wide mobile"].column,.ui.grid>[class*="four wide mobile"].column{width:25%!important}.ui.column.grid>[class*="five wide mobile"].column,.ui.grid>.column.row>[class*="five wide mobile"].column,.ui.grid>.row>[class*="five wide mobile"].column,.ui.grid>[class*="five wide mobile"].column{width:31.25%!important}.ui.column.grid>[class*="six wide mobile"].column,.ui.grid>.column.row>[class*="six wide mobile"].column,.ui.grid>.row>[class*="six wide mobile"].column,.ui.grid>[class*="six wide mobile"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide mobile"].column,.ui.grid>.column.row>[class*="seven wide mobile"].column,.ui.grid>.row>[class*="seven wide mobile"].column,.ui.grid>[class*="seven wide mobile"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide mobile"].column,.ui.grid>.column.row>[class*="eight wide mobile"].column,.ui.grid>.row>[class*="eight wide mobile"].column,.ui.grid>[class*="eight wide mobile"].column{width:50%!important}.ui.column.grid>[class*="nine wide mobile"].column,.ui.grid>.column.row>[class*="nine wide mobile"].column,.ui.grid>.row>[class*="nine wide mobile"].column,.ui.grid>[class*="nine wide mobile"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide mobile"].column,.ui.grid>.column.row>[class*="ten wide mobile"].column,.ui.grid>.row>[class*="ten wide mobile"].column,.ui.grid>[class*="ten wide mobile"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide mobile"].column,.ui.grid>.column.row>[class*="eleven wide mobile"].column,.ui.grid>.row>[class*="eleven wide mobile"].column,.ui.grid>[class*="eleven wide mobile"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide mobile"].column,.ui.grid>.column.row>[class*="twelve wide mobile"].column,.ui.grid>.row>[class*="twelve wide mobile"].column,.ui.grid>[class*="twelve wide mobile"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide mobile"].column,.ui.grid>.column.row>[class*="thirteen wide mobile"].column,.ui.grid>.row>[class*="thirteen wide mobile"].column,.ui.grid>[class*="thirteen wide mobile"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide mobile"].column,.ui.grid>.column.row>[class*="fourteen wide mobile"].column,.ui.grid>.row>[class*="fourteen wide mobile"].column,.ui.grid>[class*="fourteen wide mobile"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide mobile"].column,.ui.grid>.column.row>[class*="fifteen wide mobile"].column,.ui.grid>.row>[class*="fifteen wide mobile"].column,.ui.grid>[class*="fifteen wide mobile"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide mobile"].column,.ui.grid>.column.row>[class*="sixteen wide mobile"].column,.ui.grid>.row>[class*="sixteen wide mobile"].column,.ui.grid>[class*="sixteen wide mobile"].column{width:100%!important}}@media only screen and (min-width:768px) and (max-width:991px){.ui.column.grid>[class*="one wide tablet"].column,.ui.grid>.column.row>[class*="one wide tablet"].column,.ui.grid>.row>[class*="one wide tablet"].column,.ui.grid>[class*="one wide tablet"].column{width:6.25%!important}.ui.column.grid>[class*="two wide tablet"].column,.ui.grid>.column.row>[class*="two wide tablet"].column,.ui.grid>.row>[class*="two wide tablet"].column,.ui.grid>[class*="two wide tablet"].column{width:12.5%!important}.ui.column.grid>[class*="three wide tablet"].column,.ui.grid>.column.row>[class*="three wide tablet"].column,.ui.grid>.row>[class*="three wide tablet"].column,.ui.grid>[class*="three wide tablet"].column{width:18.75%!important}.ui.column.grid>[class*="four wide tablet"].column,.ui.grid>.column.row>[class*="four wide tablet"].column,.ui.grid>.row>[class*="four wide tablet"].column,.ui.grid>[class*="four wide tablet"].column{width:25%!important}.ui.column.grid>[class*="five wide tablet"].column,.ui.grid>.column.row>[class*="five wide tablet"].column,.ui.grid>.row>[class*="five wide tablet"].column,.ui.grid>[class*="five wide tablet"].column{width:31.25%!important}.ui.column.grid>[class*="six wide tablet"].column,.ui.grid>.column.row>[class*="six wide tablet"].column,.ui.grid>.row>[class*="six wide tablet"].column,.ui.grid>[class*="six wide tablet"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide tablet"].column,.ui.grid>.column.row>[class*="seven wide tablet"].column,.ui.grid>.row>[class*="seven wide tablet"].column,.ui.grid>[class*="seven wide tablet"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide tablet"].column,.ui.grid>.column.row>[class*="eight wide tablet"].column,.ui.grid>.row>[class*="eight wide tablet"].column,.ui.grid>[class*="eight wide tablet"].column{width:50%!important}.ui.column.grid>[class*="nine wide tablet"].column,.ui.grid>.column.row>[class*="nine wide tablet"].column,.ui.grid>.row>[class*="nine wide tablet"].column,.ui.grid>[class*="nine wide tablet"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide tablet"].column,.ui.grid>.column.row>[class*="ten wide tablet"].column,.ui.grid>.row>[class*="ten wide tablet"].column,.ui.grid>[class*="ten wide tablet"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide tablet"].column,.ui.grid>.column.row>[class*="eleven wide tablet"].column,.ui.grid>.row>[class*="eleven wide tablet"].column,.ui.grid>[class*="eleven wide tablet"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide tablet"].column,.ui.grid>.column.row>[class*="twelve wide tablet"].column,.ui.grid>.row>[class*="twelve wide tablet"].column,.ui.grid>[class*="twelve wide tablet"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide tablet"].column,.ui.grid>.column.row>[class*="thirteen wide tablet"].column,.ui.grid>.row>[class*="thirteen wide tablet"].column,.ui.grid>[class*="thirteen wide tablet"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide tablet"].column,.ui.grid>.column.row>[class*="fourteen wide tablet"].column,.ui.grid>.row>[class*="fourteen wide tablet"].column,.ui.grid>[class*="fourteen wide tablet"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide tablet"].column,.ui.grid>.column.row>[class*="fifteen wide tablet"].column,.ui.grid>.row>[class*="fifteen wide tablet"].column,.ui.grid>[class*="fifteen wide tablet"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide tablet"].column,.ui.grid>.column.row>[class*="sixteen wide tablet"].column,.ui.grid>.row>[class*="sixteen wide tablet"].column,.ui.grid>[class*="sixteen wide tablet"].column{width:100%!important}}@media only screen and (min-width:992px){.ui.column.grid>[class*="one wide computer"].column,.ui.grid>.column.row>[class*="one wide computer"].column,.ui.grid>.row>[class*="one wide computer"].column,.ui.grid>[class*="one wide computer"].column{width:6.25%!important}.ui.column.grid>[class*="two wide computer"].column,.ui.grid>.column.row>[class*="two wide computer"].column,.ui.grid>.row>[class*="two wide computer"].column,.ui.grid>[class*="two wide computer"].column{width:12.5%!important}.ui.column.grid>[class*="three wide computer"].column,.ui.grid>.column.row>[class*="three wide computer"].column,.ui.grid>.row>[class*="three wide computer"].column,.ui.grid>[class*="three wide computer"].column{width:18.75%!important}.ui.column.grid>[class*="four wide computer"].column,.ui.grid>.column.row>[class*="four wide computer"].column,.ui.grid>.row>[class*="four wide computer"].column,.ui.grid>[class*="four wide computer"].column{width:25%!important}.ui.column.grid>[class*="five wide computer"].column,.ui.grid>.column.row>[class*="five wide computer"].column,.ui.grid>.row>[class*="five wide computer"].column,.ui.grid>[class*="five wide computer"].column{width:31.25%!important}.ui.column.grid>[class*="six wide computer"].column,.ui.grid>.column.row>[class*="six wide computer"].column,.ui.grid>.row>[class*="six wide computer"].column,.ui.grid>[class*="six wide computer"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide computer"].column,.ui.grid>.column.row>[class*="seven wide computer"].column,.ui.grid>.row>[class*="seven wide computer"].column,.ui.grid>[class*="seven wide computer"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide computer"].column,.ui.grid>.column.row>[class*="eight wide computer"].column,.ui.grid>.row>[class*="eight wide computer"].column,.ui.grid>[class*="eight wide computer"].column{width:50%!important}.ui.column.grid>[class*="nine wide computer"].column,.ui.grid>.column.row>[class*="nine wide computer"].column,.ui.grid>.row>[class*="nine wide computer"].column,.ui.grid>[class*="nine wide computer"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide computer"].column,.ui.grid>.column.row>[class*="ten wide computer"].column,.ui.grid>.row>[class*="ten wide computer"].column,.ui.grid>[class*="ten wide computer"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide computer"].column,.ui.grid>.column.row>[class*="eleven wide computer"].column,.ui.grid>.row>[class*="eleven wide computer"].column,.ui.grid>[class*="eleven wide computer"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide computer"].column,.ui.grid>.column.row>[class*="twelve wide computer"].column,.ui.grid>.row>[class*="twelve wide computer"].column,.ui.grid>[class*="twelve wide computer"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide computer"].column,.ui.grid>.column.row>[class*="thirteen wide computer"].column,.ui.grid>.row>[class*="thirteen wide computer"].column,.ui.grid>[class*="thirteen wide computer"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide computer"].column,.ui.grid>.column.row>[class*="fourteen wide computer"].column,.ui.grid>.row>[class*="fourteen wide computer"].column,.ui.grid>[class*="fourteen wide computer"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide computer"].column,.ui.grid>.column.row>[class*="fifteen wide computer"].column,.ui.grid>.row>[class*="fifteen wide computer"].column,.ui.grid>[class*="fifteen wide computer"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide computer"].column,.ui.grid>.column.row>[class*="sixteen wide computer"].column,.ui.grid>.row>[class*="sixteen wide computer"].column,.ui.grid>[class*="sixteen wide computer"].column{width:100%!important}}@media only screen and (min-width:1200px) and (max-width:1919px){.ui.column.grid>[class*="one wide large screen"].column,.ui.grid>.column.row>[class*="one wide large screen"].column,.ui.grid>.row>[class*="one wide large screen"].column,.ui.grid>[class*="one wide large screen"].column{width:6.25%!important}.ui.column.grid>[class*="two wide large screen"].column,.ui.grid>.column.row>[class*="two wide large screen"].column,.ui.grid>.row>[class*="two wide large screen"].column,.ui.grid>[class*="two wide large screen"].column{width:12.5%!important}.ui.column.grid>[class*="three wide large screen"].column,.ui.grid>.column.row>[class*="three wide large screen"].column,.ui.grid>.row>[class*="three wide large screen"].column,.ui.grid>[class*="three wide large screen"].column{width:18.75%!important}.ui.column.grid>[class*="four wide large screen"].column,.ui.grid>.column.row>[class*="four wide large screen"].column,.ui.grid>.row>[class*="four wide large screen"].column,.ui.grid>[class*="four wide large screen"].column{width:25%!important}.ui.column.grid>[class*="five wide large screen"].column,.ui.grid>.column.row>[class*="five wide large screen"].column,.ui.grid>.row>[class*="five wide large screen"].column,.ui.grid>[class*="five wide large screen"].column{width:31.25%!important}.ui.column.grid>[class*="six wide large screen"].column,.ui.grid>.column.row>[class*="six wide large screen"].column,.ui.grid>.row>[class*="six wide large screen"].column,.ui.grid>[class*="six wide large screen"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide large screen"].column,.ui.grid>.column.row>[class*="seven wide large screen"].column,.ui.grid>.row>[class*="seven wide large screen"].column,.ui.grid>[class*="seven wide large screen"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide large screen"].column,.ui.grid>.column.row>[class*="eight wide large screen"].column,.ui.grid>.row>[class*="eight wide large screen"].column,.ui.grid>[class*="eight wide large screen"].column{width:50%!important}.ui.column.grid>[class*="nine wide large screen"].column,.ui.grid>.column.row>[class*="nine wide large screen"].column,.ui.grid>.row>[class*="nine wide large screen"].column,.ui.grid>[class*="nine wide large screen"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide large screen"].column,.ui.grid>.column.row>[class*="ten wide large screen"].column,.ui.grid>.row>[class*="ten wide large screen"].column,.ui.grid>[class*="ten wide large screen"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide large screen"].column,.ui.grid>.column.row>[class*="eleven wide large screen"].column,.ui.grid>.row>[class*="eleven wide large screen"].column,.ui.grid>[class*="eleven wide large screen"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide large screen"].column,.ui.grid>.column.row>[class*="twelve wide large screen"].column,.ui.grid>.row>[class*="twelve wide large screen"].column,.ui.grid>[class*="twelve wide large screen"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide large screen"].column,.ui.grid>.column.row>[class*="thirteen wide large screen"].column,.ui.grid>.row>[class*="thirteen wide large screen"].column,.ui.grid>[class*="thirteen wide large screen"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide large screen"].column,.ui.grid>.column.row>[class*="fourteen wide large screen"].column,.ui.grid>.row>[class*="fourteen wide large screen"].column,.ui.grid>[class*="fourteen wide large screen"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide large screen"].column,.ui.grid>.column.row>[class*="fifteen wide large screen"].column,.ui.grid>.row>[class*="fifteen wide large screen"].column,.ui.grid>[class*="fifteen wide large screen"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide large screen"].column,.ui.grid>.column.row>[class*="sixteen wide large screen"].column,.ui.grid>.row>[class*="sixteen wide large screen"].column,.ui.grid>[class*="sixteen wide large screen"].column{width:100%!important}}@media only screen and (min-width:1920px){.ui.column.grid>[class*="one wide widescreen"].column,.ui.grid>.column.row>[class*="one wide widescreen"].column,.ui.grid>.row>[class*="one wide widescreen"].column,.ui.grid>[class*="one wide widescreen"].column{width:6.25%!important}.ui.column.grid>[class*="two wide widescreen"].column,.ui.grid>.column.row>[class*="two wide widescreen"].column,.ui.grid>.row>[class*="two wide widescreen"].column,.ui.grid>[class*="two wide widescreen"].column{width:12.5%!important}.ui.column.grid>[class*="three wide widescreen"].column,.ui.grid>.column.row>[class*="three wide widescreen"].column,.ui.grid>.row>[class*="three wide widescreen"].column,.ui.grid>[class*="three wide widescreen"].column{width:18.75%!important}.ui.column.grid>[class*="four wide widescreen"].column,.ui.grid>.column.row>[class*="four wide widescreen"].column,.ui.grid>.row>[class*="four wide widescreen"].column,.ui.grid>[class*="four wide widescreen"].column{width:25%!important}.ui.column.grid>[class*="five wide widescreen"].column,.ui.grid>.column.row>[class*="five wide widescreen"].column,.ui.grid>.row>[class*="five wide widescreen"].column,.ui.grid>[class*="five wide widescreen"].column{width:31.25%!important}.ui.column.grid>[class*="six wide widescreen"].column,.ui.grid>.column.row>[class*="six wide widescreen"].column,.ui.grid>.row>[class*="six wide widescreen"].column,.ui.grid>[class*="six wide widescreen"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide widescreen"].column,.ui.grid>.column.row>[class*="seven wide widescreen"].column,.ui.grid>.row>[class*="seven wide widescreen"].column,.ui.grid>[class*="seven wide widescreen"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide widescreen"].column,.ui.grid>.column.row>[class*="eight wide widescreen"].column,.ui.grid>.row>[class*="eight wide widescreen"].column,.ui.grid>[class*="eight wide widescreen"].column{width:50%!important}.ui.column.grid>[class*="nine wide widescreen"].column,.ui.grid>.column.row>[class*="nine wide widescreen"].column,.ui.grid>.row>[class*="nine wide widescreen"].column,.ui.grid>[class*="nine wide widescreen"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide widescreen"].column,.ui.grid>.column.row>[class*="ten wide widescreen"].column,.ui.grid>.row>[class*="ten wide widescreen"].column,.ui.grid>[class*="ten wide widescreen"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide widescreen"].column,.ui.grid>.column.row>[class*="eleven wide widescreen"].column,.ui.grid>.row>[class*="eleven wide widescreen"].column,.ui.grid>[class*="eleven wide widescreen"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide widescreen"].column,.ui.grid>.column.row>[class*="twelve wide widescreen"].column,.ui.grid>.row>[class*="twelve wide widescreen"].column,.ui.grid>[class*="twelve wide widescreen"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide widescreen"].column,.ui.grid>.column.row>[class*="thirteen wide widescreen"].column,.ui.grid>.row>[class*="thirteen wide widescreen"].column,.ui.grid>[class*="thirteen wide widescreen"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide widescreen"].column,.ui.grid>.column.row>[class*="fourteen wide widescreen"].column,.ui.grid>.row>[class*="fourteen wide widescreen"].column,.ui.grid>[class*="fourteen wide widescreen"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide widescreen"].column,.ui.grid>.column.row>[class*="fifteen wide widescreen"].column,.ui.grid>.row>[class*="fifteen wide widescreen"].column,.ui.grid>[class*="fifteen wide widescreen"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide widescreen"].column,.ui.grid>.column.row>[class*="sixteen wide widescreen"].column,.ui.grid>.row>[class*="sixteen wide widescreen"].column,.ui.grid>[class*="sixteen wide widescreen"].column{width:100%!important}}.ui.centered.grid,.ui.centered.grid>.row,.ui.grid>.centered.row{text-align:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.ui.centered.grid>.column:not(.aligned):not(.row),.ui.centered.grid>.row>.column:not(.aligned),.ui.grid .centered.row>.column:not(.aligned){text-align:left}.ui.grid>.centered.column,.ui.grid>.row>.centered.column{display:block;margin-left:auto;margin-right:auto}.ui.grid>.relaxed.row>.column,.ui.relaxed.grid>.column:not(.row),.ui.relaxed.grid>.row>.column{padding-left:1.5rem;padding-right:1.5rem}.ui.grid>[class*="very relaxed"].row>.column,.ui[class*="very relaxed"].grid>.column:not(.row),.ui[class*="very relaxed"].grid>.row>.column{padding-left:2.5rem;padding-right:2.5rem}.ui.grid .relaxed.row+.ui.divider,.ui.relaxed.grid .row+.ui.divider{margin-left:1.5rem;margin-right:1.5rem}.ui.grid [class*="very relaxed"].row+.ui.divider,.ui[class*="very relaxed"].grid .row+.ui.divider{margin-left:2.5rem;margin-right:2.5rem}.ui.padded.grid:not(.vertically):not(.horizontally){margin:0!important}[class*="horizontally padded"].ui.grid{margin-left:0!important;margin-right:0!important}[class*="vertically padded"].ui.grid{margin-top:0!important;margin-bottom:0!important}.ui.grid [class*="left floated"].column{margin-right:auto}.ui.grid [class*="right floated"].column{margin-left:auto}.ui.divided.grid:not([class*="vertically divided"])>.column:not(.row),.ui.divided.grid:not([class*="vertically divided"])>.row>.column{box-shadow:-1px 0 0 0 rgba(34,36,38,.15)}.ui[class*="vertically divided"].grid>.column:not(.row),.ui[class*="vertically divided"].grid>.row>.column{margin-top:1rem;margin-bottom:1rem;padding-top:0;padding-bottom:0}.ui[class*="vertically divided"].grid>.row{margin-top:0;margin-bottom:0;position:relative}.ui.divided.grid:not([class*="vertically divided"])>.column:first-child,.ui.divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:none}.ui.grid>.divided.row>.column{box-shadow:-1px 0 0 0 rgba(34,36,38,.15)}.ui.grid>.divided.row>.column:first-child{box-shadow:none}.ui[class*="vertically divided"].grid>.row:before{position:absolute;content:"";top:0;left:0;width:calc(100% - 2rem);height:1px;margin:0 1rem;box-shadow:0 -1px 0 0 rgba(34,36,38,.15)}.ui.padded.divided.grid:not(.vertically):not(.horizontally),[class*="horizontally padded"].ui.divided.grid{width:100%}.ui[class*="vertically divided"].grid>.row:first-child:before{box-shadow:none}.ui.inverted.divided.grid:not([class*="vertically divided"])>.column:not(.row),.ui.inverted.divided.grid:not([class*="vertically divided"])>.row>.column{box-shadow:-1px 0 0 0 rgba(255,255,255,.1)}.ui.inverted.divided.grid:not([class*="vertically divided"])>.column:not(.row):first-child,.ui.inverted.divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:none}.ui.inverted[class*="vertically divided"].grid>.row:before{box-shadow:0 -1px 0 0 rgba(255,255,255,.1)}.ui.relaxed[class*="vertically divided"].grid>.row:before{margin-left:1.5rem;margin-right:1.5rem;width:calc(100% - 3rem)}.ui[class*="very relaxed"][class*="vertically divided"].grid>.row:before{margin-left:5rem;margin-right:5rem;width:calc(100% - 5rem)}.ui.celled.grid{width:100%;margin:1em 0;box-shadow:0 0 0 1px #d4d4d5}.ui.celled.grid>.row{width:100%!important;margin:0;padding:0;box-shadow:0 -1px 0 0 #d4d4d5}.ui.celled.grid>.column:not(.row),.ui.celled.grid>.row>.column{box-shadow:-1px 0 0 0 #d4d4d5;padding:1em}.ui.celled.grid>.column:first-child,.ui.celled.grid>.row>.column:first-child{box-shadow:none}.ui.relaxed.celled.grid>.column:not(.row),.ui.relaxed.celled.grid>.row>.column{padding:1.5em}.ui[class*="very relaxed"].celled.grid>.column:not(.row),.ui[class*="very relaxed"].celled.grid>.row>.column{padding:2em}.ui[class*="internally celled"].grid{box-shadow:none;margin:0}.ui[class*="internally celled"].grid>.row:first-child,.ui[class*="internally celled"].grid>.row>.column:first-child{box-shadow:none}.ui.grid>.row>[class*="top aligned"].column,.ui.grid>[class*="top aligned"].column:not(.row),.ui.grid>[class*="top aligned"].row>.column,.ui[class*="top aligned"].grid>.column:not(.row){-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;vertical-align:top;-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.ui.grid>.row>[class*="middle aligned"].column,.ui.grid>[class*="middle aligned"].column:not(.row),.ui.grid>[class*="middle aligned"].row>.column,.ui[class*="middle aligned"].grid>.column:not(.row){-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;vertical-align:middle;-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.ui.grid>.row>[class*="bottom aligned"].column,.ui.grid>[class*="bottom aligned"].column:not(.row),.ui.grid>[class*="bottom aligned"].row>.column,.ui[class*="bottom aligned"].grid>.column:not(.row){-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;vertical-align:bottom;-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.ui.grid>.row>.stretched.column,.ui.grid>.stretched.column:not(.row),.ui.grid>.stretched.row>.column,.ui.stretched.grid>.column,.ui.stretched.grid>.row>.column{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.grid>.row>.stretched.column>*,.ui.grid>.stretched.column:not(.row)>*,.ui.grid>.stretched.row>.column>*,.ui.stretched.grid>.column>*,.ui.stretched.grid>.row>.column>*{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.ui.grid>.row>[class*="left aligned"].column,.ui.grid>[class*="left aligned"].column.column,.ui.grid>[class*="left aligned"].row>.column,.ui[class*="left aligned"].grid .column{text-align:left;-webkit-align-self:inherit;-ms-flex-item-align:inherit;align-self:inherit}.ui.grid>.row>[class*="center aligned"].column,.ui.grid>[class*="center aligned"].column.column,.ui.grid>[class*="center aligned"].row>.column,.ui[class*="center aligned"].grid .column{text-align:center;-webkit-align-self:inherit;-ms-flex-item-align:inherit;align-self:inherit}.ui[class*="center aligned"].grid{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.ui.grid>.row>[class*="right aligned"].column,.ui.grid>[class*="right aligned"].column.column,.ui.grid>[class*="right aligned"].row>.column,.ui[class*="right aligned"].grid .column{text-align:right;-webkit-align-self:inherit;-ms-flex-item-align:inherit;align-self:inherit}.ui.grid .justified.column,.ui.grid>.justified.row>.column,.ui.justified.grid,.ui.justified.grid>.column,.ui.justified.grid>.row>.column{text-align:justify;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.ui.grid .justified.column{text-align:justify!important;-webkit-hyphens:auto!important;-moz-hyphens:auto!important;-ms-hyphens:auto!important;hyphens:auto!important}.ui.grid>.row>.black.column,.ui.grid>.row>.blue.column,.ui.grid>.row>.brown.column,.ui.grid>.row>.green.column,.ui.grid>.row>.grey.column,.ui.grid>.row>.olive.column,.ui.grid>.row>.orange.column,.ui.grid>.row>.pink.column,.ui.grid>.row>.purple.column,.ui.grid>.row>.red.column,.ui.grid>.row>.teal.column,.ui.grid>.row>.violet.column,.ui.grid>.row>.yellow.column{margin-top:-1rem;margin-bottom:-1rem;padding-top:1rem;padding-bottom:1rem}.ui.grid>.red.column,.ui.grid>.red.row,.ui.grid>.row>.red.column{background-color:#db2828!important;color:#fff}.ui.grid>.orange.column,.ui.grid>.orange.row,.ui.grid>.row>.orange.column{background-color:#f2711c!important;color:#fff}.ui.grid>.row>.yellow.column,.ui.grid>.yellow.column,.ui.grid>.yellow.row{background-color:#fbbd08!important;color:#fff}.ui.grid>.olive.column,.ui.grid>.olive.row,.ui.grid>.row>.olive.column{background-color:#b5cc18!important;color:#fff}.ui.grid>.green.column,.ui.grid>.green.row,.ui.grid>.row>.green.column{background-color:#21ba45!important;color:#fff}.ui.grid>.row>.teal.column,.ui.grid>.teal.column,.ui.grid>.teal.row{background-color:#00b5ad!important;color:#fff}.ui.grid>.blue.column,.ui.grid>.blue.row,.ui.grid>.row>.blue.column{background-color:#2185d0!important;color:#fff}.ui.grid>.row>.violet.column,.ui.grid>.violet.column,.ui.grid>.violet.row{background-color:#6435c9!important;color:#fff}.ui.grid>.purple.column,.ui.grid>.purple.row,.ui.grid>.row>.purple.column{background-color:#a333c8!important;color:#fff}.ui.grid>.pink.column,.ui.grid>.pink.row,.ui.grid>.row>.pink.column{background-color:#e03997!important;color:#fff}.ui.grid>.brown.column,.ui.grid>.brown.row,.ui.grid>.row>.brown.column{background-color:#a5673f!important;color:#fff}.ui.grid>.grey.column,.ui.grid>.grey.row,.ui.grid>.row>.grey.column{background-color:#767676!important;color:#fff}.ui.grid>.black.column,.ui.grid>.black.row,.ui.grid>.row>.black.column{background-color:#1b1c1d!important;color:#fff}.ui.grid>[class*="equal width"].row>.column,.ui[class*="equal width"].grid>.column:not(.row),.ui[class*="equal width"].grid>.row>.column{display:inline-block;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.ui.grid>[class*="equal width"].row>.wide.column,.ui[class*="equal width"].grid>.row>.wide.column,.ui[class*="equal width"].grid>.wide.column{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0}@media only screen and (max-width:767px){.ui.grid>[class*="mobile reversed"].row,.ui[class*="mobile reversed"].grid,.ui[class*="mobile reversed"].grid>.row{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.ui.stackable[class*="mobile reversed"],.ui[class*="mobile vertically reversed"].grid{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"])>.column:first-child,.ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:-1px 0 0 0 rgba(34,36,38,.15)}.ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"])>.column:last-child,.ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:last-child{box-shadow:none}.ui.grid[class*="vertically divided"][class*="mobile vertically reversed"]>.row:first-child:before{box-shadow:0 -1px 0 0 rgba(34,36,38,.15)}.ui.grid[class*="vertically divided"][class*="mobile vertically reversed"]>.row:last-child:before{box-shadow:none}.ui[class*="mobile reversed"].celled.grid>.row>.column:first-child{box-shadow:-1px 0 0 0 #d4d4d5}.ui[class*="mobile reversed"].celled.grid>.row>.column:last-child{box-shadow:none}}@media only screen and (min-width:768px) and (max-width:991px){.ui.grid>[class*="tablet reversed"].row,.ui[class*="tablet reversed"].grid,.ui[class*="tablet reversed"].grid>.row{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.ui[class*="tablet vertically reversed"].grid{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"])>.column:first-child,.ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:-1px 0 0 0 rgba(34,36,38,.15)}.ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"])>.column:last-child,.ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:last-child{box-shadow:none}.ui.grid[class*="vertically divided"][class*="tablet vertically reversed"]>.row:first-child:before{box-shadow:0 -1px 0 0 rgba(34,36,38,.15)}.ui.grid[class*="vertically divided"][class*="tablet vertically reversed"]>.row:last-child:before{box-shadow:none}.ui[class*="tablet reversed"].celled.grid>.row>.column:first-child{box-shadow:-1px 0 0 0 #d4d4d5}.ui[class*="tablet reversed"].celled.grid>.row>.column:last-child{box-shadow:none}}@media only screen and (min-width:992px){.ui.grid>[class*="computer reversed"].row,.ui[class*="computer reversed"].grid,.ui[class*="computer reversed"].grid>.row{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.ui[class*="computer vertically reversed"].grid{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"])>.column:first-child,.ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:-1px 0 0 0 rgba(34,36,38,.15)}.ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"])>.column:last-child,.ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:last-child{box-shadow:none}.ui.grid[class*="vertically divided"][class*="computer vertically reversed"]>.row:first-child:before{box-shadow:0 -1px 0 0 rgba(34,36,38,.15)}.ui.grid[class*="vertically divided"][class*="computer vertically reversed"]>.row:last-child:before{box-shadow:none}.ui[class*="computer reversed"].celled.grid>.row>.column:first-child{box-shadow:-1px 0 0 0 #d4d4d5}.ui[class*="computer reversed"].celled.grid>.row>.column:last-child{box-shadow:none}}@media only screen and (min-width:768px) and (max-width:991px){.ui.doubling.grid{width:auto}.ui.doubling.grid>.row,.ui.grid>.doubling.row{margin:0!important;padding:0!important}.ui.doubling.grid>.row>.column,.ui.grid>.doubling.row>.column{display:inline-block!important;padding-top:1rem!important;padding-bottom:1rem!important;box-shadow:none!important;margin:0}.ui.grid>[class*="two column"].doubling.row.row>.column,.ui[class*="two column"].doubling.grid>.column:not(.row),.ui[class*="two column"].doubling.grid>.row>.column{width:100%!important}.ui.grid>[class*="three column"].doubling.row.row>.column,.ui.grid>[class*="four column"].doubling.row.row>.column,.ui[class*="three column"].doubling.grid>.column:not(.row),.ui[class*="three column"].doubling.grid>.row>.column,.ui[class*="four column"].doubling.grid>.column:not(.row),.ui[class*="four column"].doubling.grid>.row>.column{width:50%!important}.ui.grid>[class*="five column"].doubling.row.row>.column,.ui.grid>[class*="six column"].doubling.row.row>.column,.ui.grid>[class*="seven column"].doubling.row.row>.column,.ui[class*="five column"].doubling.grid>.column:not(.row),.ui[class*="five column"].doubling.grid>.row>.column,.ui[class*="six column"].doubling.grid>.column:not(.row),.ui[class*="six column"].doubling.grid>.row>.column,.ui[class*="seven column"].doubling.grid>.column:not(.row),.ui[class*="seven column"].doubling.grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="eight column"].doubling.row.row>.column,.ui.grid>[class*="nine column"].doubling.row.row>.column,.ui[class*="eight column"].doubling.grid>.column:not(.row),.ui[class*="eight column"].doubling.grid>.row>.column,.ui[class*="nine column"].doubling.grid>.column:not(.row),.ui[class*="nine column"].doubling.grid>.row>.column{width:25%!important}.ui.grid>[class*="ten column"].doubling.row.row>.column,.ui.grid>[class*="eleven column"].doubling.row.row>.column,.ui[class*="ten column"].doubling.grid>.column:not(.row),.ui[class*="ten column"].doubling.grid>.row>.column,.ui[class*="eleven column"].doubling.grid>.column:not(.row),.ui[class*="eleven column"].doubling.grid>.row>.column{width:20%!important}.ui.grid>[class*="twelve column"].doubling.row.row>.column,.ui.grid>[class*="thirteen column"].doubling.row.row>.column,.ui[class*="twelve column"].doubling.grid>.column:not(.row),.ui[class*="twelve column"].doubling.grid>.row>.column,.ui[class*="thirteen column"].doubling.grid>.column:not(.row),.ui[class*="thirteen column"].doubling.grid>.row>.column{width:16.66666667%!important}.ui.grid>[class*="fourteen column"].doubling.row.row>.column,.ui.grid>[class*="fifteen column"].doubling.row.row>.column,.ui[class*="fourteen column"].doubling.grid>.column:not(.row),.ui[class*="fourteen column"].doubling.grid>.row>.column,.ui[class*="fifteen column"].doubling.grid>.column:not(.row),.ui[class*="fifteen column"].doubling.grid>.row>.column{width:14.28571429%!important}.ui.grid>[class*="sixteen column"].doubling.row.row>.column,.ui[class*="sixteen column"].doubling.grid>.column:not(.row),.ui[class*="sixteen column"].doubling.grid>.row>.column{width:12.5%!important}}@media only screen and (max-width:767px){.ui.doubling.grid>.row,.ui.grid>.doubling.row{margin:0!important;padding:0!important}.ui.doubling.grid>.row>.column,.ui.grid>.doubling.row>.column{padding-top:1rem!important;padding-bottom:1rem!important;margin:0!important;box-shadow:none!important}.ui.grid>[class*="two column"].doubling:not(.stackable).row.row>.column,.ui[class*="two column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="two column"].doubling:not(.stackable).grid>.row>.column{width:100%!important}.ui.grid>[class*="three column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="four column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="five column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="six column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="seven column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="eight column"].doubling:not(.stackable).row.row>.column,.ui[class*="three column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="three column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="four column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="four column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="five column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="five column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="six column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="six column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="seven column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="seven column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="eight column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="eight column"].doubling:not(.stackable).grid>.row>.column{width:50%!important}.ui.grid>[class*="nine column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="ten column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="eleven column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="twelve column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="thirteen column"].doubling:not(.stackable).row.row>.column,.ui[class*="nine column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="nine column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="ten column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="ten column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="eleven column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="eleven column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="twelve column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="twelve column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="thirteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="thirteen column"].doubling:not(.stackable).grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="fourteen column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="fifteen column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="sixteen column"].doubling:not(.stackable).row.row>.column,.ui[class*="fourteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="fourteen column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="fifteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="fifteen column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="sixteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="sixteen column"].doubling:not(.stackable).grid>.row>.column{width:25%!important}.ui.stackable.grid{width:auto;margin-left:0!important;margin-right:0!important}.ui.grid>.stackable.stackable.row>.column,.ui.stackable.grid>.column.grid>.column,.ui.stackable.grid>.column.row>.column,.ui.stackable.grid>.column:not(.row),.ui.stackable.grid>.row>.column,.ui.stackable.grid>.row>.wide.column,.ui.stackable.grid>.wide.column{width:100%!important;margin:0!important;box-shadow:none!important;padding:1rem!important}.ui.stackable.grid:not(.vertically)>.row{margin:0;padding:0}.ui.container>.ui.stackable.grid>.column,.ui.container>.ui.stackable.grid>.row>.column{padding-left:0!important;padding-right:0!important}.ui.grid .ui.stackable.grid,.ui.segment:not(.vertical) .ui.stackable.page.grid{margin-left:-1rem!important;margin-right:-1rem!important}.ui.stackable.celled.grid>.column:not(.row):first-child,.ui.stackable.celled.grid>.row:first-child>.column:first-child,.ui.stackable.divided.grid>.column:not(.row):first-child,.ui.stackable.divided.grid>.row:first-child>.column:first-child{border-top:none!important}.ui.inverted.stackable.celled.grid>.column:not(.row),.ui.inverted.stackable.celled.grid>.row>.column,.ui.inverted.stackable.divided.grid>.column:not(.row),.ui.inverted.stackable.divided.grid>.row>.column{border-top:1px solid rgba(255,255,255,.1)}.ui.stackable.celled.grid>.column:not(.row),.ui.stackable.celled.grid>.row>.column,.ui.stackable.divided:not(.vertically).grid>.column:not(.row),.ui.stackable.divided:not(.vertically).grid>.row>.column{border-top:1px solid rgba(34,36,38,.15);box-shadow:none!important;padding-top:2rem!important;padding-bottom:2rem!important}.ui.stackable.celled.grid>.row{box-shadow:none!important}.ui.stackable.divided:not(.vertically).grid>.column:not(.row),.ui.stackable.divided:not(.vertically).grid>.row>.column{padding-left:0!important;padding-right:0!important}.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="computer only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].row:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].column:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].row:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.tablet:not(.mobile).only.grid.grid.grid,.ui[class*="computer only"].grid.grid.grid:not(.mobile),.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui[class*=widescreen].grid.grid.grid:not(.mobile){display:none!important}}@media only screen and (min-width:768px) and (max-width:991px){.ui.grid.grid.grid>.row>[class*="computer only"].column:not(.tablet),.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.tablet),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].column:not(.tablet),.ui.grid.grid.grid>[class*="computer only"].row:not(.tablet),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="mobile only"].column:not(.tablet),.ui.grid.grid.grid>[class*="mobile only"].row:not(.tablet),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="computer only"].grid.grid.grid:not(.tablet),.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui[class*=widescreen].grid.grid.grid:not(.mobile),.ui[class*="mobile only"].grid.grid.grid:not(.tablet){display:none!important}}@media only screen and (min-width:992px) and (max-width:1199px){.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui[class*=widescreen].grid.grid.grid:not(.mobile),.ui[class*="mobile only"].grid.grid.grid:not(.computer){display:none!important}}@media only screen and (min-width:1200px) and (max-width:1919px){.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui[class*=widescreen].grid.grid.grid:not(.mobile),.ui[class*="mobile only"].grid.grid.grid:not(.computer){display:none!important}}@media only screen and (min-width:1920px){.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui[class*="mobile only"].grid.grid.grid:not(.computer){display:none!important}}.ui.menu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:1rem 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;background:#fff;font-weight:400;border:1px solid rgba(34,36,38,.15);box-shadow:0 1px 2px 0 rgba(34,36,38,.15);border-radius:.28571429rem;min-height:2.85714286em}.ui.menu:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.menu:first-child{margin-top:0}.ui.menu:last-child{margin-bottom:0}.ui.menu .menu{margin:0}.ui.menu:not(.vertical)>.menu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.menu:not(.vertical) .item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.menu .item{position:relative;vertical-align:middle;line-height:1;text-decoration:none;-webkit-tap-highlight-color:transparent;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:0 0;padding:.92857143em 1.14285714em;text-transform:none;color:rgba(0,0,0,.87);font-weight:400;-webkit-transition:background .1s ease,box-shadow .1s ease,color .1s ease;transition:background .1s ease,box-shadow .1s ease,color .1s ease}.ui.menu>.item:first-child{border-radius:.28571429rem 0 0 .28571429rem}.ui.menu .item:before{position:absolute;content:'';top:0;right:0;height:100%;width:1px;background:rgba(34,36,38,.1)}.ui.menu .item>a:not(.ui),.ui.menu .item>p:only-child,.ui.menu .text.item>*{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;line-height:1.3}.ui.menu .item>p:first-child{margin-top:0}.ui.menu .item>p:last-child{margin-bottom:0}.ui.menu .item>i.icon{opacity:.9;float:none;margin:0 .35714286em 0 0}.ui.menu:not(.vertical) .item>.button{position:relative;top:0;margin:-.5em 0;padding-bottom:.71428571em;padding-top:.71428571em;font-size:1em}.ui.menu>.container,.ui.menu>.grid{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:inherit;-webkit-align-items:inherit;-ms-flex-align:inherit;align-items:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:inherit;-ms-flex-direction:inherit;flex-direction:inherit}.ui.menu .item>.input{width:100%}.ui.menu:not(.vertical) .item>.input{position:relative;top:0;margin:-.5em 0}.ui.menu .item>.input input{font-size:1em;padding-top:.57142857em;padding-bottom:.57142857em}.ui.menu .header.item,.ui.vertical.menu .header.item{margin:0;background:0 0;text-transform:normal;font-weight:700}.ui.vertical.menu .item>.header:not(.ui){margin:0 0 .5em;font-size:1em;font-weight:700}.ui.menu .ui.popup{display:none}.ui.menu .ui.visible.popup{display:block}.ui.menu .item>i.dropdown.icon{padding:0;float:right;margin:0 0 0 1em}.ui.menu .dropdown.item .menu{left:0;min-width:calc(100% - 1px);border-radius:0 0 .28571429rem .28571429rem;background:#fff;margin:0;box-shadow:0 1px 3px 0 rgba(0,0,0,.08);-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.ui.menu .ui.dropdown .menu>.item{margin:0;text-align:left;font-size:1em!important;padding:.71428571em 1.14285714em!important;background:0 0!important;color:rgba(0,0,0,.87)!important;text-transform:none!important;font-weight:400!important;box-shadow:none!important;-webkit-transition:none!important;transition:none!important}.ui.menu .ui.dropdown .menu>.item:hover,.ui.menu .ui.dropdown .menu>.selected.item{background:rgba(0,0,0,.05)!important;color:rgba(0,0,0,.95)!important}.ui.menu .ui.dropdown .menu>.active.item{background:rgba(0,0,0,.03)!important;font-weight:700!important;color:rgba(0,0,0,.95)!important}.ui.menu .ui.dropdown.item .menu .item:not(.filtered){display:block}.ui.menu .ui.dropdown .menu>.item .icon:not(.dropdown){display:inline-block;font-size:1em!important;float:none;margin:0 .75em 0 0}.ui.secondary.menu .dropdown.item>.menu,.ui.text.menu .dropdown.item>.menu{border-radius:.28571429rem;margin-top:.35714286em}.ui.menu .pointing.dropdown.item .menu{margin-top:.75em}.ui.inverted.menu .search.dropdown.item>.search,.ui.inverted.menu .search.dropdown.item>.text{color:rgba(255,255,255,.9)}.ui.vertical.menu .dropdown.item>.icon{float:right;content:"\f0da";margin-left:1em}.ui.vertical.menu .dropdown.item .menu{top:0!important;left:100%;min-width:0;margin:0;box-shadow:0 1px 3px 0 rgba(0,0,0,.08);border-radius:0 .28571429rem .28571429rem}.ui.vertical.menu .active.dropdown.item{border-top-right-radius:0;border-bottom-right-radius:0}.ui.vertical.menu .dropdown.active.item{box-shadow:none}.ui.item.menu .dropdown .menu .item{width:100%}.ui.menu .item>.label{background:#999;color:#fff;margin-left:1em;padding:.3em .71428571em}.ui.vertical.menu .item>.label{background:#999;color:#fff;margin-top:-.15em;margin-bottom:-.15em;padding:.3em .71428571em;float:right;text-align:center}.ui.menu .item>.floating.label{padding:.3em .71428571em}.ui.menu .item>img:not(.ui){display:inline-block;vertical-align:middle;margin:-.3em 0;width:2.5em}.ui.vertical.menu .item>img:not(.ui):only-child{display:block;max-width:100%;width:auto}.ui.vertical.sidebar.menu>.item:first-child:before{display:block!important}.ui.vertical.sidebar.menu>.item::before{top:auto;bottom:0}@media only screen and (max-width:767px){.ui.menu>.ui.container{width:100%;margin-left:0!important;margin-right:0!important}}@media only screen and (min-width:768px){.ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless)>.container>.item:not(.right):not(.borderless):first-child{border-left:1px solid rgba(34,36,38,.1)}}.ui.link.menu .item:hover,.ui.menu .dropdown.item:hover,.ui.menu .link.item:hover,.ui.menu a.item:hover{cursor:pointer;background:rgba(0,0,0,.03);color:rgba(0,0,0,.95)}.ui.link.menu .item:active,.ui.menu .link.item:active,.ui.menu a.item:active{background:rgba(0,0,0,.03);color:rgba(0,0,0,.95)}.ui.menu .active.item{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);font-weight:400;box-shadow:none}.ui.menu .active.item>i.icon{opacity:1}.ui.menu .active.item:hover,.ui.vertical.menu .active.item:hover{background-color:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.menu .item.disabled,.ui.menu .item.disabled:hover{cursor:default;background-color:transparent!important;color:rgba(40,40,40,.3)}.ui.menu:not(.vertical) .left.item,.ui.menu:not(.vertical) .left.menu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-right:auto!important}.ui.menu:not(.vertical) .right.item,.ui.menu:not(.vertical) .right.menu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-left:auto!important}.ui.menu .right.item::before,.ui.menu .right.menu>.item::before{right:auto;left:0}.ui.vertical.menu{display:block;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background:#fff;box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.ui.vertical.menu .item{display:block;background:0 0;border-top:none;border-right:none}.ui.vertical.menu>.item:first-child{border-radius:.28571429rem .28571429rem 0 0}.ui.vertical.menu>.item:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui.vertical.menu .item>i.icon{width:1.18em;float:right;margin:0 0 0 .5em}.ui.vertical.menu .item>.label+i.icon{float:none;margin:0 .5em 0 0}.ui.vertical.menu .item:before{position:absolute;content:'';top:0;left:0;width:100%;background:rgba(34,36,38,.1);height:1px}.ui.vertical.menu .item:first-child:before{display:none!important}.ui.vertical.menu .item>.menu{margin:.5em -1.14285714em 0}.ui.vertical.menu .menu .item{background:0 0;padding:.5em 1.33333333em;font-size:.85714286em;color:rgba(0,0,0,.5)}.ui.vertical.menu .item .menu .link.item:hover,.ui.vertical.menu .item .menu a.item:hover{color:rgba(0,0,0,.85)}.ui.vertical.menu .menu .item:before{display:none}.ui.vertical.menu .active.item{background:rgba(0,0,0,.05);border-radius:0;box-shadow:none}.ui.vertical.menu>.active.item:first-child{border-radius:.28571429rem .28571429rem 0 0}.ui.vertical.menu>.active.item:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui.vertical.menu>.active.item:only-child{border-radius:.28571429rem}.ui.vertical.menu .active.item .menu .active.item{border-left:none}.ui.vertical.menu .item .menu .active.item{background-color:transparent;font-weight:700;color:rgba(0,0,0,.95)}.ui.tabular.menu{border-radius:0;box-shadow:none!important;border:none;background:none;border-bottom:1px solid #d4d4d5}.ui.tabular.fluid.menu{width:calc(100% + 2px)!important}.ui.tabular.menu .item{background:0 0;border-bottom:none;border-left:1px solid transparent;border-right:1px solid transparent;border-top:2px solid transparent;padding:.92857143em 1.42857143em;color:rgba(0,0,0,.87)}.ui.tabular.menu .item:before{display:none}.ui.tabular.menu .item:hover{background-color:transparent;color:rgba(0,0,0,.8)}.ui.tabular.menu .active.item{background:#fff;color:rgba(0,0,0,.95);border-top-width:1px;border-color:#d4d4d5;font-weight:700;margin-bottom:-1px;box-shadow:none;border-radius:.28571429rem .28571429rem 0 0!important}.ui.tabular.menu+.bottom.attached.segment{border-top:none;margin:0;width:100%}.top.attached.segment+.ui.bottom.tabular.menu{position:relative;width:calc(100% + 2px);left:-1px}.ui.bottom.tabular.menu{background:none;border-radius:0;box-shadow:none!important;border-bottom:none;border-top:1px solid #d4d4d5}.ui.bottom.tabular.menu .item{background:0 0;border-left:1px solid transparent;border-right:1px solid transparent;border-bottom:1px solid transparent;border-top:none}.ui.bottom.tabular.menu .active.item{background:#fff;color:rgba(0,0,0,.95);border-color:#d4d4d5;margin:-1px 0 0;border-radius:0 0 .28571429rem .28571429rem!important}.ui.vertical.tabular.menu{background:none;border-radius:0;box-shadow:none!important;border-bottom:none;border-right:1px solid #d4d4d5}.ui.vertical.tabular.menu .item{background:0 0;border-left:1px solid transparent;border-bottom:1px solid transparent;border-top:1px solid transparent;border-right:none}.ui.vertical.tabular.menu .active.item{background:#fff;color:rgba(0,0,0,.95);border-color:#d4d4d5;margin:0 -1px 0 0;border-radius:.28571429rem 0 0 .28571429rem!important}.ui.vertical.right.tabular.menu{background:none;border-radius:0;box-shadow:none!important;border-bottom:none;border-right:none;border-left:1px solid #d4d4d5}.ui.vertical.right.tabular.menu .item{background:0 0;border-right:1px solid transparent;border-bottom:1px solid transparent;border-top:1px solid transparent;border-left:none}.ui.vertical.right.tabular.menu .active.item{background:#fff;color:rgba(0,0,0,.95);border-color:#d4d4d5;margin:0 0 0 -1px;border-radius:0 .28571429rem .28571429rem 0!important}.ui.tabular.menu .active.dropdown.item{margin-bottom:0;border-left:1px solid transparent;border-right:1px solid transparent;border-top:2px solid transparent;border-bottom:none}.ui.pagination.menu{margin:0;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.ui.pagination.menu .item:last-child{border-radius:0 .28571429rem .28571429rem 0}.ui.pagination.menu .item:last-child:before{display:none}.ui.pagination.menu .item{min-width:3em;text-align:center}.ui.pagination.menu .icon.item i.icon{vertical-align:top}.ui.pagination.menu .active.item{border-top:none;padding-top:.92857143em;background-color:rgba(0,0,0,.05);color:rgba(0,0,0,.95);box-shadow:none}.ui.secondary.menu{background:0 0;margin-left:-.35714286em;margin-right:-.35714286em;border-radius:0;border:none;box-shadow:none}.ui.secondary.menu .item{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;box-shadow:none;border:none;padding:.71428571em .92857143em;margin:0 .35714286em;background:0 0;-webkit-transition:color .1s ease;transition:color .1s ease;border-radius:.28571429rem}.ui.secondary.menu .item:before{display:none!important}.ui.secondary.menu .header.item{border-radius:0;border-right:none;background:none}.ui.secondary.menu .item>img:not(.ui){margin:0}.ui.secondary.menu .dropdown.item:hover,.ui.secondary.menu .link.item:hover,.ui.secondary.menu a.item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.secondary.menu .active.item{box-shadow:none;background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);border-radius:.28571429rem}.ui.secondary.menu .active.item:hover{box-shadow:none;background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.secondary.inverted.menu .link.item,.ui.secondary.inverted.menu a.item{color:rgba(255,255,255,.7)!important}.ui.secondary.inverted.menu .dropdown.item:hover,.ui.secondary.inverted.menu .link.item:hover,.ui.secondary.inverted.menu a.item:hover{background:rgba(255,255,255,.08);color:#fff!important}.ui.secondary.inverted.menu .active.item{background:rgba(255,255,255,.15);color:#fff!important}.ui.secondary.item.menu{margin-left:0;margin-right:0}.ui.secondary.item.menu .item:last-child{margin-right:0}.ui.secondary.attached.menu{box-shadow:none}.ui.vertical.secondary.menu .item:not(.dropdown)>.menu{margin:0 -.92857143em}.ui.vertical.secondary.menu .item:not(.dropdown)>.menu>.item{margin:0;padding:.5em 1.33333333em}.ui.secondary.vertical.menu>.item{border:none;margin:0 0 .35714286em;border-radius:.28571429rem!important}.ui.secondary.vertical.menu>.header.item{border-radius:0}.ui.secondary.inverted.menu,.ui.vertical.secondary.menu .item>.menu .item{background-color:transparent}.ui.secondary.pointing.menu{margin-left:0;margin-right:0;border-bottom:2px solid rgba(34,36,38,.15)}.ui.secondary.pointing.menu .item{border-bottom-color:transparent;border-bottom-style:solid;border-radius:0;-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end;margin:0 0 -2px;padding:.85714286em 1.14285714em;border-bottom-width:2px;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.secondary.pointing.menu .header.item{color:rgba(0,0,0,.85)!important}.ui.secondary.pointing.menu .text.item{box-shadow:none!important}.ui.secondary.pointing.menu .item:after{display:none}.ui.secondary.pointing.menu .dropdown.item:hover,.ui.secondary.pointing.menu .link.item:hover,.ui.secondary.pointing.menu a.item:hover{background-color:transparent;color:rgba(0,0,0,.87)}.ui.secondary.pointing.menu .dropdown.item:active,.ui.secondary.pointing.menu .link.item:active,.ui.secondary.pointing.menu a.item:active{background-color:transparent;border-color:rgba(34,36,38,.15)}.ui.secondary.pointing.menu .active.item{background-color:transparent;box-shadow:none;border-color:#1b1c1d;font-weight:700;color:rgba(0,0,0,.95)}.ui.secondary.pointing.menu .active.item:hover{border-color:#1b1c1d;color:rgba(0,0,0,.95)}.ui.secondary.pointing.menu .active.dropdown.item{border-color:transparent}.ui.secondary.vertical.pointing.menu{border-bottom-width:0;border-right-width:2px;border-right-style:solid;border-right-color:rgba(34,36,38,.15)}.ui.secondary.vertical.pointing.menu .item{border-bottom:none;border-right-style:solid;border-right-color:transparent;border-radius:0!important;margin:0 -2px 0 0;border-right-width:2px}.ui.secondary.vertical.pointing.menu .active.item{border-color:#1b1c1d}.ui.secondary.inverted.pointing.menu{border-width:2px;border-color:rgba(34,36,38,.15)}.ui.secondary.inverted.pointing.menu .item{color:rgba(255,255,255,.9)}.ui.secondary.inverted.pointing.menu .header.item{color:#fff!important}.ui.secondary.inverted.pointing.menu .item:hover{color:rgba(0,0,0,.95)}.ui.secondary.inverted.pointing.menu .active.item{border-color:#fff;color:#fff}.ui.text.menu{background:none;border-radius:0;box-shadow:none;border:none;margin:1em -.5em}.ui.text.menu .item{border-radius:0;box-shadow:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;margin:0;padding:.35714286em .5em;font-weight:400;color:rgba(0,0,0,.6);-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.text.menu .item:before,.ui.text.menu .menu .item:before{display:none!important}.ui.text.menu .header.item{background-color:transparent;opacity:1;color:rgba(0,0,0,.85);font-size:.92857143em;text-transform:uppercase;font-weight:700}.ui.text.item.menu .item,.ui.text.menu .item>img:not(.ui){margin:0}.ui.vertical.text.menu{margin:1em 0}.ui.vertical.text.menu:first-child{margin-top:0}.ui.vertical.text.menu:last-child{margin-bottom:0}.ui.vertical.text.menu .item{margin:.57142857em 0}.ui.vertical.text.menu .item>i.icon{float:none;margin:0 .35714286em 0 0}.ui.vertical.text.menu .header.item{margin:.57142857em 0 .71428571em}.ui.vertical.text.menu .item:not(.dropdown)>.menu{margin:0}.ui.vertical.text.menu .item:not(.dropdown)>.menu>.item{margin:0;padding:.5em 0}.ui.text.menu .item:hover{opacity:1;background-color:transparent}.ui.text.menu .active.item{background-color:transparent;border:none;box-shadow:none;font-weight:400;color:rgba(0,0,0,.95)}.ui.text.menu .active.item:hover{background-color:transparent}.ui.text.attached.menu,.ui.text.pointing.menu .active.item:after{box-shadow:none}.ui.inverted.text.menu,.ui.inverted.text.menu .active.item,.ui.inverted.text.menu .item,.ui.inverted.text.menu .item:hover{background-color:transparent!important}.ui.fluid.text.menu{margin-left:0;margin-right:0}.ui.vertical.icon.menu{display:inline-block;width:auto}.ui.icon.menu .item{height:auto;text-align:center;color:#1b1c1d}.ui.icon.menu .item>.icon:not(.dropdown){margin:0;opacity:1}.ui.icon.menu .icon:before{opacity:1}.ui.menu .icon.item>.icon{width:auto;margin:0 auto}.ui.vertical.icon.menu .item>.icon:not(.dropdown){display:block;opacity:1;margin:0 auto;float:none}.ui.inverted.icon.menu .item{color:#fff}.ui.labeled.icon.menu{text-align:center}.ui.labeled.icon.menu .item{min-width:6em;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.labeled.icon.menu .item>.icon:not(.dropdown){height:1em;display:block;font-size:1.71428571em!important;margin:0 auto .5rem!important}.ui.fluid.labeled.icon.menu>.item{min-width:0}@media only screen and (max-width:767px){.ui.stackable.menu{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.stackable.menu .item{width:100%!important}.ui.stackable.menu .item:before{position:absolute;content:'';top:auto;bottom:0;left:0;width:100%;background:rgba(34,36,38,.1);height:1px}}.ui.menu .red.active.item,.ui.red.menu .active.item{border-color:#db2828!important;color:#db2828!important}.ui.menu .orange.active.item,.ui.orange.menu .active.item{border-color:#f2711c!important;color:#f2711c!important}.ui.menu .yellow.active.item,.ui.yellow.menu .active.item{border-color:#fbbd08!important;color:#fbbd08!important}.ui.menu .olive.active.item,.ui.olive.menu .active.item{border-color:#b5cc18!important;color:#b5cc18!important}.ui.green.menu .active.item,.ui.menu .green.active.item{border-color:#21ba45!important;color:#21ba45!important}.ui.menu .teal.active.item,.ui.teal.menu .active.item{border-color:#00b5ad!important;color:#00b5ad!important}.ui.blue.menu .active.item,.ui.menu .blue.active.item{border-color:#2185d0!important;color:#2185d0!important}.ui.menu .violet.active.item,.ui.violet.menu .active.item{border-color:#6435c9!important;color:#6435c9!important}.ui.menu .purple.active.item,.ui.purple.menu .active.item{border-color:#a333c8!important;color:#a333c8!important}.ui.menu .pink.active.item,.ui.pink.menu .active.item{border-color:#e03997!important;color:#e03997!important}.ui.brown.menu .active.item,.ui.menu .brown.active.item{border-color:#a5673f!important;color:#a5673f!important}.ui.grey.menu .active.item,.ui.menu .grey.active.item{border-color:#767676!important;color:#767676!important}.ui.inverted.menu{border:0 solid transparent;background:#1b1c1d;box-shadow:none}.ui.inverted.menu .item,.ui.inverted.menu .item>a:not(.ui){background:0 0;color:rgba(255,255,255,.9)}.ui.inverted.menu .item.menu{background:0 0}.ui.inverted.menu .item:before,.ui.vertical.inverted.menu .item:before{background:rgba(255,255,255,.08)}.ui.vertical.inverted.menu .menu .item,.ui.vertical.inverted.menu .menu .item a:not(.ui){color:rgba(255,255,255,.5)}.ui.inverted.menu .header.item{margin:0;background:0 0;box-shadow:none}.ui.inverted.menu .item.disabled,.ui.inverted.menu .item.disabled:hover{color:rgba(225,225,225,.3)}.ui.inverted.menu .dropdown.item:hover,.ui.inverted.menu .link.item:hover,.ui.inverted.menu a.item:hover,.ui.link.inverted.menu .item:hover{background:rgba(255,255,255,.08);color:#fff}.ui.vertical.inverted.menu .item .menu .link.item:hover,.ui.vertical.inverted.menu .item .menu a.item:hover{background:0 0;color:#fff}.ui.inverted.menu .link.item:active,.ui.inverted.menu a.item:active{background:rgba(255,255,255,.08);color:#fff}.ui.inverted.menu .active.item{background:rgba(255,255,255,.15);color:#fff!important}.ui.inverted.vertical.menu .item .menu .active.item{background:0 0;color:#fff}.ui.inverted.pointing.menu .active.item:after{background:#3d3e3f!important;margin:0!important;box-shadow:none!important;border:none!important}.ui.inverted.menu .active.item:hover{background:rgba(255,255,255,.15);color:#fff!important}.ui.inverted.pointing.menu .active.item:hover:after{background:#3d3e3f!important}.ui.floated.menu{float:left;margin:0 .5rem 0 0}.ui.floated.menu .item:last-child:before{display:none}.ui.right.floated.menu{float:right;margin:0 0 0 .5rem}.ui.inverted.menu .red.active.item,.ui.inverted.red.menu{background-color:#db2828}.ui.inverted.red.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.red.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.menu .orange.active.item,.ui.inverted.orange.menu{background-color:#f2711c}.ui.inverted.orange.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.orange.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.menu .yellow.active.item,.ui.inverted.yellow.menu{background-color:#fbbd08}.ui.inverted.yellow.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.yellow.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.menu .olive.active.item,.ui.inverted.olive.menu{background-color:#b5cc18}.ui.inverted.olive.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.olive.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.green.menu,.ui.inverted.menu .green.active.item{background-color:#21ba45}.ui.inverted.green.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.green.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.menu .teal.active.item,.ui.inverted.teal.menu{background-color:#00b5ad}.ui.inverted.teal.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.teal.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.blue.menu,.ui.inverted.menu .blue.active.item{background-color:#2185d0}.ui.inverted.blue.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.blue.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.menu .violet.active.item,.ui.inverted.violet.menu{background-color:#6435c9}.ui.inverted.violet.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.violet.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.menu .purple.active.item,.ui.inverted.purple.menu{background-color:#a333c8}.ui.inverted.purple.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.purple.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.menu .pink.active.item,.ui.inverted.pink.menu{background-color:#e03997}.ui.inverted.pink.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.pink.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.brown.menu,.ui.inverted.menu .brown.active.item{background-color:#a5673f}.ui.inverted.brown.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.brown.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.grey.menu,.ui.inverted.menu .grey.active.item{background-color:#767676}.ui.inverted.grey.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.grey.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.fitted.menu .item,.ui.fitted.menu .item .menu .item,.ui.menu .fitted.item{padding:0}.ui.horizontally.fitted.menu .item,.ui.horizontally.fitted.menu .item .menu .item,.ui.menu .horizontally.fitted.item{padding-top:.92857143em;padding-bottom:.92857143em}.ui.menu .vertically.fitted.item,.ui.vertically.fitted.menu .item,.ui.vertically.fitted.menu .item .menu .item{padding-left:1.14285714em;padding-right:1.14285714em}.ui.borderless.menu .item .menu .item:before,.ui.borderless.menu .item:before,.ui.menu .borderless.item:before{background:0 0!important}.ui.compact.menu{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;margin:0;vertical-align:middle}.ui.compact.vertical.menu{display:inline-block;width:auto!important}.ui.compact.menu .item:last-child{border-radius:0 .28571429rem .28571429rem 0}.ui.compact.menu .item:last-child:before{display:none}.ui.compact.vertical.menu .item:last-child::before{display:block}.ui.menu.fluid,.ui.vertical.menu.fluid{width:100%!important}.ui.item.menu,.ui.item.menu .item{width:100%;padding-left:0!important;padding-right:0!important;margin-left:0!important;margin-right:0!important;text-align:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.ui.item.menu .item:last-child:before{display:none}.ui.menu.two.item .item{width:50%}.ui.menu.three.item .item{width:33.333%}.ui.menu.four.item .item{width:25%}.ui.menu.five.item .item{width:20%}.ui.menu.six.item .item{width:16.666%}.ui.menu.seven.item .item{width:14.285%}.ui.menu.eight.item .item{width:12.5%}.ui.menu.nine.item .item{width:11.11%}.ui.menu.ten.item .item{width:10%}.ui.menu.eleven.item .item{width:9.09%}.ui.menu.twelve.item .item{width:8.333%}.ui.menu.fixed{position:fixed;z-index:101;margin:0;width:100%}.ui.menu.fixed,.ui.menu.fixed .item:first-child,.ui.menu.fixed .item:last-child{border-radius:0!important}.ui.fixed.menu,.ui[class*="top fixed"].menu{top:0;left:0;right:auto;bottom:auto}.ui[class*="top fixed"].menu{border-top:none;border-left:none;border-right:none}.ui[class*="right fixed"].menu{border-top:none;border-bottom:none;border-right:none;top:0;right:0;left:auto;bottom:auto;width:auto;height:100%}.ui[class*="bottom fixed"].menu{border-bottom:none;border-left:none;border-right:none;bottom:0;left:0;top:auto;right:auto}.ui[class*="left fixed"].menu{border-top:none;border-bottom:none;border-left:none;top:0;left:0;right:auto;bottom:auto;width:auto;height:100%}.ui.fixed.menu+.ui.grid{padding-top:2.75rem}.ui.pointing.menu .item:after{visibility:hidden;position:absolute;content:'';top:100%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);background:0 0;margin:.5px 0 0;width:.57142857em;height:.57142857em;border:none;border-bottom:1px solid #d4d4d5;border-right:1px solid #d4d4d5;z-index:2;-webkit-transition:background .1s ease;transition:background .1s ease}.ui.vertical.pointing.menu .item:after{position:absolute;top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateX(50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(50%) translateY(-50%) rotate(45deg);transform:translateX(50%) translateY(-50%) rotate(45deg);margin:0 -.5px 0 0;border:none;border-top:1px solid #d4d4d5;border-right:1px solid #d4d4d5}.ui.pointing.menu .active.item:after{visibility:visible}.ui.pointing.menu .active.dropdown.item:after{visibility:hidden}.ui.pointing.menu .active.item .menu .active.item:after,.ui.pointing.menu .dropdown.active.item:after{display:none}.ui.pointing.menu .active.item:after,.ui.pointing.menu .active.item:hover:after,.ui.vertical.pointing.menu .active.item:after,.ui.vertical.pointing.menu .active.item:hover:after{background-color:#f2f2f2}.ui.vertical.pointing.menu .menu .active.item:after{background-color:#fff}.ui.attached.menu{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);box-shadow:none}.ui.attached+.ui.attached.menu:not(.top){border-top:none}.ui[class*="top attached"].menu{bottom:0;margin-bottom:0;top:0;margin-top:1rem;border-radius:.28571429rem .28571429rem 0 0}.ui.menu[class*="top attached"]:first-child{margin-top:0}.ui[class*="bottom attached"].menu{bottom:0;margin-top:0;top:0;margin-bottom:1rem;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),none;border-radius:0 0 .28571429rem .28571429rem}.ui[class*="bottom attached"].menu:last-child{margin-bottom:0}.ui.top.attached.menu>.item:first-child{border-radius:.28571429rem 0 0}.ui.bottom.attached.menu>.item:first-child{border-radius:0 0 0 .28571429rem}.ui.attached.menu:not(.tabular){border:1px solid #d4d4d5}.ui.attached.inverted.menu{border:none}.ui.attached.tabular.menu{margin-left:0;margin-right:0;width:100%}.ui.small.menu{font-size:.92857143rem}.ui.small.vertical.menu{width:13rem}.ui.menu{font-size:1rem}.ui.vertical.menu{width:15rem}.ui.large.menu{font-size:1.14285714rem}.ui.large.vertical.menu{width:18rem}.ui.huge.menu{font-size:1.42857143rem}.ui.huge.vertical.menu{width:20rem}.ui.message{position:relative;min-height:1em;margin:1em 0;background:#f8f8f9;padding:1em 1.5em;line-height:1.4285em;color:rgba(0,0,0,.87);-webkit-transition:opacity .1s ease,color .1s ease,background .1s ease,box-shadow .1s ease;transition:opacity .1s ease,color .1s ease,background .1s ease,box-shadow .1s ease;border-radius:.28571429rem;box-shadow:0 0 0 1px rgba(34,36,38,.22) inset,0 0 0 0 transparent}.ui.message:first-child{margin-top:0}.ui.message:last-child{margin-bottom:0}.ui.message .header{display:block;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;margin:-.14285em 0 0}.ui.message .header:not(.ui){font-size:1.14285714em}.ui.message p{opacity:.85;margin:.75em 0}.ui.message p:first-child{margin-top:0}.ui.message p:last-child{margin-bottom:0}.ui.message .header+p{margin-top:.25em}.ui.message ul.list{text-align:left;padding:0;opacity:.85;list-style-position:inside;margin:.5em 0 0}.ui.message ul.list:first-child{margin-top:0}.ui.message ul.list:last-child{margin-bottom:0}.ui.message ul.list li{position:relative;list-style-type:none;margin:0 0 .3em 1em;padding:0}.ui.message ul.list li:before{position:absolute;content:'•';left:-1em;height:100%;vertical-align:baseline}.ui.message ul.list li:last-child{margin-bottom:0}.ui.message>.icon{margin-right:.6em}.ui.message>.close.icon{cursor:pointer;position:absolute;margin:0;top:.78575em;right:.5em;opacity:.7;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.message>.close.icon:hover{opacity:1}.ui.message>:first-child{margin-top:0}.ui.message>:last-child{margin-bottom:0}.ui.dropdown .menu>.message{margin:0 -1px}.ui.visible.visible.visible.visible.message{display:block}.ui.icon.visible.visible.visible.visible.message{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.hidden.hidden.hidden.hidden.message{display:none}.ui.compact.message{display:inline-block}.ui.attached.message{margin-bottom:-1px;border-radius:.28571429rem .28571429rem 0 0;box-shadow:0 0 0 1px rgba(34,36,38,.15) inset;margin-left:-1px;margin-right:-1px}.ui.attached+.ui.attached.message:not(.top):not(.bottom){margin-top:-1px;border-radius:0}.ui.bottom.attached.message{margin-top:-1px;border-radius:0 0 .28571429rem .28571429rem;box-shadow:0 0 0 1px rgba(34,36,38,.15) inset,0 1px 2px 0 rgba(34,36,38,.15)}.ui.bottom.attached.message:not(:last-child){margin-bottom:1em}.ui.attached.icon.message{width:auto}.ui.icon.message{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.icon.message>.icon:not(.close){display:block;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;line-height:1;vertical-align:middle;font-size:3em;opacity:.8}.ui.icon.message>.content{display:block;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;vertical-align:middle}.ui.icon.message .icon:not(.close)+.content{padding-left:0}.ui.icon.message .circular.icon{width:1em}.ui.floating.message{box-shadow:0 0 0 1px rgba(34,36,38,.22) inset,0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08)}.ui.positive.message{background-color:#fcfff5;color:#2c662d}.ui.attached.positive.message,.ui.positive.message{box-shadow:0 0 0 1px #a3c293 inset,0 0 0 0 transparent}.ui.positive.message .header{color:#1a531b}.ui.negative.message{background-color:#fff6f6;color:#9f3a38}.ui.attached.negative.message,.ui.negative.message{box-shadow:0 0 0 1px #e0b4b4 inset,0 0 0 0 transparent}.ui.negative.message .header{color:#912d2b}.ui.info.message{background-color:#f8ffff;color:#276f86}.ui.attached.info.message,.ui.info.message{box-shadow:0 0 0 1px #a9d5de inset,0 0 0 0 transparent}.ui.info.message .header{color:#0e566c}.ui.warning.message{background-color:#fffaf3;color:#573a08}.ui.attached.warning.message,.ui.warning.message{box-shadow:0 0 0 1px #c9ba9b inset,0 0 0 0 transparent}.ui.warning.message .header{color:#794b02}.ui.error.message{background-color:#fff6f6;color:#9f3a38}.ui.attached.error.message,.ui.error.message{box-shadow:0 0 0 1px #e0b4b4 inset,0 0 0 0 transparent}.ui.error.message .header{color:#912d2b}.ui.success.message{background-color:#fcfff5;color:#2c662d}.ui.attached.success.message,.ui.success.message{box-shadow:0 0 0 1px #a3c293 inset,0 0 0 0 transparent}.ui.success.message .header{color:#1a531b}.ui.black.message,.ui.inverted.message{background-color:#1b1c1d;color:rgba(255,255,255,.9)}.ui.red.message{background-color:#ffe8e6;color:#db2828}.ui.red.message .header{color:#c82121}.ui.orange.message{background-color:#ffedde;color:#f2711c}.ui.orange.message .header{color:#e7640d}.ui.yellow.message{background-color:#fff8db;color:#b58105}.ui.yellow.message .header{color:#9c6f04}.ui.olive.message{background-color:#fbfdef;color:#8abc1e}.ui.olive.message .header{color:#7aa61a}.ui.green.message{background-color:#e5f9e7;color:#1ebc30}.ui.green.message .header{color:#1aa62a}.ui.teal.message{background-color:#e1f7f7;color:#10a3a3}.ui.teal.message .header{color:#0e8c8c}.ui.blue.message{background-color:#dff0ff;color:#2185d0}.ui.blue.message .header{color:#1e77ba}.ui.violet.message{background-color:#eae7ff;color:#6435c9}.ui.violet.message .header{color:#5a30b5}.ui.purple.message{background-color:#f6e7ff;color:#a333c8}.ui.purple.message .header{color:#922eb4}.ui.pink.message{background-color:#ffe3fb;color:#e03997}.ui.pink.message .header{color:#dd238b}.ui.brown.message{background-color:#f1e2d3;color:#a5673f}.ui.brown.message .header{color:#935b38}.ui.small.message{font-size:.92857143em}.ui.message{font-size:1em}.ui.large.message{font-size:1.14285714em}.ui.huge.message{font-size:1.42857143em}.ui.massive.message{font-size:1.71428571em}.ui.table{width:100%;background:#fff;margin:1em 0;border:1px solid rgba(34,36,38,.15);box-shadow:none;border-radius:.28571429rem;text-align:left;color:rgba(0,0,0,.87);border-collapse:separate;border-spacing:0}.ui.table:first-child{margin-top:0}.ui.table:last-child{margin-bottom:0}.ui.table td,.ui.table th{-webkit-transition:background .1s ease,color .1s ease;transition:background .1s ease,color .1s ease}.ui.table thead{box-shadow:none}.ui.table thead th{cursor:auto;background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.92857143em .71428571em;vertical-align:inherit;font-style:none;font-weight:700;text-transform:none;border-bottom:1px solid rgba(34,36,38,.1);border-left:none}.ui.table thead tr>th:first-child{border-left:none}.ui.table thead tr:first-child>th:first-child{border-radius:.28571429rem 0 0}.ui.table thead tr:first-child>th:last-child{border-radius:0 .28571429rem 0 0}.ui.table thead tr:first-child>th:only-child{border-radius:.28571429rem .28571429rem 0 0}.ui.table tfoot{box-shadow:none}.ui.table tfoot th{cursor:auto;border-top:1px solid rgba(34,36,38,.15);background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.71428571em;vertical-align:middle;font-style:normal;font-weight:400;text-transform:none}.ui.table tfoot tr>th:first-child{border-left:none}.ui.table tfoot tr:first-child>th:first-child{border-radius:0 0 0 .28571429rem}.ui.table tfoot tr:first-child>th:last-child{border-radius:0 0 .28571429rem}.ui.table tfoot tr:first-child>th:only-child{border-radius:0 0 .28571429rem .28571429rem}.ui.table tr td{border-top:1px solid rgba(34,36,38,.1)}.ui.table tr:first-child td{border-top:none}.ui.table td{padding:.71428571em;text-align:inherit}.ui.table>.icon{vertical-align:baseline}.ui.table>.icon:only-child{margin:0}.ui.table.segment{padding:0}.ui.table.segment:after{display:none}.ui.table.segment.stacked:after{display:block}@media only screen and (max-width:767px){.ui.table:not(.unstackable){width:100%;padding:0}.ui.table:not(.unstackable) tbody,.ui.table:not(.unstackable) tr,.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{width:auto!important;display:block!important}.ui.table:not(.unstackable) tfoot,.ui.table:not(.unstackable) thead{display:block}.ui.table:not(.unstackable) tr{padding-top:1em;padding-bottom:1em;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset!important}.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{background:0 0;border:none!important;padding:.25em .75em!important;box-shadow:none!important}.ui.table:not(.unstackable) td:first-child,.ui.table:not(.unstackable) th:first-child{font-weight:700}.ui.definition.table:not(.unstackable) thead th:first-child{box-shadow:none!important}}.ui.table td .image,.ui.table td .image img,.ui.table th .image,.ui.table th .image img{max-width:none}.ui.structured.table{border-collapse:collapse}.ui.structured.table thead th{border-left:none;border-right:none}.ui.structured.sortable.table thead th{border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(34,36,38,.15)}.ui.structured.basic.table th{border-left:none;border-right:none}.ui.structured.celled.table tr td,.ui.structured.celled.table tr th{border-left:1px solid rgba(34,36,38,.1);border-right:1px solid rgba(34,36,38,.1)}.ui.definition.table thead:not(.full-width) th:first-child{pointer-events:none;background:0 0;font-weight:400;color:rgba(0,0,0,.4);box-shadow:-1px -1px 0 1px #fff}.ui.definition.table tfoot:not(.full-width) th:first-child{pointer-events:none;background:0 0;font-weight:rgba(0,0,0,.4);color:normal;box-shadow:1px 1px 0 1px #fff}.ui.celled.definition.table thead:not(.full-width) th:first-child{box-shadow:0 -1px 0 1px #fff}.ui.celled.definition.table tfoot:not(.full-width) th:first-child{box-shadow:0 1px 0 1px #fff}.ui.definition.table tr td:first-child{background:rgba(0,0,0,.03);font-weight:700;color:rgba(0,0,0,.95)}.ui.definition.table td:nth-child(2),.ui.definition.table tfoot:not(.full-width) th:nth-child(2),.ui.definition.table thead:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.table td.positive,.ui.table tr.positive{box-shadow:0 0 0 #a3c293 inset;background:#fcfff5!important;color:#2c662d!important}.ui.table td.negative,.ui.table tr.negative{box-shadow:0 0 0 #e0b4b4 inset;background:#fff6f6!important;color:#9f3a38!important}.ui.table td.error,.ui.table tr.error{box-shadow:0 0 0 #e0b4b4 inset;background:#fff6f6!important;color:#9f3a38!important}.ui.table td.warning,.ui.table tr.warning{box-shadow:0 0 0 #c9ba9b inset;background:#fffaf3!important;color:#573a08!important}.ui.table td.active,.ui.table tr.active{box-shadow:0 0 0 rgba(0,0,0,.87) inset;background:#e0e0e0!important;color:rgba(0,0,0,.87)!important}.ui.table tr td.disabled,.ui.table tr.disabled td,.ui.table tr.disabled:hover,.ui.table tr:hover td.disabled{pointer-events:none;color:rgba(40,40,40,.3)}@media only screen and (max-width:991px){.ui[class*="tablet stackable"].table,.ui[class*="tablet stackable"].table tbody,.ui[class*="tablet stackable"].table tr,.ui[class*="tablet stackable"].table tr>td,.ui[class*="tablet stackable"].table tr>th{width:100%!important;display:block!important}.ui[class*="tablet stackable"].table{padding:0}.ui[class*="tablet stackable"].table tfoot,.ui[class*="tablet stackable"].table thead{display:block}.ui[class*="tablet stackable"].table tr{padding-top:1em;padding-bottom:1em;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset!important}.ui[class*="tablet stackable"].table tr>td,.ui[class*="tablet stackable"].table tr>th{background:0 0;border:none!important;padding:.25em .75em;box-shadow:none!important}.ui.definition[class*="tablet stackable"].table thead th:first-child{box-shadow:none!important}}.ui.table [class*="left aligned"],.ui.table[class*="left aligned"]{text-align:left}.ui.table [class*="center aligned"],.ui.table[class*="center aligned"]{text-align:center}.ui.table [class*="right aligned"],.ui.table[class*="right aligned"]{text-align:right}.ui.table [class*="top aligned"],.ui.table[class*="top aligned"]{vertical-align:top}.ui.table [class*="middle aligned"],.ui.table[class*="middle aligned"]{vertical-align:middle}.ui.table [class*="bottom aligned"],.ui.table[class*="bottom aligned"]{vertical-align:bottom}.ui.table td.collapsing,.ui.table th.collapsing{width:1px;white-space:nowrap}.ui.fixed.table{table-layout:fixed}.ui.fixed.table td,.ui.fixed.table th{overflow:hidden;text-overflow:ellipsis}.ui.selectable.table tbody tr:hover{background:rgba(0,0,0,.05)!important;color:rgba(0,0,0,.95)!important}.ui.selectable.inverted.table tbody tr:hover{background:rgba(255,255,255,.08)!important;color:#fff!important}.ui.selectable.table tr.error:hover,.ui.selectable.table tr:hover td.error{background:#ffe7e7!important;color:#943634!important}.ui.selectable.table tr.warning:hover,.ui.selectable.table tr:hover td.warning{background:#fff4e4!important;color:#493107!important}.ui.selectable.table tr.active:hover,.ui.selectable.table tr:hover td.active{background:#e0e0e0!important;color:rgba(0,0,0,.87)!important}.ui.selectable.table tr.positive:hover,.ui.selectable.table tr:hover td.positive{background:#f7ffe6!important;color:#275b28!important}.ui.selectable.table tr.negative:hover,.ui.selectable.table tr:hover td.negative{background:#ffe7e7!important;color:#943634!important}.ui.attached.table{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);box-shadow:none;border:1px solid #d4d4d5}.ui.attached+.ui.attached.table:not(.top){border-top:none}.ui[class*="top attached"].table{bottom:0;margin-bottom:0;top:0;margin-top:1em;border-radius:.28571429rem .28571429rem 0 0}.ui.table[class*="top attached"]:first-child{margin-top:0}.ui[class*="bottom attached"].table{bottom:0;margin-top:0;top:0;margin-bottom:1em;box-shadow:none,none;border-radius:0 0 .28571429rem .28571429rem}.ui[class*="bottom attached"].table:last-child{margin-bottom:0}.ui.striped.table tbody tr:nth-child(2n),.ui.striped.table>tr:nth-child(2n){background-color:rgba(0,0,50,.02)}.ui.inverted.striped.table tbody tr:nth-child(2n),.ui.inverted.striped.table>tr:nth-child(2n){background-color:rgba(255,255,255,.05)}.ui.table [class*="single line"],.ui.table[class*="single line"]{white-space:nowrap}.ui.red.table{border-top:.2em solid #db2828}.ui.inverted.red.table{background-color:#db2828!important;color:#fff!important}.ui.orange.table{border-top:.2em solid #f2711c}.ui.inverted.orange.table{background-color:#f2711c!important;color:#fff!important}.ui.yellow.table{border-top:.2em solid #fbbd08}.ui.inverted.yellow.table{background-color:#fbbd08!important;color:#fff!important}.ui.olive.table{border-top:.2em solid #b5cc18}.ui.inverted.olive.table{background-color:#b5cc18!important;color:#fff!important}.ui.green.table{border-top:.2em solid #21ba45}.ui.inverted.green.table{background-color:#21ba45!important;color:#fff!important}.ui.teal.table{border-top:.2em solid #00b5ad}.ui.inverted.teal.table{background-color:#00b5ad!important;color:#fff!important}.ui.blue.table{border-top:.2em solid #2185d0}.ui.inverted.blue.table{background-color:#2185d0!important;color:#fff!important}.ui.violet.table{border-top:.2em solid #6435c9}.ui.inverted.violet.table{background-color:#6435c9!important;color:#fff!important}.ui.purple.table{border-top:.2em solid #a333c8}.ui.inverted.purple.table{background-color:#a333c8!important;color:#fff!important}.ui.pink.table{border-top:.2em solid #e03997}.ui.inverted.pink.table{background-color:#e03997!important;color:#fff!important}.ui.brown.table{border-top:.2em solid #a5673f}.ui.inverted.brown.table{background-color:#a5673f!important;color:#fff!important}.ui.grey.table{border-top:.2em solid #767676}.ui.inverted.grey.table{background-color:#767676!important;color:#fff!important}.ui.black.table{border-top:.2em solid #1b1c1d}.ui.inverted.black.table{background-color:#1b1c1d!important;color:#fff!important}.ui.one.column.table td{width:100%}.ui.two.column.table td{width:50%}.ui.three.column.table td{width:33.33333333%}.ui.four.column.table td{width:25%}.ui.five.column.table td{width:20%}.ui.six.column.table td{width:16.66666667%}.ui.seven.column.table td{width:14.28571429%}.ui.eight.column.table td{width:12.5%}.ui.nine.column.table td{width:11.11111111%}.ui.ten.column.table td{width:10%}.ui.eleven.column.table td{width:9.09090909%}.ui.twelve.column.table td{width:8.33333333%}.ui.thirteen.column.table td{width:7.69230769%}.ui.fourteen.column.table td{width:7.14285714%}.ui.fifteen.column.table td{width:6.66666667%}.ui.sixteen.column.table td,.ui.table td.one.wide,.ui.table th.one.wide{width:6.25%}.ui.table td.two.wide,.ui.table th.two.wide{width:12.5%}.ui.table td.three.wide,.ui.table th.three.wide{width:18.75%}.ui.table td.four.wide,.ui.table th.four.wide{width:25%}.ui.table td.five.wide,.ui.table th.five.wide{width:31.25%}.ui.table td.six.wide,.ui.table th.six.wide{width:37.5%}.ui.table td.seven.wide,.ui.table th.seven.wide{width:43.75%}.ui.table td.eight.wide,.ui.table th.eight.wide{width:50%}.ui.table td.nine.wide,.ui.table th.nine.wide{width:56.25%}.ui.table td.ten.wide,.ui.table th.ten.wide{width:62.5%}.ui.table td.eleven.wide,.ui.table th.eleven.wide{width:68.75%}.ui.table td.twelve.wide,.ui.table th.twelve.wide{width:75%}.ui.table td.thirteen.wide,.ui.table th.thirteen.wide{width:81.25%}.ui.table td.fourteen.wide,.ui.table th.fourteen.wide{width:87.5%}.ui.table td.fifteen.wide,.ui.table th.fifteen.wide{width:93.75%}.ui.table td.sixteen.wide,.ui.table th.sixteen.wide{width:100%}.ui.sortable.table thead th{cursor:pointer;white-space:nowrap;border-left:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87)}.ui.sortable.table thead th:first-child{border-left:none}.ui.sortable.table thead th.sorted,.ui.sortable.table thead th.sorted:hover{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ui.sortable.table thead th:after{display:none;font-style:normal;font-weight:400;text-decoration:inherit;content:'';height:1em;width:auto;opacity:.8;margin:0 0 0 .5em;font-family:Icons}.ui.sortable.table thead th.ascending:after{content:'\f0d8'}.ui.sortable.table thead th.descending:after{content:'\f0d7'}.ui.sortable.table th.disabled:hover{cursor:auto;color:rgba(40,40,40,.3)}.ui.sortable.table thead th:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8)}.ui.sortable.table thead th.sorted{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.sortable.table thead th.sorted:after{display:inline-block}.ui.sortable.table thead th.sorted:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.inverted.sortable.table thead th.sorted{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.15);background:linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.15);color:#fff}.ui.inverted.sortable.table thead th:hover{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.08);background:linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.08);color:#fff}.ui.inverted.sortable.table thead th{border-left-color:transparent;border-right-color:transparent}.ui.inverted.table{background:#333;color:rgba(255,255,255,.9);border:none}.ui.inverted.table th{background-color:rgba(0,0,0,.15);border-color:rgba(255,255,255,.1)!important;color:rgba(255,255,255,.9)}.ui.inverted.table tr td{border-color:rgba(255,255,255,.1)!important}.ui.inverted.table tr td.disabled,.ui.inverted.table tr.disabled td,.ui.inverted.table tr.disabled:hover td,.ui.inverted.table tr:hover td.disabled{pointer-events:none;color:rgba(225,225,225,.3)}.ui.inverted.definition.table tfoot:not(.full-width) th:first-child,.ui.inverted.definition.table thead:not(.full-width) th:first-child{background:#fff}.ui.inverted.definition.table tr td:first-child{background:rgba(255,255,255,.02);color:#fff}.ui.collapsing.table{width:auto}.ui.basic.table{background:0 0;border:1px solid rgba(34,36,38,.15);box-shadow:none}.ui.basic.table tfoot,.ui.basic.table thead{box-shadow:none}.ui.basic.table th{background:0 0;border-left:none}.ui.basic.table tbody tr{border-bottom:1px solid rgba(0,0,0,.1)}.ui.basic.table td{background:0 0}.ui.basic.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,0,.05)!important}.ui[class*="very basic"].table{border:none}.ui[class*="very basic"].table:not(.sortable):not(.striped) td,.ui[class*="very basic"].table:not(.sortable):not(.striped) th{padding:''}.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child{padding-left:0}.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child{padding-right:0}.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th{padding-top:0}.ui.celled.table tr td,.ui.celled.table tr th{border-left:1px solid rgba(34,36,38,.1)}.ui.celled.table tr td:first-child,.ui.celled.table tr th:first-child{border-left:none}.ui.padded.table th{padding-left:1em;padding-right:1em}.ui.padded.table td,.ui.padded.table th{padding:1em}.ui[class*="very padded"].table th{padding-left:1.5em;padding-right:1.5em}.ui[class*="very padded"].table td{padding:1.5em}.ui.compact.table th{padding-left:.7em;padding-right:.7em}.ui.compact.table td{padding:.5em .7em}.ui[class*="very compact"].table th{padding-left:.6em;padding-right:.6em}.ui[class*="very compact"].table td{padding:.4em .6em}.ui.small.table{font-size:.9em}.ui.table{font-size:1em}.ui.large.table{font-size:1.1em}.ui.ad{display:block;overflow:hidden;margin:1em 0}.ui.ad:first-child,.ui.ad:last-child{margin:0}.ui.ad iframe{margin:0;padding:0;border:none;overflow:hidden}.ui.leaderboard.ad{width:728px;height:90px}.ui[class*="medium rectangle"].ad{width:300px;height:250px}.ui[class*="large rectangle"].ad{width:336px;height:280px}.ui[class*="half page"].ad{width:300px;height:600px}.ui.square.ad{width:250px;height:250px}.ui[class*="small square"].ad{width:200px;height:200px}.ui[class*="small rectangle"].ad{width:180px;height:150px}.ui[class*="vertical rectangle"].ad{width:240px;height:400px}.ui.button.ad{width:120px;height:90px}.ui[class*="square button"].ad{width:125px;height:125px}.ui[class*="small button"].ad{width:120px;height:60px}.ui.skyscraper.ad{width:120px;height:600px}.ui[class*="wide skyscraper"].ad{width:160px}.ui.banner.ad{width:468px;height:60px}.ui[class*="vertical banner"].ad{width:120px;height:240px}.ui[class*="top banner"].ad{width:930px;height:180px}.ui[class*="half banner"].ad{width:234px;height:60px}.ui[class*="large leaderboard"].ad{width:970px;height:90px}.ui.billboard.ad{width:970px;height:250px}.ui.panorama.ad{width:980px;height:120px}.ui.netboard.ad{width:580px;height:400px}.ui[class*="large mobile banner"].ad{width:320px;height:100px}.ui[class*="mobile leaderboard"].ad{width:320px;height:50px}.ui.mobile.ad{display:none}@media only screen and (max-width:767px){.ui.mobile.ad{display:block}}.ui.centered.ad{margin-left:auto;margin-right:auto}.ui.test.ad{position:relative;background:#545454}.ui.test.ad:after{position:absolute;top:50%;left:50%;width:100%;text-align:center;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);content:'Ad';color:#fff;font-size:1em;font-weight:700}.ui.mobile.test.ad:after{font-size:.85714286em}.ui.test.ad[data-text]:after{content:attr(data-text)}.ui.card,.ui.cards>.card{max-width:100%;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:290px;min-height:0;background:#fff;padding:0;border:none;border-radius:.28571429rem;box-shadow:0 1px 3px 0 #d4d4d5,0 0 0 1px #d4d4d5;-webkit-transition:box-shadow .1s ease,-webkit-transform .1s ease;transition:box-shadow .1s ease,transform .1s ease;z-index:''}.ui.card{margin:1em 0}.ui.card a,.ui.cards>.card a{cursor:pointer}.ui.card:first-child{margin-top:0}.ui.card:last-child{margin-bottom:0}.ui.cards{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:-.875em -.5em;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.cards>.card{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:.875em .5em;float:none}.ui.card:after,.ui.cards:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.cards~.ui.cards{margin-top:.875em}.ui.card>:first-child,.ui.cards>.card>:first-child{border-radius:.28571429rem .28571429rem 0 0!important;border-top:none!important}.ui.card>:last-child,.ui.cards>.card>:last-child{border-radius:0 0 .28571429rem .28571429rem!important}.ui.card>:only-child,.ui.cards>.card>:only-child{border-radius:.28571429rem!important}.ui.card>.image,.ui.cards>.card>.image{position:relative;display:block;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding:0;background:rgba(0,0,0,.05)}.ui.card>.image>img,.ui.cards>.card>.image>img{display:block;width:100%;height:auto;border-radius:inherit}.ui.card>.image:not(.ui)>img,.ui.cards>.card>.image:not(.ui)>img{border:none}.ui.card>.content,.ui.cards>.card>.content{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;border:none;border-top:1px solid rgba(34,36,38,.1);background:0 0;margin:0;padding:1em;box-shadow:none;font-size:1em;border-radius:0}.ui.card>.content:after,.ui.cards>.card>.content:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.card>.content>.header,.ui.cards>.card>.content>.header{display:block;margin:'';font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;color:rgba(0,0,0,.85)}.ui.card>.content>.header:not(.ui),.ui.cards>.card>.content>.header:not(.ui){font-weight:700;font-size:1.28571429em;margin-top:-.21425em;line-height:1.2857em}.ui.card>.content>.header+.description,.ui.card>.content>.meta+.description,.ui.cards>.card>.content>.header+.description,.ui.cards>.card>.content>.meta+.description{margin-top:.5em}.ui.card [class*="left floated"],.ui.cards>.card [class*="left floated"]{float:left}.ui.card [class*="right floated"],.ui.cards>.card [class*="right floated"]{float:right}.ui.card [class*="left aligned"],.ui.cards>.card [class*="left aligned"]{text-align:left}.ui.card [class*="center aligned"],.ui.cards>.card [class*="center aligned"]{text-align:center}.ui.card [class*="right aligned"],.ui.cards>.card [class*="right aligned"]{text-align:right}.ui.card .content img,.ui.cards>.card .content img{display:inline-block;vertical-align:middle;width:''}.ui.card .avatar img,.ui.card img.avatar,.ui.cards>.card .avatar img,.ui.cards>.card img.avatar{width:2em;height:2em;border-radius:500rem}.ui.card>.content>.description,.ui.cards>.card>.content>.description{clear:both;color:rgba(0,0,0,.68)}.ui.card>.content p,.ui.cards>.card>.content p{margin:0 0 .5em}.ui.card>.content p:last-child,.ui.cards>.card>.content p:last-child{margin-bottom:0}.ui.card .meta,.ui.cards>.card .meta{font-size:1em;color:rgba(0,0,0,.4)}.ui.card .meta *,.ui.cards>.card .meta *{margin-right:.3em}.ui.card .meta :last-child,.ui.cards>.card .meta :last-child{margin-right:0}.ui.card .meta [class*="right floated"],.ui.cards>.card .meta [class*="right floated"]{margin-right:0;margin-left:.3em}.ui.card>.content a:not(.ui),.ui.cards>.card>.content a:not(.ui){color:'';-webkit-transition:color .1s ease;transition:color .1s ease}.ui.card>.content a:not(.ui):hover,.ui.cards>.card>.content a:not(.ui):hover{color:''}.ui.card>.content>a.header,.ui.cards>.card>.content>a.header{color:rgba(0,0,0,.85)}.ui.card>.content>a.header:hover,.ui.cards>.card>.content>a.header:hover{color:#1e70bf}.ui.card .meta>a:not(.ui),.ui.cards>.card .meta>a:not(.ui){color:rgba(0,0,0,.4)}.ui.card .meta>a:not(.ui):hover,.ui.cards>.card .meta>a:not(.ui):hover{color:rgba(0,0,0,.87)}.ui.card>.button,.ui.card>.buttons,.ui.cards>.card>.button,.ui.cards>.card>.buttons{margin:0 -1px;width:calc(100% + 2px)}.ui.card .dimmer,.ui.cards>.card .dimmer{background-color:'';z-index:10}.ui.card>.content .star.icon,.ui.cards>.card>.content .star.icon{cursor:pointer;opacity:.75;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.card>.content .star.icon:hover,.ui.cards>.card>.content .star.icon:hover{opacity:1;color:#ffb70a}.ui.card>.content .active.star.icon,.ui.cards>.card>.content .active.star.icon{color:#ffe623}.ui.card>.content .like.icon,.ui.cards>.card>.content .like.icon{cursor:pointer;opacity:.75;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.card>.content .like.icon:hover,.ui.cards>.card>.content .like.icon:hover{opacity:1;color:#ff2733}.ui.card>.content .active.like.icon,.ui.cards>.card>.content .active.like.icon{color:#ff2733}.ui.card>.extra,.ui.cards>.card>.extra{max-width:100%;min-height:0!important;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;border-top:1px solid rgba(0,0,0,.05)!important;position:static;background:0 0;width:auto;margin:0;padding:.75em 1em;top:0;left:0;color:rgba(0,0,0,.4);box-shadow:none;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.card>.extra a:not(.ui),.ui.cards>.card>.extra a:not(.ui){color:rgba(0,0,0,.4)}.ui.card>.extra a:not(.ui):hover,.ui.cards>.card>.extra a:not(.ui):hover{color:#1e70bf}.ui.centered.cards{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.ui.centered.card{margin-left:auto;margin-right:auto}.ui.fluid.card{width:100%;max-width:9999px}.ui.cards a.card,.ui.link.card,.ui.link.cards .card,a.ui.card{-webkit-transform:none;-ms-transform:none;transform:none}.ui.cards a.card:hover,.ui.link.card:hover,.ui.link.cards .card:hover,a.ui.card:hover{cursor:pointer;z-index:5;background:#fff;border:none;box-shadow:0 1px 3px 0 #bcbdbd,0 0 0 1px #d4d4d5;-webkit-transform:translateY(-3px);-ms-transform:translateY(-3px);transform:translateY(-3px)}.ui.cards>.red.card,.ui.red.card,.ui.red.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #db2828,0 1px 3px 0 #d4d4d5}.ui.cards>.red.card:hover,.ui.red.card:hover,.ui.red.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #d01919,0 1px 3px 0 #bcbdbd}.ui.cards>.orange.card,.ui.orange.card,.ui.orange.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #f2711c,0 1px 3px 0 #d4d4d5}.ui.cards>.orange.card:hover,.ui.orange.card:hover,.ui.orange.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #f26202,0 1px 3px 0 #bcbdbd}.ui.cards>.yellow.card,.ui.yellow.card,.ui.yellow.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #fbbd08,0 1px 3px 0 #d4d4d5}.ui.cards>.yellow.card:hover,.ui.yellow.card:hover,.ui.yellow.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #eaae00,0 1px 3px 0 #bcbdbd}.ui.cards>.olive.card,.ui.olive.card,.ui.olive.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #b5cc18,0 1px 3px 0 #d4d4d5}.ui.cards>.olive.card:hover,.ui.olive.card:hover,.ui.olive.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #a7bd0d,0 1px 3px 0 #bcbdbd}.ui.cards>.green.card,.ui.green.card,.ui.green.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #21ba45,0 1px 3px 0 #d4d4d5}.ui.cards>.green.card:hover,.ui.green.card:hover,.ui.green.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #16ab39,0 1px 3px 0 #bcbdbd}.ui.cards>.teal.card,.ui.teal.card,.ui.teal.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #00b5ad,0 1px 3px 0 #d4d4d5}.ui.cards>.teal.card:hover,.ui.teal.card:hover,.ui.teal.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #009c95,0 1px 3px 0 #bcbdbd}.ui.blue.card,.ui.blue.cards>.card,.ui.cards>.blue.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #2185d0,0 1px 3px 0 #d4d4d5}.ui.blue.card:hover,.ui.blue.cards>.card:hover,.ui.cards>.blue.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #1678c2,0 1px 3px 0 #bcbdbd}.ui.cards>.violet.card,.ui.violet.card,.ui.violet.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #6435c9,0 1px 3px 0 #d4d4d5}.ui.cards>.violet.card:hover,.ui.violet.card:hover,.ui.violet.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #5829bb,0 1px 3px 0 #bcbdbd}.ui.cards>.purple.card,.ui.purple.card,.ui.purple.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #a333c8,0 1px 3px 0 #d4d4d5}.ui.cards>.purple.card:hover,.ui.purple.card:hover,.ui.purple.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #9627ba,0 1px 3px 0 #bcbdbd}.ui.cards>.pink.card,.ui.pink.card,.ui.pink.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #e03997,0 1px 3px 0 #d4d4d5}.ui.cards>.pink.card:hover,.ui.pink.card:hover,.ui.pink.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #e61a8d,0 1px 3px 0 #bcbdbd}.ui.brown.card,.ui.brown.cards>.card,.ui.cards>.brown.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #a5673f,0 1px 3px 0 #d4d4d5}.ui.brown.card:hover,.ui.brown.cards>.card:hover,.ui.cards>.brown.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #975b33,0 1px 3px 0 #bcbdbd}.ui.cards>.grey.card,.ui.grey.card,.ui.grey.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #767676,0 1px 3px 0 #d4d4d5}.ui.cards>.grey.card:hover,.ui.grey.card:hover,.ui.grey.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #838383,0 1px 3px 0 #bcbdbd}.ui.black.card,.ui.black.cards>.card,.ui.cards>.black.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #1b1c1d,0 1px 3px 0 #d4d4d5}.ui.black.card:hover,.ui.black.cards>.card:hover,.ui.cards>.black.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #27292a,0 1px 3px 0 #bcbdbd}.ui.one.cards{margin-left:0;margin-right:0}.ui.one.cards>.card{width:100%}.ui.two.cards{margin-left:-1em;margin-right:-1em}.ui.two.cards>.card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.three.cards{margin-left:-1em;margin-right:-1em}.ui.three.cards>.card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.four.cards{margin-left:-.75em;margin-right:-.75em}.ui.four.cards>.card{width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.five.cards{margin-left:-.75em;margin-right:-.75em}.ui.five.cards>.card{width:calc(20% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.six.cards{margin-left:-.75em;margin-right:-.75em}.ui.six.cards>.card{width:calc(16.66666667% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.seven.cards{margin-left:-.5em;margin-right:-.5em}.ui.seven.cards>.card{width:calc(14.28571429% - 1em);margin-left:.5em;margin-right:.5em}.ui.eight.cards{margin-left:-.5em;margin-right:-.5em}.ui.eight.cards>.card{width:calc(12.5% - 1em);margin-left:.5em;margin-right:.5em;font-size:11px}.ui.nine.cards{margin-left:-.5em;margin-right:-.5em}.ui.nine.cards>.card{width:calc(11.11111111% - 1em);margin-left:.5em;margin-right:.5em;font-size:10px}.ui.ten.cards{margin-left:-.5em;margin-right:-.5em}.ui.ten.cards>.card{width:calc(10% - 1em);margin-left:.5em;margin-right:.5em}@media only screen and (max-width:767px){.ui.two.doubling.cards{margin-left:0;margin-right:0}.ui.two.doubling.cards .card{width:100%;margin-left:0;margin-right:0}.ui.three.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.three.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.four.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.four.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.five.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.five.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.six.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.six.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.seven.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.seven.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.eight.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.eight.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.nine.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.nine.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.ten.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.ten.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}}@media only screen and (min-width:768px) and (max-width:991px){.ui.two.doubling.cards{margin-left:0;margin-right:0}.ui.two.doubling.cards .card{width:100%;margin-left:0;margin-right:0}.ui.three.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.three.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.four.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.four.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.five.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.five.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.six.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.six.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.eight.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.eight.doubling.cards .card{width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.nine.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.nine.doubling.cards .card{width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.ten.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.ten.doubling.cards .card{width:calc(20% - 1.5em);margin-left:.75em;margin-right:.75em}}@media only screen and (max-width:767px){.ui.stackable.cards{display:block!important}.ui.stackable.cards .card:first-child{margin-top:0!important}.ui.stackable.cards>.card{display:block!important;height:auto!important;margin:1em;padding:0!important;width:calc(100% - 2em)!important}}.ui.cards>.card{font-size:1em}.ui.comments{margin:1.5em 0;max-width:650px}.ui.comments:first-child{margin-top:0}.ui.comments:last-child{margin-bottom:0}.ui.comments .comment{position:relative;background:0 0;margin:.5em 0 0;padding:.5em 0 0;border:none;border-top:none;line-height:1.2}.ui.comments .comment:first-child{margin-top:0;padding-top:0}.ui.comments .comment .comments{margin:0 0 .5em .5em;padding:1em 0 1em 1em}.ui.comments .comment .comments:before{position:absolute;top:0;left:0}.ui.comments .comment .comments .comment{border:none;border-top:none;background:0 0}.ui.comments .comment .avatar{display:block;width:2.5em;height:auto;float:left;margin:.2em 0 0}.ui.comments .comment .avatar img,.ui.comments .comment img.avatar{display:block;margin:0 auto;width:100%;height:100%;border-radius:.25rem}.ui.comments .comment>.content{display:block}.ui.comments .comment>.avatar~.content{margin-left:3.5em}.ui.comments .comment .author{font-size:1em;color:rgba(0,0,0,.87);font-weight:700}.ui.comments .comment a.author{cursor:pointer}.ui.comments .comment a.author:hover{color:#1e70bf}.ui.comments .comment .metadata{display:inline-block;margin-left:.5em;color:rgba(0,0,0,.4);font-size:.875em}.ui.comments .comment .metadata>*{display:inline-block;margin:0 .5em 0 0}.ui.comments .comment .metadata>:last-child{margin-right:0}.ui.comments .comment .text{margin:.25em 0 .5em;font-size:1em;word-wrap:break-word;color:rgba(0,0,0,.87);line-height:1.3}.ui.comments .comment .actions{font-size:.875em}.ui.comments .comment .actions a{cursor:pointer;display:inline-block;margin:0 .75em 0 0;color:rgba(0,0,0,.4)}.ui.comments .comment .actions a:last-child{margin-right:0}.ui.comments .comment .actions a.active,.ui.comments .comment .actions a:hover{color:rgba(0,0,0,.8)}.ui.comments>.reply.form{margin-top:1em}.ui.comments .comment .reply.form{width:100%;margin-top:1em}.ui.comments .reply.form textarea{font-size:1em;height:12em}.ui.collapsed.comments,.ui.comments .collapsed.comment,.ui.comments .collapsed.comments{display:none}.ui.threaded.comments .comment .comments{margin:-1.5em 0 -1em 1.25em;padding:3em 0 2em 2.25em;box-shadow:-1px 0 0 rgba(34,36,38,.15)}.ui.minimal.comments .comment .actions{opacity:0;position:absolute;top:0;right:0;left:auto;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;-webkit-transition-delay:.1s;transition-delay:.1s}.ui.minimal.comments .comment>.content:hover>.actions{opacity:1}.ui.small.comments{font-size:.9em}.ui.comments{font-size:1em}.ui.large.comments{font-size:1.1em}.ui.huge.comments{font-size:1.2em}.ui.feed{margin:1em 0}.ui.feed:first-child{margin-top:0}.ui.feed:last-child{margin-bottom:0}.ui.feed>.event{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;width:100%;padding:.21428571rem 0;margin:0;background:0 0;border-top:none}.ui.feed>.event:first-child{border-top:0;padding-top:0}.ui.feed>.event:last-child{padding-bottom:0}.ui.feed>.event>.label{display:block;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:2.5em;height:auto;-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch;text-align:left}.ui.feed>.event>.label .icon{opacity:1;font-size:1.5em;width:100%;padding:.25em;background:0 0;border:none;border-radius:none;color:rgba(0,0,0,.6)}.ui.feed>.event>.label img{width:100%;height:auto;border-radius:500rem}.ui.feed>.event>.label+.content{margin:.5em 0 .35714286em 1.14285714em}.ui.feed>.event>.content{display:block;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch;text-align:left;word-wrap:break-word}.ui.feed>.event:last-child>.content{padding-bottom:0}.ui.feed>.event>.content a{cursor:pointer}.ui.feed>.event>.content .date{margin:-.5rem 0 0;padding:0;font-weight:400;font-size:1em;font-style:normal;color:rgba(0,0,0,.4)}.ui.feed>.event>.content .summary{margin:0;font-size:1em;font-weight:700;color:rgba(0,0,0,.87)}.ui.feed>.event>.content .summary img{display:inline-block;width:auto;height:10em;margin:-.25em .25em 0 0;border-radius:.25em;vertical-align:middle}.ui.feed>.event>.content .user{display:inline-block;font-weight:700;margin-right:0;vertical-align:baseline}.ui.feed>.event>.content .user img{margin:-.25em .25em 0 0;width:auto;height:10em;vertical-align:middle}.ui.feed>.event>.content .summary>.date{display:inline-block;float:none;font-weight:400;font-size:.85714286em;font-style:normal;margin:0 0 0 .5em;padding:0;color:rgba(0,0,0,.4)}.ui.feed>.event>.content .extra{margin:.5em 0 0;background:0 0;padding:0;color:rgba(0,0,0,.87)}.ui.feed>.event>.content .extra.images img{display:inline-block;margin:0 .25em 0 0;width:6em}.ui.feed>.event>.content .extra.text{padding:0;border-left:none;font-size:1em;max-width:500px;line-height:1.4285em}.ui.feed>.event>.content .meta{display:inline-block;font-size:.85714286em;margin:.5em 0 0;background:0 0;border:none;border-radius:0;box-shadow:none;padding:0;color:rgba(0,0,0,.6)}.ui.feed>.event>.content .meta>*{position:relative;margin-left:.75em}.ui.feed>.event>.content .meta>:after{content:'';color:rgba(0,0,0,.2);top:0;left:-1em;opacity:1;position:absolute;vertical-align:top}.ui.feed>.event>.content .meta .like{color:'';-webkit-transition:.2s color ease;transition:.2s color ease}.ui.feed>.event>.content .meta .like:hover .icon{color:#ff2733}.ui.feed>.event>.content .meta .active.like .icon{color:#ef404a}.ui.feed>.event>.content .meta>:first-child{margin-left:0}.ui.feed>.event>.content .meta>:first-child::after{display:none}.ui.feed>.event>.content .meta a,.ui.feed>.event>.content .meta>.icon{cursor:pointer;opacity:1;color:rgba(0,0,0,.5);-webkit-transition:color .1s ease;transition:color .1s ease}.ui.feed>.event>.content .meta a:hover,.ui.feed>.event>.content .meta a:hover .icon,.ui.feed>.event>.content .meta>.icon:hover{color:rgba(0,0,0,.95)}.ui.small.feed{font-size:.92857143rem}.ui.feed{font-size:1rem}.ui.large.feed{font-size:1.14285714rem}.ui.items>.item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:1em 0;width:100%;min-height:0;background:0 0;padding:0;border:none;border-radius:0;box-shadow:none;-webkit-transition:box-shadow .1s ease;transition:box-shadow .1s ease;z-index:''}.ui.items>.item a{cursor:pointer}.ui.items{margin:1.5em 0}.ui.items:first-child{margin-top:0!important}.ui.items:last-child{margin-bottom:0!important}.ui.items>.item:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item:first-child{margin-top:0}.ui.items>.item:last-child{margin-bottom:0}.ui.items>.item>.image{position:relative;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;display:block;float:none;margin:0;padding:0;max-height:'';-webkit-align-self:top;-ms-flex-item-align:top;align-self:top}.ui.items>.item>.image>img{display:block;width:100%;height:auto;border-radius:.125rem;border:none}.ui.items>.item>.image:only-child>img{border-radius:0}.ui.items>.item>.content{display:block;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;background:0 0;margin:0;padding:0;box-shadow:none;font-size:1em;border:none;border-radius:0}.ui.items>.item>.content:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image+.content{min-width:0;width:auto;display:block;margin-left:0;-webkit-align-self:top;-ms-flex-item-align:top;align-self:top;padding-left:1.5em}.ui.items>.item>.content>.header{display:inline-block;margin:-.21425em 0 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;color:rgba(0,0,0,.85)}.ui.items>.item>.content>.header:not(.ui){font-size:1.28571429em}.ui.items>.item [class*="left floated"]{float:left}.ui.items>.item [class*="right floated"]{float:right}.ui.items>.item .content img{-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle;width:''}.ui.items>.item .avatar img,.ui.items>.item img.avatar{width:'';height:'';border-radius:500rem}.ui.items>.item>.content>.description{margin-top:.6em;max-width:auto;font-size:1em;line-height:1.4285em;color:rgba(0,0,0,.87)}.ui.items>.item>.content p{margin:0 0 .5em}.ui.items>.item>.content p:last-child{margin-bottom:0}.ui.items>.item .meta{margin:.5em 0;font-size:1em;line-height:1em;color:rgba(0,0,0,.6)}.ui.items>.item .meta *{margin-right:.3em}.ui.items>.item .meta :last-child{margin-right:0}.ui.items>.item .meta [class*="right floated"]{margin-right:0;margin-left:.3em}.ui.items>.item>.content a:not(.ui){color:'';-webkit-transition:color .1s ease;transition:color .1s ease}.ui.items>.item>.content a:not(.ui):hover{color:''}.ui.items>.item>.content>a.header{color:rgba(0,0,0,.85)}.ui.items>.item>.content>a.header:hover{color:#1e70bf}.ui.items>.item .meta>a:not(.ui){color:rgba(0,0,0,.4)}.ui.items>.item .meta>a:not(.ui):hover{color:rgba(0,0,0,.87)}.ui.items>.item>.content .favorite.icon{cursor:pointer;opacity:.75;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.items>.item>.content .favorite.icon:hover{opacity:1;color:#ffb70a}.ui.items>.item>.content .active.favorite.icon{color:#ffe623}.ui.items>.item>.content .like.icon{cursor:pointer;opacity:.75;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.items>.item>.content .like.icon:hover{opacity:1;color:#ff2733}.ui.items>.item>.content .active.like.icon{color:#ff2733}.ui.items>.item .extra{display:block;position:relative;background:0 0;margin:.5rem 0 0;width:100%;padding:0;top:0;left:0;color:rgba(0,0,0,.4);box-shadow:none;-webkit-transition:color .1s ease;transition:color .1s ease;border-top:none}.ui.items>.item .extra>*{margin:.25rem .5rem .25rem 0}.ui.items>.item .extra>[class*="right floated"]{margin:.25rem 0 .25rem .5rem}.ui.items>.item .extra:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image:not(.ui){width:175px}@media only screen and (min-width:768px) and (max-width:991px){.ui.items>.item{margin:1em 0}.ui.items>.item>.image:not(.ui){width:150px}.ui.items>.item>.image+.content{display:block;padding:0 0 0 1em}}@media only screen and (max-width:767px){.ui.items>.item{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin:2em 0}.ui.items>.item>.image{display:block;margin-left:auto;margin-right:auto}.ui.items>.item>.image,.ui.items>.item>.image>img{max-width:100%!important;width:auto!important;max-height:250px!important}.ui.items>.item>.image+.content{display:block;padding:1.5em 0 0}}.ui.items>.item>.image+[class*="top aligned"].content{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start}.ui.items>.item>.image+[class*="middle aligned"].content{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.ui.items>.item>.image+[class*="bottom aligned"].content{-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end}.ui.relaxed.items>.item{margin:1.5em 0}.ui[class*="very relaxed"].items>.item{margin:2em 0}.ui.divided.items>.item{border-top:1px solid rgba(34,36,38,.15);margin:0;padding:1em 0}.ui.divided.items>.item:first-child{border-top:none;margin-top:0!important;padding-top:0!important}.ui.divided.items>.item:last-child{margin-bottom:0!important;padding-bottom:0!important}.ui.relaxed.divided.items>.item{margin:0;padding:1.5em 0}.ui[class*="very relaxed"].divided.items>.item{margin:0;padding:2em 0}.ui.items a.item:hover,.ui.link.items>.item:hover{cursor:pointer}.ui.items a.item:hover .content .header,.ui.link.items>.item:hover .content .header{color:#1e70bf}.ui.items>.item{font-size:1em}.ui.statistic{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin:1em 0;max-width:auto}.ui.statistic+.ui.statistic{margin:0 0 0 1.5em}.ui.statistic:first-child{margin-top:0}.ui.statistic:last-child{margin-bottom:0}.ui.statistics{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.statistics>.statistic{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin:0 1.5em 2em;max-width:auto}.ui.statistics{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:1em -1.5em -2em}.ui.statistics:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.statistics:first-child{margin-top:0}.ui.statistics:last-child{margin-bottom:0}.ui.statistic>.value,.ui.statistics .statistic>.value{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:400;line-height:1em;color:#1b1c1d;text-transform:uppercase;text-align:center}.ui.statistic>.label,.ui.statistics .statistic>.label{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1em;font-weight:700;color:rgba(0,0,0,.87);text-transform:uppercase;text-align:center}.ui.statistic>.label~.value,.ui.statistic>.value~.label,.ui.statistics .statistic>.label~.value,.ui.statistics .statistic>.value~.label{margin-top:0}.ui.statistic>.value .icon,.ui.statistics .statistic>.value .icon{opacity:1;width:auto;margin:0}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{line-height:1em;min-height:2em;font-weight:700;text-align:center}.ui.statistic>.text.value+.label,.ui.statistics .statistic>.text.value+.label{text-align:center}.ui.statistic>.value img,.ui.statistics .statistic>.value img{max-height:3rem;vertical-align:baseline}.ui.ten.statistics{margin:0 0 -2em}.ui.ten.statistics .statistic{min-width:10%;margin:0 0 2em}.ui.nine.statistics{margin:0 0 -2em}.ui.nine.statistics .statistic{min-width:11.11111111%;margin:0 0 2em}.ui.eight.statistics{margin:0 0 -2em}.ui.eight.statistics .statistic{min-width:12.5%;margin:0 0 2em}.ui.seven.statistics{margin:0 0 -2em}.ui.seven.statistics .statistic{min-width:14.28571429%;margin:0 0 2em}.ui.six.statistics{margin:0 0 -2em}.ui.six.statistics .statistic{min-width:16.66666667%;margin:0 0 2em}.ui.five.statistics{margin:0 0 -2em}.ui.five.statistics .statistic{min-width:20%;margin:0 0 2em}.ui.four.statistics{margin:0 0 -2em}.ui.four.statistics .statistic{min-width:25%;margin:0 0 2em}.ui.three.statistics{margin:0 0 -2em}.ui.three.statistics .statistic{min-width:33.33333333%;margin:0 0 2em}.ui.two.statistics{margin:0 0 -2em}.ui.two.statistics .statistic{min-width:50%;margin:0 0 2em}.ui.one.statistics{margin:0 0 -2em}.ui.one.statistics .statistic{min-width:100%;margin:0 0 2em}.ui.horizontal.statistic{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.horizontal.statistics{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin:0;max-width:none}.ui.horizontal.statistics .statistic{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;max-width:none;margin:1em 0}.ui.horizontal.statistic>.text.value,.ui.horizontal.statistics>.statistic>.text.value{min-height:0!important}.ui.horizontal.statistic>.value .icon,.ui.horizontal.statistics .statistic>.value .icon{width:1.18em}.ui.horizontal.statistic>.label,.ui.horizontal.statistics .statistic>.label{display:inline-block;vertical-align:middle;margin:0 0 0 .75em}.ui.red.statistic>.value,.ui.red.statistics .statistic>.value,.ui.statistics .red.statistic>.value{color:#db2828}.ui.orange.statistic>.value,.ui.orange.statistics .statistic>.value,.ui.statistics .orange.statistic>.value{color:#f2711c}.ui.statistics .yellow.statistic>.value,.ui.yellow.statistic>.value,.ui.yellow.statistics .statistic>.value{color:#fbbd08}.ui.olive.statistic>.value,.ui.olive.statistics .statistic>.value,.ui.statistics .olive.statistic>.value{color:#b5cc18}.ui.green.statistic>.value,.ui.green.statistics .statistic>.value,.ui.statistics .green.statistic>.value{color:#21ba45}.ui.statistics .teal.statistic>.value,.ui.teal.statistic>.value,.ui.teal.statistics .statistic>.value{color:#00b5ad}.ui.blue.statistic>.value,.ui.blue.statistics .statistic>.value,.ui.statistics .blue.statistic>.value{color:#2185d0}.ui.statistics .violet.statistic>.value,.ui.violet.statistic>.value,.ui.violet.statistics .statistic>.value{color:#6435c9}.ui.purple.statistic>.value,.ui.purple.statistics .statistic>.value,.ui.statistics .purple.statistic>.value{color:#a333c8}.ui.pink.statistic>.value,.ui.pink.statistics .statistic>.value,.ui.statistics .pink.statistic>.value{color:#e03997}.ui.brown.statistic>.value,.ui.brown.statistics .statistic>.value,.ui.statistics .brown.statistic>.value{color:#a5673f}.ui.grey.statistic>.value,.ui.grey.statistics .statistic>.value,.ui.statistics .grey.statistic>.value{color:#767676}.ui.inverted.statistic .value,.ui.inverted.statistics .statistic>.value{color:#fff}.ui.inverted.statistic .label,.ui.inverted.statistics .statistic>.label{color:rgba(255,255,255,.9)}.ui.inverted.red.statistic>.value,.ui.inverted.red.statistics .statistic>.value,.ui.statistics .inverted.red.statistic>.value{color:#ff695e}.ui.inverted.orange.statistic>.value,.ui.inverted.orange.statistics .statistic>.value,.ui.statistics .inverted.orange.statistic>.value{color:#ff851b}.ui.inverted.yellow.statistic>.value,.ui.inverted.yellow.statistics .statistic>.value,.ui.statistics .inverted.yellow.statistic>.value{color:#ffe21f}.ui.inverted.olive.statistic>.value,.ui.inverted.olive.statistics .statistic>.value,.ui.statistics .inverted.olive.statistic>.value{color:#d9e778}.ui.inverted.green.statistic>.value,.ui.inverted.green.statistics .statistic>.value,.ui.statistics .inverted.green.statistic>.value{color:#2ecc40}.ui.inverted.teal.statistic>.value,.ui.inverted.teal.statistics .statistic>.value,.ui.statistics .inverted.teal.statistic>.value{color:#6dffff}.ui.inverted.blue.statistic>.value,.ui.inverted.blue.statistics .statistic>.value,.ui.statistics .inverted.blue.statistic>.value{color:#54c8ff}.ui.inverted.violet.statistic>.value,.ui.inverted.violet.statistics .statistic>.value,.ui.statistics .inverted.violet.statistic>.value{color:#a291fb}.ui.inverted.purple.statistic>.value,.ui.inverted.purple.statistics .statistic>.value,.ui.statistics .inverted.purple.statistic>.value{color:#dc73ff}.ui.inverted.pink.statistic>.value,.ui.inverted.pink.statistics .statistic>.value,.ui.statistics .inverted.pink.statistic>.value{color:#ff8edf}.ui.inverted.brown.statistic>.value,.ui.inverted.brown.statistics .statistic>.value,.ui.statistics .inverted.brown.statistic>.value{color:#d67c1c}.ui.inverted.grey.statistic>.value,.ui.inverted.grey.statistics .statistic>.value,.ui.statistics .inverted.grey.statistic>.value{color:#dcddde}.ui[class*="left floated"].statistic{float:left;margin:0 2em 1em 0}.ui[class*="right floated"].statistic{float:right;margin:0 0 1em 2em}.ui.floated.statistic:last-child{margin-bottom:0}.ui.mini.horizontal.statistic>.value,.ui.mini.horizontal.statistics .statistic>.value,.ui.mini.statistic>.value,.ui.mini.statistics .statistic>.value{font-size:1.5rem}.ui.mini.statistic>.text.value,.ui.mini.statistics .statistic>.text.value{font-size:1rem}.ui.tiny.horizontal.statistic>.value,.ui.tiny.horizontal.statistics .statistic>.value,.ui.tiny.statistic>.value,.ui.tiny.statistics .statistic>.value{font-size:2rem}.ui.tiny.statistic>.text.value,.ui.tiny.statistics .statistic>.text.value{font-size:1rem}.ui.small.statistic>.value,.ui.small.statistics .statistic>.value{font-size:3rem}.ui.small.horizontal.statistic>.value,.ui.small.horizontal.statistics .statistic>.value{font-size:2rem}.ui.small.statistic>.text.value,.ui.small.statistics .statistic>.text.value{font-size:1rem}.ui.statistic>.value,.ui.statistics .statistic>.value{font-size:4rem}.ui.horizontal.statistic>.value,.ui.horizontal.statistics .statistic>.value{display:inline-block;vertical-align:middle;font-size:3rem}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{font-size:2rem}.ui.large.statistic>.value,.ui.large.statistics .statistic>.value{font-size:5rem}.ui.large.horizontal.statistic>.value,.ui.large.horizontal.statistics .statistic>.value{font-size:4rem}.ui.large.statistic>.text.value,.ui.large.statistics .statistic>.text.value{font-size:2.5rem}.ui.huge.statistic>.value,.ui.huge.statistics .statistic>.value{font-size:6rem}.ui.huge.horizontal.statistic>.value,.ui.huge.horizontal.statistics .statistic>.value{font-size:5rem}.ui.huge.statistic>.text.value,.ui.huge.statistics .statistic>.text.value{font-size:2.5rem}.ui.accordion,.ui.accordion .accordion{max-width:100%}.ui.accordion .accordion{margin:1em 0 0;padding:0}.ui.accordion .accordion .title,.ui.accordion .title{cursor:pointer}.ui.accordion .title:not(.ui){padding:.5em 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1em;color:rgba(0,0,0,.87)}.ui.accordion .accordion .title~.content,.ui.accordion .title~.content{display:none}.ui.accordion:not(.styled) .accordion .title~.content:not(.ui),.ui.accordion:not(.styled) .title~.content:not(.ui){margin:'';padding:.5em 0 1em}.ui.accordion:not(.styled) .title~.content:not(.ui):last-child{padding-bottom:0}.ui.accordion .accordion .title .dropdown.icon,.ui.accordion .title .dropdown.icon{display:inline-block;float:none;opacity:1;width:1.25em;height:1em;margin:0 .25rem 0 0;padding:0;font-size:1em;-webkit-transition:-webkit-transform .1s ease,opacity .1s ease;transition:transform .1s ease,opacity .1s ease;vertical-align:baseline;-webkit-transform:none;-ms-transform:none;transform:none}.ui.accordion.menu .item .title{display:block;padding:0}.ui.accordion.menu .item .title>.dropdown.icon{float:right;margin:.21425em 0 0 1em;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.ui.accordion .ui.header .dropdown.icon{font-size:1em;margin:0 .25rem 0 0}.ui.accordion .accordion .active.title .dropdown.icon,.ui.accordion .active.title .dropdown.icon,.ui.accordion.menu .item .active.title>.dropdown.icon{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.ui.styled.accordion{width:600px}.ui.styled.accordion,.ui.styled.accordion .accordion{border-radius:.28571429rem;background:#fff;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),0 0 0 1px rgba(34,36,38,.15)}.ui.styled.accordion .accordion .title,.ui.styled.accordion .title{margin:0;padding:.75em 1em;color:rgba(0,0,0,.4);font-weight:700;border-top:1px solid rgba(34,36,38,.15);-webkit-transition:background .1s ease,color .1s ease;transition:background .1s ease,color .1s ease}.ui.styled.accordion .accordion .title:first-child,.ui.styled.accordion>.title:first-child{border-top:none}.ui.styled.accordion .accordion .content,.ui.styled.accordion .content{margin:0;padding:.5em 1em 1.5em}.ui.styled.accordion .accordion .content{padding:.5em 1em 1.5em}.ui.styled.accordion .accordion .active.title,.ui.styled.accordion .accordion .title:hover,.ui.styled.accordion .active.title,.ui.styled.accordion .title:hover{background:0 0;color:rgba(0,0,0,.87)}.ui.styled.accordion .accordion .active.title,.ui.styled.accordion .active.title{background:0 0;color:rgba(0,0,0,.95)}.ui.accordion .accordion .active.content,.ui.accordion .active.content{display:block}.ui.fluid.accordion,.ui.fluid.accordion .accordion{width:100%}.ui.inverted.accordion .title:not(.ui){color:rgba(255,255,255,.9)}@font-face{font-family:Accordion;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfOIKAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zryj6HgAAAFwAAAAyGhlYWT/0IhHAAACOAAAADZoaGVhApkB5wAAAnAAAAAkaG10eAJuABIAAAKUAAAAGGxvY2EAjABWAAACrAAAAA5tYXhwAAgAFgAAArwAAAAgbmFtZfC1n04AAALcAAABPHBvc3QAAwAAAAAEGAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQASAEkAtwFuABMAADc0PwE2FzYXFh0BFAcGJwYvASY1EgaABQgHBQYGBQcIBYAG2wcGfwcBAQcECf8IBAcBAQd/BgYAAAAAAQAAAEkApQFuABMAADcRNDc2MzIfARYVFA8BBiMiJyY1AAUGBwgFgAYGgAUIBwYFWwEACAUGBoAFCAcFgAYGBQcAAAABAAAAAQAAqWYls18PPPUACwIAAAAAAM/9o+4AAAAAz/2j7gAAAAAAtwFuAAAACAACAAAAAAAAAAEAAAHg/+AAAAIAAAAAAAC3AAEAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAQAAAAC3ABIAtwAAAAAAAAAKABQAHgBCAGQAAAABAAAABgAUAAEAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAASwAAoAAAAABGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAS0AAAEtFpovuE9TLzIAAAIkAAAAYAAAAGAIIweQY21hcAAAAoQAAABMAAAATA984gpnYXNwAAAC0AAAAAgAAAAIAAAAEGhlYWQAAALYAAAANgAAADb/0IhHaGhlYQAAAxAAAAAkAAAAJAKZAedobXR4AAADNAAAABgAAAAYAm4AEm1heHAAAANMAAAABgAAAAYABlAAbmFtZQAAA1QAAAE8AAABPPC1n05wb3N0AAAEkAAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLa/iU+HQFHQAAAHkPHQAAAH4RHQAAAAkdAAABJBIABwEBBw0PERQZHnJhdGluZ3JhdGluZ3UwdTF1MjB1RjBEOXVGMERBAAACAYkABAAGAQEEBwoNVp38lA78lA78lA77lA773Z33bxWLkI2Qj44I9xT3FAWOj5CNkIuQi4+JjoePiI2Gi4YIi/uUBYuGiYeHiIiHh4mGi4aLho2Ijwj7FPcUBYeOiY+LkAgO+92L5hWL95QFi5CNkI6Oj4+PjZCLkIuQiY6HCPcU+xQFj4iNhouGi4aJh4eICPsU+xQFiIeGiYaLhouHjYePiI6Jj4uQCA74lBT4lBWLDAoAAAAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAADfYOJZfDzz1AAsCAAAAAADP/aPuAAAAAM/9o+4AAAAAALcBbgAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAAAtwABAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAEAAAAAtwASALcAAAAAUAAABgAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');font-weight:400;font-style:normal}.ui.accordion .accordion .title .dropdown.icon,.ui.accordion .title .dropdown.icon{font-family:Accordion;line-height:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center}.ui.accordion .accordion .title .dropdown.icon:before,.ui.accordion .title .dropdown.icon:before{content:'\f0da'}.ui.checkbox{position:relative;display:inline-block;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0;vertical-align:baseline;font-style:normal;min-height:17px;font-size:1rem;line-height:17px;min-width:17px}.ui.checkbox input[type=checkbox],.ui.checkbox input[type=radio]{cursor:pointer;position:absolute;top:0;left:0;opacity:0!important;outline:0;z-index:3;width:17px;height:17px}.ui.checkbox .box,.ui.checkbox label{cursor:auto;position:relative;display:block;padding-left:1.85714em;outline:0;font-size:1em}.ui.checkbox .box:before,.ui.checkbox label:before{position:absolute;top:0;left:0;width:17px;height:17px;content:'';background:#fff;border-radius:.21428571rem;-webkit-transition:border .1s ease,opacity .1s ease,-webkit-transform .1s ease,box-shadow .1s ease;transition:border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease;border:1px solid #d4d4d5}.ui.checkbox .box:after,.ui.checkbox label:after{position:absolute;font-size:14px;top:0;left:0;width:17px;height:17px;text-align:center;opacity:0;color:rgba(0,0,0,.87);-webkit-transition:border .1s ease,opacity .1s ease,-webkit-transform .1s ease,box-shadow .1s ease;transition:border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease;font-family:Checkbox}.ui.checkbox label,.ui.checkbox+label{color:rgba(0,0,0,.87);-webkit-transition:color .1s ease;transition:color .1s ease}.ui.checkbox+label{vertical-align:middle}.ui.checkbox .box:hover::before,.ui.checkbox label:hover::before{background:#fff;border-color:rgba(34,36,38,.35)}.ui.checkbox label:hover,.ui.checkbox+label:hover{color:rgba(0,0,0,.8)}.ui.checkbox .box:active::before,.ui.checkbox label:active::before{background:#f9fafb;border-color:rgba(34,36,38,.35)}.ui.checkbox .box:active::after,.ui.checkbox input:active~label,.ui.checkbox label:active::after{color:rgba(0,0,0,.95)}.ui.checkbox input:focus~.box:before,.ui.checkbox input:focus~label:before{background:#fff;border-color:#96c8da}.ui.checkbox input:focus~.box:after,.ui.checkbox input:focus~label,.ui.checkbox input:focus~label:after{color:rgba(0,0,0,.95)}.ui.checkbox input:checked~.box:before,.ui.checkbox input:checked~label:before{background:#fff;border-color:rgba(34,36,38,.35)}.ui.checkbox input:checked~.box:after,.ui.checkbox input:checked~label:after{opacity:1;color:rgba(0,0,0,.95)}.ui.checkbox input:indeterminate~.box:before,.ui.checkbox input:indeterminate~label:before{background:#fff;border-color:rgba(34,36,38,.35)}.ui.checkbox input:indeterminate~.box:after,.ui.checkbox input:indeterminate~label:after{opacity:1;color:rgba(0,0,0,.95)}.ui.checkbox input:checked:focus~.box:before,.ui.checkbox input:checked:focus~label:before,.ui.checkbox input:indeterminate:focus~.box:before,.ui.checkbox input:indeterminate:focus~label:before{background:#fff;border-color:#96c8da}.ui.checkbox input:checked:focus~.box:after,.ui.checkbox input:checked:focus~label:after,.ui.checkbox input:indeterminate:focus~.box:after,.ui.checkbox input:indeterminate:focus~label:after{color:rgba(0,0,0,.95)}.ui.read-only.checkbox,.ui.read-only.checkbox label{cursor:default}.ui.checkbox input[disabled]~.box:after,.ui.checkbox input[disabled]~label,.ui.disabled.checkbox .box:after,.ui.disabled.checkbox label{cursor:default;opacity:.5;color:#000}.ui.checkbox input.hidden{z-index:-1}.ui.checkbox input.hidden+label{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ui.radio.checkbox{min-height:15px}.ui.radio.checkbox .box,.ui.radio.checkbox label{padding-left:1.85714em}.ui.radio.checkbox .box:before,.ui.radio.checkbox label:before{content:'';-webkit-transform:none;-ms-transform:none;transform:none;width:15px;height:15px;border-radius:500rem;top:1px;left:0}.ui.radio.checkbox .box:after,.ui.radio.checkbox label:after{border:none;content:''!important;line-height:15px;top:1px;left:0;width:15px;height:15px;border-radius:500rem;-webkit-transform:scale(.46666667);-ms-transform:scale(.46666667);transform:scale(.46666667);background-color:rgba(0,0,0,.87)}.ui.radio.checkbox input:focus~.box:before,.ui.radio.checkbox input:focus~label:before{background-color:#fff}.ui.radio.checkbox input:focus~.box:after,.ui.radio.checkbox input:focus~label:after{background-color:rgba(0,0,0,.95)}.ui.radio.checkbox input:indeterminate~.box:after,.ui.radio.checkbox input:indeterminate~label:after{opacity:0}.ui.radio.checkbox input:checked~.box:before,.ui.radio.checkbox input:checked~label:before{background-color:#fff}.ui.radio.checkbox input:checked~.box:after,.ui.radio.checkbox input:checked~label:after{background-color:rgba(0,0,0,.95)}.ui.radio.checkbox input:focus:checked~.box:before,.ui.radio.checkbox input:focus:checked~label:before{background-color:#fff}.ui.radio.checkbox input:focus:checked~.box:after,.ui.radio.checkbox input:focus:checked~label:after{background-color:rgba(0,0,0,.95)}.ui.slider.checkbox{min-height:1.25rem}.ui.slider.checkbox input{width:3.5rem;height:1.25rem}.ui.slider.checkbox .box,.ui.slider.checkbox label{padding-left:4.5rem;line-height:1rem;color:rgba(0,0,0,.4)}.ui.slider.checkbox .box:before,.ui.slider.checkbox label:before{display:block;position:absolute;content:'';border:none!important;left:0;z-index:1;top:.4rem;background-color:rgba(0,0,0,.05);width:3.5rem;height:.21428571rem;-webkit-transform:none;-ms-transform:none;transform:none;border-radius:500rem;-webkit-transition:background .3s ease;transition:background .3s ease}.ui.slider.checkbox .box:after,.ui.slider.checkbox label:after{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) #fff;background:linear-gradient(transparent,rgba(0,0,0,.05)) #fff;position:absolute;content:''!important;opacity:1;z-index:2;border:none;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),0 0 0 1px rgba(34,36,38,.15) inset;width:1.5rem;height:1.5rem;top:-.25rem;left:0;-webkit-transform:none;-ms-transform:none;transform:none;border-radius:500rem;-webkit-transition:left .3s ease;transition:left .3s ease}.ui.slider.checkbox input:focus~.box:before,.ui.slider.checkbox input:focus~label:before{background-color:rgba(0,0,0,.15);border:none}.ui.slider.checkbox .box:hover,.ui.slider.checkbox label:hover{color:rgba(0,0,0,.8)}.ui.slider.checkbox .box:hover::before,.ui.slider.checkbox label:hover::before{background:rgba(0,0,0,.15)}.ui.slider.checkbox input:checked~.box,.ui.slider.checkbox input:checked~label{color:rgba(0,0,0,.95)!important}.ui.slider.checkbox input:checked~.box:before,.ui.slider.checkbox input:checked~label:before{background-color:#545454!important}.ui.slider.checkbox input:checked~.box:after,.ui.slider.checkbox input:checked~label:after{left:2rem}.ui.slider.checkbox input:focus:checked~.box,.ui.slider.checkbox input:focus:checked~label{color:rgba(0,0,0,.95)!important}.ui.slider.checkbox input:focus:checked~.box:before,.ui.slider.checkbox input:focus:checked~label:before{background-color:#000!important}.ui.toggle.checkbox{min-height:1.5rem}.ui.toggle.checkbox input{width:3.5rem;height:1.5rem}.ui.toggle.checkbox .box,.ui.toggle.checkbox label{min-height:1.5rem;padding-left:4.5rem;color:rgba(0,0,0,.87)}.ui.toggle.checkbox label{padding-top:.15em}.ui.toggle.checkbox .box:before,.ui.toggle.checkbox label:before{display:block;position:absolute;content:'';z-index:1;-webkit-transform:none;-ms-transform:none;transform:none;border:none;top:0;background:rgba(0,0,0,.05);width:3.5rem;height:1.5rem;border-radius:500rem}.ui.toggle.checkbox .box:after,.ui.toggle.checkbox label:after{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) #fff;background:linear-gradient(transparent,rgba(0,0,0,.05)) #fff;position:absolute;content:''!important;opacity:1;z-index:2;border:none;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),0 0 0 1px rgba(34,36,38,.15) inset;width:1.5rem;height:1.5rem;top:0;left:0;border-radius:500rem;-webkit-transition:background .3s ease,left .3s ease;transition:background .3s ease,left .3s ease}.ui.toggle.checkbox input~.box:after,.ui.toggle.checkbox input~label:after{left:-.05rem}.ui.toggle.checkbox .box:hover::before,.ui.toggle.checkbox input:focus~.box:before,.ui.toggle.checkbox input:focus~label:before,.ui.toggle.checkbox label:hover::before{background-color:rgba(0,0,0,.15);border:none}.ui.toggle.checkbox input:checked~.box,.ui.toggle.checkbox input:checked~label{color:rgba(0,0,0,.95)!important}.ui.toggle.checkbox input:checked~.box:before,.ui.toggle.checkbox input:checked~label:before{background-color:#2185d0!important}.ui.toggle.checkbox input:checked~.box:after,.ui.toggle.checkbox input:checked~label:after{left:2.15rem}.ui.toggle.checkbox input:focus:checked~.box,.ui.toggle.checkbox input:focus:checked~label{color:rgba(0,0,0,.95)!important}.ui.toggle.checkbox input:focus:checked~.box:before,.ui.toggle.checkbox input:focus:checked~label:before{background-color:#0d71bb!important}.ui.fitted.checkbox .box,.ui.fitted.checkbox label{padding-left:0!important}.ui.fitted.slider.checkbox,.ui.fitted.toggle.checkbox{width:3.5rem}@font-face{font-family:Checkbox;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBD8AAAC8AAAAYGNtYXAYVtCJAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zn4huwUAAAF4AAABYGhlYWQGPe1ZAAAC2AAAADZoaGVhB30DyAAAAxAAAAAkaG10eBBKAEUAAAM0AAAAHGxvY2EAmgESAAADUAAAABBtYXhwAAkALwAAA2AAAAAgbmFtZSC8IugAAAOAAAABknBvc3QAAwAAAAAFFAAAACAAAwMTAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6AL//f//AAAAAAAg6AD//f//AAH/4xgEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAEUAUQO7AvgAGgAAARQHAQYjIicBJjU0PwE2MzIfAQE2MzIfARYVA7sQ/hQQFhcQ/uMQEE4QFxcQqAF2EBcXEE4QAnMWEP4UEBABHRAXFhBOEBCoAXcQEE4QFwAAAAABAAABbgMlAkkAFAAAARUUBwYjISInJj0BNDc2MyEyFxYVAyUQEBf9SRcQEBAQFwK3FxAQAhJtFxAQEBAXbRcQEBAQFwAAAAABAAAASQMlA24ALAAAARUUBwYrARUUBwYrASInJj0BIyInJj0BNDc2OwE1NDc2OwEyFxYdATMyFxYVAyUQEBfuEBAXbhYQEO4XEBAQEBfuEBAWbhcQEO4XEBACEm0XEBDuFxAQEBAX7hAQF20XEBDuFxAQEBAX7hAQFwAAAQAAAAIAAHRSzT9fDzz1AAsEAAAAAADRsdR3AAAAANGx1HcAAAAAA7sDbgAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAADuwABAAAAAAAAAAAAAAAAAAAABwQAAAAAAAAAAAAAAAIAAAAEAABFAyUAAAMlAAAAAAAAAAoAFAAeAE4AcgCwAAEAAAAHAC0AAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhWZXJzaW9uIDIuMABWAGUAcgBzAGkAbwBuACAAMgAuADBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhDaGVja2JveABDAGgAZQBjAGsAYgBvAHhSZWd1bGFyAFIAZQBnAHUAbABhAHJDaGVja2JveABDAGgAZQBjAGsAYgBvAHhGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype')}.ui.checkbox input:checked~.box:after,.ui.checkbox input:checked~label:after{content:'\e800'}.ui.checkbox input:indeterminate~.box:after,.ui.checkbox input:indeterminate~label:after{font-size:12px;content:'\e801'}.dimmable{position:relative}.ui.dimmer{display:none;position:absolute;top:0!important;left:0!important;width:100%;height:100%;text-align:center;vertical-align:middle;background-color:rgba(0,0,0,.85);opacity:0;line-height:1;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-transition:background-color .5s linear;transition:background-color .5s linear;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;will-change:opacity;z-index:1000}.ui.dimmer>.content{width:100%;height:100%;display:table;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.dimmer>.content>*{display:table-cell;vertical-align:middle;color:#fff}.ui.segment>.ui.dimmer{border-radius:inherit!important}.animating.dimmable:not(body),.dimmed.dimmable:not(body){overflow:hidden}.dimmed.dimmable>.ui.animating.dimmer,.dimmed.dimmable>.ui.visible.dimmer,.ui.active.dimmer{display:block;opacity:1}.ui.disabled.dimmer{width:0!important;height:0!important}.ui.page.dimmer{position:fixed;-webkit-transform-style:'';transform-style:'';-webkit-perspective:2000px;perspective:2000px;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center}body.animating.in.dimmable,body.dimmed.dimmable{overflow:hidden}body.dimmable>.dimmer{position:fixed}.blurring.dimmable>:not(.dimmer){-webkit-filter:blur(0) grayscale(0);filter:blur(0) grayscale(0);-webkit-transition:800ms -webkit-filter ease,800ms filter ease;transition:800ms filter ease}.blurring.dimmed.dimmable>:not(.dimmer){-webkit-filter:blur(5px) grayscale(.7);filter:blur(5px) grayscale(.7)}.blurring.dimmable>.dimmer{background-color:rgba(0,0,0,.6)}.blurring.dimmable>.inverted.dimmer{background-color:rgba(255,255,255,.6)}.ui.dimmer>.top.aligned.content>*{vertical-align:top}.ui.dimmer>.bottom.aligned.content>*{vertical-align:bottom}.ui.inverted.dimmer{background-color:rgba(255,255,255,.85)}.ui.inverted.dimmer>.content>*{color:#fff}.ui.simple.dimmer{display:block;overflow:hidden;opacity:1;width:0;height:0;z-index:-100;background-color:transparent}.dimmed.dimmable>.ui.simple.dimmer{overflow:visible;opacity:1;width:100%;height:100%;background-color:rgba(0,0,0,.85);z-index:1}.ui.simple.inverted.dimmer{background-color:rgba(255,255,255,0)}.dimmed.dimmable>.ui.simple.inverted.dimmer{background-color:rgba(255,255,255,.85)}.ui.dropdown{cursor:pointer;position:relative;display:inline-block;outline:0;text-align:left;-webkit-transition:box-shadow .1s ease,width .1s ease;transition:box-shadow .1s ease,width .1s ease;-webkit-tap-highlight-color:transparent}.ui.dropdown .menu{cursor:auto;position:absolute;display:none;outline:0;top:100%;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;margin:0;padding:0;background:#fff;font-size:1em;text-shadow:none;text-align:left;box-shadow:0 2px 3px 0 rgba(34,36,38,.15);border:1px solid rgba(34,36,38,.15);border-radius:.28571429rem;-webkit-transition:opacity .1s ease;transition:opacity .1s ease;z-index:11;will-change:transform,opacity}.ui.dropdown .menu>*{white-space:nowrap}.ui.dropdown>input:not(.search):first-child,.ui.dropdown>select{display:none!important}.ui.dropdown>.dropdown.icon{position:relative;font-size:.85714286em;margin:0 0 0 1em}.ui.dropdown .menu>.item .dropdown.icon{width:auto;float:right;margin:0 0 0 1em}.ui.dropdown .menu>.item .dropdown.icon+.text{margin-right:1em}.ui.dropdown>.text{display:inline-block;-webkit-transition:none;transition:none}.ui.dropdown .menu>.item{position:relative;cursor:pointer;display:block;border:none;height:auto;text-align:left;border-top:none;line-height:1em;color:rgba(0,0,0,.87);padding:.71428571rem 1.14285714rem!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.ui.dropdown .menu>.item:first-child{border-top-width:0}.ui.dropdown .menu .item>[class*="right floated"],.ui.dropdown>.text>[class*="right floated"]{float:right!important;margin-right:0!important;margin-left:1em!important}.ui.dropdown .menu .item>[class*="left floated"],.ui.dropdown>.text>[class*="left floated"]{float:left!important;margin-left:0!important;margin-right:1em!important}.ui.dropdown .menu .item>.flag.floated,.ui.dropdown .menu .item>.icon.floated,.ui.dropdown .menu .item>.image.floated,.ui.dropdown .menu .item>img.floated{margin-top:0}.ui.dropdown .menu>.header{margin:1rem 0 .75rem;padding:0 1.14285714rem;color:rgba(0,0,0,.85);font-size:.78571429em;font-weight:700;text-transform:uppercase}.ui.dropdown .menu>.divider{border-top:1px solid rgba(34,36,38,.1);height:0;margin:.5em 0}.ui.dropdown .menu>.input{width:auto;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:1.14285714rem .71428571rem;min-width:10rem}.ui.dropdown .menu>.header+.input{margin-top:0}.ui.dropdown .menu>.input:not(.transparent) input{padding:.5em 1em}.ui.dropdown .menu>.input:not(.transparent) .button,.ui.dropdown .menu>.input:not(.transparent) .icon,.ui.dropdown .menu>.input:not(.transparent) .label{padding-top:.5em;padding-bottom:.5em}.ui.dropdown .menu>.item>.description,.ui.dropdown>.text>.description{float:right;margin:0 0 0 1em;color:rgba(0,0,0,.4)}.ui.dropdown .menu>.message{padding:.71428571rem 1.14285714rem;font-weight:400}.ui.dropdown .menu>.message:not(.ui){color:rgba(0,0,0,.4)}.ui.dropdown .menu .menu{top:0!important;left:100%!important;right:auto!important;margin:0 0 0 -.5em!important;border-radius:.28571429rem!important;z-index:21!important}.ui.dropdown .menu .menu:after{display:none}.ui.dropdown .menu>.item>.flag,.ui.dropdown .menu>.item>.icon,.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>.label,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.flag,.ui.dropdown>.text>.icon,.ui.dropdown>.text>.image,.ui.dropdown>.text>.label,.ui.dropdown>.text>img{margin-top:0;margin-left:0;float:none;margin-right:.71428571rem}.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.image,.ui.dropdown>.text>img{display:inline-block;vertical-align:middle;width:auto;max-height:2em}.ui.dropdown .ui.menu>.item:before,.ui.menu .ui.dropdown .menu>.item:before{display:none}.ui.menu .ui.dropdown .menu .active.item{border-left:none}.ui.buttons>.ui.dropdown:last-child .menu,.ui.menu .right.dropdown.item .menu,.ui.menu .right.menu .dropdown:last-child .menu{left:auto;right:0}.ui.label.dropdown .menu{min-width:100%}.ui.dropdown.icon.button>.dropdown.icon{margin:0}.ui.button.dropdown .menu{min-width:100%}.ui.selection.dropdown{cursor:pointer;word-wrap:break-word;line-height:1em;white-space:normal;outline:0;-webkit-transform:rotateZ(0);transform:rotateZ(0);min-width:14em;min-height:2.7142em;background:#fff;display:inline-block;padding:.78571429em 2.6em .78571429em 1em;color:rgba(0,0,0,.87);box-shadow:none;border:1px solid rgba(34,36,38,.15);border-radius:.28571429rem;-webkit-transition:box-shadow .1s ease,width .1s ease;transition:box-shadow .1s ease,width .1s ease}.ui.selection.dropdown.active,.ui.selection.dropdown.visible{z-index:10}select.ui.dropdown{height:38px;padding:.5em;border:1px solid rgba(34,36,38,.15);visibility:visible}.ui.selection.dropdown>.delete.icon,.ui.selection.dropdown>.dropdown.icon,.ui.selection.dropdown>.search.icon{cursor:pointer;position:absolute;top:auto;width:auto;z-index:3;margin:-.78571429em;padding:.78571429em;right:1em;opacity:.8;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.compact.selection.dropdown{min-width:0}.ui.selection.dropdown .menu{overflow-x:hidden;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch;border-top-width:0!important;outline:0;margin:0 -1px;min-width:calc(100% + 2px);width:calc(100% + 2px);border-radius:0 0 .28571429rem .28571429rem;box-shadow:0 2px 3px 0 rgba(34,36,38,.15);-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.selection.dropdown .menu:after,.ui.selection.dropdown .menu:before{display:none}.ui.selection.dropdown .menu>.message{padding:.71428571rem 1.14285714rem}@media only screen and (max-width:767px){.ui.selection.dropdown .menu{max-height:7.58571429rem}}@media only screen and (min-width:768px){.ui.selection.dropdown .menu{max-height:10.11428571rem}}@media only screen and (min-width:992px){.ui.selection.dropdown .menu{max-height:15.17142857rem}}@media only screen and (min-width:1920px){.ui.selection.dropdown .menu{max-height:20.22857143rem}}.ui.selection.dropdown .menu>.item{border-top:1px solid #fafafa;padding:.71428571rem 1.14285714rem!important;white-space:normal;word-wrap:normal}.ui.selection.dropdown:hover{border-color:rgba(34,36,38,.35);box-shadow:none}.ui.selection.active.dropdown,.ui.selection.active.dropdown .menu{border-color:#96c8da;box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.selection.dropdown:focus{border-color:#96c8da;box-shadow:none}.ui.selection.dropdown:focus .menu{border-color:#96c8da;box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.selection.visible.dropdown>.text:not(.default){font-weight:400;color:rgba(0,0,0,.8)}.ui.selection.active.dropdown:hover,.ui.selection.active.dropdown:hover .menu{border-color:#96c8da;box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.active.selection.dropdown>.dropdown.icon,.ui.visible.selection.dropdown>.dropdown.icon{opacity:1;z-index:3}.ui.active.selection.dropdown{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.ui.search.dropdown{min-width:''}.ui.search.dropdown>input.search{background:none!important;border:none!important;box-shadow:none!important;cursor:pointer;top:0;left:0;width:100%;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0);padding:inherit;position:absolute;z-index:2}.ui.search.dropdown>.text{cursor:text;position:relative;z-index:3}.ui.search.selection.dropdown>input.search{line-height:1.2142em;padding:.67861429em 2.6em .67861429em 1em}.ui.search.dropdown.active>input.search,.ui.search.dropdown.visible>input.search{cursor:auto}.ui.search.dropdown.active>.text,.ui.search.dropdown.visible>.text{pointer-events:none}.ui.active.search.dropdown input.search:focus+.text .flag,.ui.active.search.dropdown input.search:focus+.text .icon{opacity:.45}.ui.active.search.dropdown input.search:focus+.text{color:rgba(0,0,0,.4)!important}.ui.search.dropdown .menu{overflow-x:hidden;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch}@media only screen and (max-width:767px){.ui.search.dropdown .menu{max-height:7.58571429rem}}@media only screen and (min-width:768px){.ui.search.dropdown .menu{max-height:10.11428571rem}}@media only screen and (min-width:992px){.ui.search.dropdown .menu{max-height:15.17142857rem}}@media only screen and (min-width:1920px){.ui.search.dropdown .menu{max-height:20.22857143rem}}.ui.multiple.dropdown{padding:.22620476em 2.6em .22620476em .28571429em}.ui.multiple.dropdown .menu{cursor:auto}.ui.multiple.search.dropdown,.ui.multiple.search.dropdown>input.search{cursor:text}.ui.multiple.dropdown>.label{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;vertical-align:top;white-space:normal;font-size:1em;padding:.35714286em .71428571em;margin:.21428571em .28571429rem .21428571em 0;box-shadow:0 0 0 1px rgba(34,36,38,.15) inset}.ui.multiple.dropdown .dropdown.icon{margin:0 -.71428571em 0 0;padding:.5em}.ui.multiple.dropdown>.text{position:static;padding:0;max-width:100%;margin:.45240952em 0 .45240952em .71428571em;line-height:1.2142em}.ui.multiple.dropdown>.label~.text{display:none}.ui.multiple.search.dropdown>.text{display:inline-block;position:absolute;top:0;left:0;padding:inherit;margin:.45240952em 0 .45240952em .71428571em;line-height:1.2142em}.ui.multiple.search.dropdown>.label~.text{display:none}.ui.multiple.search.dropdown>input.search{position:static;padding:0;max-width:100%;margin:.45240952em 0 .45240952em .71428571em;width:2.2em;line-height:1.2142em}.ui.inline.dropdown{cursor:pointer;display:inline-block;color:inherit}.ui.inline.dropdown .dropdown.icon{margin:0 .5em 0 .25em;vertical-align:baseline}.ui.inline.dropdown>.text{font-weight:700}.ui.inline.dropdown .menu{cursor:auto;margin-top:.25em;border-radius:.28571429rem}.ui.dropdown .menu .active.item{background:0 0;font-weight:700;color:rgba(0,0,0,.95);box-shadow:none;z-index:12}.ui.dropdown .menu>.item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);z-index:13}.ui.loading.dropdown>i.icon:after,.ui.loading.dropdown>i.icon:before{left:30%!important}.ui.loading.dropdown>i.icon{top:50%!important}.ui.multiple.loading.dropdown>i.icon:after,.ui.multiple.loading.dropdown>i.icon:before{top:0!important;left:0!important}.ui.loading.dropdown>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.dropdown>i.icon:after{position:absolute;content:'';top:50%;left:50%;box-shadow:0 0 0 1px transparent;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;-webkit-animation:dropdown-spin .6s linear;animation:dropdown-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em}.ui.loading.dropdown.button>i.icon:after,.ui.loading.dropdown.button>i.icon:before{display:none}@-webkit-keyframes dropdown-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dropdown-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.default.dropdown:hover>.text,.ui.default.dropdown>.text,.ui.dropdown:hover>.default.text,.ui.dropdown>.default.text{color:rgba(179,179,179,.7)}.ui.loading.dropdown>.text{-webkit-transition:none;transition:none}.ui.dropdown .loading.menu{display:block;visibility:hidden;z-index:-1}.ui.dropdown .menu .selected.item,.ui.dropdown.selected{background:rgba(0,0,0,.03);color:rgba(0,0,0,.95)}.ui.dropdown>.filtered.text{visibility:hidden}.ui.dropdown .filtered.item{display:none!important}.ui.dropdown.error,.ui.dropdown.error>.default.text,.ui.dropdown.error>.text{color:#9f3a38}.ui.selection.dropdown.error{background:#fff6f6;border-color:#e0b4b4}.ui.dropdown.error>.menu,.ui.dropdown.error>.menu .menu,.ui.selection.dropdown.error:hover{border-color:#e0b4b4}.ui.dropdown.error>.menu>.item{color:#9f3a38}.ui.multiple.selection.error.dropdown>.label{border-color:#e0b4b4}.ui.dropdown.error>.menu>.item:hover{background-color:#fff2f2}.ui.dropdown.error>.menu .active.item{background-color:#fdcfcf}.ui.disabled.dropdown,.ui.dropdown .menu>.disabled.item{cursor:default;pointer-events:none;opacity:.45}.ui.dropdown .menu{left:0}.ui.dropdown .menu .right.menu,.ui.dropdown .right.menu>.menu{left:100%!important;right:auto!important;border-radius:.28571429rem!important}.ui.dropdown .menu .left.menu,.ui.dropdown>.left.menu .menu{left:auto!important;right:100%!important;border-radius:.28571429rem!important}.ui.dropdown .item .left.dropdown.icon,.ui.dropdown .left.menu .item .dropdown.icon{width:auto;float:left;margin:0 .71428571rem 0 0}.ui.dropdown .item .left.dropdown.icon+.text,.ui.dropdown .left.menu .item .dropdown.icon+.text{margin-left:1em}.ui.upward.dropdown>.menu{top:auto;bottom:100%;box-shadow:0 0 3px 0 rgba(0,0,0,.08);border-radius:.28571429rem .28571429rem 0 0}.ui.dropdown .upward.menu{top:auto!important;bottom:0!important}.ui.simple.upward.active.dropdown,.ui.simple.upward.dropdown:hover{border-radius:.28571429rem .28571429rem 0 0!important}.ui.upward.dropdown.button:not(.pointing):not(.floating).active{border-radius:.28571429rem .28571429rem 0 0}.ui.upward.selection.dropdown .menu{border-top-width:1px!important;border-bottom-width:0!important;box-shadow:0 -2px 3px 0 rgba(0,0,0,.08)}.ui.upward.selection.dropdown:hover{box-shadow:0 0 2px 0 rgba(0,0,0,.05)}.ui.active.upward.selection.dropdown{border-radius:0 0 .28571429rem .28571429rem!important}.ui.upward.selection.dropdown.visible{box-shadow:0 0 3px 0 rgba(0,0,0,.08);border-radius:0 0 .28571429rem .28571429rem!important}.ui.upward.active.selection.dropdown:hover{box-shadow:0 0 3px 0 rgba(0,0,0,.05)}.ui.upward.active.selection.dropdown:hover .menu{box-shadow:0 -2px 3px 0 rgba(0,0,0,.08)}.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{overflow-x:hidden;overflow-y:auto}.ui.scrolling.dropdown .menu{overflow-x:hidden;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch;min-width:100%!important;width:auto!important}.ui.dropdown .scrolling.menu{position:static;overflow-y:auto;border:none;box-shadow:none!important;border-radius:0!important;margin:0!important;min-width:100%!important;width:auto!important;border-top:1px solid rgba(34,36,38,.15)}.ui.dropdown .scrolling.menu>.item.item.item,.ui.scrolling.dropdown .menu .item.item.item{border-top:none;padding-right:calc(1.14285714rem + 17px)!important}.ui.dropdown .scrolling.menu .item:first-child,.ui.scrolling.dropdown .menu .item:first-child{border-top:none}.ui.dropdown>.animating.menu .scrolling.menu,.ui.dropdown>.visible.menu .scrolling.menu{display:block}@media all and (-ms-high-contrast:none){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{min-width:calc(100% - 17px)}}@media only screen and (max-width:767px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:9.71428571rem}}.ui.simple.dropdown .menu:after,.ui.simple.dropdown .menu:before{display:none}.ui.simple.dropdown .menu{position:absolute;display:block;overflow:hidden;top:-9999px!important;opacity:0;width:0;height:0;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.simple.active.dropdown,.ui.simple.dropdown:hover{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.ui.simple.active.dropdown>.menu,.ui.simple.dropdown:hover>.menu{overflow:visible;width:auto;height:auto;top:100%!important;opacity:1}.ui.simple.dropdown:hover>.menu>.item:hover>.menu,.ui.simple.dropdown>.menu>.item:active>.menu{overflow:visible;width:auto;height:auto;top:0!important;left:100%!important;opacity:1}.ui.simple.disabled.dropdown:hover .menu{display:none;height:0;width:0;overflow:hidden}.ui.simple.visible.dropdown>.menu{display:block}.ui.fluid.dropdown{display:block;width:100%;min-width:0}.ui.fluid.dropdown>.dropdown.icon{float:right}.ui.floating.dropdown .menu{left:0;right:auto;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08)!important;border-radius:.28571429rem!important}.ui.floating.dropdown>.menu{margin-top:.5em!important;border-radius:.28571429rem!important}.ui.pointing.dropdown>.menu{top:100%;margin-top:.71428571rem;border-radius:.28571429rem}.ui.pointing.dropdown>.menu:after{display:block;position:absolute;pointer-events:none;content:'';visibility:visible;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);width:.5em;height:.5em;box-shadow:-1px -1px 0 1px rgba(34,36,38,.15);background:#fff;z-index:2;top:-.25em;left:50%;margin:0 0 0 -.25em}.ui.top.left.pointing.dropdown>.menu{top:100%;bottom:auto;left:0;right:auto;margin:1em 0 0}.ui.top.left.pointing.dropdown>.menu:after{top:-.25em;left:1em;right:auto;margin:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.ui.top.right.pointing.dropdown>.menu{top:100%;bottom:auto;right:0;left:auto;margin:1em 0 0}.ui.top.right.pointing.dropdown>.menu:after{top:-.25em;left:auto;right:1em;margin:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.ui.left.pointing.dropdown>.menu{top:0;left:100%;right:auto;margin:0 0 0 1em}.ui.left.pointing.dropdown>.menu:after{top:1em;left:-.25em;margin:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.ui.right.pointing.dropdown>.menu{top:0;left:auto;right:100%;margin:0 1em 0 0}.ui.right.pointing.dropdown>.menu:after{top:1em;left:auto;right:-.25em;margin:0;-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.ui.bottom.pointing.dropdown>.menu{top:auto;bottom:100%;left:0;right:auto;margin:0 0 1em}.ui.bottom.pointing.dropdown>.menu:after{top:auto;bottom:-.25em;right:auto;margin:0;-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.ui.bottom.pointing.dropdown>.menu .menu{top:auto!important;bottom:0!important}.ui.bottom.left.pointing.dropdown>.menu{left:0;right:auto}.ui.bottom.left.pointing.dropdown>.menu:after{left:1em;right:auto}.ui.bottom.right.pointing.dropdown>.menu{right:0;left:auto}.ui.bottom.right.pointing.dropdown>.menu:after{left:auto;right:1em}.ui.upward.pointing.dropdown>.menu,.ui.upward.top.pointing.dropdown>.menu{top:auto;bottom:100%;margin:0 0 .71428571rem;border-radius:.28571429rem}.ui.upward.pointing.dropdown>.menu:after,.ui.upward.top.pointing.dropdown>.menu:after{top:100%;bottom:auto;box-shadow:1px 1px 0 1px rgba(34,36,38,.15);margin:-.25em 0 0}@font-face{font-family:Dropdown;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfuIIAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zjo82LgAAAFwAAABVGhlYWQAQ88bAAACxAAAADZoaGVhAwcB6QAAAvwAAAAkaG10eAS4ABIAAAMgAAAAIGxvY2EBNgDeAAADQAAAABJtYXhwAAoAFgAAA1QAAAAgbmFtZVcZpu4AAAN0AAABRXBvc3QAAwAAAAAEvAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDX//3//wAB/+MPLQADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAIABJQElABMAABM0NzY3BTYXFhUUDwEGJwYvASY1AAUGBwEACAUGBoAFCAcGgAUBEgcGBQEBAQcECQYHfwYBAQZ/BwYAAQAAAG4BJQESABMAADc0PwE2MzIfARYVFAcGIyEiJyY1AAWABgcIBYAGBgUI/wAHBgWABwaABQWABgcHBgUFBgcAAAABABIASQC3AW4AEwAANzQ/ATYXNhcWHQEUBwYnBi8BJjUSBoAFCAcFBgYFBwgFgAbbBwZ/BwEBBwQJ/wgEBwEBB38GBgAAAAABAAAASQClAW4AEwAANxE0NzYzMh8BFhUUDwEGIyInJjUABQYHCAWABgaABQgHBgVbAQAIBQYGgAUIBwWABgYFBwAAAAEAAAABAADZuaKOXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAAAAACgAUAB4AQgBkAIgAqgAAAAEAAAAIABQAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgA0AGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgA0AGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVwAAoAAAAABSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAdkAAAHZLDXE/09TLzIAAALQAAAAYAAAAGAIIweQY21hcAAAAzAAAABMAAAATA9+4ghnYXNwAAADfAAAAAgAAAAIAAAAEGhlYWQAAAOEAAAANgAAADYAQ88baGhlYQAAA7wAAAAkAAAAJAMHAelobXR4AAAD4AAAACAAAAAgBLgAEm1heHAAAAQAAAAABgAAAAYACFAAbmFtZQAABAgAAAFFAAABRVcZpu5wb3N0AAAFUAAAACAAAAAgAAMAAAEABAQAAQEBCGljb21vb24AAQIAAQA6+BwC+BsD+BgEHgoAGVP/i4seCgAZU/+LiwwHi2v4lPh0BR0AAACIDx0AAACNER0AAAAJHQAAAdASAAkBAQgPERMWGyAlKmljb21vb25pY29tb29udTB1MXUyMHVGMEQ3dUYwRDh1RjBEOXVGMERBAAACAYkABgAIAgABAAQABwAKAA0AVgCfAOgBL/yUDvyUDvyUDvuUDvtvi/emFYuQjZCOjo+Pj42Qiwj3lIsFkIuQiY6Hj4iNhouGi4aJh4eHCPsU+xQFiIiGiYaLhouHjYeOCPsU9xQFiI+Jj4uQCA77b4v3FBWLkI2Pjo8I9xT3FAWPjo+NkIuQi5CJjogI9xT7FAWPh42Hi4aLhomHh4eIiIaJhosI+5SLBYaLh42HjoiPiY+LkAgO+92d928Vi5CNkI+OCPcU9xQFjo+QjZCLkIuPiY6Hj4iNhouGCIv7lAWLhomHh4iIh4eJhouGi4aNiI8I+xT3FAWHjomPi5AIDvvdi+YVi/eUBYuQjZCOjo+Pj42Qi5CLkImOhwj3FPsUBY+IjYaLhouGiYeHiAj7FPsUBYiHhomGi4aLh42Hj4iOiY+LkAgO+JQU+JQViwwKAAAAAAMCAAGQAAUAAAFMAWYAAABHAUwBZgAAAPUAGQCEAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8NoB4P/g/+AB4AAgAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDw2v/9//8AAAAAACDw1//9//8AAf/jDy0AAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAA5emozXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAUAAACAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoANABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoANABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');font-weight:400;font-style:normal}.ui.dropdown>.dropdown.icon{font-family:Dropdown;line-height:1;height:1em;-webkit-backface-visibility:hidden;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center;width:auto}.ui.dropdown>.dropdown.icon:before{content:'\f0d7'}.ui.dropdown .menu .item .dropdown.icon:before{content:'\f0da'}.ui.dropdown .item .left.dropdown.icon:before,.ui.dropdown .left.menu .item .dropdown.icon:before{content:"\f0d9"}.ui.vertical.menu .dropdown.item>.dropdown.icon:before{content:"\f0da"}.ui.embed{position:relative;max-width:100%;height:0;overflow:hidden;background:#dcddde;padding-bottom:56.25%}.ui.embed embed,.ui.embed iframe,.ui.embed object{position:absolute;border:none;width:100%;height:100%;top:0;left:0;margin:0;padding:0}.ui.embed>.embed{display:none}.ui.embed>.placeholder{position:absolute;cursor:pointer;top:0;left:0;display:block;width:100%;height:100%;background-color:radial-gradient(transparent 45%,rgba(0,0,0,.3))}.ui.embed>.icon{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;z-index:2}.ui.embed>.icon:after{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3;content:'';background:-webkit-radial-gradient(transparent 45%,rgba(0,0,0,.3));background:radial-gradient(transparent 45%,rgba(0,0,0,.3));opacity:.5;-webkit-transition:opacity .5s ease;transition:opacity .5s ease}.ui.embed>.icon:before{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);color:#fff;font-size:6rem;text-shadow:0 2px 10px rgba(34,36,38,.2);-webkit-transition:opacity .5s ease,color .5s ease;transition:opacity .5s ease,color .5s ease;z-index:10}.ui.embed .icon:hover:after{background:-webkit-radial-gradient(transparent 45%,rgba(0,0,0,.3));background:radial-gradient(transparent 45%,rgba(0,0,0,.3));opacity:1}.ui.embed .icon:hover:before{color:#fff}.ui.active.embed>.icon,.ui.active.embed>.placeholder{display:none}.ui.active.embed>.embed{display:block}.ui.square.embed{padding-bottom:100%}.ui[class*="4:3"].embed{padding-bottom:75%}.ui[class*="16:9"].embed{padding-bottom:56.25%}.ui[class*="21:9"].embed{padding-bottom:42.85714286%}.ui.modal{display:none;position:fixed;z-index:1001;top:50%;left:50%;text-align:left;background:#fff;border:none;box-shadow:1px 3px 3px 0 rgba(0,0,0,.2),1px 3px 15px 2px rgba(0,0,0,.2);-webkit-transform-origin:50% 25%;-ms-transform-origin:50% 25%;transform-origin:50% 25%;border-radius:.28571429rem;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;will-change:top,left,margin,transform,opacity}.ui.modal>.icon:first-child+*,.ui.modal>:first-child:not(.icon){border-top-left-radius:.28571429rem;border-top-right-radius:.28571429rem}.ui.modal>:last-child{border-bottom-left-radius:.28571429rem;border-bottom-right-radius:.28571429rem}.ui.modal>.close{cursor:pointer;position:absolute;top:-2.5rem;right:-2.5rem;z-index:1;opacity:.8;font-size:1.25em;color:#fff;width:2.25rem;height:2.25rem;padding:.625rem 0 0}.ui.modal>.close:hover{opacity:1}.ui.modal>.header{display:block;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;background:#fff;margin:0;padding:1.25rem 1.5rem;box-shadow:none;color:rgba(0,0,0,.85);border-bottom:1px solid rgba(34,36,38,.15)}.ui.modal>.header:not(.ui){font-size:1.42857143rem;line-height:1.2857em;font-weight:700}.ui.modal>.content{display:block;width:100%;font-size:1em;line-height:1.4;padding:1.5rem;background:#fff}.ui.modal>.image.content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.ui.modal>.content>.image{display:block;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;width:'';-webkit-align-self:top;-ms-flex-item-align:top;align-self:top}.ui.modal>[class*="top aligned"]{-webkit-align-self:top;-ms-flex-item-align:top;align-self:top}.ui.modal>[class*="middle aligned"]{-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle}.ui.modal>[class*=stretched]{-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch}.ui.modal>.content>.description{display:block;-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;min-width:0;-webkit-align-self:top;-ms-flex-item-align:top;align-self:top}.ui.modal>.content>.icon+.description,.ui.modal>.content>.image+.description{-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;min-width:'';width:auto;padding-left:2em}.ui.modal>.content>.image>i.icon{margin:0;opacity:1;width:auto;line-height:1;font-size:8rem}.ui.modal>.actions{background:#f9fafb;padding:1rem;border-top:1px solid rgba(34,36,38,.15);text-align:right}.ui.modal .actions>.button{margin-left:.75em}@media only screen and (max-width:767px){.ui.modal{width:95%;margin:0 0 0 -47.5%}}@media only screen and (min-width:768px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:14.57142857rem}.ui.modal{width:88%;margin:0 0 0 -44%}}@media only screen and (min-width:992px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:19.42857143rem}.ui.modal{width:850px;margin:0 0 0 -425px}}@media only screen and (min-width:1200px){.ui.modal{width:900px;margin:0 0 0 -450px}}@media only screen and (min-width:1920px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:19.42857143rem}.ui.modal{width:950px;margin:0 0 0 -475px}}@media only screen and (max-width:992px){.ui.modal>.header{padding-right:2.25rem}.ui.modal>.close{top:1.0535rem;right:1rem;color:rgba(0,0,0,.87)}}@media only screen and (max-width:767px){.ui.modal>.header{padding:.75rem 2.25rem .75rem 1rem!important}.ui.modal>.content{display:block;padding:1rem!important}.ui.modal>.close{top:.5rem!important;right:.5rem!important}.ui.modal .image.content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.modal .content>.image{display:block;max-width:100%;margin:0 auto!important;text-align:center;padding:0 0 1rem!important}.ui.modal>.content>.image>i.icon{font-size:5rem;text-align:center}.ui.modal .content>.description{display:block;width:100%!important;margin:0!important;padding:1rem 0!important;box-shadow:none}.ui.modal>.actions{padding:1rem 1rem 0!important}.ui.modal .actions>.button,.ui.modal .actions>.buttons{margin-bottom:1rem}}.ui.inverted.dimmer>.ui.modal{box-shadow:1px 3px 10px 2px rgba(0,0,0,.2)}.ui.basic.modal{background-color:transparent;border:none;border-radius:0;box-shadow:none!important;color:#fff}.ui.basic.modal>.actions,.ui.basic.modal>.content,.ui.basic.modal>.header{background-color:transparent}.ui.basic.modal>.header{color:#fff}.ui.basic.modal>.close{top:1rem;right:1.5rem}.ui.inverted.dimmer>.basic.modal{color:rgba(0,0,0,.87)}.ui.inverted.dimmer>.ui.basic.modal>.header{color:rgba(0,0,0,.85)}.ui.active.modal{display:block}.scrolling.dimmable.dimmed{overflow:hidden}.scrolling.dimmable.dimmed>.dimmer{overflow:auto;-webkit-overflow-scrolling:touch}.scrolling.dimmable>.dimmer{position:fixed}.modals.dimmer .ui.scrolling.modal{position:static!important;margin:3.5rem auto!important}.scrolling.undetached.dimmable.dimmed{overflow:auto;-webkit-overflow-scrolling:touch}.scrolling.undetached.dimmable.dimmed>.dimmer{overflow:hidden}.scrolling.undetached.dimmable .ui.scrolling.modal{position:absolute;left:50%;margin-top:3.5rem!important}.undetached.dimmable.dimmed>.pusher{z-index:auto}@media only screen and (max-width:992px){.ui.basic.modal>.close{color:#fff}.modals.dimmer .ui.scrolling.modal{margin-top:1rem!important;margin-bottom:1rem!important}}.ui.fullscreen.modal{width:95%!important;left:2.5%!important;margin:1em auto}.ui.fullscreen.scrolling.modal{left:0!important}.ui.fullscreen.modal>.header{padding-right:2.25rem}.ui.fullscreen.modal>.close{top:1.0535rem;right:1rem;color:rgba(0,0,0,.87)}.ui.modal{font-size:1rem}.ui.small.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width:767px){.ui.small.modal{width:95%;margin:0 0 0 -47.5%}}@media only screen and (min-width:768px){.ui.small.modal{width:70.4%;margin:0 0 0 -35.2%}}@media only screen and (min-width:992px){.ui.small.modal{width:680px;margin:0 0 0 -340px}}@media only screen and (min-width:1200px){.ui.small.modal{width:720px;margin:0 0 0 -360px}}@media only screen and (min-width:1920px){.ui.small.modal{width:760px;margin:0 0 0 -380px}}.ui.large.modal>.header{font-size:1.6em}@media only screen and (max-width:767px){.ui.large.modal{width:95%;margin:0 0 0 -47.5%}}@media only screen and (min-width:768px){.ui.large.modal{width:88%;margin:0 0 0 -44%}}@media only screen and (min-width:992px){.ui.large.modal{width:1020px;margin:0 0 0 -510px}}@media only screen and (min-width:1200px){.ui.large.modal{width:1080px;margin:0 0 0 -540px}}@media only screen and (min-width:1920px){.ui.large.modal{width:1140px;margin:0 0 0 -570px}}.ui.nag{display:none;opacity:.95;position:relative;top:0;left:0;z-index:999;min-height:0;width:100%;margin:0;padding:.75em 1em;background:#555;box-shadow:0 1px 2px 0 rgba(0,0,0,.2);font-size:1rem;text-align:center;color:rgba(0,0,0,.87);border-radius:0 0 .28571429rem .28571429rem;-webkit-transition:.2s background ease;transition:.2s background ease}a.ui.nag{cursor:pointer}.ui.nag>.title{display:inline-block;margin:0 .5em;color:#fff}.ui.nag>.close.icon{cursor:pointer;opacity:.4;position:absolute;top:50%;right:1em;font-size:1em;margin:-.5em 0 0;color:#fff;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}.ui.nag:hover{background:#555;opacity:1}.ui.nag .close:hover{opacity:1}.ui.overlay.nag{position:absolute;display:block}.ui.fixed.nag{position:fixed}.ui.bottom.nag,.ui.bottom.nags{border-radius:.28571429rem .28571429rem 0 0;top:auto;bottom:0}.ui.inverted.nag,.ui.inverted.nags .nag{background-color:#f3f4f5;color:rgba(0,0,0,.85)}.ui.inverted.nag .close,.ui.inverted.nag .title,.ui.inverted.nags .nag .close,.ui.inverted.nags .nag .title{color:rgba(0,0,0,.4)}.ui.nags .nag{border-radius:0!important}.ui.nags .nag:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui.bottom.nags .nag:last-child{border-radius:.28571429rem .28571429rem 0 0}.ui.popup{display:none;position:absolute;top:0;right:0;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;z-index:1900;border:1px solid #d4d4d5;line-height:1.4285em;max-width:250px;background-color:#fff;padding:.833em 1em;font-weight:400;font-style:normal;color:rgba(0,0,0,.87);border-radius:.28571429rem;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08);margin:0}.ui.popup>.header{padding:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.125em;line-height:1.2;font-weight:700}.ui.popup>.header+.content{padding-top:.5em}.ui.popup:before{position:absolute;content:'';width:.75em;height:.75em;background:#fff;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:2;box-shadow:1px 1px 0 0 #bababc}.ui.top.popup{margin:0 0 .75em}.ui.top.left.popup{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom}.ui.top.center.popup{-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}.ui.top.right.popup{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom}.ui.left.center.popup{margin:0 .75em 0 0;-webkit-transform-origin:right 50%;-ms-transform-origin:right 50%;transform-origin:right 50%}.ui.right.center.popup{margin:0 0 0 .75em;-webkit-transform-origin:left 50%;-ms-transform-origin:left 50%;transform-origin:left 50%}.ui.bottom.popup{margin:.75em 0 0}.ui.bottom.left.popup{-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top}.ui.bottom.center.popup{-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top}.ui.bottom.right.popup{-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top;margin-right:0}.ui.bottom.center.popup:before{margin-left:-.325em;top:-.325em;left:50%;right:auto;bottom:auto;box-shadow:-1px -1px 0 0 #bababc}.ui.bottom.left.popup{margin-left:0}.ui.bottom.left.popup:before{top:-.325em;left:1em;right:auto;bottom:auto;margin-left:0;box-shadow:-1px -1px 0 0 #bababc}.ui.bottom.right.popup:before{top:-.325em;right:1em;bottom:auto;left:auto;margin-left:0;box-shadow:-1px -1px 0 0 #bababc}.ui.top.center.popup:before{top:auto;right:auto;bottom:-.325em;left:50%;margin-left:-.325em}.ui.top.left.popup{margin-left:0}.ui.top.left.popup:before{bottom:-.325em;left:1em;top:auto;right:auto;margin-left:0}.ui.top.right.popup{margin-right:0}.ui.top.right.popup:before{bottom:-.325em;right:1em;top:auto;left:auto;margin-left:0}.ui.left.center.popup:before{top:50%;right:-.325em;bottom:auto;left:auto;margin-top:-.325em;box-shadow:1px -1px 0 0 #bababc}.ui.right.center.popup:before{top:50%;left:-.325em;bottom:auto;right:auto;margin-top:-.325em;box-shadow:-1px 1px 0 0 #bababc}.ui.popup>.ui.grid:not(.padded){width:calc(100% + 1.75rem);margin:-.7rem -.875rem}.ui.loading.popup{display:block;visibility:hidden;z-index:-1}.ui.animating.popup,.ui.visible.popup{display:block}.ui.visible.popup{-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.ui.basic.popup:before{display:none}.ui.wide.popup{max-width:350px}.ui[class*="very wide"].popup{max-width:550px}@media only screen and (max-width:767px){.ui.wide.popup,.ui[class*="very wide"].popup{max-width:250px}}.ui.fluid.popup{width:100%;max-width:none}.ui.inverted.popup{background:#1b1c1d;color:#fff;border:none;box-shadow:none}.ui.inverted.popup .header{background-color:none;color:#fff}.ui.inverted.popup:before{background-color:#1b1c1d;box-shadow:none!important}.ui.flowing.popup{max-width:none}.ui.mini.popup{font-size:.71428571rem}.ui.tiny.popup{font-size:.85714286rem}.ui.small.popup{font-size:.92857143rem}.ui.popup{font-size:1rem}.ui.large.popup{font-size:1.14285714rem}.ui.huge.popup{font-size:1.42857143rem}.ui.progress{position:relative;display:block;max-width:100%;border:none;margin:1em 0 2.5em;box-shadow:none;background:rgba(0,0,0,.1);padding:0;border-radius:.28571429rem}.ui.progress:first-child{margin:0 0 2.5em}.ui.progress:last-child{margin:0 0 1.5em}.ui.progress .bar{display:block;line-height:1;position:relative;width:0;min-width:2em;background:#888;border-radius:.28571429rem;-webkit-transition:width .1s ease,background-color .1s ease;transition:width .1s ease,background-color .1s ease}.ui.progress .bar>.progress{white-space:nowrap;position:absolute;width:auto;font-size:.92857143em;top:50%;right:.5em;left:auto;bottom:auto;color:rgba(255,255,255,.7);text-shadow:none;margin-top:-.5em;font-weight:700;text-align:left}.ui.progress>.label{position:absolute;width:100%;font-size:1em;top:100%;right:auto;left:0;bottom:auto;color:rgba(0,0,0,.87);font-weight:700;text-shadow:none;margin-top:.2em;text-align:center;-webkit-transition:color .4s ease;transition:color .4s ease}.ui.indicating.progress[data-percent^="1"] .bar,.ui.indicating.progress[data-percent^="2"] .bar{background-color:#d95c5c}.ui.indicating.progress[data-percent^="3"] .bar{background-color:#efbc72}.ui.indicating.progress[data-percent^="4"] .bar,.ui.indicating.progress[data-percent^="5"] .bar{background-color:#e6bb48}.ui.indicating.progress[data-percent^="6"] .bar{background-color:#ddc928}.ui.indicating.progress[data-percent^="7"] .bar,.ui.indicating.progress[data-percent^="8"] .bar{background-color:#b4d95c}.ui.indicating.progress[data-percent^="9"] .bar,.ui.indicating.progress[data-percent^="100"] .bar{background-color:#66da81}.ui.indicating.progress[data-percent^="1"] .label,.ui.indicating.progress[data-percent^="2"] .label,.ui.indicating.progress[data-percent^="3"] .label,.ui.indicating.progress[data-percent^="4"] .label,.ui.indicating.progress[data-percent^="5"] .label,.ui.indicating.progress[data-percent^="6"] .label,.ui.indicating.progress[data-percent^="7"] .label,.ui.indicating.progress[data-percent^="8"] .label,.ui.indicating.progress[data-percent^="9"] .label,.ui.indicating.progress[data-percent^="100"] .label{color:rgba(0,0,0,.87)}.ui.indicating.progress[data-percent="1"] .bar,.ui.indicating.progress[data-percent="2"] .bar,.ui.indicating.progress[data-percent="3"] .bar,.ui.indicating.progress[data-percent="4"] .bar,.ui.indicating.progress[data-percent="5"] .bar,.ui.indicating.progress[data-percent="6"] .bar,.ui.indicating.progress[data-percent="7"] .bar,.ui.indicating.progress[data-percent="8"] .bar,.ui.indicating.progress[data-percent="9"] .bar{background-color:#d95c5c}.ui.indicating.progress[data-percent="1"] .label,.ui.indicating.progress[data-percent="2"] .label,.ui.indicating.progress[data-percent="3"] .label,.ui.indicating.progress[data-percent="4"] .label,.ui.indicating.progress[data-percent="5"] .label,.ui.indicating.progress[data-percent="6"] .label,.ui.indicating.progress[data-percent="7"] .label,.ui.indicating.progress[data-percent="8"] .label,.ui.indicating.progress[data-percent="9"] .label{color:rgba(0,0,0,.87)}.ui.indicating.progress.success .label{color:#1a531b}.ui.progress.success .bar{background-color:#21ba45!important}.ui.progress.success .bar,.ui.progress.success .bar::after{-webkit-animation:none!important;animation:none!important}.ui.progress.success>.label{color:#1a531b}.ui.progress.warning .bar{background-color:#f2c037!important}.ui.progress.warning .bar,.ui.progress.warning .bar::after{-webkit-animation:none!important;animation:none!important}.ui.progress.warning>.label{color:#794b02}.ui.progress.error .bar{background-color:#db2828!important}.ui.progress.error .bar,.ui.progress.error .bar::after{-webkit-animation:none!important;animation:none!important}.ui.progress.error>.label{color:#912d2b}.ui.active.progress .bar{position:relative;min-width:2em}.ui.active.progress .bar::after{content:'';opacity:0;position:absolute;top:0;left:0;right:0;bottom:0;background:#fff;border-radius:.28571429rem;-webkit-animation:progress-active 2s ease infinite;animation:progress-active 2s ease infinite}@-webkit-keyframes progress-active{0%{opacity:.3;width:0}100%{opacity:0;width:100%}}@keyframes progress-active{0%{opacity:.3;width:0}100%{opacity:0;width:100%}}.ui.disabled.progress{opacity:.35}.ui.disabled.progress .bar,.ui.disabled.progress .bar::after{-webkit-animation:none!important;animation:none!important}.ui.inverted.progress{background:rgba(255,255,255,.08);border:none}.ui.inverted.progress .bar{background:#888}.ui.inverted.progress .bar>.progress{color:#f9fafb}.ui.inverted.progress>.label{color:#fff}.ui.inverted.progress.success>.label{color:#21ba45}.ui.inverted.progress.warning>.label{color:#f2c037}.ui.inverted.progress.error>.label{color:#db2828}.ui.progress.attached{background:0 0;position:relative;border:none;margin:0}.ui.progress.attached,.ui.progress.attached .bar{display:block;height:.2rem;padding:0;overflow:hidden;border-radius:0 0 .28571429rem .28571429rem}.ui.progress.attached .bar{border-radius:0}.ui.progress.top.attached,.ui.progress.top.attached .bar{top:0;border-radius:.28571429rem .28571429rem 0 0}.ui.progress.top.attached .bar{border-radius:0}.ui.card>.ui.attached.progress,.ui.segment>.ui.attached.progress{position:absolute;top:auto;left:0;bottom:100%;width:100%}.ui.card>.ui.bottom.attached.progress,.ui.segment>.ui.bottom.attached.progress{top:100%;bottom:auto}.ui.red.progress .bar{background-color:#db2828}.ui.red.inverted.progress .bar{background-color:#ff695e}.ui.orange.progress .bar{background-color:#f2711c}.ui.orange.inverted.progress .bar{background-color:#ff851b}.ui.yellow.progress .bar{background-color:#fbbd08}.ui.yellow.inverted.progress .bar{background-color:#ffe21f}.ui.olive.progress .bar{background-color:#b5cc18}.ui.olive.inverted.progress .bar{background-color:#d9e778}.ui.green.progress .bar{background-color:#21ba45}.ui.green.inverted.progress .bar{background-color:#2ecc40}.ui.teal.progress .bar{background-color:#00b5ad}.ui.teal.inverted.progress .bar{background-color:#6dffff}.ui.blue.progress .bar{background-color:#2185d0}.ui.blue.inverted.progress .bar{background-color:#54c8ff}.ui.violet.progress .bar{background-color:#6435c9}.ui.violet.inverted.progress .bar{background-color:#a291fb}.ui.purple.progress .bar{background-color:#a333c8}.ui.purple.inverted.progress .bar{background-color:#dc73ff}.ui.pink.progress .bar{background-color:#e03997}.ui.pink.inverted.progress .bar{background-color:#ff8edf}.ui.brown.progress .bar{background-color:#a5673f}.ui.brown.inverted.progress .bar{background-color:#d67c1c}.ui.grey.progress .bar{background-color:#767676}.ui.grey.inverted.progress .bar{background-color:#dcddde}.ui.black.progress .bar{background-color:#1b1c1d}.ui.black.inverted.progress .bar{background-color:#545454}.ui.tiny.progress{font-size:.85714286rem}.ui.tiny.progress .bar{height:.5em}.ui.small.progress{font-size:.92857143rem}.ui.small.progress .bar{height:1em}.ui.progress{font-size:1rem}.ui.progress .bar{height:1.75em}.ui.large.progress{font-size:1.14285714rem}.ui.large.progress .bar{height:2.5em}.ui.big.progress{font-size:1.28571429rem}.ui.big.progress .bar{height:3.5em}.ui.rating:last-child{margin-right:0}.ui.rating .icon{padding:0;margin:0;-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;cursor:pointer;width:1.25em;height:auto;-webkit-transition:opacity .1s ease,background .1s ease,text-shadow .1s ease,color .1s ease;transition:opacity .1s ease,background .1s ease,text-shadow .1s ease,color .1s ease;background:0 0;color:rgba(0,0,0,.15);font-family:Rating;line-height:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center}.ui.rating .active.icon{background:0 0;color:rgba(0,0,0,.85)}.ui.rating .icon.selected,.ui.rating .icon.selected.active{background:0 0;color:rgba(0,0,0,.87)}.ui.star.rating .icon{width:1.25em;height:auto;background:0 0;color:rgba(0,0,0,.15);text-shadow:none}.ui.star.rating .active.icon{background:0 0!important;color:#ffe623!important;text-shadow:0 -1px 0 #ddc507,-1px 0 0 #ddc507,0 1px 0 #ddc507,1px 0 0 #ddc507!important}.ui.star.rating .icon.selected,.ui.star.rating .icon.selected.active{background:0 0!important;color:#fc0!important;text-shadow:0 -1px 0 #e6a200,-1px 0 0 #e6a200,0 1px 0 #e6a200,1px 0 0 #e6a200!important}.ui.heart.rating .icon{width:1.4em;height:auto;background:0 0;color:rgba(0,0,0,.15);text-shadow:none!important}.ui.heart.rating .active.icon{background:0 0!important;color:#ff6d75!important;text-shadow:0 -1px 0 #cd0707,-1px 0 0 #cd0707,0 1px 0 #cd0707,1px 0 0 #cd0707!important}.ui.heart.rating .icon.selected,.ui.heart.rating .icon.selected.active{background:0 0!important;color:#ff3000!important;text-shadow:0 -1px 0 #aa0101,-1px 0 0 #aa0101,0 1px 0 #aa0101,1px 0 0 #aa0101!important}.ui.disabled.rating .icon{cursor:default}.ui.rating .icon.selected,.ui.rating.selected .active.icon,.ui.rating.selected .icon.selected{opacity:1}.ui.mini.rating{font-size:.71428571rem}.ui.tiny.rating{font-size:.85714286rem}.ui.small.rating{font-size:.92857143rem}.ui.rating{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;white-space:nowrap;vertical-align:baseline;font-size:1rem}.ui.large.rating{font-size:1.14285714rem}.ui.huge.rating{font-size:1.42857143rem}.ui.massive.rating{font-size:2rem}@font-face{font-family:Rating;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjCBsAAAC8AAAAYGNtYXCj2pm8AAABHAAAAKRnYXNwAAAAEAAAAcAAAAAIZ2x5ZlJbXMYAAAHIAAARnGhlYWQBGAe5AAATZAAAADZoaGVhA+IB/QAAE5wAAAAkaG10eCzgAEMAABPAAAAAcGxvY2EwXCxOAAAUMAAAADptYXhwACIAnAAAFGwAAAAgbmFtZfC1n04AABSMAAABPHBvc3QAAwAAAAAVyAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADxZQHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEAJAAAAAgACAABAAAAAEAIOYF8AbwDfAj8C7wbvBw8Irwl/Cc8SPxZf/9//8AAAAAACDmAPAE8AzwI/Au8G7wcPCH8JfwnPEj8WT//f//AAH/4xoEEAYQAQ/sD+IPow+iD4wPgA98DvYOtgADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAIAAP/tAgAB0wAKABUAAAEvAQ8BFwc3Fyc3BQc3Jz8BHwEHFycCALFPT7GAHp6eHoD/AHAWW304OH1bFnABGRqgoBp8sFNTsHyyOnxYEnFxElh8OgAAAAACAAD/7QIAAdMACgASAAABLwEPARcHNxcnNwUxER8BBxcnAgCxT0+xgB6enh6A/wA4fVsWcAEZGqCgGnywU1OwfLIBHXESWHw6AAAAAQAA/+0CAAHTAAoAAAEvAQ8BFwc3Fyc3AgCxT0+xgB6enh6AARkaoKAafLBTU7B8AAAAAAEAAAAAAgABwAArAAABFA4CBzEHDgMjIi4CLwEuAzU0PgIzMh4CFz4DMzIeAhUCAAcMEgugBgwMDAYGDAwMBqALEgwHFyg2HhAfGxkKChkbHxAeNigXAS0QHxsZCqAGCwkGBQkLBqAKGRsfEB42KBcHDBILCxIMBxcoNh4AAAAAAgAAAAACAAHAACsAWAAAATQuAiMiDgIHLgMjIg4CFRQeAhcxFx4DMzI+Aj8BPgM1DwEiFCIGMTAmIjQjJy4DNTQ+AjMyHgIfATc+AzMyHgIVFA4CBwIAFyg2HhAfGxkKChkbHxAeNigXBwwSC6AGDAwMBgYMDAwGoAsSDAdbogEBAQEBAaIGCgcEDRceEQkREA4GLy8GDhARCREeFw0EBwoGAS0eNigXBwwSCwsSDAcXKDYeEB8bGQqgBgsJBgUJCwagChkbHxA+ogEBAQGiBg4QEQkRHhcNBAcKBjQ0BgoHBA0XHhEJERAOBgABAAAAAAIAAcAAMQAAARQOAgcxBw4DIyIuAi8BLgM1ND4CMzIeAhcHFwc3Jzc+AzMyHgIVAgAHDBILoAYMDAwGBgwMDAagCxIMBxcoNh4KFRMSCC9wQLBwJwUJCgkFHjYoFwEtEB8bGQqgBgsJBgUJCwagChkbHxAeNigXAwUIBUtAoMBAOwECAQEXKDYeAAABAAAAAAIAAbcAKgAAEzQ3NjMyFxYXFhcWFzY3Njc2NzYzMhcWFRQPAQYjIi8BJicmJyYnJicmNQAkJUARExIQEAsMCgoMCxAQEhMRQCUkQbIGBwcGsgMFBQsKCQkGBwExPyMkBgYLCgkKCgoKCQoLBgYkIz8/QawFBawCBgUNDg4OFRQTAAAAAQAAAA0B2wHSACYAABM0PwI2FzYfAhYVFA8BFxQVFAcGByYvAQcGByYnJjU0PwEnJjUAEI9BBQkIBkCPEAdoGQMDBgUGgIEGBQYDAwEYaAcBIwsCFoEMAQEMgRYCCwYIZJABBQUFAwEBAkVFAgEBAwUFAwOQZAkFAAAAAAIAAAANAdsB0gAkAC4AABM0PwI2FzYfAhYVFA8BFxQVFAcmLwEHBgcmJyY1ND8BJyY1HwEHNxcnNy8BBwAQj0EFCQgGQI8QB2gZDAUGgIEGBQYDAwEYaAc/WBVsaxRXeDY2ASMLAhaBDAEBDIEWAgsGCGSQAQUNAQECRUUCAQEDBQUDA5BkCQURVXg4OHhVEW5uAAABACMAKQHdAXwAGgAANzQ/ATYXNh8BNzYXNh8BFhUUDwEGByYvASY1IwgmCAwLCFS8CAsMCCYICPUIDAsIjgjSCwkmCQEBCVS7CQEBCSYJCg0H9gcBAQePBwwAAAEAHwAfAXMBcwAsAAA3ND8BJyY1ND8BNjMyHwE3NjMyHwEWFRQPARcWFRQPAQYjIi8BBwYjIi8BJjUfCFRUCAgnCAwLCFRUCAwLCCcICFRUCAgnCAsMCFRUCAsMCCcIYgsIVFQIDAsIJwgIVFQICCcICwwIVFQICwwIJwgIVFQICCcIDAAAAAACAAAAJQFJAbcAHwArAAA3NTQ3NjsBNTQ3NjMyFxYdATMyFxYdARQHBiMhIicmNTczNTQnJiMiBwYdAQAICAsKJSY1NCYmCQsICAgIC/7tCwgIW5MWFR4fFRZApQsICDc0JiYmJjQ3CAgLpQsICAgIC8A3HhYVFRYeNwAAAQAAAAcBbgG3ACEAADcRNDc2NzYzITIXFhcWFREUBwYHBiMiLwEHBiMiJyYnJjUABgUKBgYBLAYGCgUGBgUKBQcOCn5+Cg4GBgoFBicBcAoICAMDAwMICAr+kAoICAQCCXl5CQIECAgKAAAAAwAAACUCAAFuABgAMQBKAAA3NDc2NzYzMhcWFxYVFAcGBwYjIicmJyY1MxYXFjMyNzY3JicWFRQHBiMiJyY1NDcGBzcUFxYzMjc2NTQ3NjMyNzY1NCcmIyIHBhUABihDREtLREMoBgYoQ0RLS0RDKAYlJjk5Q0M5OSYrQREmJTU1JSYRQSuEBAQGBgQEEREZBgQEBAQGJBkayQoKQSgoKChBCgoKCkEoJycoQQoKOiMjIyM6RCEeIjUmJSUmNSIeIUQlBgQEBAQGGBIRBAQGBgQEGhojAAAABQAAAAkCAAGJACwAOABRAGgAcAAANzQ3Njc2MzIXNzYzMhcWFxYXFhcWFxYVFDEGBwYPAQYjIicmNTQ3JicmJyY1MxYXNyYnJjU0NwYHNxQXFjMyNzY1NDc2MzI3NjU0JyYjIgcGFRc3Njc2NyYnNxYXFhcWFRQHBgcGBwYjPwEWFRQHBgcABitBQU0ZGhADBQEEBAUFBAUEBQEEHjw8Hg4DBQQiBQ0pIyIZBiUvSxYZDg4RQSuEBAQGBgQEEREZBgQEBAQGJBkaVxU9MzQiIDASGxkZEAYGCxQrODk/LlACFxYlyQsJQycnBRwEAgEDAwIDAwIBAwUCNmxsNhkFFAMFBBUTHh8nCQtKISgSHBsfIh4hRCUGBAQEBAYYEhEEBAYGBAQaGiPJJQUiIjYzISASGhkbCgoKChIXMRsbUZANCyghIA8AAAMAAAAAAbcB2wA5AEoAlAAANzU0NzY7ATY3Njc2NzY3Njc2MzIXFhcWFRQHMzIXFhUUBxYVFAcUFRQHFgcGKwEiJyYnJisBIicmNTcUFxYzMjc2NTQnJiMiBwYVFzMyFxYXFhcWFxYXFhcWOwEyNTQnNjc2NTQnNjU0JyYnNjc2NTQnJisBNDc2NTQnJiMGBwYHBgcGBwYHBgcGBwYHBgcGBwYrARUACwoQTgodEQ4GBAMFBgwLDxgTEwoKDjMdFhYOAgoRARkZKCUbGxsjIQZSEAoLJQUFCAcGBQUGBwgFBUkJBAUFBAQHBwMDBwcCPCUjNwIJBQUFDwMDBAkGBgsLDmUODgoJGwgDAwYFDAYQAQUGAwQGBgYFBgUGBgQJSbcPCwsGJhUPCBERExMMCgkJFBQhGxwWFR4ZFQoKFhMGBh0WKBcXBgcMDAoLDxIHBQYGBQcIBQYGBQgSAQEBAQICAQEDAgEULwgIBQoLCgsJDhQHCQkEAQ0NCg8LCxAdHREcDQ4IEBETEw0GFAEHBwUECAgFBQUFAgO3AAADAAD/2wG3AbcAPABNAJkAADc1NDc2OwEyNzY3NjsBMhcWBxUWFRQVFhUUBxYVFAcGKwEWFRQHBgcGIyInJicmJyYnJicmJyYnIyInJjU3FBcWMzI3NjU0JyYjIgcGFRczMhcWFxYXFhcWFxYXFhcWFxYXFhcWFzI3NjU0JyY1MzI3NjU0JyYjNjc2NTQnNjU0JyYnNjU0JyYrASIHIgcGBwYHBgcGIwYrARUACwoQUgYhJRsbHiAoGRkBEQoCDhYWHTMOCgoTExgPCwoFBgIBBAMFDhEdCk4QCgslBQUIBwYFBQYHCAUFSQkEBgYFBgUGBgYEAwYFARAGDAUGAwMIGwkKDg5lDgsLBgYJBAMDDwUFBQkCDg4ZJSU8AgcHAwMHBwQEBQUECbe3DwsKDAwHBhcWJwIWHQYGExYKChUZHhYVHRoiExQJCgsJDg4MDAwNBg4WJQcLCw+kBwUGBgUHCAUGBgUIpAMCBQYFBQcIBAUHBwITBwwTExERBw0OHBEdHRALCw8KDQ0FCQkHFA4JCwoLCgUICBgMCxUDAgEBAgMBAQG3AAAAAQAAAA0A7gHSABQAABM0PwI2FxEHBgcmJyY1ND8BJyY1ABCPQQUJgQYFBgMDARhoBwEjCwIWgQwB/oNFAgEBAwUFAwOQZAkFAAAAAAIAAAAAAgABtwAqAFkAABM0NzYzMhcWFxYXFhc2NzY3Njc2MzIXFhUUDwEGIyIvASYnJicmJyYnJjUzFB8BNzY1NCcmJyYnJicmIyIHBgcGBwYHBiMiJyYnJicmJyYjIgcGBwYHBgcGFQAkJUARExIQEAsMCgoMCxAQEhMRQCUkQbIGBwcGsgMFBQsKCQkGByU1pqY1BgYJCg4NDg0PDhIRDg8KCgcFCQkFBwoKDw4REg4PDQ4NDgoJBgYBMT8jJAYGCwoJCgoKCgkKCwYGJCM/P0GsBQWsAgYFDQ4ODhUUEzA1oJ82MBcSEgoLBgcCAgcHCwsKCQgHBwgJCgsLBwcCAgcGCwoSEhcAAAACAAAABwFuAbcAIQAoAAA3ETQ3Njc2MyEyFxYXFhURFAcGBwYjIi8BBwYjIicmJyY1PwEfAREhEQAGBQoGBgEsBgYKBQYGBQoFBw4Kfn4KDgYGCgUGJZIZef7cJwFwCggIAwMDAwgICv6QCggIBAIJeXkJAgQICAoIjRl0AWP+nQAAAAABAAAAJQHbAbcAMgAANzU0NzY7ATU0NzYzMhcWHQEUBwYrASInJj0BNCcmIyIHBh0BMzIXFh0BFAcGIyEiJyY1AAgIC8AmJjQ1JiUFBQgSCAUFFhUfHhUWHAsICAgIC/7tCwgIQKULCAg3NSUmJiU1SQgFBgYFCEkeFhUVFh43CAgLpQsICAgICwAAAAIAAQANAdsB0gAiAC0AABM2PwI2MzIfAhYXFg8BFxYHBiMiLwEHBiMiJyY/AScmNx8CLwE/AS8CEwEDDJBABggJBUGODgIDCmcYAgQCCAMIf4IFBgYEAgEZaQgC7hBbEgINSnkILgEBJggCFYILC4IVAggICWWPCgUFA0REAwUFCo9lCQipCTBmEw1HEhFc/u0AAAADAAAAAAHJAbcAFAAlAHkAADc1NDc2OwEyFxYdARQHBisBIicmNTcUFxYzMjc2NTQnJiMiBwYVFzU0NzYzNjc2NzY3Njc2NzY3Njc2NzY3NjMyFxYXFhcWFxYXFhUUFRQHBgcGBxQHBgcGBzMyFxYVFAcWFRYHFgcGBxYHBgcjIicmJyYnJiciJyY1AAUGB1MHBQYGBQdTBwYFJQUFCAcGBQUGBwgFBWQFBQgGDw8OFAkFBAQBAQMCAQIEBAYFBw4KCgcHBQQCAwEBAgMDAgYCAgIBAU8XEBAQBQEOBQUECwMREiYlExYXDAwWJAoHBQY3twcGBQUGB7cIBQUFBQgkBwYFBQYHCAUGBgUIJLcHBQYBEBATGQkFCQgGBQwLBgcICQUGAwMFBAcHBgYICQQEBwsLCwYGCgIDBAMCBBEQFhkSDAoVEhAREAsgFBUBBAUEBAcMAQUFCAAAAAADAAD/2wHJAZIAFAAlAHkAADcUFxYXNxY3Nj0BNCcmBycGBwYdATc0NzY3FhcWFRQHBicGJyY1FzU0NzY3Fjc2NzY3NjcXNhcWBxYXFgcWBxQHFhUUBwYHJxYXFhcWFRYXFhcWFRQVFAcGBwYHBgcGBwYnBicmJyYnJicmJyYnJicmJyYnJiciJyY1AAUGB1MHBQYGBQdTBwYFJQUFCAcGBQUGBwgFBWQGBQcKJBYMDBcWEyUmEhEDCwQFBQ4BBRAQEBdPAQECAgIGAgMDAgEBAwIEBQcHCgoOBwUGBAQCAQIDAQEEBAUJFA4PDwYIBQWlBwYFAQEBBwQJtQkEBwEBAQUGB7eTBwYEAQEEBgcJBAYBAQYECZS4BwYEAgENBwUCBgMBAQEXEyEJEhAREBcIDhAaFhEPAQEFAgQCBQELBQcKDAkIBAUHCgUGBwgDBgIEAQEHBQkIBwUMCwcECgcGCRoREQ8CBgQIAAAAAQAAAAEAAJth57dfDzz1AAsCAAAAAADP/GODAAAAAM/8Y4MAAP/bAgAB2wAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAACAAABAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAEAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAdwAAAHcAAACAAAjAZMAHwFJAAABbgAAAgAAAAIAAAACAAAAAgAAAAEAAAACAAAAAW4AAAHcAAAB3AABAdwAAAHcAAAAAAAAAAoAFAAeAEoAcACKAMoBQAGIAcwCCgJUAoICxgMEAzoDpgRKBRgF7AYSBpgG2gcgB2oIGAjOAAAAAQAAABwAmgAFAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAwAAAABAAAAAAACAA4AQAABAAAAAAADAAwAIgABAAAAAAAEAAwATgABAAAAAAAFABYADAABAAAAAAAGAAYALgABAAAAAAAKADQAWgADAAEECQABAAwAAAADAAEECQACAA4AQAADAAEECQADAAwAIgADAAEECQAEAAwATgADAAEECQAFABYADAADAAEECQAGAAwANAADAAEECQAKADQAWgByAGEAdABpAG4AZwBWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBhAHQAaQBuAGdyYXRpbmcAcgBhAHQAaQBuAGcAUgBlAGcAdQBsAGEAcgByAGEAdABpAG4AZwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AABcUAAoAAAAAFswAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAEuEAABLho6TvIE9TLzIAABPYAAAAYAAAAGAIIwgbY21hcAAAFDgAAACkAAAApKPambxnYXNwAAAU3AAAAAgAAAAIAAAAEGhlYWQAABTkAAAANgAAADYBGAe5aGhlYQAAFRwAAAAkAAAAJAPiAf1obXR4AAAVQAAAAHAAAABwLOAAQ21heHAAABWwAAAABgAAAAYAHFAAbmFtZQAAFbgAAAE8AAABPPC1n05wb3N0AAAW9AAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLZviU+HQFHQAAAP0PHQAAAQIRHQAAAAkdAAAS2BIAHQEBBw0PERQZHiMoLTI3PEFGS1BVWl9kaW5zeH2Ch4xyYXRpbmdyYXRpbmd1MHUxdTIwdUU2MDB1RTYwMXVFNjAydUU2MDN1RTYwNHVFNjA1dUYwMDR1RjAwNXVGMDA2dUYwMEN1RjAwRHVGMDIzdUYwMkV1RjA2RXVGMDcwdUYwODd1RjA4OHVGMDg5dUYwOEF1RjA5N3VGMDlDdUYxMjN1RjE2NHVGMTY1AAACAYkAGgAcAgABAAQABwAKAA0AVgCWAL0BAgGMAeQCbwLwA4cD5QR0BQMFdgZgB8MJkQtxC7oM2Q1jDggOmRAYEZr8lA78lA78lA77lA74lPetFftFpTz3NDz7NPtFcfcU+xBt+0T3Mt73Mjht90T3FPcQBfuU+0YV+wRRofcQMOP3EZ3D9wXD+wX3EXkwM6H7EPsExQUO+JT3rRX7RaU89zQ8+zT7RXH3FPsQbftE9zLe9zI4bfdE9xT3EAX7lPtGFYuLi/exw/sF9xF5MDOh+xD7BMUFDviU960V+0WlPPc0PPs0+0Vx9xT7EG37RPcy3vcyOG33RPcU9xAFDviU98EVi2B4ZG5wCIuL+zT7NAV7e3t7e4t7i3ube5sI+zT3NAVupniyi7aL3M3N3Iu2i7J4pm6mqLKetovci81JizoIDviU98EVi9xJzTqLYItkeHBucKhknmCLOotJSYs6i2CeZKhwCIuL9zT7NAWbe5t7m4ubi5ubm5sI9zT3NAWopp6yi7YIME0V+zb7NgWKioqKiouKi4qMiowI+zb3NgV6m4Ghi6OLubCwuYuji6GBm3oIule6vwWbnKGVo4u5i7Bmi12Lc4F1ensIDviU98EVi2B4ZG5wCIuL+zT7NAV7e3t7e4t7i3ube5sI+zT3NAVupniyi7aL3M3N3Iuni6WDoX4IXED3BEtL+zT3RPdU+wTLssYFl46YjZiL3IvNSYs6CA6L98UVi7WXrKOio6Otl7aLlouXiZiHl4eWhZaEloSUhZKFk4SShZKEkpKSkZOSkpGUkZaSCJaSlpGXj5iPl42Wi7aLrX+jc6N0l2qLYYthdWBgYAj7RvtABYeIh4mGi4aLh42Hjgj7RvdABYmNiY2Hj4iOhpGDlISUhZWFlIWVhpaHmYaYiZiLmAgOZ4v3txWLkpCPlo0I9yOgzPcWBY6SkI+Ri5CLkIePhAjL+xb3I3YFlomQh4uEi4aJh4aGCCMmpPsjBYuKi4mLiIuHioiJiImIiIqHi4iLh4yHjQj7FM/7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOZ4v3txWLkpCPlo0I9yOgzPcWBY6SkI+Ri5CLkIePhAjL+xb3I3YFlomQh4uEi4aJh4aGCCMmpPsjBYuKi4mLiIuCh4aDi4iLh4yHjQj7FM/7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwjKeRXjN3b7DfcAxPZSd/cN4t/7DJ1V9wFV+wEFDq73ZhWLk42RkZEIsbIFkZCRjpOLkouSiJCGCN8291D3UAWQkJKOkouTi5GIkYYIsWQFkYaNhIuEi4OJhYWFCPuJ+4kFhYWFiYOLhIuEjYaRCPsi9yIFhZCJkouSCA77AartFYuSjpKQkAjf3zffBYaQiJKLk4uSjpKQkAiysgWRkJGOk4uSi5KIkIYI3zff3wWQkJKOk4uSi5KIkIYIsmQFkIaOhIuEi4OIhIaGCDc33zcFkIaOhIuEi4OIhYaFCGRkBYaGhIiEi4OLhI6GkAg33zc3BYaGhIiEi4OLhY6FkAhksgWGkYiRi5MIDvtLi8sVi/c5BYuSjpKQkJCQko6SiwiVi4vCBYuul6mkpKSkqpiui66LqX6kcqRymG2LaAiLVJSLBZKLkoiQhpCGjoSLhAiL+zkFi4OIhYaGhoWEiYSLCPuniwWEi4SNhpGGkIiRi5MI5vdUFfcni4vCBYufhJx8mn2ZepJ3i3aLeoR9fX18g3qLdwiLVAUO+yaLshWL+AQFi5GNkY+RjpCQj5KNj42PjI+LCPfAiwWPi4+Kj4mRiZCHj4aPhY2Fi4UIi/wEBYuEiYWHhoeGhoeFiIiKhoqHi4GLhI6EkQj7EvcN+xL7DQWEhYOIgouHi4eLh42EjoaPiJCHkImRi5IIDov3XRWLko2Rj5Kltq+vuKW4pbuZvYu9i7t9uHG4ca9npWCPhI2Fi4SLhYmEh4RxYGdoXnAIXnFbflmLWYtbmF6lXqZnrnG2h5KJkouRCLCLFaRkq2yxdLF0tH+4i7iLtJexorGiq6qksm64Z61goZZ3kXaLdItnfm1ycnJybX9oiwhoi22XcqRypH6pi6+LopGglp9gdWdpbl4I9xiwFYuHjIiOiI6IjoqPi4+LjoyOjo2OjY6Lj4ubkJmXl5eWmZGbi4+LjoyOjo2OjY6LjwiLj4mOiY6IjYiNh4tzi3eCenp6eoJ3i3MIDov3XRWLko2Sj5GouK+utqW3pbqYvouci5yJnIgIm6cFjY6NjI+LjIuNi42JjYqOio+JjomOiY6KjomOiY6JjoqNioyKjomMiYuHi4qLiouLCHdnbVVjQ2NDbVV3Zwh9cgWJiIiJiIuJi36SdJiIjYmOi46LjY+UlJlvl3KcdJ90oHeie6WHkYmSi5IIsIsVqlq0Z711CKGzBXqXfpqCnoKdhp6LoIuikaCWn2B1Z2luXgj3GLAVi4eMiI6IjoiOio+Lj4uOjI6OjY6NjouPi5uQmZeXl5aZkZuLj4uOjI6OjY6NjouPCIuPiY6JjoiNiI2Hi3OLd4J6enp6gneLcwji+10VoLAFtI+wmK2hrqKnqKKvdq1wp2uhCJ2rBZ1/nHycepx6mHqWeY+EjYWLhIuEiYWHhIR/gH1+fG9qaXJmeWV5Y4Jhiwi53BXb9yQFjIKMg4uEi3CDc3x1fHV3fHOBCA6L1BWL90sFi5WPlJKSkpKTj5aLCNmLBZKPmJqepJaZlZeVlY+Qj5ONl42WjpeOmI+YkZWTk5OSk46Vi5uLmYiYhZiFlIGSfgiSfo55i3WLeYd5gXgIvosFn4uchJl8mn2Seot3i3qGfIJ9jYSLhYuEi3yIfoR+i4eLh4uHi3eGen99i3CDdnt8CHt8dYNwiwhmiwV5i3mNeY95kHeRc5N1k36Ph4sIOYsFgIuDjoSShJKHlIuVCLCdFYuGjIePiI+Hj4mQi5CLj42Pj46OjY+LkIuQiZCIjoePh42Gi4aLh4mHh4eIioaLhgjUeRWUiwWNi46Lj4qOi4+KjYqOi4+Kj4mQio6KjYqNio+Kj4mQio6KjIqzfquEpIsIrosFr4uemouri5CKkYqQkY6QkI6SjpKNkouSi5KJkoiRlZWQlouYi5CKkImRiZGJj4iOCJGMkI+PlI+UjZKLkouViJODk4SSgo+CiwgmiwWLlpCalJ6UnpCbi5aLnoiYhJSFlH+QeYuGhoeDiYCJf4h/h3+IfoWBg4KHh4SCgH4Ii4qIiYiGh4aIh4mIiIiIh4eGh4aHh4eHiIiHiIeHiIiHiIeKh4mIioiLCIKLi/tLBQ6L90sVi/dLBYuVj5OSk5KSk46WiwjdiwWPi5iPoZOkk6CRnZCdj56Nn4sIq4sFpougg5x8m3yTd4txCIuJBZd8kHuLd4uHi4eLh5J+jn6LfIuEi4SJhZR9kHyLeot3hHp8fH19eoR3iwhYiwWVeI95i3mLdIh6hH6EfoKBfoV+hX2He4uBi4OPg5KFkYaTh5SHlYiTipOKk4qTiJMIiZSIkYiPgZSBl4CaeKR+moSPCD2LBYCLg4+EkoSSh5SLlQiw9zgVi4aMh4+Ij4ePiZCLkIuPjY+Pjo6Nj4uQi5CJkIiOh4+HjYaLhouHiYeHh4iKhouGCNT7OBWUiwWOi46Kj4mPio+IjoiPh4+IjoePiI+Hj4aPho6HjoiNiI6Hj4aOho6Ii4qWfpKDj4YIk4ORgY5+j36OgI1/jYCPg5CGnYuXj5GUkpSOmYuei5aGmoKfgp6GmouWCPCLBZSLlI+SkpOTjpOLlYuSiZKHlIeUho+Fi46PjY+NkY2RjJCLkIuYhpaBlY6RjZKLkgiLkomSiJKIkoaQhY6MkIyRi5CLm4aXgpOBkn6Pe4sIZosFcotrhGN9iouIioaJh4qHiomKiYqIioaKh4mHioiKiYuHioiLh4qIi4mLCIKLi/tLBQ77lIv3txWLkpCPlo0I9yOgzPcWBY6SkI+RiwiL/BL7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOi/fFFYu1l6yjoqOjrZe2i5aLl4mYh5eHloWWhJaElIWShZOEkoWShJKSkpGTkpKRlJGWkgiWkpaRl4+Yj5eNlou2i61/o3OjdJdqi2GLYXVgYGAI+0b7QAWHiIeJhouGi4eNh44I+0b3QAWJjYmNh4+IjoaRg5SElIWVhZSFlYaWh5mGmImYi5gIsIsVi2ucaa9oCPc6+zT3OvczBa+vnK2Lq4ubiZiHl4eXhpSFkoSSg5GCj4KQgo2CjYONgYuBi4KLgIl/hoCGgIWChAiBg4OFhISEhYaFhoaIhoaJhYuFi4aNiJCGkIaRhJGEkoORgZOCkoCRgJB/kICNgosIgYuBi4OJgomCiYKGgoeDhYSEhYSGgod/h3+Jfot7CA77JouyFYv4BAWLkY2Rj5GOkJCPko2PjY+Mj4sI98CLBY+Lj4qPiZGJkIePho+FjYWLhQiL/AQFi4SJhYeGh4aGh4WIiIqGioeLgYuEjoSRCPsS9w37EvsNBYSFg4iCi4eLh4uHjYSOho+IkIeQiZGLkgiwkxX3JvchpHL3DfsIi/f3+7iLi/v3BQ5ni8sVi/c5BYuSjpKQkJCQko6Siwj3VIuLwgWLrpippKSkpKmYrouvi6l+pHKkcpdti2gIi0IFi4aKhoeIh4eHiYaLCHmLBYaLh42Hj4eOipCLkAiL1AWLn4OcfZp9mXqSdot3i3qEfX18fIR6i3cIi1SniwWSi5KIkIaQho6Ei4QIi/s5BYuDiIWGhoaFhImEiwj7p4sFhIuEjYaRhpCIkYuTCA5njPe6FYyQkI6UjQj3I6DM9xYFj5KPj5GLkIuQh4+ECMv7FvcjdgWUiZCIjYaNhoiFhYUIIyak+yMFjIWKhomHiYiIiYaLiIuHjIeNCPsUz/sVRwWHiYeKiIuHi4eNiY6Jj4uQjJEIo/cjI/AFhZGJkY2QCPeB+z0VnILlW3rxiJ6ZmNTS+wydgpxe54v7pwUOZ4vCFYv3SwWLkI2Pjo+Pjo+NkIsI3osFkIuPiY6Ij4eNh4uGCIv7SwWLhomHh4eIh4eKhosIOIsFhouHjIePiI+Jj4uQCLCvFYuGjIePh46IkImQi5CLj42Pjo6PjY+LkIuQiZCIjoePh42Gi4aLhomIh4eIioaLhgjvZxWL90sFi5CNj46Oj4+PjZCLj4ySkJWWlZaVl5SXmJuVl5GRjo6OkI6RjZCNkIyPjI6MkY2TCIySjJGMj4yPjZCOkY6RjpCPjo6Pj42Qi5SLk4qSiZKJkYiPiJCIjoiPho6GjYeMhwiNh4yGjIaMhYuHi4iLiIuHi4eLg4uEiYSJhImFiYeJh4mFh4WLioqJiomJiIqJiokIi4qKiIqJCNqLBZqLmIWWgJaAkH+LfIt6hn2Af46DjYSLhIt9h36Cf4+Bi3+HgImAhYKEhI12hnmAfgh/fXiDcosIZosFfot+jHyOfI5/joOOg41/j32Qc5N8j4SMhouHjYiOh4+Jj4uQCA5ni/c5FYuGjYaOiI+Hj4mQiwjeiwWQi4+Njo+Pjo2Qi5AIi/dKBYuQiZCHjoiPh42Giwg4iwWGi4eJh4eIiImGi4YIi/tKBbD3JhWLkIyPj4+OjpCNkIuQi4+Jj4iOh42Hi4aLhomHiIeHh4eKhouGi4aMiI+Hj4qPi5AI7/snFYv3SwWLkI2Qj46Oj4+NkIuSi5qPo5OZkJePk46TjZeOmo6ajpiMmIsIsIsFpIueg5d9ln6Qeol1koSRgo2Aj4CLgIeAlH+Pfot9i4WJhIiCloCQfIt7i3yFfoGACICAfoZ8iwg8iwWMiIyJi4mMiYyJjYmMiIyKi4mPhI2GjYeNh42GjYOMhIyEi4SLhouHi4iLiYuGioYIioWKhomHioeJh4iGh4eIh4aIh4iFiISJhImDioKLhouHjYiPh4+Ij4iRiJGJkIqPCIqPipGKkomTipGKj4qOiZCJkYiQiJCIjoWSgZZ+nIKXgZaBloGWhJGHi4aLh42HjwiIjomQi48IDviUFPiUFYsMCgAAAAADAgABkAAFAAABTAFmAAAARwFMAWYAAAD1ABkAhAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAPFlAeD/4P/gAeAAIAAAAAEAAAAAAAAAAAAAACAAAAAAAAIAAAADAAAAFAADAAEAAAAUAAQAkAAAACAAIAAEAAAAAQAg5gXwBvAN8CPwLvBu8HDwivCX8JzxI/Fl//3//wAAAAAAIOYA8ATwDPAj8C7wbvBw8Ifwl/Cc8SPxZP/9//8AAf/jGgQQBhABD+wP4g+jD6IPjA+AD3wO9g62AAMAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAAJrVlLJfDzz1AAsCAAAAAADP/GODAAAAAM/8Y4MAAP/bAgAB2wAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAACAAABAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAEAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAdwAAAHcAAACAAAjAZMAHwFJAAABbgAAAgAAAAIAAAACAAAAAgAAAAEAAAACAAAAAW4AAAHcAAAB3AABAdwAAAHcAAAAAFAAABwAAAAAAA4ArgABAAAAAAABAAwAAAABAAAAAAACAA4AQAABAAAAAAADAAwAIgABAAAAAAAEAAwATgABAAAAAAAFABYADAABAAAAAAAGAAYALgABAAAAAAAKADQAWgADAAEECQABAAwAAAADAAEECQACAA4AQAADAAEECQADAAwAIgADAAEECQAEAAwATgADAAEECQAFABYADAADAAEECQAGAAwANAADAAEECQAKADQAWgByAGEAdABpAG4AZwBWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBhAHQAaQBuAGdyYXRpbmcAcgBhAHQAaQBuAGcAUgBlAGcAdQBsAGEAcgByAGEAdABpAG4AZwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format('woff');font-weight:400;font-style:normal}.ui.rating .icon:before{content:'\f006'}.ui.rating .active.icon:before,.ui.star.rating .active.icon:before,.ui.star.rating .icon:before{content:'\f005'}.ui.star.rating .partial.icon:before{content:'\f006'}.ui.star.rating .partial.icon{content:'\f005'}.ui.heart.rating .active.icon:before,.ui.heart.rating .icon:before{content:'\f004'}.ui.search{position:relative}.ui.search>.prompt{margin:0;outline:0;-webkit-appearance:none;-webkit-tap-highlight-color:rgba(255,255,255,0);text-shadow:none;font-style:normal;font-weight:400;line-height:1.2142em;padding:.67861429em 1em;font-size:1em;background:#fff;border:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87);box-shadow:0 0 0 0 transparent inset;-webkit-transition:background-color .1s ease,color .1s ease,box-shadow .1s ease,border-color .1s ease;transition:background-color .1s ease,color .1s ease,box-shadow .1s ease,border-color .1s ease}.ui.search .prompt{border-radius:500rem}.ui.search .prompt~.search.icon{cursor:pointer}.ui.search>.results{display:none;position:absolute;top:100%;left:0;-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top;background:#fff;margin-top:.5em;width:18em;border-radius:.28571429rem;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08);border:1px solid #d4d4d5;z-index:998}.ui.search>.results>:first-child{border-radius:.28571429rem .28571429rem 0 0}.ui.search>.results>:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui.search>.results .result{cursor:pointer;display:block;overflow:hidden;font-size:1em;padding:.85714286em 1.14285714em;color:rgba(0,0,0,.87);line-height:1.33;border-bottom:1px solid rgba(34,36,38,.1)}.ui.search>.results .result:last-child{border-bottom:none!important}.ui.search>.results .result .image{float:right;overflow:hidden;background:0 0;width:5em;height:3em;border-radius:.25em}.ui.search>.results .result .image img{display:block;width:auto;height:100%}.ui.search>.results .result .image+.content{margin:0 6em 0 0}.ui.search>.results .result .title{margin:-.14285em 0 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;font-size:1em;color:rgba(0,0,0,.85)}.ui.search>.results .result .description{margin-top:0;font-size:.92857143em;color:rgba(0,0,0,.4)}.ui.search>.results .result .price{float:right;color:#21ba45}.ui.search>.results>.message{padding:1em}.ui.search>.results>.message .header{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1rem;font-weight:700;color:rgba(0,0,0,.87)}.ui.search>.results>.message .description{margin-top:.25rem;font-size:1em;color:rgba(0,0,0,.87)}.ui.search>.results>.action{display:block;border-top:none;background:#f3f4f5;padding:.92857143em 1em;color:rgba(0,0,0,.87);font-weight:700;text-align:center}.ui.search>.prompt:focus{border-color:rgba(34,36,38,.35);background:#fff;color:rgba(0,0,0,.95)}.ui.loading.search .input>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.search .input>i.icon:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.category.search>.results .category .result:hover,.ui.search>.results .result:hover{background:#f9fafb}.ui.search .action:hover{background:#e0e0e0}.ui.category.search>.results .category.active{background:#f3f4f5}.ui.category.search>.results .category.active>.name{color:rgba(0,0,0,.87)}.ui.category.search>.results .category .result.active,.ui.search>.results .result.active{position:relative;border-left-color:rgba(34,36,38,.1);background:#f3f4f5;box-shadow:none}.ui.search>.results .result.active .description,.ui.search>.results .result.active .title{color:rgba(0,0,0,.85)}.ui.category.search .results{width:28em}.ui.category.search>.results .category{background:#f3f4f5;box-shadow:none;border-bottom:1px solid rgba(34,36,38,.1);-webkit-transition:background .1s ease,border-color .1s ease;transition:background .1s ease,border-color .1s ease}.ui.category.search>.results .category:last-child{border-bottom:none}.ui.category.search>.results .category:first-child .name+.result{border-radius:0 .28571429rem 0 0}.ui.category.search>.results .category .result{background:#fff;margin-left:100px;border-left:1px solid rgba(34,36,38,.15);border-bottom:1px solid rgba(34,36,38,.1);-webkit-transition:background .1s ease,border-color .1s ease;transition:background .1s ease,border-color .1s ease;padding:.85714286em 1.14285714em}.ui.category.search>.results .category:last-child .result:last-child{border-radius:0 0 .28571429rem;border-bottom:none}.ui.category.search>.results .category>.name{width:100px;background:0 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1em;float:1em;float:left;padding:.4em 1em;font-weight:700;color:rgba(0,0,0,.4)}.ui[class*="left aligned"].search>.results{right:auto;left:0}.ui[class*="right aligned"].search>.results{right:0;left:auto}.ui.fluid.search .results{width:100%}.ui.mini.search{font-size:.71428571em}.ui.small.search{font-size:.92857143em}.ui.search{font-size:1em}.ui.large.search{font-size:1.14285714em}.ui.big.search{font-size:1.28571429em}.ui.huge.search{font-size:1.42857143em}.ui.massive.search{font-size:1.71428571em}.ui.shape{position:relative;vertical-align:top;display:inline-block;-webkit-perspective:2000px;perspective:2000px;-webkit-transition:-webkit-transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out}.ui.shape .sides{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.ui.shape .side{opacity:1;width:100%;margin:0!important;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none}.ui.shape .side *{-webkit-backface-visibility:visible!important;backface-visibility:visible!important}.ui.cube.shape .side{min-width:15em;height:15em;padding:2em;background-color:#e6e6e6;color:rgba(0,0,0,.87);box-shadow:0 0 2px rgba(0,0,0,.3)}.ui.cube.shape .side>.content{width:100%;height:100%;display:table;text-align:center;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.cube.shape .side>.content>div{display:table-cell;vertical-align:middle;font-size:2em}.ui.text.shape.animating .sides{position:static}.ui.text.shape .side{white-space:nowrap}.ui.text.shape .side>*{white-space:normal}.ui.loading.shape{position:absolute;top:-9999px;left:-9999px}.ui.shape .animating.side{position:absolute;top:0;left:0;display:block;z-index:100}.ui.shape .hidden.side{opacity:.6}.ui.shape.animating .sides{position:absolute;-webkit-transition:-webkit-transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out}.ui.shape.animating .side{-webkit-transition:opacity .6s ease-in-out;transition:opacity .6s ease-in-out}.ui.shape .active.side{display:block}.ui.sidebar{position:fixed;top:0;left:0;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:none;transition:none;will-change:transform;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);visibility:hidden;-webkit-overflow-scrolling:touch;height:100%!important;max-height:100%;border-radius:0!important;margin:0!important;overflow-y:auto!important;z-index:102}.ui.sidebar>*{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:rotateZ(0);transform:rotateZ(0)}.ui.left.sidebar{right:auto;left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.sidebar{right:0!important;left:auto!important;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.bottom.sidebar,.ui.top.sidebar{width:100%!important;height:auto!important}.ui.top.sidebar{top:0!important;bottom:auto!important;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.sidebar{top:auto!important;bottom:0!important;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.pushable{height:100%;overflow-x:hidden;padding:0!important}body.pushable{background:#545454!important}.pushable:not(body){-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.pushable:not(body)>.fixed,.pushable:not(body)>.pusher:after,.pushable:not(body)>.ui.sidebar{position:absolute}.pushable>.fixed{position:fixed;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease;will-change:transform;z-index:101}body.pushable>.pusher{background:#fff}.pushable>.pusher{position:relative;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;min-height:100%;-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease;z-index:2;background:inherit}.pushable>.pusher:after{position:fixed;top:0;right:0;content:'';background-color:rgba(0,0,0,.4);overflow:hidden;opacity:0;-webkit-transition:opacity 500ms;transition:opacity 500ms;will-change:opacity;z-index:1000}.ui.sidebar.menu .item{border-radius:0!important}.pushable>.pusher.dimmed:after{width:100%!important;height:100%!important;opacity:1!important}.ui.animating.sidebar{visibility:visible}.ui.visible.sidebar{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.bottom.visible.sidebar,.ui.left.visible.sidebar,.ui.right.visible.sidebar,.ui.top.visible.sidebar{box-shadow:0 0 20px rgba(34,36,38,.15)}.ui.visible.left.sidebar~.fixed,.ui.visible.left.sidebar~.pusher{-webkit-transform:translate3d(260px,0,0);transform:translate3d(260px,0,0)}.ui.visible.right.sidebar~.fixed,.ui.visible.right.sidebar~.pusher{-webkit-transform:translate3d(-260px,0,0);transform:translate3d(-260px,0,0)}.ui.visible.top.sidebar~.fixed,.ui.visible.top.sidebar~.pusher{-webkit-transform:translate3d(0,36px,0);transform:translate3d(0,36px,0)}.ui.visible.bottom.sidebar~.fixed,.ui.visible.bottom.sidebar~.pusher{-webkit-transform:translate3d(0,-36px,0);transform:translate3d(0,-36px,0)}.ui.visible.left.sidebar~.ui.visible.right.sidebar~.fixed,.ui.visible.left.sidebar~.ui.visible.right.sidebar~.pusher,.ui.visible.right.sidebar~.ui.visible.left.sidebar~.fixed,.ui.visible.right.sidebar~.ui.visible.left.sidebar~.pusher{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}html.ios{overflow-x:hidden;-webkit-overflow-scrolling:touch}html.ios,html.ios body{height:initial!important}.ui[class*="very thin"].left.sidebar,.ui[class*="very thin"].right.sidebar{width:60px}.ui.thin.left.sidebar,.ui.thin.right.sidebar{width:150px}.ui.left.sidebar,.ui.right.sidebar{width:260px}.ui.wide.left.sidebar,.ui.wide.right.sidebar{width:350px}.ui[class*="very wide"].left.sidebar,.ui[class*="very wide"].right.sidebar{width:475px}.ui.visible[class*="very thin"].left.sidebar~.fixed,.ui.visible[class*="very thin"].left.sidebar~.pusher{-webkit-transform:translate3d(60px,0,0);transform:translate3d(60px,0,0)}.ui.visible.thin.left.sidebar~.fixed,.ui.visible.thin.left.sidebar~.pusher{-webkit-transform:translate3d(150px,0,0);transform:translate3d(150px,0,0)}.ui.visible.wide.left.sidebar~.fixed,.ui.visible.wide.left.sidebar~.pusher{-webkit-transform:translate3d(350px,0,0);transform:translate3d(350px,0,0)}.ui.visible[class*="very wide"].left.sidebar~.fixed,.ui.visible[class*="very wide"].left.sidebar~.pusher{-webkit-transform:translate3d(475px,0,0);transform:translate3d(475px,0,0)}.ui.visible[class*="very thin"].right.sidebar~.fixed,.ui.visible[class*="very thin"].right.sidebar~.pusher{-webkit-transform:translate3d(-60px,0,0);transform:translate3d(-60px,0,0)}.ui.visible.thin.right.sidebar~.fixed,.ui.visible.thin.right.sidebar~.pusher{-webkit-transform:translate3d(-150px,0,0);transform:translate3d(-150px,0,0)}.ui.visible.wide.right.sidebar~.fixed,.ui.visible.wide.right.sidebar~.pusher{-webkit-transform:translate3d(-350px,0,0);transform:translate3d(-350px,0,0)}.ui.visible[class*="very wide"].right.sidebar~.fixed,.ui.visible[class*="very wide"].right.sidebar~.pusher{-webkit-transform:translate3d(-475px,0,0);transform:translate3d(-475px,0,0)}.ui.overlay.sidebar{z-index:102}.ui.left.overlay.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.overlay.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.overlay.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.overlay.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.animating.ui.overlay.sidebar,.ui.visible.overlay.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.visible.bottom.overlay.sidebar,.ui.visible.left.overlay.sidebar,.ui.visible.right.overlay.sidebar,.ui.visible.top.overlay.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.visible.overlay.sidebar~.fixed,.ui.visible.overlay.sidebar~.pusher{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.ui.push.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease;z-index:102}.ui.left.push.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.push.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.push.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.push.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.ui.visible.push.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.uncover.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:1}.ui.visible.uncover.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.slide.along.sidebar{z-index:1}.ui.left.slide.along.sidebar{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.ui.right.slide.along.sidebar{-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0)}.ui.top.slide.along.sidebar{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.ui.bottom.slide.along.sidebar{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.ui.animating.slide.along.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.visible.slide.along.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.slide.out.sidebar{z-index:1}.ui.left.slide.out.sidebar{-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0)}.ui.right.slide.out.sidebar{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.ui.top.slide.out.sidebar{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.ui.bottom.slide.out.sidebar{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.ui.animating.slide.out.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.visible.slide.out.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.scale.down.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease;z-index:102}.ui.left.scale.down.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.scale.down.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.scale.down.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.scale.down.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.ui.scale.down.left.sidebar~.pusher{-webkit-transform-origin:75% 50%;-ms-transform-origin:75% 50%;transform-origin:75% 50%}.ui.scale.down.right.sidebar~.pusher{-webkit-transform-origin:25% 50%;-ms-transform-origin:25% 50%;transform-origin:25% 50%}.ui.scale.down.top.sidebar~.pusher{-webkit-transform-origin:50% 75%;-ms-transform-origin:50% 75%;transform-origin:50% 75%}.ui.scale.down.bottom.sidebar~.pusher{-webkit-transform-origin:50% 25%;-ms-transform-origin:50% 25%;transform-origin:50% 25%}.ui.animating.scale.down>.visible.ui.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.animating.scale.down.sidebar~.pusher,.ui.visible.scale.down.sidebar~.pusher{display:block!important;width:100%;height:100%;overflow:hidden!important}.ui.visible.scale.down.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.visible.scale.down.sidebar~.pusher{-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.ui.sticky{position:static;-webkit-transition:none;transition:none;z-index:800}.ui.sticky.bound{position:absolute;left:auto;right:auto}.ui.sticky.fixed{position:fixed;left:auto;right:auto}.ui.sticky.bound.top,.ui.sticky.fixed.top{top:0;bottom:auto}.ui.sticky.bound.bottom,.ui.sticky.fixed.bottom{top:auto;bottom:0}.ui.native.sticky{position:-webkit-sticky;position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky}.ui.tab{display:none}.ui.tab.active,.ui.tab.open{display:block}.ui.tab.loading{position:relative;overflow:hidden;display:block;min-height:250px}.ui.tab.loading *{position:relative!important;left:-10000px!important}.ui.tab.loading.segment:before,.ui.tab.loading:before{position:absolute;content:'';top:100px;left:50%;margin:-1.25em 0 0 -1.25em;width:2.5em;height:2.5em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.tab.loading.segment:after,.ui.tab.loading:after{position:absolute;content:'';top:100px;left:50%;margin:-1.25em 0 0 -1.25em;width:2.5em;height:2.5em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.transition{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:300ms;animation-duration:300ms;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animating.transition{-webkit-backface-visibility:hidden;backface-visibility:hidden;visibility:visible!important}.loading.transition{position:absolute;top:-99999px;left:-99999px}.hidden.transition{display:none;visibility:hidden}.visible.transition{display:block!important;visibility:visible!important}.disabled.transition{-webkit-animation-play-state:paused;animation-play-state:paused}.looping.transition{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.transition.browse{-webkit-animation-duration:500ms;animation-duration:500ms}.transition.browse.in{-webkit-animation-name:browseIn;animation-name:browseIn}.transition.browse.left.out,.transition.browse.out{-webkit-animation-name:browseOutLeft;animation-name:browseOutLeft}.transition.browse.right.out{-webkit-animation-name:browseOutRight;animation-name:browseOutRight}@-webkit-keyframes browseIn{0%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1}10%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1;opacity:.7}80%{-webkit-transform:scale(1.05) translateZ(0);transform:scale(1.05) translateZ(0);opacity:1;z-index:999}100%{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0);z-index:999}}@keyframes browseIn{0%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1}10%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1;opacity:.7}80%{-webkit-transform:scale(1.05) translateZ(0);transform:scale(1.05) translateZ(0);opacity:1;z-index:999}100%{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0);z-index:999}}@-webkit-keyframes browseOutLeft{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:-1;-webkit-transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:-1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}@keyframes browseOutLeft{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:-1;-webkit-transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:-1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}@-webkit-keyframes browseOutRight{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:1;-webkit-transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}@keyframes browseOutRight{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:1;-webkit-transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}.drop.transition{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-duration:400ms;animation-duration:400ms;-webkit-animation-timing-function:cubic-bezier(.34,1.61,.7,1);animation-timing-function:cubic-bezier(.34,1.61,.7,1)}.drop.transition.in{-webkit-animation-name:dropIn;animation-name:dropIn}.drop.transition.out{-webkit-animation-name:dropOut;animation-name:dropOut}@-webkit-keyframes dropIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes dropIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes dropOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}@keyframes dropOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}.transition.fade.in{-webkit-animation-name:fadeIn;animation-name:fadeIn}.transition[class*="fade up"].in{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.transition[class*="fade down"].in{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.transition[class*="fade left"].in{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}.transition[class*="fade right"].in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.transition.fade.out{-webkit-animation-name:fadeOut;animation-name:fadeOut}.transition[class*="fade up"].out{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}.transition[class*="fade down"].out{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}.transition[class*="fade left"].out{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}.transition[class*="fade right"].out{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(5%);transform:translateY(5%)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(5%);transform:translateY(5%)}}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-5%);transform:translateY(-5%)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-5%);transform:translateY(-5%)}}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(5%);transform:translateX(5%)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(5%);transform:translateX(5%)}}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-5%);transform:translateX(-5%)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-5%);transform:translateX(-5%)}}.flip.transition.in,.flip.transition.out{-webkit-animation-duration:600ms;animation-duration:600ms}.horizontal.flip.transition.in{-webkit-animation-name:horizontalFlipIn;animation-name:horizontalFlipIn}.horizontal.flip.transition.out{-webkit-animation-name:horizontalFlipOut;animation-name:horizontalFlipOut}.vertical.flip.transition.in{-webkit-animation-name:verticalFlipIn;animation-name:verticalFlipIn}.vertical.flip.transition.out{-webkit-animation-name:verticalFlipOut;animation-name:verticalFlipOut}@-webkit-keyframes horizontalFlipIn{0%{-webkit-transform:perspective(2000px) rotateY(-90deg);transform:perspective(2000px) rotateY(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes horizontalFlipIn{0%{-webkit-transform:perspective(2000px) rotateY(-90deg);transform:perspective(2000px) rotateY(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}}@-webkit-keyframes verticalFlipIn{0%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}}@keyframes verticalFlipIn{0%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}}@-webkit-keyframes horizontalFlipOut{0%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateY(90deg);transform:perspective(2000px) rotateY(90deg);opacity:0}}@keyframes horizontalFlipOut{0%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateY(90deg);transform:perspective(2000px) rotateY(90deg);opacity:0}}@-webkit-keyframes verticalFlipOut{0%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}}@keyframes verticalFlipOut{0%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}}.scale.transition.in{-webkit-animation-name:scaleIn;animation-name:scaleIn}.scale.transition.out{-webkit-animation-name:scaleOut;animation-name:scaleOut}@-webkit-keyframes scaleIn{0%{opacity:0;-webkit-transform:scale(.8);transform:scale(.8)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes scaleIn{0%{opacity:0;-webkit-transform:scale(.8);transform:scale(.8)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes scaleOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}@keyframes scaleOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}.transition.fly{-webkit-animation-duration:.6s;animation-duration:.6s;-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}.transition.fly.in{-webkit-animation-name:flyIn;animation-name:flyIn}.transition[class*="fly up"].in{-webkit-animation-name:flyInUp;animation-name:flyInUp}.transition[class*="fly down"].in{-webkit-animation-name:flyInDown;animation-name:flyInDown}.transition[class*="fly left"].in{-webkit-animation-name:flyInLeft;animation-name:flyInLeft}.transition[class*="fly right"].in{-webkit-animation-name:flyInRight;animation-name:flyInRight}.transition.fly.out{-webkit-animation-name:flyOut;animation-name:flyOut}.transition[class*="fly up"].out{-webkit-animation-name:flyOutUp;animation-name:flyOutUp}.transition[class*="fly down"].out{-webkit-animation-name:flyOutDown;animation-name:flyOutDown}.transition[class*="fly left"].out{-webkit-animation-name:flyOutLeft;animation-name:flyOutLeft}.transition[class*="fly right"].out{-webkit-animation-name:flyOutRight;animation-name:flyOutRight}@-webkit-keyframes flyIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}100%{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes flyIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}100%{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@-webkit-keyframes flyInUp{0%{opacity:0;-webkit-transform:translate3d(0,1500px,0);transform:translate3d(0,1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes flyInUp{0%{opacity:0;-webkit-transform:translate3d(0,1500px,0);transform:translate3d(0,1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes flyInDown{0%{opacity:0;-webkit-transform:translate3d(0,-1500px,0);transform:translate3d(0,-1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInDown{0%{opacity:0;-webkit-transform:translate3d(0,-1500px,0);transform:translate3d(0,-1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyInLeft{0%{opacity:0;-webkit-transform:translate3d(1500px,0,0);transform:translate3d(1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInLeft{0%{opacity:0;-webkit-transform:translate3d(1500px,0,0);transform:translate3d(1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyInRight{0%{opacity:0;-webkit-transform:translate3d(-1500px,0,0);transform:translate3d(-1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInRight{0%{opacity:0;-webkit-transform:translate3d(-1500px,0,0);transform:translate3d(-1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes flyOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@-webkit-keyframes flyOutUp{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes flyOutUp{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@-webkit-keyframes flyOutDown{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes flyOutDown{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@-webkit-keyframes flyOutRight{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes flyOutRight{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@-webkit-keyframes flyOutLeft{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes flyOutLeft{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.transition.slide.in,.transition[class*="slide down"].in{-webkit-animation-name:slideInY;animation-name:slideInY;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="slide up"].in{-webkit-animation-name:slideInY;animation-name:slideInY;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="slide left"].in{-webkit-animation-name:slideInX;animation-name:slideInX;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="slide right"].in{-webkit-animation-name:slideInX;animation-name:slideInX;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}.transition.slide.out,.transition[class*="slide down"].out{-webkit-animation-name:slideOutY;animation-name:slideOutY;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="slide up"].out{-webkit-animation-name:slideOutY;animation-name:slideOutY;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="slide left"].out{-webkit-animation-name:slideOutX;animation-name:slideOutX;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="slide right"].out{-webkit-animation-name:slideOutX;animation-name:slideOutX;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}@-webkit-keyframes slideInY{0%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}100%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes slideInY{0%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}100%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}}@-webkit-keyframes slideInX{0%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}100%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes slideInX{0%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}100%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@-webkit-keyframes slideOutY{0%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}100%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@keyframes slideOutY{0%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}100%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@-webkit-keyframes slideOutX{0%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}100%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}}@keyframes slideOutX{0%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}100%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}}.transition.swing{-webkit-animation-duration:800ms;animation-duration:800ms}.transition[class*="swing down"].in{-webkit-animation-name:swingInX;animation-name:swingInX;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="swing up"].in{-webkit-animation-name:swingInX;animation-name:swingInX;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="swing left"].in{-webkit-animation-name:swingInY;animation-name:swingInY;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="swing right"].in{-webkit-animation-name:swingInY;animation-name:swingInY;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}.transition.swing.out,.transition[class*="swing down"].out{-webkit-animation-name:swingOutX;animation-name:swingOutX;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="swing up"].out{-webkit-animation-name:swingOutX;animation-name:swingOutX;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="swing left"].out{-webkit-animation-name:swingOutY;animation-name:swingOutY;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="swing right"].out{-webkit-animation-name:swingOutY;animation-name:swingOutY;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}@-webkit-keyframes swingInX{0%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateX(15deg);transform:perspective(1000px) rotateX(15deg)}80%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}100%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}}@keyframes swingInX{0%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateX(15deg);transform:perspective(1000px) rotateX(15deg)}80%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}100%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}}@-webkit-keyframes swingInY{0%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateY(-17.5deg);transform:perspective(1000px) rotateY(-17.5deg)}80%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}100%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}}@keyframes swingInY{0%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateY(-17.5deg);transform:perspective(1000px) rotateY(-17.5deg)}80%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}100%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}}@-webkit-keyframes swingOutX{0%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}40%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}60%{-webkit-transform:perspective(1000px) rotateX(17.5deg);transform:perspective(1000px) rotateX(17.5deg)}80%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}}@keyframes swingOutX{0%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}40%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}60%{-webkit-transform:perspective(1000px) rotateX(17.5deg);transform:perspective(1000px) rotateX(17.5deg)}80%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}}@-webkit-keyframes swingOutY{0%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}40%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}60%{-webkit-transform:perspective(1000px) rotateY(-10deg);transform:perspective(1000px) rotateY(-10deg)}80%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}}@keyframes swingOutY{0%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}40%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}60%{-webkit-transform:perspective(1000px) rotateY(-10deg);transform:perspective(1000px) rotateY(-10deg)}80%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}}.flash.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:flash;animation-name:flash}.shake.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:shake;animation-name:shake}.bounce.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:bounce;animation-name:bounce}.tada.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:tada;animation-name:tada}.pulse.transition{-webkit-animation-duration:500ms;animation-duration:500ms;-webkit-animation-name:pulse;animation-name:pulse}.jiggle.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:jiggle;animation-name:jiggle}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@-webkit-keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@-webkit-keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.9);transform:scale(.9);opacity:.7}}@keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.9);transform:scale(.9);opacity:.7}}@-webkit-keyframes jiggle{0%,100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}@keyframes jiggle{0%,100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}
\ No newline at end of file diff --git a/public/css/semantic-2.1.6.min.css b/public/css/semantic-2.1.6.min.css new file mode 100755 index 00000000..5293f35d --- /dev/null +++ b/public/css/semantic-2.1.6.min.css @@ -0,0 +1,11 @@ + /* + * # Semantic UI - 2.1.6 + * https://github.com/Semantic-Org/Semantic-UI + * http://www.semantic-ui.com/ + * + * Copyright 2014 Contributors + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ +*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}input[type=text],input[type=email],input[type=search],input[type=password]{-webkit-appearance:none;-moz-appearance:none}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0;color:#4183C4;text-decoration:none}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}body,html{height:100%}html{font-size:14px}body{margin:0;padding:0;overflow-x:hidden;min-width:320px;background:#FFF;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:14px;line-height:1.4285em;color:rgba(0,0,0,.87);font-smoothing:antialiased}h1,h2,h3,h4,h5{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;line-height:1.2857em;margin:calc(2rem - .14285em) 0 1rem;font-weight:700;padding:0}h1{min-height:1rem;font-size:2rem}h2{font-size:1.714rem}h3{font-size:1.28rem}h4{font-size:1.071rem}h5{font-size:1rem}h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,p:first-child{margin-top:0}h1:last-child,h2:last-child,h3:last-child,h4:last-child,h5:last-child,p:last-child{margin-bottom:0}p{margin:0 0 1em;line-height:1.4285em}a:hover{color:#1e70bf;text-decoration:none}::-webkit-selection{background-color:#CCE2FF;color:rgba(0,0,0,.87)}::-moz-selection{background-color:#CCE2FF;color:rgba(0,0,0,.87)}::selection{background-color:#CCE2FF;color:rgba(0,0,0,.87)}input::-webkit-selection,textarea::-webkit-selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.87)}input::-moz-selection,textarea::-moz-selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.87)}input::selection,textarea::selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.87)}.ui.button{cursor:pointer;display:inline-block;min-height:1em;outline:0;border:none;vertical-align:baseline;background:#E0E1E2;color:rgba(0,0,0,.6);font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;margin:0 .25em 0 0;padding:.78571429em 1.5em;text-transform:none;text-shadow:none;font-weight:700;line-height:1em;font-style:normal;text-align:center;text-decoration:none;border-radius:.28571429rem;box-shadow:0 0 0 1px transparent inset,0 0 0 0 rgba(34,36,38,.15) inset;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;will-change:'';-webkit-tap-highlight-color:transparent}.ui.button:hover{background-color:#CACBCD;background-image:none;box-shadow:0 0 0 1px transparent inset,0 0 0 0 rgba(34,36,38,.15) inset;color:rgba(0,0,0,.8)}.ui.button:hover .icon{opacity:.85}.ui.button:focus{background-color:#CACBCD;color:rgba(0,0,0,.8);background-image:''!important;box-shadow:''!important}.ui.button:focus .icon{opacity:.85}.ui.active.button:active,.ui.button:active{background-color:#BABBBC;background-image:'';color:rgba(0,0,0,.9);box-shadow:0 0 0 1px transparent inset,none}.ui.active.button{background-color:#C0C1C2;background-image:none;box-shadow:0 0 0 1px transparent inset;color:rgba(0,0,0,.95)}.ui.active.button:hover{background-color:#C0C1C2;background-image:none;color:rgba(0,0,0,.95)}.ui.active.button:active{background-color:#C0C1C2;background-image:none}.ui.loading.loading.loading.loading.loading.loading.button{position:relative;cursor:default;text-shadow:none!important;color:transparent!important;opacity:1;pointer-events:auto;-webkit-transition:all 0s linear,opacity .1s ease;transition:all 0s linear,opacity .1s ease}.ui.loading.button:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.15)}.ui.loading.button:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#FFF transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.labeled.icon.loading.button .icon{background-color:transparent;box-shadow:none}@-webkit-keyframes button-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes button-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.basic.loading.button:not(.inverted):before{border-color:rgba(0,0,0,.1)}.ui.basic.loading.button:not(.inverted):after{border-top-color:#767676}.ui.button:disabled,.ui.buttons .disabled.button,.ui.disabled.active.button,.ui.disabled.button,.ui.disabled.button:hover{cursor:default;opacity:.45!important;background-image:none!important;box-shadow:none!important;pointer-events:none}.ui.basic.buttons .ui.disabled.button{border-color:rgba(34,36,38,.5)}.ui.animated.button{position:relative;overflow:hidden;padding-right:0!important;vertical-align:middle;z-index:1}.ui.animated.button .content{will-change:transform,opacity}.ui.animated.button .visible.content{position:relative;margin-right:1.5em;left:auto;right:0}.ui.animated.button .hidden.content{position:absolute;width:100%;top:50%;left:auto;right:-100%;margin-top:-.5em}.ui.animated.button .hidden.content,.ui.animated.button .visible.content{-webkit-transition:right .3s ease 0s;transition:right .3s ease 0s}.ui.animated.button:focus .visible.content,.ui.animated.button:hover .visible.content{left:auto;right:200%}.ui.animated.button:focus .hidden.content,.ui.animated.button:hover .hidden.content{left:auto;right:0}.ui.vertical.animated.button .hidden.content,.ui.vertical.animated.button .visible.content{-webkit-transition:top .3s ease,-webkit-transform .3s ease;transition:top .3s ease,transform .3s ease}.ui.vertical.animated.button .visible.content{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);right:auto}.ui.vertical.animated.button .hidden.content{top:-50%;left:0;right:auto}.ui.vertical.animated.button:focus .visible.content,.ui.vertical.animated.button:hover .visible.content{-webkit-transform:translateY(200%);-ms-transform:translateY(200%);transform:translateY(200%);right:auto}.ui.vertical.animated.button:focus .hidden.content,.ui.vertical.animated.button:hover .hidden.content{top:50%;right:auto}.ui.fade.animated.button .hidden.content,.ui.fade.animated.button .visible.content{-webkit-transition:opacity .3s ease,-webkit-transform .3s ease;transition:opacity .3s ease,transform .3s ease}.ui.fade.animated.button .visible.content{left:auto;right:auto;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.ui.fade.animated.button .hidden.content{opacity:0;left:0;right:auto;-webkit-transform:scale(1.5);-ms-transform:scale(1.5);transform:scale(1.5)}.ui.fade.animated.button:focus .visible.content,.ui.fade.animated.button:hover .visible.content{left:auto;right:auto;opacity:0;-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.ui.fade.animated.button:focus .hidden.content,.ui.fade.animated.button:hover .hidden.content{left:0;right:auto;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.ui.inverted.button{box-shadow:0 0 0 2px #FFF inset!important;background:0 0;color:#FFF;text-shadow:none!important}.ui.inverted.buttons .button{margin:0 0 0 -2px}.ui.inverted.buttons .button:first-child{margin-left:0}.ui.inverted.vertical.buttons .button{margin:0 0 -2px}.ui.inverted.vertical.buttons .button:first-child{margin-top:0}.ui.inverted.button.active,.ui.inverted.button:focus,.ui.inverted.button:hover{background:#FFF;box-shadow:0 0 0 2px #FFF inset!important;color:rgba(0,0,0,.8)}.ui.inverted.button.active:focus{background:#DCDDDE;box-shadow:0 0 0 2px #DCDDDE inset!important;color:rgba(0,0,0,.8)}.ui.labeled.button:not(.icon){display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;background:0 0!important;padding:0!important;border:none!important;box-shadow:none!important}.ui.labeled.button>.button{margin:0}.ui.labeled.button>.label{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin:0 0 0 -1px!important;padding:'';font-size:1em;border-color:rgba(34,36,38,.15)}.ui.labeled.button>.tag.label:before{width:1.85em;height:1.85em}.ui.labeled.button:not([class*="left labeled"])>.button{border-top-right-radius:0;border-bottom-right-radius:0}.ui.labeled.button:not([class*="left labeled"])>.label,.ui[class*="left labeled"].button>.button{border-top-left-radius:0;border-bottom-left-radius:0}.ui[class*="left labeled"].button>.label{border-top-right-radius:0;border-bottom-right-radius:0}.ui.facebook.button{background-color:#3B5998;color:#FFF;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.facebook.button:hover{background-color:#304d8a;color:#FFF;text-shadow:none}.ui.facebook.button:active{background-color:#2d4373;color:#FFF;text-shadow:none}.ui.twitter.button{background-color:#0084B4;color:#FFF;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.twitter.button:hover{background-color:#00719b;color:#FFF;text-shadow:none}.ui.twitter.button:active{background-color:#005f81;color:#FFF;text-shadow:none}.ui.google.plus.button{background-color:#DC4A38;color:#FFF;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.google.plus.button:hover{background-color:#de321d;color:#FFF;text-shadow:none}.ui.google.plus.button:active{background-color:#bf3322;color:#FFF;text-shadow:none}.ui.linkedin.button{background-color:#1F88BE;color:#FFF;text-shadow:none}.ui.linkedin.button:hover{background-color:#147baf;color:#FFF;text-shadow:none}.ui.linkedin.button:active{background-color:#186992;color:#FFF;text-shadow:none}.ui.youtube.button{background-color:#CC181E;color:#FFF;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.youtube.button:hover{background-color:#bd0d13;color:#FFF;text-shadow:none}.ui.youtube.button:active{background-color:#9e1317;color:#FFF;text-shadow:none}.ui.instagram.button{background-color:#49769C;color:#FFF;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.instagram.button:hover{background-color:#3d698e;color:#FFF;text-shadow:none}.ui.instagram.button:active{background-color:#395c79;color:#FFF;text-shadow:none}.ui.pinterest.button{background-color:#00ACED;color:#FFF;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.pinterest.button:hover{background-color:#0099d4;color:#FFF;text-shadow:none}.ui.pinterest.button:active{background-color:#0087ba;color:#FFF;text-shadow:none}.ui.vk.button{background-color:#4D7198;color:#FFF;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.vk.button:hover{background-color:#41648a;color:#FFF}.ui.vk.button:active{background-color:#3c5876;color:#FFF}.ui.button>.icon:not(.button){height:.85714286em;opacity:.8;margin:0 .42857143em 0 -.21428571em;-webkit-transition:opacity .1s ease;transition:opacity .1s ease;vertical-align:'';color:''}.ui.button>.right.icon:not(.button){margin:0 -.21428571em 0 .42857143em}.ui[class*="left floated"].button,.ui[class*="left floated"].buttons{float:left;margin-left:0;margin-right:.25em}.ui[class*="right floated"].button,.ui[class*="right floated"].buttons{float:right;margin-right:0;margin-left:.25em}.ui.compact.button,.ui.compact.buttons .button{padding:.58928571em 1.125em}.ui.compact.icon.button,.ui.compact.icon.buttons .button{padding:.58928571em}.ui.compact.labeled.icon.button,.ui.compact.labeled.icon.buttons .button{padding:.58928571em 3.69642857em}.ui.mini.button,.ui.mini.buttons .button,.ui.mini.buttons .or{font-size:.71428571rem}.ui.tiny.button,.ui.tiny.buttons .button,.ui.tiny.buttons .or{font-size:.85714286rem}.ui.small.button,.ui.small.buttons .button,.ui.small.buttons .or{font-size:.92857143rem}.ui.button,.ui.buttons .button,.ui.buttons .or{font-size:1rem}.ui.large.button,.ui.large.buttons .button,.ui.large.buttons .or{font-size:1.14285714rem}.ui.big.button,.ui.big.buttons .button,.ui.big.buttons .or{font-size:1.28571429rem}.ui.huge.button,.ui.huge.buttons .button,.ui.huge.buttons .or{font-size:1.42857143rem}.ui.massive.button,.ui.massive.buttons .button,.ui.massive.buttons .or{font-size:1.71428571rem}.ui.icon.button,.ui.icon.buttons .button{padding:.78571429em}.ui.icon.button>.icon,.ui.icon.buttons .button>.icon{opacity:.9;margin:0;vertical-align:top}.ui.basic.button,.ui.basic.buttons .button{background:0 0!important;color:rgba(0,0,0,.6)!important;font-weight:400;border-radius:.28571429rem;text-transform:none;text-shadow:none!important;box-shadow:0 0 0 1px rgba(34,36,38,.15) inset}.ui.basic.buttons{box-shadow:none;border:1px solid rgba(34,36,38,.15);border-radius:.28571429rem}.ui.basic.button:focus,.ui.basic.button:hover,.ui.basic.buttons .button:focus,.ui.basic.buttons .button:hover{background:#FFF!important;color:rgba(0,0,0,.8)!important;box-shadow:0 0 0 1px rgba(34,36,38,.35) inset,0 0 0 0 rgba(34,36,38,.15) inset}.ui.basic.button:active,.ui.basic.buttons .button:active{background:#F8F8F8!important;color:rgba(0,0,0,.9)!important;box-shadow:0 0 0 1px rgba(0,0,0,.15) inset,0 1px 4px 0 rgba(34,36,38,.15) inset}.ui.basic.active.button,.ui.basic.buttons .active.button{background:rgba(0,0,0,.05)!important;box-shadow:''!important;color:rgba(0,0,0,.95)}.ui.basic.active.button:hover,.ui.basic.buttons .active.button:hover{background-color:rgba(0,0,0,.05)}.ui.basic.buttons .button:hover{box-shadow:0 0 0 1px rgba(34,36,38,.35) inset,0 0 0 0 rgba(34,36,38,.15) inset inset}.ui.basic.buttons .button:active{box-shadow:0 0 0 1px rgba(0,0,0,.15) inset,0 1px 4px 0 rgba(34,36,38,.15) inset inset}.ui.basic.buttons .active.button{box-shadow:rgba(34,36,38,.35) inset}.ui.basic.inverted.button,.ui.basic.inverted.buttons .button{background-color:transparent!important;color:#F9FAFB!important;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important}.ui.basic.inverted.button:focus,.ui.basic.inverted.button:hover,.ui.basic.inverted.buttons .button:focus,.ui.basic.inverted.buttons .button:hover{color:#FFF!important;box-shadow:0 0 0 2px #fff inset!important}.ui.basic.inverted.button:active,.ui.basic.inverted.buttons .button:active{background-color:rgba(255,255,255,.08)!important;color:#FFF!important;box-shadow:0 0 0 2px rgba(255,255,255,.9) inset!important}.ui.basic.inverted.active.button,.ui.basic.inverted.buttons .active.button{background-color:rgba(255,255,255,.08);color:#FFF;text-shadow:none;box-shadow:0 0 0 2px rgba(255,255,255,.7) inset}.ui.basic.inverted.active.button:hover,.ui.basic.inverted.buttons .active.button:hover{background-color:rgba(255,255,255,.15);box-shadow:0 0 0 2px #fff inset!important}.ui.basic.buttons .button{border-radius:0;border-left:1px solid rgba(34,36,38,.15);box-shadow:none}.ui.basic.vertical.buttons .button{border-left:none;border-left-width:0;border-top:1px solid rgba(34,36,38,.15)}.ui.basic.vertical.buttons .button:first-child{border-top-width:0}.ui.labeled.icon.button,.ui.labeled.icon.buttons .button{position:relative;padding-left:4.07142857em!important;padding-right:1.5em!important}.ui.labeled.icon.button>.icon,.ui.labeled.icon.buttons>.button>.icon{position:absolute;height:100%;line-height:1;border-radius:0;border-top-left-radius:inherit;border-bottom-left-radius:inherit;text-align:center;margin:0;width:2.57142857em;background-color:rgba(0,0,0,.05);color:'';box-shadow:-1px 0 0 0 transparent inset;top:0;left:0}.ui[class*="right labeled"].icon.button{padding-right:4.07142857em!important;padding-left:1.5em!important}.ui[class*="right labeled"].icon.button>.icon{left:auto;right:0;border-radius:0;border-top-right-radius:inherit;border-bottom-right-radius:inherit;box-shadow:1px 0 0 0 transparent inset}.ui.labeled.icon.button>.icon:after,.ui.labeled.icon.button>.icon:before,.ui.labeled.icon.buttons>.button>.icon:after,.ui.labeled.icon.buttons>.button>.icon:before{display:block;position:absolute;width:100%;top:50%;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.ui.labeled.icon.buttons .button>.icon{border-radius:0}.ui.labeled.icon.buttons .button:first-child>.icon{border-top-left-radius:.28571429rem;border-bottom-left-radius:.28571429rem}.ui.labeled.icon.buttons .button:last-child>.icon{border-top-right-radius:.28571429rem;border-bottom-right-radius:.28571429rem}.ui.vertical.labeled.icon.buttons .button:first-child>.icon{border-radius:.28571429rem 0 0}.ui.vertical.labeled.icon.buttons .button:last-child>.icon{border-radius:0 0 0 .28571429rem}.ui.fluid[class*="left labeled"].icon.button,.ui.fluid[class*="right labeled"].icon.button{padding-left:1.5em!important;padding-right:1.5em!important}.ui.button.toggle.active,.ui.buttons .button.toggle.active,.ui.toggle.buttons .active.button{background-color:#21BA45!important;box-shadow:none!important;text-shadow:none;color:#FFF!important}.ui.button.toggle.active:hover{background-color:#16ab39!important;text-shadow:none;color:#FFF!important}.ui.circular.button{border-radius:10em}.ui.circular.button>.icon{width:1em;vertical-align:baseline}.ui.buttons .or{position:relative;width:.3em;height:2.57142857em;z-index:3}.ui.buttons .or:before{position:absolute;text-align:center;border-radius:500rem;content:'or';top:50%;left:50%;background-color:#FFF;text-shadow:none;margin-top:-.89285714em;margin-left:-.89285714em;width:1.78571429em;height:1.78571429em;line-height:1.78571429em;color:rgba(0,0,0,.4);font-style:normal;font-weight:700;box-shadow:0 0 0 1px transparent inset}.ui.buttons .or[data-text]:before{content:attr(data-text)}.ui.fluid.buttons .or{width:0!important}.ui.fluid.buttons .or:after{display:none}.ui.attached.button{position:relative;display:block;margin:0;border-radius:0;box-shadow:0 0 0 1px rgba(34,36,38,.15)!important}.ui.attached.top.button{border-radius:.28571429rem .28571429rem 0 0}.ui.attached.bottom.button{border-radius:0 0 .28571429rem .28571429rem}.ui.left.attached.button{display:inline-block;border-left:none;text-align:right;padding-right:.75em;border-radius:.28571429rem 0 0 .28571429rem}.ui.right.attached.button{display:inline-block;text-align:left;padding-left:.75em;border-radius:0 .28571429rem .28571429rem 0}.ui.attached.buttons{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border-radius:0;width:auto!important;z-index:2;margin-left:-1px;margin-right:-1px}.ui.attached.buttons .button{margin:0}.ui.attached.buttons .button:first-child,.ui.attached.buttons .button:last-child{border-radius:0}.ui[class*="top attached"].buttons{margin-bottom:-1px;border-radius:.28571429rem .28571429rem 0 0}.ui[class*="top attached"].buttons .button:first-child{border-radius:.28571429rem 0 0}.ui[class*="top attached"].buttons .button:last-child{border-radius:0 .28571429rem 0 0}.ui[class*="bottom attached"].buttons{margin-top:-1px;border-radius:0 0 .28571429rem .28571429rem}.ui[class*="bottom attached"].buttons .button:first-child{border-radius:0 0 0 .28571429rem}.ui[class*="bottom attached"].buttons .button:last-child{border-radius:0 0 .28571429rem}.ui[class*="left attached"].buttons{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;margin-right:0;margin-left:-1px;border-radius:0 .28571429rem .28571429rem 0}.ui[class*="left attached"].buttons .button:first-child{margin-left:-1px;border-radius:0 .28571429rem 0 0}.ui[class*="left attached"].buttons .button:last-child{margin-left:-1px;border-radius:0 0 .28571429rem}.ui[class*="right attached"].buttons{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;margin-left:0;margin-right:-1px;border-radius:.28571429rem 0 0 .28571429rem}.ui[class*="right attached"].buttons .button:first-child{margin-left:-1px;border-radius:.28571429rem 0 0}.ui[class*="right attached"].buttons .button:last-child{margin-left:-1px;border-radius:0 0 0 .28571429rem}.ui.fluid.button,.ui.fluid.buttons{width:100%}.ui.fluid.button{display:block}.ui.two.buttons{width:100%}.ui.two.buttons>.button{width:50%}.ui.three.buttons{width:100%}.ui.three.buttons>.button{width:33.333%}.ui.four.buttons{width:100%}.ui.four.buttons>.button{width:25%}.ui.five.buttons{width:100%}.ui.five.buttons>.button{width:20%}.ui.six.buttons{width:100%}.ui.six.buttons>.button{width:16.666%}.ui.seven.buttons{width:100%}.ui.seven.buttons>.button{width:14.285%}.ui.eight.buttons{width:100%}.ui.eight.buttons>.button{width:12.5%}.ui.nine.buttons{width:100%}.ui.nine.buttons>.button{width:11.11%}.ui.ten.buttons{width:100%}.ui.ten.buttons>.button{width:10%}.ui.eleven.buttons{width:100%}.ui.eleven.buttons>.button{width:9.09%}.ui.twelve.buttons{width:100%}.ui.twelve.buttons>.button{width:8.3333%}.ui.fluid.vertical.buttons,.ui.fluid.vertical.buttons>.button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:auto}.ui.two.vertical.buttons>.button{height:50%}.ui.three.vertical.buttons>.button{height:33.333%}.ui.four.vertical.buttons>.button{height:25%}.ui.five.vertical.buttons>.button{height:20%}.ui.six.vertical.buttons>.button{height:16.666%}.ui.seven.vertical.buttons>.button{height:14.285%}.ui.eight.vertical.buttons>.button{height:12.5%}.ui.nine.vertical.buttons>.button{height:11.11%}.ui.ten.vertical.buttons>.button{height:10%}.ui.eleven.vertical.buttons>.button{height:9.09%}.ui.twelve.vertical.buttons>.button{height:8.3333%}.ui.black.button,.ui.black.buttons .button{background-color:#1B1C1D;color:#FFF;text-shadow:none;background-image:none}.ui.black.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.black.button:hover,.ui.black.buttons .button:hover{background-color:#27292a;color:#FFF;text-shadow:none}.ui.black.button:focus,.ui.black.buttons .button:focus{background-color:#2f3032;color:#FFF;text-shadow:none}.ui.black.button:active,.ui.black.buttons .button:active{background-color:#343637;color:#FFF;text-shadow:none}.ui.black.active.button,.ui.black.button .active.button:active,.ui.black.buttons .active.button,.ui.black.buttons .active.button:active{background-color:#0f0f10;color:#FFF;text-shadow:none}.ui.basic.black.button,.ui.basic.black.buttons .button{box-shadow:0 0 0 1px #1B1C1D inset!important;color:#1B1C1D!important}.ui.basic.black.button:hover,.ui.basic.black.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #27292a inset!important;color:#27292a!important}.ui.basic.black.button:focus,.ui.basic.black.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #2f3032 inset!important;color:#27292a!important}.ui.basic.black.active.button,.ui.basic.black.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #0f0f10 inset!important;color:#343637!important}.ui.basic.black.button:active,.ui.basic.black.buttons .button:active{box-shadow:0 0 0 1px #343637 inset!important;color:#343637!important}.ui.buttons:not(.vertical)>.basic.black.button:not(:first-child){margin-left:-1px}.ui.inverted.black.button,.ui.inverted.black.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #D4D4D5 inset!important;color:#FFF}.ui.inverted.black.button.active,.ui.inverted.black.button:active,.ui.inverted.black.button:focus,.ui.inverted.black.button:hover,.ui.inverted.black.buttons .button.active,.ui.inverted.black.buttons .button:active,.ui.inverted.black.buttons .button:focus,.ui.inverted.black.buttons .button:hover{box-shadow:none!important;color:#FFF}.ui.inverted.black.active.button,.ui.inverted.black.button:active,.ui.inverted.black.button:focus,.ui.inverted.black.button:hover,.ui.inverted.black.buttons .active.button,.ui.inverted.black.buttons .button:active,.ui.inverted.black.buttons .button:focus,.ui.inverted.black.buttons .button:hover{background-color:#000}.ui.inverted.black.basic.button,.ui.inverted.black.basic.buttons .button,.ui.inverted.black.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#FFF!important}.ui.inverted.black.basic.button:hover,.ui.inverted.black.basic.buttons .button:hover,.ui.inverted.black.buttons .basic.button:hover{box-shadow:0 0 0 2px #000 inset!important;color:#FFF!important}.ui.inverted.black.basic.button:focus,.ui.inverted.black.basic.buttons .button:focus{box-shadow:0 0 0 2px #000 inset!important;color:#545454!important}.ui.inverted.black.basic.active.button,.ui.inverted.black.basic.button:active,.ui.inverted.black.basic.buttons .active.button,.ui.inverted.black.basic.buttons .button:active,.ui.inverted.black.buttons .basic.active.button,.ui.inverted.black.buttons .basic.button:active{box-shadow:0 0 0 2px #000 inset!important;color:#FFF!important}.ui.grey.button,.ui.grey.buttons .button{background-color:#767676;color:#FFF;text-shadow:none;background-image:none}.ui.grey.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.grey.button:hover,.ui.grey.buttons .button:hover{background-color:#838383;color:#FFF;text-shadow:none}.ui.grey.button:focus,.ui.grey.buttons .button:focus{background-color:#8a8a8a;color:#FFF;text-shadow:none}.ui.grey.button:active,.ui.grey.buttons .button:active{background-color:#909090;color:#FFF;text-shadow:none}.ui.grey.active.button,.ui.grey.button .active.button:active,.ui.grey.buttons .active.button,.ui.grey.buttons .active.button:active{background-color:#696969;color:#FFF;text-shadow:none}.ui.basic.grey.button,.ui.basic.grey.buttons .button{box-shadow:0 0 0 1px #767676 inset!important;color:#767676!important}.ui.basic.grey.button:hover,.ui.basic.grey.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #838383 inset!important;color:#838383!important}.ui.basic.grey.button:focus,.ui.basic.grey.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #8a8a8a inset!important;color:#838383!important}.ui.basic.grey.active.button,.ui.basic.grey.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #696969 inset!important;color:#909090!important}.ui.basic.grey.button:active,.ui.basic.grey.buttons .button:active{box-shadow:0 0 0 1px #909090 inset!important;color:#909090!important}.ui.buttons:not(.vertical)>.basic.grey.button:not(:first-child){margin-left:-1px}.ui.inverted.grey.button,.ui.inverted.grey.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #D4D4D5 inset!important;color:#FFF}.ui.inverted.grey.button.active,.ui.inverted.grey.button:active,.ui.inverted.grey.button:focus,.ui.inverted.grey.button:hover,.ui.inverted.grey.buttons .button.active,.ui.inverted.grey.buttons .button:active,.ui.inverted.grey.buttons .button:focus,.ui.inverted.grey.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.grey.button:hover,.ui.inverted.grey.buttons .button:hover{background-color:#cfd0d2}.ui.inverted.grey.button:focus,.ui.inverted.grey.buttons .button:focus{background-color:#c7c9cb}.ui.inverted.grey.active.button,.ui.inverted.grey.buttons .active.button{background-color:#cfd0d2}.ui.inverted.grey.button:active,.ui.inverted.grey.buttons .button:active{background-color:#c2c4c5}.ui.inverted.grey.basic.button,.ui.inverted.grey.basic.buttons .button,.ui.inverted.grey.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#FFF!important}.ui.inverted.grey.basic.button:hover,.ui.inverted.grey.basic.buttons .button:hover,.ui.inverted.grey.buttons .basic.button:hover{box-shadow:0 0 0 2px #cfd0d2 inset!important;color:#FFF!important}.ui.inverted.grey.basic.button:focus,.ui.inverted.grey.basic.buttons .button:focus{box-shadow:0 0 0 2px #c7c9cb inset!important;color:#DCDDDE!important}.ui.inverted.grey.basic.active.button,.ui.inverted.grey.basic.buttons .active.button,.ui.inverted.grey.buttons .basic.active.button{box-shadow:0 0 0 2px #cfd0d2 inset!important;color:#FFF!important}.ui.inverted.grey.basic.button:active,.ui.inverted.grey.basic.buttons .button:active,.ui.inverted.grey.buttons .basic.button:active{box-shadow:0 0 0 2px #c2c4c5 inset!important;color:#FFF!important}.ui.brown.button,.ui.brown.buttons .button{background-color:#A5673F;color:#FFF;text-shadow:none;background-image:none}.ui.brown.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.brown.button:hover,.ui.brown.buttons .button:hover{background-color:#975b33;color:#FFF;text-shadow:none}.ui.brown.button:focus,.ui.brown.buttons .button:focus{background-color:#90532b;color:#FFF;text-shadow:none}.ui.brown.button:active,.ui.brown.buttons .button:active{background-color:#805031;color:#FFF;text-shadow:none}.ui.brown.active.button,.ui.brown.button .active.button:active,.ui.brown.buttons .active.button,.ui.brown.buttons .active.button:active{background-color:#995a31;color:#FFF;text-shadow:none}.ui.basic.brown.button,.ui.basic.brown.buttons .button{box-shadow:0 0 0 1px #A5673F inset!important;color:#A5673F!important}.ui.basic.brown.button:hover,.ui.basic.brown.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #975b33 inset!important;color:#975b33!important}.ui.basic.brown.button:focus,.ui.basic.brown.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #90532b inset!important;color:#975b33!important}.ui.basic.brown.active.button,.ui.basic.brown.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #995a31 inset!important;color:#805031!important}.ui.basic.brown.button:active,.ui.basic.brown.buttons .button:active{box-shadow:0 0 0 1px #805031 inset!important;color:#805031!important}.ui.buttons:not(.vertical)>.basic.brown.button:not(:first-child){margin-left:-1px}.ui.inverted.brown.button,.ui.inverted.brown.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #D67C1C inset!important;color:#D67C1C}.ui.inverted.brown.button.active,.ui.inverted.brown.button:active,.ui.inverted.brown.button:focus,.ui.inverted.brown.button:hover,.ui.inverted.brown.buttons .button.active,.ui.inverted.brown.buttons .button:active,.ui.inverted.brown.buttons .button:focus,.ui.inverted.brown.buttons .button:hover{box-shadow:none!important;color:#FFF}.ui.inverted.brown.button:hover,.ui.inverted.brown.buttons .button:hover{background-color:#c86f11}.ui.inverted.brown.button:focus,.ui.inverted.brown.buttons .button:focus{background-color:#c16808}.ui.inverted.brown.active.button,.ui.inverted.brown.buttons .active.button{background-color:#cc6f0d}.ui.inverted.brown.button:active,.ui.inverted.brown.buttons .button:active{background-color:#a96216}.ui.inverted.brown.basic.button,.ui.inverted.brown.basic.buttons .button,.ui.inverted.brown.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#FFF!important}.ui.inverted.brown.basic.button:hover,.ui.inverted.brown.basic.buttons .button:hover,.ui.inverted.brown.buttons .basic.button:hover{box-shadow:0 0 0 2px #c86f11 inset!important;color:#D67C1C!important}.ui.inverted.brown.basic.button:focus,.ui.inverted.brown.basic.buttons .button:focus{box-shadow:0 0 0 2px #c16808 inset!important;color:#D67C1C!important}.ui.inverted.brown.basic.active.button,.ui.inverted.brown.basic.buttons .active.button,.ui.inverted.brown.buttons .basic.active.button{box-shadow:0 0 0 2px #cc6f0d inset!important;color:#D67C1C!important}.ui.inverted.brown.basic.button:active,.ui.inverted.brown.basic.buttons .button:active,.ui.inverted.brown.buttons .basic.button:active{box-shadow:0 0 0 2px #a96216 inset!important;color:#D67C1C!important}.ui.blue.button,.ui.blue.buttons .button{background-color:#2185D0;color:#FFF;text-shadow:none;background-image:none}.ui.blue.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.blue.button:hover,.ui.blue.buttons .button:hover{background-color:#1678c2;color:#FFF;text-shadow:none}.ui.blue.button:focus,.ui.blue.buttons .button:focus{background-color:#0d71bb;color:#FFF;text-shadow:none}.ui.blue.button:active,.ui.blue.buttons .button:active{background-color:#1a69a4;color:#FFF;text-shadow:none}.ui.blue.active.button,.ui.blue.button .active.button:active,.ui.blue.buttons .active.button,.ui.blue.buttons .active.button:active{background-color:#1279c6;color:#FFF;text-shadow:none}.ui.basic.blue.button,.ui.basic.blue.buttons .button{box-shadow:0 0 0 1px #2185D0 inset!important;color:#2185D0!important}.ui.basic.blue.button:hover,.ui.basic.blue.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #1678c2 inset!important;color:#1678c2!important}.ui.basic.blue.button:focus,.ui.basic.blue.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #0d71bb inset!important;color:#1678c2!important}.ui.basic.blue.active.button,.ui.basic.blue.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #1279c6 inset!important;color:#1a69a4!important}.ui.basic.blue.button:active,.ui.basic.blue.buttons .button:active{box-shadow:0 0 0 1px #1a69a4 inset!important;color:#1a69a4!important}.ui.buttons:not(.vertical)>.basic.blue.button:not(:first-child){margin-left:-1px}.ui.inverted.blue.button,.ui.inverted.blue.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #54C8FF inset!important;color:#54C8FF}.ui.inverted.blue.button.active,.ui.inverted.blue.button:active,.ui.inverted.blue.button:focus,.ui.inverted.blue.button:hover,.ui.inverted.blue.buttons .button.active,.ui.inverted.blue.buttons .button:active,.ui.inverted.blue.buttons .button:focus,.ui.inverted.blue.buttons .button:hover{box-shadow:none!important;color:#FFF}.ui.inverted.blue.button:hover,.ui.inverted.blue.buttons .button:hover{background-color:#3ac0ff}.ui.inverted.blue.button:focus,.ui.inverted.blue.buttons .button:focus{background-color:#2bbbff}.ui.inverted.blue.active.button,.ui.inverted.blue.buttons .active.button{background-color:#3ac0ff}.ui.inverted.blue.button:active,.ui.inverted.blue.buttons .button:active{background-color:#21b8ff}.ui.inverted.blue.basic.button,.ui.inverted.blue.basic.buttons .button,.ui.inverted.blue.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#FFF!important}.ui.inverted.blue.basic.button:hover,.ui.inverted.blue.basic.buttons .button:hover,.ui.inverted.blue.buttons .basic.button:hover{box-shadow:0 0 0 2px #3ac0ff inset!important;color:#54C8FF!important}.ui.inverted.blue.basic.button:focus,.ui.inverted.blue.basic.buttons .button:focus{box-shadow:0 0 0 2px #2bbbff inset!important;color:#54C8FF!important}.ui.inverted.blue.basic.active.button,.ui.inverted.blue.basic.buttons .active.button,.ui.inverted.blue.buttons .basic.active.button{box-shadow:0 0 0 2px #3ac0ff inset!important;color:#54C8FF!important}.ui.inverted.blue.basic.button:active,.ui.inverted.blue.basic.buttons .button:active,.ui.inverted.blue.buttons .basic.button:active{box-shadow:0 0 0 2px #21b8ff inset!important;color:#54C8FF!important}.ui.green.button,.ui.green.buttons .button{background-color:#21BA45;color:#FFF;text-shadow:none;background-image:none}.ui.green.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.green.button:hover,.ui.green.buttons .button:hover{background-color:#16ab39;color:#FFF;text-shadow:none}.ui.green.button:focus,.ui.green.buttons .button:focus{background-color:#0ea432;color:#FFF;text-shadow:none}.ui.green.button:active,.ui.green.buttons .button:active{background-color:#198f35;color:#FFF;text-shadow:none}.ui.green.active.button,.ui.green.button .active.button:active,.ui.green.buttons .active.button,.ui.green.buttons .active.button:active{background-color:#13ae38;color:#FFF;text-shadow:none}.ui.basic.green.button,.ui.basic.green.buttons .button{box-shadow:0 0 0 1px #21BA45 inset!important;color:#21BA45!important}.ui.basic.green.button:hover,.ui.basic.green.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #16ab39 inset!important;color:#16ab39!important}.ui.basic.green.button:focus,.ui.basic.green.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #0ea432 inset!important;color:#16ab39!important}.ui.basic.green.active.button,.ui.basic.green.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #13ae38 inset!important;color:#198f35!important}.ui.basic.green.button:active,.ui.basic.green.buttons .button:active{box-shadow:0 0 0 1px #198f35 inset!important;color:#198f35!important}.ui.buttons:not(.vertical)>.basic.green.button:not(:first-child){margin-left:-1px}.ui.inverted.green.button,.ui.inverted.green.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #2ECC40 inset!important;color:#2ECC40}.ui.inverted.green.button.active,.ui.inverted.green.button:active,.ui.inverted.green.button:focus,.ui.inverted.green.button:hover,.ui.inverted.green.buttons .button.active,.ui.inverted.green.buttons .button:active,.ui.inverted.green.buttons .button:focus,.ui.inverted.green.buttons .button:hover{box-shadlightOw:none!important;color:#FFF}.ui.inverted.green.button:hover,.ui.inverted.green.buttons .button:hover{background-color:#22be34}.ui.inverted.green.button:focus,.ui.inverted.green.buttons .button:focus{background-color:#19b82b}.ui.inverted.green.active.button,.ui.inverted.green.buttons .active.button{background-color:#1fc231}.ui.inverted.green.button:active,.ui.inverted.green.buttons .button:active{background-color:#25a233}.ui.inverted.green.basic.button,.ui.inverted.green.basic.buttons .button,.ui.inverted.green.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#FFF!important}.ui.inverted.green.basic.button:hover,.ui.inverted.green.basic.buttons .button:hover,.ui.inverted.green.buttons .basic.button:hover{box-shadow:0 0 0 2px #22be34 inset!important;color:#2ECC40!important}.ui.inverted.green.basic.button:focus,.ui.inverted.green.basic.buttons .button:focus{box-shadow:0 0 0 2px #19b82b inset!important;color:#2ECC40!important}.ui.inverted.green.basic.active.button,.ui.inverted.green.basic.buttons .active.button,.ui.inverted.green.buttons .basic.active.button{box-shadow:0 0 0 2px #1fc231 inset!important;color:#2ECC40!important}.ui.inverted.green.basic.button:active,.ui.inverted.green.basic.buttons .button:active,.ui.inverted.green.buttons .basic.button:active{box-shadow:0 0 0 2px #25a233 inset!important;color:#2ECC40!important}.ui.orange.button,.ui.orange.buttons .button{background-color:#F2711C;color:#FFF;text-shadow:none;background-image:none}.ui.orange.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.orange.button:hover,.ui.orange.buttons .button:hover{background-color:#f26202;color:#FFF;text-shadow:none}.ui.orange.button:focus,.ui.orange.buttons .button:focus{background-color:#e55b00;color:#FFF;text-shadow:none}.ui.orange.button:active,.ui.orange.buttons .button:active{background-color:#cf590c;color:#FFF;text-shadow:none}.ui.orange.active.button,.ui.orange.button .active.button:active,.ui.orange.buttons .active.button,.ui.orange.buttons .active.button:active{background-color:#f56100;color:#FFF;text-shadow:none}.ui.basic.orange.button,.ui.basic.orange.buttons .button{box-shadow:0 0 0 1px #F2711C inset!important;color:#F2711C!important}.ui.basic.orange.button:hover,.ui.basic.orange.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #f26202 inset!important;color:#f26202!important}.ui.basic.orange.button:focus,.ui.basic.orange.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #e55b00 inset!important;color:#f26202!important}.ui.basic.orange.active.button,.ui.basic.orange.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #f56100 inset!important;color:#cf590c!important}.ui.basic.orange.button:active,.ui.basic.orange.buttons .button:active{box-shadow:0 0 0 1px #cf590c inset!important;color:#cf590c!important}.ui.buttons:not(.vertical)>.basic.orange.button:not(:first-child){margin-left:-1px}.ui.inverted.orange.button,.ui.inverted.orange.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #FF851B inset!important;color:#FF851B}.ui.inverted.orange.button.active,.ui.inverted.orange.button:active,.ui.inverted.orange.button:focus,.ui.inverted.orange.button:hover,.ui.inverted.orange.buttons .button.active,.ui.inverted.orange.buttons .button:active,.ui.inverted.orange.buttons .button:focus,.ui.inverted.orange.buttons .button:hover{box-shadow:none!important;color:#FFF}.ui.inverted.orange.button:hover,.ui.inverted.orange.buttons .button:hover{background-color:#ff7701}.ui.inverted.orange.button:focus,.ui.inverted.orange.buttons .button:focus{background-color:#f17000}.ui.inverted.orange.active.button,.ui.inverted.orange.buttons .active.button{background-color:#ff7701}.ui.inverted.orange.button:active,.ui.inverted.orange.buttons .button:active{background-color:#e76b00}.ui.inverted.orange.basic.button,.ui.inverted.orange.basic.buttons .button,.ui.inverted.orange.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#FFF!important}.ui.inverted.orange.basic.button:hover,.ui.inverted.orange.basic.buttons .button:hover,.ui.inverted.orange.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff7701 inset!important;color:#FF851B!important}.ui.inverted.orange.basic.button:focus,.ui.inverted.orange.basic.buttons .button:focus{box-shadow:0 0 0 2px #f17000 inset!important;color:#FF851B!important}.ui.inverted.orange.basic.active.button,.ui.inverted.orange.basic.buttons .active.button,.ui.inverted.orange.buttons .basic.active.button{box-shadow:0 0 0 2px #ff7701 inset!important;color:#FF851B!important}.ui.inverted.orange.basic.button:active,.ui.inverted.orange.basic.buttons .button:active,.ui.inverted.orange.buttons .basic.button:active{box-shadow:0 0 0 2px #e76b00 inset!important;color:#FF851B!important}.ui.pink.button,.ui.pink.buttons .button{background-color:#E03997;color:#FFF;text-shadow:none;background-image:none}.ui.pink.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.pink.button:hover,.ui.pink.buttons .button:hover{background-color:#e61a8d;color:#FFF;text-shadow:none}.ui.pink.button:focus,.ui.pink.buttons .button:focus{background-color:#e10f85;color:#FFF;text-shadow:none}.ui.pink.button:active,.ui.pink.buttons .button:active{background-color:#c71f7e;color:#FFF;text-shadow:none}.ui.pink.active.button,.ui.pink.button .active.button:active,.ui.pink.buttons .active.button,.ui.pink.buttons .active.button:active{background-color:#ea158d;color:#FFF;text-shadow:none}.ui.basic.pink.button,.ui.basic.pink.buttons .button{box-shadow:0 0 0 1px #E03997 inset!important;color:#E03997!important}.ui.basic.pink.button:hover,.ui.basic.pink.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #e61a8d inset!important;color:#e61a8d!important}.ui.basic.pink.button:focus,.ui.basic.pink.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #e10f85 inset!important;color:#e61a8d!important}.ui.basic.pink.active.button,.ui.basic.pink.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #ea158d inset!important;color:#c71f7e!important}.ui.basic.pink.button:active,.ui.basic.pink.buttons .button:active{box-shadow:0 0 0 1px #c71f7e inset!important;color:#c71f7e!important}.ui.buttons:not(.vertical)>.basic.pink.button:not(:first-child){margin-left:-1px}.ui.inverted.pink.button,.ui.inverted.pink.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #FF8EDF inset!important;color:#FF8EDF}.ui.inverted.pink.button.active,.ui.inverted.pink.button:active,.ui.inverted.pink.button:focus,.ui.inverted.pink.button:hover,.ui.inverted.pink.buttons .button.active,.ui.inverted.pink.buttons .button:active,.ui.inverted.pink.buttons .button:focus,.ui.inverted.pink.buttons .button:hover{box-shadow:none!important;color:#FFF}.ui.inverted.pink.button:hover,.ui.inverted.pink.buttons .button:hover{background-color:#ff74d8}.ui.inverted.pink.button:focus,.ui.inverted.pink.buttons .button:focus{background-color:#ff65d3}.ui.inverted.pink.active.button,.ui.inverted.pink.buttons .active.button{background-color:#ff74d8}.ui.inverted.pink.button:active,.ui.inverted.pink.buttons .button:active{background-color:#ff5bd1}.ui.inverted.pink.basic.button,.ui.inverted.pink.basic.buttons .button,.ui.inverted.pink.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#FFF!important}.ui.inverted.pink.basic.button:hover,.ui.inverted.pink.basic.buttons .button:hover,.ui.inverted.pink.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff74d8 inset!important;color:#FF8EDF!important}.ui.inverted.pink.basic.button:focus,.ui.inverted.pink.basic.buttons .button:focus{box-shadow:0 0 0 2px #ff65d3 inset!important;color:#FF8EDF!important}.ui.inverted.pink.basic.active.button,.ui.inverted.pink.basic.buttons .active.button,.ui.inverted.pink.buttons .basic.active.button{box-shadow:0 0 0 2px #ff74d8 inset!important;color:#FF8EDF!important}.ui.inverted.pink.basic.button:active,.ui.inverted.pink.basic.buttons .button:active,.ui.inverted.pink.buttons .basic.button:active{box-shadow:0 0 0 2px #ff5bd1 inset!important;color:#FF8EDF!important}.ui.violet.button,.ui.violet.buttons .button{background-color:#6435C9;color:#FFF;text-shadow:none;background-image:none}.ui.violet.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.violet.button:hover,.ui.violet.buttons .button:hover{background-color:#5829bb;color:#FFF;text-shadow:none}.ui.violet.button:focus,.ui.violet.buttons .button:focus{background-color:#4f20b5;color:#FFF;text-shadow:none}.ui.violet.button:active,.ui.violet.buttons .button:active{background-color:#502aa1;color:#FFF;text-shadow:none}.ui.violet.active.button,.ui.violet.button .active.button:active,.ui.violet.buttons .active.button,.ui.violet.buttons .active.button:active{background-color:#5626bf;color:#FFF;text-shadow:none}.ui.basic.violet.button,.ui.basic.violet.buttons .button{box-shadow:0 0 0 1px #6435C9 inset!important;color:#6435C9!important}.ui.basic.violet.button:hover,.ui.basic.violet.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #5829bb inset!important;color:#5829bb!important}.ui.basic.violet.button:focus,.ui.basic.violet.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #4f20b5 inset!important;color:#5829bb!important}.ui.basic.violet.active.button,.ui.basic.violet.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #5626bf inset!important;color:#502aa1!important}.ui.basic.violet.button:active,.ui.basic.violet.buttons .button:active{box-shadow:0 0 0 1px #502aa1 inset!important;color:#502aa1!important}.ui.buttons:not(.vertical)>.basic.violet.button:not(:first-child){margin-left:-1px}.ui.inverted.violet.button,.ui.inverted.violet.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #A291FB inset!important;color:#A291FB}.ui.inverted.violet.button.active,.ui.inverted.violet.button:active,.ui.inverted.violet.button:focus,.ui.inverted.violet.button:hover,.ui.inverted.violet.buttons .button.active,.ui.inverted.violet.buttons .button:active,.ui.inverted.violet.buttons .button:focus,.ui.inverted.violet.buttons .button:hover{box-shadow:none!important;color:#FFF}.ui.inverted.violet.button:hover,.ui.inverted.violet.buttons .button:hover{background-color:#8a73ff}.ui.inverted.violet.button:focus,.ui.inverted.violet.buttons .button:focus{background-color:#7d64ff}.ui.inverted.violet.active.button,.ui.inverted.violet.buttons .active.button{background-color:#8a73ff}.ui.inverted.violet.button:active,.ui.inverted.violet.buttons .button:active{background-color:#7860f9}.ui.inverted.violet.basic.button,.ui.inverted.violet.basic.buttons .button,.ui.inverted.violet.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#FFF!important}.ui.inverted.violet.basic.button:hover,.ui.inverted.violet.basic.buttons .button:hover,.ui.inverted.violet.buttons .basic.button:hover{box-shadow:0 0 0 2px #8a73ff inset!important;color:#A291FB!important}.ui.inverted.violet.basic.button:focus,.ui.inverted.violet.basic.buttons .button:focus{box-shadow:0 0 0 2px #7d64ff inset!important;color:#A291FB!important}.ui.inverted.violet.basic.active.button,.ui.inverted.violet.basic.buttons .active.button,.ui.inverted.violet.buttons .basic.active.button{box-shadow:0 0 0 2px #8a73ff inset!important;color:#A291FB!important}.ui.inverted.violet.basic.button:active,.ui.inverted.violet.basic.buttons .button:active,.ui.inverted.violet.buttons .basic.button:active{box-shadow:0 0 0 2px #7860f9 inset!important;color:#A291FB!important}.ui.purple.button,.ui.purple.buttons .button{background-color:#A333C8;color:#FFF;text-shadow:none;background-image:none}.ui.purple.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.purple.button:hover,.ui.purple.buttons .button:hover{background-color:#9627ba;color:#FFF;text-shadow:none}.ui.purple.button:focus,.ui.purple.buttons .button:focus{background-color:#8f1eb4;color:#FFF;text-shadow:none}.ui.purple.button:active,.ui.purple.buttons .button:active{background-color:#82299f;color:#FFF;text-shadow:none}.ui.purple.active.button,.ui.purple.button .active.button:active,.ui.purple.buttons .active.button,.ui.purple.buttons .active.button:active{background-color:#9724be;color:#FFF;text-shadow:none}.ui.basic.purple.button,.ui.basic.purple.buttons .button{box-shadow:0 0 0 1px #A333C8 inset!important;color:#A333C8!important}.ui.basic.purple.button:hover,.ui.basic.purple.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #9627ba inset!important;color:#9627ba!important}.ui.basic.purple.button:focus,.ui.basic.purple.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #8f1eb4 inset!important;color:#9627ba!important}.ui.basic.purple.active.button,.ui.basic.purple.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #9724be inset!important;color:#82299f!important}.ui.basic.purple.button:active,.ui.basic.purple.buttons .button:active{box-shadow:0 0 0 1px #82299f inset!important;color:#82299f!important}.ui.buttons:not(.vertical)>.basic.purple.button:not(:first-child){margin-left:-1px}.ui.inverted.purple.button,.ui.inverted.purple.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #DC73FF inset!important;color:#DC73FF}.ui.inverted.purple.button.active,.ui.inverted.purple.button:active,.ui.inverted.purple.button:focus,.ui.inverted.purple.button:hover,.ui.inverted.purple.buttons .button.active,.ui.inverted.purple.buttons .button:active,.ui.inverted.purple.buttons .button:focus,.ui.inverted.purple.buttons .button:hover{box-shadow:none!important;color:#FFF}.ui.inverted.purple.button:hover,.ui.inverted.purple.buttons .button:hover{background-color:#d65aff}.ui.inverted.purple.button:focus,.ui.inverted.purple.buttons .button:focus{background-color:#d24aff}.ui.inverted.purple.active.button,.ui.inverted.purple.buttons .active.button{background-color:#d65aff}.ui.inverted.purple.button:active,.ui.inverted.purple.buttons .button:active{background-color:#cf40ff}.ui.inverted.purple.basic.button,.ui.inverted.purple.basic.buttons .button,.ui.inverted.purple.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#FFF!important}.ui.inverted.purple.basic.button:hover,.ui.inverted.purple.basic.buttons .button:hover,.ui.inverted.purple.buttons .basic.button:hover{box-shadow:0 0 0 2px #d65aff inset!important;color:#DC73FF!important}.ui.inverted.purple.basic.button:focus,.ui.inverted.purple.basic.buttons .button:focus{box-shadow:0 0 0 2px #d24aff inset!important;color:#DC73FF!important}.ui.inverted.purple.basic.active.button,.ui.inverted.purple.basic.buttons .active.button,.ui.inverted.purple.buttons .basic.active.button{box-shadow:0 0 0 2px #d65aff inset!important;color:#DC73FF!important}.ui.inverted.purple.basic.button:active,.ui.inverted.purple.basic.buttons .button:active,.ui.inverted.purple.buttons .basic.button:active{box-shadow:0 0 0 2px #cf40ff inset!important;color:#DC73FF!important}.ui.red.button,.ui.red.buttons .button{background-color:#DB2828;color:#FFF;text-shadow:none;background-image:none}.ui.red.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.red.button:hover,.ui.red.buttons .button:hover{background-color:#d01919;color:#FFF;text-shadow:none}.ui.red.button:focus,.ui.red.buttons .button:focus{background-color:#ca1010;color:#FFF;text-shadow:none}.ui.red.button:active,.ui.red.buttons .button:active{background-color:#b21e1e;color:#FFF;text-shadow:none}.ui.red.active.button,.ui.red.button .active.button:active,.ui.red.buttons .active.button,.ui.red.buttons .active.button:active{background-color:#d41515;color:#FFF;text-shadow:none}.ui.basic.red.button,.ui.basic.red.buttons .button{box-shadow:0 0 0 1px #DB2828 inset!important;color:#DB2828!important}.ui.basic.red.button:hover,.ui.basic.red.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #d01919 inset!important;color:#d01919!important}.ui.basic.red.button:focus,.ui.basic.red.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #ca1010 inset!important;color:#d01919!important}.ui.basic.red.active.button,.ui.basic.red.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #d41515 inset!important;color:#b21e1e!important}.ui.basic.red.button:active,.ui.basic.red.buttons .button:active{box-shadow:0 0 0 1px #b21e1e inset!important;color:#b21e1e!important}.ui.buttons:not(.vertical)>.basic.red.button:not(:first-child){margin-left:-1px}.ui.inverted.red.button,.ui.inverted.red.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #FF695E inset!important;color:#FF695E}.ui.inverted.red.button.active,.ui.inverted.red.button:active,.ui.inverted.red.button:focus,.ui.inverted.red.button:hover,.ui.inverted.red.buttons .button.active,.ui.inverted.red.buttons .button:active,.ui.inverted.red.buttons .button:focus,.ui.inverted.red.buttons .button:hover{box-shadow:none!important;color:#FFF}.ui.inverted.red.button:hover,.ui.inverted.red.buttons .button:hover{background-color:#ff5144}.ui.inverted.red.button:focus,.ui.inverted.red.buttons .button:focus{background-color:#ff4335}.ui.inverted.red.active.button,.ui.inverted.red.buttons .active.button{background-color:#ff5144}.ui.inverted.red.button:active,.ui.inverted.red.buttons .button:active{background-color:#ff392b}.ui.inverted.red.basic.button,.ui.inverted.red.basic.buttons .button,.ui.inverted.red.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#FFF!important}.ui.inverted.red.basic.button:hover,.ui.inverted.red.basic.buttons .button:hover,.ui.inverted.red.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff5144 inset!important;color:#FF695E!important}.ui.inverted.red.basic.button:focus,.ui.inverted.red.basic.buttons .button:focus{box-shadow:0 0 0 2px #ff4335 inset!important;color:#FF695E!important}.ui.inverted.red.basic.active.button,.ui.inverted.red.basic.buttons .active.button,.ui.inverted.red.buttons .basic.active.button{box-shadow:0 0 0 2px #ff5144 inset!important;color:#FF695E!important}.ui.inverted.red.basic.button:active,.ui.inverted.red.basic.buttons .button:active,.ui.inverted.red.buttons .basic.button:active{box-shadow:0 0 0 2px #ff392b inset!important;color:#FF695E!important}.ui.teal.button,.ui.teal.buttons .button{background-color:#00B5AD;color:#FFF;text-shadow:none;background-image:none}.ui.teal.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.teal.button:hover,.ui.teal.buttons .button:hover{background-color:#009c95;color:#FFF;text-shadow:none}.ui.teal.button:focus,.ui.teal.buttons .button:focus{background-color:#008c86;color:#FFF;text-shadow:none}.ui.teal.button:active,.ui.teal.buttons .button:active{background-color:#00827c;color:#FFF;text-shadow:none}.ui.teal.active.button,.ui.teal.button .active.button:active,.ui.teal.buttons .active.button,.ui.teal.buttons .active.button:active{background-color:#009c95;color:#FFF;text-shadow:none}.ui.basic.teal.button,.ui.basic.teal.buttons .button{box-shadow:0 0 0 1px #00B5AD inset!important;color:#00B5AD!important}.ui.basic.teal.button:hover,.ui.basic.teal.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #009c95 inset!important;color:#009c95!important}.ui.basic.teal.button:focus,.ui.basic.teal.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #008c86 inset!important;color:#009c95!important}.ui.basic.teal.active.button,.ui.basic.teal.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #009c95 inset!important;color:#00827c!important}.ui.basic.teal.button:active,.ui.basic.teal.buttons .button:active{box-shadow:0 0 0 1px #00827c inset!important;color:#00827c!important}.ui.buttons:not(.vertical)>.basic.teal.button:not(:first-child){margin-left:-1px}.ui.inverted.teal.button,.ui.inverted.teal.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #6DFFFF inset!important;color:#6DFFFF}.ui.inverted.teal.button.active,.ui.inverted.teal.button:active,.ui.inverted.teal.button:focus,.ui.inverted.teal.button:hover,.ui.inverted.teal.buttons .button.active,.ui.inverted.teal.buttons .button:active,.ui.inverted.teal.buttons .button:focus,.ui.inverted.teal.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.teal.button:hover,.ui.inverted.teal.buttons .button:hover{background-color:#54ffff}.ui.inverted.teal.button:focus,.ui.inverted.teal.buttons .button:focus{background-color:#4ff}.ui.inverted.teal.active.button,.ui.inverted.teal.buttons .active.button{background-color:#54ffff}.ui.inverted.teal.button:active,.ui.inverted.teal.buttons .button:active{background-color:#3affff}.ui.inverted.teal.basic.button,.ui.inverted.teal.basic.buttons .button,.ui.inverted.teal.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#FFF!important}.ui.inverted.teal.basic.button:hover,.ui.inverted.teal.basic.buttons .button:hover,.ui.inverted.teal.buttons .basic.button:hover{box-shadow:0 0 0 2px #54ffff inset!important;color:#6DFFFF!important}.ui.inverted.teal.basic.button:focus,.ui.inverted.teal.basic.buttons .button:focus{box-shadow:0 0 0 2px #4ff inset!important;color:#6DFFFF!important}.ui.inverted.teal.basic.active.button,.ui.inverted.teal.basic.buttons .active.button,.ui.inverted.teal.buttons .basic.active.button{box-shadow:0 0 0 2px #54ffff inset!important;color:#6DFFFF!important}.ui.inverted.teal.basic.button:active,.ui.inverted.teal.basic.buttons .button:active,.ui.inverted.teal.buttons .basic.button:active{box-shadow:0 0 0 2px #3affff inset!important;color:#6DFFFF!important}.ui.olive.button,.ui.olive.buttons .button{background-color:#B5CC18;color:#FFF;text-shadow:none;background-image:none}.ui.olive.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.olive.button:hover,.ui.olive.buttons .button:hover{background-color:#a7bd0d;color:#FFF;text-shadow:none}.ui.olive.button:focus,.ui.olive.buttons .button:focus{background-color:#a0b605;color:#FFF;text-shadow:none}.ui.olive.button:active,.ui.olive.buttons .button:active{background-color:#8d9e13;color:#FFF;text-shadow:none}.ui.olive.active.button,.ui.olive.button .active.button:active,.ui.olive.buttons .active.button,.ui.olive.buttons .active.button:active{background-color:#aac109;color:#FFF;text-shadow:none}.ui.basic.olive.button,.ui.basic.olive.buttons .button{box-shadow:0 0 0 1px #B5CC18 inset!important;color:#B5CC18!important}.ui.basic.olive.button:hover,.ui.basic.olive.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #a7bd0d inset!important;color:#a7bd0d!important}.ui.basic.olive.button:focus,.ui.basic.olive.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #a0b605 inset!important;color:#a7bd0d!important}.ui.basic.olive.active.button,.ui.basic.olive.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #aac109 inset!important;color:#8d9e13!important}.ui.basic.olive.button:active,.ui.basic.olive.buttons .button:active{box-shadow:0 0 0 1px #8d9e13 inset!important;color:#8d9e13!important}.ui.buttons:not(.vertical)>.basic.olive.button:not(:first-child){margin-left:-1px}.ui.inverted.olive.button,.ui.inverted.olive.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #D9E778 inset!important;color:#D9E778}.ui.inverted.olive.button.active,.ui.inverted.olive.button:active,.ui.inverted.olive.button:focus,.ui.inverted.olive.button:hover,.ui.inverted.olive.buttons .button.active,.ui.inverted.olive.buttons .button:active,.ui.inverted.olive.buttons .button:focus,.ui.inverted.olive.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.olive.button:hover,.ui.inverted.olive.buttons .button:hover{background-color:#d8ea5c}.ui.inverted.olive.button:focus,.ui.inverted.olive.buttons .button:focus{background-color:#daef47}.ui.inverted.olive.active.button,.ui.inverted.olive.buttons .active.button{background-color:#daed59}.ui.inverted.olive.button:active,.ui.inverted.olive.buttons .button:active{background-color:#cddf4d}.ui.inverted.olive.basic.button,.ui.inverted.olive.basic.buttons .button,.ui.inverted.olive.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#FFF!important}.ui.inverted.olive.basic.button:hover,.ui.inverted.olive.basic.buttons .button:hover,.ui.inverted.olive.buttons .basic.button:hover{box-shadow:0 0 0 2px #d8ea5c inset!important;color:#D9E778!important}.ui.inverted.olive.basic.button:focus,.ui.inverted.olive.basic.buttons .button:focus{box-shadow:0 0 0 2px #daef47 inset!important;color:#D9E778!important}.ui.inverted.olive.basic.active.button,.ui.inverted.olive.basic.buttons .active.button,.ui.inverted.olive.buttons .basic.active.button{box-shadow:0 0 0 2px #daed59 inset!important;color:#D9E778!important}.ui.inverted.olive.basic.button:active,.ui.inverted.olive.basic.buttons .button:active,.ui.inverted.olive.buttons .basic.button:active{box-shadow:0 0 0 2px #cddf4d inset!important;color:#D9E778!important}.ui.yellow.button,.ui.yellow.buttons .button{background-color:#FBBD08;color:#FFF;text-shadow:none;background-image:none}.ui.yellow.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.yellow.button:hover,.ui.yellow.buttons .button:hover{background-color:#eaae00;color:#FFF;text-shadow:none}.ui.yellow.button:focus,.ui.yellow.buttons .button:focus{background-color:#daa300;color:#FFF;text-shadow:none}.ui.yellow.button:active,.ui.yellow.buttons .button:active{background-color:#cd9903;color:#FFF;text-shadow:none}.ui.yellow.active.button,.ui.yellow.button .active.button:active,.ui.yellow.buttons .active.button,.ui.yellow.buttons .active.button:active{background-color:#eaae00;color:#FFF;text-shadow:none}.ui.basic.yellow.button,.ui.basic.yellow.buttons .button{box-shadow:0 0 0 1px #FBBD08 inset!important;color:#FBBD08!important}.ui.basic.yellow.button:hover,.ui.basic.yellow.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #eaae00 inset!important;color:#eaae00!important}.ui.basic.yellow.button:focus,.ui.basic.yellow.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #daa300 inset!important;color:#eaae00!important}.ui.basic.yellow.active.button,.ui.basic.yellow.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #eaae00 inset!important;color:#cd9903!important}.ui.basic.yellow.button:active,.ui.basic.yellow.buttons .button:active{box-shadow:0 0 0 1px #cd9903 inset!important;color:#cd9903!important}.ui.buttons:not(.vertical)>.basic.yellow.button:not(:first-child){margin-left:-1px}.ui.inverted.yellow.button,.ui.inverted.yellow.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #FFE21F inset!important;color:#FFE21F}.ui.inverted.yellow.button.active,.ui.inverted.yellow.button:active,.ui.inverted.yellow.button:focus,.ui.inverted.yellow.button:hover,.ui.inverted.yellow.buttons .button.active,.ui.inverted.yellow.buttons .button:active,.ui.inverted.yellow.buttons .button:focus,.ui.inverted.yellow.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.yellow.button:hover,.ui.inverted.yellow.buttons .button:hover{background-color:#ffdf05}.ui.inverted.yellow.button:focus,.ui.inverted.yellow.buttons .button:focus{background-color:#f5d500}.ui.inverted.yellow.active.button,.ui.inverted.yellow.buttons .active.button{background-color:#ffdf05}.ui.inverted.yellow.button:active,.ui.inverted.yellow.buttons .button:active{background-color:#ebcd00}.ui.inverted.yellow.basic.button,.ui.inverted.yellow.basic.buttons .button,.ui.inverted.yellow.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#FFF!important}.ui.inverted.yellow.basic.button:hover,.ui.inverted.yellow.basic.buttons .button:hover,.ui.inverted.yellow.buttons .basic.button:hover{box-shadow:0 0 0 2px #ffdf05 inset!important;color:#FFE21F!important}.ui.inverted.yellow.basic.button:focus,.ui.inverted.yellow.basic.buttons .button:focus{box-shadow:0 0 0 2px #f5d500 inset!important;color:#FFE21F!important}.ui.inverted.yellow.basic.active.button,.ui.inverted.yellow.basic.buttons .active.button,.ui.inverted.yellow.buttons .basic.active.button{box-shadow:0 0 0 2px #ffdf05 inset!important;color:#FFE21F!important}.ui.inverted.yellow.basic.button:active,.ui.inverted.yellow.basic.buttons .button:active,.ui.inverted.yellow.buttons .basic.button:active{box-shadow:0 0 0 2px #ebcd00 inset!important;color:#FFE21F!important}.ui.primary.button,.ui.primary.buttons .button{background-color:#2185D0;color:#FFF;text-shadow:none;background-image:none}.ui.primary.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.primary.button:hover,.ui.primary.buttons .button:hover{background-color:#1678c2;color:#FFF;text-shadow:none}.ui.primary.button:focus,.ui.primary.buttons .button:focus{background-color:#0d71bb;color:#FFF;text-shadow:none}.ui.primary.button:active,.ui.primary.buttons .button:active{background-color:#1a69a4;color:#FFF;text-shadow:none}.ui.primary.active.button,.ui.primary.buttons .active.button{background-color:#1279c6;color:#FFF;text-shadow:none}.ui.secondary.button,.ui.secondary.buttons .button{background-color:#1B1C1D;color:#FFF;text-shadow:none;background-image:none}.ui.secondary.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.secondary.button:hover,.ui.secondary.buttons .button:hover{background-color:#27292a;color:#FFF;text-shadow:none}.ui.secondary.button:focus,.ui.secondary.buttons .button:focus{background-color:#2e3032;color:#FFF;text-shadow:none}.ui.secondary.button:active,.ui.secondary.buttons .button:active{background-color:#343637;color:#FFF;text-shadow:none}.ui.secondary.active.button,.ui.secondary.buttons .active.button{background-color:#27292a;color:#FFF;text-shadow:none}.ui.positive.button,.ui.positive.buttons .button{background-color:#21BA45!important;color:#FFF;text-shadow:none;background-image:none}.ui.positive.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.positive.button:hover,.ui.positive.buttons .button:hover{background-color:#16ab39!important;color:#FFF;text-shadow:none}.ui.positive.button:focus,.ui.positive.buttons .button:focus{background-color:#0ea432!important;color:#FFF;text-shadow:none}.ui.positive.button:active,.ui.positive.buttons .button:active{background-color:#198f35!important;color:#FFF;text-shadow:none}.ui.positive.active.button,.ui.positive.buttons .active.button,.ui.positive.buttons .active.button:active{background-color:#13ae38;color:#FFF;text-shadow:none}.ui.negative.button,.ui.negative.buttons .button{background-color:#DB2828!important;color:#FFF;text-shadow:none;background-image:none}.ui.negative.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.negative.button:hover,.ui.negative.buttons .button:hover{background-color:#d01919!important;color:#FFF;text-shadow:none}.ui.negative.button:focus,.ui.negative.buttons .button:focus{background-color:#ca1010!important;color:#FFF;text-shadow:none}.ui.negative.button:active,.ui.negative.buttons .button:active{background-color:#b21e1e!important;color:#FFF;text-shadow:none}.ui.negative.active.button,.ui.negative.buttons .active.button,.ui.negative.buttons .active.button:active{background-color:#d41515;color:#FFF;text-shadow:none}.ui.buttons{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;font-size:0;vertical-align:baseline;margin:0 .25em 0 0}.ui.buttons:not(.basic):not(.inverted){box-shadow:none}.ui.buttons:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui.buttons .button{-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;border-radius:0;margin:0}.ui.buttons:not(.basic):not(.inverted)>.button,.ui.buttons>.ui.button:not(.basic):not(.inverted){box-shadow:0 0 0 1px transparent inset,0 0 0 0 rgba(34,36,38,.15) inset}.ui.buttons .button:first-child{border-left:none;margin-left:0;border-top-left-radius:.28571429rem;border-bottom-left-radius:.28571429rem}.ui.buttons .button:last-child{border-top-right-radius:.28571429rem;border-bottom-right-radius:.28571429rem}.ui.vertical.buttons{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.vertical.buttons .button{display:block;float:none;width:100%;margin:0;box-shadow:none}.ui.vertical.buttons .button:first-child,.ui.vertical.buttons .huge.button:first-child,.ui.vertical.buttons .massive.button:first-child,.ui.vertical.buttons .mini.button:first-child,.ui.vertical.buttons .small.button:first-child,.ui.vertical.buttons .tiny.button:first-child{border-radius:.28571429rem .28571429rem 0 0}.ui.vertical.buttons .button:last-child,.ui.vertical.buttons .gigantic.button:last-child,.ui.vertical.buttons .huge.button:last-child,.ui.vertical.buttons .massive.button:last-child,.ui.vertical.buttons .mini.button:last-child,.ui.vertical.buttons .small.button:last-child,.ui.vertical.buttons .tiny.button:last-child{margin-bottom:0;border-radius:0 0 .28571429rem .28571429rem}.ui.container{display:block;max-width:100%!important}@media only screen and (max-width:767px){.ui.container{width:auto!important;margin-left:1em!important;margin-right:1em!important}.ui.grid.container,.ui.relaxed.grid.container,.ui.very.relaxed.grid.container{width:auto!important}}@media only screen and (min-width:768px) and (max-width:991px){.ui.container{width:723px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{width:calc(723px + 2rem)!important}.ui.relaxed.grid.container{width:calc(723px + 3rem)!important}.ui.very.relaxed.grid.container{width:calc(723px + 5rem)!important}}@media only screen and (min-width:992px) and (max-width:1199px){.ui.container{width:933px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{width:calc(933px + 2rem)!important}.ui.relaxed.grid.container{width:calc(933px + 3rem)!important}.ui.very.relaxed.grid.container{width:calc(933px + 5rem)!important}}@media only screen and (min-width:1200px){.ui.container{width:1127px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{width:calc(1127px + 2rem)!important}.ui.relaxed.grid.container{width:calc(1127px + 3rem)!important}.ui.very.relaxed.grid.container{width:calc(1127px + 5rem)!important}}.ui.text.container{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;max-width:700px!important;line-height:1.5;font-size:1.14285714rem}.ui.fluid.container{width:100%}.ui[class*="left aligned"].container{text-align:left}.ui[class*="center aligned"].container{text-align:center}.ui[class*="right aligned"].container{text-align:right}.ui.justified.container{text-align:justify;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.ui.divider{margin:1rem 0;line-height:1;height:0;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:rgba(0,0,0,.85);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;font-size:1rem}.ui.divider:not(.vertical):not(.horizontal){border-top:1px solid rgba(34,36,38,.15);border-bottom:1px solid rgba(255,255,255,.1)}.ui.grid>.column+.divider,.ui.grid>.row>.column+.divider{left:auto}.ui.horizontal.divider{display:table;white-space:nowrap;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center}.ui.horizontal.divider:after,.ui.horizontal.divider:before{content:'';display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC)}.ui.horizontal.divider:before{background-position:right 1em top 50%}.ui.horizontal.divider:after{background-position:left 1em top 50%}.ui.vertical.divider{position:absolute;z-index:2;top:50%;left:50%;margin:0;padding:0;width:auto;height:50%;line-height:0;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.ui.vertical.divider:after,.ui.vertical.divider:before{position:absolute;left:50%;content:'';z-index:3;border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(255,255,255,.1);width:0;height:calc(100% - 1rem)}.ui.vertical.divider:before{top:-100%}.ui.vertical.divider:after{top:auto;bottom:0}@media only screen and (max-width:767px){.ui.grid .stackable.row .ui.vertical.divider,.ui.stackable.grid .ui.vertical.divider{display:table;white-space:nowrap;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center;position:static;top:0;left:0;-webkit-transform:none;-ms-transform:none;transform:none}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:before{left:0;border-left:none;border-right:none;content:'';display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC)}.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:before{background-position:right 1em top 50%}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:after{background-position:left 1em top 50%}}.ui.divider>.icon{margin:0;font-size:1rem;height:1em;vertical-align:middle}.ui.hidden.divider{border-color:transparent!important}.ui.hidden.divider:after,.ui.hidden.divider:before{display:none}.ui.divider.inverted,.ui.horizontal.inverted.divider,.ui.vertical.inverted.divider{color:#FFF}.ui.divider.inverted,.ui.divider.inverted:after,.ui.divider.inverted:before{border-top-color:rgba(34,36,38,.15)!important;border-left-color:rgba(34,36,38,.15)!important;border-bottom-color:rgba(255,255,255,.15)!important;border-right-color:rgba(255,255,255,.15)!important}.ui.fitted.divider{margin:0}.ui.clearing.divider{clear:both}.ui.section.divider{margin-top:2rem;margin-bottom:2rem}i.flag:not(.icon){display:inline-block;width:16px;height:11px;line-height:11px;vertical-align:baseline;margin:0 .5em 0 0;text-decoration:inherit;speak:none;font-smoothing:antialiased;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag:not(.icon):before{display:inline-block;content:'';background:url(themes/default/assets/images/flags.png) no-repeat;width:16px;height:11px}i.flag.ad:before,i.flag.andorra:before{background-position:0 0}i.flag.ae:before,i.flag.uae:before,i.flag.united.arab.emirates:before{background-position:0 -26px}i.flag.af:before,i.flag.afghanistan:before{background-position:0 -52px}i.flag.ag:before,i.flag.antigua:before{background-position:0 -78px}i.flag.ai:before,i.flag.anguilla:before{background-position:0 -104px}i.flag.al:before,i.flag.albania:before{background-position:0 -130px}i.flag.am:before,i.flag.armenia:before{background-position:0 -156px}i.flag.an:before,i.flag.netherlands.antilles:before{background-position:0 -182px}i.flag.angola:before,i.flag.ao:before{background-position:0 -208px}i.flag.ar:before,i.flag.argentina:before{background-position:0 -234px}i.flag.american.samoa:before,i.flag.as:before{background-position:0 -260px}i.flag.at:before,i.flag.austria:before{background-position:0 -286px}i.flag.au:before,i.flag.australia:before{background-position:0 -312px}i.flag.aruba:before,i.flag.aw:before{background-position:0 -338px}i.flag.aland.islands:before,i.flag.ax:before{background-position:0 -364px}i.flag.az:before,i.flag.azerbaijan:before{background-position:0 -390px}i.flag.ba:before,i.flag.bosnia:before{background-position:0 -416px}i.flag.barbados:before,i.flag.bb:before{background-position:0 -442px}i.flag.bangladesh:before,i.flag.bd:before{background-position:0 -468px}i.flag.be:before,i.flag.belgium:before{background-position:0 -494px}i.flag.bf:before,i.flag.burkina.faso:before{background-position:0 -520px}i.flag.bg:before,i.flag.bulgaria:before{background-position:0 -546px}i.flag.bahrain:before,i.flag.bh:before{background-position:0 -572px}i.flag.bi:before,i.flag.burundi:before{background-position:0 -598px}i.flag.benin:before,i.flag.bj:before{background-position:0 -624px}i.flag.bermuda:before,i.flag.bm:before{background-position:0 -650px}i.flag.bn:before,i.flag.brunei:before{background-position:0 -676px}i.flag.bo:before,i.flag.bolivia:before{background-position:0 -702px}i.flag.br:before,i.flag.brazil:before{background-position:0 -728px}i.flag.bahamas:before,i.flag.bs:before{background-position:0 -754px}i.flag.bhutan:before,i.flag.bt:before{background-position:0 -780px}i.flag.bouvet.island:before,i.flag.bv:before{background-position:0 -806px}i.flag.botswana:before,i.flag.bw:before{background-position:0 -832px}i.flag.belarus:before,i.flag.by:before{background-position:0 -858px}i.flag.belize:before,i.flag.bz:before{background-position:0 -884px}i.flag.ca:before,i.flag.canada:before{background-position:0 -910px}i.flag.cc:before,i.flag.cocos.islands:before{background-position:0 -962px}i.flag.cd:before,i.flag.congo:before{background-position:0 -988px}i.flag.central.african.republic:before,i.flag.cf:before{background-position:0 -1014px}i.flag.cg:before,i.flag.congo.brazzaville:before{background-position:0 -1040px}i.flag.ch:before,i.flag.switzerland:before{background-position:0 -1066px}i.flag.ci:before,i.flag.cote.divoire:before{background-position:0 -1092px}i.flag.ck:before,i.flag.cook.islands:before{background-position:0 -1118px}i.flag.chile:before,i.flag.cl:before{background-position:0 -1144px}i.flag.cameroon:before,i.flag.cm:before{background-position:0 -1170px}i.flag.china:before,i.flag.cn:before{background-position:0 -1196px}i.flag.co:before,i.flag.colombia:before{background-position:0 -1222px}i.flag.costa.rica:before,i.flag.cr:before{background-position:0 -1248px}i.flag.cs:before,i.flag.serbia:before{background-position:0 -1274px}i.flag.cu:before,i.flag.cuba:before{background-position:0 -1300px}i.flag.cape.verde:before,i.flag.cv:before{background-position:0 -1326px}i.flag.christmas.island:before,i.flag.cx:before{background-position:0 -1352px}i.flag.cy:before,i.flag.cyprus:before{background-position:0 -1378px}i.flag.cz:before,i.flag.czech.republic:before{background-position:0 -1404px}i.flag.de:before,i.flag.germany:before{background-position:0 -1430px}i.flag.dj:before,i.flag.djibouti:before{background-position:0 -1456px}i.flag.denmark:before,i.flag.dk:before{background-position:0 -1482px}i.flag.dm:before,i.flag.dominica:before{background-position:0 -1508px}i.flag.do:before,i.flag.dominican.republic:before{background-position:0 -1534px}i.flag.algeria:before,i.flag.dz:before{background-position:0 -1560px}i.flag.ec:before,i.flag.ecuador:before{background-position:0 -1586px}i.flag.ee:before,i.flag.estonia:before{background-position:0 -1612px}i.flag.eg:before,i.flag.egypt:before{background-position:0 -1638px}i.flag.eh:before,i.flag.western.sahara:before{background-position:0 -1664px}i.flag.er:before,i.flag.eritrea:before{background-position:0 -1716px}i.flag.es:before,i.flag.spain:before{background-position:0 -1742px}i.flag.et:before,i.flag.ethiopia:before{background-position:0 -1768px}i.flag.eu:before,i.flag.european.union:before{background-position:0 -1794px}i.flag.fi:before,i.flag.finland:before{background-position:0 -1846px}i.flag.fiji:before,i.flag.fj:before{background-position:0 -1872px}i.flag.falkland.islands:before,i.flag.fk:before{background-position:0 -1898px}i.flag.fm:before,i.flag.micronesia:before{background-position:0 -1924px}i.flag.faroe.islands:before,i.flag.fo:before{background-position:0 -1950px}i.flag.fr:before,i.flag.france:before{background-position:0 -1976px}i.flag.ga:before,i.flag.gabon:before{background-position:-36px 0}i.flag.gb:before,i.flag.united.kingdom:before{background-position:-36px -26px}i.flag.gd:before,i.flag.grenada:before{background-position:-36px -52px}i.flag.ge:before,i.flag.georgia:before{background-position:-36px -78px}i.flag.french.guiana:before,i.flag.gf:before{background-position:-36px -104px}i.flag.gh:before,i.flag.ghana:before{background-position:-36px -130px}i.flag.gi:before,i.flag.gibraltar:before{background-position:-36px -156px}i.flag.gl:before,i.flag.greenland:before{background-position:-36px -182px}i.flag.gambia:before,i.flag.gm:before{background-position:-36px -208px}i.flag.gn:before,i.flag.guinea:before{background-position:-36px -234px}i.flag.gp:before,i.flag.guadeloupe:before{background-position:-36px -260px}i.flag.equatorial.guinea:before,i.flag.gq:before{background-position:-36px -286px}i.flag.gr:before,i.flag.greece:before{background-position:-36px -312px}i.flag.gs:before,i.flag.sandwich.islands:before{background-position:-36px -338px}i.flag.gt:before,i.flag.guatemala:before{background-position:-36px -364px}i.flag.gu:before,i.flag.guam:before{background-position:-36px -390px}i.flag.guinea-bissau:before,i.flag.gw:before{background-position:-36px -416px}i.flag.guyana:before,i.flag.gy:before{background-position:-36px -442px}i.flag.hk:before,i.flag.hong.kong:before{background-position:-36px -468px}i.flag.heard.island:before,i.flag.hm:before{background-position:-36px -494px}i.flag.hn:before,i.flag.honduras:before{background-position:-36px -520px}i.flag.croatia:before,i.flag.hr:before{background-position:-36px -546px}i.flag.haiti:before,i.flag.ht:before{background-position:-36px -572px}i.flag.hu:before,i.flag.hungary:before{background-position:-36px -598px}i.flag.id:before,i.flag.indonesia:before{background-position:-36px -624px}i.flag.ie:before,i.flag.ireland:before{background-position:-36px -650px}i.flag.il:before,i.flag.israel:before{background-position:-36px -676px}i.flag.in:before,i.flag.india:before{background-position:-36px -702px}i.flag.indian.ocean.territory:before,i.flag.io:before{background-position:-36px -728px}i.flag.iq:before,i.flag.iraq:before{background-position:-36px -754px}i.flag.ir:before,i.flag.iran:before{background-position:-36px -780px}i.flag.iceland:before,i.flag.is:before{background-position:-36px -806px}i.flag.it:before,i.flag.italy:before{background-position:-36px -832px}i.flag.jamaica:before,i.flag.jm:before{background-position:-36px -858px}i.flag.jo:before,i.flag.jordan:before{background-position:-36px -884px}i.flag.japan:before,i.flag.jp:before{background-position:-36px -910px}i.flag.ke:before,i.flag.kenya:before{background-position:-36px -936px}i.flag.kg:before,i.flag.kyrgyzstan:before{background-position:-36px -962px}i.flag.cambodia:before,i.flag.kh:before{background-position:-36px -988px}i.flag.ki:before,i.flag.kiribati:before{background-position:-36px -1014px}i.flag.comoros:before,i.flag.km:before{background-position:-36px -1040px}i.flag.kn:before,i.flag.saint.kitts.and.nevis:before{background-position:-36px -1066px}i.flag.kp:before,i.flag.north.korea:before{background-position:-36px -1092px}i.flag.kr:before,i.flag.south.korea:before{background-position:-36px -1118px}i.flag.kuwait:before,i.flag.kw:before{background-position:-36px -1144px}i.flag.cayman.islands:before,i.flag.ky:before{background-position:-36px -1170px}i.flag.kazakhstan:before,i.flag.kz:before{background-position:-36px -1196px}i.flag.la:before,i.flag.laos:before{background-position:-36px -1222px}i.flag.lb:before,i.flag.lebanon:before{background-position:-36px -1248px}i.flag.lc:before,i.flag.saint.lucia:before{background-position:-36px -1274px}i.flag.li:before,i.flag.liechtenstein:before{background-position:-36px -1300px}i.flag.lk:before,i.flag.sri.lanka:before{background-position:-36px -1326px}i.flag.liberia:before,i.flag.lr:before{background-position:-36px -1352px}i.flag.lesotho:before,i.flag.ls:before{background-position:-36px -1378px}i.flag.lithuania:before,i.flag.lt:before{background-position:-36px -1404px}i.flag.lu:before,i.flag.luxembourg:before{background-position:-36px -1430px}i.flag.latvia:before,i.flag.lv:before{background-position:-36px -1456px}i.flag.libya:before,i.flag.ly:before{background-position:-36px -1482px}i.flag.ma:before,i.flag.morocco:before{background-position:-36px -1508px}i.flag.mc:before,i.flag.monaco:before{background-position:-36px -1534px}i.flag.md:before,i.flag.moldova:before{background-position:-36px -1560px}i.flag.me:before,i.flag.montenegro:before{background-position:-36px -1586px}i.flag.madagascar:before,i.flag.mg:before{background-position:-36px -1613px}i.flag.marshall.islands:before,i.flag.mh:before{background-position:-36px -1639px}i.flag.macedonia:before,i.flag.mk:before{background-position:-36px -1665px}i.flag.mali:before,i.flag.ml:before{background-position:-36px -1691px}i.flag.burma:before,i.flag.mm:before,i.flag.myanmar:before{background-position:-36px -1717px}i.flag.mn:before,i.flag.mongolia:before{background-position:-36px -1743px}i.flag.macau:before,i.flag.mo:before{background-position:-36px -1769px}i.flag.mp:before,i.flag.northern.mariana.islands:before{background-position:-36px -1795px}i.flag.martinique:before,i.flag.mq:before{background-position:-36px -1821px}i.flag.mauritania:before,i.flag.mr:before{background-position:-36px -1847px}i.flag.montserrat:before,i.flag.ms:before{background-position:-36px -1873px}i.flag.malta:before,i.flag.mt:before{background-position:-36px -1899px}i.flag.mauritius:before,i.flag.mu:before{background-position:-36px -1925px}i.flag.maldives:before,i.flag.mv:before{background-position:-36px -1951px}i.flag.malawi:before,i.flag.mw:before{background-position:-36px -1977px}i.flag.mexico:before,i.flag.mx:before{background-position:-72px 0}i.flag.malaysia:before,i.flag.my:before{background-position:-72px -26px}i.flag.mozambique:before,i.flag.mz:before{background-position:-72px -52px}i.flag.na:before,i.flag.namibia:before{background-position:-72px -78px}i.flag.nc:before,i.flag.new.caledonia:before{background-position:-72px -104px}i.flag.ne:before,i.flag.niger:before{background-position:-72px -130px}i.flag.nf:before,i.flag.norfolk.island:before{background-position:-72px -156px}i.flag.ng:before,i.flag.nigeria:before{background-position:-72px -182px}i.flag.ni:before,i.flag.nicaragua:before{background-position:-72px -208px}i.flag.netherlands:before,i.flag.nl:before{background-position:-72px -234px}i.flag.no:before,i.flag.norway:before{background-position:-72px -260px}i.flag.nepal:before,i.flag.np:before{background-position:-72px -286px}i.flag.nauru:before,i.flag.nr:before{background-position:-72px -312px}i.flag.niue:before,i.flag.nu:before{background-position:-72px -338px}i.flag.new.zealand:before,i.flag.nz:before{background-position:-72px -364px}i.flag.om:before,i.flag.oman:before{background-position:-72px -390px}i.flag.pa:before,i.flag.panama:before{background-position:-72px -416px}i.flag.pe:before,i.flag.peru:before{background-position:-72px -442px}i.flag.french.polynesia:before,i.flag.pf:before{background-position:-72px -468px}i.flag.new.guinea:before,i.flag.pg:before{background-position:-72px -494px}i.flag.ph:before,i.flag.philippines:before{background-position:-72px -520px}i.flag.pakistan:before,i.flag.pk:before{background-position:-72px -546px}i.flag.pl:before,i.flag.poland:before{background-position:-72px -572px}i.flag.pm:before,i.flag.saint.pierre:before{background-position:-72px -598px}i.flag.pitcairn.islands:before,i.flag.pn:before{background-position:-72px -624px}i.flag.pr:before,i.flag.puerto.rico:before{background-position:-72px -650px}i.flag.palestine:before,i.flag.ps:before{background-position:-72px -676px}i.flag.portugal:before,i.flag.pt:before{background-position:-72px -702px}i.flag.palau:before,i.flag.pw:before{background-position:-72px -728px}i.flag.paraguay:before,i.flag.py:before{background-position:-72px -754px}i.flag.qa:before,i.flag.qatar:before{background-position:-72px -780px}i.flag.re:before,i.flag.reunion:before{background-position:-72px -806px}i.flag.ro:before,i.flag.romania:before{background-position:-72px -832px}i.flag.rs:before,i.flag.serbia:before{background-position:-72px -858px}i.flag.ru:before,i.flag.russia:before{background-position:-72px -884px}i.flag.rw:before,i.flag.rwanda:before{background-position:-72px -910px}i.flag.sa:before,i.flag.saudi.arabia:before{background-position:-72px -936px}i.flag.sb:before,i.flag.solomon.islands:before{background-position:-72px -962px}i.flag.sc:before,i.flag.seychelles:before{background-position:-72px -988px}i.flag.sd:before,i.flag.sudan:before{background-position:-72px -1040px}i.flag.se:before,i.flag.sweden:before{background-position:-72px -1066px}i.flag.sg:before,i.flag.singapore:before{background-position:-72px -1092px}i.flag.saint.helena:before,i.flag.sh:before{background-position:-72px -1118px}i.flag.si:before,i.flag.slovenia:before{background-position:-72px -1144px}i.flag.jan.mayen:before,i.flag.sj:before,i.flag.svalbard:before{background-position:-72px -1170px}i.flag.sk:before,i.flag.slovakia:before{background-position:-72px -1196px}i.flag.sierra.leone:before,i.flag.sl:before{background-position:-72px -1222px}i.flag.san.marino:before,i.flag.sm:before{background-position:-72px -1248px}i.flag.senegal:before,i.flag.sn:before{background-position:-72px -1274px}i.flag.so:before,i.flag.somalia:before{background-position:-72px -1300px}i.flag.sr:before,i.flag.suriname:before{background-position:-72px -1326px}i.flag.sao.tome:before,i.flag.st:before{background-position:-72px -1352px}i.flag.el.salvador:before,i.flag.sv:before{background-position:-72px -1378px}i.flag.sy:before,i.flag.syria:before{background-position:-72px -1404px}i.flag.swaziland:before,i.flag.sz:before{background-position:-72px -1430px}i.flag.caicos.islands:before,i.flag.tc:before{background-position:-72px -1456px}i.flag.chad:before,i.flag.td:before{background-position:-72px -1482px}i.flag.french.territories:before,i.flag.tf:before{background-position:-72px -1508px}i.flag.tg:before,i.flag.togo:before{background-position:-72px -1534px}i.flag.th:before,i.flag.thailand:before{background-position:-72px -1560px}i.flag.tajikistan:before,i.flag.tj:before{background-position:-72px -1586px}i.flag.tk:before,i.flag.tokelau:before{background-position:-72px -1612px}i.flag.timorleste:before,i.flag.tl:before{background-position:-72px -1638px}i.flag.tm:before,i.flag.turkmenistan:before{background-position:-72px -1664px}i.flag.tn:before,i.flag.tunisia:before{background-position:-72px -1690px}i.flag.to:before,i.flag.tonga:before{background-position:-72px -1716px}i.flag.tr:before,i.flag.turkey:before{background-position:-72px -1742px}i.flag.trinidad:before,i.flag.tt:before{background-position:-72px -1768px}i.flag.tuvalu:before,i.flag.tv:before{background-position:-72px -1794px}i.flag.taiwan:before,i.flag.tw:before{background-position:-72px -1820px}i.flag.tanzania:before,i.flag.tz:before{background-position:-72px -1846px}i.flag.ua:before,i.flag.ukraine:before{background-position:-72px -1872px}i.flag.ug:before,i.flag.uganda:before{background-position:-72px -1898px}i.flag.um:before,i.flag.us.minor.islands:before{background-position:-72px -1924px}i.flag.america:before,i.flag.united.states:before,i.flag.us:before{background-position:-72px -1950px}i.flag.uruguay:before,i.flag.uy:before{background-position:-72px -1976px}i.flag.uz:before,i.flag.uzbekistan:before{background-position:-108px 0}i.flag.va:before,i.flag.vatican.city:before{background-position:-108px -26px}i.flag.saint.vincent:before,i.flag.vc:before{background-position:-108px -52px}i.flag.ve:before,i.flag.venezuela:before{background-position:-108px -78px}i.flag.british.virgin.islands:before,i.flag.vg:before{background-position:-108px -104px}i.flag.us.virgin.islands:before,i.flag.vi:before{background-position:-108px -130px}i.flag.vietnam:before,i.flag.vn:before{background-position:-108px -156px}i.flag.vanuatu:before,i.flag.vu:before{background-position:-108px -182px}i.flag.wallis.and.futuna:before,i.flag.wf:before{background-position:-108px -234px}i.flag.samoa:before,i.flag.ws:before{background-position:-108px -260px}i.flag.ye:before,i.flag.yemen:before{background-position:-108px -286px}i.flag.mayotte:before,i.flag.yt:before{background-position:-108px -312px}i.flag.south.africa:before,i.flag.za:before{background-position:-108px -338px}i.flag.zambia:before,i.flag.zm:before{background-position:-108px -364px}i.flag.zimbabwe:before,i.flag.zw:before{background-position:-108px -390px}.ui.header{border:none;margin:calc(2rem - .14285em) 0 1rem;padding:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;line-height:1.2857em;text-transform:none;color:rgba(0,0,0,.87)}.ui.header:first-child{margin-top:-.14285em}.ui.header:last-child{margin-bottom:0}.ui.header .sub.header{display:block;font-weight:400;padding:0;margin:0;line-height:1.2em;color:rgba(0,0,0,.6)}.ui.header>.icon{display:table-cell;opacity:1;font-size:1.5em;padding-top:.14285em;vertical-align:middle}.ui.header .icon:only-child{display:inline-block;padding:0;margin-right:.75rem}.ui.header>.image,.ui.header>img{display:inline-block;margin-top:.14285em;width:2.5em;height:auto;vertical-align:middle}.ui.header>.image:only-child,.ui.header>img:only-child{margin-right:.75rem}.ui.header .content{display:inline-block;vertical-align:top}.ui.header>.image+.content,.ui.header>img+.content{padding-left:.75rem;vertical-align:middle}.ui.header>.icon+.content{padding-left:.75rem;display:table-cell;vertical-align:middle}.ui.header .ui.label{font-size:'';margin-left:.5rem;vertical-align:middle}.ui.header+p{margin-top:0}h1.ui.header{font-size:2rem}h2.ui.header{font-size:1.714rem}h3.ui.header{font-size:1.28rem}h4.ui.header{font-size:1.071rem}h5.ui.header{font-size:1rem}h1.ui.header .sub.header,h2.ui.header .sub.header{font-size:1.14285714rem}h3.ui.header .sub.header,h4.ui.header .sub.header{font-size:1rem}h5.ui.header .sub.header{font-size:.92857143rem}.ui.huge.header{min-height:1em;font-size:2em}.ui.large.header{font-size:1.714em}.ui.medium.header{font-size:1.28em}.ui.small.header{font-size:1.071em}.ui.tiny.header{font-size:1em}.ui.huge.header .sub.header,.ui.large.header .sub.header{font-size:1.14285714rem}.ui.header .sub.header,.ui.small.header .sub.header{font-size:1rem}.ui.tiny.header .sub.header{font-size:.92857143rem}.ui.small.sub.header{font-size:.71428571em}.ui.sub.header{padding:0;margin-bottom:.14285714rem;font-weight:700;text-transform:uppercase;color:'';font-size:.85714286em}.ui.large.sub.header{font-size:.92857143em}.ui.huge.sub.header{font-size:1em}.ui.icon.header{display:inline-block;text-align:center;margin:2rem 0 1rem}.ui.icon.header:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.icon.header:first-child{margin-top:0}.ui.icon.header .icon{float:none;display:block;width:auto;height:auto;line-height:1;padding:0;font-size:3em;margin:0 auto .5rem;opacity:1}.ui.icon.header .content{display:block}.ui.icon.header .circular.icon,.ui.icon.header .square.icon{font-size:2em}.ui.block.icon.header .icon{margin-bottom:0}.ui.icon.header.aligned{margin-left:auto;margin-right:auto;display:block}.ui.disabled.header{opacity:.45}.ui.inverted.header{color:#FFF}.ui.inverted.header .sub.header{color:rgba(255,255,255,.8)}.ui.inverted.attached.header{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) #545454;background:linear-gradient(transparent,rgba(0,0,0,.05)) #545454;box-shadow:none;border-color:transparent}.ui.inverted.block.header{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) #545454;background:linear-gradient(transparent,rgba(0,0,0,.05)) #545454;box-shadow:none;border-bottom:none}.ui.red.header{color:#DB2828!important}a.ui.red.header:hover{color:#d01919!important}.ui.red.dividing.header{border-bottom:2px solid #DB2828}.ui.inverted.red.header{color:#FF695E!important}a.ui.inverted.red.header:hover{color:#ff5144!important}.ui.orange.header{color:#F2711C!important}a.ui.orange.header:hover{color:#f26202!important}.ui.orange.dividing.header{border-bottom:2px solid #F2711C}.ui.inverted.orange.header{color:#FF851B!important}a.ui.inverted.orange.header:hover{color:#ff7701!important}.ui.olive.header{color:#B5CC18!important}a.ui.olive.header:hover{color:#a7bd0d!important}.ui.olive.dividing.header{border-bottom:2px solid #B5CC18}.ui.inverted.olive.header{color:#D9E778!important}a.ui.inverted.olive.header:hover{color:#d8ea5c!important}.ui.yellow.header{color:#FBBD08!important}a.ui.yellow.header:hover{color:#eaae00!important}.ui.yellow.dividing.header{border-bottom:2px solid #FBBD08}.ui.inverted.yellow.header{color:#FFE21F!important}a.ui.inverted.yellow.header:hover{color:#ffdf05!important}.ui.green.header{color:#21BA45!important}a.ui.green.header:hover{color:#16ab39!important}.ui.green.dividing.header{border-bottom:2px solid #21BA45}.ui.inverted.green.header{color:#2ECC40!important}a.ui.inverted.green.header:hover{color:#22be34!important}.ui.teal.header{color:#00B5AD!important}a.ui.teal.header:hover{color:#009c95!important}.ui.teal.dividing.header{border-bottom:2px solid #00B5AD}.ui.inverted.teal.header{color:#6DFFFF!important}a.ui.inverted.teal.header:hover{color:#54ffff!important}.ui.blue.header{color:#2185D0!important}a.ui.blue.header:hover{color:#1678c2!important}.ui.blue.dividing.header{border-bottom:2px solid #2185D0}.ui.inverted.blue.header{color:#54C8FF!important}a.ui.inverted.blue.header:hover{color:#3ac0ff!important}.ui.violet.header{color:#6435C9!important}a.ui.violet.header:hover{color:#5829bb!important}.ui.violet.dividing.header{border-bottom:2px solid #6435C9}.ui.inverted.violet.header{color:#A291FB!important}a.ui.inverted.violet.header:hover{color:#8a73ff!important}.ui.purple.header{color:#A333C8!important}a.ui.purple.header:hover{color:#9627ba!important}.ui.purple.dividing.header{border-bottom:2px solid #A333C8}.ui.inverted.purple.header{color:#DC73FF!important}a.ui.inverted.purple.header:hover{color:#d65aff!important}.ui.pink.header{color:#E03997!important}a.ui.pink.header:hover{color:#e61a8d!important}.ui.pink.dividing.header{border-bottom:2px solid #E03997}.ui.inverted.pink.header{color:#FF8EDF!important}a.ui.inverted.pink.header:hover{color:#ff74d8!important}.ui.brown.header{color:#A5673F!important}a.ui.brown.header:hover{color:#975b33!important}.ui.brown.dividing.header{border-bottom:2px solid #A5673F}.ui.inverted.brown.header{color:#D67C1C!important}a.ui.inverted.brown.header:hover{color:#c86f11!important}.ui.grey.header{color:#767676!important}a.ui.grey.header:hover{color:#838383!important}.ui.grey.dividing.header{border-bottom:2px solid #767676}.ui.inverted.grey.header{color:#DCDDDE!important}a.ui.inverted.grey.header:hover{color:#cfd0d2!important}.ui.left.aligned.header{text-align:left}.ui.right.aligned.header{text-align:right}.ui.center.aligned.header,.ui.centered.header{text-align:center}.ui.justified.header{text-align:justify}.ui.justified.header:after{display:inline-block;content:'';width:100%}.ui.floated.header,.ui[class*="left floated"].header{float:left;margin-top:0;margin-right:.5em}.ui[class*="right floated"].header{float:right;margin-top:0;margin-left:.5em}.ui.fitted.header{padding:0}.ui.dividing.header{padding-bottom:.21428571rem;border-bottom:1px solid rgba(34,36,38,.15)}.ui.dividing.header .sub.header{padding-bottom:.21428571rem}.ui.dividing.header .icon{margin-bottom:0}.ui.inverted.dividing.header{border-bottom-color:rgba(255,255,255,.1)}.ui.block.header{background:#F3F4F5;padding:.71428571rem 1rem;box-shadow:none;border:1px solid #D4D4D5;border-radius:.28571429rem}.ui.tiny.block.header{font-size:.85714286rem}.ui.small.block.header{font-size:.92857143rem}.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1rem}.ui.large.block.header{font-size:1.14285714rem}.ui.huge.block.header{font-size:1.42857143rem}.ui.attached.header{background:#FFF;padding:.71428571rem 1rem;margin-left:-1px;margin-right:-1px;box-shadow:none;border:1px solid #D4D4D5}.ui.attached.block.header{background:#F3F4F5}.ui.attached:not(.top):not(.bottom).header{margin-top:0;margin-bottom:0;border-top:none;border-radius:0}.ui.top.attached.header{margin-bottom:0;border-radius:.28571429rem .28571429rem 0 0}.ui.bottom.attached.header{margin-top:0;border-top:none;border-radius:0 0 .28571429rem .28571429rem}.ui.tiny.attached.header{font-size:.85714286em}.ui.small.attached.header{font-size:.92857143em}.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1em}.ui.large.attached.header{font-size:1.14285714em}.ui.huge.attached.header{font-size:1.42857143em}.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1.28em}@font-face{font-family:Icons;src:url(themes/default/assets/fonts/icons.eot);src:url(themes/default/assets/fonts/icons.eot?#iefix) format('embedded-opentype'),url(themes/default/assets/fonts/icons.woff2) format('woff2'),url(themes/default/assets/fonts/icons.woff) format('woff'),url(themes/default/assets/fonts/icons.ttf) format('truetype'),url(themes/default/assets/fonts/icons.svg#icons) format('svg');font-style:normal;font-weight:400;font-variant:normal;text-decoration:inherit;text-transform:none}i.icon{display:inline-block;opacity:1;margin:0 .25rem 0 0;width:1.18em;height:1em;font-family:Icons;font-style:normal;font-weight:400;text-decoration:inherit;text-align:center;speak:none;font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.icon:before{background:0 0!important}i.icon.loading{height:1em;line-height:1;-webkit-animation:icon-loading 2s linear infinite;animation:icon-loading 2s linear infinite}@-webkit-keyframes icon-loading{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes icon-loading{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}i.emphasized.icon,i.icon.active,i.icon.hover{opacity:1!important}i.disabled.icon{opacity:.45!important}i.fitted.icon{width:auto;margin:0}i.link.icon{cursor:pointer;opacity:.8;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}i.link.icon:hover{opacity:1!important}i.circular.icon{border-radius:500em!important;line-height:1!important;padding:.5em!important;box-shadow:0 0 0 .1em rgba(0,0,0,.1) inset;width:2em!important;height:2em!important}i.circular.inverted.icon{border:none;box-shadow:none}i.flipped.icon,i.horizontally.flipped.icon{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}i.vertically.flipped.icon{-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}i.clockwise.rotated.icon,i.right.rotated.icon,i.rotated.icon{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}i.counterclockwise.rotated.icon,i.left.rotated.icon{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}i.bordered.icon{line-height:1;vertical-align:baseline;width:2em;height:2em;padding:.5em .41em!important;box-shadow:0 0 0 .1em rgba(0,0,0,.1) inset}i.bordered.inverted.icon{border:none;box-shadow:none}i.inverted.bordered.icon,i.inverted.circular.icon{background-color:#1B1C1D!important;color:#FFF!important}i.inverted.icon{color:#FFF}i.red.icon{color:#DB2828!important}i.inverted.red.icon{color:#FF695E!important}i.inverted.bordered.red.icon,i.inverted.circular.red.icon{background-color:#DB2828!important;color:#FFF!important}i.orange.icon{color:#F2711C!important}i.inverted.orange.icon{color:#FF851B!important}i.inverted.bordered.orange.icon,i.inverted.circular.orange.icon{background-color:#F2711C!important;color:#FFF!important}i.yellow.icon{color:#FBBD08!important}i.inverted.yellow.icon{color:#FFE21F!important}i.inverted.bordered.yellow.icon,i.inverted.circular.yellow.icon{background-color:#FBBD08!important;color:#FFF!important}i.olive.icon{color:#B5CC18!important}i.inverted.olive.icon{color:#D9E778!important}i.inverted.bordered.olive.icon,i.inverted.circular.olive.icon{background-color:#B5CC18!important;color:#FFF!important}i.green.icon{color:#21BA45!important}i.inverted.green.icon{color:#2ECC40!important}i.inverted.bordered.green.icon,i.inverted.circular.green.icon{background-color:#21BA45!important;color:#FFF!important}i.teal.icon{color:#00B5AD!important}i.inverted.teal.icon{color:#6DFFFF!important}i.inverted.bordered.teal.icon,i.inverted.circular.teal.icon{background-color:#00B5AD!important;color:#FFF!important}i.blue.icon{color:#2185D0!important}i.inverted.blue.icon{color:#54C8FF!important}i.inverted.bordered.blue.icon,i.inverted.circular.blue.icon{background-color:#2185D0!important;color:#FFF!important}i.violet.icon{color:#6435C9!important}i.inverted.violet.icon{color:#A291FB!important}i.inverted.bordered.violet.icon,i.inverted.circular.violet.icon{background-color:#6435C9!important;color:#FFF!important}i.purple.icon{color:#A333C8!important}i.inverted.purple.icon{color:#DC73FF!important}i.inverted.bordered.purple.icon,i.inverted.circular.purple.icon{background-color:#A333C8!important;color:#FFF!important}i.pink.icon{color:#E03997!important}i.inverted.pink.icon{color:#FF8EDF!important}i.inverted.bordered.pink.icon,i.inverted.circular.pink.icon{background-color:#E03997!important;color:#FFF!important}i.brown.icon{color:#A5673F!important}i.inverted.brown.icon{color:#D67C1C!important}i.inverted.bordered.brown.icon,i.inverted.circular.brown.icon{background-color:#A5673F!important;color:#FFF!important}i.grey.icon{color:#767676!important}i.inverted.grey.icon{color:#DCDDDE!important}i.inverted.bordered.grey.icon,i.inverted.circular.grey.icon{background-color:#767676!important;color:#FFF!important}i.black.icon{color:#1B1C1D!important}i.inverted.black.icon{color:#545454!important}i.inverted.bordeblack.black.icon,i.inverted.circular.black.icon{background-color:#1B1C1D!important;color:#FFF!important}i.mini.icon,i.mini.icons{line-height:1;font-size:.71428571rem}i.tiny.icon,i.tiny.icons{line-height:1;font-size:.85714286rem}i.small.icon,i.small.icons{line-height:1;font-size:.92857143em}i.icon,i.icons{font-size:1em}i.large.icon,i.large.icons{line-height:1;vertical-align:middle;font-size:1.5em}i.big.icon,i.big.icons{line-height:1;vertical-align:middle;font-size:2em}i.huge.icon,i.huge.icons{line-height:1;vertical-align:middle;font-size:4em}i.massive.icon,i.massive.icons{line-height:1;vertical-align:middle;font-size:8em}i.icons{display:inline-block;position:relative;line-height:1}i.icons .icon{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);margin:0}i.icons .icon:first-child{position:static;width:auto;height:auto;vertical-align:top;-webkit-transform:none;-ms-transform:none;transform:none;margin-right:.25rem}i.icons .corner.icon{top:auto;left:auto;right:0;bottom:0;-webkit-transform:none;-ms-transform:none;transform:none;font-size:.45em;text-shadow:-1px -1px 0 #FFF,1px -1px 0 #FFF,-1px 1px 0 #FFF,1px 1px 0 #FFF}i.icons .inverted.corner.icon{text-shadow:-1px -1px 0 #1B1C1D,1px -1px 0 #1B1C1D,-1px 1px 0 #1B1C1D,1px 1px 0 #1B1C1D}i.icon.search:before{content:"\f002"}i.icon.mail.outline:before{content:"\f003"}i.icon.external:before{content:"\f08e"}i.icon.signal:before{content:"\f012"}i.icon.setting:before{content:"\f013"}i.icon.home:before{content:"\f015"}i.icon.inbox:before{content:"\f01c"}i.icon.browser:before{content:"\f022"}i.icon.tag:before{content:"\f02b"}i.icon.tags:before{content:"\f02c"}i.icon.calendar:before{content:"\f073"}i.icon.comment:before{content:"\f075"}i.icon.comments:before{content:"\f086"}i.icon.shop:before{content:"\f07a"}i.icon.privacy:before{content:"\f084"}i.icon.settings:before{content:"\f085"}i.icon.trophy:before{content:"\f091"}i.icon.payment:before{content:"\f09d"}i.icon.feed:before{content:"\f09e"}i.icon.alarm.outline:before{content:"\f0a2"}i.icon.tasks:before{content:"\f0ae"}i.icon.cloud:before{content:"\f0c2"}i.icon.lab:before{content:"\f0c3"}i.icon.mail:before{content:"\f0e0"}i.icon.idea:before{content:"\f0eb"}i.icon.dashboard:before{content:"\f0e4"}i.icon.sitemap:before{content:"\f0e8"}i.icon.alarm:before{content:"\f0f3"}i.icon.terminal:before{content:"\f120"}i.icon.code:before{content:"\f121"}i.icon.protect:before{content:"\f132"}i.icon.calendar.outline:before{content:"\f133"}i.icon.ticket:before{content:"\f145"}i.icon.external.square:before{content:"\f14c"}i.icon.map:before{content:"\f14e"}i.icon.bug:before{content:"\f188"}i.icon.mail.square:before{content:"\f199"}i.icon.history:before{content:"\f1da"}i.icon.options:before{content:"\f1de"}i.icon.comment.outline:before{content:"\f0e5"}i.icon.comments.outline:before{content:"\f0e6"}i.icon.text.telephone:before{content:"\f1e4"}i.icon.find:before{content:"\f1e5"}i.icon.wifi:before{content:"\f1eb"}i.icon.alarm.slash:before{content:"\f1f6"}i.icon.alarm.slash.outline:before{content:"\f1f7"}i.icon.copyright:before{content:"\f1f9"}i.icon.at:before{content:"\f1fa"}i.icon.eyedropper:before{content:"\f1fb"}i.icon.paint.brush:before{content:"\f1fc"}i.icon.heartbeat:before{content:"\f21e"}i.icon.download:before{content:"\f019"}i.icon.repeat:before{content:"\f01e"}i.icon.refresh:before{content:"\f021"}i.icon.lock:before{content:"\f023"}i.icon.bookmark:before{content:"\f02e"}i.icon.print:before{content:"\f02f"}i.icon.write:before{content:"\f040"}i.icon.theme:before{content:"\f043"}i.icon.adjust:before{content:"\f042"}i.icon.edit:before{content:"\f044"}i.icon.external.share:before{content:"\f045"}i.icon.ban:before{content:"\f05e"}i.icon.mail.forward:before,i.icon.share:before{content:"\f064"}i.icon.expand:before{content:"\f065"}i.icon.compress:before{content:"\f066"}i.icon.unhide:before{content:"\f06e"}i.icon.hide:before{content:"\f070"}i.icon.random:before{content:"\f074"}i.icon.retweet:before{content:"\f079"}i.icon.sign.out:before{content:"\f08b"}i.icon.pin:before{content:"\f08d"}i.icon.sign.in:before{content:"\f090"}i.icon.upload:before{content:"\f093"}i.icon.call:before{content:"\f095"}i.icon.call.square:before{content:"\f098"}i.icon.remove.bookmark:before{content:"\f097"}i.icon.unlock:before{content:"\f09c"}i.icon.configure:before{content:"\f0ad"}i.icon.filter:before{content:"\f0b0"}i.icon.wizard:before{content:"\f0d0"}i.icon.undo:before{content:"\f0e2"}i.icon.exchange:before{content:"\f0ec"}i.icon.cloud.download:before{content:"\f0ed"}i.icon.cloud.upload:before{content:"\f0ee"}i.icon.reply:before{content:"\f112"}i.icon.reply.all:before{content:"\f122"}i.icon.erase:before{content:"\f12d"}i.icon.unlock.alternate:before{content:"\f13e"}i.icon.archive:before{content:"\f187"}i.icon.translate:before{content:"\f1ab"}i.icon.recycle:before{content:"\f1b8"}i.icon.send:before{content:"\f1d8"}i.icon.send.outline:before{content:"\f1d9"}i.icon.share.alternate:before{content:"\f1e0"}i.icon.share.alternate.square:before{content:"\f1e1"}i.icon.wait:before{content:"\f017"}i.icon.write.square:before{content:"\f14b"}i.icon.share.square:before{content:"\f14d"}i.icon.add.to.cart:before{content:"\f217"}i.icon.in.cart:before{content:"\f218"}i.icon.add.user:before{content:"\f234"}i.icon.remove.user:before{content:"\f235"}i.icon.help.circle:before{content:"\f059"}i.icon.info.circle:before{content:"\f05a"}i.icon.warning:before{content:"\f12a"}i.icon.warning.circle:before{content:"\f06a"}i.icon.warning.sign:before{content:"\f071"}i.icon.help:before{content:"\f128"}i.icon.info:before{content:"\f129"}i.icon.announcement:before{content:"\f0a1"}i.icon.birthday:before{content:"\f1fd"}i.icon.users:before{content:"\f0c0"}i.icon.doctor:before{content:"\f0f0"}i.icon.child:before{content:"\f1ae"}i.icon.user:before{content:"\f007"}i.icon.handicap:before{content:"\f193"}i.icon.student:before{content:"\f19d"}i.icon.spy:before{content:"\f21b"}i.icon.female:before{content:"\f182"}i.icon.male:before{content:"\f183"}i.icon.woman:before{content:"\f221"}i.icon.man:before{content:"\f222"}i.icon.non.binary.transgender:before{content:"\f223"}i.icon.intergender:before{content:"\f224"}i.icon.transgender:before{content:"\f225"}i.icon.lesbian:before{content:"\f226"}i.icon.gay:before{content:"\f227"}i.icon.heterosexual:before{content:"\f228"}i.icon.other.gender:before{content:"\f229"}i.icon.other.gender.vertical:before{content:"\f22a"}i.icon.other.gender.horizontal:before{content:"\f22b"}i.icon.neuter:before{content:"\f22c"}i.icon.grid.layout:before{content:"\f00a"}i.icon.list.layout:before{content:"\f00b"}i.icon.block.layout:before{content:"\f009"}i.icon.zoom:before{content:"\f00e"}i.icon.zoom.out:before{content:"\f010"}i.icon.resize.vertical:before{content:"\f07d"}i.icon.resize.horizontal:before{content:"\f07e"}i.icon.maximize:before{content:"\f0b2"}i.icon.crop:before{content:"\f125"}i.icon.cocktail:before{content:"\f000"}i.icon.road:before{content:"\f018"}i.icon.flag:before{content:"\f024"}i.icon.book:before{content:"\f02d"}i.icon.gift:before{content:"\f06b"}i.icon.leaf:before{content:"\f06c"}i.icon.fire:before{content:"\f06d"}i.icon.plane:before{content:"\f072"}i.icon.magnet:before{content:"\f076"}i.icon.legal:before{content:"\f0e3"}i.icon.lemon:before{content:"\f094"}i.icon.world:before{content:"\f0ac"}i.icon.travel:before{content:"\f0b1"}i.icon.shipping:before{content:"\f0d1"}i.icon.money:before{content:"\f0d6"}i.icon.lightning:before{content:"\f0e7"}i.icon.rain:before{content:"\f0e9"}i.icon.treatment:before{content:"\f0f1"}i.icon.suitcase:before{content:"\f0f2"}i.icon.bar:before{content:"\f0fc"}i.icon.flag.outline:before{content:"\f11d"}i.icon.flag.checkered:before{content:"\f11e"}i.icon.puzzle:before{content:"\f12e"}i.icon.fire.extinguisher:before{content:"\f134"}i.icon.rocket:before{content:"\f135"}i.icon.anchor:before{content:"\f13d"}i.icon.bullseye:before{content:"\f140"}i.icon.sun:before{content:"\f185"}i.icon.moon:before{content:"\f186"}i.icon.fax:before{content:"\f1ac"}i.icon.life.ring:before{content:"\f1cd"}i.icon.bomb:before{content:"\f1e2"}i.icon.soccer:before{content:"\f1e3"}i.icon.calculator:before{content:"\f1ec"}i.icon.diamond:before{content:"\f219"}i.icon.crosshairs:before{content:"\f05b"}i.icon.asterisk:before{content:"\f069"}i.icon.certificate:before{content:"\f0a3"}i.icon.circle:before{content:"\f111"}i.icon.quote.left:before{content:"\f10d"}i.icon.quote.right:before{content:"\f10e"}i.icon.ellipsis.horizontal:before{content:"\f141"}i.icon.ellipsis.vertical:before{content:"\f142"}i.icon.cube:before{content:"\f1b2"}i.icon.cubes:before{content:"\f1b3"}i.icon.circle.notched:before{content:"\f1ce"}i.icon.circle.thin:before{content:"\f1db"}i.icon.square.outline:before{content:"\f096"}i.icon.square:before{content:"\f0c8"}i.icon.checkmark:before{content:"\f00c"}i.icon.remove:before{content:"\f00d"}i.icon.checkmark.box:before{content:"\f046"}i.icon.move:before{content:"\f047"}i.icon.add.circle:before{content:"\f055"}i.icon.minus.circle:before{content:"\f056"}i.icon.remove.circle:before{content:"\f057"}i.icon.check.circle:before{content:"\f058"}i.icon.remove.circle.outline:before{content:"\f05c"}i.icon.check.circle.outline:before{content:"\f05d"}i.icon.plus:before{content:"\f067"}i.icon.minus:before{content:"\f068"}i.icon.add.square:before{content:"\f0fe"}i.icon.radio:before{content:"\f10c"}i.icon.selected.radio:before{content:"\f192"}i.icon.minus.square:before{content:"\f146"}i.icon.minus.square.outline:before{content:"\f147"}i.icon.check.square:before{content:"\f14a"}i.icon.plus.square.outline:before{content:"\f196"}i.icon.toggle.off:before{content:"\f204"}i.icon.toggle.on:before{content:"\f205"}i.icon.film:before{content:"\f008"}i.icon.sound:before{content:"\f025"}i.icon.photo:before{content:"\f030"}i.icon.bar.chart:before{content:"\f080"}i.icon.camera.retro:before{content:"\f083"}i.icon.newspaper:before{content:"\f1ea"}i.icon.area.chart:before{content:"\f1fe"}i.icon.pie.chart:before{content:"\f200"}i.icon.line.chart:before{content:"\f201"}i.icon.arrow.circle.outline.down:before{content:"\f01a"}i.icon.arrow.circle.outline.up:before{content:"\f01b"}i.icon.chevron.left:before{content:"\f053"}i.icon.chevron.right:before{content:"\f054"}i.icon.arrow.left:before{content:"\f060"}i.icon.arrow.right:before{content:"\f061"}i.icon.arrow.up:before{content:"\f062"}i.icon.arrow.down:before{content:"\f063"}i.icon.chevron.up:before{content:"\f077"}i.icon.chevron.down:before{content:"\f078"}i.icon.pointing.right:before{content:"\f0a4"}i.icon.pointing.left:before{content:"\f0a5"}i.icon.pointing.up:before{content:"\f0a6"}i.icon.pointing.down:before{content:"\f0a7"}i.icon.arrow.circle.left:before{content:"\f0a8"}i.icon.arrow.circle.right:before{content:"\f0a9"}i.icon.arrow.circle.up:before{content:"\f0aa"}i.icon.arrow.circle.down:before{content:"\f0ab"}i.icon.caret.down:before{content:"\f0d7"}i.icon.caret.up:before{content:"\f0d8"}i.icon.caret.left:before{content:"\f0d9"}i.icon.caret.right:before{content:"\f0da"}i.icon.angle.double.left:before{content:"\f100"}i.icon.angle.double.right:before{content:"\f101"}i.icon.angle.double.up:before{content:"\f102"}i.icon.angle.double.down:before{content:"\f103"}i.icon.angle.left:before{content:"\f104"}i.icon.angle.right:before{content:"\f105"}i.icon.angle.up:before{content:"\f106"}i.icon.angle.down:before{content:"\f107"}i.icon.chevron.circle.left:before{content:"\f137"}i.icon.chevron.circle.right:before{content:"\f138"}i.icon.chevron.circle.up:before{content:"\f139"}i.icon.chevron.circle.down:before{content:"\f13a"}i.icon.toggle.down:before{content:"\f150"}i.icon.toggle.up:before{content:"\f151"}i.icon.toggle.right:before{content:"\f152"}i.icon.long.arrow.down:before{content:"\f175"}i.icon.long.arrow.up:before{content:"\f176"}i.icon.long.arrow.left:before{content:"\f177"}i.icon.long.arrow.right:before{content:"\f178"}i.icon.arrow.circle.outline.right:before{content:"\f18e"}i.icon.arrow.circle.outline.left:before{content:"\f190"}i.icon.toggle.left:before{content:"\f191"}i.icon.power:before{content:"\f011"}i.icon.trash:before{content:"\f1f8"}i.icon.trash.outline:before{content:"\f014"}i.icon.disk.outline:before{content:"\f0a0"}i.icon.desktop:before{content:"\f108"}i.icon.laptop:before{content:"\f109"}i.icon.tablet:before{content:"\f10a"}i.icon.mobile:before{content:"\f10b"}i.icon.game:before{content:"\f11b"}i.icon.keyboard:before{content:"\f11c"}i.icon.plug:before{content:"\f1e6"}i.icon.folder:before{content:"\f07b"}i.icon.folder.open:before{content:"\f07c"}i.icon.level.up:before{content:"\f148"}i.icon.level.down:before{content:"\f149"}i.icon.file:before{content:"\f15b"}i.icon.file.outline:before{content:"\f016"}i.icon.file.text:before{content:"\f15c"}i.icon.file.text.outline:before{content:"\f0f6"}i.icon.folder.outline:before{content:"\f114"}i.icon.folder.open.outline:before{content:"\f115"}i.icon.file.pdf.outline:before{content:"\f1c1"}i.icon.file.word.outline:before{content:"\f1c2"}i.icon.file.excel.outline:before{content:"\f1c3"}i.icon.file.powerpoint.outline:before{content:"\f1c4"}i.icon.file.image.outline:before{content:"\f1c5"}i.icon.file.archive.outline:before{content:"\f1c6"}i.icon.file.audio.outline:before{content:"\f1c7"}i.icon.file.video.outline:before{content:"\f1c8"}i.icon.file.code.outline:before{content:"\f1c9"}i.icon.barcode:before{content:"\f02a"}i.icon.qrcode:before{content:"\f029"}i.icon.fork:before{content:"\f126"}i.icon.html5:before{content:"\f13b"}i.icon.css3:before{content:"\f13c"}i.icon.rss:before{content:"\f09e"}i.icon.rss.square:before{content:"\f143"}i.icon.openid:before{content:"\f19b"}i.icon.database:before{content:"\f1c0"}i.icon.server:before{content:"\f233"}i.icon.heart:before{content:"\f004"}i.icon.star:before{content:"\f005"}i.icon.empty.star:before{content:"\f006"}i.icon.thumbs.outline.up:before{content:"\f087"}i.icon.thumbs.outline.down:before{content:"\f088"}i.icon.star.half:before{content:"\f089"}i.icon.empty.heart:before{content:"\f08a"}i.icon.smile:before{content:"\f118"}i.icon.frown:before{content:"\f119"}i.icon.meh:before{content:"\f11a"}i.icon.star.half.empty:before{content:"\f123"}i.icon.thumbs.up:before{content:"\f164"}i.icon.thumbs.down:before{content:"\f165"}i.icon.music:before{content:"\f001"}i.icon.video.play.outline:before{content:"\f01d"}i.icon.volume.off:before{content:"\f026"}i.icon.volume.down:before{content:"\f027"}i.icon.volume.up:before{content:"\f028"}i.icon.record:before{content:"\f03d"}i.icon.step.backward:before{content:"\f048"}i.icon.fast.backward:before{content:"\f049"}i.icon.backward:before{content:"\f04a"}i.icon.play:before{content:"\f04b"}i.icon.pause:before{content:"\f04c"}i.icon.stop:before{content:"\f04d"}i.icon.forward:before{content:"\f04e"}i.icon.fast.forward:before{content:"\f050"}i.icon.step.forward:before{content:"\f051"}i.icon.eject:before{content:"\f052"}i.icon.unmute:before{content:"\f130"}i.icon.mute:before{content:"\f131"}i.icon.video.play:before{content:"\f144"}i.icon.closed.captioning:before{content:"\f20a"}i.icon.marker:before{content:"\f041"}i.icon.coffee:before{content:"\f0f4"}i.icon.food:before{content:"\f0f5"}i.icon.building.outline:before{content:"\f0f7"}i.icon.hospital:before{content:"\f0f8"}i.icon.emergency:before{content:"\f0f9"}i.icon.first.aid:before{content:"\f0fa"}i.icon.military:before{content:"\f0fb"}i.icon.h:before{content:"\f0fd"}i.icon.location.arrow:before{content:"\f124"}i.icon.space.shuttle:before{content:"\f197"}i.icon.university:before{content:"\f19c"}i.icon.building:before{content:"\f1ad"}i.icon.paw:before{content:"\f1b0"}i.icon.spoon:before{content:"\f1b1"}i.icon.car:before{content:"\f1b9"}i.icon.taxi:before{content:"\f1ba"}i.icon.tree:before{content:"\f1bb"}i.icon.bicycle:before{content:"\f206"}i.icon.bus:before{content:"\f207"}i.icon.ship:before{content:"\f21a"}i.icon.motorcycle:before{content:"\f21c"}i.icon.street.view:before{content:"\f21d"}i.icon.hotel:before{content:"\f236"}i.icon.train:before{content:"\f238"}i.icon.subway:before{content:"\f239"}i.icon.table:before{content:"\f0ce"}i.icon.columns:before{content:"\f0db"}i.icon.sort:before{content:"\f0dc"}i.icon.sort.ascending:before{content:"\f0de"}i.icon.sort.descending:before{content:"\f0dd"}i.icon.sort.alphabet.ascending:before{content:"\f15d"}i.icon.sort.alphabet.descending:before{content:"\f15e"}i.icon.sort.content.ascending:before{content:"\f160"}i.icon.sort.content.descending:before{content:"\f161"}i.icon.sort.numeric.ascending:before{content:"\f162"}i.icon.sort.numeric.descending:before{content:"\f163"}i.icon.font:before{content:"\f031"}i.icon.bold:before{content:"\f032"}i.icon.italic:before{content:"\f033"}i.icon.text.height:before{content:"\f034"}i.icon.text.width:before{content:"\f035"}i.icon.align.left:before{content:"\f036"}i.icon.align.center:before{content:"\f037"}i.icon.align.right:before{content:"\f038"}i.icon.align.justify:before{content:"\f039"}i.icon.list:before{content:"\f03a"}i.icon.outdent:before{content:"\f03b"}i.icon.indent:before{content:"\f03c"}i.icon.linkify:before{content:"\f0c1"}i.icon.cut:before{content:"\f0c4"}i.icon.copy:before{content:"\f0c5"}i.icon.attach:before{content:"\f0c6"}i.icon.save:before{content:"\f0c7"}i.icon.content:before{content:"\f0c9"}i.icon.unordered.list:before{content:"\f0ca"}i.icon.ordered.list:before{content:"\f0cb"}i.icon.strikethrough:before{content:"\f0cc"}i.icon.underline:before{content:"\f0cd"}i.icon.paste:before{content:"\f0ea"}i.icon.unlink:before{content:"\f127"}i.icon.superscript:before{content:"\f12b"}i.icon.subscript:before{content:"\f12c"}i.icon.header:before{content:"\f1dc"}i.icon.paragraph:before{content:"\f1dd"}i.icon.euro:before{content:"\f153"}i.icon.pound:before{content:"\f154"}i.icon.dollar:before{content:"\f155"}i.icon.rupee:before{content:"\f156"}i.icon.yen:before{content:"\f157"}i.icon.ruble:before{content:"\f158"}i.icon.won:before{content:"\f159"}i.icon.lira:before{content:"\f195"}i.icon.shekel:before{content:"\f20b"}i.icon.paypal:before{content:"\f1ed"}i.icon.paypal.card:before{content:"\f1f4"}i.icon.google.wallet:before{content:"\f1ee"}i.icon.visa:before{content:"\f1f0"}i.icon.mastercard:before{content:"\f1f1"}i.icon.discover:before{content:"\f1f2"}i.icon.american.express:before{content:"\f1f3"}i.icon.stripe:before{content:"\f1f5"}i.icon.twitter.square:before{content:"\f081"}i.icon.facebook.square:before{content:"\f082"}i.icon.linkedin.square:before{content:"\f08c"}i.icon.github.square:before{content:"\f092"}i.icon.twitter:before{content:"\f099"}i.icon.facebook:before{content:"\f09a"}i.icon.github:before{content:"\f09b"}i.icon.pinterest:before{content:"\f0d2"}i.icon.pinterest.square:before{content:"\f0d3"}i.icon.google.plus.square:before{content:"\f0d4"}i.icon.google.plus:before{content:"\f0d5"}i.icon.linkedin:before{content:"\f0e1"}i.icon.github.alternate:before{content:"\f113"}i.icon.maxcdn:before{content:"\f136"}i.icon.bitcoin:before{content:"\f15a"}i.icon.youtube.square:before{content:"\f166"}i.icon.youtube:before{content:"\f167"}i.icon.xing:before{content:"\f168"}i.icon.xing.square:before{content:"\f169"}i.icon.youtube.play:before{content:"\f16a"}i.icon.dropbox:before{content:"\f16b"}i.icon.stack.overflow:before{content:"\f16c"}i.icon.instagram:before{content:"\f16d"}i.icon.flickr:before{content:"\f16e"}i.icon.adn:before{content:"\f170"}i.icon.bitbucket:before{content:"\f171"}i.icon.bitbucket.square:before{content:"\f172"}i.icon.tumblr:before{content:"\f173"}i.icon.tumblr.square:before{content:"\f174"}i.icon.apple:before{content:"\f179"}i.icon.windows:before{content:"\f17a"}i.icon.android:before{content:"\f17b"}i.icon.linux:before{content:"\f17c"}i.icon.dribbble:before{content:"\f17d"}i.icon.skype:before{content:"\f17e"}i.icon.foursquare:before{content:"\f180"}i.icon.trello:before{content:"\f181"}i.icon.gittip:before{content:"\f184"}i.icon.vk:before{content:"\f189"}i.icon.weibo:before{content:"\f18a"}i.icon.renren:before{content:"\f18b"}i.icon.pagelines:before{content:"\f18c"}i.icon.stack.exchange:before{content:"\f18d"}i.icon.vimeo:before{content:"\f194"}i.icon.slack:before{content:"\f198"}i.icon.wordpress:before{content:"\f19a"}i.icon.yahoo:before{content:"\f19e"}i.icon.google:before{content:"\f1a0"}i.icon.reddit:before{content:"\f1a1"}i.icon.reddit.square:before{content:"\f1a2"}i.icon.stumbleupon.circle:before{content:"\f1a3"}i.icon.stumbleupon:before{content:"\f1a4"}i.icon.delicious:before{content:"\f1a5"}i.icon.digg:before{content:"\f1a6"}i.icon.pied.piper:before{content:"\f1a7"}i.icon.pied.piper.alternate:before{content:"\f1a8"}i.icon.drupal:before{content:"\f1a9"}i.icon.joomla:before{content:"\f1aa"}i.icon.behance:before{content:"\f1b4"}i.icon.behance.square:before{content:"\f1b5"}i.icon.steam:before{content:"\f1b6"}i.icon.steam.square:before{content:"\f1b7"}i.icon.spotify:before{content:"\f1bc"}i.icon.deviantart:before{content:"\f1bd"}i.icon.soundcloud:before{content:"\f1be"}i.icon.vine:before{content:"\f1ca"}i.icon.codepen:before{content:"\f1cb"}i.icon.jsfiddle:before{content:"\f1cc"}i.icon.rebel:before{content:"\f1d0"}i.icon.empire:before{content:"\f1d1"}i.icon.git.square:before{content:"\f1d2"}i.icon.git:before{content:"\f1d3"}i.icon.hacker.news:before{content:"\f1d4"}i.icon.tencent.weibo:before{content:"\f1d5"}i.icon.qq:before{content:"\f1d6"}i.icon.wechat:before{content:"\f1d7"}i.icon.slideshare:before{content:"\f1e7"}i.icon.twitch:before{content:"\f1e8"}i.icon.yelp:before{content:"\f1e9"}i.icon.lastfm:before{content:"\f202"}i.icon.lastfm.square:before{content:"\f203"}i.icon.ioxhost:before{content:"\f208"}i.icon.angellist:before{content:"\f209"}i.icon.meanpath:before{content:"\f20c"}i.icon.buysellads:before{content:"\f20d"}i.icon.connectdevelop:before{content:"\f20e"}i.icon.dashcube:before{content:"\f210"}i.icon.forumbee:before{content:"\f211"}i.icon.leanpub:before{content:"\f212"}i.icon.sellsy:before{content:"\f213"}i.icon.shirtsinbulk:before{content:"\f214"}i.icon.simplybuilt:before{content:"\f215"}i.icon.skyatlas:before{content:"\f216"}i.icon.whatsapp:before{content:"\f232"}i.icon.viacoin:before{content:"\f237"}i.icon.medium:before{content:"\f23a"}i.icon.like:before{content:"\f004"}i.icon.favorite:before{content:"\f005"}i.icon.video:before{content:"\f008"}i.icon.check:before{content:"\f00c"}i.icon.cancel:before,i.icon.close:before,i.icon.delete:before,i.icon.x:before{content:"\f00d"}i.icon.user.cancel:before,i.icon.user.close:before,i.icon.user.delete:before,i.icon.user.times:before,i.icon.user.x:before{content:"\f235"}i.icon.magnify:before,i.icon.zoom.in:before{content:"\f00e"}i.icon.shutdown:before{content:"\f011"}i.icon.clock:before,i.icon.time:before{content:"\f017"}i.icon.play.circle.outline:before{content:"\f01d"}i.icon.headphone:before{content:"\f025"}i.icon.camera:before{content:"\f030"}i.icon.video.camera:before{content:"\f03d"}i.icon.picture:before{content:"\f03e"}i.icon.compose:before,i.icon.pencil:before{content:"\f040"}i.icon.point:before{content:"\f041"}i.icon.tint:before{content:"\f043"}i.icon.signup:before{content:"\f044"}i.icon.plus.circle:before{content:"\f055"}i.icon.dont:before{content:"\f05e"}i.icon.minimize:before{content:"\f066"}i.icon.add:before{content:"\f067"}i.icon.eye:before{content:"\f06e"}i.icon.attention:before{content:"\f06a"}i.icon.cart:before{content:"\f07a"}i.icon.shuffle:before{content:"\f074"}i.icon.chat:before,i.icon.talk:before{content:"\f075"}i.icon.shopping.cart:before{content:"\f07a"}i.icon.bar.graph:before{content:"\f080"}i.icon.area.graph:before{content:"\f1fe"}i.icon.pie.graph:before{content:"\f200"}i.icon.line.graph:before{content:"\f201"}i.icon.key:before{content:"\f084"}i.icon.cogs:before{content:"\f085"}i.icon.discussions:before{content:"\f086"}i.icon.like.outline:before{content:"\f087"}i.icon.dislike.outline:before{content:"\f088"}i.icon.heart.outline:before{content:"\f08a"}i.icon.log.out:before{content:"\f08b"}i.icon.thumb.tack:before{content:"\f08d"}i.icon.winner:before{content:"\f091"}i.icon.bookmark.outline:before{content:"\f097"}i.icon.phone:before{content:"\f095"}i.icon.phone.square:before{content:"\f098"}i.icon.credit.card:before{content:"\f09d"}i.icon.hdd.outline:before{content:"\f0a0"}i.icon.bullhorn:before{content:"\f0a1"}i.icon.bell:before{content:"\f0f3"}i.icon.bell.outline:before{content:"\f0a2"}i.icon.bell.slash:before{content:"\f1f6"}i.icon.bell.slash.outline:before{content:"\f1f7"}i.icon.hand.outline.right:before{content:"\f0a4"}i.icon.hand.outline.left:before{content:"\f0a5"}i.icon.hand.outline.up:before{content:"\f0a6"}i.icon.hand.outline.down:before{content:"\f0a7"}i.icon.globe:before{content:"\f0ac"}i.icon.wrench:before{content:"\f0ad"}i.icon.briefcase:before{content:"\f0b1"}i.icon.group:before{content:"\f0c0"}i.icon.flask:before{content:"\f0c3"}i.icon.bars:before,i.icon.sidebar:before{content:"\f0c9"}i.icon.list.ul:before{content:"\f0ca"}i.icon.list.ol:before,i.icon.numbered.list:before{content:"\f0cb"}i.icon.magic:before{content:"\f0d0"}i.icon.truck:before{content:"\f0d1"}i.icon.currency:before{content:"\f0d6"}i.icon.dropdown:before,i.icon.triangle.down:before{content:"\f0d7"}i.icon.triangle.up:before{content:"\f0d8"}i.icon.triangle.left:before{content:"\f0d9"}i.icon.triangle.right:before{content:"\f0da"}i.icon.envelope:before{content:"\f0e0"}i.icon.conversation:before{content:"\f0e6"}i.icon.umbrella:before{content:"\f0e9"}i.icon.clipboard:before{content:"\f0ea"}i.icon.lightbulb:before{content:"\f0eb"}i.icon.ambulance:before{content:"\f0f9"}i.icon.medkit:before{content:"\f0fa"}i.icon.fighter.jet:before{content:"\f0fb"}i.icon.beer:before{content:"\f0fc"}i.icon.plus.square:before{content:"\f0fe"}i.icon.computer:before{content:"\f108"}i.icon.asexual:before,i.icon.circle.outline:before,i.icon.intersex:before{content:"\f10c"}i.icon.spinner:before{content:"\f110"}i.icon.gamepad:before{content:"\f11b"}i.icon.star.half.full:before{content:"\f123"}i.icon.question:before{content:"\f128"}i.icon.eraser:before{content:"\f12d"}i.icon.microphone:before{content:"\f130"}i.icon.microphone.slash:before{content:"\f131"}i.icon.shield:before{content:"\f132"}i.icon.target:before{content:"\f140"}i.icon.play.circle:before{content:"\f144"}i.icon.pencil.square:before{content:"\f14b"}i.icon.compass:before{content:"\f14e"}i.icon.amex:before{content:"\f1f3"}i.icon.eur:before{content:"\f153"}i.icon.gbp:before{content:"\f154"}i.icon.usd:before{content:"\f155"}i.icon.inr:before{content:"\f156"}i.icon.cny:before,i.icon.jpy:before,i.icon.rmb:before{content:"\f157"}i.icon.rouble:before,i.icon.rub:before{content:"\f158"}i.icon.krw:before{content:"\f159"}i.icon.btc:before{content:"\f15a"}i.icon.ils:before,i.icon.sheqel:before{content:"\f20b"}i.icon.try:before{content:"\f195"}i.icon.zip:before{content:"\f187"}i.icon.dot.circle.outline:before{content:"\f192"}i.icon.sliders:before{content:"\f1de"}i.icon.wi-fi:before{content:"\f1eb"}i.icon.graduation:before{content:"\f19d"}i.icon.weixin:before{content:"\f1d7"}i.icon.binoculars:before{content:"\f1e5"}i.icon.gratipay:before{content:"\f184"}i.icon.genderless:before{content:"\f1db"}i.icon.teletype:before{content:"\f1e4"}i.icon.power.cord:before{content:"\f1e6"}i.icon.tty:before{content:"\f1e4"}i.icon.cc:before{content:"\f20a"}i.icon.plus.cart:before{content:"\f217"}i.icon.arrow.down.cart:before{content:"\f218"}i.icon.detective:before{content:"\f21b"}i.icon.venus:before{content:"\f221"}i.icon.mars:before{content:"\f222"}i.icon.mercury:before{content:"\f223"}i.icon.female.homosexual:before,i.icon.venus.double:before{content:"\f226"}i.icon.male.homosexual:before,i.icon.mars.double:before{content:"\f227"}i.icon.venus.mars:before{content:"\f228"}i.icon.mars.alternate:before,i.icon.mars.stroke:before{content:"\f229"}i.icon.mars.vertical:before{content:"\f22a"}i.icon.mars.horizontal:before{content:"\f22b"}i.icon.mars.stroke.vertical:before{content:"\f22a"}i.icon.mars.stroke.horizontal:before{content:"\f22b"}i.icon.facebook.official{content:"\f230"}i.icon.pinterest.official{content:"\f231"}i.icon.bed:before{content:"\f236"}.ui.image{position:relative;display:inline-block;vertical-align:middle;max-width:100%;background-color:transparent}img.ui.image{display:block}.ui.image img,.ui.image svg{display:block;max-width:100%;height:auto}.ui.hidden.image,.ui.hidden.images{display:none}.ui.disabled.image,.ui.disabled.images{cursor:default;opacity:.45}.ui.inline.image,.ui.inline.image img,.ui.inline.image svg{display:inline-block}.ui.top.aligned.image,.ui.top.aligned.image img,.ui.top.aligned.image svg,.ui.top.aligned.images .image{display:inline-block;vertical-align:top}.ui.middle.aligned.image,.ui.middle.aligned.image img,.ui.middle.aligned.image svg,.ui.middle.aligned.images .image{display:inline-block;vertical-align:middle}.ui.bottom.aligned.image,.ui.bottom.aligned.image img,.ui.bottom.aligned.image svg,.ui.bottom.aligned.images .image{display:inline-block;vertical-align:bottom}.ui.rounded.image,.ui.rounded.image>*,.ui.rounded.images .image,.ui.rounded.images .image>*{border-radius:.3125em}.ui.bordered.image img,.ui.bordered.image svg,.ui.bordered.images .image,.ui.bordered.images img,.ui.bordered.images svg,img.ui.bordered.image{border:1px solid rgba(0,0,0,.1)}.ui.circular.image,.ui.circular.images{overflow:hidden}.ui.circular.image,.ui.circular.image>*,.ui.circular.images .image,.ui.circular.images .image>*{border-radius:500rem}.ui.fluid.image,.ui.fluid.image img,.ui.fluid.image svg,.ui.fluid.images,.ui.fluid.images img,.ui.fluid.images svg{display:block;width:100%;height:auto}.ui.avatar.image,.ui.avatar.image img,.ui.avatar.image svg,.ui.avatar.images .image,.ui.avatar.images img,.ui.avatar.images svg{margin-right:.25em;display:inline-block;width:2em;height:2em;border-radius:500rem}.ui.spaced.image{display:inline-block!important;margin-left:.5em;margin-right:.5em}.ui[class*="left spaced"].image{margin-left:.5em;margin-right:0}.ui[class*="right spaced"].image{margin-left:0;margin-right:.5em}.ui.floated.image,.ui.floated.images{float:left;margin-right:1em;margin-bottom:1em}.ui.right.floated.image,.ui.right.floated.images{float:right;margin-right:0;margin-bottom:1em;margin-left:1em}.ui.floated.image:last-child,.ui.floated.images:last-child{margin-bottom:0}.ui.centered.image,.ui.centered.images{margin-left:auto;margin-right:auto}.ui.mini.image,.ui.mini.images .image,.ui.mini.images img,.ui.mini.images svg{width:35px;height:auto;font-size:.71428571rem}.ui.tiny.image,.ui.tiny.images .image,.ui.tiny.images img,.ui.tiny.images svg{width:80px;height:auto;font-size:.85714286rem}.ui.small.image,.ui.small.images .image,.ui.small.images img,.ui.small.images svg{width:150px;height:auto;font-size:.92857143rem}.ui.medium.image,.ui.medium.images .image,.ui.medium.images img,.ui.medium.images svg{width:300px;height:auto;font-size:1rem}.ui.large.image,.ui.large.images .image,.ui.large.images img,.ui.large.images svg{width:450px;height:auto;font-size:1.14285714rem}.ui.big.image,.ui.big.images .image,.ui.big.images img,.ui.big.images svg{width:600px;height:auto;font-size:1.28571429rem}.ui.huge.image,.ui.huge.images .image,.ui.huge.images img,.ui.huge.images svg{width:800px;height:auto;font-size:1.42857143rem}.ui.massive.image,.ui.massive.images .image,.ui.massive.images img,.ui.massive.images svg{width:960px;height:auto;font-size:1.71428571rem}.ui.images{font-size:0;margin:0 -.25rem}.ui.images .image,.ui.images img,.ui.images svg{display:inline-block;margin:0 .25rem .5rem}.ui.input{position:relative;font-weight:400;font-style:normal;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;color:rgba(0,0,0,.87)}.ui.input input{margin:0;max-width:100%;-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0);text-align:left;line-height:1.2142em;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;padding:.67861429em 1em;background:#FFF;border:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87);border-radius:.28571429rem;-webkit-transition:box-shadow .1s ease,border-color .1s ease;transition:box-shadow .1s ease,border-color .1s ease;box-shadow:none}.ui.input input::-webkit-input-placeholder{color:rgba(0,0,0,.4)}.ui.input input::-moz-placeholder{color:rgba(0,0,0,.4)}.ui.input input::-ms-input-placeholder{color:rgba(0,0,0,.4)}.ui.disabled.input,.ui.input input[disabled]{opacity:.45}.ui.disabled.input input{pointer-events:none}.ui.input input:active,.ui.input.down input{border-color:rgba(0,0,0,.3);background:#FAFAFA;color:rgba(0,0,0,.87);box-shadow:none}.ui.loading.loading.input>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.loading.input>i.icon:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.input input:focus,.ui.input.focus input{border-color:#85B7D9;background:#FFF;color:rgba(0,0,0,.8);box-shadow:none}.ui.input input:focus::-webkit-input-placeholder,.ui.input.focus input::-webkit-input-placeholder{color:rgba(0,0,0,.87)}.ui.input input:focus::-moz-placeholder,.ui.input.focus input::-moz-placeholder{color:rgba(0,0,0,.87)}.ui.input input:focus::-ms-input-placeholder,.ui.input.focus input::-ms-input-placeholder{color:rgba(0,0,0,.87)}.ui.input.error input{background-color:#FFF6F6;border-color:#E0B4B4;color:#9F3A38;box-shadow:none}.ui.input.error input::-webkit-input-placeholder{color:#e7bdbc}.ui.input.error input::-moz-placeholder{color:#e7bdbc}.ui.input.error input::-ms-input-placeholder{color:#e7bdbc}.ui.input.error input:focus::-webkit-input-placeholder{color:#da9796}.ui.input.error input:focus::-moz-placeholder{color:#da9796}.ui.input.error input:focus::-ms-input-placeholder{color:#da9796}.ui.transparent.input input{border-color:transparent!important;background-color:transparent!important;padding:0!important;box-shadow:none!important}.ui.transparent.icon.input>i.icon{width:1.1em}.ui.transparent.icon.input>input{padding-left:0!important;padding-right:2em!important}.ui.transparent[class*="left icon"].input>input{padding-left:2em!important;padding-right:0!important}.ui.transparent.inverted.input{color:#FFF}.ui.transparent.inverted.input input{color:inherit}.ui.transparent.inverted.input input::-webkit-input-placeholder{color:rgba(255,255,255,.5)}.ui.transparent.inverted.input input::-moz-placeholder{color:rgba(255,255,255,.5)}.ui.transparent.inverted.input input::-ms-input-placeholder{color:rgba(255,255,255,.5)}.ui.icon.input>i.icon{cursor:default;position:absolute;line-height:1;text-align:center;top:0;right:0;margin:0;height:100%;width:2.67142857em;opacity:.5;border-radius:0 .28571429rem .28571429rem 0;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}.ui.icon.input>i.icon:not(.link){pointer-events:none}.ui.icon.input input{padding-right:2.67142857em!important}.ui.icon.input>i.icon:after,.ui.icon.input>i.icon:before{left:0;position:absolute;text-align:center;top:50%;width:100%;margin-top:-.5em}.ui.icon.input>i.link.icon{cursor:pointer}.ui.icon.input>i.circular.icon{top:.35em;right:.5em}.ui[class*="left icon"].input>i.icon{right:auto;left:1px;border-radius:.28571429rem 0 0 .28571429rem}.ui[class*="left icon"].input>i.circular.icon{right:auto;left:.5em}.ui[class*="left icon"].input>input{padding-left:2.67142857em!important;padding-right:1em!important}.ui.icon.input>input:focus~i.icon{opacity:1}.ui.labeled.input>.label{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;margin:0;font-size:1em}.ui.labeled.input>.label:not(.corner){padding-top:.78571429em;padding-bottom:.78571429em}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child+input{border-top-left-radius:0;border-bottom-left-radius:0;border-left-color:transparent}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child+input:focus{border-left-color:#85B7D9}.ui[class*="right labeled"].input input{border-top-right-radius:0!important;border-bottom-right-radius:0!important;border-right-color:transparent!important}.ui[class*="right labeled"].input input+.label{border-top-left-radius:0;border-bottom-left-radius:0}.ui[class*="right labeled"].input input:focus{border-right-color:#85B7D9!important}.ui.labeled.input .corner.label{top:1px;right:1px;font-size:.64285714em;border-radius:0 .28571429rem 0 0}.ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input input{padding-right:2.5em!important}.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"])>input{padding-right:3.25em!important}.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"])>.icon{margin-right:1.25em}.ui[class*="left corner labeled"].labeled.input input{padding-left:2.5em!important}.ui[class*="left corner labeled"].icon.input>input{padding-left:3.25em!important}.ui[class*="left corner labeled"].icon.input>.icon{margin-left:1.25em}.ui.input>.ui.corner.label{top:1px;right:1px}.ui.input>.ui.left.corner.label{right:auto;left:1px}.ui.action.input>.button,.ui.action.input>.buttons{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.ui.action.input>.button,.ui.action.input>.buttons>.button{padding-top:.78571429em;padding-bottom:.78571429em;margin:0}.ui.action.input:not([class*="left action"])>input{border-top-right-radius:0!important;border-bottom-right-radius:0!important;border-right-color:transparent!important}.ui.action.input:not([class*="left action"])>.button,.ui.action.input:not([class*="left action"])>.buttons>.button,.ui.action.input:not([class*="left action"])>.dropdown{border-radius:0}.ui.action.input:not([class*="left action"])>.button:last-child,.ui.action.input:not([class*="left action"])>.buttons:last-child>.button,.ui.action.input:not([class*="left action"])>.dropdown:last-child{border-radius:0 .28571429rem .28571429rem 0}.ui.action.input:not([class*="left action"]) input:focus{border-right-color:#85B7D9!important}.ui[class*="left action"].input>input{border-top-left-radius:0!important;border-bottom-left-radius:0!important;border-left-color:transparent!important}.ui[class*="left action"].input>.button,.ui[class*="left action"].input>.buttons>.button,.ui[class*="left action"].input>.dropdown{border-radius:0}.ui[class*="left action"].input>.button:first-child,.ui[class*="left action"].input>.buttons:first-child>.button,.ui[class*="left action"].input>.dropdown:first-child{border-radius:.28571429rem 0 0 .28571429rem}.ui[class*="left action"].input>input:focus{border-left-color:#85B7D9!important}.ui.inverted.input input{border:none}.ui.fluid.input{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.fluid.input>input{width:0!important}.ui.mini.input{font-size:.71428571em}.ui.small.input{font-size:.92857143em}.ui.input{font-size:1em}.ui.large.input{font-size:1.14285714em}.ui.big.input{font-size:1.28571429em}.ui.huge.input{font-size:1.42857143em}.ui.massive.input{font-size:1.71428571em}.ui.label{display:inline-block;line-height:1;vertical-align:baseline;margin:0 .14285714em;background-color:#E8E8E8;background-image:none;padding:.5833em .833em;color:rgba(0,0,0,.6);text-transform:none;font-weight:700;border:0 solid transparent;border-radius:.28571429rem;-webkit-transition:background .1s ease;transition:background .1s ease}.ui.label:first-child{margin-left:0}.ui.label:last-child{margin-right:0}a.ui.label{cursor:pointer}.ui.label>a{cursor:pointer;color:inherit;opacity:.5;-webkit-transition:.1s opacity ease;transition:.1s opacity ease}.ui.label>a:hover{opacity:1}.ui.label>img{width:auto!important;vertical-align:middle;height:2.1666em!important}.ui.label>.icon{width:auto;margin:0 .75em 0 0}.ui.label>.detail{display:inline-block;vertical-align:top;font-weight:700;margin-left:1em;opacity:.8}.ui.label>.detail .icon{margin:0 .25em 0 0}.ui.label>.close.icon,.ui.label>.delete.icon{cursor:pointer;margin-right:0;margin-left:.5em;font-size:.92857143em;opacity:.5;-webkit-transition:background .1s ease;transition:background .1s ease}.ui.label>.delete.icon:hover{opacity:1}.ui.labels>.label{margin:0 .5em .5em 0}.ui.header>.ui.label{margin-top:-.29165em}.ui.attached.segment>.ui.top.left.attached.label,.ui.bottom.attached.segment>.ui.top.left.attached.label{border-top-left-radius:0}.ui.attached.segment>.ui.top.right.attached.label,.ui.bottom.attached.segment>.ui.top.right.attached.label{border-top-right-radius:0}.ui.top.attached.segment>.ui.bottom.left.attached.label{border-bottom-left-radius:0}.ui.top.attached.segment>.ui.bottom.right.attached.label{border-bottom-right-radius:0}.ui.top.attached.label:first-child+:not(.attached){margin-top:2rem!important}.ui.bottom.attached.label:first-child~:last-child:not(.attached){margin-top:0;margin-bottom:2rem!important}.ui.image.label{width:auto!important;margin-top:0;margin-bottom:0;max-width:9999px;vertical-align:baseline;text-transform:none;background:#E8E8E8;padding:.5833em .833em .5833em .5em;border-radius:.28571429rem;box-shadow:none}.ui.image.label img{display:inline-block;vertical-align:top;height:2.1666em;margin:-.5833em .5em -.5833em -.5em;border-radius:.28571429rem 0 0 .28571429rem}.ui.image.label .detail{background:rgba(0,0,0,.1);margin:-.5833em -.833em -.5833em .5em;padding:.5833em .833em;border-radius:0 .28571429rem .28571429rem 0}.ui.tag.label,.ui.tag.labels .label{margin-left:1em;position:relative;padding-left:1.5em;padding-right:1.5em;border-radius:0 .28571429rem .28571429rem 0;-webkit-transition:none;transition:none}.ui.tag.label:before,.ui.tag.labels .label:before{position:absolute;-webkit-transform:translateY(-50%) translateX(50%) rotate(-45deg);-ms-transform:translateY(-50%) translateX(50%) rotate(-45deg);transform:translateY(-50%) translateX(50%) rotate(-45deg);top:50%;right:100%;content:'';background-color:inherit;background-image:none;width:1.56em;height:1.56em;-webkit-transition:none;transition:none}.ui.tag.label:after,.ui.tag.labels .label:after{position:absolute;content:'';top:50%;left:-.25em;margin-top:-.25em;background-color:#FFF!important;width:.5em;height:.5em;box-shadow:0 -1px 1px 0 rgba(0,0,0,.3);border-radius:500rem}.ui.corner.label{position:absolute;top:0;right:0;margin:0;padding:0;text-align:center;border-color:#E8E8E8;width:4em;height:4em;z-index:1;-webkit-transition:border-color .1s ease;transition:border-color .1s ease;background-color:transparent!important}.ui.corner.label:after{position:absolute;content:"";right:0;top:0;z-index:-1;width:0;height:0;background-color:transparent!important;border-top:0 solid transparent;border-right:4em solid transparent;border-bottom:4em solid transparent;border-left:0 solid transparent;border-right-color:inherit;-webkit-transition:border-color .1s ease;transition:border-color .1s ease}.ui.corner.label .icon{cursor:default;position:relative;top:.64285714em;left:.78571429em;font-size:1.14285714em;margin:0}.ui.left.corner.label,.ui.left.corner.label:after{right:auto;left:0}.ui.left.corner.label:after{border-top:4em solid transparent;border-right:4em solid transparent;border-bottom:0 solid transparent;border-left:0 solid transparent;border-top-color:inherit}.ui.left.corner.label .icon{left:-.78571429em}.ui.segment>.ui.corner.label{top:-1px;right:-1px}.ui.segment>.ui.left.corner.label{right:auto;left:-1px}.ui.ribbon.label{position:relative;margin:0;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;border-radius:0 .28571429rem .28571429rem 0;border-color:rgba(0,0,0,.15)}.ui.ribbon.label:after{position:absolute;content:'';top:100%;left:0;background-color:transparent!important;border-style:solid;border-width:0 1.2em 1.2em 0;border-color:transparent;border-right-color:inherit;width:0;height:0}.ui.ribbon.label{left:calc(-1rem - 1.2em);margin-right:-1.2em;padding-left:calc(1rem + 1.2em);padding-right:1.2em}.ui[class*="right ribbon"].label{left:calc(100% + 1rem + 1.2em);padding-left:1.2em;padding-right:calc(1rem + 1.2em);text-align:left;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%);border-radius:.28571429rem 0 0 .28571429rem}.ui[class*="right ribbon"].label:after{left:auto;right:0;border-style:solid;border-width:1.2em 1.2em 0 0;border-color:transparent;border-top-color:inherit}.ui.card .image>.ribbon.label,.ui.image>.ribbon.label{position:absolute;top:1rem}.ui.card .image>.ui.ribbon.label,.ui.image>.ui.ribbon.label{left:calc(.05rem - 1.2em)}.ui.card .image>.ui[class*="right ribbon"].label,.ui.image>.ui[class*="right ribbon"].label{left:calc(100% + -.05rem + 1.2em);padding-left:.833em}.ui.table td>.ui.ribbon.label{left:calc(-.71428571em - 1.2em)}.ui.table td>.ui[class*="right ribbon"].label{left:calc(100% + .71428571em + 1.2em);padding-left:.833em}.ui.attached.label,.ui[class*="top attached"].label{width:100%;position:absolute;margin:0;top:0;left:0;padding:.75em 1em;border-radius:.21428571rem .21428571rem 0 0}.ui[class*="bottom attached"].label{top:auto;bottom:0;border-radius:0 0 .21428571rem .21428571rem}.ui[class*="top left attached"].label{width:auto;margin-top:0!important;border-radius:.21428571rem 0 .28571429rem}.ui[class*="top right attached"].label{width:auto;left:auto;right:0;border-radius:0 .21428571rem 0 .28571429rem}.ui[class*="bottom left attached"].label{width:auto;top:auto;bottom:0;border-radius:0 .28571429rem 0 .21428571rem}.ui[class*="bottom right attached"].label{top:auto;bottom:0;left:auto;right:0;width:auto;border-radius:.28571429rem 0 .21428571rem}.ui.label.disabled{opacity:.5}a.ui.label:hover,a.ui.labels .label:hover{background-color:#E0E0E0;border-color:#E0E0E0;background-image:none;color:rgba(0,0,0,.8)}.ui.labels a.label:hover:before,a.ui.label:hover:before{color:rgba(0,0,0,.8)}.ui.active.label{background-color:#D0D0D0;border-color:#D0D0D0;background-image:none;color:rgba(0,0,0,.95)}.ui.active.label:before{background-color:#D0D0D0;background-image:none;color:rgba(0,0,0,.95)}a.ui.active.label:hover,a.ui.labels .active.label:hover{background-color:#C8C8C8;border-color:#C8C8C8;background-image:none;color:rgba(0,0,0,.95)}.ui.labels a.active.label:ActiveHover:before,a.ui.active.label:ActiveHover:before{background-color:#C8C8C8;background-image:none;color:rgba(0,0,0,.95)}.ui.label.visible,.ui.labels.visible .label{display:inline-block!important}.ui.label.hidden,.ui.labels.hidden .label{display:none!important}.ui.red.label,.ui.red.labels .label{background-color:#DB2828!important;border-color:#DB2828!important;color:#FFF!important}.ui.red.labels .label:hover,a.ui.red.label:hover{background-color:#d01919!important;border-color:#d01919!important;color:#FFF!important}.ui.red.corner.label,.ui.red.corner.label:hover{background-color:transparent!important}.ui.red.ribbon.label{border-color:#b21e1e!important}.ui.basic.red.label{background-color:#FFF!important;color:#DB2828!important;border-color:#DB2828!important}.ui.basic.red.labels a.label:hover,a.ui.basic.red.label:hover{background-color:#FFF!important;color:#d01919!important;border-color:#d01919!important}.ui.orange.label,.ui.orange.labels .label{background-color:#F2711C!important;border-color:#F2711C!important;color:#FFF!important}.ui.orange.labels .label:hover,a.ui.orange.label:hover{background-color:#f26202!important;border-color:#f26202!important;color:#FFF!important}.ui.orange.corner.label,.ui.orange.corner.label:hover{background-color:transparent!important}.ui.orange.ribbon.label{border-color:#cf590c!important}.ui.basic.orange.label{background-color:#FFF!important;color:#F2711C!important;border-color:#F2711C!important}.ui.basic.orange.labels a.label:hover,a.ui.basic.orange.label:hover{background-color:#FFF!important;color:#f26202!important;border-color:#f26202!important}.ui.yellow.label,.ui.yellow.labels .label{background-color:#FBBD08!important;border-color:#FBBD08!important;color:#FFF!important}.ui.yellow.labels .label:hover,a.ui.yellow.label:hover{background-color:#eaae00!important;border-color:#eaae00!important;color:#FFF!important}.ui.yellow.corner.label,.ui.yellow.corner.label:hover{background-color:transparent!important}.ui.yellow.ribbon.label{border-color:#cd9903!important}.ui.basic.yellow.label{background-color:#FFF!important;color:#FBBD08!important;border-color:#FBBD08!important}.ui.basic.yellow.labels a.label:hover,a.ui.basic.yellow.label:hover{background-color:#FFF!important;color:#eaae00!important;border-color:#eaae00!important}.ui.olive.label,.ui.olive.labels .label{background-color:#B5CC18!important;border-color:#B5CC18!important;color:#FFF!important}.ui.olive.labels .label:hover,a.ui.olive.label:hover{background-color:#a7bd0d!important;border-color:#a7bd0d!important;color:#FFF!important}.ui.olive.corner.label,.ui.olive.corner.label:hover{background-color:transparent!important}.ui.olive.ribbon.label{border-color:#198f35!important}.ui.basic.olive.label{background-color:#FFF!important;color:#B5CC18!important;border-color:#B5CC18!important}.ui.basic.olive.labels a.label:hover,a.ui.basic.olive.label:hover{background-color:#FFF!important;color:#a7bd0d!important;border-color:#a7bd0d!important}.ui.green.label,.ui.green.labels .label{background-color:#21BA45!important;border-color:#21BA45!important;color:#FFF!important}.ui.green.labels .label:hover,a.ui.green.label:hover{background-color:#16ab39!important;border-color:#16ab39!important;color:#FFF!important}.ui.green.corner.label,.ui.green.corner.label:hover{background-color:transparent!important}.ui.green.ribbon.label{border-color:#198f35!important}.ui.basic.green.label{background-color:#FFF!important;color:#21BA45!important;border-color:#21BA45!important}.ui.basic.green.labels a.label:hover,a.ui.basic.green.label:hover{background-color:#FFF!important;color:#16ab39!important;border-color:#16ab39!important}.ui.teal.label,.ui.teal.labels .label{background-color:#00B5AD!important;border-color:#00B5AD!important;color:#FFF!important}.ui.teal.labels .label:hover,a.ui.teal.label:hover{background-color:#009c95!important;border-color:#009c95!important;color:#FFF!important}.ui.teal.corner.label,.ui.teal.corner.label:hover{background-color:transparent!important}.ui.teal.ribbon.label{border-color:#00827c!important}.ui.basic.teal.label{background-color:#FFF!important;color:#00B5AD!important;border-color:#00B5AD!important}.ui.basic.teal.labels a.label:hover,a.ui.basic.teal.label:hover{background-color:#FFF!important;color:#009c95!important;border-color:#009c95!important}.ui.blue.label,.ui.blue.labels .label{background-color:#2185D0!important;border-color:#2185D0!important;color:#FFF!important}.ui.blue.labels .label:hover,a.ui.blue.label:hover{background-color:#1678c2!important;border-color:#1678c2!important;color:#FFF!important}.ui.blue.corner.label,.ui.blue.corner.label:hover{background-color:transparent!important}.ui.blue.ribbon.label{border-color:#1a69a4!important}.ui.basic.blue.label{background-color:#FFF!important;color:#2185D0!important;border-color:#2185D0!important}.ui.basic.blue.labels a.label:hover,a.ui.basic.blue.label:hover{background-color:#FFF!important;color:#1678c2!important;border-color:#1678c2!important}.ui.violet.label,.ui.violet.labels .label{background-color:#6435C9!important;border-color:#6435C9!important;color:#FFF!important}.ui.violet.labels .label:hover,a.ui.violet.label:hover{background-color:#5829bb!important;border-color:#5829bb!important;color:#FFF!important}.ui.violet.corner.label,.ui.violet.corner.label:hover{background-color:transparent!important}.ui.violet.ribbon.label{border-color:#502aa1!important}.ui.basic.violet.label{background-color:#FFF!important;color:#6435C9!important;border-color:#6435C9!important}.ui.basic.violet.labels a.label:hover,a.ui.basic.violet.label:hover{background-color:#FFF!important;color:#5829bb!important;border-color:#5829bb!important}.ui.purple.label,.ui.purple.labels .label{background-color:#A333C8!important;border-color:#A333C8!important;color:#FFF!important}.ui.purple.labels .label:hover,a.ui.purple.label:hover{background-color:#9627ba!important;border-color:#9627ba!important;color:#FFF!important}.ui.purple.corner.label,.ui.purple.corner.label:hover{background-color:transparent!important}.ui.purple.ribbon.label{border-color:#82299f!important}.ui.basic.purple.label{background-color:#FFF!important;color:#A333C8!important;border-color:#A333C8!important}.ui.basic.purple.labels a.label:hover,a.ui.basic.purple.label:hover{background-color:#FFF!important;color:#9627ba!important;border-color:#9627ba!important}.ui.pink.label,.ui.pink.labels .label{background-color:#E03997!important;border-color:#E03997!important;color:#FFF!important}.ui.pink.labels .label:hover,a.ui.pink.label:hover{background-color:#e61a8d!important;border-color:#e61a8d!important;color:#FFF!important}.ui.pink.corner.label,.ui.pink.corner.label:hover{background-color:transparent!important}.ui.pink.ribbon.label{border-color:#c71f7e!important}.ui.basic.pink.label{background-color:#FFF!important;color:#E03997!important;border-color:#E03997!important}.ui.basic.pink.labels a.label:hover,a.ui.basic.pink.label:hover{background-color:#FFF!important;color:#e61a8d!important;border-color:#e61a8d!important}.ui.brown.label,.ui.brown.labels .label{background-color:#A5673F!important;border-color:#A5673F!important;color:#FFF!important}.ui.brown.labels .label:hover,a.ui.brown.label:hover{background-color:#975b33!important;border-color:#975b33!important;color:#FFF!important}.ui.brown.corner.label,.ui.brown.corner.label:hover{background-color:transparent!important}.ui.brown.ribbon.label{border-color:#805031!important}.ui.basic.brown.label{background-color:#FFF!important;color:#A5673F!important;border-color:#A5673F!important}.ui.basic.brown.labels a.label:hover,a.ui.basic.brown.label:hover{background-color:#FFF!important;color:#975b33!important;border-color:#975b33!important}.ui.grey.label,.ui.grey.labels .label{background-color:#767676!important;border-color:#767676!important;color:#FFF!important}.ui.grey.labels .label:hover,a.ui.grey.label:hover{background-color:#838383!important;border-color:#838383!important;color:#FFF!important}.ui.grey.corner.label,.ui.grey.corner.label:hover{background-color:transparent!important}.ui.grey.ribbon.label{border-color:#805031!important}.ui.basic.grey.label{background-color:#FFF!important;color:#767676!important;border-color:#767676!important}.ui.basic.grey.labels a.label:hover,a.ui.basic.grey.label:hover{background-color:#FFF!important;color:#838383!important;border-color:#838383!important}.ui.black.label,.ui.black.labels .label{background-color:#1B1C1D!important;border-color:#1B1C1D!important;color:#FFF!important}.ui.black.labels .label:hover,a.ui.black.label:hover{background-color:#27292a!important;border-color:#27292a!important;color:#FFF!important}.ui.black.corner.label,.ui.black.corner.label:hover{background-color:transparent!important}.ui.black.ribbon.label{border-color:#805031!important}.ui.basic.black.label{background-color:#FFF!important;color:#1B1C1D!important;border-color:#1B1C1D!important}.ui.basic.black.labels a.label:hover,a.ui.basic.black.label:hover{background-color:#FFF!important;color:#27292a!important;border-color:#27292a!important}.ui.basic.label{background:#FFF;border:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87);box-shadow:none}a.ui.basic.label:hover{text-decoration:none;background:#FFF;color:#1e70bf;box-shadow:1px solid rgba(34,36,38,.15);box-shadow:none}.ui.basic.pointing.label:before{border-color:inherit}.ui.fluid.labels>.label,.ui.label.fluid{width:100%;box-sizing:border-box}.ui.inverted.label,.ui.inverted.labels .label{color:rgba(255,255,255,.9)!important}.ui.horizontal.label,.ui.horizontal.labels .label{margin:0 .5em 0 0;padding:.4em .833em;min-width:3em;text-align:center}.ui.circular.label,.ui.circular.labels .label{min-width:2em;min-height:2em;padding:.5em!important;line-height:1em;text-align:center;border-radius:500rem}.ui.empty.circular.label,.ui.empty.circular.labels .label{min-width:0;min-height:0;overflow:hidden;width:.5em;height:.5em;vertical-align:baseline}.ui.pointing.label{position:relative}.ui.attached.pointing.label{position:absolute}.ui.pointing.label:before{background-color:inherit;border-style:solid;border-color:inherit;position:absolute;content:'';-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);background-image:none;z-index:2;width:.6666em;height:.6666em;-webkit-transition:background .1s ease;transition:background .1s ease}.ui.pointing.label,.ui[class*="pointing above"].label{margin-top:1em}.ui.pointing.label:before,.ui[class*="pointing above"].label:before{border-width:1px 0 0 1px;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);top:0;left:50%}.ui[class*="bottom pointing"].label,.ui[class*="pointing below"].label{margin-top:0;margin-bottom:1em}.ui[class*="bottom pointing"].label:before,.ui[class*="pointing below"].label:before{border-width:0 1px 1px 0;right:auto;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);top:100%;left:50%}.ui[class*="left pointing"].label{margin-top:0;margin-left:.6666em}.ui[class*="left pointing"].label:before{border-width:0 0 1px 1px;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);bottom:auto;right:auto;top:50%;left:0}.ui[class*="right pointing"].label{margin-top:0;margin-right:.6666em}.ui[class*="right pointing"].label:before{border-width:1px 1px 0 0;-webkit-transform:translateX(50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(50%) translateY(-50%) rotate(45deg);transform:translateX(50%) translateY(-50%) rotate(45deg);top:50%;right:0;bottom:auto;left:auto}.ui.basic.pointing.label:before,.ui.basic[class*="pointing above"].label:before{margin-top:-1px}.ui.basic[class*="bottom pointing"].label:before,.ui.basic[class*="pointing below"].label:before{bottom:auto;top:100%;margin-top:1px}.ui.basic[class*="left pointing"].label:before{top:50%;left:-1px}.ui.basic[class*="right pointing"].label:before{top:50%;right:-1px}.ui.floating.label{position:absolute;z-index:100;top:-1em;left:100%;margin:0 0 0 -1.5em!important}.ui.mini.label,.ui.mini.labels .label{font-size:.64285714rem}.ui.tiny.label,.ui.tiny.labels .label{font-size:.71428571rem}.ui.small.label,.ui.small.labels .label{font-size:.78571429rem}.ui.label,.ui.labels .label{font-size:.85714286rem}.ui.large.label,.ui.large.labels .label{font-size:1rem}.ui.big.label,.ui.big.labels .label{font-size:1.28571429rem}.ui.huge.label,.ui.huge.labels .label{font-size:1.42857143rem}.ui.massive.label,.ui.massive.labels .label{font-size:1.71428571rem}.ui.list,ol.ui.list,ul.ui.list{list-style-type:none;margin:1em 0;padding:0}.ui.list:first-child,ol.ui.list:first-child,ul.ui.list:first-child{margin-top:0;padding-top:0}.ui.list:last-child,ol.ui.list:last-child,ul.ui.list:last-child{margin-bottom:0;padding-bottom:0}.ui.list .list>.item,.ui.list>.item,ol.ui.list li,ul.ui.list li{display:list-item;table-layout:fixed;list-style-type:none;list-style-position:outside;padding:.21428571em 0;line-height:1.14285714em}.ui.list>.item:after,.ui.list>.list>.item,ol.ui.list>li:first-child:after,ul.ui.list>li:first-child:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.list .list>.item:first-child,.ui.list>.item:first-child,ol.ui.list li:first-child,ul.ui.list li:first-child{padding-top:0}.ui.list .list>.item:last-child,.ui.list>.item:last-child,ol.ui.list li:last-child,ul.ui.list li:last-child{padding-bottom:0}.ui.list .list,ol.ui.list ol,ul.ui.list ul{clear:both;margin:0;padding:.75em 0 .25em .5em}.ui.list .list>.item,ol.ui.list ol li,ul.ui.list ul li{padding:.14285714em 0;line-height:inherit}.ui.list .list>.item>i.icon,.ui.list>.item>i.icon{display:table-cell;margin:0;padding-top:.07142857em;padding-right:.28571429em;vertical-align:top;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.list .list>.item>i.icon:only-child,.ui.list>.item>i.icon:only-child{display:inline-block;vertical-align:top}.ui.list .list>.item>.image,.ui.list>.item>.image{display:table-cell;background-color:transparent;margin:0;vertical-align:top}.ui.list .list>.item>.image:not(:only-child):not(img),.ui.list>.item>.image:not(:only-child):not(img){padding-right:.5em}.ui.list .list>.item>.image img,.ui.list>.item>.image img{vertical-align:top}.ui.list .list>.item>.image:only-child,.ui.list .list>.item>img.image,.ui.list>.item>.image:only-child,.ui.list>.item>img.image{display:inline-block}.ui.list .list>.item>.content,.ui.list>.item>.content{line-height:1.14285714em}.ui.list .list>.item>.icon+.content,.ui.list .list>.item>.image+.content,.ui.list>.item>.icon+.content,.ui.list>.item>.image+.content{display:table-cell;padding:0 0 0 .5em;vertical-align:top}.ui.list .list>.item>img.image+.content,.ui.list>.item>img.image+.content{display:inline-block}.ui.list .list>.item>.content>.list,.ui.list>.item>.content>.list{margin-left:0;padding-left:0}.ui.list .list>.item .header,.ui.list>.item .header{display:block;margin:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;color:rgba(0,0,0,.87)}.ui.list .list>.item .description,.ui.list>.item .description{display:block;color:rgba(0,0,0,.7)}.ui.list .list>.item a,.ui.list>.item a{cursor:pointer}.ui.list .list>a.item,.ui.list>a.item{cursor:pointer;color:#4183C4}.ui.list .list>a.item:hover,.ui.list>a.item:hover{color:#1e70bf}.ui.list .list>a.item i.icon,.ui.list>a.item i.icon{color:rgba(0,0,0,.4)}.ui.list .list>.item a.header,.ui.list>.item a.header{cursor:pointer;color:#4183C4!important}.ui.list .list>.item a.header:hover,.ui.list>.item a.header:hover{color:#1e70bf!important}.ui[class*="left floated"].list{float:left}.ui[class*="right floated"].list{float:right}.ui.list .list>.item [class*="left floated"],.ui.list>.item [class*="left floated"]{float:left;margin:0 1em 0 0}.ui.list .list>.item [class*="right floated"],.ui.list>.item [class*="right floated"]{float:right;margin:0 0 0 1em}.ui.menu .ui.list .list>.item,.ui.menu .ui.list>.item{display:list-item;table-layout:fixed;background-color:transparent;list-style-type:none;list-style-position:outside;padding:.21428571em 0;line-height:1.14285714em}.ui.menu .ui.list .list>.item:before,.ui.menu .ui.list>.item:before{border:none;background:0 0}.ui.menu .ui.list .list>.item:first-child,.ui.menu .ui.list>.item:first-child{padding-top:0}.ui.menu .ui.list .list>.item:last-child,.ui.menu .ui.list>.item:last-child{padding-bottom:0}.ui.horizontal.list{display:inline-block;font-size:0}.ui.horizontal.list>.item{display:inline-block;margin-left:1em;font-size:1rem}.ui.horizontal.list:not(.celled)>.item:first-child{margin-left:0!important;padding-left:0!important}.ui.horizontal.list .list{padding-left:0;padding-bottom:0}.ui.horizontal.list .list>.item>.content,.ui.horizontal.list .list>.item>.icon,.ui.horizontal.list .list>.item>.image,.ui.horizontal.list>.item>.content,.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.image{vertical-align:middle}.ui.horizontal.list>.item:first-child,.ui.horizontal.list>.item:last-child{padding-top:.21428571em;padding-bottom:.21428571em}.ui.horizontal.list>.item>i.icon{margin:0;padding:0 .25em 0 0}.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.icon+.content{float:none;display:inline-block}.ui.list .list>.disabled.item,.ui.list>.disabled.item{pointer-events:none;color:rgba(40,40,40,.3)!important}.ui.inverted.list .list>.disabled.item,.ui.inverted.list>.disabled.item{color:rgba(225,225,225,.3)!important}.ui.list .list>a.item:hover .icon,.ui.list>a.item:hover .icon{color:rgba(0,0,0,.87)}.ui.inverted.list .list>a.item>.icon,.ui.inverted.list>a.item>.icon{color:rgba(255,255,255,.7)}.ui.inverted.list .list>.item .header,.ui.inverted.list>.item .header{color:rgba(255,255,255,.9)}.ui.inverted.list .list>.item .description,.ui.inverted.list>.item .description{color:rgba(255,255,255,.7)}.ui.inverted.list .list>a.item,.ui.inverted.list>a.item{cursor:pointer;color:rgba(255,255,255,.9)}.ui.inverted.list .list>a.item:hover,.ui.inverted.list>a.item:hover{color:#1e70bf}.ui.inverted.list .item a:not(.ui){color:rgba(255,255,255,.9)!important}.ui.inverted.list .item a:not(.ui):hover{color:#1e70bf!important}.ui.list [class*="top aligned"],.ui.list[class*="top aligned"] .content,.ui.list[class*="top aligned"] .image{vertical-align:top!important}.ui.list [class*="middle aligned"],.ui.list[class*="middle aligned"] .content,.ui.list[class*="middle aligned"] .image{vertical-align:middle!important}.ui.list [class*="bottom aligned"],.ui.list[class*="bottom aligned"] .content,.ui.list[class*="bottom aligned"] .image{vertical-align:bottom!important}.ui.link.list .item,.ui.link.list .item a:not(.ui),.ui.link.list a.item{color:rgba(0,0,0,.4);-webkit-transition:.1s color ease;transition:.1s color ease}.ui.link.list .item a:not(.ui):hover,.ui.link.list a.item:hover{color:rgba(0,0,0,.8)}.ui.link.list .item a:not(.ui):active,.ui.link.list a.item:active{color:rgba(0,0,0,.9)}.ui.link.list .active.item,.ui.link.list .active.item a:not(.ui){color:rgba(0,0,0,.95)}.ui.inverted.link.list .item,.ui.inverted.link.list .item a:not(.ui),.ui.inverted.link.list a.item{color:rgba(255,255,255,.5)}.ui.inverted.link.list .active.item a:not(.ui),.ui.inverted.link.list .item a:not(.ui):active,.ui.inverted.link.list .item a:not(.ui):hover,.ui.inverted.link.list a.active.item,.ui.inverted.link.list a.item:active,.ui.inverted.link.list a.item:hover{color:#fff}.ui.selection.list .list>.item,.ui.selection.list>.item{cursor:pointer;background:0 0;padding:.5em;margin:0;color:rgba(0,0,0,.4);border-radius:.5em;-webkit-transition:.1s color ease,.1s padding-left ease,.1s background-color ease;transition:.1s color ease,.1s padding-left ease,.1s background-color ease}.ui.selection.list .list>.item:last-child,.ui.selection.list>.item:last-child{margin-bottom:0}.ui.selection.list.list>.item:hover,.ui.selection.list>.item:hover{background:rgba(0,0,0,.03);color:rgba(0,0,0,.8)}.ui.selection.list .list>.item:active,.ui.selection.list>.item:active{background:rgba(0,0,0,.05);color:rgba(0,0,0,.9)}.ui.selection.list .list>.item.active,.ui.selection.list>.item.active{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.inverted.selection.list>.item{background:0 0;color:rgba(255,255,255,.5)}.ui.inverted.selection.list>.item:hover{background:rgba(255,255,255,.02);color:#fff}.ui.inverted.selection.list>.item.active,.ui.inverted.selection.list>.item:active{background:rgba(255,255,255,.08);color:#fff}.ui.celled.selection.list .list>.item,.ui.celled.selection.list>.item,.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{border-radius:0}.ui.animated.list>.item{-webkit-transition:.25s color ease .1s,.25s padding-left ease .1s,.25s background-color ease .1s;transition:.25s color ease .1s,.25s padding-left ease .1s,.25s background-color ease .1s}.ui.animated.list:not(.horizontal)>.item:hover{padding-left:1em}.ui.fitted.list:not(.selection) .list>.item,.ui.fitted.list:not(.selection)>.item{padding-left:0;padding-right:0}.ui.fitted.selection.list .list>.item,.ui.fitted.selection.list>.item{margin-left:-.5em;margin-right:-.5em}.ui.bulleted.list,ul.ui.list{margin-left:1.25rem}.ui.bulleted.list .list>.item,.ui.bulleted.list>.item,ul.ui.list li{position:relative}.ui.bulleted.list .list>.item:before,.ui.bulleted.list>.item:before,ul.ui.list li:before{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;position:absolute;top:auto;left:auto;margin-left:-1.25rem;content:'•';opacity:1;color:inherit;vertical-align:top}.ui.bulleted.list .list,ul.ui.list ul{padding-left:1.25rem}.ui.horizontal.bulleted.list,ul.ui.horizontal.bulleted.list{margin-left:0}.ui.horizontal.bulleted.list>.item,ul.ui.horizontal.bulleted.list li{margin-left:1.75rem}.ui.horizontal.bulleted.list>.item:first-child,ul.ui.horizontal.bulleted.list li:first-child{margin-left:0}.ui.horizontal.bulleted.list>.item::before,ul.ui.horizontal.bulleted.list li::before{color:rgba(0,0,0,.87)}.ui.horizontal.bulleted.list>.item:first-child::before,ul.ui.horizontal.bulleted.list li:first-child::before{display:none}.ui.ordered.list,.ui.ordered.list .list,ol.ui.list,ol.ui.list ol{counter-reset:ordered;margin-left:1.25rem;list-style-type:none}.ui.ordered.list .list>.item,.ui.ordered.list>.item,ol.ui.list li{list-style-type:none;position:relative}.ui.ordered.list .list>.item:before,.ui.ordered.list>.item:before,ol.ui.list li:before{position:absolute;top:auto;left:auto;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;margin-left:-1.25rem;counter-increment:ordered;content:counters(ordered,".") " ";text-align:right;color:rgba(0,0,0,.87);vertical-align:middle;opacity:.8}.ui.ordered.inverted.list .list>.item:before,.ui.ordered.inverted.list>.item:before,ol.ui.inverted.list li:before{color:rgba(255,255,255,.7)}.ui.ordered.list>.item[data-value],.ui.ordered.list>.list>.item[data-value]{content:attr(data-value)}ol.ui.list li[value]:before{content:attr(value)}.ui.ordered.list .list,ol.ui.list ol{margin-left:1em}.ui.ordered.list .list>.item:before,ol.ui.list ol li:before{margin-left:-2em}.ui.ordered.horizontal.list,ol.ui.horizontal.list{margin-left:0}.ui.ordered.horizontal.list .list>.item:before,.ui.ordered.horizontal.list>.item:before,ol.ui.horizontal.list li:before{position:static;margin:0 .5em 0 0}.ui.divided.list>.item{border-top:1px solid rgba(34,36,38,.15)}.ui.divided.list .item .list>.item,.ui.divided.list .list>.item,.ui.divided.list .list>.item:first-child,.ui.divided.list>.item:first-child{border-top:none}.ui.divided.list:not(.horizontal) .list>.item:first-child{border-top-width:1px}.ui.divided.bulleted.list .list,.ui.divided.bulleted.list:not(.horizontal){margin-left:0;padding-left:0}.ui.divided.bulleted.list>.item:not(.horizontal){padding-left:1.25rem}.ui.divided.ordered.list{margin-left:0}.ui.divided.ordered.list .list>.item,.ui.divided.ordered.list>.item{padding-left:1.25rem}.ui.divided.ordered.list .item .list{margin-left:0;margin-right:0;padding-bottom:.21428571em}.ui.divided.ordered.list .item .list>.item{padding-left:1em}.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{margin:0;border-radius:0}.ui.divided.horizontal.list{margin-left:0}.ui.divided.horizontal.list>.item{border-top:none;border-left:1px solid rgba(34,36,38,.15);margin:0;padding-left:.5em;padding-right:.5em;line-height:.6}.ui.horizontal.divided.list>.item:first-child{border-left:none}.ui.divided.inverted.horizontal.list>.item,.ui.divided.inverted.list>.item,.ui.divided.inverted.list>.list{border-color:rgba(255,255,255,.1)}.ui.celled.list>.item,.ui.celled.list>.list{border-top:1px solid rgba(34,36,38,.15);padding-left:.5em;padding-right:.5em}.ui.celled.list>.item:last-child{border-bottom:1px solid rgba(34,36,38,.15)}.ui.celled.list>.item:first-child,.ui.celled.list>.item:last-child{padding-top:.21428571em;padding-bottom:.21428571em}.ui.celled.list .item .list>.item{border-width:0}.ui.celled.list .list>.item:first-child{border-top-width:0}.ui.celled.bulleted.list{margin-left:0}.ui.celled.bulleted.list .list>.item,.ui.celled.bulleted.list>.item{padding-left:1.25rem}.ui.celled.bulleted.list .item .list{margin-left:-1.25rem;margin-right:-1.25rem;padding-bottom:.21428571em}.ui.celled.ordered.list{margin-left:0}.ui.celled.ordered.list .list>.item,.ui.celled.ordered.list>.item{padding-left:1.25rem}.ui.celled.ordered.list .item .list{margin-left:0;margin-right:0;padding-bottom:.21428571em}.ui.celled.ordered.list .list>.item{padding-left:1em}.ui.horizontal.celled.list{margin-left:0}.ui.horizontal.celled.list .list>.item,.ui.horizontal.celled.list>.item{border-top:none;border-left:1px solid rgba(34,36,38,.15);margin:0;padding-left:.5em;padding-right:.5em;line-height:.6}.ui.horizontal.celled.list .list>.item:last-child,.ui.horizontal.celled.list>.item:last-child{border-bottom:none;border-right:1px solid rgba(34,36,38,.15)}.ui.celled.inverted.horizontal.list .list>.item,.ui.celled.inverted.horizontal.list>.item,.ui.celled.inverted.list>.item,.ui.celled.inverted.list>.list{border-color:1px solid rgba(255,255,255,.1)}.ui.relaxed.list:not(.horizontal)>.item{padding-top:.42857143em;padding-bottom:.42857143em}.ui.relaxed.list:not(.horizontal) .list>.item{padding-top:.21428571em;padding-bottom:.21428571em}.ui.horizontal.relaxed.list>.item{padding-left:1rem;padding-right:1rem}.ui[class*="very relaxed"].list:not(.horizontal)>.item{padding-top:.85714286em;padding-bottom:.85714286em}.ui[class*="very relaxed"].list:not(.horizontal) .list>.item{padding-top:.28571429em;padding-bottom:.28571429em}.ui.horizontal[class*="very relaxed"].list .list>.item,.ui.horizontal[class*="very relaxed"].list>.item{padding-left:1.5rem;padding-right:1.5rem}.ui.mini.list{font-size:.71428571em}.ui.tiny.list{font-size:.85714286em}.ui.small.list{font-size:.92857143em}.ui.list{font-size:1em}.ui.large.list{font-size:1.14285714em}.ui.big.list{font-size:1.28571429em}.ui.huge.list{font-size:1.42857143em}.ui.massive.list{font-size:1.71428571em}.ui.mini.horizontal.list .list>.item,.ui.mini.horizontal.list>.item{font-size:.71428571rem}.ui.tiny.horizontal.list .list>.item,.ui.tiny.horizontal.list>.item{font-size:.85714286rem}.ui.small.horizontal.list .list>.item,.ui.small.horizontal.list>.item{font-size:.92857143rem}.ui.horizontal.list .list>.item,.ui.horizontal.list>.item{font-size:1rem}.ui.large.horizontal.list .list>.item,.ui.large.horizontal.list>.item{font-size:1.14285714rem}.ui.big.horizontal.list .list>.item,.ui.big.horizontal.list>.item{font-size:1.28571429rem}.ui.huge.horizontal.list .list>.item,.ui.huge.horizontal.list>.item{font-size:1.42857143rem}.ui.massive.horizontal.list .list>.item,.ui.massive.horizontal.list>.item{font-size:1.71428571rem}.ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0;text-align:center;z-index:1000;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.ui.loader:before{position:absolute;content:'';top:0;left:50%;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loader:after{position:absolute;content:'';top:0;left:50%;-webkit-animation:loader .6s linear;animation:loader .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}@-webkit-keyframes loader{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loader{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.loader:after,.ui.loader:before{width:2.2585em;height:2.2585em;margin:0 0 0 -1.12925em}.ui.mini.loader:after,.ui.mini.loader:before{width:1.2857em;height:1.2857em;margin:0 0 0 -.64285em}.ui.small.loader:after,.ui.small.loader:before{width:1.7142em;height:1.7142em;margin:0 0 0 -.8571em}.ui.large.loader:after,.ui.large.loader:before{width:4.5714em;height:4.5714em;margin:0 0 0 -2.2857em}.ui.dimmer .loader{display:block}.ui.dimmer .ui.loader{color:rgba(255,255,255,.9)}.ui.dimmer .ui.loader:before{border-color:rgba(255,255,255,.15)}.ui.dimmer .ui.loader:after{border-color:#FFF transparent transparent}.ui.inverted.dimmer .ui.loader{color:rgba(0,0,0,.87)}.ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,.1)}.ui.inverted.dimmer .ui.loader:after{border-color:#767676 transparent transparent}.ui.text.loader{width:auto!important;height:auto!important;text-align:center;font-style:normal}.ui.indeterminate.loader:after{-webkit-animation-direction:reverse;animation-direction:reverse;-webkit-animation-duration:1.2s;animation-duration:1.2s}.ui.loader.active,.ui.loader.visible{display:block}.ui.loader.disabled,.ui.loader.hidden{display:none}.ui.inverted.dimmer .ui.mini.loader,.ui.mini.loader{width:1.2857em;height:1.2857em;font-size:.71428571em}.ui.inverted.dimmer .ui.small.loader,.ui.small.loader{width:1.7142em;height:1.7142em;font-size:.92857143em}.ui.inverted.dimmer .ui.loader,.ui.loader{width:2.2585em;height:2.2585em;font-size:1em}.ui.inverted.dimmer .ui.loader.large,.ui.loader.large{width:4.5714em;height:4.5714em;font-size:1.14285714em}.ui.mini.text.loader{min-width:1.2857em;padding-top:1.99998571em}.ui.small.text.loader{min-width:1.7142em;padding-top:2.42848571em}.ui.text.loader{min-width:2.2585em;padding-top:2.97278571em}.ui.large.text.loader{min-width:4.5714em;padding-top:5.28568571em}.ui.inverted.loader{color:rgba(255,255,255,.9)}.ui.inverted.loader:before{border-color:rgba(255,255,255,.15)}.ui.inverted.loader:after{border-top-color:#FFF}.ui.inline.loader{position:relative;vertical-align:middle;margin:0;left:0;top:0;-webkit-transform:none;-ms-transform:none;transform:none}.ui.inline.loader.active,.ui.inline.loader.visible{display:inline-block}.ui.centered.inline.loader.active,.ui.centered.inline.loader.visible{display:block;margin-left:auto;margin-right:auto}.ui.rail{position:absolute;top:0;width:300px;height:100%;font-size:1rem}.ui.left.rail{left:auto;right:100%;padding:0 2rem 0 0;margin:0 2rem 0 0}.ui.right.rail{left:100%;right:auto;padding:0 0 0 2rem;margin:0 0 0 2rem}.ui.left.internal.rail{left:0;right:auto;padding:0 0 0 2rem;margin:0 0 0 2rem}.ui.right.internal.rail{left:auto;right:0;padding:0 2rem 0 0;margin:0 2rem 0 0}.ui.dividing.rail{width:302.5px}.ui.left.dividing.rail{padding:0 2.5rem 0 0;margin:0 2.5rem 0 0;border-right:1px solid rgba(34,36,38,.15)}.ui.right.dividing.rail{border-left:1px solid rgba(34,36,38,.15);padding:0 0 0 2.5rem;margin:0 0 0 2.5rem}.ui.close.rail{width:301px}.ui.close.left.rail{padding:0 1em 0 0;margin:0 1em 0 0}.ui.close.right.rail{padding:0 0 0 1em;margin:0 0 0 1em}.ui.very.close.rail{width:300.5px}.ui.very.close.left.rail{padding:0 .5em 0 0;margin:0 .5em 0 0}.ui.very.close.right.rail{padding:0 0 0 .5em;margin:0 0 0 .5em}.ui.attached.left.rail,.ui.attached.right.rail{padding:0;margin:0}.ui.reveal{display:inherit;position:relative!important;font-size:0!important}.ui.reveal>.visible.content{position:absolute!important;top:0!important;left:0!important;z-index:3!important;-webkit-transition:all .5s ease .1s;transition:all .5s ease .1s}.ui.reveal>.hidden.content{position:relative!important;z-index:2!important}.ui.active.reveal .visible.content,.ui.reveal:hover .visible.content{z-index:4!important}.ui.slide.reveal{position:relative!important;overflow:hidden!important;white-space:nowrap}.ui.slide.reveal>.content{display:block;width:100%;float:left;margin:0;-webkit-transition:-webkit-transform .5s ease .1s;transition:transform .5s ease .1s}.ui.slide.reveal>.visible.content{position:relative!important}.ui.slide.reveal>.hidden.content{position:absolute!important;left:0!important;width:100%!important;-webkit-transform:translateX(100%)!important;-ms-transform:translateX(100%)!important;transform:translateX(100%)!important}.ui.slide.active.reveal>.visible.content,.ui.slide.reveal:hover>.visible.content{-webkit-transform:translateX(-100%)!important;-ms-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.slide.active.reveal>.hidden.content,.ui.slide.reveal:hover>.hidden.content,.ui.slide.right.reveal>.visible.content{-webkit-transform:translateX(0)!important;-ms-transform:translateX(0)!important;transform:translateX(0)!important}.ui.slide.right.reveal>.hidden.content{-webkit-transform:translateX(-100%)!important;-ms-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.slide.right.active.reveal>.visible.content,.ui.slide.right.reveal:hover>.visible.content{-webkit-transform:translateX(100%)!important;-ms-transform:translateX(100%)!important;transform:translateX(100%)!important}.ui.slide.right.active.reveal>.hidden.content,.ui.slide.right.reveal:hover>.hidden.content{-webkit-transform:translateX(0)!important;-ms-transform:translateX(0)!important;transform:translateX(0)!important}.ui.slide.up.reveal>.hidden.content{-webkit-transform:translateY(100%)!important;-ms-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.slide.up.active.reveal>.visible.content,.ui.slide.up.reveal:hover>.visible.content{-webkit-transform:translateY(-100%)!important;-ms-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.slide.up.active.reveal>.hidden.content,.ui.slide.up.reveal:hover>.hidden.content{-webkit-transform:translateY(0)!important;-ms-transform:translateY(0)!important;transform:translateY(0)!important}.ui.slide.down.reveal>.hidden.content{-webkit-transform:translateY(-100%)!important;-ms-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.slide.down.active.reveal>.visible.content,.ui.slide.down.reveal:hover>.visible.content{-webkit-transform:translateY(100%)!important;-ms-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.slide.down.active.reveal>.hidden.content,.ui.slide.down.reveal:hover>.hidden.content{-webkit-transform:translateY(0)!important;-ms-transform:translateY(0)!important;transform:translateY(0)!important}.ui.fade.reveal>.visible.content{opacity:1}.ui.fade.active.reveal>.visible.content,.ui.fade.reveal:hover>.visible.content{opacity:0}.ui.move.reveal{position:relative!important;overflow:hidden!important;white-space:nowrap}.ui.move.reveal>.content{display:block;float:left;margin:0;-webkit-transition:-webkit-transform .5s cubic-bezier(.175,.885,.32,1) .1s;transition:transform .5s cubic-bezier(.175,.885,.32,1) .1s}.ui.move.reveal>.visible.content{position:relative!important}.ui.move.reveal>.hidden.content{position:absolute!important;left:0!important;width:100%!important}.ui.move.active.reveal>.visible.content,.ui.move.reveal:hover>.visible.content{-webkit-transform:translateX(-100%)!important;-ms-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.move.right.active.reveal>.visible.content,.ui.move.right.reveal:hover>.visible.content{-webkit-transform:translateX(100%)!important;-ms-transform:translateX(100%)!important;transform:translateX(100%)!important}.ui.move.up.active.reveal>.visible.content,.ui.move.up.reveal:hover>.visible.content{-webkit-transform:translateY(-100%)!important;-ms-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.move.down.active.reveal>.visible.content,.ui.move.down.reveal:hover>.visible.content{-webkit-transform:translateY(100%)!important;-ms-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.rotate.reveal>.visible.content{-webkit-transition-duration:.5s;transition-duration:.5s;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.ui.rotate.reveal>.visible.content,.ui.rotate.right.reveal>.visible.content{-webkit-transform-origin:bottom right;-ms-transform-origin:bottom right;transform-origin:bottom right}.ui.rotate.active.reveal>.visible.conten,.ui.rotate.reveal:hover>.visible.content,.ui.rotate.right.active.reveal>.visible.content,.ui.rotate.right.reveal:hover>.visible.content{-webkit-transform:rotate(110deg);-ms-transform:rotate(110deg);transform:rotate(110deg)}.ui.rotate.left.reveal>.visible.content{-webkit-transform-origin:bottom left;-ms-transform-origin:bottom left;transform-origin:bottom left}.ui.rotate.left.active.reveal>.visible.content,.ui.rotate.left.reveal:hover>.visible.content{-webkit-transform:rotate(-110deg);-ms-transform:rotate(-110deg);transform:rotate(-110deg)}.ui.disabled.reveal:hover>.visible.visible.content{position:static!important;display:block!important;opacity:1!important;top:0!important;left:0!important;right:auto!important;bottom:auto!important;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.ui.disabled.reveal:hover>.hidden.hidden.content{display:none!important}.ui.visible.reveal{overflow:visible}.ui.instant.reveal>.content{-webkit-transition-delay:0s!important;transition-delay:0s!important}.ui.reveal>.content{font-size:1rem!important}.ui.segment{position:relative;background:#FFF;box-shadow:0 1px 2px 0 rgba(34,36,38,.15);margin:1rem 0;padding:1em;border-radius:.28571429rem;border:1px solid rgba(34,36,38,.15)}.ui.segment:first-child{margin-top:0}.ui.segment:last-child{margin-bottom:0}.ui.vertical.segment{margin:0;padding-left:0;padding-right:0;background:none;border-radius:0;box-shadow:none;border:none;border-bottom:1px solid rgba(34,36,38,.15)}.ui.vertical.segment:last-child{border-bottom:none}.ui.inverted.segment>.ui.header{color:#FFF}.ui[class*="bottom attached"].segment>[class*="top attached"].label{border-top-left-radius:0;border-top-right-radius:0}.ui[class*="top attached"].segment>[class*="bottom attached"].label{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.attached.segment:not(.top):not(.bottom)>[class*="top attached"].label{border-top-left-radius:0;border-top-right-radius:0}.ui.attached.segment:not(.top):not(.bottom)>[class*="bottom attached"].label{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.grid>.row>.ui.segment.column,.ui.grid>.ui.segment.column,.ui.page.grid.segment{padding-top:2em;padding-bottom:2em}.ui.grid.segment{margin:1rem 0;border-radius:.28571429rem}.ui.basic.table.segment{background:#FFF;border:1px solid rgba(34,36,38,.15);box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.ui[class*="very basic"].table.segment{padding:1em}.ui.piled.segment,.ui.piled.segments{margin:3em 0;box-shadow:'';z-index:auto}.ui.piled.segment:first-child{margin-top:0}.ui.piled.segment:last-child{margin-bottom:0}.ui.piled.segment:after,.ui.piled.segment:before,.ui.piled.segments:after,.ui.piled.segments:before{background-color:#FFF;visibility:visible;content:'';display:block;height:100%;left:0;position:absolute;width:100%;border:1px solid rgba(34,36,38,.15);box-shadow:''}.ui.piled.segment:before,.ui.piled.segments:before{-webkit-transform:rotate(-1.2deg);-ms-transform:rotate(-1.2deg);transform:rotate(-1.2deg);top:0;z-index:-2}.ui.piled.segment:after,.ui.piled.segments:after{-webkit-transform:rotate(1.2deg);-ms-transform:rotate(1.2deg);transform:rotate(1.2deg);top:0;z-index:-1}.ui[class*="top attached"].piled.segment{margin-top:3em;margin-bottom:0}.ui.piled.segment[class*="top attached"]:first-child{margin-top:0}.ui.piled.segment[class*="bottom attached"]{margin-top:0;margin-bottom:3em}.ui.piled.segment[class*="bottom attached"]:last-child{margin-bottom:0}.ui.stacked.segment{padding-bottom:1.4em}.ui.stacked.segment:after,.ui.stacked.segment:before,.ui.stacked.segments:after,.ui.stacked.segments:before{content:'';position:absolute;bottom:-3px;left:0;border-top:1px solid rgba(34,36,38,.15);background:rgba(0,0,0,.03);width:100%;height:6px;visibility:visible}.ui.stacked.segment:before,.ui.stacked.segments:before{display:none}.ui.tall.stacked.segment:before,.ui.tall.stacked.segments:before{display:block;bottom:0}.ui.stacked.inverted.segment:after,.ui.stacked.inverted.segment:before,.ui.stacked.inverted.segments:after,.ui.stacked.inverted.segments:before{background-color:rgba(0,0,0,.03);border-top:1px solid rgba(34,36,38,.35)}.ui.padded.segment{padding:1.5em}.ui[class*="very padded"].segment{padding:3em}.ui.compact.segment{display:table}.ui.compact.segments{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}.ui.compact.segments .segment,.ui.segments .compact.segment{display:block;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.ui.circular.segment{display:table-cell;padding:2em;text-align:center;vertical-align:middle;border-radius:500em}.ui.raised.segment,.ui.raised.segments{box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08)}.ui.segments{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;position:relative;margin:1rem 0;border:1px solid rgba(34,36,38,.15);box-shadow:0 1px 2px 0 rgba(34,36,38,.15);border-radius:.28571429rem}.ui.segments:first-child{margin-top:0}.ui.segments:last-child{margin-bottom:0}.ui.segments>.segment{top:0;bottom:0;border-radius:0;margin:0;width:auto;box-shadow:none;border:none;border-top:1px solid rgba(34,36,38,.15)}.ui.segments:not(.horizontal)>.segment:first-child{border-top:none;margin-top:0;bottom:0;margin-bottom:0;top:0;border-radius:.28571429rem .28571429rem 0 0}.ui.segments:not(.horizontal)>.segment:last-child{top:0;bottom:0;margin-top:0;margin-bottom:0;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),none;border-radius:0 0 .28571429rem .28571429rem}.ui.segments>.ui.segments{border-top:1px solid rgba(34,36,38,.15);margin:1rem}.ui.segments>.segments:first-child{border-top:none}.ui.segments>.segment+.segments:not(.horizontal){margin-top:0}.ui.horizontal.segments{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;padding:0;background-color:#FFF;box-shadow:0 1px 2px 0 rgba(34,36,38,.15);margin:1rem 0;border-radius:.28571429rem;border:1px solid rgba(34,36,38,.15)}.ui.segments>.horizontal.segments{margin:0;background-color:transparent;border-radius:0;border:none;box-shadow:none;border-top:1px solid rgba(34,36,38,.15)}.ui.horizontal.segments>.segment{-webkit-box-flex:1;-webkit-flex:1 1 auto;flex:1 1 auto;-ms-flex:1 1 0px;margin:0;min-width:0;background-color:transparent;border-radius:0;border:none;box-shadow:none;border-left:1px solid rgba(34,36,38,.15)}.ui.segments>.horizontal.segments:first-child{border-top:none}.ui.horizontal.segments>.segment:first-child{border-left:none}.ui.disabled.segment{opacity:.45;color:rgba(40,40,40,.3)}.ui.loading.segment{position:relative;cursor:default;point-events:none;text-shadow:none!important;color:transparent!important;-webkit-transition:all 0s linear;transition:all 0s linear}.ui.loading.segment:before{position:absolute;content:'';top:0;left:0;background:rgba(255,255,255,.8);width:100%;height:100%;border-radius:.28571429rem;z-index:100}.ui.loading.segment:after{position:absolute;content:'';top:50%;left:50%;margin:-1.5em 0 0 -1.5em;width:3em;height:3em;-webkit-animation:segment-spin .6s linear;animation:segment-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 rgba(0,0,0,.1) rgba(0,0,0,.1);border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent;visibility:visible;z-index:101}@-webkit-keyframes segment-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes segment-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.basic.segment{background:none;box-shadow:none;border:none;border-radius:0}.ui.clearing.segment:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui.red.segment:not(.inverted){border-top:2px solid #DB2828}.ui.inverted.red.segment{background-color:#DB2828!important;color:#FFF!important}.ui.orange.segment:not(.inverted){border-top:2px solid #F2711C}.ui.inverted.orange.segment{background-color:#F2711C!important;color:#FFF!important}.ui.yellow.segment:not(.inverted){border-top:2px solid #FBBD08}.ui.inverted.yellow.segment{background-color:#FBBD08!important;color:#FFF!important}.ui.olive.segment:not(.inverted){border-top:2px solid #B5CC18}.ui.inverted.olive.segment{background-color:#B5CC18!important;color:#FFF!important}.ui.green.segment:not(.inverted){border-top:2px solid #21BA45}.ui.inverted.green.segment{background-color:#21BA45!important;color:#FFF!important}.ui.teal.segment:not(.inverted){border-top:2px solid #00B5AD}.ui.inverted.teal.segment{background-color:#00B5AD!important;color:#FFF!important}.ui.blue.segment:not(.inverted){border-top:2px solid #2185D0}.ui.inverted.blue.segment{background-color:#2185D0!important;color:#FFF!important}.ui.violet.segment:not(.inverted){border-top:2px solid #6435C9}.ui.inverted.violet.segment{background-color:#6435C9!important;color:#FFF!important}.ui.purple.segment:not(.inverted){border-top:2px solid #A333C8}.ui.inverted.purple.segment{background-color:#A333C8!important;color:#FFF!important}.ui.pink.segment:not(.inverted){border-top:2px solid #E03997}.ui.inverted.pink.segment{background-color:#E03997!important;color:#FFF!important}.ui.brown.segment:not(.inverted){border-top:2px solid #A5673F}.ui.inverted.brown.segment{background-color:#A5673F!important;color:#FFF!important}.ui.grey.segment:not(.inverted){border-top:2px solid #767676}.ui.inverted.grey.segment{background-color:#767676!important;color:#FFF!important}.ui.black.segment:not(.inverted){border-top:2px solid #1B1C1D}.ui.inverted.black.segment{background-color:#1B1C1D!important;color:#FFF!important}.ui[class*="left aligned"].segment{text-align:left}.ui[class*="right aligned"].segment{text-align:right}.ui[class*="center aligned"].segment{text-align:center}.ui.floated.segment,.ui[class*="left floated"].segment{float:left;margin-right:1em}.ui[class*="right floated"].segment{float:right;margin-left:1em}.ui.inverted.segment{border:none;box-shadow:none}.ui.inverted.segment,.ui.primary.inverted.segment{background:#1B1C1D;color:rgba(255,255,255,.9)}.ui.inverted.segment .segment{color:rgba(0,0,0,.87)}.ui.inverted.segment .inverted.segment{color:rgba(255,255,255,.9)}.ui.inverted.attached.segment{border-color:#555}.ui.secondary.segment{background:#F3F4F5;color:rgba(0,0,0,.6)}.ui.secondary.inverted.segment{background:-webkit-linear-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.2) 100%) #4c4f52;background:linear-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.2) 100%) #4c4f52;color:rgba(255,255,255,.8)}.ui.tertiary.segment{background:#DCDDDE;color:rgba(0,0,0,.6)}.ui.tertiary.inverted.segment{background:-webkit-linear-gradient(rgba(255,255,255,.35) 0,rgba(255,255,255,.35) 100%) #717579;background:linear-gradient(rgba(255,255,255,.35) 0,rgba(255,255,255,.35) 100%) #717579;color:rgba(255,255,255,.8)}.ui.attached.segment{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);box-shadow:none;border:1px solid #D4D4D5}.ui.attached+.ui.attached.segment:not(.top){border-top:none}.ui[class*="top attached"].segment{bottom:0;margin-bottom:0;top:0;margin-top:1rem;border-radius:.28571429rem .28571429rem 0 0}.ui.segment[class*="top attached"]:first-child{margin-top:0}.ui.segment[class*="bottom attached"]{bottom:0;margin-top:0;top:0;margin-bottom:1rem;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),none;border-radius:0 0 .28571429rem .28571429rem}.ui.segment[class*="bottom attached"]:last-child{margin-bottom:0}.ui.steps{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;margin:1em 0;background:0 0;box-shadow:none;line-height:1.14285714em;border-radius:.28571429rem;border:1px solid rgba(34,36,38,.15)}.ui.steps:first-child{margin-top:0}.ui.steps:last-child{margin-bottom:0}.ui.steps .step{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;vertical-align:middle;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:1.14285714em 2em;background:#FFF;color:rgba(0,0,0,.87);box-shadow:none;border-radius:0;border:none;border-right:1px solid rgba(34,36,38,.15);-webkit-transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease;transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease}.ui.steps .step:after{position:absolute;z-index:2;content:'';top:50%;right:0;border:solid;background-color:#FFF;width:1.14285714em;height:1.14285714em;border-color:rgba(34,36,38,.15);border-width:0 1px 1px 0;-webkit-transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease;transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease;-webkit-transform:translateY(-50%) translateX(50%) rotate(-45deg);-ms-transform:translateY(-50%) translateX(50%) rotate(-45deg);transform:translateY(-50%) translateX(50%) rotate(-45deg)}.ui.steps .step:first-child{padding-left:2em;border-radius:.28571429rem 0 0 .28571429rem}.ui.steps .step:last-child{border-radius:0 .28571429rem .28571429rem 0;border-right:none;margin-right:0}.ui.steps .step:only-child{border-radius:.28571429rem}.ui.steps .step .title{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.14285714em;font-weight:700}.ui.steps .step>.title{width:100%}.ui.steps .step .description{font-weight:400;font-size:.92857143em;color:rgba(0,0,0,.87)}.ui.steps .step>.description{width:100%}.ui.steps .step .title~.description{margin-top:.25em}.ui.steps .step>.icon{line-height:1;font-size:2.5em;margin:0 1rem 0 0}.ui.steps .step>.icon,.ui.steps .step>.icon~.content{display:block;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle}.ui.steps .step>.icon~.content{-webkit-box-flex:1 0 auto;-webkit-flex-grow:1 0 auto;-ms-flex-positive:1 0 auto;flex-grow:1 0 auto}.ui.steps:not(.vertical) .step>.icon{width:auto}.ui.steps .link.step,.ui.steps a.step{cursor:pointer}.ui.ordered.steps{counter-reset:ordered}.ui.ordered.steps .step:before{display:block;position:static;text-align:center;content:counters(ordered,".");-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle;margin-right:1rem;font-size:2.5em;counter-increment:ordered;font-family:inherit;font-weight:700}.ui.ordered.steps .step>*{display:block;-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle}.ui.vertical.steps{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:visible}.ui.vertical.steps .step{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;border-radius:0;padding:1.14285714em 2em;border-right:none;border-bottom:1px solid rgba(34,36,38,.15)}.ui.vertical.steps .step:first-child{padding:1.14285714em 2em;border-radius:.28571429rem .28571429rem 0 0}.ui.vertical.steps .step:last-child{border-bottom:none;border-radius:0 0 .28571429rem .28571429rem}.ui.vertical.steps .step:only-child{border-radius:.28571429rem}.ui.vertical.steps .step:after{top:50%;right:0;border-width:0 1px 1px 0;display:none}.ui.vertical.steps .active.step:after{display:block}.ui.vertical.steps .step:last-child:after{display:none}.ui.vertical.steps .active.step:last-child:after{display:block}@media only screen and (max-width:767px){.ui.steps{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;overflow:visible;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.steps .step{width:100%!important;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;border-radius:0;padding:1.14285714em 2em}.ui.steps .step:first-child{padding:1.14285714em 2em;border-radius:.28571429rem .28571429rem 0 0}.ui.steps .step:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui.steps .step:after{display:none!important}.ui.steps .step .content{text-align:center}.ui.ordered.steps .step:before,.ui.steps .step>.icon{margin:0 0 1rem}}.ui.steps .link.step:hover,.ui.steps .link.step:hover::after,.ui.steps a.step:hover,.ui.steps a.step:hover::after{background:#F9FAFB;color:rgba(0,0,0,.8)}.ui.steps .link.step:active,.ui.steps .link.step:active::after,.ui.steps a.step:active,.ui.steps a.step:active::after{background:#F3F4F5;color:rgba(0,0,0,.9)}.ui.steps .step.active{cursor:auto;background:#F3F4F5}.ui.steps .step.active:after{background:#F3F4F5}.ui.steps .step.active .title{color:#4183C4}.ui.ordered.steps .step.active:before,.ui.steps .active.step .icon{color:rgba(0,0,0,.85)}.ui.steps .active.step:after,.ui.steps .step:after{display:block}.ui.steps .active.step:last-child:after,.ui.steps .step:last-child:after{display:none}.ui.steps .link.active.step:hover,.ui.steps .link.active.step:hover::after,.ui.steps a.active.step:hover,.ui.steps a.active.step:hover::after{cursor:pointer;background:#DCDDDE;color:rgba(0,0,0,.87)}.ui.ordered.steps .step.completed:before,.ui.steps .step.completed>.icon:before{color:#21BA45;font-family:Step;content:'\e800'}.ui.steps .disabled.step{cursor:auto;background:#FFF;pointer-events:none}.ui.steps .disabled.step,.ui.steps .disabled.step .description,.ui.steps .disabled.step .title{color:rgba(40,40,40,.3)}.ui.steps .disabled.step:after{background:#FFF}@media only screen and (max-width:991px){.ui[class*="tablet stackable"].steps{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;overflow:visible;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui[class*="tablet stackable"].steps .step{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;border-radius:0;padding:1.14285714em 2em}.ui[class*="tablet stackable"].steps .step:first-child{padding:1.14285714em 2em;border-radius:.28571429rem .28571429rem 0 0}.ui[class*="tablet stackable"].steps .step:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui[class*="tablet stackable"].steps .step:after{display:none!important}.ui[class*="tablet stackable"].steps .step .content{text-align:center}.ui[class*="tablet stackable"].ordered.steps .step:before,.ui[class*="tablet stackable"].steps .step>.icon{margin:0 0 1rem}}.ui.fluid.steps{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%}.ui.attached.steps{width:calc(100% + 2px)!important;margin:0 -1px -1px;max-width:calc(100% + 2px);border-radius:.28571429rem .28571429rem 0 0}.ui.attached.steps .step:first-child{border-radius:.28571429rem 0 0}.ui.attached.steps .step:last-child{border-radius:0 .28571429rem 0 0}.ui.bottom.attached.steps{margin:-1px -1px 0;border-radius:0 0 .28571429rem .28571429rem}.ui.bottom.attached.steps .step:first-child{border-radius:0 0 0 .28571429rem}.ui.bottom.attached.steps .step:last-child{border-radius:0 0 .28571429rem}.ui.eight.steps,.ui.five.steps,.ui.four.steps,.ui.one.steps,.ui.seven.steps,.ui.six.steps,.ui.three.steps,.ui.two.steps{width:100%}.ui.eight.steps>.step,.ui.five.steps>.step,.ui.four.steps>.step,.ui.one.steps>.step,.ui.seven.steps>.step,.ui.six.steps>.step,.ui.three.steps>.step,.ui.two.steps>.step{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.ui.one.steps>.step{width:100%}.ui.two.steps>.step{width:50%}.ui.three.steps>.step{width:33.333%}.ui.four.steps>.step{width:25%}.ui.five.steps>.step{width:20%}.ui.six.steps>.step{width:16.666%}.ui.seven.steps>.step{width:14.285%}.ui.eight.steps>.step{width:12.5%}.ui.small.step,.ui.small.steps .step{font-size:.92857143rem}.ui.step,.ui.steps .step{font-size:1rem}.ui.large.step,.ui.large.steps .step{font-size:1.14285714rem}@font-face{font-family:Step;src:url(data:application/x-font-ttf;charset=utf-8;;base64,AAEAAAAOAIAAAwBgT1MvMj3hSQEAAADsAAAAVmNtYXDQEhm3AAABRAAAAUpjdnQgBkn/lAAABuwAAAAcZnBnbYoKeDsAAAcIAAAJkWdhc3AAAAAQAAAG5AAAAAhnbHlm32cEdgAAApAAAAC2aGVhZAErPHsAAANIAAAANmhoZWEHUwNNAAADgAAAACRobXR4CykAAAAAA6QAAAAMbG9jYQA4AFsAAAOwAAAACG1heHAApgm8AAADuAAAACBuYW1lzJ0aHAAAA9gAAALNcG9zdK69QJgAAAaoAAAAO3ByZXCSoZr/AAAQnAAAAFYAAQO4AZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6ADoAQNS/2oAWgMLAE8AAAABAAAAAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADoAf//AAAAAOgA//8AABgBAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADpAKYABUAHEAZDwEAAQFCAAIBAmoAAQABagAAAGEUFxQDEisBFAcBBiInASY0PwE2Mh8BATYyHwEWA6QP/iAQLBD+6g8PTBAsEKQBbhAsEEwPAhYWEP4gDw8BFhAsEEwQEKUBbxAQTBAAAAH//f+xA18DCwAMABJADwABAQpDAAAACwBEFRMCESsBFA4BIi4CPgEyHgEDWXLG6MhuBnq89Lp+AV51xHR0xOrEdHTEAAAAAAEAAAABAADDeRpdXw889QALA+gAAAAAzzWYjQAAAADPNWBN//3/sQOkAwsAAAAIAAIAAAAAAAAAAQAAA1L/agBaA+gAAP/3A6QAAQAAAAAAAAAAAAAAAAAAAAMD6AAAA+gAAANZAAAAAAAAADgAWwABAAAAAwAWAAEAAAAAAAIABgATAG4AAAAtCZEAAAAAAAAAEgDeAAEAAAAAAAAANQAAAAEAAAAAAAEACAA1AAEAAAAAAAIABwA9AAEAAAAAAAMACABEAAEAAAAAAAQACABMAAEAAAAAAAUACwBUAAEAAAAAAAYACABfAAEAAAAAAAoAKwBnAAEAAAAAAAsAEwCSAAMAAQQJAAAAagClAAMAAQQJAAEAEAEPAAMAAQQJAAIADgEfAAMAAQQJAAMAEAEtAAMAAQQJAAQAEAE9AAMAAQQJAAUAFgFNAAMAAQQJAAYAEAFjAAMAAQQJAAoAVgFzAAMAAQQJAAsAJgHJQ29weXJpZ2h0IChDKSAyMDE0IGJ5IG9yaWdpbmFsIGF1dGhvcnMgQCBmb250ZWxsby5jb21mb250ZWxsb1JlZ3VsYXJmb250ZWxsb2ZvbnRlbGxvVmVyc2lvbiAxLjBmb250ZWxsb0dlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAEMAbwBwAHkAcgBpAGcAaAB0ACAAKABDACkAIAAyADAAMQA0ACAAYgB5ACAAbwByAGkAZwBpAG4AYQBsACAAYQB1AHQAaABvAHIAcwAgAEAAIABmAG8AbgB0AGUAbABsAG8ALgBjAG8AbQBmAG8AbgB0AGUAbABsAG8AUgBlAGcAdQBsAGEAcgBmAG8AbgB0AGUAbABsAG8AZgBvAG4AdABlAGwAbABvAFYAZQByAHMAaQBvAG4AIAAxAC4AMABmAG8AbgB0AGUAbABsAG8ARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAAAAAIAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAQIBAwljaGVja21hcmsGY2lyY2xlAAAAAAEAAf//AA8AAAAAAAAAAAAAAAAAAAAAADIAMgML/7EDC/+xsAAssCBgZi2wASwgZCCwwFCwBCZasARFW1ghIyEbilggsFBQWCGwQFkbILA4UFghsDhZWSCwCkVhZLAoUFghsApFILAwUFghsDBZGyCwwFBYIGYgiophILAKUFhgGyCwIFBYIbAKYBsgsDZQWCGwNmAbYFlZWRuwACtZWSOwAFBYZVlZLbACLCBFILAEJWFkILAFQ1BYsAUjQrAGI0IbISFZsAFgLbADLCMhIyEgZLEFYkIgsAYjQrIKAAIqISCwBkMgiiCKsAArsTAFJYpRWGBQG2FSWVgjWSEgsEBTWLAAKxshsEBZI7AAUFhlWS2wBCywB0MrsgACAENgQi2wBSywByNCIyCwACNCYbCAYrABYLAEKi2wBiwgIEUgsAJFY7ABRWJgRLABYC2wBywgIEUgsAArI7ECBCVgIEWKI2EgZCCwIFBYIbAAG7AwUFiwIBuwQFlZI7AAUFhlWbADJSNhRESwAWAtsAgssQUFRbABYUQtsAkssAFgICCwCUNKsABQWCCwCSNCWbAKQ0qwAFJYILAKI0JZLbAKLCC4BABiILgEAGOKI2GwC0NgIIpgILALI0IjLbALLEtUWLEHAURZJLANZSN4LbAMLEtRWEtTWLEHAURZGyFZJLATZSN4LbANLLEADENVWLEMDEOwAWFCsAorWbAAQ7ACJUKxCQIlQrEKAiVCsAEWIyCwAyVQWLEBAENgsAQlQoqKIIojYbAJKiEjsAFhIIojYbAJKiEbsQEAQ2CwAiVCsAIlYbAJKiFZsAlDR7AKQ0dgsIBiILACRWOwAUViYLEAABMjRLABQ7AAPrIBAQFDYEItsA4ssQAFRVRYALAMI0IgYLABYbUNDQEACwBCQopgsQ0FK7BtKxsiWS2wDyyxAA4rLbAQLLEBDistsBEssQIOKy2wEiyxAw4rLbATLLEEDistsBQssQUOKy2wFSyxBg4rLbAWLLEHDistsBcssQgOKy2wGCyxCQ4rLbAZLLAIK7EABUVUWACwDCNCIGCwAWG1DQ0BAAsAQkKKYLENBSuwbSsbIlktsBossQAZKy2wGyyxARkrLbAcLLECGSstsB0ssQMZKy2wHiyxBBkrLbAfLLEFGSstsCAssQYZKy2wISyxBxkrLbAiLLEIGSstsCMssQkZKy2wJCwgPLABYC2wJSwgYLANYCBDI7ABYEOwAiVhsAFgsCQqIS2wJiywJSuwJSotsCcsICBHICCwAkVjsAFFYmAjYTgjIIpVWCBHICCwAkVjsAFFYmAjYTgbIVktsCgssQAFRVRYALABFrAnKrABFTAbIlktsCkssAgrsQAFRVRYALABFrAnKrABFTAbIlktsCosIDWwAWAtsCssALADRWOwAUVisAArsAJFY7ABRWKwACuwABa0AAAAAABEPiM4sSoBFSotsCwsIDwgRyCwAkVjsAFFYmCwAENhOC2wLSwuFzwtsC4sIDwgRyCwAkVjsAFFYmCwAENhsAFDYzgtsC8ssQIAFiUgLiBHsAAjQrACJUmKikcjRyNhIFhiGyFZsAEjQrIuAQEVFCotsDAssAAWsAQlsAQlRyNHI2GwBkUrZYouIyAgPIo4LbAxLLAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjILAIQyCKI0cjRyNhI0ZgsARDsIBiYCCwACsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsIBiYSMgILAEJiNGYTgbI7AIQ0awAiWwCENHI0cjYWAgsARDsIBiYCMgsAArI7AEQ2CwACuwBSVhsAUlsIBisAQmYSCwBCVgZCOwAyVgZFBYIRsjIVkjICCwBCYjRmE4WS2wMiywABYgICCwBSYgLkcjRyNhIzw4LbAzLLAAFiCwCCNCICAgRiNHsAArI2E4LbA0LLAAFrADJbACJUcjRyNhsABUWC4gPCMhG7ACJbACJUcjRyNhILAFJbAEJUcjRyNhsAYlsAUlSbACJWGwAUVjIyBYYhshWWOwAUViYCMuIyAgPIo4IyFZLbA1LLAAFiCwCEMgLkcjRyNhIGCwIGBmsIBiIyAgPIo4LbA2LCMgLkawAiVGUlggPFkusSYBFCstsDcsIyAuRrACJUZQWCA8WS6xJgEUKy2wOCwjIC5GsAIlRlJYIDxZIyAuRrACJUZQWCA8WS6xJgEUKy2wOSywMCsjIC5GsAIlRlJYIDxZLrEmARQrLbA6LLAxK4ogIDywBCNCijgjIC5GsAIlRlJYIDxZLrEmARQrsARDLrAmKy2wOyywABawBCWwBCYgLkcjRyNhsAZFKyMgPCAuIzixJgEUKy2wPCyxCAQlQrAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjIEewBEOwgGJgILAAKyCKimEgsAJDYGQjsANDYWRQWLACQ2EbsANDYFmwAyWwgGJhsAIlRmE4IyA8IzgbISAgRiNHsAArI2E4IVmxJgEUKy2wPSywMCsusSYBFCstsD4ssDErISMgIDywBCNCIzixJgEUK7AEQy6wJistsD8ssAAVIEewACNCsgABARUUEy6wLCotsEAssAAVIEewACNCsgABARUUEy6wLCotsEEssQABFBOwLSotsEIssC8qLbBDLLAAFkUjIC4gRoojYTixJgEUKy2wRCywCCNCsEMrLbBFLLIAADwrLbBGLLIAATwrLbBHLLIBADwrLbBILLIBATwrLbBJLLIAAD0rLbBKLLIAAT0rLbBLLLIBAD0rLbBMLLIBAT0rLbBNLLIAADkrLbBOLLIAATkrLbBPLLIBADkrLbBQLLIBATkrLbBRLLIAADsrLbBSLLIAATsrLbBTLLIBADsrLbBULLIBATsrLbBVLLIAAD4rLbBWLLIAAT4rLbBXLLIBAD4rLbBYLLIBAT4rLbBZLLIAADorLbBaLLIAATorLbBbLLIBADorLbBcLLIBATorLbBdLLAyKy6xJgEUKy2wXiywMiuwNistsF8ssDIrsDcrLbBgLLAAFrAyK7A4Ky2wYSywMysusSYBFCstsGIssDMrsDYrLbBjLLAzK7A3Ky2wZCywMyuwOCstsGUssDQrLrEmARQrLbBmLLA0K7A2Ky2wZyywNCuwNystsGgssDQrsDgrLbBpLLA1Ky6xJgEUKy2waiywNSuwNistsGsssDUrsDcrLbBsLLA1K7A4Ky2wbSwrsAhlsAMkUHiwARUwLQAAAEu4AMhSWLEBAY5ZuQgACABjILABI0SwAyNwsgQoCUVSRLIKAgcqsQYBRLEkAYhRWLBAiFixBgNEsSYBiFFYuAQAiFixBgFEWVlZWbgB/4WwBI2xBQBEAAA=) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAoUAA4AAAAAEPQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPeFJAWNtYXAAAAGIAAAAOgAAAUrQEhm3Y3Z0IAAAAcQAAAAUAAAAHAZJ/5RmcGdtAAAB2AAABPkAAAmRigp4O2dhc3AAAAbUAAAACAAAAAgAAAAQZ2x5ZgAABtwAAACuAAAAtt9nBHZoZWFkAAAHjAAAADUAAAA2ASs8e2hoZWEAAAfEAAAAIAAAACQHUwNNaG10eAAAB+QAAAAMAAAADAspAABsb2NhAAAH8AAAAAgAAAAIADgAW21heHAAAAf4AAAAIAAAACAApgm8bmFtZQAACBgAAAF3AAACzcydGhxwb3N0AAAJkAAAACoAAAA7rr1AmHByZXAAAAm8AAAAVgAAAFaSoZr/eJxjYGTewTiBgZWBg6mKaQ8DA0MPhGZ8wGDIyMTAwMTAysyAFQSkuaYwOLxgeMHIHPQ/iyGKmZvBHyjMCJIDAPe9C2B4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF4w/v8PUvCCAURLMELVAwEjG8OIBwBk5AavAAB4nGNgQANGDEbM3P83gjAAELQD4XicnVXZdtNWFJU8ZHASOmSgoA7X3DhQ68qEKRgwaSrFdiEdHAitBB2kDHTkncc+62uOQrtWH/m07n09JLR0rbYsls++R1tn2DrnRhwjKn0aiGvUoZKXA6msPZZK90lc13Uvj5UMBnFdthJPSZuonSRKat3sUC7xWOsqWSdYJ+PlIFZPVZ5noAziFB5lSUQbRBuplyZJ4onjJ4kWZxAfJUkgJaMQp9LIUEI1GsRS1aFM6dCr1xNx00DKRqMedVhU90PFJ8c1p9SsA0YqVznCFevVRr4bpwMve5DEOsGzrYcxHnisfpQqkIqR6cg/dkpOlIaBVHHUoVbi6DCTX/eRTCrNQKaMYkWl7oG43f102xYxPXQ6vi5KlUaqurnOKJrt0fGogygP2cbppNzQ2fbw5RlTVKtdcbPtQGYNXErJbHSfRAAdJlLj6QFONZwCqRn1R8XZ588BEslclKo8VTKHegOZMzt7cTHtbiersnCknwcyb3Z2452HQ6dXh3/R+hdM4cxHj+Jifj5C+lBqfiJOJKVGWMzyp4YfcVcgQrkxiAsXyuBThDl0RdrZZl3jtTH2hs/5SqlhPQna6KP4fgr9TiQrHGdRo/VInM1j13Wt3GdQS7W7Fzsyr0OVIu7vCwuuM+eEYZ4WC1VfnvneBTT/Bohn/EDeNIVL+5YpSrRvm6JMu2iKCu0SVKVdNsUU7YoppmnPmmKG9h1TzNKeMzLj/8vc55H7HN7xkJv2XeSmfQ+5ad9HbtoPkJtWITdtHblpLyA3rUZu2lWjOnYEGgZpF1IVQdA0svph3Fab9UDWjDR8aWDyLmLI+upER521tcofxX914gsHcmmip7siF5viLq/bFj483e6rj5pG3bDV+MaR8jAeRnocmtBZ+c3hv+1N3S6a7jKqMugBFUwKwABl7UAC0zrbCaT1mqf48gdgXIZ4zkpDtVSfO4am7+V5X/exOfG+x+3GLrdcd3kJWdYNcmP28N9SZKrrH+UtrVQnR6wrJ49VaxhDKrwour6SlHu0tRu/KKmy8l6U1srnk5CbPYMbQlu27mGwI0xpyiUeXlOlKD3UUo6yQyxvKco84JSLC1qGxLgOdQ9qa8TpoXoYGwshhqG0vRBwSCldFd+0ynfxHqtr2Oj4xRXh6XpyEhGf4ir7UfBU10b96A7avGbdMoMpVaqn+4xPsa/b9lFZaaSOsxe3VAfXNOsaORXTT+Rr4HRvOGjdAz1UfDRBI1U1x+jGKGM0ljXl3wR0MVZ+w2jVYvs93E+dpFWsuUuY7JsT9+C0u/0q+7WcW0bW/dcGvW3kip8jMb8tCvw7B2K3ZA3UO5OBGAvIWdAYxhYmdxiug23EbfY/Jqf/34aFRXJXOxq7eerD1ZNRJXfZ8rjLTXZZ16M2R9VOGvsIjS0PN+bY4XIstsRgQbb+wf8x7gF3aVEC4NDIZZiI2nShnurh6h6rsW04VxIBds2x43QAegAuQd8cu9bzCYD13CPnLsB9cgh2yCH4lByCz8i5BfA5OQRfkEMwIIdgl5w7AA/IIXhIDsEeOQSPyNkE+JIcgq/IIYjJIUjIuQ3wmByCJ+QQfE0OwTdGrk5k/pYH2QD6zqKbQKmdGhzaOGRGrk3Y+zxY9oFFZB9aROqRkesT6lMeLPV7i0j9wSJSfzRyY0L9iQdL/dkiUn+xiNRnxpeZIymvDp7zjg7+BJfqrV4AAAAAAQAB//8AD3icY2BkAALmJUwzGEQZZBwk+RkZGBmdGJgYmbIYgMwsoGSiiLgIs5A2owg7I5uSOqOaiT2jmZE8I5gQY17C/09BQEfg3yt+fh8gvYQxD0j68DOJiQn8U+DnZxQDcQUEljLmCwBpBgbG/3//b2SOZ+Zm4GEQcuAH2sblDLSEm8FFVJhJEGgLH6OSHpMdo5EcI3Nk0bEXJ/LYqvZ82VXHGFd6pKTkyCsQwQAAq+QkqAAAeJxjYGRgYADiw5VSsfH8Nl8ZuJlfAEUYzpvO6IXQCb7///7fyLyEmRvI5WBgAokCAFb/DJAAAAB4nGNgZGBgDvqfxRDF/IKB4f935iUMQBEUwAwAi5YFpgPoAAAD6AAAA1kAAAAAAAAAOABbAAEAAAADABYAAQAAAAAAAgAGABMAbgAAAC0JkQAAAAB4nHWQy2rCQBSG//HSi0JbWui2sypKabxgN4IgWHTTbqS4LTHGJBIzMhkFX6Pv0IfpS/RZ+puMpShNmMx3vjlz5mQAXOMbAvnzxJGzwBmjnAs4Rc9ykf7Zcon8YrmMKt4sn9C/W67gAYHlKm7wwQqidM5ogU/LAlfi0nIBF+LOcpH+0XKJ3LNcxq14tXxC71muYCJSy1Xci6+BWm11FIRG1gZ12W62OnK6lYoqStxYumsTKp3KvpyrxPhxrBxPLfc89oN17Op9uJ8nvk4jlciW09yrkZ/42jX+bFc93QRtY+ZyrtVSDm2GXGm18D3jhMasuo3G3/MwgMIKW2hEvKoQBhI12jrnNppooUOaMkMyM8+KkMBFTONizR1htpIy7nPMGSW0PjNisgOP3+WRH5MC7o9ZRR+tHsYT0u6MKPOSfTns7jBrREqyTDezs9/eU2x4WpvWcNeuS511JTE8qCF5H7u1BY1H72S3Ymi7aPD95/9+AN1fhEsAeJxjYGKAAC4G7ICZgYGRiZGZMzkjNTk7N7Eomy05syg5J5WBAQBE1QZBAABLuADIUlixAQGOWbkIAAgAYyCwASNEsAMjcLIEKAlFUkSyCgIHKrEGAUSxJAGIUViwQIhYsQYDRLEmAYhRWLgEAIhYsQYBRFlZWVm4Af+FsASNsQUARAAA) format('woff')}.ui.breadcrumb{line-height:1;display:inline-block;margin:0;vertical-align:middle}.ui.breadcrumb:first-child{margin-top:0}.ui.breadcrumb:last-child{margin-bottom:0}.ui.breadcrumb .divider{display:inline-block;opacity:.7;margin:0 .21428571rem;font-size:.92857143em;color:rgba(0,0,0,.4);vertical-align:baseline}.ui.breadcrumb a{color:#4183C4}.ui.breadcrumb a:hover{color:#1e70bf}.ui.breadcrumb .icon.divider{font-size:.85714286em;vertical-align:baseline}.ui.breadcrumb a.section{cursor:pointer}.ui.breadcrumb .section{display:inline-block;margin:0;padding:0}.ui.breadcrumb.segment{display:inline-block;padding:.71428571em 1em}.ui.breadcrumb .active.section{font-weight:700}.ui.mini.breadcrumb{font-size:.71428571rem}.ui.tiny.breadcrumb{font-size:.85714286rem}.ui.small.breadcrumb{font-size:.92857143rem}.ui.breadcrumb{font-size:1rem}.ui.large.breadcrumb{font-size:1.14285714rem}.ui.big.breadcrumb{font-size:1.28571429rem}.ui.huge.breadcrumb{font-size:1.42857143rem}.ui.massive.breadcrumb{font-size:1.71428571rem}.ui.form{position:relative;max-width:100%}.ui.form>p{margin:1em 0}.ui.form .field{clear:both;margin:0 0 1em}.ui.form .field:last-child,.ui.form .fields:last-child .field{margin-bottom:0}.ui.form .fields .field{clear:both;margin:0 0 1em}.ui.form .field>label{display:block;margin:0 0 .28571429rem;color:rgba(0,0,0,.87);font-size:.92857143em;font-weight:700;text-transform:none}.ui.form input:not([type]),.ui.form input[type=text],.ui.form input[type=email],.ui.form input[type=search],.ui.form input[type=password],.ui.form input[type=date],.ui.form input[type=datetime-local],.ui.form input[type=tel],.ui.form input[type=time],.ui.form input[type=url],.ui.form input[type=number],.ui.form textarea{width:100%;vertical-align:top}.ui.form ::-webkit-datetime-edit,.ui.form ::-webkit-inner-spin-button{height:1.2142em}.ui.form input:not([type]),.ui.form input[type=text],.ui.form input[type=email],.ui.form input[type=search],.ui.form input[type=password],.ui.form input[type=date],.ui.form input[type=datetime-local],.ui.form input[type=tel],.ui.form input[type=time],.ui.form input[type=url],.ui.form input[type=number]{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;margin:0;outline:0;-webkit-appearance:none;tap-highlight-color:rgba(255,255,255,0);line-height:1.2142em;padding:.67861429em 1em;font-size:1em;background:#FFF;border:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87);border-radius:.28571429rem;box-shadow:0 0 0 0 transparent inset;-webkit-transition:color .1s ease,border-color .1s ease;transition:color .1s ease,border-color .1s ease}.ui.form textarea{margin:0;-webkit-appearance:none;tap-highlight-color:rgba(255,255,255,0);padding:.78571429em 1em;background:#FFF;border:1px solid rgba(34,36,38,.15);outline:0;color:rgba(0,0,0,.87);border-radius:.28571429rem;box-shadow:0 0 0 0 transparent inset;-webkit-transition:color .1s ease,border-color .1s ease;transition:color .1s ease,border-color .1s ease;font-size:1em;line-height:1.2857;resize:vertical}.ui.form textarea:not([rows]){height:12em;min-height:8em;max-height:24em}.ui.form input[type=checkbox],.ui.form textarea{vertical-align:top}.ui.form input.attached{width:auto}.ui.form select{display:block;height:auto;width:100%;background:#FFF;border:1px solid rgba(34,36,38,.15);border-radius:.28571429rem;box-shadow:0 0 0 0 transparent inset;padding:.62em 1em;color:rgba(0,0,0,.87);-webkit-transition:color .1s ease,border-color .1s ease;transition:color .1s ease,border-color .1s ease}.ui.form .field>.selection.dropdown{width:100%}.ui.form .field>.selection.dropdown>.dropdown.icon{float:right}.ui.form .inline.field>.selection.dropdown,.ui.form .inline.fields .field>.selection.dropdown{width:auto}.ui.form .inline.field>.selection.dropdown>.dropdown.icon,.ui.form .inline.fields .field>.selection.dropdown>.dropdown.icon{float:none}.ui.form .field .ui.input,.ui.form .fields .field .ui.input,.ui.form .wide.field .ui.input{width:100%}.ui.form .inline.field:not(.wide) .ui.input,.ui.form .inline.fields .field:not(.wide) .ui.input{width:auto;vertical-align:middle}.ui.form .field .ui.input input,.ui.form .fields .field .ui.input input{width:auto}.ui.form .eight.fields .ui.input input,.ui.form .five.fields .ui.input input,.ui.form .four.fields .ui.input input,.ui.form .nine.fields .ui.input input,.ui.form .seven.fields .ui.input input,.ui.form .six.fields .ui.input input,.ui.form .ten.fields .ui.input input,.ui.form .three.fields .ui.input input,.ui.form .two.fields .ui.input input,.ui.form .wide.field .ui.input input{-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;width:0}.ui.form .error.message,.ui.form .success.message,.ui.form .warning.message{display:none}.ui.form .message:first-child{margin-top:0}.ui.form .field .prompt.label{white-space:normal;background:#FFF!important;border:1px solid #E0B4B4!important;color:#9F3A38!important}.ui.form .inline.field .prompt,.ui.form .inline.fields .field .prompt{vertical-align:top;margin:-.25em 0 -.5em .5em}.ui.form .inline.field .prompt:before,.ui.form .inline.fields .field .prompt:before{border-width:0 0 1px 1px;bottom:auto;right:auto;top:50%;left:0}.ui.form .field.field input:-webkit-autofill{box-shadow:0 0 0 100px ivory inset!important;border-color:#E5DFA1!important}.ui.form .field.field input:-webkit-autofill:focus{box-shadow:0 0 0 100px ivory inset!important;border-color:#D5C315!important}.ui.form .error.error input:-webkit-autofill{box-shadow:0 0 0 100px #FFFAF0 inset!important;border-color:#E0B4B4!important}.ui.form ::-webkit-input-placeholder{color:rgba(140,140,140,.87)}.ui.form ::-ms-input-placeholder{color:rgba(140,140,140,.87)}.ui.form ::-moz-placeholder{color:rgba(140,140,140,.87)}.ui.form :focus::-webkit-input-placeholder{color:rgba(89,89,89,.87)}.ui.form :focus::-ms-input-placeholder{color:rgba(89,89,89,.87)}.ui.form :focus::-moz-placeholder{color:rgba(89,89,89,.87)}.ui.form .error ::-webkit-input-placeholder{color:#e7bdbc}.ui.form .error ::-ms-input-placeholder{color:#e7bdbc}.ui.form .error ::-moz-placeholder{color:#e7bdbc}.ui.form .error :focus::-webkit-input-placeholder{color:#da9796}.ui.form .error :focus::-ms-input-placeholder{color:#da9796}.ui.form .error :focus::-moz-placeholder{color:#da9796}.ui.form input:not([type]):focus,.ui.form input[type=text]:focus,.ui.form input[type=email]:focus,.ui.form input[type=search]:focus,.ui.form input[type=password]:focus,.ui.form input[type=date]:focus,.ui.form input[type=datetime-local]:focus,.ui.form input[type=tel]:focus,.ui.form input[type=time]:focus,.ui.form input[type=url]:focus,.ui.form input[type=number]:focus{color:rgba(0,0,0,.95);border-color:#85B7D9;border-radius:.28571429rem;background:#FFF;box-shadow:0 0 0 0 rgba(34,36,38,.35) inset}.ui.form textarea:focus{color:rgba(0,0,0,.95);border-color:#85B7D9;border-radius:.28571429rem;background:#FFF;box-shadow:0 0 0 0 rgba(34,36,38,.35) inset;-webkit-appearance:none}.ui.form.success .success.message:not(:empty){display:block}.ui.form.success .icon.success.message:not(:empty){display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.form.warning .warning.message:not(:empty){display:block}.ui.form.warning .icon.warning.message:not(:empty){display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.form.error .error.message:not(:empty){display:block}.ui.form.error .icon.error.message:not(:empty){display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.form .field.error .input,.ui.form .field.error label,.ui.form .fields.error .field .input,.ui.form .fields.error .field label{color:#9F3A38}.ui.form .field.error .corner.label,.ui.form .fields.error .field .corner.label{border-color:#9F3A38;color:#FFF}.ui.form .field.error input:not([type]),.ui.form .field.error input[type=text],.ui.form .field.error input[type=email],.ui.form .field.error input[type=search],.ui.form .field.error input[type=password],.ui.form .field.error input[type=date],.ui.form .field.error input[type=datetime-local],.ui.form .field.error input[type=tel],.ui.form .field.error input[type=time],.ui.form .field.error input[type=url],.ui.form .field.error input[type=number],.ui.form .field.error select,.ui.form .field.error textarea,.ui.form .fields.error .field input:not([type]),.ui.form .fields.error .field input[type=text],.ui.form .fields.error .field input[type=email],.ui.form .fields.error .field input[type=search],.ui.form .fields.error .field input[type=password],.ui.form .fields.error .field input[type=date],.ui.form .fields.error .field input[type=datetime-local],.ui.form .fields.error .field input[type=tel],.ui.form .fields.error .field input[type=time],.ui.form .fields.error .field input[type=url],.ui.form .fields.error .field input[type=number],.ui.form .fields.error .field select,.ui.form .fields.error .field textarea{background:#FFF6F6;border-color:#E0B4B4;color:#9F3A38;border-radius:'';box-shadow:none}.ui.form .field.error input:not([type]):focus,.ui.form .field.error input[type=text]:focus,.ui.form .field.error input[type=email]:focus,.ui.form .field.error input[type=search]:focus,.ui.form .field.error input[type=password]:focus,.ui.form .field.error input[type=date]:focus,.ui.form .field.error input[type=datetime-local]:focus,.ui.form .field.error input[type=tel]:focus,.ui.form .field.error input[type=time]:focus,.ui.form .field.error input[type=url]:focus,.ui.form .field.error input[type=number]:focus,.ui.form .field.error select:focus,.ui.form .field.error textarea:focus{background:#FFF6F6;border-color:#E0B4B4;color:#9F3A38;-webkit-appearance:none;box-shadow:none}.ui.form .field.error select{-webkit-appearance:menulist-button}.ui.form .field.error .ui.dropdown,.ui.form .field.error .ui.dropdown .item,.ui.form .field.error .ui.dropdown .text,.ui.form .fields.error .field .ui.dropdown,.ui.form .fields.error .field .ui.dropdown .item{background:#FFF6F6;color:#9F3A38}.ui.form .field.error .ui.dropdown,.ui.form .field.error .ui.dropdown:hover,.ui.form .fields.error .field .ui.dropdown,.ui.form .fields.error .field .ui.dropdown:hover{border-color:#E0B4B4!important}.ui.form .field.error .ui.dropdown:hover .menu,.ui.form .fields.error .field .ui.dropdown:hover .menu{border-color:#E0B4B4}.ui.form .field.error .ui.multiple.selection.dropdown>.label,.ui.form .fields.error .field .ui.multiple.selection.dropdown>.label{background-color:#EACBCB;color:#9F3A38}.ui.form .field.error .ui.dropdown .menu .item:hover,.ui.form .field.error .ui.dropdown .menu .selected.item,.ui.form .fields.error .field .ui.dropdown .menu .item:hover,.ui.form .fields.error .field .ui.dropdown .menu .selected.item{background-color:#FBE7E7}.ui.form .field.error .ui.dropdown .menu .active.item,.ui.form .fields.error .field .ui.dropdown .menu .active.item{background-color:#FDCFCF!important}.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box,.ui.form .field.error .checkbox:not(.toggle):not(.slider) label,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label{color:#9F3A38}.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box:before,.ui.form .field.error .checkbox:not(.toggle):not(.slider) label:before,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before{background:#FFF6F6;border-color:#E0B4B4}.ui.form .field.error .checkbox .box:after,.ui.form .field.error .checkbox label:after,.ui.form .fields.error .field .checkbox .box:after,.ui.form .fields.error .field .checkbox label:after{color:#9F3A38}.ui.form .disabled.field,.ui.form .disabled.fields .field,.ui.form .field :disabled{pointer-events:none;opacity:.45}.ui.form .field.disabled label{opacity:.45}.ui.form .field.disabled :disabled{opacity:1}.ui.loading.form{position:relative;cursor:default;point-events:none;text-shadow:none!important;color:transparent!important;-webkit-transition:all 0s linear;transition:all 0s linear;z-index:100}.ui.loading.form:before{position:absolute;content:'';top:0;left:0;background:rgba(255,255,255,.8);width:100%;height:100%;z-index:100}.ui.loading.form:after{position:absolute;content:'';top:50%;left:50%;margin:-1.5em 0 0 -1.5em;width:3em;height:3em;-webkit-animation:form-spin .6s linear;animation:form-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 rgba(0,0,0,.1) rgba(0,0,0,.1);border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent;visibility:visible;z-index:101}@-webkit-keyframes form-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes form-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.form .required.field>.checkbox:after,.ui.form .required.field>label:after,.ui.form .required.fields.grouped>label:after,.ui.form .required.fields:not(.grouped)>.field>.checkbox:after,.ui.form .required.fields:not(.grouped)>.field>label:after{margin:-.2em 0 0 .2em;content:'*';color:#DB2828}.ui.form .required.field>label:after,.ui.form .required.fields.grouped>label:after,.ui.form .required.fields:not(.grouped)>.field>label:after{display:inline-block;vertical-align:top}.ui.form .required.field>.checkbox:after,.ui.form .required.fields:not(.grouped)>.field>.checkbox:after{position:absolute;top:0;left:100%}.ui.form .inverted.segment .ui.checkbox .box,.ui.form .inverted.segment .ui.checkbox label,.ui.form .inverted.segment label,.ui.inverted.form .ui.checkbox .box,.ui.inverted.form .ui.checkbox label,.ui.inverted.form label{color:rgba(255,255,255,.9)}.ui.inverted.form input:not([type]),.ui.inverted.form input[type=text],.ui.inverted.form input[type=email],.ui.inverted.form input[type=search],.ui.inverted.form input[type=password],.ui.inverted.form input[type=date],.ui.inverted.form input[type=datetime-local],.ui.inverted.form input[type=tel],.ui.inverted.form input[type=time],.ui.inverted.form input[type=url],.ui.inverted.form input[type=number]{background:#FFF;border-color:rgba(255,255,255,.1);color:rgba(0,0,0,.87);box-shadow:none}.ui.form .grouped.fields{display:block;margin:0 0 1em}.ui.form .grouped.fields:last-child{margin-bottom:0}.ui.form .grouped.fields>label{margin:0 0 .28571429rem;color:rgba(0,0,0,.87);font-size:.92857143em;font-weight:700;text-transform:none}.ui.form .grouped.fields .field,.ui.form .grouped.inline.fields .field{display:block;margin:.5em 0;padding:0}.ui.form .fields{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.ui.form .fields>.field{-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;padding-left:.5em;padding-right:.5em}.ui.form .fields>.field:first-child{border-left:none;box-shadow:none}.ui.form .two.fields>.field,.ui.form .two.fields>.fields{width:50%}.ui.form .three.fields>.field,.ui.form .three.fields>.fields{width:33.33333333%}.ui.form .four.fields>.field,.ui.form .four.fields>.fields{width:25%}.ui.form .five.fields>.field,.ui.form .five.fields>.fields{width:20%}.ui.form .six.fields>.field,.ui.form .six.fields>.fields{width:16.66666667%}.ui.form .seven.fields>.field,.ui.form .seven.fields>.fields{width:14.28571429%}.ui.form .eight.fields>.field,.ui.form .eight.fields>.fields{width:12.5%}.ui.form .nine.fields>.field,.ui.form .nine.fields>.fields{width:11.11111111%}.ui.form .ten.fields>.field,.ui.form .ten.fields>.fields{width:10%}@media only screen and (max-width:767px){.ui.form .fields{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.form .eight.fields>.field,.ui.form .eight.fields>.fields,.ui.form .five.fields>.field,.ui.form .five.fields>.fields,.ui.form .four.fields>.field,.ui.form .four.fields>.fields,.ui.form .nine.fields>.field,.ui.form .nine.fields>.fields,.ui.form .seven.fields>.field,.ui.form .seven.fields>.fields,.ui.form .six.fields>.field,.ui.form .six.fields>.fields,.ui.form .ten.fields>.field,.ui.form .ten.fields>.fields,.ui.form .three.fields>.field,.ui.form .three.fields>.fields,.ui.form .two.fields>.field,.ui.form .two.fields>.fields{width:100%!important;margin:0 0 1em;padding-left:0;padding-right:0}}.ui.form .fields .field:first-child{padding-left:0}.ui.form .fields .field:last-child{padding-right:0}.ui.form .fields .wide.field{width:6.25%;padding-left:.5em;padding-right:.5em}.ui.form .fields .wide.field:first-child{padding-left:0}.ui.form .fields .wide.field:last-child{padding-right:0}.ui.form .one.wide.field{width:6.25%!important}.ui.form .two.wide.field{width:12.5%!important}.ui.form .three.wide.field{width:18.75%!important}.ui.form .four.wide.field{width:25%!important}.ui.form .five.wide.field{width:31.25%!important}.ui.form .six.wide.field{width:37.5%!important}.ui.form .seven.wide.field{width:43.75%!important}.ui.form .eight.wide.field{width:50%!important}.ui.form .nine.wide.field{width:56.25%!important}.ui.form .ten.wide.field{width:62.5%!important}.ui.form .eleven.wide.field{width:68.75%!important}.ui.form .twelve.wide.field{width:75%!important}.ui.form .thirteen.wide.field{width:81.25%!important}.ui.form .fourteen.wide.field{width:87.5%!important}.ui.form .fifteen.wide.field{width:93.75%!important}.ui.form .sixteen.wide.field{width:100%!important}@media only screen and (max-width:767px){.ui.form .fields>.eight.wide.field,.ui.form .fields>.eleven.wide.field,.ui.form .fields>.fifteen.wide.field,.ui.form .fields>.five.wide.field,.ui.form .fields>.four.wide.field,.ui.form .fields>.fourteen.wide.field,.ui.form .fields>.nine.wide.field,.ui.form .fields>.seven.wide.field,.ui.form .fields>.six.wide.field,.ui.form .fields>.sixteen.wide.field,.ui.form .fields>.ten.wide.field,.ui.form .fields>.thirteen.wide.field,.ui.form .fields>.three.wide.field,.ui.form .fields>.twelve.wide.field,.ui.form .fields>.two.wide.field,.ui.form .five.fields>.field,.ui.form .five.fields>.fields,.ui.form .four.fields>.field,.ui.form .four.fields>.fields,.ui.form .three.fields>.field,.ui.form .three.fields>.fields,.ui.form .two.fields>.field,.ui.form .two.fields>.fields{width:100%!important;margin:0 0 1em;padding-left:0;padding-right:0}}.ui.form [class*="equal width"].fields>.field,.ui[class*="equal width"].form .fields>.field{width:100%;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.ui.form .inline.fields{margin:0 0 1em;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.form .inline.fields .field{margin:0;padding:0 1em 0 0}.ui.form .inline.field>label,.ui.form .inline.field>p,.ui.form .inline.fields .field>label,.ui.form .inline.fields .field>p,.ui.form .inline.fields>label{display:inline-block;width:auto;margin-top:0;margin-bottom:0;vertical-align:baseline;font-size:.92857143em;font-weight:700;color:rgba(0,0,0,.87);text-transform:none}.ui.form .inline.fields>label{margin:.035714em 1em 0 0}.ui.form .inline.field>input,.ui.form .inline.field>select,.ui.form .inline.fields .field>input,.ui.form .inline.fields .field>select{display:inline-block;width:auto;margin-top:0;margin-bottom:0;vertical-align:middle;font-size:1em}.ui.form .inline.field>:first-child,.ui.form .inline.fields .field>:first-child{margin:0 .85714286em 0 0}.ui.form .inline.field>:only-child,.ui.form .inline.fields .field>:only-child{margin:0}.ui.form .inline.fields .wide.field{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.form .inline.fields .wide.field>input,.ui.form .inline.fields .wide.field>select{width:100%}.ui.small.form{font-size:.92857143rem}.ui.form{font-size:1rem}.ui.large.form{font-size:1.14285714rem}.ui.huge.form{font-size:1.42857143rem}.ui.grid{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;padding:0;margin:-1rem}.ui.relaxed.grid{margin-left:-1.5rem;margin-right:-1.5rem}.ui[class*="very relaxed"].grid{margin-left:-2.5rem;margin-right:-2.5rem}.ui.grid+.grid{margin-top:1rem}.ui.grid>.column:not(.row),.ui.grid>.row>.column{position:relative;display:inline-block;width:6.25%;padding-left:1rem;padding-right:1rem;vertical-align:top}.ui.grid>*{padding-left:1rem;padding-right:1rem}.ui.grid>.row{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:inherit;-webkit-justify-content:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%!important;padding:1rem 0}.ui.grid>.column:not(.row){padding-top:1rem;padding-bottom:1rem}.ui.grid>.row>.column{margin-top:0;margin-bottom:0}.ui.grid>.row>.column>img,.ui.grid>.row>img{max-width:100%}.ui.grid>.ui.grid:first-child{margin-top:0}.ui.grid>.ui.grid:last-child{margin-bottom:0}.ui.aligned.grid .column>.segment:not(.compact):not(.attached),.ui.grid .aligned.row>.column>.segment:not(.compact):not(.attached){width:100%}.ui.grid .row+.ui.divider{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;margin:1rem}.ui.grid .column+.ui.vertical.divider{height:calc(50% - 1rem)}.ui.grid>.column:last-child>.horizontal.segment,.ui.grid>.row>.column:last-child>.horizontal.segment{box-shadow:none}@media only screen and (max-width:767px){.ui.page.grid{width:auto;padding-left:0;padding-right:0;margin-left:0;margin-right:0}}@media only screen and (min-width:768px) and (max-width:991px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:2em;padding-right:2em}}@media only screen and (min-width:992px) and (max-width:1199px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:3%;padding-right:3%}}@media only screen and (min-width:1200px) and (max-width:1919px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:15%;padding-right:15%}}@media only screen and (min-width:1920px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:23%;padding-right:23%}}.ui.grid>.column:only-child,.ui.grid>.row>.column:only-child,.ui[class*="one column"].grid>.column:not(.row),.ui[class*="one column"].grid>.row>.column{width:100%}.ui[class*="two column"].grid>.column:not(.row),.ui[class*="two column"].grid>.row>.column{width:50%}.ui[class*="three column"].grid>.column:not(.row),.ui[class*="three column"].grid>.row>.column{width:33.33333333%}.ui[class*="four column"].grid>.column:not(.row),.ui[class*="four column"].grid>.row>.column{width:25%}.ui[class*="five column"].grid>.column:not(.row),.ui[class*="five column"].grid>.row>.column{width:20%}.ui[class*="six column"].grid>.column:not(.row),.ui[class*="six column"].grid>.row>.column{width:16.66666667%}.ui[class*="seven column"].grid>.column:not(.row),.ui[class*="seven column"].grid>.row>.column{width:14.28571429%}.ui[class*="eight column"].grid>.column:not(.row),.ui[class*="eight column"].grid>.row>.column{width:12.5%}.ui[class*="nine column"].grid>.column:not(.row),.ui[class*="nine column"].grid>.row>.column{width:11.11111111%}.ui[class*="ten column"].grid>.column:not(.row),.ui[class*="ten column"].grid>.row>.column{width:10%}.ui[class*="eleven column"].grid>.column:not(.row),.ui[class*="eleven column"].grid>.row>.column{width:9.09090909%}.ui[class*="twelve column"].grid>.column:not(.row),.ui[class*="twelve column"].grid>.row>.column{width:8.33333333%}.ui[class*="thirteen column"].grid>.column:not(.row),.ui[class*="thirteen column"].grid>.row>.column{width:7.69230769%}.ui[class*="fourteen column"].grid>.column:not(.row),.ui[class*="fourteen column"].grid>.row>.column{width:7.14285714%}.ui[class*="fifteen column"].grid>.column:not(.row),.ui[class*="fifteen column"].grid>.row>.column{width:6.66666667%}.ui[class*="sixteen column"].grid>.column:not(.row),.ui[class*="sixteen column"].grid>.row>.column{width:6.25%}.ui.grid>[class*="one column"].row>.column{width:100%!important}.ui.grid>[class*="two column"].row>.column{width:50%!important}.ui.grid>[class*="three column"].row>.column{width:33.33333333%!important}.ui.grid>[class*="four column"].row>.column{width:25%!important}.ui.grid>[class*="five column"].row>.column{width:20%!important}.ui.grid>[class*="six column"].row>.column{width:16.66666667%!important}.ui.grid>[class*="seven column"].row>.column{width:14.28571429%!important}.ui.grid>[class*="eight column"].row>.column{width:12.5%!important}.ui.grid>[class*="nine column"].row>.column{width:11.11111111%!important}.ui.grid>[class*="ten column"].row>.column{width:10%!important}.ui.grid>[class*="eleven column"].row>.column{width:9.09090909%!important}.ui.grid>[class*="twelve column"].row>.column{width:8.33333333%!important}.ui.grid>[class*="thirteen column"].row>.column{width:7.69230769%!important}.ui.grid>[class*="fourteen column"].row>.column{width:7.14285714%!important}.ui.grid>[class*="fifteen column"].row>.column{width:6.66666667%!important}.ui.grid>[class*="sixteen column"].row>.column{width:6.25%!important}.ui.celled.page.grid{box-shadow:none}.ui.column.grid>[class*="one wide"].column,.ui.grid>.column.row>[class*="one wide"].column,.ui.grid>.row>[class*="one wide"].column,.ui.grid>[class*="one wide"].column{width:6.25%!important}.ui.column.grid>[class*="two wide"].column,.ui.grid>.column.row>[class*="two wide"].column,.ui.grid>.row>[class*="two wide"].column,.ui.grid>[class*="two wide"].column{width:12.5%!important}.ui.column.grid>[class*="three wide"].column,.ui.grid>.column.row>[class*="three wide"].column,.ui.grid>.row>[class*="three wide"].column,.ui.grid>[class*="three wide"].column{width:18.75%!important}.ui.column.grid>[class*="four wide"].column,.ui.grid>.column.row>[class*="four wide"].column,.ui.grid>.row>[class*="four wide"].column,.ui.grid>[class*="four wide"].column{width:25%!important}.ui.column.grid>[class*="five wide"].column,.ui.grid>.column.row>[class*="five wide"].column,.ui.grid>.row>[class*="five wide"].column,.ui.grid>[class*="five wide"].column{width:31.25%!important}.ui.column.grid>[class*="six wide"].column,.ui.grid>.column.row>[class*="six wide"].column,.ui.grid>.row>[class*="six wide"].column,.ui.grid>[class*="six wide"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide"].column,.ui.grid>.column.row>[class*="seven wide"].column,.ui.grid>.row>[class*="seven wide"].column,.ui.grid>[class*="seven wide"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide"].column,.ui.grid>.column.row>[class*="eight wide"].column,.ui.grid>.row>[class*="eight wide"].column,.ui.grid>[class*="eight wide"].column{width:50%!important}.ui.column.grid>[class*="nine wide"].column,.ui.grid>.column.row>[class*="nine wide"].column,.ui.grid>.row>[class*="nine wide"].column,.ui.grid>[class*="nine wide"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide"].column,.ui.grid>.column.row>[class*="ten wide"].column,.ui.grid>.row>[class*="ten wide"].column,.ui.grid>[class*="ten wide"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide"].column,.ui.grid>.column.row>[class*="eleven wide"].column,.ui.grid>.row>[class*="eleven wide"].column,.ui.grid>[class*="eleven wide"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide"].column,.ui.grid>.column.row>[class*="twelve wide"].column,.ui.grid>.row>[class*="twelve wide"].column,.ui.grid>[class*="twelve wide"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide"].column,.ui.grid>.column.row>[class*="thirteen wide"].column,.ui.grid>.row>[class*="thirteen wide"].column,.ui.grid>[class*="thirteen wide"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide"].column,.ui.grid>.column.row>[class*="fourteen wide"].column,.ui.grid>.row>[class*="fourteen wide"].column,.ui.grid>[class*="fourteen wide"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide"].column,.ui.grid>.column.row>[class*="fifteen wide"].column,.ui.grid>.row>[class*="fifteen wide"].column,.ui.grid>[class*="fifteen wide"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide"].column,.ui.grid>.column.row>[class*="sixteen wide"].column,.ui.grid>.row>[class*="sixteen wide"].column,.ui.grid>[class*="sixteen wide"].column{width:100%!important}@media only screen and (min-width:320px) and (max-width:767px){.ui.column.grid>[class*="one wide mobile"].column,.ui.grid>.column.row>[class*="one wide mobile"].column,.ui.grid>.row>[class*="one wide mobile"].column,.ui.grid>[class*="one wide mobile"].column{width:6.25%!important}.ui.column.grid>[class*="two wide mobile"].column,.ui.grid>.column.row>[class*="two wide mobile"].column,.ui.grid>.row>[class*="two wide mobile"].column,.ui.grid>[class*="two wide mobile"].column{width:12.5%!important}.ui.column.grid>[class*="three wide mobile"].column,.ui.grid>.column.row>[class*="three wide mobile"].column,.ui.grid>.row>[class*="three wide mobile"].column,.ui.grid>[class*="three wide mobile"].column{width:18.75%!important}.ui.column.grid>[class*="four wide mobile"].column,.ui.grid>.column.row>[class*="four wide mobile"].column,.ui.grid>.row>[class*="four wide mobile"].column,.ui.grid>[class*="four wide mobile"].column{width:25%!important}.ui.column.grid>[class*="five wide mobile"].column,.ui.grid>.column.row>[class*="five wide mobile"].column,.ui.grid>.row>[class*="five wide mobile"].column,.ui.grid>[class*="five wide mobile"].column{width:31.25%!important}.ui.column.grid>[class*="six wide mobile"].column,.ui.grid>.column.row>[class*="six wide mobile"].column,.ui.grid>.row>[class*="six wide mobile"].column,.ui.grid>[class*="six wide mobile"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide mobile"].column,.ui.grid>.column.row>[class*="seven wide mobile"].column,.ui.grid>.row>[class*="seven wide mobile"].column,.ui.grid>[class*="seven wide mobile"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide mobile"].column,.ui.grid>.column.row>[class*="eight wide mobile"].column,.ui.grid>.row>[class*="eight wide mobile"].column,.ui.grid>[class*="eight wide mobile"].column{width:50%!important}.ui.column.grid>[class*="nine wide mobile"].column,.ui.grid>.column.row>[class*="nine wide mobile"].column,.ui.grid>.row>[class*="nine wide mobile"].column,.ui.grid>[class*="nine wide mobile"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide mobile"].column,.ui.grid>.column.row>[class*="ten wide mobile"].column,.ui.grid>.row>[class*="ten wide mobile"].column,.ui.grid>[class*="ten wide mobile"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide mobile"].column,.ui.grid>.column.row>[class*="eleven wide mobile"].column,.ui.grid>.row>[class*="eleven wide mobile"].column,.ui.grid>[class*="eleven wide mobile"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide mobile"].column,.ui.grid>.column.row>[class*="twelve wide mobile"].column,.ui.grid>.row>[class*="twelve wide mobile"].column,.ui.grid>[class*="twelve wide mobile"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide mobile"].column,.ui.grid>.column.row>[class*="thirteen wide mobile"].column,.ui.grid>.row>[class*="thirteen wide mobile"].column,.ui.grid>[class*="thirteen wide mobile"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide mobile"].column,.ui.grid>.column.row>[class*="fourteen wide mobile"].column,.ui.grid>.row>[class*="fourteen wide mobile"].column,.ui.grid>[class*="fourteen wide mobile"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide mobile"].column,.ui.grid>.column.row>[class*="fifteen wide mobile"].column,.ui.grid>.row>[class*="fifteen wide mobile"].column,.ui.grid>[class*="fifteen wide mobile"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide mobile"].column,.ui.grid>.column.row>[class*="sixteen wide mobile"].column,.ui.grid>.row>[class*="sixteen wide mobile"].column,.ui.grid>[class*="sixteen wide mobile"].column{width:100%!important}}@media only screen and (min-width:768px) and (max-width:991px){.ui.column.grid>[class*="one wide tablet"].column,.ui.grid>.column.row>[class*="one wide tablet"].column,.ui.grid>.row>[class*="one wide tablet"].column,.ui.grid>[class*="one wide tablet"].column{width:6.25%!important}.ui.column.grid>[class*="two wide tablet"].column,.ui.grid>.column.row>[class*="two wide tablet"].column,.ui.grid>.row>[class*="two wide tablet"].column,.ui.grid>[class*="two wide tablet"].column{width:12.5%!important}.ui.column.grid>[class*="three wide tablet"].column,.ui.grid>.column.row>[class*="three wide tablet"].column,.ui.grid>.row>[class*="three wide tablet"].column,.ui.grid>[class*="three wide tablet"].column{width:18.75%!important}.ui.column.grid>[class*="four wide tablet"].column,.ui.grid>.column.row>[class*="four wide tablet"].column,.ui.grid>.row>[class*="four wide tablet"].column,.ui.grid>[class*="four wide tablet"].column{width:25%!important}.ui.column.grid>[class*="five wide tablet"].column,.ui.grid>.column.row>[class*="five wide tablet"].column,.ui.grid>.row>[class*="five wide tablet"].column,.ui.grid>[class*="five wide tablet"].column{width:31.25%!important}.ui.column.grid>[class*="six wide tablet"].column,.ui.grid>.column.row>[class*="six wide tablet"].column,.ui.grid>.row>[class*="six wide tablet"].column,.ui.grid>[class*="six wide tablet"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide tablet"].column,.ui.grid>.column.row>[class*="seven wide tablet"].column,.ui.grid>.row>[class*="seven wide tablet"].column,.ui.grid>[class*="seven wide tablet"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide tablet"].column,.ui.grid>.column.row>[class*="eight wide tablet"].column,.ui.grid>.row>[class*="eight wide tablet"].column,.ui.grid>[class*="eight wide tablet"].column{width:50%!important}.ui.column.grid>[class*="nine wide tablet"].column,.ui.grid>.column.row>[class*="nine wide tablet"].column,.ui.grid>.row>[class*="nine wide tablet"].column,.ui.grid>[class*="nine wide tablet"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide tablet"].column,.ui.grid>.column.row>[class*="ten wide tablet"].column,.ui.grid>.row>[class*="ten wide tablet"].column,.ui.grid>[class*="ten wide tablet"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide tablet"].column,.ui.grid>.column.row>[class*="eleven wide tablet"].column,.ui.grid>.row>[class*="eleven wide tablet"].column,.ui.grid>[class*="eleven wide tablet"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide tablet"].column,.ui.grid>.column.row>[class*="twelve wide tablet"].column,.ui.grid>.row>[class*="twelve wide tablet"].column,.ui.grid>[class*="twelve wide tablet"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide tablet"].column,.ui.grid>.column.row>[class*="thirteen wide tablet"].column,.ui.grid>.row>[class*="thirteen wide tablet"].column,.ui.grid>[class*="thirteen wide tablet"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide tablet"].column,.ui.grid>.column.row>[class*="fourteen wide tablet"].column,.ui.grid>.row>[class*="fourteen wide tablet"].column,.ui.grid>[class*="fourteen wide tablet"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide tablet"].column,.ui.grid>.column.row>[class*="fifteen wide tablet"].column,.ui.grid>.row>[class*="fifteen wide tablet"].column,.ui.grid>[class*="fifteen wide tablet"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide tablet"].column,.ui.grid>.column.row>[class*="sixteen wide tablet"].column,.ui.grid>.row>[class*="sixteen wide tablet"].column,.ui.grid>[class*="sixteen wide tablet"].column{width:100%!important}}@media only screen and (min-width:992px){.ui.column.grid>[class*="one wide computer"].column,.ui.grid>.column.row>[class*="one wide computer"].column,.ui.grid>.row>[class*="one wide computer"].column,.ui.grid>[class*="one wide computer"].column{width:6.25%!important}.ui.column.grid>[class*="two wide computer"].column,.ui.grid>.column.row>[class*="two wide computer"].column,.ui.grid>.row>[class*="two wide computer"].column,.ui.grid>[class*="two wide computer"].column{width:12.5%!important}.ui.column.grid>[class*="three wide computer"].column,.ui.grid>.column.row>[class*="three wide computer"].column,.ui.grid>.row>[class*="three wide computer"].column,.ui.grid>[class*="three wide computer"].column{width:18.75%!important}.ui.column.grid>[class*="four wide computer"].column,.ui.grid>.column.row>[class*="four wide computer"].column,.ui.grid>.row>[class*="four wide computer"].column,.ui.grid>[class*="four wide computer"].column{width:25%!important}.ui.column.grid>[class*="five wide computer"].column,.ui.grid>.column.row>[class*="five wide computer"].column,.ui.grid>.row>[class*="five wide computer"].column,.ui.grid>[class*="five wide computer"].column{width:31.25%!important}.ui.column.grid>[class*="six wide computer"].column,.ui.grid>.column.row>[class*="six wide computer"].column,.ui.grid>.row>[class*="six wide computer"].column,.ui.grid>[class*="six wide computer"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide computer"].column,.ui.grid>.column.row>[class*="seven wide computer"].column,.ui.grid>.row>[class*="seven wide computer"].column,.ui.grid>[class*="seven wide computer"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide computer"].column,.ui.grid>.column.row>[class*="eight wide computer"].column,.ui.grid>.row>[class*="eight wide computer"].column,.ui.grid>[class*="eight wide computer"].column{width:50%!important}.ui.column.grid>[class*="nine wide computer"].column,.ui.grid>.column.row>[class*="nine wide computer"].column,.ui.grid>.row>[class*="nine wide computer"].column,.ui.grid>[class*="nine wide computer"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide computer"].column,.ui.grid>.column.row>[class*="ten wide computer"].column,.ui.grid>.row>[class*="ten wide computer"].column,.ui.grid>[class*="ten wide computer"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide computer"].column,.ui.grid>.column.row>[class*="eleven wide computer"].column,.ui.grid>.row>[class*="eleven wide computer"].column,.ui.grid>[class*="eleven wide computer"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide computer"].column,.ui.grid>.column.row>[class*="twelve wide computer"].column,.ui.grid>.row>[class*="twelve wide computer"].column,.ui.grid>[class*="twelve wide computer"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide computer"].column,.ui.grid>.column.row>[class*="thirteen wide computer"].column,.ui.grid>.row>[class*="thirteen wide computer"].column,.ui.grid>[class*="thirteen wide computer"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide computer"].column,.ui.grid>.column.row>[class*="fourteen wide computer"].column,.ui.grid>.row>[class*="fourteen wide computer"].column,.ui.grid>[class*="fourteen wide computer"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide computer"].column,.ui.grid>.column.row>[class*="fifteen wide computer"].column,.ui.grid>.row>[class*="fifteen wide computer"].column,.ui.grid>[class*="fifteen wide computer"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide computer"].column,.ui.grid>.column.row>[class*="sixteen wide computer"].column,.ui.grid>.row>[class*="sixteen wide computer"].column,.ui.grid>[class*="sixteen wide computer"].column{width:100%!important}}@media only screen and (min-width:1200px) and (max-width:1919px){.ui.column.grid>[class*="one wide large screen"].column,.ui.grid>.column.row>[class*="one wide large screen"].column,.ui.grid>.row>[class*="one wide large screen"].column,.ui.grid>[class*="one wide large screen"].column{width:6.25%!important}.ui.column.grid>[class*="two wide large screen"].column,.ui.grid>.column.row>[class*="two wide large screen"].column,.ui.grid>.row>[class*="two wide large screen"].column,.ui.grid>[class*="two wide large screen"].column{width:12.5%!important}.ui.column.grid>[class*="three wide large screen"].column,.ui.grid>.column.row>[class*="three wide large screen"].column,.ui.grid>.row>[class*="three wide large screen"].column,.ui.grid>[class*="three wide large screen"].column{width:18.75%!important}.ui.column.grid>[class*="four wide large screen"].column,.ui.grid>.column.row>[class*="four wide large screen"].column,.ui.grid>.row>[class*="four wide large screen"].column,.ui.grid>[class*="four wide large screen"].column{width:25%!important}.ui.column.grid>[class*="five wide large screen"].column,.ui.grid>.column.row>[class*="five wide large screen"].column,.ui.grid>.row>[class*="five wide large screen"].column,.ui.grid>[class*="five wide large screen"].column{width:31.25%!important}.ui.column.grid>[class*="six wide large screen"].column,.ui.grid>.column.row>[class*="six wide large screen"].column,.ui.grid>.row>[class*="six wide large screen"].column,.ui.grid>[class*="six wide large screen"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide large screen"].column,.ui.grid>.column.row>[class*="seven wide large screen"].column,.ui.grid>.row>[class*="seven wide large screen"].column,.ui.grid>[class*="seven wide large screen"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide large screen"].column,.ui.grid>.column.row>[class*="eight wide large screen"].column,.ui.grid>.row>[class*="eight wide large screen"].column,.ui.grid>[class*="eight wide large screen"].column{width:50%!important}.ui.column.grid>[class*="nine wide large screen"].column,.ui.grid>.column.row>[class*="nine wide large screen"].column,.ui.grid>.row>[class*="nine wide large screen"].column,.ui.grid>[class*="nine wide large screen"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide large screen"].column,.ui.grid>.column.row>[class*="ten wide large screen"].column,.ui.grid>.row>[class*="ten wide large screen"].column,.ui.grid>[class*="ten wide large screen"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide large screen"].column,.ui.grid>.column.row>[class*="eleven wide large screen"].column,.ui.grid>.row>[class*="eleven wide large screen"].column,.ui.grid>[class*="eleven wide large screen"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide large screen"].column,.ui.grid>.column.row>[class*="twelve wide large screen"].column,.ui.grid>.row>[class*="twelve wide large screen"].column,.ui.grid>[class*="twelve wide large screen"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide large screen"].column,.ui.grid>.column.row>[class*="thirteen wide large screen"].column,.ui.grid>.row>[class*="thirteen wide large screen"].column,.ui.grid>[class*="thirteen wide large screen"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide large screen"].column,.ui.grid>.column.row>[class*="fourteen wide large screen"].column,.ui.grid>.row>[class*="fourteen wide large screen"].column,.ui.grid>[class*="fourteen wide large screen"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide large screen"].column,.ui.grid>.column.row>[class*="fifteen wide large screen"].column,.ui.grid>.row>[class*="fifteen wide large screen"].column,.ui.grid>[class*="fifteen wide large screen"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide large screen"].column,.ui.grid>.column.row>[class*="sixteen wide large screen"].column,.ui.grid>.row>[class*="sixteen wide large screen"].column,.ui.grid>[class*="sixteen wide large screen"].column{width:100%!important}}@media only screen and (min-width:1920px){.ui.column.grid>[class*="one wide widescreen"].column,.ui.grid>.column.row>[class*="one wide widescreen"].column,.ui.grid>.row>[class*="one wide widescreen"].column,.ui.grid>[class*="one wide widescreen"].column{width:6.25%!important}.ui.column.grid>[class*="two wide widescreen"].column,.ui.grid>.column.row>[class*="two wide widescreen"].column,.ui.grid>.row>[class*="two wide widescreen"].column,.ui.grid>[class*="two wide widescreen"].column{width:12.5%!important}.ui.column.grid>[class*="three wide widescreen"].column,.ui.grid>.column.row>[class*="three wide widescreen"].column,.ui.grid>.row>[class*="three wide widescreen"].column,.ui.grid>[class*="three wide widescreen"].column{width:18.75%!important}.ui.column.grid>[class*="four wide widescreen"].column,.ui.grid>.column.row>[class*="four wide widescreen"].column,.ui.grid>.row>[class*="four wide widescreen"].column,.ui.grid>[class*="four wide widescreen"].column{width:25%!important}.ui.column.grid>[class*="five wide widescreen"].column,.ui.grid>.column.row>[class*="five wide widescreen"].column,.ui.grid>.row>[class*="five wide widescreen"].column,.ui.grid>[class*="five wide widescreen"].column{width:31.25%!important}.ui.column.grid>[class*="six wide widescreen"].column,.ui.grid>.column.row>[class*="six wide widescreen"].column,.ui.grid>.row>[class*="six wide widescreen"].column,.ui.grid>[class*="six wide widescreen"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide widescreen"].column,.ui.grid>.column.row>[class*="seven wide widescreen"].column,.ui.grid>.row>[class*="seven wide widescreen"].column,.ui.grid>[class*="seven wide widescreen"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide widescreen"].column,.ui.grid>.column.row>[class*="eight wide widescreen"].column,.ui.grid>.row>[class*="eight wide widescreen"].column,.ui.grid>[class*="eight wide widescreen"].column{width:50%!important}.ui.column.grid>[class*="nine wide widescreen"].column,.ui.grid>.column.row>[class*="nine wide widescreen"].column,.ui.grid>.row>[class*="nine wide widescreen"].column,.ui.grid>[class*="nine wide widescreen"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide widescreen"].column,.ui.grid>.column.row>[class*="ten wide widescreen"].column,.ui.grid>.row>[class*="ten wide widescreen"].column,.ui.grid>[class*="ten wide widescreen"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide widescreen"].column,.ui.grid>.column.row>[class*="eleven wide widescreen"].column,.ui.grid>.row>[class*="eleven wide widescreen"].column,.ui.grid>[class*="eleven wide widescreen"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide widescreen"].column,.ui.grid>.column.row>[class*="twelve wide widescreen"].column,.ui.grid>.row>[class*="twelve wide widescreen"].column,.ui.grid>[class*="twelve wide widescreen"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide widescreen"].column,.ui.grid>.column.row>[class*="thirteen wide widescreen"].column,.ui.grid>.row>[class*="thirteen wide widescreen"].column,.ui.grid>[class*="thirteen wide widescreen"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide widescreen"].column,.ui.grid>.column.row>[class*="fourteen wide widescreen"].column,.ui.grid>.row>[class*="fourteen wide widescreen"].column,.ui.grid>[class*="fourteen wide widescreen"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide widescreen"].column,.ui.grid>.column.row>[class*="fifteen wide widescreen"].column,.ui.grid>.row>[class*="fifteen wide widescreen"].column,.ui.grid>[class*="fifteen wide widescreen"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide widescreen"].column,.ui.grid>.column.row>[class*="sixteen wide widescreen"].column,.ui.grid>.row>[class*="sixteen wide widescreen"].column,.ui.grid>[class*="sixteen wide widescreen"].column{width:100%!important}}.ui.centered.grid,.ui.centered.grid>.row,.ui.grid>.centered.row{text-align:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.ui.centered.grid>.column:not(.aligned):not(.row),.ui.centered.grid>.row>.column:not(.aligned),.ui.grid .centered.row>.column:not(.aligned){text-align:left}.ui.grid>.centered.column,.ui.grid>.row>.centered.column{display:block;margin-left:auto;margin-right:auto}.ui.grid>.relaxed.row>.column,.ui.relaxed.grid>.column:not(.row),.ui.relaxed.grid>.row>.column{padding-left:1.5rem;padding-right:1.5rem}.ui.grid>[class*="very relaxed"].row>.column,.ui[class*="very relaxed"].grid>.column:not(.row),.ui[class*="very relaxed"].grid>.row>.column{padding-left:2.5rem;padding-right:2.5rem}.ui.grid .relaxed.row+.ui.divider,.ui.relaxed.grid .row+.ui.divider{margin-left:1.5rem;margin-right:1.5rem}.ui.grid [class*="very relaxed"].row+.ui.divider,.ui[class*="very relaxed"].grid .row+.ui.divider{margin-left:2.5rem;margin-right:2.5rem}.ui.padded.grid:not(.vertically):not(.horizontally){margin:0!important}[class*="horizontally padded"].ui.grid{margin-left:0!important;margin-right:0!important}[class*="vertically padded"].ui.grid{margin-top:0!important;margin-bottom:0!important}.ui.grid [class*="left floated"].column{margin-right:auto}.ui.grid [class*="right floated"].column{margin-left:auto}.ui.divided.grid:not([class*="vertically divided"])>.column:not(.row),.ui.divided.grid:not([class*="vertically divided"])>.row>.column{box-shadow:-1px 0 0 0 rgba(34,36,38,.15)}.ui[class*="vertically divided"].grid>.column:not(.row),.ui[class*="vertically divided"].grid>.row>.column{margin-top:1rem;margin-bottom:1rem;padding-top:0;padding-bottom:0}.ui[class*="vertically divided"].grid>.row{margin-top:0;margin-bottom:0;position:relative}.ui.divided.grid:not([class*="vertically divided"])>.column:first-child,.ui.divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:none}.ui.grid>.divided.row>.column{box-shadow:-1px 0 0 0 rgba(34,36,38,.15)}.ui.grid>.divided.row>.column:first-child{box-shadow:none}.ui[class*="vertically divided"].grid>.row:before{position:absolute;content:"";top:0;left:0;width:calc(100% - 2rem);height:1px;margin:0 1rem;box-shadow:0 -1px 0 0 rgba(34,36,38,.15)}.ui.padded.divided.grid:not(.vertically):not(.horizontally),[class*="horizontally padded"].ui.divided.grid{width:100%}.ui[class*="vertically divided"].grid>.row:first-child:before{box-shadow:none}.ui.inverted.divided.grid:not([class*="vertically divided"])>.column:not(.row),.ui.inverted.divided.grid:not([class*="vertically divided"])>.row>.column{box-shadow:-1px 0 0 0 rgba(255,255,255,.1)}.ui.inverted.divided.grid:not([class*="vertically divided"])>.column:not(.row):first-child,.ui.inverted.divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:none}.ui.inverted[class*="vertically divided"].grid>.row:before{box-shadow:0 -1px 0 0 rgba(255,255,255,.1)}.ui.relaxed[class*="vertically divided"].grid>.row:before{margin-left:1.5rem;margin-right:1.5rem;width:calc(100% - 3rem)}.ui[class*="very relaxed"][class*="vertically divided"].grid>.row:before{margin-left:5rem;margin-right:5rem;width:calc(100% - 5rem)}.ui.celled.grid{width:100%;margin:1em 0;box-shadow:0 0 0 1px #D4D4D5}.ui.celled.grid>.row{width:100%!important;margin:0;padding:0;box-shadow:0 -1px 0 0 #D4D4D5}.ui.celled.grid>.column:not(.row),.ui.celled.grid>.row>.column{box-shadow:-1px 0 0 0 #D4D4D5;padding:1em}.ui.celled.grid>.column:first-child,.ui.celled.grid>.row>.column:first-child{box-shadow:none}.ui.relaxed.celled.grid>.column:not(.row),.ui.relaxed.celled.grid>.row>.column{padding:1.5em}.ui[class*="very relaxed"].celled.grid>.column:not(.row),.ui[class*="very relaxed"].celled.grid>.row>.column{padding:2em}.ui[class*="internally celled"].grid{box-shadow:none;margin:0}.ui[class*="internally celled"].grid>.row:first-child,.ui[class*="internally celled"].grid>.row>.column:first-child{box-shadow:none}.ui.grid>.row>[class*="top aligned"].column,.ui.grid>[class*="top aligned"].column:not(.row),.ui.grid>[class*="top aligned"].row>.column,.ui[class*="top aligned"].grid>.column:not(.row),.ui[class*="top aligned"].grid>.row>.column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;vertical-align:top;-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.ui.grid>.row>[class*="middle aligned"].column,.ui.grid>[class*="middle aligned"].column:not(.row),.ui.grid>[class*="middle aligned"].row>.column,.ui[class*="middle aligned"].grid>.column:not(.row),.ui[class*="middle aligned"].grid>.row>.column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;vertical-align:middle;-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.ui.grid>.row>[class*="bottom aligned"].column,.ui.grid>[class*="bottom aligned"].column:not(.row),.ui.grid>[class*="bottom aligned"].row>.column,.ui[class*="bottom aligned"].grid>.column:not(.row),.ui[class*="bottom aligned"].grid>.row>.column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;vertical-align:bottom;-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.ui.grid>.row>.stretched.column,.ui.grid>.stretched.column:not(.row),.ui.grid>.stretched.row>.column,.ui.stretched.grid>.column,.ui.stretched.grid>.row>.column{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.grid>.row>.stretched.column>*,.ui.grid>.stretched.column:not(.row)>*,.ui.grid>.stretched.row>.column>*,.ui.stretched.grid>.column>*,.ui.stretched.grid>.row>.column>*{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.ui.grid>.row>[class*="left aligned"].column,.ui.grid>[class*="left aligned"].column.column,.ui.grid>[class*="left aligned"].row>.column,.ui[class*="left aligned"].grid>.column,.ui[class*="left aligned"].grid>.row>.column{text-align:left;-webkit-align-self:inherit;-ms-flex-item-align:inherit;align-self:inherit}.ui.grid>.row>[class*="center aligned"].column,.ui.grid>[class*="center aligned"].column.column,.ui.grid>[class*="center aligned"].row>.column,.ui[class*="center aligned"].grid>.column,.ui[class*="center aligned"].grid>.row>.column{text-align:center;-webkit-align-self:inherit;-ms-flex-item-align:inherit;align-self:inherit}.ui[class*="center aligned"].grid{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.ui.grid>.row>[class*="right aligned"].column,.ui.grid>[class*="right aligned"].column.column,.ui.grid>[class*="right aligned"].row>.column,.ui[class*="right aligned"].grid>.column,.ui[class*="right aligned"].grid>.row>.column{text-align:right;-webkit-align-self:inherit;-ms-flex-item-align:inherit;align-self:inherit}.ui.grid>.justified.column.column,.ui.grid>.justified.row>.column,.ui.grid>.row>.justified.column,.ui.justified.grid>.column,.ui.justified.grid>.row>.column{text-align:justify;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.ui.grid>.row>.black.column,.ui.grid>.row>.blue.column,.ui.grid>.row>.brown.column,.ui.grid>.row>.green.column,.ui.grid>.row>.grey.column,.ui.grid>.row>.olive.column,.ui.grid>.row>.orange.column,.ui.grid>.row>.pink.column,.ui.grid>.row>.purple.column,.ui.grid>.row>.red.column,.ui.grid>.row>.teal.column,.ui.grid>.row>.violet.column,.ui.grid>.row>.yellow.column{margin-top:-1rem;margin-bottom:-1rem;padding-top:1rem;padding-bottom:1rem}.ui.grid>.red.column,.ui.grid>.red.row,.ui.grid>.row>.red.column{background-color:#DB2828!important;color:#FFF}.ui.grid>.orange.column,.ui.grid>.orange.row,.ui.grid>.row>.orange.column{background-color:#F2711C!important;color:#FFF}.ui.grid>.row>.yellow.column,.ui.grid>.yellow.column,.ui.grid>.yellow.row{background-color:#FBBD08!important;color:#FFF}.ui.grid>.olive.column,.ui.grid>.olive.row,.ui.grid>.row>.olive.column{background-color:#B5CC18!important;color:#FFF}.ui.grid>.green.column,.ui.grid>.green.row,.ui.grid>.row>.green.column{background-color:#21BA45!important;color:#FFF}.ui.grid>.row>.teal.column,.ui.grid>.teal.column,.ui.grid>.teal.row{background-color:#00B5AD!important;color:#FFF}.ui.grid>.blue.column,.ui.grid>.blue.row,.ui.grid>.row>.blue.column{background-color:#2185D0!important;color:#FFF}.ui.grid>.row>.violet.column,.ui.grid>.violet.column,.ui.grid>.violet.row{background-color:#6435C9!important;color:#FFF}.ui.grid>.purple.column,.ui.grid>.purple.row,.ui.grid>.row>.purple.column{background-color:#A333C8!important;color:#FFF}.ui.grid>.pink.column,.ui.grid>.pink.row,.ui.grid>.row>.pink.column{background-color:#E03997!important;color:#FFF}.ui.grid>.brown.column,.ui.grid>.brown.row,.ui.grid>.row>.brown.column{background-color:#A5673F!important;color:#FFF}.ui.grid>.grey.column,.ui.grid>.grey.row,.ui.grid>.row>.grey.column{background-color:#767676!important;color:#FFF}.ui.grid>.black.column,.ui.grid>.black.row,.ui.grid>.row>.black.column{background-color:#1B1C1D!important;color:#FFF}.ui.grid>[class*="equal width"].row>.column,.ui[class*="equal width"].grid>.column:not(.row),.ui[class*="equal width"].grid>.row>.column{display:inline-block;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.ui.grid>[class*="equal width"].row>.wide.column,.ui[class*="equal width"].grid>.row>.wide.column,.ui[class*="equal width"].grid>.wide.column{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0}@media only screen and (max-width:767px){.ui.grid>[class*="mobile reversed"].row,.ui[class*="mobile reversed"].grid,.ui[class*="mobile reversed"].grid>.row{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.ui.stackable[class*="mobile reversed"],.ui[class*="mobile vertically reversed"].grid{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"])>.column:first-child,.ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:-1px 0 0 0 rgba(34,36,38,.15)}.ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"])>.column:last-child,.ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:last-child{box-shadow:none}.ui.grid[class*="vertically divided"][class*="mobile vertically reversed"]>.row:first-child:before{box-shadow:0 -1px 0 0 rgba(34,36,38,.15)}.ui.grid[class*="vertically divided"][class*="mobile vertically reversed"]>.row:last-child:before{box-shadow:none}.ui[class*="mobile reversed"].celled.grid>.row>.column:first-child{box-shadow:-1px 0 0 0 #D4D4D5}.ui[class*="mobile reversed"].celled.grid>.row>.column:last-child{box-shadow:none}}@media only screen and (min-width:768px) and (max-width:991px){.ui.grid>[class*="tablet reversed"].row,.ui[class*="tablet reversed"].grid,.ui[class*="tablet reversed"].grid>.row{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.ui[class*="tablet vertically reversed"].grid{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"])>.column:first-child,.ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:-1px 0 0 0 rgba(34,36,38,.15)}.ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"])>.column:last-child,.ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:last-child{box-shadow:none}.ui.grid[class*="vertically divided"][class*="tablet vertically reversed"]>.row:first-child:before{box-shadow:0 -1px 0 0 rgba(34,36,38,.15)}.ui.grid[class*="vertically divided"][class*="tablet vertically reversed"]>.row:last-child:before{box-shadow:none}.ui[class*="tablet reversed"].celled.grid>.row>.column:first-child{box-shadow:-1px 0 0 0 #D4D4D5}.ui[class*="tablet reversed"].celled.grid>.row>.column:last-child{box-shadow:none}}@media only screen and (min-width:992px){.ui.grid>[class*="computer reversed"].row,.ui[class*="computer reversed"].grid,.ui[class*="computer reversed"].grid>.row{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.ui[class*="computer vertically reversed"].grid{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"])>.column:first-child,.ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:-1px 0 0 0 rgba(34,36,38,.15)}.ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"])>.column:last-child,.ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:last-child{box-shadow:none}.ui.grid[class*="vertically divided"][class*="computer vertically reversed"]>.row:first-child:before{box-shadow:0 -1px 0 0 rgba(34,36,38,.15)}.ui.grid[class*="vertically divided"][class*="computer vertically reversed"]>.row:last-child:before{box-shadow:none}.ui[class*="computer reversed"].celled.grid>.row>.column:first-child{box-shadow:-1px 0 0 0 #D4D4D5}.ui[class*="computer reversed"].celled.grid>.row>.column:last-child{box-shadow:none}}@media only screen and (min-width:768px) and (max-width:991px){.ui.doubling.grid{width:auto}.ui.doubling.grid>.row,.ui.grid>.doubling.row{margin:0!important;padding:0!important}.ui.doubling.grid>.row>.column,.ui.grid>.doubling.row>.column{display:inline-block!important;padding-top:1rem!important;padding-bottom:1rem!important;box-shadow:none!important;margin:0}.ui.grid>[class*="two column"].doubling.row.row>.column,.ui[class*="two column"].doubling.grid>.column:not(.row),.ui[class*="two column"].doubling.grid>.row>.column{width:100%!important}.ui.grid>[class*="three column"].doubling.row.row>.column,.ui.grid>[class*="four column"].doubling.row.row>.column,.ui[class*="three column"].doubling.grid>.column:not(.row),.ui[class*="three column"].doubling.grid>.row>.column,.ui[class*="four column"].doubling.grid>.column:not(.row),.ui[class*="four column"].doubling.grid>.row>.column{width:50%!important}.ui.grid>[class*="five column"].doubling.row.row>.column,.ui.grid>[class*="six column"].doubling.row.row>.column,.ui.grid>[class*="seven column"].doubling.row.row>.column,.ui[class*="five column"].doubling.grid>.column:not(.row),.ui[class*="five column"].doubling.grid>.row>.column,.ui[class*="six column"].doubling.grid>.column:not(.row),.ui[class*="six column"].doubling.grid>.row>.column,.ui[class*="seven column"].doubling.grid>.column:not(.row),.ui[class*="seven column"].doubling.grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="eight column"].doubling.row.row>.column,.ui.grid>[class*="nine column"].doubling.row.row>.column,.ui[class*="eight column"].doubling.grid>.column:not(.row),.ui[class*="eight column"].doubling.grid>.row>.column,.ui[class*="nine column"].doubling.grid>.column:not(.row),.ui[class*="nine column"].doubling.grid>.row>.column{width:25%!important}.ui.grid>[class*="ten column"].doubling.row.row>.column,.ui.grid>[class*="eleven column"].doubling.row.row>.column,.ui[class*="ten column"].doubling.grid>.column:not(.row),.ui[class*="ten column"].doubling.grid>.row>.column,.ui[class*="eleven column"].doubling.grid>.column:not(.row),.ui[class*="eleven column"].doubling.grid>.row>.column{width:20%!important}.ui.grid>[class*="twelve column"].doubling.row.row>.column,.ui.grid>[class*="thirteen column"].doubling.row.row>.column,.ui[class*="twelve column"].doubling.grid>.column:not(.row),.ui[class*="twelve column"].doubling.grid>.row>.column,.ui[class*="thirteen column"].doubling.grid>.column:not(.row),.ui[class*="thirteen column"].doubling.grid>.row>.column{width:16.66666667%!important}.ui.grid>[class*="fourteen column"].doubling.row.row>.column,.ui.grid>[class*="fifteen column"].doubling.row.row>.column,.ui[class*="fourteen column"].doubling.grid>.column:not(.row),.ui[class*="fourteen column"].doubling.grid>.row>.column,.ui[class*="fifteen column"].doubling.grid>.column:not(.row),.ui[class*="fifteen column"].doubling.grid>.row>.column{width:14.28571429%!important}.ui.grid>[class*="sixteen column"].doubling.row.row>.column,.ui[class*="sixteen column"].doubling.grid>.column:not(.row),.ui[class*="sixteen column"].doubling.grid>.row>.column{width:12.5%!important}.ui.grid.grid.grid>.row>[class*="computer only"].column:not(.tablet),.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.tablet),.ui.grid.grid.grid>[class*="computer only"].column:not(.tablet),.ui.grid.grid.grid>[class*="computer only"].row:not(.tablet),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="mobile only"].column:not(.tablet),.ui.grid.grid.grid>[class*="mobile only"].row:not(.tablet),.ui[class*="computer only"].grid.grid.grid:not(.tablet),.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui[class*="widescreen only"].grid.grid.grid:not(.mobile),.ui[class*="mobile only"].grid.grid.grid:not(.tablet){display:none!important}}@media only screen and (max-width:767px){.ui.doubling.grid>.row,.ui.grid>.doubling.row{margin:0!important;padding:0!important}.ui.doubling.grid>.row>.column,.ui.grid>.doubling.row>.column{padding-top:1rem!important;padding-bottom:1rem!important;margin:0!important;box-shadow:none!important}.ui.grid>[class*="two column"].doubling:not(.stackable).row.row>.column,.ui[class*="two column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="two column"].doubling:not(.stackable).grid>.row>.column{width:100%!important}.ui.grid>[class*="three column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="four column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="five column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="six column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="seven column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="eight column"].doubling:not(.stackable).row.row>.column,.ui[class*="three column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="three column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="four column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="four column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="five column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="five column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="six column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="six column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="seven column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="seven column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="eight column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="eight column"].doubling:not(.stackable).grid>.row>.column{width:50%!important}.ui.grid>[class*="nine column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="ten column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="eleven column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="twelve column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="thirteen column"].doubling:not(.stackable).row.row>.column,.ui[class*="nine column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="nine column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="ten column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="ten column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="eleven column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="eleven column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="twelve column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="twelve column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="thirteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="thirteen column"].doubling:not(.stackable).grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="fourteen column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="fifteen column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="sixteen column"].doubling:not(.stackable).row.row>.column,.ui[class*="fourteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="fourteen column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="fifteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="fifteen column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="sixteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="sixteen column"].doubling:not(.stackable).grid>.row>.column{width:25%!important}.ui.stackable.grid{width:auto;margin-left:0!important;margin-right:0!important}.ui.grid>.stackable.stackable.row>.column,.ui.stackable.grid>.column.grid>.column,.ui.stackable.grid>.column.row>.column,.ui.stackable.grid>.column:not(.row),.ui.stackable.grid>.row>.column,.ui.stackable.grid>.row>.wide.column,.ui.stackable.grid>.wide.column{width:100%!important;margin:0!important;box-shadow:none!important;padding:1rem!important}.ui.stackable.grid:not(.vertically)>.row{margin:0;padding:0}.ui.container>.ui.stackable.grid>.column,.ui.container>.ui.stackable.grid>.row>.column{padding-left:0!important;padding-right:0!important}.ui.grid .ui.stackable.grid,.ui.segment:not(.vertical) .ui.stackable.page.grid{margin-left:-1rem!important;margin-right:-1rem!important}.ui.stackable.celled.grid>.column:not(.row):first-child,.ui.stackable.celled.grid>.row:first-child>.column:first-child,.ui.stackable.divided.grid>.column:not(.row):first-child,.ui.stackable.divided.grid>.row:first-child>.column:first-child{border-top:none!important}.ui.inverted.stackable.celled.grid>.column:not(.row),.ui.inverted.stackable.celled.grid>.row>.column,.ui.inverted.stackable.divided.grid>.column:not(.row),.ui.inverted.stackable.divided.grid>.row>.column{border-top:1px solid rgba(255,255,255,.1)}.ui.stackable.celled.grid>.column:not(.row),.ui.stackable.celled.grid>.row>.column,.ui.stackable.divided:not(.vertically).grid>.column:not(.row),.ui.stackable.divided:not(.vertically).grid>.row>.column{border-top:1px solid rgba(34,36,38,.15);box-shadow:none!important;padding-top:2rem!important;padding-bottom:2rem!important}.ui.stackable.celled.grid>.row{box-shadow:none!important}.ui.stackable.divided:not(.vertically).grid>.column:not(.row),.ui.stackable.divided:not(.vertically).grid>.row>.column{padding-left:0!important;padding-right:0!important}.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="computer only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].row:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].column:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].row:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="tablet only"].grid.grid.grid:not(.mobile),.ui[class*="computer only"].grid.grid.grid:not(.mobile),.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui[class*="widescreen only"].grid.grid.grid:not(.mobile){display:none!important}}@media only screen and (min-width:992px) and (max-width:1199px){.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui[class*="widescreen only"].grid.grid.grid:not(.mobile),.ui[class*="mobile only"].grid.grid.grid:not(.computer){display:none!important}}@media only screen and (min-width:1200px) and (max-width:1919px){.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui[class*="widescreen only"].grid.grid.grid:not(.mobile),.ui[class*="mobile only"].grid.grid.grid:not(.computer){display:none!important}}@media only screen and (min-width:1920px){.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui[class*="mobile only"].grid.grid.grid:not(.computer){display:none!important}}.ui.menu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:1rem 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;background:#FFF;font-weight:400;border:1px solid rgba(34,36,38,.15);box-shadow:0 1px 2px 0 rgba(34,36,38,.15);border-radius:.28571429rem;min-height:2.85714286em}.ui.menu:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.menu:first-child{margin-top:0}.ui.menu:last-child{margin-bottom:0}.ui.menu .menu{margin:0}.ui.menu:not(.vertical)>.menu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.menu:not(.vertical) .item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.menu .item{position:relative;vertical-align:middle;line-height:1;text-decoration:none;-webkit-tap-highlight-color:transparent;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:0 0;padding:.92857143em 1.14285714em;text-transform:none;color:rgba(0,0,0,.87);font-weight:400;-webkit-transition:background .1s ease,box-shadow .1s ease,color .1s ease;transition:background .1s ease,box-shadow .1s ease,color .1s ease}.ui.menu>.item:first-child{border-radius:.28571429rem 0 0 .28571429rem}.ui.menu .item:before{position:absolute;content:'';top:0;right:0;height:100%;width:1px;background:rgba(34,36,38,.1)}.ui.menu .item>a:not(.ui),.ui.menu .item>p:only-child,.ui.menu .text.item>*{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;line-height:1.3}.ui.menu .item>p:first-child{margin-top:0}.ui.menu .item>p:last-child{margin-bottom:0}.ui.menu .item>i.icon{opacity:.9;float:none;margin:0 .35714286em 0 0}.ui.menu:not(.vertical) .item>.button{position:relative;top:0;margin:-.5em 0;padding-bottom:.71428571em;padding-top:.71428571em;font-size:1em}.ui.menu>.container,.ui.menu>.grid{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:inherit;-webkit-align-items:inherit;-ms-flex-align:inherit;align-items:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:inherit;-ms-flex-direction:inherit;flex-direction:inherit}.ui.menu .item>.input{width:100%}.ui.menu:not(.vertical) .item>.input{position:relative;top:0;margin:-.5em 0}.ui.menu .item>.input input{font-size:1em;padding-top:.57142857em;padding-bottom:.57142857em}.ui.menu .header.item,.ui.vertical.menu .header.item{margin:0;background:0 0;text-transform:normal;font-weight:700}.ui.vertical.menu .item>.header:not(.ui){margin:0 0 .5em;font-size:1em;font-weight:700}.ui.menu .ui.popup{display:none}.ui.menu .ui.visible.popup{display:block}.ui.menu .item>i.dropdown.icon{padding:0;float:right;margin:0 0 0 1em}.ui.menu .dropdown.item .menu{left:0;min-width:calc(100% - 1px);border-radius:0 0 .28571429rem .28571429rem;background:#FFF;margin:0;box-shadow:0 1px 3px 0 rgba(0,0,0,.08);-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.ui.menu .ui.dropdown .menu>.item{margin:0;text-align:left;font-size:1em!important;padding:.71428571em 1.14285714em!important;background:0 0!important;color:rgba(0,0,0,.87)!important;text-transform:none!important;font-weight:400!important;box-shadow:none!important;-webkit-transition:none!important;transition:none!important}.ui.menu .ui.dropdown .menu>.item:hover,.ui.menu .ui.dropdown .menu>.selected.item{background:rgba(0,0,0,.05)!important;color:rgba(0,0,0,.95)!important}.ui.menu .ui.dropdown .menu>.active.item{background:rgba(0,0,0,.03)!important;font-weight:700!important;color:rgba(0,0,0,.95)!important}.ui.menu .ui.dropdown.item .menu .item:not(.filtered){display:block}.ui.menu .ui.dropdown .menu>.item .icon:not(.dropdown){display:inline-block;font-size:1em!important;float:none;margin:0 .75em 0 0}.ui.secondary.menu .dropdown.item>.menu,.ui.text.menu .dropdown.item>.menu{border-radius:.28571429rem;margin-top:.35714286em}.ui.menu .pointing.dropdown.item .menu{margin-top:.75em}.ui.inverted.menu .search.dropdown.item>.search,.ui.inverted.menu .search.dropdown.item>.text{color:rgba(255,255,255,.9)}.ui.vertical.menu .dropdown.item>.icon{float:right;content:"\f0da";margin-left:1em}.ui.vertical.menu .dropdown.item .menu{top:0!important;left:100%;min-width:0;margin:0;box-shadow:0 1px 3px 0 rgba(0,0,0,.08);border-radius:0 .28571429rem .28571429rem}.ui.vertical.menu .active.dropdown.item{border-top-right-radius:0;border-bottom-right-radius:0}.ui.vertical.menu .dropdown.active.item{box-shadow:none}.ui.item.menu .dropdown .menu .item{width:100%}.ui.menu .item>.label{background:#999;color:#FFF;margin-left:1em;padding:.3em .71428571em}.ui.vertical.menu .item>.label{background:#999;color:#FFF;margin-top:-.15em;margin-bottom:-.15em;padding:.3em .71428571em;float:right;text-align:center}.ui.menu .item>.floating.label{padding:.3em .71428571em}.ui.menu .item>img:not(.ui){display:inline-block;vertical-align:middle;margin:-.3em 0;width:2.5em}.ui.vertical.menu .item>img:not(.ui):only-child{display:block;max-width:100%;width:auto}.ui.vertical.sidebar.menu>.item:first-child:before{display:block!important}.ui.vertical.sidebar.menu>.item::before{top:auto;bottom:0}@media only screen and (max-width:767px){.ui.menu>.ui.container{width:100%!important;margin-left:0!important;margin-right:0!important}}@media only screen and (min-width:768px){.ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless)>.container>.item:not(.right):not(.borderless):first-child{border-left:1px solid rgba(34,36,38,.1)}}.ui.link.menu .item:hover,.ui.menu .dropdown.item:hover,.ui.menu .link.item:hover,.ui.menu a.item:hover{cursor:pointer;background:rgba(0,0,0,.03);color:rgba(0,0,0,.95)}.ui.link.menu .item:active,.ui.menu .link.item:active,.ui.menu a.item:active{background:rgba(0,0,0,.03);color:rgba(0,0,0,.95)}.ui.menu .active.item{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);font-weight:400;box-shadow:none}.ui.menu .active.item>i.icon{opacity:1}.ui.menu .active.item:hover,.ui.vertical.menu .active.item:hover{background-color:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.menu .item.disabled,.ui.menu .item.disabled:hover{cursor:default;background-color:transparent!important;color:rgba(40,40,40,.3)}.ui.menu:not(.vertical) .left.item,.ui.menu:not(.vertical) .left.menu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-right:auto!important}.ui.menu:not(.vertical) .right.item,.ui.menu:not(.vertical) .right.menu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-left:auto!important}.ui.menu .right.item::before,.ui.menu .right.menu>.item::before{right:auto;left:0}.ui.vertical.menu{display:block;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background:#FFF;box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.ui.vertical.menu .item{display:block;background:0 0;border-top:none;border-right:none}.ui.vertical.menu>.item:first-child{border-radius:.28571429rem .28571429rem 0 0}.ui.vertical.menu>.item:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui.vertical.menu .item>i.icon{width:1.18em;float:right;margin:0 0 0 .5em}.ui.vertical.menu .item>.label+i.icon{float:none;margin:0 .5em 0 0}.ui.vertical.menu .item:before{position:absolute;content:'';top:0;left:0;width:100%;background:rgba(34,36,38,.1);height:1px}.ui.vertical.menu .item:first-child:before{display:none!important}.ui.vertical.menu .item>.menu{margin:.5em -1.14285714em 0}.ui.vertical.menu .menu .item{background:0 0;padding:.5em 1.33333333em;font-size:.85714286em;color:rgba(0,0,0,.5)}.ui.vertical.menu .item .menu .link.item:hover,.ui.vertical.menu .item .menu a.item:hover{color:rgba(0,0,0,.85)}.ui.vertical.menu .menu .item:before{display:none}.ui.vertical.menu .active.item{background:rgba(0,0,0,.05);border-radius:0;box-shadow:none}.ui.vertical.menu>.active.item:first-child{border-radius:.28571429rem .28571429rem 0 0}.ui.vertical.menu>.active.item:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui.vertical.menu>.active.item:only-child{border-radius:.28571429rem}.ui.vertical.menu .active.item .menu .active.item{border-left:none}.ui.vertical.menu .item .menu .active.item{background-color:transparent;font-weight:700;color:rgba(0,0,0,.95)}.ui.tabular.menu{border-radius:0;box-shadow:none!important;border:none;background:none;border-bottom:1px solid #D4D4D5}.ui.tabular.fluid.menu{width:calc(100% + 2px)!important}.ui.tabular.menu .item{background:0 0;border-bottom:none;border-left:1px solid transparent;border-right:1px solid transparent;border-top:2px solid transparent;padding:.92857143em 1.42857143em;color:rgba(0,0,0,.87)}.ui.tabular.menu .item:before{display:none}.ui.tabular.menu .item:hover{background-color:transparent;color:rgba(0,0,0,.8)}.ui.tabular.menu .active.item{background:#FFF;color:rgba(0,0,0,.95);border-top-width:1px;border-color:#D4D4D5;font-weight:700;margin-bottom:-1px;box-shadow:none;border-radius:.28571429rem .28571429rem 0 0!important}.ui.tabular.menu+.bottom.attached.segment{border-top:none;margin:0;width:100%}.top.attached.segment+.ui.bottom.tabular.menu{position:relative;width:calc(100% + 2px);left:-1px}.ui.bottom.tabular.menu{background:none;border-radius:0;box-shadow:none!important;border-bottom:none;border-top:1px solid #D4D4D5}.ui.bottom.tabular.menu .item{background:0 0;border-left:1px solid transparent;border-right:1px solid transparent;border-bottom:1px solid transparent;border-top:none}.ui.bottom.tabular.menu .active.item{background:#FFF;color:rgba(0,0,0,.95);border-color:#D4D4D5;margin:-1px 0 0;border-radius:0 0 .28571429rem .28571429rem!important}.ui.vertical.tabular.menu{background:none;border-radius:0;box-shadow:none!important;border-bottom:none;border-right:1px solid #D4D4D5}.ui.vertical.tabular.menu .item{background:0 0;border-left:1px solid transparent;border-bottom:1px solid transparent;border-top:1px solid transparent;border-right:none}.ui.vertical.tabular.menu .active.item{background:#FFF;color:rgba(0,0,0,.95);border-color:#D4D4D5;margin:0 -1px 0 0;border-radius:.28571429rem 0 0 .28571429rem!important}.ui.vertical.right.tabular.menu{background:none;border-radius:0;box-shadow:none!important;border-bottom:none;border-right:none;border-left:1px solid #D4D4D5}.ui.vertical.right.tabular.menu .item{background:0 0;border-right:1px solid transparent;border-bottom:1px solid transparent;border-top:1px solid transparent;border-left:none}.ui.vertical.right.tabular.menu .active.item{background:#FFF;color:rgba(0,0,0,.95);border-color:#D4D4D5;margin:0 0 0 -1px;border-radius:0 .28571429rem .28571429rem 0!important}.ui.tabular.menu .active.dropdown.item{margin-bottom:0;border-left:1px solid transparent;border-right:1px solid transparent;border-top:2px solid transparent;border-bottom:none}.ui.pagination.menu{margin:0;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.ui.pagination.menu .item:last-child{border-radius:0 .28571429rem .28571429rem 0}.ui.pagination.menu .item:last-child:before{display:none}.ui.pagination.menu .item{min-width:3em;text-align:center}.ui.pagination.menu .icon.item i.icon{vertical-align:top}.ui.pagination.menu .active.item{border-top:none;padding-top:.92857143em;background-color:rgba(0,0,0,.05);color:rgba(0,0,0,.95);box-shadow:none}.ui.secondary.menu{background:0 0;margin-left:-.35714286em;margin-right:-.35714286em;border-radius:0;border:none;box-shadow:none}.ui.secondary.menu .item{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;box-shadow:none;border:none;padding:.71428571em .92857143em;margin:0 .35714286em;background:0 0;-webkit-transition:color .1s ease;transition:color .1s ease;border-radius:.28571429rem}.ui.secondary.menu .item:before{display:none!important}.ui.secondary.menu .header.item{border-radius:0;border-right:none;background:none}.ui.secondary.menu .item>img:not(.ui){margin:0}.ui.secondary.menu .dropdown.item:hover,.ui.secondary.menu .link.item:hover,.ui.secondary.menu a.item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.secondary.menu .active.item{box-shadow:none;background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);border-radius:.28571429rem}.ui.secondary.menu .active.item:hover{box-shadow:none;background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.secondary.inverted.menu .link.item,.ui.secondary.inverted.menu a.item{color:rgba(255,255,255,.7)!important}.ui.secondary.inverted.menu .dropdown.item:hover,.ui.secondary.inverted.menu .link.item:hover,.ui.secondary.inverted.menu a.item:hover{background:rgba(255,255,255,.08);color:#fff!important}.ui.secondary.inverted.menu .active.item{background:rgba(255,255,255,.15);color:#fff!important}.ui.secondary.item.menu{margin-left:0;margin-right:0}.ui.secondary.item.menu .item:last-child{margin-right:0}.ui.secondary.attached.menu{box-shadow:none}.ui.vertical.secondary.menu .item:not(.dropdown)>.menu{margin:0 -.92857143em}.ui.vertical.secondary.menu .item:not(.dropdown)>.menu>.item{margin:0;padding:.5em 1.33333333em}.ui.secondary.vertical.menu>.item{border:none;margin:0 0 .35714286em;border-radius:.28571429rem!important}.ui.secondary.vertical.menu>.header.item{border-radius:0}.ui.secondary.inverted.menu,.ui.vertical.secondary.menu .item>.menu .item{background-color:transparent}.ui.secondary.pointing.menu{margin-left:0;margin-right:0;border-bottom:2px solid rgba(34,36,38,.15)}.ui.secondary.pointing.menu .item{border-bottom-color:transparent;border-bottom-style:solid;border-radius:0;-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end;margin:0 0 -2px;padding:.85714286em 1.14285714em;border-bottom-width:2px;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.secondary.pointing.menu .header.item{color:rgba(0,0,0,.85)!important}.ui.secondary.pointing.menu .text.item{box-shadow:none!important}.ui.secondary.pointing.menu .item:after{display:none}.ui.secondary.pointing.menu .dropdown.item:hover,.ui.secondary.pointing.menu .link.item:hover,.ui.secondary.pointing.menu a.item:hover{background-color:transparent;color:rgba(0,0,0,.87)}.ui.secondary.pointing.menu .dropdown.item:active,.ui.secondary.pointing.menu .link.item:active,.ui.secondary.pointing.menu a.item:active{background-color:transparent;border-color:rgba(34,36,38,.15)}.ui.secondary.pointing.menu .active.item{background-color:transparent;box-shadow:none;border-color:#1B1C1D;font-weight:700;color:rgba(0,0,0,.95)}.ui.secondary.pointing.menu .active.item:hover{border-color:#1B1C1D;color:rgba(0,0,0,.95)}.ui.secondary.pointing.menu .active.dropdown.item{border-color:transparent}.ui.secondary.vertical.pointing.menu{border-bottom-width:0;border-right-width:2px;border-right-style:solid;border-right-color:rgba(34,36,38,.15)}.ui.secondary.vertical.pointing.menu .item{border-bottom:none;border-right-style:solid;border-right-color:transparent;border-radius:0!important;margin:0 -2px 0 0;border-right-width:2px}.ui.secondary.vertical.pointing.menu .active.item{border-color:#1B1C1D}.ui.secondary.inverted.pointing.menu{border-width:2px;border-color:rgba(34,36,38,.15)}.ui.secondary.inverted.pointing.menu .item{color:rgba(255,255,255,.9)}.ui.secondary.inverted.pointing.menu .header.item{color:#FFF!important}.ui.secondary.inverted.pointing.menu .item:hover{color:rgba(0,0,0,.95)}.ui.secondary.inverted.pointing.menu .active.item{border-color:#FFF;color:#fff}.ui.text.menu{background:none;border-radius:0;box-shadow:none;border:none;margin:1em -.5em}.ui.text.menu .item{border-radius:0;box-shadow:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;margin:0;padding:.35714286em .5em;font-weight:400;color:rgba(0,0,0,.6);-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.text.menu .item:before,.ui.text.menu .menu .item:before{display:none!important}.ui.text.menu .header.item{background-color:transparent;opacity:1;color:rgba(0,0,0,.85);font-size:.92857143em;text-transform:uppercase;font-weight:700}.ui.text.item.menu .item,.ui.text.menu .item>img:not(.ui){margin:0}.ui.vertical.text.menu{margin:1em 0}.ui.vertical.text.menu:first-child{margin-top:0}.ui.vertical.text.menu:last-child{margin-bottom:0}.ui.vertical.text.menu .item{margin:.57142857em 0}.ui.vertical.text.menu .item>i.icon{float:none;margin:0 .35714286em 0 0}.ui.vertical.text.menu .header.item{margin:.57142857em 0 .71428571em}.ui.vertical.text.menu .item:not(.dropdown)>.menu{margin:0}.ui.vertical.text.menu .item:not(.dropdown)>.menu>.item{margin:0;padding:.5em 0}.ui.text.menu .item:hover{opacity:1;background-color:transparent}.ui.text.menu .active.item{background-color:transparent;border:none;box-shadow:none;font-weight:400;color:rgba(0,0,0,.95)}.ui.text.menu .active.item:hover{background-color:transparent}.ui.text.attached.menu,.ui.text.pointing.menu .active.item:after{box-shadow:none}.ui.inverted.text.menu,.ui.inverted.text.menu .active.item,.ui.inverted.text.menu .item,.ui.inverted.text.menu .item:hover{background-color:transparent!important}.ui.fluid.text.menu{margin-left:0;margin-right:0}.ui.vertical.icon.menu{display:inline-block;width:auto}.ui.icon.menu .item{height:auto;text-align:center;color:#1B1C1D}.ui.icon.menu .item>.icon:not(.dropdown){margin:0;opacity:1}.ui.icon.menu .icon:before{opacity:1}.ui.menu .icon.item>.icon{width:auto;margin:0 auto}.ui.vertical.icon.menu .item>.icon:not(.dropdown){display:block;opacity:1;margin:0 auto;float:none}.ui.inverted.icon.menu .item{color:#FFF}.ui.labeled.icon.menu{text-align:center}.ui.labeled.icon.menu .item{min-width:6em;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.labeled.icon.menu .item>.icon:not(.dropdown){height:1em;display:block;font-size:1.71428571em!important;margin:0 auto .5rem!important}.ui.fluid.labeled.icon.menu>.item{min-width:0}@media only screen and (max-width:767px){.ui.stackable.menu{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.stackable.menu .item{width:100%!important}.ui.stackable.menu .item:before{position:absolute;content:'';top:auto;bottom:0;left:0;width:100%;background:rgba(34,36,38,.1);height:1px}}.ui.menu .red.active.item,.ui.red.menu .active.item{border-color:#DB2828!important;color:#DB2828!important}.ui.menu .orange.active.item,.ui.orange.menu .active.item{border-color:#F2711C!important;color:#F2711C!important}.ui.menu .yellow.active.item,.ui.yellow.menu .active.item{border-color:#FBBD08!important;color:#FBBD08!important}.ui.menu .olive.active.item,.ui.olive.menu .active.item{border-color:#B5CC18!important;color:#B5CC18!important}.ui.green.menu .active.item,.ui.menu .green.active.item{border-color:#21BA45!important;color:#21BA45!important}.ui.menu .teal.active.item,.ui.teal.menu .active.item{border-color:#00B5AD!important;color:#00B5AD!important}.ui.blue.menu .active.item,.ui.menu .blue.active.item{border-color:#2185D0!important;color:#2185D0!important}.ui.menu .violet.active.item,.ui.violet.menu .active.item{border-color:#6435C9!important;color:#6435C9!important}.ui.menu .purple.active.item,.ui.purple.menu .active.item{border-color:#A333C8!important;color:#A333C8!important}.ui.menu .pink.active.item,.ui.pink.menu .active.item{border-color:#E03997!important;color:#E03997!important}.ui.brown.menu .active.item,.ui.menu .brown.active.item{border-color:#A5673F!important;color:#A5673F!important}.ui.grey.menu .active.item,.ui.menu .grey.active.item{border-color:#767676!important;color:#767676!important}.ui.inverted.menu{border:0 solid transparent;background:#1B1C1D;box-shadow:none}.ui.inverted.menu .item,.ui.inverted.menu .item>a:not(.ui){background:0 0;color:rgba(255,255,255,.9)}.ui.inverted.menu .item.menu{background:0 0}.ui.inverted.menu .item:before,.ui.vertical.inverted.menu .item:before{background:rgba(255,255,255,.08)}.ui.vertical.inverted.menu .menu .item,.ui.vertical.inverted.menu .menu .item a:not(.ui){color:rgba(255,255,255,.5)}.ui.inverted.menu .header.item{margin:0;background:0 0;box-shadow:none}.ui.inverted.menu .item.disabled,.ui.inverted.menu .item.disabled:hover{color:rgba(225,225,225,.3)}.ui.inverted.menu .dropdown.item:hover,.ui.inverted.menu .link.item:hover,.ui.inverted.menu a.item:hover,.ui.link.inverted.menu .item:hover{background:rgba(255,255,255,.08);color:#fff}.ui.vertical.inverted.menu .item .menu .link.item:hover,.ui.vertical.inverted.menu .item .menu a.item:hover{background:0 0;color:#fff}.ui.inverted.menu .link.item:active,.ui.inverted.menu a.item:active{background:rgba(255,255,255,.08);color:#fff}.ui.inverted.menu .active.item{background:rgba(255,255,255,.15);color:#fff!important}.ui.inverted.vertical.menu .item .menu .active.item{background:0 0;color:#FFF}.ui.inverted.pointing.menu .active.item:after{background:#3D3E3F!important;margin:0!important;box-shadow:none!important;border:none!important}.ui.inverted.menu .active.item:hover{background:rgba(255,255,255,.15);color:#FFF!important}.ui.inverted.pointing.menu .active.item:hover:after{background:#3D3E3F!important}.ui.floated.menu{float:left;margin:0 .5rem 0 0}.ui.floated.menu .item:last-child:before{display:none}.ui.right.floated.menu{float:right;margin:0 0 0 .5rem}.ui.inverted.menu .red.active.item,.ui.inverted.red.menu{background-color:#DB2828}.ui.inverted.red.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.red.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.menu .orange.active.item,.ui.inverted.orange.menu{background-color:#F2711C}.ui.inverted.orange.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.orange.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.menu .yellow.active.item,.ui.inverted.yellow.menu{background-color:#FBBD08}.ui.inverted.yellow.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.yellow.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.menu .olive.active.item,.ui.inverted.olive.menu{background-color:#B5CC18}.ui.inverted.olive.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.olive.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.green.menu,.ui.inverted.menu .green.active.item{background-color:#21BA45}.ui.inverted.green.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.green.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.menu .teal.active.item,.ui.inverted.teal.menu{background-color:#00B5AD}.ui.inverted.teal.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.teal.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.blue.menu,.ui.inverted.menu .blue.active.item{background-color:#2185D0}.ui.inverted.blue.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.blue.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.menu .violet.active.item,.ui.inverted.violet.menu{background-color:#6435C9}.ui.inverted.violet.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.violet.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.menu .purple.active.item,.ui.inverted.purple.menu{background-color:#A333C8}.ui.inverted.purple.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.purple.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.menu .pink.active.item,.ui.inverted.pink.menu{background-color:#E03997}.ui.inverted.pink.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.pink.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.brown.menu,.ui.inverted.menu .brown.active.item{background-color:#A5673F}.ui.inverted.brown.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.brown.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.grey.menu,.ui.inverted.menu .grey.active.item{background-color:#767676}.ui.inverted.grey.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.grey.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.fitted.menu .item,.ui.fitted.menu .item .menu .item,.ui.menu .fitted.item{padding:0}.ui.horizontally.fitted.menu .item,.ui.horizontally.fitted.menu .item .menu .item,.ui.menu .horizontally.fitted.item{padding-top:.92857143em;padding-bottom:.92857143em}.ui.menu .vertically.fitted.item,.ui.vertically.fitted.menu .item,.ui.vertically.fitted.menu .item .menu .item{padding-left:1.14285714em;padding-right:1.14285714em}.ui.borderless.menu .item .menu .item:before,.ui.borderless.menu .item:before,.ui.menu .borderless.item:before{background:0 0!important}.ui.compact.menu{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;margin:0;vertical-align:middle}.ui.compact.vertical.menu{display:inline-block;width:auto!important}.ui.compact.menu .item:last-child{border-radius:0 .28571429rem .28571429rem 0}.ui.compact.menu .item:last-child:before{display:none}.ui.compact.vertical.menu .item:last-child::before{display:block}.ui.menu.fluid,.ui.vertical.menu.fluid{width:100%!important}.ui.item.menu,.ui.item.menu .item{width:100%;padding-left:0!important;padding-right:0!important;margin-left:0!important;margin-right:0!important;text-align:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.ui.item.menu .item:last-child:before{display:none}.ui.menu.two.item .item{width:50%}.ui.menu.three.item .item{width:33.333%}.ui.menu.four.item .item{width:25%}.ui.menu.five.item .item{width:20%}.ui.menu.six.item .item{width:16.666%}.ui.menu.seven.item .item{width:14.285%}.ui.menu.eight.item .item{width:12.5%}.ui.menu.nine.item .item{width:11.11%}.ui.menu.ten.item .item{width:10%}.ui.menu.eleven.item .item{width:9.09%}.ui.menu.twelve.item .item{width:8.333%}.ui.menu.fixed{position:fixed;z-index:101;margin:0;width:100%}.ui.menu.fixed,.ui.menu.fixed .item:first-child,.ui.menu.fixed .item:last-child{border-radius:0!important}.ui.fixed.menu,.ui[class*="top fixed"].menu{top:0;left:0;right:auto;bottom:auto}.ui[class*="top fixed"].menu{border-top:none;border-left:none;border-right:none}.ui[class*="right fixed"].menu{border-top:none;border-bottom:none;border-right:none;top:0;right:0;left:auto;bottom:auto;width:auto;height:100%}.ui[class*="bottom fixed"].menu{border-bottom:none;border-left:none;border-right:none;bottom:0;left:0;top:auto;right:auto}.ui[class*="left fixed"].menu{border-top:none;border-bottom:none;border-left:none;top:0;left:0;right:auto;bottom:auto;width:auto;height:100%}.ui.fixed.menu+.ui.grid{padding-top:2.75rem}.ui.pointing.menu .item:after{visibility:hidden;position:absolute;content:'';top:100%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);background:0 0;margin:.5px 0 0;width:.57142857em;height:.57142857em;border:none;border-bottom:1px solid #D4D4D5;border-right:1px solid #D4D4D5;z-index:2;-webkit-transition:background .1s ease;transition:background .1s ease}.ui.vertical.pointing.menu .item:after{position:absolute;top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateX(50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(50%) translateY(-50%) rotate(45deg);transform:translateX(50%) translateY(-50%) rotate(45deg);margin:0 -.5px 0 0;border:none;border-top:1px solid #D4D4D5;border-right:1px solid #D4D4D5}.ui.pointing.menu .active.item:after{visibility:visible}.ui.pointing.menu .active.dropdown.item:after{visibility:hidden}.ui.pointing.menu .active.item .menu .active.item:after,.ui.pointing.menu .dropdown.active.item:after{display:none}.ui.pointing.menu .active.item:after,.ui.pointing.menu .active.item:hover:after,.ui.vertical.pointing.menu .active.item:after,.ui.vertical.pointing.menu .active.item:hover:after{background-color:#F2F2F2}.ui.vertical.pointing.menu .menu .active.item:after{background-color:#FFF}.ui.attached.menu{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);box-shadow:none}.ui.attached+.ui.attached.menu:not(.top){border-top:none}.ui[class*="top attached"].menu{bottom:0;margin-bottom:0;top:0;margin-top:1rem;border-radius:.28571429rem .28571429rem 0 0}.ui.menu[class*="top attached"]:first-child{margin-top:0}.ui[class*="bottom attached"].menu{bottom:0;margin-top:0;top:0;margin-bottom:1rem;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),none;border-radius:0 0 .28571429rem .28571429rem}.ui[class*="bottom attached"].menu:last-child{margin-bottom:0}.ui.top.attached.menu>.item:first-child{border-radius:.28571429rem 0 0}.ui.bottom.attached.menu>.item:first-child{border-radius:0 0 0 .28571429rem}.ui.attached.menu:not(.tabular){border:1px solid #D4D4D5}.ui.attached.inverted.menu{border:none}.ui.attached.tabular.menu{margin-left:0;margin-right:0;width:100%}.ui.small.menu{font-size:.92857143rem}.ui.small.vertical.menu{width:13rem}.ui.menu{font-size:1rem}.ui.vertical.menu{width:15rem}.ui.large.menu{font-size:1.14285714rem}.ui.large.vertical.menu{width:18rem}.ui.huge.menu{font-size:1.42857143rem}.ui.huge.vertical.menu{width:20rem}.ui.message{position:relative;min-height:1em;margin:1em 0;background:#F8F8F9;padding:1em 1.5em;line-height:1.4285em;color:rgba(0,0,0,.87);-webkit-transition:opacity .1s ease,color .1s ease,background .1s ease,box-shadow .1s ease;transition:opacity .1s ease,color .1s ease,background .1s ease,box-shadow .1s ease;border-radius:.28571429rem;box-shadow:0 0 0 1px rgba(34,36,38,.22) inset,0 0 0 0 transparent}.ui.message:first-child{margin-top:0}.ui.message:last-child{margin-bottom:0}.ui.message .header{display:block;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;margin:-.14285em 0 0}.ui.message .header:not(.ui){font-size:1.14285714em}.ui.message p{opacity:.85;margin:.75em 0}.ui.message p:first-child{margin-top:0}.ui.message p:last-child{margin-bottom:0}.ui.message .header+p{margin-top:.25em}.ui.message .list:not(.ui){text-align:left;padding:0;opacity:.85;list-style-position:inside;margin:.5em 0 0}.ui.message .list:not(.ui):first-child{margin-top:0}.ui.message .list:not(.ui):last-child{margin-bottom:0}.ui.message .list:not(.ui) li{position:relative;list-style-type:none;margin:0 0 .3em 1em;padding:0}.ui.message .list:not(.ui) li:before{position:absolute;content:'•';left:-1em;height:100%;vertical-align:baseline}.ui.message .list:not(.ui) li:last-child{margin-bottom:0}.ui.message>.icon{margin-right:.6em}.ui.message>.close.icon{cursor:pointer;position:absolute;margin:0;top:.78575em;right:.5em;opacity:.7;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.message>.close.icon:hover{opacity:1}.ui.message>:first-child{margin-top:0}.ui.message>:last-child{margin-bottom:0}.ui.dropdown .menu>.message{margin:0 -1px}.ui.visible.visible.visible.visible.message{display:block}.ui.icon.visible.visible.visible.visible.message{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.hidden.hidden.hidden.hidden.message{display:none}.ui.compact.message{display:inline-block}.ui.attached.message{margin-bottom:-1px;border-radius:.28571429rem .28571429rem 0 0;box-shadow:0 0 0 1px rgba(34,36,38,.15) inset;margin-left:-1px;margin-right:-1px}.ui.attached+.ui.attached.message:not(.top):not(.bottom){margin-top:-1px;border-radius:0}.ui.bottom.attached.message{margin-top:-1px;border-radius:0 0 .28571429rem .28571429rem;box-shadow:0 0 0 1px rgba(34,36,38,.15) inset,0 1px 2px 0 rgba(34,36,38,.15)}.ui.bottom.attached.message:not(:last-child){margin-bottom:1em}.ui.attached.icon.message{width:auto}.ui.icon.message{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.icon.message>.icon:not(.close){display:block;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;line-height:1;vertical-align:middle;font-size:3em;opacity:.8}.ui.icon.message>.content{display:block;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;vertical-align:middle}.ui.icon.message .icon:not(.close)+.content{padding-left:0}.ui.icon.message .circular.icon{width:1em}.ui.floating.message{box-shadow:0 0 0 1px rgba(34,36,38,.22) inset,0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08)}.ui.positive.message{background-color:#FCFFF5;color:#2C662D}.ui.attached.positive.message,.ui.positive.message{box-shadow:0 0 0 1px #A3C293 inset,0 0 0 0 transparent}.ui.positive.message .header{color:#1A531B}.ui.negative.message{background-color:#FFF6F6;color:#9F3A38}.ui.attached.negative.message,.ui.negative.message{box-shadow:0 0 0 1px #E0B4B4 inset,0 0 0 0 transparent}.ui.negative.message .header{color:#912D2B}.ui.info.message{background-color:#F8FFFF;color:#276F86}.ui.attached.info.message,.ui.info.message{box-shadow:0 0 0 1px #A9D5DE inset,0 0 0 0 transparent}.ui.info.message .header{color:#0E566C}.ui.warning.message{background-color:#FFFAF3;color:#573A08}.ui.attached.warning.message,.ui.warning.message{box-shadow:0 0 0 1px #C9BA9B inset,0 0 0 0 transparent}.ui.warning.message .header{color:#794B02}.ui.error.message{background-color:#FFF6F6;color:#9F3A38}.ui.attached.error.message,.ui.error.message{box-shadow:0 0 0 1px #E0B4B4 inset,0 0 0 0 transparent}.ui.error.message .header{color:#912D2B}.ui.success.message{background-color:#FCFFF5;color:#2C662D}.ui.attached.success.message,.ui.success.message{box-shadow:0 0 0 1px #A3C293 inset,0 0 0 0 transparent}.ui.success.message .header{color:#1A531B}.ui.black.message,.ui.inverted.message{background-color:#1B1C1D;color:rgba(255,255,255,.9)}.ui.red.message{background-color:#FFE8E6;color:#DB2828}.ui.red.message .header{color:#c82121}.ui.orange.message{background-color:#FFEDDE;color:#F2711C}.ui.orange.message .header{color:#e7640d}.ui.yellow.message{background-color:#FFF8DB;color:#B58105}.ui.yellow.message .header{color:#9c6f04}.ui.olive.message{background-color:#FBFDEF;color:#8ABC1E}.ui.olive.message .header{color:#7aa61a}.ui.green.message{background-color:#E5F9E7;color:#1EBC30}.ui.green.message .header{color:#1aa62a}.ui.teal.message{background-color:#E1F7F7;color:#10A3A3}.ui.teal.message .header{color:#0e8c8c}.ui.blue.message{background-color:#DFF0FF;color:#2185D0}.ui.blue.message .header{color:#1e77ba}.ui.violet.message{background-color:#EAE7FF;color:#6435C9}.ui.violet.message .header{color:#5a30b5}.ui.purple.message{background-color:#F6E7FF;color:#A333C8}.ui.purple.message .header{color:#922eb4}.ui.pink.message{background-color:#FFE3FB;color:#E03997}.ui.pink.message .header{color:#dd238b}.ui.brown.message{background-color:#F1E2D3;color:#A5673F}.ui.brown.message .header{color:#935b38}.ui.small.message{font-size:.92857143em}.ui.message{font-size:1em}.ui.large.message{font-size:1.14285714em}.ui.huge.message{font-size:1.42857143em}.ui.massive.message{font-size:1.71428571em}.ui.table{width:100%;background:#FFF;margin:1em 0;border:1px solid rgba(34,36,38,.15);box-shadow:none;border-radius:.28571429rem;text-align:left;color:rgba(0,0,0,.87);border-collapse:separate;border-spacing:0}.ui.table:first-child{margin-top:0}.ui.table:last-child{margin-bottom:0}.ui.table td,.ui.table th{-webkit-transition:background .1s ease,color .1s ease;transition:background .1s ease,color .1s ease}.ui.table thead{box-shadow:none}.ui.table thead th{cursor:auto;background:#F9FAFB;text-align:inherit;color:rgba(0,0,0,.87);padding:.92857143em .71428571em;vertical-align:inherit;font-style:none;font-weight:700;text-transform:none;border-bottom:1px solid rgba(34,36,38,.1);border-left:none}.ui.table thead tr>th:first-child{border-left:none}.ui.table thead tr:first-child>th:first-child{border-radius:.28571429rem 0 0}.ui.table thead tr:first-child>th:last-child{border-radius:0 .28571429rem 0 0}.ui.table thead tr:first-child>th:only-child{border-radius:.28571429rem .28571429rem 0 0}.ui.table tfoot{box-shadow:none}.ui.table tfoot th{cursor:auto;border-top:1px solid rgba(34,36,38,.15);background:#F9FAFB;text-align:inherit;color:rgba(0,0,0,.87);padding:.71428571em;vertical-align:middle;font-style:normal;font-weight:400;text-transform:none}.ui.table tfoot tr>th:first-child{border-left:none}.ui.table tfoot tr:first-child>th:first-child{border-radius:0 0 0 .28571429rem}.ui.table tfoot tr:first-child>th:last-child{border-radius:0 0 .28571429rem}.ui.table tfoot tr:first-child>th:only-child{border-radius:0 0 .28571429rem .28571429rem}.ui.table tr td{border-top:1px solid rgba(34,36,38,.1)}.ui.table tr:first-child td{border-top:none}.ui.table td{padding:.71428571em;text-align:inherit}.ui.table>.icon{vertical-align:baseline}.ui.table>.icon:only-child{margin:0}.ui.table.segment{padding:0}.ui.table.segment:after{display:none}.ui.table.segment.stacked:after{display:block}@media only screen and (max-width:767px){.ui.table:not(.unstackable){width:100%;padding:0}.ui.table:not(.unstackable) tbody,.ui.table:not(.unstackable) tr,.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{width:auto!important;display:block!important}.ui.table:not(.unstackable) tfoot,.ui.table:not(.unstackable) thead{display:block}.ui.table:not(.unstackable) tr{padding-top:1em;padding-bottom:1em;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset!important}.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{background:0 0;border:none!important;padding:.25em .75em!important;box-shadow:none!important}.ui.table:not(.unstackable) td:first-child,.ui.table:not(.unstackable) th:first-child{font-weight:700}.ui.definition.table:not(.unstackable) thead th:first-child{box-shadow:none!important}}.ui.table td .image,.ui.table td .image img,.ui.table th .image,.ui.table th .image img{max-width:none}.ui.structured.table{border-collapse:collapse}.ui.structured.table thead th{border-left:none;border-right:none}.ui.structured.sortable.table thead th{border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(34,36,38,.15)}.ui.structured.basic.table th{border-left:none;border-right:none}.ui.structured.celled.table tr td,.ui.structured.celled.table tr th{border-left:1px solid rgba(34,36,38,.1);border-right:1px solid rgba(34,36,38,.1)}.ui.definition.table thead:not(.full-width) th:first-child{pointer-events:none;background:0 0;font-weight:400;color:rgba(0,0,0,.4);box-shadow:-1px -1px 0 1px #FFF}.ui.definition.table tfoot:not(.full-width) th:first-child{pointer-events:none;background:0 0;font-weight:rgba(0,0,0,.4);color:normal;box-shadow:1px 1px 0 1px #FFF}.ui.celled.definition.table thead:not(.full-width) th:first-child{box-shadow:0 -1px 0 1px #FFF}.ui.celled.definition.table tfoot:not(.full-width) th:first-child{box-shadow:0 1px 0 1px #FFF}.ui.definition.table tr td:first-child{background:rgba(0,0,0,.03);font-weight:700;color:rgba(0,0,0,.95)}.ui.definition.table td:nth-child(2),.ui.definition.table tfoot:not(.full-width) th:nth-child(2),.ui.definition.table thead:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.table td.positive,.ui.table tr.positive{box-shadow:0 0 0 #A3C293 inset;background:#FCFFF5!important;color:#2C662D!important}.ui.table td.negative,.ui.table tr.negative{box-shadow:0 0 0 #E0B4B4 inset;background:#FFF6F6!important;color:#9F3A38!important}.ui.table td.error,.ui.table tr.error{box-shadow:0 0 0 #E0B4B4 inset;background:#FFF6F6!important;color:#9F3A38!important}.ui.table td.warning,.ui.table tr.warning{box-shadow:0 0 0 #C9BA9B inset;background:#FFFAF3!important;color:#573A08!important}.ui.table td.active,.ui.table tr.active{box-shadow:0 0 0 rgba(0,0,0,.87) inset;background:#E0E0E0!important;color:rgba(0,0,0,.87)!important}.ui.table tr td.disabled,.ui.table tr.disabled td,.ui.table tr.disabled:hover,.ui.table tr:hover td.disabled{pointer-events:none;color:rgba(40,40,40,.3)}@media only screen and (max-width:991px){.ui[class*="tablet stackable"].table,.ui[class*="tablet stackable"].table tbody,.ui[class*="tablet stackable"].table tr,.ui[class*="tablet stackable"].table tr>td,.ui[class*="tablet stackable"].table tr>th{width:100%!important;display:block!important}.ui[class*="tablet stackable"].table{padding:0}.ui[class*="tablet stackable"].table tfoot,.ui[class*="tablet stackable"].table thead{display:block}.ui[class*="tablet stackable"].table tr{padding-top:1em;padding-bottom:1em;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset!important}.ui[class*="tablet stackable"].table tr>td,.ui[class*="tablet stackable"].table tr>th{background:0 0;border:none!important;padding:.25em .75em;box-shadow:none!important}.ui.definition[class*="tablet stackable"].table thead th:first-child{box-shadow:none!important}}.ui.table [class*="left aligned"],.ui.table[class*="left aligned"]{text-align:left}.ui.table [class*="center aligned"],.ui.table[class*="center aligned"]{text-align:center}.ui.table [class*="right aligned"],.ui.table[class*="right aligned"]{text-align:right}.ui.table [class*="top aligned"],.ui.table[class*="top aligned"]{vertical-align:top}.ui.table [class*="middle aligned"],.ui.table[class*="middle aligned"]{vertical-align:middle}.ui.table [class*="bottom aligned"],.ui.table[class*="bottom aligned"]{vertical-align:bottom}.ui.table td.collapsing,.ui.table th.collapsing{width:1px;white-space:nowrap}.ui.fixed.table{table-layout:fixed}.ui.fixed.table td,.ui.fixed.table th{overflow:hidden;text-overflow:ellipsis}.ui.selectable.table tbody tr:hover,.ui.table tbody tr td.selectable:hover{background:rgba(0,0,0,.05)!important;color:rgba(0,0,0,.95)!important}.ui.inverted.table tbody tr td.selectable:hover,.ui.selectable.inverted.table tbody tr:hover{background:rgba(255,255,255,.08)!important;color:#fff!important}.ui.table tbody tr td.selectable{padding:0}.ui.table tbody tr td.selectable>a:not(.ui){display:block;color:inherit;padding:.71428571em}.ui.selectable.table tr.error:hover,.ui.selectable.table tr:hover td.error,.ui.table tr td.selectable.error:hover{background:#ffe7e7!important;color:#943634!important}.ui.selectable.table tr.warning:hover,.ui.selectable.table tr:hover td.warning,.ui.table tr td.selectable.warning:hover{background:#fff4e4!important;color:#493107!important}.ui.selectable.table tr.active:hover,.ui.selectable.table tr:hover td.active,.ui.table tr td.selectable.active:hover{background:#E0E0E0!important;color:rgba(0,0,0,.87)!important}.ui.selectable.table tr.positive:hover,.ui.selectable.table tr:hover td.positive,.ui.table tr td.selectable.positive:hover{background:#f7ffe6!important;color:#275b28!important}.ui.selectable.table tr.negative:hover,.ui.selectable.table tr:hover td.negative,.ui.table tr td.selectable.negative:hover{background:#ffe7e7!important;color:#943634!important}.ui.attached.table{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);box-shadow:none;border:1px solid #D4D4D5}.ui.attached+.ui.attached.table:not(.top){border-top:none}.ui[class*="top attached"].table{bottom:0;margin-bottom:0;top:0;margin-top:1em;border-radius:.28571429rem .28571429rem 0 0}.ui.table[class*="top attached"]:first-child{margin-top:0}.ui[class*="bottom attached"].table{bottom:0;margin-top:0;top:0;margin-bottom:1em;box-shadow:none,none;border-radius:0 0 .28571429rem .28571429rem}.ui[class*="bottom attached"].table:last-child{margin-bottom:0}.ui.striped.table tbody tr:nth-child(2n),.ui.striped.table>tr:nth-child(2n){background-color:rgba(0,0,50,.02)}.ui.inverted.striped.table tbody tr:nth-child(2n),.ui.inverted.striped.table>tr:nth-child(2n){background-color:rgba(255,255,255,.05)}.ui.table [class*="single line"],.ui.table[class*="single line"]{white-space:nowrap}.ui.red.table{border-top:.2em solid #DB2828}.ui.inverted.red.table{background-color:#DB2828!important;color:#FFF!important}.ui.orange.table{border-top:.2em solid #F2711C}.ui.inverted.orange.table{background-color:#F2711C!important;color:#FFF!important}.ui.yellow.table{border-top:.2em solid #FBBD08}.ui.inverted.yellow.table{background-color:#FBBD08!important;color:#FFF!important}.ui.olive.table{border-top:.2em solid #B5CC18}.ui.inverted.olive.table{background-color:#B5CC18!important;color:#FFF!important}.ui.green.table{border-top:.2em solid #21BA45}.ui.inverted.green.table{background-color:#21BA45!important;color:#FFF!important}.ui.teal.table{border-top:.2em solid #00B5AD}.ui.inverted.teal.table{background-color:#00B5AD!important;color:#FFF!important}.ui.blue.table{border-top:.2em solid #2185D0}.ui.inverted.blue.table{background-color:#2185D0!important;color:#FFF!important}.ui.violet.table{border-top:.2em solid #6435C9}.ui.inverted.violet.table{background-color:#6435C9!important;color:#FFF!important}.ui.purple.table{border-top:.2em solid #A333C8}.ui.inverted.purple.table{background-color:#A333C8!important;color:#FFF!important}.ui.pink.table{border-top:.2em solid #E03997}.ui.inverted.pink.table{background-color:#E03997!important;color:#FFF!important}.ui.brown.table{border-top:.2em solid #A5673F}.ui.inverted.brown.table{background-color:#A5673F!important;color:#FFF!important}.ui.grey.table{border-top:.2em solid #767676}.ui.inverted.grey.table{background-color:#767676!important;color:#FFF!important}.ui.black.table{border-top:.2em solid #1B1C1D}.ui.inverted.black.table{background-color:#1B1C1D!important;color:#FFF!important}.ui.one.column.table td{width:100%}.ui.two.column.table td{width:50%}.ui.three.column.table td{width:33.33333333%}.ui.four.column.table td{width:25%}.ui.five.column.table td{width:20%}.ui.six.column.table td{width:16.66666667%}.ui.seven.column.table td{width:14.28571429%}.ui.eight.column.table td{width:12.5%}.ui.nine.column.table td{width:11.11111111%}.ui.ten.column.table td{width:10%}.ui.eleven.column.table td{width:9.09090909%}.ui.twelve.column.table td{width:8.33333333%}.ui.thirteen.column.table td{width:7.69230769%}.ui.fourteen.column.table td{width:7.14285714%}.ui.fifteen.column.table td{width:6.66666667%}.ui.sixteen.column.table td,.ui.table td.one.wide,.ui.table th.one.wide{width:6.25%}.ui.table td.two.wide,.ui.table th.two.wide{width:12.5%}.ui.table td.three.wide,.ui.table th.three.wide{width:18.75%}.ui.table td.four.wide,.ui.table th.four.wide{width:25%}.ui.table td.five.wide,.ui.table th.five.wide{width:31.25%}.ui.table td.six.wide,.ui.table th.six.wide{width:37.5%}.ui.table td.seven.wide,.ui.table th.seven.wide{width:43.75%}.ui.table td.eight.wide,.ui.table th.eight.wide{width:50%}.ui.table td.nine.wide,.ui.table th.nine.wide{width:56.25%}.ui.table td.ten.wide,.ui.table th.ten.wide{width:62.5%}.ui.table td.eleven.wide,.ui.table th.eleven.wide{width:68.75%}.ui.table td.twelve.wide,.ui.table th.twelve.wide{width:75%}.ui.table td.thirteen.wide,.ui.table th.thirteen.wide{width:81.25%}.ui.table td.fourteen.wide,.ui.table th.fourteen.wide{width:87.5%}.ui.table td.fifteen.wide,.ui.table th.fifteen.wide{width:93.75%}.ui.table td.sixteen.wide,.ui.table th.sixteen.wide{width:100%}.ui.sortable.table thead th{cursor:pointer;white-space:nowrap;border-left:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87)}.ui.sortable.table thead th:first-child{border-left:none}.ui.sortable.table thead th.sorted,.ui.sortable.table thead th.sorted:hover{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ui.sortable.table thead th:after{display:none;font-style:normal;font-weight:400;text-decoration:inherit;content:'';height:1em;width:auto;opacity:.8;margin:0 0 0 .5em;font-family:Icons}.ui.sortable.table thead th.ascending:after{content:'\f0d8'}.ui.sortable.table thead th.descending:after{content:'\f0d7'}.ui.sortable.table th.disabled:hover{cursor:auto;color:rgba(40,40,40,.3)}.ui.sortable.table thead th:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8)}.ui.sortable.table thead th.sorted{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.sortable.table thead th.sorted:after{display:inline-block}.ui.sortable.table thead th.sorted:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.inverted.sortable.table thead th.sorted{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.15);background:linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.15);color:#fff}.ui.inverted.sortable.table thead th:hover{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.08);background:linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.08);color:#fff}.ui.inverted.sortable.table thead th{border-left-color:transparent;border-right-color:transparent}.ui.inverted.table{background:#333;color:rgba(255,255,255,.9);border:none}.ui.inverted.table th{background-color:rgba(0,0,0,.15);border-color:rgba(255,255,255,.1)!important;color:rgba(255,255,255,.9)}.ui.inverted.table tr td{border-color:rgba(255,255,255,.1)!important}.ui.inverted.table tr td.disabled,.ui.inverted.table tr.disabled td,.ui.inverted.table tr.disabled:hover td,.ui.inverted.table tr:hover td.disabled{pointer-events:none;color:rgba(225,225,225,.3)}.ui.inverted.definition.table tfoot:not(.full-width) th:first-child,.ui.inverted.definition.table thead:not(.full-width) th:first-child{background:#FFF}.ui.inverted.definition.table tr td:first-child{background:rgba(255,255,255,.02);color:#fff}.ui.collapsing.table{width:auto}.ui.basic.table{background:0 0;border:1px solid rgba(34,36,38,.15);box-shadow:none}.ui.basic.table tfoot,.ui.basic.table thead{box-shadow:none}.ui.basic.table th{background:0 0;border-left:none}.ui.basic.table tbody tr{border-bottom:1px solid rgba(0,0,0,.1)}.ui.basic.table td{background:0 0}.ui.basic.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,0,.05)!important}.ui[class*="very basic"].table{border:none}.ui[class*="very basic"].table:not(.sortable):not(.striped) td,.ui[class*="very basic"].table:not(.sortable):not(.striped) th{padding:''}.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child{padding-left:0}.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child{padding-right:0}.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th{padding-top:0}.ui.celled.table tr td,.ui.celled.table tr th{border-left:1px solid rgba(34,36,38,.1)}.ui.celled.table tr td:first-child,.ui.celled.table tr th:first-child{border-left:none}.ui.padded.table th{padding-left:1em;padding-right:1em}.ui.padded.table td,.ui.padded.table th{padding:1em}.ui[class*="very padded"].table th{padding-left:1.5em;padding-right:1.5em}.ui[class*="very padded"].table td{padding:1.5em}.ui.compact.table th{padding-left:.7em;padding-right:.7em}.ui.compact.table td{padding:.5em .7em}.ui[class*="very compact"].table th{padding-left:.6em;padding-right:.6em}.ui[class*="very compact"].table td{padding:.4em .6em}.ui.small.table{font-size:.9em}.ui.table{font-size:1em}.ui.large.table{font-size:1.1em}.ui.ad{display:block;overflow:hidden;margin:1em 0}.ui.ad:first-child,.ui.ad:last-child{margin:0}.ui.ad iframe{margin:0;padding:0;border:none;overflow:hidden}.ui.leaderboard.ad{width:728px;height:90px}.ui[class*="medium rectangle"].ad{width:300px;height:250px}.ui[class*="large rectangle"].ad{width:336px;height:280px}.ui[class*="half page"].ad{width:300px;height:600px}.ui.square.ad{width:250px;height:250px}.ui[class*="small square"].ad{width:200px;height:200px}.ui[class*="small rectangle"].ad{width:180px;height:150px}.ui[class*="vertical rectangle"].ad{width:240px;height:400px}.ui.button.ad{width:120px;height:90px}.ui[class*="square button"].ad{width:125px;height:125px}.ui[class*="small button"].ad{width:120px;height:60px}.ui.skyscraper.ad{width:120px;height:600px}.ui[class*="wide skyscraper"].ad{width:160px}.ui.banner.ad{width:468px;height:60px}.ui[class*="vertical banner"].ad{width:120px;height:240px}.ui[class*="top banner"].ad{width:930px;height:180px}.ui[class*="half banner"].ad{width:234px;height:60px}.ui[class*="large leaderboard"].ad{width:970px;height:90px}.ui.billboard.ad{width:970px;height:250px}.ui.panorama.ad{width:980px;height:120px}.ui.netboard.ad{width:580px;height:400px}.ui[class*="large mobile banner"].ad{width:320px;height:100px}.ui[class*="mobile leaderboard"].ad{width:320px;height:50px}.ui.mobile.ad{display:none}@media only screen and (max-width:767px){.ui.mobile.ad{display:block}}.ui.centered.ad{margin-left:auto;margin-right:auto}.ui.test.ad{position:relative;background:#545454}.ui.test.ad:after{position:absolute;top:50%;left:50%;width:100%;text-align:center;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);content:'Ad';color:#FFF;font-size:1em;font-weight:700}.ui.mobile.test.ad:after{font-size:.85714286em}.ui.test.ad[data-text]:after{content:attr(data-text)}.ui.card,.ui.cards>.card{max-width:100%;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:290px;min-height:0;background:#FFF;padding:0;border:none;border-radius:.28571429rem;box-shadow:0 1px 3px 0 #D4D4D5,0 0 0 1px #D4D4D5;-webkit-transition:box-shadow .1s ease,-webkit-transform .1s ease;transition:box-shadow .1s ease,transform .1s ease;z-index:''}.ui.card{margin:1em 0}.ui.card a,.ui.cards>.card a{cursor:pointer}.ui.card:first-child{margin-top:0}.ui.card:last-child{margin-bottom:0}.ui.cards{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:-.875em -.5em;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.cards>.card{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:.875em .5em;float:none}.ui.card:after,.ui.cards:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.cards~.ui.cards{margin-top:.875em}.ui.card>:first-child,.ui.cards>.card>:first-child{border-radius:.28571429rem .28571429rem 0 0!important;border-top:none!important}.ui.card>:last-child,.ui.cards>.card>:last-child{border-radius:0 0 .28571429rem .28571429rem!important}.ui.card>:only-child,.ui.cards>.card>:only-child{border-radius:.28571429rem!important}.ui.card>.image,.ui.cards>.card>.image{position:relative;display:block;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding:0;background:rgba(0,0,0,.05)}.ui.card>.image>img,.ui.cards>.card>.image>img{display:block;width:100%;height:auto;border-radius:inherit}.ui.card>.image:not(.ui)>img,.ui.cards>.card>.image:not(.ui)>img{border:none}.ui.card>.content,.ui.cards>.card>.content{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;border:none;border-top:1px solid rgba(34,36,38,.1);background:0 0;margin:0;padding:1em;box-shadow:none;font-size:1em;border-radius:0}.ui.card>.content:after,.ui.cards>.card>.content:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.card>.content>.header,.ui.cards>.card>.content>.header{display:block;margin:'';font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;color:rgba(0,0,0,.85)}.ui.card>.content>.header:not(.ui),.ui.cards>.card>.content>.header:not(.ui){font-weight:700;font-size:1.28571429em;margin-top:-.21425em;line-height:1.2857em}.ui.card>.content>.header+.description,.ui.card>.content>.meta+.description,.ui.cards>.card>.content>.header+.description,.ui.cards>.card>.content>.meta+.description{margin-top:.5em}.ui.card [class*="left floated"],.ui.cards>.card [class*="left floated"]{float:left}.ui.card [class*="right floated"],.ui.cards>.card [class*="right floated"]{float:right}.ui.card [class*="left aligned"],.ui.cards>.card [class*="left aligned"]{text-align:left}.ui.card [class*="center aligned"],.ui.cards>.card [class*="center aligned"]{text-align:center}.ui.card [class*="right aligned"],.ui.cards>.card [class*="right aligned"]{text-align:right}.ui.card .content img,.ui.cards>.card .content img{display:inline-block;vertical-align:middle;width:''}.ui.card .avatar img,.ui.card img.avatar,.ui.cards>.card .avatar img,.ui.cards>.card img.avatar{width:2em;height:2em;border-radius:500rem}.ui.card>.content>.description,.ui.cards>.card>.content>.description{clear:both;color:rgba(0,0,0,.68)}.ui.card>.content p,.ui.cards>.card>.content p{margin:0 0 .5em}.ui.card>.content p:last-child,.ui.cards>.card>.content p:last-child{margin-bottom:0}.ui.card .meta,.ui.cards>.card .meta{font-size:1em;color:rgba(0,0,0,.4)}.ui.card .meta *,.ui.cards>.card .meta *{margin-right:.3em}.ui.card .meta :last-child,.ui.cards>.card .meta :last-child{margin-right:0}.ui.card .meta [class*="right floated"],.ui.cards>.card .meta [class*="right floated"]{margin-right:0;margin-left:.3em}.ui.card>.content a:not(.ui),.ui.cards>.card>.content a:not(.ui){color:'';-webkit-transition:color .1s ease;transition:color .1s ease}.ui.card>.content a:not(.ui):hover,.ui.cards>.card>.content a:not(.ui):hover{color:''}.ui.card>.content>a.header,.ui.cards>.card>.content>a.header{color:rgba(0,0,0,.85)}.ui.card>.content>a.header:hover,.ui.cards>.card>.content>a.header:hover{color:#1e70bf}.ui.card .meta>a:not(.ui),.ui.cards>.card .meta>a:not(.ui){color:rgba(0,0,0,.4)}.ui.card .meta>a:not(.ui):hover,.ui.cards>.card .meta>a:not(.ui):hover{color:rgba(0,0,0,.87)}.ui.card>.button,.ui.card>.buttons,.ui.cards>.card>.button,.ui.cards>.card>.buttons{margin:0 -1px;width:calc(100% + 2px)}.ui.card .dimmer,.ui.cards>.card .dimmer{background-color:'';z-index:10}.ui.card>.content .star.icon,.ui.cards>.card>.content .star.icon{cursor:pointer;opacity:.75;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.card>.content .star.icon:hover,.ui.cards>.card>.content .star.icon:hover{opacity:1;color:#FFB70A}.ui.card>.content .active.star.icon,.ui.cards>.card>.content .active.star.icon{color:#FFE623}.ui.card>.content .like.icon,.ui.cards>.card>.content .like.icon{cursor:pointer;opacity:.75;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.card>.content .like.icon:hover,.ui.cards>.card>.content .like.icon:hover{opacity:1;color:#FF2733}.ui.card>.content .active.like.icon,.ui.cards>.card>.content .active.like.icon{color:#FF2733}.ui.card>.extra,.ui.cards>.card>.extra{max-width:100%;min-height:0!important;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;border-top:1px solid rgba(0,0,0,.05)!important;position:static;background:0 0;width:auto;margin:0;padding:.75em 1em;top:0;left:0;color:rgba(0,0,0,.4);box-shadow:none;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.card>.extra a:not(.ui),.ui.cards>.card>.extra a:not(.ui){color:rgba(0,0,0,.4)}.ui.card>.extra a:not(.ui):hover,.ui.cards>.card>.extra a:not(.ui):hover{color:#1e70bf}.ui.centered.cards{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.ui.centered.card{margin-left:auto;margin-right:auto}.ui.fluid.card{width:100%;max-width:9999px}.ui.cards a.card,.ui.link.card,.ui.link.cards .card,a.ui.card{-webkit-transform:none;-ms-transform:none;transform:none}.ui.cards a.card:hover,.ui.link.card:hover,.ui.link.cards .card:hover,a.ui.card:hover{cursor:pointer;z-index:5;background:#FFF;border:none;box-shadow:0 1px 3px 0 #BCBDBD,0 0 0 1px #D4D4D5;-webkit-transform:translateY(-3px);-ms-transform:translateY(-3px);transform:translateY(-3px)}.ui.cards>.red.card,.ui.red.card,.ui.red.cards>.card{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #DB2828,0 1px 3px 0 #D4D4D5}.ui.cards>.red.card:hover,.ui.red.card:hover,.ui.red.cards>.card:hover{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #d01919,0 1px 3px 0 #BCBDBD}.ui.cards>.orange.card,.ui.orange.card,.ui.orange.cards>.card{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #F2711C,0 1px 3px 0 #D4D4D5}.ui.cards>.orange.card:hover,.ui.orange.card:hover,.ui.orange.cards>.card:hover{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #f26202,0 1px 3px 0 #BCBDBD}.ui.cards>.yellow.card,.ui.yellow.card,.ui.yellow.cards>.card{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #FBBD08,0 1px 3px 0 #D4D4D5}.ui.cards>.yellow.card:hover,.ui.yellow.card:hover,.ui.yellow.cards>.card:hover{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #eaae00,0 1px 3px 0 #BCBDBD}.ui.cards>.olive.card,.ui.olive.card,.ui.olive.cards>.card{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #B5CC18,0 1px 3px 0 #D4D4D5}.ui.cards>.olive.card:hover,.ui.olive.card:hover,.ui.olive.cards>.card:hover{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #a7bd0d,0 1px 3px 0 #BCBDBD}.ui.cards>.green.card,.ui.green.card,.ui.green.cards>.card{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #21BA45,0 1px 3px 0 #D4D4D5}.ui.cards>.green.card:hover,.ui.green.card:hover,.ui.green.cards>.card:hover{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #16ab39,0 1px 3px 0 #BCBDBD}.ui.cards>.teal.card,.ui.teal.card,.ui.teal.cards>.card{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #00B5AD,0 1px 3px 0 #D4D4D5}.ui.cards>.teal.card:hover,.ui.teal.card:hover,.ui.teal.cards>.card:hover{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #009c95,0 1px 3px 0 #BCBDBD}.ui.blue.card,.ui.blue.cards>.card,.ui.cards>.blue.card{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #2185D0,0 1px 3px 0 #D4D4D5}.ui.blue.card:hover,.ui.blue.cards>.card:hover,.ui.cards>.blue.card:hover{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #1678c2,0 1px 3px 0 #BCBDBD}.ui.cards>.violet.card,.ui.violet.card,.ui.violet.cards>.card{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #6435C9,0 1px 3px 0 #D4D4D5}.ui.cards>.violet.card:hover,.ui.violet.card:hover,.ui.violet.cards>.card:hover{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #5829bb,0 1px 3px 0 #BCBDBD}.ui.cards>.purple.card,.ui.purple.card,.ui.purple.cards>.card{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #A333C8,0 1px 3px 0 #D4D4D5}.ui.cards>.purple.card:hover,.ui.purple.card:hover,.ui.purple.cards>.card:hover{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #9627ba,0 1px 3px 0 #BCBDBD}.ui.cards>.pink.card,.ui.pink.card,.ui.pink.cards>.card{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #E03997,0 1px 3px 0 #D4D4D5}.ui.cards>.pink.card:hover,.ui.pink.card:hover,.ui.pink.cards>.card:hover{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #e61a8d,0 1px 3px 0 #BCBDBD}.ui.brown.card,.ui.brown.cards>.card,.ui.cards>.brown.card{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #A5673F,0 1px 3px 0 #D4D4D5}.ui.brown.card:hover,.ui.brown.cards>.card:hover,.ui.cards>.brown.card:hover{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #975b33,0 1px 3px 0 #BCBDBD}.ui.cards>.grey.card,.ui.grey.card,.ui.grey.cards>.card{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #767676,0 1px 3px 0 #D4D4D5}.ui.cards>.grey.card:hover,.ui.grey.card:hover,.ui.grey.cards>.card:hover{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #838383,0 1px 3px 0 #BCBDBD}.ui.black.card,.ui.black.cards>.card,.ui.cards>.black.card{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #1B1C1D,0 1px 3px 0 #D4D4D5}.ui.black.card:hover,.ui.black.cards>.card:hover,.ui.cards>.black.card:hover{box-shadow:0 0 0 1px #D4D4D5,0 2px 0 0 #27292a,0 1px 3px 0 #BCBDBD}.ui.one.cards{margin-left:0;margin-right:0}.ui.one.cards>.card{width:100%}.ui.two.cards{margin-left:-1em;margin-right:-1em}.ui.two.cards>.card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.three.cards{margin-left:-1em;margin-right:-1em}.ui.three.cards>.card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.four.cards{margin-left:-.75em;margin-right:-.75em}.ui.four.cards>.card{width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.five.cards{margin-left:-.75em;margin-right:-.75em}.ui.five.cards>.card{width:calc(20% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.six.cards{margin-left:-.75em;margin-right:-.75em}.ui.six.cards>.card{width:calc(16.66666667% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.seven.cards{margin-left:-.5em;margin-right:-.5em}.ui.seven.cards>.card{width:calc(14.28571429% - 1em);margin-left:.5em;margin-right:.5em}.ui.eight.cards{margin-left:-.5em;margin-right:-.5em}.ui.eight.cards>.card{width:calc(12.5% - 1em);margin-left:.5em;margin-right:.5em;font-size:11px}.ui.nine.cards{margin-left:-.5em;margin-right:-.5em}.ui.nine.cards>.card{width:calc(11.11111111% - 1em);margin-left:.5em;margin-right:.5em;font-size:10px}.ui.ten.cards{margin-left:-.5em;margin-right:-.5em}.ui.ten.cards>.card{width:calc(10% - 1em);margin-left:.5em;margin-right:.5em}@media only screen and (max-width:767px){.ui.two.doubling.cards{margin-left:0;margin-right:0}.ui.two.doubling.cards .card{width:100%;margin-left:0;margin-right:0}.ui.three.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.three.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.four.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.four.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.five.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.five.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.six.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.six.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.seven.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.seven.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.eight.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.eight.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.nine.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.nine.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.ten.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.ten.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}}@media only screen and (min-width:768px) and (max-width:991px){.ui.two.doubling.cards{margin-left:0;margin-right:0}.ui.two.doubling.cards .card{width:100%;margin-left:0;margin-right:0}.ui.three.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.three.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.four.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.four.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.five.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.five.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.six.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.six.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.eight.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.eight.doubling.cards .card{width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.nine.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.nine.doubling.cards .card{width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.ten.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.ten.doubling.cards .card{width:calc(20% - 1.5em);margin-left:.75em;margin-right:.75em}}@media only screen and (max-width:767px){.ui.stackable.cards{display:block!important}.ui.stackable.cards .card:first-child{margin-top:0!important}.ui.stackable.cards>.card{display:block!important;height:auto!important;margin:1em;padding:0!important;width:calc(100% - 2em)!important}}.ui.cards>.card{font-size:1em}.ui.comments{margin:1.5em 0;max-width:650px}.ui.comments:first-child{margin-top:0}.ui.comments:last-child{margin-bottom:0}.ui.comments .comment{position:relative;background:0 0;margin:.5em 0 0;padding:.5em 0 0;border:none;border-top:none;line-height:1.2}.ui.comments .comment:first-child{margin-top:0;padding-top:0}.ui.comments .comment .comments{margin:0 0 .5em .5em;padding:1em 0 1em 1em}.ui.comments .comment .comments:before{position:absolute;top:0;left:0}.ui.comments .comment .comments .comment{border:none;border-top:none;background:0 0}.ui.comments .comment .avatar{display:block;width:2.5em;height:auto;float:left;margin:.2em 0 0}.ui.comments .comment .avatar img,.ui.comments .comment img.avatar{display:block;margin:0 auto;width:100%;height:100%;border-radius:.25rem}.ui.comments .comment>.content{display:block}.ui.comments .comment>.avatar~.content{margin-left:3.5em}.ui.comments .comment .author{font-size:1em;color:rgba(0,0,0,.87);font-weight:700}.ui.comments .comment a.author{cursor:pointer}.ui.comments .comment a.author:hover{color:#1e70bf}.ui.comments .comment .metadata{display:inline-block;margin-left:.5em;color:rgba(0,0,0,.4);font-size:.875em}.ui.comments .comment .metadata>*{display:inline-block;margin:0 .5em 0 0}.ui.comments .comment .metadata>:last-child{margin-right:0}.ui.comments .comment .text{margin:.25em 0 .5em;font-size:1em;word-wrap:break-word;color:rgba(0,0,0,.87);line-height:1.3}.ui.comments .comment .actions{font-size:.875em}.ui.comments .comment .actions a{cursor:pointer;display:inline-block;margin:0 .75em 0 0;color:rgba(0,0,0,.4)}.ui.comments .comment .actions a:last-child{margin-right:0}.ui.comments .comment .actions a.active,.ui.comments .comment .actions a:hover{color:rgba(0,0,0,.8)}.ui.comments>.reply.form{margin-top:1em}.ui.comments .comment .reply.form{width:100%;margin-top:1em}.ui.comments .reply.form textarea{font-size:1em;height:12em}.ui.collapsed.comments,.ui.comments .collapsed.comment,.ui.comments .collapsed.comments{display:none}.ui.threaded.comments .comment .comments{margin:-1.5em 0 -1em 1.25em;padding:3em 0 2em 2.25em;box-shadow:-1px 0 0 rgba(34,36,38,.15)}.ui.minimal.comments .comment .actions{opacity:0;position:absolute;top:0;right:0;left:auto;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;-webkit-transition-delay:.1s;transition-delay:.1s}.ui.minimal.comments .comment>.content:hover>.actions{opacity:1}.ui.small.comments{font-size:.9em}.ui.comments{font-size:1em}.ui.large.comments{font-size:1.1em}.ui.huge.comments{font-size:1.2em}.ui.feed{margin:1em 0}.ui.feed:first-child{margin-top:0}.ui.feed:last-child{margin-bottom:0}.ui.feed>.event{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;width:100%;padding:.21428571rem 0;margin:0;background:0 0;border-top:none}.ui.feed>.event:first-child{border-top:0;padding-top:0}.ui.feed>.event:last-child{padding-bottom:0}.ui.feed>.event>.label{display:block;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:2.5em;height:auto;-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch;text-align:left}.ui.feed>.event>.label .icon{opacity:1;font-size:1.5em;width:100%;padding:.25em;background:0 0;border:none;border-radius:none;color:rgba(0,0,0,.6)}.ui.feed>.event>.label img{width:100%;height:auto;border-radius:500rem}.ui.feed>.event>.label+.content{margin:.5em 0 .35714286em 1.14285714em}.ui.feed>.event>.content{display:block;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch;text-align:left;word-wrap:break-word}.ui.feed>.event:last-child>.content{padding-bottom:0}.ui.feed>.event>.content a{cursor:pointer}.ui.feed>.event>.content .date{margin:-.5rem 0 0;padding:0;font-weight:400;font-size:1em;font-style:normal;color:rgba(0,0,0,.4)}.ui.feed>.event>.content .summary{margin:0;font-size:1em;font-weight:700;color:rgba(0,0,0,.87)}.ui.feed>.event>.content .summary img{display:inline-block;width:auto;height:10em;margin:-.25em .25em 0 0;border-radius:.25em;vertical-align:middle}.ui.feed>.event>.content .user{display:inline-block;font-weight:700;margin-right:0;vertical-align:baseline}.ui.feed>.event>.content .user img{margin:-.25em .25em 0 0;width:auto;height:10em;vertical-align:middle}.ui.feed>.event>.content .summary>.date{display:inline-block;float:none;font-weight:400;font-size:.85714286em;font-style:normal;margin:0 0 0 .5em;padding:0;color:rgba(0,0,0,.4)}.ui.feed>.event>.content .extra{margin:.5em 0 0;background:0 0;padding:0;color:rgba(0,0,0,.87)}.ui.feed>.event>.content .extra.images img{display:inline-block;margin:0 .25em 0 0;width:6em}.ui.feed>.event>.content .extra.text{padding:0;border-left:none;font-size:1em;max-width:500px;line-height:1.4285em}.ui.feed>.event>.content .meta{display:inline-block;font-size:.85714286em;margin:.5em 0 0;background:0 0;border:none;border-radius:0;box-shadow:none;padding:0;color:rgba(0,0,0,.6)}.ui.feed>.event>.content .meta>*{position:relative;margin-left:.75em}.ui.feed>.event>.content .meta>:after{content:'';color:rgba(0,0,0,.2);top:0;left:-1em;opacity:1;position:absolute;vertical-align:top}.ui.feed>.event>.content .meta .like{color:'';-webkit-transition:.2s color ease;transition:.2s color ease}.ui.feed>.event>.content .meta .like:hover .icon{color:#FF2733}.ui.feed>.event>.content .meta .active.like .icon{color:#EF404A}.ui.feed>.event>.content .meta>:first-child{margin-left:0}.ui.feed>.event>.content .meta>:first-child::after{display:none}.ui.feed>.event>.content .meta a,.ui.feed>.event>.content .meta>.icon{cursor:pointer;opacity:1;color:rgba(0,0,0,.5);-webkit-transition:color .1s ease;transition:color .1s ease}.ui.feed>.event>.content .meta a:hover,.ui.feed>.event>.content .meta a:hover .icon,.ui.feed>.event>.content .meta>.icon:hover{color:rgba(0,0,0,.95)}.ui.small.feed{font-size:.92857143rem}.ui.feed{font-size:1rem}.ui.large.feed{font-size:1.14285714rem}.ui.items>.item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:1em 0;width:100%;min-height:0;background:0 0;padding:0;border:none;border-radius:0;box-shadow:none;-webkit-transition:box-shadow .1s ease;transition:box-shadow .1s ease;z-index:''}.ui.items>.item a{cursor:pointer}.ui.items{margin:1.5em 0}.ui.items:first-child{margin-top:0!important}.ui.items:last-child{margin-bottom:0!important}.ui.items>.item:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item:first-child{margin-top:0}.ui.items>.item:last-child{margin-bottom:0}.ui.items>.item>.image{position:relative;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;display:block;float:none;margin:0;padding:0;max-height:'';-webkit-align-self:top;-ms-flex-item-align:top;align-self:top}.ui.items>.item>.image>img{display:block;width:100%;height:auto;border-radius:.125rem;border:none}.ui.items>.item>.image:only-child>img{border-radius:0}.ui.items>.item>.content{display:block;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;background:0 0;margin:0;padding:0;box-shadow:none;font-size:1em;border:none;border-radius:0}.ui.items>.item>.content:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image+.content{min-width:0;width:auto;display:block;margin-left:0;-webkit-align-self:top;-ms-flex-item-align:top;align-self:top;padding-left:1.5em}.ui.items>.item>.content>.header{display:inline-block;margin:-.21425em 0 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;color:rgba(0,0,0,.85)}.ui.items>.item>.content>.header:not(.ui){font-size:1.28571429em}.ui.items>.item [class*="left floated"]{float:left}.ui.items>.item [class*="right floated"]{float:right}.ui.items>.item .content img{-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle;width:''}.ui.items>.item .avatar img,.ui.items>.item img.avatar{width:'';height:'';border-radius:500rem}.ui.items>.item>.content>.description{margin-top:.6em;max-width:auto;font-size:1em;line-height:1.4285em;color:rgba(0,0,0,.87)}.ui.items>.item>.content p{margin:0 0 .5em}.ui.items>.item>.content p:last-child{margin-bottom:0}.ui.items>.item .meta{margin:.5em 0;font-size:1em;line-height:1em;color:rgba(0,0,0,.6)}.ui.items>.item .meta *{margin-right:.3em}.ui.items>.item .meta :last-child{margin-right:0}.ui.items>.item .meta [class*="right floated"]{margin-right:0;margin-left:.3em}.ui.items>.item>.content a:not(.ui){color:'';-webkit-transition:color .1s ease;transition:color .1s ease}.ui.items>.item>.content a:not(.ui):hover{color:''}.ui.items>.item>.content>a.header{color:rgba(0,0,0,.85)}.ui.items>.item>.content>a.header:hover{color:#1e70bf}.ui.items>.item .meta>a:not(.ui){color:rgba(0,0,0,.4)}.ui.items>.item .meta>a:not(.ui):hover{color:rgba(0,0,0,.87)}.ui.items>.item>.content .favorite.icon{cursor:pointer;opacity:.75;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.items>.item>.content .favorite.icon:hover{opacity:1;color:#FFB70A}.ui.items>.item>.content .active.favorite.icon{color:#FFE623}.ui.items>.item>.content .like.icon{cursor:pointer;opacity:.75;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.items>.item>.content .like.icon:hover{opacity:1;color:#FF2733}.ui.items>.item>.content .active.like.icon{color:#FF2733}.ui.items>.item .extra{display:block;position:relative;background:0 0;margin:.5rem 0 0;width:100%;padding:0;top:0;left:0;color:rgba(0,0,0,.4);box-shadow:none;-webkit-transition:color .1s ease;transition:color .1s ease;border-top:none}.ui.items>.item .extra>*{margin:.25rem .5rem .25rem 0}.ui.items>.item .extra>[class*="right floated"]{margin:.25rem 0 .25rem .5rem}.ui.items>.item .extra:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image:not(.ui){width:175px}@media only screen and (min-width:768px) and (max-width:991px){.ui.items>.item{margin:1em 0}.ui.items>.item>.image:not(.ui){width:150px}.ui.items>.item>.image+.content{display:block;padding:0 0 0 1em}}@media only screen and (max-width:767px){.ui.items>.item{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin:2em 0}.ui.items>.item>.image{display:block;margin-left:auto;margin-right:auto}.ui.items>.item>.image,.ui.items>.item>.image>img{max-width:100%!important;width:auto!important;max-height:250px!important}.ui.items>.item>.image+.content{display:block;padding:1.5em 0 0}}.ui.items>.item>.image+[class*="top aligned"].content{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start}.ui.items>.item>.image+[class*="middle aligned"].content{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.ui.items>.item>.image+[class*="bottom aligned"].content{-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end}.ui.relaxed.items>.item{margin:1.5em 0}.ui[class*="very relaxed"].items>.item{margin:2em 0}.ui.divided.items>.item{border-top:1px solid rgba(34,36,38,.15);margin:0;padding:1em 0}.ui.divided.items>.item:first-child{border-top:none;margin-top:0!important;padding-top:0!important}.ui.divided.items>.item:last-child{margin-bottom:0!important;padding-bottom:0!important}.ui.relaxed.divided.items>.item{margin:0;padding:1.5em 0}.ui[class*="very relaxed"].divided.items>.item{margin:0;padding:2em 0}.ui.items a.item:hover,.ui.link.items>.item:hover{cursor:pointer}.ui.items a.item:hover .content .header,.ui.link.items>.item:hover .content .header{color:#1e70bf}.ui.items>.item{font-size:1em}.ui.statistic{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin:1em 0;max-width:auto}.ui.statistic+.ui.statistic{margin:0 0 0 1.5em}.ui.statistic:first-child{margin-top:0}.ui.statistic:last-child{margin-bottom:0}.ui.statistics{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.statistics>.statistic{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin:0 1.5em 2em;max-width:auto}.ui.statistics{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:1em -1.5em -2em}.ui.statistics:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.statistics:first-child{margin-top:0}.ui.statistics:last-child{margin-bottom:0}.ui.statistic>.value,.ui.statistics .statistic>.value{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:400;line-height:1em;color:#1B1C1D;text-transform:uppercase;text-align:center}.ui.statistic>.label,.ui.statistics .statistic>.label{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1em;font-weight:700;color:rgba(0,0,0,.87);text-transform:uppercase;text-align:center}.ui.statistic>.label~.value,.ui.statistic>.value~.label,.ui.statistics .statistic>.label~.value,.ui.statistics .statistic>.value~.label{margin-top:0}.ui.statistic>.value .icon,.ui.statistics .statistic>.value .icon{opacity:1;width:auto;margin:0}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{line-height:1em;min-height:2em;font-weight:700;text-align:center}.ui.statistic>.text.value+.label,.ui.statistics .statistic>.text.value+.label{text-align:center}.ui.statistic>.value img,.ui.statistics .statistic>.value img{max-height:3rem;vertical-align:baseline}.ui.ten.statistics{margin:0 0 -2em}.ui.ten.statistics .statistic{min-width:10%;margin:0 0 2em}.ui.nine.statistics{margin:0 0 -2em}.ui.nine.statistics .statistic{min-width:11.11111111%;margin:0 0 2em}.ui.eight.statistics{margin:0 0 -2em}.ui.eight.statistics .statistic{min-width:12.5%;margin:0 0 2em}.ui.seven.statistics{margin:0 0 -2em}.ui.seven.statistics .statistic{min-width:14.28571429%;margin:0 0 2em}.ui.six.statistics{margin:0 0 -2em}.ui.six.statistics .statistic{min-width:16.66666667%;margin:0 0 2em}.ui.five.statistics{margin:0 0 -2em}.ui.five.statistics .statistic{min-width:20%;margin:0 0 2em}.ui.four.statistics{margin:0 0 -2em}.ui.four.statistics .statistic{min-width:25%;margin:0 0 2em}.ui.three.statistics{margin:0 0 -2em}.ui.three.statistics .statistic{min-width:33.33333333%;margin:0 0 2em}.ui.two.statistics{margin:0 0 -2em}.ui.two.statistics .statistic{min-width:50%;margin:0 0 2em}.ui.one.statistics{margin:0 0 -2em}.ui.one.statistics .statistic{min-width:100%;margin:0 0 2em}.ui.horizontal.statistic{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.horizontal.statistics{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin:0;max-width:none}.ui.horizontal.statistics .statistic{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;max-width:none;margin:1em 0}.ui.horizontal.statistic>.text.value,.ui.horizontal.statistics>.statistic>.text.value{min-height:0!important}.ui.horizontal.statistic>.value .icon,.ui.horizontal.statistics .statistic>.value .icon{width:1.18em}.ui.horizontal.statistic>.label,.ui.horizontal.statistics .statistic>.label{display:inline-block;vertical-align:middle;margin:0 0 0 .75em}.ui.red.statistic>.value,.ui.red.statistics .statistic>.value,.ui.statistics .red.statistic>.value{color:#DB2828}.ui.orange.statistic>.value,.ui.orange.statistics .statistic>.value,.ui.statistics .orange.statistic>.value{color:#F2711C}.ui.statistics .yellow.statistic>.value,.ui.yellow.statistic>.value,.ui.yellow.statistics .statistic>.value{color:#FBBD08}.ui.olive.statistic>.value,.ui.olive.statistics .statistic>.value,.ui.statistics .olive.statistic>.value{color:#B5CC18}.ui.green.statistic>.value,.ui.green.statistics .statistic>.value,.ui.statistics .green.statistic>.value{color:#21BA45}.ui.statistics .teal.statistic>.value,.ui.teal.statistic>.value,.ui.teal.statistics .statistic>.value{color:#00B5AD}.ui.blue.statistic>.value,.ui.blue.statistics .statistic>.value,.ui.statistics .blue.statistic>.value{color:#2185D0}.ui.statistics .violet.statistic>.value,.ui.violet.statistic>.value,.ui.violet.statistics .statistic>.value{color:#6435C9}.ui.purple.statistic>.value,.ui.purple.statistics .statistic>.value,.ui.statistics .purple.statistic>.value{color:#A333C8}.ui.pink.statistic>.value,.ui.pink.statistics .statistic>.value,.ui.statistics .pink.statistic>.value{color:#E03997}.ui.brown.statistic>.value,.ui.brown.statistics .statistic>.value,.ui.statistics .brown.statistic>.value{color:#A5673F}.ui.grey.statistic>.value,.ui.grey.statistics .statistic>.value,.ui.statistics .grey.statistic>.value{color:#767676}.ui.inverted.statistic .value,.ui.inverted.statistics .statistic>.value{color:#FFF}.ui.inverted.statistic .label,.ui.inverted.statistics .statistic>.label{color:rgba(255,255,255,.9)}.ui.inverted.red.statistic>.value,.ui.inverted.red.statistics .statistic>.value,.ui.statistics .inverted.red.statistic>.value{color:#FF695E}.ui.inverted.orange.statistic>.value,.ui.inverted.orange.statistics .statistic>.value,.ui.statistics .inverted.orange.statistic>.value{color:#FF851B}.ui.inverted.yellow.statistic>.value,.ui.inverted.yellow.statistics .statistic>.value,.ui.statistics .inverted.yellow.statistic>.value{color:#FFE21F}.ui.inverted.olive.statistic>.value,.ui.inverted.olive.statistics .statistic>.value,.ui.statistics .inverted.olive.statistic>.value{color:#D9E778}.ui.inverted.green.statistic>.value,.ui.inverted.green.statistics .statistic>.value,.ui.statistics .inverted.green.statistic>.value{color:#2ECC40}.ui.inverted.teal.statistic>.value,.ui.inverted.teal.statistics .statistic>.value,.ui.statistics .inverted.teal.statistic>.value{color:#6DFFFF}.ui.inverted.blue.statistic>.value,.ui.inverted.blue.statistics .statistic>.value,.ui.statistics .inverted.blue.statistic>.value{color:#54C8FF}.ui.inverted.violet.statistic>.value,.ui.inverted.violet.statistics .statistic>.value,.ui.statistics .inverted.violet.statistic>.value{color:#A291FB}.ui.inverted.purple.statistic>.value,.ui.inverted.purple.statistics .statistic>.value,.ui.statistics .inverted.purple.statistic>.value{color:#DC73FF}.ui.inverted.pink.statistic>.value,.ui.inverted.pink.statistics .statistic>.value,.ui.statistics .inverted.pink.statistic>.value{color:#FF8EDF}.ui.inverted.brown.statistic>.value,.ui.inverted.brown.statistics .statistic>.value,.ui.statistics .inverted.brown.statistic>.value{color:#D67C1C}.ui.inverted.grey.statistic>.value,.ui.inverted.grey.statistics .statistic>.value,.ui.statistics .inverted.grey.statistic>.value{color:#DCDDDE}.ui[class*="left floated"].statistic{float:left;margin:0 2em 1em 0}.ui[class*="right floated"].statistic{float:right;margin:0 0 1em 2em}.ui.floated.statistic:last-child{margin-bottom:0}.ui.mini.horizontal.statistic>.value,.ui.mini.horizontal.statistics .statistic>.value,.ui.mini.statistic>.value,.ui.mini.statistics .statistic>.value{font-size:1.5rem}.ui.mini.statistic>.text.value,.ui.mini.statistics .statistic>.text.value{font-size:1rem}.ui.tiny.horizontal.statistic>.value,.ui.tiny.horizontal.statistics .statistic>.value,.ui.tiny.statistic>.value,.ui.tiny.statistics .statistic>.value{font-size:2rem}.ui.tiny.statistic>.text.value,.ui.tiny.statistics .statistic>.text.value{font-size:1rem}.ui.small.statistic>.value,.ui.small.statistics .statistic>.value{font-size:3rem}.ui.small.horizontal.statistic>.value,.ui.small.horizontal.statistics .statistic>.value{font-size:2rem}.ui.small.statistic>.text.value,.ui.small.statistics .statistic>.text.value{font-size:1rem}.ui.statistic>.value,.ui.statistics .statistic>.value{font-size:4rem}.ui.horizontal.statistic>.value,.ui.horizontal.statistics .statistic>.value{display:inline-block;vertical-align:middle;font-size:3rem}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{font-size:2rem}.ui.large.statistic>.value,.ui.large.statistics .statistic>.value{font-size:5rem}.ui.large.horizontal.statistic>.value,.ui.large.horizontal.statistics .statistic>.value{font-size:4rem}.ui.large.statistic>.text.value,.ui.large.statistics .statistic>.text.value{font-size:2.5rem}.ui.huge.statistic>.value,.ui.huge.statistics .statistic>.value{font-size:6rem}.ui.huge.horizontal.statistic>.value,.ui.huge.horizontal.statistics .statistic>.value{font-size:5rem}.ui.huge.statistic>.text.value,.ui.huge.statistics .statistic>.text.value{font-size:2.5rem}.ui.accordion,.ui.accordion .accordion{max-width:100%}.ui.accordion .accordion{margin:1em 0 0;padding:0}.ui.accordion .accordion .title,.ui.accordion .title{cursor:pointer}.ui.accordion .title:not(.ui){padding:.5em 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1em;color:rgba(0,0,0,.87)}.ui.accordion .accordion .title~.content,.ui.accordion .title~.content{display:none}.ui.accordion:not(.styled) .accordion .title~.content:not(.ui),.ui.accordion:not(.styled) .title~.content:not(.ui){margin:'';padding:.5em 0 1em}.ui.accordion:not(.styled) .title~.content:not(.ui):last-child{padding-bottom:0}.ui.accordion .accordion .title .dropdown.icon,.ui.accordion .title .dropdown.icon{display:inline-block;float:none;opacity:1;width:1.25em;height:1em;margin:0 .25rem 0 0;padding:0;font-size:1em;-webkit-transition:-webkit-transform .1s ease,opacity .1s ease;transition:transform .1s ease,opacity .1s ease;vertical-align:baseline;-webkit-transform:none;-ms-transform:none;transform:none}.ui.accordion.menu .item .title{display:block;padding:0}.ui.accordion.menu .item .title>.dropdown.icon{float:right;margin:.21425em 0 0 1em;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.ui.accordion .ui.header .dropdown.icon{font-size:1em;margin:0 .25rem 0 0}.ui.accordion .accordion .active.title .dropdown.icon,.ui.accordion .active.title .dropdown.icon,.ui.accordion.menu .item .active.title>.dropdown.icon{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.ui.styled.accordion{width:600px}.ui.styled.accordion,.ui.styled.accordion .accordion{border-radius:.28571429rem;background:#FFF;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),0 0 0 1px rgba(34,36,38,.15)}.ui.styled.accordion .accordion .title,.ui.styled.accordion .title{margin:0;padding:.75em 1em;color:rgba(0,0,0,.4);font-weight:700;border-top:1px solid rgba(34,36,38,.15);-webkit-transition:background .1s ease,color .1s ease;transition:background .1s ease,color .1s ease}.ui.styled.accordion .accordion .title:first-child,.ui.styled.accordion>.title:first-child{border-top:none}.ui.styled.accordion .accordion .content,.ui.styled.accordion .content{margin:0;padding:.5em 1em 1.5em}.ui.styled.accordion .accordion .content{padding:.5em 1em 1.5em}.ui.styled.accordion .accordion .active.title,.ui.styled.accordion .accordion .title:hover,.ui.styled.accordion .active.title,.ui.styled.accordion .title:hover{background:0 0;color:rgba(0,0,0,.87)}.ui.styled.accordion .accordion .active.title,.ui.styled.accordion .active.title{background:0 0;color:rgba(0,0,0,.95)}.ui.accordion .accordion .active.content,.ui.accordion .active.content{display:block}.ui.fluid.accordion,.ui.fluid.accordion .accordion{width:100%}.ui.inverted.accordion .title:not(.ui){color:rgba(255,255,255,.9)}@font-face{font-family:Accordion;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfOIKAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zryj6HgAAAFwAAAAyGhlYWT/0IhHAAACOAAAADZoaGVhApkB5wAAAnAAAAAkaG10eAJuABIAAAKUAAAAGGxvY2EAjABWAAACrAAAAA5tYXhwAAgAFgAAArwAAAAgbmFtZfC1n04AAALcAAABPHBvc3QAAwAAAAAEGAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQASAEkAtwFuABMAADc0PwE2FzYXFh0BFAcGJwYvASY1EgaABQgHBQYGBQcIBYAG2wcGfwcBAQcECf8IBAcBAQd/BgYAAAAAAQAAAEkApQFuABMAADcRNDc2MzIfARYVFA8BBiMiJyY1AAUGBwgFgAYGgAUIBwYFWwEACAUGBoAFCAcFgAYGBQcAAAABAAAAAQAAqWYls18PPPUACwIAAAAAAM/9o+4AAAAAz/2j7gAAAAAAtwFuAAAACAACAAAAAAAAAAEAAAHg/+AAAAIAAAAAAAC3AAEAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAQAAAAC3ABIAtwAAAAAAAAAKABQAHgBCAGQAAAABAAAABgAUAAEAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAASwAAoAAAAABGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAS0AAAEtFpovuE9TLzIAAAIkAAAAYAAAAGAIIweQY21hcAAAAoQAAABMAAAATA984gpnYXNwAAAC0AAAAAgAAAAIAAAAEGhlYWQAAALYAAAANgAAADb/0IhHaGhlYQAAAxAAAAAkAAAAJAKZAedobXR4AAADNAAAABgAAAAYAm4AEm1heHAAAANMAAAABgAAAAYABlAAbmFtZQAAA1QAAAE8AAABPPC1n05wb3N0AAAEkAAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLa/iU+HQFHQAAAHkPHQAAAH4RHQAAAAkdAAABJBIABwEBBw0PERQZHnJhdGluZ3JhdGluZ3UwdTF1MjB1RjBEOXVGMERBAAACAYkABAAGAQEEBwoNVp38lA78lA78lA77lA773Z33bxWLkI2Qj44I9xT3FAWOj5CNkIuQi4+JjoePiI2Gi4YIi/uUBYuGiYeHiIiHh4mGi4aLho2Ijwj7FPcUBYeOiY+LkAgO+92L5hWL95QFi5CNkI6Oj4+PjZCLkIuQiY6HCPcU+xQFj4iNhouGi4aJh4eICPsU+xQFiIeGiYaLhouHjYePiI6Jj4uQCA74lBT4lBWLDAoAAAAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAADfYOJZfDzz1AAsCAAAAAADP/aPuAAAAAM/9o+4AAAAAALcBbgAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAAAtwABAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAEAAAAAtwASALcAAAAAUAAABgAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');font-weight:400;font-style:normal}.ui.accordion .accordion .title .dropdown.icon,.ui.accordion .title .dropdown.icon{font-family:Accordion;line-height:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center}.ui.accordion .accordion .title .dropdown.icon:before,.ui.accordion .title .dropdown.icon:before{content:'\f0da'}.ui.checkbox{position:relative;display:inline-block;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0;vertical-align:baseline;font-style:normal;min-height:17px;font-size:1rem;line-height:17px;min-width:17px}.ui.checkbox input[type=checkbox],.ui.checkbox input[type=radio]{cursor:pointer;position:absolute;top:0;left:0;opacity:0!important;outline:0;z-index:3;width:17px;height:17px}.ui.checkbox .box,.ui.checkbox label{cursor:auto;position:relative;display:block;padding-left:1.85714em;outline:0;font-size:1em}.ui.checkbox .box:before,.ui.checkbox label:before{position:absolute;top:0;left:0;width:17px;height:17px;content:'';background:#FFF;border-radius:.21428571rem;-webkit-transition:border .1s ease,opacity .1s ease,-webkit-transform .1s ease,box-shadow .1s ease;transition:border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease;border:1px solid #D4D4D5}.ui.checkbox .box:after,.ui.checkbox label:after{position:absolute;font-size:14px;top:0;left:0;width:17px;height:17px;text-align:center;opacity:0;color:rgba(0,0,0,.87);-webkit-transition:border .1s ease,opacity .1s ease,-webkit-transform .1s ease,box-shadow .1s ease;transition:border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease;font-family:Checkbox}.ui.checkbox label,.ui.checkbox+label{color:rgba(0,0,0,.87);-webkit-transition:color .1s ease;transition:color .1s ease}.ui.checkbox+label{vertical-align:middle}.ui.checkbox .box:hover::before,.ui.checkbox label:hover::before{background:#FFF;border-color:rgba(34,36,38,.35)}.ui.checkbox label:hover,.ui.checkbox+label:hover{color:rgba(0,0,0,.8)}.ui.checkbox .box:active::before,.ui.checkbox label:active::before{background:#F9FAFB;border-color:rgba(34,36,38,.35)}.ui.checkbox .box:active::after,.ui.checkbox input:active~label,.ui.checkbox label:active::after{color:rgba(0,0,0,.95)}.ui.checkbox input:focus~.box:before,.ui.checkbox input:focus~label:before{background:#FFF;border-color:#96C8DA}.ui.checkbox input:focus~.box:after,.ui.checkbox input:focus~label,.ui.checkbox input:focus~label:after{color:rgba(0,0,0,.95)}.ui.checkbox input:checked~.box:before,.ui.checkbox input:checked~label:before{background:#FFF;border-color:rgba(34,36,38,.35)}.ui.checkbox input:checked~.box:after,.ui.checkbox input:checked~label:after{opacity:1;color:rgba(0,0,0,.95)}.ui.checkbox input:indeterminate~.box:before,.ui.checkbox input:indeterminate~label:before{background:#FFF;border-color:rgba(34,36,38,.35)}.ui.checkbox input:indeterminate~.box:after,.ui.checkbox input:indeterminate~label:after{opacity:1;color:rgba(0,0,0,.95)}.ui.checkbox input:checked:focus~.box:before,.ui.checkbox input:checked:focus~label:before,.ui.checkbox input:indeterminate:focus~.box:before,.ui.checkbox input:indeterminate:focus~label:before{background:#FFF;border-color:#96C8DA}.ui.checkbox input:checked:focus~.box:after,.ui.checkbox input:checked:focus~label:after,.ui.checkbox input:indeterminate:focus~.box:after,.ui.checkbox input:indeterminate:focus~label:after{color:rgba(0,0,0,.95)}.ui.read-only.checkbox,.ui.read-only.checkbox label{cursor:default}.ui.checkbox input[disabled]~.box:after,.ui.checkbox input[disabled]~label,.ui.disabled.checkbox .box:after,.ui.disabled.checkbox label{cursor:default;opacity:.5;color:#000}.ui.checkbox input.hidden{z-index:-1}.ui.checkbox input.hidden+label{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ui.radio.checkbox{min-height:15px}.ui.radio.checkbox .box,.ui.radio.checkbox label{padding-left:1.85714em}.ui.radio.checkbox .box:before,.ui.radio.checkbox label:before{content:'';-webkit-transform:none;-ms-transform:none;transform:none;width:15px;height:15px;border-radius:500rem;top:1px;left:0}.ui.radio.checkbox .box:after,.ui.radio.checkbox label:after{border:none;content:''!important;line-height:15px;top:1px;left:0;width:15px;height:15px;border-radius:500rem;-webkit-transform:scale(.46666667);-ms-transform:scale(.46666667);transform:scale(.46666667);background-color:rgba(0,0,0,.87)}.ui.radio.checkbox input:focus~.box:before,.ui.radio.checkbox input:focus~label:before{background-color:#FFF}.ui.radio.checkbox input:focus~.box:after,.ui.radio.checkbox input:focus~label:after{background-color:rgba(0,0,0,.95)}.ui.radio.checkbox input:indeterminate~.box:after,.ui.radio.checkbox input:indeterminate~label:after{opacity:0}.ui.radio.checkbox input:checked~.box:before,.ui.radio.checkbox input:checked~label:before{background-color:#FFF}.ui.radio.checkbox input:checked~.box:after,.ui.radio.checkbox input:checked~label:after{background-color:rgba(0,0,0,.95)}.ui.radio.checkbox input:focus:checked~.box:before,.ui.radio.checkbox input:focus:checked~label:before{background-color:#FFF}.ui.radio.checkbox input:focus:checked~.box:after,.ui.radio.checkbox input:focus:checked~label:after{background-color:rgba(0,0,0,.95)}.ui.slider.checkbox{min-height:1.25rem}.ui.slider.checkbox input{width:3.5rem;height:1.25rem}.ui.slider.checkbox .box,.ui.slider.checkbox label{padding-left:4.5rem;line-height:1rem;color:rgba(0,0,0,.4)}.ui.slider.checkbox .box:before,.ui.slider.checkbox label:before{display:block;position:absolute;content:'';border:none!important;left:0;z-index:1;top:.4rem;background-color:rgba(0,0,0,.05);width:3.5rem;height:.21428571rem;-webkit-transform:none;-ms-transform:none;transform:none;border-radius:500rem;-webkit-transition:background .3s ease;transition:background .3s ease}.ui.slider.checkbox .box:after,.ui.slider.checkbox label:after{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) #FFF;background:linear-gradient(transparent,rgba(0,0,0,.05)) #FFF;position:absolute;content:''!important;opacity:1;z-index:2;border:none;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),0 0 0 1px rgba(34,36,38,.15) inset;width:1.5rem;height:1.5rem;top:-.25rem;left:0;-webkit-transform:none;-ms-transform:none;transform:none;border-radius:500rem;-webkit-transition:left .3s ease;transition:left .3s ease}.ui.slider.checkbox input:focus~.box:before,.ui.slider.checkbox input:focus~label:before{background-color:rgba(0,0,0,.15);border:none}.ui.slider.checkbox .box:hover,.ui.slider.checkbox label:hover{color:rgba(0,0,0,.8)}.ui.slider.checkbox .box:hover::before,.ui.slider.checkbox label:hover::before{background:rgba(0,0,0,.15)}.ui.slider.checkbox input:checked~.box,.ui.slider.checkbox input:checked~label{color:rgba(0,0,0,.95)!important}.ui.slider.checkbox input:checked~.box:before,.ui.slider.checkbox input:checked~label:before{background-color:#545454!important}.ui.slider.checkbox input:checked~.box:after,.ui.slider.checkbox input:checked~label:after{left:2rem}.ui.slider.checkbox input:focus:checked~.box,.ui.slider.checkbox input:focus:checked~label{color:rgba(0,0,0,.95)!important}.ui.slider.checkbox input:focus:checked~.box:before,.ui.slider.checkbox input:focus:checked~label:before{background-color:#000!important}.ui.toggle.checkbox{min-height:1.5rem}.ui.toggle.checkbox input{width:3.5rem;height:1.5rem}.ui.toggle.checkbox .box,.ui.toggle.checkbox label{min-height:1.5rem;padding-left:4.5rem;color:rgba(0,0,0,.87)}.ui.toggle.checkbox label{padding-top:.15em}.ui.toggle.checkbox .box:before,.ui.toggle.checkbox label:before{display:block;position:absolute;content:'';z-index:1;-webkit-transform:none;-ms-transform:none;transform:none;border:none;top:0;background:rgba(0,0,0,.05);width:3.5rem;height:1.5rem;border-radius:500rem}.ui.toggle.checkbox .box:after,.ui.toggle.checkbox label:after{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) #FFF;background:linear-gradient(transparent,rgba(0,0,0,.05)) #FFF;position:absolute;content:''!important;opacity:1;z-index:2;border:none;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),0 0 0 1px rgba(34,36,38,.15) inset;width:1.5rem;height:1.5rem;top:0;left:0;border-radius:500rem;-webkit-transition:background .3s ease,left .3s ease;transition:background .3s ease,left .3s ease}.ui.toggle.checkbox input~.box:after,.ui.toggle.checkbox input~label:after{left:-.05rem}.ui.toggle.checkbox .box:hover::before,.ui.toggle.checkbox input:focus~.box:before,.ui.toggle.checkbox input:focus~label:before,.ui.toggle.checkbox label:hover::before{background-color:rgba(0,0,0,.15);border:none}.ui.toggle.checkbox input:checked~.box,.ui.toggle.checkbox input:checked~label{color:rgba(0,0,0,.95)!important}.ui.toggle.checkbox input:checked~.box:before,.ui.toggle.checkbox input:checked~label:before{background-color:#2185D0!important}.ui.toggle.checkbox input:checked~.box:after,.ui.toggle.checkbox input:checked~label:after{left:2.15rem}.ui.toggle.checkbox input:focus:checked~.box,.ui.toggle.checkbox input:focus:checked~label{color:rgba(0,0,0,.95)!important}.ui.toggle.checkbox input:focus:checked~.box:before,.ui.toggle.checkbox input:focus:checked~label:before{background-color:#0d71bb!important}.ui.fitted.checkbox .box,.ui.fitted.checkbox label{padding-left:0!important}.ui.fitted.slider.checkbox,.ui.fitted.toggle.checkbox{width:3.5rem}@font-face{font-family:Checkbox;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBD8AAAC8AAAAYGNtYXAYVtCJAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zn4huwUAAAF4AAABYGhlYWQGPe1ZAAAC2AAAADZoaGVhB30DyAAAAxAAAAAkaG10eBBKAEUAAAM0AAAAHGxvY2EAmgESAAADUAAAABBtYXhwAAkALwAAA2AAAAAgbmFtZSC8IugAAAOAAAABknBvc3QAAwAAAAAFFAAAACAAAwMTAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6AL//f//AAAAAAAg6AD//f//AAH/4xgEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAEUAUQO7AvgAGgAAARQHAQYjIicBJjU0PwE2MzIfAQE2MzIfARYVA7sQ/hQQFhcQ/uMQEE4QFxcQqAF2EBcXEE4QAnMWEP4UEBABHRAXFhBOEBCoAXcQEE4QFwAAAAABAAABbgMlAkkAFAAAARUUBwYjISInJj0BNDc2MyEyFxYVAyUQEBf9SRcQEBAQFwK3FxAQAhJtFxAQEBAXbRcQEBAQFwAAAAABAAAASQMlA24ALAAAARUUBwYrARUUBwYrASInJj0BIyInJj0BNDc2OwE1NDc2OwEyFxYdATMyFxYVAyUQEBfuEBAXbhYQEO4XEBAQEBfuEBAWbhcQEO4XEBACEm0XEBDuFxAQEBAX7hAQF20XEBDuFxAQEBAX7hAQFwAAAQAAAAIAAHRSzT9fDzz1AAsEAAAAAADRsdR3AAAAANGx1HcAAAAAA7sDbgAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAADuwABAAAAAAAAAAAAAAAAAAAABwQAAAAAAAAAAAAAAAIAAAAEAABFAyUAAAMlAAAAAAAAAAoAFAAeAE4AcgCwAAEAAAAHAC0AAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhWZXJzaW9uIDIuMABWAGUAcgBzAGkAbwBuACAAMgAuADBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhDaGVja2JveABDAGgAZQBjAGsAYgBvAHhSZWd1bGFyAFIAZQBnAHUAbABhAHJDaGVja2JveABDAGgAZQBjAGsAYgBvAHhGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype')}.ui.checkbox input:checked~.box:after,.ui.checkbox input:checked~label:after{content:'\e800'}.ui.checkbox input:indeterminate~.box:after,.ui.checkbox input:indeterminate~label:after{font-size:12px;content:'\e801'}.dimmable{position:relative}.ui.dimmer{display:none;position:absolute;top:0!important;left:0!important;width:100%;height:100%;text-align:center;vertical-align:middle;background-color:rgba(0,0,0,.85);opacity:0;line-height:1;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-transition:background-color .5s linear;transition:background-color .5s linear;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;will-change:opacity;z-index:1000}.ui.dimmer>.content{width:100%;height:100%;display:table;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.dimmer>.content>*{display:table-cell;vertical-align:middle;color:#FFF}.ui.segment>.ui.dimmer{border-radius:inherit!important}.animating.dimmable:not(body),.dimmed.dimmable:not(body){overflow:hidden}.dimmed.dimmable>.ui.animating.dimmer,.dimmed.dimmable>.ui.visible.dimmer,.ui.active.dimmer{display:block;opacity:1}.ui.disabled.dimmer{width:0!important;height:0!important}.ui.page.dimmer{position:fixed;-webkit-transform-style:'';transform-style:'';-webkit-perspective:2000px;perspective:2000px;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center}body.animating.in.dimmable,body.dimmed.dimmable{overflow:hidden}body.dimmable>.dimmer{position:fixed}.blurring.dimmable>:not(.dimmer){-webkit-filter:blur(0) grayscale(0);filter:blur(0) grayscale(0);-webkit-transition:.8s -webkit-filter ease,.8s filter ease;transition:.8s filter ease}.blurring.dimmed.dimmable>:not(.dimmer){-webkit-filter:blur(5px) grayscale(.7);filter:blur(5px) grayscale(.7)}.blurring.dimmable>.dimmer{background-color:rgba(0,0,0,.6)}.blurring.dimmable>.inverted.dimmer{background-color:rgba(255,255,255,.6)}.ui.dimmer>.top.aligned.content>*{vertical-align:top}.ui.dimmer>.bottom.aligned.content>*{vertical-align:bottom}.ui.inverted.dimmer{background-color:rgba(255,255,255,.85)}.ui.inverted.dimmer>.content>*{color:#FFF}.ui.simple.dimmer{display:block;overflow:hidden;opacity:1;width:0;height:0%;z-index:-100;background-color:transparent}.dimmed.dimmable>.ui.simple.dimmer{overflow:visible;opacity:1;width:100%;height:100%;background-color:rgba(0,0,0,.85);z-index:1}.ui.simple.inverted.dimmer{background-color:rgba(255,255,255,0)}.dimmed.dimmable>.ui.simple.inverted.dimmer{background-color:rgba(255,255,255,.85)}.ui.dropdown{cursor:pointer;position:relative;display:inline-block;outline:0;text-align:left;-webkit-transition:box-shadow .1s ease,width .1s ease;transition:box-shadow .1s ease,width .1s ease;-webkit-tap-highlight-color:transparent}.ui.dropdown .menu{cursor:auto;position:absolute;display:none;outline:0;top:100%;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;margin:0;padding:0;background:#FFF;font-size:1em;text-shadow:none;text-align:left;box-shadow:0 2px 3px 0 rgba(34,36,38,.15);border:1px solid rgba(34,36,38,.15);border-radius:.28571429rem;-webkit-transition:opacity .1s ease;transition:opacity .1s ease;z-index:11;will-change:transform,opacity}.ui.dropdown .menu>*{white-space:nowrap}.ui.dropdown>input:not(.search):first-child,.ui.dropdown>select{display:none!important}.ui.dropdown>.dropdown.icon{position:relative;font-size:.85714286em;margin:0 0 0 1em}.ui.dropdown .menu>.item .dropdown.icon{width:auto;float:right;margin:0 0 0 1em}.ui.dropdown .menu>.item .dropdown.icon+.text{margin-right:1em}.ui.dropdown>.text{display:inline-block;-webkit-transition:none;transition:none}.ui.dropdown .menu>.item{position:relative;cursor:pointer;display:block;border:none;height:auto;text-align:left;border-top:none;line-height:1em;color:rgba(0,0,0,.87);padding:.71428571rem 1.14285714rem!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.ui.dropdown .menu>.item:first-child{border-top-width:0}.ui.dropdown .menu .item>[class*="right floated"],.ui.dropdown>.text>[class*="right floated"]{float:right!important;margin-right:0!important;margin-left:1em!important}.ui.dropdown .menu .item>[class*="left floated"],.ui.dropdown>.text>[class*="left floated"]{float:left!important;margin-left:0!important;margin-right:1em!important}.ui.dropdown .menu .item>.flag.floated,.ui.dropdown .menu .item>.icon.floated,.ui.dropdown .menu .item>.image.floated,.ui.dropdown .menu .item>img.floated{margin-top:0}.ui.dropdown .menu>.header{margin:1rem 0 .75rem;padding:0 1.14285714rem;color:rgba(0,0,0,.85);font-size:.78571429em;font-weight:700;text-transform:uppercase}.ui.dropdown .menu>.divider{border-top:1px solid rgba(34,36,38,.1);height:0;margin:.5em 0}.ui.dropdown .menu>.input{width:auto;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:1.14285714rem .71428571rem;min-width:10rem}.ui.dropdown .menu>.header+.input{margin-top:0}.ui.dropdown .menu>.input:not(.transparent) input{padding:.5em 1em}.ui.dropdown .menu>.input:not(.transparent) .button,.ui.dropdown .menu>.input:not(.transparent) .icon,.ui.dropdown .menu>.input:not(.transparent) .label{padding-top:.5em;padding-bottom:.5em}.ui.dropdown .menu>.item>.description,.ui.dropdown>.text>.description{float:right;margin:0 0 0 1em;color:rgba(0,0,0,.4)}.ui.dropdown .menu>.message{padding:.71428571rem 1.14285714rem;font-weight:400}.ui.dropdown .menu>.message:not(.ui){color:rgba(0,0,0,.4)}.ui.dropdown .menu .menu{top:0!important;left:100%!important;right:auto!important;margin:0 0 0 -.5em!important;border-radius:.28571429rem!important;z-index:21!important}.ui.dropdown .menu .menu:after{display:none}.ui.dropdown .menu>.item>.flag,.ui.dropdown .menu>.item>.icon,.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>.label,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.flag,.ui.dropdown>.text>.icon,.ui.dropdown>.text>.image,.ui.dropdown>.text>.label,.ui.dropdown>.text>img{margin-top:0;margin-left:0;float:none;margin-right:.71428571rem}.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.image,.ui.dropdown>.text>img{display:inline-block;vertical-align:middle;width:auto;max-height:2em}.ui.dropdown .ui.menu>.item:before,.ui.menu .ui.dropdown .menu>.item:before{display:none}.ui.menu .ui.dropdown .menu .active.item{border-left:none}.ui.buttons>.ui.dropdown:last-child .menu,.ui.menu .right.dropdown.item .menu,.ui.menu .right.menu .dropdown:last-child .menu{left:auto;right:0}.ui.label.dropdown .menu{min-width:100%}.ui.dropdown.icon.button>.dropdown.icon{margin:0}.ui.button.dropdown .menu{min-width:100%}.ui.selection.dropdown{cursor:pointer;word-wrap:break-word;line-height:1em;white-space:normal;outline:0;-webkit-transform:rotateZ(0);transform:rotateZ(0);min-width:14em;min-height:2.7142em;background:#FFF;display:inline-block;padding:.78571429em 2.6em .78571429em 1em;color:rgba(0,0,0,.87);box-shadow:none;border:1px solid rgba(34,36,38,.15);border-radius:.28571429rem;-webkit-transition:box-shadow .1s ease,width .1s ease;transition:box-shadow .1s ease,width .1s ease}.ui.selection.dropdown.active,.ui.selection.dropdown.visible{z-index:10}select.ui.dropdown{height:38px;padding:.5em;border:1px solid rgba(34,36,38,.15);visibility:visible}.ui.selection.dropdown>.delete.icon,.ui.selection.dropdown>.dropdown.icon,.ui.selection.dropdown>.search.icon{cursor:pointer;position:absolute;top:auto;width:auto;z-index:3;margin:-.78571429em;padding:.78571429em;right:1em;opacity:.8;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.compact.selection.dropdown{min-width:0}.ui.selection.dropdown .menu{overflow-x:hidden;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch;border-top-width:0!important;outline:0;margin:0 -1px;min-width:calc(100% + 2px);width:calc(100% + 2px);border-radius:0 0 .28571429rem .28571429rem;box-shadow:0 2px 3px 0 rgba(34,36,38,.15);-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.selection.dropdown .menu:after,.ui.selection.dropdown .menu:before{display:none}.ui.selection.dropdown .menu>.message{padding:.71428571rem 1.14285714rem}@media only screen and (max-width:767px){.ui.selection.dropdown .menu{max-height:7.58571429rem}}@media only screen and (min-width:768px){.ui.selection.dropdown .menu{max-height:10.11428571rem}}@media only screen and (min-width:992px){.ui.selection.dropdown .menu{max-height:15.17142857rem}}@media only screen and (min-width:1920px){.ui.selection.dropdown .menu{max-height:20.22857143rem}}.ui.selection.dropdown .menu>.item{border-top:1px solid #FAFAFA;padding:.71428571rem 1.14285714rem!important;white-space:normal;word-wrap:normal}.ui.selection.dropdown:hover{border-color:rgba(34,36,38,.35);box-shadow:none}.ui.selection.active.dropdown,.ui.selection.active.dropdown .menu{border-color:#96C8DA;box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.selection.dropdown:focus{border-color:#96C8DA;box-shadow:none}.ui.selection.dropdown:focus .menu{border-color:#96C8DA;box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.selection.visible.dropdown>.text:not(.default){font-weight:400;color:rgba(0,0,0,.8)}.ui.selection.active.dropdown:hover,.ui.selection.active.dropdown:hover .menu{border-color:#96C8DA;box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.active.selection.dropdown>.dropdown.icon,.ui.visible.selection.dropdown>.dropdown.icon{opacity:1;z-index:3}.ui.active.selection.dropdown{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.ui.search.dropdown{min-width:''}.ui.search.dropdown>input.search{background:none!important;border:none!important;box-shadow:none!important;cursor:pointer;top:0;left:0;width:100%;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0);padding:inherit;position:absolute;z-index:2}.ui.search.dropdown>.text{cursor:text;position:relative;z-index:3}.ui.search.selection.dropdown>input.search{line-height:1.2142em;padding:.67861429em 2.6em .67861429em 1em}.ui.search.dropdown.active>input.search,.ui.search.dropdown.visible>input.search{cursor:auto}.ui.search.dropdown.active>.text,.ui.search.dropdown.visible>.text{pointer-events:none}.ui.active.search.dropdown input.search:focus+.text .flag,.ui.active.search.dropdown input.search:focus+.text .icon{opacity:.45}.ui.active.search.dropdown input.search:focus+.text{color:rgba(0,0,0,.4)!important}.ui.search.dropdown .menu{overflow-x:hidden;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch}@media only screen and (max-width:767px){.ui.search.dropdown .menu{max-height:7.58571429rem}}@media only screen and (min-width:768px){.ui.search.dropdown .menu{max-height:10.11428571rem}}@media only screen and (min-width:992px){.ui.search.dropdown .menu{max-height:15.17142857rem}}@media only screen and (min-width:1920px){.ui.search.dropdown .menu{max-height:20.22857143rem}}.ui.multiple.dropdown{padding:.22620476em 2.6em .22620476em .28571429em}.ui.multiple.dropdown .menu{cursor:auto}.ui.multiple.search.dropdown,.ui.multiple.search.dropdown>input.search{cursor:text}.ui.multiple.dropdown>.label{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;vertical-align:top;white-space:normal;font-size:1em;padding:.35714286em .71428571em;margin:.21428571em .28571429rem .21428571em 0;box-shadow:0 0 0 1px rgba(34,36,38,.15) inset}.ui.multiple.dropdown .dropdown.icon{margin:0 -.71428571em 0 0;padding:.5em}.ui.multiple.dropdown>.text{position:static;padding:0;max-width:100%;margin:.45240952em 0 .45240952em .71428571em;line-height:1.2142em}.ui.multiple.dropdown>.label~.text{display:none}.ui.multiple.search.dropdown>.text{display:inline-block;position:absolute;top:0;left:0;padding:inherit;margin:.45240952em 0 .45240952em .71428571em;line-height:1.2142em}.ui.multiple.search.dropdown>.label~.text{display:none}.ui.multiple.search.dropdown>input.search{position:static;padding:0;max-width:100%;margin:.45240952em 0 .45240952em .71428571em;width:2.2em;line-height:1.2142em}.ui.inline.dropdown{cursor:pointer;display:inline-block;color:inherit}.ui.inline.dropdown .dropdown.icon{margin:0 .5em 0 .25em;vertical-align:baseline}.ui.inline.dropdown>.text{font-weight:700}.ui.inline.dropdown .menu{cursor:auto;margin-top:.25em;border-radius:.28571429rem}.ui.dropdown .menu .active.item{background:0 0;font-weight:700;color:rgba(0,0,0,.95);box-shadow:none;z-index:12}.ui.dropdown .menu>.item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);z-index:13}.ui.loading.dropdown>i.icon:after,.ui.loading.dropdown>i.icon:before{left:30%!important}.ui.loading.dropdown>i.icon{top:50%!important}.ui.multiple.loading.dropdown>i.icon:after,.ui.multiple.loading.dropdown>i.icon:before{top:0!important;left:0!important}.ui.loading.dropdown>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.dropdown>i.icon:after{position:absolute;content:'';top:50%;left:50%;box-shadow:0 0 0 1px transparent;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;-webkit-animation:dropdown-spin .6s linear;animation:dropdown-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em}.ui.loading.dropdown.button>i.icon:after,.ui.loading.dropdown.button>i.icon:before{display:none}@-webkit-keyframes dropdown-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dropdown-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.default.dropdown:hover>.text,.ui.default.dropdown>.text,.ui.dropdown:hover>.default.text,.ui.dropdown>.default.text{color:rgba(179,179,179,.7)}.ui.loading.dropdown>.text{-webkit-transition:none;transition:none}.ui.dropdown .loading.menu{display:block;visibility:hidden;z-index:-1}.ui.dropdown .menu .selected.item,.ui.dropdown.selected{background:rgba(0,0,0,.03);color:rgba(0,0,0,.95)}.ui.dropdown>.filtered.text{visibility:hidden}.ui.dropdown .filtered.item{display:none!important}.ui.dropdown.error,.ui.dropdown.error>.default.text,.ui.dropdown.error>.text{color:#9F3A38}.ui.selection.dropdown.error{background:#FFF6F6;border-color:#E0B4B4}.ui.dropdown.error>.menu,.ui.dropdown.error>.menu .menu,.ui.selection.dropdown.error:hover{border-color:#E0B4B4}.ui.dropdown.error>.menu>.item{color:#9F3A38}.ui.multiple.selection.error.dropdown>.label{border-color:#E0B4B4}.ui.dropdown.error>.menu>.item:hover{background-color:#FFF2F2}.ui.dropdown.error>.menu .active.item{background-color:#FDCFCF}.ui.disabled.dropdown,.ui.dropdown .menu>.disabled.item{cursor:default;pointer-events:none;opacity:.45}.ui.dropdown .menu{left:0}.ui.dropdown .menu .right.menu,.ui.dropdown .right.menu>.menu{left:100%!important;right:auto!important;border-radius:.28571429rem!important}.ui.dropdown .menu .left.menu,.ui.dropdown>.left.menu .menu{left:auto!important;right:100%!important;border-radius:.28571429rem!important}.ui.dropdown .item .left.dropdown.icon,.ui.dropdown .left.menu .item .dropdown.icon{width:auto;float:left;margin:0 .71428571rem 0 0}.ui.dropdown .item .left.dropdown.icon+.text,.ui.dropdown .left.menu .item .dropdown.icon+.text{margin-left:1em}.ui.upward.dropdown>.menu{top:auto;bottom:100%;box-shadow:0 0 3px 0 rgba(0,0,0,.08);border-radius:.28571429rem .28571429rem 0 0}.ui.dropdown .upward.menu{top:auto!important;bottom:0!important}.ui.simple.upward.active.dropdown,.ui.simple.upward.dropdown:hover{border-radius:.28571429rem .28571429rem 0 0!important}.ui.upward.dropdown.button:not(.pointing):not(.floating).active{border-radius:.28571429rem .28571429rem 0 0}.ui.upward.selection.dropdown .menu{border-top-width:1px!important;border-bottom-width:0!important;box-shadow:0 -2px 3px 0 rgba(0,0,0,.08)}.ui.upward.selection.dropdown:hover{box-shadow:0 0 2px 0 rgba(0,0,0,.05)}.ui.active.upward.selection.dropdown{border-radius:0 0 .28571429rem .28571429rem!important}.ui.upward.selection.dropdown.visible{box-shadow:0 0 3px 0 rgba(0,0,0,.08);border-radius:0 0 .28571429rem .28571429rem!important}.ui.upward.active.selection.dropdown:hover{box-shadow:0 0 3px 0 rgba(0,0,0,.05)}.ui.upward.active.selection.dropdown:hover .menu{box-shadow:0 -2px 3px 0 rgba(0,0,0,.08)}.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{overflow-x:hidden;overflow-y:auto}.ui.scrolling.dropdown .menu{overflow-x:hidden;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch;min-width:100%!important;width:auto!important}.ui.dropdown .scrolling.menu{position:static;overflow-y:auto;border:none;box-shadow:none!important;border-radius:0!important;margin:0!important;min-width:100%!important;width:auto!important;border-top:1px solid rgba(34,36,38,.15)}.ui.dropdown .scrolling.menu>.item.item.item,.ui.scrolling.dropdown .menu .item.item.item{border-top:none;padding-right:calc(1.14285714rem + 17px)!important}.ui.dropdown .scrolling.menu .item:first-child,.ui.scrolling.dropdown .menu .item:first-child{border-top:none}.ui.dropdown>.animating.menu .scrolling.menu,.ui.dropdown>.visible.menu .scrolling.menu{display:block}@media all and (-ms-high-contrast:none){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{min-width:calc(100% - 17px)}}@media only screen and (max-width:767px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:9.71428571rem}}.ui.simple.dropdown .menu:after,.ui.simple.dropdown .menu:before{display:none}.ui.simple.dropdown .menu{position:absolute;display:block;overflow:hidden;top:-9999px!important;opacity:0;width:0;height:0;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.simple.active.dropdown,.ui.simple.dropdown:hover{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.ui.simple.active.dropdown>.menu,.ui.simple.dropdown:hover>.menu{overflow:visible;width:auto;height:auto;top:100%!important;opacity:1}.ui.simple.dropdown:hover>.menu>.item:hover>.menu,.ui.simple.dropdown>.menu>.item:active>.menu{overflow:visible;width:auto;height:auto;top:0!important;left:100%!important;opacity:1}.ui.simple.disabled.dropdown:hover .menu{display:none;height:0;width:0;overflow:hidden}.ui.simple.visible.dropdown>.menu{display:block}.ui.fluid.dropdown{display:block;width:100%;min-width:0}.ui.fluid.dropdown>.dropdown.icon{float:right}.ui.floating.dropdown .menu{left:0;right:auto;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08)!important;border-radius:.28571429rem!important}.ui.floating.dropdown>.menu{margin-top:.5em!important;border-radius:.28571429rem!important}.ui.pointing.dropdown>.menu{top:100%;margin-top:.71428571rem;border-radius:.28571429rem}.ui.pointing.dropdown>.menu:after{display:block;position:absolute;pointer-events:none;content:'';visibility:visible;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);width:.5em;height:.5em;box-shadow:-1px -1px 0 1px rgba(34,36,38,.15);background:#FFF;z-index:2;top:-.25em;left:50%;margin:0 0 0 -.25em}.ui.top.left.pointing.dropdown>.menu{top:100%;bottom:auto;left:0;right:auto;margin:1em 0 0}.ui.top.left.pointing.dropdown>.menu:after{top:-.25em;left:1em;right:auto;margin:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.ui.top.right.pointing.dropdown>.menu{top:100%;bottom:auto;right:0;left:auto;margin:1em 0 0}.ui.top.right.pointing.dropdown>.menu:after{top:-.25em;left:auto;right:1em;margin:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.ui.left.pointing.dropdown>.menu{top:0;left:100%;right:auto;margin:0 0 0 1em}.ui.left.pointing.dropdown>.menu:after{top:1em;left:-.25em;margin:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.ui.right.pointing.dropdown>.menu{top:0;left:auto;right:100%;margin:0 1em 0 0}.ui.right.pointing.dropdown>.menu:after{top:1em;left:auto;right:-.25em;margin:0;-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.ui.bottom.pointing.dropdown>.menu{top:auto;bottom:100%;left:0;right:auto;margin:0 0 1em}.ui.bottom.pointing.dropdown>.menu:after{top:auto;bottom:-.25em;right:auto;margin:0;-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.ui.bottom.pointing.dropdown>.menu .menu{top:auto!important;bottom:0!important}.ui.bottom.left.pointing.dropdown>.menu{left:0;right:auto}.ui.bottom.left.pointing.dropdown>.menu:after{left:1em;right:auto}.ui.bottom.right.pointing.dropdown>.menu{right:0;left:auto}.ui.bottom.right.pointing.dropdown>.menu:after{left:auto;right:1em}.ui.upward.pointing.dropdown>.menu,.ui.upward.top.pointing.dropdown>.menu{top:auto;bottom:100%;margin:0 0 .71428571rem;border-radius:.28571429rem}.ui.upward.pointing.dropdown>.menu:after,.ui.upward.top.pointing.dropdown>.menu:after{top:100%;bottom:auto;box-shadow:1px 1px 0 1px rgba(34,36,38,.15);margin:-.25em 0 0}@font-face{font-family:Dropdown;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfuIIAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zjo82LgAAAFwAAABVGhlYWQAQ88bAAACxAAAADZoaGVhAwcB6QAAAvwAAAAkaG10eAS4ABIAAAMgAAAAIGxvY2EBNgDeAAADQAAAABJtYXhwAAoAFgAAA1QAAAAgbmFtZVcZpu4AAAN0AAABRXBvc3QAAwAAAAAEvAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDX//3//wAB/+MPLQADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAIABJQElABMAABM0NzY3BTYXFhUUDwEGJwYvASY1AAUGBwEACAUGBoAFCAcGgAUBEgcGBQEBAQcECQYHfwYBAQZ/BwYAAQAAAG4BJQESABMAADc0PwE2MzIfARYVFAcGIyEiJyY1AAWABgcIBYAGBgUI/wAHBgWABwaABQWABgcHBgUFBgcAAAABABIASQC3AW4AEwAANzQ/ATYXNhcWHQEUBwYnBi8BJjUSBoAFCAcFBgYFBwgFgAbbBwZ/BwEBBwQJ/wgEBwEBB38GBgAAAAABAAAASQClAW4AEwAANxE0NzYzMh8BFhUUDwEGIyInJjUABQYHCAWABgaABQgHBgVbAQAIBQYGgAUIBwWABgYFBwAAAAEAAAABAADZuaKOXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAAAAACgAUAB4AQgBkAIgAqgAAAAEAAAAIABQAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgA0AGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgA0AGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVwAAoAAAAABSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAdkAAAHZLDXE/09TLzIAAALQAAAAYAAAAGAIIweQY21hcAAAAzAAAABMAAAATA9+4ghnYXNwAAADfAAAAAgAAAAIAAAAEGhlYWQAAAOEAAAANgAAADYAQ88baGhlYQAAA7wAAAAkAAAAJAMHAelobXR4AAAD4AAAACAAAAAgBLgAEm1heHAAAAQAAAAABgAAAAYACFAAbmFtZQAABAgAAAFFAAABRVcZpu5wb3N0AAAFUAAAACAAAAAgAAMAAAEABAQAAQEBCGljb21vb24AAQIAAQA6+BwC+BsD+BgEHgoAGVP/i4seCgAZU/+LiwwHi2v4lPh0BR0AAACIDx0AAACNER0AAAAJHQAAAdASAAkBAQgPERMWGyAlKmljb21vb25pY29tb29udTB1MXUyMHVGMEQ3dUYwRDh1RjBEOXVGMERBAAACAYkABgAIAgABAAQABwAKAA0AVgCfAOgBL/yUDvyUDvyUDvuUDvtvi/emFYuQjZCOjo+Pj42Qiwj3lIsFkIuQiY6Hj4iNhouGi4aJh4eHCPsU+xQFiIiGiYaLhouHjYeOCPsU9xQFiI+Jj4uQCA77b4v3FBWLkI2Pjo8I9xT3FAWPjo+NkIuQi5CJjogI9xT7FAWPh42Hi4aLhomHh4eIiIaJhosI+5SLBYaLh42HjoiPiY+LkAgO+92d928Vi5CNkI+OCPcU9xQFjo+QjZCLkIuPiY6Hj4iNhouGCIv7lAWLhomHh4iIh4eJhouGi4aNiI8I+xT3FAWHjomPi5AIDvvdi+YVi/eUBYuQjZCOjo+Pj42Qi5CLkImOhwj3FPsUBY+IjYaLhouGiYeHiAj7FPsUBYiHhomGi4aLh42Hj4iOiY+LkAgO+JQU+JQViwwKAAAAAAMCAAGQAAUAAAFMAWYAAABHAUwBZgAAAPUAGQCEAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8NoB4P/g/+AB4AAgAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDw2v/9//8AAAAAACDw1//9//8AAf/jDy0AAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAA5emozXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAUAAACAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoANABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoANABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');font-weight:400;font-style:normal}.ui.dropdown>.dropdown.icon{font-family:Dropdown;line-height:1;height:1em;-webkit-backface-visibility:hidden;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center;width:auto}.ui.dropdown>.dropdown.icon:before{content:'\f0d7'}.ui.dropdown .menu .item .dropdown.icon:before{content:'\f0da'}.ui.dropdown .item .left.dropdown.icon:before,.ui.dropdown .left.menu .item .dropdown.icon:before{content:"\f0d9"}.ui.vertical.menu .dropdown.item>.dropdown.icon:before{content:"\f0da"}.ui.embed{position:relative;max-width:100%;height:0;overflow:hidden;background:#DCDDDE;padding-bottom:56.25%}.ui.embed embed,.ui.embed iframe,.ui.embed object{position:absolute;border:none;width:100%;height:100%;top:0;left:0;margin:0;padding:0}.ui.embed>.embed{display:none}.ui.embed>.placeholder{position:absolute;cursor:pointer;top:0;left:0;display:block;width:100%;height:100%;background-color:radial-gradient(transparent 45%,rgba(0,0,0,.3))}.ui.embed>.icon{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;z-index:2}.ui.embed>.icon:after{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3;content:'';background:-webkit-radial-gradient(transparent 45%,rgba(0,0,0,.3));background:radial-gradient(transparent 45%,rgba(0,0,0,.3));opacity:.5;-webkit-transition:opacity .5s ease;transition:opacity .5s ease}.ui.embed>.icon:before{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);color:#FFF;font-size:6rem;text-shadow:0 2px 10px rgba(34,36,38,.2);-webkit-transition:opacity .5s ease,color .5s ease;transition:opacity .5s ease,color .5s ease;z-index:10}.ui.embed .icon:hover:after{background:-webkit-radial-gradient(transparent 45%,rgba(0,0,0,.3));background:radial-gradient(transparent 45%,rgba(0,0,0,.3));opacity:1}.ui.embed .icon:hover:before{color:#FFF}.ui.active.embed>.icon,.ui.active.embed>.placeholder{display:none}.ui.active.embed>.embed{display:block}.ui.square.embed{padding-bottom:100%}.ui[class*="4:3"].embed{padding-bottom:75%}.ui[class*="16:9"].embed{padding-bottom:56.25%}.ui[class*="21:9"].embed{padding-bottom:42.85714286%}.ui.modal{display:none;position:fixed;z-index:1001;top:50%;left:50%;text-align:left;background:#FFF;border:none;box-shadow:1px 3px 3px 0 rgba(0,0,0,.2),1px 3px 15px 2px rgba(0,0,0,.2);-webkit-transform-origin:50% 25%;-ms-transform-origin:50% 25%;transform-origin:50% 25%;border-radius:.28571429rem;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;will-change:top,left,margin,transform,opacity}.ui.modal>.icon:first-child+*,.ui.modal>:first-child:not(.icon){border-top-left-radius:.28571429rem;border-top-right-radius:.28571429rem}.ui.modal>:last-child{border-bottom-left-radius:.28571429rem;border-bottom-right-radius:.28571429rem}.ui.modal>.close{cursor:pointer;position:absolute;top:-2.5rem;right:-2.5rem;z-index:1;opacity:.8;font-size:1.25em;color:#FFF;width:2.25rem;height:2.25rem;padding:.625rem 0 0}.ui.modal>.close:hover{opacity:1}.ui.modal>.header{display:block;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;background:#FFF;margin:0;padding:1.25rem 1.5rem;box-shadow:none;color:rgba(0,0,0,.85);border-bottom:1px solid rgba(34,36,38,.15)}.ui.modal>.header:not(.ui){font-size:1.42857143rem;line-height:1.2857em;font-weight:700}.ui.modal>.content{display:block;width:100%;font-size:1em;line-height:1.4;padding:1.5rem;background:#FFF}.ui.modal>.image.content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.ui.modal>.content>.image{display:block;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;width:'';-webkit-align-self:top;-ms-flex-item-align:top;align-self:top}.ui.modal>[class*="top aligned"]{-webkit-align-self:top;-ms-flex-item-align:top;align-self:top}.ui.modal>[class*="middle aligned"]{-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle}.ui.modal>[class*=stretched]{-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch}.ui.modal>.content>.description{display:block;-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;min-width:0;-webkit-align-self:top;-ms-flex-item-align:top;align-self:top}.ui.modal>.content>.icon+.description,.ui.modal>.content>.image+.description{-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;min-width:'';width:auto;padding-left:2em}.ui.modal>.content>.image>i.icon{margin:0;opacity:1;width:auto;line-height:1;font-size:8rem}.ui.modal>.actions{background:#F9FAFB;padding:1rem;border-top:1px solid rgba(34,36,38,.15);text-align:right}.ui.modal .actions>.button{margin-left:.75em}@media only screen and (max-width:767px){.ui.modal{width:95%;margin:0 0 0 -47.5%}}@media only screen and (min-width:768px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:14.57142857rem}.ui.modal{width:88%;margin:0 0 0 -44%}}@media only screen and (min-width:992px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:19.42857143rem}.ui.modal{width:850px;margin:0 0 0 -425px}}@media only screen and (min-width:1200px){.ui.modal{width:900px;margin:0 0 0 -450px}}@media only screen and (min-width:1920px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:19.42857143rem}.ui.modal{width:950px;margin:0 0 0 -475px}}@media only screen and (max-width:991px){.ui.modal>.header{padding-right:2.25rem}.ui.modal>.close{top:1.0535rem;right:1rem;color:rgba(0,0,0,.87)}}@media only screen and (max-width:767px){.ui.modal>.header{padding:.75rem 2.25rem .75rem 1rem!important}.ui.modal>.content{display:block;padding:1rem!important}.ui.modal>.close{top:.5rem!important;right:.5rem!important}.ui.modal .image.content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.modal .content>.image{display:block;max-width:100%;margin:0 auto!important;text-align:center;padding:0 0 1rem!important}.ui.modal>.content>.image>i.icon{font-size:5rem;text-align:center}.ui.modal .content>.description{display:block;width:100%!important;margin:0!important;padding:1rem 0!important;box-shadow:none}.ui.modal>.actions{padding:1rem 1rem 0!important}.ui.modal .actions>.button,.ui.modal .actions>.buttons{margin-bottom:1rem}}.ui.inverted.dimmer>.ui.modal{box-shadow:1px 3px 10px 2px rgba(0,0,0,.2)}.ui.basic.modal{background-color:transparent;border:none;border-radius:0;box-shadow:none!important;color:#FFF}.ui.basic.modal>.actions,.ui.basic.modal>.content,.ui.basic.modal>.header{background-color:transparent}.ui.basic.modal>.header{color:#FFF}.ui.basic.modal>.close{top:1rem;right:1.5rem}.ui.inverted.dimmer>.basic.modal{color:rgba(0,0,0,.87)}.ui.inverted.dimmer>.ui.basic.modal>.header{color:rgba(0,0,0,.85)}.ui.active.modal{display:block}.scrolling.dimmable.dimmed{overflow:hidden}.scrolling.dimmable.dimmed>.dimmer{overflow:auto;-webkit-overflow-scrolling:touch}.scrolling.dimmable>.dimmer{position:fixed}.modals.dimmer .ui.scrolling.modal{position:static!important;margin:3.5rem auto!important}.scrolling.undetached.dimmable.dimmed{overflow:auto;-webkit-overflow-scrolling:touch}.scrolling.undetached.dimmable.dimmed>.dimmer{overflow:hidden}.scrolling.undetached.dimmable .ui.scrolling.modal{position:absolute;left:50%;margin-top:3.5rem!important}.undetached.dimmable.dimmed>.pusher{z-index:auto}@media only screen and (max-width:991px){.ui.basic.modal>.close{color:#FFF}.modals.dimmer .ui.scrolling.modal{margin-top:1rem!important;margin-bottom:1rem!important}}.ui.fullscreen.modal{width:95%!important;left:2.5%!important;margin:1em auto}.ui.fullscreen.scrolling.modal{left:0!important}.ui.fullscreen.modal>.header{padding-right:2.25rem}.ui.fullscreen.modal>.close{top:1.0535rem;right:1rem;color:rgba(0,0,0,.87)}.ui.modal{font-size:1rem}.ui.small.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width:767px){.ui.small.modal{width:95%;margin:0 0 0 -47.5%}}@media only screen and (min-width:768px){.ui.small.modal{width:70.4%;margin:0 0 0 -35.2%}}@media only screen and (min-width:992px){.ui.small.modal{width:680px;margin:0 0 0 -340px}}@media only screen and (min-width:1200px){.ui.small.modal{width:720px;margin:0 0 0 -360px}}@media only screen and (min-width:1920px){.ui.small.modal{width:760px;margin:0 0 0 -380px}}.ui.large.modal>.header{font-size:1.6em}@media only screen and (max-width:767px){.ui.large.modal{width:95%;margin:0 0 0 -47.5%}}@media only screen and (min-width:768px){.ui.large.modal{width:88%;margin:0 0 0 -44%}}@media only screen and (min-width:992px){.ui.large.modal{width:1020px;margin:0 0 0 -510px}}@media only screen and (min-width:1200px){.ui.large.modal{width:1080px;margin:0 0 0 -540px}}@media only screen and (min-width:1920px){.ui.large.modal{width:1140px;margin:0 0 0 -570px}}.ui.nag{display:none;opacity:.95;position:relative;top:0;left:0;z-index:999;min-height:0;width:100%;margin:0;padding:.75em 1em;background:#555;box-shadow:0 1px 2px 0 rgba(0,0,0,.2);font-size:1rem;text-align:center;color:rgba(0,0,0,.87);border-radius:0 0 .28571429rem .28571429rem;-webkit-transition:.2s background ease;transition:.2s background ease}a.ui.nag{cursor:pointer}.ui.nag>.title{display:inline-block;margin:0 .5em;color:#FFF}.ui.nag>.close.icon{cursor:pointer;opacity:.4;position:absolute;top:50%;right:1em;font-size:1em;margin:-.5em 0 0;color:#FFF;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}.ui.nag:hover{background:#555;opacity:1}.ui.nag .close:hover{opacity:1}.ui.overlay.nag{position:absolute;display:block}.ui.fixed.nag{position:fixed}.ui.bottom.nag,.ui.bottom.nags{border-radius:.28571429rem .28571429rem 0 0;top:auto;bottom:0}.ui.inverted.nag,.ui.inverted.nags .nag{background-color:#F3F4F5;color:rgba(0,0,0,.85)}.ui.inverted.nag .close,.ui.inverted.nag .title,.ui.inverted.nags .nag .close,.ui.inverted.nags .nag .title{color:rgba(0,0,0,.4)}.ui.nags .nag{border-radius:0!important}.ui.nags .nag:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui.bottom.nags .nag:last-child{border-radius:.28571429rem .28571429rem 0 0}.ui.popup{display:none;position:absolute;top:0;right:0;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;z-index:1900;border:1px solid #D4D4D5;line-height:1.4285em;max-width:250px;background:#FFF;padding:.833em 1em;font-weight:400;font-style:normal;color:rgba(0,0,0,.87);border-radius:.28571429rem;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08);margin:0}.ui.popup>.header{padding:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.125em;line-height:1.2;font-weight:700}.ui.popup>.header+.content{padding-top:.5em}.ui.popup:before{position:absolute;content:'';width:.75em;height:.75em;background:#FFF;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:2;box-shadow:1px 1px 0 0 #bababc}.ui.top.popup{margin:0 0 .75em}.ui.top.left.popup{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom}.ui.top.center.popup{-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}.ui.top.right.popup{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom}.ui.left.center.popup{margin:0 .75em 0 0;-webkit-transform-origin:right 50%;-ms-transform-origin:right 50%;transform-origin:right 50%}.ui.right.center.popup{margin:0 0 0 .75em;-webkit-transform-origin:left 50%;-ms-transform-origin:left 50%;transform-origin:left 50%}.ui.bottom.popup{margin:.75em 0 0}.ui.bottom.left.popup{-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top}.ui.bottom.center.popup{-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top}.ui.bottom.right.popup{-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top;margin-right:0}.ui.bottom.center.popup:before{margin-left:-.325em;top:-.325em;left:50%;right:auto;bottom:auto;box-shadow:-1px -1px 0 0 #bababc}.ui.bottom.left.popup{margin-left:0}.ui.bottom.left.popup:before{top:-.325em;left:1em;right:auto;bottom:auto;margin-left:0;box-shadow:-1px -1px 0 0 #bababc}.ui.bottom.right.popup:before{top:-.325em;right:1em;bottom:auto;left:auto;margin-left:0;box-shadow:-1px -1px 0 0 #bababc}.ui.top.center.popup:before{top:auto;right:auto;bottom:-.325em;left:50%;margin-left:-.325em}.ui.top.left.popup{margin-left:0}.ui.top.left.popup:before{bottom:-.325em;left:1em;top:auto;right:auto;margin-left:0}.ui.top.right.popup{margin-right:0}.ui.top.right.popup:before{bottom:-.325em;right:1em;top:auto;left:auto;margin-left:0}.ui.left.center.popup:before{top:50%;right:-.325em;bottom:auto;left:auto;margin-top:-.325em;box-shadow:1px -1px 0 0 #bababc}.ui.right.center.popup:before{top:50%;left:-.325em;bottom:auto;right:auto;margin-top:-.325em;box-shadow:-1px 1px 0 0 #bababc}.ui.bottom.popup:before,.ui.left.center.popup:before,.ui.right.center.popup:before,.ui.top.popup:before{background:#FFF}.ui.inverted.bottom.popup:before,.ui.inverted.left.center.popup:before,.ui.inverted.right.center.popup:before,.ui.inverted.top.popup:before{background:#1B1C1D}.ui.popup>.ui.grid:not(.padded){width:calc(100% + 1.75rem);margin:-.7rem -.875rem}.ui.loading.popup{display:block;visibility:hidden;z-index:-1}.ui.animating.popup,.ui.visible.popup{display:block}.ui.visible.popup{-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.ui.basic.popup:before{display:none}.ui.wide.popup{max-width:350px}.ui[class*="very wide"].popup{max-width:550px}@media only screen and (max-width:767px){.ui.wide.popup,.ui[class*="very wide"].popup{max-width:250px}}.ui.fluid.popup{width:100%;max-width:none}.ui.inverted.popup{background:#1B1C1D;color:#FFF;border:none;box-shadow:none}.ui.inverted.popup .header{background-color:none;color:#FFF}.ui.inverted.popup:before{background-color:#1B1C1D;box-shadow:none!important}.ui.flowing.popup{max-width:none}.ui.mini.popup{font-size:.71428571rem}.ui.tiny.popup{font-size:.85714286rem}.ui.small.popup{font-size:.92857143rem}.ui.popup{font-size:1rem}.ui.large.popup{font-size:1.14285714rem}.ui.huge.popup{font-size:1.42857143rem}.ui.progress{position:relative;display:block;max-width:100%;border:none;margin:1em 0 2.5em;box-shadow:none;background:rgba(0,0,0,.1);padding:0;border-radius:.28571429rem}.ui.progress:first-child{margin:0 0 2.5em}.ui.progress:last-child{margin:0 0 1.5em}.ui.progress .bar{display:block;line-height:1;position:relative;width:0;min-width:2em;background:#888;border-radius:.28571429rem;-webkit-transition:width .1s ease,background-color .1s ease;transition:width .1s ease,background-color .1s ease}.ui.progress .bar>.progress{white-space:nowrap;position:absolute;width:auto;font-size:.92857143em;top:50%;right:.5em;left:auto;bottom:auto;color:rgba(255,255,255,.7);text-shadow:none;margin-top:-.5em;font-weight:700;text-align:left}.ui.progress>.label{position:absolute;width:100%;font-size:1em;top:100%;right:auto;left:0;bottom:auto;color:rgba(0,0,0,.87);font-weight:700;text-shadow:none;margin-top:.2em;text-align:center;-webkit-transition:color .4s ease;transition:color .4s ease}.ui.indicating.progress[data-percent^="1"] .bar,.ui.indicating.progress[data-percent^="2"] .bar{background-color:#D95C5C}.ui.indicating.progress[data-percent^="3"] .bar{background-color:#EFBC72}.ui.indicating.progress[data-percent^="4"] .bar,.ui.indicating.progress[data-percent^="5"] .bar{background-color:#E6BB48}.ui.indicating.progress[data-percent^="6"] .bar{background-color:#DDC928}.ui.indicating.progress[data-percent^="7"] .bar,.ui.indicating.progress[data-percent^="8"] .bar{background-color:#B4D95C}.ui.indicating.progress[data-percent^="9"] .bar,.ui.indicating.progress[data-percent^="100"] .bar{background-color:#66DA81}.ui.indicating.progress[data-percent^="1"] .label,.ui.indicating.progress[data-percent^="2"] .label,.ui.indicating.progress[data-percent^="3"] .label,.ui.indicating.progress[data-percent^="4"] .label,.ui.indicating.progress[data-percent^="5"] .label,.ui.indicating.progress[data-percent^="6"] .label,.ui.indicating.progress[data-percent^="7"] .label,.ui.indicating.progress[data-percent^="8"] .label,.ui.indicating.progress[data-percent^="9"] .label,.ui.indicating.progress[data-percent^="100"] .label{color:rgba(0,0,0,.87)}.ui.indicating.progress[data-percent="1"] .bar,.ui.indicating.progress[data-percent="2"] .bar,.ui.indicating.progress[data-percent="3"] .bar,.ui.indicating.progress[data-percent="4"] .bar,.ui.indicating.progress[data-percent="5"] .bar,.ui.indicating.progress[data-percent="6"] .bar,.ui.indicating.progress[data-percent="7"] .bar,.ui.indicating.progress[data-percent="8"] .bar,.ui.indicating.progress[data-percent="9"] .bar{background-color:#D95C5C}.ui.indicating.progress[data-percent="1"] .label,.ui.indicating.progress[data-percent="2"] .label,.ui.indicating.progress[data-percent="3"] .label,.ui.indicating.progress[data-percent="4"] .label,.ui.indicating.progress[data-percent="5"] .label,.ui.indicating.progress[data-percent="6"] .label,.ui.indicating.progress[data-percent="7"] .label,.ui.indicating.progress[data-percent="8"] .label,.ui.indicating.progress[data-percent="9"] .label{color:rgba(0,0,0,.87)}.ui.indicating.progress.success .label{color:#1A531B}.ui.progress.success .bar{background-color:#21BA45!important}.ui.progress.success .bar,.ui.progress.success .bar::after{-webkit-animation:none!important;animation:none!important}.ui.progress.success>.label{color:#1A531B}.ui.progress.warning .bar{background-color:#F2C037!important}.ui.progress.warning .bar,.ui.progress.warning .bar::after{-webkit-animation:none!important;animation:none!important}.ui.progress.warning>.label{color:#794B02}.ui.progress.error .bar{background-color:#DB2828!important}.ui.progress.error .bar,.ui.progress.error .bar::after{-webkit-animation:none!important;animation:none!important}.ui.progress.error>.label{color:#912D2B}.ui.active.progress .bar{position:relative;min-width:2em}.ui.active.progress .bar::after{content:'';opacity:0;position:absolute;top:0;left:0;right:0;bottom:0;background:#FFF;border-radius:.28571429rem;-webkit-animation:progress-active 2s ease infinite;animation:progress-active 2s ease infinite}@-webkit-keyframes progress-active{0%{opacity:.3;width:0}100%{opacity:0;width:100%}}@keyframes progress-active{0%{opacity:.3;width:0}100%{opacity:0;width:100%}}.ui.disabled.progress{opacity:.35}.ui.disabled.progress .bar,.ui.disabled.progress .bar::after{-webkit-animation:none!important;animation:none!important}.ui.inverted.progress{background:rgba(255,255,255,.08);border:none}.ui.inverted.progress .bar{background:#888}.ui.inverted.progress .bar>.progress{color:#F9FAFB}.ui.inverted.progress>.label{color:#FFF}.ui.inverted.progress.success>.label{color:#21BA45}.ui.inverted.progress.warning>.label{color:#F2C037}.ui.inverted.progress.error>.label{color:#DB2828}.ui.progress.attached{background:0 0;position:relative;border:none;margin:0}.ui.progress.attached,.ui.progress.attached .bar{display:block;height:.2rem;padding:0;overflow:hidden;border-radius:0 0 .28571429rem .28571429rem}.ui.progress.attached .bar{border-radius:0}.ui.progress.top.attached,.ui.progress.top.attached .bar{top:0;border-radius:.28571429rem .28571429rem 0 0}.ui.progress.top.attached .bar{border-radius:0}.ui.card>.ui.attached.progress,.ui.segment>.ui.attached.progress{position:absolute;top:auto;left:0;bottom:100%;width:100%}.ui.card>.ui.bottom.attached.progress,.ui.segment>.ui.bottom.attached.progress{top:100%;bottom:auto}.ui.red.progress .bar{background-color:#DB2828}.ui.red.inverted.progress .bar{background-color:#FF695E}.ui.orange.progress .bar{background-color:#F2711C}.ui.orange.inverted.progress .bar{background-color:#FF851B}.ui.yellow.progress .bar{background-color:#FBBD08}.ui.yellow.inverted.progress .bar{background-color:#FFE21F}.ui.olive.progress .bar{background-color:#B5CC18}.ui.olive.inverted.progress .bar{background-color:#D9E778}.ui.green.progress .bar{background-color:#21BA45}.ui.green.inverted.progress .bar{background-color:#2ECC40}.ui.teal.progress .bar{background-color:#00B5AD}.ui.teal.inverted.progress .bar{background-color:#6DFFFF}.ui.blue.progress .bar{background-color:#2185D0}.ui.blue.inverted.progress .bar{background-color:#54C8FF}.ui.violet.progress .bar{background-color:#6435C9}.ui.violet.inverted.progress .bar{background-color:#A291FB}.ui.purple.progress .bar{background-color:#A333C8}.ui.purple.inverted.progress .bar{background-color:#DC73FF}.ui.pink.progress .bar{background-color:#E03997}.ui.pink.inverted.progress .bar{background-color:#FF8EDF}.ui.brown.progress .bar{background-color:#A5673F}.ui.brown.inverted.progress .bar{background-color:#D67C1C}.ui.grey.progress .bar{background-color:#767676}.ui.grey.inverted.progress .bar{background-color:#DCDDDE}.ui.black.progress .bar{background-color:#1B1C1D}.ui.black.inverted.progress .bar{background-color:#545454}.ui.tiny.progress{font-size:.85714286rem}.ui.tiny.progress .bar{height:.5em}.ui.small.progress{font-size:.92857143rem}.ui.small.progress .bar{height:1em}.ui.progress{font-size:1rem}.ui.progress .bar{height:1.75em}.ui.large.progress{font-size:1.14285714rem}.ui.large.progress .bar{height:2.5em}.ui.big.progress{font-size:1.28571429rem}.ui.big.progress .bar{height:3.5em}.ui.rating:last-child{margin-right:0}.ui.rating .icon{padding:0;margin:0;-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;cursor:pointer;width:1.25em;height:auto;-webkit-transition:opacity .1s ease,background .1s ease,text-shadow .1s ease,color .1s ease;transition:opacity .1s ease,background .1s ease,text-shadow .1s ease,color .1s ease;background:0 0;color:rgba(0,0,0,.15);font-family:Rating;line-height:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center}.ui.rating .active.icon{background:0 0;color:rgba(0,0,0,.85)}.ui.rating .icon.selected,.ui.rating .icon.selected.active{background:0 0;color:rgba(0,0,0,.87)}.ui.star.rating .icon{width:1.25em;height:auto;background:0 0;color:rgba(0,0,0,.15);text-shadow:none}.ui.star.rating .active.icon{background:0 0!important;color:#FFE623!important;text-shadow:0 -1px 0 #DDC507,-1px 0 0 #DDC507,0 1px 0 #DDC507,1px 0 0 #DDC507!important}.ui.star.rating .icon.selected,.ui.star.rating .icon.selected.active{background:0 0!important;color:#FC0!important;text-shadow:0 -1px 0 #E6A200,-1px 0 0 #E6A200,0 1px 0 #E6A200,1px 0 0 #E6A200!important}.ui.heart.rating .icon{width:1.4em;height:auto;background:0 0;color:rgba(0,0,0,.15);text-shadow:none!important}.ui.heart.rating .active.icon{background:0 0!important;color:#FF6D75!important;text-shadow:0 -1px 0 #CD0707,-1px 0 0 #CD0707,0 1px 0 #CD0707,1px 0 0 #CD0707!important}.ui.heart.rating .icon.selected,.ui.heart.rating .icon.selected.active{background:0 0!important;color:#FF3000!important;text-shadow:0 -1px 0 #AA0101,-1px 0 0 #AA0101,0 1px 0 #AA0101,1px 0 0 #AA0101!important}.ui.disabled.rating .icon{cursor:default}.ui.rating .icon.selected,.ui.rating.selected .active.icon,.ui.rating.selected .icon.selected{opacity:1}.ui.mini.rating{font-size:.71428571rem}.ui.tiny.rating{font-size:.85714286rem}.ui.small.rating{font-size:.92857143rem}.ui.rating{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;white-space:nowrap;vertical-align:baseline;font-size:1rem}.ui.large.rating{font-size:1.14285714rem}.ui.huge.rating{font-size:1.42857143rem}.ui.massive.rating{font-size:2rem}@font-face{font-family:Rating;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjCBsAAAC8AAAAYGNtYXCj2pm8AAABHAAAAKRnYXNwAAAAEAAAAcAAAAAIZ2x5ZlJbXMYAAAHIAAARnGhlYWQBGAe5AAATZAAAADZoaGVhA+IB/QAAE5wAAAAkaG10eCzgAEMAABPAAAAAcGxvY2EwXCxOAAAUMAAAADptYXhwACIAnAAAFGwAAAAgbmFtZfC1n04AABSMAAABPHBvc3QAAwAAAAAVyAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADxZQHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEAJAAAAAgACAABAAAAAEAIOYF8AbwDfAj8C7wbvBw8Irwl/Cc8SPxZf/9//8AAAAAACDmAPAE8AzwI/Au8G7wcPCH8JfwnPEj8WT//f//AAH/4xoEEAYQAQ/sD+IPow+iD4wPgA98DvYOtgADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAIAAP/tAgAB0wAKABUAAAEvAQ8BFwc3Fyc3BQc3Jz8BHwEHFycCALFPT7GAHp6eHoD/AHAWW304OH1bFnABGRqgoBp8sFNTsHyyOnxYEnFxElh8OgAAAAACAAD/7QIAAdMACgASAAABLwEPARcHNxcnNwUxER8BBxcnAgCxT0+xgB6enh6A/wA4fVsWcAEZGqCgGnywU1OwfLIBHXESWHw6AAAAAQAA/+0CAAHTAAoAAAEvAQ8BFwc3Fyc3AgCxT0+xgB6enh6AARkaoKAafLBTU7B8AAAAAAEAAAAAAgABwAArAAABFA4CBzEHDgMjIi4CLwEuAzU0PgIzMh4CFz4DMzIeAhUCAAcMEgugBgwMDAYGDAwMBqALEgwHFyg2HhAfGxkKChkbHxAeNigXAS0QHxsZCqAGCwkGBQkLBqAKGRsfEB42KBcHDBILCxIMBxcoNh4AAAAAAgAAAAACAAHAACsAWAAAATQuAiMiDgIHLgMjIg4CFRQeAhcxFx4DMzI+Aj8BPgM1DwEiFCIGMTAmIjQjJy4DNTQ+AjMyHgIfATc+AzMyHgIVFA4CBwIAFyg2HhAfGxkKChkbHxAeNigXBwwSC6AGDAwMBgYMDAwGoAsSDAdbogEBAQEBAaIGCgcEDRceEQkREA4GLy8GDhARCREeFw0EBwoGAS0eNigXBwwSCwsSDAcXKDYeEB8bGQqgBgsJBgUJCwagChkbHxA+ogEBAQGiBg4QEQkRHhcNBAcKBjQ0BgoHBA0XHhEJERAOBgABAAAAAAIAAcAAMQAAARQOAgcxBw4DIyIuAi8BLgM1ND4CMzIeAhcHFwc3Jzc+AzMyHgIVAgAHDBILoAYMDAwGBgwMDAagCxIMBxcoNh4KFRMSCC9wQLBwJwUJCgkFHjYoFwEtEB8bGQqgBgsJBgUJCwagChkbHxAeNigXAwUIBUtAoMBAOwECAQEXKDYeAAABAAAAAAIAAbcAKgAAEzQ3NjMyFxYXFhcWFzY3Njc2NzYzMhcWFRQPAQYjIi8BJicmJyYnJicmNQAkJUARExIQEAsMCgoMCxAQEhMRQCUkQbIGBwcGsgMFBQsKCQkGBwExPyMkBgYLCgkKCgoKCQoLBgYkIz8/QawFBawCBgUNDg4OFRQTAAAAAQAAAA0B2wHSACYAABM0PwI2FzYfAhYVFA8BFxQVFAcGByYvAQcGByYnJjU0PwEnJjUAEI9BBQkIBkCPEAdoGQMDBgUGgIEGBQYDAwEYaAcBIwsCFoEMAQEMgRYCCwYIZJABBQUFAwEBAkVFAgEBAwUFAwOQZAkFAAAAAAIAAAANAdsB0gAkAC4AABM0PwI2FzYfAhYVFA8BFxQVFAcmLwEHBgcmJyY1ND8BJyY1HwEHNxcnNy8BBwAQj0EFCQgGQI8QB2gZDAUGgIEGBQYDAwEYaAc/WBVsaxRXeDY2ASMLAhaBDAEBDIEWAgsGCGSQAQUNAQECRUUCAQEDBQUDA5BkCQURVXg4OHhVEW5uAAABACMAKQHdAXwAGgAANzQ/ATYXNh8BNzYXNh8BFhUUDwEGByYvASY1IwgmCAwLCFS8CAsMCCYICPUIDAsIjgjSCwkmCQEBCVS7CQEBCSYJCg0H9gcBAQePBwwAAAEAHwAfAXMBcwAsAAA3ND8BJyY1ND8BNjMyHwE3NjMyHwEWFRQPARcWFRQPAQYjIi8BBwYjIi8BJjUfCFRUCAgnCAwLCFRUCAwLCCcICFRUCAgnCAsMCFRUCAsMCCcIYgsIVFQIDAsIJwgIVFQICCcICwwIVFQICwwIJwgIVFQICCcIDAAAAAACAAAAJQFJAbcAHwArAAA3NTQ3NjsBNTQ3NjMyFxYdATMyFxYdARQHBiMhIicmNTczNTQnJiMiBwYdAQAICAsKJSY1NCYmCQsICAgIC/7tCwgIW5MWFR4fFRZApQsICDc0JiYmJjQ3CAgLpQsICAgIC8A3HhYVFRYeNwAAAQAAAAcBbgG3ACEAADcRNDc2NzYzITIXFhcWFREUBwYHBiMiLwEHBiMiJyYnJjUABgUKBgYBLAYGCgUGBgUKBQcOCn5+Cg4GBgoFBicBcAoICAMDAwMICAr+kAoICAQCCXl5CQIECAgKAAAAAwAAACUCAAFuABgAMQBKAAA3NDc2NzYzMhcWFxYVFAcGBwYjIicmJyY1MxYXFjMyNzY3JicWFRQHBiMiJyY1NDcGBzcUFxYzMjc2NTQ3NjMyNzY1NCcmIyIHBhUABihDREtLREMoBgYoQ0RLS0RDKAYlJjk5Q0M5OSYrQREmJTU1JSYRQSuEBAQGBgQEEREZBgQEBAQGJBkayQoKQSgoKChBCgoKCkEoJycoQQoKOiMjIyM6RCEeIjUmJSUmNSIeIUQlBgQEBAQGGBIRBAQGBgQEGhojAAAABQAAAAkCAAGJACwAOABRAGgAcAAANzQ3Njc2MzIXNzYzMhcWFxYXFhcWFxYVFDEGBwYPAQYjIicmNTQ3JicmJyY1MxYXNyYnJjU0NwYHNxQXFjMyNzY1NDc2MzI3NjU0JyYjIgcGFRc3Njc2NyYnNxYXFhcWFRQHBgcGBwYjPwEWFRQHBgcABitBQU0ZGhADBQEEBAUFBAUEBQEEHjw8Hg4DBQQiBQ0pIyIZBiUvSxYZDg4RQSuEBAQGBgQEEREZBgQEBAQGJBkaVxU9MzQiIDASGxkZEAYGCxQrODk/LlACFxYlyQsJQycnBRwEAgEDAwIDAwIBAwUCNmxsNhkFFAMFBBUTHh8nCQtKISgSHBsfIh4hRCUGBAQEBAYYEhEEBAYGBAQaGiPJJQUiIjYzISASGhkbCgoKChIXMRsbUZANCyghIA8AAAMAAAAAAbcB2wA5AEoAlAAANzU0NzY7ATY3Njc2NzY3Njc2MzIXFhcWFRQHMzIXFhUUBxYVFAcUFRQHFgcGKwEiJyYnJisBIicmNTcUFxYzMjc2NTQnJiMiBwYVFzMyFxYXFhcWFxYXFhcWOwEyNTQnNjc2NTQnNjU0JyYnNjc2NTQnJisBNDc2NTQnJiMGBwYHBgcGBwYHBgcGBwYHBgcGBwYrARUACwoQTgodEQ4GBAMFBgwLDxgTEwoKDjMdFhYOAgoRARkZKCUbGxsjIQZSEAoLJQUFCAcGBQUGBwgFBUkJBAUFBAQHBwMDBwcCPCUjNwIJBQUFDwMDBAkGBgsLDmUODgoJGwgDAwYFDAYQAQUGAwQGBgYFBgUGBgQJSbcPCwsGJhUPCBERExMMCgkJFBQhGxwWFR4ZFQoKFhMGBh0WKBcXBgcMDAoLDxIHBQYGBQcIBQYGBQgSAQEBAQICAQEDAgEULwgIBQoLCgsJDhQHCQkEAQ0NCg8LCxAdHREcDQ4IEBETEw0GFAEHBwUECAgFBQUFAgO3AAADAAD/2wG3AbcAPABNAJkAADc1NDc2OwEyNzY3NjsBMhcWBxUWFRQVFhUUBxYVFAcGKwEWFRQHBgcGIyInJicmJyYnJicmJyYnIyInJjU3FBcWMzI3NjU0JyYjIgcGFRczMhcWFxYXFhcWFxYXFhcWFxYXFhcWFzI3NjU0JyY1MzI3NjU0JyYjNjc2NTQnNjU0JyYnNjU0JyYrASIHIgcGBwYHBgcGIwYrARUACwoQUgYhJRsbHiAoGRkBEQoCDhYWHTMOCgoTExgPCwoFBgIBBAMFDhEdCk4QCgslBQUIBwYFBQYHCAUFSQkEBgYFBgUGBgYEAwYFARAGDAUGAwMIGwkKDg5lDgsLBgYJBAMDDwUFBQkCDg4ZJSU8AgcHAwMHBwQEBQUECbe3DwsKDAwHBhcWJwIWHQYGExYKChUZHhYVHRoiExQJCgsJDg4MDAwNBg4WJQcLCw+kBwUGBgUHCAUGBgUIpAMCBQYFBQcIBAUHBwITBwwTExERBw0OHBEdHRALCw8KDQ0FCQkHFA4JCwoLCgUICBgMCxUDAgEBAgMBAQG3AAAAAQAAAA0A7gHSABQAABM0PwI2FxEHBgcmJyY1ND8BJyY1ABCPQQUJgQYFBgMDARhoBwEjCwIWgQwB/oNFAgEBAwUFAwOQZAkFAAAAAAIAAAAAAgABtwAqAFkAABM0NzYzMhcWFxYXFhc2NzY3Njc2MzIXFhUUDwEGIyIvASYnJicmJyYnJjUzFB8BNzY1NCcmJyYnJicmIyIHBgcGBwYHBiMiJyYnJicmJyYjIgcGBwYHBgcGFQAkJUARExIQEAsMCgoMCxAQEhMRQCUkQbIGBwcGsgMFBQsKCQkGByU1pqY1BgYJCg4NDg0PDhIRDg8KCgcFCQkFBwoKDw4REg4PDQ4NDgoJBgYBMT8jJAYGCwoJCgoKCgkKCwYGJCM/P0GsBQWsAgYFDQ4ODhUUEzA1oJ82MBcSEgoLBgcCAgcHCwsKCQgHBwgJCgsLBwcCAgcGCwoSEhcAAAACAAAABwFuAbcAIQAoAAA3ETQ3Njc2MyEyFxYXFhURFAcGBwYjIi8BBwYjIicmJyY1PwEfAREhEQAGBQoGBgEsBgYKBQYGBQoFBw4Kfn4KDgYGCgUGJZIZef7cJwFwCggIAwMDAwgICv6QCggIBAIJeXkJAgQICAoIjRl0AWP+nQAAAAABAAAAJQHbAbcAMgAANzU0NzY7ATU0NzYzMhcWHQEUBwYrASInJj0BNCcmIyIHBh0BMzIXFh0BFAcGIyEiJyY1AAgIC8AmJjQ1JiUFBQgSCAUFFhUfHhUWHAsICAgIC/7tCwgIQKULCAg3NSUmJiU1SQgFBgYFCEkeFhUVFh43CAgLpQsICAgICwAAAAIAAQANAdsB0gAiAC0AABM2PwI2MzIfAhYXFg8BFxYHBiMiLwEHBiMiJyY/AScmNx8CLwE/AS8CEwEDDJBABggJBUGODgIDCmcYAgQCCAMIf4IFBgYEAgEZaQgC7hBbEgINSnkILgEBJggCFYILC4IVAggICWWPCgUFA0REAwUFCo9lCQipCTBmEw1HEhFc/u0AAAADAAAAAAHJAbcAFAAlAHkAADc1NDc2OwEyFxYdARQHBisBIicmNTcUFxYzMjc2NTQnJiMiBwYVFzU0NzYzNjc2NzY3Njc2NzY3Njc2NzY3NjMyFxYXFhcWFxYXFhUUFRQHBgcGBxQHBgcGBzMyFxYVFAcWFRYHFgcGBxYHBgcjIicmJyYnJiciJyY1AAUGB1MHBQYGBQdTBwYFJQUFCAcGBQUGBwgFBWQFBQgGDw8OFAkFBAQBAQMCAQIEBAYFBw4KCgcHBQQCAwEBAgMDAgYCAgIBAU8XEBAQBQEOBQUECwMREiYlExYXDAwWJAoHBQY3twcGBQUGB7cIBQUFBQgkBwYFBQYHCAUGBgUIJLcHBQYBEBATGQkFCQgGBQwLBgcICQUGAwMFBAcHBgYICQQEBwsLCwYGCgIDBAMCBBEQFhkSDAoVEhAREAsgFBUBBAUEBAcMAQUFCAAAAAADAAD/2wHJAZIAFAAlAHkAADcUFxYXNxY3Nj0BNCcmBycGBwYdATc0NzY3FhcWFRQHBicGJyY1FzU0NzY3Fjc2NzY3NjcXNhcWBxYXFgcWBxQHFhUUBwYHJxYXFhcWFRYXFhcWFRQVFAcGBwYHBgcGBwYnBicmJyYnJicmJyYnJicmJyYnJiciJyY1AAUGB1MHBQYGBQdTBwYFJQUFCAcGBQUGBwgFBWQGBQcKJBYMDBcWEyUmEhEDCwQFBQ4BBRAQEBdPAQECAgIGAgMDAgEBAwIEBQcHCgoOBwUGBAQCAQIDAQEEBAUJFA4PDwYIBQWlBwYFAQEBBwQJtQkEBwEBAQUGB7eTBwYEAQEEBgcJBAYBAQYECZS4BwYEAgENBwUCBgMBAQEXEyEJEhAREBcIDhAaFhEPAQEFAgQCBQELBQcKDAkIBAUHCgUGBwgDBgIEAQEHBQkIBwUMCwcECgcGCRoREQ8CBgQIAAAAAQAAAAEAAJth57dfDzz1AAsCAAAAAADP/GODAAAAAM/8Y4MAAP/bAgAB2wAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAACAAABAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAEAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAdwAAAHcAAACAAAjAZMAHwFJAAABbgAAAgAAAAIAAAACAAAAAgAAAAEAAAACAAAAAW4AAAHcAAAB3AABAdwAAAHcAAAAAAAAAAoAFAAeAEoAcACKAMoBQAGIAcwCCgJUAoICxgMEAzoDpgRKBRgF7AYSBpgG2gcgB2oIGAjOAAAAAQAAABwAmgAFAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAwAAAABAAAAAAACAA4AQAABAAAAAAADAAwAIgABAAAAAAAEAAwATgABAAAAAAAFABYADAABAAAAAAAGAAYALgABAAAAAAAKADQAWgADAAEECQABAAwAAAADAAEECQACAA4AQAADAAEECQADAAwAIgADAAEECQAEAAwATgADAAEECQAFABYADAADAAEECQAGAAwANAADAAEECQAKADQAWgByAGEAdABpAG4AZwBWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBhAHQAaQBuAGdyYXRpbmcAcgBhAHQAaQBuAGcAUgBlAGcAdQBsAGEAcgByAGEAdABpAG4AZwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AABcUAAoAAAAAFswAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAEuEAABLho6TvIE9TLzIAABPYAAAAYAAAAGAIIwgbY21hcAAAFDgAAACkAAAApKPambxnYXNwAAAU3AAAAAgAAAAIAAAAEGhlYWQAABTkAAAANgAAADYBGAe5aGhlYQAAFRwAAAAkAAAAJAPiAf1obXR4AAAVQAAAAHAAAABwLOAAQ21heHAAABWwAAAABgAAAAYAHFAAbmFtZQAAFbgAAAE8AAABPPC1n05wb3N0AAAW9AAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLZviU+HQFHQAAAP0PHQAAAQIRHQAAAAkdAAAS2BIAHQEBBw0PERQZHiMoLTI3PEFGS1BVWl9kaW5zeH2Ch4xyYXRpbmdyYXRpbmd1MHUxdTIwdUU2MDB1RTYwMXVFNjAydUU2MDN1RTYwNHVFNjA1dUYwMDR1RjAwNXVGMDA2dUYwMEN1RjAwRHVGMDIzdUYwMkV1RjA2RXVGMDcwdUYwODd1RjA4OHVGMDg5dUYwOEF1RjA5N3VGMDlDdUYxMjN1RjE2NHVGMTY1AAACAYkAGgAcAgABAAQABwAKAA0AVgCWAL0BAgGMAeQCbwLwA4cD5QR0BQMFdgZgB8MJkQtxC7oM2Q1jDggOmRAYEZr8lA78lA78lA77lA74lPetFftFpTz3NDz7NPtFcfcU+xBt+0T3Mt73Mjht90T3FPcQBfuU+0YV+wRRofcQMOP3EZ3D9wXD+wX3EXkwM6H7EPsExQUO+JT3rRX7RaU89zQ8+zT7RXH3FPsQbftE9zLe9zI4bfdE9xT3EAX7lPtGFYuLi/exw/sF9xF5MDOh+xD7BMUFDviU960V+0WlPPc0PPs0+0Vx9xT7EG37RPcy3vcyOG33RPcU9xAFDviU98EVi2B4ZG5wCIuL+zT7NAV7e3t7e4t7i3ube5sI+zT3NAVupniyi7aL3M3N3Iu2i7J4pm6mqLKetovci81JizoIDviU98EVi9xJzTqLYItkeHBucKhknmCLOotJSYs6i2CeZKhwCIuL9zT7NAWbe5t7m4ubi5ubm5sI9zT3NAWopp6yi7YIME0V+zb7NgWKioqKiouKi4qMiowI+zb3NgV6m4Ghi6OLubCwuYuji6GBm3oIule6vwWbnKGVo4u5i7Bmi12Lc4F1ensIDviU98EVi2B4ZG5wCIuL+zT7NAV7e3t7e4t7i3ube5sI+zT3NAVupniyi7aL3M3N3Iuni6WDoX4IXED3BEtL+zT3RPdU+wTLssYFl46YjZiL3IvNSYs6CA6L98UVi7WXrKOio6Otl7aLlouXiZiHl4eWhZaEloSUhZKFk4SShZKEkpKSkZOSkpGUkZaSCJaSlpGXj5iPl42Wi7aLrX+jc6N0l2qLYYthdWBgYAj7RvtABYeIh4mGi4aLh42Hjgj7RvdABYmNiY2Hj4iOhpGDlISUhZWFlIWVhpaHmYaYiZiLmAgOZ4v3txWLkpCPlo0I9yOgzPcWBY6SkI+Ri5CLkIePhAjL+xb3I3YFlomQh4uEi4aJh4aGCCMmpPsjBYuKi4mLiIuHioiJiImIiIqHi4iLh4yHjQj7FM/7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOZ4v3txWLkpCPlo0I9yOgzPcWBY6SkI+Ri5CLkIePhAjL+xb3I3YFlomQh4uEi4aJh4aGCCMmpPsjBYuKi4mLiIuCh4aDi4iLh4yHjQj7FM/7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwjKeRXjN3b7DfcAxPZSd/cN4t/7DJ1V9wFV+wEFDq73ZhWLk42RkZEIsbIFkZCRjpOLkouSiJCGCN8291D3UAWQkJKOkouTi5GIkYYIsWQFkYaNhIuEi4OJhYWFCPuJ+4kFhYWFiYOLhIuEjYaRCPsi9yIFhZCJkouSCA77AartFYuSjpKQkAjf3zffBYaQiJKLk4uSjpKQkAiysgWRkJGOk4uSi5KIkIYI3zff3wWQkJKOk4uSi5KIkIYIsmQFkIaOhIuEi4OIhIaGCDc33zcFkIaOhIuEi4OIhYaFCGRkBYaGhIiEi4OLhI6GkAg33zc3BYaGhIiEi4OLhY6FkAhksgWGkYiRi5MIDvtLi8sVi/c5BYuSjpKQkJCQko6SiwiVi4vCBYuul6mkpKSkqpiui66LqX6kcqRymG2LaAiLVJSLBZKLkoiQhpCGjoSLhAiL+zkFi4OIhYaGhoWEiYSLCPuniwWEi4SNhpGGkIiRi5MI5vdUFfcni4vCBYufhJx8mn2ZepJ3i3aLeoR9fX18g3qLdwiLVAUO+yaLshWL+AQFi5GNkY+RjpCQj5KNj42PjI+LCPfAiwWPi4+Kj4mRiZCHj4aPhY2Fi4UIi/wEBYuEiYWHhoeGhoeFiIiKhoqHi4GLhI6EkQj7EvcN+xL7DQWEhYOIgouHi4eLh42EjoaPiJCHkImRi5IIDov3XRWLko2Rj5Kltq+vuKW4pbuZvYu9i7t9uHG4ca9npWCPhI2Fi4SLhYmEh4RxYGdoXnAIXnFbflmLWYtbmF6lXqZnrnG2h5KJkouRCLCLFaRkq2yxdLF0tH+4i7iLtJexorGiq6qksm64Z61goZZ3kXaLdItnfm1ycnJybX9oiwhoi22XcqRypH6pi6+LopGglp9gdWdpbl4I9xiwFYuHjIiOiI6IjoqPi4+LjoyOjo2OjY6Lj4ubkJmXl5eWmZGbi4+LjoyOjo2OjY6LjwiLj4mOiY6IjYiNh4tzi3eCenp6eoJ3i3MIDov3XRWLko2Sj5GouK+utqW3pbqYvouci5yJnIgIm6cFjY6NjI+LjIuNi42JjYqOio+JjomOiY6KjomOiY6JjoqNioyKjomMiYuHi4qLiouLCHdnbVVjQ2NDbVV3Zwh9cgWJiIiJiIuJi36SdJiIjYmOi46LjY+UlJlvl3KcdJ90oHeie6WHkYmSi5IIsIsVqlq0Z711CKGzBXqXfpqCnoKdhp6LoIuikaCWn2B1Z2luXgj3GLAVi4eMiI6IjoiOio+Lj4uOjI6OjY6NjouPi5uQmZeXl5aZkZuLj4uOjI6OjY6NjouPCIuPiY6JjoiNiI2Hi3OLd4J6enp6gneLcwji+10VoLAFtI+wmK2hrqKnqKKvdq1wp2uhCJ2rBZ1/nHycepx6mHqWeY+EjYWLhIuEiYWHhIR/gH1+fG9qaXJmeWV5Y4Jhiwi53BXb9yQFjIKMg4uEi3CDc3x1fHV3fHOBCA6L1BWL90sFi5WPlJKSkpKTj5aLCNmLBZKPmJqepJaZlZeVlY+Qj5ONl42WjpeOmI+YkZWTk5OSk46Vi5uLmYiYhZiFlIGSfgiSfo55i3WLeYd5gXgIvosFn4uchJl8mn2Seot3i3qGfIJ9jYSLhYuEi3yIfoR+i4eLh4uHi3eGen99i3CDdnt8CHt8dYNwiwhmiwV5i3mNeY95kHeRc5N1k36Ph4sIOYsFgIuDjoSShJKHlIuVCLCdFYuGjIePiI+Hj4mQi5CLj42Pj46OjY+LkIuQiZCIjoePh42Gi4aLh4mHh4eIioaLhgjUeRWUiwWNi46Lj4qOi4+KjYqOi4+Kj4mQio6KjYqNio+Kj4mQio6KjIqzfquEpIsIrosFr4uemouri5CKkYqQkY6QkI6SjpKNkouSi5KJkoiRlZWQlouYi5CKkImRiZGJj4iOCJGMkI+PlI+UjZKLkouViJODk4SSgo+CiwgmiwWLlpCalJ6UnpCbi5aLnoiYhJSFlH+QeYuGhoeDiYCJf4h/h3+IfoWBg4KHh4SCgH4Ii4qIiYiGh4aIh4mIiIiIh4eGh4aHh4eHiIiHiIeHiIiHiIeKh4mIioiLCIKLi/tLBQ6L90sVi/dLBYuVj5OSk5KSk46WiwjdiwWPi5iPoZOkk6CRnZCdj56Nn4sIq4sFpougg5x8m3yTd4txCIuJBZd8kHuLd4uHi4eLh5J+jn6LfIuEi4SJhZR9kHyLeot3hHp8fH19eoR3iwhYiwWVeI95i3mLdIh6hH6EfoKBfoV+hX2He4uBi4OPg5KFkYaTh5SHlYiTipOKk4qTiJMIiZSIkYiPgZSBl4CaeKR+moSPCD2LBYCLg4+EkoSSh5SLlQiw9zgVi4aMh4+Ij4ePiZCLkIuPjY+Pjo6Nj4uQi5CJkIiOh4+HjYaLhouHiYeHh4iKhouGCNT7OBWUiwWOi46Kj4mPio+IjoiPh4+IjoePiI+Hj4aPho6HjoiNiI6Hj4aOho6Ii4qWfpKDj4YIk4ORgY5+j36OgI1/jYCPg5CGnYuXj5GUkpSOmYuei5aGmoKfgp6GmouWCPCLBZSLlI+SkpOTjpOLlYuSiZKHlIeUho+Fi46PjY+NkY2RjJCLkIuYhpaBlY6RjZKLkgiLkomSiJKIkoaQhY6MkIyRi5CLm4aXgpOBkn6Pe4sIZosFcotrhGN9iouIioaJh4qHiomKiYqIioaKh4mHioiKiYuHioiLh4qIi4mLCIKLi/tLBQ77lIv3txWLkpCPlo0I9yOgzPcWBY6SkI+RiwiL/BL7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOi/fFFYu1l6yjoqOjrZe2i5aLl4mYh5eHloWWhJaElIWShZOEkoWShJKSkpGTkpKRlJGWkgiWkpaRl4+Yj5eNlou2i61/o3OjdJdqi2GLYXVgYGAI+0b7QAWHiIeJhouGi4eNh44I+0b3QAWJjYmNh4+IjoaRg5SElIWVhZSFlYaWh5mGmImYi5gIsIsVi2ucaa9oCPc6+zT3OvczBa+vnK2Lq4ubiZiHl4eXhpSFkoSSg5GCj4KQgo2CjYONgYuBi4KLgIl/hoCGgIWChAiBg4OFhISEhYaFhoaIhoaJhYuFi4aNiJCGkIaRhJGEkoORgZOCkoCRgJB/kICNgosIgYuBi4OJgomCiYKGgoeDhYSEhYSGgod/h3+Jfot7CA77JouyFYv4BAWLkY2Rj5GOkJCPko2PjY+Mj4sI98CLBY+Lj4qPiZGJkIePho+FjYWLhQiL/AQFi4SJhYeGh4aGh4WIiIqGioeLgYuEjoSRCPsS9w37EvsNBYSFg4iCi4eLh4uHjYSOho+IkIeQiZGLkgiwkxX3JvchpHL3DfsIi/f3+7iLi/v3BQ5ni8sVi/c5BYuSjpKQkJCQko6Siwj3VIuLwgWLrpippKSkpKmYrouvi6l+pHKkcpdti2gIi0IFi4aKhoeIh4eHiYaLCHmLBYaLh42Hj4eOipCLkAiL1AWLn4OcfZp9mXqSdot3i3qEfX18fIR6i3cIi1SniwWSi5KIkIaQho6Ei4QIi/s5BYuDiIWGhoaFhImEiwj7p4sFhIuEjYaRhpCIkYuTCA5njPe6FYyQkI6UjQj3I6DM9xYFj5KPj5GLkIuQh4+ECMv7FvcjdgWUiZCIjYaNhoiFhYUIIyak+yMFjIWKhomHiYiIiYaLiIuHjIeNCPsUz/sVRwWHiYeKiIuHi4eNiY6Jj4uQjJEIo/cjI/AFhZGJkY2QCPeB+z0VnILlW3rxiJ6ZmNTS+wydgpxe54v7pwUOZ4vCFYv3SwWLkI2Pjo+Pjo+NkIsI3osFkIuPiY6Ij4eNh4uGCIv7SwWLhomHh4eIh4eKhosIOIsFhouHjIePiI+Jj4uQCLCvFYuGjIePh46IkImQi5CLj42Pjo6PjY+LkIuQiZCIjoePh42Gi4aLhomIh4eIioaLhgjvZxWL90sFi5CNj46Oj4+PjZCLj4ySkJWWlZaVl5SXmJuVl5GRjo6OkI6RjZCNkIyPjI6MkY2TCIySjJGMj4yPjZCOkY6RjpCPjo6Pj42Qi5SLk4qSiZKJkYiPiJCIjoiPho6GjYeMhwiNh4yGjIaMhYuHi4iLiIuHi4eLg4uEiYSJhImFiYeJh4mFh4WLioqJiomJiIqJiokIi4qKiIqJCNqLBZqLmIWWgJaAkH+LfIt6hn2Af46DjYSLhIt9h36Cf4+Bi3+HgImAhYKEhI12hnmAfgh/fXiDcosIZosFfot+jHyOfI5/joOOg41/j32Qc5N8j4SMhouHjYiOh4+Jj4uQCA5ni/c5FYuGjYaOiI+Hj4mQiwjeiwWQi4+Njo+Pjo2Qi5AIi/dKBYuQiZCHjoiPh42Giwg4iwWGi4eJh4eIiImGi4YIi/tKBbD3JhWLkIyPj4+OjpCNkIuQi4+Jj4iOh42Hi4aLhomHiIeHh4eKhouGi4aMiI+Hj4qPi5AI7/snFYv3SwWLkI2Qj46Oj4+NkIuSi5qPo5OZkJePk46TjZeOmo6ajpiMmIsIsIsFpIueg5d9ln6Qeol1koSRgo2Aj4CLgIeAlH+Pfot9i4WJhIiCloCQfIt7i3yFfoGACICAfoZ8iwg8iwWMiIyJi4mMiYyJjYmMiIyKi4mPhI2GjYeNh42GjYOMhIyEi4SLhouHi4iLiYuGioYIioWKhomHioeJh4iGh4eIh4aIh4iFiISJhImDioKLhouHjYiPh4+Ij4iRiJGJkIqPCIqPipGKkomTipGKj4qOiZCJkYiQiJCIjoWSgZZ+nIKXgZaBloGWhJGHi4aLh42HjwiIjomQi48IDviUFPiUFYsMCgAAAAADAgABkAAFAAABTAFmAAAARwFMAWYAAAD1ABkAhAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAPFlAeD/4P/gAeAAIAAAAAEAAAAAAAAAAAAAACAAAAAAAAIAAAADAAAAFAADAAEAAAAUAAQAkAAAACAAIAAEAAAAAQAg5gXwBvAN8CPwLvBu8HDwivCX8JzxI/Fl//3//wAAAAAAIOYA8ATwDPAj8C7wbvBw8Ifwl/Cc8SPxZP/9//8AAf/jGgQQBhABD+wP4g+jD6IPjA+AD3wO9g62AAMAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAAJrVlLJfDzz1AAsCAAAAAADP/GODAAAAAM/8Y4MAAP/bAgAB2wAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAACAAABAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAEAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAdwAAAHcAAACAAAjAZMAHwFJAAABbgAAAgAAAAIAAAACAAAAAgAAAAEAAAACAAAAAW4AAAHcAAAB3AABAdwAAAHcAAAAAFAAABwAAAAAAA4ArgABAAAAAAABAAwAAAABAAAAAAACAA4AQAABAAAAAAADAAwAIgABAAAAAAAEAAwATgABAAAAAAAFABYADAABAAAAAAAGAAYALgABAAAAAAAKADQAWgADAAEECQABAAwAAAADAAEECQACAA4AQAADAAEECQADAAwAIgADAAEECQAEAAwATgADAAEECQAFABYADAADAAEECQAGAAwANAADAAEECQAKADQAWgByAGEAdABpAG4AZwBWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBhAHQAaQBuAGdyYXRpbmcAcgBhAHQAaQBuAGcAUgBlAGcAdQBsAGEAcgByAGEAdABpAG4AZwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format('woff');font-weight:400;font-style:normal}.ui.rating .icon:before{content:'\f006'}.ui.rating .active.icon:before,.ui.star.rating .active.icon:before,.ui.star.rating .icon:before{content:'\f005'}.ui.star.rating .partial.icon:before{content:'\f006'}.ui.star.rating .partial.icon{content:'\f005'}.ui.heart.rating .active.icon:before,.ui.heart.rating .icon:before{content:'\f004'}.ui.search{position:relative}.ui.search>.prompt{margin:0;outline:0;-webkit-appearance:none;-webkit-tap-highlight-color:rgba(255,255,255,0);text-shadow:none;font-style:normal;font-weight:400;line-height:1.2142em;padding:.67861429em 1em;font-size:1em;background:#FFF;border:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87);box-shadow:0 0 0 0 transparent inset;-webkit-transition:background-color .1s ease,color .1s ease,box-shadow .1s ease,border-color .1s ease;transition:background-color .1s ease,color .1s ease,box-shadow .1s ease,border-color .1s ease}.ui.search .prompt{border-radius:500rem}.ui.search .prompt~.search.icon{cursor:pointer}.ui.search>.results{display:none;position:absolute;top:100%;left:0;-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top;background:#FFF;margin-top:.5em;width:18em;border-radius:.28571429rem;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08);border:1px solid #D4D4D5;z-index:998}.ui.search>.results>:first-child{border-radius:.28571429rem .28571429rem 0 0}.ui.search>.results>:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui.search>.results .result{cursor:pointer;display:block;overflow:hidden;font-size:1em;padding:.85714286em 1.14285714em;color:rgba(0,0,0,.87);line-height:1.33;border-bottom:1px solid rgba(34,36,38,.1)}.ui.search>.results .result:last-child{border-bottom:none!important}.ui.search>.results .result .image{float:right;overflow:hidden;background:0 0;width:5em;height:3em;border-radius:.25em}.ui.search>.results .result .image img{display:block;width:auto;height:100%}.ui.search>.results .result .image+.content{margin:0 6em 0 0}.ui.search>.results .result .title{margin:-.14285em 0 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;font-size:1em;color:rgba(0,0,0,.85)}.ui.search>.results .result .description{margin-top:0;font-size:.92857143em;color:rgba(0,0,0,.4)}.ui.search>.results .result .price{float:right;color:#21BA45}.ui.search>.results>.message{padding:1em}.ui.search>.results>.message .header{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1rem;font-weight:700;color:rgba(0,0,0,.87)}.ui.search>.results>.message .description{margin-top:.25rem;font-size:1em;color:rgba(0,0,0,.87)}.ui.search>.results>.action{display:block;border-top:none;background:#F3F4F5;padding:.92857143em 1em;color:rgba(0,0,0,.87);font-weight:700;text-align:center}.ui.search>.prompt:focus{border-color:rgba(34,36,38,.35);background:#FFF;color:rgba(0,0,0,.95)}.ui.loading.search .input>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.search .input>i.icon:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.category.search>.results .category .result:hover,.ui.search>.results .result:hover{background:#F9FAFB}.ui.search .action:hover{background:#E0E0E0}.ui.category.search>.results .category.active{background:#F3F4F5}.ui.category.search>.results .category.active>.name{color:rgba(0,0,0,.87)}.ui.category.search>.results .category .result.active,.ui.search>.results .result.active{position:relative;border-left-color:rgba(34,36,38,.1);background:#F3F4F5;box-shadow:none}.ui.search>.results .result.active .description,.ui.search>.results .result.active .title{color:rgba(0,0,0,.85)}.ui.category.search .results{width:28em}.ui.category.search>.results .category{background:#F3F4F5;box-shadow:none;border-bottom:1px solid rgba(34,36,38,.1);-webkit-transition:background .1s ease,border-color .1s ease;transition:background .1s ease,border-color .1s ease}.ui.category.search>.results .category:last-child{border-bottom:none}.ui.category.search>.results .category:first-child .name+.result{border-radius:0 .28571429rem 0 0}.ui.category.search>.results .category .result{background:#FFF;margin-left:100px;border-left:1px solid rgba(34,36,38,.15);border-bottom:1px solid rgba(34,36,38,.1);-webkit-transition:background .1s ease,border-color .1s ease;transition:background .1s ease,border-color .1s ease;padding:.85714286em 1.14285714em}.ui.category.search>.results .category:last-child .result:last-child{border-radius:0 0 .28571429rem;border-bottom:none}.ui.category.search>.results .category>.name{width:100px;background:0 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1em;float:1em;float:left;padding:.4em 1em;font-weight:700;color:rgba(0,0,0,.4)}.ui[class*="left aligned"].search>.results{right:auto;left:0}.ui[class*="right aligned"].search>.results{right:0;left:auto}.ui.fluid.search .results{width:100%}.ui.mini.search{font-size:.71428571em}.ui.small.search{font-size:.92857143em}.ui.search{font-size:1em}.ui.large.search{font-size:1.14285714em}.ui.big.search{font-size:1.28571429em}.ui.huge.search{font-size:1.42857143em}.ui.massive.search{font-size:1.71428571em}.ui.shape{position:relative;vertical-align:top;display:inline-block;-webkit-perspective:2000px;perspective:2000px;-webkit-transition:-webkit-transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out}.ui.shape .sides{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.ui.shape .side{opacity:1;width:100%;margin:0!important;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none}.ui.shape .side *{-webkit-backface-visibility:visible!important;backface-visibility:visible!important}.ui.cube.shape .side{min-width:15em;height:15em;padding:2em;background-color:#E6E6E6;color:rgba(0,0,0,.87);box-shadow:0 0 2px rgba(0,0,0,.3)}.ui.cube.shape .side>.content{width:100%;height:100%;display:table;text-align:center;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.cube.shape .side>.content>div{display:table-cell;vertical-align:middle;font-size:2em}.ui.text.shape.animating .sides{position:static}.ui.text.shape .side{white-space:nowrap}.ui.text.shape .side>*{white-space:normal}.ui.loading.shape{position:absolute;top:-9999px;left:-9999px}.ui.shape .animating.side{position:absolute;top:0;left:0;display:block;z-index:100}.ui.shape .hidden.side{opacity:.6}.ui.shape.animating .sides{position:absolute;-webkit-transition:-webkit-transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out}.ui.shape.animating .side{-webkit-transition:opacity .6s ease-in-out;transition:opacity .6s ease-in-out}.ui.shape .active.side{display:block}.ui.sidebar{position:fixed;top:0;left:0;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:none;transition:none;will-change:transform;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);visibility:hidden;-webkit-overflow-scrolling:touch;height:100%!important;max-height:100%;border-radius:0!important;margin:0!important;overflow-y:auto!important;z-index:102}.ui.sidebar>*{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:rotateZ(0);transform:rotateZ(0)}.ui.left.sidebar{right:auto;left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.sidebar{right:0!important;left:auto!important;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.bottom.sidebar,.ui.top.sidebar{width:100%!important;height:auto!important}.ui.top.sidebar{top:0!important;bottom:auto!important;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.sidebar{top:auto!important;bottom:0!important;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.pushable{height:100%;overflow-x:hidden;padding:0!important}body.pushable{background:#545454!important}.pushable:not(body){-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.pushable:not(body)>.fixed,.pushable:not(body)>.pusher:after,.pushable:not(body)>.ui.sidebar{position:absolute}.pushable>.fixed{position:fixed;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform .5s ease;transition:transform .5s ease;will-change:transform;z-index:101}body.pushable>.pusher{background:#FFF}.pushable>.pusher{position:relative;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;min-height:100%;-webkit-transition:-webkit-transform .5s ease;transition:transform .5s ease;z-index:2;background:inherit}.pushable>.pusher:after{position:fixed;top:0;right:0;content:'';background-color:rgba(0,0,0,.4);overflow:hidden;opacity:0;-webkit-transition:opacity .5s;transition:opacity .5s;will-change:opacity;z-index:1000}.ui.sidebar.menu .item{border-radius:0!important}.pushable>.pusher.dimmed:after{width:100%!important;height:100%!important;opacity:1!important}.ui.animating.sidebar{visibility:visible}.ui.visible.sidebar{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.bottom.visible.sidebar,.ui.left.visible.sidebar,.ui.right.visible.sidebar,.ui.top.visible.sidebar{box-shadow:0 0 20px rgba(34,36,38,.15)}.ui.visible.left.sidebar~.fixed,.ui.visible.left.sidebar~.pusher{-webkit-transform:translate3d(260px,0,0);transform:translate3d(260px,0,0)}.ui.visible.right.sidebar~.fixed,.ui.visible.right.sidebar~.pusher{-webkit-transform:translate3d(-260px,0,0);transform:translate3d(-260px,0,0)}.ui.visible.top.sidebar~.fixed,.ui.visible.top.sidebar~.pusher{-webkit-transform:translate3d(0,36px,0);transform:translate3d(0,36px,0)}.ui.visible.bottom.sidebar~.fixed,.ui.visible.bottom.sidebar~.pusher{-webkit-transform:translate3d(0,-36px,0);transform:translate3d(0,-36px,0)}.ui.visible.left.sidebar~.ui.visible.right.sidebar~.fixed,.ui.visible.left.sidebar~.ui.visible.right.sidebar~.pusher,.ui.visible.right.sidebar~.ui.visible.left.sidebar~.fixed,.ui.visible.right.sidebar~.ui.visible.left.sidebar~.pusher{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}html.ios{overflow-x:hidden;-webkit-overflow-scrolling:touch}html.ios,html.ios body{height:initial!important}.ui[class*="very thin"].left.sidebar,.ui[class*="very thin"].right.sidebar{width:60px}.ui.thin.left.sidebar,.ui.thin.right.sidebar{width:150px}.ui.left.sidebar,.ui.right.sidebar{width:260px}.ui.wide.left.sidebar,.ui.wide.right.sidebar{width:350px}.ui[class*="very wide"].left.sidebar,.ui[class*="very wide"].right.sidebar{width:475px}.ui.visible[class*="very thin"].left.sidebar~.fixed,.ui.visible[class*="very thin"].left.sidebar~.pusher{-webkit-transform:translate3d(60px,0,0);transform:translate3d(60px,0,0)}.ui.visible.thin.left.sidebar~.fixed,.ui.visible.thin.left.sidebar~.pusher{-webkit-transform:translate3d(150px,0,0);transform:translate3d(150px,0,0)}.ui.visible.wide.left.sidebar~.fixed,.ui.visible.wide.left.sidebar~.pusher{-webkit-transform:translate3d(350px,0,0);transform:translate3d(350px,0,0)}.ui.visible[class*="very wide"].left.sidebar~.fixed,.ui.visible[class*="very wide"].left.sidebar~.pusher{-webkit-transform:translate3d(475px,0,0);transform:translate3d(475px,0,0)}.ui.visible[class*="very thin"].right.sidebar~.fixed,.ui.visible[class*="very thin"].right.sidebar~.pusher{-webkit-transform:translate3d(-60px,0,0);transform:translate3d(-60px,0,0)}.ui.visible.thin.right.sidebar~.fixed,.ui.visible.thin.right.sidebar~.pusher{-webkit-transform:translate3d(-150px,0,0);transform:translate3d(-150px,0,0)}.ui.visible.wide.right.sidebar~.fixed,.ui.visible.wide.right.sidebar~.pusher{-webkit-transform:translate3d(-350px,0,0);transform:translate3d(-350px,0,0)}.ui.visible[class*="very wide"].right.sidebar~.fixed,.ui.visible[class*="very wide"].right.sidebar~.pusher{-webkit-transform:translate3d(-475px,0,0);transform:translate3d(-475px,0,0)}.ui.overlay.sidebar{z-index:102}.ui.left.overlay.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.overlay.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.overlay.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.overlay.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.animating.ui.overlay.sidebar,.ui.visible.overlay.sidebar{-webkit-transition:-webkit-transform .5s ease;transition:transform .5s ease}.ui.visible.bottom.overlay.sidebar,.ui.visible.left.overlay.sidebar,.ui.visible.right.overlay.sidebar,.ui.visible.top.overlay.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.visible.overlay.sidebar~.fixed,.ui.visible.overlay.sidebar~.pusher{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.ui.push.sidebar{-webkit-transition:-webkit-transform .5s ease;transition:transform .5s ease;z-index:102}.ui.left.push.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.push.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.push.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.push.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.ui.visible.push.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.uncover.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:1}.ui.visible.uncover.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform .5s ease;transition:transform .5s ease}.ui.slide.along.sidebar{z-index:1}.ui.left.slide.along.sidebar{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.ui.right.slide.along.sidebar{-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0)}.ui.top.slide.along.sidebar{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.ui.bottom.slide.along.sidebar{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.ui.animating.slide.along.sidebar{-webkit-transition:-webkit-transform .5s ease;transition:transform .5s ease}.ui.visible.slide.along.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.slide.out.sidebar{z-index:1}.ui.left.slide.out.sidebar{-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0)}.ui.right.slide.out.sidebar{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.ui.top.slide.out.sidebar{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.ui.bottom.slide.out.sidebar{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.ui.animating.slide.out.sidebar{-webkit-transition:-webkit-transform .5s ease;transition:transform .5s ease}.ui.visible.slide.out.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.scale.down.sidebar{-webkit-transition:-webkit-transform .5s ease;transition:transform .5s ease;z-index:102}.ui.left.scale.down.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.scale.down.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.scale.down.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.scale.down.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.ui.scale.down.left.sidebar~.pusher{-webkit-transform-origin:75% 50%;-ms-transform-origin:75% 50%;transform-origin:75% 50%}.ui.scale.down.right.sidebar~.pusher{-webkit-transform-origin:25% 50%;-ms-transform-origin:25% 50%;transform-origin:25% 50%}.ui.scale.down.top.sidebar~.pusher{-webkit-transform-origin:50% 75%;-ms-transform-origin:50% 75%;transform-origin:50% 75%}.ui.scale.down.bottom.sidebar~.pusher{-webkit-transform-origin:50% 25%;-ms-transform-origin:50% 25%;transform-origin:50% 25%}.ui.animating.scale.down>.visible.ui.sidebar{-webkit-transition:-webkit-transform .5s ease;transition:transform .5s ease}.ui.animating.scale.down.sidebar~.pusher,.ui.visible.scale.down.sidebar~.pusher{display:block!important;width:100%;height:100%;overflow:hidden!important}.ui.visible.scale.down.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.visible.scale.down.sidebar~.pusher{-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.ui.sticky{position:static;-webkit-transition:none;transition:none;z-index:800}.ui.sticky.bound{position:absolute;left:auto;right:auto}.ui.sticky.fixed{position:fixed;left:auto;right:auto}.ui.sticky.bound.top,.ui.sticky.fixed.top{top:0;bottom:auto}.ui.sticky.bound.bottom,.ui.sticky.fixed.bottom{top:auto;bottom:0}.ui.native.sticky{position:-webkit-sticky;position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky}.ui.tab{display:none}.ui.tab.active,.ui.tab.open{display:block}.ui.tab.loading{position:relative;overflow:hidden;display:block;min-height:250px}.ui.tab.loading *{position:relative!important;left:-10000px!important}.ui.tab.loading.segment:before,.ui.tab.loading:before{position:absolute;content:'';top:100px;left:50%;margin:-1.25em 0 0 -1.25em;width:2.5em;height:2.5em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.tab.loading.segment:after,.ui.tab.loading:after{position:absolute;content:'';top:100px;left:50%;margin:-1.25em 0 0 -1.25em;width:2.5em;height:2.5em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.transition{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animating.transition{-webkit-backface-visibility:hidden;backface-visibility:hidden;visibility:visible!important}.loading.transition{position:absolute;top:-99999px;left:-99999px}.hidden.transition{display:none;visibility:hidden}.visible.transition{display:block!important;visibility:visible!important}.disabled.transition{-webkit-animation-play-state:paused;animation-play-state:paused}.looping.transition{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.transition.browse{-webkit-animation-duration:.5s;animation-duration:.5s}.transition.browse.in{-webkit-animation-name:browseIn;animation-name:browseIn}.transition.browse.left.out,.transition.browse.out{-webkit-animation-name:browseOutLeft;animation-name:browseOutLeft}.transition.browse.right.out{-webkit-animation-name:browseOutRight;animation-name:browseOutRight}@-webkit-keyframes browseIn{0%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1}10%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1;opacity:.7}80%{-webkit-transform:scale(1.05) translateZ(0);transform:scale(1.05) translateZ(0);opacity:1;z-index:999}100%{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0);z-index:999}}@keyframes browseIn{0%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1}10%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1;opacity:.7}80%{-webkit-transform:scale(1.05) translateZ(0);transform:scale(1.05) translateZ(0);opacity:1;z-index:999}100%{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0);z-index:999}}@-webkit-keyframes browseOutLeft{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:-1;-webkit-transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:-1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}@keyframes browseOutLeft{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:-1;-webkit-transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:-1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}@-webkit-keyframes browseOutRight{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:1;-webkit-transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}@keyframes browseOutRight{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:1;-webkit-transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}.drop.transition{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-duration:.4s;animation-duration:.4s;-webkit-animation-timing-function:cubic-bezier(.34,1.61,.7,1);animation-timing-function:cubic-bezier(.34,1.61,.7,1)}.drop.transition.in{-webkit-animation-name:dropIn;animation-name:dropIn}.drop.transition.out{-webkit-animation-name:dropOut;animation-name:dropOut}@-webkit-keyframes dropIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes dropIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes dropOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}@keyframes dropOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}.transition.fade.in{-webkit-animation-name:fadeIn;animation-name:fadeIn}.transition[class*="fade up"].in{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.transition[class*="fade down"].in{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.transition[class*="fade left"].in{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}.transition[class*="fade right"].in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.transition.fade.out{-webkit-animation-name:fadeOut;animation-name:fadeOut}.transition[class*="fade up"].out{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}.transition[class*="fade down"].out{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}.transition[class*="fade left"].out{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}.transition[class*="fade right"].out{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(5%);transform:translateY(5%)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(5%);transform:translateY(5%)}}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-5%);transform:translateY(-5%)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-5%);transform:translateY(-5%)}}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(5%);transform:translateX(5%)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(5%);transform:translateX(5%)}}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-5%);transform:translateX(-5%)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-5%);transform:translateX(-5%)}}.flip.transition.in,.flip.transition.out{-webkit-animation-duration:.6s;animation-duration:.6s}.horizontal.flip.transition.in{-webkit-animation-name:horizontalFlipIn;animation-name:horizontalFlipIn}.horizontal.flip.transition.out{-webkit-animation-name:horizontalFlipOut;animation-name:horizontalFlipOut}.vertical.flip.transition.in{-webkit-animation-name:verticalFlipIn;animation-name:verticalFlipIn}.vertical.flip.transition.out{-webkit-animation-name:verticalFlipOut;animation-name:verticalFlipOut}@-webkit-keyframes horizontalFlipIn{0%{-webkit-transform:perspective(2000px) rotateY(-90deg);transform:perspective(2000px) rotateY(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes horizontalFlipIn{0%{-webkit-transform:perspective(2000px) rotateY(-90deg);transform:perspective(2000px) rotateY(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}}@-webkit-keyframes verticalFlipIn{0%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}}@keyframes verticalFlipIn{0%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}}@-webkit-keyframes horizontalFlipOut{0%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateY(90deg);transform:perspective(2000px) rotateY(90deg);opacity:0}}@keyframes horizontalFlipOut{0%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateY(90deg);transform:perspective(2000px) rotateY(90deg);opacity:0}}@-webkit-keyframes verticalFlipOut{0%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}}@keyframes verticalFlipOut{0%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}}.scale.transition.in{-webkit-animation-name:scaleIn;animation-name:scaleIn}.scale.transition.out{-webkit-animation-name:scaleOut;animation-name:scaleOut}@-webkit-keyframes scaleIn{0%{opacity:0;-webkit-transform:scale(.8);transform:scale(.8)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes scaleIn{0%{opacity:0;-webkit-transform:scale(.8);transform:scale(.8)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes scaleOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}@keyframes scaleOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}.transition.fly{-webkit-animation-duration:.6s;animation-duration:.6s;-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}.transition.fly.in{-webkit-animation-name:flyIn;animation-name:flyIn}.transition[class*="fly up"].in{-webkit-animation-name:flyInUp;animation-name:flyInUp}.transition[class*="fly down"].in{-webkit-animation-name:flyInDown;animation-name:flyInDown}.transition[class*="fly left"].in{-webkit-animation-name:flyInLeft;animation-name:flyInLeft}.transition[class*="fly right"].in{-webkit-animation-name:flyInRight;animation-name:flyInRight}.transition.fly.out{-webkit-animation-name:flyOut;animation-name:flyOut}.transition[class*="fly up"].out{-webkit-animation-name:flyOutUp;animation-name:flyOutUp}.transition[class*="fly down"].out{-webkit-animation-name:flyOutDown;animation-name:flyOutDown}.transition[class*="fly left"].out{-webkit-animation-name:flyOutLeft;animation-name:flyOutLeft}.transition[class*="fly right"].out{-webkit-animation-name:flyOutRight;animation-name:flyOutRight}@-webkit-keyframes flyIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}100%{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes flyIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}100%{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@-webkit-keyframes flyInUp{0%{opacity:0;-webkit-transform:translate3d(0,1500px,0);transform:translate3d(0,1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes flyInUp{0%{opacity:0;-webkit-transform:translate3d(0,1500px,0);transform:translate3d(0,1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes flyInDown{0%{opacity:0;-webkit-transform:translate3d(0,-1500px,0);transform:translate3d(0,-1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInDown{0%{opacity:0;-webkit-transform:translate3d(0,-1500px,0);transform:translate3d(0,-1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyInLeft{0%{opacity:0;-webkit-transform:translate3d(1500px,0,0);transform:translate3d(1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInLeft{0%{opacity:0;-webkit-transform:translate3d(1500px,0,0);transform:translate3d(1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyInRight{0%{opacity:0;-webkit-transform:translate3d(-1500px,0,0);transform:translate3d(-1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInRight{0%{opacity:0;-webkit-transform:translate3d(-1500px,0,0);transform:translate3d(-1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes flyOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@-webkit-keyframes flyOutUp{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes flyOutUp{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@-webkit-keyframes flyOutDown{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes flyOutDown{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@-webkit-keyframes flyOutRight{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes flyOutRight{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@-webkit-keyframes flyOutLeft{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes flyOutLeft{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.transition.slide.in,.transition[class*="slide down"].in{-webkit-animation-name:slideInY;animation-name:slideInY;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="slide up"].in{-webkit-animation-name:slideInY;animation-name:slideInY;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="slide left"].in{-webkit-animation-name:slideInX;animation-name:slideInX;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="slide right"].in{-webkit-animation-name:slideInX;animation-name:slideInX;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}.transition.slide.out,.transition[class*="slide down"].out{-webkit-animation-name:slideOutY;animation-name:slideOutY;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="slide up"].out{-webkit-animation-name:slideOutY;animation-name:slideOutY;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="slide left"].out{-webkit-animation-name:slideOutX;animation-name:slideOutX;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="slide right"].out{-webkit-animation-name:slideOutX;animation-name:slideOutX;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}@-webkit-keyframes slideInY{0%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}100%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes slideInY{0%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}100%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}}@-webkit-keyframes slideInX{0%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}100%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes slideInX{0%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}100%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@-webkit-keyframes slideOutY{0%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}100%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@keyframes slideOutY{0%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}100%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@-webkit-keyframes slideOutX{0%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}100%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}}@keyframes slideOutX{0%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}100%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}}.transition.swing{-webkit-animation-duration:.8s;animation-duration:.8s}.transition[class*="swing down"].in{-webkit-animation-name:swingInX;animation-name:swingInX;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="swing up"].in{-webkit-animation-name:swingInX;animation-name:swingInX;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="swing left"].in{-webkit-animation-name:swingInY;animation-name:swingInY;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="swing right"].in{-webkit-animation-name:swingInY;animation-name:swingInY;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}.transition.swing.out,.transition[class*="swing down"].out{-webkit-animation-name:swingOutX;animation-name:swingOutX;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="swing up"].out{-webkit-animation-name:swingOutX;animation-name:swingOutX;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="swing left"].out{-webkit-animation-name:swingOutY;animation-name:swingOutY;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="swing right"].out{-webkit-animation-name:swingOutY;animation-name:swingOutY;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}@-webkit-keyframes swingInX{0%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateX(15deg);transform:perspective(1000px) rotateX(15deg)}80%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}100%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}}@keyframes swingInX{0%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateX(15deg);transform:perspective(1000px) rotateX(15deg)}80%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}100%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}}@-webkit-keyframes swingInY{0%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateY(-17.5deg);transform:perspective(1000px) rotateY(-17.5deg)}80%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}100%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}}@keyframes swingInY{0%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateY(-17.5deg);transform:perspective(1000px) rotateY(-17.5deg)}80%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}100%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}}@-webkit-keyframes swingOutX{0%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}40%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}60%{-webkit-transform:perspective(1000px) rotateX(17.5deg);transform:perspective(1000px) rotateX(17.5deg)}80%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}}@keyframes swingOutX{0%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}40%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}60%{-webkit-transform:perspective(1000px) rotateX(17.5deg);transform:perspective(1000px) rotateX(17.5deg)}80%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}}@-webkit-keyframes swingOutY{0%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}40%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}60%{-webkit-transform:perspective(1000px) rotateY(-10deg);transform:perspective(1000px) rotateY(-10deg)}80%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}}@keyframes swingOutY{0%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}40%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}60%{-webkit-transform:perspective(1000px) rotateY(-10deg);transform:perspective(1000px) rotateY(-10deg)}80%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}}.flash.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:flash;animation-name:flash}.shake.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:shake;animation-name:shake}.bounce.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:bounce;animation-name:bounce}.tada.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:tada;animation-name:tada}.pulse.transition{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-name:pulse;animation-name:pulse}.jiggle.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:jiggle;animation-name:jiggle}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@-webkit-keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@-webkit-keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.9);transform:scale(.9);opacity:.7}}@keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.9);transform:scale(.9);opacity:.7}}@-webkit-keyframes jiggle{0%,100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}@keyframes jiggle{0%,100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}
\ No newline at end of file diff --git a/public/fonts/octicons.eot b/public/fonts/octicons.eot Binary files differindex 2bf20bca..2df623f2 100755..100644 --- a/public/fonts/octicons.eot +++ b/public/fonts/octicons.eot diff --git a/public/fonts/octicons.svg b/public/fonts/octicons.svg index d932988b..259a28e9 100755..100644 --- a/public/fonts/octicons.svg +++ b/public/fonts/octicons.svg @@ -27,15 +27,16 @@ Applies to all other files <glyph glyph-name="arrow-up" unicode="" d="M320 640L0 256h192v-256h256V256h192L320 640z" horiz-adv-x="640" /> <glyph glyph-name="beaker" unicode="" d="M920-102L704 384V640h64v64H192v-64h64v-256L40-102c-19-42 12-90 58-90h764c46 0 77 48 58 90zM240 192l80 192V640h320v-256l80-192H240z m272 128h64v-64h-64v64z m-64 64h-64v64h64v-64z m0 192h64v-64h-64v64z m0 192h-64V832h64v-64z" horiz-adv-x="1024" /> <glyph glyph-name="bell" unicode="" d="M896 64v-64H0v64l47 37c49 49 52 163 76 283 49 241 261 320 261 320 0 35 29 64 64 64s64-29 64-64c0 0 217-79 266-320 24-120 27-234 76-283l42-37z m-448-256c71 0 128 57 128 128H320c0-71 57-128 128-128z" horiz-adv-x="896" /> +<glyph glyph-name="bold" unicode="" d="M0 704h245c159 0 275-48 275-189 0-73-40-143-107-167v-4c85-19 147-79 147-183 0-153-126-225-295-225H0V704z m234-317c107 0 152 42 152 108 0 75-50 103-150 103H136v-211h98z m17-345c113 0 176 41 176 127 0 81-61 116-176 116H136v-243h115z" horiz-adv-x="640" /> <glyph glyph-name="book" unicode="" d="M128 512h256v-64H128v64z m0-192h256v64H128v-64z m0-128h256v64H128v-64z m704 320H576v-64h256v64z m0-128H576v-64h256v64z m0-128H576v-64h256v64z m128 384v-576c0-35-29-64-64-64H544l-64-64-64 64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h352l64-64 64 64h352c35 0 64-29 64-64z m-512-32l-32 32H64v-576h384V608z m448 32H544l-32-32v-544h384V640z" horiz-adv-x="1024" /> -<glyph glyph-name="bookmark" unicode="" d="M0-64l192 128 192-128V640c0 35-29 64-64 64H64c-35 0-64-29-64-64v-704z m72 580l88 1 27 83c3 9 7 9 10 0l27-83 88-1c9 0 11-3 4-9l-72-52 28-83c2-9-1-11-8-7l-72 52-72-52c-7-4-10-2-8 7l28 83-72 52c-7 6-5 9 4 9z" horiz-adv-x="384" /> +<glyph glyph-name="bookmark" unicode="" d="M576 832H64C17 832 0 815 0 768v-960l320 198 320-198V768c0 47-17 64-64 64z m-50-272l-119-87 46-138c4-14-1-18-13-11l-120 86-120-86c-12-7-16-3-13 11l46 138-119 87c-11 10-9 15 6 15l147 2 45 138h16l45-138 147-2c15 0 17-5 6-15z" horiz-adv-x="640" /> <glyph glyph-name="briefcase" unicode="" d="M576 576v64c0 35-29 64-64 64H384c-35 0-64-29-64-64v-64H64c-35 0-64-29-64-64v-512c0-35 29-64 64-64h768c35 0 64 29 64 64V512c0 35-29 64-64 64H576z m-192 64h128v-64H384v64z m448-384H512v-64H384v64H64V512h64v-192h640V512h64v-256z" horiz-adv-x="896" /> <glyph glyph-name="broadcast" unicode="" d="M576 256h-64c35 0 64 29 64 64v64c0 35-29 64-64 64h-64c-35 0-64-29-64-64v-64c0-35 29-64 64-64h-64c-35 0-64-29-64-64v-128h64v-192c0-35 29-64 64-64h64c35 0 64 29 64 64V64h64V192c0 35-29 64-64 64zM448 384h64v-64h-64v64z m128-256h-64v-256h-64V128h-64v64h192v-64z m134 224c0 127-103 230-230 230S250 479 250 352c0-18 2-35 6-52v-127c-39 49-64 111-64 179 0 159 129 288 288 288s288-129 288-288c0-68-25-130-64-179V300c4 17 6 34 6 52z m250 0c0-184-104-344-256-424v67c119 74 198 206 198 357 0 233-189 422-422 422S58 585 58 352c0-151 79-283 198-357v-67C104 8 0 168 0 352 0 617 215 832 480 832s480-215 480-480z" horiz-adv-x="1024" /> <glyph glyph-name="browser" unicode="" d="M320 640h64v-64h-64V640zM192 640h64v-64h-64V640zM64 640h64v-64H64V640zM832 0H64V512h768V0zM832 576H448v64h384V576zM896 640c0 35.35-28.65 64-64 64H64c-35.35 0-64-28.65-64-64v-640c0-35.35 28.65-64 64-64h768c35.35 0 64 28.65 64 64V640z" horiz-adv-x="896" /> <glyph glyph-name="bug" unicode="" d="M704 192h192v64H704v64l203 66-22 60-181-62v64c0 35-29 64-64 64v64c0 31-23 56-53 62l66 66h115V768H627L499 640h-38L333 768H192v-64h115l66-66c-30-6-53-31-53-62v-64c-35 0-64-29-64-64v-64L75 446l-22-60 203-66v-64H64v-64h192v-64L53 62l22-60 181 62v-64c0-35 29-64 64-64h64l64 64V448h64v-448l64-64h64c35 0 64 29 64 64v64l181-62 22 60-203 66v64zM576 512H384v64h192v-64z" horiz-adv-x="1024" /> <glyph glyph-name="calendar" unicode="" d="M768 704h-64v-96c0-18-14-32-32-32H544c-18 0-32 14-32 32v96H320v-96c0-18-14-32-32-32H160c-18 0-32 14-32 32v96H64c-35 0-64-29-64-64v-704c0-35 29-64 64-64h704c35 0 64 29 64 64V640c0 35-29 64-64 64z m0-768H64V512h704v-576zM256 640h-64V768h64v-128z m384 0h-64V768h64v-128zM320 384h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64zM192 256h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64zM192 128h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64zM192 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z" horiz-adv-x="896" /> <glyph glyph-name="check" unicode="" d="M768 512L256 0 0 256l96 96 160-160 416 416 96-96z" horiz-adv-x="768" /> -<glyph glyph-name="checklist" unicode="" d="M208 166c1 21 10 42 25 56l64 60c16 15 35 22 55 22s41-8 57-23l39-40 128 128V640c0 35-29 64-64 64H64c-35 0-64-29-64-64v-576c0-35 29-64 64-64h272L231 108c-15 16-23 36-23 58z m-16 474h320v-64H192v64z m-64-192H64v64h64v-64z m0 128H64v64h64v-64z m64-64h320v-64H192v64z m544-224L448 0 288 164l64 60 96-96 224 224 64-64z" horiz-adv-x="768" /> +<glyph glyph-name="checklist" unicode="" d="M1024 288L640-96 448 96l96 96 96-96 288 288 96-96zM365 51l51-51H128c-35 0-64 29-64 64V640c0 35 29 64 64 64h448c35 0 64-29 64-64v-416l-51 51c-25 25-66 25-91 0L365 141c-25-25-25-65 0-90zM256 576h320v64H256v-64z m0-128h320v64H256v-64z m0-128h192v64H256v-64z m-64-64h-64v-64h64v64z m0 128h-64v-64h64v64z m0 128h-64v-64h64v64z m0 128h-64v-64h64v64z" horiz-adv-x="1024" /> <glyph glyph-name="chevron-down" unicode="" d="M320 128L0 448l96 96 224-240 224 240 96-96-320-320z" horiz-adv-x="640" /> <glyph glyph-name="chevron-left" unicode="" d="M352 640l96-96-240-224 240-224-96-96L32 320l320 320z" horiz-adv-x="512" /> <glyph glyph-name="chevron-right" unicode="" d="M480 320L160 0l-96 96 240 224L64 544l96 96 320-320z" horiz-adv-x="512" /> @@ -100,6 +101,7 @@ Applies to all other files <glyph glyph-name="issue-closed" unicode="" d="M448 192h128v-128H448V192z m128 384H448v-320h128V576z m96-96l-64-64 160-160 256 288-64 64-192-224-96 96zM512-45c-201 0-365 164-365 365s164 365 365 365c117 0 221-56 288-141l59 59C777 704 652 768 512 768 265 768 64 567 64 320s201-448 448-448 448 201 448 448l-97-97c-42-154-183-268-351-268z" horiz-adv-x="1024" /> <glyph glyph-name="issue-opened" unicode="" d="M448 685c201 0 365-164 365-365S649-45 448-45 83 119 83 320s164 365 365 365m0 83C201 768 0 567 0 320s201-448 448-448 448 201 448 448S695 768 448 768z m64-192H384v-320h128V576z m0-384H384v-128h128V192z" horiz-adv-x="896" /> <glyph glyph-name="issue-reopened" unicode="" d="M512 256H384V576h128v-320zM384 64h128V192H384v-128z m405 128H640l96-96c-67-85-171-141-288-141-201 0-365 164-365 365 0 22 2 43 6 64H5c-3-21-5-42-5-64 0-247 201-448 448-448 140 0 264 65 346 166l102-102V192H789zM107 448h149l-96 96c67 85 171 141 288 141 201 0 365-164 365-365 0-22-2-43-6-64h84c3 21 5 42 5 64 0 247-201 448-448 448-140 0-264-65-346-166L0 704v-256h107z" horiz-adv-x="896" /> +<glyph glyph-name="italic" unicode="" d="M180 512h127L192-64H64l116 576z m23 173c0 45 37 83 85 83 36 0 72-24 72-66 0-48-38-83-85-83-37 0-72 24-72 66z" horiz-adv-x="384" /> <glyph glyph-name="jersey" unicode="" d="M224 448l-32-32v-320l32-32h128l32 32V416l-32 32H224z m96-320h-64V384h64v-256z m401 464c-14 88-20 168-17 240H513c0-17-8-31-25-44-16-13-40-19-72-19s-56 6-72 19c-15 13-23 27-23 44H128c3-72-2-152-16-240-13-88-51-136-112-144v-576c1-17 7-31 20-44s27-19 44-20h704c17 1 31 7 44 20s19 27 20 44V448c-61 8-98 56-112 144z m47-720H64V384c57 32 95 80 110 144s20 144 18 240h64c-1-50 10-94 33-132 23-37 65-57 128-60 63 1 105 21 128 60 23 38 32 82 31 132h64c1-91 8-163 21-216 13-52 44-128 107-168v-512zM480 448l-32-32v-320l32-32h128l32 32V416l-32 32H480z m96-320h-64V384h64v-256z" horiz-adv-x="896" /> <glyph glyph-name="key" unicode="" d="M821 693c-48 48-108 73-181 75-72-2-133-27-181-75s-72-108-74-181c0-19 2-38 6-57L0 64v-64l64-64h128l64 64v64h64v64h64v64h128l70 71c19-5 38-7 58-7 73 2 133 27 181 75s73 108 75 181c-2 73-27 133-75 181zM704 488c-49 0-88 39-88 88s39 88 88 88 88-39 88-88-39-88-88-88z" horiz-adv-x="896" /> <glyph glyph-name="keyboard" unicode="" d="M640 512h-64v64h64v-64z m-448-64h-64v-64h64v64z m320 128h-64v-64h64v64z m-256 0H128v-64h128v64z m512-448h128v64H768v-64zM512 384h64v64h-64v-64zM256 192H128v-64h128v64z m512 384h-64v-64h64v64z m128 0h-64v-64h64v64zM768 256h128V448H768v-192z m256 384v-576c0-35-29-64-64-64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h896c35 0 64-29 64-64z m-64 0H64v-576h896V640zM384 384h64v64h-64v-64z m0 192h-64v-64h64v64zM256 384h64v64h-64v-64z m64-256h384v64H320v-64z m320 256h64v64h-64v-64z m-448-64h-64v-64h64v64z m320 0v-64h64v64h-64z m-128 0v-64h64v64h-64z m-64 0h-64v-64h64v64z m320-64h64v64h-64v-64z" horiz-adv-x="1024" /> @@ -107,10 +109,11 @@ Applies to all other files <glyph glyph-name="light-bulb" unicode="" d="M352 832C159 832 0 692 0 512c0-59 35-144 64-192 86-144 114-178 128-256v-64h320v64c14 78 42 112 128 256 29 48 64 133 64 192C704 692 545 832 352 832z m233-479c-16-28-30-51-43-71-55-90-80-132-93-207-1-3-1-7-1-11H256c0 4 0 8-1 11-13 75-38 117-93 207-13 20-27 43-43 71-27 45-55 117-55 159C64 653 193 768 352 768c78 0 151-27 206-76 53-48 82-112 82-180 0-42-28-114-55-159zM192-64h320c-15-73-83-128-160-128s-145 55-160 128z" horiz-adv-x="768" /> <glyph glyph-name="link" unicode="" d="M256 256h64v-64h-64c-96 0-192 108-192 224s99 224 192 224h256c93 0 192-108 192-224 0-90-58-174-128-208v74c37 29 64 81 64 134 0 82-65 160-128 160H256c-63 0-128-78-128-160s64-160 128-160z m576 192h-64v-64h64c64 0 128-78 128-160s-65-160-128-160H576c-63 0-128 78-128 160 0 53 27 105 64 134v74c-70-34-128-118-128-208 0-116 99-224 192-224h256c93 0 192 108 192 224s-96 224-192 224z" horiz-adv-x="1024" /> <glyph glyph-name="link-external" unicode="" d="M704 192h64v-192c0-35-29-64-64-64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h192v-64H64v-640h640V192zM384 704l144-144-208-208 96-96 208 208 144-144V704H384z" horiz-adv-x="768" /> -<glyph glyph-name="list-ordered" unicode="" d="M320 256h448v128h-448v-128z m0-256h448v128h-448v-128z m0 640v-128h448v128h-448z m-241-256h78v256h-36l-85-23v-50l43 2v-185z m110-206c0 36-12 78-96 78-33 0-64-6-83-16l1-66c21 10 42 15 67 15s32-11 32-28c0-26-30-58-110-112v-50h192v67l-91-2c49 30 87 66 87 113l1 1z" horiz-adv-x="768" /> -<glyph glyph-name="list-unordered" unicode="" d="M0 256h128v128h-128v-128z m0 256h128v128h-128v-128z m0-512h128v128h-128v-128z m256 256h512v128h-512v-128z m0 256h512v128h-512v-128z m0-512h512v128h-512v-128z" horiz-adv-x="768" /> +<glyph glyph-name="list-ordered" unicode="" d="M768 0c0-38 0-64-38-64H294c-38 0-38 26-38 64s0 64 38 64h436c38 0 38-26 38-64zM294 576h436c38 0 38 26 38 64s0 64-38 64H294c-38 0-38-26-38-64s0-64 38-64z m436-192H294c-38 0-38-26-38-64s0-64 38-64h436c38 0 38 26 38 64s0 64-38 64zM128 768H82C63 756 45 752 16 746v-42h48v-137H10v-55h182v55h-64V768z m16-520c-11 0-29-2-42-4 34 36 73 80 73 121-1 50-36 83-87 83-38 0-62-13-88-41l37-37c12 12 24 24 41 24 18 0 31-10 31-33 0-34-49-77-109-132v-37h192l-6 56h-42z m-5-242v2c28 12 41 30 41 55 0 45-36 71-92 71-31 0-57-12-82-33l35-41c16 13 28 20 44 20 17 0 27-8 27-23 0-17-13-28-55-28v-48c53 0 63-11 63-30 0-16-15-24-37-24-18 0-36 9-52 24L0-92c19-23 49-36 90-36 53 0 98 26 98 74 0 32-20 52-49 60z" horiz-adv-x="768" /> +<glyph glyph-name="list-unordered" unicode="" d="M128 0c0-38 0-64-38-64H38c-38 0-38 26-38 64s0 64 38 64h52c38 0 38-26 38-64z m166 576h436c38 0 38 26 38 64s0 64-38 64H294c-38 0-38-26-38-64s0-64 38-64zM90 384H38c-38 0-38-26-38-64s0-64 38-64h52c38 0 38 26 38 64s0 64-38 64z m0 320H38c-38 0-38-26-38-64s0-64 38-64h52c38 0 38 26 38 64s0 64-38 64z m640-320H294c-38 0-38-26-38-64s0-64 38-64h436c38 0 38 26 38 64s0 64-38 64z m0-320H294c-38 0-38-26-38-64s0-64 38-64h436c38 0 38 26 38 64s0 64-38 64z" horiz-adv-x="768" /> <glyph glyph-name="location" unicode="" d="M384 832C172 832 0 672 0 480c0-289 384-672 384-672s384 383 384 672C768 672 596 832 384 832z m0-931C265 31 64 292 64 480 64 639 208 768 384 768c86 0 167-31 228-87 59-55 92-126 92-201 0-188-201-449-320-579z m128 579c0-71-57-128-128-128s-128 57-128 128 57 128 128 128 128-57 128-128z" horiz-adv-x="768" /> <glyph glyph-name="lock" unicode="" d="M256 0h-64v64h64v-64z m512 384v-448c0-35-29-64-64-64H64c-35 0-64 29-64 64V384c0 35 29 64 64 64h64V576C128 717 243 832 384 832s256-115 256-256v-128h64c35 0 64-29 64-64z m-525 64h282V576c0 78-63 141-141 141s-141-63-141-141v-128z m461-64H128v-448h576V384z m-448-64h-64v-64h64v64z m0-128h-64v-64h64v64z" horiz-adv-x="768" /> +<glyph glyph-name="logo-gist" unicode="" d="M301 402h157v-257c-35-17-105-22-162-22-164 0-223 141-223 323 0 181 59 323 223 323 81 0 132-15 210-47v68c-41 21-106 42-210 42-224 0-296-172-296-386s71-386 296-386c105 0 179 17 230 41v364h-225v-63z m409-239v409h-68v-401c0-80 38-110 110-110v57c-31 0-42 10-42 45z m16 559c0 28-22 50-50 50s-50-22-50-50 22-50 50-50 50 22 50 50z m277-364c-96 8-114 31-114 75 0 49 21 86 120 86 67 0 106-10 145-23v60c-44 19-97 25-144 25-141 0-187-77-187-148 0-69 30-120 175-133 99-8 113-40 113-86 0-47-28-91-132-91-71 0-119 12-150 23v-60c32-13 101-25 149-25 152 0 201 77 201 154 0 82-34 130-176 143z m550 158v55h-155v160l-70-20v-135l-100-29v-31h100v-320c0-98 77-136 160-136 13 0 33 1 45 4v56c-13-1-26-2-39-2-63 0-96 25-96 86v312h155z" horiz-adv-x="1552.629" /> <glyph glyph-name="logo-github" unicode="" d="M552.73 499.865H311.557c-6.205 0-11.25-5.045-11.25-11.297v-117.887c0-6.252 5.045-11.272 11.25-11.272h94.109v-146.542c0 0-21.145-7.057-79.496-7.057-68.914 0-165.156 25.244-165.156 236.795 0 211.642 100.197 239.491 194.307 239.491 81.465 0 116.514-14.304 138.869-21.241 7.01-2.203 13.404 4.831 13.404 11.105L534.543 785.87c0 2.912-1.041 6.417-4.262 8.785C521.186 801.048 465.865 832 326.168 832 165.133 832 0 763.513 0 434.243 0 105.02099999999996 189.051 56 348.381 56c131.883 0 212.021 56.314 212.021 56.314 3.268 1.801 3.6 6.395 3.6 8.479V488.568C563.955 494.773 558.887 499.865 552.73 499.865zM1772.381 803.866h-135.695c-6.252 0-11.271-5.044-11.271-11.296v-262.393h-211.619V792.57c0 6.252-5.068 11.296-11.178 11.296h-135.838c-6.111 0-11.084-5.044-11.084-11.296v-710.473c0-6.299 5.021-11.32 11.084-11.32h135.838c6.203 0 11.178 5.068 11.178 11.32V385.933h211.619l-0.475-303.883c0-6.3 5.021-11.272 11.084-11.272h135.885c6.252 0 11.131 5.068 11.131 11.272l0.473 710.521C1783.607 798.822 1778.539 803.866 1772.381 803.866zM714.949 787.763c-48.357 0-87.574-39.572-87.574-88.403 0-48.855 39.217-88.428 87.574-88.428s87.527 39.572 87.527 88.428C802.477 748.19 763.307 787.763 714.949 787.763zM792.861 559.874c0 6.205-5.02 11.344-11.131 11.344H646.32c-6.348 0-11.746-6.394-11.746-12.67 0 0 0-394.654 0-469.867 0-13.735 8.572-17.903 19.703-17.903 0 0 57.688 0 121.959 0 13.311 0 16.814 6.536 16.814 18.188-0.094 25.197-0.094 123.808-0.094 142.942C792.861 250.09500000000003 792.861 559.874 792.861 559.874zM2297.973 570.152h-134.701c-6.158 0-11.084-5.092-11.084-11.344v-348.31c0 0-34.244-25.197-82.934-25.197-48.547 0-61.525 22.024-61.525 69.719 0 47.553 0 303.835 0 303.835 0 6.252-5.068 11.345-11.131 11.345h-136.643c-6.252 0-11.178-5.093-11.178-11.345 0 0 0-185.521 0-326.807 0-141.284 78.766-175.906 186.99-175.906 88.854 0 160.609 49.115 160.609 49.115s3.363-25.766 5.068-28.844c1.422-3.078 5.447-6.158 9.852-6.158h86.58c6.158 0 11.178 5.069 11.178 11.321l0.379 477.278C2309.15 565.0609999999999 2304.129 570.152 2297.973 570.152zM2666.932 586.1610000000001c-76.539 0-128.592-34.148-128.592-34.148V792.57c0 6.252-5.068 11.296-11.131 11.296h-136.264c-6.109 0-11.131-5.044-11.131-11.296l-0.379-710.521c0-6.3 5.068-11.272 11.225-11.272 0 0 94.773 0 94.869 0 4.215 0 7.389 2.179 9.805 5.968 2.369 3.837 5.73 32.775 5.73 32.775s55.557-52.763 161.035-52.763c123.807 0 194.758 62.804 194.758 281.906C2856.859 557.482 2743.471 586.1610000000001 2666.932 586.1610000000001zM2613.791 185.77499999999998c-46.701 1.421-78.34 22.64-78.34 22.64v225.07c0 0 31.307 19.206 69.672 22.593 48.547 4.31 95.438-10.326 95.438-126.13C2700.322 207.94100000000003 2679.199 183.83399999999995 2613.791 185.77499999999998zM1185.125 188.33299999999997c-5.969 0-21.219-2.368-36.85-2.368-49.92 0-66.971 23.256-66.971 53.331 0 30.218 0 199.85 0 199.85h101.926c6.252 0 11.178 5.044 11.178 11.343v109.48c0.094 6.299-4.926 11.344-11.178 11.344h-101.926l-0.143 134.535c0 5.092-2.699 7.625-8.572 7.625H933.861c-5.352 0-8.336-2.391-8.336-7.578v-139.035c0 0-69.576-16.79-74.266-18.188-4.641-1.326-8.051-5.684-8.051-10.822v-87.408c0-6.252 5.068-11.344 11.178-11.344h71.139c0 0 0-91.34 0-210.222 0-156.109 109.553-171.455 183.439-171.455 33.723 0 74.076 10.988 80.848 13.356 4.074 1.421 6.395 5.637 6.395 10.136l0.047 96.101C1196.254 183.312 1190.998 188.428 1185.125 188.33299999999997z" horiz-adv-x="2856.857" /> <glyph glyph-name="mail" unicode="" d="M0 576v-512c0-35 29-64 64-64h768c35 0 64 29 64 64V576c0 35-29 64-64 64H64c-35 0-64-29-64-64z m832 0L448 256 64 576h768zM64 480l256-192L64 96V480z m64-416l224 192 96-96 96 96 224-192H128z m704 32L576 288l256 192v-384z" horiz-adv-x="896" /> <glyph glyph-name="mail-read" unicode="" d="M384 512H256v64h128v-64z m192-64H256v-64h320v64z m320 31v-543c0-35-29-64-64-64H64c-35 0-64 29-64 64V479c0 21 10 40 27 52l101 72v37c0 35 29 64 64 64h77L448 832l179-128h77c35 0 64-29 64-64v-37l101-72c17-12 27-31 27-52zM192 352l256-160 256 160V640H192v-288zM64-32l288 192L64 352v-384z m704-32L448 128 128-64h640z m64 416L544 160l288-192V352z" horiz-adv-x="896" /> @@ -118,7 +121,7 @@ Applies to all other files <glyph glyph-name="mark-github" unicode="" d="M512 832C229.252 832 0 602.748 0 320c0-226.251 146.688-418.126 350.155-485.813 25.593-4.686 34.937 11.125 34.937 24.626 0 12.188-0.469 52.562-0.718 95.314-128.708-23.46-161.707 31.541-172.469 60.373-5.525 14.809-30.407 60.249-52.398 72.263-17.988 9.828-43.26 33.237-0.917 33.735 40.434 0.476 69.348-37.308 78.471-52.75 45.938-77.749 119.876-55.627 148.999-42.5 4.654 32.999 17.902 55.627 32.501 68.373-113.657 12.939-233.22 56.875-233.22 253.063 0 55.94 19.968 101.561 52.658 137.404-5.22 12.999-22.844 65.095 5.063 135.563 0 0 42.937 13.749 140.811-52.501 40.811 11.406 84.594 17.031 128.124 17.22 43.499-0.188 87.314-5.874 128.188-17.28 97.689 66.311 140.686 52.501 140.686 52.501 28-70.532 10.375-122.564 5.124-135.499 32.811-35.844 52.626-81.468 52.626-137.404 0-196.686-119.751-240-233.813-252.686 18.439-15.876 34.748-47.001 34.748-94.748 0-68.437-0.686-123.627-0.686-140.501 0-13.625 9.312-29.561 35.25-24.562C877.436-97.99800000000005 1024 93.87400000000002 1024 320 1024 602.748 794.748 832 512 832z" horiz-adv-x="1024" /> <glyph glyph-name="markdown" unicode="" d="M950.154 640H73.846C33.127 640 0 606.873 0 566.154v-492.308C0 33.125 33.127 0 73.846 0h876.308c40.721 0 73.846 33.125 73.846 73.846V566.154C1024 606.873 990.875 640 950.154 640zM576 128.125L448 128V320l-96-123.077L256 320v-192H128V512h128l96-128 96 128 128 0.125V128.125zM767.091 96.125L608 320h96V512h128v-192h96L767.091 96.125z" horiz-adv-x="1024" /> <glyph glyph-name="megaphone" unicode="" d="M640 768c-11 0-23-3-33-9-92-56-319-220-415-247-88 0-192-43-192-160s104-160 192-160c19-5 41-15 64-26v-294h128V93c86-55 172-117 223-148 10-6 22-9 33-9 33 0 64 27 64 64V704c0 37-31 64-64 64z m0-768c-24 15-57 37-96 64-10 7-21 14-32 22V620c10 7 20 13 30 20 39 26 74 49 98 64v-704z m128 384h256v-64H768v64z m0-128l256-128v-64L768 192v64z m256 384v-64L768 448v64l256 128z" horiz-adv-x="1024" /> -<glyph glyph-name="mention" unicode="" d="M466.697 732.899C238.66 760.898 31.1 598.735 3.102 370.698c-28-228.038 134.163-435.598 362.2-463.597 71.429-8.756 145.115 0.913 213.325 29.946l-0.016 0.032c24.404 10.357 35.788 38.538 25.431 62.939-10.359 24.403-38.538 35.787-62.94 25.43l-0.001 0.004c-52.472-22.339-109.15-29.799-164.1-23.067-175.413 21.538-300.153 181.2-278.616 356.613 21.538 175.413 181.199 300.154 356.613 278.616 175.412-21.538 300.154-181.199 278.617-356.612-4.309-35.083-21.542-55.725-61.6-55.725-42.5 0-64 45.889-64 81.222V432c0 26.51-21.49 48-48 48-9.699 0-18.72-2.887-26.269-7.833-25.684 20.259-57.437 33.87-94.349 38.402-105.246 12.923-201.045-61.924-213.967-167.17C212.508 238.15200000000004 287.354 142.35400000000004 392.6 129.43200000000002c57.379-7.045 116.216 14.707 157.871 53.13 24.959-28.124 59.866-47.624 100.121-52.567 87.707-10.769 167.537 51.602 178.307 139.309C856.898 497.34 694.734 704.899 466.697 732.899zM511.285 308.30100000000004c-6.462-52.623-54.361-90.047-106.985-83.585-52.623 6.461-90.046 54.36-83.585 106.984 6.461 52.623 54.361 90.046 106.984 83.585C480.322 408.823 517.746 360.924 511.285 308.30100000000004z" horiz-adv-x="832" /> +<glyph glyph-name="mention" unicode="" d="M421-128c80 0 161 20 228 60l-27 60c-54-33-121-53-194-53-207 0-361 133-361 366C67 585 274 765 488 765c221 0 334-140 334-333 0-153-86-247-160-247-67 0-87 47-67 140l47 240h-67l-7-46c-26 40-60 53-100 53-140 0-234-153-234-280 0-107 60-167 147-167 54 0 107 34 147 80 7-60 60-93 127-93 107 0 241 107 241 320C896 665 742 832 501 832 234 832 0 619 0 299c0-280 187-427 421-427z m-20 320c-47 0-87 33-87 107 0 93 60 206 154 206 33 0 54-13 80-53l-33-193c-40-47-80-67-114-67z" horiz-adv-x="896" /> <glyph glyph-name="milestone" unicode="" d="M512 704H384V832h128v-128z m256-320H128c-35 0-64 29-64 64V576c0 35 29 64 64 64h640l128-128-128-128zM512 576H384v-128h128V576z m-128-768h128V320H384v-512z" horiz-adv-x="896" /> <glyph glyph-name="mirror" unicode="" d="M992 531L544 832 96 531c-19-12-32-29-32-51v-672l480 256 480-256V480c0 22-13 39-32 51z m-32-627L576 112v80h-64v-80L128-96V480L512 736v-288h64V736l384-256v-576zM384 384h320V512l192-192-192-192V256H384v-128L192 320l192 192v-128z" horiz-adv-x="1024" /> <glyph glyph-name="mortar-board" unicode="" d="M501 244l-245 76s0-96 0-160 115-96 256-96 256 32 256 96 0 160 0 160l-245-76c-7-2-15-2-23 0h1z m18 409c-4 1-9 1-13 0l-489-152c-21-7-21-36 0-43l111-35v-113c-19-11-32-32-32-55 0-12 3-23 9-32-5-9-9-20-9-32v-165c0-35 128-35 128 0v165c0 12-3 23-9 32 5 9 9 20 9 32 0 24-13 44-32 55v93l313-98c4-1 9-1 13 0l489 152c21 7 21 36 0 43l-488 153z m-6-205c-35 0-64 14-64 32s29 32 64 32 64-14 64-32-29-32-64-32z" horiz-adv-x="1024" /> @@ -137,7 +140,7 @@ Applies to all other files <glyph glyph-name="primitive-square" unicode="" d="M512 64H0V576h512V64z" horiz-adv-x="512" /> <glyph glyph-name="pulse" unicode="" d="M736 320.062L563.188 486.406 422.406 288 352 729.594 152.438 320.062H0V192h230.406L288 307.188l57.594-345.562L576 288l102.375-96H896V320.062H736z" horiz-adv-x="896" /> <glyph glyph-name="question" unicode="" d="M384 192h128v-128H384V192z m256 224c0-137-128-160-128-160H384c0 35 29 64 64 64h32c18 0 32 14 32 32v64c0 18-14 32-32 32h-64c-18 0-32-14-32-32v-32H256c0 96 96 192 192 192s192-64 192-160zM448 685c201 0 365-164 365-365S649-45 448-45 83 119 83 320s164 365 365 365m0 83C201 768 0 567 0 320s201-448 448-448 448 201 448 448S695 768 448 768z" horiz-adv-x="896" /> -<glyph glyph-name="quote" unicode="" d="M0 320v-256h256V320H128c0 0 0 128 128 128V576C256 576 0 576 0 320zM640 448V576c0 0-256 0-256-256v-256h256V320H512C512 320 512 448 640 448z" horiz-adv-x="640" /> +<glyph glyph-name="quote" unicode="" d="M394 629C239 529 163 426 163 254c10 3 19 3 28 3 81 0 160-55 160-154 0-103-66-167-160-167C70-64 0 33 0 208 0 451 112 626 321 747l73-118z m448 0C687 529 611 426 611 254c10 3 19 3 28 3 81 0 160-55 160-154 0-103-66-167-160-167-121 0-191 97-191 272 0 243 112 418 321 539l73-118z" horiz-adv-x="896" /> <glyph glyph-name="radio-tower" unicode="" d="M306.838 441.261c15.868 16.306 15.868 42.731 0 59.037-20.521 21.116-30.643 48.417-30.705 76.124 0.062 27.77 10.183 55.039 30.705 76.186 15.868 16.337 15.868 42.764 0 59.069-7.934 8.184-18.272 12.275-28.706 12.275-10.371 0-20.804-4.029-28.738-12.213-36.266-37.297-54.633-86.433-54.57-135.317-0.062-48.792 18.305-97.927 54.57-135.161C265.262 424.955 290.97 424.955 306.838 441.261zM149.093 798.858c-8.121 8.309-18.68 12.463-29.3 12.463-10.558 0-21.179-4.154-29.237-12.463C30.8 737.509 0.751 656.856 0.813 576.422 0.751 496.081 30.8 415.272 90.494 353.985c16.181-16.618 42.356-16.618 58.537 0 16.118 16.587 16.118 43.513 0 60.067-43.7 44.98-65.44 103.456-65.44 162.368s21.74 117.449 65.44 162.368C165.149 755.439 165.149 782.365 149.093 798.858zM513.031 472.153c57.351 0 103.956 46.574 103.956 103.956 0 57.382-46.605 103.955-103.956 103.955-57.381 0-103.956-46.573-103.956-103.955C409.076 518.727 455.65 472.153 513.031 472.153zM933.539 798.233c-16.181 16.618-42.355 16.618-58.475 0-16.181-16.587-16.181-43.513 0-60.068 43.668-44.918 65.409-103.456 65.409-162.368 0-58.85-21.805-117.387-65.473-162.306-16.117-16.618-16.117-43.575 0.062-60.068 8.059-8.309 18.616-12.463 29.237-12.463 10.558 0 21.178 4.154 29.236 12.463 59.726 61.287 89.774 142.096 89.649 222.437C1023.313 656.138 993.264 736.947 933.539 798.233zM513.281 389.127L513.281 389.127c-26.489-0.062-53.04 6.466-77.091 19.429L235.057-127.59000000000003h95.209l54.819 63.973h255.891l53.977-63.973h95.272L589.124 408.431C565.384 395.655 539.395 389.127 513.281 389.127zM512.656 358.483L577.004 128.29999999999995H449.059L512.656 358.483zM385.086 0.3550000000000182l63.974 63.973h127.944l63.974-63.973H385.086zM717.194 710.958c-15.868-16.306-15.868-42.731 0-59.037 20.491-21.116 30.611-48.511 30.674-76.124-0.062-27.77-10.183-55.102-30.674-76.187-15.868-16.336-15.868-42.763 0-59.068 7.871-8.184 18.242-12.213 28.737-12.213 10.309 0 20.741 4.029 28.675 12.213 36.298 37.234 54.665 86.433 54.54 135.255 0.125 48.792-18.181 97.927-54.54 135.161C758.801 727.264 733.062 727.264 717.194 710.958z" horiz-adv-x="1024" /> <glyph glyph-name="repo" unicode="" d="M256 256h-64v64h64v-64z m0 192h-64v-64h64v64z m0 128h-64v-64h64v64z m0 128h-64v-64h64v64z m512 64v-768c0-35-29-64-64-64H384v-128l-96 96-96-96V-64H64c-35 0-64 29-64 64V768C0 803 29 832 64 832h640c35 0 64-29 64-64z m-64-640H64v-128h128v64h192v-64h320V128z m0 640H128v-576h576V768z" horiz-adv-x="768" /> <glyph glyph-name="repo-clone" unicode="" d="M960 832H576v-448c0-35 29-64 64-64h64v-64h64v64h192c35 0 64 29 64 64V768c0 35-29 64-64 64zM704 384h-64v64h64v-64z m256 0H768v64h192v-64z m0 128H704V768h256v-256z m-704 0h-64v64h64v-64z m0 128h-64v64h64v-64zM128 768h384V832H64C29 832 0 803 0 768v-768c0-35 29-64 64-64h128v-128l96 96 96-96V-64h320c35 0 64 29 64 64V192H128V768z m576-640v-128H384v64H192v-64H64V128h640zM192 320h64v-64h-64v64z m64 64h-64v64h64v-64z" horiz-adv-x="1024" /> @@ -148,8 +151,6 @@ Applies to all other files <glyph glyph-name="rocket" unicode="" d="M1024 832s-6-24-19-68c-13-45-35-101-68-170-45 5-81 21-106 46s-40 60-45 105c69 33 125 56 169 69 45 13 69 18 69 18zM779 587c-17 17-30 35-40 56-10 20-17 42-22 65-37-21-74-45-111-72-37-28-73-60-108-95-45-45-85-116-114-157H192L0 192h192l128 128c-22-49-65-191-64-192l64-64c1-1 143 41 192 64L384 0v-192l192 192V192c41 29 112 70 157 114 35 35 67 72 94 109 28 37 52 74 73 110-23 5-45 12-66 22-20 10-38 23-55 40z" horiz-adv-x="1024" /> <glyph glyph-name="rss" unicode="" d="M128 0H0V128c71 0 128-57 128-128zM0 640v-64c318 0 576-258 576-576h64c0 353-287 640-640 640z m0-256v-64c176 0 320-144 320-320h64c0 212-172 384-384 384z" horiz-adv-x="640" /> <glyph glyph-name="ruby" unicode="" d="M832 448L512 128V576h192l128-128z m192 0L512-64 0 448l256 256h512l256-256zM512 32l416 416-192 192H288L96 448l416-416z" horiz-adv-x="1024" /> -<glyph glyph-name="screen-full" unicode="" d="M832 192h64v-192c0-35-29-64-64-64H640v64h192V192z m-768 0H0v-192c0-35 29-64 64-64h192v64H64V192z m0 448h192v64H64c-35 0-64-29-64-64v-192h64V640z m64-64h640v-512H128V576z m128-384h384V448H256v-256z m576 512H640v-64h192v-192h64V640c0 35-29 64-64 64z" horiz-adv-x="896" /> -<glyph glyph-name="screen-normal" unicode="" d="M128 576H0v64h128V768h64v-128c0-35-29-64-64-64z m0-512H0v-64h128v-128h64V0c0 35-29 64-64 64z m576 128c0-35-29-64-64-64H256c-35 0-64 29-64 64V448c0 35 29 64 64 64h384c35 0 64-29 64-64v-256zM576 384H320v-128h256V384z m128-384v-128h64V0h128v64H768c-35 0-64-29-64-64z m64 640V768h-64v-128c0-35 29-64 64-64h128v64H768z" horiz-adv-x="896" /> <glyph glyph-name="search" unicode="" d="M1005-83L761 162c45 63 71 139 71 222 0 212-172 384-384 384S64 596 64 384s172-384 384-384c83 0 159 26 222 71l245-244c12-13 29-19 45-19s33 6 45 19c25 25 25 65 0 90zM448 83c-166 0-301 135-301 301s135 301 301 301 301-135 301-301-135-301-301-301z" horiz-adv-x="1024" /> <glyph glyph-name="server" unicode="" d="M704 448H64c-35 0-64-29-64-64v-128c0-35 29-64 64-64h640c35 0 64 29 64 64V384c0 35-29 64-64 64zM128 256H64V384h64v-128z m128 0h-64V384h64v-128z m128 0h-64V384h64v-128z m128 0h-64V384h64v-128zM704 768H64C29 768 0 739 0 704v-128c0-35 29-64 64-64h640c35 0 64 29 64 64V704c0 35-29 64-64 64zM128 576H64V704h64v-128z m128 0h-64V704h64v-128z m128 0h-64V704h64v-128z m128 0h-64V704h64v-128z m192 64h-64v64h64v-64z m0-512H64c-35 0-64-29-64-64v-128c0-35 29-64 64-64h640c35 0 64 29 64 64V64c0 35-29 64-64 64zM128-64H64V64h64v-128z m128 0h-64V64h64v-128z m128 0h-64V64h64v-128z m128 0h-64V64h64v-128z" horiz-adv-x="768" /> <glyph glyph-name="settings" unicode="" d="M192 384h-64V704h64v-320z m-64-448h64V128h-64v-192z m320 0h64V320h-64v-384z m320 0h64V64h-64v-128z m64 768h-64v-384h64V704z m-320 0h-64v-128h64V704zM256 320H64c-35 0-64-29-64-64s29-64 64-64h192c35 0 64 29 64 64s-29 64-64 64z m320 192H384c-35 0-64-29-64-64s29-64 64-64h192c35 0 64 29 64 64s-29 64-64 64z m320-256H704c-35 0-64-29-64-64s29-64 64-64h192c35 0 64 29 64 64s-29 64-64 64z" horiz-adv-x="1024" /> @@ -161,9 +162,11 @@ Applies to all other files <glyph glyph-name="stop" unicode="" d="M640 768H256L0 512v-384l256-256h384l256 256V512L640 768z m192-608L608-64H288L64 160V480l224 224h320l224-224v-320zM384 576h128v-320H384V576z m0-384h128v-128H384V192z" horiz-adv-x="896" /> <glyph glyph-name="sync" unicode="" d="M655.461 358.531c11.875-81.719-13.062-167.781-76.812-230.594-94.188-92.938-239.5-104.375-346.375-34.562l74.875 73L31.96 204.75 70.367-64l84.031 80.5c150.907-111.25 364.938-100.75 502.063 34.562 79.5 78.438 115.75 182.562 111.25 285.312L655.461 358.531zM189.46 511.938c94.156 92.938 239.438 104.438 346.313 34.562l-75-72.969 275.188-38.406L697.586 704l-83.938-80.688C462.711 734.656 248.742 724.031 111.585 588.75 32.085 510.344-4.133 406.219 0.335 303.5l112.25-22.125C100.71 363.125 125.71 449.094 189.46 511.938z" horiz-adv-x="768.051" /> <glyph glyph-name="tag" unicode="" d="M431 657c-30 30-71 47-113 47H160C72 704 0 632 0 544v-158c0-42 17-83 47-113l388-388c25-25 65-25 90 0l294 294c25 25 25 65 0 90L431 657zM88 314c-20 19-30 45-30 72V544c0 56 46 102 102 102h158c27 0 53-10 72-30l393-392-303-303L88 314z m40 262h128v-128H128V576z" horiz-adv-x="896" /> +<glyph glyph-name="tasklist" unicode="" d="M986 256H486c-38 0-38 26-38 64s0 64 38 64h500c38 0 38-26 38-64s0-64-38-64zM614 576c-38 0-38 26-38 64s0 64 38 64h372c38 0 38-26 38-64s0-64-38-64H614zM0 582l90 83 102-102L454 832l90-90-352-352L0 582z m486-518h500c38 0 38-26 38-64s0-64-38-64H486c-38 0-38 26-38 64s0 64 38 64z" horiz-adv-x="1024" /> <glyph glyph-name="telescope" unicode="" d="M512 256l192-384h-64L512 128v-320h-64V192L320-128h-64l128 320 128 64zM448 832h-64v-64h64V832zM320 640h-64v-64h64v64zM128 768H64v-64h64V768zM40 256c-14-10-18-28-10-43l35-59c8-15 26-20 41-13l89 42-74 128-81-55z m505 345L174 348l79-137 405 194-113 196z m270-82l-94 161c-9 16-30 21-46 11l-77-53 118-205 85 41c17 8 23 28 14 45z" horiz-adv-x="896" /> <glyph glyph-name="terminal" unicode="" d="M448 192h256v-64H448v64z m-192-64l192 192-192 192-48-48 144-144-144-144 48-48z m640 512v-640c0-35-29-64-64-64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h768c35 0 64-29 64-64z m-64 0H64v-640h768V640z" horiz-adv-x="896" /> -<glyph glyph-name="three-bars" unicode="" d="M0 640v-128h768v128h-768z m0-384h768v128h-768v-128z m0-256h768v128h-768v-128z" horiz-adv-x="768" /> +<glyph glyph-name="text-size" unicode="" d="M1150-64h-144l-61 208H685l-61-208H480l-44 149H226l-45-149H42l211 614h160l139-406 185 560h161l252-768zM407 184s-65 231-75 263h-5l-72-263h152z m507 67l-97 347h-4l-96-347h197z" horiz-adv-x="1152" /> +<glyph glyph-name="three-bars" unicode="" d="M730 256H38c-38 0-38 26-38 64s0 64 38 64h692c38 0 38-26 38-64s0-64-38-64z m0 256H38c-38 0-38 26-38 64s0 64 38 64h692c38 0 38-26 38-64s0-64-38-64zM38 128h692c38 0 38-26 38-64s0-64-38-64H38c-38 0-38 26-38 64s0 64 38 64z" horiz-adv-x="768" /> <glyph glyph-name="thumbsdown" unicode="" d="M871 347c9 19 15 40 15 62 0 51-28 96-69 120 4 13 6 27 6 41 0 50-26 93-65 118 2 8 10 19 10 27C768 781 709 832 640 832c0 0-212 0-222 0-88 0-170-43-242-81-42-22-89-47-113-47H0v-576h64c37-2 155-69 206-112 12-10 173-168 173-168 26-26 60-40 96-40 35 0 68 13 92 38 51 51 50 135-2 188-20 20-94 115-117 138l256-44c76 0 128 59 128 131 0 34-3 64-25 88zM768 192l-384 64c-7 0 200-266 200-266 28-29 29-73 3-100-13-13-30-19-48-19s-37 7-52 21L347 34c-86 71-216 158-283 158V642c87 0 221 126 352 126h224c34 0 64-20 64-53 0-34-30-75-64-75h48c45 0 72-25 72-70 0-44-36-90-81-90h63c45 0 81-26 81-71 0-44-36-80-81-80h27c42 0 63-32 63-70 0-39-23-67-64-67z" horiz-adv-x="896" /> <glyph glyph-name="thumbsup" unicode="" d="M896 381c0 72-52 131-128 131l-256-44c23 23 97 118 117 138 52 53 53 137 2 188-24 25-57 38-92 38-36 0-70-14-96-40 0 0-161-158-173-168-51-43-169-110-206-112H0v-576h63c24 0 71-25 113-47 72-38 154-81 242-81 10 0 222 0 222 0 69 0 128 51 128 117 0 8-8 19-10 27 39 25 65 68 65 118 0 14-2 28-6 41 41 24 69 69 69 120 0 22-6 43-15 62 22 24 25 54 25 88z m-64 0c0-38-21-70-63-70h-27c45 0 81-36 81-80 0-45-36-71-81-71h-63c45 0 81-46 81-90 0-45-27-70-72-70h-48c34 0 64-41 64-75 0-33-30-53-64-53H416c-131 0-265 126-352 126V448c67 0 197 87 283 158L487 748c15 14 34 21 52 21s35-6 48-19c26-27 25-71-3-100 0 0-207-266-200-266l384 64c41 0 64-28 64-67z" horiz-adv-x="896" /> <glyph glyph-name="tools" unicode="" d="M286.547 366.984c16.843-16.812 81.716-85.279 81.716-85.279l35.968 37.093-56.373 58.248L456.072 491.98c0 0-48.842 47.623-27.468 28.655 20.438 75.903 1.812 160.589-55.842 220.243C315.608 800.064 234.392 819.47 161.425 799.096l123.653-127.715-32.53-125.309-121.06-33.438L7.898 640.3820000000001c-19.718-75.436-0.969-159.339 56.311-218.556C124.302 359.703 210.83 341.453 286.547 366.984zM698.815 242.769L549.694 95.46100000000001l245.932-254.805c20.062-20.812 46.498-31.188 72.872-31.188 26.25 0 52.624 10.375 72.811 31.188 40.249 41.624 40.249 108.997 0 150.62L698.815 242.769zM1023.681 670.162L867.06 832.001 405.387 354.703l56.373-58.248L185.425 10.839000000000055l-63.154-33.749-89.217-145.559 22.719-23.562 140.839 92.247 32.655 65.312 276.336 285.554 56.404-58.248L1023.681 670.162z" horiz-adv-x="1024" /> diff --git a/public/fonts/octicons.ttf b/public/fonts/octicons.ttf Binary files differindex 32e6720a..15a42d17 100755..100644 --- a/public/fonts/octicons.ttf +++ b/public/fonts/octicons.ttf diff --git a/public/fonts/octicons.woff b/public/fonts/octicons.woff Binary files differindex cbf9f62e..51e10f1c 100755..100644 --- a/public/fonts/octicons.woff +++ b/public/fonts/octicons.woff diff --git a/public/js/ZeroClipboard.swf b/public/js/ZeroClipboard.swf Binary files differdeleted file mode 100644 index 13bf8e39..00000000 --- a/public/js/ZeroClipboard.swf +++ /dev/null diff --git a/public/js/gogs.js b/public/js/gogs.js index f297191a..599f3637 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -21,6 +21,8 @@ function initCommentPreviewTab($form) { } ); }); + + buttonsClickOnEnter(); } function initCommentForm() { @@ -204,6 +206,31 @@ function initRepository() { return; } + function initFilterSearchDropdown(selector) { + var $dropdown = $(selector); + $dropdown.dropdown({ + fullTextSearch: true, + onChange: function (text, value, $choice) { + window.location.href = $choice.data('url'); + console.log($choice.data('url')) + }, + message: {noResults: $dropdown.data('no-results')} + }); + } + + // File list + if ($('.repository.file.list').length > 0) { + initFilterSearchDropdown('.choose.reference .dropdown'); + + $('.reference.column').click(function () { + $('.choose.reference .scrolling.menu').css('display', 'none'); + $('.choose.reference .text').removeClass('black'); + $($(this).data('target')).css('display', 'block'); + $(this).find('.text').addClass('black'); + return false; + }); + } + // Options if ($('.repository.settings.options').length > 0) { $('#repo_name').keyup(function () { @@ -287,23 +314,23 @@ function initRepository() { $('#edit-title').click(editTitleToggle); $('#cancel-edit-title').click(editTitleToggle); $('#save-edit-title').click(editTitleToggle). - click(function () { - if ($edit_input.val().length == 0 || - $edit_input.val() == $issue_title.text()) { - $edit_input.val($issue_title.text()); - return false; - } - - $.post($(this).data('update-url'), { - "_csrf": csrf, - "title": $edit_input.val() - }, - function (data) { - $edit_input.val(data.title); - $issue_title.text(data.title); - }); + click(function () { + if ($edit_input.val().length == 0 || + $edit_input.val() == $issue_title.text()) { + $edit_input.val($issue_title.text()); return false; - }); + } + + $.post($(this).data('update-url'), { + "_csrf": csrf, + "title": $edit_input.val() + }, + function (data) { + $edit_input.val(data.title); + $issue_title.text(data.title); + }); + return false; + }); // Edit issue or comment content $('.edit-content').click(function () { @@ -395,33 +422,26 @@ function initRepository() { } } - // Quick start - if ($('.repository.quickstart').length > 0) { - $('#repo-clone-ssh').click(function () { - $('.clone-url').text($(this).data('link')); - $('#repo-clone-url').val($(this).data('link')); - $(this).addClass('blue'); - $('#repo-clone-https').removeClass('blue'); - }); - $('#repo-clone-https').click(function () { - $('.clone-url').text($(this).data('link')); - $('#repo-clone-url').val($(this).data('link')); - $(this).addClass('blue'); - $('#repo-clone-ssh').removeClass('blue'); - }); - } + // Quick start and repository home + $('#repo-clone-ssh').click(function () { + $('.clone-url').text($(this).data('link')); + $('#repo-clone-url').val($(this).data('link')); + $(this).addClass('blue'); + $('#repo-clone-https').removeClass('blue'); + }); + $('#repo-clone-https').click(function () { + $('.clone-url').text($(this).data('link')); + $('#repo-clone-url').val($(this).data('link')); + $(this).addClass('blue'); + $('#repo-clone-ssh').removeClass('blue'); + }); + $('#repo-clone-url').click(function () { + $(this).select(); + }); // Pull request if ($('.repository.compare.pull').length > 0) { - var $branch_dropdown = $('.choose.branch .dropdown'); - $branch_dropdown.dropdown({ - fullTextSearch: true, - onChange: function (text, value, $choice) { - window.location.href = $choice.data('url'); - console.log($choice.data('url')) - }, - message: {noResults: $branch_dropdown.data('no-results')} - }); + initFilterSearchDropdown('.choose.branch .dropdown'); } } @@ -537,6 +557,124 @@ function initAdmin() { } } +function buttonsClickOnEnter() { + $('.ui.button').keypress(function (e) { + if (e.keyCode == 13 || e.keyCode == 32) // enter key or space bar + $(this).click(); + }); +} + +function hideWhenLostFocus(body, parent) { + $(document).click(function (e) { + var target = e.target; + + if (!$(target).is(body) && !$(target).parents().is(parent)) { + $(body).hide(); + } + }); +} + +function searchUsers() { + if (!$('#search-user-box .results').length) { + return; + } + + var $search_user_box = $('#search-user-box'); + var $result_list = $search_user_box.find('.results'); + $search_user_box.keyup(function () { + var $this = $(this); + var keyword = $this.find('input').val(); + if (keyword.length < 2) { + $result_list.hide(); + return; + } + + $.ajax({ + url: suburl + '/api/v1/users/search?q=' + keyword, + dataType: "json", + success: function (response) { + var notEmpty = function (str) { + return str && str.length > 0; + }; + + $result_list.html(''); + + if (response.ok && response.data.length) { + var html = ''; + $.each(response.data, function (i, item) { + html += '<div class="item"><img class="ui avatar image" src="' + item.avatar_url + '"><span class="username">' + item.username + '</span>'; + if (notEmpty(item.full_name)) { + html += ' (' + item.full_name + ')'; + } + html += '</div>'; + }); + $result_list.html(html); + $this.find('.results .item').click(function () { + $this.find('input').val($(this).find('.username').text()); + $result_list.hide(); + }); + $result_list.show(); + } else { + $result_list.hide(); + } + } + }); + }); + $search_user_box.find('input').focus(function () { + $search_user_box.keyup(); + }); + hideWhenLostFocus('#search-user-box .results', '#search-user-box'); +} + +// FIXME: merge common parts in two functions +function searchRepositories() { + if (!$('#search-repo-box .results').length) { + return; + } + + var $search_repo_box = $('#search-repo-box'); + var $result_list = $search_repo_box.find('.results'); + $search_repo_box.keyup(function () { + var $this = $(this); + var keyword = $this.find('input').val(); + if (keyword.length < 2) { + $result_list.hide(); + return; + } + + $.ajax({ + url: suburl + '/api/v1/repos/search?q=' + keyword + "&uid=" + $search_repo_box.data('uid'), + dataType: "json", + success: function (response) { + var notEmpty = function (str) { + return str && str.length > 0; + }; + + $result_list.html(''); + + if (response.ok && response.data.length) { + var html = ''; + $.each(response.data, function (i, item) { + html += '<div class="item"><i class="icon octicon octicon-repo"></i> <span class="fullname">' + item.full_name + '</span></div>'; + }); + $result_list.html(html); + $this.find('.results .item').click(function () { + $this.find('input').val($(this).find('.fullname').text().split("/")[1]); + $result_list.hide(); + }); + $result_list.show(); + } else { + $result_list.hide(); + } + } + }); + }); + $search_repo_box.find('input').focus(function () { + $search_repo_box.keyup(); + }); + hideWhenLostFocus('#search-repo-box .results', '#search-repo-box'); +} + $(document).ready(function () { csrf = $('meta[name=_csrf]').attr("content"); suburl = $('meta[name=_suburl]').attr("content"); @@ -544,9 +682,9 @@ $(document).ready(function () { // Show exact time $('.time-since').each(function () { $(this).addClass('poping up'). - attr('data-content', $(this).attr('title')). - attr('data-variation', 'inverted tiny'). - attr('title', ''); + attr('data-content', $(this).attr('title')). + attr('data-variation', 'inverted tiny'). + attr('title', ''); }); // Semantic UI modules. @@ -574,6 +712,7 @@ $(document).ready(function () { } }); $('.tabular.menu .item').tab(); + $('.tabable.menu .item').tab(); $('.toggle.button').click(function () { $($(this).data('target')).slideToggle(100); @@ -620,9 +759,7 @@ $(document).ready(function () { emojify.setConfig({ img_dir: suburl + '/img/emoji' }); - $('.emojify').each(function () { - emojify.run($(this)[0]); - }); + emojify.run(); // Clipboard JS var clipboard = new Clipboard('.clipboard'); @@ -670,6 +807,31 @@ $(document).ready(function () { $($(this).data('modal')).modal('show'); }); + // Set anchor. + $('.markdown').each(function () { + var headers = {}; + $(this).find('h1, h2, h3, h4, h5, h6').each(function () { + var node = $(this); + var val = encodeURIComponent(node.text().toLowerCase().replace(/[^\w\- ]/g, '').replace(/[ ]/g, '-')); + var name = val; + if (headers[val] > 0) { + name = val + '-' + headers[val]; + } + if (headers[val] == undefined) { + headers[val] = 1; + } else { + headers[val] += 1; + } + node = node.wrap('<div id="' + name + '" class="anchor-wrap" ></div>'); + node.append('<a class="anchor" href="#' + name + '"><span class="octicon octicon-link"></span></a>'); + }); + }); + + buttonsClickOnEnter(); + searchUsers(); + searchRepositories(); + + initCommentForm(); initInstall(); initRepository(); @@ -677,4 +839,88 @@ $(document).ready(function () { initUser(); initWebhook(); initAdmin(); +}); + +$(window).load(function () { + function changeHash(hash) { + if (history.pushState) { + history.pushState(null, null, hash); + } + else { + location.hash = hash; + } + } + + function deSelect() { + if (window.getSelection) { + window.getSelection().removeAllRanges(); + } else { + document.selection.empty(); + } + } + + function selectRange($list, $select, $from) { + $list.removeClass('active'); + if ($from) { + var a = parseInt($select.attr('rel').substr(1)); + var b = parseInt($from.attr('rel').substr(1)); + var c; + if (a != b) { + if (a > b) { + c = a; + a = b; + b = c; + } + var classes = []; + for (i = a; i <= b; i++) { + classes.push('.L' + i); + } + $list.filter(classes.join(',')).addClass('active'); + changeHash('#L' + a + '-' + 'L' + b); + return + } + } + $select.addClass('active'); + changeHash('#' + $select.attr('rel')); + } + + // Code view. + if ($('.code-view').length > 0) { + var $block = $('.code-view .linenums'); + var lines = $block.html().split("\n"); + $block.html(''); + + var $num_list = $('.code-view .lines-num'); + + // Building blocks. + for (var i = 0; i < lines.length; i++) { + $block.append('<li class="L' + (i + 1) + '" rel="L' + (i + 1) + '">' + lines[i] + '</li>'); + $num_list.append('<span id="L' + (i + 1) + '">' + (i + 1) + '</span>'); + } + + $(document).on('click', '.lines-num span', function (e) { + var $select = $(this); + var $list = $select.parent().siblings('.lines-code').find('ol.linenums > li'); + selectRange($list, $list.filter('[rel=' + $select.attr('id') + ']'), (e.shiftKey ? $list.filter('.active').eq(0) : null)); + deSelect(); + }); + + $(window).on('hashchange', function (e) { + var m = window.location.hash.match(/^#(L\d+)\-(L\d+)$/); + var $list = $('.code-view ol.linenums > li'); + var $first; + if (m) { + $first = $list.filter('.' + m[1]); + selectRange($list, $first, $list.filter('.' + m[2])); + $("html, body").scrollTop($first.offset().top - 200); + return; + } + m = window.location.hash.match(/^#(L\d+)$/); + if (m) { + $first = $list.filter('.' + m[1]); + selectRange($list, $first); + $("html, body").scrollTop($first.offset().top - 200); + } + }).trigger('hashchange'); + } });
\ No newline at end of file diff --git a/public/js/libs/clipboard-1.3.1.min.js b/public/js/libs/clipboard-1.3.1.min.js deleted file mode 100755 index ed23e3e5..00000000 --- a/public/js/libs/clipboard-1.3.1.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(a){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=a();else if("function"==typeof define&&define.amd)define([],a);else{var b;b="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,b.Clipboard=a()}}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);var j=new Error("Cannot find module '"+g+"'");throw j.code="MODULE_NOT_FOUND",j}var k=c[g]={exports:{}};b[g][0].call(k.exports,function(a){var c=b[g][1][a];return e(c?c:a)},k,k.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(a,b,c){var d=a("closest"),e=a("component-event"),f=["focus","blur"];c.bind=function(a,b,c,g,h){return-1!==f.indexOf(c)&&(h=!0),e.bind(a,c,function(c){var e=c.target||c.srcElement;c.delegateTarget=d(e,b,!0,a),c.delegateTarget&&g.call(a,c)},h)},c.unbind=function(a,b,c,d){-1!==f.indexOf(b)&&(d=!0),e.unbind(a,b,c,d)}},{closest:2,"component-event":4}],2:[function(a,b,c){var d=a("matches-selector");b.exports=function(a,b,c){for(var e=c?a:a.parentNode;e&&e!==document;){if(d(e,b))return e;e=e.parentNode}}},{"matches-selector":3}],3:[function(a,b,c){function d(a,b){if(f)return f.call(a,b);for(var c=a.parentNode.querySelectorAll(b),d=0;d<c.length;++d)if(c[d]==a)return!0;return!1}var e=Element.prototype,f=e.matchesSelector||e.webkitMatchesSelector||e.mozMatchesSelector||e.msMatchesSelector||e.oMatchesSelector;b.exports=d},{}],4:[function(a,b,c){var d=window.addEventListener?"addEventListener":"attachEvent",e=window.removeEventListener?"removeEventListener":"detachEvent",f="addEventListener"!==d?"on":"";c.bind=function(a,b,c,e){return a[d](f+b,c,e||!1),c},c.unbind=function(a,b,c,d){return a[e](f+b,c,d||!1),c}},{}],5:[function(a,b,c){function d(){}d.prototype={on:function(a,b,c){var d=this.e||(this.e={});return(d[a]||(d[a]=[])).push({fn:b,ctx:c}),this},once:function(a,b,c){var d=this,e=function(){d.off(a,e),b.apply(c,arguments)};return this.on(a,e,c)},emit:function(a){var b=[].slice.call(arguments,1),c=((this.e||(this.e={}))[a]||[]).slice(),d=0,e=c.length;for(d;e>d;d++)c[d].fn.apply(c[d].ctx,b);return this},off:function(a,b){var c=this.e||(this.e={}),d=c[a],e=[];if(d&&b)for(var f=0,g=d.length;g>f;f++)d[f].fn!==b&&e.push(d[f]);return e.length?c[a]=e:delete c[a],this}},b.exports=d},{}],6:[function(a,b,c){"use strict";function d(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function")}c.__esModule=!0;var e=function(){function a(a,b){for(var c=0;c<b.length;c++){var d=b[c];d.enumerable=d.enumerable||!1,d.configurable=!0,"value"in d&&(d.writable=!0),Object.defineProperty(a,d.key,d)}}return function(b,c,d){return c&&a(b.prototype,c),d&&a(b,d),b}}(),f=function(){function a(b){d(this,a),this.resolveOptions(b),this.initSelection()}return a.prototype.resolveOptions=function(){var a=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];this.action=a.action,this.emitter=a.emitter,this.target=a.target,this.text=a.text,this.trigger=a.trigger,this.selectedText=""},a.prototype.initSelection=function(){if(this.text&&this.target)throw new Error('Multiple attributes declared, use either "target" or "text"');if(this.text)this.selectFake();else{if(!this.target)throw new Error('Missing required attributes, use either "target" or "text"');this.selectTarget()}},a.prototype.selectFake=function(){var a=this;this.removeFake(),this.fakeHandler=document.body.addEventListener("click",function(){return a.removeFake()}),this.fakeElem=document.createElement("input"),this.fakeElem.style.position="absolute",this.fakeElem.style.left="-9999px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,this.selectedText=this.text,document.body.appendChild(this.fakeElem),this.fakeElem.select(),this.copyText()},a.prototype.removeFake=function(){this.fakeHandler&&(document.body.removeEventListener("click"),this.fakeHandler=null),this.fakeElem&&(document.body.removeChild(this.fakeElem),this.fakeElem=null)},a.prototype.selectTarget=function(){if("INPUT"===this.target.nodeName||"TEXTAREA"===this.target.nodeName)this.target.select(),this.selectedText=this.target.value;else{var a=document.createRange(),b=window.getSelection();a.selectNodeContents(this.target),b.addRange(a),this.selectedText=b.toString()}this.copyText()},a.prototype.copyText=function(){var a=void 0;try{a=document.execCommand(this.action)}catch(b){a=!1}this.handleResult(a)},a.prototype.handleResult=function(a){a?this.emitter.emit("success",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)}):this.emitter.emit("error",{action:this.action,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})},a.prototype.clearSelection=function(){this.target&&this.target.blur(),window.getSelection().removeAllRanges()},e(a,[{key:"action",set:function(){var a=arguments.length<=0||void 0===arguments[0]?"copy":arguments[0];if(this._action=a,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function(){return this._action}},{key:"target",set:function(a){if(void 0!==a){if(!a||"object"!=typeof a||1!==a.nodeType)throw new Error('Invalid "target" value, use a valid Element');this._target=a}},get:function(){return this._target}}]),a}();c["default"]=f,b.exports=c["default"]},{}],7:[function(a,b,c){"use strict";function d(a){return a&&a.__esModule?a:{"default":a}}function e(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function")}function f(a,b){if("function"!=typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=b)}c.__esModule=!0;var g=a("./clipboard-action"),h=d(g),i=a("delegate-events"),j=d(i),k=a("tiny-emitter"),l=d(k),m="data-clipboard-",n=function(a){function b(c,d){e(this,b),a.call(this),this.resolveOptions(d),this.delegateClick(c)}return f(b,a),b.prototype.resolveOptions=function(){var a=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];this.action="function"==typeof a.action?a.action:this.setAction,this.target="function"==typeof a.target?a.target:this.setTarget,this.text="function"==typeof a.text?a.text:this.setText},b.prototype.delegateClick=function(a){var b=this;j["default"].bind(document.body,a,"click",function(a){return b.initialize(a)})},b.prototype.initialize=function(a){this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new h["default"]({action:this.action(a.delegateTarget),target:this.target(a.delegateTarget),text:this.text(a.delegateTarget),trigger:a.delegateTarget,emitter:this})},b.prototype.setAction=function(a){return a.hasAttribute(m+"action")?a.getAttribute(m+"action"):void 0},b.prototype.setTarget=function(a){if(a.hasAttribute(m+"target")){var b=a.getAttribute(m+"target");return document.querySelector(b)}},b.prototype.setText=function(a){return a.hasAttribute(m+"text")?a.getAttribute(m+"text"):void 0},b}(l["default"]);c["default"]=n,b.exports=c["default"]},{"./clipboard-action":6,"delegate-events":1,"tiny-emitter":5}]},{},[7])(7)});
\ No newline at end of file diff --git a/public/js/libs/clipboard-1.5.5.min.js b/public/js/libs/clipboard-1.5.5.min.js new file mode 100755 index 00000000..4e2a012a --- /dev/null +++ b/public/js/libs/clipboard-1.5.5.min.js @@ -0,0 +1,7 @@ +/*! + * clipboard.js v1.5.5 + * https://zenorocha.github.io/clipboard.js + * + * Licensed MIT © Zeno Rocha + */ +!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var e;e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,e.Clipboard=t()}}(function(){var t,e,n;return function t(e,n,r){function o(a,c){if(!n[a]){if(!e[a]){var s="function"==typeof require&&require;if(!c&&s)return s(a,!0);if(i)return i(a,!0);var u=new Error("Cannot find module '"+a+"'");throw u.code="MODULE_NOT_FOUND",u}var l=n[a]={exports:{}};e[a][0].call(l.exports,function(t){var n=e[a][1][t];return o(n?n:t)},l,l.exports,t,e,n,r)}return n[a].exports}for(var i="function"==typeof require&&require,a=0;a<r.length;a++)o(r[a]);return o}({1:[function(t,e,n){var r=t("matches-selector");e.exports=function(t,e,n){for(var o=n?t:t.parentNode;o&&o!==document;){if(r(o,e))return o;o=o.parentNode}}},{"matches-selector":2}],2:[function(t,e,n){function r(t,e){if(i)return i.call(t,e);for(var n=t.parentNode.querySelectorAll(e),r=0;r<n.length;++r)if(n[r]==t)return!0;return!1}var o=Element.prototype,i=o.matchesSelector||o.webkitMatchesSelector||o.mozMatchesSelector||o.msMatchesSelector||o.oMatchesSelector;e.exports=r},{}],3:[function(t,e,n){function r(t,e,n,r){var i=o.apply(this,arguments);return t.addEventListener(n,i),{destroy:function(){t.removeEventListener(n,i)}}}function o(t,e,n,r){return function(n){n.delegateTarget=i(n.target,e,!0),n.delegateTarget&&r.call(t,n)}}var i=t("closest");e.exports=r},{closest:1}],4:[function(t,e,n){n.node=function(t){return void 0!==t&&t instanceof HTMLElement&&1===t.nodeType},n.nodeList=function(t){var e=Object.prototype.toString.call(t);return void 0!==t&&("[object NodeList]"===e||"[object HTMLCollection]"===e)&&"length"in t&&(0===t.length||n.node(t[0]))},n.string=function(t){return"string"==typeof t||t instanceof String},n.function=function(t){var e=Object.prototype.toString.call(t);return"[object Function]"===e}},{}],5:[function(t,e,n){function r(t,e,n){if(!t&&!e&&!n)throw new Error("Missing required arguments");if(!c.string(e))throw new TypeError("Second argument must be a String");if(!c.function(n))throw new TypeError("Third argument must be a Function");if(c.node(t))return o(t,e,n);if(c.nodeList(t))return i(t,e,n);if(c.string(t))return a(t,e,n);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList")}function o(t,e,n){return t.addEventListener(e,n),{destroy:function(){t.removeEventListener(e,n)}}}function i(t,e,n){return Array.prototype.forEach.call(t,function(t){t.addEventListener(e,n)}),{destroy:function(){Array.prototype.forEach.call(t,function(t){t.removeEventListener(e,n)})}}}function a(t,e,n){return s(document.body,t,e,n)}var c=t("./is"),s=t("delegate");e.exports=r},{"./is":4,delegate:3}],6:[function(t,e,n){function r(t){var e;if("INPUT"===t.nodeName||"TEXTAREA"===t.nodeName)t.focus(),t.setSelectionRange(0,t.value.length),e=t.value;else{t.hasAttribute("contenteditable")&&t.focus();var n=window.getSelection(),r=document.createRange();r.selectNodeContents(t),n.removeAllRanges(),n.addRange(r),e=n.toString()}return e}e.exports=r},{}],7:[function(t,e,n){function r(){}r.prototype={on:function(t,e,n){var r=this.e||(this.e={});return(r[t]||(r[t]=[])).push({fn:e,ctx:n}),this},once:function(t,e,n){function r(){o.off(t,r),e.apply(n,arguments)}var o=this;return r._=e,this.on(t,r,n)},emit:function(t){var e=[].slice.call(arguments,1),n=((this.e||(this.e={}))[t]||[]).slice(),r=0,o=n.length;for(r;o>r;r++)n[r].fn.apply(n[r].ctx,e);return this},off:function(t,e){var n=this.e||(this.e={}),r=n[t],o=[];if(r&&e)for(var i=0,a=r.length;a>i;i++)r[i].fn!==e&&r[i].fn._!==e&&o.push(r[i]);return o.length?n[t]=o:delete n[t],this}},e.exports=r},{}],8:[function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{"default":t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}n.__esModule=!0;var i=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),a=t("select"),c=r(a),s=function(){function t(e){o(this,t),this.resolveOptions(e),this.initSelection()}return t.prototype.resolveOptions=function t(){var e=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];this.action=e.action,this.emitter=e.emitter,this.target=e.target,this.text=e.text,this.trigger=e.trigger,this.selectedText=""},t.prototype.initSelection=function t(){if(this.text&&this.target)throw new Error('Multiple attributes declared, use either "target" or "text"');if(this.text)this.selectFake();else{if(!this.target)throw new Error('Missing required attributes, use either "target" or "text"');this.selectTarget()}},t.prototype.selectFake=function t(){var e=this;this.removeFake(),this.fakeHandler=document.body.addEventListener("click",function(){return e.removeFake()}),this.fakeElem=document.createElement("textarea"),this.fakeElem.style.position="absolute",this.fakeElem.style.left="-9999px",this.fakeElem.style.top=(window.pageYOffset||document.documentElement.scrollTop)+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,document.body.appendChild(this.fakeElem),this.selectedText=c.default(this.fakeElem),this.copyText()},t.prototype.removeFake=function t(){this.fakeHandler&&(document.body.removeEventListener("click"),this.fakeHandler=null),this.fakeElem&&(document.body.removeChild(this.fakeElem),this.fakeElem=null)},t.prototype.selectTarget=function t(){this.selectedText=c.default(this.target),this.copyText()},t.prototype.copyText=function t(){var e=void 0;try{e=document.execCommand(this.action)}catch(n){e=!1}this.handleResult(e)},t.prototype.handleResult=function t(e){e?this.emitter.emit("success",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)}):this.emitter.emit("error",{action:this.action,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})},t.prototype.clearSelection=function t(){this.target&&this.target.blur(),window.getSelection().removeAllRanges()},t.prototype.destroy=function t(){this.removeFake()},i(t,[{key:"action",set:function t(){var e=arguments.length<=0||void 0===arguments[0]?"copy":arguments[0];if(this._action=e,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function t(){return this._action}},{key:"target",set:function t(e){if(void 0!==e){if(!e||"object"!=typeof e||1!==e.nodeType)throw new Error('Invalid "target" value, use a valid Element');this._target=e}},get:function t(){return this._target}}]),t}();n.default=s,e.exports=n.default},{select:6}],9:[function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{"default":t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function a(t,e){var n="data-clipboard-"+t;if(e.hasAttribute(n))return e.getAttribute(n)}n.__esModule=!0;var c=t("./clipboard-action"),s=r(c),u=t("tiny-emitter"),l=r(u),f=t("good-listener"),d=r(f),h=function(t){function e(n,r){o(this,e),t.call(this),this.resolveOptions(r),this.listenClick(n)}return i(e,t),e.prototype.resolveOptions=function t(){var e=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];this.action="function"==typeof e.action?e.action:this.defaultAction,this.target="function"==typeof e.target?e.target:this.defaultTarget,this.text="function"==typeof e.text?e.text:this.defaultText},e.prototype.listenClick=function t(e){var n=this;this.listener=d.default(e,"click",function(t){return n.onClick(t)})},e.prototype.onClick=function t(e){var n=e.delegateTarget||e.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new s.default({action:this.action(n),target:this.target(n),text:this.text(n),trigger:n,emitter:this})},e.prototype.defaultAction=function t(e){return a("action",e)},e.prototype.defaultTarget=function t(e){var n=a("target",e);return n?document.querySelector(n):void 0},e.prototype.defaultText=function t(e){return a("text",e)},e.prototype.destroy=function t(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)},e}(l.default);n.default=h,e.exports=n.default},{"./clipboard-action":8,"good-listener":5,"tiny-emitter":7}]},{},[9])(9)});
\ No newline at end of file diff --git a/public/js/libs/dropzone-4.0.1.js b/public/js/libs/dropzone-4.2.0.js index babbdd45..cd7855fb 100644..100755 --- a/public/js/libs/dropzone-4.0.1.js +++ b/public/js/libs/dropzone-4.2.0.js @@ -111,7 +111,7 @@ dropzone.on("dragEnter", function() { }); */ - Dropzone.prototype.events = ["drop", "dragstart", "dragend", "dragenter", "dragover", "dragleave", "addedfile", "removedfile", "thumbnail", "error", "errormultiple", "processing", "processingmultiple", "uploadprogress", "totaluploadprogress", "sending", "sendingmultiple", "success", "successmultiple", "canceled", "canceledmultiple", "complete", "completemultiple", "reset", "maxfilesexceeded", "maxfilesreached", "queuecomplete"]; + Dropzone.prototype.events = ["drop", "dragstart", "dragend", "dragenter", "dragover", "dragleave", "addedfile", "addedfiles", "removedfile", "thumbnail", "error", "errormultiple", "processing", "processingmultiple", "uploadprogress", "totaluploadprogress", "sending", "sendingmultiple", "success", "successmultiple", "canceled", "canceledmultiple", "complete", "completemultiple", "reset", "maxfilesexceeded", "maxfilesreached", "queuecomplete"]; Dropzone.prototype.defaultOptions = { url: null, @@ -127,7 +127,6 @@ thumbnailHeight: 120, filesizeBase: 1000, maxFiles: null, - filesizeBase: 1000, params: {}, clickable: true, ignoreHiddenFiles: true, @@ -137,6 +136,7 @@ autoQueue: true, addRemoveLinks: false, previewsContainer: null, + hiddenInputContainer: "body", capture: null, dictDefaultMessage: "Drop files here to upload", dictFallbackMessage: "Your browser does not support drag'n'drop file uploads.", @@ -174,7 +174,11 @@ } span = messageElement.getElementsByTagName("span")[0]; if (span) { - span.textContent = this.options.dictFallbackMessage; + if (span.textContent != null) { + span.textContent = this.options.dictFallbackMessage; + } else if (span.innerText != null) { + span.innerText = this.options.dictFallbackMessage; + } } return this.element.appendChild(this.getFallbackForm()); }, @@ -387,6 +391,7 @@ maxfilesexceeded: noop, maxfilesreached: noop, queuecomplete: noop, + addedfiles: noop, previewTemplate: "<div class=\"dz-preview dz-file-preview\">\n <div class=\"dz-image\"><img data-dz-thumbnail /></div>\n <div class=\"dz-details\">\n <div class=\"dz-size\"><span data-dz-size></span></div>\n <div class=\"dz-filename\"><span data-dz-name></span></div>\n </div>\n <div class=\"dz-progress\"><span class=\"dz-upload\" data-dz-uploadprogress></span></div>\n <div class=\"dz-error-message\"><span data-dz-errormessage></span></div>\n <div class=\"dz-success-mark\">\n <svg width=\"54px\" height=\"54px\" viewBox=\"0 0 54 54\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:sketch=\"http://www.bohemiancoding.com/sketch/ns\">\n <title>Check</title>\n <defs></defs>\n <g id=\"Page-1\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\" sketch:type=\"MSPage\">\n <path d=\"M23.5,31.8431458 L17.5852419,25.9283877 C16.0248253,24.3679711 13.4910294,24.366835 11.9289322,25.9289322 C10.3700136,27.4878508 10.3665912,30.0234455 11.9283877,31.5852419 L20.4147581,40.0716123 C20.5133999,40.1702541 20.6159315,40.2626649 20.7218615,40.3488435 C22.2835669,41.8725651 24.794234,41.8626202 26.3461564,40.3106978 L43.3106978,23.3461564 C44.8771021,21.7797521 44.8758057,19.2483887 43.3137085,17.6862915 C41.7547899,16.1273729 39.2176035,16.1255422 37.6538436,17.6893022 L23.5,31.8431458 Z M27,53 C41.3594035,53 53,41.3594035 53,27 C53,12.6405965 41.3594035,1 27,1 C12.6405965,1 1,12.6405965 1,27 C1,41.3594035 12.6405965,53 27,53 Z\" id=\"Oval-2\" stroke-opacity=\"0.198794158\" stroke=\"#747474\" fill-opacity=\"0.816519475\" fill=\"#FFFFFF\" sketch:type=\"MSShapeGroup\"></path>\n </g>\n </svg>\n </div>\n <div class=\"dz-error-mark\">\n <svg width=\"54px\" height=\"54px\" viewBox=\"0 0 54 54\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:sketch=\"http://www.bohemiancoding.com/sketch/ns\">\n <title>Error</title>\n <defs></defs>\n <g id=\"Page-1\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\" sketch:type=\"MSPage\">\n <g id=\"Check-+-Oval-2\" sketch:type=\"MSLayerGroup\" stroke=\"#747474\" stroke-opacity=\"0.198794158\" fill=\"#FFFFFF\" fill-opacity=\"0.816519475\">\n <path d=\"M32.6568542,29 L38.3106978,23.3461564 C39.8771021,21.7797521 39.8758057,19.2483887 38.3137085,17.6862915 C36.7547899,16.1273729 34.2176035,16.1255422 32.6538436,17.6893022 L27,23.3431458 L21.3461564,17.6893022 C19.7823965,16.1255422 17.2452101,16.1273729 15.6862915,17.6862915 C14.1241943,19.2483887 14.1228979,21.7797521 15.6893022,23.3461564 L21.3431458,29 L15.6893022,34.6538436 C14.1228979,36.2202479 14.1241943,38.7516113 15.6862915,40.3137085 C17.2452101,41.8726271 19.7823965,41.8744578 21.3461564,40.3106978 L27,34.6568542 L32.6538436,40.3106978 C34.2176035,41.8744578 36.7547899,41.8726271 38.3137085,40.3137085 C39.8758057,38.7516113 39.8771021,36.2202479 38.3106978,34.6538436 L32.6568542,29 Z M27,53 C41.3594035,53 53,41.3594035 53,27 C53,12.6405965 41.3594035,1 27,1 C12.6405965,1 1,12.6405965 1,27 C1,41.3594035 12.6405965,53 27,53 Z\" id=\"Oval-2\" sketch:type=\"MSShapeGroup\"></path>\n </g>\n </g>\n </svg>\n </div>\n</div>" }; @@ -508,6 +513,10 @@ return this.getFilesWithStatus(Dropzone.UPLOADING); }; + Dropzone.prototype.getAddedFiles = function() { + return this.getFilesWithStatus(Dropzone.ADDED); + }; + Dropzone.prototype.getActiveFiles = function() { var file, _i, _len, _ref, _results; _ref = this.files; @@ -533,7 +542,7 @@ setupHiddenFileInput = (function(_this) { return function() { if (_this.hiddenFileInput) { - document.body.removeChild(_this.hiddenFileInput); + _this.hiddenFileInput.parentNode.removeChild(_this.hiddenFileInput); } _this.hiddenFileInput = document.createElement("input"); _this.hiddenFileInput.setAttribute("type", "file"); @@ -553,7 +562,7 @@ _this.hiddenFileInput.style.left = "0"; _this.hiddenFileInput.style.height = "0"; _this.hiddenFileInput.style.width = "0"; - document.body.appendChild(_this.hiddenFileInput); + document.querySelector(_this.options.hiddenInputContainer).appendChild(_this.hiddenFileInput); return _this.hiddenFileInput.addEventListener("change", function() { var file, files, _i, _len; files = _this.hiddenFileInput.files; @@ -563,6 +572,7 @@ _this.addFile(file); } } + _this.emit("addedfiles", files); return setupHiddenFileInput(); }); }; @@ -592,7 +602,7 @@ })(this)); this.on("complete", (function(_this) { return function(file) { - if (_this.getUploadingFiles().length === 0 && _this.getQueuedFiles().length === 0) { + if (_this.getAddedFiles().length === 0 && _this.getUploadingFiles().length === 0 && _this.getQueuedFiles().length === 0) { return setTimeout((function() { return _this.emit("queuecomplete"); }), 0); @@ -659,8 +669,9 @@ events: { "click": function(evt) { if ((clickableElement !== _this.element) || (evt.target === _this.element || Dropzone.elementInside(evt.target, _this.element.querySelector(".dz-message")))) { - return _this.hiddenFileInput.click(); + _this.hiddenFileInput.click(); } + return true; } } }); @@ -814,18 +825,21 @@ Dropzone.prototype.filesize = function(size) { var cutoff, i, selectedSize, selectedUnit, unit, units, _i, _len; - units = ['TB', 'GB', 'MB', 'KB', 'b']; - selectedSize = selectedUnit = null; - for (i = _i = 0, _len = units.length; _i < _len; i = ++_i) { - unit = units[i]; - cutoff = Math.pow(this.options.filesizeBase, 4 - i) / 10; - if (size >= cutoff) { - selectedSize = size / Math.pow(this.options.filesizeBase, 4 - i); - selectedUnit = unit; - break; + selectedSize = 0; + selectedUnit = "b"; + if (size > 0) { + units = ['TB', 'GB', 'MB', 'KB', 'b']; + for (i = _i = 0, _len = units.length; _i < _len; i = ++_i) { + unit = units[i]; + cutoff = Math.pow(this.options.filesizeBase, 4 - i) / 10; + if (size >= cutoff) { + selectedSize = size / Math.pow(this.options.filesizeBase, 4 - i); + selectedUnit = unit; + break; + } } + selectedSize = Math.round(10 * selectedSize) / 10; } - selectedSize = Math.round(10 * selectedSize) / 10; return "<strong>" + selectedSize + "</strong> " + selectedUnit; }; @@ -847,6 +861,7 @@ } this.emit("drop", e); files = e.dataTransfer.files; + this.emit("addedfiles", files); if (files.length) { items = e.dataTransfer.items; if (items && items.length && (items[0].webkitGetAsEntry != null)) { @@ -1067,9 +1082,12 @@ return fileReader.readAsDataURL(file); }; - Dropzone.prototype.createThumbnailFromUrl = function(file, imageUrl, callback) { + Dropzone.prototype.createThumbnailFromUrl = function(file, imageUrl, callback, crossOrigin) { var img; img = document.createElement("img"); + if (crossOrigin) { + img.crossOrigin = crossOrigin; + } img.onload = (function(_this) { return function() { var canvas, ctx, resizeInfo, thumbnail, _ref, _ref1, _ref2, _ref3; @@ -1305,7 +1323,9 @@ } for (headerName in headers) { headerValue = headers[headerName]; - xhr.setRequestHeader(headerName, headerValue); + if (headerValue) { + xhr.setRequestHeader(headerName, headerValue); + } } formData = new FormData(); if (this.options.params) { @@ -1344,6 +1364,10 @@ for (i = _m = 0, _ref5 = files.length - 1; 0 <= _ref5 ? _m <= _ref5 : _m >= _ref5; i = 0 <= _ref5 ? ++_m : --_m) { formData.append(this._getParamName(i), files[i], files[i].name); } + return this.submitRequest(xhr, formData, files); + }; + + Dropzone.prototype.submitRequest = function(xhr, formData, files) { return xhr.send(formData); }; @@ -1385,7 +1409,7 @@ })(Emitter); - Dropzone.version = "4.0.1"; + Dropzone.version = "4.2.0"; Dropzone.options = {}; diff --git a/public/js/libs/highlight-8.7.pack.js b/public/js/libs/highlight-8.7.pack.js deleted file mode 100644 index 0cb072e4..00000000 --- a/public/js/libs/highlight-8.7.pack.js +++ /dev/null @@ -1 +0,0 @@ -!function(e){"undefined"!=typeof exports?e(exports):(window.hljs=e({}),"function"==typeof define&&define.amd&&define("hljs",[],function(){return window.hljs}))}(function(e){function n(e){return e.replace(/&/gm,"&").replace(/</gm,"<").replace(/>/gm,">")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0==t.index}function a(e){return/no-?highlight|plain|text/.test(e)}function i(e){var n,t,r,i=e.className+" ";if(i+=e.parentNode?e.parentNode.className:"",t=/\blang(?:uage)?-([\w-]+)\b/.exec(i))return E(t[1])?t[1]:"no-highlight";for(i=i.split(/\s+/),n=0,r=i.length;r>n;n++)if(E(i[n])||a(i[n]))return i[n]}function o(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3==i.nodeType?a+=i.nodeValue.length:1==i.nodeType&&(n.push({event:"start",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:"stop",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!=r[0].offset?e[0].offset<r[0].offset?e:r:"start"==r[0].event?e:r:e.length?e:r}function o(e){function r(e){return" "+e.nodeName+'="'+n(e.value)+'"'}f+="<"+t(e)+Array.prototype.map.call(e.attributes,r).join("")+">"}function u(e){f+="</"+t(e)+">"}function c(e){("start"==e.event?o:u)(e.node)}for(var s=0,f="",l=[];e.length||r.length;){var g=i();if(f+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g==e){l.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g==e&&g.length&&g[0].offset==s);l.reverse().forEach(o)}else"start"==g[0].event?l.push(g[0].node):l.pop(),c(g.splice(0,1)[0])}return f+n(a.substr(s))}function s(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),"m"+(e.cI?"i":"")+(r?"g":""))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(" ").forEach(function(e){var t=e.split("|");u[t[0]]=[n,t[1]?Number(t[1]):1]})};"string"==typeof a.k?c("keyword",a.k):Object.keys(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\b\w+\b/,!0),i&&(a.bK&&(a.b="\\b("+a.bK.split(" ").join("|")+")\\b"),a.b||(a.b=/\B|\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\B|\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||"",a.eW&&i.tE&&(a.tE+=(a.e?"|":"")+i.tE)),a.i&&(a.iR=t(a.i)),void 0===a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(o(e,n))}):s.push("self"==e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var f=a.c.map(function(e){return e.bK?"\\.?("+e.b+")\\.?":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=f.length?t(f.join("|"),!0):{exec:function(){return null}}}}r(e)}function f(e,t,a,i){function o(e,n){for(var t=0;t<n.c.length;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function c(e,n){return!a&&r(n.iR,e)}function g(e,n){var t=N.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function h(e,n,t,r){var a=r?"":w.classPrefix,i='<span class="'+a,o=t?"":"</span>";return i+=e+'">',i+n+o}function p(){if(!L.k)return n(y);var e="",t=0;L.lR.lastIndex=0;for(var r=L.lR.exec(y);r;){e+=n(y.substr(t,r.index-t));var a=g(L,r);a?(B+=a[1],e+=h(a[0],n(r[0]))):e+=n(r[0]),t=L.lR.lastIndex,r=L.lR.exec(y)}return e+n(y.substr(t))}function d(){var e="string"==typeof L.sL;if(e&&!x[L.sL])return n(y);var t=e?f(L.sL,y,!0,M[L.sL]):l(y,L.sL.length?L.sL:void 0);return L.r>0&&(B+=t.r),e&&(M[L.sL]=t.top),h(t.language,t.value,!1,!0)}function b(){return void 0!==L.sL?d():p()}function v(e,t){var r=e.cN?h(e.cN,"",!0):"";e.rB?(k+=r,y=""):e.eB?(k+=n(t)+r,y=""):(k+=r,y=t),L=Object.create(e,{parent:{value:L}})}function m(e,t){if(y+=e,void 0===t)return k+=b(),0;var r=o(t,L);if(r)return k+=b(),v(r,t),r.rB?0:t.length;var a=u(L,t);if(a){var i=L;i.rE||i.eE||(y+=t),k+=b();do L.cN&&(k+="</span>"),B+=L.r,L=L.parent;while(L!=a.parent);return i.eE&&(k+=n(t)),y="",a.starts&&v(a.starts,""),i.rE?0:t.length}if(c(t,L))throw new Error('Illegal lexeme "'+t+'" for mode "'+(L.cN||"<unnamed>")+'"');return y+=t,t.length||1}var N=E(e);if(!N)throw new Error('Unknown language: "'+e+'"');s(N);var R,L=i||N,M={},k="";for(R=L;R!=N;R=R.parent)R.cN&&(k=h(R.cN,"",!0)+k);var y="",B=0;try{for(var C,j,I=0;;){if(L.t.lastIndex=I,C=L.t.exec(t),!C)break;j=m(t.substr(I,C.index-I),C[0]),I=C.index+j}for(m(t.substr(I)),R=L;R.parent;R=R.parent)R.cN&&(k+="</span>");return{r:B,value:k,language:e,top:L}}catch(O){if(-1!=O.message.indexOf("Illegal"))return{r:0,value:n(t)};throw O}}function l(e,t){t=t||w.languages||Object.keys(x);var r={r:0,value:n(e)},a=r;return t.forEach(function(n){if(E(n)){var t=f(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}}),a.language&&(r.second_best=a),r}function g(e){return w.tabReplace&&(e=e.replace(/^((<[^>]+>|\t)+)/gm,function(e,n){return n.replace(/\t/g,w.tabReplace)})),w.useBR&&(e=e.replace(/\n/g,"<br>")),e}function h(e,n,t){var r=n?R[n]:t,a=[e.trim()];return e.match(/\bhljs\b/)||a.push("hljs"),-1===e.indexOf(r)&&a.push(r),a.join(" ").trim()}function p(e){var n=i(e);if(!a(n)){var t;w.useBR?(t=document.createElementNS("http://www.w3.org/1999/xhtml","div"),t.innerHTML=e.innerHTML.replace(/\n/g,"").replace(/<br[ \/]*>/g,"\n")):t=e;var r=t.textContent,o=n?f(n,r,!0):l(r),s=u(t);if(s.length){var p=document.createElementNS("http://www.w3.org/1999/xhtml","div");p.innerHTML=o.value,o.value=c(s,u(p),r)}o.value=g(o.value),e.innerHTML=o.value,e.className=h(e.className,n,o.language),e.result={language:o.language,re:o.r},o.second_best&&(e.second_best={language:o.second_best.language,re:o.second_best.r})}}function d(e){w=o(w,e)}function b(){if(!b.called){b.called=!0;var e=document.querySelectorAll("pre code");Array.prototype.forEach.call(e,p)}}function v(){addEventListener("DOMContentLoaded",b,!1),addEventListener("load",b,!1)}function m(n,t){var r=x[n]=t(e);r.aliases&&r.aliases.forEach(function(e){R[e]=n})}function N(){return Object.keys(x)}function E(e){return x[e]||x[R[e]]}var w={classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:void 0},x={},R={};return e.highlight=f,e.highlightAuto=l,e.fixMarkup=g,e.highlightBlock=p,e.configure=d,e.initHighlighting=b,e.initHighlightingOnLoad=v,e.registerLanguage=m,e.listLanguages=N,e.getLanguage=E,e.inherit=o,e.IR="[a-zA-Z]\\w*",e.UIR="[a-zA-Z_]\\w*",e.NR="\\b\\d+(\\.\\d+)?",e.CNR="(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",e.BNR="\\b(0b[01]+)",e.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",e.BE={b:"\\\\[\\s\\S]",r:0},e.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[e.BE]},e.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[e.BE]},e.PWM={b:/\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such)\b/},e.C=function(n,t,r){var a=e.inherit({cN:"comment",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:"doctag",b:"(?:TODO|FIXME|NOTE|BUG|XXX):",r:0}),a},e.CLCM=e.C("//","$"),e.CBCM=e.C("/\\*","\\*/"),e.HCM=e.C("#","$"),e.NM={cN:"number",b:e.NR,r:0},e.CNM={cN:"number",b:e.CNR,r:0},e.BNM={cN:"number",b:e.BNR,r:0},e.CSSNM={cN:"number",b:e.NR+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",r:0},e.RM={cN:"regexp",b:/\//,e:/\/[gimuy]*/,i:/\n/,c:[e.BE,{b:/\[/,e:/\]/,r:0,c:[e.BE]}]},e.TM={cN:"title",b:e.IR,r:0},e.UTM={cN:"title",b:e.UIR,r:0},e});hljs.registerLanguage("json",function(e){var t={literal:"true false null"},i=[e.QSM,e.CNM],l={cN:"value",e:",",eW:!0,eE:!0,c:i,k:t},c={b:"{",e:"}",c:[{cN:"attribute",b:'\\s*"',e:'"\\s*:\\s*',eB:!0,eE:!0,c:[e.BE],i:"\\n",starts:l}],i:"\\S"},n={b:"\\[",e:"\\]",c:[e.inherit(l,{cN:null})],i:"\\S"};return i.splice(i.length,0,c,n),{c:i,k:t,i:"\\S"}});hljs.registerLanguage("objectivec",function(e){var t={cN:"built_in",b:"(AV|CA|CF|CG|CI|MK|MP|NS|UI)\\w+"},i={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},o=/[a-zA-Z@][a-zA-Z0-9_]*/,n="@interface @class @protocol @implementation";return{aliases:["mm","objc","obj-c"],k:i,l:o,i:"</",c:[t,e.CLCM,e.CBCM,e.CNM,e.QSM,{cN:"string",v:[{b:'@"',e:'"',i:"\\n",c:[e.BE]},{b:"'",e:"[^\\\\]'",i:"[^\\\\][^']"}]},{cN:"preprocessor",b:"#",e:"$",c:[{cN:"title",v:[{b:'"',e:'"'},{b:"<",e:">"}]}]},{cN:"class",b:"("+n.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:n,l:o,c:[e.UTM]},{cN:"variable",b:"\\."+e.UIR,r:0}]}});hljs.registerLanguage("ini",function(e){var c={cN:"string",c:[e.BE],v:[{b:"'''",e:"'''",r:10},{b:'"""',e:'"""',r:10},{b:'"',e:'"'},{b:"'",e:"'"}]};return{aliases:["toml"],cI:!0,i:/\S/,c:[e.C(";","$"),e.HCM,{cN:"title",b:/^\s*\[+/,e:/\]+/},{cN:"setting",b:/^[a-z0-9\[\]_-]+\s*=\s*/,e:"$",c:[{cN:"value",eW:!0,k:"on off true false yes no",c:[{cN:"variable",v:[{b:/\$[\w\d"][\w\d_]*/},{b:/\$\{(.*?)}/}]},c,{cN:"number",b:/([\+\-]+)?[\d]+_[\d_]+/},e.NM],r:0}]}]}});hljs.registerLanguage("bash",function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},s={cN:"string",b:/"/,e:/"/,c:[e.BE,t,{cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]}]},a={cN:"string",b:/'/,e:/'/};return{aliases:["sh","zsh"],l:/-?[a-z\.]+/,k:{keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",operator:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"shebang",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:!0,c:[e.inherit(e.TM,{b:/\w[\w\d_]*/})],r:0},e.HCM,e.NM,s,a,t]}});hljs.registerLanguage("lisp",function(b){var e="[a-zA-Z_\\-\\+\\*\\/\\<\\=\\>\\&\\#][a-zA-Z0-9_\\-\\+\\*\\/\\<\\=\\>\\&\\#!]*",c="\\|[^]*?\\|",r="(\\-|\\+)?\\d+(\\.\\d+|\\/\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\+|\\-)?\\d+)?",a={cN:"shebang",b:"^#!",e:"$"},i={cN:"literal",b:"\\b(t{1}|nil)\\b"},l={cN:"number",v:[{b:r,r:0},{b:"#(b|B)[0-1]+(/[0-1]+)?"},{b:"#(o|O)[0-7]+(/[0-7]+)?"},{b:"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?"},{b:"#(c|C)\\("+r+" +"+r,e:"\\)"}]},t=b.inherit(b.QSM,{i:null}),d=b.C(";","$",{r:0}),n={cN:"variable",b:"\\*",e:"\\*"},u={cN:"keyword",b:"[:&]"+e},N={b:e,r:0},o={b:c},s={b:"\\(",e:"\\)",c:["self",i,t,l,N]},v={cN:"quoted",c:[l,t,n,u,s,N],v:[{b:"['`]\\(",e:"\\)"},{b:"\\(quote ",e:"\\)",k:"quote"},{b:"'"+c}]},f={cN:"quoted",v:[{b:"'"+e},{b:"#'"+e+"(::"+e+")*"}]},g={cN:"list",b:"\\(\\s*",e:"\\)"},q={eW:!0,r:0};return g.c=[{cN:"keyword",v:[{b:e},{b:c}]},q],q.c=[v,f,g,i,l,t,d,n,u,o,N],{i:/\S/,c:[l,a,i,t,d,v,f,g,N]}});hljs.registerLanguage("erlang-repl",function(r){return{k:{special_functions:"spawn spawn_link self",reserved:"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor"},c:[{cN:"prompt",b:"^[0-9]+> ",r:10},r.C("%","$"),{cN:"number",b:"\\b(\\d+#[a-fA-F0-9]+|\\d+(\\.\\d+)?([eE][-+]?\\d+)?)",r:0},r.ASM,r.QSM,{cN:"constant",b:"\\?(::)?([A-Z]\\w*(::)?)+"},{cN:"arrow",b:"->"},{cN:"ok",b:"ok"},{cN:"exclamation_mark",b:"!"},{cN:"function_or_atom",b:"(\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\b[a-z'][a-zA-Z0-9_']*)",r:0},{cN:"variable",b:"[A-Z][a-zA-Z0-9_']*",r:0}]}});hljs.registerLanguage("go",function(e){var t={keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer",constant:"true false iota nil",typename:"bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune",built_in:"append cap close complex copy imag len make new panic print println real recover delete"};return{aliases:["golang"],k:t,i:"</",c:[e.CLCM,e.CBCM,e.QSM,{cN:"string",b:"'",e:"[^\\\\]'"},{cN:"string",b:"`",e:"`"},{cN:"number",b:e.CNR+"[dflsi]?",r:0},e.CNM]}});hljs.registerLanguage("scala",function(e){var t={cN:"annotation",b:"@[A-Za-z]+"},a={cN:"string",b:'u?r?"""',e:'"""',r:10},r={cN:"symbol",b:"'\\w[\\w\\d_]*(?!')"},c={cN:"type",b:"\\b[A-Z][A-Za-z0-9_]*",r:0},i={cN:"title",b:/[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/,r:0},l={cN:"class",bK:"class object trait type",e:/[:={\[(\n;]/,c:[{cN:"keyword",bK:"extends with",r:10},i]},n={cN:"function",bK:"def val",e:/[:={\[(\n;]/,c:[i]};return{k:{literal:"true false null",keyword:"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit"},c:[e.CLCM,e.CBCM,a,e.QSM,r,c,n,l,e.CNM,t]}});hljs.registerLanguage("xml",function(t){var s="[A-Za-z0-9\\._:-]+",c={b:/<\?(php)?(?!\w)/,e:/\?>/,sL:"php"},e={eW:!0,i:/</,r:0,c:[c,{cN:"attribute",b:s,r:0},{b:"=",r:0,c:[{cN:"value",c:[c],v:[{b:/"/,e:/"/},{b:/'/,e:/'/},{b:/[^\s\/>]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xsl","plist"],cI:!0,c:[{cN:"doctype",b:"<!DOCTYPE",e:">",r:10,c:[{b:"\\[",e:"\\]"}]},t.C("<!--","-->",{r:10}),{cN:"cdata",b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{cN:"tag",b:"<style(?=\\s|>|$)",e:">",k:{title:"style"},c:[e],starts:{e:"</style>",rE:!0,sL:"css"}},{cN:"tag",b:"<script(?=\\s|>|$)",e:">",k:{title:"script"},c:[e],starts:{e:"</script>",rE:!0,sL:["actionscript","javascript","handlebars"]}},c,{cN:"pi",b:/<\?\w+/,e:/\?>/,r:10},{cN:"tag",b:"</?",e:"/?>",c:[{cN:"title",b:/[^ \/><\n\t]+/,r:0},e]}]}});hljs.registerLanguage("perl",function(e){var t="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when",r={cN:"subst",b:"[$@]\\{",e:"\\}",k:t},s={b:"->{",e:"}"},n={cN:"variable",v:[{b:/\$\d/},{b:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{b:/[\$%@][^\s\w{]/,r:0}]},o=[e.BE,r,n],i=[n,e.HCM,e.C("^\\=\\w","\\=cut",{eW:!0}),s,{cN:"string",c:o,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[e.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[e.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+e.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[e.HCM,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[e.BE],r:0}]},{cN:"sub",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",r:5},{cN:"operator",b:"-\\w\\b",r:0},{b:"^__DATA__$",e:"^__END__$",sL:"mojolicious",c:[{b:"^@@.*",e:"$",cN:"comment"}]}];return r.c=i,s.c=i,{aliases:["pl"],k:t,c:i}});hljs.registerLanguage("vbnet",function(e){return{aliases:["vb"],cI:!0,k:{keyword:"addhandler addressof alias and andalso aggregate ansi as assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not notinheritable notoverridable of off on operator option optional or order orelse overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim rem removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly xor",built_in:"boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype date decimal directcast double gettype getxmlnamespace iif integer long object sbyte short single string trycast typeof uinteger ulong ushort",literal:"true false nothing"},i:"//|{|}|endif|gosub|variant|wend",c:[e.inherit(e.QSM,{c:[{b:'""'}]}),e.C("'","$",{rB:!0,c:[{cN:"xmlDocTag",b:"'''|<!--|-->",c:[e.PWM]},{cN:"xmlDocTag",b:"</?",e:">",c:[e.PWM]}]}),e.CNM,{cN:"preprocessor",b:"#",e:"$",k:"if else elseif end region externalsource"}]}});hljs.registerLanguage("vbscript-html",function(r){return{sL:"xml",c:[{b:"<%",e:"%>",sL:"vbscript"}]}});hljs.registerLanguage("python",function(e){var r={cN:"prompt",b:/^(>>>|\.\.\.) /},b={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},e.ASM,e.QSM]},l={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},c={cN:"params",b:/\(/,e:/\)/,c:["self",r,l,b]};return{aliases:["py","gyp"],k:{keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},i:/(<\/|->|\?)/,c:[r,l,b,e.HCM,{v:[{cN:"function",bK:"def",r:10},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,c]},{cN:"decorator",b:/^[\t ]*@/,e:/$/},{b:/\b(print|exec)\(/}]}});hljs.registerLanguage("dos",function(e){var r=e.C(/@?rem\b/,/$/,{r:10}),t={cN:"label",b:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)",r:0};return{aliases:["bat","cmd"],cI:!0,k:{flow:"if else goto for in do call exit not exist errorlevel defined",operator:"equ neq lss leq gtr geq",keyword:"shift cd dir echo setlocal endlocal set pause copy",stream:"prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux",winutils:"ping net ipconfig taskkill xcopy ren del",built_in:"append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color comp compact convert date dir diskcomp diskcopy doskey erase fs find findstr format ftype graftabl help keyb label md mkdir mode more move path pause print popd pushd promt rd recover rem rename replace restore rmdir shiftsort start subst time title tree type ver verify vol"},c:[{cN:"envvar",b:/%%[^ ]|%[^ ]+?%|![^ ]+?!/},{cN:"function",b:t.b,e:"goto:eof",c:[e.inherit(e.TM,{b:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),r]},{cN:"number",b:"\\b\\d+",r:0},r]}});hljs.registerLanguage("dockerfile",function(n){return{aliases:["docker"],cI:!0,k:{built_ins:"from maintainer cmd expose add copy entrypoint volume user workdir onbuild run env"},c:[n.HCM,{k:{built_in:"run cmd entrypoint volume add copy workdir onbuild"},b:/^ *(onbuild +)?(run|cmd|entrypoint|volume|add|copy|workdir) +/,starts:{e:/[^\\]\n/,sL:"bash"}},{k:{built_in:"from maintainer expose env user onbuild"},b:/^ *(onbuild +)?(from|maintainer|expose|env|user|onbuild) +/,e:/[^\\]\n/,c:[n.ASM,n.QSM,n.NM,n.HCM]}]}});hljs.registerLanguage("cs",function(e){var r="abstract as base bool break byte case catch char checked const continue decimal dynamic default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long null when object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async protected public private internal ascending descending from get group into join let orderby partial select set value var where yield",t=e.IR+"(<"+e.IR+">)?";return{aliases:["csharp"],k:r,i:/::/,c:[e.C("///","$",{rB:!0,c:[{cN:"xmlDocTag",v:[{b:"///",r:0},{b:"<!--|-->"},{b:"</?",e:">"}]}]}),e.CLCM,e.CBCM,{cN:"preprocessor",b:"#",e:"$",k:"if else elif endif define undef warning error line region endregion pragma checksum"},{cN:"string",b:'@"',e:'"',c:[{b:'""'}]},e.ASM,e.QSM,e.CNM,{bK:"class interface",e:/[{;=]/,i:/[^\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:"namespace",e:/[{;=]/,i:/[^\s:]/,c:[{cN:"title",b:"[a-zA-Z](\\.?\\w)*",r:0},e.CLCM,e.CBCM]},{bK:"new return throw await",r:0},{cN:"function",b:"("+t+"\\s+)+"+e.IR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.IR+"\\s*\\(",rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage("clojure-repl",function(r){return{c:[{cN:"prompt",b:/^([\w.-]+|\s*#_)=>/,starts:{e:/$/,sL:"clojure"}}]}});hljs.registerLanguage("clojure",function(e){var t={built_in:"def cond apply if-not if-let if not not= = < > <= >= == + / * - rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit defmacro defn defn- macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy defstruct first rest cons defprotocol cast coll deftype defrecord last butlast sigs reify second ffirst fnext nfirst nnext defmulti defmethod meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize"},r="a-zA-Z_\\-!.?+*=<>&#'",n="["+r+"]["+r+"0-9/;:]*",a="[-+]?\\d+(\\.\\d+)?",o={b:n,r:0},s={cN:"number",b:a,r:0},i=e.inherit(e.QSM,{i:null}),c=e.C(";","$",{r:0}),d={cN:"literal",b:/\b(true|false|nil)\b/},l={cN:"collection",b:"[\\[\\{]",e:"[\\]\\}]"},m={cN:"comment",b:"\\^"+n},p=e.C("\\^\\{","\\}"),u={cN:"attribute",b:"[:]"+n},f={cN:"list",b:"\\(",e:"\\)"},h={eW:!0,r:0},y={k:t,l:n,cN:"keyword",b:n,starts:h},b=[f,i,m,p,c,u,l,s,d,o];return f.c=[e.C("comment",""),y,h],h.c=b,l.c=b,{aliases:["clj"],i:/\S/,c:[f,i,m,p,c,u,l,s,d]}});hljs.registerLanguage("haskell",function(e){var c=[e.C("--","$"),e.C("{-","-}",{c:["self"]})],a={cN:"pragma",b:"{-#",e:"#-}"},i={cN:"preprocessor",b:"^#",e:"$"},n={cN:"type",b:"\\b[A-Z][\\w']*",r:0},t={cN:"container",b:"\\(",e:"\\)",i:'"',c:[a,i,{cN:"type",b:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"},e.inherit(e.TM,{b:"[_a-z][\\w']*"})].concat(c)},l={cN:"container",b:"{",e:"}",c:t.c};return{aliases:["hs"],k:"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec",c:[{cN:"module",b:"\\bmodule\\b",e:"where",k:"module where",c:[t].concat(c),i:"\\W\\.|;"},{cN:"import",b:"\\bimport\\b",e:"$",k:"import|0 qualified as hiding",c:[t].concat(c),i:"\\W\\.|;"},{cN:"class",b:"^(\\s*)?(class|instance)\\b",e:"where",k:"class family instance where",c:[n,t].concat(c)},{cN:"typedef",b:"\\b(data|(new)?type)\\b",e:"$",k:"data family type newtype deriving",c:[a,n,t,l].concat(c)},{cN:"default",bK:"default",e:"$",c:[n,t].concat(c)},{cN:"infix",bK:"infix infixl infixr",e:"$",c:[e.CNM].concat(c)},{cN:"foreign",b:"\\bforeign\\b",e:"$",k:"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe",c:[n,e.QSM].concat(c)},{cN:"shebang",b:"#!\\/usr\\/bin\\/env runhaskell",e:"$"},a,i,e.QSM,e.CNM,n,e.inherit(e.TM,{b:"^[_a-z][\\w']*"}),{b:"->|<-"}].concat(c)}});hljs.registerLanguage("nginx",function(e){var r={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+e.UIR}]},b={eW:!0,l:"[a-z/_]+",k:{built_in:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[e.HCM,{cN:"string",c:[e.BE,r],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{cN:"url",b:"([a-z]+):/",e:"\\s",eW:!0,eE:!0,c:[r]},{cN:"regexp",c:[e.BE,r],v:[{b:"\\s\\^",e:"\\s|{|;",rE:!0},{b:"~\\*?\\s+",e:"\\s|{|;",rE:!0},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},r]};return{aliases:["nginxconf"],c:[e.HCM,{b:e.UIR+"\\s",e:";|{",rB:!0,c:[{cN:"title",b:e.UIR,starts:b}],r:0}],i:"[^\\s\\}]"}});hljs.registerLanguage("fortran",function(e){var t={cN:"params",b:"\\(",e:"\\)"},n={constant:".False. .True.",type:"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data",keyword:"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure",built_in:"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image"};return{cI:!0,aliases:["f90","f95"],k:n,c:[e.inherit(e.ASM,{cN:"string",r:0}),e.inherit(e.QSM,{cN:"string",r:0}),{cN:"function",bK:"subroutine function program",i:"[${=\\n]",c:[e.UTM,t]},e.C("!","$",{r:0}),{cN:"number",b:"(?=\\b|\\+|\\-|\\.)(?=\\.\\d|\\d)(?:\\d+)?(?:\\.?\\d*)(?:[de][+-]?\\d+)?\\b\\.?",r:0}]}});hljs.registerLanguage("haml",function(s){return{cI:!0,c:[{cN:"doctype",b:"^!!!( (5|1\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\b.*))?$",r:10},s.C("^\\s*(!=#|=#|-#|/).*$",!1,{r:0}),{b:"^\\s*(-|=|!=)(?!#)",starts:{e:"\\n",sL:"ruby"}},{cN:"tag",b:"^\\s*%",c:[{cN:"title",b:"\\w+"},{cN:"value",b:"[#\\.][\\w-]+"},{b:"{\\s*",e:"\\s*}",eE:!0,c:[{b:":\\w+\\s*=>",e:",\\s+",rB:!0,eW:!0,c:[{cN:"symbol",b:":\\w+"},s.ASM,s.QSM,{b:"\\w+",r:0}]}]},{b:"\\(\\s*",e:"\\s*\\)",eE:!0,c:[{b:"\\w+\\s*=",e:"\\s+",rB:!0,eW:!0,c:[{cN:"attribute",b:"\\w+",r:0},s.ASM,s.QSM,{b:"\\w+",r:0}]}]}]},{cN:"bullet",b:"^\\s*[=~]\\s*",r:0},{b:"#{",starts:{e:"}",sL:"ruby"}}]}});hljs.registerLanguage("r",function(e){var r="([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*";return{c:[e.HCM,{b:r,l:r,k:{keyword:"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...",literal:"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10"},r:0},{cN:"number",b:"0[xX][0-9a-fA-F]+[Li]?\\b",r:0},{cN:"number",b:"\\d+(?:[eE][+\\-]?\\d*)?L\\b",r:0},{cN:"number",b:"\\d+\\.(?!\\d)(?:i\\b)?",r:0},{cN:"number",b:"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{cN:"number",b:"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{b:"`",e:"`",r:0},{cN:"string",c:[e.BE],v:[{b:'"',e:'"'},{b:"'",e:"'"}]}]}});hljs.registerLanguage("django",function(e){var t={cN:"filter",b:/\|[A-Za-z]+:?/,k:"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone",c:[{cN:"argument",b:/"/,e:/"/},{cN:"argument",b:/'/,e:/'/}]};return{aliases:["jinja"],cI:!0,sL:"xml",c:[e.C(/\{%\s*comment\s*%}/,/\{%\s*endcomment\s*%}/),e.C(/\{#/,/#}/),{cN:"template_tag",b:/\{%/,e:/%}/,k:"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor in ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup by as ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim",c:[t]},{cN:"variable",b:/\{\{/,e:/}}/,c:[t]}]}});hljs.registerLanguage("livecodeserver",function(e){var r={cN:"variable",b:"\\b[gtps][A-Z]+[A-Za-z0-9_\\-]*\\b|\\$_[A-Z]+",r:0},t=[e.CBCM,e.HCM,e.C("--","$"),e.C("[^:]//","$")],a=e.inherit(e.TM,{v:[{b:"\\b_*rig[A-Z]+[A-Za-z0-9_\\-]*"},{b:"\\b_[a-z0-9\\-]+"}]}),o=e.inherit(e.TM,{b:"\\b([A-Za-z0-9_\\-]+)\\b"});return{cI:!1,k:{keyword:"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if",constant:"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK",operator:"div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys",built_in:"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract union unload wait write"},c:[r,{cN:"keyword",b:"\\bend\\sif\\b"},{cN:"function",bK:"function",e:"$",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:"function",b:"\\bend\\s+",e:"$",k:"end",c:[o,a]},{cN:"command",bK:"command on",e:"$",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:"preprocessor",v:[{b:"<\\?(rev|lc|livecode)",r:10},{b:"<\\?"},{b:"\\?>"}]},e.ASM,e.QSM,e.BNM,e.CNM,a].concat(t),i:";$|^\\[|^="}});hljs.registerLanguage("cmake",function(e){return{aliases:["cmake.in"],cI:!0,k:{keyword:"add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_subdirectory add_test aux_source_directory break build_command cmake_minimum_required cmake_policy configure_file create_test_sourcelist define_property else elseif enable_language enable_testing endforeach endfunction endif endmacro endwhile execute_process export find_file find_library find_package find_path find_program fltk_wrap_ui foreach function get_cmake_property get_directory_property get_filename_component get_property get_source_file_property get_target_property get_test_property if include include_directories include_external_msproject include_regular_expression install link_directories load_cache load_command macro mark_as_advanced message option output_required_files project qt_wrap_cpp qt_wrap_ui remove_definitions return separate_arguments set set_directory_properties set_property set_source_files_properties set_target_properties set_tests_properties site_name source_group string target_link_libraries try_compile try_run unset variable_watch while build_name exec_program export_library_dependencies install_files install_programs install_targets link_libraries make_directory remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or",operator:"equal less greater strless strgreater strequal matches"},c:[{cN:"envvar",b:"\\${",e:"}"},e.HCM,e.QSM,e.NM]}});hljs.registerLanguage("http",function(t){return{aliases:["https"],i:"\\S",c:[{cN:"status",b:"^HTTP/[0-9\\.]+",e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{cN:"request",b:"^[A-Z]+ (.*?) HTTP/[0-9\\.]+$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{cN:"string",e:"$"}},{b:"\\n\\n",starts:{sL:[],eW:!0}}]}});hljs.registerLanguage("vbscript",function(e){return{aliases:["vbs"],cI:!0,k:{keyword:"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto",built_in:"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid scriptenginebuildversion scriptengine split scriptengineminorversion cint sin datepart ltrim sqr scriptenginemajorversion time derived eval date formatpercent exp inputbox left ascw chrw regexp server response request cstr err",literal:"true false null nothing empty"},i:"//",c:[e.inherit(e.QSM,{c:[{b:'""'}]}),e.C(/'/,/$/,{r:0}),e.CNM]}});hljs.registerLanguage("fsharp",function(e){var t={b:"<",e:">",c:[e.inherit(e.TM,{b:/'[a-zA-Z0-9_]+/})]};return{aliases:["fs"],k:"yield! return! let! do!abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield",c:[{cN:"string",b:'@"',e:'"',c:[{b:'""'}]},{cN:"string",b:'"""',e:'"""'},e.C("\\(\\*","\\*\\)"),{cN:"class",bK:"type",e:"\\(|=|$",eE:!0,c:[e.UTM,t]},{cN:"annotation",b:"\\[<",e:">\\]",r:10},{cN:"attribute",b:"\\B('[A-Za-z])\\b",c:[e.BE]},e.CLCM,e.inherit(e.QSM,{i:null}),e.CNM]}});hljs.registerLanguage("groovy",function(e){return{k:{typename:"byte short char int long boolean float double void",literal:"true false null",keyword:"def as in assert trait super this abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof"},c:[e.C("/\\*\\*","\\*/",{r:0,c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,{cN:"string",b:'"""',e:'"""'},{cN:"string",b:"'''",e:"'''"},{cN:"string",b:"\\$/",e:"/\\$",r:10},e.ASM,{cN:"regexp",b:/~?\/[^\/\n]+\//,c:[e.BE]},e.QSM,{cN:"shebang",b:"^#!/usr/bin/env",e:"$",i:"\n"},e.BNM,{cN:"class",bK:"class interface trait enum",e:"{",i:":",c:[{bK:"extends implements"},e.UTM]},e.CNM,{cN:"annotation",b:"@[A-Za-z]+"},{cN:"string",b:/[^\?]{0}[A-Za-z0-9_$]+ *:/},{b:/\?/,e:/\:/},{cN:"label",b:"^\\s*[A-Za-z0-9_$]+:",r:0}],i:/#/}});hljs.registerLanguage("d",function(e){var r={keyword:"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__",built_in:"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring",literal:"false null true"},t="(0|[1-9][\\d_]*)",a="(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)",i="0[bB][01_]+",n="([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)",c="0[xX]"+n,_="([eE][+-]?"+a+")",d="("+a+"(\\.\\d*|"+_+")|\\d+\\."+a+a+"|\\."+t+_+"?)",o="(0[xX]("+n+"\\."+n+"|\\.?"+n+")[pP][+-]?"+a+")",s="("+t+"|"+i+"|"+c+")",l="("+o+"|"+d+")",u="\\\\(['\"\\?\\\\abfnrtv]|u[\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\dA-Fa-f]{2}|U[\\dA-Fa-f]{8})|&[a-zA-Z\\d]{2,};",b={cN:"number",b:"\\b"+s+"(L|u|U|Lu|LU|uL|UL)?",r:0},f={cN:"number",b:"\\b("+l+"([fF]|L|i|[fF]i|Li)?|"+s+"(i|[fF]i|Li))",r:0},g={cN:"string",b:"'("+u+"|.)",e:"'",i:"."},h={b:u,r:0},p={cN:"string",b:'"',c:[h],e:'"[cwd]?'},w={cN:"string",b:'[rq]"',e:'"[cwd]?',r:5},N={cN:"string",b:"`",e:"`[cwd]?"},A={cN:"string",b:'x"[\\da-fA-F\\s\\n\\r]*"[cwd]?',r:10},F={cN:"string",b:'q"\\{',e:'\\}"'},m={cN:"shebang",b:"^#!",e:"$",r:5},y={cN:"preprocessor",b:"#(line)",e:"$",r:5},L={cN:"keyword",b:"@[a-zA-Z_][a-zA-Z_\\d]*"},v=e.C("\\/\\+","\\+\\/",{c:["self"],r:10});return{l:e.UIR,k:r,c:[e.CLCM,e.CBCM,v,A,p,w,N,F,f,b,g,m,y,L]}});hljs.registerLanguage("sql",function(e){var t=e.C("--","$");return{cI:!0,i:/[<>]/,c:[{cN:"operator",bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate savepoint release|0 unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke",e:/;/,eW:!0,k:{keyword:"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes c cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle d data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration e each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract f failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function g general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http i id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists k keep keep_duplicates key keys kill l language large last|0 last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link|0 list|0 listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock|0 locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop|0 low low_priority lower lpad lrtrim ltrim m main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex n name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding p package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise|0 rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release|0 release_lock relies_on relocate rely rem remainder repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime t table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null",built_in:"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage("erlang",function(e){var r="[a-z'][a-zA-Z0-9_']*",c="("+r+":"+r+"|"+r+")",a={keyword:"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor",literal:"false true"},n=e.C("%","$"),i={cN:"number",b:"\\b(\\d+#[a-fA-F0-9]+|\\d+(\\.\\d+)?([eE][-+]?\\d+)?)",r:0},b={b:"fun\\s+"+r+"/\\d+"},d={b:c+"\\(",e:"\\)",rB:!0,r:0,c:[{cN:"function_name",b:c,r:0},{b:"\\(",e:"\\)",eW:!0,rE:!0,r:0}]},o={cN:"tuple",b:"{",e:"}",r:0},t={cN:"variable",b:"\\b_([A-Z][A-Za-z0-9_]*)?",r:0},l={cN:"variable",b:"[A-Z][a-zA-Z0-9_]*",r:0},f={b:"#"+e.UIR,r:0,rB:!0,c:[{cN:"record_name",b:"#"+e.UIR,r:0},{b:"{",e:"}",r:0}]},s={bK:"fun receive if try case",e:"end",k:a};s.c=[n,b,e.inherit(e.ASM,{cN:""}),s,d,e.QSM,i,o,t,l,f];var u=[n,b,s,d,e.QSM,i,o,t,l,f];d.c[1].c=u,o.c=u,f.c[1].c=u;var v={cN:"params",b:"\\(",e:"\\)",c:u};return{aliases:["erl"],k:a,i:"(</|\\*=|\\+=|-=|/\\*|\\*/|\\(\\*|\\*\\))",c:[{cN:"function",b:"^"+r+"\\s*\\(",e:"->",rB:!0,i:"\\(|#|//|/\\*|\\\\|:|;",c:[v,e.inherit(e.TM,{b:r})],starts:{e:";|\\.",k:a,c:u}},n,{cN:"pp",b:"^-",e:"\\.",r:0,eE:!0,rB:!0,l:"-"+e.IR,k:"-module -record -undef -export -ifdef -ifndef -author -copyright -doc -vsn -import -include -include_lib -compile -define -else -endif -file -behaviour -behavior -spec",c:[v]},i,e.QSM,f,t,l,o,{b:/\.$/}]}});hljs.registerLanguage("apache",function(e){var r={cN:"number",b:"[\\$%]\\d+"};return{aliases:["apacheconf"],cI:!0,c:[e.HCM,{cN:"tag",b:"</?",e:">"},{cN:"keyword",b:/\w+/,r:0,k:{common:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"sqbracket",b:"\\s\\[",e:"\\]$"},{cN:"cbracket",b:"[\\$%]\\{",e:"\\}",c:["self",r]},r,e.QSM]}}],i:/\S/}});hljs.registerLanguage("tcl",function(e){return{aliases:["tk"],k:"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while",c:[e.C(";[ \\t]*#","$"),e.C("^[ \\t]*#","$"),{bK:"proc",e:"[\\{]",eE:!0,c:[{cN:"symbol",b:"[ \\t\\n\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",e:"[ \\t\\n\\r]",eW:!0,eE:!0}]},{cN:"variable",eE:!0,v:[{b:"\\$(\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\(([a-zA-Z0-9_])*\\)",e:"[^a-zA-Z0-9_\\}\\$]"},{b:"\\$(\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",e:"(\\))?[^a-zA-Z0-9_\\}\\$]"}]},{cN:"string",c:[e.BE],v:[e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},{cN:"number",v:[e.BNM,e.CNM]}]}});hljs.registerLanguage("dart",function(e){var t={cN:"subst",b:"\\$\\{",e:"}",k:"true false null this is new super"},r={cN:"string",v:[{b:"r'''",e:"'''"},{b:'r"""',e:'"""'},{b:"r'",e:"'",i:"\\n"},{b:'r"',e:'"',i:"\\n"},{b:"'''",e:"'''",c:[e.BE,t]},{b:'"""',e:'"""',c:[e.BE,t]},{b:"'",e:"'",i:"\\n",c:[e.BE,t]},{b:'"',e:'"',i:"\\n",c:[e.BE,t]}]};t.c=[e.CNM,r];var n={keyword:"assert break case catch class const continue default do else enum extends false final finally for if in is new null rethrow return super switch this throw true try var void while with",literal:"abstract as dynamic export external factory get implements import library operator part set static typedef",built_in:"print Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double int num document window querySelector querySelectorAll Element ElementList"};return{k:n,c:[r,e.C("/\\*\\*","\\*/",{sL:"markdown"}),e.C("///","$",{sL:"markdown"}),e.CLCM,e.CBCM,{cN:"class",bK:"class interface",e:"{",eE:!0,c:[{bK:"extends implements"},e.UTM]},e.CNM,{cN:"annotation",b:"@[A-Za-z]+"},{b:"=>"}]}});hljs.registerLanguage("php",function(e){var c={cN:"variable",b:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},a={cN:"preprocessor",b:/<\?(php)?|\?>/},i={cN:"string",c:[e.BE,a],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:["php3","php4","php5","php6"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.CLCM,e.HCM,e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"},a]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:"<<<['\"]?\\w+['\"]?$",e:"^\\w+;",c:[e.BE]},a,c,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",c,e.CBCM,i,n]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},i,n]}});hljs.registerLanguage("java",function(e){var a=e.UIR+"(<"+e.UIR+">)?",t="false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private",c="\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",r={cN:"number",b:c,r:0};return{aliases:["jsp"],k:t,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"new throw return else",r:0},{cN:"function",b:"("+a+"\\s+)+"+e.UIR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},r,{cN:"annotation",b:"@[A-Za-z]+"}]}});hljs.registerLanguage("smalltalk",function(a){var r="[a-z][a-zA-Z0-9_]*",s={cN:"char",b:"\\$.{1}"},c={cN:"symbol",b:"#"+a.UIR};return{aliases:["st"],k:"self super nil true false thisContext",c:[a.C('"','"'),a.ASM,{cN:"class",b:"\\b[A-Z][A-Za-z0-9_]*",r:0},{cN:"method",b:r+":",r:0},a.CNM,c,s,{cN:"localvars",b:"\\|[ ]*"+r+"([ ]+"+r+")*[ ]*\\|",rB:!0,e:/\|/,i:/\S/,c:[{b:"(\\|[ ]*)?"+r}]},{cN:"array",b:"\\#\\(",e:"\\)",c:[a.ASM,s,a.CNM,c]}]}});hljs.registerLanguage("delphi",function(e){var r="exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure",t=[e.CLCM,e.C(/\{/,/\}/,{r:0}),e.C(/\(\*/,/\*\)/,{r:10})],i={cN:"string",b:/'/,e:/'/,c:[{b:/''/}]},c={cN:"string",b:/(#\d+)+/},o={b:e.IR+"\\s*=\\s*class\\s*\\(",rB:!0,c:[e.TM]},n={cN:"function",bK:"function constructor destructor procedure",e:/[:;]/,k:"function constructor|10 destructor|10 procedure|10",c:[e.TM,{cN:"params",b:/\(/,e:/\)/,k:r,c:[i,c]}].concat(t)};return{cI:!0,k:r,i:/"|\$[G-Zg-z]|\/\*|<\/|\|/,c:[i,c,e.NM,o,n].concat(t)}});hljs.registerLanguage("typescript",function(e){var r={keyword:"in if for while finally var new function|0 do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private get set super static implements enum export import declare type protected",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void"};return{aliases:["ts"],k:r,c:[{cN:"pi",b:/^\s*['"]use strict['"]/,r:0},e.ASM,e.QSM,e.CLCM,e.CBCM,{cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM],r:0},{cN:"function",b:"function",e:/[\{;]/,eE:!0,k:r,c:["self",e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,c:[e.CLCM,e.CBCM],i:/["'\(]/}],i:/\[|%/,r:0},{cN:"constructor",bK:"constructor",e:/\{/,eE:!0,r:10},{cN:"module",bK:"module",e:/\{/,eE:!0},{cN:"interface",bK:"interface",e:/\{/,eE:!0,k:"interface extends"},{b:/\$[(.]/},{b:"\\."+e.IR,r:0}]}});hljs.registerLanguage("vim",function(e){return{l:/[!#@\w]+/,k:{keyword:"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw d|0 delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu g|0 go gr grepa gu gv ha h|0 helpf helpg helpt hi hid his i|0 ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs n|0 new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf q|0 quita qa r|0 rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv s|0 sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync t|0 tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up v|0 ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank",built_in:"abs acos add and append argc argidx argv asin atan atan2 browse browsedir bufexists buflisted bufloaded bufname bufnr bufwinnr byte2line byteidx call ceil changenr char2nr cindent clearmatches col complete complete_add complete_check confirm copy cos cosh count cscope_connection cursor deepcopy delete did_filetype diff_filler diff_hlID empty escape eval eventhandler executable exists exp expand extend feedkeys filereadable filewritable filter finddir findfile float2nr floor fmod fnameescape fnamemodify foldclosed foldclosedend foldlevel foldtext foldtextresult foreground function garbagecollect get getbufline getbufvar getchar getcharmod getcmdline getcmdpos getcmdtype getcwd getfontname getfperm getfsize getftime getftype getline getloclist getmatches getpid getpos getqflist getreg getregtype gettabvar gettabwinvar getwinposx getwinposy getwinvar glob globpath has has_key haslocaldir hasmapto histadd histdel histget histnr hlexists hlID hostname iconv indent index input inputdialog inputlist inputrestore inputsave inputsecret insert invert isdirectory islocked items join keys len libcall libcallnr line line2byte lispindent localtime log log10 luaeval map maparg mapcheck match matchadd matcharg matchdelete matchend matchlist matchstr max min mkdir mode mzeval nextnonblank nr2char or pathshorten pow prevnonblank printf pumvisible py3eval pyeval range readfile reltime reltimestr remote_expr remote_foreground remote_peek remote_read remote_send remove rename repeat resolve reverse round screenattr screenchar screencol screenrow search searchdecl searchpair searchpairpos searchpos server2client serverlist setbufvar setcmdpos setline setloclist setmatches setpos setqflist setreg settabvar settabwinvar setwinvar sha256 shellescape shiftwidth simplify sin sinh sort soundfold spellbadword spellsuggest split sqrt str2float str2nr strchars strdisplaywidth strftime stridx string strlen strpart strridx strtrans strwidth submatch substitute synconcealed synID synIDattr synIDtrans synstack system tabpagebuflist tabpagenr tabpagewinnr tagfiles taglist tan tanh tempname tolower toupper tr trunc type undofile undotree values virtcol visualmode wildmenumode winbufnr wincol winheight winline winnr winrestcmd winrestview winsaveview winwidth writefile xor"},i:/[{:]/,c:[e.NM,e.ASM,{cN:"string",b:/"((\\")|[^"\n])*("|\n)/},{cN:"variable",b:/[bwtglsav]:[\w\d_]*/},{cN:"function",bK:"function function!",e:"$",r:0,c:[e.TM,{cN:"params",b:"\\(",e:"\\)"}]}]}});hljs.registerLanguage("less",function(e){var r="[\\w-]+",t="("+r+"|@{"+r+"})",a=[],c=[],n=function(e){return{cN:"string",b:"~?"+e+".*?"+e}},i=function(e,r,t){return{cN:e,b:r,r:t}},s=function(r,t,a){return e.inherit({cN:r,b:t+"\\(",e:"\\(",rB:!0,eE:!0,r:0},a)},b={b:"\\(",e:"\\)",c:c,r:0};c.push(e.CLCM,e.CBCM,n("'"),n('"'),e.CSSNM,i("hexcolor","#[0-9A-Fa-f]+\\b"),s("function","(url|data-uri)",{starts:{cN:"string",e:"[\\)\\n]",eE:!0}}),s("function",r),b,i("variable","@@?"+r,10),i("variable","@{"+r+"}"),i("built_in","~?`[^`]*?`"),{cN:"attribute",b:r+"\\s*:",e:":",rB:!0,eE:!0});var o=c.concat({b:"{",e:"}",c:a}),u={bK:"when",eW:!0,c:[{bK:"and not"}].concat(c)},C={cN:"attribute",b:t,e:":",eE:!0,c:[e.CLCM,e.CBCM],i:/\S/,starts:{e:"[;}]",rE:!0,c:c,i:"[<=$]"}},l={cN:"at_rule",b:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{e:"[;{}]",rE:!0,c:c,r:0}},d={cN:"variable",v:[{b:"@"+r+"\\s*:",r:15},{b:"@"+r}],starts:{e:"[;}]",rE:!0,c:o}},p={v:[{b:"[\\.#:&\\[]",e:"[;{}]"},{b:t+"[^;]*{",e:"{"}],rB:!0,rE:!0,i:"[<='$\"]",c:[e.CLCM,e.CBCM,u,i("keyword","all\\b"),i("variable","@{"+r+"}"),i("tag",t+"%?",0),i("id","#"+t),i("class","\\."+t,0),i("keyword","&",0),s("pseudo",":not"),s("keyword",":extend"),i("pseudo","::?"+t),{cN:"attr_selector",b:"\\[",e:"\\]"},{b:"\\(",e:"\\)",c:o},{b:"!important"}]};return a.push(e.CLCM,e.CBCM,l,d,p,C),{cI:!0,i:"[=>'/<($\"]",c:a}});hljs.registerLanguage("actionscript",function(e){var a="[a-zA-Z_$][a-zA-Z0-9_$]*",c="([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)",t={cN:"rest_arg",b:"[.]{3}",e:a,r:10};return{aliases:["as"],k:{keyword:"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with",literal:"true false null undefined"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:"package",bK:"package",e:"{",c:[e.TM]},{cN:"class",bK:"class interface",e:"{",eE:!0,c:[{bK:"extends implements"},e.TM]},{cN:"preprocessor",bK:"import include",e:";"},{cN:"function",bK:"function",e:"[{;]",eE:!0,i:"\\S",c:[e.TM,{cN:"params",b:"\\(",e:"\\)",c:[e.ASM,e.QSM,e.CLCM,e.CBCM,t]},{cN:"type",b:":",e:c,r:10}]}],i:/#/}});hljs.registerLanguage("cpp",function(t){var e={cN:"keyword",b:"\\b[a-z\\d_]*_t\\b"},r={cN:"string",v:[t.inherit(t.QSM,{b:'((u8?|U)|L)?"'}),{b:'(u8?|U)?R"',e:'"',c:[t.BE]},{b:"'\\\\?.",e:"'",i:"."}]},s={cN:"number",v:[{b:"\\b(\\d+(\\.\\d*)?|\\.\\d+)(u|U|l|L|ul|UL|f|F)"},{b:t.CNR}]},i=t.IR+"\\s*\\(",a={keyword:"int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong",built_in:"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf",literal:"true false nullptr NULL"};return{aliases:["c","cc","h","c++","h++","hpp"],k:a,i:"</",c:[e,t.CLCM,t.CBCM,s,r,{cN:"preprocessor",b:"#",e:"$",k:"if else elif endif define undef warning error line pragma ifdef ifndef",c:[{b:/\\\n/,r:0},{bK:"include",e:"$",c:[r,{cN:"string",b:"<",e:">",i:"\\n"}]},r,s,t.CLCM,t.CBCM]},{b:"\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\s*<",e:">",k:a,c:["self",e]},{b:t.IR+"::",k:a},{bK:"new throw return else",r:0},{cN:"function",b:"("+t.IR+"[\\*&\\s]+)+"+i,rB:!0,e:/[{;=]/,eE:!0,k:a,c:[{b:i,rB:!0,c:[t.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:a,r:0,c:[t.CLCM,t.CBCM,r,s]},t.CLCM,t.CBCM]}]}});hljs.registerLanguage("gradle",function(e){return{cI:!0,k:{keyword:"task project allprojects subprojects artifacts buildscript configurations dependencies repositories sourceSets description delete from into include exclude source classpath destinationDir includes options sourceCompatibility targetCompatibility group flatDir doLast doFirst flatten todir fromdir ant def abstract break case catch continue default do else extends final finally for if implements instanceof native new private protected public return static switch synchronized throw throws transient try volatile while strictfp package import false null super this true antlrtask checkstyle codenarc copy boolean byte char class double float int interface long short void compile runTime file fileTree abs any append asList asWritable call collect compareTo count div dump each eachByte eachFile eachLine every find findAll flatten getAt getErr getIn getOut getText grep immutable inject inspect intersect invokeMethods isCase join leftShift minus multiply newInputStream newOutputStream newPrintWriter newReader newWriter next plus pop power previous print println push putAt read readBytes readLines reverse reverseEach round size sort splitEachLine step subMap times toInteger toList tokenize upto waitForOrKill withPrintWriter withReader withStream withWriter withWriterAppend write writeLine"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.NM,e.RM]}});hljs.registerLanguage("rust",function(e){var t="([uif](8|16|32|64|size))?",i=e.inherit(e.CBCM);return i.c.push("self"),{aliases:["rs"],k:{keyword:"alignof as be box break const continue crate do else enum extern false fn for if impl in let loop match mod mut offsetof once priv proc pub pure ref return self Self sizeof static struct super trait true type typeof unsafe unsized use virtual while where yield int i8 i16 i32 i64 uint u8 u32 u64 float f32 f64 str char bool",built_in:"assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln!"},l:e.IR+"!?",i:"</",c:[e.CLCM,i,e.inherit(e.QSM,{i:null}),{cN:"string",v:[{b:/r(#*)".*?"\1(?!#)/},{b:/'\\?(x\w{2}|u\w{4}|U\w{8}|.)'/},{b:/'[a-zA-Z_][a-zA-Z0-9_]*/}]},{cN:"number",v:[{b:"\\b0b([01_]+)"+t},{b:"\\b0o([0-7_]+)"+t},{b:"\\b0x([A-Fa-f0-9_]+)"+t},{b:"\\b(\\d[\\d_]*(\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)"+t}],r:0},{cN:"function",bK:"fn",e:"(\\(|<)",eE:!0,c:[e.UTM]},{cN:"preprocessor",b:"#\\!?\\[",e:"\\]"},{bK:"type",e:"(=|<)",c:[e.UTM],i:"\\S"},{bK:"trait enum",e:"{",c:[e.inherit(e.UTM,{endsParent:!0})],i:"[\\w\\d]"},{b:e.IR+"::"},{b:"->"}]}});hljs.registerLanguage("javascript",function(e){return{aliases:["js"],k:{keyword:"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise"},c:[{cN:"pi",r:10,b:/^\s*['"]use (strict|asm)['"]/},e.ASM,e.QSM,{cN:"string",b:"`",e:"`",c:[e.BE,{cN:"subst",b:"\\$\\{",e:"\\}"}]},e.CLCM,e.CBCM,{cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{b:/</,e:/>\s*[);\]]/,r:0,sL:"xml"}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:[e.CLCM,e.CBCM],i:/["'\(]/}],i:/\[|%/},{b:/\$[(.]/},{b:"\\."+e.IR,r:0},{bK:"import",e:"[;$]",k:"import from as",c:[e.ASM,e.QSM]},{cN:"class",bK:"class",e:/[{;=]/,eE:!0,i:/[:"\[\]]/,c:[{bK:"extends"},e.UTM]}],i:/#/}});hljs.registerLanguage("haxe",function(e){var r="([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)";return{aliases:["hx"],k:{keyword:"break callback case cast catch class continue default do dynamic else enum extends extern for function here if implements import in inline interface never new override package private public return static super switch this throw trace try typedef untyped using var while",literal:"true false null"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:"class",bK:"class interface",e:"{",eE:!0,c:[{bK:"extends implements"},e.TM]},{cN:"preprocessor",b:"#",e:"$",k:"if else elseif end error"},{cN:"function",bK:"function",e:"[{;]",eE:!0,i:"\\S",c:[e.TM,{cN:"params",b:"\\(",e:"\\)",c:[e.ASM,e.QSM,e.CLCM,e.CBCM]},{cN:"type",b:":",e:r,r:10}]}]}});hljs.registerLanguage("scss",function(e){var t="[a-zA-Z-][a-zA-Z0-9_-]*",i={cN:"variable",b:"(\\$"+t+")\\b"},r={cN:"function",b:t+"\\(",rB:!0,eE:!0,e:"\\("},o={cN:"hexcolor",b:"#[0-9A-Fa-f]+"};({cN:"attribute",b:"[A-Z\\_\\.\\-]+",e:":",eE:!0,i:"[^\\s]",starts:{cN:"value",eW:!0,eE:!0,c:[r,o,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"important",b:"!important"}]}});return{cI:!0,i:"[=/|']",c:[e.CLCM,e.CBCM,r,{cN:"id",b:"\\#[A-Za-z0-9_-]+",r:0},{cN:"class",b:"\\.[A-Za-z0-9_-]+",r:0},{cN:"attr_selector",b:"\\[",e:"\\]",i:"$"},{cN:"tag",b:"\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\b",r:0},{cN:"pseudo",b:":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)"},{cN:"pseudo",b:"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)"},i,{cN:"attribute",b:"\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\b",i:"[^\\s]"},{cN:"value",b:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{cN:"value",b:":",e:";",c:[r,i,o,e.CSSNM,e.QSM,e.ASM,{cN:"important",b:"!important"}]},{cN:"at_rule",b:"@",e:"[{;]",k:"mixin include extend for if else each while charset import debug media page content font-face namespace warn",c:[r,i,e.QSM,e.ASM,o,e.CSSNM,{cN:"preprocessor",b:"\\s[A-Za-z0-9_.-]+",r:0}]}]}});hljs.registerLanguage("swift",function(e){var i={keyword:"class deinit enum extension func import init let protocol static struct subscript typealias var break case continue default do else fallthrough if in for return switch where while as dynamicType is new super self Self Type __COLUMN__ __FILE__ __FUNCTION__ __LINE__ associativity didSet get infix inout left mutating none nonmutating operator override postfix precedence prefix right set unowned unowned safe unsafe weak willSet",literal:"true false nil",built_in:"abs advance alignof alignofValue assert bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced join lexicographicalCompare map max maxElement min minElement numericCast partition posix print println quickSort reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith strideof strideofValue swap swift toString transcode underestimateCount unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafePointers withVaList"},t={cN:"type",b:"\\b[A-Z][\\w']*",r:0},n=e.C("/\\*","\\*/",{c:["self"]}),r={cN:"subst",b:/\\\(/,e:"\\)",k:i,c:[]},s={cN:"number",b:"\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b",r:0},o=e.inherit(e.QSM,{c:[r,e.BE]});return r.c=[s],{k:i,c:[o,e.CLCM,n,t,s,{cN:"func",bK:"func",e:"{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/,i:/\(/}),{cN:"generics",b:/</,e:/>/,i:/>/},{cN:"params",b:/\(/,e:/\)/,endsParent:!0,k:i,c:["self",s,o,e.CBCM,{b:":"}],i:/["']/}],i:/\[|%/},{cN:"class",bK:"struct protocol class extension enum",k:i,e:"\\{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/})]},{cN:"preprocessor",b:"(@assignment|@class_protocol|@exported|@final|@lazy|@noreturn|@NSCopying|@NSManaged|@objc|@optional|@required|@auto_closure|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix)"}]}});hljs.registerLanguage("matlab",function(e){var a=[e.CNM,{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]}],s={r:0,c:[{cN:"operator",b:/'['\.]*/}]};return{k:{keyword:"break case catch classdef continue else elseif end enumerated events for function global if methods otherwise parfor persistent properties return spmd switch try while",built_in:"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i inf nan isnan isinf isfinite j why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson"},i:'(//|"|#|/\\*|\\s+/\\w+)',c:[{cN:"function",bK:"function",e:"$",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)"},{cN:"params",b:"\\[",e:"\\]"}]},{b:/[a-zA-Z_][a-zA-Z_0-9]*'['\.]*/,rB:!0,r:0,c:[{b:/[a-zA-Z_][a-zA-Z_0-9]*/,r:0},s.c[0]]},{cN:"matrix",b:"\\[",e:"\\]",c:a,r:0,starts:s},{cN:"cell",b:"\\{",e:/}/,c:a,r:0,starts:s},{b:/\)/,r:0,starts:s},e.C("^\\s*\\%\\{\\s*$","^\\s*\\%\\}\\s*$"),e.C("\\%","$")].concat(a)}});hljs.registerLanguage("ruby",function(e){var c="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",r="and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",b={cN:"doctag",b:"@[A-Za-z]+"},a={cN:"value",b:"#<",e:">"},n=[e.C("#","$",{c:[b]}),e.C("^\\=begin","^\\=end",{c:[b],r:10}),e.C("^__END__","\\n$")],s={cN:"subst",b:"#\\{",e:"}",k:r},t={cN:"string",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{",e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/}]},i={cN:"params",b:"\\(",e:"\\)",k:r},d=[t,a,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{cN:"inheritance",b:"<\\s*",c:[{cN:"parent",b:"("+e.IR+"::)?"+e.IR}]}].concat(n)},{cN:"function",bK:"def",e:"$|;",r:0,c:[e.inherit(e.TM,{b:c}),i].concat(n)},{cN:"constant",b:"(::)?(\\b[A-Z]\\w*(::)?)+",r:0},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":",c:[t,{b:c}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{cN:"variable",b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{b:"("+e.RSR+")\\s*",c:[a,{cN:"regexp",c:[e.BE,s],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(n),r:0}].concat(n);s.c=d,i.c=d;var o="[>?]>",l="[\\w#]+\\(\\w+\\):\\d+:\\d+>",u="(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>",N=[{b:/^\s*=>/,cN:"status",starts:{e:"$",c:d}},{cN:"prompt",b:"^("+o+"|"+l+"|"+u+")",starts:{e:"$",c:d}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:r,c:n.concat(N).concat(d)}});hljs.registerLanguage("applescript",function(e){var t=e.inherit(e.QSM,{i:""}),r={cN:"params",b:"\\(",e:"\\)",c:["self",e.CNM,t]},o=e.C("--","$"),n=e.C("\\(\\*","\\*\\)",{c:["self",o]}),a=[o,n,e.HCM];return{aliases:["osascript"],k:{keyword:"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without",constant:"AppleScript false linefeed return pi quote result space tab true",type:"alias application boolean class constant date file integer list number real record string text",command:"activate beep count delay launch log offset read round run say summarize write",property:"character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year"},c:[t,e.CNM,{cN:"type",b:"\\bPOSIX file\\b"},{cN:"command",b:"\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\b|^\\s*return\\b"},{cN:"constant",b:"\\b(text item delimiters|current application|missing value)\\b"},{cN:"keyword",b:"\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference))\\b"},{cN:"property",b:"\\b(POSIX path|(date|time) string|quoted form)\\b"},{cN:"function_start",bK:"on",i:"[${=;\\n]",c:[e.UTM,r]}].concat(a),i:"//|->|=>|\\[\\["}});hljs.registerLanguage("diff",function(e){return{aliases:["patch"],c:[{cN:"chunk",r:10,v:[{b:/^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},{b:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{b:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{cN:"header",v:[{b:/Index: /,e:/$/},{b:/=====/,e:/=====$/},{b:/^\-\-\-/,e:/$/},{b:/^\*{3} /,e:/$/},{b:/^\+\+\+/,e:/$/},{b:/\*{5}/,e:/\*{5}$/}]},{cN:"addition",b:"^\\+",e:"$"},{cN:"deletion",b:"^\\-",e:"$"},{cN:"change",b:"^\\!",e:"$"}]}});hljs.registerLanguage("lua",function(e){var t="\\[=*\\[",a="\\]=*\\]",r={b:t,e:a,c:["self"]},n=[e.C("--(?!"+t+")","$"),e.C("--"+t,a,{c:[r],r:10})];return{l:e.UIR,k:{keyword:"and break do else elseif end false for if in local nil not or repeat return then true until while",built_in:"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table"},c:n.concat([{cN:"function",bK:"function",e:"\\)",c:[e.inherit(e.TM,{b:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{cN:"params",b:"\\(",eW:!0,c:n}].concat(n)},e.CNM,e.ASM,e.QSM,{cN:"string",b:t,e:a,c:[r],r:5}])}});hljs.registerLanguage("css",function(e){var c="[a-zA-Z-][a-zA-Z0-9_-]*",a={cN:"function",b:c+"\\(",rB:!0,eE:!0,e:"\\("},r={cN:"rule",b:/[A-Z\_\.\-]+\s*:/,rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:/\S/,e:":",eE:!0,starts:{cN:"value",eW:!0,eE:!0,c:[a,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"hexcolor",b:"#[0-9A-Fa-f]+"},{cN:"important",b:"!important"}]}}]};return{cI:!0,i:/[=\/|'\$]/,c:[e.CBCM,r,{cN:"id",b:/\#[A-Za-z0-9_-]+/},{cN:"class",b:/\.[A-Za-z0-9_-]+/},{cN:"attr_selector",b:/\[/,e:/\]/,i:"$"},{cN:"pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"']+/},{cN:"at_rule",b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{cN:"at_rule",b:"@",e:"[{;]",c:[{cN:"keyword",b:/\S+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[a,e.ASM,e.QSM,e.CSSNM]}]},{cN:"tag",b:c,r:0},{cN:"rules",b:"{",e:"}",i:/\S/,c:[e.CBCM,r]}]}});hljs.registerLanguage("livescript",function(e){var t={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger case default function var with then unless until loop of by when and or is isnt not it that otherwise from to til fallthrough super case default function var void const let enum export import native __hasProp __extends __slice __bind __indexOf",literal:"true false null undefined yes no on off it that void",built_in:"npm require console print module global window document"},s="[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*",i=e.inherit(e.TM,{b:s}),n={cN:"subst",b:/#\{/,e:/}/,k:t},r={cN:"subst",b:/#[A-Za-z$_]/,e:/(?:\-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,k:t},c=[e.BNM,{cN:"number",b:"(\\b0[xX][a-fA-F0-9_]+)|(\\b\\d(\\d|_\\d)*(\\.(\\d(\\d|_\\d)*)?)?(_*[eE]([-+]\\d(_\\d|\\d)*)?)?[_a-z]*)",r:0,starts:{e:"(\\s*/)?",r:0}},{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,n,r]},{b:/"/,e:/"/,c:[e.BE,n,r]},{b:/\\/,e:/(\s|$)/,eE:!0}]},{cN:"pi",v:[{b:"//",e:"//[gim]*",c:[n,e.HCM]},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{cN:"property",b:"@"+s},{b:"``",e:"``",eB:!0,eE:!0,sL:"javascript"}];n.c=c;var a={cN:"params",b:"\\(",rB:!0,c:[{b:/\(/,e:/\)/,k:t,c:["self"].concat(c)}]};return{aliases:["ls"],k:t,i:/\/\*/,c:c.concat([e.C("\\/\\*","\\*\\/"),e.HCM,{cN:"function",c:[i,a],rB:!0,v:[{b:"("+s+"\\s*(?:=|:=)\\s*)?(\\(.*\\))?\\s*\\B\\->\\*?",e:"\\->\\*?"},{b:"("+s+"\\s*(?:=|:=)\\s*)?!?(\\(.*\\))?\\s*\\B[-~]{1,2}>\\*?",e:"[-~]{1,2}>\\*?"},{b:"("+s+"\\s*(?:=|:=)\\s*)?(\\(.*\\))?\\s*\\B!?[-~]{1,2}>\\*?",e:"!?[-~]{1,2}>\\*?"}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[i]},i]},{cN:"attribute",b:s+":",e:":",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage("julia",function(r){var e={keyword:"in abstract baremodule begin bitstype break catch ccall const continue do else elseif end export finally for function global if immutable import importall let local macro module quote return try type typealias using while",literal:"true false ANY ARGS CPU_CORES C_NULL DL_LOAD_PATH DevNull ENDIAN_BOM ENV I|0 Inf Inf16 Inf32 InsertionSort JULIA_HOME LOAD_PATH MS_ASYNC MS_INVALIDATE MS_SYNC MergeSort NaN NaN16 NaN32 OS_NAME QuickSort RTLD_DEEPBIND RTLD_FIRST RTLD_GLOBAL RTLD_LAZY RTLD_LOCAL RTLD_NODELETE RTLD_NOLOAD RTLD_NOW RoundDown RoundFromZero RoundNearest RoundToZero RoundUp STDERR STDIN STDOUT VERSION WORD_SIZE catalan cglobal e eu eulergamma golden im nothing pi γ π φ",built_in:"ASCIIString AbstractArray AbstractRNG AbstractSparseArray Any ArgumentError Array Associative Base64Pipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError Box CFILE Cchar Cdouble Cfloat Char CharString Cint Clong Clonglong ClusterManager Cmd Coff_t Colon Complex Complex128 Complex32 Complex64 Condition Cptrdiff_t Cshort Csize_t Cssize_t Cuchar Cuint Culong Culonglong Cushort Cwchar_t DArray DataType DenseArray Diagonal Dict DimensionMismatch DirectIndexString Display DivideError DomainError EOFError EachLine Enumerate ErrorException Exception Expr Factorization FileMonitor FileOffset Filter Float16 Float32 Float64 FloatRange FloatingPoint Function GetfieldNode GotoNode Hermitian IO IOBuffer IOStream IPv4 IPv6 InexactError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException IntrinsicFunction KeyError LabelNode LambdaStaticData LineNumberNode LoadError LocalProcess MIME MathConst MemoryError MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode Nothing Number ObjectIdDict OrdinalRange OverflowError ParseError PollingFileWatcher ProcessExitedException ProcessGroup Ptr QuoteNode Range Range1 Ranges Rational RawFD Real Regex RegexMatch RemoteRef RepString RevString RopeString RoundingMode Set SharedArray Signed SparseMatrixCSC StackOverflowError Stat StatStruct StepRange String SubArray SubString SymTridiagonal Symbol SymbolNode Symmetric SystemError Task TextDisplay Timer TmStruct TopNode Triangular Tridiagonal Type TypeConstructor TypeError TypeName TypeVar UTF16String UTF32String UTF8String UdpSocket Uint Uint128 Uint16 Uint32 Uint64 Uint8 UndefRefError UndefVarError UniformScaling UnionType UnitRange Unsigned Vararg VersionNumber WString WeakKeyDict WeakRef Woodbury Zip"},t="[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*",o={l:t,k:e},n={cN:"type-annotation",b:/::/},a={cN:"subtype",b:/<:/},i={cN:"number",b:/(\b0x[\d_]*(\.[\d_]*)?|0x\.\d[\d_]*)p[-+]?\d+|\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\b\d[\d_]*(\.[\d_]*)?|\.\d[\d_]*)([eEfF][-+]?\d+)?/,r:0},l={cN:"char",b:/'(.|\\[xXuU][a-zA-Z0-9]+)'/},c={cN:"subst",b:/\$\(/,e:/\)/,k:e},u={cN:"variable",b:"\\$"+t},d={cN:"string",c:[r.BE,c,u],v:[{b:/\w*"/,e:/"\w*/},{b:/\w*"""/,e:/"""\w*/}]},g={cN:"string",c:[r.BE,c,u],b:"`",e:"`"},s={cN:"macrocall",b:"@"+t},S={cN:"comment",v:[{b:"#=",e:"=#",r:10},{b:"#",e:"$"}]};return o.c=[i,l,n,a,d,g,s,S,r.HCM],c.c=o.c,o});hljs.registerLanguage("profile",function(e){return{c:[e.CNM,{cN:"built_in",b:"{",e:"}$",eB:!0,eE:!0,c:[e.ASM,e.QSM],r:0},{cN:"filename",b:"[a-zA-Z_][\\da-zA-Z_]+\\.[\\da-zA-Z_]{1,3}",e:":",eE:!0},{cN:"header",b:"(ncalls|tottime|cumtime)",e:"$",k:"ncalls tottime|10 cumtime|10 filename",r:10},{cN:"summary",b:"function calls",e:"$",c:[e.CNM],r:10},e.ASM,e.QSM,{cN:"function",b:"\\(",e:"\\)$",c:[e.UTM],r:0}]}});hljs.registerLanguage("makefile",function(e){var a={cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]};return{aliases:["mk","mak"],c:[e.HCM,{b:/^\w+\s*\W*=/,rB:!0,r:0,starts:{cN:"constant",e:/\s*\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:"title",b:/^[\w]+:\s*$/},{cN:"phony",b:/^\.PHONY:/,e:/$/,k:".PHONY",l:/[\.\w]+/},{b:/^\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage("coffeescript",function(e){var c={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not",literal:"true false null undefined yes no on off",built_in:"npm require console print module global window document"},n="[A-Za-z$_][0-9A-Za-z$_]*",r={cN:"subst",b:/#\{/,e:/}/,k:c},t=[e.BNM,e.inherit(e.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,r]},{b:/"/,e:/"/,c:[e.BE,r]}]},{cN:"regexp",v:[{b:"///",e:"///",c:[r,e.HCM]},{b:"//[gim]*",r:0},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{cN:"property",b:"@"+n},{b:"`",e:"`",eB:!0,eE:!0,sL:"javascript"}];r.c=t;var s=e.inherit(e.TM,{b:n}),i="(\\(.*\\))?\\s*\\B[-=]>",o={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:c,c:["self"].concat(t)}]};return{aliases:["coffee","cson","iced"],k:c,i:/\/\*/,c:t.concat([e.C("###","###"),e.HCM,{cN:"function",b:"^\\s*"+n+"\\s*=\\s*"+i,e:"[-=]>",rB:!0,c:[s,o]},{b:/[:\(,=]\s*/,r:0,c:[{cN:"function",b:i,e:"[-=]>",rB:!0,c:[o]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[s]},s]},{cN:"attribute",b:n+":",e:":",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage("dns",function(d){return{aliases:["bind","zone"],k:{keyword:"IN A AAAA AFSDB APL CAA CDNSKEY CDS CERT CNAME DHCID DLV DNAME DNSKEY DS HIP IPSECKEY KEY KX LOC MX NAPTR NS NSEC NSEC3 NSEC3PARAM PTR RRSIG RP SIG SOA SRV SSHFP TA TKEY TLSA TSIG TXT"},c:[d.C(";","$"),{cN:"operator",bK:"$TTL $GENERATE $INCLUDE $ORIGIN"},{cN:"number",b:"((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:)))"},{cN:"number",b:"((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])"}]}});
\ No newline at end of file diff --git a/public/js/libs/highlight-8.9.1.pack.js b/public/js/libs/highlight-8.9.1.pack.js new file mode 100644 index 00000000..cce31a2e --- /dev/null +++ b/public/js/libs/highlight-8.9.1.pack.js @@ -0,0 +1,3 @@ +!function(e){"undefined"!=typeof exports?e(exports):(window.hljs=e({}),"function"==typeof define&&define.amd&&define("hljs",[],function(){return window.hljs}))}(function(e){function n(e){return e.replace(/&/gm,"&").replace(/</gm,"<").replace(/>/gm,">")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0==t.index}function a(e){return/^(no-?highlight|plain|text)$/i.test(e)}function i(e){var n,t,r,i=e.className+" ";if(i+=e.parentNode?e.parentNode.className:"",t=/\blang(?:uage)?-([\w-]+)\b/i.exec(i))return w(t[1])?t[1]:"no-highlight";for(i=i.split(/\s+/),n=0,r=i.length;r>n;n++)if(w(i[n])||a(i[n]))return i[n]}function o(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3==i.nodeType?a+=i.nodeValue.length:1==i.nodeType&&(n.push({event:"start",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:"stop",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!=r[0].offset?e[0].offset<r[0].offset?e:r:"start"==r[0].event?e:r:e.length?e:r}function o(e){function r(e){return" "+e.nodeName+'="'+n(e.value)+'"'}l+="<"+t(e)+Array.prototype.map.call(e.attributes,r).join("")+">"}function u(e){l+="</"+t(e)+">"}function c(e){("start"==e.event?o:u)(e.node)}for(var s=0,l="",f=[];e.length||r.length;){var g=i();if(l+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g==e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g==e&&g.length&&g[0].offset==s);f.reverse().forEach(o)}else"start"==g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return l+n(a.substr(s))}function s(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),"m"+(e.cI?"i":"")+(r?"g":""))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(" ").forEach(function(e){var t=e.split("|");u[t[0]]=[n,t[1]?Number(t[1]):1]})};"string"==typeof a.k?c("keyword",a.k):Object.keys(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\b\w+\b/,!0),i&&(a.bK&&(a.b="\\b("+a.bK.split(" ").join("|")+")\\b"),a.b||(a.b=/\B|\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\B|\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||"",a.eW&&i.tE&&(a.tE+=(a.e?"|":"")+i.tE)),a.i&&(a.iR=t(a.i)),void 0===a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(o(e,n))}):s.push("self"==e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var l=a.c.map(function(e){return e.bK?"\\.?("+e.b+")\\.?":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=l.length?t(l.join("|"),!0):{exec:function(){return null}}}}r(e)}function l(e,t,a,i){function o(e,n){for(var t=0;t<n.c.length;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function c(e,n){return!a&&r(n.iR,e)}function g(e,n){var t=N.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function h(e,n,t,r){var a=r?"":E.classPrefix,i='<span class="'+a,o=t?"":"</span>";return i+=e+'">',i+n+o}function p(){if(!L.k)return n(M);var e="",t=0;L.lR.lastIndex=0;for(var r=L.lR.exec(M);r;){e+=n(M.substr(t,r.index-t));var a=g(L,r);a?(B+=a[1],e+=h(a[0],n(r[0]))):e+=n(r[0]),t=L.lR.lastIndex,r=L.lR.exec(M)}return e+n(M.substr(t))}function d(){var e="string"==typeof L.sL;if(e&&!x[L.sL])return n(M);var t=e?l(L.sL,M,!0,y[L.sL]):f(M,L.sL.length?L.sL:void 0);return L.r>0&&(B+=t.r),e&&(y[L.sL]=t.top),h(t.language,t.value,!1,!0)}function b(){return void 0!==L.sL?d():p()}function v(e,t){var r=e.cN?h(e.cN,"",!0):"";e.rB?(k+=r,M=""):e.eB?(k+=n(t)+r,M=""):(k+=r,M=t),L=Object.create(e,{parent:{value:L}})}function m(e,t){if(M+=e,void 0===t)return k+=b(),0;var r=o(t,L);if(r)return k+=b(),v(r,t),r.rB?0:t.length;var a=u(L,t);if(a){var i=L;i.rE||i.eE||(M+=t),k+=b();do L.cN&&(k+="</span>"),B+=L.r,L=L.parent;while(L!=a.parent);return i.eE&&(k+=n(t)),M="",a.starts&&v(a.starts,""),i.rE?0:t.length}if(c(t,L))throw new Error('Illegal lexeme "'+t+'" for mode "'+(L.cN||"<unnamed>")+'"');return M+=t,t.length||1}var N=w(e);if(!N)throw new Error('Unknown language: "'+e+'"');s(N);var R,L=i||N,y={},k="";for(R=L;R!=N;R=R.parent)R.cN&&(k=h(R.cN,"",!0)+k);var M="",B=0;try{for(var C,j,I=0;;){if(L.t.lastIndex=I,C=L.t.exec(t),!C)break;j=m(t.substr(I,C.index-I),C[0]),I=C.index+j}for(m(t.substr(I)),R=L;R.parent;R=R.parent)R.cN&&(k+="</span>");return{r:B,value:k,language:e,top:L}}catch(O){if(-1!=O.message.indexOf("Illegal"))return{r:0,value:n(t)};throw O}}function f(e,t){t=t||E.languages||Object.keys(x);var r={r:0,value:n(e)},a=r;return t.forEach(function(n){if(w(n)){var t=l(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}}),a.language&&(r.second_best=a),r}function g(e){return E.tabReplace&&(e=e.replace(/^((<[^>]+>|\t)+)/gm,function(e,n){return n.replace(/\t/g,E.tabReplace)})),E.useBR&&(e=e.replace(/\n/g,"<br>")),e}function h(e,n,t){var r=n?R[n]:t,a=[e.trim()];return e.match(/\bhljs\b/)||a.push("hljs"),-1===e.indexOf(r)&&a.push(r),a.join(" ").trim()}function p(e){var n=i(e);if(!a(n)){var t;E.useBR?(t=document.createElementNS("http://www.w3.org/1999/xhtml","div"),t.innerHTML=e.innerHTML.replace(/\n/g,"").replace(/<br[ \/]*>/g,"\n")):t=e;var r=t.textContent,o=n?l(n,r,!0):f(r),s=u(t);if(s.length){var p=document.createElementNS("http://www.w3.org/1999/xhtml","div");p.innerHTML=o.value,o.value=c(s,u(p),r)}o.value=g(o.value),e.innerHTML=o.value,e.className=h(e.className,n,o.language),e.result={language:o.language,re:o.r},o.second_best&&(e.second_best={language:o.second_best.language,re:o.second_best.r})}}function d(e){E=o(E,e)}function b(){if(!b.called){b.called=!0;var e=document.querySelectorAll("pre code");Array.prototype.forEach.call(e,p)}}function v(){addEventListener("DOMContentLoaded",b,!1),addEventListener("load",b,!1)}function m(n,t){var r=x[n]=t(e);r.aliases&&r.aliases.forEach(function(e){R[e]=n})}function N(){return Object.keys(x)}function w(e){return e=(e||"").toLowerCase(),x[e]||x[R[e]]}var E={classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:void 0},x={},R={};return e.highlight=l,e.highlightAuto=f,e.fixMarkup=g,e.highlightBlock=p,e.configure=d,e.initHighlighting=b,e.initHighlightingOnLoad=v,e.registerLanguage=m,e.listLanguages=N,e.getLanguage=w,e.inherit=o,e.IR="[a-zA-Z]\\w*",e.UIR="[a-zA-Z_]\\w*",e.NR="\\b\\d+(\\.\\d+)?",e.CNR="(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",e.BNR="\\b(0b[01]+)",e.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",e.BE={b:"\\\\[\\s\\S]",r:0},e.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[e.BE]},e.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[e.BE]},e.PWM={b:/\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|like)\b/},e.C=function(n,t,r){var a=e.inherit({cN:"comment",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:"doctag",b:"(?:TODO|FIXME|NOTE|BUG|XXX):",r:0}),a},e.CLCM=e.C("//","$"),e.CBCM=e.C("/\\*","\\*/"),e.HCM=e.C("#","$"),e.NM={cN:"number",b:e.NR,r:0},e.CNM={cN:"number",b:e.CNR,r:0},e.BNM={cN:"number",b:e.BNR,r:0},e.CSSNM={cN:"number",b:e.NR+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",r:0},e.RM={cN:"regexp",b:/\//,e:/\/[gimuy]*/,i:/\n/,c:[e.BE,{b:/\[/,e:/\]/,r:0,c:[e.BE]}]},e.TM={cN:"title",b:e.IR,r:0},e.UTM={cN:"title",b:e.UIR,r:0},e});hljs.registerLanguage("cs",function(e){var r="abstract as base bool break byte case catch char checked const continue decimal dynamic default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long null when object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async protected public private internal ascending descending from get group into join let orderby partial select set value var where yield",t=e.IR+"(<"+e.IR+">)?";return{aliases:["csharp"],k:r,i:/::/,c:[e.C("///","$",{rB:!0,c:[{cN:"xmlDocTag",v:[{b:"///",r:0},{b:"<!--|-->"},{b:"</?",e:">"}]}]}),e.CLCM,e.CBCM,{cN:"preprocessor",b:"#",e:"$",k:"if else elif endif define undef warning error line region endregion pragma checksum"},{cN:"string",b:'@"',e:'"',c:[{b:'""'}]},e.ASM,e.QSM,e.CNM,{bK:"class interface",e:/[{;=]/,i:/[^\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:"namespace",e:/[{;=]/,i:/[^\s:]/,c:[{cN:"title",b:"[a-zA-Z](\\.?\\w)*",r:0},e.CLCM,e.CBCM]},{bK:"new return throw await",r:0},{cN:"function",b:"("+t+"\\s+)+"+e.IR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.IR+"\\s*\\(",rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage("tp",function(O){var R={cN:"number",b:"[1-9][0-9]*",r:0},E={cN:"comment",b:":[^\\]]+"},T={cN:"built_in",b:"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER| TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\[",e:"\\]",c:["self",R,E]},N={cN:"built_in",b:"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\[",e:"\\]",c:["self",R,O.QSM,E]};return{k:{keyword:"ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET",constant:"ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET"},c:[T,N,{cN:"keyword",b:"/(PROG|ATTR|MN|POS|END)\\b"},{cN:"keyword",b:"(CALL|RUN|POINT_LOGIC|LBL)\\b"},{cN:"keyword",b:"\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)"},{cN:"number",b:"\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\b",r:0},O.C("//","[;$]"),O.C("!","[;$]"),O.C("--eg:","$"),O.QSM,{cN:"string",b:"'",e:"'"},O.CNM,{cN:"variable",b:"\\$[A-Za-z0-9_]+"}]}});hljs.registerLanguage("irpf90",function(e){var t={cN:"params",b:"\\(",e:"\\)"},n={constant:".False. .True.",type:"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data",keyword:"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure begin_provider &begin_provider end_provider begin_shell end_shell begin_template end_template subst assert touch soft_touch provide no_dep free irp_if irp_else irp_endif irp_write irp_read",built_in:"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image IRP_ALIGN irp_here"};return{cI:!0,k:n,i:/\/\*/,c:[e.inherit(e.ASM,{cN:"string",r:0}),e.inherit(e.QSM,{cN:"string",r:0}),{cN:"function",bK:"subroutine function program",i:"[${=\\n]",c:[e.UTM,t]},e.C("!","$",{r:0}),e.C("begin_doc","end_doc",{r:10}),{cN:"number",b:"(?=\\b|\\+|\\-|\\.)(?=\\.\\d|\\d)(?:\\d+)?(?:\\.?\\d*)(?:[de][+-]?\\d+)?\\b\\.?",r:0}]}});hljs.registerLanguage("groovy",function(e){return{k:{typename:"byte short char int long boolean float double void",literal:"true false null",keyword:"def as in assert trait super this abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof"},c:[e.C("/\\*\\*","\\*/",{r:0,c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,{cN:"string",b:'"""',e:'"""'},{cN:"string",b:"'''",e:"'''"},{cN:"string",b:"\\$/",e:"/\\$",r:10},e.ASM,{cN:"regexp",b:/~?\/[^\/\n]+\//,c:[e.BE]},e.QSM,{cN:"shebang",b:"^#!/usr/bin/env",e:"$",i:"\n"},e.BNM,{cN:"class",bK:"class interface trait enum",e:"{",i:":",c:[{bK:"extends implements"},e.UTM]},e.CNM,{cN:"annotation",b:"@[A-Za-z]+"},{cN:"string",b:/[^\?]{0}[A-Za-z0-9_$]+ *:/},{b:/\?/,e:/\:/},{cN:"label",b:"^\\s*[A-Za-z0-9_$]+:",r:0}],i:/#/}});hljs.registerLanguage("stata",function(e){return{aliases:["do","ado"],cI:!0,k:"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate g gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l la lab labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize meqparse mer merg merge mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5",c:[{cN:"label",v:[{b:"\\$\\{?[a-zA-Z0-9_]+\\}?"},{b:"`[a-zA-Z0-9_]+'"}]},{cN:"string",v:[{b:'`"[^\r\n]*?"\''},{b:'"[^\r\n"]*"'}]},{cN:"literal",v:[{b:"\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\(|$)"}]},e.C("^[ ]*\\*.*$",!1),e.CLCM,e.CBCM]}});hljs.registerLanguage("bash",function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},s={cN:"string",b:/"/,e:/"/,c:[e.BE,t,{cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]}]},a={cN:"string",b:/'/,e:/'/};return{aliases:["sh","zsh"],l:/-?[a-z\.]+/,k:{keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",operator:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"shebang",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:!0,c:[e.inherit(e.TM,{b:/\w[\w\d_]*/})],r:0},e.HCM,e.NM,s,a,t]}});hljs.registerLanguage("handlebars",function(e){var a="each in with if else unless bindattr action collection debugger log outlet template unbound view yield";return{aliases:["hbs","html.hbs","html.handlebars"],cI:!0,sL:"xml",c:[{cN:"expression",b:"{{",e:"}}",c:[{cN:"begin-block",b:"#[a-zA-Z- .]+",k:a},{cN:"string",b:'"',e:'"'},{cN:"end-block",b:"\\/[a-zA-Z- .]+",k:a},{cN:"variable",b:"[a-zA-Z-.]+",k:a}]}]}});hljs.registerLanguage("elm",function(e){var c=[e.C("--","$"),e.C("{-","-}",{c:["self"]})],i={cN:"type",b:"\\b[A-Z][\\w']*",r:0},n={cN:"container",b:"\\(",e:"\\)",i:'"',c:[{cN:"type",b:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"}].concat(c)},t={cN:"container",b:"{",e:"}",c:n.c};return{k:"let in if then else case of where module import exposing type alias as infix infixl infixr port",c:[{cN:"module",b:"\\bmodule\\b",e:"where",k:"module where",c:[n].concat(c),i:"\\W\\.|;"},{cN:"import",b:"\\bimport\\b",e:"$",k:"import|0 as exposing",c:[n].concat(c),i:"\\W\\.|;"},{cN:"typedef",b:"\\btype\\b",e:"$",k:"type alias",c:[i,n,t].concat(c)},{cN:"infix",bK:"infix infixl infixr",e:"$",c:[e.CNM].concat(c)},{cN:"foreign",b:"\\bport\\b",e:"$",k:"port",c:c},e.QSM,e.CNM,i,e.inherit(e.TM,{b:"^[_a-z][\\w']*"}),{b:"->|<-"}].concat(c)}});hljs.registerLanguage("javascript",function(e){return{aliases:["js"],k:{keyword:"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise"},c:[{cN:"pi",r:10,b:/^\s*['"]use (strict|asm)['"]/},e.ASM,e.QSM,{cN:"string",b:"`",e:"`",c:[e.BE,{cN:"subst",b:"\\$\\{",e:"\\}"}]},e.CLCM,e.CBCM,{cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{b:/</,e:/>\s*[);\]]/,r:0,sL:"xml"}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:[e.CLCM,e.CBCM]}],i:/\[|%/},{b:/\$[(.]/},{b:"\\."+e.IR,r:0},{bK:"import",e:"[;$]",k:"import from as",c:[e.ASM,e.QSM]},{cN:"class",bK:"class",e:/[{;=]/,eE:!0,i:/[:"\[\]]/,c:[{bK:"extends"},e.UTM]}],i:/#/}});hljs.registerLanguage("apache",function(e){var r={cN:"number",b:"[\\$%]\\d+"};return{aliases:["apacheconf"],cI:!0,c:[e.HCM,{cN:"tag",b:"</?",e:">"},{cN:"keyword",b:/\w+/,r:0,k:{common:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"sqbracket",b:"\\s\\[",e:"\\]$"},{cN:"cbracket",b:"[\\$%]\\{",e:"\\}",c:["self",r]},r,e.QSM]}}],i:/\S/}});hljs.registerLanguage("vhdl",function(e){var t="\\d(_|\\d)*",r="[eE][-+]?"+t,n=t+"(\\."+t+")?("+r+")?",o="\\w+",i=t+"#"+o+"(\\."+o+")?#("+r+")?",a="\\b("+i+"|"+n+")";return{cI:!0,k:{keyword:"abs access after alias all and architecture array assert attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable vmode vprop vunit wait when while with xnor xor",typename:"boolean bit character severity_level integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_ulogic std_ulogic_vector std_logic std_logic_vector unsigned signed boolean_vector integer_vector real_vector time_vector"},i:"{",c:[e.CBCM,e.C("--","$"),e.QSM,{cN:"number",b:a,r:0},{cN:"literal",b:"'(U|X|0|1|Z|W|L|H|-)'",c:[e.BE]},{cN:"attribute",b:"'[A-Za-z](_?[A-Za-z0-9])*",c:[e.BE]}]}});hljs.registerLanguage("typescript",function(e){var r={keyword:"in if for while finally var new function|0 do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private protected get set super static implements enum export import declare type namespace abstract",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void"};return{aliases:["ts"],k:r,c:[{cN:"pi",b:/^\s*['"]use strict['"]/,r:0},e.ASM,e.QSM,e.CLCM,e.CBCM,{cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM],r:0},{cN:"function",b:"function",e:/[\{;]/,eE:!0,k:r,c:["self",e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,c:[e.CLCM,e.CBCM],i:/["'\(]/}],i:/\[|%/,r:0},{cN:"constructor",bK:"constructor",e:/\{/,eE:!0,r:10},{cN:"module",bK:"module",e:/\{/,eE:!0},{cN:"interface",bK:"interface",e:/\{/,eE:!0,k:"interface extends"},{b:/\$[(.]/},{b:"\\."+e.IR,r:0}]}});hljs.registerLanguage("x86asm",function(s){return{cI:!0,l:"\\.?"+s.IR,k:{keyword:"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63",literal:"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7 xmm8 xmm9 xmm10 xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0 ymm1 ymm2 ymm3 ymm4 ymm5 ymm6 ymm7 ymm8 ymm9 ymm10 ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0 zmm1 zmm2 zmm3 zmm4 zmm5 zmm6 zmm7 zmm8 zmm9 zmm10 zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l",pseudo:"db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times",preprocessor:"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr __FILE__ __LINE__ __SECT__ __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__ __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public ",built_in:"bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__"},c:[s.C(";","$",{r:0}),{cN:"number",v:[{b:"\\b(?:([0-9][0-9_]*)?\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\b",r:0},{b:"\\$[0-9][0-9A-Fa-f]*",r:0},{b:"\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\b"},{b:"\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\b"}]},s.QSM,{cN:"string",v:[{b:"'",e:"[^\\\\]'"},{b:"`",e:"[^\\\\]`"},{b:"\\.[A-Za-z0-9]+"}],r:0},{cN:"label",v:[{b:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)"},{b:"^\\s*%%[A-Za-z0-9_$#@~.?]*:"}],r:0},{cN:"argument",b:"%[0-9]+",r:0},{cN:"built_in",b:"%!S+",r:0}]}});hljs.registerLanguage("makefile",function(e){var a={cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]};return{aliases:["mk","mak"],c:[e.HCM,{b:/^\w+\s*\W*=/,rB:!0,r:0,starts:{cN:"constant",e:/\s*\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:"title",b:/^[\w]+:\s*$/},{cN:"phony",b:/^\.PHONY:/,e:/$/,k:".PHONY",l:/[\.\w]+/},{b:/^\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage("delphi",function(e){var r="exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure",t=[e.CLCM,e.C(/\{/,/\}/,{r:0}),e.C(/\(\*/,/\*\)/,{r:10})],i={cN:"string",b:/'/,e:/'/,c:[{b:/''/}]},c={cN:"string",b:/(#\d+)+/},o={b:e.IR+"\\s*=\\s*class\\s*\\(",rB:!0,c:[e.TM]},n={cN:"function",bK:"function constructor destructor procedure",e:/[:;]/,k:"function constructor|10 destructor|10 procedure|10",c:[e.TM,{cN:"params",b:/\(/,e:/\)/,k:r,c:[i,c]}].concat(t)};return{cI:!0,k:r,i:/"|\$[G-Zg-z]|\/\*|<\/|\|/,c:[i,c,e.NM,o,n].concat(t)}});hljs.registerLanguage("erb",function(e){return{sL:"xml",c:[e.C("<%#","%>"),{b:"<%[%=-]?",e:"[%-]?%>",sL:"ruby",eB:!0,eE:!0}]}});hljs.registerLanguage("objectivec",function(e){var t={cN:"built_in",b:"(AV|CA|CF|CG|CI|MK|MP|NS|UI)\\w+"},i={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},o=/[a-zA-Z@][a-zA-Z0-9_]*/,n="@interface @class @protocol @implementation";return{aliases:["mm","objc","obj-c"],k:i,l:o,i:"</",c:[t,e.CLCM,e.CBCM,e.CNM,e.QSM,{cN:"string",v:[{b:'@"',e:'"',i:"\\n",c:[e.BE]},{b:"'",e:"[^\\\\]'",i:"[^\\\\][^']"}]},{cN:"preprocessor",b:"#",e:"$",c:[{cN:"title",v:[{b:'"',e:'"'},{b:"<",e:">"}]}]},{cN:"class",b:"("+n.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:n,l:o,c:[e.UTM]},{cN:"variable",b:"\\."+e.UIR,r:0}]}});hljs.registerLanguage("fortran",function(e){var t={cN:"params",b:"\\(",e:"\\)"},n={constant:".False. .True.",type:"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data",keyword:"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure",built_in:"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image"};return{cI:!0,aliases:["f90","f95"],k:n,i:/\/\*/,c:[e.inherit(e.ASM,{cN:"string",r:0}),e.inherit(e.QSM,{cN:"string",r:0}),{cN:"function",bK:"subroutine function program",i:"[${=\\n]",c:[e.UTM,t]},e.C("!","$",{r:0}),{cN:"number",b:"(?=\\b|\\+|\\-|\\.)(?=\\.\\d|\\d)(?:\\d+)?(?:\\.?\\d*)(?:[de][+-]?\\d+)?\\b\\.?",r:0}]}});hljs.registerLanguage("swift",function(e){var i={keyword:"__COLUMN__ __FILE__ __FUNCTION__ __LINE__ as as! as? associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet",literal:"true false nil",built_in:"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip"},t={cN:"type",b:"\\b[A-Z][\\w']*",r:0},n=e.C("/\\*","\\*/",{c:["self"]}),r={cN:"subst",b:/\\\(/,e:"\\)",k:i,c:[]},a={cN:"number",b:"\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b",r:0},o=e.inherit(e.QSM,{c:[r,e.BE]});return r.c=[a],{k:i,c:[o,e.CLCM,n,t,a,{cN:"func",bK:"func",e:"{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/,i:/\(/}),{cN:"generics",b:/</,e:/>/,i:/>/},{cN:"params",b:/\(/,e:/\)/,endsParent:!0,k:i,c:["self",a,o,e.CBCM,{b:":"}],i:/["']/}],i:/\[|%/},{cN:"class",bK:"struct protocol class extension enum",k:i,e:"\\{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/})]},{cN:"preprocessor",b:"(@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain)"},{bK:"import",e:/$/,c:[e.CLCM,n]}]}});hljs.registerLanguage("coffeescript",function(e){var c={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not",literal:"true false null undefined yes no on off",built_in:"npm require console print module global window document"},n="[A-Za-z$_][0-9A-Za-z$_]*",r={cN:"subst",b:/#\{/,e:/}/,k:c},t=[e.BNM,e.inherit(e.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,r]},{b:/"/,e:/"/,c:[e.BE,r]}]},{cN:"regexp",v:[{b:"///",e:"///",c:[r,e.HCM]},{b:"//[gim]*",r:0},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{cN:"property",b:"@"+n},{b:"`",e:"`",eB:!0,eE:!0,sL:"javascript"}];r.c=t;var s=e.inherit(e.TM,{b:n}),i="(\\(.*\\))?\\s*\\B[-=]>",o={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:c,c:["self"].concat(t)}]};return{aliases:["coffee","cson","iced"],k:c,i:/\/\*/,c:t.concat([e.C("###","###"),e.HCM,{cN:"function",b:"^\\s*"+n+"\\s*=\\s*"+i,e:"[-=]>",rB:!0,c:[s,o]},{b:/[:\(,=]\s*/,r:0,c:[{cN:"function",b:i,e:"[-=]>",rB:!0,c:[o]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[s]},s]},{cN:"attribute",b:n+":",e:":",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage("puppet",function(e){var s={keyword:"and case default else elsif false if in import enherits node or true undef unless main settings $string ",literal:"alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted",built_in:"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version"},r=e.C("#","$"),a="([A-Za-z_]|::)(\\w|::)*",i=e.inherit(e.TM,{b:a}),o={cN:"variable",b:"\\$"+a},t={cN:"string",c:[e.BE,o],v:[{b:/'/,e:/'/},{b:/"/,e:/"/}]};return{aliases:["pp"],c:[r,o,t,{bK:"class",e:"\\{|;",i:/=/,c:[i,r]},{bK:"define",e:/\{/,c:[{cN:"title",b:e.IR,endsParent:!0}]},{b:e.IR+"\\s+\\{",rB:!0,e:/\S/,c:[{cN:"name",b:e.IR},{b:/\{/,e:/\}/,k:s,r:0,c:[t,r,{b:"[a-zA-Z_]+\\s*=>"},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},o]}],r:0}]}});hljs.registerLanguage("tex",function(c){var e={cN:"command",b:"\\\\[a-zA-Zа-яА-я]+[\\*]?"},m={cN:"command",b:"\\\\[^a-zA-Zа-яА-я0-9]"},r={cN:"special",b:"[{}\\[\\]\\&#~]",r:0};return{c:[{b:"\\\\[a-zA-Zа-яА-я]+[\\*]? *= *-?\\d*\\.?\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?",rB:!0,c:[e,m,{cN:"number",b:" *=",e:"-?\\d*\\.?\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?",eB:!0}],r:10},e,m,r,{cN:"formula",b:"\\$\\$",e:"\\$\\$",c:[e,m,r],r:0},{cN:"formula",b:"\\$",e:"\\$",c:[e,m,r],r:0},c.C("%","$",{r:0})]}});hljs.registerLanguage("glsl",function(e){return{k:{keyword:"atomic_uint attribute bool break bvec2 bvec3 bvec4 case centroid coherent const continue default discard dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 do double dvec2 dvec3 dvec4 else flat float for highp if iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBuffer iimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray in inout int invariant isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 layout lowp mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 mediump noperspective out patch precision readonly restrict return sample sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow smooth struct subroutine switch uimage1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint uniform usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D usamplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 varying vec2 vec3 vec4 void volatile while writeonly",built_in:"gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffsetgl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_PerVertex gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicCounter atomicCounterDecrement atomicCounterIncrement barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow gl_TextureMatrix gl_TextureMatrixInverse",literal:"true false"},i:'"',c:[e.CLCM,e.CBCM,e.CNM,{cN:"preprocessor",b:"#",e:"$"}]}});hljs.registerLanguage("1c",function(c){var e="[a-zA-Zа-яА-Я][a-zA-Z0-9_а-яА-Я]*",r="возврат дата для если и или иначе иначеесли исключение конецесли конецпопытки конецпроцедуры конецфункции конеццикла константа не перейти перем перечисление по пока попытка прервать продолжить процедура строка тогда фс функция цикл число экспорт",t="ansitooem oemtoansi ввестивидсубконто ввестидату ввестизначение ввестиперечисление ввестипериод ввестиплансчетов ввестистроку ввестичисло вопрос восстановитьзначение врег выбранныйплансчетов вызватьисключение датагод датамесяц датачисло добавитьмесяц завершитьработусистемы заголовоксистемы записьжурналарегистрации запуститьприложение зафиксироватьтранзакцию значениевстроку значениевстрокувнутр значениевфайл значениеизстроки значениеизстрокивнутр значениеизфайла имякомпьютера имяпользователя каталогвременныхфайлов каталогиб каталогпользователя каталогпрограммы кодсимв командасистемы конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лев лог лог10 макс максимальноеколичествосубконто мин монопольныйрежим названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найти найтипомеченныенаудаление найтиссылки началопериодаби началостандартногоинтервала начатьтранзакцию начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода нрег обработкаожидания окр описаниеошибки основнойжурналрасчетов основнойплансчетов основнойязык открытьформу открытьформумодально отменитьтранзакцию очиститьокносообщений периодстр полноеимяпользователя получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта прав праводоступа предупреждение префиксавтонумерации пустаястрока пустоезначение рабочаядаттьпустоезначение рабочаядата разделительстраниц разделительстрок разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо сигнал симв символтабуляции создатьобъект сокрл сокрлп сокрп сообщить состояние сохранитьзначение сред статусвозврата стрдлина стрзаменить стрколичествострок стрполучитьстроку стрчисловхождений сформироватьпозициюдокумента счетпокоду текущаядата текущеевремя типзначения типзначениястр удалитьобъекты установитьтана установитьтапо фиксшаблон формат цел шаблон",i={cN:"dquote",b:'""'},n={cN:"string",b:'"',e:'"|$',c:[i]},a={cN:"string",b:"\\|",e:'"|$',c:[i]};return{cI:!0,l:e,k:{keyword:r,built_in:t},c:[c.CLCM,c.NM,n,a,{cN:"function",b:"(процедура|функция)",e:"$",l:e,k:"процедура функция",c:[c.inherit(c.TM,{b:e}),{cN:"tail",eW:!0,c:[{cN:"params",b:"\\(",e:"\\)",l:e,k:"знач",c:[n,a]},{cN:"export",b:"экспорт",eW:!0,l:e,k:"экспорт",c:[c.CLCM]}]},c.CLCM]},{cN:"preprocessor",b:"#",e:"$"},{cN:"date",b:"'\\d{2}\\.\\d{2}\\.(\\d{2}|\\d{4})'"}]}});hljs.registerLanguage("nsis",function(e){var t={cN:"symbol",b:"\\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)"},n={cN:"constant",b:"\\$+{[a-zA-Z0-9_]+}"},i={cN:"variable",b:"\\$+[a-zA-Z0-9_]+",i:"\\(\\){}"},r={cN:"constant",b:"\\$+\\([a-zA-Z0-9_]+\\)"},o={cN:"params",b:"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)"},l={cN:"constant",b:"\\!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversionsystem|ifdef|ifmacrodef|ifmacrondef|ifndef|if|include|insertmacro|macroend|macro|makensis|packhdr|searchparse|searchreplace|tempfile|undef|verbose|warning)"};return{cI:!1,k:{keyword:"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileSeek FileWrite FileWriteByte FileWriteUTF16LE FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI FunctionEnd GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText IntCmp IntCmpU IntFmt IntOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PageExEnd Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionEnd SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionGroupEnd SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetPluginUnload SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption SubSectionEnd Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegStr WriteUninstaller XPStyle",literal:"admin all auto both colored current false force hide highest lastused leave listonly none normal notset off on open print show silent silentlog smooth textonly true user "},c:[e.HCM,e.CBCM,{cN:"string",b:'"',e:'"',i:"\\n",c:[{cN:"symbol",b:"\\$(\\\\(n|r|t)|\\$)"},t,n,i,r]},e.C(";","$",{r:0}),{cN:"function",bK:"Function PageEx Section SectionGroup SubSection",e:"$"},l,n,i,r,o,e.NM,{cN:"literal",b:e.IR+"::"+e.IR}]}});hljs.registerLanguage("axapta",function(e){return{k:"false int abstract private char boolean static null if for true while long throw finally protected final return void enum else break new catch byte super case short default double public try this switch continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count order group by asc desc index hint like dispaly edit client server ttsbegin ttscommit str real date container anytype common div mod",c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM,{cN:"preprocessor",b:"#",e:"$"},{cN:"class",bK:"class interface",e:"{",eE:!0,i:":",c:[{bK:"extends implements"},e.UTM]}]}});hljs.registerLanguage("php",function(e){var c={cN:"variable",b:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},a={cN:"preprocessor",b:/<\?(php)?|\?>/},i={cN:"string",c:[e.BE,a],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},t={v:[e.BNM,e.CNM]};return{aliases:["php3","php4","php5","php6"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.CLCM,e.HCM,e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"},a]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:/<<<['"]?\w+['"]?$/,e:/^\w+;?$/,c:[e.BE,{cN:"subst",v:[{b:/\$\w+/},{b:/\{\$/,e:/\}/}]}]},a,c,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",c,e.CBCM,i,t]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},i,t]}});hljs.registerLanguage("go",function(e){var t={keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer",constant:"true false iota nil",typename:"bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune",built_in:"append cap close complex copy imag len make new panic print println real recover delete"};return{aliases:["golang"],k:t,i:"</",c:[e.CLCM,e.CBCM,e.QSM,{cN:"string",b:"'",e:"[^\\\\]'"},{cN:"string",b:"`",e:"`"},{cN:"number",b:e.CNR+"[dflsi]?",r:0},e.CNM]}});hljs.registerLanguage("dust",function(e){var t="if eq ne lt lte gt gte select default math sep";return{aliases:["dst"],cI:!0,sL:"xml",c:[{cN:"expression",b:"{",e:"}",r:0,c:[{cN:"begin-block",b:"#[a-zA-Z- .]+",k:t},{cN:"string",b:'"',e:'"'},{cN:"end-block",b:"\\/[a-zA-Z- .]+",k:t},{cN:"variable",b:"[a-zA-Z-.]+",k:t,r:0}]}]}});hljs.registerLanguage("diff",function(e){return{aliases:["patch"],c:[{cN:"chunk",r:10,v:[{b:/^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},{b:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{b:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{cN:"header",v:[{b:/Index: /,e:/$/},{b:/=====/,e:/=====$/},{b:/^\-\-\-/,e:/$/},{b:/^\*{3} /,e:/$/},{b:/^\+\+\+/,e:/$/},{b:/\*{5}/,e:/\*{5}$/}]},{cN:"addition",b:"^\\+",e:"$"},{cN:"deletion",b:"^\\-",e:"$"},{cN:"change",b:"^\\!",e:"$"}]}});hljs.registerLanguage("haskell",function(e){var c=[e.C("--","$"),e.C("{-","-}",{c:["self"]})],a={cN:"pragma",b:"{-#",e:"#-}"},i={cN:"preprocessor",b:"^#",e:"$"},n={cN:"type",b:"\\b[A-Z][\\w']*",r:0},t={cN:"container",b:"\\(",e:"\\)",i:'"',c:[a,i,{cN:"type",b:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"},e.inherit(e.TM,{b:"[_a-z][\\w']*"})].concat(c)},l={cN:"container",b:"{",e:"}",c:t.c};return{aliases:["hs"],k:"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec",c:[{cN:"module",b:"\\bmodule\\b",e:"where",k:"module where",c:[t].concat(c),i:"\\W\\.|;"},{cN:"import",b:"\\bimport\\b",e:"$",k:"import|0 qualified as hiding",c:[t].concat(c),i:"\\W\\.|;"},{cN:"class",b:"^(\\s*)?(class|instance)\\b",e:"where",k:"class family instance where",c:[n,t].concat(c)},{cN:"typedef",b:"\\b(data|(new)?type)\\b",e:"$",k:"data family type newtype deriving",c:[a,n,t,l].concat(c)},{cN:"default",bK:"default",e:"$",c:[n,t].concat(c)},{cN:"infix",bK:"infix infixl infixr",e:"$",c:[e.CNM].concat(c)},{cN:"foreign",b:"\\bforeign\\b",e:"$",k:"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe",c:[n,e.QSM].concat(c)},{cN:"shebang",b:"#!\\/usr\\/bin\\/env runhaskell",e:"$"},a,i,e.QSM,e.CNM,n,e.inherit(e.TM,{b:"^[_a-z][\\w']*"}),{b:"->|<-"}].concat(c)}});hljs.registerLanguage("erlang-repl",function(r){return{k:{special_functions:"spawn spawn_link self",reserved:"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor"},c:[{cN:"prompt",b:"^[0-9]+> ",r:10},r.C("%","$"),{cN:"number",b:"\\b(\\d+#[a-fA-F0-9]+|\\d+(\\.\\d+)?([eE][-+]?\\d+)?)",r:0},r.ASM,r.QSM,{cN:"constant",b:"\\?(::)?([A-Z]\\w*(::)?)+"},{cN:"arrow",b:"->"},{cN:"ok",b:"ok"},{cN:"exclamation_mark",b:"!"},{cN:"function_or_atom",b:"(\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\b[a-z'][a-zA-Z0-9_']*)",r:0},{cN:"variable",b:"[A-Z][a-zA-Z0-9_']*",r:0}]}});hljs.registerLanguage("haxe",function(e){var r="([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)";return{aliases:["hx"],k:{keyword:"break callback case cast catch class continue default do dynamic else enum extends extern for function here if implements import in inline interface never new override package private public return static super switch this throw trace try typedef untyped using var while",literal:"true false null"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:"class",bK:"class interface",e:"{",eE:!0,c:[{bK:"extends implements"},e.TM]},{cN:"preprocessor",b:"#",e:"$",k:"if else elseif end error"},{cN:"function",bK:"function",e:"[{;]",eE:!0,i:"\\S",c:[e.TM,{cN:"params",b:"\\(",e:"\\)",c:[e.ASM,e.QSM,e.CLCM,e.CBCM]},{cN:"type",b:":",e:r,r:10}]}]}});hljs.registerLanguage("stylus",function(t){var e={cN:"variable",b:"\\$"+t.IR},o={cN:"hexcolor",b:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})",r:10},i=["charset","css","debug","extend","font-face","for","import","include","media","mixin","page","warn","while"],r=["after","before","first-letter","first-line","active","first-child","focus","hover","lang","link","visited"],n=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],a="[\\.\\s\\n\\[\\:,]",l=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-variant-ligatures","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"],d=["\\{","\\}","\\?","(\\bReturn\\b)","(\\bEnd\\b)","(\\bend\\b)",";","#\\s","\\*\\s","===\\s","\\|","%"];return{aliases:["styl"],cI:!1,i:"("+d.join("|")+")",k:"if else for in",c:[t.QSM,t.ASM,t.CLCM,t.CBCM,o,{b:"\\.[a-zA-Z][a-zA-Z0-9_-]*"+a,rB:!0,c:[{cN:"class",b:"\\.[a-zA-Z][a-zA-Z0-9_-]*"}]},{b:"\\#[a-zA-Z][a-zA-Z0-9_-]*"+a,rB:!0,c:[{cN:"id",b:"\\#[a-zA-Z][a-zA-Z0-9_-]*"}]},{b:"\\b("+n.join("|")+")"+a,rB:!0,c:[{cN:"tag",b:"\\b[a-zA-Z][a-zA-Z0-9_-]*"}]},{cN:"pseudo",b:"&?:?:\\b("+r.join("|")+")"+a},{cN:"at_rule",b:"@("+i.join("|")+")\\b"},e,t.CSSNM,t.NM,{cN:"function",b:"\\b[a-zA-Z][a-zA-Z0-9_-]*\\(.*\\)",i:"[\\n]",rB:!0,c:[{cN:"title",b:"\\b[a-zA-Z][a-zA-Z0-9_-]*"},{cN:"params",b:/\(/,e:/\)/,c:[o,e,t.ASM,t.CSSNM,t.NM,t.QSM]}]},{cN:"attribute",b:"\\b("+l.reverse().join("|")+")\\b"}]}});hljs.registerLanguage("inform7",function(e){var r="\\[",o="\\]";return{aliases:["i7"],cI:!0,k:{keyword:"thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule"},c:[{cN:"string",b:'"',e:'"',r:0,c:[{cN:"subst",b:r,e:o}]},{cN:"title",b:/^(Volume|Book|Part|Chapter|Section|Table)\b/,e:"$"},{b:/^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\b/,e:":",c:[{b:"\\b\\(This",e:"\\)"}]},{cN:"comment",b:r,e:o,c:["self"]}]}});hljs.registerLanguage("ini",function(e){var c={cN:"string",c:[e.BE],v:[{b:"'''",e:"'''",r:10},{b:'"""',e:'"""',r:10},{b:'"',e:'"'},{b:"'",e:"'"}]};return{aliases:["toml"],cI:!0,i:/\S/,c:[e.C(";","$"),e.HCM,{cN:"title",b:/^\s*\[+/,e:/\]+/},{cN:"setting",b:/^[a-z0-9\[\]_-]+\s*=\s*/,e:"$",c:[{cN:"value",eW:!0,k:"on off true false yes no",c:[{cN:"variable",v:[{b:/\$[\w\d"][\w\d_]*/},{b:/\$\{(.*?)}/}]},c,{cN:"number",b:/([\+\-]+)?[\d]+_[\d_]+/},e.NM],r:0}]}]}});hljs.registerLanguage("sqf",function(e){var t=["!","-","+","!=","%","&&","*","/","=","==",">",">=","<","<=","or","plus","^",":",">>","abs","accTime","acos","action","actionKeys","actionKeysImages","actionKeysNames","actionKeysNamesArray","actionName","activateAddons","activatedAddons","activateKey","addAction","addBackpack","addBackpackCargo","addBackpackCargoGlobal","addBackpackGlobal","addCamShake","addCuratorAddons","addCuratorCameraArea","addCuratorEditableObjects","addCuratorEditingArea","addCuratorPoints","addEditorObject","addEventHandler","addGoggles","addGroupIcon","addHandgunItem","addHeadgear","addItem","addItemCargo","addItemCargoGlobal","addItemPool","addItemToBackpack","addItemToUniform","addItemToVest","addLiveStats","addMagazine","addMagazine array","addMagazineAmmoCargo","addMagazineCargo","addMagazineCargoGlobal","addMagazineGlobal","addMagazinePool","addMagazines","addMagazineTurret","addMenu","addMenuItem","addMissionEventHandler","addMPEventHandler","addMusicEventHandler","addPrimaryWeaponItem","addPublicVariableEventHandler","addRating","addResources","addScore","addScoreSide","addSecondaryWeaponItem","addSwitchableUnit","addTeamMember","addToRemainsCollector","addUniform","addVehicle","addVest","addWaypoint","addWeapon","addWeaponCargo","addWeaponCargoGlobal","addWeaponGlobal","addWeaponPool","addWeaponTurret","agent","agents","AGLToASL","aimedAtTarget","aimPos","airDensityRTD","airportSide","AISFinishHeal","alive","allControls","allCurators","allDead","allDeadMen","allDisplays","allGroups","allMapMarkers","allMines","allMissionObjects","allow3DMode","allowCrewInImmobile","allowCuratorLogicIgnoreAreas","allowDamage","allowDammage","allowFileOperations","allowFleeing","allowGetIn","allPlayers","allSites","allTurrets","allUnits","allUnitsUAV","allVariables","ammo","and","animate","animateDoor","animationPhase","animationState","append","armoryPoints","arrayIntersect","asin","ASLToAGL","ASLToATL","assert","assignAsCargo","assignAsCargoIndex","assignAsCommander","assignAsDriver","assignAsGunner","assignAsTurret","assignCurator","assignedCargo","assignedCommander","assignedDriver","assignedGunner","assignedItems","assignedTarget","assignedTeam","assignedVehicle","assignedVehicleRole","assignItem","assignTeam","assignToAirport","atan","atan2","atg","ATLToASL","attachedObject","attachedObjects","attachedTo","attachObject","attachTo","attackEnabled","backpack","backpackCargo","backpackContainer","backpackItems","backpackMagazines","backpackSpaceFor","behaviour","benchmark","binocular","blufor","boundingBox","boundingBoxReal","boundingCenter","breakOut","breakTo","briefingName","buildingExit","buildingPos","buttonAction","buttonSetAction","cadetMode","call","callExtension","camCommand","camCommit","camCommitPrepared","camCommitted","camConstuctionSetParams","camCreate","camDestroy","cameraEffect","cameraEffectEnableHUD","cameraInterest","cameraOn","cameraView","campaignConfigFile","camPreload","camPreloaded","camPrepareBank","camPrepareDir","camPrepareDive","camPrepareFocus","camPrepareFov","camPrepareFovRange","camPreparePos","camPrepareRelPos","camPrepareTarget","camSetBank","camSetDir","camSetDive","camSetFocus","camSetFov","camSetFovRange","camSetPos","camSetRelPos","camSetTarget","camTarget","camUseNVG","canAdd","canAddItemToBackpack","canAddItemToUniform","canAddItemToVest","cancelSimpleTaskDestination","canFire","canMove","canSlingLoad","canStand","canUnloadInCombat","captive","captiveNum","case","catch","cbChecked","cbSetChecked","ceil","cheatsEnabled","checkAIFeature","civilian","className","clearAllItemsFromBackpack","clearBackpackCargo","clearBackpackCargoGlobal","clearGroupIcons","clearItemCargo","clearItemCargoGlobal","clearItemPool","clearMagazineCargo","clearMagazineCargoGlobal","clearMagazinePool","clearOverlay","clearRadio","clearWeaponCargo","clearWeaponCargoGlobal","clearWeaponPool","closeDialog","closeDisplay","closeOverlay","collapseObjectTree","combatMode","commandArtilleryFire","commandChat","commander","commandFire","commandFollow","commandFSM","commandGetOut","commandingMenu","commandMove","commandRadio","commandStop","commandTarget","commandWatch","comment","commitOverlay","compile","compileFinal","completedFSM","composeText","configClasses","configFile","configHierarchy","configName","configProperties","configSourceMod","configSourceModList","connectTerminalToUAV","controlNull","controlsGroupCtrl","copyFromClipboard","copyToClipboard","copyWaypoints","cos","count","countEnemy","countFriendly","countSide","countType","countUnknown","createAgent","createCenter","createDialog","createDiaryLink","createDiaryRecord","createDiarySubject","createDisplay","createGearDialog","createGroup","createGuardedPoint","createLocation","createMarker","createMarkerLocal","createMenu","createMine","createMissionDisplay","createSimpleTask","createSite","createSoundSource","createTask","createTeam","createTrigger","createUnit","createUnit array","createVehicle","createVehicle array","createVehicleCrew","createVehicleLocal","crew","ctrlActivate","ctrlAddEventHandler","ctrlAutoScrollDelay","ctrlAutoScrollRewind","ctrlAutoScrollSpeed","ctrlChecked","ctrlClassName","ctrlCommit","ctrlCommitted","ctrlCreate","ctrlDelete","ctrlEnable","ctrlEnabled","ctrlFade","ctrlHTMLLoaded","ctrlIDC","ctrlIDD","ctrlMapAnimAdd","ctrlMapAnimClear","ctrlMapAnimCommit","ctrlMapAnimDone","ctrlMapCursor","ctrlMapMouseOver","ctrlMapScale","ctrlMapScreenToWorld","ctrlMapWorldToScreen","ctrlModel","ctrlModelDirAndUp","ctrlModelScale","ctrlParent","ctrlPosition","ctrlRemoveAllEventHandlers","ctrlRemoveEventHandler","ctrlScale","ctrlSetActiveColor","ctrlSetAutoScrollDelay","ctrlSetAutoScrollRewind","ctrlSetAutoScrollSpeed","ctrlSetBackgroundColor","ctrlSetChecked","ctrlSetEventHandler","ctrlSetFade","ctrlSetFocus","ctrlSetFont","ctrlSetFontH1","ctrlSetFontH1B","ctrlSetFontH2","ctrlSetFontH2B","ctrlSetFontH3","ctrlSetFontH3B","ctrlSetFontH4","ctrlSetFontH4B","ctrlSetFontH5","ctrlSetFontH5B","ctrlSetFontH6","ctrlSetFontH6B","ctrlSetFontHeight","ctrlSetFontHeightH1","ctrlSetFontHeightH2","ctrlSetFontHeightH3","ctrlSetFontHeightH4","ctrlSetFontHeightH5","ctrlSetFontHeightH6","ctrlSetFontP","ctrlSetFontPB","ctrlSetForegroundColor","ctrlSetModel","ctrlSetModelDirAndUp","ctrlSetModelScale","ctrlSetPosition","ctrlSetScale","ctrlSetStructuredText","ctrlSetText","ctrlSetTextColor","ctrlSetTooltip","ctrlSetTooltipColorBox","ctrlSetTooltipColorShade","ctrlSetTooltipColorText","ctrlShow","ctrlShown","ctrlText","ctrlTextHeight","ctrlType","ctrlVisible","curatorAddons","curatorCamera","curatorCameraArea","curatorCameraAreaCeiling","curatorCoef","curatorEditableObjects","curatorEditingArea","curatorEditingAreaType","curatorMouseOver","curatorPoints","curatorRegisteredObjects","curatorSelected","curatorWaypointCost","currentChannel","currentCommand","currentMagazine","currentMagazineDetail","currentMagazineDetailTurret","currentMagazineTurret","currentMuzzle","currentNamespace","currentTask","currentTasks","currentThrowable","currentVisionMode","currentWaypoint","currentWeapon","currentWeaponMode","currentWeaponTurret","currentZeroing","cursorTarget","customChat","customRadio","cutFadeOut","cutObj","cutRsc","cutText","damage","date","dateToNumber","daytime","deActivateKey","debriefingText","debugFSM","debugLog","default","deg","deleteAt","deleteCenter","deleteCollection","deleteEditorObject","deleteGroup","deleteIdentity","deleteLocation","deleteMarker","deleteMarkerLocal","deleteRange","deleteResources","deleteSite","deleteStatus","deleteTeam","deleteVehicle","deleteVehicleCrew","deleteWaypoint","detach","detectedMines","diag activeMissionFSMs","diag activeSQFScripts","diag activeSQSScripts","diag captureFrame","diag captureSlowFrame","diag fps","diag fpsMin","diag frameNo","diag log","diag logSlowFrame","diag tickTime","dialog","diarySubjectExists","didJIP","didJIPOwner","difficulty","difficultyEnabled","difficultyEnabledRTD","direction","directSay","disableAI","disableCollisionWith","disableConversation","disableDebriefingStats","disableSerialization","disableTIEquipment","disableUAVConnectability","disableUserInput","displayAddEventHandler","displayCtrl","displayNull","displayRemoveAllEventHandlers","displayRemoveEventHandler","displaySetEventHandler","dissolveTeam","distance","distance2D","distanceSqr","distributionRegion","do","doArtilleryFire","doFire","doFollow","doFSM","doGetOut","doMove","doorPhase","doStop","doTarget","doWatch","drawArrow","drawEllipse","drawIcon","drawIcon3D","drawLine","drawLine3D","drawLink","drawLocation","drawRectangle","driver","drop","east","echo","editObject","editorSetEventHandler","effectiveCommander","else","emptyPositions","enableAI","enableAIFeature","enableAttack","enableCamShake","enableCaustics","enableCollisionWith","enableCopilot","enableDebriefingStats","enableDiagLegend","enableEndDialog","enableEngineArtillery","enableEnvironment","enableFatigue","enableGunLights","enableIRLasers","enableMimics","enablePersonTurret","enableRadio","enableReload","enableRopeAttach","enableSatNormalOnDetail","enableSaving","enableSentences","enableSimulation","enableSimulationGlobal","enableTeamSwitch","enableUAVConnectability","enableUAVWaypoints","endLoadingScreen","endMission","engineOn","enginesIsOnRTD","enginesRpmRTD","enginesTorqueRTD","entities","estimatedEndServerTime","estimatedTimeLeft","evalObjectArgument","everyBackpack","everyContainer","exec","execEditorScript","execFSM","execVM","exit","exitWith","exp","expectedDestination","eyeDirection","eyePos","face","faction","fadeMusic","fadeRadio","fadeSound","fadeSpeech","failMission","false","fillWeaponsFromPool","find","findCover","findDisplay","findEditorObject","findEmptyPosition","findEmptyPositionReady","findNearestEnemy","finishMissionInit","finite","fire","fireAtTarget","firstBackpack","flag","flagOwner","fleeing","floor","flyInHeight","fog","fogForecast","fogParams","for","forceAddUniform","forceEnd","forceMap","forceRespawn","forceSpeed","forceWalk","forceWeaponFire","forceWeatherChange","forEach","forEachMember","forEachMemberAgent","forEachMemberTeam","format","formation","formationDirection","formationLeader","formationMembers","formationPosition","formationTask","formatText","formLeader","freeLook","from","fromEditor","fuel","fullCrew","gearSlotAmmoCount","gearSlotData","getAllHitPointsDamage","getAmmoCargo","getArray","getArtilleryAmmo","getArtilleryComputerSettings","getArtilleryETA","getAssignedCuratorLogic","getAssignedCuratorUnit","getBackpackCargo","getBleedingRemaining","getBurningValue","getCargoIndex","getCenterOfMass","getClientState","getConnectedUAV","getDammage","getDescription","getDir","getDirVisual","getDLCs","getEditorCamera","getEditorMode","getEditorObjectScope","getElevationOffset","getFatigue","getFriend","getFSMVariable","getFuelCargo","getGroupIcon","getGroupIconParams","getGroupIcons","getHideFrom","getHit","getHitIndex","getHitPointDamage","getItemCargo","getMagazineCargo","getMarkerColor","getMarkerPos","getMarkerSize","getMarkerType","getMass","getModelInfo","getNumber","getObjectArgument","getObjectChildren","getObjectDLC","getObjectMaterials","getObjectProxy","getObjectTextures","getObjectType","getObjectViewDistance","getOxygenRemaining","getPersonUsedDLCs","getPlayerChannel","getPlayerUID","getPos","getPosASL","getPosASLVisual","getPosASLW","getPosATL","getPosATLVisual","getPosVisual","getPosWorld","getRepairCargo","getResolution","getShadowDistance","getSlingLoad","getSpeed","getSuppression","getTerrainHeightASL","getText","getVariable","getWeaponCargo","getWPPos","glanceAt","globalChat","globalRadio","goggles","goto","group","groupChat","groupFromNetId","groupIconSelectable","groupIconsVisible","groupId","groupOwner","groupRadio","groupSelectedUnits","groupSelectUnit","grpNull","gunner","gusts","halt","handgunItems","handgunMagazine","handgunWeapon","handsHit","hasInterface","hasWeapon","hcAllGroups","hcGroupParams","hcLeader","hcRemoveAllGroups","hcRemoveGroup","hcSelected","hcSelectGroup","hcSetGroup","hcShowBar","hcShownBar","headgear","hideBody","hideObject","hideObjectGlobal","hint","hintC","hintCadet","hintSilent","hmd","hostMission","htmlLoad","HUDMovementLevels","humidity","if","image","importAllGroups","importance","in","incapacitatedState","independent","inflame","inflamed","inGameUISetEventHandler","inheritsFrom","initAmbientLife","inputAction","inRangeOfArtillery","insertEditorObject","intersect","isAbleToBreathe","isAgent","isArray","isAutoHoverOn","isAutonomous","isAutotest","isBleeding","isBurning","isClass","isCollisionLightOn","isCopilotEnabled","isDedicated","isDLCAvailable","isEngineOn","isEqualTo","isFlashlightOn","isFlatEmpty","isForcedWalk","isFormationLeader","isHidden","isInRemainsCollector","isInstructorFigureEnabled","isIRLaserOn","isKeyActive","isKindOf","isLightOn","isLocalized","isManualFire","isMarkedForCollection","isMultiplayer","isNil","isNull","isNumber","isObjectHidden","isObjectRTD","isOnRoad","isPipEnabled","isPlayer","isRealTime","isServer","isShowing3DIcons","isSteamMission","isStreamFriendlyUIEnabled","isText","isTouchingGround","isTurnedOut","isTutHintsEnabled","isUAVConnectable","isUAVConnected","isUniformAllowed","isWalking","isWeaponDeployed","isWeaponRested","itemCargo","items","itemsWithMagazines","join","joinAs","joinAsSilent","joinSilent","joinString","kbAddDatabase","kbAddDatabaseTargets","kbAddTopic","kbHasTopic","kbReact","kbRemoveTopic","kbTell","kbWasSaid","keyImage","keyName","knowsAbout","land","landAt","landResult","language","laserTarget","lbAdd","lbClear","lbColor","lbCurSel","lbData","lbDelete","lbIsSelected","lbPicture","lbSelection","lbSetColor","lbSetCurSel","lbSetData","lbSetPicture","lbSetPictureColor","lbSetPictureColorDisabled","lbSetPictureColorSelected","lbSetSelectColor","lbSetSelectColorRight","lbSetSelected","lbSetTooltip","lbSetValue","lbSize","lbSort","lbSortByValue","lbText","lbValue","leader","leaderboardDeInit","leaderboardGetRows","leaderboardInit","leaveVehicle","libraryCredits","libraryDisclaimers","lifeState","lightAttachObject","lightDetachObject","lightIsOn","lightnings","limitSpeed","linearConversion","lineBreak","lineIntersects","lineIntersectsObjs","lineIntersectsSurfaces","lineIntersectsWith","linkItem","list","listObjects","ln","lnbAddArray","lnbAddColumn","lnbAddRow","lnbClear","lnbColor","lnbCurSelRow","lnbData","lnbDeleteColumn","lnbDeleteRow","lnbGetColumnsPosition","lnbPicture","lnbSetColor","lnbSetColumnsPos","lnbSetCurSelRow","lnbSetData","lnbSetPicture","lnbSetText","lnbSetValue","lnbSize","lnbText","lnbValue","load","loadAbs","loadBackpack","loadFile","loadGame","loadIdentity","loadMagazine","loadOverlay","loadStatus","loadUniform","loadVest","local","localize","locationNull","locationPosition","lock","lockCameraTo","lockCargo","lockDriver","locked","lockedCargo","lockedDriver","lockedTurret","lockTurret","lockWP","log","logEntities","lookAt","lookAtPos","magazineCargo","magazines","magazinesAllTurrets","magazinesAmmo","magazinesAmmoCargo","magazinesAmmoFull","magazinesDetail","magazinesDetailBackpack","magazinesDetailUniform","magazinesDetailVest","magazinesTurret","magazineTurretAmmo","mapAnimAdd","mapAnimClear","mapAnimCommit","mapAnimDone","mapCenterOnCamera","mapGridPosition","markAsFinishedOnSteam","markerAlpha","markerBrush","markerColor","markerDir","markerPos","markerShape","markerSize","markerText","markerType","max","members","min","mineActive","mineDetectedBy","missionConfigFile","missionName","missionNamespace","missionStart","mod","modelToWorld","modelToWorldVisual","moonIntensity","morale","move","moveInAny","moveInCargo","moveInCommander","moveInDriver","moveInGunner","moveInTurret","moveObjectToEnd","moveOut","moveTime","moveTo","moveToCompleted","moveToFailed","musicVolume","name","name location","nameSound","nearEntities","nearestBuilding","nearestLocation","nearestLocations","nearestLocationWithDubbing","nearestObject","nearestObjects","nearObjects","nearObjectsReady","nearRoads","nearSupplies","nearTargets","needReload","netId","netObjNull","newOverlay","nextMenuItemIndex","nextWeatherChange","nil","nMenuItems","not","numberToDate","objectCurators","objectFromNetId","objectParent","objNull","objStatus","onBriefingGroup","onBriefingNotes","onBriefingPlan","onBriefingTeamSwitch","onCommandModeChanged","onDoubleClick","onEachFrame","onGroupIconClick","onGroupIconOverEnter","onGroupIconOverLeave","onHCGroupSelectionChanged","onMapSingleClick","onPlayerConnected","onPlayerDisconnected","onPreloadFinished","onPreloadStarted","onShowNewObject","onTeamSwitch","openCuratorInterface","openMap","openYoutubeVideo","opfor","or","orderGetIn","overcast","overcastForecast","owner","param","params","parseNumber","parseText","parsingNamespace","particlesQuality","pi","pickWeaponPool","pitch","playableSlotsNumber","playableUnits","playAction","playActionNow","player","playerRespawnTime","playerSide","playersNumber","playGesture","playMission","playMove","playMoveNow","playMusic","playScriptedMission","playSound","playSound3D","position","positionCameraToWorld","posScreenToWorld","posWorldToScreen","ppEffectAdjust","ppEffectCommit","ppEffectCommitted","ppEffectCreate","ppEffectDestroy","ppEffectEnable","ppEffectForceInNVG","precision","preloadCamera","preloadObject","preloadSound","preloadTitleObj","preloadTitleRsc","preprocessFile","preprocessFileLineNumbers","primaryWeapon","primaryWeaponItems","primaryWeaponMagazine","priority","private","processDiaryLink","productVersion","profileName","profileNamespace","profileNameSteam","progressLoadingScreen","progressPosition","progressSetPosition","publicVariable","publicVariableClient","publicVariableServer","pushBack","putWeaponPool","queryItemsPool","queryMagazinePool","queryWeaponPool","rad","radioChannelAdd","radioChannelCreate","radioChannelRemove","radioChannelSetCallSign","radioChannelSetLabel","radioVolume","rain","rainbow","random","rank","rankId","rating","rectangular","registeredTasks","registerTask","reload","reloadEnabled","remoteControl","remoteExec","remoteExecCall","removeAction","removeAllActions","removeAllAssignedItems","removeAllContainers","removeAllCuratorAddons","removeAllCuratorCameraAreas","removeAllCuratorEditingAreas","removeAllEventHandlers","removeAllHandgunItems","removeAllItems","removeAllItemsWithMagazines","removeAllMissionEventHandlers","removeAllMPEventHandlers","removeAllMusicEventHandlers","removeAllPrimaryWeaponItems","removeAllWeapons","removeBackpack","removeBackpackGlobal","removeCuratorAddons","removeCuratorCameraArea","removeCuratorEditableObjects","removeCuratorEditingArea","removeDrawIcon","removeDrawLinks","removeEventHandler","removeFromRemainsCollector","removeGoggles","removeGroupIcon","removeHandgunItem","removeHeadgear","removeItem","removeItemFromBackpack","removeItemFromUniform","removeItemFromVest","removeItems","removeMagazine","removeMagazineGlobal","removeMagazines","removeMagazinesTurret","removeMagazineTurret","removeMenuItem","removeMissionEventHandler","removeMPEventHandler","removeMusicEventHandler","removePrimaryWeaponItem","removeSecondaryWeaponItem","removeSimpleTask","removeSwitchableUnit","removeTeamMember","removeUniform","removeVest","removeWeapon","removeWeaponGlobal","removeWeaponTurret","requiredVersion","resetCamShake","resetSubgroupDirection","resistance","resize","resources","respawnVehicle","restartEditorCamera","reveal","revealMine","reverse","reversedMouseY","roadsConnectedTo","roleDescription","ropeAttachedObjects","ropeAttachedTo","ropeAttachEnabled","ropeAttachTo","ropeCreate","ropeCut","ropeEndPosition","ropeLength","ropes","ropeUnwind","ropeUnwound","rotorsForcesRTD","rotorsRpmRTD","round","runInitScript","safeZoneH","safeZoneW","safeZoneWAbs","safeZoneX","safeZoneXAbs","safeZoneY","saveGame","saveIdentity","saveJoysticks","saveOverlay","saveProfileNamespace","saveStatus","saveVar","savingEnabled","say","say2D","say3D","scopeName","score","scoreSide","screenToWorld","scriptDone","scriptName","scriptNull","scudState","secondaryWeapon","secondaryWeaponItems","secondaryWeaponMagazine","select","selectBestPlaces","selectDiarySubject","selectedEditorObjects","selectEditorObject","selectionPosition","selectLeader","selectNoPlayer","selectPlayer","selectWeapon","selectWeaponTurret","sendAUMessage","sendSimpleCommand","sendTask","sendTaskResult","sendUDPMessage","serverCommand","serverCommandAvailable","serverCommandExecutable","serverName","serverTime","set","setAccTime","setAirportSide","setAmmo","setAmmoCargo","setAperture","setApertureNew","setArmoryPoints","setAttributes","setAutonomous","setBehaviour","setBleedingRemaining","setCameraInterest","setCamShakeDefParams","setCamShakeParams","setCamUseTi","setCaptive","setCenterOfMass","setCollisionLight","setCombatMode","setCompassOscillation","setCuratorCameraAreaCeiling","setCuratorCoef","setCuratorEditingAreaType","setCuratorWaypointCost","setCurrentChannel","setCurrentTask","setCurrentWaypoint","setDamage","setDammage","setDate","setDebriefingText","setDefaultCamera","setDestination","setDetailMapBlendPars","setDir","setDirection","setDrawIcon","setDropInterval","setEditorMode","setEditorObjectScope","setEffectCondition","setFace","setFaceAnimation","setFatigue","setFlagOwner","setFlagSide","setFlagTexture","setFog","setFog array","setFormation","setFormationTask","setFormDir","setFriend","setFromEditor","setFSMVariable","setFuel","setFuelCargo","setGroupIcon","setGroupIconParams","setGroupIconsSelectable","setGroupIconsVisible","setGroupId","setGroupIdGlobal","setGroupOwner","setGusts","setHideBehind","setHit","setHitIndex","setHitPointDamage","setHorizonParallaxCoef","setHUDMovementLevels","setIdentity","setImportance","setLeader","setLightAmbient","setLightAttenuation","setLightBrightness","setLightColor","setLightDayLight","setLightFlareMaxDistance","setLightFlareSize","setLightIntensity","setLightnings","setLightUseFlare","setLocalWindParams","setMagazineTurretAmmo","setMarkerAlpha","setMarkerAlphaLocal","setMarkerBrush","setMarkerBrushLocal","setMarkerColor","setMarkerColorLocal","setMarkerDir","setMarkerDirLocal","setMarkerPos","setMarkerPosLocal","setMarkerShape","setMarkerShapeLocal","setMarkerSize","setMarkerSizeLocal","setMarkerText","setMarkerTextLocal","setMarkerType","setMarkerTypeLocal","setMass","setMimic","setMousePosition","setMusicEffect","setMusicEventHandler","setName","setNameSound","setObjectArguments","setObjectMaterial","setObjectProxy","setObjectTexture","setObjectTextureGlobal","setObjectViewDistance","setOvercast","setOwner","setOxygenRemaining","setParticleCircle","setParticleClass","setParticleFire","setParticleParams","setParticleRandom","setPilotLight","setPiPEffect","setPitch","setPlayable","setPlayerRespawnTime","setPos","setPosASL","setPosASL2","setPosASLW","setPosATL","setPosition","setPosWorld","setRadioMsg","setRain","setRainbow","setRandomLip","setRank","setRectangular","setRepairCargo","setShadowDistance","setSide","setSimpleTaskDescription","setSimpleTaskDestination","setSimpleTaskTarget","setSimulWeatherLayers","setSize","setSkill","setSkill array","setSlingLoad","setSoundEffect","setSpeaker","setSpeech","setSpeedMode","setStatValue","setSuppression","setSystemOfUnits","setTargetAge","setTaskResult","setTaskState","setTerrainGrid","setText","setTimeMultiplier","setTitleEffect","setTriggerActivation","setTriggerArea","setTriggerStatements","setTriggerText","setTriggerTimeout","setTriggerType","setType","setUnconscious","setUnitAbility","setUnitPos","setUnitPosWeak","setUnitRank","setUnitRecoilCoefficient","setUnloadInCombat","setUserActionText","setVariable","setVectorDir","setVectorDirAndUp","setVectorUp","setVehicleAmmo","setVehicleAmmoDef","setVehicleArmor","setVehicleId","setVehicleLock","setVehiclePosition","setVehicleTiPars","setVehicleVarName","setVelocity","setVelocityTransformation","setViewDistance","setVisibleIfTreeCollapsed","setWaves","setWaypointBehaviour","setWaypointCombatMode","setWaypointCompletionRadius","setWaypointDescription","setWaypointFormation","setWaypointHousePosition","setWaypointLoiterRadius","setWaypointLoiterType","setWaypointName","setWaypointPosition","setWaypointScript","setWaypointSpeed","setWaypointStatements","setWaypointTimeout","setWaypointType","setWaypointVisible","setWeaponReloadingTime","setWind","setWindDir","setWindForce","setWindStr","setWPPos","show3DIcons","showChat","showCinemaBorder","showCommandingMenu","showCompass","showCuratorCompass","showGPS","showHUD","showLegend","showMap","shownArtilleryComputer","shownChat","shownCompass","shownCuratorCompass","showNewEditorObject","shownGPS","shownHUD","shownMap","shownPad","shownRadio","shownUAVFeed","shownWarrant","shownWatch","showPad","showRadio","showSubtitles","showUAVFeed","showWarrant","showWatch","showWaypoint","side","sideChat","sideEnemy","sideFriendly","sideLogic","sideRadio","sideUnknown","simpleTasks","simulationEnabled","simulCloudDensity","simulCloudOcclusion","simulInClouds","simulWeatherSync","sin","size","sizeOf","skill","skillFinal","skipTime","sleep","sliderPosition","sliderRange","sliderSetPosition","sliderSetRange","sliderSetSpeed","sliderSpeed","slingLoadAssistantShown","soldierMagazines","someAmmo","sort","soundVolume","spawn","speaker","speed","speedMode","splitString","sqrt","squadParams","stance","startLoadingScreen","step","stop","stopped","str","sunOrMoon","supportInfo","suppressFor","surfaceIsWater","surfaceNormal","surfaceType","swimInDepth","switch","switchableUnits","switchAction","switchCamera","switchGesture","switchLight","switchMove","synchronizedObjects","synchronizedTriggers","synchronizedWaypoints","synchronizeObjectsAdd","synchronizeObjectsRemove","synchronizeTrigger","synchronizeWaypoint","synchronizeWaypoint trigger","systemChat","systemOfUnits","tan","targetKnowledge","targetsAggregate","targetsQuery","taskChildren","taskCompleted","taskDescription","taskDestination","taskHint","taskNull","taskParent","taskResult","taskState","teamMember","teamMemberNull","teamName","teams","teamSwitch","teamSwitchEnabled","teamType","terminate","terrainIntersect","terrainIntersectASL","text","text location","textLog","textLogFormat","tg","then","throw","time","timeMultiplier","titleCut","titleFadeOut","titleObj","titleRsc","titleText","to","toArray","toLower","toString","toUpper","triggerActivated","triggerActivation","triggerArea","triggerAttachedVehicle","triggerAttachObject","triggerAttachVehicle","triggerStatements","triggerText","triggerTimeout","triggerTimeoutCurrent","triggerType","true","try","turretLocal","turretOwner","turretUnit","tvAdd","tvClear","tvCollapse","tvCount","tvCurSel","tvData","tvDelete","tvExpand","tvPicture","tvSetCurSel","tvSetData","tvSetPicture","tvSetPictureColor","tvSetTooltip","tvSetValue","tvSort","tvSortByValue","tvText","tvValue","type","typeName","typeOf","UAVControl","uiNamespace","uiSleep","unassignCurator","unassignItem","unassignTeam","unassignVehicle","underwater","uniform","uniformContainer","uniformItems","uniformMagazines","unitAddons","unitBackpack","unitPos","unitReady","unitRecoilCoefficient","units","unitsBelowHeight","unlinkItem","unlockAchievement","unregisterTask","updateDrawIcon","updateMenuItem","updateObjectTree","useAudioTimeForMoves","vectorAdd","vectorCos","vectorCrossProduct","vectorDiff","vectorDir","vectorDirVisual","vectorDistance","vectorDistanceSqr","vectorDotProduct","vectorFromTo","vectorMagnitude","vectorMagnitudeSqr","vectorMultiply","vectorNormalized","vectorUp","vectorUpVisual","vehicle","vehicleChat","vehicleRadio","vehicles","vehicleVarName","velocity","velocityModelSpace","verifySignature","vest","vestContainer","vestItems","vestMagazines","viewDistance","visibleCompass","visibleGPS","visibleMap","visiblePosition","visiblePositionASL","visibleWatch","waitUntil","waves","waypointAttachedObject","waypointAttachedVehicle","waypointAttachObject","waypointAttachVehicle","waypointBehaviour","waypointCombatMode","waypointCompletionRadius","waypointDescription","waypointFormation","waypointHousePosition","waypointLoiterRadius","waypointLoiterType","waypointName","waypointPosition","waypoints","waypointScript","waypointsEnabledUAV","waypointShow","waypointSpeed","waypointStatements","waypointTimeout","waypointTimeoutCurrent","waypointType","waypointVisible","weaponAccessories","weaponCargo","weaponDirection","weaponLowered","weapons","weaponsItems","weaponsItemsCargo","weaponState","weaponsTurret","weightRTD","west","WFSideText","while","wind","windDir","windStr","wingsForcesRTD","with","worldName","worldSize","worldToModel","worldToModelVisual","worldToScreen"],a=["case","catch","default","do","else","exit","exitWith|5","for","forEach","from","if","switch","then","throw","to","try","while","with"],r=["!","-","+","!=","%","&&","*","/","=","==",">",">=","<","<=","^",":",">>"],o=["_forEachIndex|10","_this|10","_x|10"],i=["true","false","nil"],n=t.filter(function(e){return-1==a.indexOf(e)&&-1==i.indexOf(e)&&-1==r.indexOf(e)});n=n.concat(o);var s={cN:"string",r:0,v:[{b:'"',e:'"',c:[{b:'""'}]},{b:"'",e:"'",c:[{b:"''"}]}]},l={cN:"number",b:e.NR,r:0},c={cN:"string",v:[e.QSM,{b:"'\\\\?.",e:"'",i:"."}]},d={cN:"preprocessor",b:"#",e:"$",k:"if else elif endif define undef warning error line pragma ifdef ifndef",c:[{b:/\\\n/,r:0},{bK:"include",e:"$",c:[c,{cN:"string",b:"<",e:">",i:"\\n"}]},c,l,e.CLCM,e.CBCM]};return{aliases:["sqf"],cI:!0,k:{keyword:a.join(" "),built_in:n.join(" "),literal:i.join(" ")},c:[e.CLCM,e.CBCM,l,s,d]}});hljs.registerLanguage("vbscript-html",function(r){return{sL:"xml",c:[{b:"<%",e:"%>",sL:"vbscript"}]}});hljs.registerLanguage("cal",function(e){var r="div mod in and or not xor asserterror begin case do downto else end exit for if of repeat then to until while with var",t="false true",a=[e.CLCM,e.C(/\{/,/\}/,{r:0}),e.C(/\(\*/,/\*\)/,{r:10})],c={cN:"string",b:/'/,e:/'/,c:[{b:/''/}]},o={cN:"string",b:/(#\d+)+/},n={cN:"date",b:"\\b\\d+(\\.\\d+)?(DT|D|T)",r:0},i={cN:"variable",b:'"',e:'"'},d={cN:"function",bK:"procedure",e:/[:;]/,k:"procedure|10",c:[e.TM,{cN:"params",b:/\(/,e:/\)/,k:r,c:[c,o]}].concat(a)},b={cN:"class",b:"OBJECT (Table|Form|Report|Dataport|Codeunit|XMLport|MenuSuite|Page|Query) (\\d+) ([^\\r\\n]+)",rB:!0,c:[e.TM,d]};return{cI:!0,k:{keyword:r,literal:t},i:/\/\*/,c:[c,o,n,i,e.NM,b,d]}});hljs.registerLanguage("mojolicious",function(e){return{sL:"xml",c:[{cN:"preprocessor",b:"^__(END|DATA)__$"},{b:"^\\s*%{1,2}={0,2}",e:"$",sL:"perl"},{b:"<%{1,2}={0,2}",e:"={0,1}%>",sL:"perl",eB:!0,eE:!0}]}});hljs.registerLanguage("clojure",function(e){var t={built_in:"def defonce cond apply if-not if-let if not not= = < > <= >= == + / * - rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit defmacro defn defn- macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy defstruct first rest cons defprotocol cast coll deftype defrecord last butlast sigs reify second ffirst fnext nfirst nnext defmulti defmethod meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize"},r="a-zA-Z_\\-!.?+*=<>&#'",n="["+r+"]["+r+"0-9/;:]*",a="[-+]?\\d+(\\.\\d+)?",o={b:n,r:0},s={cN:"number",b:a,r:0},c=e.inherit(e.QSM,{i:null}),i=e.C(";","$",{r:0}),d={cN:"literal",b:/\b(true|false|nil)\b/},l={cN:"collection",b:"[\\[\\{]",e:"[\\]\\}]"},m={cN:"comment",b:"\\^"+n},p=e.C("\\^\\{","\\}"),u={cN:"attribute",b:"[:]"+n},f={cN:"list",b:"\\(",e:"\\)"},h={eW:!0,r:0},y={k:t,l:n,cN:"keyword",b:n,starts:h},b=[f,c,m,p,i,u,l,s,d,o];return f.c=[e.C("comment",""),y,h],h.c=b,l.c=b,{aliases:["clj"],i:/\S/,c:[f,c,m,p,i,u,l,s,d]}});hljs.registerLanguage("dart",function(e){var t={cN:"subst",b:"\\$\\{",e:"}",k:"true false null this is new super"},r={cN:"string",v:[{b:"r'''",e:"'''"},{b:'r"""',e:'"""'},{b:"r'",e:"'",i:"\\n"},{b:'r"',e:'"',i:"\\n"},{b:"'''",e:"'''",c:[e.BE,t]},{b:'"""',e:'"""',c:[e.BE,t]},{b:"'",e:"'",i:"\\n",c:[e.BE,t]},{b:'"',e:'"',i:"\\n",c:[e.BE,t]}]};t.c=[e.CNM,r];var n={keyword:"assert break case catch class const continue default do else enum extends false final finally for if in is new null rethrow return super switch this throw true try var void while with",literal:"abstract as dynamic export external factory get implements import library operator part set static typedef",built_in:"print Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double int num document window querySelector querySelectorAll Element ElementList"};return{k:n,c:[r,e.C("/\\*\\*","\\*/",{sL:"markdown"}),e.C("///","$",{sL:"markdown"}),e.CLCM,e.CBCM,{cN:"class",bK:"class interface",e:"{",eE:!0,c:[{bK:"extends implements"},e.UTM]},e.CNM,{cN:"annotation",b:"@[A-Za-z]+"},{b:"=>"}]}});hljs.registerLanguage("ruleslanguage",function(T){return{k:{keyword:"BILL_PERIOD BILL_START BILL_STOP RS_EFFECTIVE_START RS_EFFECTIVE_STOP RS_JURIS_CODE RS_OPCO_CODE INTDADDATTRIBUTE|5 INTDADDVMSG|5 INTDBLOCKOP|5 INTDBLOCKOPNA|5 INTDCLOSE|5 INTDCOUNT|5 INTDCOUNTSTATUSCODE|5 INTDCREATEMASK|5 INTDCREATEDAYMASK|5 INTDCREATEFACTORMASK|5 INTDCREATEHANDLE|5 INTDCREATEOVERRIDEDAYMASK|5 INTDCREATEOVERRIDEMASK|5 INTDCREATESTATUSCODEMASK|5 INTDCREATETOUPERIOD|5 INTDDELETE|5 INTDDIPTEST|5 INTDEXPORT|5 INTDGETERRORCODE|5 INTDGETERRORMESSAGE|5 INTDISEQUAL|5 INTDJOIN|5 INTDLOAD|5 INTDLOADACTUALCUT|5 INTDLOADDATES|5 INTDLOADHIST|5 INTDLOADLIST|5 INTDLOADLISTDATES|5 INTDLOADLISTENERGY|5 INTDLOADLISTHIST|5 INTDLOADRELATEDCHANNEL|5 INTDLOADSP|5 INTDLOADSTAGING|5 INTDLOADUOM|5 INTDLOADUOMDATES|5 INTDLOADUOMHIST|5 INTDLOADVERSION|5 INTDOPEN|5 INTDREADFIRST|5 INTDREADNEXT|5 INTDRECCOUNT|5 INTDRELEASE|5 INTDREPLACE|5 INTDROLLAVG|5 INTDROLLPEAK|5 INTDSCALAROP|5 INTDSCALE|5 INTDSETATTRIBUTE|5 INTDSETDSTPARTICIPANT|5 INTDSETSTRING|5 INTDSETVALUE|5 INTDSETVALUESTATUS|5 INTDSHIFTSTARTTIME|5 INTDSMOOTH|5 INTDSORT|5 INTDSPIKETEST|5 INTDSUBSET|5 INTDTOU|5 INTDTOURELEASE|5 INTDTOUVALUE|5 INTDUPDATESTATS|5 INTDVALUE|5 STDEV INTDDELETEEX|5 INTDLOADEXACTUAL|5 INTDLOADEXCUT|5 INTDLOADEXDATES|5 INTDLOADEX|5 INTDLOADEXRELATEDCHANNEL|5 INTDSAVEEX|5 MVLOAD|5 MVLOADACCT|5 MVLOADACCTDATES|5 MVLOADACCTHIST|5 MVLOADDATES|5 MVLOADHIST|5 MVLOADLIST|5 MVLOADLISTDATES|5 MVLOADLISTHIST|5 IF FOR NEXT DONE SELECT END CALL ABORT CLEAR CHANNEL FACTOR LIST NUMBER OVERRIDE SET WEEK DISTRIBUTIONNODE ELSE WHEN THEN OTHERWISE IENUM CSV INCLUDE LEAVE RIDER SAVE DELETE NOVALUE SECTION WARN SAVE_UPDATE DETERMINANT LABEL REPORT REVENUE EACH IN FROM TOTAL CHARGE BLOCK AND OR CSV_FILE RATE_CODE AUXILIARY_DEMAND UIDACCOUNT RS BILL_PERIOD_SELECT HOURS_PER_MONTH INTD_ERROR_STOP SEASON_SCHEDULE_NAME ACCOUNTFACTOR ARRAYUPPERBOUND CALLSTOREDPROC GETADOCONNECTION GETCONNECT GETDATASOURCE GETQUALIFIER GETUSERID HASVALUE LISTCOUNT LISTOP LISTUPDATE LISTVALUE PRORATEFACTOR RSPRORATE SETBINPATH SETDBMONITOR WQ_OPEN BILLINGHOURS DATE DATEFROMFLOAT DATETIMEFROMSTRING DATETIMETOSTRING DATETOFLOAT DAY DAYDIFF DAYNAME DBDATETIME HOUR MINUTE MONTH MONTHDIFF MONTHHOURS MONTHNAME ROUNDDATE SAMEWEEKDAYLASTYEAR SECOND WEEKDAY WEEKDIFF YEAR YEARDAY YEARSTR COMPSUM HISTCOUNT HISTMAX HISTMIN HISTMINNZ HISTVALUE MAXNRANGE MAXRANGE MINRANGE COMPIKVA COMPKVA COMPKVARFROMKQKW COMPLF IDATTR FLAG LF2KW LF2KWH MAXKW POWERFACTOR READING2USAGE AVGSEASON MAXSEASON MONTHLYMERGE SEASONVALUE SUMSEASON ACCTREADDATES ACCTTABLELOAD CONFIGADD CONFIGGET CREATEOBJECT CREATEREPORT EMAILCLIENT EXPBLKMDMUSAGE EXPMDMUSAGE EXPORT_USAGE FACTORINEFFECT GETUSERSPECIFIEDSTOP INEFFECT ISHOLIDAY RUNRATE SAVE_PROFILE SETREPORTTITLE USEREXIT WATFORRUNRATE TO TABLE ACOS ASIN ATAN ATAN2 BITAND CEIL COS COSECANT COSH COTANGENT DIVQUOT DIVREM EXP FABS FLOOR FMOD FREPM FREXPN LOG LOG10 MAX MAXN MIN MINNZ MODF POW ROUND ROUND2VALUE ROUNDINT SECANT SIN SINH SQROOT TAN TANH FLOAT2STRING FLOAT2STRINGNC INSTR LEFT LEN LTRIM MID RIGHT RTRIM STRING STRINGNC TOLOWER TOUPPER TRIM NUMDAYS READ_DATE STAGING",built_in:"IDENTIFIER OPTIONS XML_ELEMENT XML_OP XML_ELEMENT_OF DOMDOCCREATE DOMDOCLOADFILE DOMDOCLOADXML DOMDOCSAVEFILE DOMDOCGETROOT DOMDOCADDPI DOMNODEGETNAME DOMNODEGETTYPE DOMNODEGETVALUE DOMNODEGETCHILDCT DOMNODEGETFIRSTCHILD DOMNODEGETSIBLING DOMNODECREATECHILDELEMENT DOMNODESETATTRIBUTE DOMNODEGETCHILDELEMENTCT DOMNODEGETFIRSTCHILDELEMENT DOMNODEGETSIBLINGELEMENT DOMNODEGETATTRIBUTECT DOMNODEGETATTRIBUTEI DOMNODEGETATTRIBUTEBYNAME DOMNODEGETBYNAME"},c:[T.CLCM,T.CBCM,T.ASM,T.QSM,T.CNM,{cN:"array",v:[{b:"#\\s+[a-zA-Z\\ \\.]*",r:0},{b:"#[a-zA-Z\\ \\.]+"}]}]}});hljs.registerLanguage("applescript",function(e){var t=e.inherit(e.QSM,{i:""}),r={cN:"params",b:"\\(",e:"\\)",c:["self",e.CNM,t]},o=e.C("--","$"),n=e.C("\\(\\*","\\*\\)",{c:["self",o]}),a=[o,n,e.HCM];return{aliases:["osascript"],k:{keyword:"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without",constant:"AppleScript false linefeed return pi quote result space tab true",type:"alias application boolean class constant date file integer list number real record string text",command:"activate beep count delay launch log offset read round run say summarize write",property:"character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year"},c:[t,e.CNM,{cN:"type",b:"\\bPOSIX file\\b"},{cN:"command",b:"\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\b|^\\s*return\\b"},{cN:"constant",b:"\\b(text item delimiters|current application|missing value)\\b"},{cN:"keyword",b:"\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference))\\b"},{cN:"property",b:"\\b(POSIX path|(date|time) string|quoted form)\\b"},{cN:"function_start",bK:"on",i:"[${=;\\n]",c:[e.UTM,r]}].concat(a),i:"//|->|=>|\\[\\["}});hljs.registerLanguage("xml",function(t){var s="[A-Za-z0-9\\._:-]+",c={b:/<\?(php)?(?!\w)/,e:/\?>/,sL:"php"},e={eW:!0,i:/</,r:0,c:[c,{cN:"attribute",b:s,r:0},{b:"=",r:0,c:[{cN:"value",c:[c],v:[{b:/"/,e:/"/},{b:/'/,e:/'/},{b:/[^\s\/>]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xsl","plist"],cI:!0,c:[{cN:"doctype",b:"<!DOCTYPE",e:">",r:10,c:[{b:"\\[",e:"\\]"}]},t.C("<!--","-->",{r:10}),{cN:"cdata",b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{cN:"tag",b:"<style(?=\\s|>|$)",e:">",k:{title:"style"},c:[e],starts:{e:"</style>",rE:!0,sL:"css"}},{cN:"tag",b:"<script(?=\\s|>|$)",e:">",k:{title:"script"},c:[e],starts:{e:"</script>",rE:!0,sL:["actionscript","javascript","handlebars"]}},c,{cN:"pi",b:/<\?\w+/,e:/\?>/,r:10},{cN:"tag",b:"</?",e:"/?>",c:[{cN:"title",b:/[^ \/><\n\t]+/,r:0},e]}]}});hljs.registerLanguage("elixir",function(e){var n="[a-zA-Z_][a-zA-Z0-9_]*(\\!|\\?)?",r="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",b="and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote",c={cN:"subst",b:"#\\{",e:"}",l:n,k:b},a={cN:"string",c:[e.BE,c],v:[{b:/'/,e:/'/},{b:/"/,e:/"/}]},i={cN:"function",bK:"def defp defmacro",e:/\B\b/,c:[e.inherit(e.TM,{b:n,endsParent:!0})]},s=e.inherit(i,{cN:"class",bK:"defmodule defrecord",e:/\bdo\b|$|;/}),l=[a,e.HCM,s,i,{cN:"constant",b:"(\\b[A-Z_]\\w*(.)?)+",r:0},{cN:"symbol",b:":",c:[a,{b:r}],r:0},{cN:"symbol",b:n+":",r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{cN:"variable",b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{b:"->"},{b:"("+e.RSR+")\\s*",c:[e.HCM,{cN:"regexp",i:"\\n",c:[e.BE,c],v:[{b:"/",e:"/[a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}],r:0}];return c.c=l,{l:n,k:b,c:l}});hljs.registerLanguage("autoit",function(e){var t="ByRef Case Const ContinueCase ContinueLoop Default Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With",r="True False And Null Not Or",i="Abs ACos AdlibRegister AdlibUnRegister Asc AscW ASin Assign ATan AutoItSetOption AutoItWinGetTitle AutoItWinSetTitle Beep Binary BinaryLen BinaryMid BinaryToString BitAND BitNOT BitOR BitRotate BitShift BitXOR BlockInput Break Call CDTray Ceiling Chr ChrW ClipGet ClipPut ConsoleRead ConsoleWrite ConsoleWriteError ControlClick ControlCommand ControlDisable ControlEnable ControlFocus ControlGetFocus ControlGetHandle ControlGetPos ControlGetText ControlHide ControlListView ControlMove ControlSend ControlSetText ControlShow ControlTreeView Cos Dec DirCopy DirCreate DirGetSize DirMove DirRemove DllCall DllCallAddress DllCallbackFree DllCallbackGetPtr DllCallbackRegister DllClose DllOpen DllStructCreate DllStructGetData DllStructGetPtr DllStructGetSize DllStructSetData DriveGetDrive DriveGetFileSystem DriveGetLabel DriveGetSerial DriveGetType DriveMapAdd DriveMapDel DriveMapGet DriveSetLabel DriveSpaceFree DriveSpaceTotal DriveStatus EnvGet EnvSet EnvUpdate Eval Execute Exp FileChangeDir FileClose FileCopy FileCreateNTFSLink FileCreateShortcut FileDelete FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetShortcut FileGetShortName FileGetSize FileGetTime FileGetVersion FileInstall FileMove FileOpen FileOpenDialog FileRead FileReadLine FileReadToArray FileRecycle FileRecycleEmpty FileSaveDialog FileSelectFolder FileSetAttrib FileSetEnd FileSetPos FileSetTime FileWrite FileWriteLine Floor FtpSetProxy FuncName GUICreate GUICtrlCreateAvi GUICtrlCreateButton GUICtrlCreateCheckbox GUICtrlCreateCombo GUICtrlCreateContextMenu GUICtrlCreateDate GUICtrlCreateDummy GUICtrlCreateEdit GUICtrlCreateGraphic GUICtrlCreateGroup GUICtrlCreateIcon GUICtrlCreateInput GUICtrlCreateLabel GUICtrlCreateList GUICtrlCreateListView GUICtrlCreateListViewItem GUICtrlCreateMenu GUICtrlCreateMenuItem GUICtrlCreateMonthCal GUICtrlCreateObj GUICtrlCreatePic GUICtrlCreateProgress GUICtrlCreateRadio GUICtrlCreateSlider GUICtrlCreateTab GUICtrlCreateTabItem GUICtrlCreateTreeView GUICtrlCreateTreeViewItem GUICtrlCreateUpdown GUICtrlDelete GUICtrlGetHandle GUICtrlGetState GUICtrlRead GUICtrlRecvMsg GUICtrlRegisterListViewSort GUICtrlSendMsg GUICtrlSendToDummy GUICtrlSetBkColor GUICtrlSetColor GUICtrlSetCursor GUICtrlSetData GUICtrlSetDefBkColor GUICtrlSetDefColor GUICtrlSetFont GUICtrlSetGraphic GUICtrlSetImage GUICtrlSetLimit GUICtrlSetOnEvent GUICtrlSetPos GUICtrlSetResizing GUICtrlSetState GUICtrlSetStyle GUICtrlSetTip GUIDelete GUIGetCursorInfo GUIGetMsg GUIGetStyle GUIRegisterMsg GUISetAccelerators GUISetBkColor GUISetCoord GUISetCursor GUISetFont GUISetHelp GUISetIcon GUISetOnEvent GUISetState GUISetStyle GUIStartGroup GUISwitch Hex HotKeySet HttpSetProxy HttpSetUserAgent HWnd InetClose InetGet InetGetInfo InetGetSize InetRead IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection InputBox Int IsAdmin IsArray IsBinary IsBool IsDeclared IsDllStruct IsFloat IsFunc IsHWnd IsInt IsKeyword IsNumber IsObj IsPtr IsString Log MemGetStats Mod MouseClick MouseClickDrag MouseDown MouseGetCursor MouseGetPos MouseMove MouseUp MouseWheel MsgBox Number ObjCreate ObjCreateInterface ObjEvent ObjGet ObjName OnAutoItExitRegister OnAutoItExitUnRegister Opt Ping PixelChecksum PixelGetColor PixelSearch ProcessClose ProcessExists ProcessGetStats ProcessList ProcessSetPriority ProcessWait ProcessWaitClose ProgressOff ProgressOn ProgressSet Ptr Random RegDelete RegEnumKey RegEnumVal RegRead RegWrite Round Run RunAs RunAsWait RunWait Send SendKeepActive SetError SetExtended ShellExecute ShellExecuteWait Shutdown Sin Sleep SoundPlay SoundSetWaveVolume SplashImageOn SplashOff SplashTextOn Sqrt SRandom StatusbarGetText StderrRead StdinWrite StdioClose StdoutRead String StringAddCR StringCompare StringFormat StringFromASCIIArray StringInStr StringIsAlNum StringIsAlpha StringIsASCII StringIsDigit StringIsFloat StringIsInt StringIsLower StringIsSpace StringIsUpper StringIsXDigit StringLeft StringLen StringLower StringMid StringRegExp StringRegExpReplace StringReplace StringReverse StringRight StringSplit StringStripCR StringStripWS StringToASCIIArray StringToBinary StringTrimLeft StringTrimRight StringUpper Tan TCPAccept TCPCloseSocket TCPConnect TCPListen TCPNameToIP TCPRecv TCPSend TCPShutdown TCPStartup TimerDiff TimerInit ToolTip TrayCreateItem TrayCreateMenu TrayGetMsg TrayItemDelete TrayItemGetHandle TrayItemGetState TrayItemGetText TrayItemSetOnEvent TrayItemSetState TrayItemSetText TraySetClick TraySetIcon TraySetOnEvent TraySetPauseIcon TraySetState TraySetToolTip TrayTip UBound UDPBind UDPCloseSocket UDPOpen UDPRecv UDPSend UDPShutdown UDPStartup VarGetType WinActivate WinActive WinClose WinExists WinFlash WinGetCaretPos WinGetClassList WinGetClientSize WinGetHandle WinGetPos WinGetProcess WinGetState WinGetText WinGetTitle WinKill WinList WinMenuSelectItem WinMinimizeAll WinMinimizeAllUndo WinMove WinSetOnTop WinSetState WinSetTitle WinSetTrans WinWait WinWaitActive WinWaitClose WinWaitNotActive Array1DToHistogram ArrayAdd ArrayBinarySearch ArrayColDelete ArrayColInsert ArrayCombinations ArrayConcatenate ArrayDelete ArrayDisplay ArrayExtract ArrayFindAll ArrayInsert ArrayMax ArrayMaxIndex ArrayMin ArrayMinIndex ArrayPermute ArrayPop ArrayPush ArrayReverse ArraySearch ArrayShuffle ArraySort ArraySwap ArrayToClip ArrayToString ArrayTranspose ArrayTrim ArrayUnique Assert ChooseColor ChooseFont ClipBoard_ChangeChain ClipBoard_Close ClipBoard_CountFormats ClipBoard_Empty ClipBoard_EnumFormats ClipBoard_FormatStr ClipBoard_GetData ClipBoard_GetDataEx ClipBoard_GetFormatName ClipBoard_GetOpenWindow ClipBoard_GetOwner ClipBoard_GetPriorityFormat ClipBoard_GetSequenceNumber ClipBoard_GetViewer ClipBoard_IsFormatAvailable ClipBoard_Open ClipBoard_RegisterFormat ClipBoard_SetData ClipBoard_SetDataEx ClipBoard_SetViewer ClipPutFile ColorConvertHSLtoRGB ColorConvertRGBtoHSL ColorGetBlue ColorGetCOLORREF ColorGetGreen ColorGetRed ColorGetRGB ColorSetCOLORREF ColorSetRGB Crypt_DecryptData Crypt_DecryptFile Crypt_DeriveKey Crypt_DestroyKey Crypt_EncryptData Crypt_EncryptFile Crypt_GenRandom Crypt_HashData Crypt_HashFile Crypt_Shutdown Crypt_Startup DateAdd DateDayOfWeek DateDaysInMonth DateDiff DateIsLeapYear DateIsValid DateTimeFormat DateTimeSplit DateToDayOfWeek DateToDayOfWeekISO DateToDayValue DateToMonth Date_Time_CompareFileTime Date_Time_DOSDateTimeToArray Date_Time_DOSDateTimeToFileTime Date_Time_DOSDateTimeToStr Date_Time_DOSDateToArray Date_Time_DOSDateToStr Date_Time_DOSTimeToArray Date_Time_DOSTimeToStr Date_Time_EncodeFileTime Date_Time_EncodeSystemTime Date_Time_FileTimeToArray Date_Time_FileTimeToDOSDateTime Date_Time_FileTimeToLocalFileTime Date_Time_FileTimeToStr Date_Time_FileTimeToSystemTime Date_Time_GetFileTime Date_Time_GetLocalTime Date_Time_GetSystemTime Date_Time_GetSystemTimeAdjustment Date_Time_GetSystemTimeAsFileTime Date_Time_GetSystemTimes Date_Time_GetTickCount Date_Time_GetTimeZoneInformation Date_Time_LocalFileTimeToFileTime Date_Time_SetFileTime Date_Time_SetLocalTime Date_Time_SetSystemTime Date_Time_SetSystemTimeAdjustment Date_Time_SetTimeZoneInformation Date_Time_SystemTimeToArray Date_Time_SystemTimeToDateStr Date_Time_SystemTimeToDateTimeStr Date_Time_SystemTimeToFileTime Date_Time_SystemTimeToTimeStr Date_Time_SystemTimeToTzSpecificLocalTime Date_Time_TzSpecificLocalTimeToSystemTime DayValueToDate DebugBugReportEnv DebugCOMError DebugOut DebugReport DebugReportEx DebugReportVar DebugSetup Degree EventLog__Backup EventLog__Clear EventLog__Close EventLog__Count EventLog__DeregisterSource EventLog__Full EventLog__Notify EventLog__Oldest EventLog__Open EventLog__OpenBackup EventLog__Read EventLog__RegisterSource EventLog__Report Excel_BookAttach Excel_BookClose Excel_BookList Excel_BookNew Excel_BookOpen Excel_BookOpenText Excel_BookSave Excel_BookSaveAs Excel_Close Excel_ColumnToLetter Excel_ColumnToNumber Excel_ConvertFormula Excel_Export Excel_FilterGet Excel_FilterSet Excel_Open Excel_PictureAdd Excel_Print Excel_RangeCopyPaste Excel_RangeDelete Excel_RangeFind Excel_RangeInsert Excel_RangeLinkAddRemove Excel_RangeRead Excel_RangeReplace Excel_RangeSort Excel_RangeValidate Excel_RangeWrite Excel_SheetAdd Excel_SheetCopyMove Excel_SheetDelete Excel_SheetList FileCountLines FileCreate FileListToArray FileListToArrayRec FilePrint FileReadToArray FileWriteFromArray FileWriteLog FileWriteToLine FTP_Close FTP_Command FTP_Connect FTP_DecodeInternetStatus FTP_DirCreate FTP_DirDelete FTP_DirGetCurrent FTP_DirPutContents FTP_DirSetCurrent FTP_FileClose FTP_FileDelete FTP_FileGet FTP_FileGetSize FTP_FileOpen FTP_FilePut FTP_FileRead FTP_FileRename FTP_FileTimeLoHiToStr FTP_FindFileClose FTP_FindFileFirst FTP_FindFileNext FTP_GetLastResponseInfo FTP_ListToArray FTP_ListToArray2D FTP_ListToArrayEx FTP_Open FTP_ProgressDownload FTP_ProgressUpload FTP_SetStatusCallback GDIPlus_ArrowCapCreate GDIPlus_ArrowCapDispose GDIPlus_ArrowCapGetFillState GDIPlus_ArrowCapGetHeight GDIPlus_ArrowCapGetMiddleInset GDIPlus_ArrowCapGetWidth GDIPlus_ArrowCapSetFillState GDIPlus_ArrowCapSetHeight GDIPlus_ArrowCapSetMiddleInset GDIPlus_ArrowCapSetWidth GDIPlus_BitmapApplyEffect GDIPlus_BitmapApplyEffectEx GDIPlus_BitmapCloneArea GDIPlus_BitmapConvertFormat GDIPlus_BitmapCreateApplyEffect GDIPlus_BitmapCreateApplyEffectEx GDIPlus_BitmapCreateDIBFromBitmap GDIPlus_BitmapCreateFromFile GDIPlus_BitmapCreateFromGraphics GDIPlus_BitmapCreateFromHBITMAP GDIPlus_BitmapCreateFromHICON GDIPlus_BitmapCreateFromHICON32 GDIPlus_BitmapCreateFromMemory GDIPlus_BitmapCreateFromResource GDIPlus_BitmapCreateFromScan0 GDIPlus_BitmapCreateFromStream GDIPlus_BitmapCreateHBITMAPFromBitmap GDIPlus_BitmapDispose GDIPlus_BitmapGetHistogram GDIPlus_BitmapGetHistogramEx GDIPlus_BitmapGetHistogramSize GDIPlus_BitmapGetPixel GDIPlus_BitmapLockBits GDIPlus_BitmapSetPixel GDIPlus_BitmapUnlockBits GDIPlus_BrushClone GDIPlus_BrushCreateSolid GDIPlus_BrushDispose GDIPlus_BrushGetSolidColor GDIPlus_BrushGetType GDIPlus_BrushSetSolidColor GDIPlus_ColorMatrixCreate GDIPlus_ColorMatrixCreateGrayScale GDIPlus_ColorMatrixCreateNegative GDIPlus_ColorMatrixCreateSaturation GDIPlus_ColorMatrixCreateScale GDIPlus_ColorMatrixCreateTranslate GDIPlus_CustomLineCapClone GDIPlus_CustomLineCapCreate GDIPlus_CustomLineCapDispose GDIPlus_CustomLineCapGetStrokeCaps GDIPlus_CustomLineCapSetStrokeCaps GDIPlus_Decoders GDIPlus_DecodersGetCount GDIPlus_DecodersGetSize GDIPlus_DrawImageFX GDIPlus_DrawImageFXEx GDIPlus_DrawImagePoints GDIPlus_EffectCreate GDIPlus_EffectCreateBlur GDIPlus_EffectCreateBrightnessContrast GDIPlus_EffectCreateColorBalance GDIPlus_EffectCreateColorCurve GDIPlus_EffectCreateColorLUT GDIPlus_EffectCreateColorMatrix GDIPlus_EffectCreateHueSaturationLightness GDIPlus_EffectCreateLevels GDIPlus_EffectCreateRedEyeCorrection GDIPlus_EffectCreateSharpen GDIPlus_EffectCreateTint GDIPlus_EffectDispose GDIPlus_EffectGetParameters GDIPlus_EffectSetParameters GDIPlus_Encoders GDIPlus_EncodersGetCLSID GDIPlus_EncodersGetCount GDIPlus_EncodersGetParamList GDIPlus_EncodersGetParamListSize GDIPlus_EncodersGetSize GDIPlus_FontCreate GDIPlus_FontDispose GDIPlus_FontFamilyCreate GDIPlus_FontFamilyCreateFromCollection GDIPlus_FontFamilyDispose GDIPlus_FontFamilyGetCellAscent GDIPlus_FontFamilyGetCellDescent GDIPlus_FontFamilyGetEmHeight GDIPlus_FontFamilyGetLineSpacing GDIPlus_FontGetHeight GDIPlus_FontPrivateAddFont GDIPlus_FontPrivateAddMemoryFont GDIPlus_FontPrivateCollectionDispose GDIPlus_FontPrivateCreateCollection GDIPlus_GraphicsClear GDIPlus_GraphicsCreateFromHDC GDIPlus_GraphicsCreateFromHWND GDIPlus_GraphicsDispose GDIPlus_GraphicsDrawArc GDIPlus_GraphicsDrawBezier GDIPlus_GraphicsDrawClosedCurve GDIPlus_GraphicsDrawClosedCurve2 GDIPlus_GraphicsDrawCurve GDIPlus_GraphicsDrawCurve2 GDIPlus_GraphicsDrawEllipse GDIPlus_GraphicsDrawImage GDIPlus_GraphicsDrawImagePointsRect GDIPlus_GraphicsDrawImageRect GDIPlus_GraphicsDrawImageRectRect GDIPlus_GraphicsDrawLine GDIPlus_GraphicsDrawPath GDIPlus_GraphicsDrawPie GDIPlus_GraphicsDrawPolygon GDIPlus_GraphicsDrawRect GDIPlus_GraphicsDrawString GDIPlus_GraphicsDrawStringEx GDIPlus_GraphicsFillClosedCurve GDIPlus_GraphicsFillClosedCurve2 GDIPlus_GraphicsFillEllipse GDIPlus_GraphicsFillPath GDIPlus_GraphicsFillPie GDIPlus_GraphicsFillPolygon GDIPlus_GraphicsFillRect GDIPlus_GraphicsFillRegion GDIPlus_GraphicsGetCompositingMode GDIPlus_GraphicsGetCompositingQuality GDIPlus_GraphicsGetDC GDIPlus_GraphicsGetInterpolationMode GDIPlus_GraphicsGetSmoothingMode GDIPlus_GraphicsGetTransform GDIPlus_GraphicsMeasureCharacterRanges GDIPlus_GraphicsMeasureString GDIPlus_GraphicsReleaseDC GDIPlus_GraphicsResetClip GDIPlus_GraphicsResetTransform GDIPlus_GraphicsRestore GDIPlus_GraphicsRotateTransform GDIPlus_GraphicsSave GDIPlus_GraphicsScaleTransform GDIPlus_GraphicsSetClipPath GDIPlus_GraphicsSetClipRect GDIPlus_GraphicsSetClipRegion GDIPlus_GraphicsSetCompositingMode GDIPlus_GraphicsSetCompositingQuality GDIPlus_GraphicsSetInterpolationMode GDIPlus_GraphicsSetPixelOffsetMode GDIPlus_GraphicsSetSmoothingMode GDIPlus_GraphicsSetTextRenderingHint GDIPlus_GraphicsSetTransform GDIPlus_GraphicsTransformPoints GDIPlus_GraphicsTranslateTransform GDIPlus_HatchBrushCreate GDIPlus_HICONCreateFromBitmap GDIPlus_ImageAttributesCreate GDIPlus_ImageAttributesDispose GDIPlus_ImageAttributesSetColorKeys GDIPlus_ImageAttributesSetColorMatrix GDIPlus_ImageDispose GDIPlus_ImageGetDimension GDIPlus_ImageGetFlags GDIPlus_ImageGetGraphicsContext GDIPlus_ImageGetHeight GDIPlus_ImageGetHorizontalResolution GDIPlus_ImageGetPixelFormat GDIPlus_ImageGetRawFormat GDIPlus_ImageGetThumbnail GDIPlus_ImageGetType GDIPlus_ImageGetVerticalResolution GDIPlus_ImageGetWidth GDIPlus_ImageLoadFromFile GDIPlus_ImageLoadFromStream GDIPlus_ImageResize GDIPlus_ImageRotateFlip GDIPlus_ImageSaveToFile GDIPlus_ImageSaveToFileEx GDIPlus_ImageSaveToStream GDIPlus_ImageScale GDIPlus_LineBrushCreate GDIPlus_LineBrushCreateFromRect GDIPlus_LineBrushCreateFromRectWithAngle GDIPlus_LineBrushGetColors GDIPlus_LineBrushGetRect GDIPlus_LineBrushMultiplyTransform GDIPlus_LineBrushResetTransform GDIPlus_LineBrushSetBlend GDIPlus_LineBrushSetColors GDIPlus_LineBrushSetGammaCorrection GDIPlus_LineBrushSetLinearBlend GDIPlus_LineBrushSetPresetBlend GDIPlus_LineBrushSetSigmaBlend GDIPlus_LineBrushSetTransform GDIPlus_MatrixClone GDIPlus_MatrixCreate GDIPlus_MatrixDispose GDIPlus_MatrixGetElements GDIPlus_MatrixInvert GDIPlus_MatrixMultiply GDIPlus_MatrixRotate GDIPlus_MatrixScale GDIPlus_MatrixSetElements GDIPlus_MatrixShear GDIPlus_MatrixTransformPoints GDIPlus_MatrixTranslate GDIPlus_PaletteInitialize GDIPlus_ParamAdd GDIPlus_ParamInit GDIPlus_ParamSize GDIPlus_PathAddArc GDIPlus_PathAddBezier GDIPlus_PathAddClosedCurve GDIPlus_PathAddClosedCurve2 GDIPlus_PathAddCurve GDIPlus_PathAddCurve2 GDIPlus_PathAddCurve3 GDIPlus_PathAddEllipse GDIPlus_PathAddLine GDIPlus_PathAddLine2 GDIPlus_PathAddPath GDIPlus_PathAddPie GDIPlus_PathAddPolygon GDIPlus_PathAddRectangle GDIPlus_PathAddString GDIPlus_PathBrushCreate GDIPlus_PathBrushCreateFromPath GDIPlus_PathBrushGetCenterPoint GDIPlus_PathBrushGetFocusScales GDIPlus_PathBrushGetPointCount GDIPlus_PathBrushGetRect GDIPlus_PathBrushGetWrapMode GDIPlus_PathBrushMultiplyTransform GDIPlus_PathBrushResetTransform GDIPlus_PathBrushSetBlend GDIPlus_PathBrushSetCenterColor GDIPlus_PathBrushSetCenterPoint GDIPlus_PathBrushSetFocusScales GDIPlus_PathBrushSetGammaCorrection GDIPlus_PathBrushSetLinearBlend GDIPlus_PathBrushSetPresetBlend GDIPlus_PathBrushSetSigmaBlend GDIPlus_PathBrushSetSurroundColor GDIPlus_PathBrushSetSurroundColorsWithCount GDIPlus_PathBrushSetTransform GDIPlus_PathBrushSetWrapMode GDIPlus_PathClone GDIPlus_PathCloseFigure GDIPlus_PathCreate GDIPlus_PathCreate2 GDIPlus_PathDispose GDIPlus_PathFlatten GDIPlus_PathGetData GDIPlus_PathGetFillMode GDIPlus_PathGetLastPoint GDIPlus_PathGetPointCount GDIPlus_PathGetPoints GDIPlus_PathGetWorldBounds GDIPlus_PathIsOutlineVisiblePoint GDIPlus_PathIsVisiblePoint GDIPlus_PathIterCreate GDIPlus_PathIterDispose GDIPlus_PathIterGetSubpathCount GDIPlus_PathIterNextMarkerPath GDIPlus_PathIterNextSubpathPath GDIPlus_PathIterRewind GDIPlus_PathReset GDIPlus_PathReverse GDIPlus_PathSetFillMode GDIPlus_PathSetMarker GDIPlus_PathStartFigure GDIPlus_PathTransform GDIPlus_PathWarp GDIPlus_PathWiden GDIPlus_PathWindingModeOutline GDIPlus_PenCreate GDIPlus_PenCreate2 GDIPlus_PenDispose GDIPlus_PenGetAlignment GDIPlus_PenGetColor GDIPlus_PenGetCustomEndCap GDIPlus_PenGetDashCap GDIPlus_PenGetDashStyle GDIPlus_PenGetEndCap GDIPlus_PenGetMiterLimit GDIPlus_PenGetWidth GDIPlus_PenSetAlignment GDIPlus_PenSetColor GDIPlus_PenSetCustomEndCap GDIPlus_PenSetDashCap GDIPlus_PenSetDashStyle GDIPlus_PenSetEndCap GDIPlus_PenSetLineCap GDIPlus_PenSetLineJoin GDIPlus_PenSetMiterLimit GDIPlus_PenSetStartCap GDIPlus_PenSetWidth GDIPlus_RectFCreate GDIPlus_RegionClone GDIPlus_RegionCombinePath GDIPlus_RegionCombineRect GDIPlus_RegionCombineRegion GDIPlus_RegionCreate GDIPlus_RegionCreateFromPath GDIPlus_RegionCreateFromRect GDIPlus_RegionDispose GDIPlus_RegionGetBounds GDIPlus_RegionGetHRgn GDIPlus_RegionTransform GDIPlus_RegionTranslate GDIPlus_Shutdown GDIPlus_Startup GDIPlus_StringFormatCreate GDIPlus_StringFormatDispose GDIPlus_StringFormatGetMeasurableCharacterRangeCount GDIPlus_StringFormatSetAlign GDIPlus_StringFormatSetLineAlign GDIPlus_StringFormatSetMeasurableCharacterRanges GDIPlus_TextureCreate GDIPlus_TextureCreate2 GDIPlus_TextureCreateIA GetIP GUICtrlAVI_Close GUICtrlAVI_Create GUICtrlAVI_Destroy GUICtrlAVI_IsPlaying GUICtrlAVI_Open GUICtrlAVI_OpenEx GUICtrlAVI_Play GUICtrlAVI_Seek GUICtrlAVI_Show GUICtrlAVI_Stop GUICtrlButton_Click GUICtrlButton_Create GUICtrlButton_Destroy GUICtrlButton_Enable GUICtrlButton_GetCheck GUICtrlButton_GetFocus GUICtrlButton_GetIdealSize GUICtrlButton_GetImage GUICtrlButton_GetImageList GUICtrlButton_GetNote GUICtrlButton_GetNoteLength GUICtrlButton_GetSplitInfo GUICtrlButton_GetState GUICtrlButton_GetText GUICtrlButton_GetTextMargin GUICtrlButton_SetCheck GUICtrlButton_SetDontClick GUICtrlButton_SetFocus GUICtrlButton_SetImage GUICtrlButton_SetImageList GUICtrlButton_SetNote GUICtrlButton_SetShield GUICtrlButton_SetSize GUICtrlButton_SetSplitInfo GUICtrlButton_SetState GUICtrlButton_SetStyle GUICtrlButton_SetText GUICtrlButton_SetTextMargin GUICtrlButton_Show GUICtrlComboBoxEx_AddDir GUICtrlComboBoxEx_AddString GUICtrlComboBoxEx_BeginUpdate GUICtrlComboBoxEx_Create GUICtrlComboBoxEx_CreateSolidBitMap GUICtrlComboBoxEx_DeleteString GUICtrlComboBoxEx_Destroy GUICtrlComboBoxEx_EndUpdate GUICtrlComboBoxEx_FindStringExact GUICtrlComboBoxEx_GetComboBoxInfo GUICtrlComboBoxEx_GetComboControl GUICtrlComboBoxEx_GetCount GUICtrlComboBoxEx_GetCurSel GUICtrlComboBoxEx_GetDroppedControlRect GUICtrlComboBoxEx_GetDroppedControlRectEx GUICtrlComboBoxEx_GetDroppedState GUICtrlComboBoxEx_GetDroppedWidth GUICtrlComboBoxEx_GetEditControl GUICtrlComboBoxEx_GetEditSel GUICtrlComboBoxEx_GetEditText GUICtrlComboBoxEx_GetExtendedStyle GUICtrlComboBoxEx_GetExtendedUI GUICtrlComboBoxEx_GetImageList GUICtrlComboBoxEx_GetItem GUICtrlComboBoxEx_GetItemEx GUICtrlComboBoxEx_GetItemHeight GUICtrlComboBoxEx_GetItemImage GUICtrlComboBoxEx_GetItemIndent GUICtrlComboBoxEx_GetItemOverlayImage GUICtrlComboBoxEx_GetItemParam GUICtrlComboBoxEx_GetItemSelectedImage GUICtrlComboBoxEx_GetItemText GUICtrlComboBoxEx_GetItemTextLen GUICtrlComboBoxEx_GetList GUICtrlComboBoxEx_GetListArray GUICtrlComboBoxEx_GetLocale GUICtrlComboBoxEx_GetLocaleCountry GUICtrlComboBoxEx_GetLocaleLang GUICtrlComboBoxEx_GetLocalePrimLang GUICtrlComboBoxEx_GetLocaleSubLang GUICtrlComboBoxEx_GetMinVisible GUICtrlComboBoxEx_GetTopIndex GUICtrlComboBoxEx_GetUnicode GUICtrlComboBoxEx_InitStorage GUICtrlComboBoxEx_InsertString GUICtrlComboBoxEx_LimitText GUICtrlComboBoxEx_ReplaceEditSel GUICtrlComboBoxEx_ResetContent GUICtrlComboBoxEx_SetCurSel GUICtrlComboBoxEx_SetDroppedWidth GUICtrlComboBoxEx_SetEditSel GUICtrlComboBoxEx_SetEditText GUICtrlComboBoxEx_SetExtendedStyle GUICtrlComboBoxEx_SetExtendedUI GUICtrlComboBoxEx_SetImageList GUICtrlComboBoxEx_SetItem GUICtrlComboBoxEx_SetItemEx GUICtrlComboBoxEx_SetItemHeight GUICtrlComboBoxEx_SetItemImage GUICtrlComboBoxEx_SetItemIndent GUICtrlComboBoxEx_SetItemOverlayImage GUICtrlComboBoxEx_SetItemParam GUICtrlComboBoxEx_SetItemSelectedImage GUICtrlComboBoxEx_SetMinVisible GUICtrlComboBoxEx_SetTopIndex GUICtrlComboBoxEx_SetUnicode GUICtrlComboBoxEx_ShowDropDown GUICtrlComboBox_AddDir GUICtrlComboBox_AddString GUICtrlComboBox_AutoComplete GUICtrlComboBox_BeginUpdate GUICtrlComboBox_Create GUICtrlComboBox_DeleteString GUICtrlComboBox_Destroy GUICtrlComboBox_EndUpdate GUICtrlComboBox_FindString GUICtrlComboBox_FindStringExact GUICtrlComboBox_GetComboBoxInfo GUICtrlComboBox_GetCount GUICtrlComboBox_GetCueBanner GUICtrlComboBox_GetCurSel GUICtrlComboBox_GetDroppedControlRect GUICtrlComboBox_GetDroppedControlRectEx GUICtrlComboBox_GetDroppedState GUICtrlComboBox_GetDroppedWidth GUICtrlComboBox_GetEditSel GUICtrlComboBox_GetEditText GUICtrlComboBox_GetExtendedUI GUICtrlComboBox_GetHorizontalExtent GUICtrlComboBox_GetItemHeight GUICtrlComboBox_GetLBText GUICtrlComboBox_GetLBTextLen GUICtrlComboBox_GetList GUICtrlComboBox_GetListArray GUICtrlComboBox_GetLocale GUICtrlComboBox_GetLocaleCountry GUICtrlComboBox_GetLocaleLang GUICtrlComboBox_GetLocalePrimLang GUICtrlComboBox_GetLocaleSubLang GUICtrlComboBox_GetMinVisible GUICtrlComboBox_GetTopIndex GUICtrlComboBox_InitStorage GUICtrlComboBox_InsertString GUICtrlComboBox_LimitText GUICtrlComboBox_ReplaceEditSel GUICtrlComboBox_ResetContent GUICtrlComboBox_SelectString GUICtrlComboBox_SetCueBanner GUICtrlComboBox_SetCurSel GUICtrlComboBox_SetDroppedWidth GUICtrlComboBox_SetEditSel GUICtrlComboBox_SetEditText GUICtrlComboBox_SetExtendedUI GUICtrlComboBox_SetHorizontalExtent GUICtrlComboBox_SetItemHeight GUICtrlComboBox_SetMinVisible GUICtrlComboBox_SetTopIndex GUICtrlComboBox_ShowDropDown GUICtrlDTP_Create GUICtrlDTP_Destroy GUICtrlDTP_GetMCColor GUICtrlDTP_GetMCFont GUICtrlDTP_GetMonthCal GUICtrlDTP_GetRange GUICtrlDTP_GetRangeEx GUICtrlDTP_GetSystemTime GUICtrlDTP_GetSystemTimeEx GUICtrlDTP_SetFormat GUICtrlDTP_SetMCColor GUICtrlDTP_SetMCFont GUICtrlDTP_SetRange GUICtrlDTP_SetRangeEx GUICtrlDTP_SetSystemTime GUICtrlDTP_SetSystemTimeEx GUICtrlEdit_AppendText GUICtrlEdit_BeginUpdate GUICtrlEdit_CanUndo GUICtrlEdit_CharFromPos GUICtrlEdit_Create GUICtrlEdit_Destroy GUICtrlEdit_EmptyUndoBuffer GUICtrlEdit_EndUpdate GUICtrlEdit_Find GUICtrlEdit_FmtLines GUICtrlEdit_GetCueBanner GUICtrlEdit_GetFirstVisibleLine GUICtrlEdit_GetLimitText GUICtrlEdit_GetLine GUICtrlEdit_GetLineCount GUICtrlEdit_GetMargins GUICtrlEdit_GetModify GUICtrlEdit_GetPasswordChar GUICtrlEdit_GetRECT GUICtrlEdit_GetRECTEx GUICtrlEdit_GetSel GUICtrlEdit_GetText GUICtrlEdit_GetTextLen GUICtrlEdit_HideBalloonTip GUICtrlEdit_InsertText GUICtrlEdit_LineFromChar GUICtrlEdit_LineIndex GUICtrlEdit_LineLength GUICtrlEdit_LineScroll GUICtrlEdit_PosFromChar GUICtrlEdit_ReplaceSel GUICtrlEdit_Scroll GUICtrlEdit_SetCueBanner GUICtrlEdit_SetLimitText GUICtrlEdit_SetMargins GUICtrlEdit_SetModify GUICtrlEdit_SetPasswordChar GUICtrlEdit_SetReadOnly GUICtrlEdit_SetRECT GUICtrlEdit_SetRECTEx GUICtrlEdit_SetRECTNP GUICtrlEdit_SetRectNPEx GUICtrlEdit_SetSel GUICtrlEdit_SetTabStops GUICtrlEdit_SetText GUICtrlEdit_ShowBalloonTip GUICtrlEdit_Undo GUICtrlHeader_AddItem GUICtrlHeader_ClearFilter GUICtrlHeader_ClearFilterAll GUICtrlHeader_Create GUICtrlHeader_CreateDragImage GUICtrlHeader_DeleteItem GUICtrlHeader_Destroy GUICtrlHeader_EditFilter GUICtrlHeader_GetBitmapMargin GUICtrlHeader_GetImageList GUICtrlHeader_GetItem GUICtrlHeader_GetItemAlign GUICtrlHeader_GetItemBitmap GUICtrlHeader_GetItemCount GUICtrlHeader_GetItemDisplay GUICtrlHeader_GetItemFlags GUICtrlHeader_GetItemFormat GUICtrlHeader_GetItemImage GUICtrlHeader_GetItemOrder GUICtrlHeader_GetItemParam GUICtrlHeader_GetItemRect GUICtrlHeader_GetItemRectEx GUICtrlHeader_GetItemText GUICtrlHeader_GetItemWidth GUICtrlHeader_GetOrderArray GUICtrlHeader_GetUnicodeFormat GUICtrlHeader_HitTest GUICtrlHeader_InsertItem GUICtrlHeader_Layout GUICtrlHeader_OrderToIndex GUICtrlHeader_SetBitmapMargin GUICtrlHeader_SetFilterChangeTimeout GUICtrlHeader_SetHotDivider GUICtrlHeader_SetImageList GUICtrlHeader_SetItem GUICtrlHeader_SetItemAlign GUICtrlHeader_SetItemBitmap GUICtrlHeader_SetItemDisplay GUICtrlHeader_SetItemFlags GUICtrlHeader_SetItemFormat GUICtrlHeader_SetItemImage GUICtrlHeader_SetItemOrder GUICtrlHeader_SetItemParam GUICtrlHeader_SetItemText GUICtrlHeader_SetItemWidth GUICtrlHeader_SetOrderArray GUICtrlHeader_SetUnicodeFormat GUICtrlIpAddress_ClearAddress GUICtrlIpAddress_Create GUICtrlIpAddress_Destroy GUICtrlIpAddress_Get GUICtrlIpAddress_GetArray GUICtrlIpAddress_GetEx GUICtrlIpAddress_IsBlank GUICtrlIpAddress_Set GUICtrlIpAddress_SetArray GUICtrlIpAddress_SetEx GUICtrlIpAddress_SetFocus GUICtrlIpAddress_SetFont GUICtrlIpAddress_SetRange GUICtrlIpAddress_ShowHide GUICtrlListBox_AddFile GUICtrlListBox_AddString GUICtrlListBox_BeginUpdate GUICtrlListBox_ClickItem GUICtrlListBox_Create GUICtrlListBox_DeleteString GUICtrlListBox_Destroy GUICtrlListBox_Dir GUICtrlListBox_EndUpdate GUICtrlListBox_FindInText GUICtrlListBox_FindString GUICtrlListBox_GetAnchorIndex GUICtrlListBox_GetCaretIndex GUICtrlListBox_GetCount GUICtrlListBox_GetCurSel GUICtrlListBox_GetHorizontalExtent GUICtrlListBox_GetItemData GUICtrlListBox_GetItemHeight GUICtrlListBox_GetItemRect GUICtrlListBox_GetItemRectEx GUICtrlListBox_GetListBoxInfo GUICtrlListBox_GetLocale GUICtrlListBox_GetLocaleCountry GUICtrlListBox_GetLocaleLang GUICtrlListBox_GetLocalePrimLang GUICtrlListBox_GetLocaleSubLang GUICtrlListBox_GetSel GUICtrlListBox_GetSelCount GUICtrlListBox_GetSelItems GUICtrlListBox_GetSelItemsText GUICtrlListBox_GetText GUICtrlListBox_GetTextLen GUICtrlListBox_GetTopIndex GUICtrlListBox_InitStorage GUICtrlListBox_InsertString GUICtrlListBox_ItemFromPoint GUICtrlListBox_ReplaceString GUICtrlListBox_ResetContent GUICtrlListBox_SelectString GUICtrlListBox_SelItemRange GUICtrlListBox_SelItemRangeEx GUICtrlListBox_SetAnchorIndex GUICtrlListBox_SetCaretIndex GUICtrlListBox_SetColumnWidth GUICtrlListBox_SetCurSel GUICtrlListBox_SetHorizontalExtent GUICtrlListBox_SetItemData GUICtrlListBox_SetItemHeight GUICtrlListBox_SetLocale GUICtrlListBox_SetSel GUICtrlListBox_SetTabStops GUICtrlListBox_SetTopIndex GUICtrlListBox_Sort GUICtrlListBox_SwapString GUICtrlListBox_UpdateHScroll GUICtrlListView_AddArray GUICtrlListView_AddColumn GUICtrlListView_AddItem GUICtrlListView_AddSubItem GUICtrlListView_ApproximateViewHeight GUICtrlListView_ApproximateViewRect GUICtrlListView_ApproximateViewWidth GUICtrlListView_Arrange GUICtrlListView_BeginUpdate GUICtrlListView_CancelEditLabel GUICtrlListView_ClickItem GUICtrlListView_CopyItems GUICtrlListView_Create GUICtrlListView_CreateDragImage GUICtrlListView_CreateSolidBitMap GUICtrlListView_DeleteAllItems GUICtrlListView_DeleteColumn GUICtrlListView_DeleteItem GUICtrlListView_DeleteItemsSelected GUICtrlListView_Destroy GUICtrlListView_DrawDragImage GUICtrlListView_EditLabel GUICtrlListView_EnableGroupView GUICtrlListView_EndUpdate GUICtrlListView_EnsureVisible GUICtrlListView_FindInText GUICtrlListView_FindItem GUICtrlListView_FindNearest GUICtrlListView_FindParam GUICtrlListView_FindText GUICtrlListView_GetBkColor GUICtrlListView_GetBkImage GUICtrlListView_GetCallbackMask GUICtrlListView_GetColumn GUICtrlListView_GetColumnCount GUICtrlListView_GetColumnOrder GUICtrlListView_GetColumnOrderArray GUICtrlListView_GetColumnWidth GUICtrlListView_GetCounterPage GUICtrlListView_GetEditControl GUICtrlListView_GetExtendedListViewStyle GUICtrlListView_GetFocusedGroup GUICtrlListView_GetGroupCount GUICtrlListView_GetGroupInfo GUICtrlListView_GetGroupInfoByIndex GUICtrlListView_GetGroupRect GUICtrlListView_GetGroupViewEnabled GUICtrlListView_GetHeader GUICtrlListView_GetHotCursor GUICtrlListView_GetHotItem GUICtrlListView_GetHoverTime GUICtrlListView_GetImageList GUICtrlListView_GetISearchString GUICtrlListView_GetItem GUICtrlListView_GetItemChecked GUICtrlListView_GetItemCount GUICtrlListView_GetItemCut GUICtrlListView_GetItemDropHilited GUICtrlListView_GetItemEx GUICtrlListView_GetItemFocused GUICtrlListView_GetItemGroupID GUICtrlListView_GetItemImage GUICtrlListView_GetItemIndent GUICtrlListView_GetItemParam GUICtrlListView_GetItemPosition GUICtrlListView_GetItemPositionX GUICtrlListView_GetItemPositionY GUICtrlListView_GetItemRect GUICtrlListView_GetItemRectEx GUICtrlListView_GetItemSelected GUICtrlListView_GetItemSpacing GUICtrlListView_GetItemSpacingX GUICtrlListView_GetItemSpacingY GUICtrlListView_GetItemState GUICtrlListView_GetItemStateImage GUICtrlListView_GetItemText GUICtrlListView_GetItemTextArray GUICtrlListView_GetItemTextString GUICtrlListView_GetNextItem GUICtrlListView_GetNumberOfWorkAreas GUICtrlListView_GetOrigin GUICtrlListView_GetOriginX GUICtrlListView_GetOriginY GUICtrlListView_GetOutlineColor GUICtrlListView_GetSelectedColumn GUICtrlListView_GetSelectedCount GUICtrlListView_GetSelectedIndices GUICtrlListView_GetSelectionMark GUICtrlListView_GetStringWidth GUICtrlListView_GetSubItemRect GUICtrlListView_GetTextBkColor GUICtrlListView_GetTextColor GUICtrlListView_GetToolTips GUICtrlListView_GetTopIndex GUICtrlListView_GetUnicodeFormat GUICtrlListView_GetView GUICtrlListView_GetViewDetails GUICtrlListView_GetViewLarge GUICtrlListView_GetViewList GUICtrlListView_GetViewRect GUICtrlListView_GetViewSmall GUICtrlListView_GetViewTile GUICtrlListView_HideColumn GUICtrlListView_HitTest GUICtrlListView_InsertColumn GUICtrlListView_InsertGroup GUICtrlListView_InsertItem GUICtrlListView_JustifyColumn GUICtrlListView_MapIDToIndex GUICtrlListView_MapIndexToID GUICtrlListView_RedrawItems GUICtrlListView_RegisterSortCallBack GUICtrlListView_RemoveAllGroups GUICtrlListView_RemoveGroup GUICtrlListView_Scroll GUICtrlListView_SetBkColor GUICtrlListView_SetBkImage GUICtrlListView_SetCallBackMask GUICtrlListView_SetColumn GUICtrlListView_SetColumnOrder GUICtrlListView_SetColumnOrderArray GUICtrlListView_SetColumnWidth GUICtrlListView_SetExtendedListViewStyle GUICtrlListView_SetGroupInfo GUICtrlListView_SetHotItem GUICtrlListView_SetHoverTime GUICtrlListView_SetIconSpacing GUICtrlListView_SetImageList GUICtrlListView_SetItem GUICtrlListView_SetItemChecked GUICtrlListView_SetItemCount GUICtrlListView_SetItemCut GUICtrlListView_SetItemDropHilited GUICtrlListView_SetItemEx GUICtrlListView_SetItemFocused GUICtrlListView_SetItemGroupID GUICtrlListView_SetItemImage GUICtrlListView_SetItemIndent GUICtrlListView_SetItemParam GUICtrlListView_SetItemPosition GUICtrlListView_SetItemPosition32 GUICtrlListView_SetItemSelected GUICtrlListView_SetItemState GUICtrlListView_SetItemStateImage GUICtrlListView_SetItemText GUICtrlListView_SetOutlineColor GUICtrlListView_SetSelectedColumn GUICtrlListView_SetSelectionMark GUICtrlListView_SetTextBkColor GUICtrlListView_SetTextColor GUICtrlListView_SetToolTips GUICtrlListView_SetUnicodeFormat GUICtrlListView_SetView GUICtrlListView_SetWorkAreas GUICtrlListView_SimpleSort GUICtrlListView_SortItems GUICtrlListView_SubItemHitTest GUICtrlListView_UnRegisterSortCallBack GUICtrlMenu_AddMenuItem GUICtrlMenu_AppendMenu GUICtrlMenu_CalculatePopupWindowPosition GUICtrlMenu_CheckMenuItem GUICtrlMenu_CheckRadioItem GUICtrlMenu_CreateMenu GUICtrlMenu_CreatePopup GUICtrlMenu_DeleteMenu GUICtrlMenu_DestroyMenu GUICtrlMenu_DrawMenuBar GUICtrlMenu_EnableMenuItem GUICtrlMenu_FindItem GUICtrlMenu_FindParent GUICtrlMenu_GetItemBmp GUICtrlMenu_GetItemBmpChecked GUICtrlMenu_GetItemBmpUnchecked GUICtrlMenu_GetItemChecked GUICtrlMenu_GetItemCount GUICtrlMenu_GetItemData GUICtrlMenu_GetItemDefault GUICtrlMenu_GetItemDisabled GUICtrlMenu_GetItemEnabled GUICtrlMenu_GetItemGrayed GUICtrlMenu_GetItemHighlighted GUICtrlMenu_GetItemID GUICtrlMenu_GetItemInfo GUICtrlMenu_GetItemRect GUICtrlMenu_GetItemRectEx GUICtrlMenu_GetItemState GUICtrlMenu_GetItemStateEx GUICtrlMenu_GetItemSubMenu GUICtrlMenu_GetItemText GUICtrlMenu_GetItemType GUICtrlMenu_GetMenu GUICtrlMenu_GetMenuBackground GUICtrlMenu_GetMenuBarInfo GUICtrlMenu_GetMenuContextHelpID GUICtrlMenu_GetMenuData GUICtrlMenu_GetMenuDefaultItem GUICtrlMenu_GetMenuHeight GUICtrlMenu_GetMenuInfo GUICtrlMenu_GetMenuStyle GUICtrlMenu_GetSystemMenu GUICtrlMenu_InsertMenuItem GUICtrlMenu_InsertMenuItemEx GUICtrlMenu_IsMenu GUICtrlMenu_LoadMenu GUICtrlMenu_MapAccelerator GUICtrlMenu_MenuItemFromPoint GUICtrlMenu_RemoveMenu GUICtrlMenu_SetItemBitmaps GUICtrlMenu_SetItemBmp GUICtrlMenu_SetItemBmpChecked GUICtrlMenu_SetItemBmpUnchecked GUICtrlMenu_SetItemChecked GUICtrlMenu_SetItemData GUICtrlMenu_SetItemDefault GUICtrlMenu_SetItemDisabled GUICtrlMenu_SetItemEnabled GUICtrlMenu_SetItemGrayed GUICtrlMenu_SetItemHighlighted GUICtrlMenu_SetItemID GUICtrlMenu_SetItemInfo GUICtrlMenu_SetItemState GUICtrlMenu_SetItemSubMenu GUICtrlMenu_SetItemText GUICtrlMenu_SetItemType GUICtrlMenu_SetMenu GUICtrlMenu_SetMenuBackground GUICtrlMenu_SetMenuContextHelpID GUICtrlMenu_SetMenuData GUICtrlMenu_SetMenuDefaultItem GUICtrlMenu_SetMenuHeight GUICtrlMenu_SetMenuInfo GUICtrlMenu_SetMenuStyle GUICtrlMenu_TrackPopupMenu GUICtrlMonthCal_Create GUICtrlMonthCal_Destroy GUICtrlMonthCal_GetCalendarBorder GUICtrlMonthCal_GetCalendarCount GUICtrlMonthCal_GetColor GUICtrlMonthCal_GetColorArray GUICtrlMonthCal_GetCurSel GUICtrlMonthCal_GetCurSelStr GUICtrlMonthCal_GetFirstDOW GUICtrlMonthCal_GetFirstDOWStr GUICtrlMonthCal_GetMaxSelCount GUICtrlMonthCal_GetMaxTodayWidth GUICtrlMonthCal_GetMinReqHeight GUICtrlMonthCal_GetMinReqRect GUICtrlMonthCal_GetMinReqRectArray GUICtrlMonthCal_GetMinReqWidth GUICtrlMonthCal_GetMonthDelta GUICtrlMonthCal_GetMonthRange GUICtrlMonthCal_GetMonthRangeMax GUICtrlMonthCal_GetMonthRangeMaxStr GUICtrlMonthCal_GetMonthRangeMin GUICtrlMonthCal_GetMonthRangeMinStr GUICtrlMonthCal_GetMonthRangeSpan GUICtrlMonthCal_GetRange GUICtrlMonthCal_GetRangeMax GUICtrlMonthCal_GetRangeMaxStr GUICtrlMonthCal_GetRangeMin GUICtrlMonthCal_GetRangeMinStr GUICtrlMonthCal_GetSelRange GUICtrlMonthCal_GetSelRangeMax GUICtrlMonthCal_GetSelRangeMaxStr GUICtrlMonthCal_GetSelRangeMin GUICtrlMonthCal_GetSelRangeMinStr GUICtrlMonthCal_GetToday GUICtrlMonthCal_GetTodayStr GUICtrlMonthCal_GetUnicodeFormat GUICtrlMonthCal_HitTest GUICtrlMonthCal_SetCalendarBorder GUICtrlMonthCal_SetColor GUICtrlMonthCal_SetCurSel GUICtrlMonthCal_SetDayState GUICtrlMonthCal_SetFirstDOW GUICtrlMonthCal_SetMaxSelCount GUICtrlMonthCal_SetMonthDelta GUICtrlMonthCal_SetRange GUICtrlMonthCal_SetSelRange GUICtrlMonthCal_SetToday GUICtrlMonthCal_SetUnicodeFormat GUICtrlRebar_AddBand GUICtrlRebar_AddToolBarBand GUICtrlRebar_BeginDrag GUICtrlRebar_Create GUICtrlRebar_DeleteBand GUICtrlRebar_Destroy GUICtrlRebar_DragMove GUICtrlRebar_EndDrag GUICtrlRebar_GetBandBackColor GUICtrlRebar_GetBandBorders GUICtrlRebar_GetBandBordersEx GUICtrlRebar_GetBandChildHandle GUICtrlRebar_GetBandChildSize GUICtrlRebar_GetBandCount GUICtrlRebar_GetBandForeColor GUICtrlRebar_GetBandHeaderSize GUICtrlRebar_GetBandID GUICtrlRebar_GetBandIdealSize GUICtrlRebar_GetBandLength GUICtrlRebar_GetBandLParam GUICtrlRebar_GetBandMargins GUICtrlRebar_GetBandMarginsEx GUICtrlRebar_GetBandRect GUICtrlRebar_GetBandRectEx GUICtrlRebar_GetBandStyle GUICtrlRebar_GetBandStyleBreak GUICtrlRebar_GetBandStyleChildEdge GUICtrlRebar_GetBandStyleFixedBMP GUICtrlRebar_GetBandStyleFixedSize GUICtrlRebar_GetBandStyleGripperAlways GUICtrlRebar_GetBandStyleHidden GUICtrlRebar_GetBandStyleHideTitle GUICtrlRebar_GetBandStyleNoGripper GUICtrlRebar_GetBandStyleTopAlign GUICtrlRebar_GetBandStyleUseChevron GUICtrlRebar_GetBandStyleVariableHeight GUICtrlRebar_GetBandText GUICtrlRebar_GetBarHeight GUICtrlRebar_GetBarInfo GUICtrlRebar_GetBKColor GUICtrlRebar_GetColorScheme GUICtrlRebar_GetRowCount GUICtrlRebar_GetRowHeight GUICtrlRebar_GetTextColor GUICtrlRebar_GetToolTips GUICtrlRebar_GetUnicodeFormat GUICtrlRebar_HitTest GUICtrlRebar_IDToIndex GUICtrlRebar_MaximizeBand GUICtrlRebar_MinimizeBand GUICtrlRebar_MoveBand GUICtrlRebar_SetBandBackColor GUICtrlRebar_SetBandForeColor GUICtrlRebar_SetBandHeaderSize GUICtrlRebar_SetBandID GUICtrlRebar_SetBandIdealSize GUICtrlRebar_SetBandLength GUICtrlRebar_SetBandLParam GUICtrlRebar_SetBandStyle GUICtrlRebar_SetBandStyleBreak GUICtrlRebar_SetBandStyleChildEdge GUICtrlRebar_SetBandStyleFixedBMP GUICtrlRebar_SetBandStyleFixedSize GUICtrlRebar_SetBandStyleGripperAlways GUICtrlRebar_SetBandStyleHidden GUICtrlRebar_SetBandStyleHideTitle GUICtrlRebar_SetBandStyleNoGripper GUICtrlRebar_SetBandStyleTopAlign GUICtrlRebar_SetBandStyleUseChevron GUICtrlRebar_SetBandStyleVariableHeight GUICtrlRebar_SetBandText GUICtrlRebar_SetBarInfo GUICtrlRebar_SetBKColor GUICtrlRebar_SetColorScheme GUICtrlRebar_SetTextColor GUICtrlRebar_SetToolTips GUICtrlRebar_SetUnicodeFormat GUICtrlRebar_ShowBand GUICtrlRichEdit_AppendText GUICtrlRichEdit_AutoDetectURL GUICtrlRichEdit_CanPaste GUICtrlRichEdit_CanPasteSpecial GUICtrlRichEdit_CanRedo GUICtrlRichEdit_CanUndo GUICtrlRichEdit_ChangeFontSize GUICtrlRichEdit_Copy GUICtrlRichEdit_Create GUICtrlRichEdit_Cut GUICtrlRichEdit_Deselect GUICtrlRichEdit_Destroy GUICtrlRichEdit_EmptyUndoBuffer GUICtrlRichEdit_FindText GUICtrlRichEdit_FindTextInRange GUICtrlRichEdit_GetBkColor GUICtrlRichEdit_GetCharAttributes GUICtrlRichEdit_GetCharBkColor GUICtrlRichEdit_GetCharColor GUICtrlRichEdit_GetCharPosFromXY GUICtrlRichEdit_GetCharPosOfNextWord GUICtrlRichEdit_GetCharPosOfPreviousWord GUICtrlRichEdit_GetCharWordBreakInfo GUICtrlRichEdit_GetFirstCharPosOnLine GUICtrlRichEdit_GetFont GUICtrlRichEdit_GetLineCount GUICtrlRichEdit_GetLineLength GUICtrlRichEdit_GetLineNumberFromCharPos GUICtrlRichEdit_GetNextRedo GUICtrlRichEdit_GetNextUndo GUICtrlRichEdit_GetNumberOfFirstVisibleLine GUICtrlRichEdit_GetParaAlignment GUICtrlRichEdit_GetParaAttributes GUICtrlRichEdit_GetParaBorder GUICtrlRichEdit_GetParaIndents GUICtrlRichEdit_GetParaNumbering GUICtrlRichEdit_GetParaShading GUICtrlRichEdit_GetParaSpacing GUICtrlRichEdit_GetParaTabStops GUICtrlRichEdit_GetPasswordChar GUICtrlRichEdit_GetRECT GUICtrlRichEdit_GetScrollPos GUICtrlRichEdit_GetSel GUICtrlRichEdit_GetSelAA GUICtrlRichEdit_GetSelText GUICtrlRichEdit_GetSpaceUnit GUICtrlRichEdit_GetText GUICtrlRichEdit_GetTextInLine GUICtrlRichEdit_GetTextInRange GUICtrlRichEdit_GetTextLength GUICtrlRichEdit_GetVersion GUICtrlRichEdit_GetXYFromCharPos GUICtrlRichEdit_GetZoom GUICtrlRichEdit_GotoCharPos GUICtrlRichEdit_HideSelection GUICtrlRichEdit_InsertText GUICtrlRichEdit_IsModified GUICtrlRichEdit_IsTextSelected GUICtrlRichEdit_Paste GUICtrlRichEdit_PasteSpecial GUICtrlRichEdit_PauseRedraw GUICtrlRichEdit_Redo GUICtrlRichEdit_ReplaceText GUICtrlRichEdit_ResumeRedraw GUICtrlRichEdit_ScrollLineOrPage GUICtrlRichEdit_ScrollLines GUICtrlRichEdit_ScrollToCaret GUICtrlRichEdit_SetBkColor GUICtrlRichEdit_SetCharAttributes GUICtrlRichEdit_SetCharBkColor GUICtrlRichEdit_SetCharColor GUICtrlRichEdit_SetEventMask GUICtrlRichEdit_SetFont GUICtrlRichEdit_SetLimitOnText GUICtrlRichEdit_SetModified GUICtrlRichEdit_SetParaAlignment GUICtrlRichEdit_SetParaAttributes GUICtrlRichEdit_SetParaBorder GUICtrlRichEdit_SetParaIndents GUICtrlRichEdit_SetParaNumbering GUICtrlRichEdit_SetParaShading GUICtrlRichEdit_SetParaSpacing GUICtrlRichEdit_SetParaTabStops GUICtrlRichEdit_SetPasswordChar GUICtrlRichEdit_SetReadOnly GUICtrlRichEdit_SetRECT GUICtrlRichEdit_SetScrollPos GUICtrlRichEdit_SetSel GUICtrlRichEdit_SetSpaceUnit GUICtrlRichEdit_SetTabStops GUICtrlRichEdit_SetText GUICtrlRichEdit_SetUndoLimit GUICtrlRichEdit_SetZoom GUICtrlRichEdit_StreamFromFile GUICtrlRichEdit_StreamFromVar GUICtrlRichEdit_StreamToFile GUICtrlRichEdit_StreamToVar GUICtrlRichEdit_Undo GUICtrlSlider_ClearSel GUICtrlSlider_ClearTics GUICtrlSlider_Create GUICtrlSlider_Destroy GUICtrlSlider_GetBuddy GUICtrlSlider_GetChannelRect GUICtrlSlider_GetChannelRectEx GUICtrlSlider_GetLineSize GUICtrlSlider_GetLogicalTics GUICtrlSlider_GetNumTics GUICtrlSlider_GetPageSize GUICtrlSlider_GetPos GUICtrlSlider_GetRange GUICtrlSlider_GetRangeMax GUICtrlSlider_GetRangeMin GUICtrlSlider_GetSel GUICtrlSlider_GetSelEnd GUICtrlSlider_GetSelStart GUICtrlSlider_GetThumbLength GUICtrlSlider_GetThumbRect GUICtrlSlider_GetThumbRectEx GUICtrlSlider_GetTic GUICtrlSlider_GetTicPos GUICtrlSlider_GetToolTips GUICtrlSlider_GetUnicodeFormat GUICtrlSlider_SetBuddy GUICtrlSlider_SetLineSize GUICtrlSlider_SetPageSize GUICtrlSlider_SetPos GUICtrlSlider_SetRange GUICtrlSlider_SetRangeMax GUICtrlSlider_SetRangeMin GUICtrlSlider_SetSel GUICtrlSlider_SetSelEnd GUICtrlSlider_SetSelStart GUICtrlSlider_SetThumbLength GUICtrlSlider_SetTic GUICtrlSlider_SetTicFreq GUICtrlSlider_SetTipSide GUICtrlSlider_SetToolTips GUICtrlSlider_SetUnicodeFormat GUICtrlStatusBar_Create GUICtrlStatusBar_Destroy GUICtrlStatusBar_EmbedControl GUICtrlStatusBar_GetBorders GUICtrlStatusBar_GetBordersHorz GUICtrlStatusBar_GetBordersRect GUICtrlStatusBar_GetBordersVert GUICtrlStatusBar_GetCount GUICtrlStatusBar_GetHeight GUICtrlStatusBar_GetIcon GUICtrlStatusBar_GetParts GUICtrlStatusBar_GetRect GUICtrlStatusBar_GetRectEx GUICtrlStatusBar_GetText GUICtrlStatusBar_GetTextFlags GUICtrlStatusBar_GetTextLength GUICtrlStatusBar_GetTextLengthEx GUICtrlStatusBar_GetTipText GUICtrlStatusBar_GetUnicodeFormat GUICtrlStatusBar_GetWidth GUICtrlStatusBar_IsSimple GUICtrlStatusBar_Resize GUICtrlStatusBar_SetBkColor GUICtrlStatusBar_SetIcon GUICtrlStatusBar_SetMinHeight GUICtrlStatusBar_SetParts GUICtrlStatusBar_SetSimple GUICtrlStatusBar_SetText GUICtrlStatusBar_SetTipText GUICtrlStatusBar_SetUnicodeFormat GUICtrlStatusBar_ShowHide GUICtrlTab_ActivateTab GUICtrlTab_ClickTab GUICtrlTab_Create GUICtrlTab_DeleteAllItems GUICtrlTab_DeleteItem GUICtrlTab_DeselectAll GUICtrlTab_Destroy GUICtrlTab_FindTab GUICtrlTab_GetCurFocus GUICtrlTab_GetCurSel GUICtrlTab_GetDisplayRect GUICtrlTab_GetDisplayRectEx GUICtrlTab_GetExtendedStyle GUICtrlTab_GetImageList GUICtrlTab_GetItem GUICtrlTab_GetItemCount GUICtrlTab_GetItemImage GUICtrlTab_GetItemParam GUICtrlTab_GetItemRect GUICtrlTab_GetItemRectEx GUICtrlTab_GetItemState GUICtrlTab_GetItemText GUICtrlTab_GetRowCount GUICtrlTab_GetToolTips GUICtrlTab_GetUnicodeFormat GUICtrlTab_HighlightItem GUICtrlTab_HitTest GUICtrlTab_InsertItem GUICtrlTab_RemoveImage GUICtrlTab_SetCurFocus GUICtrlTab_SetCurSel GUICtrlTab_SetExtendedStyle GUICtrlTab_SetImageList GUICtrlTab_SetItem GUICtrlTab_SetItemImage GUICtrlTab_SetItemParam GUICtrlTab_SetItemSize GUICtrlTab_SetItemState GUICtrlTab_SetItemText GUICtrlTab_SetMinTabWidth GUICtrlTab_SetPadding GUICtrlTab_SetToolTips GUICtrlTab_SetUnicodeFormat GUICtrlToolbar_AddBitmap GUICtrlToolbar_AddButton GUICtrlToolbar_AddButtonSep GUICtrlToolbar_AddString GUICtrlToolbar_ButtonCount GUICtrlToolbar_CheckButton GUICtrlToolbar_ClickAccel GUICtrlToolbar_ClickButton GUICtrlToolbar_ClickIndex GUICtrlToolbar_CommandToIndex GUICtrlToolbar_Create GUICtrlToolbar_Customize GUICtrlToolbar_DeleteButton GUICtrlToolbar_Destroy GUICtrlToolbar_EnableButton GUICtrlToolbar_FindToolbar GUICtrlToolbar_GetAnchorHighlight GUICtrlToolbar_GetBitmapFlags GUICtrlToolbar_GetButtonBitmap GUICtrlToolbar_GetButtonInfo GUICtrlToolbar_GetButtonInfoEx GUICtrlToolbar_GetButtonParam GUICtrlToolbar_GetButtonRect GUICtrlToolbar_GetButtonRectEx GUICtrlToolbar_GetButtonSize GUICtrlToolbar_GetButtonState GUICtrlToolbar_GetButtonStyle GUICtrlToolbar_GetButtonText GUICtrlToolbar_GetColorScheme GUICtrlToolbar_GetDisabledImageList GUICtrlToolbar_GetExtendedStyle GUICtrlToolbar_GetHotImageList GUICtrlToolbar_GetHotItem GUICtrlToolbar_GetImageList GUICtrlToolbar_GetInsertMark GUICtrlToolbar_GetInsertMarkColor GUICtrlToolbar_GetMaxSize GUICtrlToolbar_GetMetrics GUICtrlToolbar_GetPadding GUICtrlToolbar_GetRows GUICtrlToolbar_GetString GUICtrlToolbar_GetStyle GUICtrlToolbar_GetStyleAltDrag GUICtrlToolbar_GetStyleCustomErase GUICtrlToolbar_GetStyleFlat GUICtrlToolbar_GetStyleList GUICtrlToolbar_GetStyleRegisterDrop GUICtrlToolbar_GetStyleToolTips GUICtrlToolbar_GetStyleTransparent GUICtrlToolbar_GetStyleWrapable GUICtrlToolbar_GetTextRows GUICtrlToolbar_GetToolTips GUICtrlToolbar_GetUnicodeFormat GUICtrlToolbar_HideButton GUICtrlToolbar_HighlightButton GUICtrlToolbar_HitTest GUICtrlToolbar_IndexToCommand GUICtrlToolbar_InsertButton GUICtrlToolbar_InsertMarkHitTest GUICtrlToolbar_IsButtonChecked GUICtrlToolbar_IsButtonEnabled GUICtrlToolbar_IsButtonHidden GUICtrlToolbar_IsButtonHighlighted GUICtrlToolbar_IsButtonIndeterminate GUICtrlToolbar_IsButtonPressed GUICtrlToolbar_LoadBitmap GUICtrlToolbar_LoadImages GUICtrlToolbar_MapAccelerator GUICtrlToolbar_MoveButton GUICtrlToolbar_PressButton GUICtrlToolbar_SetAnchorHighlight GUICtrlToolbar_SetBitmapSize GUICtrlToolbar_SetButtonBitMap GUICtrlToolbar_SetButtonInfo GUICtrlToolbar_SetButtonInfoEx GUICtrlToolbar_SetButtonParam GUICtrlToolbar_SetButtonSize GUICtrlToolbar_SetButtonState GUICtrlToolbar_SetButtonStyle GUICtrlToolbar_SetButtonText GUICtrlToolbar_SetButtonWidth GUICtrlToolbar_SetCmdID GUICtrlToolbar_SetColorScheme GUICtrlToolbar_SetDisabledImageList GUICtrlToolbar_SetDrawTextFlags GUICtrlToolbar_SetExtendedStyle GUICtrlToolbar_SetHotImageList GUICtrlToolbar_SetHotItem GUICtrlToolbar_SetImageList GUICtrlToolbar_SetIndent GUICtrlToolbar_SetIndeterminate GUICtrlToolbar_SetInsertMark GUICtrlToolbar_SetInsertMarkColor GUICtrlToolbar_SetMaxTextRows GUICtrlToolbar_SetMetrics GUICtrlToolbar_SetPadding GUICtrlToolbar_SetParent GUICtrlToolbar_SetRows GUICtrlToolbar_SetStyle GUICtrlToolbar_SetStyleAltDrag GUICtrlToolbar_SetStyleCustomErase GUICtrlToolbar_SetStyleFlat GUICtrlToolbar_SetStyleList GUICtrlToolbar_SetStyleRegisterDrop GUICtrlToolbar_SetStyleToolTips GUICtrlToolbar_SetStyleTransparent GUICtrlToolbar_SetStyleWrapable GUICtrlToolbar_SetToolTips GUICtrlToolbar_SetUnicodeFormat GUICtrlToolbar_SetWindowTheme GUICtrlTreeView_Add GUICtrlTreeView_AddChild GUICtrlTreeView_AddChildFirst GUICtrlTreeView_AddFirst GUICtrlTreeView_BeginUpdate GUICtrlTreeView_ClickItem GUICtrlTreeView_Create GUICtrlTreeView_CreateDragImage GUICtrlTreeView_CreateSolidBitMap GUICtrlTreeView_Delete GUICtrlTreeView_DeleteAll GUICtrlTreeView_DeleteChildren GUICtrlTreeView_Destroy GUICtrlTreeView_DisplayRect GUICtrlTreeView_DisplayRectEx GUICtrlTreeView_EditText GUICtrlTreeView_EndEdit GUICtrlTreeView_EndUpdate GUICtrlTreeView_EnsureVisible GUICtrlTreeView_Expand GUICtrlTreeView_ExpandedOnce GUICtrlTreeView_FindItem GUICtrlTreeView_FindItemEx GUICtrlTreeView_GetBkColor GUICtrlTreeView_GetBold GUICtrlTreeView_GetChecked GUICtrlTreeView_GetChildCount GUICtrlTreeView_GetChildren GUICtrlTreeView_GetCount GUICtrlTreeView_GetCut GUICtrlTreeView_GetDropTarget GUICtrlTreeView_GetEditControl GUICtrlTreeView_GetExpanded GUICtrlTreeView_GetFirstChild GUICtrlTreeView_GetFirstItem GUICtrlTreeView_GetFirstVisible GUICtrlTreeView_GetFocused GUICtrlTreeView_GetHeight GUICtrlTreeView_GetImageIndex GUICtrlTreeView_GetImageListIconHandle GUICtrlTreeView_GetIndent GUICtrlTreeView_GetInsertMarkColor GUICtrlTreeView_GetISearchString GUICtrlTreeView_GetItemByIndex GUICtrlTreeView_GetItemHandle GUICtrlTreeView_GetItemParam GUICtrlTreeView_GetLastChild GUICtrlTreeView_GetLineColor GUICtrlTreeView_GetNext GUICtrlTreeView_GetNextChild GUICtrlTreeView_GetNextSibling GUICtrlTreeView_GetNextVisible GUICtrlTreeView_GetNormalImageList GUICtrlTreeView_GetParentHandle GUICtrlTreeView_GetParentParam GUICtrlTreeView_GetPrev GUICtrlTreeView_GetPrevChild GUICtrlTreeView_GetPrevSibling GUICtrlTreeView_GetPrevVisible GUICtrlTreeView_GetScrollTime GUICtrlTreeView_GetSelected GUICtrlTreeView_GetSelectedImageIndex GUICtrlTreeView_GetSelection GUICtrlTreeView_GetSiblingCount GUICtrlTreeView_GetState GUICtrlTreeView_GetStateImageIndex GUICtrlTreeView_GetStateImageList GUICtrlTreeView_GetText GUICtrlTreeView_GetTextColor GUICtrlTreeView_GetToolTips GUICtrlTreeView_GetTree GUICtrlTreeView_GetUnicodeFormat GUICtrlTreeView_GetVisible GUICtrlTreeView_GetVisibleCount GUICtrlTreeView_HitTest GUICtrlTreeView_HitTestEx GUICtrlTreeView_HitTestItem GUICtrlTreeView_Index GUICtrlTreeView_InsertItem GUICtrlTreeView_IsFirstItem GUICtrlTreeView_IsParent GUICtrlTreeView_Level GUICtrlTreeView_SelectItem GUICtrlTreeView_SelectItemByIndex GUICtrlTreeView_SetBkColor GUICtrlTreeView_SetBold GUICtrlTreeView_SetChecked GUICtrlTreeView_SetCheckedByIndex GUICtrlTreeView_SetChildren GUICtrlTreeView_SetCut GUICtrlTreeView_SetDropTarget GUICtrlTreeView_SetFocused GUICtrlTreeView_SetHeight GUICtrlTreeView_SetIcon GUICtrlTreeView_SetImageIndex GUICtrlTreeView_SetIndent GUICtrlTreeView_SetInsertMark GUICtrlTreeView_SetInsertMarkColor GUICtrlTreeView_SetItemHeight GUICtrlTreeView_SetItemParam GUICtrlTreeView_SetLineColor GUICtrlTreeView_SetNormalImageList GUICtrlTreeView_SetScrollTime GUICtrlTreeView_SetSelected GUICtrlTreeView_SetSelectedImageIndex GUICtrlTreeView_SetState GUICtrlTreeView_SetStateImageIndex GUICtrlTreeView_SetStateImageList GUICtrlTreeView_SetText GUICtrlTreeView_SetTextColor GUICtrlTreeView_SetToolTips GUICtrlTreeView_SetUnicodeFormat GUICtrlTreeView_Sort GUIImageList_Add GUIImageList_AddBitmap GUIImageList_AddIcon GUIImageList_AddMasked GUIImageList_BeginDrag GUIImageList_Copy GUIImageList_Create GUIImageList_Destroy GUIImageList_DestroyIcon GUIImageList_DragEnter GUIImageList_DragLeave GUIImageList_DragMove GUIImageList_Draw GUIImageList_DrawEx GUIImageList_Duplicate GUIImageList_EndDrag GUIImageList_GetBkColor GUIImageList_GetIcon GUIImageList_GetIconHeight GUIImageList_GetIconSize GUIImageList_GetIconSizeEx GUIImageList_GetIconWidth GUIImageList_GetImageCount GUIImageList_GetImageInfoEx GUIImageList_Remove GUIImageList_ReplaceIcon GUIImageList_SetBkColor GUIImageList_SetIconSize GUIImageList_SetImageCount GUIImageList_Swap GUIScrollBars_EnableScrollBar GUIScrollBars_GetScrollBarInfoEx GUIScrollBars_GetScrollBarRect GUIScrollBars_GetScrollBarRGState GUIScrollBars_GetScrollBarXYLineButton GUIScrollBars_GetScrollBarXYThumbBottom GUIScrollBars_GetScrollBarXYThumbTop GUIScrollBars_GetScrollInfo GUIScrollBars_GetScrollInfoEx GUIScrollBars_GetScrollInfoMax GUIScrollBars_GetScrollInfoMin GUIScrollBars_GetScrollInfoPage GUIScrollBars_GetScrollInfoPos GUIScrollBars_GetScrollInfoTrackPos GUIScrollBars_GetScrollPos GUIScrollBars_GetScrollRange GUIScrollBars_Init GUIScrollBars_ScrollWindow GUIScrollBars_SetScrollInfo GUIScrollBars_SetScrollInfoMax GUIScrollBars_SetScrollInfoMin GUIScrollBars_SetScrollInfoPage GUIScrollBars_SetScrollInfoPos GUIScrollBars_SetScrollRange GUIScrollBars_ShowScrollBar GUIToolTip_Activate GUIToolTip_AddTool GUIToolTip_AdjustRect GUIToolTip_BitsToTTF GUIToolTip_Create GUIToolTip_Deactivate GUIToolTip_DelTool GUIToolTip_Destroy GUIToolTip_EnumTools GUIToolTip_GetBubbleHeight GUIToolTip_GetBubbleSize GUIToolTip_GetBubbleWidth GUIToolTip_GetCurrentTool GUIToolTip_GetDelayTime GUIToolTip_GetMargin GUIToolTip_GetMarginEx GUIToolTip_GetMaxTipWidth GUIToolTip_GetText GUIToolTip_GetTipBkColor GUIToolTip_GetTipTextColor GUIToolTip_GetTitleBitMap GUIToolTip_GetTitleText GUIToolTip_GetToolCount GUIToolTip_GetToolInfo GUIToolTip_HitTest GUIToolTip_NewToolRect GUIToolTip_Pop GUIToolTip_PopUp GUIToolTip_SetDelayTime GUIToolTip_SetMargin GUIToolTip_SetMaxTipWidth GUIToolTip_SetTipBkColor GUIToolTip_SetTipTextColor GUIToolTip_SetTitle GUIToolTip_SetToolInfo GUIToolTip_SetWindowTheme GUIToolTip_ToolExists GUIToolTip_ToolToArray GUIToolTip_TrackActivate GUIToolTip_TrackPosition GUIToolTip_Update GUIToolTip_UpdateTipText HexToString IEAction IEAttach IEBodyReadHTML IEBodyReadText IEBodyWriteHTML IECreate IECreateEmbedded IEDocGetObj IEDocInsertHTML IEDocInsertText IEDocReadHTML IEDocWriteHTML IEErrorNotify IEFormElementCheckBoxSelect IEFormElementGetCollection IEFormElementGetObjByName IEFormElementGetValue IEFormElementOptionSelect IEFormElementRadioSelect IEFormElementSetValue IEFormGetCollection IEFormGetObjByName IEFormImageClick IEFormReset IEFormSubmit IEFrameGetCollection IEFrameGetObjByName IEGetObjById IEGetObjByName IEHeadInsertEventScript IEImgClick IEImgGetCollection IEIsFrameSet IELinkClickByIndex IELinkClickByText IELinkGetCollection IELoadWait IELoadWaitTimeout IENavigate IEPropertyGet IEPropertySet IEQuit IETableGetCollection IETableWriteToArray IETagNameAllGetCollection IETagNameGetCollection IE_Example IE_Introduction IE_VersionInfo INetExplorerCapable INetGetSource INetMail INetSmtpMail IsPressed MathCheckDiv Max MemGlobalAlloc MemGlobalFree MemGlobalLock MemGlobalSize MemGlobalUnlock MemMoveMemory MemVirtualAlloc MemVirtualAllocEx MemVirtualFree MemVirtualFreeEx Min MouseTrap NamedPipes_CallNamedPipe NamedPipes_ConnectNamedPipe NamedPipes_CreateNamedPipe NamedPipes_CreatePipe NamedPipes_DisconnectNamedPipe NamedPipes_GetNamedPipeHandleState NamedPipes_GetNamedPipeInfo NamedPipes_PeekNamedPipe NamedPipes_SetNamedPipeHandleState NamedPipes_TransactNamedPipe NamedPipes_WaitNamedPipe Net_Share_ConnectionEnum Net_Share_FileClose Net_Share_FileEnum Net_Share_FileGetInfo Net_Share_PermStr Net_Share_ResourceStr Net_Share_SessionDel Net_Share_SessionEnum Net_Share_SessionGetInfo Net_Share_ShareAdd Net_Share_ShareCheck Net_Share_ShareDel Net_Share_ShareEnum Net_Share_ShareGetInfo Net_Share_ShareSetInfo Net_Share_StatisticsGetSvr Net_Share_StatisticsGetWrk Now NowCalc NowCalcDate NowDate NowTime PathFull PathGetRelative PathMake PathSplit ProcessGetName ProcessGetPriority Radian ReplaceStringInFile RunDos ScreenCapture_Capture ScreenCapture_CaptureWnd ScreenCapture_SaveImage ScreenCapture_SetBMPFormat ScreenCapture_SetJPGQuality ScreenCapture_SetTIFColorDepth ScreenCapture_SetTIFCompression Security__AdjustTokenPrivileges Security__CreateProcessWithToken Security__DuplicateTokenEx Security__GetAccountSid Security__GetLengthSid Security__GetTokenInformation Security__ImpersonateSelf Security__IsValidSid Security__LookupAccountName Security__LookupAccountSid Security__LookupPrivilegeValue Security__OpenProcessToken Security__OpenThreadToken Security__OpenThreadTokenEx Security__SetPrivilege Security__SetTokenInformation Security__SidToStringSid Security__SidTypeStr Security__StringSidToSid SendMessage SendMessageA SetDate SetTime Singleton SoundClose SoundLength SoundOpen SoundPause SoundPlay SoundPos SoundResume SoundSeek SoundStatus SoundStop SQLite_Changes SQLite_Close SQLite_Display2DResult SQLite_Encode SQLite_ErrCode SQLite_ErrMsg SQLite_Escape SQLite_Exec SQLite_FastEncode SQLite_FastEscape SQLite_FetchData SQLite_FetchNames SQLite_GetTable SQLite_GetTable2d SQLite_LastInsertRowID SQLite_LibVersion SQLite_Open SQLite_Query SQLite_QueryFinalize SQLite_QueryReset SQLite_QuerySingleRow SQLite_SafeMode SQLite_SetTimeout SQLite_Shutdown SQLite_SQLiteExe SQLite_Startup SQLite_TotalChanges StringBetween StringExplode StringInsert StringProper StringRepeat StringTitleCase StringToHex TCPIpToName TempFile TicksToTime Timer_Diff Timer_GetIdleTime Timer_GetTimerID Timer_Init Timer_KillAllTimers Timer_KillTimer Timer_SetTimer TimeToTicks VersionCompare viClose viExecCommand viFindGpib viGpibBusReset viGTL viInteractiveControl viOpen viSetAttribute viSetTimeout WeekNumberISO WinAPI_AbortPath WinAPI_ActivateKeyboardLayout WinAPI_AddClipboardFormatListener WinAPI_AddFontMemResourceEx WinAPI_AddFontResourceEx WinAPI_AddIconOverlay WinAPI_AddIconTransparency WinAPI_AddMRUString WinAPI_AdjustBitmap WinAPI_AdjustTokenPrivileges WinAPI_AdjustWindowRectEx WinAPI_AlphaBlend WinAPI_AngleArc WinAPI_AnimateWindow WinAPI_Arc WinAPI_ArcTo WinAPI_ArrayToStruct WinAPI_AssignProcessToJobObject WinAPI_AssocGetPerceivedType WinAPI_AssocQueryString WinAPI_AttachConsole WinAPI_AttachThreadInput WinAPI_BackupRead WinAPI_BackupReadAbort WinAPI_BackupSeek WinAPI_BackupWrite WinAPI_BackupWriteAbort WinAPI_Beep WinAPI_BeginBufferedPaint WinAPI_BeginDeferWindowPos WinAPI_BeginPaint WinAPI_BeginPath WinAPI_BeginUpdateResource WinAPI_BitBlt WinAPI_BringWindowToTop WinAPI_BroadcastSystemMessage WinAPI_BrowseForFolderDlg WinAPI_BufferedPaintClear WinAPI_BufferedPaintInit WinAPI_BufferedPaintSetAlpha WinAPI_BufferedPaintUnInit WinAPI_CallNextHookEx WinAPI_CallWindowProc WinAPI_CallWindowProcW WinAPI_CascadeWindows WinAPI_ChangeWindowMessageFilterEx WinAPI_CharToOem WinAPI_ChildWindowFromPointEx WinAPI_ClientToScreen WinAPI_ClipCursor WinAPI_CloseDesktop WinAPI_CloseEnhMetaFile WinAPI_CloseFigure WinAPI_CloseHandle WinAPI_CloseThemeData WinAPI_CloseWindow WinAPI_CloseWindowStation WinAPI_CLSIDFromProgID WinAPI_CoInitialize WinAPI_ColorAdjustLuma WinAPI_ColorHLSToRGB WinAPI_ColorRGBToHLS WinAPI_CombineRgn WinAPI_CombineTransform WinAPI_CommandLineToArgv WinAPI_CommDlgExtendedError WinAPI_CommDlgExtendedErrorEx WinAPI_CompareString WinAPI_CompressBitmapBits WinAPI_CompressBuffer WinAPI_ComputeCrc32 WinAPI_ConfirmCredentials WinAPI_CopyBitmap WinAPI_CopyCursor WinAPI_CopyEnhMetaFile WinAPI_CopyFileEx WinAPI_CopyIcon WinAPI_CopyImage WinAPI_CopyRect WinAPI_CopyStruct WinAPI_CoTaskMemAlloc WinAPI_CoTaskMemFree WinAPI_CoTaskMemRealloc WinAPI_CoUninitialize WinAPI_Create32BitHBITMAP WinAPI_Create32BitHICON WinAPI_CreateANDBitmap WinAPI_CreateBitmap WinAPI_CreateBitmapIndirect WinAPI_CreateBrushIndirect WinAPI_CreateBuffer WinAPI_CreateBufferFromStruct WinAPI_CreateCaret WinAPI_CreateColorAdjustment WinAPI_CreateCompatibleBitmap WinAPI_CreateCompatibleBitmapEx WinAPI_CreateCompatibleDC WinAPI_CreateDesktop WinAPI_CreateDIB WinAPI_CreateDIBColorTable WinAPI_CreateDIBitmap WinAPI_CreateDIBSection WinAPI_CreateDirectory WinAPI_CreateDirectoryEx WinAPI_CreateEllipticRgn WinAPI_CreateEmptyIcon WinAPI_CreateEnhMetaFile WinAPI_CreateEvent WinAPI_CreateFile WinAPI_CreateFileEx WinAPI_CreateFileMapping WinAPI_CreateFont WinAPI_CreateFontEx WinAPI_CreateFontIndirect WinAPI_CreateGUID WinAPI_CreateHardLink WinAPI_CreateIcon WinAPI_CreateIconFromResourceEx WinAPI_CreateIconIndirect WinAPI_CreateJobObject WinAPI_CreateMargins WinAPI_CreateMRUList WinAPI_CreateMutex WinAPI_CreateNullRgn WinAPI_CreateNumberFormatInfo WinAPI_CreateObjectID WinAPI_CreatePen WinAPI_CreatePoint WinAPI_CreatePolygonRgn WinAPI_CreateProcess WinAPI_CreateProcessWithToken WinAPI_CreateRect WinAPI_CreateRectEx WinAPI_CreateRectRgn WinAPI_CreateRectRgnIndirect WinAPI_CreateRoundRectRgn WinAPI_CreateSemaphore WinAPI_CreateSize WinAPI_CreateSolidBitmap WinAPI_CreateSolidBrush WinAPI_CreateStreamOnHGlobal WinAPI_CreateString WinAPI_CreateSymbolicLink WinAPI_CreateTransform WinAPI_CreateWindowEx WinAPI_CreateWindowStation WinAPI_DecompressBuffer WinAPI_DecryptFile WinAPI_DeferWindowPos WinAPI_DefineDosDevice WinAPI_DefRawInputProc WinAPI_DefSubclassProc WinAPI_DefWindowProc WinAPI_DefWindowProcW WinAPI_DeleteDC WinAPI_DeleteEnhMetaFile WinAPI_DeleteFile WinAPI_DeleteObject WinAPI_DeleteObjectID WinAPI_DeleteVolumeMountPoint WinAPI_DeregisterShellHookWindow WinAPI_DestroyCaret WinAPI_DestroyCursor WinAPI_DestroyIcon WinAPI_DestroyWindow WinAPI_DeviceIoControl WinAPI_DisplayStruct WinAPI_DllGetVersion WinAPI_DllInstall WinAPI_DllUninstall WinAPI_DPtoLP WinAPI_DragAcceptFiles WinAPI_DragFinish WinAPI_DragQueryFileEx WinAPI_DragQueryPoint WinAPI_DrawAnimatedRects WinAPI_DrawBitmap WinAPI_DrawEdge WinAPI_DrawFocusRect WinAPI_DrawFrameControl WinAPI_DrawIcon WinAPI_DrawIconEx WinAPI_DrawLine WinAPI_DrawShadowText WinAPI_DrawText WinAPI_DrawThemeBackground WinAPI_DrawThemeEdge WinAPI_DrawThemeIcon WinAPI_DrawThemeParentBackground WinAPI_DrawThemeText WinAPI_DrawThemeTextEx WinAPI_DuplicateEncryptionInfoFile WinAPI_DuplicateHandle WinAPI_DuplicateTokenEx WinAPI_DwmDefWindowProc WinAPI_DwmEnableBlurBehindWindow WinAPI_DwmEnableComposition WinAPI_DwmExtendFrameIntoClientArea WinAPI_DwmGetColorizationColor WinAPI_DwmGetColorizationParameters WinAPI_DwmGetWindowAttribute WinAPI_DwmInvalidateIconicBitmaps WinAPI_DwmIsCompositionEnabled WinAPI_DwmQueryThumbnailSourceSize WinAPI_DwmRegisterThumbnail WinAPI_DwmSetColorizationParameters WinAPI_DwmSetIconicLivePreviewBitmap WinAPI_DwmSetIconicThumbnail WinAPI_DwmSetWindowAttribute WinAPI_DwmUnregisterThumbnail WinAPI_DwmUpdateThumbnailProperties WinAPI_DWordToFloat WinAPI_DWordToInt WinAPI_EjectMedia WinAPI_Ellipse WinAPI_EmptyWorkingSet WinAPI_EnableWindow WinAPI_EncryptFile WinAPI_EncryptionDisable WinAPI_EndBufferedPaint WinAPI_EndDeferWindowPos WinAPI_EndPaint WinAPI_EndPath WinAPI_EndUpdateResource WinAPI_EnumChildProcess WinAPI_EnumChildWindows WinAPI_EnumDesktops WinAPI_EnumDesktopWindows WinAPI_EnumDeviceDrivers WinAPI_EnumDisplayDevices WinAPI_EnumDisplayMonitors WinAPI_EnumDisplaySettings WinAPI_EnumDllProc WinAPI_EnumFiles WinAPI_EnumFileStreams WinAPI_EnumFontFamilies WinAPI_EnumHardLinks WinAPI_EnumMRUList WinAPI_EnumPageFiles WinAPI_EnumProcessHandles WinAPI_EnumProcessModules WinAPI_EnumProcessThreads WinAPI_EnumProcessWindows WinAPI_EnumRawInputDevices WinAPI_EnumResourceLanguages WinAPI_EnumResourceNames WinAPI_EnumResourceTypes WinAPI_EnumSystemGeoID WinAPI_EnumSystemLocales WinAPI_EnumUILanguages WinAPI_EnumWindows WinAPI_EnumWindowsPopup WinAPI_EnumWindowStations WinAPI_EnumWindowsTop WinAPI_EqualMemory WinAPI_EqualRect WinAPI_EqualRgn WinAPI_ExcludeClipRect WinAPI_ExpandEnvironmentStrings WinAPI_ExtCreatePen WinAPI_ExtCreateRegion WinAPI_ExtFloodFill WinAPI_ExtractIcon WinAPI_ExtractIconEx WinAPI_ExtSelectClipRgn WinAPI_FatalAppExit WinAPI_FatalExit WinAPI_FileEncryptionStatus WinAPI_FileExists WinAPI_FileIconInit WinAPI_FileInUse WinAPI_FillMemory WinAPI_FillPath WinAPI_FillRect WinAPI_FillRgn WinAPI_FindClose WinAPI_FindCloseChangeNotification WinAPI_FindExecutable WinAPI_FindFirstChangeNotification WinAPI_FindFirstFile WinAPI_FindFirstFileName WinAPI_FindFirstStream WinAPI_FindNextChangeNotification WinAPI_FindNextFile WinAPI_FindNextFileName WinAPI_FindNextStream WinAPI_FindResource WinAPI_FindResourceEx WinAPI_FindTextDlg WinAPI_FindWindow WinAPI_FlashWindow WinAPI_FlashWindowEx WinAPI_FlattenPath WinAPI_FloatToDWord WinAPI_FloatToInt WinAPI_FlushFileBuffers WinAPI_FlushFRBuffer WinAPI_FlushViewOfFile WinAPI_FormatDriveDlg WinAPI_FormatMessage WinAPI_FrameRect WinAPI_FrameRgn WinAPI_FreeLibrary WinAPI_FreeMemory WinAPI_FreeMRUList WinAPI_FreeResource WinAPI_GdiComment WinAPI_GetActiveWindow WinAPI_GetAllUsersProfileDirectory WinAPI_GetAncestor WinAPI_GetApplicationRestartSettings WinAPI_GetArcDirection WinAPI_GetAsyncKeyState WinAPI_GetBinaryType WinAPI_GetBitmapBits WinAPI_GetBitmapDimension WinAPI_GetBitmapDimensionEx WinAPI_GetBkColor WinAPI_GetBkMode WinAPI_GetBoundsRect WinAPI_GetBrushOrg WinAPI_GetBufferedPaintBits WinAPI_GetBufferedPaintDC WinAPI_GetBufferedPaintTargetDC WinAPI_GetBufferedPaintTargetRect WinAPI_GetBValue WinAPI_GetCaretBlinkTime WinAPI_GetCaretPos WinAPI_GetCDType WinAPI_GetClassInfoEx WinAPI_GetClassLongEx WinAPI_GetClassName WinAPI_GetClientHeight WinAPI_GetClientRect WinAPI_GetClientWidth WinAPI_GetClipboardSequenceNumber WinAPI_GetClipBox WinAPI_GetClipCursor WinAPI_GetClipRgn WinAPI_GetColorAdjustment WinAPI_GetCompressedFileSize WinAPI_GetCompression WinAPI_GetConnectedDlg WinAPI_GetCurrentDirectory WinAPI_GetCurrentHwProfile WinAPI_GetCurrentObject WinAPI_GetCurrentPosition WinAPI_GetCurrentProcess WinAPI_GetCurrentProcessExplicitAppUserModelID WinAPI_GetCurrentProcessID WinAPI_GetCurrentThemeName WinAPI_GetCurrentThread WinAPI_GetCurrentThreadId WinAPI_GetCursor WinAPI_GetCursorInfo WinAPI_GetDateFormat WinAPI_GetDC WinAPI_GetDCEx WinAPI_GetDefaultPrinter WinAPI_GetDefaultUserProfileDirectory WinAPI_GetDesktopWindow WinAPI_GetDeviceCaps WinAPI_GetDeviceDriverBaseName WinAPI_GetDeviceDriverFileName WinAPI_GetDeviceGammaRamp WinAPI_GetDIBColorTable WinAPI_GetDIBits WinAPI_GetDiskFreeSpaceEx WinAPI_GetDlgCtrlID WinAPI_GetDlgItem WinAPI_GetDllDirectory WinAPI_GetDriveBusType WinAPI_GetDriveGeometryEx WinAPI_GetDriveNumber WinAPI_GetDriveType WinAPI_GetDurationFormat WinAPI_GetEffectiveClientRect WinAPI_GetEnhMetaFile WinAPI_GetEnhMetaFileBits WinAPI_GetEnhMetaFileDescription WinAPI_GetEnhMetaFileDimension WinAPI_GetEnhMetaFileHeader WinAPI_GetErrorMessage WinAPI_GetErrorMode WinAPI_GetExitCodeProcess WinAPI_GetExtended WinAPI_GetFileAttributes WinAPI_GetFileID WinAPI_GetFileInformationByHandle WinAPI_GetFileInformationByHandleEx WinAPI_GetFilePointerEx WinAPI_GetFileSizeEx WinAPI_GetFileSizeOnDisk WinAPI_GetFileTitle WinAPI_GetFileType WinAPI_GetFileVersionInfo WinAPI_GetFinalPathNameByHandle WinAPI_GetFinalPathNameByHandleEx WinAPI_GetFocus WinAPI_GetFontMemoryResourceInfo WinAPI_GetFontName WinAPI_GetFontResourceInfo WinAPI_GetForegroundWindow WinAPI_GetFRBuffer WinAPI_GetFullPathName WinAPI_GetGeoInfo WinAPI_GetGlyphOutline WinAPI_GetGraphicsMode WinAPI_GetGuiResources WinAPI_GetGUIThreadInfo WinAPI_GetGValue WinAPI_GetHandleInformation WinAPI_GetHGlobalFromStream WinAPI_GetIconDimension WinAPI_GetIconInfo WinAPI_GetIconInfoEx WinAPI_GetIdleTime WinAPI_GetKeyboardLayout WinAPI_GetKeyboardLayoutList WinAPI_GetKeyboardState WinAPI_GetKeyboardType WinAPI_GetKeyNameText WinAPI_GetKeyState WinAPI_GetLastActivePopup WinAPI_GetLastError WinAPI_GetLastErrorMessage WinAPI_GetLayeredWindowAttributes WinAPI_GetLocaleInfo WinAPI_GetLogicalDrives WinAPI_GetMapMode WinAPI_GetMemorySize WinAPI_GetMessageExtraInfo WinAPI_GetModuleFileNameEx WinAPI_GetModuleHandle WinAPI_GetModuleHandleEx WinAPI_GetModuleInformation WinAPI_GetMonitorInfo WinAPI_GetMousePos WinAPI_GetMousePosX WinAPI_GetMousePosY WinAPI_GetMUILanguage WinAPI_GetNumberFormat WinAPI_GetObject WinAPI_GetObjectID WinAPI_GetObjectInfoByHandle WinAPI_GetObjectNameByHandle WinAPI_GetObjectType WinAPI_GetOpenFileName WinAPI_GetOutlineTextMetrics WinAPI_GetOverlappedResult WinAPI_GetParent WinAPI_GetParentProcess WinAPI_GetPerformanceInfo WinAPI_GetPEType WinAPI_GetPhysicallyInstalledSystemMemory WinAPI_GetPixel WinAPI_GetPolyFillMode WinAPI_GetPosFromRect WinAPI_GetPriorityClass WinAPI_GetProcAddress WinAPI_GetProcessAffinityMask WinAPI_GetProcessCommandLine WinAPI_GetProcessFileName WinAPI_GetProcessHandleCount WinAPI_GetProcessID WinAPI_GetProcessIoCounters WinAPI_GetProcessMemoryInfo WinAPI_GetProcessName WinAPI_GetProcessShutdownParameters WinAPI_GetProcessTimes WinAPI_GetProcessUser WinAPI_GetProcessWindowStation WinAPI_GetProcessWorkingDirectory WinAPI_GetProfilesDirectory WinAPI_GetPwrCapabilities WinAPI_GetRawInputBuffer WinAPI_GetRawInputBufferLength WinAPI_GetRawInputData WinAPI_GetRawInputDeviceInfo WinAPI_GetRegionData WinAPI_GetRegisteredRawInputDevices WinAPI_GetRegKeyNameByHandle WinAPI_GetRgnBox WinAPI_GetROP2 WinAPI_GetRValue WinAPI_GetSaveFileName WinAPI_GetShellWindow WinAPI_GetStartupInfo WinAPI_GetStdHandle WinAPI_GetStockObject WinAPI_GetStretchBltMode WinAPI_GetString WinAPI_GetSysColor WinAPI_GetSysColorBrush WinAPI_GetSystemDefaultLangID WinAPI_GetSystemDefaultLCID WinAPI_GetSystemDefaultUILanguage WinAPI_GetSystemDEPPolicy WinAPI_GetSystemInfo WinAPI_GetSystemMetrics WinAPI_GetSystemPowerStatus WinAPI_GetSystemTimes WinAPI_GetSystemWow64Directory WinAPI_GetTabbedTextExtent WinAPI_GetTempFileName WinAPI_GetTextAlign WinAPI_GetTextCharacterExtra WinAPI_GetTextColor WinAPI_GetTextExtentPoint32 WinAPI_GetTextFace WinAPI_GetTextMetrics WinAPI_GetThemeAppProperties WinAPI_GetThemeBackgroundContentRect WinAPI_GetThemeBackgroundExtent WinAPI_GetThemeBackgroundRegion WinAPI_GetThemeBitmap WinAPI_GetThemeBool WinAPI_GetThemeColor WinAPI_GetThemeDocumentationProperty WinAPI_GetThemeEnumValue WinAPI_GetThemeFilename WinAPI_GetThemeFont WinAPI_GetThemeInt WinAPI_GetThemeMargins WinAPI_GetThemeMetric WinAPI_GetThemePartSize WinAPI_GetThemePosition WinAPI_GetThemePropertyOrigin WinAPI_GetThemeRect WinAPI_GetThemeString WinAPI_GetThemeSysBool WinAPI_GetThemeSysColor WinAPI_GetThemeSysColorBrush WinAPI_GetThemeSysFont WinAPI_GetThemeSysInt WinAPI_GetThemeSysSize WinAPI_GetThemeSysString WinAPI_GetThemeTextExtent WinAPI_GetThemeTextMetrics WinAPI_GetThemeTransitionDuration WinAPI_GetThreadDesktop WinAPI_GetThreadErrorMode WinAPI_GetThreadLocale WinAPI_GetThreadUILanguage WinAPI_GetTickCount WinAPI_GetTickCount64 WinAPI_GetTimeFormat WinAPI_GetTopWindow WinAPI_GetUDFColorMode WinAPI_GetUpdateRect WinAPI_GetUpdateRgn WinAPI_GetUserDefaultLangID WinAPI_GetUserDefaultLCID WinAPI_GetUserDefaultUILanguage WinAPI_GetUserGeoID WinAPI_GetUserObjectInformation WinAPI_GetVersion WinAPI_GetVersionEx WinAPI_GetVolumeInformation WinAPI_GetVolumeInformationByHandle WinAPI_GetVolumeNameForVolumeMountPoint WinAPI_GetWindow WinAPI_GetWindowDC WinAPI_GetWindowDisplayAffinity WinAPI_GetWindowExt WinAPI_GetWindowFileName WinAPI_GetWindowHeight WinAPI_GetWindowInfo WinAPI_GetWindowLong WinAPI_GetWindowOrg WinAPI_GetWindowPlacement WinAPI_GetWindowRect WinAPI_GetWindowRgn WinAPI_GetWindowRgnBox WinAPI_GetWindowSubclass WinAPI_GetWindowText WinAPI_GetWindowTheme WinAPI_GetWindowThreadProcessId WinAPI_GetWindowWidth WinAPI_GetWorkArea WinAPI_GetWorldTransform WinAPI_GetXYFromPoint WinAPI_GlobalMemoryStatus WinAPI_GradientFill WinAPI_GUIDFromString WinAPI_GUIDFromStringEx WinAPI_HashData WinAPI_HashString WinAPI_HiByte WinAPI_HideCaret WinAPI_HiDWord WinAPI_HiWord WinAPI_InflateRect WinAPI_InitMUILanguage WinAPI_InProcess WinAPI_IntersectClipRect WinAPI_IntersectRect WinAPI_IntToDWord WinAPI_IntToFloat WinAPI_InvalidateRect WinAPI_InvalidateRgn WinAPI_InvertANDBitmap WinAPI_InvertColor WinAPI_InvertRect WinAPI_InvertRgn WinAPI_IOCTL WinAPI_IsAlphaBitmap WinAPI_IsBadCodePtr WinAPI_IsBadReadPtr WinAPI_IsBadStringPtr WinAPI_IsBadWritePtr WinAPI_IsChild WinAPI_IsClassName WinAPI_IsDoorOpen WinAPI_IsElevated WinAPI_IsHungAppWindow WinAPI_IsIconic WinAPI_IsInternetConnected WinAPI_IsLoadKBLayout WinAPI_IsMemory WinAPI_IsNameInExpression WinAPI_IsNetworkAlive WinAPI_IsPathShared WinAPI_IsProcessInJob WinAPI_IsProcessorFeaturePresent WinAPI_IsRectEmpty WinAPI_IsThemeActive WinAPI_IsThemeBackgroundPartiallyTransparent WinAPI_IsThemePartDefined WinAPI_IsValidLocale WinAPI_IsWindow WinAPI_IsWindowEnabled WinAPI_IsWindowUnicode WinAPI_IsWindowVisible WinAPI_IsWow64Process WinAPI_IsWritable WinAPI_IsZoomed WinAPI_Keybd_Event WinAPI_KillTimer WinAPI_LineDDA WinAPI_LineTo WinAPI_LoadBitmap WinAPI_LoadCursor WinAPI_LoadCursorFromFile WinAPI_LoadIcon WinAPI_LoadIconMetric WinAPI_LoadIconWithScaleDown WinAPI_LoadImage WinAPI_LoadIndirectString WinAPI_LoadKeyboardLayout WinAPI_LoadLibrary WinAPI_LoadLibraryEx WinAPI_LoadMedia WinAPI_LoadResource WinAPI_LoadShell32Icon WinAPI_LoadString WinAPI_LoadStringEx WinAPI_LoByte WinAPI_LocalFree WinAPI_LockDevice WinAPI_LockFile WinAPI_LockResource WinAPI_LockWindowUpdate WinAPI_LockWorkStation WinAPI_LoDWord WinAPI_LongMid WinAPI_LookupIconIdFromDirectoryEx WinAPI_LoWord WinAPI_LPtoDP WinAPI_MAKELANGID WinAPI_MAKELCID WinAPI_MakeLong WinAPI_MakeQWord WinAPI_MakeWord WinAPI_MapViewOfFile WinAPI_MapVirtualKey WinAPI_MaskBlt WinAPI_MessageBeep WinAPI_MessageBoxCheck WinAPI_MessageBoxIndirect WinAPI_MirrorIcon WinAPI_ModifyWorldTransform WinAPI_MonitorFromPoint WinAPI_MonitorFromRect WinAPI_MonitorFromWindow WinAPI_Mouse_Event WinAPI_MoveFileEx WinAPI_MoveMemory WinAPI_MoveTo WinAPI_MoveToEx WinAPI_MoveWindow WinAPI_MsgBox WinAPI_MulDiv WinAPI_MultiByteToWideChar WinAPI_MultiByteToWideCharEx WinAPI_NtStatusToDosError WinAPI_OemToChar WinAPI_OffsetClipRgn WinAPI_OffsetPoints WinAPI_OffsetRect WinAPI_OffsetRgn WinAPI_OffsetWindowOrg WinAPI_OpenDesktop WinAPI_OpenFileById WinAPI_OpenFileDlg WinAPI_OpenFileMapping WinAPI_OpenIcon WinAPI_OpenInputDesktop WinAPI_OpenJobObject WinAPI_OpenMutex WinAPI_OpenProcess WinAPI_OpenProcessToken WinAPI_OpenSemaphore WinAPI_OpenThemeData WinAPI_OpenWindowStation WinAPI_PageSetupDlg WinAPI_PaintDesktop WinAPI_PaintRgn WinAPI_ParseURL WinAPI_ParseUserName WinAPI_PatBlt WinAPI_PathAddBackslash WinAPI_PathAddExtension WinAPI_PathAppend WinAPI_PathBuildRoot WinAPI_PathCanonicalize WinAPI_PathCommonPrefix WinAPI_PathCompactPath WinAPI_PathCompactPathEx WinAPI_PathCreateFromUrl WinAPI_PathFindExtension WinAPI_PathFindFileName WinAPI_PathFindNextComponent WinAPI_PathFindOnPath WinAPI_PathGetArgs WinAPI_PathGetCharType WinAPI_PathGetDriveNumber WinAPI_PathIsContentType WinAPI_PathIsDirectory WinAPI_PathIsDirectoryEmpty WinAPI_PathIsExe WinAPI_PathIsFileSpec WinAPI_PathIsLFNFileSpec WinAPI_PathIsRelative WinAPI_PathIsRoot WinAPI_PathIsSameRoot WinAPI_PathIsSystemFolder WinAPI_PathIsUNC WinAPI_PathIsUNCServer WinAPI_PathIsUNCServerShare WinAPI_PathMakeSystemFolder WinAPI_PathMatchSpec WinAPI_PathParseIconLocation WinAPI_PathRelativePathTo WinAPI_PathRemoveArgs WinAPI_PathRemoveBackslash WinAPI_PathRemoveExtension WinAPI_PathRemoveFileSpec WinAPI_PathRenameExtension WinAPI_PathSearchAndQualify WinAPI_PathSkipRoot WinAPI_PathStripPath WinAPI_PathStripToRoot WinAPI_PathToRegion WinAPI_PathUndecorate WinAPI_PathUnExpandEnvStrings WinAPI_PathUnmakeSystemFolder WinAPI_PathUnquoteSpaces WinAPI_PathYetAnotherMakeUniqueName WinAPI_PickIconDlg WinAPI_PlayEnhMetaFile WinAPI_PlaySound WinAPI_PlgBlt WinAPI_PointFromRect WinAPI_PolyBezier WinAPI_PolyBezierTo WinAPI_PolyDraw WinAPI_Polygon WinAPI_PostMessage WinAPI_PrimaryLangId WinAPI_PrintDlg WinAPI_PrintDlgEx WinAPI_PrintWindow WinAPI_ProgIDFromCLSID WinAPI_PtInRect WinAPI_PtInRectEx WinAPI_PtInRegion WinAPI_PtVisible WinAPI_QueryDosDevice WinAPI_QueryInformationJobObject WinAPI_QueryPerformanceCounter WinAPI_QueryPerformanceFrequency WinAPI_RadialGradientFill WinAPI_ReadDirectoryChanges WinAPI_ReadFile WinAPI_ReadProcessMemory WinAPI_Rectangle WinAPI_RectInRegion WinAPI_RectIsEmpty WinAPI_RectVisible WinAPI_RedrawWindow WinAPI_RegCloseKey WinAPI_RegConnectRegistry WinAPI_RegCopyTree WinAPI_RegCopyTreeEx WinAPI_RegCreateKey WinAPI_RegDeleteEmptyKey WinAPI_RegDeleteKey WinAPI_RegDeleteKeyValue WinAPI_RegDeleteTree WinAPI_RegDeleteTreeEx WinAPI_RegDeleteValue WinAPI_RegDisableReflectionKey WinAPI_RegDuplicateHKey WinAPI_RegEnableReflectionKey WinAPI_RegEnumKey WinAPI_RegEnumValue WinAPI_RegFlushKey WinAPI_RegisterApplicationRestart WinAPI_RegisterClass WinAPI_RegisterClassEx WinAPI_RegisterHotKey WinAPI_RegisterPowerSettingNotification WinAPI_RegisterRawInputDevices WinAPI_RegisterShellHookWindow WinAPI_RegisterWindowMessage WinAPI_RegLoadMUIString WinAPI_RegNotifyChangeKeyValue WinAPI_RegOpenKey WinAPI_RegQueryInfoKey WinAPI_RegQueryLastWriteTime WinAPI_RegQueryMultipleValues WinAPI_RegQueryReflectionKey WinAPI_RegQueryValue WinAPI_RegRestoreKey WinAPI_RegSaveKey WinAPI_RegSetValue WinAPI_ReleaseCapture WinAPI_ReleaseDC WinAPI_ReleaseMutex WinAPI_ReleaseSemaphore WinAPI_ReleaseStream WinAPI_RemoveClipboardFormatListener WinAPI_RemoveDirectory WinAPI_RemoveFontMemResourceEx WinAPI_RemoveFontResourceEx WinAPI_RemoveWindowSubclass WinAPI_ReOpenFile WinAPI_ReplaceFile WinAPI_ReplaceTextDlg WinAPI_ResetEvent WinAPI_RestartDlg WinAPI_RestoreDC WinAPI_RGB WinAPI_RotatePoints WinAPI_RoundRect WinAPI_SaveDC WinAPI_SaveFileDlg WinAPI_SaveHBITMAPToFile WinAPI_SaveHICONToFile WinAPI_ScaleWindowExt WinAPI_ScreenToClient WinAPI_SearchPath WinAPI_SelectClipPath WinAPI_SelectClipRgn WinAPI_SelectObject WinAPI_SendMessageTimeout WinAPI_SetActiveWindow WinAPI_SetArcDirection WinAPI_SetBitmapBits WinAPI_SetBitmapDimensionEx WinAPI_SetBkColor WinAPI_SetBkMode WinAPI_SetBoundsRect WinAPI_SetBrushOrg WinAPI_SetCapture WinAPI_SetCaretBlinkTime WinAPI_SetCaretPos WinAPI_SetClassLongEx WinAPI_SetColorAdjustment WinAPI_SetCompression WinAPI_SetCurrentDirectory WinAPI_SetCurrentProcessExplicitAppUserModelID WinAPI_SetCursor WinAPI_SetDCBrushColor WinAPI_SetDCPenColor WinAPI_SetDefaultPrinter WinAPI_SetDeviceGammaRamp WinAPI_SetDIBColorTable WinAPI_SetDIBits WinAPI_SetDIBitsToDevice WinAPI_SetDllDirectory WinAPI_SetEndOfFile WinAPI_SetEnhMetaFileBits WinAPI_SetErrorMode WinAPI_SetEvent WinAPI_SetFileAttributes WinAPI_SetFileInformationByHandleEx WinAPI_SetFilePointer WinAPI_SetFilePointerEx WinAPI_SetFileShortName WinAPI_SetFileValidData WinAPI_SetFocus WinAPI_SetFont WinAPI_SetForegroundWindow WinAPI_SetFRBuffer WinAPI_SetGraphicsMode WinAPI_SetHandleInformation WinAPI_SetInformationJobObject WinAPI_SetKeyboardLayout WinAPI_SetKeyboardState WinAPI_SetLastError WinAPI_SetLayeredWindowAttributes WinAPI_SetLocaleInfo WinAPI_SetMapMode WinAPI_SetMessageExtraInfo WinAPI_SetParent WinAPI_SetPixel WinAPI_SetPolyFillMode WinAPI_SetPriorityClass WinAPI_SetProcessAffinityMask WinAPI_SetProcessShutdownParameters WinAPI_SetProcessWindowStation WinAPI_SetRectRgn WinAPI_SetROP2 WinAPI_SetSearchPathMode WinAPI_SetStretchBltMode WinAPI_SetSysColors WinAPI_SetSystemCursor WinAPI_SetTextAlign WinAPI_SetTextCharacterExtra WinAPI_SetTextColor WinAPI_SetTextJustification WinAPI_SetThemeAppProperties WinAPI_SetThreadDesktop WinAPI_SetThreadErrorMode WinAPI_SetThreadExecutionState WinAPI_SetThreadLocale WinAPI_SetThreadUILanguage WinAPI_SetTimer WinAPI_SetUDFColorMode WinAPI_SetUserGeoID WinAPI_SetUserObjectInformation WinAPI_SetVolumeMountPoint WinAPI_SetWindowDisplayAffinity WinAPI_SetWindowExt WinAPI_SetWindowLong WinAPI_SetWindowOrg WinAPI_SetWindowPlacement WinAPI_SetWindowPos WinAPI_SetWindowRgn WinAPI_SetWindowsHookEx WinAPI_SetWindowSubclass WinAPI_SetWindowText WinAPI_SetWindowTheme WinAPI_SetWinEventHook WinAPI_SetWorldTransform WinAPI_SfcIsFileProtected WinAPI_SfcIsKeyProtected WinAPI_ShellAboutDlg WinAPI_ShellAddToRecentDocs WinAPI_ShellChangeNotify WinAPI_ShellChangeNotifyDeregister WinAPI_ShellChangeNotifyRegister WinAPI_ShellCreateDirectory WinAPI_ShellEmptyRecycleBin WinAPI_ShellExecute WinAPI_ShellExecuteEx WinAPI_ShellExtractAssociatedIcon WinAPI_ShellExtractIcon WinAPI_ShellFileOperation WinAPI_ShellFlushSFCache WinAPI_ShellGetFileInfo WinAPI_ShellGetIconOverlayIndex WinAPI_ShellGetImageList WinAPI_ShellGetKnownFolderIDList WinAPI_ShellGetKnownFolderPath WinAPI_ShellGetLocalizedName WinAPI_ShellGetPathFromIDList WinAPI_ShellGetSetFolderCustomSettings WinAPI_ShellGetSettings WinAPI_ShellGetSpecialFolderLocation WinAPI_ShellGetSpecialFolderPath WinAPI_ShellGetStockIconInfo WinAPI_ShellILCreateFromPath WinAPI_ShellNotifyIcon WinAPI_ShellNotifyIconGetRect WinAPI_ShellObjectProperties WinAPI_ShellOpenFolderAndSelectItems WinAPI_ShellOpenWithDlg WinAPI_ShellQueryRecycleBin WinAPI_ShellQueryUserNotificationState WinAPI_ShellRemoveLocalizedName WinAPI_ShellRestricted WinAPI_ShellSetKnownFolderPath WinAPI_ShellSetLocalizedName WinAPI_ShellSetSettings WinAPI_ShellStartNetConnectionDlg WinAPI_ShellUpdateImage WinAPI_ShellUserAuthenticationDlg WinAPI_ShellUserAuthenticationDlgEx WinAPI_ShortToWord WinAPI_ShowCaret WinAPI_ShowCursor WinAPI_ShowError WinAPI_ShowLastError WinAPI_ShowMsg WinAPI_ShowOwnedPopups WinAPI_ShowWindow WinAPI_ShutdownBlockReasonCreate WinAPI_ShutdownBlockReasonDestroy WinAPI_ShutdownBlockReasonQuery WinAPI_SizeOfResource WinAPI_StretchBlt WinAPI_StretchDIBits WinAPI_StrFormatByteSize WinAPI_StrFormatByteSizeEx WinAPI_StrFormatKBSize WinAPI_StrFromTimeInterval WinAPI_StringFromGUID WinAPI_StringLenA WinAPI_StringLenW WinAPI_StrLen WinAPI_StrokeAndFillPath WinAPI_StrokePath WinAPI_StructToArray WinAPI_SubLangId WinAPI_SubtractRect WinAPI_SwapDWord WinAPI_SwapQWord WinAPI_SwapWord WinAPI_SwitchColor WinAPI_SwitchDesktop WinAPI_SwitchToThisWindow WinAPI_SystemParametersInfo WinAPI_TabbedTextOut WinAPI_TerminateJobObject WinAPI_TerminateProcess WinAPI_TextOut WinAPI_TileWindows WinAPI_TrackMouseEvent WinAPI_TransparentBlt WinAPI_TwipsPerPixelX WinAPI_TwipsPerPixelY WinAPI_UnhookWindowsHookEx WinAPI_UnhookWinEvent WinAPI_UnionRect WinAPI_UnionStruct WinAPI_UniqueHardwareID WinAPI_UnloadKeyboardLayout WinAPI_UnlockFile WinAPI_UnmapViewOfFile WinAPI_UnregisterApplicationRestart WinAPI_UnregisterClass WinAPI_UnregisterHotKey WinAPI_UnregisterPowerSettingNotification WinAPI_UpdateLayeredWindow WinAPI_UpdateLayeredWindowEx WinAPI_UpdateLayeredWindowIndirect WinAPI_UpdateResource WinAPI_UpdateWindow WinAPI_UrlApplyScheme WinAPI_UrlCanonicalize WinAPI_UrlCombine WinAPI_UrlCompare WinAPI_UrlCreateFromPath WinAPI_UrlFixup WinAPI_UrlGetPart WinAPI_UrlHash WinAPI_UrlIs WinAPI_UserHandleGrantAccess WinAPI_ValidateRect WinAPI_ValidateRgn WinAPI_VerQueryRoot WinAPI_VerQueryValue WinAPI_VerQueryValueEx WinAPI_WaitForInputIdle WinAPI_WaitForMultipleObjects WinAPI_WaitForSingleObject WinAPI_WideCharToMultiByte WinAPI_WidenPath WinAPI_WindowFromDC WinAPI_WindowFromPoint WinAPI_WordToShort WinAPI_Wow64EnableWow64FsRedirection WinAPI_WriteConsole WinAPI_WriteFile WinAPI_WriteProcessMemory WinAPI_ZeroMemory WinNet_AddConnection WinNet_AddConnection2 WinNet_AddConnection3 WinNet_CancelConnection WinNet_CancelConnection2 WinNet_CloseEnum WinNet_ConnectionDialog WinNet_ConnectionDialog1 WinNet_DisconnectDialog WinNet_DisconnectDialog1 WinNet_EnumResource WinNet_GetConnection WinNet_GetConnectionPerformance WinNet_GetLastError WinNet_GetNetworkInformation WinNet_GetProviderName WinNet_GetResourceInformation WinNet_GetResourceParent WinNet_GetUniversalName WinNet_GetUser WinNet_OpenEnum WinNet_RestoreConnection WinNet_UseConnection Word_Create Word_DocAdd Word_DocAttach Word_DocClose Word_DocExport Word_DocFind Word_DocFindReplace Word_DocGet Word_DocLinkAdd Word_DocLinkGet Word_DocOpen Word_DocPictureAdd Word_DocPrint Word_DocRangeSet Word_DocSave Word_DocSaveAs Word_DocTableRead Word_DocTableWrite Word_Quit",I={ +v:[e.C(";","$",{r:0}),e.C("#cs","#ce"),e.C("#comments-start","#comments-end")]},n={cN:"variable",b:"\\$[A-z0-9_]+"},l={cN:"string",v:[{b:/"/,e:/"/,c:[{b:/""/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},o={v:[e.BNM,e.CNM]},a={cN:"preprocessor",b:"#",e:"$",k:"include include-once NoTrayIcon OnAutoItStartRegister RequireAdmin pragma Au3Stripper_Ignore_Funcs Au3Stripper_Ignore_Variables Au3Stripper_Off Au3Stripper_On Au3Stripper_Parameters AutoIt3Wrapper_Add_Constants AutoIt3Wrapper_Au3Check_Parameters AutoIt3Wrapper_Au3Check_Stop_OnWarning AutoIt3Wrapper_Aut2Exe AutoIt3Wrapper_AutoIt3 AutoIt3Wrapper_AutoIt3Dir AutoIt3Wrapper_Change2CUI AutoIt3Wrapper_Compile_Both AutoIt3Wrapper_Compression AutoIt3Wrapper_EndIf AutoIt3Wrapper_Icon AutoIt3Wrapper_If_Compile AutoIt3Wrapper_If_Run AutoIt3Wrapper_Jump_To_First_Error AutoIt3Wrapper_OutFile AutoIt3Wrapper_OutFile_Type AutoIt3Wrapper_OutFile_X64 AutoIt3Wrapper_PlugIn_Funcs AutoIt3Wrapper_Res_Comment Autoit3Wrapper_Res_Compatibility AutoIt3Wrapper_Res_Description AutoIt3Wrapper_Res_Field AutoIt3Wrapper_Res_File_Add AutoIt3Wrapper_Res_FileVersion AutoIt3Wrapper_Res_FileVersion_AutoIncrement AutoIt3Wrapper_Res_Icon_Add AutoIt3Wrapper_Res_Language AutoIt3Wrapper_Res_LegalCopyright AutoIt3Wrapper_Res_ProductVersion AutoIt3Wrapper_Res_requestedExecutionLevel AutoIt3Wrapper_Res_SaveSource AutoIt3Wrapper_Run_After AutoIt3Wrapper_Run_Au3Check AutoIt3Wrapper_Run_Au3Stripper AutoIt3Wrapper_Run_Before AutoIt3Wrapper_Run_Debug_Mode AutoIt3Wrapper_Run_SciTE_Minimized AutoIt3Wrapper_Run_SciTE_OutputPane_Minimized AutoIt3Wrapper_Run_Tidy AutoIt3Wrapper_ShowProgress AutoIt3Wrapper_Testing AutoIt3Wrapper_Tidy_Stop_OnError AutoIt3Wrapper_UPX_Parameters AutoIt3Wrapper_UseUPX AutoIt3Wrapper_UseX64 AutoIt3Wrapper_Version AutoIt3Wrapper_Versioning AutoIt3Wrapper_Versioning_Parameters Tidy_Off Tidy_On Tidy_Parameters EndRegion Region",c:[{b:/\\\n/,r:0},{bK:"include",e:"$",c:[l,{cN:"string",v:[{b:"<",e:">"},{b:/"/,e:/"/,c:[{b:/""/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]}]},l,I]},_={cN:"constant",b:"@[A-z0-9_]+"},G={cN:"function",bK:"Func",e:"$",eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:[n,l,o]}]};return{cI:!0,i:/\/\*/,k:{keyword:t,built_in:i,literal:r},c:[I,n,l,o,a,_,G]}});hljs.registerLanguage("gams",function(e){var s="abort acronym acronyms alias all and assign binary card diag display else1 eps eq equation equations file files for1 free ge gt if inf integer le loop lt maximizing minimizing model models na ne negative no not option options or ord parameter parameters positive prod putpage puttl repeat sameas scalar scalars semicont semiint set1 sets smax smin solve sos1 sos2 sum system table then until using variable variables while1 xor yes";return{aliases:["gms"],cI:!0,k:s,c:[{cN:"section",bK:"sets parameters variables equations",e:";",c:[{b:"/",e:"/",c:[e.NM]}]},{cN:"string",b:"\\*{3}",e:"\\*{3}"},e.NM,{cN:"number",b:"\\$[a-zA-Z0-9]+"}]}});hljs.registerLanguage("matlab",function(e){var a=[e.CNM,{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]}],s={r:0,c:[{cN:"operator",b:/'['\.]*/}]};return{k:{keyword:"break case catch classdef continue else elseif end enumerated events for function global if methods otherwise parfor persistent properties return spmd switch try while",built_in:"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i inf nan isnan isinf isfinite j why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson"},i:'(//|"|#|/\\*|\\s+/\\w+)',c:[{cN:"function",bK:"function",e:"$",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)"},{cN:"params",b:"\\[",e:"\\]"}]},{b:/[a-zA-Z_][a-zA-Z_0-9]*'['\.]*/,rB:!0,r:0,c:[{b:/[a-zA-Z_][a-zA-Z_0-9]*/,r:0},s.c[0]]},{cN:"matrix",b:"\\[",e:"\\]",c:a,r:0,starts:s},{cN:"cell",b:"\\{",e:/}/,c:a,r:0,starts:s},{b:/\)/,r:0,starts:s},e.C("^\\s*\\%\\{\\s*$","^\\s*\\%\\}\\s*$"),e.C("\\%","$")].concat(a)}});hljs.registerLanguage("python",function(e){var r={cN:"prompt",b:/^(>>>|\.\.\.) /},b={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},e.ASM,e.QSM]},a={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},l={cN:"params",b:/\(/,e:/\)/,c:["self",r,a,b]};return{aliases:["py","gyp"],k:{keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},i:/(<\/|->|\?)/,c:[r,a,b,e.HCM,{v:[{cN:"function",bK:"def",r:10},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,l]},{cN:"decorator",b:/^[\t ]*@/,e:/$/},{b:/\b(print|exec)\(/}]}});hljs.registerLanguage("lisp",function(b){var e="[a-zA-Z_\\-\\+\\*\\/\\<\\=\\>\\&\\#][a-zA-Z0-9_\\-\\+\\*\\/\\<\\=\\>\\&\\#!]*",c="\\|[^]*?\\|",r="(\\-|\\+)?\\d+(\\.\\d+|\\/\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\+|\\-)?\\d+)?",a={cN:"shebang",b:"^#!",e:"$"},i={cN:"literal",b:"\\b(t{1}|nil)\\b"},l={cN:"number",v:[{b:r,r:0},{b:"#(b|B)[0-1]+(/[0-1]+)?"},{b:"#(o|O)[0-7]+(/[0-7]+)?"},{b:"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?"},{b:"#(c|C)\\("+r+" +"+r,e:"\\)"}]},t=b.inherit(b.QSM,{i:null}),d=b.C(";","$",{r:0}),n={cN:"variable",b:"\\*",e:"\\*"},u={cN:"keyword",b:"[:&]"+e},N={b:e,r:0},o={b:c},s={b:"\\(",e:"\\)",c:["self",i,t,l,N]},v={cN:"quoted",c:[l,t,n,u,s,N],v:[{b:"['`]\\(",e:"\\)"},{b:"\\(quote ",e:"\\)",k:"quote"},{b:"'"+c}]},f={cN:"quoted",v:[{b:"'"+e},{b:"#'"+e+"(::"+e+")*"}]},g={cN:"list",b:"\\(\\s*",e:"\\)"},q={eW:!0,r:0};return g.c=[{cN:"keyword",v:[{b:e},{b:c}]},q],q.c=[v,f,g,i,l,t,d,n,u,o,N],{i:/\S/,c:[l,a,i,t,d,v,f,g,N]}});hljs.registerLanguage("golo",function(e){return{k:{keyword:"println readln print import module function local return let var while for foreach times in case when match with break continue augment augmentation each find filter reduce if then else otherwise try catch finally raise throw orIfNull",typename:"DynamicObject|10 DynamicVariable struct Observable map set vector list array",literal:"true false null"},c:[e.HCM,e.QSM,e.CNM,{cN:"annotation",b:"@[A-Za-z]+"}]}});hljs.registerLanguage("lua",function(e){var t="\\[=*\\[",a="\\]=*\\]",r={b:t,e:a,c:["self"]},n=[e.C("--(?!"+t+")","$"),e.C("--"+t,a,{c:[r],r:10})];return{l:e.UIR,k:{keyword:"and break do else elseif end false for if in local nil not or repeat return then true until while",built_in:"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table"},c:n.concat([{cN:"function",bK:"function",e:"\\)",c:[e.inherit(e.TM,{b:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{cN:"params",b:"\\(",eW:!0,c:n}].concat(n)},e.CNM,e.ASM,e.QSM,{cN:"string",b:t,e:a,c:[r],r:5}])}});hljs.registerLanguage("dos",function(e){var r=e.C(/@?rem\b/,/$/,{r:10}),t={cN:"label",b:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)",r:0};return{aliases:["bat","cmd"],cI:!0,i:/\/\*/,k:{flow:"if else goto for in do call exit not exist errorlevel defined",operator:"equ neq lss leq gtr geq",keyword:"shift cd dir echo setlocal endlocal set pause copy",stream:"prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux",winutils:"ping net ipconfig taskkill xcopy ren del",built_in:"append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color comp compact convert date dir diskcomp diskcopy doskey erase fs find findstr format ftype graftabl help keyb label md mkdir mode more move path pause print popd pushd promt rd recover rem rename replace restore rmdir shiftsort start subst time title tree type ver verify vol"},c:[{cN:"envvar",b:/%%[^ ]|%[^ ]+?%|![^ ]+?!/},{cN:"function",b:t.b,e:"goto:eof",c:[e.inherit(e.TM,{b:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),r]},{cN:"number",b:"\\b\\d+",r:0},r]}});hljs.registerLanguage("perl",function(e){var t="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when",r={cN:"subst",b:"[$@]\\{",e:"\\}",k:t},s={b:"->{",e:"}"},n={cN:"variable",v:[{b:/\$\d/},{b:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{b:/[\$%@][^\s\w{]/,r:0}]},o=[e.BE,r,n],i=[n,e.HCM,e.C("^\\=\\w","\\=cut",{eW:!0}),s,{cN:"string",c:o,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[e.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[e.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+e.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[e.HCM,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[e.BE],r:0}]},{cN:"sub",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",r:5},{cN:"operator",b:"-\\w\\b",r:0},{b:"^__DATA__$",e:"^__END__$",sL:"mojolicious",c:[{b:"^@@.*",e:"$",cN:"comment"}]}];return r.c=i,s.c=i,{aliases:["pl"],k:t,c:i}});hljs.registerLanguage("protobuf",function(e){return{k:{keyword:"package import option optional required repeated group",built_in:"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes",literal:"true false"},c:[e.QSM,e.NM,e.CLCM,{cN:"class",bK:"message enum service",e:/\{/,i:/\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{cN:"function",bK:"rpc",e:/;/,eE:!0,k:"rpc returns"},{cN:"constant",b:/^\s*[A-Z_]+/,e:/\s*=/,eE:!0}]}});hljs.registerLanguage("accesslog",function(T){return{c:[{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+\\b",r:0},{cN:"string",b:'"(GET|POST|HEAD|PUT|DELETE|CONNECT|OPTIONS|PATCH|TRACE)',e:'"',k:"GET POST HEAD PUT DELETE CONNECT OPTIONS PATCH TRACE",i:"\\n",r:10},{cN:"string",b:/\[/,e:/\]/,i:"\\n"},{cN:"string",b:'"',e:'"',i:"\\n"}]}});hljs.registerLanguage("java",function(e){var a=e.UIR+"(<"+e.UIR+">)?",t="false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private",c="\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",r={cN:"number",b:c,r:0};return{aliases:["jsp"],k:t,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"new throw return else",r:0},{cN:"function",b:"("+a+"\\s+)+"+e.UIR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},r,{cN:"annotation",b:"@[A-Za-z]+"}]}});hljs.registerLanguage("vala",function(e){return{k:{keyword:"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var",built_in:"DBus GLib CCode Gee Object",literal:"false true null"},c:[{cN:"class",bK:"class interface delegate namespace",e:"{",eE:!0,i:"[^,:\\n\\s\\.]",c:[e.UTM]},e.CLCM,e.CBCM,{cN:"string",b:'"""',e:'"""',r:5},e.ASM,e.QSM,e.CNM,{cN:"preprocessor",b:"^#",e:"$",r:2},{cN:"constant",b:" [A-Z_]+ ",r:0}]}});hljs.registerLanguage("tcl",function(e){return{aliases:["tk"],k:"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while",c:[e.C(";[ \\t]*#","$"),e.C("^[ \\t]*#","$"),{bK:"proc",e:"[\\{]",eE:!0,c:[{cN:"symbol",b:"[ \\t\\n\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",e:"[ \\t\\n\\r]",eW:!0,eE:!0}]},{cN:"variable",eE:!0,v:[{b:"\\$(\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\(([a-zA-Z0-9_])*\\)",e:"[^a-zA-Z0-9_\\}\\$]"},{b:"\\$(\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",e:"(\\))?[^a-zA-Z0-9_\\}\\$]"}]},{cN:"string",c:[e.BE],v:[e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},{cN:"number",v:[e.BNM,e.CNM]}]}});hljs.registerLanguage("haml",function(s){return{cI:!0,c:[{cN:"doctype",b:"^!!!( (5|1\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\b.*))?$",r:10},s.C("^\\s*(!=#|=#|-#|/).*$",!1,{r:0}),{b:"^\\s*(-|=|!=)(?!#)",starts:{e:"\\n",sL:"ruby"}},{cN:"tag",b:"^\\s*%",c:[{cN:"title",b:"\\w+"},{cN:"value",b:"[#\\.][\\w-]+"},{b:"{\\s*",e:"\\s*}",eE:!0,c:[{b:":\\w+\\s*=>",e:",\\s+",rB:!0,eW:!0,c:[{cN:"symbol",b:":\\w+"},s.ASM,s.QSM,{b:"\\w+",r:0}]}]},{b:"\\(\\s*",e:"\\s*\\)",eE:!0,c:[{b:"\\w+\\s*=",e:"\\s+",rB:!0,eW:!0,c:[{cN:"attribute",b:"\\w+",r:0},s.ASM,s.QSM,{b:"\\w+",r:0}]}]}]},{cN:"bullet",b:"^\\s*[=~]\\s*",r:0},{b:"#{",starts:{e:"}",sL:"ruby"}}]}});hljs.registerLanguage("autohotkey",function(e){var r={cN:"escape",b:"`[\\s\\S]"},c=e.C(";","$",{r:0}),n=[{cN:"built_in",b:"A_[a-zA-Z0-9]+"},{cN:"built_in",bK:"ComSpec Clipboard ClipboardAll ErrorLevel"}];return{cI:!0,k:{keyword:"Break Continue Else Gosub If Loop Return While",literal:"A true false NOT AND OR"},c:n.concat([r,e.inherit(e.QSM,{c:[r]}),c,{cN:"number",b:e.NR,r:0},{cN:"var_expand",b:"%",e:"%",i:"\\n",c:[r]},{cN:"label",c:[r],v:[{b:'^[^\\n";]+::(?!=)'},{b:'^[^\\n";]+:(?!=)',r:0}]},{b:",\\s*,",r:10}])}});hljs.registerLanguage("nimrod",function(t){return{aliases:["nim"],k:{keyword:"addr and as asm bind block break|0 case|0 cast const|0 continue|0 converter discard distinct|10 div do elif else|0 end|0 enum|0 except export finally for from generic if|0 import|0 in include|0 interface is isnot|10 iterator|10 let|0 macro method|10 mixin mod nil not notin|10 object|0 of or out proc|10 ptr raise ref|10 return shl shr static template try|0 tuple type|0 using|0 var|0 when while|0 with without xor yield",literal:"shared guarded stdin stdout stderr result|10 true false"},c:[{cN:"decorator",b:/{\./,e:/\.}/,r:10},{cN:"string",b:/[a-zA-Z]\w*"/,e:/"/,c:[{b:/""/}]},{cN:"string",b:/([a-zA-Z]\w*)?"""/,e:/"""/},t.QSM,{cN:"type",b:/\b[A-Z]\w+\b/,r:0},{cN:"type",b:/\b(int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|float|float32|float64|bool|char|string|cstring|pointer|expr|stmt|void|auto|any|range|array|openarray|varargs|seq|set|clong|culong|cchar|cschar|cshort|cint|csize|clonglong|cfloat|cdouble|clongdouble|cuchar|cushort|cuint|culonglong|cstringarray|semistatic)\b/},{cN:"number",b:/\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/,r:0},{cN:"number",b:/\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:"number",b:/\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:"number",b:/\b(\d[_\d]*)('?[iIuUfF](8|16|32|64))?/,r:0},t.HCM]}});hljs.registerLanguage("mizar",function(e){return{k:"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity",c:[e.C("::","$")]}});hljs.registerLanguage("markdown",function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"header",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"blockquote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"`.+?`"},{b:"^( {4}| )",e:"$",r:0}]},{cN:"horizontal_rule",b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"link_label",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link_url",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"link_reference",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:"^\\[.+\\]:",rB:!0,c:[{cN:"link_reference",b:"\\[",e:"\\]:",eB:!0,eE:!0,starts:{cN:"link_url",e:"$"}}]}]}});hljs.registerLanguage("aspectj",function(e){var t="false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance",i="get set args call";return{k:t,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"aspect",bK:"aspect",e:/[{;=]/,eE:!0,i:/[:;"\[\]]/,c:[{bK:"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton"},e.UTM,{b:/\([^\)]*/,e:/[)]+/,k:t+" "+i,eE:!1}]},{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,r:0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"pointcut after before around throwing returning",e:/[)]/,eE:!1,i:/["\[\]]/,c:[{b:e.UIR+"\\s*\\(",rB:!0,c:[e.UTM]}]},{b:/[:]/,rB:!0,e:/[{;]/,r:0,eE:!1,k:t,i:/["\[\]]/,c:[{b:e.UIR+"\\s*\\(",k:t+" "+i},e.QSM]},{bK:"new throw",r:0},{cN:"function",b:/\w+ +\w+(\.)?\w+\s*\([^\)]*\)\s*((throws)[\w\s,]+)?[\{;]/,rB:!0,e:/[{;=]/,k:t,eE:!0,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,r:0,k:t,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},e.CNM,{cN:"annotation",b:"@[A-Za-z]+"}]}});hljs.registerLanguage("dns",function(d){return{aliases:["bind","zone"],k:{keyword:"IN A AAAA AFSDB APL CAA CDNSKEY CDS CERT CNAME DHCID DLV DNAME DNSKEY DS HIP IPSECKEY KEY KX LOC MX NAPTR NS NSEC NSEC3 NSEC3PARAM PTR RRSIG RP SIG SOA SRV SSHFP TA TKEY TLSA TSIG TXT"},c:[d.C(";","$"),{cN:"operator",bK:"$TTL $GENERATE $INCLUDE $ORIGIN"},{cN:"number",b:"((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:)))"},{cN:"number",b:"((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])"}]}});hljs.registerLanguage("django",function(e){var t={cN:"filter",b:/\|[A-Za-z]+:?/,k:"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone",c:[{cN:"argument",b:/"/,e:/"/},{cN:"argument",b:/'/,e:/'/}]};return{aliases:["jinja"],cI:!0,sL:"xml",c:[e.C(/\{%\s*comment\s*%}/,/\{%\s*endcomment\s*%}/),e.C(/\{#/,/#}/),{cN:"template_tag",b:/\{%/,e:/%}/,k:"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor in ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup by as ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim",c:[t]},{cN:"variable",b:/\{\{/,e:/}}/,c:[t]}]}});hljs.registerLanguage("step21",function(e){var r="[A-Z_][A-Z0-9_.]*",i="END-ISO-10303-21;",l={literal:"",built_in:"",keyword:"HEADER ENDSEC DATA"},s={cN:"preprocessor",b:"ISO-10303-21;",r:10},t=[e.CLCM,e.CBCM,e.C("/\\*\\*!","\\*/"),e.CNM,e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:"string",b:"'",e:"'"},{cN:"label",v:[{b:"#",e:"\\d+",i:"\\W"}]}];return{aliases:["p21","step","stp"],cI:!0,l:r,k:l,c:[{cN:"preprocessor",b:i,r:10},s].concat(t)}});hljs.registerLanguage("roboconf",function(e){var n="[a-zA-Z-_][^\n{\r\n]+\\{";return{aliases:["graph","instances"],cI:!0,k:"import",c:[{cN:"facet",b:"^facet "+n,e:"}",k:"facet installer exports children extends",c:[e.HCM]},{cN:"instance-of",b:"^instance of "+n,e:"}",k:"name count channels instance-data instance-state instance of",c:[{cN:"keyword",b:"[a-zA-Z-_]+( | )*:"},e.HCM]},{cN:"component",b:"^"+n,e:"}",l:"\\(?[a-zA-Z]+\\)?",k:"installer exports children extends imports facets alias (optional)",c:[{cN:"string",b:"\\.[a-zA-Z-_]+",e:"\\s|,|;",eE:!0},e.HCM]},e.HCM]}});hljs.registerLanguage("capnproto",function(t){return{aliases:["capnp"],k:{keyword:"struct enum interface union group import using const annotation extends in of on as with from fixed",built_in:"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List",literal:"true false"},c:[t.QSM,t.NM,t.HCM,{cN:"shebang",b:/@0x[\w\d]{16};/,i:/\n/},{cN:"number",b:/@\d+\b/},{cN:"class",bK:"struct enum",e:/\{/,i:/\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]},{cN:"class",bK:"interface",e:/\{/,i:/\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]}]}});hljs.registerLanguage("livescript",function(e){var t={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger case default function var with then unless until loop of by when and or is isnt not it that otherwise from to til fallthrough super case default function var void const let enum export import native __hasProp __extends __slice __bind __indexOf",literal:"true false null undefined yes no on off it that void",built_in:"npm require console print module global window document"},s="[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*",i=e.inherit(e.TM,{b:s}),n={cN:"subst",b:/#\{/,e:/}/,k:t},r={cN:"subst",b:/#[A-Za-z$_]/,e:/(?:\-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,k:t},c=[e.BNM,{cN:"number",b:"(\\b0[xX][a-fA-F0-9_]+)|(\\b\\d(\\d|_\\d)*(\\.(\\d(\\d|_\\d)*)?)?(_*[eE]([-+]\\d(_\\d|\\d)*)?)?[_a-z]*)",r:0,starts:{e:"(\\s*/)?",r:0}},{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,n,r]},{b:/"/,e:/"/,c:[e.BE,n,r]},{b:/\\/,e:/(\s|$)/,eE:!0}]},{cN:"pi",v:[{b:"//",e:"//[gim]*",c:[n,e.HCM]},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{cN:"property",b:"@"+s},{b:"``",e:"``",eB:!0,eE:!0,sL:"javascript"}];n.c=c;var a={cN:"params",b:"\\(",rB:!0,c:[{b:/\(/,e:/\)/,k:t,c:["self"].concat(c)}]};return{aliases:["ls"],k:t,i:/\/\*/,c:c.concat([e.C("\\/\\*","\\*\\/"),e.HCM,{cN:"function",c:[i,a],rB:!0,v:[{b:"("+s+"\\s*(?:=|:=)\\s*)?(\\(.*\\))?\\s*\\B\\->\\*?",e:"\\->\\*?"},{b:"("+s+"\\s*(?:=|:=)\\s*)?!?(\\(.*\\))?\\s*\\B[-~]{1,2}>\\*?",e:"[-~]{1,2}>\\*?"},{b:"("+s+"\\s*(?:=|:=)\\s*)?(\\(.*\\))?\\s*\\B!?[-~]{1,2}>\\*?",e:"!?[-~]{1,2}>\\*?"}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[i]},i]},{cN:"attribute",b:s+":",e:":",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage("crystal",function(e){function b(e,b){var r=[{b:e,e:b}];return r[0].c=r,r}var r="(_[uif](8|16|32|64))?",c="[a-zA-Z_]\\w*[!?=]?",n="!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",i="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\][=?]?",s={keyword:"abstract alias as asm begin break case class def do else elsif end ensure enum extend for fun if ifdef include instance_sizeof is_a? lib macro module next of out pointerof private protected rescue responds_to? return require self sizeof struct super then type typeof union unless until when while with yield __DIR__ __FILE__ __LINE__",literal:"false nil true"},t={cN:"subst",b:"#{",e:"}",k:s},a={cN:"expansion",v:[{b:"\\{\\{",e:"\\}\\}"},{b:"\\{%",e:"%\\}"}],k:s,r:10},o={cN:"string",c:[e.BE,t],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%w?\\(",e:"\\)",c:b("\\(","\\)")},{b:"%w?\\[",e:"\\]",c:b("\\[","\\]")},{b:"%w?{",e:"}",c:b("{","}")},{b:"%w?<",e:">",c:b("<",">")},{b:"%w?/",e:"/"},{b:"%w?%",e:"%"},{b:"%w?-",e:"-"},{b:"%w?\\|",e:"\\|"}],r:0},u={b:"("+n+")\\s*",c:[{cN:"regexp",c:[e.BE,t],v:[{b:"/",e:"/[a-z]*"},{b:"%r\\(",e:"\\)",c:b("\\(","\\)")},{b:"%r\\[",e:"\\]",c:b("\\[","\\]")},{b:"%r{",e:"}",c:b("{","}")},{b:"%r<",e:">",c:b("<",">")},{b:"%r/",e:"/"},{b:"%r%",e:"%"},{b:"%r-",e:"-"},{b:"%r\\|",e:"\\|"}]}],r:0},l={cN:"regexp",c:[e.BE,t],v:[{b:"%r\\(",e:"\\)",c:b("\\(","\\)")},{b:"%r\\[",e:"\\]",c:b("\\[","\\]")},{b:"%r{",e:"}",c:b("{","}")},{b:"%r<",e:">",c:b("<",">")},{b:"%r/",e:"/"},{b:"%r%",e:"%"},{b:"%r-",e:"-"},{b:"%r\\|",e:"\\|"}],r:0},_={cN:"annotation",b:"@\\[",e:"\\]",r:5},f=[a,o,u,l,_,e.HCM,{cN:"class",bK:"class module struct",e:"$|;",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{cN:"inheritance",b:"<\\s*",c:[{cN:"parent",b:"("+e.IR+"::)?"+e.IR}]}]},{cN:"class",bK:"lib enum union",e:"$|;",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"})],r:10},{cN:"function",bK:"def",e:/\B\b/,c:[e.inherit(e.TM,{b:i,endsParent:!0})]},{cN:"function",bK:"fun macro",e:/\B\b/,c:[e.inherit(e.TM,{b:i,endsParent:!0})],r:5},{cN:"constant",b:"(::)?(\\b[A-Z]\\w*(::)?)+",r:0},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":",c:[o,{b:i}],r:0},{cN:"number",v:[{b:"\\b0b([01_]*[01])"+r},{b:"\\b0o([0-7_]*[0-7])"+r},{b:"\\b0x([A-Fa-f0-9_]*[A-Fa-f0-9])"+r},{b:"\\b(([0-9][0-9_]*[0-9]|[0-9])(\\.[0-9_]*[0-9])?([eE][+-]?[0-9_]*[0-9])?)"+r}],r:0},{cN:"variable",b:"(\\$\\W)|((\\$|\\@\\@?|%)(\\w+))"}];return t.c=f,_.c=f,a.c=f.slice(1),{aliases:["cr"],l:c,k:s,c:f}});hljs.registerLanguage("powershell",function(e){var t={b:"`[\\s\\S]",r:0},r={cN:"variable",v:[{b:/\$[\w\d][\w\d_:]*/}]},o={cN:"string",b:/"/,e:/"/,c:[t,r,{cN:"variable",b:/\$[A-z]/,e:/[^A-z]/}]},a={cN:"string",b:/'/,e:/'/};return{aliases:["ps"],l:/-?[A-z\.\-]+/,cI:!0,k:{keyword:"if else foreach return function do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch",literal:"$null $true $false",built_in:"Add-Content Add-History Add-Member Add-PSSnapin Clear-Content Clear-Item Clear-Item Property Clear-Variable Compare-Object ConvertFrom-SecureString Convert-Path ConvertTo-Html ConvertTo-SecureString Copy-Item Copy-ItemProperty Export-Alias Export-Clixml Export-Console Export-Csv ForEach-Object Format-Custom Format-List Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command Get-Content Get-Credential Get-Culture Get-Date Get-EventLog Get-ExecutionPolicy Get-Help Get-History Get-Host Get-Item Get-ItemProperty Get-Location Get-Member Get-PfxCertificate Get-Process Get-PSDrive Get-PSProvider Get-PSSnapin Get-Service Get-TraceSource Get-UICulture Get-Unique Get-Variable Get-WmiObject Group-Object Import-Alias Import-Clixml Import-Csv Invoke-Expression Invoke-History Invoke-Item Join-Path Measure-Command Measure-Object Move-Item Move-ItemProperty New-Alias New-Item New-ItemProperty New-Object New-PSDrive New-Service New-TimeSpan New-Variable Out-Default Out-File Out-Host Out-Null Out-Printer Out-String Pop-Location Push-Location Read-Host Remove-Item Remove-ItemProperty Remove-PSDrive Remove-PSSnapin Remove-Variable Rename-Item Rename-ItemProperty Resolve-Path Restart-Service Resume-Service Select-Object Select-String Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-Location Set-PSDebug Set-Service Set-TraceSource Set-Variable Sort-Object Split-Path Start-Service Start-Sleep Start-Transcript Stop-Process Stop-Service Stop-Transcript Suspend-Service Tee-Object Test-Path Trace-Command Update-FormatData Update-TypeData Where-Object Write-Debug Write-Error Write-Host Write-Output Write-Progress Write-Verbose Write-Warning",operator:"-ne -eq -lt -gt -ge -le -not -like -notlike -match -notmatch -contains -notcontains -in -notin -replace"},c:[e.HCM,e.NM,o,a,r]}});hljs.registerLanguage("ruby",function(e){var c="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",r="and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",b={cN:"doctag",b:"@[A-Za-z]+"},a={cN:"value",b:"#<",e:">"},n=[e.C("#","$",{c:[b]}),e.C("^\\=begin","^\\=end",{c:[b],r:10}),e.C("^__END__","\\n$")],s={cN:"subst",b:"#\\{",e:"}",k:r},t={cN:"string",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{",e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/}]},i={cN:"params",b:"\\(",e:"\\)",k:r},d=[t,a,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{cN:"inheritance",b:"<\\s*",c:[{cN:"parent",b:"("+e.IR+"::)?"+e.IR}]}].concat(n)},{cN:"function",bK:"def",e:"$|;",c:[e.inherit(e.TM,{b:c}),i].concat(n)},{cN:"constant",b:"(::)?(\\b[A-Z]\\w*(::)?)+",r:0},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":",c:[t,{b:c}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{cN:"variable",b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{b:"("+e.RSR+")\\s*",c:[a,{cN:"regexp",c:[e.BE,s],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(n),r:0}].concat(n);s.c=d,i.c=d;var o="[>?]>",l="[\\w#]+\\(\\w+\\):\\d+:\\d+>",u="(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>",N=[{b:/^\s*=>/,cN:"status",starts:{e:"$",c:d}},{cN:"prompt",b:"^("+o+"|"+l+"|"+u+")",starts:{e:"$",c:d}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:r,i:/\/\*/,c:n.concat(N).concat(d)}});hljs.registerLanguage("brainfuck",function(r){var n={cN:"literal",b:"[\\+\\-]",r:0};return{aliases:["bf"],c:[r.C("[^\\[\\]\\.,\\+\\-<> \r\n]","[\\[\\]\\.,\\+\\-<> \r\n]",{rE:!0,r:0}),{cN:"title",b:"[\\[\\]]",r:0},{cN:"string",b:"[\\.,]",r:0},{b:/\+\+|\-\-/,rB:!0,c:[n]},n]}});hljs.registerLanguage("thrift",function(e){var t="bool byte i16 i32 i64 double string binary";return{k:{keyword:"namespace const typedef struct enum service exception void oneway set list map required optional",built_in:t,literal:"true false"},c:[e.QSM,e.NM,e.CLCM,e.CBCM,{cN:"class",bK:"struct enum service exception",e:/\{/,i:/\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{b:"\\b(set|list|map)\\s*<",e:">",k:t,c:["self"]}]}});hljs.registerLanguage("less",function(e){var r="[\\w-]+",t="("+r+"|@{"+r+"})",a=[],c=[],n=function(e){return{cN:"string",b:"~?"+e+".*?"+e}},i=function(e,r,t){return{cN:e,b:r,r:t}},s=function(r,t,a){return e.inherit({cN:r,b:t+"\\(",e:"\\(",rB:!0,eE:!0,r:0},a)},b={b:"\\(",e:"\\)",c:c,r:0};c.push(e.CLCM,e.CBCM,n("'"),n('"'),e.CSSNM,i("hexcolor","#[0-9A-Fa-f]+\\b"),s("function","(url|data-uri)",{starts:{cN:"string",e:"[\\)\\n]",eE:!0}}),s("function",r),b,i("variable","@@?"+r,10),i("variable","@{"+r+"}"),i("built_in","~?`[^`]*?`"),{cN:"attribute",b:r+"\\s*:",e:":",rB:!0,eE:!0});var o=c.concat({b:"{",e:"}",c:a}),u={bK:"when",eW:!0,c:[{bK:"and not"}].concat(c)},C={cN:"attribute",b:t,e:":",eE:!0,c:[e.CLCM,e.CBCM],i:/\S/,starts:{e:"[;}]",rE:!0,c:c,i:"[<=$]"}},l={cN:"at_rule",b:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{e:"[;{}]",rE:!0,c:c,r:0}},d={cN:"variable",v:[{b:"@"+r+"\\s*:",r:15},{b:"@"+r}],starts:{e:"[;}]",rE:!0,c:o}},p={v:[{b:"[\\.#:&\\[]",e:"[;{}]"},{b:t+"[^;]*{",e:"{"}],rB:!0,rE:!0,i:"[<='$\"]",c:[e.CLCM,e.CBCM,u,i("keyword","all\\b"),i("variable","@{"+r+"}"),i("tag",t+"%?",0),i("id","#"+t),i("class","\\."+t,0),i("keyword","&",0),s("pseudo",":not"),s("keyword",":extend"),i("pseudo","::?"+t),{cN:"attr_selector",b:"\\[",e:"\\]"},{b:"\\(",e:"\\)",c:o},{b:"!important"}]};return a.push(e.CLCM,e.CBCM,l,d,p,C),{cI:!0,i:"[=>'/<($\"]",c:a}});hljs.registerLanguage("scilab",function(e){var n=[e.CNM,{cN:"string",b:"'|\"",e:"'|\"",c:[e.BE,{b:"''"}]}];return{aliases:["sci"],k:{keyword:"abort break case clear catch continue do elseif else endfunction end for functionglobal if pause return resume select try then while%f %F %t %T %pi %eps %inf %nan %e %i %z %s",built_in:"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp errorexec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isemptyisinfisnan isvector lasterror length load linspace list listfiles log10 log2 logmax min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand realround sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tantype typename warning zeros matrix"},i:'("|#|/\\*|\\s+/\\w+)',c:[{cN:"function",bK:"function endfunction",e:"$",k:"function endfunction|10",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)"}]},{cN:"transposed_variable",b:"[a-zA-Z_][a-zA-Z_0-9]*('+[\\.']*|[\\.']+)",e:"",r:0},{cN:"matrix",b:"\\[",e:"\\]'*[\\.']*",r:0,c:n},e.C("//","$")].concat(n)}});hljs.registerLanguage("oxygene",function(e){var r="abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained",t=e.C("{","}",{r:0}),a=e.C("\\(\\*","\\*\\)",{r:10}),n={cN:"string",b:"'",e:"'",c:[{b:"''"}]},o={cN:"string",b:"(#\\d+)+"},i={cN:"function",bK:"function constructor destructor procedure method",e:"[:;]",k:"function constructor|10 destructor|10 procedure|10 method|10",c:[e.TM,{cN:"params",b:"\\(",e:"\\)",k:r,c:[n,o]},t,a]};return{cI:!0,k:r,i:'("|\\$[G-Zg-z]|\\/\\*|</|=>|->)',c:[t,a,e.CLCM,n,o,e.NM,i,{cN:"class",b:"=\\bclass\\b",e:"end;",k:r,c:[n,o,t,a,e.CLCM,i]}]}});hljs.registerLanguage("lasso",function(e){var r="[a-zA-Z_][a-zA-Z0-9_.]*",a="<\\?(lasso(script)?|=)",t="\\]|\\?>",s={literal:"true false none minimal full all void bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft",built_in:"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock",keyword:"error_code error_msg error_pop error_push error_reset cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome"},n=e.C("<!--","-->",{r:0}),i={cN:"preprocessor",b:"\\[noprocess\\]",starts:{cN:"markup",e:"\\[/noprocess\\]",rE:!0,c:[n]}},o={cN:"preprocessor",b:"\\[/noprocess|"+a},l={cN:"variable",b:"'"+r+"'"},c=[e.C("/\\*\\*!","\\*/"),e.CLCM,e.CBCM,e.inherit(e.CNM,{b:e.CNR+"|(infinity|nan)\\b"}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:"string",b:"`",e:"`"},{cN:"variable",v:[{b:"[#$]"+r},{b:"#",e:"\\d+",i:"\\W"}]},{cN:"tag",b:"::\\s*",e:r,i:"\\W"},{cN:"attribute",v:[{b:"-(?!infinity)"+e.UIR,r:0},{b:"(\\.\\.\\.)"}]},{cN:"subst",v:[{b:"->\\s*",c:[l]},{b:"->|\\\\|&&?|\\|\\||!(?!=|>)|(and|or|not)\\b",r:0}]},{cN:"built_in",b:"\\.\\.?\\s*",r:0,c:[l]},{cN:"class",bK:"define",rE:!0,e:"\\(|=>",c:[e.inherit(e.TM,{b:e.UIR+"(=(?!>))?"})]}];return{aliases:["ls","lassoscript"],cI:!0,l:r+"|&[lg]t;",k:s,c:[{cN:"preprocessor",b:t,r:0,starts:{cN:"markup",e:"\\[|"+a,rE:!0,r:0,c:[n]}},i,o,{cN:"preprocessor",b:"\\[no_square_brackets",starts:{e:"\\[/no_square_brackets\\]",l:r+"|&[lg]t;",k:s,c:[{cN:"preprocessor",b:t,r:0,starts:{cN:"markup",e:"\\[noprocess\\]|"+a,rE:!0,c:[n]}},i,o].concat(c)}},{cN:"preprocessor",b:"\\[",r:0},{cN:"shebang",b:"^#!.+lasso9\\b",r:10}].concat(c)}});hljs.registerLanguage("gcode",function(e){var N="[A-Z_][A-Z0-9_.]*",i="\\%",c={literal:"",built_in:"",keyword:"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR"},r={cN:"preprocessor",b:"([O])([0-9]+)"},l=[e.CLCM,e.CBCM,e.C(/\(/,/\)/),e.inherit(e.CNM,{b:"([-+]?([0-9]*\\.?[0-9]+\\.?))|"+e.CNR}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:"keyword",b:"([G])([0-9]+\\.?[0-9]?)"},{cN:"title",b:"([M])([0-9]+\\.?[0-9]?)"},{cN:"title",b:"(VC|VS|#)",e:"(\\d+)"},{cN:"title",b:"(VZOFX|VZOFY|VZOFZ)"},{cN:"built_in",b:"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\[)",e:"([-+]?([0-9]*\\.?[0-9]+\\.?))(\\])"},{cN:"label",v:[{b:"N",e:"\\d+",i:"\\W"}]}];return{aliases:["nc"],cI:!0,l:N,k:c,c:[{cN:"preprocessor",b:i},r].concat(l)}});hljs.registerLanguage("scala",function(e){var t={cN:"annotation",b:"@[A-Za-z]+"},r={cN:"string",b:'u?r?"""',e:'"""',r:10},a={cN:"symbol",b:"'\\w[\\w\\d_]*(?!')"},c={cN:"type",b:"\\b[A-Z][A-Za-z0-9_]*",r:0},i={cN:"title",b:/[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/,r:0},n={cN:"class",bK:"class object trait type",e:/[:={\[(\n;]/,c:[{cN:"keyword",bK:"extends with",r:10},i]},l={cN:"function",bK:"def",e:/[:={\[(\n;]/,c:[i]};return{k:{literal:"true false null",keyword:"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit"},c:[e.CLCM,e.CBCM,r,e.QSM,a,c,l,n,e.CNM,t]}});hljs.registerLanguage("armasm",function(s){return{cI:!0,aliases:["arm"],l:"\\.?"+s.IR,k:{literal:"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 ",preprocessor:".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND ",built_in:"{PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @ "},c:[{cN:"keyword",b:"\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?",e:"\\s"},s.C("[;@]","$",{r:0}),s.CBCM,s.QSM,{cN:"string",b:"'",e:"[^\\\\]'",r:0},{cN:"title",b:"\\|",e:"\\|",i:"\\n",r:0},{cN:"number",v:[{b:"[#$=]?0x[0-9a-f]+"},{b:"[#$=]?0b[01]+"},{b:"[#$=]\\d+"},{b:"\\b\\d+"}],r:0},{cN:"label",v:[{b:"^[a-z_\\.\\$][a-z0-9_\\.\\$]+"},{b:"^\\s*[a-z_\\.\\$][a-z0-9_\\.\\$]+:"},{b:"[=#]\\w+"}],r:0}]}});hljs.registerLanguage("avrasm",function(r){return{cI:!0,l:"\\.?"+r.IR,k:{keyword:"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr",built_in:"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf",preprocessor:".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set"},c:[r.CBCM,r.C(";","$",{r:0}),r.CNM,r.BNM,{cN:"number",b:"\\b(\\$[a-zA-Z0-9]+|0o[0-7]+)"},r.QSM,{cN:"string",b:"'",e:"[^\\\\]'",i:"[^\\\\][^']"},{cN:"label",b:"^[A-Za-z0-9_.$]+:"},{cN:"preprocessor",b:"#",e:"$"},{cN:"localvars",b:"@[0-9]+"}]}});hljs.registerLanguage("profile",function(e){return{c:[e.CNM,{cN:"built_in",b:"{",e:"}$",eB:!0,eE:!0,c:[e.ASM,e.QSM],r:0},{cN:"filename",b:"[a-zA-Z_][\\da-zA-Z_]+\\.[\\da-zA-Z_]{1,3}",e:":",eE:!0},{cN:"header",b:"(ncalls|tottime|cumtime)",e:"$",k:"ncalls tottime|10 cumtime|10 filename",r:10},{cN:"summary",b:"function calls",e:"$",c:[e.CNM],r:10},e.ASM,e.QSM,{cN:"function",b:"\\(",e:"\\)$",c:[e.UTM],r:0}]}});hljs.registerLanguage("mercury",function(e){var i={keyword:"module use_module import_module include_module end_module initialise mutable initialize finalize finalise interface implementation pred mode func type inst solver any_pred any_func is semidet det nondet multi erroneous failure cc_nondet cc_multi typeclass instance where pragma promise external trace atomic or_else require_complete_switch require_det require_semidet require_multi require_nondet require_cc_multi require_cc_nondet require_erroneous require_failure",pragma:"inline no_inline type_spec source_file fact_table obsolete memo loop_check minimal_model terminates does_not_terminate check_termination promise_equivalent_clauses",preprocessor:"foreign_proc foreign_decl foreign_code foreign_type foreign_import_module foreign_export_enum foreign_export foreign_enum may_call_mercury will_not_call_mercury thread_safe not_thread_safe maybe_thread_safe promise_pure promise_semipure tabled_for_io local untrailed trailed attach_to_io_state can_pass_as_mercury_type stable will_not_throw_exception may_modify_trail will_not_modify_trail may_duplicate may_not_duplicate affects_liveness does_not_affect_liveness doesnt_affect_liveness no_sharing unknown_sharing sharing",built_in:"some all not if then else true fail false try catch catch_any semidet_true semidet_false semidet_fail impure_true impure semipure"},r={cN:"label",b:"XXX",e:"$",eW:!0,r:0},t=e.inherit(e.CLCM,{b:"%"}),_=e.inherit(e.CBCM,{r:0});t.c.push(r),_.c.push(r);var n={cN:"number",b:"0'.\\|0[box][0-9a-fA-F]*"},a=e.inherit(e.ASM,{r:0}),o=e.inherit(e.QSM,{r:0}),l={cN:"constant",b:"\\\\[abfnrtv]\\|\\\\x[0-9a-fA-F]*\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]",r:0};o.c.push(l);var s={cN:"built_in",v:[{b:"<=>"},{b:"<=",r:0},{b:"=>",r:0},{b:"/\\\\"},{b:"\\\\/"}]},c={cN:"built_in",v:[{b:":-\\|-->"},{b:"=",r:0}]};return{aliases:["m","moo"],k:i,c:[s,c,t,_,n,e.NM,a,o,{b:/:-/}]}});hljs.registerLanguage("crmsh",function(e){var t="primitive rsc_template",r="group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml",a="property rsc_defaults op_defaults",s="params meta operations op rule attributes utilization",i="read write deny defined not_defined in_range date spec in ref reference attribute type xpath version and or lt gt tag lte gte eq ne \\",o="number string",n="Master Started Slave Stopped start promote demote stop monitor true false";return{aliases:["crm","pcmk"],cI:!0,k:{keyword:s,operator:i,type:o,literal:n},c:[e.HCM,{bK:"node",starts:{cN:"identifier",e:"\\s*([\\w_-]+:)?",starts:{cN:"title",e:"\\s*[\\$\\w_][\\w_-]*"}}},{bK:t,starts:{cN:"title",e:"\\s*[\\$\\w_][\\w_-]*",starts:{cN:"pragma",e:"\\s*@?[\\w_][\\w_\\.:-]*"}}},{b:"\\b("+r.split(" ").join("|")+")\\s+",k:r,starts:{cN:"title",e:"[\\$\\w_][\\w_-]*"}},{bK:a,starts:{cN:"title",e:"\\s*([\\w_-]+:)?"}},e.QSM,{cN:"pragma",b:"(ocf|systemd|service|lsb):[\\w_:-]+",r:0},{cN:"number",b:"\\b\\d+(\\.\\d+)?(ms|s|h|m)?",r:0},{cN:"number",b:"[-]?(infinity|inf)",r:0},{cN:"variable",b:/([A-Za-z\$_\#][\w_-]+)=/,r:0},{cN:"tag",b:"</?",e:"/?>",r:0}]}});hljs.registerLanguage("erlang",function(e){var r="[a-z'][a-zA-Z0-9_']*",c="("+r+":"+r+"|"+r+")",a={keyword:"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor",literal:"false true"},n=e.C("%","$"),i={cN:"number",b:"\\b(\\d+#[a-fA-F0-9]+|\\d+(\\.\\d+)?([eE][-+]?\\d+)?)",r:0},b={b:"fun\\s+"+r+"/\\d+"},d={b:c+"\\(",e:"\\)",rB:!0,r:0,c:[{cN:"function_name",b:c,r:0},{b:"\\(",e:"\\)",eW:!0,rE:!0,r:0}]},o={cN:"tuple",b:"{",e:"}",r:0},t={cN:"variable",b:"\\b_([A-Z][A-Za-z0-9_]*)?",r:0},l={cN:"variable",b:"[A-Z][a-zA-Z0-9_]*",r:0},f={b:"#"+e.UIR,r:0,rB:!0,c:[{cN:"record_name",b:"#"+e.UIR,r:0},{b:"{",e:"}",r:0}]},s={bK:"fun receive if try case",e:"end",k:a};s.c=[n,b,e.inherit(e.ASM,{cN:""}),s,d,e.QSM,i,o,t,l,f];var u=[n,b,s,d,e.QSM,i,o,t,l,f];d.c[1].c=u,o.c=u,f.c[1].c=u;var v={cN:"params",b:"\\(",e:"\\)",c:u};return{aliases:["erl"],k:a,i:"(</|\\*=|\\+=|-=|/\\*|\\*/|\\(\\*|\\*\\))",c:[{cN:"function",b:"^"+r+"\\s*\\(",e:"->",rB:!0,i:"\\(|#|//|/\\*|\\\\|:|;",c:[v,e.inherit(e.TM,{b:r})],starts:{e:";|\\.",k:a,c:u}},n,{cN:"pp",b:"^-",e:"\\.",r:0,eE:!0,rB:!0,l:"-"+e.IR,k:"-module -record -undef -export -ifdef -ifndef -author -copyright -doc -vsn -import -include -include_lib -compile -define -else -endif -file -behaviour -behavior -spec",c:[v]},i,e.QSM,f,t,l,o,{b:/\.$/}]}});hljs.registerLanguage("cpp",function(t){var e={cN:"keyword",b:"\\b[a-z\\d_]*_t\\b"},r={cN:"string",v:[t.inherit(t.QSM,{b:'((u8?|U)|L)?"'}),{b:'(u8?|U)?R"',e:'"',c:[t.BE]},{b:"'\\\\?.",e:"'",i:"."}]},s={cN:"number",v:[{b:"\\b(\\d+(\\.\\d*)?|\\.\\d+)(u|U|l|L|ul|UL|f|F)"},{b:t.CNR}]},i={cN:"preprocessor",b:"#",e:"$",k:"if else elif endif define undef warning error line pragma ifdef ifndef",c:[{b:/\\\n/,r:0},{bK:"include",e:"$",c:[r,{cN:"string",b:"<",e:">",i:"\\n"}]},r,s,t.CLCM,t.CBCM]},a=t.IR+"\\s*\\(",c={keyword:"int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong",built_in:"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf",literal:"true false nullptr NULL"};return{aliases:["c","cc","h","c++","h++","hpp"],k:c,i:"</",c:[e,t.CLCM,t.CBCM,s,r,i,{b:"\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\s*<",e:">",k:c,c:["self",e]},{b:t.IR+"::",k:c},{bK:"new throw return else",r:0},{cN:"function",b:"("+t.IR+"[\\*&\\s]+)+"+a,rB:!0,e:/[{;=]/,eE:!0,k:c,i:/[^\w\s\*&]/,c:[{b:a,rB:!0,c:[t.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:c,r:0,c:[t.CLCM,t.CBCM,r,s]},t.CLCM,t.CBCM,i]}]}});hljs.registerLanguage("xquery",function(e){var t="for let if while then else return where group by xquery encoding versionmodule namespace boundary-space preserve strip default collation base-uri orderingcopy-namespaces order declare import schema namespace function option in allowing emptyat tumbling window sliding window start when only end when previous next stable ascendingdescending empty greatest least some every satisfies switch case typeswitch try catch andor to union intersect instance of treat as castable cast map array delete insert intoreplace value rename copy modify update",a="false true xs:string xs:integer element item xs:date xs:datetime xs:float xs:double xs:decimal QName xs:anyURI xs:long xs:int xs:short xs:byte attribute",r={cN:"variable",b:/\$[a-zA-Z0-9\-]+/,r:5},s={cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},n={cN:"string",v:[{b:/"/,e:/"/,c:[{b:/""/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},i={cN:"decorator",b:"%\\w+"},c={cN:"comment",b:"\\(:",e:":\\)",r:10,c:[{cN:"doc",b:"@\\w+"}]},o={b:"{",e:"}"},l=[r,n,s,c,i,o];return o.c=l,{aliases:["xpath","xq"],cI:!1,l:/[a-zA-Z\$][a-zA-Z0-9_:\-]*/,i:/(proc)|(abstract)|(extends)|(until)|(#)/,k:{keyword:t,literal:a},c:l}});hljs.registerLanguage("dockerfile",function(e){return{aliases:["docker"],cI:!0,k:{built_ins:"from maintainer cmd expose add copy entrypoint volume user workdir onbuild run env label"},c:[e.HCM,{k:{built_in:"run cmd entrypoint volume add copy workdir onbuild label"},b:/^ *(onbuild +)?(run|cmd|entrypoint|volume|add|copy|workdir|label) +/,starts:{e:/[^\\]\n/,sL:"bash"}},{k:{built_in:"from maintainer expose env user onbuild"},b:/^ *(onbuild +)?(from|maintainer|expose|env|user|onbuild) +/,e:/[^\\]\n/,c:[e.ASM,e.QSM,e.NM,e.HCM]}]}});hljs.registerLanguage("scss",function(e){var t="[a-zA-Z-][a-zA-Z0-9_-]*",i={cN:"variable",b:"(\\$"+t+")\\b"},r={cN:"function",b:t+"\\(",rB:!0,eE:!0,e:"\\("},o={cN:"hexcolor",b:"#[0-9A-Fa-f]+"};({cN:"attribute",b:"[A-Z\\_\\.\\-]+",e:":",eE:!0,i:"[^\\s]",starts:{cN:"value",eW:!0,eE:!0,c:[r,o,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"important",b:"!important"}]}});return{cI:!0,i:"[=/|']",c:[e.CLCM,e.CBCM,r,{cN:"id",b:"\\#[A-Za-z0-9_-]+",r:0},{cN:"class",b:"\\.[A-Za-z0-9_-]+",r:0},{cN:"attr_selector",b:"\\[",e:"\\]",i:"$"},{cN:"tag",b:"\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\b",r:0},{cN:"pseudo",b:":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)"},{cN:"pseudo",b:"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)"},i,{cN:"attribute",b:"\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\b",i:"[^\\s]"},{cN:"value",b:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{cN:"value",b:":",e:";",c:[r,i,o,e.CSSNM,e.QSM,e.ASM,{cN:"important",b:"!important"}]},{cN:"at_rule",b:"@",e:"[{;]",k:"mixin include extend for if else each while charset import debug media page content font-face namespace warn",c:[r,i,e.QSM,e.ASM,o,e.CSSNM,{cN:"preprocessor",b:"\\s[A-Za-z0-9_.-]+",r:0}]}]}});hljs.registerLanguage("cmake",function(e){return{aliases:["cmake.in"],cI:!0,k:{keyword:"add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_subdirectory add_test aux_source_directory break build_command cmake_minimum_required cmake_policy configure_file create_test_sourcelist define_property else elseif enable_language enable_testing endforeach endfunction endif endmacro endwhile execute_process export find_file find_library find_package find_path find_program fltk_wrap_ui foreach function get_cmake_property get_directory_property get_filename_component get_property get_source_file_property get_target_property get_test_property if include include_directories include_external_msproject include_regular_expression install link_directories load_cache load_command macro mark_as_advanced message option output_required_files project qt_wrap_cpp qt_wrap_ui remove_definitions return separate_arguments set set_directory_properties set_property set_source_files_properties set_target_properties set_tests_properties site_name source_group string target_link_libraries try_compile try_run unset variable_watch while build_name exec_program export_library_dependencies install_files install_programs install_targets link_libraries make_directory remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or",operator:"equal less greater strless strgreater strequal matches"},c:[{cN:"envvar",b:"\\${",e:"}"},e.HCM,e.QSM,e.NM]}});hljs.registerLanguage("nix",function(e){var t={keyword:"rec with let in inherit assert if else then",constant:"true false or and null",built_in:"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation"},i={cN:"subst",b:/\$\{/,e:/}/,k:t},r={cN:"variable",b:/[a-zA-Z0-9-_]+(\s*=)/,r:0},n={cN:"string",b:"''",e:"''",c:[i]},s={cN:"string",b:'"',e:'"',c:[i]},a=[e.NM,e.HCM,e.CBCM,n,s,r];return i.c=a,{aliases:["nixos"],k:t,c:a}});hljs.registerLanguage("mathematica",function(e){return{aliases:["mma"],l:"(\\$|\\b)"+e.IR+"\\b",k:"AbelianGroup Abort AbortKernels AbortProtect Above Abs Absolute AbsoluteCorrelation AbsoluteCorrelationFunction AbsoluteCurrentValue AbsoluteDashing AbsoluteFileName AbsoluteOptions AbsolutePointSize AbsoluteThickness AbsoluteTime AbsoluteTiming AccountingForm Accumulate Accuracy AccuracyGoal ActionDelay ActionMenu ActionMenuBox ActionMenuBoxOptions Active ActiveItem ActiveStyle AcyclicGraphQ AddOnHelpPath AddTo AdjacencyGraph AdjacencyList AdjacencyMatrix AdjustmentBox AdjustmentBoxOptions AdjustTimeSeriesForecast AffineTransform After AiryAi AiryAiPrime AiryAiZero AiryBi AiryBiPrime AiryBiZero AlgebraicIntegerQ AlgebraicNumber AlgebraicNumberDenominator AlgebraicNumberNorm AlgebraicNumberPolynomial AlgebraicNumberTrace AlgebraicRules AlgebraicRulesData Algebraics AlgebraicUnitQ Alignment AlignmentMarker AlignmentPoint All AllowedDimensions AllowGroupClose AllowInlineCells AllowKernelInitialization AllowReverseGroupClose AllowScriptLevelChange AlphaChannel AlternatingGroup AlternativeHypothesis Alternatives AmbientLight Analytic AnchoredSearch And AndersonDarlingTest AngerJ AngleBracket AngularGauge Animate AnimationCycleOffset AnimationCycleRepetitions AnimationDirection AnimationDisplayTime AnimationRate AnimationRepetitions AnimationRunning Animator AnimatorBox AnimatorBoxOptions AnimatorElements Annotation Annuity AnnuityDue Antialiasing Antisymmetric Apart ApartSquareFree Appearance AppearanceElements AppellF1 Append AppendTo Apply ArcCos ArcCosh ArcCot ArcCoth ArcCsc ArcCsch ArcSec ArcSech ArcSin ArcSinDistribution ArcSinh ArcTan ArcTanh Arg ArgMax ArgMin ArgumentCountQ ARIMAProcess ArithmeticGeometricMean ARMAProcess ARProcess Array ArrayComponents ArrayDepth ArrayFlatten ArrayPad ArrayPlot ArrayQ ArrayReshape ArrayRules Arrays Arrow Arrow3DBox ArrowBox Arrowheads AspectRatio AspectRatioFixed Assert Assuming Assumptions AstronomicalData Asynchronous AsynchronousTaskObject AsynchronousTasks AtomQ Attributes AugmentedSymmetricPolynomial AutoAction AutoDelete AutoEvaluateEvents AutoGeneratedPackage AutoIndent AutoIndentSpacings AutoItalicWords AutoloadPath AutoMatch Automatic AutomaticImageSize AutoMultiplicationSymbol AutoNumberFormatting AutoOpenNotebooks AutoOpenPalettes AutorunSequencing AutoScaling AutoScroll AutoSpacing AutoStyleOptions AutoStyleWords Axes AxesEdge AxesLabel AxesOrigin AxesStyle Axis BabyMonsterGroupB Back Background BackgroundTasksSettings Backslash Backsubstitution Backward Band BandpassFilter BandstopFilter BarabasiAlbertGraphDistribution BarChart BarChart3D BarLegend BarlowProschanImportance BarnesG BarOrigin BarSpacing BartlettHannWindow BartlettWindow BaseForm Baseline BaselinePosition BaseStyle BatesDistribution BattleLemarieWavelet Because BeckmannDistribution Beep Before Begin BeginDialogPacket BeginFrontEndInteractionPacket BeginPackage BellB BellY Below BenfordDistribution BeniniDistribution BenktanderGibratDistribution BenktanderWeibullDistribution BernoulliB BernoulliDistribution BernoulliGraphDistribution BernoulliProcess BernsteinBasis BesselFilterModel BesselI BesselJ BesselJZero BesselK BesselY BesselYZero Beta BetaBinomialDistribution BetaDistribution BetaNegativeBinomialDistribution BetaPrimeDistribution BetaRegularized BetweennessCentrality BezierCurve BezierCurve3DBox BezierCurve3DBoxOptions BezierCurveBox BezierCurveBoxOptions BezierFunction BilateralFilter Binarize BinaryFormat BinaryImageQ BinaryRead BinaryReadList BinaryWrite BinCounts BinLists Binomial BinomialDistribution BinomialProcess BinormalDistribution BiorthogonalSplineWavelet BipartiteGraphQ BirnbaumImportance BirnbaumSaundersDistribution BitAnd BitClear BitGet BitLength BitNot BitOr BitSet BitShiftLeft BitShiftRight BitXor Black BlackmanHarrisWindow BlackmanNuttallWindow BlackmanWindow Blank BlankForm BlankNullSequence BlankSequence Blend Block BlockRandom BlomqvistBeta BlomqvistBetaTest Blue Blur BodePlot BohmanWindow Bold Bookmarks Boole BooleanConsecutiveFunction BooleanConvert BooleanCountingFunction BooleanFunction BooleanGraph BooleanMaxterms BooleanMinimize BooleanMinterms Booleans BooleanTable BooleanVariables BorderDimensions BorelTannerDistribution Bottom BottomHatTransform BoundaryStyle Bounds Box BoxBaselineShift BoxData BoxDimensions Boxed Boxes BoxForm BoxFormFormatTypes BoxFrame BoxID BoxMargins BoxMatrix BoxRatios BoxRotation BoxRotationPoint BoxStyle BoxWhiskerChart Bra BracketingBar BraKet BrayCurtisDistance BreadthFirstScan Break Brown BrownForsytheTest BrownianBridgeProcess BrowserCategory BSplineBasis BSplineCurve BSplineCurve3DBox BSplineCurveBox BSplineCurveBoxOptions BSplineFunction BSplineSurface BSplineSurface3DBox BubbleChart BubbleChart3D BubbleScale BubbleSizes BulletGauge BusinessDayQ ButterflyGraph ButterworthFilterModel Button ButtonBar ButtonBox ButtonBoxOptions ButtonCell ButtonContents ButtonData ButtonEvaluator ButtonExpandable ButtonFrame ButtonFunction ButtonMargins ButtonMinHeight ButtonNote ButtonNotebook ButtonSource ButtonStyle ButtonStyleMenuListing Byte ByteCount ByteOrdering C CachedValue CacheGraphics CalendarData CalendarType CallPacket CanberraDistance Cancel CancelButton CandlestickChart Cap CapForm CapitalDifferentialD CardinalBSplineBasis CarmichaelLambda Cases Cashflow Casoratian Catalan CatalanNumber Catch CauchyDistribution CauchyWindow CayleyGraph CDF CDFDeploy CDFInformation CDFWavelet Ceiling Cell CellAutoOverwrite CellBaseline CellBoundingBox CellBracketOptions CellChangeTimes CellContents CellContext CellDingbat CellDynamicExpression CellEditDuplicate CellElementsBoundingBox CellElementSpacings CellEpilog CellEvaluationDuplicate CellEvaluationFunction CellEventActions CellFrame CellFrameColor CellFrameLabelMargins CellFrameLabels CellFrameMargins CellGroup CellGroupData CellGrouping CellGroupingRules CellHorizontalScrolling CellID CellLabel CellLabelAutoDelete CellLabelMargins CellLabelPositioning CellMargins CellObject CellOpen CellPrint CellProlog Cells CellSize CellStyle CellTags CellularAutomaton CensoredDistribution Censoring Center CenterDot CentralMoment CentralMomentGeneratingFunction CForm ChampernowneNumber ChanVeseBinarize Character CharacterEncoding CharacterEncodingsPath CharacteristicFunction CharacteristicPolynomial CharacterRange Characters ChartBaseStyle ChartElementData ChartElementDataFunction ChartElementFunction ChartElements ChartLabels ChartLayout ChartLegends ChartStyle Chebyshev1FilterModel Chebyshev2FilterModel ChebyshevDistance ChebyshevT ChebyshevU Check CheckAbort CheckAll Checkbox CheckboxBar CheckboxBox CheckboxBoxOptions ChemicalData ChessboardDistance ChiDistribution ChineseRemainder ChiSquareDistribution ChoiceButtons ChoiceDialog CholeskyDecomposition Chop Circle CircleBox CircleDot CircleMinus CirclePlus CircleTimes CirculantGraph CityData Clear ClearAll ClearAttributes ClearSystemCache ClebschGordan ClickPane Clip ClipboardNotebook ClipFill ClippingStyle ClipPlanes ClipRange Clock ClockGauge ClockwiseContourIntegral Close Closed CloseKernels ClosenessCentrality Closing ClosingAutoSave ClosingEvent ClusteringComponents CMYKColor Coarse Coefficient CoefficientArrays CoefficientDomain CoefficientList CoefficientRules CoifletWavelet Collect Colon ColonForm ColorCombine ColorConvert ColorData ColorDataFunction ColorFunction ColorFunctionScaling Colorize ColorNegate ColorOutput ColorProfileData ColorQuantize ColorReplace ColorRules ColorSelectorSettings ColorSeparate ColorSetter ColorSetterBox ColorSetterBoxOptions ColorSlider ColorSpace Column ColumnAlignments ColumnBackgrounds ColumnForm ColumnLines ColumnsEqual ColumnSpacings ColumnWidths CommonDefaultFormatTypes Commonest CommonestFilter CommonUnits CommunityBoundaryStyle CommunityGraphPlot CommunityLabels CommunityRegionStyle CompatibleUnitQ CompilationOptions CompilationTarget Compile Compiled CompiledFunction Complement CompleteGraph CompleteGraphQ CompleteKaryTree CompletionsListPacket Complex Complexes ComplexExpand ComplexInfinity ComplexityFunction ComponentMeasurements ComponentwiseContextMenu Compose ComposeList ComposeSeries Composition CompoundExpression CompoundPoissonDistribution CompoundPoissonProcess CompoundRenewalProcess Compress CompressedData Condition ConditionalExpression Conditioned Cone ConeBox ConfidenceLevel ConfidenceRange ConfidenceTransform ConfigurationPath Congruent Conjugate ConjugateTranspose Conjunction Connect ConnectedComponents ConnectedGraphQ ConnesWindow ConoverTest ConsoleMessage ConsoleMessagePacket ConsolePrint Constant ConstantArray Constants ConstrainedMax ConstrainedMin ContentPadding ContentsBoundingBox ContentSelectable ContentSize Context ContextMenu Contexts ContextToFilename ContextToFileName Continuation Continue ContinuedFraction ContinuedFractionK ContinuousAction ContinuousMarkovProcess ContinuousTimeModelQ ContinuousWaveletData ContinuousWaveletTransform ContourDetect ContourGraphics ContourIntegral ContourLabels ContourLines ContourPlot ContourPlot3D Contours ContourShading ContourSmoothing ContourStyle ContraharmonicMean Control ControlActive ControlAlignment ControllabilityGramian ControllabilityMatrix ControllableDecomposition ControllableModelQ ControllerDuration ControllerInformation ControllerInformationData ControllerLinking ControllerManipulate ControllerMethod ControllerPath ControllerState ControlPlacement ControlsRendering ControlType Convergents ConversionOptions ConversionRules ConvertToBitmapPacket ConvertToPostScript ConvertToPostScriptPacket Convolve ConwayGroupCo1 ConwayGroupCo2 ConwayGroupCo3 CoordinateChartData CoordinatesToolOptions CoordinateTransform CoordinateTransformData CoprimeQ Coproduct CopulaDistribution Copyable CopyDirectory CopyFile CopyTag CopyToClipboard CornerFilter CornerNeighbors Correlation CorrelationDistance CorrelationFunction CorrelationTest Cos Cosh CoshIntegral CosineDistance CosineWindow CosIntegral Cot Coth Count CounterAssignments CounterBox CounterBoxOptions CounterClockwiseContourIntegral CounterEvaluator CounterFunction CounterIncrements CounterStyle CounterStyleMenuListing CountRoots CountryData Covariance CovarianceEstimatorFunction CovarianceFunction CoxianDistribution CoxIngersollRossProcess CoxModel CoxModelFit CramerVonMisesTest CreateArchive CreateDialog CreateDirectory CreateDocument CreateIntermediateDirectories CreatePalette CreatePalettePacket CreateScheduledTask CreateTemporary CreateWindow CriticalityFailureImportance CriticalitySuccessImportance CriticalSection Cross CrossingDetect CrossMatrix Csc Csch CubeRoot Cubics Cuboid CuboidBox Cumulant CumulantGeneratingFunction Cup CupCap Curl CurlyDoubleQuote CurlyQuote CurrentImage CurrentlySpeakingPacket CurrentValue CurvatureFlowFilter CurveClosed Cyan CycleGraph CycleIndexPolynomial Cycles CyclicGroup Cyclotomic Cylinder CylinderBox CylindricalDecomposition D DagumDistribution DamerauLevenshteinDistance DampingFactor Darker Dashed Dashing DataCompression DataDistribution DataRange DataReversed Date DateDelimiters DateDifference DateFunction DateList DateListLogPlot DateListPlot DatePattern DatePlus DateRange DateString DateTicksFormat DaubechiesWavelet DavisDistribution DawsonF DayCount DayCountConvention DayMatchQ DayName DayPlus DayRange DayRound DeBruijnGraph Debug DebugTag Decimal DeclareKnownSymbols DeclarePackage Decompose Decrement DedekindEta Default DefaultAxesStyle DefaultBaseStyle DefaultBoxStyle DefaultButton DefaultColor DefaultControlPlacement DefaultDuplicateCellStyle DefaultDuration DefaultElement DefaultFaceGridsStyle DefaultFieldHintStyle DefaultFont DefaultFontProperties DefaultFormatType DefaultFormatTypeForStyle DefaultFrameStyle DefaultFrameTicksStyle DefaultGridLinesStyle DefaultInlineFormatType DefaultInputFormatType DefaultLabelStyle DefaultMenuStyle DefaultNaturalLanguage DefaultNewCellStyle DefaultNewInlineCellStyle DefaultNotebook DefaultOptions DefaultOutputFormatType DefaultStyle DefaultStyleDefinitions DefaultTextFormatType DefaultTextInlineFormatType DefaultTicksStyle DefaultTooltipStyle DefaultValues Defer DefineExternal DefineInputStreamMethod DefineOutputStreamMethod Definition Degree DegreeCentrality DegreeGraphDistribution DegreeLexicographic DegreeReverseLexicographic Deinitialization Del Deletable Delete DeleteBorderComponents DeleteCases DeleteContents DeleteDirectory DeleteDuplicates DeleteFile DeleteSmallComponents DeleteWithContents DeletionWarning Delimiter DelimiterFlashTime DelimiterMatching Delimiters Denominator DensityGraphics DensityHistogram DensityPlot DependentVariables Deploy Deployed Depth DepthFirstScan Derivative DerivativeFilter DescriptorStateSpace DesignMatrix Det DGaussianWavelet DiacriticalPositioning Diagonal DiagonalMatrix Dialog DialogIndent DialogInput DialogLevel DialogNotebook DialogProlog DialogReturn DialogSymbols Diamond DiamondMatrix DiceDissimilarity DictionaryLookup DifferenceDelta DifferenceOrder DifferenceRoot DifferenceRootReduce Differences DifferentialD DifferentialRoot DifferentialRootReduce DifferentiatorFilter DigitBlock DigitBlockMinimum DigitCharacter DigitCount DigitQ DihedralGroup Dilation Dimensions DiracComb DiracDelta DirectedEdge DirectedEdges DirectedGraph DirectedGraphQ DirectedInfinity Direction Directive Directory DirectoryName DirectoryQ DirectoryStack DirichletCharacter DirichletConvolve DirichletDistribution DirichletL DirichletTransform DirichletWindow DisableConsolePrintPacket DiscreteChirpZTransform DiscreteConvolve DiscreteDelta DiscreteHadamardTransform DiscreteIndicator DiscreteLQEstimatorGains DiscreteLQRegulatorGains DiscreteLyapunovSolve DiscreteMarkovProcess DiscretePlot DiscretePlot3D DiscreteRatio DiscreteRiccatiSolve DiscreteShift DiscreteTimeModelQ DiscreteUniformDistribution DiscreteVariables DiscreteWaveletData DiscreteWaveletPacketTransform DiscreteWaveletTransform Discriminant Disjunction Disk DiskBox DiskMatrix Dispatch DispersionEstimatorFunction Display DisplayAllSteps DisplayEndPacket DisplayFlushImagePacket DisplayForm DisplayFunction DisplayPacket DisplayRules DisplaySetSizePacket DisplayString DisplayTemporary DisplayWith DisplayWithRef DisplayWithVariable DistanceFunction DistanceTransform Distribute Distributed DistributedContexts DistributeDefinitions DistributionChart DistributionDomain DistributionFitTest DistributionParameterAssumptions DistributionParameterQ Dithering Div Divergence Divide DivideBy Dividers Divisible Divisors DivisorSigma DivisorSum DMSList DMSString Do DockedCells DocumentNotebook DominantColors DOSTextFormat Dot DotDashed DotEqual Dotted DoubleBracketingBar DoubleContourIntegral DoubleDownArrow DoubleLeftArrow DoubleLeftRightArrow DoubleLeftTee DoubleLongLeftArrow DoubleLongLeftRightArrow DoubleLongRightArrow DoubleRightArrow DoubleRightTee DoubleUpArrow DoubleUpDownArrow DoubleVerticalBar DoublyInfinite Down DownArrow DownArrowBar DownArrowUpArrow DownLeftRightVector DownLeftTeeVector DownLeftVector DownLeftVectorBar DownRightTeeVector DownRightVector DownRightVectorBar Downsample DownTee DownTeeArrow DownValues DragAndDrop DrawEdges DrawFrontFaces DrawHighlighted Drop DSolve Dt DualLinearProgramming DualSystemsModel DumpGet DumpSave DuplicateFreeQ Dynamic DynamicBox DynamicBoxOptions DynamicEvaluationTimeout DynamicLocation DynamicModule DynamicModuleBox DynamicModuleBoxOptions DynamicModuleParent DynamicModuleValues DynamicName DynamicNamespace DynamicReference DynamicSetting DynamicUpdating DynamicWrapper DynamicWrapperBox DynamicWrapperBoxOptions E EccentricityCentrality EdgeAdd EdgeBetweennessCentrality EdgeCapacity EdgeCapForm EdgeColor EdgeConnectivity EdgeCost EdgeCount EdgeCoverQ EdgeDashing EdgeDelete EdgeDetect EdgeForm EdgeIndex EdgeJoinForm EdgeLabeling EdgeLabels EdgeLabelStyle EdgeList EdgeOpacity EdgeQ EdgeRenderingFunction EdgeRules EdgeShapeFunction EdgeStyle EdgeThickness EdgeWeight Editable EditButtonSettings EditCellTagsSettings EditDistance EffectiveInterest Eigensystem Eigenvalues EigenvectorCentrality Eigenvectors Element ElementData Eliminate EliminationOrder EllipticE EllipticExp EllipticExpPrime EllipticF EllipticFilterModel EllipticK EllipticLog EllipticNomeQ EllipticPi EllipticReducedHalfPeriods EllipticTheta EllipticThetaPrime EmitSound EmphasizeSyntaxErrors EmpiricalDistribution Empty EmptyGraphQ EnableConsolePrintPacket Enabled Encode End EndAdd EndDialogPacket EndFrontEndInteractionPacket EndOfFile EndOfLine EndOfString EndPackage EngineeringForm Enter EnterExpressionPacket EnterTextPacket Entropy EntropyFilter Environment Epilog Equal EqualColumns EqualRows EqualTilde EquatedTo Equilibrium EquirippleFilterKernel Equivalent Erf Erfc Erfi ErlangB ErlangC ErlangDistribution Erosion ErrorBox ErrorBoxOptions ErrorNorm ErrorPacket ErrorsDialogSettings EstimatedDistribution EstimatedProcess EstimatorGains EstimatorRegulator EuclideanDistance EulerE EulerGamma EulerianGraphQ EulerPhi Evaluatable Evaluate Evaluated EvaluatePacket EvaluationCell EvaluationCompletionAction EvaluationElements EvaluationMode EvaluationMonitor EvaluationNotebook EvaluationObject EvaluationOrder Evaluator EvaluatorNames EvenQ EventData EventEvaluator EventHandler EventHandlerTag EventLabels ExactBlackmanWindow ExactNumberQ ExactRootIsolation ExampleData Except ExcludedForms ExcludePods Exclusions ExclusionsStyle Exists Exit ExitDialog Exp Expand ExpandAll ExpandDenominator ExpandFileName ExpandNumerator Expectation ExpectationE ExpectedValue ExpGammaDistribution ExpIntegralE ExpIntegralEi Exponent ExponentFunction ExponentialDistribution ExponentialFamily ExponentialGeneratingFunction ExponentialMovingAverage ExponentialPowerDistribution ExponentPosition ExponentStep Export ExportAutoReplacements ExportPacket ExportString Expression ExpressionCell ExpressionPacket ExpToTrig ExtendedGCD Extension ExtentElementFunction ExtentMarkers ExtentSize ExternalCall ExternalDataCharacterEncoding Extract ExtractArchive ExtremeValueDistribution FaceForm FaceGrids FaceGridsStyle Factor FactorComplete Factorial Factorial2 FactorialMoment FactorialMomentGeneratingFunction FactorialPower FactorInteger FactorList FactorSquareFree FactorSquareFreeList FactorTerms FactorTermsList Fail FailureDistribution False FARIMAProcess FEDisableConsolePrintPacket FeedbackSector FeedbackSectorStyle FeedbackType FEEnableConsolePrintPacket Fibonacci FieldHint FieldHintStyle FieldMasked FieldSize File FileBaseName FileByteCount FileDate FileExistsQ FileExtension FileFormat FileHash FileInformation FileName FileNameDepth FileNameDialogSettings FileNameDrop FileNameJoin FileNames FileNameSetter FileNameSplit FileNameTake FilePrint FileType FilledCurve FilledCurveBox Filling FillingStyle FillingTransform FilterRules FinancialBond FinancialData FinancialDerivative FinancialIndicator Find FindArgMax FindArgMin FindClique FindClusters FindCurvePath FindDistributionParameters FindDivisions FindEdgeCover FindEdgeCut FindEulerianCycle FindFaces FindFile FindFit FindGeneratingFunction FindGeoLocation FindGeometricTransform FindGraphCommunities FindGraphIsomorphism FindGraphPartition FindHamiltonianCycle FindIndependentEdgeSet FindIndependentVertexSet FindInstance FindIntegerNullVector FindKClan FindKClique FindKClub FindKPlex FindLibrary FindLinearRecurrence FindList FindMaximum FindMaximumFlow FindMaxValue FindMinimum FindMinimumCostFlow FindMinimumCut FindMinValue FindPermutation FindPostmanTour FindProcessParameters FindRoot FindSequenceFunction FindSettings FindShortestPath FindShortestTour FindThreshold FindVertexCover FindVertexCut Fine FinishDynamic FiniteAbelianGroupCount FiniteGroupCount FiniteGroupData First FirstPassageTimeDistribution FischerGroupFi22 FischerGroupFi23 FischerGroupFi24Prime FisherHypergeometricDistribution FisherRatioTest FisherZDistribution Fit FitAll FittedModel FixedPoint FixedPointList FlashSelection Flat Flatten FlattenAt FlatTopWindow FlipView Floor FlushPrintOutputPacket Fold FoldList Font FontColor FontFamily FontForm FontName FontOpacity FontPostScriptName FontProperties FontReencoding FontSize FontSlant FontSubstitutions FontTracking FontVariations FontWeight For ForAll Format FormatRules FormatType FormatTypeAutoConvert FormatValues FormBox FormBoxOptions FortranForm Forward ForwardBackward Fourier FourierCoefficient FourierCosCoefficient FourierCosSeries FourierCosTransform FourierDCT FourierDCTFilter FourierDCTMatrix FourierDST FourierDSTMatrix FourierMatrix FourierParameters FourierSequenceTransform FourierSeries FourierSinCoefficient FourierSinSeries FourierSinTransform FourierTransform FourierTrigSeries FractionalBrownianMotionProcess FractionalPart FractionBox FractionBoxOptions FractionLine Frame FrameBox FrameBoxOptions Framed FrameInset FrameLabel Frameless FrameMargins FrameStyle FrameTicks FrameTicksStyle FRatioDistribution FrechetDistribution FreeQ FrequencySamplingFilterKernel FresnelC FresnelS Friday FrobeniusNumber FrobeniusSolve FromCharacterCode FromCoefficientRules FromContinuedFraction FromDate FromDigits FromDMS Front FrontEndDynamicExpression FrontEndEventActions FrontEndExecute FrontEndObject FrontEndResource FrontEndResourceString FrontEndStackSize FrontEndToken FrontEndTokenExecute FrontEndValueCache FrontEndVersion FrontFaceColor FrontFaceOpacity Full FullAxes FullDefinition FullForm FullGraphics FullOptions FullSimplify Function FunctionExpand FunctionInterpolation FunctionSpace FussellVeselyImportance GaborFilter GaborMatrix GaborWavelet GainMargins GainPhaseMargins Gamma GammaDistribution GammaRegularized GapPenalty Gather GatherBy GaugeFaceElementFunction GaugeFaceStyle GaugeFrameElementFunction GaugeFrameSize GaugeFrameStyle GaugeLabels GaugeMarkers GaugeStyle GaussianFilter GaussianIntegers GaussianMatrix GaussianWindow GCD GegenbauerC General GeneralizedLinearModelFit GenerateConditions GeneratedCell GeneratedParameters GeneratingFunction Generic GenericCylindricalDecomposition GenomeData GenomeLookup GeodesicClosing GeodesicDilation GeodesicErosion GeodesicOpening GeoDestination GeodesyData GeoDirection GeoDistance GeoGridPosition GeometricBrownianMotionProcess GeometricDistribution GeometricMean GeometricMeanFilter GeometricTransformation GeometricTransformation3DBox GeometricTransformation3DBoxOptions GeometricTransformationBox GeometricTransformationBoxOptions GeoPosition GeoPositionENU GeoPositionXYZ GeoProjectionData GestureHandler GestureHandlerTag Get GetBoundingBoxSizePacket GetContext GetEnvironment GetFileName GetFrontEndOptionsDataPacket GetLinebreakInformationPacket GetMenusPacket GetPageBreakInformationPacket Glaisher GlobalClusteringCoefficient GlobalPreferences GlobalSession Glow GoldenRatio GompertzMakehamDistribution GoodmanKruskalGamma GoodmanKruskalGammaTest Goto Grad Gradient GradientFilter GradientOrientationFilter Graph GraphAssortativity GraphCenter GraphComplement GraphData GraphDensity GraphDiameter GraphDifference GraphDisjointUnion GraphDistance GraphDistanceMatrix GraphElementData GraphEmbedding GraphHighlight GraphHighlightStyle GraphHub Graphics Graphics3D Graphics3DBox Graphics3DBoxOptions GraphicsArray GraphicsBaseline GraphicsBox GraphicsBoxOptions GraphicsColor GraphicsColumn GraphicsComplex GraphicsComplex3DBox GraphicsComplex3DBoxOptions GraphicsComplexBox GraphicsComplexBoxOptions GraphicsContents GraphicsData GraphicsGrid GraphicsGridBox GraphicsGroup GraphicsGroup3DBox GraphicsGroup3DBoxOptions GraphicsGroupBox GraphicsGroupBoxOptions GraphicsGrouping GraphicsHighlightColor GraphicsRow GraphicsSpacing GraphicsStyle GraphIntersection GraphLayout GraphLinkEfficiency GraphPeriphery GraphPlot GraphPlot3D GraphPower GraphPropertyDistribution GraphQ GraphRadius GraphReciprocity GraphRoot GraphStyle GraphUnion Gray GrayLevel GreatCircleDistance Greater GreaterEqual GreaterEqualLess GreaterFullEqual GreaterGreater GreaterLess GreaterSlantEqual GreaterTilde Green Grid GridBaseline GridBox GridBoxAlignment GridBoxBackground GridBoxDividers GridBoxFrame GridBoxItemSize GridBoxItemStyle GridBoxOptions GridBoxSpacings GridCreationSettings GridDefaultElement GridElementStyleOptions GridFrame GridFrameMargins GridGraph GridLines GridLinesStyle GroebnerBasis GroupActionBase GroupCentralizer GroupElementFromWord GroupElementPosition GroupElementQ GroupElements GroupElementToWord GroupGenerators GroupMultiplicationTable GroupOrbits GroupOrder GroupPageBreakWithin GroupSetwiseStabilizer GroupStabilizer GroupStabilizerChain Gudermannian GumbelDistribution HaarWavelet HadamardMatrix HalfNormalDistribution HamiltonianGraphQ HammingDistance HammingWindow HankelH1 HankelH2 HankelMatrix HannPoissonWindow HannWindow HaradaNortonGroupHN HararyGraph HarmonicMean HarmonicMeanFilter HarmonicNumber Hash HashTable Haversine HazardFunction Head HeadCompose Heads HeavisideLambda HeavisidePi HeavisideTheta HeldGroupHe HeldPart HelpBrowserLookup HelpBrowserNotebook HelpBrowserSettings HermiteDecomposition HermiteH HermitianMatrixQ HessenbergDecomposition Hessian HexadecimalCharacter Hexahedron HexahedronBox HexahedronBoxOptions HiddenSurface HighlightGraph HighlightImage HighpassFilter HigmanSimsGroupHS HilbertFilter HilbertMatrix Histogram Histogram3D HistogramDistribution HistogramList HistogramTransform HistogramTransformInterpolation HitMissTransform HITSCentrality HodgeDual HoeffdingD HoeffdingDTest Hold HoldAll HoldAllComplete HoldComplete HoldFirst HoldForm HoldPattern HoldRest HolidayCalendar HomeDirectory HomePage Horizontal HorizontalForm HorizontalGauge HorizontalScrollPosition HornerForm HotellingTSquareDistribution HoytDistribution HTMLSave Hue HumpDownHump HumpEqual HurwitzLerchPhi HurwitzZeta HyperbolicDistribution HypercubeGraph HyperexponentialDistribution Hyperfactorial Hypergeometric0F1 Hypergeometric0F1Regularized Hypergeometric1F1 Hypergeometric1F1Regularized Hypergeometric2F1 Hypergeometric2F1Regularized HypergeometricDistribution HypergeometricPFQ HypergeometricPFQRegularized HypergeometricU Hyperlink HyperlinkCreationSettings Hyphenation HyphenationOptions HypoexponentialDistribution HypothesisTestData I Identity IdentityMatrix If IgnoreCase Im Image Image3D Image3DSlices ImageAccumulate ImageAdd ImageAdjust ImageAlign ImageApply ImageAspectRatio ImageAssemble ImageCache ImageCacheValid ImageCapture ImageChannels ImageClip ImageColorSpace ImageCompose ImageConvolve ImageCooccurrence ImageCorners ImageCorrelate ImageCorrespondingPoints ImageCrop ImageData ImageDataPacket ImageDeconvolve ImageDemosaic ImageDifference ImageDimensions ImageDistance ImageEffect ImageFeatureTrack ImageFileApply ImageFileFilter ImageFileScan ImageFilter ImageForestingComponents ImageForwardTransformation ImageHistogram ImageKeypoints ImageLevels ImageLines ImageMargins ImageMarkers ImageMeasurements ImageMultiply ImageOffset ImagePad ImagePadding ImagePartition ImagePeriodogram ImagePerspectiveTransformation ImageQ ImageRangeCache ImageReflect ImageRegion ImageResize ImageResolution ImageRotate ImageRotated ImageScaled ImageScan ImageSize ImageSizeAction ImageSizeCache ImageSizeMultipliers ImageSizeRaw ImageSubtract ImageTake ImageTransformation ImageTrim ImageType ImageValue ImageValuePositions Implies Import ImportAutoReplacements ImportString ImprovementImportance In IncidenceGraph IncidenceList IncidenceMatrix IncludeConstantBasis IncludeFileExtension IncludePods IncludeSingularTerm Increment Indent IndentingNewlineSpacings IndentMaxFraction IndependenceTest IndependentEdgeSetQ IndependentUnit IndependentVertexSetQ Indeterminate IndexCreationOptions Indexed IndexGraph IndexTag Inequality InexactNumberQ InexactNumbers Infinity Infix Information Inherited InheritScope Initialization InitializationCell InitializationCellEvaluation InitializationCellWarning InlineCounterAssignments InlineCounterIncrements InlineRules Inner Inpaint Input InputAliases InputAssumptions InputAutoReplacements InputField InputFieldBox InputFieldBoxOptions InputForm InputGrouping InputNamePacket InputNotebook InputPacket InputSettings InputStream InputString InputStringPacket InputToBoxFormPacket Insert InsertionPointObject InsertResults Inset Inset3DBox Inset3DBoxOptions InsetBox InsetBoxOptions Install InstallService InString Integer IntegerDigits IntegerExponent IntegerLength IntegerPart IntegerPartitions IntegerQ Integers IntegerString Integral Integrate Interactive InteractiveTradingChart Interlaced Interleaving InternallyBalancedDecomposition InterpolatingFunction InterpolatingPolynomial Interpolation InterpolationOrder InterpolationPoints InterpolationPrecision Interpretation InterpretationBox InterpretationBoxOptions InterpretationFunction InterpretTemplate InterquartileRange Interrupt InterruptSettings Intersection Interval IntervalIntersection IntervalMemberQ IntervalUnion Inverse InverseBetaRegularized InverseCDF InverseChiSquareDistribution InverseContinuousWaveletTransform InverseDistanceTransform InverseEllipticNomeQ InverseErf InverseErfc InverseFourier InverseFourierCosTransform InverseFourierSequenceTransform InverseFourierSinTransform InverseFourierTransform InverseFunction InverseFunctions InverseGammaDistribution InverseGammaRegularized InverseGaussianDistribution InverseGudermannian InverseHaversine InverseJacobiCD InverseJacobiCN InverseJacobiCS InverseJacobiDC InverseJacobiDN InverseJacobiDS InverseJacobiNC InverseJacobiND InverseJacobiNS InverseJacobiSC InverseJacobiSD InverseJacobiSN InverseLaplaceTransform InversePermutation InverseRadon InverseSeries InverseSurvivalFunction InverseWaveletTransform InverseWeierstrassP InverseZTransform Invisible InvisibleApplication InvisibleTimes IrreduciblePolynomialQ IsolatingInterval IsomorphicGraphQ IsotopeData Italic Item ItemBox ItemBoxOptions ItemSize ItemStyle ItoProcess JaccardDissimilarity JacobiAmplitude Jacobian JacobiCD JacobiCN JacobiCS JacobiDC JacobiDN JacobiDS JacobiNC JacobiND JacobiNS JacobiP JacobiSC JacobiSD JacobiSN JacobiSymbol JacobiZeta JankoGroupJ1 JankoGroupJ2 JankoGroupJ3 JankoGroupJ4 JarqueBeraALMTest JohnsonDistribution Join Joined JoinedCurve JoinedCurveBox JoinForm JordanDecomposition JordanModelDecomposition K KagiChart KaiserBesselWindow KaiserWindow KalmanEstimator KalmanFilter KarhunenLoeveDecomposition KaryTree KatzCentrality KCoreComponents KDistribution KelvinBei KelvinBer KelvinKei KelvinKer KendallTau KendallTauTest KernelExecute KernelMixtureDistribution KernelObject Kernels Ket Khinchin KirchhoffGraph KirchhoffMatrix KleinInvariantJ KnightTourGraph KnotData KnownUnitQ KolmogorovSmirnovTest KroneckerDelta KroneckerModelDecomposition KroneckerProduct KroneckerSymbol KuiperTest KumaraswamyDistribution Kurtosis KuwaharaFilter Label Labeled LabeledSlider LabelingFunction LabelStyle LaguerreL LambdaComponents LambertW LanczosWindow LandauDistribution Language LanguageCategory LaplaceDistribution LaplaceTransform Laplacian LaplacianFilter LaplacianGaussianFilter Large Larger Last Latitude LatitudeLongitude LatticeData LatticeReduce Launch LaunchKernels LayeredGraphPlot LayerSizeFunction LayoutInformation LCM LeafCount LeapYearQ LeastSquares LeastSquaresFilterKernel Left LeftArrow LeftArrowBar LeftArrowRightArrow LeftDownTeeVector LeftDownVector LeftDownVectorBar LeftRightArrow LeftRightVector LeftTee LeftTeeArrow LeftTeeVector LeftTriangle LeftTriangleBar LeftTriangleEqual LeftUpDownVector LeftUpTeeVector LeftUpVector LeftUpVectorBar LeftVector LeftVectorBar LegendAppearance Legended LegendFunction LegendLabel LegendLayout LegendMargins LegendMarkers LegendMarkerSize LegendreP LegendreQ LegendreType Length LengthWhile LerchPhi Less LessEqual LessEqualGreater LessFullEqual LessGreater LessLess LessSlantEqual LessTilde LetterCharacter LetterQ Level LeveneTest LeviCivitaTensor LevyDistribution Lexicographic LibraryFunction LibraryFunctionError LibraryFunctionInformation LibraryFunctionLoad LibraryFunctionUnload LibraryLoad LibraryUnload LicenseID LiftingFilterData LiftingWaveletTransform LightBlue LightBrown LightCyan Lighter LightGray LightGreen Lighting LightingAngle LightMagenta LightOrange LightPink LightPurple LightRed LightSources LightYellow Likelihood Limit LimitsPositioning LimitsPositioningTokens LindleyDistribution Line Line3DBox LinearFilter LinearFractionalTransform LinearModelFit LinearOffsetFunction LinearProgramming LinearRecurrence LinearSolve LinearSolveFunction LineBox LineBreak LinebreakAdjustments LineBreakChart LineBreakWithin LineColor LineForm LineGraph LineIndent LineIndentMaxFraction LineIntegralConvolutionPlot LineIntegralConvolutionScale LineLegend LineOpacity LineSpacing LineWrapParts LinkActivate LinkClose LinkConnect LinkConnectedQ LinkCreate LinkError LinkFlush LinkFunction LinkHost LinkInterrupt LinkLaunch LinkMode LinkObject LinkOpen LinkOptions LinkPatterns LinkProtocol LinkRead LinkReadHeld LinkReadyQ Links LinkWrite LinkWriteHeld LiouvilleLambda List Listable ListAnimate ListContourPlot ListContourPlot3D ListConvolve ListCorrelate ListCurvePathPlot ListDeconvolve ListDensityPlot Listen ListFourierSequenceTransform ListInterpolation ListLineIntegralConvolutionPlot ListLinePlot ListLogLinearPlot ListLogLogPlot ListLogPlot ListPicker ListPickerBox ListPickerBoxBackground ListPickerBoxOptions ListPlay ListPlot ListPlot3D ListPointPlot3D ListPolarPlot ListQ ListStreamDensityPlot ListStreamPlot ListSurfacePlot3D ListVectorDensityPlot ListVectorPlot ListVectorPlot3D ListZTransform Literal LiteralSearch LocalClusteringCoefficient LocalizeVariables LocationEquivalenceTest LocationTest Locator LocatorAutoCreate LocatorBox LocatorBoxOptions LocatorCentering LocatorPane LocatorPaneBox LocatorPaneBoxOptions LocatorRegion Locked Log Log10 Log2 LogBarnesG LogGamma LogGammaDistribution LogicalExpand LogIntegral LogisticDistribution LogitModelFit LogLikelihood LogLinearPlot LogLogisticDistribution LogLogPlot LogMultinormalDistribution LogNormalDistribution LogPlot LogRankTest LogSeriesDistribution LongEqual Longest LongestAscendingSequence LongestCommonSequence LongestCommonSequencePositions LongestCommonSubsequence LongestCommonSubsequencePositions LongestMatch LongForm Longitude LongLeftArrow LongLeftRightArrow LongRightArrow Loopback LoopFreeGraphQ LowerCaseQ LowerLeftArrow LowerRightArrow LowerTriangularize LowpassFilter LQEstimatorGains LQGRegulator LQOutputRegulatorGains LQRegulatorGains LUBackSubstitution LucasL LuccioSamiComponents LUDecomposition LyapunovSolve LyonsGroupLy MachineID MachineName MachineNumberQ MachinePrecision MacintoshSystemPageSetup Magenta Magnification Magnify MainSolve MaintainDynamicCaches Majority MakeBoxes MakeExpression MakeRules MangoldtLambda ManhattanDistance Manipulate Manipulator MannWhitneyTest MantissaExponent Manual Map MapAll MapAt MapIndexed MAProcess MapThread MarcumQ MardiaCombinedTest MardiaKurtosisTest MardiaSkewnessTest MarginalDistribution MarkovProcessProperties Masking MatchingDissimilarity MatchLocalNameQ MatchLocalNames MatchQ Material MathematicaNotation MathieuC MathieuCharacteristicA MathieuCharacteristicB MathieuCharacteristicExponent MathieuCPrime MathieuGroupM11 MathieuGroupM12 MathieuGroupM22 MathieuGroupM23 MathieuGroupM24 MathieuS MathieuSPrime MathMLForm MathMLText Matrices MatrixExp MatrixForm MatrixFunction MatrixLog MatrixPlot MatrixPower MatrixQ MatrixRank Max MaxBend MaxDetect MaxExtraBandwidths MaxExtraConditions MaxFeatures MaxFilter Maximize MaxIterations MaxMemoryUsed MaxMixtureKernels MaxPlotPoints MaxPoints MaxRecursion MaxStableDistribution MaxStepFraction MaxSteps MaxStepSize MaxValue MaxwellDistribution McLaughlinGroupMcL Mean MeanClusteringCoefficient MeanDegreeConnectivity MeanDeviation MeanFilter MeanGraphDistance MeanNeighborDegree MeanShift MeanShiftFilter Median MedianDeviation MedianFilter Medium MeijerG MeixnerDistribution MemberQ MemoryConstrained MemoryInUse Menu MenuAppearance MenuCommandKey MenuEvaluator MenuItem MenuPacket MenuSortingValue MenuStyle MenuView MergeDifferences Mesh MeshFunctions MeshRange MeshShading MeshStyle Message MessageDialog MessageList MessageName MessageOptions MessagePacket Messages MessagesNotebook MetaCharacters MetaInformation Method MethodOptions MexicanHatWavelet MeyerWavelet Min MinDetect MinFilter MinimalPolynomial MinimalStateSpaceModel Minimize Minors MinRecursion MinSize MinStableDistribution Minus MinusPlus MinValue Missing MissingDataMethod MittagLefflerE MixedRadix MixedRadixQuantity MixtureDistribution Mod Modal Mode Modular ModularLambda Module Modulus MoebiusMu Moment Momentary MomentConvert MomentEvaluate MomentGeneratingFunction Monday Monitor MonomialList MonomialOrder MonsterGroupM MorletWavelet MorphologicalBinarize MorphologicalBranchPoints MorphologicalComponents MorphologicalEulerNumber MorphologicalGraph MorphologicalPerimeter MorphologicalTransform Most MouseAnnotation MouseAppearance MouseAppearanceTag MouseButtons Mouseover MousePointerNote MousePosition MovingAverage MovingMedian MoyalDistribution MultiedgeStyle MultilaunchWarning MultiLetterItalics MultiLetterStyle MultilineFunction Multinomial MultinomialDistribution MultinormalDistribution MultiplicativeOrder Multiplicity Multiselection MultivariateHypergeometricDistribution MultivariatePoissonDistribution MultivariateTDistribution N NakagamiDistribution NameQ Names NamespaceBox Nand NArgMax NArgMin NBernoulliB NCache NDSolve NDSolveValue Nearest NearestFunction NeedCurrentFrontEndPackagePacket NeedCurrentFrontEndSymbolsPacket NeedlemanWunschSimilarity Needs Negative NegativeBinomialDistribution NegativeMultinomialDistribution NeighborhoodGraph Nest NestedGreaterGreater NestedLessLess NestedScriptRules NestList NestWhile NestWhileList NevilleThetaC NevilleThetaD NevilleThetaN NevilleThetaS NewPrimitiveStyle NExpectation Next NextPrime NHoldAll NHoldFirst NHoldRest NicholsGridLines NicholsPlot NIntegrate NMaximize NMaxValue NMinimize NMinValue NominalVariables NonAssociative NoncentralBetaDistribution NoncentralChiSquareDistribution NoncentralFRatioDistribution NoncentralStudentTDistribution NonCommutativeMultiply NonConstants None NonlinearModelFit NonlocalMeansFilter NonNegative NonPositive Nor NorlundB Norm Normal NormalDistribution NormalGrouping Normalize NormalizedSquaredEuclideanDistance NormalsFunction NormFunction Not NotCongruent NotCupCap NotDoubleVerticalBar Notebook NotebookApply NotebookAutoSave NotebookClose NotebookConvertSettings NotebookCreate NotebookCreateReturnObject NotebookDefault NotebookDelete NotebookDirectory NotebookDynamicExpression NotebookEvaluate NotebookEventActions NotebookFileName NotebookFind NotebookFindReturnObject NotebookGet NotebookGetLayoutInformationPacket NotebookGetMisspellingsPacket NotebookInformation NotebookInterfaceObject NotebookLocate NotebookObject NotebookOpen NotebookOpenReturnObject NotebookPath NotebookPrint NotebookPut NotebookPutReturnObject NotebookRead NotebookResetGeneratedCells Notebooks NotebookSave NotebookSaveAs NotebookSelection NotebookSetupLayoutInformationPacket NotebooksMenu NotebookWrite NotElement NotEqualTilde NotExists NotGreater NotGreaterEqual NotGreaterFullEqual NotGreaterGreater NotGreaterLess NotGreaterSlantEqual NotGreaterTilde NotHumpDownHump NotHumpEqual NotLeftTriangle NotLeftTriangleBar NotLeftTriangleEqual NotLess NotLessEqual NotLessFullEqual NotLessGreater NotLessLess NotLessSlantEqual NotLessTilde NotNestedGreaterGreater NotNestedLessLess NotPrecedes NotPrecedesEqual NotPrecedesSlantEqual NotPrecedesTilde NotReverseElement NotRightTriangle NotRightTriangleBar NotRightTriangleEqual NotSquareSubset NotSquareSubsetEqual NotSquareSuperset NotSquareSupersetEqual NotSubset NotSubsetEqual NotSucceeds NotSucceedsEqual NotSucceedsSlantEqual NotSucceedsTilde NotSuperset NotSupersetEqual NotTilde NotTildeEqual NotTildeFullEqual NotTildeTilde NotVerticalBar NProbability NProduct NProductFactors NRoots NSolve NSum NSumTerms Null NullRecords NullSpace NullWords Number NumberFieldClassNumber NumberFieldDiscriminant NumberFieldFundamentalUnits NumberFieldIntegralBasis NumberFieldNormRepresentatives NumberFieldRegulator NumberFieldRootsOfUnity NumberFieldSignature NumberForm NumberFormat NumberMarks NumberMultiplier NumberPadding NumberPoint NumberQ NumberSeparator NumberSigns NumberString Numerator NumericFunction NumericQ NuttallWindow NValues NyquistGridLines NyquistPlot O ObservabilityGramian ObservabilityMatrix ObservableDecomposition ObservableModelQ OddQ Off Offset OLEData On ONanGroupON OneIdentity Opacity Open OpenAppend Opener OpenerBox OpenerBoxOptions OpenerView OpenFunctionInspectorPacket Opening OpenRead OpenSpecialOptions OpenTemporary OpenWrite Operate OperatingSystem OptimumFlowData Optional OptionInspectorSettings OptionQ Options OptionsPacket OptionsPattern OptionValue OptionValueBox OptionValueBoxOptions Or Orange Order OrderDistribution OrderedQ Ordering Orderless OrnsteinUhlenbeckProcess Orthogonalize Out Outer OutputAutoOverwrite OutputControllabilityMatrix OutputControllableModelQ OutputForm OutputFormData OutputGrouping OutputMathEditExpression OutputNamePacket OutputResponse OutputSizeLimit OutputStream Over OverBar OverDot Overflow OverHat Overlaps Overlay OverlayBox OverlayBoxOptions Overscript OverscriptBox OverscriptBoxOptions OverTilde OverVector OwenT OwnValues PackingMethod PaddedForm Padding PadeApproximant PadLeft PadRight PageBreakAbove PageBreakBelow PageBreakWithin PageFooterLines PageFooters PageHeaderLines PageHeaders PageHeight PageRankCentrality PageWidth PairedBarChart PairedHistogram PairedSmoothHistogram PairedTTest PairedZTest PaletteNotebook PalettePath Pane PaneBox PaneBoxOptions Panel PanelBox PanelBoxOptions Paneled PaneSelector PaneSelectorBox PaneSelectorBoxOptions PaperWidth ParabolicCylinderD ParagraphIndent ParagraphSpacing ParallelArray ParallelCombine ParallelDo ParallelEvaluate Parallelization Parallelize ParallelMap ParallelNeeds ParallelProduct ParallelSubmit ParallelSum ParallelTable ParallelTry Parameter ParameterEstimator ParameterMixtureDistribution ParameterVariables ParametricFunction ParametricNDSolve ParametricNDSolveValue ParametricPlot ParametricPlot3D ParentConnect ParentDirectory ParentForm Parenthesize ParentList ParetoDistribution Part PartialCorrelationFunction PartialD ParticleData Partition PartitionsP PartitionsQ ParzenWindow PascalDistribution PassEventsDown PassEventsUp Paste PasteBoxFormInlineCells PasteButton Path PathGraph PathGraphQ Pattern PatternSequence PatternTest PauliMatrix PaulWavelet Pause PausedTime PDF PearsonChiSquareTest PearsonCorrelationTest PearsonDistribution PerformanceGoal PeriodicInterpolation Periodogram PeriodogramArray PermutationCycles PermutationCyclesQ PermutationGroup PermutationLength PermutationList PermutationListQ PermutationMax PermutationMin PermutationOrder PermutationPower PermutationProduct PermutationReplace Permutations PermutationSupport Permute PeronaMalikFilter Perpendicular PERTDistribution PetersenGraph PhaseMargins Pi Pick PIDData PIDDerivativeFilter PIDFeedforward PIDTune Piecewise PiecewiseExpand PieChart PieChart3D PillaiTrace PillaiTraceTest Pink Pivoting PixelConstrained PixelValue PixelValuePositions Placed Placeholder PlaceholderReplace Plain PlanarGraphQ Play PlayRange Plot Plot3D Plot3Matrix PlotDivision PlotJoined PlotLabel PlotLayout PlotLegends PlotMarkers PlotPoints PlotRange PlotRangeClipping PlotRangePadding PlotRegion PlotStyle Plus PlusMinus Pochhammer PodStates PodWidth Point Point3DBox PointBox PointFigureChart PointForm PointLegend PointSize PoissonConsulDistribution PoissonDistribution PoissonProcess PoissonWindow PolarAxes PolarAxesOrigin PolarGridLines PolarPlot PolarTicks PoleZeroMarkers PolyaAeppliDistribution PolyGamma Polygon Polygon3DBox Polygon3DBoxOptions PolygonBox PolygonBoxOptions PolygonHoleScale PolygonIntersections PolygonScale PolyhedronData PolyLog PolynomialExtendedGCD PolynomialForm PolynomialGCD PolynomialLCM PolynomialMod PolynomialQ PolynomialQuotient PolynomialQuotientRemainder PolynomialReduce PolynomialRemainder Polynomials PopupMenu PopupMenuBox PopupMenuBoxOptions PopupView PopupWindow Position Positive PositiveDefiniteMatrixQ PossibleZeroQ Postfix PostScript Power PowerDistribution PowerExpand PowerMod PowerModList PowerSpectralDensity PowersRepresentations PowerSymmetricPolynomial Precedence PrecedenceForm Precedes PrecedesEqual PrecedesSlantEqual PrecedesTilde Precision PrecisionGoal PreDecrement PredictionRoot PreemptProtect PreferencesPath Prefix PreIncrement Prepend PrependTo PreserveImageOptions Previous PriceGraphDistribution PrimaryPlaceholder Prime PrimeNu PrimeOmega PrimePi PrimePowerQ PrimeQ Primes PrimeZetaP PrimitiveRoot PrincipalComponents PrincipalValue Print PrintAction PrintForm PrintingCopies PrintingOptions PrintingPageRange PrintingStartingPageNumber PrintingStyleEnvironment PrintPrecision PrintTemporary Prism PrismBox PrismBoxOptions PrivateCellOptions PrivateEvaluationOptions PrivateFontOptions PrivateFrontEndOptions PrivateNotebookOptions PrivatePaths Probability ProbabilityDistribution ProbabilityPlot ProbabilityPr ProbabilityScalePlot ProbitModelFit ProcessEstimator ProcessParameterAssumptions ProcessParameterQ ProcessStateDomain ProcessTimeDomain Product ProductDistribution ProductLog ProgressIndicator ProgressIndicatorBox ProgressIndicatorBoxOptions Projection Prolog PromptForm Properties Property PropertyList PropertyValue Proportion Proportional Protect Protected ProteinData Pruning PseudoInverse Purple Put PutAppend Pyramid PyramidBox PyramidBoxOptions QBinomial QFactorial QGamma QHypergeometricPFQ QPochhammer QPolyGamma QRDecomposition QuadraticIrrationalQ Quantile QuantilePlot Quantity QuantityForm QuantityMagnitude QuantityQ QuantityUnit Quartics QuartileDeviation Quartiles QuartileSkewness QueueingNetworkProcess QueueingProcess QueueProperties Quiet Quit Quotient QuotientRemainder RadialityCentrality RadicalBox RadicalBoxOptions RadioButton RadioButtonBar RadioButtonBox RadioButtonBoxOptions Radon RamanujanTau RamanujanTauL RamanujanTauTheta RamanujanTauZ Random RandomChoice RandomComplex RandomFunction RandomGraph RandomImage RandomInteger RandomPermutation RandomPrime RandomReal RandomSample RandomSeed RandomVariate RandomWalkProcess Range RangeFilter RangeSpecification RankedMax RankedMin Raster Raster3D Raster3DBox Raster3DBoxOptions RasterArray RasterBox RasterBoxOptions Rasterize RasterSize Rational RationalFunctions Rationalize Rationals Ratios Raw RawArray RawBoxes RawData RawMedium RayleighDistribution Re Read ReadList ReadProtected Real RealBlockDiagonalForm RealDigits RealExponent Reals Reap Record RecordLists RecordSeparators Rectangle RectangleBox RectangleBoxOptions RectangleChart RectangleChart3D RecurrenceFilter RecurrenceTable RecurringDigitsForm Red Reduce RefBox ReferenceLineStyle ReferenceMarkers ReferenceMarkerStyle Refine ReflectionMatrix ReflectionTransform Refresh RefreshRate RegionBinarize RegionFunction RegionPlot RegionPlot3D RegularExpression Regularization Reinstall Release ReleaseHold ReliabilityDistribution ReliefImage ReliefPlot Remove RemoveAlphaChannel RemoveAsynchronousTask Removed RemoveInputStreamMethod RemoveOutputStreamMethod RemoveProperty RemoveScheduledTask RenameDirectory RenameFile RenderAll RenderingOptions RenewalProcess RenkoChart Repeated RepeatedNull RepeatedString Replace ReplaceAll ReplaceHeldPart ReplaceImageValue ReplaceList ReplacePart ReplacePixelValue ReplaceRepeated Resampling Rescale RescalingTransform ResetDirectory ResetMenusPacket ResetScheduledTask Residue Resolve Rest Resultant ResumePacket Return ReturnExpressionPacket ReturnInputFormPacket ReturnPacket ReturnTextPacket Reverse ReverseBiorthogonalSplineWavelet ReverseElement ReverseEquilibrium ReverseGraph ReverseUpEquilibrium RevolutionAxis RevolutionPlot3D RGBColor RiccatiSolve RiceDistribution RidgeFilter RiemannR RiemannSiegelTheta RiemannSiegelZ Riffle Right RightArrow RightArrowBar RightArrowLeftArrow RightCosetRepresentative RightDownTeeVector RightDownVector RightDownVectorBar RightTee RightTeeArrow RightTeeVector RightTriangle RightTriangleBar RightTriangleEqual RightUpDownVector RightUpTeeVector RightUpVector RightUpVectorBar RightVector RightVectorBar RiskAchievementImportance RiskReductionImportance RogersTanimotoDissimilarity Root RootApproximant RootIntervals RootLocusPlot RootMeanSquare RootOfUnityQ RootReduce Roots RootSum Rotate RotateLabel RotateLeft RotateRight RotationAction RotationBox RotationBoxOptions RotationMatrix RotationTransform Round RoundImplies RoundingRadius Row RowAlignments RowBackgrounds RowBox RowHeights RowLines RowMinHeight RowReduce RowsEqual RowSpacings RSolve RudvalisGroupRu Rule RuleCondition RuleDelayed RuleForm RulerUnits Run RunScheduledTask RunThrough RuntimeAttributes RuntimeOptions RussellRaoDissimilarity SameQ SameTest SampleDepth SampledSoundFunction SampledSoundList SampleRate SamplingPeriod SARIMAProcess SARMAProcess SatisfiabilityCount SatisfiabilityInstances SatisfiableQ Saturday Save Saveable SaveAutoDelete SaveDefinitions SawtoothWave Scale Scaled ScaleDivisions ScaledMousePosition ScaleOrigin ScalePadding ScaleRanges ScaleRangeStyle ScalingFunctions ScalingMatrix ScalingTransform Scan ScheduledTaskActiveQ ScheduledTaskData ScheduledTaskObject ScheduledTasks SchurDecomposition ScientificForm ScreenRectangle ScreenStyleEnvironment ScriptBaselineShifts ScriptLevel ScriptMinSize ScriptRules ScriptSizeMultipliers Scrollbars ScrollingOptions ScrollPosition Sec Sech SechDistribution SectionGrouping SectorChart SectorChart3D SectorOrigin SectorSpacing SeedRandom Select Selectable SelectComponents SelectedCells SelectedNotebook Selection SelectionAnimate SelectionCell SelectionCellCreateCell SelectionCellDefaultStyle SelectionCellParentStyle SelectionCreateCell SelectionDebuggerTag SelectionDuplicateCell SelectionEvaluate SelectionEvaluateCreateCell SelectionMove SelectionPlaceholder SelectionSetStyle SelectWithContents SelfLoops SelfLoopStyle SemialgebraicComponentInstances SendMail Sequence SequenceAlignment SequenceForm SequenceHold SequenceLimit Series SeriesCoefficient SeriesData SessionTime Set SetAccuracy SetAlphaChannel SetAttributes Setbacks SetBoxFormNamesPacket SetDelayed SetDirectory SetEnvironment SetEvaluationNotebook SetFileDate SetFileLoadingContext SetNotebookStatusLine SetOptions SetOptionsPacket SetPrecision SetProperty SetSelectedNotebook SetSharedFunction SetSharedVariable SetSpeechParametersPacket SetStreamPosition SetSystemOptions Setter SetterBar SetterBox SetterBoxOptions Setting SetValue Shading Shallow ShannonWavelet ShapiroWilkTest Share Sharpen ShearingMatrix ShearingTransform ShenCastanMatrix Short ShortDownArrow Shortest ShortestMatch ShortestPathFunction ShortLeftArrow ShortRightArrow ShortUpArrow Show ShowAutoStyles ShowCellBracket ShowCellLabel ShowCellTags ShowClosedCellArea ShowContents ShowControls ShowCursorTracker ShowGroupOpenCloseIcon ShowGroupOpener ShowInvisibleCharacters ShowPageBreaks ShowPredictiveInterface ShowSelection ShowShortBoxForm ShowSpecialCharacters ShowStringCharacters ShowSyntaxStyles ShrinkingDelay ShrinkWrapBoundingBox SiegelTheta SiegelTukeyTest Sign Signature SignedRankTest SignificanceLevel SignPadding SignTest SimilarityRules SimpleGraph SimpleGraphQ Simplify Sin Sinc SinghMaddalaDistribution SingleEvaluation SingleLetterItalics SingleLetterStyle SingularValueDecomposition SingularValueList SingularValuePlot SingularValues Sinh SinhIntegral SinIntegral SixJSymbol Skeleton SkeletonTransform SkellamDistribution Skewness SkewNormalDistribution Skip SliceDistribution Slider Slider2D Slider2DBox Slider2DBoxOptions SliderBox SliderBoxOptions SlideView Slot SlotSequence Small SmallCircle Smaller SmithDelayCompensator SmithWatermanSimilarity SmoothDensityHistogram SmoothHistogram SmoothHistogram3D SmoothKernelDistribution SocialMediaData Socket SokalSneathDissimilarity Solve SolveAlways SolveDelayed Sort SortBy Sound SoundAndGraphics SoundNote SoundVolume Sow Space SpaceForm Spacer Spacings Span SpanAdjustments SpanCharacterRounding SpanFromAbove SpanFromBoth SpanFromLeft SpanLineThickness SpanMaxSize SpanMinSize SpanningCharacters SpanSymmetric SparseArray SpatialGraphDistribution Speak SpeakTextPacket SpearmanRankTest SpearmanRho Spectrogram SpectrogramArray Specularity SpellingCorrection SpellingDictionaries SpellingDictionariesPath SpellingOptions SpellingSuggestionsPacket Sphere SphereBox SphericalBesselJ SphericalBesselY SphericalHankelH1 SphericalHankelH2 SphericalHarmonicY SphericalPlot3D SphericalRegion SpheroidalEigenvalue SpheroidalJoiningFactor SpheroidalPS SpheroidalPSPrime SpheroidalQS SpheroidalQSPrime SpheroidalRadialFactor SpheroidalS1 SpheroidalS1Prime SpheroidalS2 SpheroidalS2Prime Splice SplicedDistribution SplineClosed SplineDegree SplineKnots SplineWeights Split SplitBy SpokenString Sqrt SqrtBox SqrtBoxOptions Square SquaredEuclideanDistance SquareFreeQ SquareIntersection SquaresR SquareSubset SquareSubsetEqual SquareSuperset SquareSupersetEqual SquareUnion SquareWave StabilityMargins StabilityMarginsStyle StableDistribution Stack StackBegin StackComplete StackInhibit StandardDeviation StandardDeviationFilter StandardForm Standardize StandbyDistribution Star StarGraph StartAsynchronousTask StartingStepSize StartOfLine StartOfString StartScheduledTask StartupSound StateDimensions StateFeedbackGains StateOutputEstimator StateResponse StateSpaceModel StateSpaceRealization StateSpaceTransform StationaryDistribution StationaryWaveletPacketTransform StationaryWaveletTransform StatusArea StatusCentrality StepMonitor StieltjesGamma StirlingS1 StirlingS2 StopAsynchronousTask StopScheduledTask StrataVariables StratonovichProcess StreamColorFunction StreamColorFunctionScaling StreamDensityPlot StreamPlot StreamPoints StreamPosition Streams StreamScale StreamStyle String StringBreak StringByteCount StringCases StringCount StringDrop StringExpression StringForm StringFormat StringFreeQ StringInsert StringJoin StringLength StringMatchQ StringPosition StringQ StringReplace StringReplaceList StringReplacePart StringReverse StringRotateLeft StringRotateRight StringSkeleton StringSplit StringTake StringToStream StringTrim StripBoxes StripOnInput StripWrapperBoxes StrokeForm StructuralImportance StructuredArray StructuredSelection StruveH StruveL Stub StudentTDistribution Style StyleBox StyleBoxAutoDelete StyleBoxOptions StyleData StyleDefinitions StyleForm StyleKeyMapping StyleMenuListing StyleNameDialogSettings StyleNames StylePrint StyleSheetPath Subfactorial Subgraph SubMinus SubPlus SubresultantPolynomialRemainders SubresultantPolynomials Subresultants Subscript SubscriptBox SubscriptBoxOptions Subscripted Subset SubsetEqual Subsets SubStar Subsuperscript SubsuperscriptBox SubsuperscriptBoxOptions Subtract SubtractFrom SubValues Succeeds SucceedsEqual SucceedsSlantEqual SucceedsTilde SuchThat Sum SumConvergence Sunday SuperDagger SuperMinus SuperPlus Superscript SuperscriptBox SuperscriptBoxOptions Superset SupersetEqual SuperStar Surd SurdForm SurfaceColor SurfaceGraphics SurvivalDistribution SurvivalFunction SurvivalModel SurvivalModelFit SuspendPacket SuzukiDistribution SuzukiGroupSuz SwatchLegend Switch Symbol SymbolName SymletWavelet Symmetric SymmetricGroup SymmetricMatrixQ SymmetricPolynomial SymmetricReduction Symmetrize SymmetrizedArray SymmetrizedArrayRules SymmetrizedDependentComponents SymmetrizedIndependentComponents SymmetrizedReplacePart SynchronousInitialization SynchronousUpdating Syntax SyntaxForm SyntaxInformation SyntaxLength SyntaxPacket SyntaxQ SystemDialogInput SystemException SystemHelpPath SystemInformation SystemInformationData SystemOpen SystemOptions SystemsModelDelay SystemsModelDelayApproximate SystemsModelDelete SystemsModelDimensions SystemsModelExtract SystemsModelFeedbackConnect SystemsModelLabels SystemsModelOrder SystemsModelParallelConnect SystemsModelSeriesConnect SystemsModelStateFeedbackConnect SystemStub Tab TabFilling Table TableAlignments TableDepth TableDirections TableForm TableHeadings TableSpacing TableView TableViewBox TabSpacings TabView TabViewBox TabViewBoxOptions TagBox TagBoxNote TagBoxOptions TaggingRules TagSet TagSetDelayed TagStyle TagUnset Take TakeWhile Tally Tan Tanh TargetFunctions TargetUnits TautologyQ TelegraphProcess TemplateBox TemplateBoxOptions TemplateSlotSequence TemporalData Temporary TemporaryVariable TensorContract TensorDimensions TensorExpand TensorProduct TensorQ TensorRank TensorReduce TensorSymmetry TensorTranspose TensorWedge Tetrahedron TetrahedronBox TetrahedronBoxOptions TeXForm TeXSave Text Text3DBox Text3DBoxOptions TextAlignment TextBand TextBoundingBox TextBox TextCell TextClipboardType TextData TextForm TextJustification TextLine TextPacket TextParagraph TextRecognize TextRendering TextStyle Texture TextureCoordinateFunction TextureCoordinateScaling Therefore ThermometerGauge Thick Thickness Thin Thinning ThisLink ThompsonGroupTh Thread ThreeJSymbol Threshold Through Throw Thumbnail Thursday Ticks TicksStyle Tilde TildeEqual TildeFullEqual TildeTilde TimeConstrained TimeConstraint Times TimesBy TimeSeriesForecast TimeSeriesInvertibility TimeUsed TimeValue TimeZone Timing Tiny TitleGrouping TitsGroupT ToBoxes ToCharacterCode ToColor ToContinuousTimeModel ToDate ToDiscreteTimeModel ToeplitzMatrix ToExpression ToFileName Together Toggle ToggleFalse Toggler TogglerBar TogglerBox TogglerBoxOptions ToHeldExpression ToInvertibleTimeSeries TokenWords Tolerance ToLowerCase ToNumberField TooBig Tooltip TooltipBox TooltipBoxOptions TooltipDelay TooltipStyle Top TopHatTransform TopologicalSort ToRadicals ToRules ToString Total TotalHeight TotalVariationFilter TotalWidth TouchscreenAutoZoom TouchscreenControlPlacement ToUpperCase Tr Trace TraceAbove TraceAction TraceBackward TraceDepth TraceDialog TraceForward TraceInternal TraceLevel TraceOff TraceOn TraceOriginal TracePrint TraceScan TrackedSymbols TradingChart TraditionalForm TraditionalFunctionNotation TraditionalNotation TraditionalOrder TransferFunctionCancel TransferFunctionExpand TransferFunctionFactor TransferFunctionModel TransferFunctionPoles TransferFunctionTransform TransferFunctionZeros TransformationFunction TransformationFunctions TransformationMatrix TransformedDistribution TransformedField Translate TranslationTransform TransparentColor Transpose TreeForm TreeGraph TreeGraphQ TreePlot TrendStyle TriangleWave TriangularDistribution Trig TrigExpand TrigFactor TrigFactorList Trigger TrigReduce TrigToExp TrimmedMean True TrueQ TruncatedDistribution TsallisQExponentialDistribution TsallisQGaussianDistribution TTest Tube TubeBezierCurveBox TubeBezierCurveBoxOptions TubeBox TubeBSplineCurveBox TubeBSplineCurveBoxOptions Tuesday TukeyLambdaDistribution TukeyWindow Tuples TuranGraph TuringMachine Transparent UnateQ Uncompress Undefined UnderBar Underflow Underlined Underoverscript UnderoverscriptBox UnderoverscriptBoxOptions Underscript UnderscriptBox UnderscriptBoxOptions UndirectedEdge UndirectedGraph UndirectedGraphQ UndocumentedTestFEParserPacket UndocumentedTestGetSelectionPacket Unequal Unevaluated UniformDistribution UniformGraphDistribution UniformSumDistribution Uninstall Union UnionPlus Unique UnitBox UnitConvert UnitDimensions Unitize UnitRootTest UnitSimplify UnitStep UnitTriangle UnitVector Unprotect UnsameQ UnsavedVariables Unset UnsetShared UntrackedVariables Up UpArrow UpArrowBar UpArrowDownArrow Update UpdateDynamicObjects UpdateDynamicObjectsSynchronous UpdateInterval UpDownArrow UpEquilibrium UpperCaseQ UpperLeftArrow UpperRightArrow UpperTriangularize Upsample UpSet UpSetDelayed UpTee UpTeeArrow UpValues URL URLFetch URLFetchAsynchronous URLSave URLSaveAsynchronous UseGraphicsRange Using UsingFrontEnd V2Get ValidationLength Value ValueBox ValueBoxOptions ValueForm ValueQ ValuesData Variables Variance VarianceEquivalenceTest VarianceEstimatorFunction VarianceGammaDistribution VarianceTest VectorAngle VectorColorFunction VectorColorFunctionScaling VectorDensityPlot VectorGlyphData VectorPlot VectorPlot3D VectorPoints VectorQ Vectors VectorScale VectorStyle Vee Verbatim Verbose VerboseConvertToPostScriptPacket VerifyConvergence VerifySolutions VerifyTestAssumptions Version VersionNumber VertexAdd VertexCapacity VertexColors VertexComponent VertexConnectivity VertexCoordinateRules VertexCoordinates VertexCorrelationSimilarity VertexCosineSimilarity VertexCount VertexCoverQ VertexDataCoordinates VertexDegree VertexDelete VertexDiceSimilarity VertexEccentricity VertexInComponent VertexInDegree VertexIndex VertexJaccardSimilarity VertexLabeling VertexLabels VertexLabelStyle VertexList VertexNormals VertexOutComponent VertexOutDegree VertexQ VertexRenderingFunction VertexReplace VertexShape VertexShapeFunction VertexSize VertexStyle VertexTextureCoordinates VertexWeight Vertical VerticalBar VerticalForm VerticalGauge VerticalSeparator VerticalSlider VerticalTilde ViewAngle ViewCenter ViewMatrix ViewPoint ViewPointSelectorSettings ViewPort ViewRange ViewVector ViewVertical VirtualGroupData Visible VisibleCell VoigtDistribution VonMisesDistribution WaitAll WaitAsynchronousTask WaitNext WaitUntil WakebyDistribution WalleniusHypergeometricDistribution WaringYuleDistribution WatershedComponents WatsonUSquareTest WattsStrogatzGraphDistribution WaveletBestBasis WaveletFilterCoefficients WaveletImagePlot WaveletListPlot WaveletMapIndexed WaveletMatrixPlot WaveletPhi WaveletPsi WaveletScale WaveletScalogram WaveletThreshold WeaklyConnectedComponents WeaklyConnectedGraphQ WeakStationarity WeatherData WeberE Wedge Wednesday WeibullDistribution WeierstrassHalfPeriods WeierstrassInvariants WeierstrassP WeierstrassPPrime WeierstrassSigma WeierstrassZeta WeightedAdjacencyGraph WeightedAdjacencyMatrix WeightedData WeightedGraphQ Weights WelchWindow WheelGraph WhenEvent Which While White Whitespace WhitespaceCharacter WhittakerM WhittakerW WienerFilter WienerProcess WignerD WignerSemicircleDistribution WilksW WilksWTest WindowClickSelect WindowElements WindowFloating WindowFrame WindowFrameElements WindowMargins WindowMovable WindowOpacity WindowSelected WindowSize WindowStatusArea WindowTitle WindowToolbars WindowWidth With WolframAlpha WolframAlphaDate WolframAlphaQuantity WolframAlphaResult Word WordBoundary WordCharacter WordData WordSearch WordSeparators WorkingPrecision Write WriteString Wronskian XMLElement XMLObject Xnor Xor Yellow YuleDissimilarity ZernikeR ZeroSymmetric ZeroTest ZeroWidthTimes Zeta ZetaZero ZipfDistribution ZTest ZTransform $Aborted $ActivationGroupID $ActivationKey $ActivationUserRegistered $AddOnsDirectory $AssertFunction $Assumptions $AsynchronousTask $BaseDirectory $BatchInput $BatchOutput $BoxForms $ByteOrdering $Canceled $CharacterEncoding $CharacterEncodings $CommandLine $CompilationTarget $ConditionHold $ConfiguredKernels $Context $ContextPath $ControlActiveSetting $CreationDate $CurrentLink $DateStringFormat $DefaultFont $DefaultFrontEnd $DefaultImagingDevice $DefaultPath $Display $DisplayFunction $DistributedContexts $DynamicEvaluation $Echo $Epilog $ExportFormats $Failed $FinancialDataSource $FormatType $FrontEnd $FrontEndSession $GeoLocation $HistoryLength $HomeDirectory $HTTPCookies $IgnoreEOF $ImagingDevices $ImportFormats $InitialDirectory $Input $InputFileName $InputStreamMethods $Inspector $InstallationDate $InstallationDirectory $InterfaceEnvironment $IterationLimit $KernelCount $KernelID $Language $LaunchDirectory $LibraryPath $LicenseExpirationDate $LicenseID $LicenseProcesses $LicenseServer $LicenseSubprocesses $LicenseType $Line $Linked $LinkSupported $LoadedFiles $MachineAddresses $MachineDomain $MachineDomains $MachineEpsilon $MachineID $MachineName $MachinePrecision $MachineType $MaxExtraPrecision $MaxLicenseProcesses $MaxLicenseSubprocesses $MaxMachineNumber $MaxNumber $MaxPiecewiseCases $MaxPrecision $MaxRootDegree $MessageGroups $MessageList $MessagePrePrint $Messages $MinMachineNumber $MinNumber $MinorReleaseNumber $MinPrecision $ModuleNumber $NetworkLicense $NewMessage $NewSymbol $Notebooks $NumberMarks $Off $OperatingSystem $Output $OutputForms $OutputSizeLimit $OutputStreamMethods $Packages $ParentLink $ParentProcessID $PasswordFile $PatchLevelID $Path $PathnameSeparator $PerformanceGoal $PipeSupported $Post $Pre $PreferencesDirectory $PrePrint $PreRead $PrintForms $PrintLiteral $ProcessID $ProcessorCount $ProcessorType $ProductInformation $ProgramName $RandomState $RecursionLimit $ReleaseNumber $RootDirectory $ScheduledTask $ScriptCommandLine $SessionID $SetParentLink $SharedFunctions $SharedVariables $SoundDisplay $SoundDisplayFunction $SuppressInputFormHeads $SynchronousEvaluation $SyntaxHandler $System $SystemCharacterEncoding $SystemID $SystemWordLength $TemporaryDirectory $TemporaryPrefix $TextStyle $TimedOut $TimeUnit $TimeZone $TopDirectory $TraceOff $TraceOn $TracePattern $TracePostAction $TracePreAction $Urgent $UserAddOnsDirectory $UserBaseDirectory $UserDocumentsDirectory $UserName $Version $VersionNumber", +c:[{cN:"comment",b:/\(\*/,e:/\*\)/},e.ASM,e.QSM,e.CNM,{cN:"list",b:/\{/,e:/\}/,i:/:/}]}});hljs.registerLanguage("julia",function(r){var e={keyword:"in abstract baremodule begin bitstype break catch ccall const continue do else elseif end export finally for function global if immutable import importall let local macro module quote return try type typealias using while",literal:"true false ANY ARGS CPU_CORES C_NULL DL_LOAD_PATH DevNull ENDIAN_BOM ENV I|0 Inf Inf16 Inf32 InsertionSort JULIA_HOME LOAD_PATH MS_ASYNC MS_INVALIDATE MS_SYNC MergeSort NaN NaN16 NaN32 OS_NAME QuickSort RTLD_DEEPBIND RTLD_FIRST RTLD_GLOBAL RTLD_LAZY RTLD_LOCAL RTLD_NODELETE RTLD_NOLOAD RTLD_NOW RoundDown RoundFromZero RoundNearest RoundToZero RoundUp STDERR STDIN STDOUT VERSION WORD_SIZE catalan cglobal e|0 eu|0 eulergamma golden im nothing pi γ π φ",built_in:"ASCIIString AbstractArray AbstractRNG AbstractSparseArray Any ArgumentError Array Associative Base64Pipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError Box CFILE Cchar Cdouble Cfloat Char CharString Cint Clong Clonglong ClusterManager Cmd Coff_t Colon Complex Complex128 Complex32 Complex64 Condition Cptrdiff_t Cshort Csize_t Cssize_t Cuchar Cuint Culong Culonglong Cushort Cwchar_t DArray DataType DenseArray Diagonal Dict DimensionMismatch DirectIndexString Display DivideError DomainError EOFError EachLine Enumerate ErrorException Exception Expr Factorization FileMonitor FileOffset Filter Float16 Float32 Float64 FloatRange FloatingPoint Function GetfieldNode GotoNode Hermitian IO IOBuffer IOStream IPv4 IPv6 InexactError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException IntrinsicFunction KeyError LabelNode LambdaStaticData LineNumberNode LoadError LocalProcess MIME MathConst MemoryError MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode Nothing Number ObjectIdDict OrdinalRange OverflowError ParseError PollingFileWatcher ProcessExitedException ProcessGroup Ptr QuoteNode Range Range1 Ranges Rational RawFD Real Regex RegexMatch RemoteRef RepString RevString RopeString RoundingMode Set SharedArray Signed SparseMatrixCSC StackOverflowError Stat StatStruct StepRange String SubArray SubString SymTridiagonal Symbol SymbolNode Symmetric SystemError Task TextDisplay Timer TmStruct TopNode Triangular Tridiagonal Type TypeConstructor TypeError TypeName TypeVar UTF16String UTF32String UTF8String UdpSocket Uint Uint128 Uint16 Uint32 Uint64 Uint8 UndefRefError UndefVarError UniformScaling UnionType UnitRange Unsigned Vararg VersionNumber WString WeakKeyDict WeakRef Woodbury Zip"},t="[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*",o={l:t,k:e},n={cN:"type-annotation",b:/::/},a={cN:"subtype",b:/<:/},i={cN:"number",b:/(\b0x[\d_]*(\.[\d_]*)?|0x\.\d[\d_]*)p[-+]?\d+|\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\b\d[\d_]*(\.[\d_]*)?|\.\d[\d_]*)([eEfF][-+]?\d+)?/,r:0},l={cN:"char",b:/'(.|\\[xXuU][a-zA-Z0-9]+)'/},c={cN:"subst",b:/\$\(/,e:/\)/,k:e},u={cN:"variable",b:"\\$"+t},d={cN:"string",c:[r.BE,c,u],v:[{b:/\w*"/,e:/"\w*/},{b:/\w*"""/,e:/"""\w*/}]},g={cN:"string",c:[r.BE,c,u],b:"`",e:"`"},s={cN:"macrocall",b:"@"+t},S={cN:"comment",v:[{b:"#=",e:"=#",r:10},{b:"#",e:"$"}]};return o.c=[i,l,n,a,d,g,s,S,r.HCM],c.c=o.c,o});hljs.registerLanguage("rib",function(e){return{k:"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd",i:"</",c:[e.HCM,e.CNM,e.ASM,e.QSM]}});hljs.registerLanguage("vim",function(e){return{l:/[!#@\w]+/,k:{keyword:"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw d|0 delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu g|0 go gr grepa gu gv ha h|0 helpf helpg helpt hi hid his i|0 ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs n|0 new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf q|0 quita qa r|0 rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv s|0 sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync t|0 tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up v|0 ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank",built_in:"abs acos add and append argc argidx argv asin atan atan2 browse browsedir bufexists buflisted bufloaded bufname bufnr bufwinnr byte2line byteidx call ceil changenr char2nr cindent clearmatches col complete complete_add complete_check confirm copy cos cosh count cscope_connection cursor deepcopy delete did_filetype diff_filler diff_hlID empty escape eval eventhandler executable exists exp expand extend feedkeys filereadable filewritable filter finddir findfile float2nr floor fmod fnameescape fnamemodify foldclosed foldclosedend foldlevel foldtext foldtextresult foreground function garbagecollect get getbufline getbufvar getchar getcharmod getcmdline getcmdpos getcmdtype getcwd getfontname getfperm getfsize getftime getftype getline getloclist getmatches getpid getpos getqflist getreg getregtype gettabvar gettabwinvar getwinposx getwinposy getwinvar glob globpath has has_key haslocaldir hasmapto histadd histdel histget histnr hlexists hlID hostname iconv indent index input inputdialog inputlist inputrestore inputsave inputsecret insert invert isdirectory islocked items join keys len libcall libcallnr line line2byte lispindent localtime log log10 luaeval map maparg mapcheck match matchadd matcharg matchdelete matchend matchlist matchstr max min mkdir mode mzeval nextnonblank nr2char or pathshorten pow prevnonblank printf pumvisible py3eval pyeval range readfile reltime reltimestr remote_expr remote_foreground remote_peek remote_read remote_send remove rename repeat resolve reverse round screenattr screenchar screencol screenrow search searchdecl searchpair searchpairpos searchpos server2client serverlist setbufvar setcmdpos setline setloclist setmatches setpos setqflist setreg settabvar settabwinvar setwinvar sha256 shellescape shiftwidth simplify sin sinh sort soundfold spellbadword spellsuggest split sqrt str2float str2nr strchars strdisplaywidth strftime stridx string strlen strpart strridx strtrans strwidth submatch substitute synconcealed synID synIDattr synIDtrans synstack system tabpagebuflist tabpagenr tabpagewinnr tagfiles taglist tan tanh tempname tolower toupper tr trunc type undofile undotree values virtcol visualmode wildmenumode winbufnr wincol winheight winline winnr winrestcmd winrestview winsaveview winwidth writefile xor"},i:/[{:]/,c:[e.NM,e.ASM,{cN:"string",b:/"((\\")|[^"\n])*("|\n)/},{cN:"variable",b:/[bwtglsav]:[\w\d_]*/},{cN:"function",bK:"function function!",e:"$",r:0,c:[e.TM,{cN:"params",b:"\\(",e:"\\)"}]}]}});hljs.registerLanguage("prolog",function(c){var r={cN:"atom",b:/[a-z][A-Za-z0-9_]*/,r:0},b={cN:"name",v:[{b:/[A-Z][a-zA-Z0-9_]*/},{b:/_[A-Za-z0-9_]*/}],r:0},a={b:/\(/,e:/\)/,r:0},e={b:/\[/,e:/\]/},n={cN:"comment",b:/%/,e:/$/,c:[c.PWM]},t={cN:"string",b:/`/,e:/`/,c:[c.BE]},g={cN:"string",b:/0\'(\\\'|.)/},N={cN:"string",b:/0\'\\s/},o={b:/:-/},s=[r,b,a,o,e,n,c.CBCM,c.QSM,c.ASM,t,g,N,c.CNM];return a.c=s,e.c=s,{c:s.concat([{b:/\.$/}])}});hljs.registerLanguage("parser3",function(r){var e=r.C("{","}",{c:["self"]});return{sL:"xml",r:0,c:[r.C("^#","$"),r.C("\\^rem{","}",{r:10,c:[e]}),{cN:"preprocessor",b:"^@(?:BASE|USE|CLASS|OPTIONS)$",r:10},{cN:"title",b:"@[\\w\\-]+\\[[\\w^;\\-]*\\](?:\\[[\\w^;\\-]*\\])?(?:.*)$"},{cN:"variable",b:"\\$\\{?[\\w\\-\\.\\:]+\\}?"},{cN:"keyword",b:"\\^[\\w\\-\\.\\:]+"},{cN:"number",b:"\\^#[0-9a-fA-F]+"},r.CNM]}});hljs.registerLanguage("openscad",function(e){var r={cN:"keyword",b:"\\$(f[asn]|t|vp[rtd]|children)"},n={cN:"literal",b:"false|true|PI|undef"},i={cN:"number",b:"\\b\\d+(\\.\\d+)?(e-?\\d+)?",r:0},o=e.inherit(e.QSM,{i:null}),s={cN:"preprocessor",k:"include use",b:"include|use <",e:">"},t={cN:"params",b:"\\(",e:"\\)",c:["self",i,o,r,n]},c={cN:"built_in",b:"[*!#%]",r:0},l={cN:"function",bK:"module function",e:"\\=|\\{",c:[t,e.UTM]};return{aliases:["scad"],k:{keyword:"function module include use for intersection_for if else \\%",literal:"false true PI undef",built_in:"circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign"},c:[e.CLCM,e.CBCM,i,s,o,r,c,l]}});hljs.registerLanguage("ceylon",function(e){var a="assembly module package import alias class interface object given value assign void function new of extends satisfies abstracts in out return break continue throw assert dynamic if else switch case for while try catch finally then let this outer super is exists nonempty",t="shared abstract formal default actual variable late native deprecatedfinal sealed annotation suppressWarnings small",s="doc by license see throws tagged",n=t+" "+s,i={cN:"subst",eB:!0,eE:!0,b:/``/,e:/``/,k:a,r:10},r=[{cN:"string",b:'"""',e:'"""',r:10},{cN:"string",b:'"',e:'"',c:[i]},{cN:"string",b:"'",e:"'"},{cN:"number",b:"#[0-9a-fA-F_]+|\\$[01_]+|[0-9_]+(?:\\.[0-9_](?:[eE][+-]?\\d+)?)?[kMGTPmunpf]?",r:0}];return i.c=r,{k:{keyword:a,annotation:n},i:"\\$[^01]|#[^0-9a-fA-F]",c:[e.CLCM,e.C("/\\*","\\*/",{c:["self"]}),{cN:"annotation",b:'@[a-z]\\w*(?:\\:"[^"]*")?'}].concat(r)}});hljs.registerLanguage("nginx",function(e){var r={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+e.UIR}]},b={eW:!0,l:"[a-z/_]+",k:{built_in:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[e.HCM,{cN:"string",c:[e.BE,r],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{cN:"url",b:"([a-z]+):/",e:"\\s",eW:!0,eE:!0,c:[r]},{cN:"regexp",c:[e.BE,r],v:[{b:"\\s\\^",e:"\\s|{|;",rE:!0},{b:"~\\*?\\s+",e:"\\s|{|;",rE:!0},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},r]};return{aliases:["nginxconf"],c:[e.HCM,{b:e.UIR+"\\s",e:";|{",rB:!0,c:[{cN:"title",b:e.UIR,starts:b}],r:0}],i:"[^\\s\\}]"}});hljs.registerLanguage("sml",function(e){return{aliases:["ml"],k:{keyword:"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while",built_in:"array bool char exn int list option order real ref string substring vector unit word",literal:"true false NONE SOME LESS EQUAL GREATER nil"},i:/\/\/|>>/,l:"[a-z_]\\w*!?",c:[{cN:"literal",b:"\\[(\\|\\|)?\\]|\\(\\)"},e.C("\\(\\*","\\*\\)",{c:["self"]}),{cN:"symbol",b:"'[A-Za-z_](?!')[\\w']*"},{cN:"tag",b:"`[A-Z][\\w']*"},{cN:"type",b:"\\b[A-Z][\\w']*",r:0},{b:"[a-z_]\\w*'[\\w']*"},e.inherit(e.ASM,{cN:"char",r:0}),e.inherit(e.QSM,{i:null}),{cN:"number",b:"\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)",r:0},{b:/[-=]>/}]}});hljs.registerLanguage("gherkin",function(e){return{aliases:["feature"],k:"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When",c:[{cN:"keyword",b:"\\*"},e.C("@[^@\r\n ]+","$"),{b:"\\|",e:"\\|\\w*$",c:[{cN:"string",b:"[^|]+"}]},{cN:"variable",b:"<",e:">"},e.HCM,{cN:"string",b:'"""',e:'"""'},e.QSM]}});hljs.registerLanguage("vbnet",function(e){return{aliases:["vb"],cI:!0,k:{keyword:"addhandler addressof alias and andalso aggregate ansi as assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not notinheritable notoverridable of off on operator option optional or order orelse overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim rem removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly xor",built_in:"boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype date decimal directcast double gettype getxmlnamespace iif integer long object sbyte short single string trycast typeof uinteger ulong ushort",literal:"true false nothing"},i:"//|{|}|endif|gosub|variant|wend",c:[e.inherit(e.QSM,{c:[{b:'""'}]}),e.C("'","$",{rB:!0,c:[{cN:"xmlDocTag",b:"'''|<!--|-->",c:[e.PWM]},{cN:"xmlDocTag",b:"</?",e:">",c:[e.PWM]}]}),e.CNM,{cN:"preprocessor",b:"#",e:"$",k:"if else elseif end region externalsource"}]}});hljs.registerLanguage("pf",function(t){var o={cN:"variable",b:/\$[\w\d#@][\w\d_]*/},e={cN:"variable",b:/</,e:/>/};return{aliases:["pf.conf"],l:/[a-z0-9_<>-]+/,k:{built_in:"block match pass load anchor|5 antispoof|10 set table",keyword:"in out log quick on rdomain inet inet6 proto from port os to routeallow-opts divert-packet divert-reply divert-to flags group icmp-typeicmp6-type label once probability recieved-on rtable prio queuetos tag tagged user keep fragment for os dropaf-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robinsource-hash static-portdup-to reply-to route-toparent bandwidth default min max qlimitblock-policy debug fingerprints hostid limit loginterface optimizationreassemble ruleset-optimization basic none profile skip state-defaultsstate-policy timeoutconst counters persistno modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppysource-track global rule max-src-nodes max-src-states max-src-connmax-src-conn-rate overload flushscrub|5 max-mss min-ttl no-df|10 random-id",literal:"all any no-route self urpf-failed egress|5 unknown"},c:[t.HCM,t.NM,t.QSM,o,e]}});hljs.registerLanguage("r",function(e){var r="([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*";return{c:[e.HCM,{b:r,l:r,k:{keyword:"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...",literal:"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10"},r:0},{cN:"number",b:"0[xX][0-9a-fA-F]+[Li]?\\b",r:0},{cN:"number",b:"\\d+(?:[eE][+\\-]?\\d*)?L\\b",r:0},{cN:"number",b:"\\d+\\.(?!\\d)(?:i\\b)?",r:0},{cN:"number",b:"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{cN:"number",b:"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{b:"`",e:"`",r:0},{cN:"string",c:[e.BE],v:[{b:'"',e:'"'},{b:"'",e:"'"}]}]}});hljs.registerLanguage("sql",function(e){var t=e.C("--","$");return{cI:!0,i:/[<>{}*]/,c:[{cN:"operator",bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke",e:/;/,eW:!0,k:{keyword:"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes c cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle d data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration e each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract f failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function g general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http i id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists k keep keep_duplicates key keys kill l language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim m main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex n name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding p package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime t table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null",built_in:"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage("kotlin",function(e){var r="val var get set class trait object public open private protected final enum if else do while for when break continue throw try catch finally import package is as in return fun override default companion reified inline volatile transient native";return{k:{typename:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",literal:"true false null",keyword:r},c:[e.C("/\\*\\*","\\*/",{r:0,c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,{cN:"type",b:/</,e:/>/,rB:!0,eE:!1,r:0},{cN:"function",bK:"fun",e:"[(]|$",rB:!0,eE:!0,k:r,i:/fun\s+(<.*>)?[^\s\(]+(\s+[^\s\(]+)\s*=/,r:5,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"type",b:/</,e:/>/,k:"reified",r:0},{cN:"params",b:/\(/,e:/\)/,k:r,r:0,i:/\([^\(,\s:]+,/,c:[{cN:"typename",b:/:\s*/,e:/\s*[=\)]/,eB:!0,rE:!0,r:0}]},e.CLCM,e.CBCM]},{cN:"class",bK:"class trait",e:/[:\{(]|$/,eE:!0,i:"extends implements",c:[e.UTM,{cN:"type",b:/</,e:/>/,eB:!0,eE:!0,r:0},{cN:"typename",b:/[,:]\s*/,e:/[<\(,]|$/,eB:!0,rE:!0}]},{cN:"variable",bK:"var val",e:/\s*[=:$]/,eE:!0},e.QSM,{cN:"shebang",b:"^#!/usr/bin/env",e:"$",i:"\n"},e.CNM]}});hljs.registerLanguage("clojure-repl",function(r){return{c:[{cN:"prompt",b:/^([\w.-]+|\s*#_)=>/,starts:{e:/$/,sL:"clojure"}}]}});hljs.registerLanguage("twig",function(e){var t={cN:"params",b:"\\(",e:"\\)"},a="attribute block constant cycle date dump include max min parent random range source template_from_string",r={cN:"function",bK:a,r:0,c:[t]},c={cN:"filter",b:/\|[A-Za-z_]+:?/,k:"abs batch capitalize convert_encoding date date_modify default escape first format join json_encode keys last length lower merge nl2br number_format raw replace reverse round slice sort split striptags title trim upper url_encode",c:[r]},n="autoescape block do embed extends filter flush for if import include macro sandbox set spaceless use verbatim";return n=n+" "+n.split(" ").map(function(e){return"end"+e}).join(" "),{aliases:["craftcms"],cI:!0,sL:"xml",c:[e.C(/\{#/,/#}/),{cN:"template_tag",b:/\{%/,e:/%}/,k:n,c:[c,r]},{cN:"variable",b:/\{\{/,e:/}}/,c:[c,r]}]}});hljs.registerLanguage("vbscript",function(e){return{aliases:["vbs"],cI:!0,k:{keyword:"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto",built_in:"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid scriptenginebuildversion scriptengine split scriptengineminorversion cint sin datepart ltrim sqr scriptenginemajorversion time derived eval date formatpercent exp inputbox left ascw chrw regexp server response request cstr err",literal:"true false null nothing empty"},i:"//",c:[e.inherit(e.QSM,{c:[{b:'""'}]}),e.C(/'/,/$/,{r:0}),e.CNM]}});hljs.registerLanguage("css",function(e){var c="[a-zA-Z-][a-zA-Z0-9_-]*",a={cN:"function",b:c+"\\(",rB:!0,eE:!0,e:"\\("},r={cN:"rule",b:/[A-Z\_\.\-]+\s*:/,rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:/\S/,e:":",eE:!0,starts:{cN:"value",eW:!0,eE:!0,c:[a,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"hexcolor",b:"#[0-9A-Fa-f]+"},{cN:"important",b:"!important"}]}}]};return{cI:!0,i:/[=\/|'\$]/,c:[e.CBCM,{cN:"id",b:/\#[A-Za-z0-9_-]+/},{cN:"class",b:/\.[A-Za-z0-9_-]+/},{cN:"attr_selector",b:/\[/,e:/\]/,i:"$"},{cN:"pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"']+/},{cN:"at_rule",b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{cN:"at_rule",b:"@",e:"[{;]",c:[{cN:"keyword",b:/\S+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[a,e.ASM,e.QSM,e.CSSNM]}]},{cN:"tag",b:c,r:0},{cN:"rules",b:"{",e:"}",i:/\S/,c:[e.CBCM,r]}]}});hljs.registerLanguage("mel",function(e){return{k:"int float string vector matrix if else switch case default while do for in break continue global proc return about abs addAttr addAttributeEditorNodeHelp addDynamic addNewShelfTab addPP addPanelCategory addPrefixToName advanceToNextDrivenKey affectedNet affects aimConstraint air alias aliasAttr align alignCtx alignCurve alignSurface allViewFit ambientLight angle angleBetween animCone animCurveEditor animDisplay animView annotate appendStringArray applicationName applyAttrPreset applyTake arcLenDimContext arcLengthDimension arclen arrayMapper art3dPaintCtx artAttrCtx artAttrPaintVertexCtx artAttrSkinPaintCtx artAttrTool artBuildPaintMenu artFluidAttrCtx artPuttyCtx artSelectCtx artSetPaintCtx artUserPaintCtx assignCommand assignInputDevice assignViewportFactories attachCurve attachDeviceAttr attachSurface attrColorSliderGrp attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp attrFieldSliderGrp attrNavigationControlGrp attrPresetEditWin attributeExists attributeInfo attributeMenu attributeQuery autoKeyframe autoPlace bakeClip bakeFluidShading bakePartialHistory bakeResults bakeSimulation basename basenameEx batchRender bessel bevel bevelPlus binMembership bindSkin blend2 blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu buildKeyframeMenu button buttonManip CBG cacheFile cacheFileCombine cacheFileMerge cacheFileTrack camera cameraView canCreateManip canvas capitalizeString catch catchQuiet ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character characterMap characterOutlineEditor characterize chdir checkBox checkBoxGrp checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache clip clipEditor clipEditorCurrentTimeCtx clipSchedule clipSchedulerOutliner clipTrimBefore closeCurve closeSurface cluster cmdFileOutput cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex colorIndexSliderGrp colorSliderButtonGrp colorSliderGrp columnLayout commandEcho commandLine commandPort compactHairSystem componentEditor compositingInterop computePolysetVolume condition cone confirmDialog connectAttr connectControl connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory container containsMultibyte contextInfo control convertFromOldLayers convertIffToPsd convertLightmap convertSolidTx convertTessellation convertUnit copyArray copyFlexor copyKey copySkinWeights cos cpButton cpCache cpClothSet cpCollision cpConstraint cpConvClothToMesh cpForces cpGetSolverAttr cpPanel cpProperty cpRigidCollisionFilter cpSeam cpSetEdit cpSetSolverAttr cpSolver cpSolverTypes cpTool cpUpdateClothUVs createDisplayLayer createDrawCtx createEditor createLayeredPsdFile createMotionField createNewShelf createNode createRenderLayer createSubdivRegion cross crossProduct ctxAbort ctxCompletion ctxEditMode ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx curveOnSurface curveSketchCtx cutKey cycleCheck cylinder dagPose date defaultLightListCheckBox defaultNavigation defineDataServer defineVirtualDevice deformer deg_to_rad delete deleteAttr deleteShadingGroupsAndMaterials deleteShelfTab deleteUI deleteUnusedBrushes delrandstr detachCurve detachDeviceAttr detachSurface deviceEditor devicePanel dgInfo dgdirty dgeval dgtimer dimWhen directKeyCtx directionalLight dirmap dirname disable disconnectAttr disconnectJoint diskCache displacementToPoly displayAffected displayColor displayCull displayLevelOfDetail displayPref displayRGBColor displaySmoothness displayStats displayString displaySurface distanceDimContext distanceDimension doBlur dolly dollyCtx dopeSheetEditor dot dotProduct doubleProfileBirailSurface drag dragAttrContext draggerContext dropoffLocator duplicate duplicateCurve duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintEditor dynParticleCtx dynPref dynRelEdPanel dynRelEditor dynamicLoad editAttrLimits editDisplayLayerGlobals editDisplayLayerMembers editRenderLayerAdjustment editRenderLayerGlobals editRenderLayerMembers editor editorTemplate effector emit emitter enableDevice encodeString endString endsWith env equivalent equivalentTol erf error eval evalDeferred evalEcho event exactWorldBoundingBox exclusiveLightCheckBox exec executeForEachObject exists exp expression expressionEditorListen extendCurve extendSurface extrude fcheck fclose feof fflush fgetline fgetword file fileBrowserDialog fileDialog fileExtension fileInfo filetest filletCurve filter filterCurve filterExpand filterStudioImport findAllIntersections findAnimCurves findKeyframe findMenuItem findRelatedSkinCluster finder firstParentOf fitBspline flexor floatEq floatField floatFieldGrp floatScrollBar floatSlider floatSlider2 floatSliderButtonGrp floatSliderGrp floor flow fluidCacheInfo fluidEmitter fluidVoxelInfo flushUndo fmod fontDialog fopen formLayout format fprint frameLayout fread freeFormFillet frewind fromNativePath fwrite gamma gauss geometryConstraint getApplicationVersionAsFloat getAttr getClassification getDefaultBrush getFileList getFluidAttr getInputDeviceRange getMayaPanelTypes getModifiers getPanel getParticleAttr getPluginResource getenv getpid glRender glRenderEditor globalStitch gmatch goal gotoBindPose grabColor gradientControl gradientControlNoAttr graphDollyCtx graphSelectContext graphTrackCtx gravity grid gridLayout group groupObjectsByName HfAddAttractorToAS HfAssignAS HfBuildEqualMap HfBuildFurFiles HfBuildFurImages HfCancelAFR HfConnectASToHF HfCreateAttractor HfDeleteAS HfEditAS HfPerformCreateAS HfRemoveAttractorFromAS HfSelectAttached HfSelectAttractors HfUnAssignAS hardenPointCurve hardware hardwareRenderPanel headsUpDisplay headsUpMessage help helpLine hermite hide hilite hitTest hotBox hotkey hotkeyCheck hsv_to_rgb hudButton hudSlider hudSliderButton hwReflectionMap hwRender hwRenderLoad hyperGraph hyperPanel hyperShade hypot iconTextButton iconTextCheckBox iconTextRadioButton iconTextRadioCollection iconTextScrollList iconTextStaticLabel ikHandle ikHandleCtx ikHandleDisplayScale ikSolver ikSplineHandleCtx ikSystem ikSystemInfo ikfkDisplayMethod illustratorCurves image imfPlugins inheritTransform insertJoint insertJointCtx insertKeyCtx insertKnotCurve insertKnotSurface instance instanceable instancer intField intFieldGrp intScrollBar intSlider intSliderGrp interToUI internalVar intersect iprEngine isAnimCurve isConnected isDirty isParentOf isSameObject isTrue isValidObjectName isValidString isValidUiName isolateSelect itemFilter itemFilterAttr itemFilterRender itemFilterType joint jointCluster jointCtx jointDisplayScale jointLattice keyTangent keyframe keyframeOutliner keyframeRegionCurrentTimeCtx keyframeRegionDirectKeyCtx keyframeRegionDollyCtx keyframeRegionInsertKeyCtx keyframeRegionMoveKeyCtx keyframeRegionScaleKeyCtx keyframeRegionSelectKeyCtx keyframeRegionSetKeyCtx keyframeRegionTrackCtx keyframeStats lassoContext lattice latticeDeformKeyCtx launch launchImageEditor layerButton layeredShaderPort layeredTexturePort layout layoutDialog lightList lightListEditor lightListPanel lightlink lineIntersection linearPrecision linstep listAnimatable listAttr listCameras listConnections listDeviceAttachments listHistory listInputDeviceAxes listInputDeviceButtons listInputDevices listMenuAnnotation listNodeTypes listPanelCategories listRelatives listSets listTransforms listUnselected listerEditor loadFluid loadNewShelf loadPlugin loadPluginLanguageResources loadPrefObjects localizedPanelLabel lockNode loft log longNameOf lookThru ls lsThroughFilter lsType lsUI Mayatomr mag makeIdentity makeLive makePaintable makeRoll makeSingleSurface makeTubeOn makebot manipMoveContext manipMoveLimitsCtx manipOptions manipRotateContext manipRotateLimitsCtx manipScaleContext manipScaleLimitsCtx marker match max memory menu menuBarLayout menuEditor menuItem menuItemToShelf menuSet menuSetPref messageLine min minimizeApp mirrorJoint modelCurrentTimeCtx modelEditor modelPanel mouse movIn movOut move moveIKtoFK moveKeyCtx moveVertexAlongDirection multiProfileBirailSurface mute nParticle nameCommand nameField namespace namespaceInfo newPanelItems newton nodeCast nodeIconButton nodeOutliner nodePreset nodeType noise nonLinear normalConstraint normalize nurbsBoolean nurbsCopyUVSet nurbsCube nurbsEditUV nurbsPlane nurbsSelect nurbsSquare nurbsToPoly nurbsToPolygonsPref nurbsToSubdiv nurbsToSubdivPref nurbsUVSet nurbsViewDirectionVector objExists objectCenter objectLayer objectType objectTypeUI obsoleteProc oceanNurbsPreviewPlane offsetCurve offsetCurveOnSurface offsetSurface openGLExtension openMayaPref optionMenu optionMenuGrp optionVar orbit orbitCtx orientConstraint outlinerEditor outlinerPanel overrideModifier paintEffectsDisplay pairBlend palettePort paneLayout panel panelConfiguration panelHistory paramDimContext paramDimension paramLocator parent parentConstraint particle particleExists particleInstancer particleRenderInfo partition pasteKey pathAnimation pause pclose percent performanceOptions pfxstrokes pickWalk picture pixelMove planarSrf plane play playbackOptions playblast plugAttr plugNode pluginInfo pluginResourceUtil pointConstraint pointCurveConstraint pointLight pointMatrixMult pointOnCurve pointOnSurface pointPosition poleVectorConstraint polyAppend polyAppendFacetCtx polyAppendVertex polyAutoProjection polyAverageNormal polyAverageVertex polyBevel polyBlendColor polyBlindData polyBoolOp polyBridgeEdge polyCacheMonitor polyCheck polyChipOff polyClipboard polyCloseBorder polyCollapseEdge polyCollapseFacet polyColorBlindData polyColorDel polyColorPerVertex polyColorSet polyCompare polyCone polyCopyUV polyCrease polyCreaseCtx polyCreateFacet polyCreateFacetCtx polyCube polyCut polyCutCtx polyCylinder polyCylindricalProjection polyDelEdge polyDelFacet polyDelVertex polyDuplicateAndConnect polyDuplicateEdge polyEditUV polyEditUVShell polyEvaluate polyExtrudeEdge polyExtrudeFacet polyExtrudeVertex polyFlipEdge polyFlipUV polyForceUV polyGeoSampler polyHelix polyInfo polyInstallAction polyLayoutUV polyListComponentConversion polyMapCut polyMapDel polyMapSew polyMapSewMove polyMergeEdge polyMergeEdgeCtx polyMergeFacet polyMergeFacetCtx polyMergeUV polyMergeVertex polyMirrorFace polyMoveEdge polyMoveFacet polyMoveFacetUV polyMoveUV polyMoveVertex polyNormal polyNormalPerVertex polyNormalizeUV polyOptUvs polyOptions polyOutput polyPipe polyPlanarProjection polyPlane polyPlatonicSolid polyPoke polyPrimitive polyPrism polyProjection polyPyramid polyQuad polyQueryBlindData polyReduce polySelect polySelectConstraint polySelectConstraintMonitor polySelectCtx polySelectEditCtx polySeparate polySetToFaceNormal polySewEdge polyShortestPathCtx polySmooth polySoftEdge polySphere polySphericalProjection polySplit polySplitCtx polySplitEdge polySplitRing polySplitVertex polyStraightenUVBorder polySubdivideEdge polySubdivideFacet polyToSubdiv polyTorus polyTransfer polyTriangulate polyUVSet polyUnite polyWedgeFace popen popupMenu pose pow preloadRefEd print progressBar progressWindow projFileViewer projectCurve projectTangent projectionContext projectionManip promptDialog propModCtx propMove psdChannelOutliner psdEditTextureFile psdExport psdTextureFile putenv pwd python querySubdiv quit rad_to_deg radial radioButton radioButtonGrp radioCollection radioMenuItemCollection rampColorPort rand randomizeFollicles randstate rangeControl readTake rebuildCurve rebuildSurface recordAttr recordDevice redo reference referenceEdit referenceQuery refineSubdivSelectionList refresh refreshAE registerPluginResource rehash reloadImage removeJoint removeMultiInstance removePanelCategory rename renameAttr renameSelectionList renameUI render renderGlobalsNode renderInfo renderLayerButton renderLayerParent renderLayerPostProcess renderLayerUnparent renderManip renderPartition renderQualityNode renderSettings renderThumbnailUpdate renderWindowEditor renderWindowSelectContext renderer reorder reorderDeformers requires reroot resampleFluid resetAE resetPfxToPolyCamera resetTool resolutionNode retarget reverseCurve reverseSurface revolve rgb_to_hsv rigidBody rigidSolver roll rollCtx rootOf rot rotate rotationInterpolation roundConstantRadius rowColumnLayout rowLayout runTimeCommand runup sampleImage saveAllShelves saveAttrPreset saveFluid saveImage saveInitialState saveMenu savePrefObjects savePrefs saveShelf saveToolSettings scale scaleBrushBrightness scaleComponents scaleConstraint scaleKey scaleKeyCtx sceneEditor sceneUIReplacement scmh scriptCtx scriptEditorInfo scriptJob scriptNode scriptTable scriptToShelf scriptedPanel scriptedPanelType scrollField scrollLayout sculpt searchPathArray seed selLoadSettings select selectContext selectCurveCV selectKey selectKeyCtx selectKeyframeRegionCtx selectMode selectPref selectPriority selectType selectedNodes selectionConnection separator setAttr setAttrEnumResource setAttrMapping setAttrNiceNameResource setConstraintRestPosition setDefaultShadingGroup setDrivenKeyframe setDynamic setEditCtx setEditor setFluidAttr setFocus setInfinity setInputDeviceMapping setKeyCtx setKeyPath setKeyframe setKeyframeBlendshapeTargetWts setMenuMode setNodeNiceNameResource setNodeTypeFlag setParent setParticleAttr setPfxToPolyCamera setPluginResource setProject setStampDensity setStartupMessage setState setToolTo setUITemplate setXformManip sets shadingConnection shadingGeometryRelCtx shadingLightRelCtx shadingNetworkCompare shadingNode shapeCompare shelfButton shelfLayout shelfTabLayout shellField shortNameOf showHelp showHidden showManipCtx showSelectionInTitle showShadingGroupAttrEditor showWindow sign simplify sin singleProfileBirailSurface size sizeBytes skinCluster skinPercent smoothCurve smoothTangentSurface smoothstep snap2to2 snapKey snapMode snapTogetherCtx snapshot soft softMod softModCtx sort sound soundControl source spaceLocator sphere sphrand spotLight spotLightPreviewPort spreadSheetEditor spring sqrt squareSurface srtContext stackTrace startString startsWith stitchAndExplodeShell stitchSurface stitchSurfacePoints strcmp stringArrayCatenate stringArrayContains stringArrayCount stringArrayInsertAtIndex stringArrayIntersector stringArrayRemove stringArrayRemoveAtIndex stringArrayRemoveDuplicates stringArrayRemoveExact stringArrayToString stringToStringArray strip stripPrefixFromName stroke subdAutoProjection subdCleanTopology subdCollapse subdDuplicateAndConnect subdEditUV subdListComponentConversion subdMapCut subdMapSewMove subdMatchTopology subdMirror subdToBlind subdToPoly subdTransferUVsToCache subdiv subdivCrease subdivDisplaySmoothness substitute substituteAllString substituteGeometry substring surface surfaceSampler surfaceShaderList swatchDisplayPort switchTable symbolButton symbolCheckBox sysFile system tabLayout tan tangentConstraint texLatticeDeformContext texManipContext texMoveContext texMoveUVShellContext texRotateContext texScaleContext texSelectContext texSelectShortestPathCtx texSmudgeUVContext texWinToolCtx text textCurves textField textFieldButtonGrp textFieldGrp textManip textScrollList textToShelf textureDisplacePlane textureHairColor texturePlacementContext textureWindow threadCount threePointArcCtx timeControl timePort timerX toNativePath toggle toggleAxis toggleWindowVisibility tokenize tokenizeList tolerance tolower toolButton toolCollection toolDropped toolHasOptions toolPropertyWindow torus toupper trace track trackCtx transferAttributes transformCompare transformLimits translator trim trunc truncateFluidCache truncateHairCache tumble tumbleCtx turbulence twoPointArcCtx uiRes uiTemplate unassignInputDevice undo undoInfo ungroup uniform unit unloadPlugin untangleUV untitledFileName untrim upAxis updateAE userCtx uvLink uvSnapshot validateShelfName vectorize view2dToolCtx viewCamera viewClipPlane viewFit viewHeadOn viewLookAt viewManip viewPlace viewSet visor volumeAxis vortex waitCursor warning webBrowser webBrowserPrefs whatIs window windowPref wire wireContext workspace wrinkle wrinkleContext writeTake xbmLangPathList xform",i:"</",c:[e.CNM,e.ASM,e.QSM,{cN:"string",b:"`",e:"`",c:[e.BE]},{cN:"variable",v:[{b:"\\$\\d"},{b:"[\\$\\%\\@](\\^\\w\\b|#\\w+|[^\\s\\w{]|{\\w+}|\\w+)"},{b:"\\*(\\^\\w\\b|#\\w+|[^\\s\\w{]|{\\w+}|\\w+)",r:0}]},e.CLCM,e.CBCM]}});hljs.registerLanguage("monkey",function(e){var n={cN:"number",r:0,v:[{b:"[$][a-fA-F0-9]+"},e.NM]};return{cI:!0,k:{keyword:"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw",built_in:"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI",literal:"true false null and or shl shr mod"},i:/\/\*/,c:[e.C("#rem","#end"),e.C("'","$",{r:0}),{cN:"function",bK:"function method",e:"[(=:]|$",i:/\n/,c:[e.UTM]},{cN:"class",bK:"class interface",e:"$",c:[{bK:"extends implements"},e.UTM]},{cN:"variable",b:"\\b(self|super)\\b"},{cN:"preprocessor",bK:"import",e:"$"},{cN:"preprocessor",b:"\\s*#",e:"$",k:"if else elseif endif end then"},{cN:"pi",b:"^\\s*strict\\b"},{bK:"alias",e:"=",c:[e.UTM]},e.QSM,n]}});hljs.registerLanguage("smali",function(r){var t=["add","and","cmp","cmpg","cmpl","const","div","double","float","goto","if","int","long","move","mul","neg","new","nop","not","or","rem","return","shl","shr","sput","sub","throw","ushr","xor"],n=["aget","aput","array","check","execute","fill","filled","goto/16","goto/32","iget","instance","invoke","iput","monitor","packed","sget","sparse"],s=["transient","constructor","abstract","final","synthetic","public","private","protected","static","bridge","system"];return{aliases:["smali"],c:[{cN:"string",b:'"',e:'"',r:0},r.C("#","$",{r:0}),{cN:"keyword",b:"\\s*\\.end\\s[a-zA-Z0-9]*",r:1},{cN:"keyword",b:"^[ ]*\\.[a-zA-Z]*",r:0},{cN:"keyword",b:"\\s:[a-zA-Z_0-9]*",r:0},{cN:"keyword",b:"\\s("+s.join("|")+")",r:1},{cN:"keyword",b:"\\[",r:0},{cN:"instruction",b:"\\s("+t.join("|")+")\\s",r:1},{cN:"instruction",b:"\\s("+t.join("|")+")((\\-|/)[a-zA-Z0-9]+)+\\s",r:10},{cN:"instruction",b:"\\s("+n.join("|")+")((\\-|/)[a-zA-Z0-9]+)*\\s",r:10},{cN:"class",b:"L[^(;:\n]*;",r:0},{cN:"function",b:'( |->)[^(\n ;"]*\\(',r:0},{cN:"function",b:"\\)",r:0},{cN:"variable",b:"[vp][0-9]+",r:0}]}});hljs.registerLanguage("livecodeserver",function(e){var r={cN:"variable",b:"\\b[gtps][A-Z]+[A-Za-z0-9_\\-]*\\b|\\$_[A-Z]+",r:0},t=[e.CBCM,e.HCM,e.C("--","$"),e.C("[^:]//","$")],a=e.inherit(e.TM,{v:[{b:"\\b_*rig[A-Z]+[A-Za-z0-9_\\-]*"},{b:"\\b_[a-z0-9\\-]+"}]}),o=e.inherit(e.TM,{b:"\\b([A-Za-z0-9_\\-]+)\\b"});return{cI:!1,k:{keyword:"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if",constant:"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK",operator:"div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys",built_in:"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract union unload wait write"},c:[r,{cN:"keyword",b:"\\bend\\sif\\b"},{cN:"function",bK:"function",e:"$",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:"function",b:"\\bend\\s+",e:"$",k:"end",c:[o,a]},{cN:"command",bK:"command on",e:"$",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:"preprocessor",v:[{b:"<\\?(rev|lc|livecode)",r:10},{b:"<\\?"},{b:"\\?>"}]},e.ASM,e.QSM,e.BNM,e.CNM,a].concat(t),i:";$|^\\[|^="}});hljs.registerLanguage("smalltalk",function(a){var r="[a-z][a-zA-Z0-9_]*",s={cN:"char",b:"\\$.{1}"},c={cN:"symbol",b:"#"+a.UIR};return{aliases:["st"],k:"self super nil true false thisContext",c:[a.C('"','"'),a.ASM,{cN:"class",b:"\\b[A-Z][A-Za-z0-9_]*",r:0},{cN:"method",b:r+":",r:0},a.CNM,c,s,{cN:"localvars",b:"\\|[ ]*"+r+"([ ]+"+r+")*[ ]*\\|",rB:!0,e:/\|/,i:/\S/,c:[{b:"(\\|[ ]*)?"+r}]},{cN:"array",b:"\\#\\(",e:"\\)",c:[a.ASM,s,a.CNM,c]}]}});hljs.registerLanguage("rust",function(e){var t="([uif](8|16|32|64|size))?",r=e.inherit(e.CBCM);return r.c.push("self"),{aliases:["rs"],k:{keyword:"alignof as be box break const continue crate do else enum extern false fn for if impl in let loop match mod mut offsetof once priv proc pub pure ref return self Self sizeof static struct super trait true type typeof unsafe unsized use virtual while where yield int i8 i16 i32 i64 uint u8 u32 u64 float f32 f64 str char bool",built_in:"Copy Send Sized Sync Drop Fn FnMut FnOnce drop Box ToOwned Clone PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator Option Some None Result Ok Err SliceConcatExt String ToString Vec assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln!"},l:e.IR+"!?",i:"</",c:[e.CLCM,r,e.inherit(e.QSM,{i:null}),{cN:"string",v:[{b:/r(#*)".*?"\1(?!#)/},{b:/'\\?(x\w{2}|u\w{4}|U\w{8}|.)'/},{b:/'[a-zA-Z_][a-zA-Z0-9_]*/}]},{cN:"number",v:[{b:"\\b0b([01_]+)"+t},{b:"\\b0o([0-7_]+)"+t},{b:"\\b0x([A-Fa-f0-9_]+)"+t},{b:"\\b(\\d[\\d_]*(\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)"+t}],r:0},{cN:"function",bK:"fn",e:"(\\(|<)",eE:!0,c:[e.UTM]},{cN:"preprocessor",b:"#\\!?\\[",e:"\\]"},{bK:"type",e:"(=|<)",c:[e.UTM],i:"\\S"},{bK:"trait enum",e:"{",c:[e.inherit(e.UTM,{endsParent:!0})],i:"[\\w\\d]"},{b:e.IR+"::"},{b:"->"}]}});hljs.registerLanguage("fix",function(u){return{c:[{b:/[^\u2401\u0001]+/,e:/[\u2401\u0001]/,eE:!0,rB:!0,rE:!1,c:[{b:/([^\u2401\u0001=]+)/,e:/=([^\u2401\u0001=]+)/,rE:!0,rB:!1,cN:"attribute"},{b:/=/,e:/([\u2401\u0001])/,eE:!0,eB:!0,cN:"string"}]}],cI:!0}});hljs.registerLanguage("gradle",function(e){return{cI:!0,k:{keyword:"task project allprojects subprojects artifacts buildscript configurations dependencies repositories sourceSets description delete from into include exclude source classpath destinationDir includes options sourceCompatibility targetCompatibility group flatDir doLast doFirst flatten todir fromdir ant def abstract break case catch continue default do else extends final finally for if implements instanceof native new private protected public return static switch synchronized throw throws transient try volatile while strictfp package import false null super this true antlrtask checkstyle codenarc copy boolean byte char class double float int interface long short void compile runTime file fileTree abs any append asList asWritable call collect compareTo count div dump each eachByte eachFile eachLine every find findAll flatten getAt getErr getIn getOut getText grep immutable inject inspect intersect invokeMethods isCase join leftShift minus multiply newInputStream newOutputStream newPrintWriter newReader newWriter next plus pop power previous print println push putAt read readBytes readLines reverse reverseEach round size sort splitEachLine step subMap times toInteger toList tokenize upto waitForOrKill withPrintWriter withReader withStream withWriter withWriterAppend write writeLine"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.NM,e.RM]}});hljs.registerLanguage("xl",function(e){var t="ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts",o={keyword:"if then else do while until for loop import with is as where when by data constant",literal:"true false nil",type:"integer real text name boolean symbol infix prefix postfix block tree",built_in:"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at",module:t,id:"text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons"},a={cN:"constant",b:"[A-Z][A-Z_0-9]+",r:0},r={cN:"variable",b:"([A-Z][a-z_0-9]+)+",r:0},i={cN:"id",b:"[a-z][a-z_0-9]+",r:0},l={cN:"string",b:'"',e:'"',i:"\\n"},n={cN:"string",b:"'",e:"'",i:"\\n"},s={cN:"string",b:"<<",e:">>"},c={cN:"number",b:"[0-9]+#[0-9A-Z_]+(\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?",r:10},_={cN:"import",bK:"import",e:"$",k:{keyword:"import",module:t},r:0,c:[l]},d={cN:"function",b:"[a-z].*->"};return{aliases:["tao"],l:/[a-zA-Z][a-zA-Z0-9_?]*/,k:o,c:[e.CLCM,e.CBCM,l,n,s,d,_,a,r,i,c,e.NM]}});hljs.registerLanguage("ocaml",function(e){return{aliases:["ml"],k:{keyword:"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value",built_in:"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref",literal:"true false"},i:/\/\/|>>/,l:"[a-z_]\\w*!?",c:[{cN:"literal",b:"\\[(\\|\\|)?\\]|\\(\\)",r:0},e.C("\\(\\*","\\*\\)",{c:["self"]}),{cN:"symbol",b:"'[A-Za-z_](?!')[\\w']*"},{cN:"tag",b:"`[A-Z][\\w']*"},{cN:"type",b:"\\b[A-Z][\\w']*",r:0},{b:"[a-z_]\\w*'[\\w']*"},e.inherit(e.ASM,{cN:"char",r:0}),e.inherit(e.QSM,{i:null}),{cN:"number",b:"\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)",r:0},{b:/[-=]>/}]}});hljs.registerLanguage("scheme",function(e){var t="[^\\(\\)\\[\\]\\{\\}\",'`;#|\\\\\\s]+",r="(\\-|\\+)?\\d+([./]\\d+)?",i=r+"[+\\-]"+r+"i",a={built_in:"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?"},n={cN:"shebang",b:"^#!",e:"$"},c={cN:"literal",b:"(#t|#f|#\\\\"+t+"|#\\\\.)"},l={cN:"number",v:[{b:r,r:0},{b:i,r:0},{b:"#b[0-1]+(/[0-1]+)?"},{b:"#o[0-7]+(/[0-7]+)?"},{b:"#x[0-9a-f]+(/[0-9a-f]+)?"}]},s=e.QSM,o=[e.C(";","$",{r:0}),e.C("#\\|","\\|#")],u={b:t,r:0},p={cN:"variable",b:"'"+t},d={eW:!0,r:0},g={cN:"list",v:[{b:"\\(",e:"\\)"},{b:"\\[",e:"\\]"}],c:[{cN:"keyword",b:t,l:t,k:a},d]};return d.c=[c,l,s,u,p,g].concat(o),{i:/\S/,c:[n,l,s,p,g].concat(o)}});hljs.registerLanguage("http",function(t){return{aliases:["https"],i:"\\S",c:[{cN:"status",b:"^HTTP/[0-9\\.]+",e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{cN:"request",b:"^[A-Z]+ (.*?) HTTP/[0-9\\.]+$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{cN:"string",e:"$"}},{b:"\\n\\n",starts:{sL:[],eW:!0}}]}});hljs.registerLanguage("verilog",function(e){return{aliases:["v"],cI:!0,k:{keyword:"always and assign begin buf bufif0 bufif1 case casex casez cmos deassign default defparam disable edge else end endcase endfunction endmodule endprimitive endspecify endtable endtask event for force forever fork function if ifnone initial inout input join macromodule module nand negedge nmos nor not notif0 notif1 or output parameter pmos posedge primitive pulldown pullup rcmos release repeat rnmos rpmos rtran rtranif0 rtranif1 specify specparam table task timescale tran tranif0 tranif1 wait while xnor xor",typename:"highz0 highz1 integer large medium pull0 pull1 real realtime reg scalared signed small strong0 strong1 supply0 supply0 supply1 supply1 time tri tri0 tri1 triand trior trireg vectored wand weak0 weak1 wire wor"},c:[e.CBCM,e.CLCM,e.QSM,{cN:"number",b:"\\b(\\d+'(b|h|o|d|B|H|O|D))?[0-9xzXZ]+",c:[e.BE],r:0},{cN:"typename",b:"\\.\\w+",r:0},{cN:"value",b:"#\\((?!parameter).+\\)"},{cN:"keyword",b:"\\+|-|\\*|/|%|<|>|=|#|`|\\!|&|\\||@|:|\\^|~|\\{|\\}",r:0}]}});hljs.registerLanguage("actionscript",function(e){var a="[a-zA-Z_$][a-zA-Z0-9_$]*",c="([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)",t={cN:"rest_arg",b:"[.]{3}",e:a,r:10};return{aliases:["as"],k:{keyword:"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with",literal:"true false null undefined"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:"package",bK:"package",e:"{",c:[e.TM]},{cN:"class",bK:"class interface",e:"{",eE:!0,c:[{bK:"extends implements"},e.TM]},{cN:"preprocessor",bK:"import include",e:";"},{cN:"function",bK:"function",e:"[{;]",eE:!0,i:"\\S",c:[e.TM,{cN:"params",b:"\\(",e:"\\)",c:[e.ASM,e.QSM,e.CLCM,e.CBCM,t]},{cN:"type",b:":",e:c,r:10}]}],i:/#/}});hljs.registerLanguage("zephir",function(e){var i={cN:"string",c:[e.BE],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:["zep"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var let while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally int uint long ulong char uchar double float bool boolean stringlikely unlikely",c:[e.CLCM,e.HCM,e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:"<<<['\"]?\\w+['\"]?$",e:"^\\w+;",c:[e.BE]},{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",e.CBCM,i,n]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},i,n]}});hljs.registerLanguage("json",function(e){var t={literal:"true false null"},i=[e.QSM,e.CNM],l={cN:"value",e:",",eW:!0,eE:!0,c:i,k:t},c={b:"{",e:"}",c:[{cN:"attribute",b:'\\s*"',e:'"\\s*:\\s*',eB:!0,eE:!0,c:[e.BE],i:"\\n",starts:l}],i:"\\S"},n={b:"\\[",e:"\\]",c:[e.inherit(l,{cN:null})],i:"\\S"};return i.splice(i.length,0,c,n),{c:i,k:t,i:"\\S"}});hljs.registerLanguage("q",function(e){var s={keyword:"do while select delete by update from",constant:"0b 1b",built_in:"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum",typename:"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid"};return{aliases:["k","kdb"],k:s,l:/\b(`?)[A-Za-z0-9_]+\b/,c:[e.CLCM,e.QSM,e.CNM]}});hljs.registerLanguage("processing",function(e){return{k:{keyword:"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private",constant:"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI",variable:"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width",title:"setup draw",built_in:"size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM]}});hljs.registerLanguage("d",function(e){var r={keyword:"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__",built_in:"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring",literal:"false null true"},t="(0|[1-9][\\d_]*)",a="(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)",i="0[bB][01_]+",n="([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)",c="0[xX]"+n,_="([eE][+-]?"+a+")",d="("+a+"(\\.\\d*|"+_+")|\\d+\\."+a+a+"|\\."+t+_+"?)",o="(0[xX]("+n+"\\."+n+"|\\.?"+n+")[pP][+-]?"+a+")",s="("+t+"|"+i+"|"+c+")",l="("+o+"|"+d+")",u="\\\\(['\"\\?\\\\abfnrtv]|u[\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\dA-Fa-f]{2}|U[\\dA-Fa-f]{8})|&[a-zA-Z\\d]{2,};",b={cN:"number",b:"\\b"+s+"(L|u|U|Lu|LU|uL|UL)?",r:0},f={cN:"number",b:"\\b("+l+"([fF]|L|i|[fF]i|Li)?|"+s+"(i|[fF]i|Li))",r:0},g={cN:"string",b:"'("+u+"|.)",e:"'",i:"."},h={b:u,r:0},p={cN:"string",b:'"',c:[h],e:'"[cwd]?'},w={cN:"string",b:'[rq]"',e:'"[cwd]?',r:5},N={cN:"string",b:"`",e:"`[cwd]?"},A={cN:"string",b:'x"[\\da-fA-F\\s\\n\\r]*"[cwd]?',r:10},F={cN:"string",b:'q"\\{',e:'\\}"'},m={cN:"shebang",b:"^#!",e:"$",r:5},y={cN:"preprocessor",b:"#(line)",e:"$",r:5},L={cN:"keyword",b:"@[a-zA-Z_][a-zA-Z_\\d]*"},v=e.C("\\/\\+","\\+\\/",{c:["self"],r:10});return{l:e.UIR,k:r,c:[e.CLCM,e.CBCM,v,A,p,w,N,F,f,b,g,m,y,L]}});hljs.registerLanguage("asciidoc",function(e){return{aliases:["adoc"],c:[e.C("^/{4,}\\n","\\n/{4,}$",{r:10}),e.C("^//","$",{r:0}),{cN:"title",b:"^\\.\\w.*$"},{b:"^[=\\*]{4,}\\n",e:"\\n^[=\\*]{4,}$",r:10},{cN:"header",b:"^(={1,5}) .+?( \\1)?$",r:10},{cN:"header",b:"^[^\\[\\]\\n]+?\\n[=\\-~\\^\\+]{2,}$",r:10},{cN:"attribute",b:"^:.+?:",e:"\\s",eE:!0,r:10},{cN:"attribute",b:"^\\[.+?\\]$",r:0},{cN:"blockquote",b:"^_{4,}\\n",e:"\\n_{4,}$",r:10},{cN:"code",b:"^[\\-\\.]{4,}\\n",e:"\\n[\\-\\.]{4,}$",r:10},{b:"^\\+{4,}\\n",e:"\\n\\+{4,}$",c:[{b:"<",e:">",sL:"xml",r:0}],r:10},{cN:"bullet",b:"^(\\*+|\\-+|\\.+|[^\\n]+?::)\\s+"},{cN:"label",b:"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\s+",r:10},{cN:"strong",b:"\\B\\*(?![\\*\\s])",e:"(\\n{2}|\\*)",c:[{b:"\\\\*\\w",r:0}]},{cN:"emphasis",b:"\\B'(?!['\\s])",e:"(\\n{2}|')",c:[{b:"\\\\'\\w",r:0}],r:0},{cN:"emphasis",b:"_(?![_\\s])",e:"(\\n{2}|_)",r:0},{cN:"smartquote",v:[{b:"``.+?''"},{b:"`.+?'"}]},{cN:"code",b:"(`.+?`|\\+.+?\\+)",r:0},{cN:"code",b:"^[ \\t]",e:"$",r:0},{cN:"horizontal_rule",b:"^'{3,}[ \\t]*$",r:10},{b:"(link:)?(http|https|ftp|file|irc|image:?):\\S+\\[.*?\\]",rB:!0,c:[{b:"(link|image:?):",r:0},{cN:"link_url",b:"\\w",e:"[^\\[]+",r:0},{cN:"link_label",b:"\\[",e:"\\]",eB:!0,eE:!0,r:0}],r:10}]}});hljs.registerLanguage("rsl",function(e){return{k:{keyword:"float color point normal vector matrix while for if do return else break extern continue",built_in:"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp"},i:"</",c:[e.CLCM,e.CBCM,e.QSM,e.ASM,e.CNM,{cN:"preprocessor",b:"#",e:"$"},{cN:"shader",bK:"surface displacement light volume imager",e:"\\("},{cN:"shading",bK:"illuminate illuminance gather",e:"\\("}]}});hljs.registerLanguage("fsharp",function(e){var t={b:"<",e:">",c:[e.inherit(e.TM,{b:/'[a-zA-Z0-9_]+/})]};return{aliases:["fs"],k:"abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield",i:/\/\*/,c:[{cN:"keyword",b:/\b(yield|return|let|do)!/},{cN:"string",b:'@"',e:'"',c:[{b:'""'}]},{cN:"string",b:'"""',e:'"""'},e.C("\\(\\*","\\*\\)"),{cN:"class",bK:"type",e:"\\(|=|$",eE:!0,c:[e.UTM,t]},{cN:"annotation",b:"\\[<",e:">\\]",r:10},{cN:"attribute",b:"\\B('[A-Za-z])\\b",c:[e.BE]},e.CLCM,e.inherit(e.QSM,{i:null}),e.CNM]}});
\ No newline at end of file diff --git a/public/js/semantic-2.1.3.min.js b/public/js/semantic-2.1.3.min.js deleted file mode 100755 index b1ac025d..00000000 --- a/public/js/semantic-2.1.3.min.js +++ /dev/null @@ -1,19 +0,0 @@ - /* - * # Semantic UI - 2.1.3 - * https://github.com/Semantic-Org/Semantic-UI - * http://www.semantic-ui.com/ - * - * Copyright 2014 Contributors - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ -!function(e,t,n,i){e.site=e.fn.site=function(o){var a,r,s=(new Date).getTime(),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1),m=e.isPlainObject(o)?e.extend(!0,{},e.site.settings,o):e.extend({},e.site.settings),f=m.namespace,g=m.error,p="module-"+f,v=e(n),h=v,b=this,y=h.data(p);return a={initialize:function(){a.instantiate()},instantiate:function(){a.verbose("Storing instance of site",a),y=a,h.data(p,a)},normalize:function(){a.fix.console(),a.fix.requestAnimationFrame()},fix:{console:function(){a.debug("Normalizing window.console"),(console===i||console.log===i)&&(a.verbose("Console not available, normalizing events"),a.disable.console()),("undefined"==typeof console.group||"undefined"==typeof console.groupEnd||"undefined"==typeof console.groupCollapsed)&&(a.verbose("Console group not available, normalizing events"),t.console.group=function(){},t.console.groupEnd=function(){},t.console.groupCollapsed=function(){}),"undefined"==typeof console.markTimeline&&(a.verbose("Mark timeline not available, normalizing events"),t.console.markTimeline=function(){})},consoleClear:function(){a.debug("Disabling programmatic console clearing"),t.console.clear=function(){}},requestAnimationFrame:function(){a.debug("Normalizing requestAnimationFrame"),t.requestAnimationFrame===i&&(a.debug("RequestAnimationFrame not available, normailizing event"),t.requestAnimationFrame=t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)})}},moduleExists:function(t){return e.fn[t]!==i&&e.fn[t].settings!==i},enabled:{modules:function(t){var n=[];return t=t||m.modules,e.each(t,function(e,t){a.moduleExists(t)&&n.push(t)}),n}},disabled:{modules:function(t){var n=[];return t=t||m.modules,e.each(t,function(e,t){a.moduleExists(t)||n.push(t)}),n}},change:{setting:function(t,n,o,r){o="string"==typeof o?"all"===o?m.modules:[o]:o||m.modules,r=r!==i?r:!0,e.each(o,function(i,o){var s,c=a.moduleExists(o)?e.fn[o].settings.namespace||!1:!0;a.moduleExists(o)&&(a.verbose("Changing default setting",t,n,o),e.fn[o].settings[t]=n,r&&c&&(s=e(":data(module-"+c+")"),s.length>0&&(a.verbose("Modifying existing settings",s),s[o]("setting",t,n))))})},settings:function(t,n,o){n="string"==typeof n?[n]:n||m.modules,o=o!==i?o:!0,e.each(n,function(n,i){var r;a.moduleExists(i)&&(a.verbose("Changing default setting",t,i),e.extend(!0,e.fn[i].settings,t),o&&f&&(r=e(":data(module-"+f+")"),r.length>0&&(a.verbose("Modifying existing settings",r),r[i]("setting",t))))})}},enable:{console:function(){a.console(!0)},debug:function(e,t){e=e||m.modules,a.debug("Enabling debug for modules",e),a.change.setting("debug",!0,e,t)},verbose:function(e,t){e=e||m.modules,a.debug("Enabling verbose debug for modules",e),a.change.setting("verbose",!0,e,t)}},disable:{console:function(){a.console(!1)},debug:function(e,t){e=e||m.modules,a.debug("Disabling debug for modules",e),a.change.setting("debug",!1,e,t)},verbose:function(e,t){e=e||m.modules,a.debug("Disabling verbose debug for modules",e),a.change.setting("verbose",!1,e,t)}},console:function(e){if(e){if(y.cache.console===i)return void a.error(g.console);a.debug("Restoring console function"),t.console=y.cache.console}else a.debug("Disabling console function"),y.cache.console=t.console,t.console={clear:function(){},error:function(){},group:function(){},groupCollapsed:function(){},groupEnd:function(){},info:function(){},log:function(){},markTimeline:function(){},warn:function(){}}},destroy:function(){a.verbose("Destroying previous site for",h),h.removeData(p)},cache:{},setting:function(t,n){if(e.isPlainObject(t))e.extend(!0,m,t);else{if(n===i)return m[t];m[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,a,t);else{if(n===i)return a[t];a[t]=n}},debug:function(){m.debug&&(m.performance?a.performance.log(arguments):(a.debug=Function.prototype.bind.call(console.info,console,m.name+":"),a.debug.apply(console,arguments)))},verbose:function(){m.verbose&&m.debug&&(m.performance?a.performance.log(arguments):(a.verbose=Function.prototype.bind.call(console.info,console,m.name+":"),a.verbose.apply(console,arguments)))},error:function(){a.error=Function.prototype.bind.call(console.error,console,m.name+":"),a.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;m.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Element:b,Name:e[0],Arguments:[].slice.call(e,1)||"","Execution Time":n})),clearTimeout(a.performance.timer),a.performance.timer=setTimeout(a.performance.display,500)},display:function(){var t=m.name+":",n=0;s=!1,clearTimeout(a.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,o){var s,c,l,u=y;return n=n||d,o=b||o,"string"==typeof t&&u!==i&&(t=t.split(/[\. ]/),s=t.length-1,e.each(t,function(n,o){var r=n!=s?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(u[r])&&n!=s)u=u[r];else{if(u[r]!==i)return c=u[r],!1;if(!e.isPlainObject(u[o])||n==s)return u[o]!==i?(c=u[o],!1):(a.error(g.method,t),!1);u=u[o]}})),e.isFunction(c)?l=c.apply(o,n):c!==i&&(l=c),e.isArray(r)?r.push(l):r!==i?r=[r,l]:l!==i&&(r=l),c}},u?(y===i&&a.initialize(),a.invoke(l)):(y!==i&&a.destroy(),a.initialize()),r!==i?r:this},e.site.settings={name:"Site",namespace:"site",error:{console:"Console cannot be restored, most likely it was overwritten outside of module",method:"The method you called is not defined."},debug:!1,verbose:!1,performance:!0,modules:["accordion","api","checkbox","dimmer","dropdown","embed","form","modal","nag","popup","rating","shape","sidebar","state","sticky","tab","transition","visit","visibility"],siteNamespace:"site",namespaceStub:{cache:{},config:{},sections:{},section:{},utilities:{}}},e.extend(e.expr[":"],{data:e.expr.createPseudo?e.expr.createPseudo(function(t){return function(n){return!!e.data(n,t)}}):function(t,n,i){return!!e.data(t,i[3])}})}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.form=function(t){var o,a=e(this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments[0],u=arguments[1],d="string"==typeof l,m=[].slice.call(arguments,1);return a.each(function(){var f,g,p,v,h,b,y,x,C,w,k,S,T,A,R,P,E,F,D=e(this),O=this,q=[],j=!1;F={initialize:function(){F.get.settings(),d?(E===i&&F.instantiate(),F.invoke(l)):(F.verbose("Initializing form validation",D,x),F.bindEvents(),F.set.defaults(),F.instantiate())},instantiate:function(){F.verbose("Storing instance of module",F),E=F,D.data(R,F)},destroy:function(){F.verbose("Destroying previous module",E),F.removeEvents(),D.removeData(R)},refresh:function(){F.verbose("Refreshing selector cache"),f=D.find(k.field),g=D.find(k.group),p=D.find(k.message),v=D.find(k.prompt),h=D.find(k.submit),b=D.find(k.clear),y=D.find(k.reset)},submit:function(){F.verbose("Submitting form",D),D.submit()},attachEvents:function(t,n){n=n||"submit",e(t).on("click"+P,function(e){F[n](),e.preventDefault()})},bindEvents:function(){F.verbose("Attaching form events"),D.on("submit"+P,F.validate.form).on("blur"+P,k.field,F.event.field.blur).on("click"+P,k.submit,F.submit).on("click"+P,k.reset,F.reset).on("click"+P,k.clear,F.clear),x.keyboardShortcuts&&D.on("keydown"+P,k.field,F.event.field.keydown),f.each(function(){var t=e(this),n=t.prop("type"),i=F.get.changeEvent(n,t);e(this).on(i+P,F.event.field.change)})},clear:function(){f.each(function(){var t=e(this),n=t.parent(),i=t.closest(g),o=i.find(k.prompt),a=t.data(w.defaultValue)||"",r=n.is(k.uiCheckbox),s=n.is(k.uiDropdown),c=i.hasClass(S.error);c&&(F.verbose("Resetting error on field",i),i.removeClass(S.error),o.remove()),s?(F.verbose("Resetting dropdown value",n,a),n.dropdown("clear")):r?t.prop("checked",!1):(F.verbose("Resetting field value",t,a),t.val(""))})},reset:function(){f.each(function(){var t=e(this),n=t.parent(),o=t.closest(g),a=o.find(k.prompt),r=t.data(w.defaultValue),s=n.is(k.uiCheckbox),c=n.is(k.uiDropdown),l=o.hasClass(S.error);r!==i&&(l&&(F.verbose("Resetting error on field",o),o.removeClass(S.error),a.remove()),c?(F.verbose("Resetting dropdown value",n,r),n.dropdown("restore defaults")):s?(F.verbose("Resetting checkbox value",n,r),t.prop("checked",r)):(F.verbose("Resetting field value",t,r),t.val(r)))})},is:{valid:function(){var t=!0;return F.verbose("Checking if form is valid"),e.each(C,function(e,n){F.validate.field(n)||(t=!1)}),t}},removeEvents:function(){D.off(P),f.off(P),h.off(P),f.off(P)},event:{field:{keydown:function(t){var n=e(this),i=t.which,o={enter:13,escape:27};i==o.escape&&(F.verbose("Escape key pressed blurring field"),n.blur()),!t.ctrlKey&&i==o.enter&&n.is(k.input)&&n.not(k.checkbox).length>0&&(j||(n.one("keyup"+P,F.event.field.keyup),F.submit(),F.debug("Enter pressed on input submitting form")),j=!0)},keyup:function(){j=!1},blur:function(){var t=e(this),n=t.closest(g),i=F.get.validation(t);n.hasClass(S.error)?(F.debug("Revalidating field",t,i),F.validate.field(i)):("blur"==x.on||"change"==x.on)&&F.validate.field(i)},change:function(){var t=e(this),n=t.closest(g);("change"==x.on||n.hasClass(S.error)&&x.revalidate)&&(clearTimeout(F.timer),F.timer=setTimeout(function(){F.debug("Revalidating field",t,F.get.validation(t)),F.validate.field(F.get.validation(t))},x.delay))}}},get:{changeEvent:function(e,t){return"checkbox"==e||"radio"==e||"hidden"==e||t.is("select")?"change":F.get.inputEvent()},inputEvent:function(){return n.createElement("input").oninput!==i?"input":n.createElement("input").onpropertychange!==i?"propertychange":"keyup"},settings:function(){if(e.isPlainObject(t)){var n=Object.keys(t),o=n.length>0?t[n[0]].identifier!==i&&t[n[0]].rules!==i:!1;o?(x=e.extend(!0,{},e.fn.form.settings,u),C=e.extend({},e.fn.form.settings.defaults,t),F.error(x.error.oldSyntax,O),F.verbose("Extending settings from legacy parameters",C,x)):(x=e.extend(!0,{},e.fn.form.settings,t),C=e.extend({},e.fn.form.settings.defaults,x.fields),F.verbose("Extending settings",C,x))}else x=e.fn.form.settings,C=e.fn.form.settings.defaults,F.verbose("Using default form validation",C,x);A=x.namespace,w=x.metadata,k=x.selector,S=x.className,T=x.error,R="module-"+A,P="."+A,E=D.data(R),F.refresh()},field:function(t){return F.verbose("Finding field with identifier",t),f.filter("#"+t).length>0?f.filter("#"+t):f.filter('[name="'+t+'"]').length>0?f.filter('[name="'+t+'"]'):f.filter('[name="'+t+'[]"]').length>0?f.filter('[name="'+t+'[]"]'):f.filter("[data-"+w.validate+'="'+t+'"]').length>0?f.filter("[data-"+w.validate+'="'+t+'"]'):e("<input/>")},fields:function(t){var n=e();return e.each(t,function(e,t){n=n.add(F.get.field(t))}),n},validation:function(t){var n;return C?(e.each(C,function(e,i){F.get.field(i.identifier)[0]==t[0]&&(n=i)}),n||!1):!1},value:function(e){var t,n=[];return n.push(e),t=F.get.values.call(O,n),t[e]},values:function(t){var n=e.isArray(t)?F.get.fields(t):f,i={};return n.each(function(t,n){var o=e(n),a=(o.prop("type"),o.prop("name")),r=o.val(),s=o.is(k.checkbox),c=o.is(k.radio),l=-1!==a.indexOf("[]"),u=s?o.is(":checked"):!1;a&&(l?(a=a.replace("[]",""),i[a]||(i[a]=[]),i[a].push(s?u?!0:!1:r)):c?u&&(i[a]=r):i[a]=s?u?!0:!1:r)}),i}},has:{field:function(e){return F.verbose("Checking for existence of a field with identifier",e),"string"!=typeof e&&F.error(T.identifier,e),f.filter("#"+e).length>0?!0:f.filter('[name="'+e+'"]').length>0?!0:f.filter("[data-"+w.validate+'="'+e+'"]').length>0?!0:!1}},add:{prompt:function(t,n){var o=F.get.field(t),a=o.closest(g),r=a.children(k.prompt),s=0!==r.length;n="string"==typeof n?[n]:n,F.verbose("Adding field error state",t),a.addClass(S.error),x.inline&&(s||(r=x.templates.prompt(n),r.appendTo(a)),r.html(n[0]),s?F.verbose("Inline errors are disabled, no inline error added",t):x.transition&&e.fn.transition!==i&&D.transition("is supported")?(F.verbose("Displaying error with css transition",x.transition),r.transition(x.transition+" in",x.duration)):(F.verbose("Displaying error with fallback javascript animation"),r.fadeIn(x.duration)))},errors:function(e){F.debug("Adding form error messages",e),p.html(x.templates.error(e))}},remove:{prompt:function(t){var n=F.get.field(t.identifier),o=n.closest(g),a=o.children(k.prompt);o.removeClass(S.error),x.inline&&a.is(":visible")&&(F.verbose("Removing prompt for field",t),x.transition&&e.fn.transition!==i&&D.transition("is supported")?a.transition(x.transition+" out",x.duration,function(){a.remove()}):a.fadeOut(x.duration,function(){a.remove()}))}},set:{success:function(){D.removeClass(S.error).addClass(S.success)},defaults:function(){f.each(function(){var t=e(this),n=t.filter(k.checkbox).length>0,i=n?t.is(":checked"):t.val();t.data(w.defaultValue,i)})},error:function(){D.removeClass(S.success).addClass(S.error)},value:function(e,t){var n={};return n[e]=t,F.set.values.call(O,n)},values:function(t){e.isEmptyObject(t)||e.each(t,function(t,n){var i,o=F.get.field(t),a=o.parent(),r=e.isArray(n),s=a.is(k.uiCheckbox),c=a.is(k.uiDropdown),l=o.is(k.radio)&&s,u=o.length>0;u&&(r&&s?(F.verbose("Selecting multiple",n,o),a.checkbox("uncheck"),e.each(n,function(e,t){i=o.filter('[value="'+t+'"]'),a=i.parent(),i.length>0&&a.checkbox("check")})):l?(F.verbose("Selecting radio value",n,o),o.filter('[value="'+n+'"]').parent(k.uiCheckbox).checkbox("check")):s?(F.verbose("Setting checkbox value",n,a),a.checkbox(n===!0?"check":"uncheck")):c?(F.verbose("Setting dropdown value",n,a),a.dropdown("set selected",n)):(F.verbose("Setting field value",n,o),o.val(n)))})}},validate:{form:function(e){var t=F.get.values();return j?!1:(q=[],F.is.valid()?(F.debug("Form has no validation errors, submitting"),F.set.success(),x.onSuccess.call(O,e,t)):(F.debug("Form has errors"),F.set.error(),x.inline||F.add.errors(q),D.data("moduleApi")!==i&&e.stopImmediatePropagation(),x.onFailure.call(O,q,t)))},field:function(t){var n=F.get.field(t.identifier),o=!0,a=[];return n.prop("disabled")?(F.debug("Field is disabled. Skipping",t.identifier),o=!0):t.optional&&""===e.trim(n.val())?(F.debug("Field is optional and empty. Skipping",t.identifier),o=!0):t.rules!==i&&e.each(t.rules,function(e,n){F.has.field(t.identifier)&&!F.validate.rule(t,n)&&(F.debug("Field is invalid",t.identifier,n.type),a.push(n.prompt),o=!1)}),o?(F.remove.prompt(t,a),x.onValid.call(n),!0):(q=q.concat(a),F.add.prompt(t.identifier,a),x.onInvalid.call(n,a),!1)},rule:function(t,n){var o,a,r,s=F.get.field(t.identifier),c=n.type,l=s.val(),u=c.match(x.regExp.bracket),d=!0;if(l=l===i||""===l||null===l?"":e.trim(l+""),u){if(a=""+u[1],r=c.replace(u[0],""),o=x.rules[r],!e.isFunction(o))return void F.error(T.noRule,r);d=o.call(s,l,a)}else{if(o=x.rules[c],!e.isFunction(o))return void F.error(T.noRule,c);d=o.call(s,l)}return d}},setting:function(t,n){if(e.isPlainObject(t))e.extend(!0,x,t);else{if(n===i)return x[t];x[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,F,t);else{if(n===i)return F[t];F[t]=n}},debug:function(){x.debug&&(x.performance?F.performance.log(arguments):(F.debug=Function.prototype.bind.call(console.info,console,x.name+":"),F.debug.apply(console,arguments)))},verbose:function(){x.verbose&&x.debug&&(x.performance?F.performance.log(arguments):(F.verbose=Function.prototype.bind.call(console.info,console,x.name+":"),F.verbose.apply(console,arguments)))},error:function(){F.error=Function.prototype.bind.call(console.error,console,x.name+":"),F.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;x.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:O,"Execution Time":n})),clearTimeout(F.performance.timer),F.performance.timer=setTimeout(F.performance.display,500)},display:function(){var t=x.name+":",n=0;s=!1,clearTimeout(F.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),a.length>1&&(t+=" ("+a.length+")"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,a){var r,s,c,l=E;return n=n||m,a=O||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},F.initialize()}),o!==i?o:this},e.fn.form.settings={name:"Form",namespace:"form",debug:!1,verbose:!1,performance:!0,fields:!1,keyboardShortcuts:!0,on:"submit",inline:!1,delay:200,revalidate:!0,transition:"scale",duration:200,onValid:function(){},onInvalid:function(){},onSuccess:function(){return!0},onFailure:function(){return!1},metadata:{defaultValue:"default",validate:"validate"},regExp:{bracket:/\[(.*)\]/i,decimal:/^\-?\d*(\.\d+)?$/,email:"[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?",escape:/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,flags:/^\/(.*)\/(.*)?/,integer:/^\-?\d+$/,number:/^\-?\d*(\.\d+)?$/,url:/(https?:\/\/(?:www\.|(?!www))[^\s\.]+\.[^\s]{2,}|www\.[^\s]+\.[^\s]{2,})/i},selector:{checkbox:'input[type="checkbox"], input[type="radio"]',clear:".clear",field:"input, textarea, select",group:".field",input:"input",message:".error.message",prompt:".prompt.label",radio:'input[type="radio"]',reset:'.reset:not([type="reset"])',submit:'.submit:not([type="submit"])',uiCheckbox:".ui.checkbox",uiDropdown:".ui.dropdown"},className:{error:"error",label:"ui prompt label",pressed:"down",success:"success"},error:{identifier:"You must specify a string identifier for each field",method:"The method you called is not defined.",noRule:"There is no rule matching the one you specified",oldSyntax:"Starting in 2.0 forms now only take a single settings object. Validation settings converted to new syntax automatically."},templates:{error:function(t){var n='<ul class="list">';return e.each(t,function(e,t){n+="<li>"+t+"</li>"}),n+="</ul>",e(n)},prompt:function(t){return e("<div/>").addClass("ui basic red pointing prompt label").html(t[0])}},rules:{empty:function(t){return!(t===i||""===t||e.isArray(t)&&0===t.length)},checked:function(){return e(this).filter(":checked").length>0},email:function(t){var n=new RegExp(e.fn.form.settings.regExp.email,"i");return n.test(t)},url:function(t){return e.fn.form.settings.regExp.url.test(t)},regExp:function(t,n){var i,o=n.match(e.fn.form.settings.regExp.flags);return o&&(n=o.length>=2?o[1]:n,i=o.length>=3?o[2]:""),t.match(new RegExp(n,i))},integer:function(t,n){var o,a,r,s=e.fn.form.settings.regExp.integer;return n===i||""===n||".."===n||(-1==n.indexOf("..")?s.test(n)&&(o=a=n-0):(r=n.split("..",2),s.test(r[0])&&(o=r[0]-0),s.test(r[1])&&(a=r[1]-0))),s.test(t)&&(o===i||t>=o)&&(a===i||a>=t)},decimal:function(t){return e.fn.form.settings.regExp.decimal.test(t)},number:function(t){return e.fn.form.settings.regExp.number.test(t)},is:function(e,t){return t="string"==typeof t?t.toLowerCase():t,e="string"==typeof e?e.toLowerCase():e,e==t},isExactly:function(e,t){return e==t},not:function(e,t){return e="string"==typeof e?e.toLowerCase():e,t="string"==typeof t?t.toLowerCase():t,e!=t},notExactly:function(e,t){return e!=t},contains:function(t,n){return n=n.replace(e.fn.form.settings.regExp.escape,"\\$&"),-1!==t.search(new RegExp(n,"i"))},containsExactly:function(t,n){return n=n.replace(e.fn.form.settings.regExp.escape,"\\$&"),-1!==t.search(new RegExp(n))},doesntContain:function(t,n){return n=n.replace(e.fn.form.settings.regExp.escape,"\\$&"),-1===t.search(new RegExp(n,"i"))},doesntContainExactly:function(t,n){return n=n.replace(e.fn.form.settings.regExp.escape,"\\$&"),-1===t.search(new RegExp(n))},minLength:function(e,t){return e!==i?e.length>=t:!1},length:function(e,t){return e!==i?e.length>=t:!1},exactLength:function(e,t){return e!==i?e.length==t:!1},maxLength:function(e,t){return e!==i?e.length<=t:!1},match:function(t,n){{var o;e(this)}return e('[data-validate="'+n+'"]').length>0?o=e('[data-validate="'+n+'"]').val():e("#"+n).length>0?o=e("#"+n).val():e('[name="'+n+'"]').length>0?o=e('[name="'+n+'"]').val():e('[name="'+n+'[]"]').length>0&&(o=e('[name="'+n+'[]"]')),o!==i?t.toString()==o.toString():!1},creditCard:function(t,n){var i,o,a={visa:{pattern:/^4/,length:[16]},amex:{pattern:/^3[47]/,length:[15]},mastercard:{pattern:/^5[1-5]/,length:[16]},discover:{pattern:/^(6011|622(12[6-9]|1[3-9][0-9]|[2-8][0-9]{2}|9[0-1][0-9]|92[0-5]|64[4-9])|65)/,length:[16]},unionPay:{pattern:/^(62|88)/,length:[16,17,18,19]},jcb:{pattern:/^35(2[89]|[3-8][0-9])/,length:[16]},maestro:{pattern:/^(5018|5020|5038|6304|6759|676[1-3])/,length:[12,13,14,15,16,17,18,19]},dinersClub:{pattern:/^(30[0-5]|^36)/,length:[14]},laser:{pattern:/^(6304|670[69]|6771)/,length:[16,17,18,19]},visaElectron:{pattern:/^(4026|417500|4508|4844|491(3|7))/,length:[16]}},r={},s=!1,c="string"==typeof n?n.split(","):!1;if("string"==typeof t&&0!==t.length){if(c&&(e.each(c,function(n,i){o=a[i],o&&(r={length:-1!==e.inArray(t.length,o.length),pattern:-1!==t.search(o.pattern)},r.length&&r.pattern&&(s=!0))}),!s))return!1;if(i={number:-1!==e.inArray(t.length,a.unionPay.length),pattern:-1!==t.search(a.unionPay.pattern)},i.number&&i.pattern)return!0;for(var l=t.length,u=0,d=[[0,1,2,3,4,5,6,7,8,9],[0,2,4,6,8,1,3,5,7,9]],m=0;l--;)m+=d[u][parseInt(t.charAt(l),10)],u^=1;return m%10===0&&m>0}},different:function(t,n){{var o;e(this)}return e('[data-validate="'+n+'"]').length>0?o=e('[data-validate="'+n+'"]').val():e("#"+n).length>0?o=e("#"+n).val():e('[name="'+n+'"]').length>0?o=e('[name="'+n+'"]').val():e('[name="'+n+'[]"]').length>0&&(o=e('[name="'+n+'[]"]')),o!==i?t.toString()!==o.toString():!1},exactCount:function(e,t){return 0==t?""===e:1==t?""!==e&&-1===e.search(","):e.split(",").length==t},minCount:function(e,t){return 0==t?!0:1==t?""!==e:e.split(",").length>=t},maxCount:function(e,t){return 0==t?!1:1==t?-1===e.search(","):e.split(",").length<=t}}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.accordion=function(n){{var o,a=e(this),r=(new Date).getTime(),s=[],c=arguments[0],l="string"==typeof c,u=[].slice.call(arguments,1);t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)}}return a.each(function(){var d,m,f=e.isPlainObject(n)?e.extend(!0,{},e.fn.accordion.settings,n):e.extend({},e.fn.accordion.settings),g=f.className,p=f.namespace,v=f.selector,h=f.error,b="."+p,y="module-"+p,x=a.selector||"",C=e(this),w=C.find(v.title),k=C.find(v.content),S=this,T=C.data(y);m={initialize:function(){m.debug("Initializing",C),m.bind.events(),f.observeChanges&&m.observeChanges(),m.instantiate()},instantiate:function(){T=m,C.data(y,m)},destroy:function(){m.debug("Destroying previous instance",C),C.off(b).removeData(y)},refresh:function(){w=C.find(v.title),k=C.find(v.content)},observeChanges:function(){"MutationObserver"in t&&(d=new MutationObserver(function(e){m.debug("DOM tree modified, updating selector cache"),m.refresh()}),d.observe(S,{childList:!0,subtree:!0}),m.debug("Setting up mutation observer",d))},bind:{events:function(){m.debug("Binding delegated events"),C.on(f.on+b,v.trigger,m.event.click)}},event:{click:function(){m.toggle.call(this)}},toggle:function(t){var n=t!==i?"number"==typeof t?w.eq(t):e(t).closest(v.title):e(this).closest(v.title),o=n.next(k),a=o.hasClass(g.animating),r=o.hasClass(g.active),s=r&&!a,c=!r&&a;m.debug("Toggling visibility of content",n),s||c?f.collapsible?m.close.call(n):m.debug("Cannot close accordion content collapsing is disabled"):m.open.call(n)},open:function(t){var n=t!==i?"number"==typeof t?w.eq(t):e(t).closest(v.title):e(this).closest(v.title),o=n.next(k),a=o.hasClass(g.animating),r=o.hasClass(g.active),s=r||a;return s?void m.debug("Accordion already open, skipping",o):(m.debug("Opening accordion content",n),f.onOpening.call(o),f.exclusive&&m.closeOthers.call(n),n.addClass(g.active),o.stop(!0,!0).addClass(g.animating),f.animateChildren&&(e.fn.transition!==i&&C.transition("is supported")?o.children().transition({animation:"fade in",queue:!1,useFailSafe:!0,debug:f.debug,verbose:f.verbose,duration:f.duration}):o.children().stop(!0,!0).animate({opacity:1},f.duration,m.resetOpacity)),void o.slideDown(f.duration,f.easing,function(){o.removeClass(g.animating).addClass(g.active),m.reset.display.call(this),f.onOpen.call(this),f.onChange.call(this)}))},close:function(t){var n=t!==i?"number"==typeof t?w.eq(t):e(t).closest(v.title):e(this).closest(v.title),o=n.next(k),a=o.hasClass(g.animating),r=o.hasClass(g.active),s=!r&&a,c=r&&a;!r&&!s||c||(m.debug("Closing accordion content",o),f.onClosing.call(o),n.removeClass(g.active),o.stop(!0,!0).addClass(g.animating),f.animateChildren&&(e.fn.transition!==i&&C.transition("is supported")?o.children().transition({animation:"fade out",queue:!1,useFailSafe:!0,debug:f.debug,verbose:f.verbose,duration:f.duration}):o.children().stop(!0,!0).animate({opacity:0},f.duration,m.resetOpacity)),o.slideUp(f.duration,f.easing,function(){o.removeClass(g.animating).removeClass(g.active),m.reset.display.call(this),f.onClose.call(this),f.onChange.call(this)}))},closeOthers:function(t){var n,o,a,r=t!==i?w.eq(t):e(this).closest(v.title),s=r.parents(v.content).prev(v.title),c=r.closest(v.accordion),l=v.title+"."+g.active+":visible",u=v.content+"."+g.active+":visible";f.closeNested?(n=c.find(l).not(s),a=n.next(k)):(n=c.find(l).not(s),o=c.find(u).find(l).not(s),n=n.not(o),a=n.next(k)),n.length>0&&(m.debug("Exclusive enabled, closing other content",n),n.removeClass(g.active),a.removeClass(g.animating).stop(!0,!0),f.animateChildren&&(e.fn.transition!==i&&C.transition("is supported")?a.children().transition({animation:"fade out",useFailSafe:!0,debug:f.debug,verbose:f.verbose,duration:f.duration}):a.children().stop(!0,!0).animate({opacity:0},f.duration,m.resetOpacity)),a.slideUp(f.duration,f.easing,function(){e(this).removeClass(g.active),m.reset.display.call(this)}))},reset:{display:function(){m.verbose("Removing inline display from element",this),e(this).css("display",""),""===e(this).attr("style")&&e(this).attr("style","").removeAttr("style")},opacity:function(){m.verbose("Removing inline opacity from element",this),e(this).css("opacity",""),""===e(this).attr("style")&&e(this).attr("style","").removeAttr("style")}},setting:function(t,n){if(m.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,f,t);else{if(n===i)return f[t];f[t]=n}},internal:function(t,n){return m.debug("Changing internal",t,n),n===i?m[t]:void(e.isPlainObject(t)?e.extend(!0,m,t):m[t]=n)},debug:function(){f.debug&&(f.performance?m.performance.log(arguments):(m.debug=Function.prototype.bind.call(console.info,console,f.name+":"),m.debug.apply(console,arguments)))},verbose:function(){f.verbose&&f.debug&&(f.performance?m.performance.log(arguments):(m.verbose=Function.prototype.bind.call(console.info,console,f.name+":"),m.verbose.apply(console,arguments)))},error:function(){m.error=Function.prototype.bind.call(console.error,console,f.name+":"),m.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;f.performance&&(t=(new Date).getTime(),i=r||t,n=t-i,r=t,s.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:S,"Execution Time":n})),clearTimeout(m.performance.timer),m.performance.timer=setTimeout(m.performance.display,500)},display:function(){var t=f.name+":",n=0;r=!1,clearTimeout(m.performance.timer),e.each(s,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",x&&(t+=" '"+x+"'"),(console.group!==i||console.table!==i)&&s.length>0&&(console.groupCollapsed(t),console.table?console.table(s):e.each(s,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),s=[]}},invoke:function(t,n,a){var r,s,c,l=T;return n=n||u,a=S||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(m.error(h.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},l?(T===i&&m.initialize(),m.invoke(c)):(T!==i&&T.invoke("destroy"),m.initialize())}),o!==i?o:this},e.fn.accordion.settings={name:"Accordion",namespace:"accordion",debug:!1,verbose:!1,performance:!0,on:"click",observeChanges:!0,exclusive:!0,collapsible:!0,closeNested:!1,animateChildren:!0,duration:350,easing:"easeOutQuad",onOpening:function(){},onOpen:function(){},onClosing:function(){},onClose:function(){},onChange:function(){},error:{method:"The method you called is not defined"},className:{active:"active",animating:"animating"},selector:{accordion:".accordion",title:".title",trigger:".title",content:".content"}},e.extend(e.easing,{easeOutQuad:function(e,t,n,i,o){return-i*(t/=o)*(t-2)+n}})}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.checkbox=function(n){var o,a=e(this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1);return a.each(function(){var a,m,f=e.extend(!0,{},e.fn.checkbox.settings,n),g=f.className,p=f.namespace,v=f.selector,h=f.error,b="."+p,y="module-"+p,x=e(this),C=e(this).children(v.label),w=e(this).children(v.input),k=w[0],S=!1,T=!1,A=x.data(y),R=this;m={initialize:function(){m.verbose("Initializing checkbox",f),m.create.label(),m.bind.events(),m.set.tabbable(),m.hide.input(),m.observeChanges(),m.instantiate(),m.setup()},instantiate:function(){m.verbose("Storing instance of module",m),A=m,x.data(y,m)},destroy:function(){m.verbose("Destroying module"),m.unbind.events(),m.show.input(),x.removeData(y)},fix:{reference:function(){x.is(v.input)&&(m.debug("Behavior called on <input> adjusting invoked element"),x=x.closest(v.checkbox),m.refresh())}},setup:function(){m.set.initialLoad(),m.is.indeterminate()?(m.debug("Initial value is indeterminate"),m.indeterminate()):m.is.checked()?(m.debug("Initial value is checked"),m.check()):(m.debug("Initial value is unchecked"),m.uncheck()),m.remove.initialLoad()},refresh:function(){C=x.children(v.label),w=x.children(v.input),k=w[0]},hide:{input:function(){m.verbose("Modfying <input> z-index to be unselectable"),w.addClass(g.hidden)}},show:{input:function(){m.verbose("Modfying <input> z-index to be selectable"),w.removeClass(g.hidden)}},observeChanges:function(){"MutationObserver"in t&&(a=new MutationObserver(function(e){m.debug("DOM tree modified, updating selector cache"),m.refresh()}),a.observe(R,{childList:!0,subtree:!0}),m.debug("Setting up mutation observer",a))},attachEvents:function(t,n){var i=e(t);n=e.isFunction(m[n])?m[n]:m.toggle,i.length>0?(m.debug("Attaching checkbox events to element",t,n),i.on("click"+b,n)):m.error(h.notFound)},event:{click:function(t){var n=e(t.target);return n.is(v.input)?void m.verbose("Using default check action on initialized checkbox"):n.is(v.link)?void m.debug("Clicking link inside checkbox, skipping toggle"):(m.toggle(),w.focus(),void t.preventDefault())},keydown:function(e){var t=e.which,n={enter:13,space:32,escape:27};t==n.escape?(m.verbose("Escape key pressed blurring field"),w.blur(),T=!0):e.ctrlKey||t!=n.space&&t!=n.enter?T=!1:(m.verbose("Enter/space key pressed, toggling checkbox"),m.toggle(),T=!0)},keyup:function(e){T&&e.preventDefault()}},check:function(){m.should.allowCheck()&&(m.debug("Checking checkbox",w),m.set.checked(),m.should.ignoreCallbacks()||(f.onChecked.call(k),f.onChange.call(k)))},uncheck:function(){m.should.allowUncheck()&&(m.debug("Unchecking checkbox"),m.set.unchecked(),m.should.ignoreCallbacks()||(f.onUnchecked.call(k),f.onChange.call(k)))},indeterminate:function(){return m.should.allowIndeterminate()?void m.debug("Checkbox is already indeterminate"):(m.debug("Making checkbox indeterminate"), -m.set.indeterminate(),void(m.should.ignoreCallbacks()||(f.onIndeterminate.call(k),f.onChange.call(k))))},determinate:function(){return m.should.allowDeterminate()?void m.debug("Checkbox is already determinate"):(m.debug("Making checkbox determinate"),m.set.determinate(),void(m.should.ignoreCallbacks()||(f.onDeterminate.call(k),f.onChange.call(k))))},enable:function(){return m.is.enabled()?void m.debug("Checkbox is already enabled"):(m.debug("Enabling checkbox"),m.set.enabled(),void f.onEnable.call(k))},disable:function(){return m.is.disabled()?void m.debug("Checkbox is already disabled"):(m.debug("Disabling checkbox"),m.set.disabled(),void f.onDisable.call(k))},get:{radios:function(){var t=m.get.name();return e('input[name="'+t+'"]').closest(v.checkbox)},otherRadios:function(){return m.get.radios().not(x)},name:function(){return w.attr("name")}},is:{initialLoad:function(){return S},radio:function(){return w.hasClass(g.radio)||"radio"==w.attr("type")},indeterminate:function(){return w.prop("indeterminate")!==i&&w.prop("indeterminate")},checked:function(){return w.prop("checked")!==i&&w.prop("checked")},disabled:function(){return w.prop("disabled")!==i&&w.prop("disabled")},enabled:function(){return!m.is.disabled()},determinate:function(){return!m.is.indeterminate()},unchecked:function(){return!m.is.checked()}},should:{allowCheck:function(){return m.is.determinate()&&m.is.checked()&&!m.should.forceCallbacks()?(m.debug("Should not allow check, checkbox is already checked"),!1):f.beforeChecked.apply(k)===!1?(m.debug("Should not allow check, beforeChecked cancelled"),!1):!0},allowUncheck:function(){return m.is.determinate()&&m.is.unchecked()&&!m.should.forceCallbacks()?(m.debug("Should not allow uncheck, checkbox is already unchecked"),!1):f.beforeUnchecked.apply(k)===!1?(m.debug("Should not allow uncheck, beforeUnchecked cancelled"),!1):!0},allowIndeterminate:function(){return m.is.indeterminate()&&!m.should.forceCallbacks()?(m.debug("Should not allow indeterminate, checkbox is already indeterminate"),!1):f.beforeIndeterminate.apply(k)===!1?(m.debug("Should not allow indeterminate, beforeIndeterminate cancelled"),!1):!0},allowDeterminate:function(){return m.is.determinate()&&!m.should.forceCallbacks()?(m.debug("Should not allow determinate, checkbox is already determinate"),!1):f.beforeDeterminate.apply(k)===!1?(m.debug("Should not allow determinate, beforeDeterminate cancelled"),!1):!0},forceCallbacks:function(){return m.is.initialLoad()&&f.fireOnInit},ignoreCallbacks:function(){return S&&!f.fireOnInit}},can:{change:function(){return!(x.hasClass(g.disabled)||x.hasClass(g.readOnly)||w.prop("disabled")||w.prop("readonly"))},uncheck:function(){return"boolean"==typeof f.uncheckable?f.uncheckable:!m.is.radio()}},set:{initialLoad:function(){S=!0},checked:function(){return m.verbose("Setting class to checked"),x.removeClass(g.indeterminate).addClass(g.checked),m.is.radio()&&m.uncheckOthers(),!m.is.indeterminate()&&m.is.checked()?void m.debug("Input is already checked, skipping input property change"):(m.verbose("Setting state to checked",k),w.prop("indeterminate",!1).prop("checked",!0),void m.trigger.change())},unchecked:function(){return m.verbose("Removing checked class"),x.removeClass(g.indeterminate).removeClass(g.checked),!m.is.indeterminate()&&m.is.unchecked()?void m.debug("Input is already unchecked"):(m.debug("Setting state to unchecked"),w.prop("indeterminate",!1).prop("checked",!1),void m.trigger.change())},indeterminate:function(){return m.verbose("Setting class to indeterminate"),x.addClass(g.indeterminate),m.is.indeterminate()?void m.debug("Input is already indeterminate, skipping input property change"):(m.debug("Setting state to indeterminate"),w.prop("indeterminate",!0),void m.trigger.change())},determinate:function(){return m.verbose("Removing indeterminate class"),x.removeClass(g.indeterminate),m.is.determinate()?void m.debug("Input is already determinate, skipping input property change"):(m.debug("Setting state to determinate"),void w.prop("indeterminate",!1))},disabled:function(){return m.verbose("Setting class to disabled"),x.addClass(g.disabled),m.is.disabled()?void m.debug("Input is already disabled, skipping input property change"):(m.debug("Setting state to disabled"),w.prop("disabled","disabled"),void m.trigger.change())},enabled:function(){return m.verbose("Removing disabled class"),x.removeClass(g.disabled),m.is.enabled()?void m.debug("Input is already enabled, skipping input property change"):(m.debug("Setting state to enabled"),w.prop("disabled",!1),void m.trigger.change())},tabbable:function(){m.verbose("Adding tabindex to checkbox"),w.attr("tabindex")===i&&w.attr("tabindex",0)}},remove:{initialLoad:function(){S=!1}},trigger:{change:function(){m.verbose("Triggering change event from programmatic change"),w.trigger("change")}},create:{label:function(){w.prevAll(v.label).length>0?(w.prev(v.label).detach().insertAfter(w),m.debug("Moving existing label",C)):m.has.label()||(C=e("<label>").insertAfter(w),m.debug("Creating label",C))}},has:{label:function(){return C.length>0}},bind:{events:function(){m.verbose("Attaching checkbox events"),x.on("click"+b,m.event.click).on("keydown"+b,v.input,m.event.keydown).on("keyup"+b,v.input,m.event.keyup)}},unbind:{events:function(){m.debug("Removing events"),x.off(b)}},uncheckOthers:function(){var e=m.get.otherRadios();m.debug("Unchecking other radios",e),e.removeClass(g.checked)},toggle:function(){return m.can.change()?void(m.is.indeterminate()||m.is.unchecked()?(m.debug("Currently unchecked"),m.check()):m.is.checked()&&m.can.uncheck()&&(m.debug("Currently checked"),m.uncheck())):void(m.is.radio()||m.debug("Checkbox is read-only or disabled, ignoring toggle"))},setting:function(t,n){if(m.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,f,t);else{if(n===i)return f[t];f[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,m,t);else{if(n===i)return m[t];m[t]=n}},debug:function(){f.debug&&(f.performance?m.performance.log(arguments):(m.debug=Function.prototype.bind.call(console.info,console,f.name+":"),m.debug.apply(console,arguments)))},verbose:function(){f.verbose&&f.debug&&(f.performance?m.performance.log(arguments):(m.verbose=Function.prototype.bind.call(console.info,console,f.name+":"),m.verbose.apply(console,arguments)))},error:function(){m.error=Function.prototype.bind.call(console.error,console,f.name+":"),m.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;f.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:R,"Execution Time":n})),clearTimeout(m.performance.timer),m.performance.timer=setTimeout(m.performance.display,500)},display:function(){var t=f.name+":",n=0;s=!1,clearTimeout(m.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,a){var r,s,c,l=A;return n=n||d,a=R||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(m.error(h.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},u?(A===i&&m.initialize(),m.invoke(l)):(A!==i&&A.invoke("destroy"),m.initialize())}),o!==i?o:this},e.fn.checkbox.settings={name:"Checkbox",namespace:"checkbox",debug:!1,verbose:!0,performance:!0,uncheckable:"auto",fireOnInit:!1,onChange:function(){},beforeChecked:function(){},beforeUnchecked:function(){},beforeDeterminate:function(){},beforeIndeterminate:function(){},onChecked:function(){},onUnchecked:function(){},onDeterminate:function(){},onIndeterminate:function(){},onEnabled:function(){},onDisabled:function(){},className:{checked:"checked",indeterminate:"indeterminate",disabled:"disabled",hidden:"hidden",radio:"radio",readOnly:"read-only"},error:{method:"The method you called is not defined"},selector:{checkbox:".ui.checkbox",label:"label, .box",input:'input[type="checkbox"], input[type="radio"]',link:"a[href]"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.dimmer=function(t){var o,a=e(this),r=(new Date).getTime(),s=[],c=arguments[0],l="string"==typeof c,u=[].slice.call(arguments,1);return a.each(function(){var d,m,f,g=e.isPlainObject(t)?e.extend(!0,{},e.fn.dimmer.settings,t):e.extend({},e.fn.dimmer.settings),p=g.selector,v=g.namespace,h=g.className,b=g.error,y="."+v,x="module-"+v,C=a.selector||"",w="ontouchstart"in n.documentElement?"touchstart":"click",k=e(this),S=this,T=k.data(x);f={preinitialize:function(){f.is.dimmer()?(m=k.parent(),d=k):(m=k,d=f.has.dimmer()?g.dimmerName?m.find(p.dimmer).filter("."+g.dimmerName):m.find(p.dimmer):f.create())},initialize:function(){f.debug("Initializing dimmer",g),f.bind.events(),f.set.dimmable(),f.instantiate()},instantiate:function(){f.verbose("Storing instance of module",f),T=f,k.data(x,T)},destroy:function(){f.verbose("Destroying previous module",d),f.unbind.events(),f.remove.variation(),m.off(y)},bind:{events:function(){"hover"==g.on?m.on("mouseenter"+y,f.show).on("mouseleave"+y,f.hide):"click"==g.on&&m.on(w+y,f.toggle),f.is.page()&&(f.debug("Setting as a page dimmer",m),f.set.pageDimmer()),f.is.closable()&&(f.verbose("Adding dimmer close event",d),m.on(w+y,p.dimmer,f.event.click))}},unbind:{events:function(){k.removeData(x)}},event:{click:function(t){f.verbose("Determining if event occured on dimmer",t),(0===d.find(t.target).length||e(t.target).is(p.content))&&(f.hide(),t.stopImmediatePropagation())}},addContent:function(t){var n=e(t);f.debug("Add content to dimmer",n),n.parent()[0]!==d[0]&&n.detach().appendTo(d)},create:function(){var t=e(g.template.dimmer());return g.variation&&(f.debug("Creating dimmer with variation",g.variation),t.addClass(g.variation)),g.dimmerName&&(f.debug("Creating named dimmer",g.dimmerName),t.addClass(g.dimmerName)),t.appendTo(m),t},show:function(t){t=e.isFunction(t)?t:function(){},f.debug("Showing dimmer",d,g),f.is.dimmed()&&!f.is.animating()||!f.is.enabled()?f.debug("Dimmer is already shown or disabled"):(f.animate.show(t),g.onShow.call(S),g.onChange.call(S))},hide:function(t){t=e.isFunction(t)?t:function(){},f.is.dimmed()||f.is.animating()?(f.debug("Hiding dimmer",d),f.animate.hide(t),g.onHide.call(S),g.onChange.call(S)):f.debug("Dimmer is not visible")},toggle:function(){f.verbose("Toggling dimmer visibility",d),f.is.dimmed()?f.hide():f.show()},animate:{show:function(t){t=e.isFunction(t)?t:function(){},g.useCSS&&e.fn.transition!==i&&d.transition("is supported")?("auto"!==g.opacity&&f.set.opacity(),d.transition({animation:g.transition+" in",queue:!1,duration:f.get.duration(),useFailSafe:!0,onStart:function(){f.set.dimmed()},onComplete:function(){f.set.active(),t()}})):(f.verbose("Showing dimmer animation with javascript"),f.set.dimmed(),"auto"==g.opacity&&(g.opacity=.8),d.stop().css({opacity:0,width:"100%",height:"100%"}).fadeTo(f.get.duration(),g.opacity,function(){d.removeAttr("style"),f.set.active(),t()}))},hide:function(t){t=e.isFunction(t)?t:function(){},g.useCSS&&e.fn.transition!==i&&d.transition("is supported")?(f.verbose("Hiding dimmer with css"),d.transition({animation:g.transition+" out",queue:!1,duration:f.get.duration(),useFailSafe:!0,onStart:function(){f.remove.dimmed()},onComplete:function(){f.remove.active(),t()}})):(f.verbose("Hiding dimmer with javascript"),f.remove.dimmed(),d.stop().fadeOut(f.get.duration(),function(){f.remove.active(),d.removeAttr("style"),t()}))}},get:{dimmer:function(){return d},duration:function(){return"object"==typeof g.duration?f.is.active()?g.duration.hide:g.duration.show:g.duration}},has:{dimmer:function(){return g.dimmerName?k.find(p.dimmer).filter("."+g.dimmerName).length>0:k.find(p.dimmer).length>0}},is:{active:function(){return d.hasClass(h.active)},animating:function(){return d.is(":animated")||d.hasClass(h.animating)},closable:function(){return"auto"==g.closable?"hover"==g.on?!1:!0:g.closable},dimmer:function(){return k.hasClass(h.dimmer)},dimmable:function(){return k.hasClass(h.dimmable)},dimmed:function(){return m.hasClass(h.dimmed)},disabled:function(){return m.hasClass(h.disabled)},enabled:function(){return!f.is.disabled()},page:function(){return m.is("body")},pageDimmer:function(){return d.hasClass(h.pageDimmer)}},can:{show:function(){return!d.hasClass(h.disabled)}},set:{opacity:function(e){var t=d.css("background-color"),n=t.split(","),i=n&&4==n.length;e=g.opacity||e,i?(n[3]=e+")",t=n.join(",")):t="rgba(0, 0, 0, "+e+")",f.debug("Setting opacity to",e),d.css("background-color",t)},active:function(){d.addClass(h.active)},dimmable:function(){m.addClass(h.dimmable)},dimmed:function(){m.addClass(h.dimmed)},pageDimmer:function(){d.addClass(h.pageDimmer)},disabled:function(){d.addClass(h.disabled)},variation:function(e){e=e||g.variation,e&&d.addClass(e)}},remove:{active:function(){d.removeClass(h.active)},dimmed:function(){m.removeClass(h.dimmed)},disabled:function(){d.removeClass(h.disabled)},variation:function(e){e=e||g.variation,e&&d.removeClass(e)}},setting:function(t,n){if(f.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,g,t);else{if(n===i)return g[t];g[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,f,t);else{if(n===i)return f[t];f[t]=n}},debug:function(){g.debug&&(g.performance?f.performance.log(arguments):(f.debug=Function.prototype.bind.call(console.info,console,g.name+":"),f.debug.apply(console,arguments)))},verbose:function(){g.verbose&&g.debug&&(g.performance?f.performance.log(arguments):(f.verbose=Function.prototype.bind.call(console.info,console,g.name+":"),f.verbose.apply(console,arguments)))},error:function(){f.error=Function.prototype.bind.call(console.error,console,g.name+":"),f.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;g.performance&&(t=(new Date).getTime(),i=r||t,n=t-i,r=t,s.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:S,"Execution Time":n})),clearTimeout(f.performance.timer),f.performance.timer=setTimeout(f.performance.display,500)},display:function(){var t=g.name+":",n=0;r=!1,clearTimeout(f.performance.timer),e.each(s,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",C&&(t+=" '"+C+"'"),a.length>1&&(t+=" ("+a.length+")"),(console.group!==i||console.table!==i)&&s.length>0&&(console.groupCollapsed(t),console.table?console.table(s):e.each(s,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),s=[]}},invoke:function(t,n,a){var r,s,c,l=T;return n=n||u,a=S||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(f.error(b.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},f.preinitialize(),l?(T===i&&f.initialize(),f.invoke(c)):(T!==i&&T.invoke("destroy"),f.initialize())}),o!==i?o:this},e.fn.dimmer.settings={name:"Dimmer",namespace:"dimmer",debug:!1,verbose:!1,performance:!0,dimmerName:!1,variation:!1,closable:"auto",useCSS:!0,transition:"fade",on:!1,opacity:"auto",duration:{show:500,hide:500},onChange:function(){},onShow:function(){},onHide:function(){},error:{method:"The method you called is not defined."},className:{active:"active",animating:"animating",dimmable:"dimmable",dimmed:"dimmed",dimmer:"dimmer",disabled:"disabled",hide:"hide",pageDimmer:"page",show:"show"},selector:{dimmer:"> .ui.dimmer",content:".ui.dimmer > .content, .ui.dimmer > .content > .center"},template:{dimmer:function(){return e("<div />").attr("class","ui dimmer")}}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.dropdown=function(o){var a,r=e(this),s=e(n),c=r.selector||"",l="ontouchstart"in n.documentElement,u=(new Date).getTime(),d=[],m=arguments[0],f="string"==typeof m,g=[].slice.call(arguments,1);return r.each(function(p){var v,h,b,y,x,C,w,k=e.isPlainObject(o)?e.extend(!0,{},e.fn.dropdown.settings,o):e.extend({},e.fn.dropdown.settings),S=k.className,T=k.message,A=k.fields,R=k.metadata,P=k.namespace,E=k.regExp,F=k.selector,D=k.error,O=k.templates,q="."+P,j="module-"+P,z=e(this),I=e(k.context),L=z.find(F.text),N=z.find(F.search),H=z.find(F.input),V=z.find(F.icon),M=z.prev().find(F.text).length>0?z.prev().find(F.text):z.prev(),U=z.children(F.menu),W=U.find(F.item),B=!1,Q=!1,X=!1,$=this,Y=z.data(j);w={initialize:function(){w.debug("Initializing dropdown",k),w.is.alreadySetup()?w.setup.reference():(w.setup.layout(),w.refreshData(),w.save.defaults(),w.restore.selected(),w.create.id(),w.bind.events(),w.observeChanges(),w.instantiate())},instantiate:function(){w.verbose("Storing instance of dropdown",w),Y=w,z.data(j,w)},destroy:function(){w.verbose("Destroying previous dropdown",z),w.remove.tabbable(),z.off(q).removeData(j),U.off(q),s.off(b),x&&x.disconnect(),C&&C.disconnect()},observeChanges:function(){"MutationObserver"in t&&(x=new MutationObserver(function(e){w.debug("<select> modified, recreating menu"),w.setup.select()}),C=new MutationObserver(function(e){w.debug("Menu modified, updating selector cache"),w.refresh()}),w.has.input()&&x.observe(H[0],{childList:!0,subtree:!0}),w.has.menu()&&C.observe(U[0],{childList:!0,subtree:!0}),w.debug("Setting up mutation observer",x,C))},create:{id:function(){y=(Math.random().toString(16)+"000000000").substr(2,8),b="."+y,w.verbose("Creating unique id for element",y)},userChoice:function(t){var n,o,a;return(t=t||w.get.userValues())?(t=e.isArray(t)?t:[t],e.each(t,function(t,r){w.get.item(r)===!1&&(a=k.templates.addition(w.add.variables(T.addResult,r)),o=e("<div />").html(a).attr("data-"+R.value,r).attr("data-"+R.text,r).addClass(S.addition).addClass(S.item),n=n===i?o:n.add(o),w.verbose("Creating user choices for value",r,o))}),n):!1},userLabels:function(t){var n=w.get.userValues();n&&(w.debug("Adding user labels",n),e.each(n,function(e,t){w.verbose("Adding custom user value"),w.add.label(t,t)}))},menu:function(){U=e("<div />").addClass(S.menu).appendTo(z)}},search:function(e){e=e!==i?e:w.get.query(),w.verbose("Searching for query",e),w.filter(e)},select:{firstUnfiltered:function(){w.verbose("Selecting first non-filtered element"),w.remove.selectedItem(),W.not(F.unselectable).eq(0).addClass(S.selected)},nextAvailable:function(e){e=e.eq(0);var t=e.nextAll(F.item).not(F.unselectable).eq(0),n=e.prevAll(F.item).not(F.unselectable).eq(0),i=t.length>0;i?(w.verbose("Moving selection to",t),t.addClass(S.selected)):(w.verbose("Moving selection to",n),n.addClass(S.selected))}},setup:{api:function(){var e={debug:k.debug,on:!1};w.verbose("First request, initializing API"),z.api(e)},layout:function(){z.is("select")&&(w.setup.select(),w.setup.returnedObject()),w.has.menu()||w.create.menu(),w.is.search()&&!w.has.search()&&(w.verbose("Adding search input"),N=e("<input />").addClass(S.search).insertBefore(L)),k.allowTab&&w.set.tabbable()},select:function(){var t=w.get.selectValues();w.debug("Dropdown initialized on a select",t),z.is("select")&&(H=z),H.parent(F.dropdown).length>0?(w.debug("UI dropdown already exists. Creating dropdown menu only"),z=H.closest(F.dropdown),w.has.menu()||w.create.menu(),U=z.children(F.menu),w.setup.menu(t)):(w.debug("Creating entire dropdown from select"),z=e("<div />").attr("class",H.attr("class")).addClass(S.selection).addClass(S.dropdown).html(O.dropdown(t)).insertBefore(H),H.hasClass(S.multiple)&&H.prop("multiple")===!1&&(w.error(D.missingMultiple),H.prop("multiple",!0)),H.is("[multiple]")&&w.set.multiple(),H.removeAttr("class").detach().prependTo(z)),w.refresh()},menu:function(e){U.html(O.menu(e,A)),W=U.find(F.item)},reference:function(){w.debug("Dropdown behavior was called on select, replacing with closest dropdown"),z=z.parent(F.dropdown),w.refresh(),w.setup.returnedObject(),f&&(Y=w,w.invoke(m))},returnedObject:function(){var e=r.slice(0,p),t=r.slice(p+1);r=e.add(z).add(t)}},refresh:function(){w.refreshSelectors(),w.refreshData()},refreshSelectors:function(){w.verbose("Refreshing selector cache"),L=z.find(F.text),N=z.find(F.search),H=z.find(F.input),V=z.find(F.icon),M=z.prev().find(F.text).length>0?z.prev().find(F.text):z.prev(),U=z.children(F.menu),W=U.find(F.item)},refreshData:function(){w.verbose("Refreshing cached metadata"),W.removeData(R.text).removeData(R.value),z.removeData(R.defaultText).removeData(R.defaultValue).removeData(R.placeholderText)},toggle:function(){w.verbose("Toggling menu visibility"),w.is.active()?w.hide():w.show()},show:function(t){if(t=e.isFunction(t)?t:function(){},w.can.show()&&!w.is.active()){if(w.debug("Showing dropdown"),w.is.multiple()&&!w.has.search()&&w.is.allFiltered())return!0;w.has.message()&&!w.has.maxSelections()&&w.remove.message(),k.onShow.call($)!==!1&&w.animate.show(function(){w.can.click()&&w.bind.intent(),w.set.visible(),t.call($)})}},hide:function(t){t=e.isFunction(t)?t:function(){},w.is.active()&&(w.debug("Hiding dropdown"),k.onHide.call($)!==!1&&w.animate.hide(function(){w.remove.visible(),t.call($)}))},hideOthers:function(){w.verbose("Finding other dropdowns to hide"),r.not(z).has(F.menu+"."+S.visible).dropdown("hide")},hideMenu:function(){w.verbose("Hiding menu instantaneously"),w.remove.active(),w.remove.visible(),U.transition("hide")},hideSubMenus:function(){var e=U.children(F.item).find(F.menu);w.verbose("Hiding sub menus",e),e.transition("hide")},bind:{events:function(){l&&w.bind.touchEvents(),w.bind.keyboardEvents(),w.bind.inputEvents(),w.bind.mouseEvents()},touchEvents:function(){w.debug("Touch device detected binding additional touch events"),w.is.searchSelection()||w.is.single()&&z.on("touchstart"+q,w.event.test.toggle),U.on("touchstart"+q,F.item,w.event.item.mouseenter)},keyboardEvents:function(){w.verbose("Binding keyboard events"),z.on("keydown"+q,w.event.keydown),w.has.search()&&z.on(w.get.inputEvent()+q,F.search,w.event.input),w.is.multiple()&&s.on("keydown"+b,w.event.document.keydown)},inputEvents:function(){w.verbose("Binding input change events"),z.on("change"+q,F.input,w.event.change)},mouseEvents:function(){w.verbose("Binding mouse events"),w.is.multiple()&&z.on("click"+q,F.label,w.event.label.click).on("click"+q,F.remove,w.event.remove.click),w.is.searchSelection()?(z.on("mousedown"+q,F.menu,w.event.menu.mousedown).on("mouseup"+q,F.menu,w.event.menu.mouseup).on("click"+q,F.icon,w.event.icon.click).on("click"+q,F.search,w.show).on("focus"+q,F.search,w.event.search.focus).on("blur"+q,F.search,w.event.search.blur).on("click"+q,F.text,w.event.text.focus),w.is.multiple()&&z.on("click"+q,w.event.click)):("click"==k.on?z.on("click"+q,F.icon,w.event.icon.click).on("click"+q,w.event.test.toggle):"hover"==k.on?z.on("mouseenter"+q,w.delay.show).on("mouseleave"+q,w.delay.hide):z.on(k.on+q,w.toggle),z.on("mousedown"+q,w.event.mousedown).on("mouseup"+q,w.event.mouseup).on("focus"+q,w.event.focus).on("blur"+q,w.event.blur)),U.on("mouseenter"+q,F.item,w.event.item.mouseenter).on("mouseleave"+q,F.item,w.event.item.mouseleave).on("click"+q,F.item,w.event.item.click)},intent:function(){w.verbose("Binding hide intent event to document"),l&&s.on("touchstart"+b,w.event.test.touch).on("touchmove"+b,w.event.test.touch),s.on("click"+b,w.event.test.hide)}},unbind:{intent:function(){w.verbose("Removing hide intent event from document"),l&&s.off("touchstart"+b).off("touchmove"+b),s.off("click"+b)}},filter:function(e){var t=e!==i?e:w.get.query(),n=function(){w.is.multiple()&&w.filterActive(),w.select.firstUnfiltered(),w.has.allResultsFiltered()?k.onNoResults.call($,t)?k.allowAdditions||(w.verbose("All items filtered, showing message",t),w.add.message(T.noResults)):(w.verbose("All items filtered, hiding dropdown",t),w.hideMenu()):w.remove.message(),k.allowAdditions&&w.add.userSuggestion(e),w.is.searchSelection()&&w.can.show()&&w.is.focusedOnSearch()&&w.show()};k.useLabels&&w.has.maxSelections()||(k.apiSettings?w.can.useAPI()?w.queryRemote(t,function(){n()}):w.error(D.noAPI):(w.filterItems(t),n()))},queryRemote:function(t,n){var i={errorDuration:!1,throttle:k.throttle,urlData:{query:t},onError:function(){w.add.message(T.serverError),n()},onFailure:function(){w.add.message(T.serverError),n()},onSuccess:function(e){w.remove.message(),w.setup.menu({values:e.results}),n()}};z.api("get request")||w.setup.api(),i=e.extend(!0,{},i,k.apiSettings),z.api("setting",i).api("query")},filterItems:function(t){var n=t!==i?t:w.get.query(),o=e(),a=w.escape.regExp(n),r=new RegExp("^"+a,"igm");w.has.query()?(w.verbose("Searching for matching values",n),W.each(function(){var t,i,a=e(this);if("both"==k.match||"text"==k.match){if(t=String(w.get.choiceText(a,!1)),-1!==t.search(r))return o=o.add(a),!0;if(k.fullTextSearch&&w.fuzzySearch(n,t))return o=o.add(a),!0}if("both"==k.match||"value"==k.match){if(i=String(w.get.choiceValue(a,t)),-1!==i.search(r))return o=o.add(a),!0;if(k.fullTextSearch&&w.fuzzySearch(n,i))return o=o.add(a),!0}})):o=W,w.debug("Showing only matched items",n),w.remove.filteredItem(),W.not(o).addClass(S.filtered)},fuzzySearch:function(e,t){var n=t.length,i=e.length;if(e=e.toLowerCase(),t=t.toLowerCase(),i>n)return!1;if(i===n)return e===t;e:for(var o=0,a=0;i>o;o++){for(var r=e.charCodeAt(o);n>a;)if(t.charCodeAt(a++)===r)continue e;return!1}return!0},filterActive:function(){k.useLabels&&W.filter("."+S.active).addClass(S.filtered)},focusSearch:function(){w.is.search()&&!w.is.focusedOnSearch()&&N[0].focus()},forceSelection:function(){var e=W.not(S.filtered).filter("."+S.selected).eq(0),t=W.not(S.filtered).filter("."+S.active).eq(0),n=e.length>0?e:t,i=n.size()>0;i&&w.has.query()?(w.debug("Forcing partial selection to selected item",n),w.event.item.click.call(n)):w.hide()},event:{change:function(){X||(w.debug("Input changed, updating selection"),w.set.selected())},focus:function(){k.showOnFocus&&!B&&w.is.hidden()&&!h&&w.show()},click:function(t){var n=e(t.target);n.is(z)&&!w.is.focusedOnSearch()&&w.focusSearch()},blur:function(e){h=n.activeElement===this,B||h||(w.remove.activeLabel(),w.hide())},mousedown:function(){B=!0},mouseup:function(){B=!1},search:{focus:function(){B=!0,w.is.multiple()&&w.remove.activeLabel(),k.showOnFocus&&w.show()},blur:function(e){h=n.activeElement===this,Q||h?h&&k.forceSelection&&w.forceSelection():w.is.multiple()?(w.remove.activeLabel(),w.hide()):k.forceSelection?w.forceSelection():w.hide()}},icon:{click:function(e){w.toggle(),e.stopPropagation()}},text:{focus:function(e){B=!0,w.focusSearch()}},input:function(e){(w.is.multiple()||w.is.searchSelection())&&w.set.filtered(),clearTimeout(w.timer),w.timer=setTimeout(w.search,k.delay.search)},label:{click:function(t){var n=e(this),i=z.find(F.label),o=i.filter("."+S.active),a=n.nextAll("."+S.active),r=n.prevAll("."+S.active),s=a.length>0?n.nextUntil(a).add(o).add(n):n.prevUntil(r).add(o).add(n);t.shiftKey?(o.removeClass(S.active),s.addClass(S.active)):t.ctrlKey?n.toggleClass(S.active):(o.removeClass(S.active),n.addClass(S.active)),k.onLabelSelect.apply(this,i.filter("."+S.active))}},remove:{click:function(){var t=e(this).parent();t.hasClass(S.active)?w.remove.activeLabels():w.remove.activeLabels(t)}},test:{toggle:function(e){var t=w.is.multiple()?w.show:w.toggle;w.determine.eventOnElement(e,t)&&e.preventDefault()},touch:function(e){w.determine.eventOnElement(e,function(){"touchstart"==e.type?w.timer=setTimeout(function(){w.hide()},k.delay.touch):"touchmove"==e.type&&clearTimeout(w.timer)}),e.stopPropagation()},hide:function(e){w.determine.eventInModule(e,w.hide)}},menu:{mousedown:function(){Q=!0},mouseup:function(){Q=!1}},item:{mouseenter:function(t){var n=e(this).children(F.menu),i=e(this).siblings(F.item).children(F.menu);n.length>0&&(clearTimeout(w.itemTimer),w.itemTimer=setTimeout(function(){w.verbose("Showing sub-menu",n),e.each(i,function(){w.animate.hide(!1,e(this))}),w.animate.show(!1,n)},k.delay.show),t.preventDefault())},mouseleave:function(t){var n=e(this).children(F.menu);n.length>0&&(clearTimeout(w.itemTimer),w.itemTimer=setTimeout(function(){w.verbose("Hiding sub-menu",n),w.animate.hide(!1,n)},k.delay.hide))},touchend:function(){},click:function(t){var n=e(this),i=e(t?t.target:""),o=n.find(F.menu),a=w.get.choiceText(n),r=w.get.choiceValue(n,a),s=o.length>0,c=o.find(i).length>0;c||s&&!k.allowCategorySelection||(k.useLabels||(w.remove.filteredItem(),w.remove.searchTerm(),w.set.scrollPosition(n)),w.determine.selectAction.call(this,a,r))}},document:{keydown:function(e){var t=e.which,n=w.get.shortcutKeys(),i=w.is.inObject(t,n);if(i){var o=z.find(F.label),a=o.filter("."+S.active),r=(a.data(R.value),o.index(a)),s=o.length,c=a.length>0,l=a.length>1,u=0===r,d=r+1==s,m=w.is.searchSelection(),f=w.is.focusedOnSearch(),g=w.is.focused(),p=f&&0===w.get.caretPosition();if(m&&!c&&!f)return;t==n.leftArrow?!g&&!p||c?c&&(e.shiftKey?w.verbose("Adding previous label to selection"):(w.verbose("Selecting previous label"),o.removeClass(S.active)),u&&!l?a.addClass(S.active):a.prev(F.siblingLabel).addClass(S.active).end(),e.preventDefault()):(w.verbose("Selecting previous label"),o.last().addClass(S.active)):t==n.rightArrow?(g&&!c&&o.first().addClass(S.active),c&&(e.shiftKey?w.verbose("Adding next label to selection"):(w.verbose("Selecting next label"),o.removeClass(S.active)),d?m?f?o.removeClass(S.active):w.focusSearch():l?a.next(F.siblingLabel).addClass(S.active):a.addClass(S.active):a.next(F.siblingLabel).addClass(S.active),e.preventDefault())):t==n.deleteKey||t==n.backspace?c?(w.verbose("Removing active labels"),d&&m&&!f&&w.focusSearch(),a.last().next(F.siblingLabel).addClass(S.active),w.remove.activeLabels(a),e.preventDefault()):p&&!c&&t==n.backspace&&(w.verbose("Removing last label on input backspace"),a=o.last().addClass(S.active),w.remove.activeLabels(a)):a.removeClass(S.active)}}},keydown:function(e){var t=e.which,n=w.get.shortcutKeys(),i=w.is.inObject(t,n);if(i){var o,a,r=W.not(F.unselectable).filter("."+S.selected).eq(0),s=U.children("."+S.active).eq(0),c=r.length>0?r:s,l=c.length>0?c.siblings(":not(."+S.filtered+")").andSelf():U.children(":not(."+S.filtered+")"),u=c.children(F.menu),d=c.closest(F.menu),m=d.hasClass(S.visible)||d.hasClass(S.animating)||d.parent(F.menu).length>0,f=u.length>0,g=c.length>0,p=c.not(F.unselectable).length>0;if(w.is.visible()){if((t==n.enter||t==n.delimiter)&&(t==n.enter&&g&&f&&!k.allowCategorySelection?(w.verbose("Pressed enter on unselectable category, opening sub menu"),t=n.rightArrow):p&&(w.verbose("Selecting item from keyboard shortcut",c),w.event.item.click.call(c,e),w.is.searchSelection()&&w.remove.searchTerm()),e.preventDefault()),t==n.leftArrow&&(a=d[0]!==U[0],a&&(w.verbose("Left key pressed, closing sub-menu"),w.animate.hide(!1,d),c.removeClass(S.selected),d.closest(F.item).addClass(S.selected),e.preventDefault())),t==n.rightArrow&&f&&(w.verbose("Right key pressed, opening sub-menu"),w.animate.show(!1,u),c.removeClass(S.selected),u.find(F.item).eq(0).addClass(S.selected),e.preventDefault()),t==n.upArrow){if(o=g&&m?c.prevAll(F.item+":not("+F.unselectable+")").eq(0):W.eq(0),l.index(o)<0)return w.verbose("Up key pressed but reached top of current menu"),void e.preventDefault();w.verbose("Up key pressed, changing active item"),c.removeClass(S.selected),o.addClass(S.selected),w.set.scrollPosition(o),e.preventDefault()}if(t==n.downArrow){if(o=g&&m?o=c.nextAll(F.item+":not("+F.unselectable+")").eq(0):W.eq(0),0===o.length)return w.verbose("Down key pressed but reached bottom of current menu"),void e.preventDefault();w.verbose("Down key pressed, changing active item"),W.removeClass(S.selected),o.addClass(S.selected),w.set.scrollPosition(o),e.preventDefault()}t==n.pageUp&&(w.scrollPage("up"),e.preventDefault()),t==n.pageDown&&(w.scrollPage("down"),e.preventDefault()), -t==n.escape&&(w.verbose("Escape key pressed, closing dropdown"),w.hide())}else t==n.delimiter&&e.preventDefault(),t==n.downArrow&&(w.verbose("Down key pressed, showing dropdown"),w.show(),e.preventDefault())}else w.is.selection()&&!w.is.search()&&w.set.selectedLetter(String.fromCharCode(t))}},determine:{selectAction:function(t,n){w.verbose("Determining action",k.action),e.isFunction(w.action[k.action])?(w.verbose("Triggering preset action",k.action,t,n),w.action[k.action].call(this,t,n)):e.isFunction(k.action)?(w.verbose("Triggering user action",k.action,t,n),k.action.call(this,t,n)):w.error(D.action,k.action)},eventInModule:function(t,i){var o=e(t.target),a=o.closest(n.documentElement).length>0,r=o.closest(z).length>0;return i=e.isFunction(i)?i:function(){},a&&!r?(w.verbose("Triggering event",i),i(),!0):(w.verbose("Event occurred in dropdown, canceling callback"),!1)},eventOnElement:function(t,n){var i=e(t.target),o=i.closest(F.siblingLabel),a=0===z.find(o).length,r=0===i.closest(U).length;return n=e.isFunction(n)?n:function(){},a&&r?(w.verbose("Triggering event",n),n(),!0):(w.verbose("Event occurred in dropdown menu, canceling callback"),!1)}},action:{nothing:function(){},activate:function(t,n){if(n=n!==i?n:t,w.can.activate(e(this))){if(w.set.selected(n,e(this)),w.is.multiple()&&!w.is.allFiltered())return;w.hideAndClear()}},select:function(e,t){w.action.activate.call(this)},combo:function(t,n){n=n!==i?n:t,w.set.selected(n,e(this)),w.hideAndClear()},hide:function(e,t){w.set.value(t),w.hideAndClear()}},get:{id:function(){return y},defaultText:function(){return z.data(R.defaultText)},defaultValue:function(){return z.data(R.defaultValue)},placeholderText:function(){return z.data(R.placeholderText)||""},text:function(){return L.text()},query:function(){return e.trim(N.val())},searchWidth:function(e){return e*k.glyphWidth+"em"},selectionCount:function(){var t,n=w.get.values();return t=w.is.multiple()?e.isArray(n)?n.length:0:""!==w.get.value()?1:0},transition:function(e){return"auto"==k.transition?w.is.upward(e)?"slide up":"slide down":k.transition},userValues:function(){var t=w.get.values();return t?(t=e.isArray(t)?t:[t],e.grep(t,function(e){return w.get.item(e)===!1})):!1},uniqueArray:function(t){return e.grep(t,function(n,i){return e.inArray(n,t)===i})},caretPosition:function(){var e,t,i=N.get(0);return"selectionStart"in i?i.selectionStart:n.selection?(i.focus(),e=n.selection.createRange(),t=e.text.length,e.moveStart("character",-i.value.length),e.text.length-t):void 0},shortcutKeys:function(){return{backspace:8,delimiter:188,deleteKey:46,enter:13,escape:27,pageUp:33,pageDown:34,leftArrow:37,upArrow:38,rightArrow:39,downArrow:40}},value:function(){var t=H.length>0?H.val():z.data(R.value);return e.isArray(t)&&1===t.length&&""===t[0]?"":t},values:function(){var e=w.get.value();return""===e?"":!w.has.selectInput()&&w.is.multiple()?"string"==typeof e?e.split(k.delimiter):"":e},remoteValues:function(){var t=w.get.values(),n=!1;return t&&("string"==typeof t&&(t=[t]),n={},e.each(t,function(e,t){var i=w.read.remoteData(t);w.verbose("Restoring value from session data",i,t),n[t]=i?i:t})),n},choiceText:function(t,n){return n=n!==i?n:k.preserveHTML,t?(t.find(F.menu).length>0&&(w.verbose("Retreiving text of element with sub-menu"),t=t.clone(),t.find(F.menu).remove(),t.find(F.menuIcon).remove()),t.data(R.text)!==i?t.data(R.text):e.trim(n?t.html():t.text())):void 0},choiceValue:function(t,n){return n=n||w.get.choiceText(t),t?t.data(R.value)!==i?String(t.data(R.value)):"string"==typeof n?e.trim(n.toLowerCase()):String(n):!1},inputEvent:function(){var e=N[0];return e?e.oninput!==i?"input":e.onpropertychange!==i?"propertychange":"keyup":!1},selectValues:function(){var t={};return t.values=[],z.find("option").each(function(){var n=e(this),o=n.html(),a=n.attr("disabled"),r=n.attr("value")!==i?n.attr("value"):o;"auto"===k.placeholder&&""===r?t.placeholder=o:t.values.push({name:o,value:r,disabled:a})}),k.placeholder&&"auto"!==k.placeholder&&(w.debug("Setting placeholder value to",k.placeholder),t.placeholder=k.placeholder),k.sortSelect?(t.values.sort(function(e,t){return e.name>t.name?1:-1}),w.debug("Retrieved and sorted values from select",t)):w.debug("Retreived values from select",t),t},activeItem:function(){return W.filter("."+S.active)},selectedItem:function(){var e=W.not(F.unselectable).filter("."+S.selected);return e.length>0?e:W.eq(0)},itemWithAdditions:function(e){var t=w.get.item(e),n=w.create.userChoice(e),i=n&&n.length>0;return i&&(t=t.length>0?t.add(n):n),t},item:function(t,n){var o,a,r=!1;return t=t!==i?t:w.get.values()!==i?w.get.values():w.get.text(),o=a?t.length>0:t!==i&&null!==t,a=w.is.multiple()&&e.isArray(t),n=""===t||0===t?!0:n||!1,o&&W.each(function(){var o=e(this),s=w.get.choiceText(o),c=w.get.choiceValue(o,s);if(null!==c&&c!==i)if(a)(-1!==e.inArray(String(c),t)||-1!==e.inArray(s,t))&&(r=r?r.add(o):o);else if(n){if(w.verbose("Ambiguous dropdown value using strict type check",o,t),c===t||s===t)return r=o,!0}else if(String(c)==String(t)||s==t)return w.verbose("Found select item by value",c,t),r=o,!0}),r}},check:{maxSelections:function(e){return k.maxSelections?(e=e!==i?e:w.get.selectionCount(),e>=k.maxSelections?(w.debug("Maximum selection count reached"),k.useLabels&&(W.addClass(S.filtered),w.add.message(T.maxSelections)),!0):(w.verbose("No longer at maximum selection count"),w.remove.message(),w.remove.filteredItem(),w.is.searchSelection()&&w.filterItems(),!1)):!0}},restore:{defaults:function(){w.clear(),w.restore.defaultText(),w.restore.defaultValue()},defaultText:function(){var e=w.get.defaultText(),t=w.get.placeholderText;e===t?(w.debug("Restoring default placeholder text",e),w.set.placeholderText(e)):(w.debug("Restoring default text",e),w.set.text(e))},defaultValue:function(){var e=w.get.defaultValue();e!==i&&(w.debug("Restoring default value",e),""!==e?(w.set.value(e),w.set.selected()):(w.remove.activeItem(),w.remove.selectedItem()))},labels:function(){k.allowAdditions&&(k.useLabels||(w.error(D.labels),k.useLabels=!0),w.debug("Restoring selected values"),w.create.userLabels()),w.check.maxSelections()},selected:function(){w.restore.values(),w.is.multiple()?(w.debug("Restoring previously selected values and labels"),w.restore.labels()):w.debug("Restoring previously selected values")},values:function(){w.set.initialLoad(),k.apiSettings?k.saveRemoteData?w.restore.remoteValues():w.clearValue():w.set.selected(),w.remove.initialLoad()},remoteValues:function(){var t=w.get.remoteValues();w.debug("Recreating selected from session data",t),t&&(w.is.single()?e.each(t,function(e,t){w.set.text(t)}):e.each(t,function(e,t){w.add.label(e,t)}))}},read:{remoteData:function(e){var n;return t.Storage===i?void w.error(D.noStorage):(n=sessionStorage.getItem(e),n!==i?n:!1)}},save:{defaults:function(){w.save.defaultText(),w.save.placeholderText(),w.save.defaultValue()},defaultValue:function(){var e=w.get.value();w.verbose("Saving default value as",e),z.data(R.defaultValue,e)},defaultText:function(){var e=w.get.text();w.verbose("Saving default text as",e),z.data(R.defaultText,e)},placeholderText:function(){var e;k.placeholder!==!1&&L.hasClass(S.placeholder)&&(e=w.get.text(),w.verbose("Saving placeholder text as",e),z.data(R.placeholderText,e))},remoteData:function(e,n){return t.Storage===i?void w.error(D.noStorage):(w.verbose("Saving remote data to session storage",n,e),void sessionStorage.setItem(n,e))}},clear:function(){w.is.multiple()?w.remove.labels():(w.remove.activeItem(),w.remove.selectedItem()),w.set.placeholderText(),w.clearValue()},clearValue:function(){w.set.value("")},scrollPage:function(e,t){var n,i,o,a=t||w.get.selectedItem(),r=a.closest(F.menu),s=r.outerHeight(),c=r.scrollTop(),l=W.eq(0).outerHeight(),u=Math.floor(s/l),d=(r.prop("scrollHeight"),"up"==e?c-l*u:c+l*u),m=W.not(F.unselectable);o="up"==e?m.index(a)-u:m.index(a)+u,n="up"==e?o>=0:o<m.length,i=n?m.eq(o):"up"==e?m.first():m.last(),i.length>0&&(w.debug("Scrolling page",e,i),a.removeClass(S.selected),i.addClass(S.selected),r.scrollTop(d))},set:{filtered:function(){var e=w.is.multiple(),t=w.is.searchSelection(),n=e&&t,i=t?w.get.query():"",o="string"==typeof i&&i.length>0,a=w.get.searchWidth(i.length),r=""!==i;e&&o&&(w.verbose("Adjusting input width",a,k.glyphWidth),N.css("width",a)),o||n&&r?(w.verbose("Hiding placeholder text"),L.addClass(S.filtered)):(!e||n&&!r)&&(w.verbose("Showing placeholder text"),L.removeClass(S.filtered))},loading:function(){z.addClass(S.loading)},placeholderText:function(e){e=e||w.get.placeholderText(),w.debug("Setting placeholder text",e),w.set.text(e),L.addClass(S.placeholder)},tabbable:function(){w.has.search()?(w.debug("Added tabindex to searchable dropdown"),N.val("").attr("tabindex",0),U.attr("tabindex",-1)):(w.debug("Added tabindex to dropdown"),z.attr("tabindex")||(z.attr("tabindex",0),U.attr("tabindex",-1)))},initialLoad:function(){w.verbose("Setting initial load"),v=!0},activeItem:function(e){e.addClass(k.allowAdditions&&e.filter(F.addition).length>0?S.filtered:S.active)},scrollPosition:function(e,t){var n,o,a,r,s,c,l,u,d,m=5;e=e||w.get.selectedItem(),n=e.closest(F.menu),o=e&&e.length>0,t=t!==i?t:!1,e&&n.length>0&&o&&(r=e.position().top,n.addClass(S.loading),c=n.scrollTop(),s=n.offset().top,r=e.offset().top,a=c-s+r,t||(l=n.height(),d=a+m>c+l,u=c>a-m),w.debug("Scrolling to active item",a),(t||u||d)&&n.scrollTop(a),n.removeClass(S.loading))},text:function(e){"select"!==k.action&&("combo"==k.action?(w.debug("Changing combo button text",e,M),k.preserveHTML?M.html(e):M.text(e)):(e!==w.get.placeholderText()&&L.removeClass(S.placeholder),w.debug("Changing text",e,L),L.removeClass(S.filtered),k.preserveHTML?L.html(e):L.text(e)))},selectedLetter:function(t){var n,i=W.filter("."+S.selected),o=i.length>0&&w.has.firstLetter(i,t),a=!1;o&&(n=i.nextAll(W).eq(0),w.has.firstLetter(n,t)&&(a=n)),a||W.each(function(){return w.has.firstLetter(e(this),t)?(a=e(this),!1):void 0}),a&&(w.verbose("Scrolling to next value with letter",t),w.set.scrollPosition(a),i.removeClass(S.selected),a.addClass(S.selected))},direction:function(e){"auto"==k.direction?w.is.onScreen(e)?w.remove.upward(e):w.set.upward(e):"upward"==k.direction&&w.set.upward(e)},upward:function(e){var t=e||z;t.addClass(S.upward)},value:function(e,t,n){var o=H.length>0,a=(!w.has.value(e),w.get.values()),r=e!==i?String(e):e;if(o){if(r==a&&(w.verbose("Skipping value update already same value",e,a),!w.is.initialLoad()))return;w.is.single()&&w.has.selectInput()&&w.can.extendSelect()&&(w.debug("Adding user option",e),w.add.optionValue(e)),w.debug("Updating input value",e,a),X=!0,H.val(e),k.fireOnInit===!1&&w.is.initialLoad()?w.debug("Input native change event ignored on initial load"):H.trigger("change"),X=!1}else w.verbose("Storing value in metadata",e,H),e!==a&&z.data(R.value,r);k.fireOnInit===!1&&w.is.initialLoad()?w.verbose("No callback on initial load",k.onChange):k.onChange.call($,e,t,n)},active:function(){z.addClass(S.active)},multiple:function(){z.addClass(S.multiple)},visible:function(){z.addClass(S.visible)},exactly:function(e,t){w.debug("Setting selected to exact values"),w.clear(),w.set.selected(e,t)},selected:function(t,n){var i=w.is.multiple();n=k.allowAdditions?n||w.get.itemWithAdditions(t):n||w.get.item(t),n&&(w.debug("Setting selected menu item to",n),w.is.single()?(w.remove.activeItem(),w.remove.selectedItem()):k.useLabels&&w.remove.selectedItem(),n.each(function(){var t=e(this),o=w.get.choiceText(t),a=w.get.choiceValue(t,o),r=t.hasClass(S.filtered),s=t.hasClass(S.active),c=t.hasClass(S.addition),l=i&&1==n.length;i?!s||c?(k.apiSettings&&k.saveRemoteData&&w.save.remoteData(o,a),k.useLabels?(w.add.value(a,o,t),w.add.label(a,o,l),w.set.activeItem(t),w.filterActive(),w.select.nextAvailable(n)):(w.add.value(a,o,t),w.set.text(w.add.variables(T.count)),w.set.activeItem(t))):r||(w.debug("Selected active value, removing label"),w.remove.selected(a)):(k.apiSettings&&k.saveRemoteData&&w.save.remoteData(o,a),w.set.text(o),w.set.value(a,o,t),t.addClass(S.active).addClass(S.selected))}))}},add:{label:function(t,n,i){var o,a=w.is.searchSelection()?N:L;return o=e("<a />").addClass(S.label).attr("data-value",t).html(O.label(t,n)),o=k.onLabelCreate.call(o,t,n),w.has.label(t)?void w.debug("Label already exists, skipping",t):(k.label.variation&&o.addClass(k.label.variation),void(i===!0?(w.debug("Animating in label",o),o.addClass(S.hidden).insertBefore(a).transition(k.label.transition,k.label.duration)):(w.debug("Adding selection label",o),o.insertBefore(a))))},message:function(t){var n=U.children(F.message),i=k.templates.message(w.add.variables(t));n.length>0?n.html(i):n=e("<div/>").html(i).addClass(S.message).appendTo(U)},optionValue:function(t){var n=H.find('option[value="'+t+'"]'),i=n.length>0;i||(x&&(x.disconnect(),w.verbose("Temporarily disconnecting mutation observer",t)),w.is.single()&&(w.verbose("Removing previous user addition"),H.find("option."+S.addition).remove()),e("<option/>").prop("value",t).addClass(S.addition).html(t).appendTo(H),w.verbose("Adding user addition as an <option>",t),x&&x.observe(H[0],{childList:!0,subtree:!0}))},userSuggestion:function(e){var t,n=U.children(F.addition),i=w.get.item(e),o=i&&i.not(F.addition).length,a=n.length>0;if(!k.useLabels||!w.has.maxSelections()){if(""===e||o)return void n.remove();W.removeClass(S.selected),a?(t=k.templates.addition(w.add.variables(T.addResult,e)),n.html(t).attr("data-"+R.value,e).attr("data-"+R.text,e).removeClass(S.filtered).addClass(S.selected),w.verbose("Replacing user suggestion with new value",n)):(n=w.create.userChoice(e),n.prependTo(U).addClass(S.selected),w.verbose("Adding item choice to menu corresponding with user choice addition",n))}},variables:function(e,t){var n,i,o=-1!==e.search("{count}"),a=-1!==e.search("{maxCount}"),r=-1!==e.search("{term}");return w.verbose("Adding templated variables to message",e),o&&(n=w.get.selectionCount(),e=e.replace("{count}",n)),a&&(n=w.get.selectionCount(),e=e.replace("{maxCount}",k.maxSelections)),r&&(i=t||w.get.query(),e=e.replace("{term}",i)),e},value:function(t,n,i){var o,a=w.get.values();return""===t?void w.debug("Cannot select blank values from multiselect"):(e.isArray(a)?(o=a.concat([t]),o=w.get.uniqueArray(o)):o=[t],w.has.selectInput()?w.can.extendSelect()&&(w.debug("Adding value to select",t,o,H),w.add.optionValue(t)):(o=o.join(k.delimiter),w.debug("Setting hidden input to delimited value",o,H)),k.fireOnInit===!1&&w.is.initialLoad()?w.verbose("Skipping onadd callback on initial load",k.onAdd):k.onAdd.call($,t,n,i),w.set.value(o,t,n,i),void w.check.maxSelections())}},remove:{active:function(){z.removeClass(S.active)},activeLabel:function(){z.find(F.label).removeClass(S.active)},loading:function(){z.removeClass(S.loading)},initialLoad:function(){v=!1},upward:function(e){var t=e||z;t.removeClass(S.upward)},visible:function(){z.removeClass(S.visible)},activeItem:function(){W.removeClass(S.active)},filteredItem:function(){k.useLabels&&w.has.maxSelections()||(k.useLabels&&w.is.multiple()?W.not("."+S.active).removeClass(S.filtered):W.removeClass(S.filtered))},optionValue:function(e){var t=H.find('option[value="'+e+'"]'),n=t.length>0;n&&t.hasClass(S.addition)&&(x&&(x.disconnect(),w.verbose("Temporarily disconnecting mutation observer",e)),t.remove(),w.verbose("Removing user addition as an <option>",e),x&&x.observe(H[0],{childList:!0,subtree:!0}))},message:function(){U.children(F.message).remove()},searchTerm:function(){w.verbose("Cleared search term"),N.val(""),w.set.filtered()},selected:function(t,n){return(n=k.allowAdditions?n||w.get.itemWithAdditions(t):n||w.get.item(t))?void n.each(function(){var t=e(this),n=w.get.choiceText(t),i=w.get.choiceValue(t,n);w.is.multiple()?k.useLabels?(w.remove.value(i,n,t),w.remove.label(i)):(w.remove.value(i,n,t),0===w.get.selectionCount()?w.set.placeholderText():w.set.text(w.add.variables(T.count))):w.remove.value(i,n,t),t.removeClass(S.filtered).removeClass(S.active),k.useLabels&&t.removeClass(S.selected)}):!1},selectedItem:function(){W.removeClass(S.selected)},value:function(e,t,n){var i,o=w.get.values();w.has.selectInput()?(w.verbose("Input is <select> removing selected option",e),i=w.remove.arrayValue(e,o),w.remove.optionValue(e)):(w.verbose("Removing from delimited values",e),i=w.remove.arrayValue(e,o),i=i.join(k.delimiter)),k.fireOnInit===!1&&w.is.initialLoad()?w.verbose("No callback on initial load",k.onRemove):k.onRemove.call($,e,t,n),w.set.value(i,t,n),w.check.maxSelections()},arrayValue:function(t,n){return e.isArray(n)||(n=[n]),n=e.grep(n,function(e){return t!=e}),w.verbose("Removed value from delimited string",t,n),n},label:function(e,t){var n=z.find(F.label),i=n.filter('[data-value="'+e+'"]');w.verbose("Removing label",i),i.remove()},activeLabels:function(e){e=e||z.find(F.label).filter("."+S.active),w.verbose("Removing active label selections",e),w.remove.labels(e)},labels:function(t){t=t||z.find(F.label),w.verbose("Removing labels",t),t.each(function(){var t=e(this).data(R.value),n=t!==i?String(t):t,o=w.is.userValue(n);o?(w.remove.value(n),w.remove.label(n)):w.remove.selected(n)})},tabbable:function(){w.has.search()?(w.debug("Searchable dropdown initialized"),N.attr("tabindex","-1"),U.attr("tabindex","-1")):(w.debug("Simple selection dropdown initialized"),z.attr("tabindex","-1"),U.attr("tabindex","-1"))}},has:{search:function(){return N.length>0},selectInput:function(){return H.is("select")},firstLetter:function(e,t){var n,i;return e&&0!==e.length&&"string"==typeof t?(n=w.get.choiceText(e,!1),t=t.toLowerCase(),i=String(n).charAt(0).toLowerCase(),t==i):!1},input:function(){return H.length>0},items:function(){return W.length>0},menu:function(){return U.length>0},message:function(){return 0!==U.children(F.message).length},label:function(e){var t=z.find(F.label);return t.filter('[data-value="'+e+'"]').length>0},maxSelections:function(){return k.maxSelections&&w.get.selectionCount()>=k.maxSelections},allResultsFiltered:function(){return W.filter(F.unselectable).length===W.length},query:function(){return""!==w.get.query()},value:function(t){var n=w.get.values(),i=e.isArray(n)?n&&-1!==e.inArray(t,n):n==t;return i?!0:!1}},is:{active:function(){return z.hasClass(S.active)},alreadySetup:function(){return z.is("select")&&z.parent(F.dropdown).length>0&&0===z.prev().length},animating:function(e){return e?e.transition&&e.transition("is animating"):U.transition&&U.transition("is animating")},disabled:function(){return z.hasClass(S.disabled)},focused:function(){return n.activeElement===z[0]},focusedOnSearch:function(){return n.activeElement===N[0]},allFiltered:function(){return(w.is.multiple()||w.has.search())&&!w.has.message()&&w.has.allResultsFiltered()},hidden:function(e){return!w.is.visible(e)},initialLoad:function(){return v},onScreen:function(e){var t,n=e||U,i=!0,o={};return n.addClass(S.loading),t={context:{scrollTop:I.scrollTop(),height:I.outerHeight()},menu:{offset:n.offset(),height:n.outerHeight()}},o={above:t.context.scrollTop<=t.menu.offset.top-t.menu.height,below:t.context.scrollTop+t.context.height>=t.menu.offset.top+t.menu.height},o.below?(w.verbose("Dropdown can fit in context downward",o),i=!0):o.below||o.above?(w.verbose("Dropdown cannot fit below, opening upward",o),i=!1):(w.verbose("Dropdown cannot fit in either direction, favoring downward",o),i=!0),n.removeClass(S.loading),i},inObject:function(t,n){var i=!1;return e.each(n,function(e,n){return n==t?(i=!0,!0):void 0}),i},multiple:function(){return z.hasClass(S.multiple)},single:function(){return!w.is.multiple()},selectMutation:function(t){var n=!1;return e.each(t,function(t,i){return i.target&&e(i.target).is("select")?(n=!0,!0):void 0}),n},search:function(){return z.hasClass(S.search)},searchSelection:function(){return w.has.search()&&1===N.parent(F.dropdown).length},selection:function(){return z.hasClass(S.selection)},userValue:function(t){return-1!==e.inArray(t,w.get.userValues())},upward:function(e){var t=e||z;return t.hasClass(S.upward)},visible:function(e){return e?e.hasClass(S.visible):U.hasClass(S.visible)}},can:{activate:function(e){return k.useLabels?!0:w.has.maxSelections()?w.has.maxSelections()&&e.hasClass(S.active)?!0:!1:!0},click:function(){return l||"click"==k.on},extendSelect:function(){return k.allowAdditions||k.apiSettings},show:function(){return!w.is.disabled()&&(w.has.items()||w.has.message())},useAPI:function(){return e.fn.api!==i}},animate:{show:function(t,n){var o,a=n||U,r=n?function(){}:function(){w.hideSubMenus(),w.hideOthers(),w.set.active()};t=e.isFunction(t)?t:function(){},w.verbose("Doing menu show animation",a),w.set.direction(n),o=w.get.transition(n),w.is.selection()&&w.set.scrollPosition(w.get.selectedItem(),!0),(w.is.hidden(a)||w.is.animating(a))&&("none"==o?(r(),a.transition("show"),t.call($)):e.fn.transition!==i&&z.transition("is supported")?a.transition({animation:o+" in",debug:k.debug,verbose:k.verbose,duration:k.duration,queue:!0,onStart:r,onComplete:function(){t.call($)}}):w.error(D.noTransition,o))},hide:function(t,n){var o=n||U,a=(n?.9*k.duration:k.duration,n?function(){}:function(){w.can.click()&&w.unbind.intent(),w.remove.active()}),r=w.get.transition(n);t=e.isFunction(t)?t:function(){},(w.is.visible(o)||w.is.animating(o))&&(w.verbose("Doing menu hide animation",o),"none"==r?(a(),o.transition("hide"),t.call($)):e.fn.transition!==i&&z.transition("is supported")?o.transition({animation:r+" out",duration:k.duration,debug:k.debug,verbose:k.verbose,queue:!0,onStart:a,onComplete:function(){"auto"==k.direction&&w.remove.upward(n),t.call($)}}):w.error(D.transition))}},hideAndClear:function(){w.remove.searchTerm(),w.has.maxSelections()||(w.has.search()?w.hide(function(){w.remove.filteredItem()}):w.hide())},delay:{show:function(){w.verbose("Delaying show event to ensure user intent"),clearTimeout(w.timer),w.timer=setTimeout(w.show,k.delay.show)},hide:function(){w.verbose("Delaying hide event to ensure user intent"),clearTimeout(w.timer),w.timer=setTimeout(w.hide,k.delay.hide)}},escape:{regExp:function(e){return e=String(e),e.replace(E.escape,"\\$&")}},setting:function(t,n){if(w.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,k,t);else{if(n===i)return k[t];k[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,w,t);else{if(n===i)return w[t];w[t]=n}},debug:function(){k.debug&&(k.performance?w.performance.log(arguments):(w.debug=Function.prototype.bind.call(console.info,console,k.name+":"),w.debug.apply(console,arguments)))},verbose:function(){k.verbose&&k.debug&&(k.performance?w.performance.log(arguments):(w.verbose=Function.prototype.bind.call(console.info,console,k.name+":"),w.verbose.apply(console,arguments)))},error:function(){w.error=Function.prototype.bind.call(console.error,console,k.name+":"),w.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;k.performance&&(t=(new Date).getTime(),i=u||t,n=t-i,u=t,d.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:$,"Execution Time":n})),clearTimeout(w.performance.timer),w.performance.timer=setTimeout(w.performance.display,500)},display:function(){var t=k.name+":",n=0;u=!1,clearTimeout(w.performance.timer),e.each(d,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",c&&(t+=" '"+c+"'"),(console.group!==i||console.table!==i)&&d.length>0&&(console.groupCollapsed(t),console.table?console.table(d):e.each(d,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),d=[]}},invoke:function(t,n,o){var r,s,c,l=Y;return n=n||g,o=$||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(w.error(D.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},f?(Y===i&&w.initialize(),w.invoke(m)):(Y!==i&&Y.invoke("destroy"),w.initialize())}),a!==i?a:r},e.fn.dropdown.settings={debug:!1,verbose:!1,performance:!0,on:"click",action:"activate",apiSettings:!1,saveRemoteData:!0,throttle:200,context:t,direction:"auto",keepOnScreen:!0,match:"both",fullTextSearch:!1,placeholder:"auto",preserveHTML:!0,sortSelect:!1,forceSelection:!0,allowAdditions:!1,maxSelections:!1,useLabels:!0,delimiter:",",showOnFocus:!0,allowTab:!0,allowCategorySelection:!1,fireOnInit:!1,transition:"auto",duration:200,glyphWidth:1.0714,label:{transition:"scale",duration:200,variation:!1},delay:{hide:300,show:200,search:20,touch:50},onChange:function(e,t,n){},onAdd:function(e,t,n){},onRemove:function(e,t,n){},onLabelSelect:function(e){},onLabelCreate:function(t,n){return e(this)},onNoResults:function(e){return!0},onShow:function(){},onHide:function(){},name:"Dropdown",namespace:"dropdown",message:{addResult:"Add <b>{term}</b>",count:"{count} selected",maxSelections:"Max {maxCount} selections",noResults:"No results found.",serverError:"There was an error contacting the server"},error:{action:"You called a dropdown action that was not defined",alreadySetup:"Once a select has been initialized behaviors must be called on the created ui dropdown",labels:"Allowing user additions currently requires the use of labels.",missingMultiple:"<select> requires multiple property to be set to correctly preserve multiple values",method:"The method you called is not defined.",noAPI:"The API module is required to load resources remotely",noStorage:"Saving remote data requires session storage",noTransition:"This module requires ui transitions <https://github.com/Semantic-Org/UI-Transition>"},regExp:{escape:/[-[\]{}()*+?.,\\^$|#\s]/g},metadata:{defaultText:"defaultText",defaultValue:"defaultValue",placeholderText:"placeholder",text:"text",value:"value"},fields:{values:"values",name:"name",value:"value"},selector:{addition:".addition",dropdown:".ui.dropdown",icon:"> .dropdown.icon",input:'> input[type="hidden"], > select',item:".item",label:"> .label",remove:"> .label > .delete.icon",siblingLabel:".label",menu:".menu",message:".message",menuIcon:".dropdown.icon",search:"input.search, .menu > .search > input",text:"> .text:not(.icon)",unselectable:".disabled, .filtered"},className:{active:"active",addition:"addition",animating:"animating",disabled:"disabled",dropdown:"ui dropdown",filtered:"filtered",hidden:"hidden transition",item:"item",label:"ui label",loading:"loading",menu:"menu",message:"message",multiple:"multiple",placeholder:"default",search:"search",selected:"selected",selection:"selection",upward:"upward",visible:"visible"}},e.fn.dropdown.settings.templates={dropdown:function(t){var n=t.placeholder||!1,i=(t.values||{},"");return i+='<i class="dropdown icon"></i>',i+=t.placeholder?'<div class="default text">'+n+"</div>":'<div class="text"></div>',i+='<div class="menu">',e.each(t.values,function(e,t){i+=t.disabled?'<div class="disabled item" data-value="'+t.value+'">'+t.name+"</div>":'<div class="item" data-value="'+t.value+'">'+t.name+"</div>"}),i+="</div>"},menu:function(t,n){var i=(t.values||{},"");return e.each(t[n.values],function(e,t){i+='<div class="item" data-value="'+t[n.value]+'">'+t[n.name]+"</div>"}),i},label:function(e,t){return t+'<i class="delete icon"></i>'},message:function(e){return e},addition:function(e){return e}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.embed=function(n){var o,a=e(this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1);return a.each(function(){var m,f=e.isPlainObject(n)?e.extend(!0,{},e.fn.embed.settings,n):e.extend({},e.fn.embed.settings),g=f.selector,p=f.className,v=f.sources,h=f.error,b=f.metadata,y=f.namespace,x=f.templates,C="."+y,w="module-"+y,k=(e(t),e(this)),S=k.find(g.placeholder),T=k.find(g.icon),A=k.find(g.embed),R=this,P=k.data(w);m={initialize:function(){m.debug("Initializing embed"),m.determine.autoplay(),m.create(),m.bind.events(),m.instantiate()},instantiate:function(){m.verbose("Storing instance of module",m),P=m,k.data(w,m)},destroy:function(){m.verbose("Destroying previous instance of embed"),m.reset(),k.removeData(w).off(C)},refresh:function(){m.verbose("Refreshing selector cache"),S=k.find(g.placeholder),T=k.find(g.icon),A=k.find(g.embed)},bind:{events:function(){m.has.placeholder()&&(m.debug("Adding placeholder events"),k.on("click"+C,g.placeholder,m.createAndShow).on("click"+C,g.icon,m.createAndShow))}},create:function(){var e=m.get.placeholder();e?m.createPlaceholder():m.createAndShow()},createPlaceholder:function(e){{var t=m.get.icon(),n=m.get.url();m.generate.embed(n)}e=e||m.get.placeholder(),k.html(x.placeholder(e,t)),m.debug("Creating placeholder for embed",e,t)},createEmbed:function(t){m.refresh(),t=t||m.get.url(),A=e("<div/>").addClass(p.embed).html(m.generate.embed(t)).appendTo(k),f.onCreate.call(R,t),m.debug("Creating embed object",A)},createAndShow:function(){m.createEmbed(),m.show()},change:function(e,t,n){m.debug("Changing video to ",e,t,n),k.data(b.source,e).data(b.id,t).data(b.url,n),m.create()},reset:function(){m.debug("Clearing embed and showing placeholder"),m.remove.active(),m.remove.embed(),m.showPlaceholder(),f.onReset.call(R)},show:function(){m.debug("Showing embed"),m.set.active(),f.onDisplay.call(R)},hide:function(){m.debug("Hiding embed"),m.showPlaceholder()},showPlaceholder:function(){m.debug("Showing placeholder image"),m.remove.active(),f.onPlaceholderDisplay.call(R)},get:{id:function(){return f.id||k.data(b.id)},placeholder:function(){return f.placeholder||k.data(b.placeholder)},icon:function(){return f.icon?f.icon:k.data(b.icon)!==i?k.data(b.icon):m.determine.icon()},source:function(e){return f.source?f.source:k.data(b.source)!==i?k.data(b.source):m.determine.source()},type:function(){var e=m.get.source();return v[e]!==i?v[e].type:!1},url:function(){return f.url?f.url:k.data(b.url)!==i?k.data(b.url):m.determine.url()}},determine:{autoplay:function(){m.should.autoplay()&&(f.autoplay=!0)},source:function(t){var n=!1;return t=t||m.get.url(),t&&e.each(v,function(e,i){return-1!==t.search(i.domain)?(n=e,!1):void 0}),n},icon:function(){var e=m.get.source();return v[e]!==i?v[e].icon:!1},url:function(){var e,t=f.id||k.data(b.id),n=f.source||k.data(b.source);return e=v[n]!==i?v[n].url.replace("{id}",t):!1,e&&k.data(b.url,e),e}},set:{active:function(){k.addClass(p.active)}},remove:{active:function(){k.removeClass(p.active)},embed:function(){A.empty()}},encode:{parameters:function(e){var t,n=[];for(t in e)n.push(encodeURIComponent(t)+"="+encodeURIComponent(e[t]));return n.join("&")}},generate:{embed:function(e){m.debug("Generating embed html");var t,n,i=m.get.source();return e=m.get.url(e),e?(n=m.generate.parameters(i),t=x.iframe(e,n)):m.error(h.noURL,k),t},parameters:function(t,n){var o=v[t]&&v[t].parameters!==i?v[t].parameters(f):{};return n=n||f.parameters,n&&(o=e.extend({},o,n)),o=f.onEmbed(o),m.encode.parameters(o)}},has:{placeholder:function(){return f.placeholder||k.data(b.placeholder)}},should:{autoplay:function(){return"auto"===f.autoplay?f.placeholder||k.data(b.placeholder)!==i:f.autoplay}},is:{video:function(){return"video"==m.get.type()}},setting:function(t,n){if(m.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,f,t);else{if(n===i)return f[t];f[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,m,t);else{if(n===i)return m[t];m[t]=n}},debug:function(){f.debug&&(f.performance?m.performance.log(arguments):(m.debug=Function.prototype.bind.call(console.info,console,f.name+":"),m.debug.apply(console,arguments)))},verbose:function(){f.verbose&&f.debug&&(f.performance?m.performance.log(arguments):(m.verbose=Function.prototype.bind.call(console.info,console,f.name+":"),m.verbose.apply(console,arguments)))},error:function(){m.error=Function.prototype.bind.call(console.error,console,f.name+":"),m.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;f.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:R,"Execution Time":n})), -clearTimeout(m.performance.timer),m.performance.timer=setTimeout(m.performance.display,500)},display:function(){var t=f.name+":",n=0;s=!1,clearTimeout(m.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),a.length>1&&(t+=" ("+a.length+")"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,a){var r,s,c,l=P;return n=n||d,a=R||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(m.error(h.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},u?(P===i&&m.initialize(),m.invoke(l)):(P!==i&&P.invoke("destroy"),m.initialize())}),o!==i?o:this},e.fn.embed.settings={name:"Embed",namespace:"embed",debug:!1,verbose:!1,performance:!0,icon:!1,source:!1,url:!1,id:!1,autoplay:"auto",color:"#444444",hd:!0,brandedUI:!1,parameters:!1,onDisplay:function(){},onPlaceholderDisplay:function(){},onReset:function(){},onCreate:function(e){},onEmbed:function(e){return e},metadata:{id:"id",icon:"icon",placeholder:"placeholder",source:"source",url:"url"},error:{noURL:"No URL specified",method:"The method you called is not defined"},className:{active:"active",embed:"embed"},selector:{embed:".embed",placeholder:".placeholder",icon:".icon"},sources:{youtube:{name:"youtube",type:"video",icon:"video play",domain:"youtube.com",url:"//www.youtube.com/embed/{id}",parameters:function(e){return{autohide:!e.brandedUI,autoplay:e.autoplay,color:e.colors||i,hq:e.hd,jsapi:e.api,modestbranding:!e.brandedUI}}},vimeo:{name:"vimeo",type:"video",icon:"video play",domain:"vimeo.com",url:"//player.vimeo.com/video/{id}",parameters:function(e){return{api:e.api,autoplay:e.autoplay,byline:e.brandedUI,color:e.colors||i,portrait:e.brandedUI,title:e.brandedUI}}}},templates:{iframe:function(e,t){return'<iframe src="'+e+"?"+t+'" width="100%" height="100%" frameborder="0" scrolling="no" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>'},placeholder:function(e,t){var n="";return t&&(n+='<i class="'+t+' icon"></i>'),e&&(n+='<img class="placeholder" src="'+e+'">'),n}},api:!0,onPause:function(){},onPlay:function(){},onStop:function(){}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.modal=function(o){var a,r=e(this),s=e(t),c=e(n),l=e("body"),u=r.selector||"",d=(new Date).getTime(),m=[],f=arguments[0],g="string"==typeof f,p=[].slice.call(arguments,1),v=t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)};return r.each(function(){var r,h,b,y,x,C,w,k,S,T=e.isPlainObject(o)?e.extend(!0,{},e.fn.modal.settings,o):e.extend({},e.fn.modal.settings),A=T.selector,R=T.className,P=T.namespace,E=T.error,F="."+P,D="module-"+P,O=e(this),q=e(T.context),j=O.find(A.close),z=this,I=O.data(D);S={initialize:function(){S.verbose("Initializing dimmer",q),S.create.id(),S.create.dimmer(),S.refreshModals(),S.bind.events(),T.observeChanges&&S.observeChanges(),S.instantiate()},instantiate:function(){S.verbose("Storing instance of modal"),I=S,O.data(D,I)},create:{dimmer:function(){var t={debug:T.debug,dimmerName:"modals",duration:{show:T.duration,hide:T.duration}},n=e.extend(!0,t,T.dimmerSettings);return T.inverted&&(n.variation=n.variation!==i?n.variation+" inverted":"inverted"),e.fn.dimmer===i?void S.error(E.dimmer):(S.debug("Creating dimmer with settings",n),y=q.dimmer(n),T.detachable?(S.verbose("Modal is detachable, moving content into dimmer"),y.dimmer("add content",O)):S.set.undetached(),T.blurring&&y.addClass(R.blurring),void(x=y.dimmer("get dimmer")))},id:function(){w=(Math.random().toString(16)+"000000000").substr(2,8),C="."+w,S.verbose("Creating unique id for element",w)}},destroy:function(){S.verbose("Destroying previous modal"),O.removeData(D).off(F),s.off(C),j.off(F),q.dimmer("destroy")},observeChanges:function(){"MutationObserver"in t&&(k=new MutationObserver(function(e){S.debug("DOM tree modified, refreshing"),S.refresh()}),k.observe(z,{childList:!0,subtree:!0}),S.debug("Setting up mutation observer",k))},refresh:function(){S.remove.scrolling(),S.cacheSizes(),S.set.screenHeight(),S.set.type(),S.set.position()},refreshModals:function(){h=O.siblings(A.modal),r=h.add(O)},attachEvents:function(t,n){var i=e(t);n=e.isFunction(S[n])?S[n]:S.toggle,i.length>0?(S.debug("Attaching modal events to element",t,n),i.off(F).on("click"+F,n)):S.error(E.notFound,t)},bind:{events:function(){S.verbose("Attaching events"),O.on("click"+F,A.close,S.event.close).on("click"+F,A.approve,S.event.approve).on("click"+F,A.deny,S.event.deny),s.on("resize"+C,S.event.resize)}},get:{id:function(){return(Math.random().toString(16)+"000000000").substr(2,8)}},event:{approve:function(){return T.onApprove.call(z,e(this))===!1?void S.verbose("Approve callback returned false cancelling hide"):void S.hide()},deny:function(){return T.onDeny.call(z,e(this))===!1?void S.verbose("Deny callback returned false cancelling hide"):void S.hide()},close:function(){S.hide()},click:function(t){var i=e(t.target),o=i.closest(A.modal).length>0,a=e.contains(n.documentElement,t.target);!o&&a&&(S.debug("Dimmer clicked, hiding all modals"),S.is.active()&&(S.remove.clickaway(),T.allowMultiple?S.hide():S.hideAll()))},debounce:function(e,t){clearTimeout(S.timer),S.timer=setTimeout(e,t)},keyboard:function(e){var t=e.which,n=27;t==n&&(T.closable?(S.debug("Escape key pressed hiding modal"),S.hide()):S.debug("Escape key pressed, but closable is set to false"),e.preventDefault())},resize:function(){y.dimmer("is active")&&v(S.refresh)}},toggle:function(){S.is.active()||S.is.animating()?S.hide():S.show()},show:function(t){t=e.isFunction(t)?t:function(){},S.refreshModals(),S.showModal(t)},hide:function(t){t=e.isFunction(t)?t:function(){},S.refreshModals(),S.hideModal(t)},showModal:function(t){t=e.isFunction(t)?t:function(){},S.is.animating()||!S.is.active()?(S.showDimmer(),S.cacheSizes(),S.set.position(),S.set.screenHeight(),S.set.type(),S.set.clickaway(),!T.allowMultiple&&S.others.active()?S.hideOthers(S.showModal):(T.onShow.call(z),T.transition&&e.fn.transition!==i&&O.transition("is supported")?(S.debug("Showing modal with css animations"),O.transition({debug:T.debug,animation:T.transition+" in",queue:T.queue,duration:T.duration,useFailSafe:!0,onComplete:function(){T.onVisible.apply(z),S.add.keyboardShortcuts(),S.save.focus(),S.set.active(),T.autofocus&&S.set.autofocus(),t()}})):S.error(E.noTransition))):S.debug("Modal is already visible")},hideModal:function(t,n){t=e.isFunction(t)?t:function(){},S.debug("Hiding modal"),T.onHide.call(z),(S.is.animating()||S.is.active())&&(T.transition&&e.fn.transition!==i&&O.transition("is supported")?(S.remove.active(),O.transition({debug:T.debug,animation:T.transition+" out",queue:T.queue,duration:T.duration,useFailSafe:!0,onStart:function(){S.others.active()||n||S.hideDimmer(),S.remove.keyboardShortcuts()},onComplete:function(){T.onHidden.call(z),S.restore.focus(),t()}})):S.error(E.noTransition))},showDimmer:function(){y.dimmer("is animating")||!y.dimmer("is active")?(S.debug("Showing dimmer"),y.dimmer("show")):S.debug("Dimmer already visible")},hideDimmer:function(){return y.dimmer("is animating")||y.dimmer("is active")?void y.dimmer("hide",function(){S.remove.clickaway(),S.remove.screenHeight()}):void S.debug("Dimmer is not visible cannot hide")},hideAll:function(t){var n=r.filter("."+R.active+", ."+R.animating);t=e.isFunction(t)?t:function(){},n.length>0&&(S.debug("Hiding all visible modals"),S.hideDimmer(),n.modal("hide modal",t))},hideOthers:function(t){var n=h.filter("."+R.active+", ."+R.animating);t=e.isFunction(t)?t:function(){},n.length>0&&(S.debug("Hiding other modals",h),n.modal("hide modal",t,!0))},others:{active:function(){return h.filter("."+R.active).length>0},animating:function(){return h.filter("."+R.animating).length>0}},add:{keyboardShortcuts:function(){S.verbose("Adding keyboard shortcuts"),c.on("keyup"+F,S.event.keyboard)}},save:{focus:function(){b=e(n.activeElement).blur()}},restore:{focus:function(){b&&b.length>0&&b.focus()}},remove:{active:function(){O.removeClass(R.active)},clickaway:function(){T.closable&&x.off("click"+C)},bodyStyle:function(){""===l.attr("style")&&(S.verbose("Removing style attribute"),l.removeAttr("style"))},screenHeight:function(){S.debug("Removing page height"),l.css("height","")},keyboardShortcuts:function(){S.verbose("Removing keyboard shortcuts"),c.off("keyup"+F)},scrolling:function(){y.removeClass(R.scrolling),O.removeClass(R.scrolling)}},cacheSizes:function(){var o=O.outerHeight();(S.cache===i||0!==o)&&(S.cache={pageHeight:e(n).outerHeight(),height:o+T.offset,contextHeight:"body"==T.context?e(t).height():y.height()}),S.debug("Caching modal and container sizes",S.cache)},can:{fit:function(){return S.cache.height+2*T.padding<S.cache.contextHeight}},is:{active:function(){return O.hasClass(R.active)},animating:function(){return O.transition("is supported")?O.transition("is animating"):O.is(":visible")},scrolling:function(){return y.hasClass(R.scrolling)},modernBrowser:function(){return!(t.ActiveXObject||"ActiveXObject"in t)}},set:{autofocus:function(){var e=O.find(":input").filter(":visible"),t=e.filter("[autofocus]"),n=t.length>0?t.first():e.first();n.length>0&&n.focus()},clickaway:function(){T.closable&&x.on("click"+C,S.event.click)},screenHeight:function(){S.can.fit()?l.css("height",""):(S.debug("Modal is taller than page content, resizing page height"),l.css("height",S.cache.height+2*T.padding))},active:function(){O.addClass(R.active)},scrolling:function(){y.addClass(R.scrolling),O.addClass(R.scrolling)},type:function(){S.can.fit()?(S.verbose("Modal fits on screen"),S.others.active()||S.others.animating()||S.remove.scrolling()):(S.verbose("Modal cannot fit on screen setting to scrolling"),S.set.scrolling())},position:function(){S.verbose("Centering modal on page",S.cache),O.css(S.can.fit()?{top:"",marginTop:-(S.cache.height/2)}:{marginTop:"",top:c.scrollTop()})},undetached:function(){y.addClass(R.undetached)}},setting:function(t,n){if(S.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,T,t);else{if(n===i)return T[t];T[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,S,t);else{if(n===i)return S[t];S[t]=n}},debug:function(){T.debug&&(T.performance?S.performance.log(arguments):(S.debug=Function.prototype.bind.call(console.info,console,T.name+":"),S.debug.apply(console,arguments)))},verbose:function(){T.verbose&&T.debug&&(T.performance?S.performance.log(arguments):(S.verbose=Function.prototype.bind.call(console.info,console,T.name+":"),S.verbose.apply(console,arguments)))},error:function(){S.error=Function.prototype.bind.call(console.error,console,T.name+":"),S.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;T.performance&&(t=(new Date).getTime(),i=d||t,n=t-i,d=t,m.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:z,"Execution Time":n})),clearTimeout(S.performance.timer),S.performance.timer=setTimeout(S.performance.display,500)},display:function(){var t=T.name+":",n=0;d=!1,clearTimeout(S.performance.timer),e.each(m,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",u&&(t+=" '"+u+"'"),(console.group!==i||console.table!==i)&&m.length>0&&(console.groupCollapsed(t),console.table?console.table(m):e.each(m,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),m=[]}},invoke:function(t,n,o){var r,s,c,l=I;return n=n||p,o=z||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},g?(I===i&&S.initialize(),S.invoke(f)):(I!==i&&I.invoke("destroy"),S.initialize())}),a!==i?a:this},e.fn.modal.settings={name:"Modal",namespace:"modal",debug:!1,verbose:!1,performance:!0,observeChanges:!1,allowMultiple:!1,detachable:!0,closable:!0,autofocus:!0,inverted:!1,blurring:!1,dimmerSettings:{closable:!1,useCSS:!0},context:"body",queue:!1,duration:500,offset:0,transition:"scale",padding:50,onShow:function(){},onVisible:function(){},onHide:function(){},onHidden:function(){},onApprove:function(){return!0},onDeny:function(){return!0},selector:{close:"> .close",approve:".actions .positive, .actions .approve, .actions .ok",deny:".actions .negative, .actions .deny, .actions .cancel",modal:".ui.modal"},error:{dimmer:"UI Dimmer, a required component is not included in this page",method:"The method you called is not defined.",notFound:"The element you specified could not be found"},className:{active:"active",animating:"animating",blurring:"blurring",scrolling:"scrolling",undetached:"undetached"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.nag=function(n){var o,a=e(this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1);return a.each(function(){{var a,m=e.isPlainObject(n)?e.extend(!0,{},e.fn.nag.settings,n):e.extend({},e.fn.nag.settings),f=(m.className,m.selector),g=m.error,p=m.namespace,v="."+p,h=p+"-module",b=e(this),y=(b.find(f.close),e(m.context?m.context:"body")),x=this,C=b.data(h);t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)}}a={initialize:function(){a.verbose("Initializing element"),b.on("click"+v,f.close,a.dismiss).data(h,a),m.detachable&&b.parent()[0]!==y[0]&&b.detach().prependTo(y),m.displayTime>0&&setTimeout(a.hide,m.displayTime),a.show()},destroy:function(){a.verbose("Destroying instance"),b.removeData(h).off(v)},show:function(){a.should.show()&&!b.is(":visible")&&(a.debug("Showing nag",m.animation.show),"fade"==m.animation.show?b.fadeIn(m.duration,m.easing):b.slideDown(m.duration,m.easing))},hide:function(){a.debug("Showing nag",m.animation.hide),"fade"==m.animation.show?b.fadeIn(m.duration,m.easing):b.slideUp(m.duration,m.easing)},onHide:function(){a.debug("Removing nag",m.animation.hide),b.remove(),m.onHide&&m.onHide()},dismiss:function(e){m.storageMethod&&a.storage.set(m.key,m.value),a.hide(),e.stopImmediatePropagation(),e.preventDefault()},should:{show:function(){return m.persist?(a.debug("Persistent nag is set, can show nag"),!0):a.storage.get(m.key)!=m.value.toString()?(a.debug("Stored value is not set, can show nag",a.storage.get(m.key)),!0):(a.debug("Stored value is set, cannot show nag",a.storage.get(m.key)),!1)}},get:{storageOptions:function(){var e={};return m.expires&&(e.expires=m.expires),m.domain&&(e.domain=m.domain),m.path&&(e.path=m.path),e}},clear:function(){a.storage.remove(m.key)},storage:{set:function(n,o){var r=a.get.storageOptions();if("localstorage"==m.storageMethod&&t.localStorage!==i)t.localStorage.setItem(n,o),a.debug("Value stored using local storage",n,o);else if("sessionstorage"==m.storageMethod&&t.sessionStorage!==i)t.sessionStorage.setItem(n,o),a.debug("Value stored using session storage",n,o);else{if(e.cookie===i)return void a.error(g.noCookieStorage);e.cookie(n,o,r),a.debug("Value stored using cookie",n,o,r)}},get:function(n,o){var r;return"localstorage"==m.storageMethod&&t.localStorage!==i?r=t.localStorage.getItem(n):"sessionstorage"==m.storageMethod&&t.sessionStorage!==i?r=t.sessionStorage.getItem(n):e.cookie!==i?r=e.cookie(n):a.error(g.noCookieStorage),("undefined"==r||"null"==r||r===i||null===r)&&(r=i),r},remove:function(n){var o=a.get.storageOptions();"localstorage"==m.storageMethod&&t.localStorage!==i?t.localStorage.removeItem(n):"sessionstorage"==m.storageMethod&&t.sessionStorage!==i?t.sessionStorage.removeItem(n):e.cookie!==i?e.removeCookie(n,o):a.error(g.noStorage)}},setting:function(t,n){if(a.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,m,t);else{if(n===i)return m[t];m[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,a,t);else{if(n===i)return a[t];a[t]=n}},debug:function(){m.debug&&(m.performance?a.performance.log(arguments):(a.debug=Function.prototype.bind.call(console.info,console,m.name+":"),a.debug.apply(console,arguments)))},verbose:function(){m.verbose&&m.debug&&(m.performance?a.performance.log(arguments):(a.verbose=Function.prototype.bind.call(console.info,console,m.name+":"),a.verbose.apply(console,arguments)))},error:function(){a.error=Function.prototype.bind.call(console.error,console,m.name+":"),a.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;m.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:x,"Execution Time":n})),clearTimeout(a.performance.timer),a.performance.timer=setTimeout(a.performance.display,500)},display:function(){var t=m.name+":",n=0;s=!1,clearTimeout(a.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,r){var s,c,l,u=C;return n=n||d,r=x||r,"string"==typeof t&&u!==i&&(t=t.split(/[\. ]/),s=t.length-1,e.each(t,function(n,o){var r=n!=s?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(u[r])&&n!=s)u=u[r];else{if(u[r]!==i)return c=u[r],!1;if(!e.isPlainObject(u[o])||n==s)return u[o]!==i?(c=u[o],!1):(a.error(g.method,t),!1);u=u[o]}})),e.isFunction(c)?l=c.apply(r,n):c!==i&&(l=c),e.isArray(o)?o.push(l):o!==i?o=[o,l]:l!==i&&(o=l),c}},u?(C===i&&a.initialize(),a.invoke(l)):(C!==i&&C.invoke("destroy"),a.initialize())}),o!==i?o:this},e.fn.nag.settings={name:"Nag",debug:!1,verbose:!1,performance:!0,namespace:"Nag",persist:!1,displayTime:0,animation:{show:"slide",hide:"slide"},context:!1,detachable:!1,expires:30,domain:!1,path:"/",storageMethod:"cookie",key:"nag",value:"dismiss",error:{noCookieStorage:"$.cookie is not included. A storage solution is required.",noStorage:"Neither $.cookie or store is defined. A storage solution is required for storing state",method:"The method you called is not defined."},className:{bottom:"bottom",fixed:"fixed"},selector:{close:".close.icon"},speed:500,easing:"easeOutQuad",onHide:function(){}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.popup=function(o){var a,r=e(this),s=e(n),c=e(t),l=e("body"),u=r.selector||"",d=!0,m=(new Date).getTime(),f=[],g=arguments[0],p="string"==typeof g,v=[].slice.call(arguments,1);return r.each(function(){var n,r,h,b,y,x=e.isPlainObject(o)?e.extend(!0,{},e.fn.popup.settings,o):e.extend({},e.fn.popup.settings),C=x.selector,w=x.className,k=x.error,S=x.metadata,T=x.namespace,A="."+x.namespace,R="module-"+T,P=e(this),E=e(x.context),F=x.target?e(x.target):P,D=0,O=!1,q=!1,j=this,z=P.data(R);y={initialize:function(){y.debug("Initializing",P),y.createID(),y.bind.events(),!y.exists()&&x.preserve&&y.create(),y.instantiate()},instantiate:function(){y.verbose("Storing instance",y),z=y,P.data(R,z)},refresh:function(){x.popup?n=e(x.popup).eq(0):x.inline&&(n=F.nextAll(C.popup).eq(0),x.popup=n),x.popup?(n.addClass(w.loading),r=y.get.offsetParent(),n.removeClass(w.loading),x.movePopup&&y.has.popup()&&y.get.offsetParent(n)[0]!==r[0]&&(y.debug("Moving popup to the same offset parent as activating element"),n.detach().appendTo(r))):r=x.inline?y.get.offsetParent(F):y.has.popup()?y.get.offsetParent(n):l,r.is("html")&&r[0]!==l[0]&&(y.debug("Setting page as offset parent"),r=l),y.get.variation()&&y.set.variation()},reposition:function(){y.refresh(),y.set.position()},destroy:function(){y.debug("Destroying previous module"),n&&!x.preserve&&y.removePopup(),clearTimeout(y.hideTimer),clearTimeout(y.showTimer),c.off(h),P.off(A).removeData(R)},event:{start:function(t){var n=e.isPlainObject(x.delay)?x.delay.show:x.delay;clearTimeout(y.hideTimer),q||(y.showTimer=setTimeout(y.show,n))},end:function(){var t=e.isPlainObject(x.delay)?x.delay.hide:x.delay;clearTimeout(y.showTimer),y.hideTimer=setTimeout(y.hide,t)},touchstart:function(e){q=!0,y.show()},resize:function(){y.is.visible()&&y.set.position()},hideGracefully:function(t){t&&0===e(t.target).closest(C.popup).length?(y.debug("Click occurred outside popup hiding popup"),y.hide()):y.debug("Click was inside popup, keeping popup open")}},create:function(){var t=y.get.html(),i=y.get.title(),o=y.get.content();t||o||i?(y.debug("Creating pop-up html"),t||(t=x.templates.popup({title:i,content:o})),n=e("<div/>").addClass(w.popup).data(S.activator,P).html(t),x.inline?(y.verbose("Inserting popup element inline",n),n.insertAfter(P)):(y.verbose("Appending popup element to body",n),n.appendTo(E)),y.refresh(),y.set.variation(),x.hoverable&&y.bind.popup(),x.onCreate.call(n,j)):0!==F.next(C.popup).length?(y.verbose("Pre-existing popup found"),x.inline=!0,x.popups=F.next(C.popup).data(S.activator,P),y.refresh(),x.hoverable&&y.bind.popup()):x.popup?(e(x.popup).data(S.activator,P),y.verbose("Used popup specified in settings"),y.refresh(),x.hoverable&&y.bind.popup()):y.debug("No content specified skipping display",j)},createID:function(){b=(Math.random().toString(16)+"000000000").substr(2,8),h="."+b,y.verbose("Creating unique id for element",b)},toggle:function(){y.debug("Toggling pop-up"),y.is.hidden()?(y.debug("Popup is hidden, showing pop-up"),y.unbind.close(),y.show()):(y.debug("Popup is visible, hiding pop-up"),y.hide())},show:function(e){if(e=e||function(){},y.debug("Showing pop-up",x.transition),y.is.hidden()&&(!y.is.active()||!y.is.dropdown())){if(y.exists()||y.create(),x.onShow.call(n,j)===!1)return void y.debug("onShow callback returned false, cancelling popup animation");x.preserve||x.popup||y.refresh(),n&&y.set.position()&&(y.save.conditions(),x.exclusive&&y.hideAll(),y.animate.show(e))}},hide:function(e){if(e=e||function(){},y.is.visible()||y.is.animating()){if(x.onHide.call(n,j)===!1)return void y.debug("onHide callback returned false, cancelling popup animation");y.remove.visible(),y.unbind.close(),y.restore.conditions(),y.animate.hide(e)}},hideAll:function(){e(C.popup).filter("."+w.visible).each(function(){e(this).data(S.activator).popup("hide")})},exists:function(){return n?x.inline||x.popup?y.has.popup():n.closest(E).length>=1?!0:!1:!1},removePopup:function(){y.has.popup()&&!x.popup&&(y.debug("Removing popup",n),n.remove(),n=i,x.onRemove.call(n,j))},save:{conditions:function(){y.cache={title:P.attr("title")},y.cache.title&&P.removeAttr("title"),y.verbose("Saving original attributes",y.cache.title)}},restore:{conditions:function(){return y.cache&&y.cache.title&&(P.attr("title",y.cache.title),y.verbose("Restoring original attributes",y.cache.title)),!0}},animate:{show:function(t){t=e.isFunction(t)?t:function(){},x.transition&&e.fn.transition!==i&&P.transition("is supported")?(y.set.visible(),n.transition({animation:x.transition+" in",queue:!1,debug:x.debug,verbose:x.verbose,duration:x.duration,onComplete:function(){y.bind.close(),t.call(n,j),x.onVisible.call(n,j)}})):y.error(k.noTransition)},hide:function(t){return t=e.isFunction(t)?t:function(){},y.debug("Hiding pop-up"),x.onHide.call(n,j)===!1?void y.debug("onHide callback returned false, cancelling popup animation"):void(x.transition&&e.fn.transition!==i&&P.transition("is supported")?n.transition({animation:x.transition+" out",queue:!1,duration:x.duration,debug:x.debug,verbose:x.verbose,onComplete:function(){y.reset(),t.call(n,j),x.onHidden.call(n,j)}}):y.error(k.noTransition))}},get:{html:function(){return P.removeData(S.html),P.data(S.html)||x.html},title:function(){return P.removeData(S.title),P.data(S.title)||x.title},content:function(){return P.removeData(S.content),P.data(S.content)||P.attr("title")||x.content},variation:function(){return P.removeData(S.variation),P.data(S.variation)||x.variation},popupOffset:function(){return n.offset()},calculations:function(){var e,i=F[0],o=x.inline||x.popup?F.position():F.offset(),a={};return a={target:{element:F[0],width:F.outerWidth(),height:F.outerHeight(),top:o.top,left:o.left,margin:{}},popup:{width:n.outerWidth(),height:n.outerHeight()},parent:{width:r.outerWidth(),height:r.outerHeight()},screen:{scroll:{top:c.scrollTop(),left:c.scrollLeft()},width:c.width(),height:c.height()}},x.setFluidWidth&&y.is.fluid()&&(a.container={width:n.parent().outerWidth()},a.popup.width=a.container.width),a.target.margin.top=x.inline?parseInt(t.getComputedStyle(i).getPropertyValue("margin-top"),10):0,a.target.margin.left=x.inline?y.is.rtl()?parseInt(t.getComputedStyle(i).getPropertyValue("margin-right"),10):parseInt(t.getComputedStyle(i).getPropertyValue("margin-left"),10):0,e=a.screen,a.boundary={top:e.scroll.top,bottom:e.scroll.top+e.height,left:e.scroll.left,right:e.scroll.left+e.width},a},id:function(){return b},startEvent:function(){return"hover"==x.on?"mouseenter":"focus"==x.on?"focus":!1},scrollEvent:function(){return"scroll"},endEvent:function(){return"hover"==x.on?"mouseleave":"focus"==x.on?"blur":!1},distanceFromBoundary:function(e,t){var n,i,o={};return e=e||y.get.offset(),t=t||y.get.calculations(),n=t.popup,i=t.boundary,e&&(o={top:e.top-i.top,left:e.left-i.left,right:i.right-(e.left+n.width),bottom:i.bottom-(e.top+n.height)},y.verbose("Distance from boundaries determined",e,o)),o},offsetParent:function(t){var n=t!==i?t[0]:P[0],o=n.parentNode,a=e(o);if(o)for(var r="none"===a.css("transform"),s="static"===a.css("position"),c=a.is("html");o&&!c&&s&&r;)o=o.parentNode,a=e(o),r="none"===a.css("transform"),s="static"===a.css("position"),c=a.is("html");return a&&a.length>0?a:e()},positions:function(){return{"top left":!1,"top center":!1,"top right":!1,"bottom left":!1,"bottom center":!1,"bottom right":!1,"left center":!1,"right center":!1}},nextPosition:function(e){var t=e.split(" "),n=t[0],i=t[1],o={top:"bottom",bottom:"top",left:"right",right:"left"},a={left:"center",center:"right",right:"left"},r={"top left":"top center","top center":"top right","top right":"right center","right center":"bottom right","bottom right":"bottom center","bottom center":"bottom left","bottom left":"left center","left center":"top left"},s="top"==n||"bottom"==n,c=!1,l=!1,u=!1;return O||(y.verbose("All available positions available"),O=y.get.positions()),y.debug("Recording last position tried",e),O[e]=!0,"opposite"===x.prefer&&(u=[o[n],i],u=u.join(" "),c=O[u]===!0,y.debug("Trying opposite strategy",u)),"adjacent"===x.prefer&&s&&(u=[n,a[i]],u=u.join(" "),l=O[u]===!0,y.debug("Trying adjacent strategy",u)),(l||c)&&(y.debug("Using backup position",u),u=r[e]),u}},set:{position:function(e,t){if(0===F.length||0===n.length)return void y.error(k.notFound);var o,a,r,s,c,l,u,d;if(t=t||y.get.calculations(),e=e||P.data(S.position)||x.position,o=P.data(S.offset)||x.offset,a=x.distanceAway,r=t.target,s=t.popup,c=t.parent,0===r.width&&0===r.height)return y.debug("Popup target is hidden, no action taken"),!1;switch(x.inline&&(y.debug("Adding margin to calculation",r.margin),"left center"==e||"right center"==e?(o+=r.margin.top,a+=-r.margin.left):"top left"==e||"top center"==e||"top right"==e?(o+=r.margin.left,a-=r.margin.top):(o+=r.margin.left,a+=r.margin.top)),y.debug("Determining popup position from calculations",e,t),y.is.rtl()&&(e=e.replace(/left|right/g,function(e){return"left"==e?"right":"left"}),y.debug("RTL: Popup position updated",e)),D==x.maxSearchDepth&&"string"==typeof x.lastResort&&(e=x.lastResort),e){case"top left":l={top:"auto",bottom:c.height-r.top+a,left:r.left+o,right:"auto"};break;case"top center":l={bottom:c.height-r.top+a,left:r.left+r.width/2-s.width/2+o,top:"auto",right:"auto"};break;case"top right":l={bottom:c.height-r.top+a,right:c.width-r.left-r.width-o,top:"auto",left:"auto"};break;case"left center":l={top:r.top+r.height/2-s.height/2+o,right:c.width-r.left+a,left:"auto",bottom:"auto"};break;case"right center":l={top:r.top+r.height/2-s.height/2+o,left:r.left+r.width+a,bottom:"auto",right:"auto"};break;case"bottom left":l={top:r.top+r.height+a,left:r.left+o,bottom:"auto",right:"auto"};break;case"bottom center":l={top:r.top+r.height+a,left:r.left+r.width/2-s.width/2+o,bottom:"auto",right:"auto"};break;case"bottom right":l={top:r.top+r.height+a,right:c.width-r.left-r.width-o,left:"auto",bottom:"auto"}}if(l===i&&y.error(k.invalidPosition,e),y.debug("Calculated popup positioning values",l),n.css(l).removeClass(w.position).addClass(e).addClass(w.loading),u=y.get.popupOffset(),d=y.get.distanceFromBoundary(u,t),y.is.offstage(d,e)){if(y.debug("Position is outside viewport",e),D<x.maxSearchDepth)return D++,e=y.get.nextPosition(e),y.debug("Trying new position",e),n?y.set.position(e,t):!1;if(!x.lastResort)return y.debug("Popup could not find a position to display",n),y.error(k.cannotPlace,j),y.remove.attempts(),y.remove.loading(),y.reset(),!1;y.debug("No position found, showing with last position")}return y.debug("Position is on stage",e),y.remove.attempts(),y.remove.loading(),x.setFluidWidth&&y.is.fluid()&&y.set.fluidWidth(t),!0},fluidWidth:function(e){e=e||y.get.calculations(),y.debug("Automatically setting element width to parent width",e.parent.width),n.css("width",e.container.width)},variation:function(e){e=e||y.get.variation(),e&&y.has.popup()&&(y.verbose("Adding variation to popup",e),n.addClass(e))},visible:function(){P.addClass(w.visible)}},remove:{loading:function(){n.removeClass(w.loading)},variation:function(e){e=e||y.get.variation(),e&&(y.verbose("Removing variation",e),n.removeClass(e))},visible:function(){P.removeClass(w.visible)},attempts:function(){y.verbose("Resetting all searched positions"),D=0,O=!1}},bind:{events:function(){y.debug("Binding popup events to module"),"click"==x.on&&P.on("click"+A,y.toggle),"hover"==x.on&&d&&P.on("touchstart"+A,y.event.touchstart),y.get.startEvent()&&P.on(y.get.startEvent()+A,y.event.start).on(y.get.endEvent()+A,y.event.end),x.target&&y.debug("Target set to element",F),c.on("resize"+h,y.event.resize)},popup:function(){y.verbose("Allowing hover events on popup to prevent closing"),n&&y.has.popup()&&n.on("mouseenter"+A,y.event.start).on("mouseleave"+A,y.event.end)},close:function(){(x.hideOnScroll===!0||"auto"==x.hideOnScroll&&"click"!=x.on)&&(s.one(y.get.scrollEvent()+h,y.event.hideGracefully),E.one(y.get.scrollEvent()+h,y.event.hideGracefully)),"hover"==x.on&&q&&(y.verbose("Binding popup close event to document"),s.on("touchstart"+h,function(e){y.verbose("Touched away from popup"),y.event.hideGracefully.call(j,e)})),"click"==x.on&&x.closable&&(y.verbose("Binding popup close event to document"),s.on("click"+h,function(e){y.verbose("Clicked away from popup"),y.event.hideGracefully.call(j,e)}))}},unbind:{close:function(){(x.hideOnScroll===!0||"auto"==x.hideOnScroll&&"click"!=x.on)&&(s.off("scroll"+h,y.hide),E.off("scroll"+h,y.hide)),"hover"==x.on&&q&&(s.off("touchstart"+h),q=!1),"click"==x.on&&x.closable&&(y.verbose("Removing close event from document"),s.off("click"+h))}},has:{popup:function(){return n&&n.length>0}},is:{offstage:function(t,n){var i=[];return e.each(t,function(e,t){t<-x.jitter&&(y.debug("Position exceeds allowable distance from edge",e,t,n),i.push(e))}),i.length>0?!0:!1},active:function(){return P.hasClass(w.active)},animating:function(){return n&&n.hasClass(w.animating)},fluid:function(){return n&&n.hasClass(w.fluid)},visible:function(){return n&&n.hasClass(w.visible)},dropdown:function(){return P.hasClass(w.dropdown)},hidden:function(){return!y.is.visible()},rtl:function(){return"rtl"==P.css("direction")}},reset:function(){y.remove.visible(),x.preserve?e.fn.transition!==i&&n.transition("remove transition"):y.removePopup()},setting:function(t,n){if(e.isPlainObject(t))e.extend(!0,x,t); -else{if(n===i)return x[t];x[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,y,t);else{if(n===i)return y[t];y[t]=n}},debug:function(){x.debug&&(x.performance?y.performance.log(arguments):(y.debug=Function.prototype.bind.call(console.info,console,x.name+":"),y.debug.apply(console,arguments)))},verbose:function(){x.verbose&&x.debug&&(x.performance?y.performance.log(arguments):(y.verbose=Function.prototype.bind.call(console.info,console,x.name+":"),y.verbose.apply(console,arguments)))},error:function(){y.error=Function.prototype.bind.call(console.error,console,x.name+":"),y.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;x.performance&&(t=(new Date).getTime(),i=m||t,n=t-i,m=t,f.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:j,"Execution Time":n})),clearTimeout(y.performance.timer),y.performance.timer=setTimeout(y.performance.display,500)},display:function(){var t=x.name+":",n=0;m=!1,clearTimeout(y.performance.timer),e.each(f,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",u&&(t+=" '"+u+"'"),(console.group!==i||console.table!==i)&&f.length>0&&(console.groupCollapsed(t),console.table?console.table(f):e.each(f,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),f=[]}},invoke:function(t,n,o){var r,s,c,l=z;return n=n||v,o=j||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},p?(z===i&&y.initialize(),y.invoke(g)):(z!==i&&z.invoke("destroy"),y.initialize())}),a!==i?a:this},e.fn.popup.settings={name:"Popup",debug:!1,verbose:!1,performance:!0,namespace:"popup",onCreate:function(){},onRemove:function(){},onShow:function(){},onVisible:function(){},onHide:function(){},onHidden:function(){},on:"hover",addTouchEvents:!0,position:"top left",variation:"",movePopup:!0,target:!1,popup:!1,inline:!1,preserve:!1,hoverable:!1,content:!1,html:!1,title:!1,closable:!0,hideOnScroll:"auto",exclusive:!1,context:"body",prefer:"opposite",lastResort:!1,delay:{show:50,hide:70},setFluidWidth:!0,duration:200,transition:"scale",distanceAway:0,jitter:2,offset:0,maxSearchDepth:15,error:{invalidPosition:"The position you specified is not a valid position",cannotPlace:"Popup does not fit within the boundaries of the viewport",method:"The method you called is not defined.",noTransition:"This module requires ui transitions <https://github.com/Semantic-Org/UI-Transition>",notFound:"The target or popup you specified does not exist on the page"},metadata:{activator:"activator",content:"content",html:"html",offset:"offset",position:"position",title:"title",variation:"variation"},className:{active:"active",animating:"animating",dropdown:"dropdown",fluid:"fluid",loading:"loading",popup:"ui popup",position:"top left center bottom right",visible:"visible"},selector:{popup:".ui.popup"},templates:{escape:function(e){var t=/[&<>"'`]/g,n=/[&<>"'`]/,i={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},o=function(e){return i[e]};return n.test(e)?e.replace(t,o):e},popup:function(t){var n="",o=e.fn.popup.settings.templates.escape;return typeof t!==i&&(typeof t.title!==i&&t.title&&(t.title=o(t.title),n+='<div class="header">'+t.title+"</div>"),typeof t.content!==i&&t.content&&(t.content=o(t.content),n+='<div class="content">'+t.content+"</div>")),n}}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.progress=function(t){var o,a=e(this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1);return a.each(function(){var a,m,f=e.isPlainObject(t)?e.extend(!0,{},e.fn.progress.settings,t):e.extend({},e.fn.progress.settings),g=f.className,p=f.metadata,v=f.namespace,h=f.selector,b=f.error,y="."+v,x="module-"+v,C=e(this),w=e(this).find(h.bar),k=e(this).find(h.progress),S=e(this).find(h.label),T=this,A=C.data(x),R=!1;m={initialize:function(){m.debug("Initializing progress bar",f),m.set.duration(),m.set.transitionEvent(),m.read.metadata(),m.read.settings(),m.instantiate()},instantiate:function(){m.verbose("Storing instance of progress",m),A=m,C.data(x,m)},destroy:function(){m.verbose("Destroying previous progress for",C),clearInterval(A.interval),m.remove.state(),C.removeData(x),A=i},reset:function(){m.set.percent(0)},complete:function(){(m.percent===i||m.percent<100)&&m.set.percent(100)},read:{metadata:function(){var e={percent:C.data(p.percent),total:C.data(p.total),value:C.data(p.value)};e.percent&&(m.debug("Current percent value set from metadata",e.percent),m.set.percent(e.percent)),e.total&&(m.debug("Total value set from metadata",e.total),m.set.total(e.total)),e.value&&(m.debug("Current value set from metadata",e.value),m.set.value(e.value),m.set.progress(e.value))},settings:function(){f.total!==!1&&(m.debug("Current total set in settings",f.total),m.set.total(f.total)),f.value!==!1&&(m.debug("Current value set in settings",f.value),m.set.value(f.value),m.set.progress(m.value)),f.percent!==!1&&(m.debug("Current percent set in settings",f.percent),m.set.percent(f.percent))}},increment:function(e){var t,n,i;m.has.total()?(n=m.get.value(),e=e||1,i=n+e,t=m.get.total(),m.debug("Incrementing value",n,i,t),i>t&&(m.debug("Value cannot increment above total",t),i=t)):(n=m.get.percent(),e=e||m.get.randomValue(),i=n+e,t=100,m.debug("Incrementing percentage by",n,i),i>t&&(m.debug("Value cannot increment above 100 percent"),i=t)),m.set.progress(i)},decrement:function(e){var t,n,i=m.get.total();i?(t=m.get.value(),e=e||1,n=t-e,m.debug("Decrementing value by",e,t)):(t=m.get.percent(),e=e||m.get.randomValue(),n=t-e,m.debug("Decrementing percentage by",e,t)),0>n&&(m.debug("Value cannot decrement below 0"),n=0),m.set.progress(n)},has:{total:function(){return m.get.total()!==!1}},get:{text:function(e){var t=m.value||0,n=m.total||0,i=R?m.get.displayPercent():m.percent||0,o=m.total>0?n-t:100-i;return e=e||"",e=e.replace("{value}",t).replace("{total}",n).replace("{left}",o).replace("{percent}",i),m.debug("Adding variables to progress bar text",e),e},randomValue:function(){return m.debug("Generating random increment percentage"),Math.floor(Math.random()*f.random.max+f.random.min)},numericValue:function(e){return"string"==typeof e?""!==e.replace(/[^\d.]/g,"")?+e.replace(/[^\d.]/g,""):!1:e},transitionEnd:function(){var e,t=n.createElement("element"),o={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(e in o)if(t.style[e]!==i)return o[e]},displayPercent:function(){var e=w.width(),t=C.width(),n=parseInt(w.css("min-width"),10),i=e>n?e/t*100:m.percent;return f.precision>0?Math.round(10*i*f.precision)/(10*f.precision):Math.round(i)},percent:function(){return m.percent||0},value:function(){return m.value||0},total:function(){return m.total||!1}},is:{success:function(){return C.hasClass(g.success)},warning:function(){return C.hasClass(g.warning)},error:function(){return C.hasClass(g.error)},active:function(){return C.hasClass(g.active)},visible:function(){return C.is(":visible")}},remove:{state:function(){m.verbose("Removing stored state"),delete m.total,delete m.percent,delete m.value},active:function(){m.verbose("Removing active state"),C.removeClass(g.active)},success:function(){m.verbose("Removing success state"),C.removeClass(g.success)},warning:function(){m.verbose("Removing warning state"),C.removeClass(g.warning)},error:function(){m.verbose("Removing error state"),C.removeClass(g.error)}},set:{barWidth:function(e){e>100?m.error(b.tooHigh,e):0>e?m.error(b.tooLow,e):(w.css("width",e+"%"),C.attr("data-percent",parseInt(e,10)))},duration:function(e){e=e||f.duration,e="number"==typeof e?e+"ms":e,m.verbose("Setting progress bar transition duration",e),w.css({"transition-duration":e})},percent:function(e){e="string"==typeof e?+e.replace("%",""):e,e=f.precision>0?Math.round(10*e*f.precision)/(10*f.precision):Math.round(e),m.percent=e,m.has.total()||(m.value=f.precision>0?Math.round(e/100*m.total*10*f.precision)/(10*f.precision):Math.round(e/100*m.total*10)/10,f.limitValues&&(m.value=m.value>100?100:m.value<0?0:m.value)),m.set.barWidth(e),m.set.labelInterval(),m.set.labels(),f.onChange.call(T,e,m.value,m.total)},labelInterval:function(){var e=function(){m.verbose("Bar finished animating, removing continuous label updates"),clearInterval(m.interval),R=!1,m.set.labels()};clearInterval(m.interval),w.one(a+y,e),m.timer=setTimeout(e,f.duration+100),R=!0,m.interval=setInterval(m.set.labels,f.framerate)},labels:function(){m.verbose("Setting both bar progress and outer label text"),m.set.barLabel(),m.set.state()},label:function(e){e=e||"",e&&(e=m.get.text(e),m.debug("Setting label to text",e),S.text(e))},state:function(e){e=e!==i?e:m.percent,100===e?!f.autoSuccess||m.is.warning()||m.is.error()?(m.verbose("Reached 100% removing active state"),m.remove.active()):(m.set.success(),m.debug("Automatically triggering success at 100%")):e>0?(m.verbose("Adjusting active progress bar label",e),m.set.active()):(m.remove.active(),m.set.label(f.text.active))},barLabel:function(e){e!==i?k.text(m.get.text(e)):"ratio"==f.label&&m.total?(m.debug("Adding ratio to bar label"),k.text(m.get.text(f.text.ratio))):"percent"==f.label&&(m.debug("Adding percentage to bar label"),k.text(m.get.text(f.text.percent)))},active:function(e){e=e||f.text.active,m.debug("Setting active state"),f.showActivity&&!m.is.active()&&C.addClass(g.active),m.remove.warning(),m.remove.error(),m.remove.success(),e&&m.set.label(e),f.onActive.call(T,m.value,m.total)},success:function(e){e=e||f.text.success,m.debug("Setting success state"),C.addClass(g.success),m.remove.active(),m.remove.warning(),m.remove.error(),m.complete(),e&&m.set.label(e),f.onSuccess.call(T,m.total)},warning:function(e){e=e||f.text.warning,m.debug("Setting warning state"),C.addClass(g.warning),m.remove.active(),m.remove.success(),m.remove.error(),m.complete(),e&&m.set.label(e),f.onWarning.call(T,m.value,m.total)},error:function(e){e=e||f.text.error,m.debug("Setting error state"),C.addClass(g.error),m.remove.active(),m.remove.success(),m.remove.warning(),m.complete(),e&&m.set.label(e),f.onError.call(T,m.value,m.total)},transitionEvent:function(){a=m.get.transitionEnd()},total:function(e){m.total=e},value:function(e){m.value=e},progress:function(e){var t,n=m.get.numericValue(e);n===!1&&m.error(b.nonNumeric,e),m.has.total()?(m.set.value(n),t=n/m.total*100,m.debug("Calculating percent complete from total",t),m.set.percent(t)):(t=n,m.debug("Setting value to exact percentage value",t),m.set.percent(t))}},setting:function(t,n){if(m.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,f,t);else{if(n===i)return f[t];f[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,m,t);else{if(n===i)return m[t];m[t]=n}},debug:function(){f.debug&&(f.performance?m.performance.log(arguments):(m.debug=Function.prototype.bind.call(console.info,console,f.name+":"),m.debug.apply(console,arguments)))},verbose:function(){f.verbose&&f.debug&&(f.performance?m.performance.log(arguments):(m.verbose=Function.prototype.bind.call(console.info,console,f.name+":"),m.verbose.apply(console,arguments)))},error:function(){m.error=Function.prototype.bind.call(console.error,console,f.name+":"),m.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;f.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:T,"Execution Time":n})),clearTimeout(m.performance.timer),m.performance.timer=setTimeout(m.performance.display,500)},display:function(){var t=f.name+":",n=0;s=!1,clearTimeout(m.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,a){var r,s,c,l=A;return n=n||d,a=T||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(m.error(b.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},u?(A===i&&m.initialize(),m.invoke(l)):(A!==i&&A.invoke("destroy"),m.initialize())}),o!==i?o:this},e.fn.progress.settings={name:"Progress",namespace:"progress",debug:!1,verbose:!1,performance:!0,random:{min:2,max:5},duration:300,autoSuccess:!0,showActivity:!0,limitValues:!0,label:"percent",precision:0,framerate:1e3/30,percent:!1,total:!1,value:!1,onChange:function(e,t,n){},onSuccess:function(e){},onActive:function(e,t){},onError:function(e,t){},onWarning:function(e,t){},error:{method:"The method you called is not defined.",nonNumeric:"Progress value is non numeric",tooHigh:"Value specified is above 100%",tooLow:"Value specified is below 0%"},regExp:{variable:/\{\$*[A-z0-9]+\}/g},metadata:{percent:"percent",total:"total",value:"value"},selector:{bar:"> .bar",label:"> .label",progress:".bar > .progress"},text:{active:!1,error:!1,success:!1,warning:!1,percent:"{percent}%",ratio:"{value} of {total}"},className:{active:"active",error:"error",success:"success",warning:"warning"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.rating=function(t){var n,o=e(this),a=o.selector||"",r=(new Date).getTime(),s=[],c=arguments[0],l="string"==typeof c,u=[].slice.call(arguments,1);return o.each(function(){var d,m=e.isPlainObject(t)?e.extend(!0,{},e.fn.rating.settings,t):e.extend({},e.fn.rating.settings),f=m.namespace,g=m.className,p=m.metadata,v=m.selector,h=(m.error,"."+f),b="module-"+f,y=this,x=e(this).data(b),C=e(this),w=C.find(v.icon);d={initialize:function(){d.verbose("Initializing rating module",m),0===w.length&&d.setup.layout(),m.interactive?d.enable():d.disable(),d.set.rating(d.get.initialRating()),d.instantiate()},instantiate:function(){d.verbose("Instantiating module",m),x=d,C.data(b,d)},destroy:function(){d.verbose("Destroying previous instance",x),d.remove.events(),C.removeData(b)},refresh:function(){w=C.find(v.icon)},setup:{layout:function(){var t=d.get.maxRating(),n=e.fn.rating.settings.templates.icon(t);d.debug("Generating icon html dynamically"),C.html(n),d.refresh()}},event:{mouseenter:function(){var t=e(this);t.nextAll().removeClass(g.selected),C.addClass(g.selected),t.addClass(g.selected).prevAll().addClass(g.selected)},mouseleave:function(){C.removeClass(g.selected),w.removeClass(g.selected)},click:function(){var t=e(this),n=d.get.rating(),i=w.index(t)+1,o="auto"==m.clearable?1===w.length:m.clearable;o&&n==i?d.clearRating():d.set.rating(i)}},clearRating:function(){d.debug("Clearing current rating"),d.set.rating(0)},bind:{events:function(){d.verbose("Binding events"),C.on("mouseenter"+h,v.icon,d.event.mouseenter).on("mouseleave"+h,v.icon,d.event.mouseleave).on("click"+h,v.icon,d.event.click)}},remove:{events:function(){d.verbose("Removing events"),C.off(h)}},enable:function(){d.debug("Setting rating to interactive mode"),d.bind.events(),C.removeClass(g.disabled)},disable:function(){d.debug("Setting rating to read-only mode"),d.remove.events(),C.addClass(g.disabled)},get:{initialRating:function(){return C.data(p.rating)!==i?(C.removeData(p.rating),C.data(p.rating)):m.initialRating},maxRating:function(){return C.data(p.maxRating)!==i?(C.removeData(p.maxRating),C.data(p.maxRating)):m.maxRating},rating:function(){var e=w.filter("."+g.active).length;return d.verbose("Current rating retrieved",e),e}},set:{rating:function(e){var t=e-1>=0?e-1:0,n=w.eq(t);C.removeClass(g.selected),w.removeClass(g.selected).removeClass(g.active),e>0&&(d.verbose("Setting current rating to",e),n.prevAll().andSelf().addClass(g.active)),m.onRate.call(y,e)}},setting:function(t,n){if(d.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,m,t);else{if(n===i)return m[t];m[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,d,t);else{if(n===i)return d[t];d[t]=n}},debug:function(){m.debug&&(m.performance?d.performance.log(arguments):(d.debug=Function.prototype.bind.call(console.info,console,m.name+":"),d.debug.apply(console,arguments)))},verbose:function(){m.verbose&&m.debug&&(m.performance?d.performance.log(arguments):(d.verbose=Function.prototype.bind.call(console.info,console,m.name+":"),d.verbose.apply(console,arguments)))},error:function(){d.error=Function.prototype.bind.call(console.error,console,m.name+":"),d.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;m.performance&&(t=(new Date).getTime(),i=r||t,n=t-i,r=t,s.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:y,"Execution Time":n})),clearTimeout(d.performance.timer),d.performance.timer=setTimeout(d.performance.display,500)},display:function(){var t=m.name+":",n=0;r=!1,clearTimeout(d.performance.timer),e.each(s,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",a&&(t+=" '"+a+"'"),o.length>1&&(t+=" ("+o.length+")"),(console.group!==i||console.table!==i)&&s.length>0&&(console.groupCollapsed(t),console.table?console.table(s):e.each(s,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),s=[]}},invoke:function(t,o,a){var r,s,c,l=x;return o=o||u,a=y||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(a,o):s!==i&&(c=s),e.isArray(n)?n.push(c):n!==i?n=[n,c]:c!==i&&(n=c),s}},l?(x===i&&d.initialize(),d.invoke(c)):(x!==i&&x.invoke("destroy"),d.initialize())}),n!==i?n:this},e.fn.rating.settings={name:"Rating",namespace:"rating",debug:!1,verbose:!1,performance:!0,initialRating:0,interactive:!0,maxRating:4,clearable:"auto",onRate:function(e){},error:{method:"The method you called is not defined",noMaximum:"No maximum rating specified. Cannot generate HTML automatically"},metadata:{rating:"rating",maxRating:"maxRating"},className:{active:"active",disabled:"disabled",selected:"selected",loading:"loading"},selector:{icon:".icon"},templates:{icon:function(e){for(var t=1,n="";e>=t;)n+='<i class="icon"></i>',t++;return n}}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.search=function(o){var a,r=e(this),s=r.selector||"",c=(new Date).getTime(),l=[],u=arguments[0],d="string"==typeof u,m=[].slice.call(arguments,1);return e(this).each(function(){var f,g=e.isPlainObject(o)?e.extend(!0,{},e.fn.search.settings,o):e.extend({},e.fn.search.settings),p=g.className,v=g.metadata,h=g.regExp,b=g.fields,y=g.selector,x=g.error,C=g.namespace,w="."+C,k=C+"-module",S=e(this),T=S.find(y.prompt),A=S.find(y.searchButton),R=S.find(y.results),P=(S.find(y.result),S.find(y.category),this),E=S.data(k);f={initialize:function(){f.verbose("Initializing module"),f.determine.searchFields(),f.bind.events(),f.set.type(),f.create.results(),f.instantiate()},instantiate:function(){f.verbose("Storing instance of module",f),E=f,S.data(k,f)},destroy:function(){f.verbose("Destroying instance"),S.off(w).removeData(k)},bind:{events:function(){f.verbose("Binding events to search"),g.automatic&&(S.on(f.get.inputEvent()+w,y.prompt,f.event.input),T.attr("autocomplete","off")),S.on("focus"+w,y.prompt,f.event.focus).on("blur"+w,y.prompt,f.event.blur).on("keydown"+w,y.prompt,f.handleKeyboard).on("click"+w,y.searchButton,f.query).on("mousedown"+w,y.results,f.event.result.mousedown).on("mouseup"+w,y.results,f.event.result.mouseup).on("click"+w,y.result,f.event.result.click)}},determine:{searchFields:function(){o&&o.searchFields!==i&&(g.searchFields=o.searchFields)}},event:{input:function(){clearTimeout(f.timer),f.timer=setTimeout(f.query,g.searchDelay)},focus:function(){f.set.focus(),f.has.minimumCharacters()&&(f.query(),f.can.show()&&f.showResults())},blur:function(e){var t=n.activeElement===this;t||f.resultsClicked||(f.cancel.query(),f.remove.focus(),f.timer=setTimeout(f.hideResults,g.hideDelay))},result:{mousedown:function(){f.resultsClicked=!0},mouseup:function(){f.resultsClicked=!1},click:function(n){f.debug("Search result selected");var i=e(this),o=i.find(y.title).eq(0),a=i.find("a[href]").eq(0),r=a.attr("href")||!1,s=a.attr("target")||!1,c=(o.html(),o.length>0?o.text():!1),l=f.get.results(),u=i.data(v.result)||f.get.result(c,l);return e.isFunction(g.onSelect)&&g.onSelect.call(P,u,l)===!1?void f.debug("Custom onSelect callback cancelled default select action"):(f.hideResults(),c&&f.set.value(c),void(r&&(f.verbose("Opening search link found in result",a),"_blank"==s||n.ctrlKey?t.open(r):t.location.href=r)))}}},handleKeyboard:function(e){var t,n=S.find(y.result),i=S.find(y.category),o=n.index(n.filter("."+p.active)),a=n.length,r=e.which,s={backspace:8,enter:13,escape:27,upArrow:38,downArrow:40};if(r==s.escape&&(f.verbose("Escape key pressed, blurring search field"),T.trigger("blur")),f.is.visible())if(r==s.enter){if(f.verbose("Enter key pressed, selecting active result"),n.filter("."+p.active).length>0)return f.event.result.click.call(n.filter("."+p.active),e),e.preventDefault(),!1}else r==s.upArrow?(f.verbose("Up key pressed, changing active result"),t=0>o-1?o:o-1,i.removeClass(p.active),n.removeClass(p.active).eq(t).addClass(p.active).closest(i).addClass(p.active),e.preventDefault()):r==s.downArrow&&(f.verbose("Down key pressed, changing active result"),t=o+1>=a?o:o+1,i.removeClass(p.active),n.removeClass(p.active).eq(t).addClass(p.active).closest(i).addClass(p.active),e.preventDefault());else r==s.enter&&(f.verbose("Enter key pressed, executing query"),f.query(),f.set.buttonPressed(),T.one("keyup",f.remove.buttonFocus))},setup:{api:function(){var e={debug:g.debug,on:!1,cache:"local",action:"search",onError:f.error};f.verbose("First request, initializing API"),S.api(e)}},can:{useAPI:function(){return e.fn.api!==i},show:function(){return f.is.focused()&&!f.is.visible()&&!f.is.empty()},transition:function(){return g.transition&&e.fn.transition!==i&&S.transition("is supported")}},is:{empty:function(){return""===R.html()},visible:function(){return R.filter(":visible").length>0},focused:function(){return T.filter(":focus").length>0}},get:{inputEvent:function(){var e=T[0],t=e!==i&&e.oninput!==i?"input":e!==i&&e.onpropertychange!==i?"propertychange":"keyup";return t},value:function(){return T.val()},results:function(){var e=S.data(v.results);return e},result:function(t,n){var o=["title","id"],a=!1;return t=t!==i?t:f.get.value(),n=n!==i?n:f.get.results(),"category"===g.type?(f.debug("Finding result that matches",t),e.each(n,function(n,i){return e.isArray(i.results)&&(a=f.search.object(t,i.results,o)[0])?!1:void 0})):(f.debug("Finding result in results object",t),a=f.search.object(t,n,o)[0]),a||!1}},set:{focus:function(){S.addClass(p.focus)},loading:function(){S.addClass(p.loading)},value:function(e){f.verbose("Setting search input value",e),T.val(e)},type:function(e){e=e||g.type,"category"==g.type&&S.addClass(g.type)},buttonPressed:function(){A.addClass(p.pressed)}},remove:{loading:function(){S.removeClass(p.loading)},focus:function(){S.removeClass(p.focus)},buttonPressed:function(){A.removeClass(p.pressed)}},query:function(){var t=f.get.value(),n=f.read.cache(t);f.has.minimumCharacters()?n?(f.debug("Reading result from cache",t),f.save.results(n.results),f.addResults(n.html),f.inject.id(n.results)):(f.debug("Querying for",t),e.isPlainObject(g.source)||e.isArray(g.source)?f.search.local(t):f.can.useAPI()?f.search.remote(t):f.error(x.source),g.onSearchQuery.call(P,t)):f.hideResults()},search:{local:function(e){var t,n=f.search.object(e,g.content);f.set.loading(),f.save.results(n),f.debug("Returned local search results",n),t=f.generateResults({results:n}),f.remove.loading(),f.addResults(t),f.inject.id(n),f.write.cache(e,{html:t,results:n})},remote:function(t){var n={onSuccess:function(e){f.parse.response.call(P,e,t)},onFailure:function(){f.displayMessage(x.serverError)},urlData:{query:t}};S.api("get request")||f.setup.api(),e.extend(!0,n,g.apiSettings),f.debug("Executing search",n),f.cancel.query(),S.api("setting",n).api("query")},object:function(t,n,o){var a=[],r=[],s=t.toString().replace(h.escape,"\\$&"),c=new RegExp(h.beginsWith+s,"i"),l=function(t,n){var i=-1==e.inArray(n,a),o=-1==e.inArray(n,r);i&&o&&t.push(n)};return n=n||g.source,o=o!==i?o:g.searchFields,e.isArray(o)||(o=[o]),n===i||n===!1?(f.error(x.source),[]):(e.each(o,function(i,o){e.each(n,function(e,n){var i="string"==typeof n[o];i&&(-1!==n[o].search(c)?l(a,n):g.searchFullText&&f.fuzzySearch(t,n[o])&&l(r,n))})}),e.merge(a,r))}},fuzzySearch:function(e,t){var n=t.length,i=e.length;if("string"!=typeof e)return!1;if(e=e.toLowerCase(),t=t.toLowerCase(),i>n)return!1;if(i===n)return e===t;e:for(var o=0,a=0;i>o;o++){for(var r=e.charCodeAt(o);n>a;)if(t.charCodeAt(a++)===r)continue e;return!1}return!0},parse:{response:function(e,t){var n=f.generateResults(e);f.verbose("Parsing server response",e),e!==i&&t!==i&&e[b.results]!==i&&(f.addResults(n),f.inject.id(e[b.results]),f.write.cache(t,{html:n,results:e[b.results]}),f.save.results(e[b.results]))}},cancel:{query:function(){f.can.useAPI()&&S.api("abort")}},has:{minimumCharacters:function(){var e=f.get.value(),t=e.length;return t>=g.minCharacters}},clear:{cache:function(e){var t=S.data(v.cache);e?e&&t&&t[e]&&(f.debug("Removing value from cache",e),delete t[e],S.data(v.cache,t)):(f.debug("Clearing cache",e),S.removeData(v.cache))}},read:{cache:function(e){var t=S.data(v.cache);return g.cache?(f.verbose("Checking cache for generated html for query",e),"object"==typeof t&&t[e]!==i?t[e]:!1):!1}},create:{id:function(e,t){var n,o,a=e+1;return t!==i?(n=String.fromCharCode(97+t),o=n+a,f.verbose("Creating category result id",o)):(o=a,f.verbose("Creating result id",o)),o},results:function(){0===R.length&&(R=e("<div />").addClass(p.results).appendTo(S))}},inject:{result:function(e,t,n){f.verbose("Injecting result into results");var o=n!==i?R.children().eq(n).children(y.result).eq(t):R.children(y.result).eq(t);f.verbose("Injecting results metadata",o),o.data(v.result,e)},id:function(t){f.debug("Injecting unique ids into results");var n=0,o=0;return"category"===g.type?e.each(t,function(t,a){o=0,e.each(a.results,function(e,t){var r=a.results[e];r.id===i&&(r.id=f.create.id(o,n)),f.inject.result(r,o,n),o++}),n++}):e.each(t,function(e,n){var a=t[e];a.id===i&&(a.id=f.create.id(o)),f.inject.result(a,o),o++}),t}},save:{results:function(e){f.verbose("Saving current search results to metadata",e),S.data(v.results,e)}},write:{cache:function(e,t){var n=S.data(v.cache)!==i?S.data(v.cache):{};g.cache&&(f.verbose("Writing generated html to cache",e,t),n[e]=t,S.data(v.cache,n))}},addResults:function(t){return e.isFunction(g.onResultsAdd)&&g.onResultsAdd.call(R,t)===!1?(f.debug("onResultsAdd callback cancelled default action"),!1):(R.html(t),void(f.can.show()&&f.showResults()))},showResults:function(){f.is.visible()||(f.can.transition()?(f.debug("Showing results with css animations"),R.transition({animation:g.transition+" in",debug:g.debug,verbose:g.verbose,duration:g.duration,queue:!0})):(f.debug("Showing results with javascript"),R.stop().fadeIn(g.duration,g.easing)),g.onResultsOpen.call(R))},hideResults:function(){f.is.visible()&&(f.can.transition()?(f.debug("Hiding results with css animations"),R.transition({animation:g.transition+" out",debug:g.debug,verbose:g.verbose,duration:g.duration,queue:!0})):(f.debug("Hiding results with javascript"),R.stop().fadeOut(g.duration,g.easing)),g.onResultsClose.call(R))},generateResults:function(t){f.debug("Generating html from response",t);var n=g.templates[g.type],i=e.isPlainObject(t[b.results])&&!e.isEmptyObject(t[b.results]),o=e.isArray(t[b.results])&&t[b.results].length>0,a="";return i||o?(g.maxResults>0&&(i?"standard"==g.type&&f.error(x.maxResults):t[b.results]=t[b.results].slice(0,g.maxResults)),e.isFunction(n)?a=n(t,b):f.error(x.noTemplate,!1)):a=f.displayMessage(x.noResults,"empty"),g.onResults.call(P,t),a},displayMessage:function(e,t){return t=t||"standard",f.debug("Displaying message",e,t),f.addResults(g.templates.message(e,t)),g.templates.message(e,t)},setting:function(t,n){if(e.isPlainObject(t))e.extend(!0,g,t);else{if(n===i)return g[t];g[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,f,t);else{if(n===i)return f[t];f[t]=n}},debug:function(){g.debug&&(g.performance?f.performance.log(arguments):(f.debug=Function.prototype.bind.call(console.info,console,g.name+":"),f.debug.apply(console,arguments)))},verbose:function(){g.verbose&&g.debug&&(g.performance?f.performance.log(arguments):(f.verbose=Function.prototype.bind.call(console.info,console,g.name+":"),f.verbose.apply(console,arguments)))},error:function(){f.error=Function.prototype.bind.call(console.error,console,g.name+":"),f.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;g.performance&&(t=(new Date).getTime(),i=c||t,n=t-i,c=t,l.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:P,"Execution Time":n})),clearTimeout(f.performance.timer),f.performance.timer=setTimeout(f.performance.display,500)},display:function(){var t=g.name+":",n=0;c=!1,clearTimeout(f.performance.timer),e.each(l,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",s&&(t+=" '"+s+"'"),r.length>1&&(t+=" ("+r.length+")"),(console.group!==i||console.table!==i)&&l.length>0&&(console.groupCollapsed(t),console.table?console.table(l):e.each(l,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),l=[]}},invoke:function(t,n,o){var r,s,c,l=E;return n=n||m,o=P||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},d?(E===i&&f.initialize(),f.invoke(u)):(E!==i&&E.invoke("destroy"),f.initialize())}),a!==i?a:this},e.fn.search.settings={name:"Search",namespace:"search",debug:!1,verbose:!1,performance:!0,type:"standard",minCharacters:1,apiSettings:!1,source:!1,searchFields:["title","description"],displayField:"",searchFullText:!0,automatic:!0,hideDelay:0,searchDelay:200,maxResults:7,cache:!0,transition:"scale",duration:200,easing:"easeOutExpo",onSelect:!1,onResultsAdd:!1,onSearchQuery:function(e){},onResults:function(e){},onResultsOpen:function(){},onResultsClose:function(){},className:{active:"active",empty:"empty",focus:"focus",loading:"loading",results:"results",pressed:"down"},error:{source:"Cannot search. No source used, and Semantic API module was not included",noResults:"Your search returned no results",logging:"Error in debug logging, exiting.",noEndpoint:"No search endpoint was specified",noTemplate:"A valid template name was not specified.",serverError:"There was an issue querying the server.",maxResults:"Results must be an array to use maxResults setting",method:"The method you called is not defined."},metadata:{cache:"cache",results:"results",result:"result"},regExp:{escape:/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,beginsWith:"(?:s|^)"},fields:{categories:"results",categoryName:"name",categoryResults:"results",description:"description",image:"image",price:"price",results:"results",title:"title",action:"action",actionText:"text",actionURL:"url"},selector:{prompt:".prompt",searchButton:".search.button",results:".results",category:".category",result:".result",title:".title, .name"},templates:{escape:function(e){var t=/[&<>"'`]/g,n=/[&<>"'`]/,i={ -"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},o=function(e){return i[e]};return n.test(e)?e.replace(t,o):e},message:function(e,t){var n="";return e!==i&&t!==i&&(n+='<div class="message '+t+'">',n+="empty"==t?'<div class="header">No Results</div class="header"><div class="description">'+e+'</div class="description">':' <div class="description">'+e+"</div>",n+="</div>"),n},category:function(t,n){{var o="";e.fn.search.settings.templates.escape}return t[n.categoryResults]!==i?(e.each(t[n.categoryResults],function(a,r){r[n.results]!==i&&r.results.length>0&&(o+='<div class="category">',r[n.categoryName]!==i&&(o+='<div class="name">'+r[n.categoryName]+"</div>"),e.each(r.results,function(e,a){o+=t[n.url]?'<a class="result" href="'+t[n.url]+'">':'<a class="result">',a[n.image]!==i&&(o+='<div class="image"> <img src="'+a[n.image]+'"></div>'),o+='<div class="content">',a[n.price]!==i&&(o+='<div class="price">'+a[n.price]+"</div>"),a[n.title]!==i&&(o+='<div class="title">'+a[n.title]+"</div>"),a[n.description]!==i&&(o+='<div class="description">'+a[n.description]+"</div>"),o+="</div>",o+="</a>"}),o+="</div>")}),t[n.action]&&(o+='<a href="'+t[n.action][n.actionURL]+'" class="action">'+t[n.action][n.actionText]+"</a>"),o):!1},standard:function(t,n){var o="";return t[n.results]!==i?(e.each(t[n.results],function(e,a){o+=t[n.url]?'<a class="result" href="'+t[n.url]+'">':'<a class="result">',a[n.image]!==i&&(o+='<div class="image"> <img src="'+a[n.image]+'"></div>'),o+='<div class="content">',a[n.price]!==i&&(o+='<div class="price">'+a[n.price]+"</div>"),a[n.title]!==i&&(o+='<div class="title">'+a[n.title]+"</div>"),a[n.description]!==i&&(o+='<div class="description">'+a[n.description]+"</div>"),o+="</div>",o+="</a>"}),t[n.action]&&(o+='<a href="'+t[n.action][n.actionURL]+'" class="action">'+t[n.action][n.actionText]+"</a>"),o):!1}}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.shape=function(o){var a,r=e(this),s=(e("body"),(new Date).getTime()),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1),m=t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)};return r.each(function(){var t,f,g,p=r.selector||"",v=e.isPlainObject(o)?e.extend(!0,{},e.fn.shape.settings,o):e.extend({},e.fn.shape.settings),h=v.namespace,b=v.selector,y=v.error,x=v.className,C="."+h,w="module-"+h,k=e(this),S=k.find(b.sides),T=k.find(b.side),A=!1,R=this,P=k.data(w);g={initialize:function(){g.verbose("Initializing module for",R),g.set.defaultSide(),g.instantiate()},instantiate:function(){g.verbose("Storing instance of module",g),P=g,k.data(w,P)},destroy:function(){g.verbose("Destroying previous module for",R),k.removeData(w).off(C)},refresh:function(){g.verbose("Refreshing selector cache for",R),k=e(R),S=e(this).find(b.shape),T=e(this).find(b.side)},repaint:function(){g.verbose("Forcing repaint event");{var e=S[0]||n.createElement("div");e.offsetWidth}},animate:function(e,n){g.verbose("Animating box with properties",e),n=n||function(e){g.verbose("Executing animation callback"),e!==i&&e.stopPropagation(),g.reset(),g.set.active()},v.beforeChange.call(f[0]),g.get.transitionEvent()?(g.verbose("Starting CSS animation"),k.addClass(x.animating),S.css(e).one(g.get.transitionEvent(),n),g.set.duration(v.duration),m(function(){k.addClass(x.animating),t.addClass(x.hidden)})):n()},queue:function(e){g.debug("Queueing animation of",e),S.one(g.get.transitionEvent(),function(){g.debug("Executing queued animation"),setTimeout(function(){k.shape(e)},0)})},reset:function(){g.verbose("Animating states reset"),k.removeClass(x.animating).attr("style","").removeAttr("style"),S.attr("style","").removeAttr("style"),T.attr("style","").removeAttr("style").removeClass(x.hidden),f.removeClass(x.animating).attr("style","").removeAttr("style")},is:{complete:function(){return T.filter("."+x.active)[0]==f[0]},animating:function(){return k.hasClass(x.animating)}},set:{defaultSide:function(){t=k.find("."+v.className.active),f=t.next(b.side).length>0?t.next(b.side):k.find(b.side).first(),A=!1,g.verbose("Active side set to",t),g.verbose("Next side set to",f)},duration:function(e){e=e||v.duration,e="number"==typeof e?e+"ms":e,g.verbose("Setting animation duration",e),(v.duration||0===v.duration)&&S.add(T).css({"-webkit-transition-duration":e,"-moz-transition-duration":e,"-ms-transition-duration":e,"-o-transition-duration":e,"transition-duration":e})},currentStageSize:function(){var e=k.find("."+v.className.active),t=e.outerWidth(!0),n=e.outerHeight(!0);k.css({width:t,height:n})},stageSize:function(){var e=k.clone().addClass(x.loading),t=e.find("."+v.className.active),n=A?e.find(b.side).eq(A):t.next(b.side).length>0?t.next(b.side):e.find(b.side).first(),i={};g.set.currentStageSize(),t.removeClass(x.active),n.addClass(x.active),e.insertAfter(k),i={width:n.outerWidth(!0),height:n.outerHeight(!0)},e.remove(),k.css(i),g.verbose("Resizing stage to fit new content",i)},nextSide:function(e){A=e,f=T.filter(e),A=T.index(f),0===f.length&&(g.set.defaultSide(),g.error(y.side)),g.verbose("Next side manually set to",f)},active:function(){g.verbose("Setting new side to active",f),T.removeClass(x.active),f.addClass(x.active),v.onChange.call(f[0]),g.set.defaultSide()}},flip:{up:function(){return!g.is.complete()||g.is.animating()||v.allowRepeats?void(g.is.animating()?g.queue("flip up"):(g.debug("Flipping up",f),g.set.stageSize(),g.stage.above(),g.animate(g.get.transform.up()))):void g.debug("Side already visible",f)},down:function(){return!g.is.complete()||g.is.animating()||v.allowRepeats?void(g.is.animating()?g.queue("flip down"):(g.debug("Flipping down",f),g.set.stageSize(),g.stage.below(),g.animate(g.get.transform.down()))):void g.debug("Side already visible",f)},left:function(){return!g.is.complete()||g.is.animating()||v.allowRepeats?void(g.is.animating()?g.queue("flip left"):(g.debug("Flipping left",f),g.set.stageSize(),g.stage.left(),g.animate(g.get.transform.left()))):void g.debug("Side already visible",f)},right:function(){return!g.is.complete()||g.is.animating()||v.allowRepeats?void(g.is.animating()?g.queue("flip right"):(g.debug("Flipping right",f),g.set.stageSize(),g.stage.right(),g.animate(g.get.transform.right()))):void g.debug("Side already visible",f)},over:function(){return!g.is.complete()||g.is.animating()||v.allowRepeats?void(g.is.animating()?g.queue("flip over"):(g.debug("Flipping over",f),g.set.stageSize(),g.stage.behind(),g.animate(g.get.transform.over()))):void g.debug("Side already visible",f)},back:function(){return!g.is.complete()||g.is.animating()||v.allowRepeats?void(g.is.animating()?g.queue("flip back"):(g.debug("Flipping back",f),g.set.stageSize(),g.stage.behind(),g.animate(g.get.transform.back()))):void g.debug("Side already visible",f)}},get:{transform:{up:function(){var e={y:-((t.outerHeight(!0)-f.outerHeight(!0))/2),z:-(t.outerHeight(!0)/2)};return{transform:"translateY("+e.y+"px) translateZ("+e.z+"px) rotateX(-90deg)"}},down:function(){var e={y:-((t.outerHeight(!0)-f.outerHeight(!0))/2),z:-(t.outerHeight(!0)/2)};return{transform:"translateY("+e.y+"px) translateZ("+e.z+"px) rotateX(90deg)"}},left:function(){var e={x:-((t.outerWidth(!0)-f.outerWidth(!0))/2),z:-(t.outerWidth(!0)/2)};return{transform:"translateX("+e.x+"px) translateZ("+e.z+"px) rotateY(90deg)"}},right:function(){var e={x:-((t.outerWidth(!0)-f.outerWidth(!0))/2),z:-(t.outerWidth(!0)/2)};return{transform:"translateX("+e.x+"px) translateZ("+e.z+"px) rotateY(-90deg)"}},over:function(){var e={x:-((t.outerWidth(!0)-f.outerWidth(!0))/2)};return{transform:"translateX("+e.x+"px) rotateY(180deg)"}},back:function(){var e={x:-((t.outerWidth(!0)-f.outerWidth(!0))/2)};return{transform:"translateX("+e.x+"px) rotateY(-180deg)"}}},transitionEvent:function(){var e,t=n.createElement("element"),o={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(e in o)if(t.style[e]!==i)return o[e]},nextSide:function(){return t.next(b.side).length>0?t.next(b.side):k.find(b.side).first()}},stage:{above:function(){var e={origin:(t.outerHeight(!0)-f.outerHeight(!0))/2,depth:{active:f.outerHeight(!0)/2,next:t.outerHeight(!0)/2}};g.verbose("Setting the initial animation position as above",f,e),S.css({transform:"translateZ(-"+e.depth.active+"px)"}),t.css({transform:"rotateY(0deg) translateZ("+e.depth.active+"px)"}),f.addClass(x.animating).css({top:e.origin+"px",transform:"rotateX(90deg) translateZ("+e.depth.next+"px)"})},below:function(){var e={origin:(t.outerHeight(!0)-f.outerHeight(!0))/2,depth:{active:f.outerHeight(!0)/2,next:t.outerHeight(!0)/2}};g.verbose("Setting the initial animation position as below",f,e),S.css({transform:"translateZ(-"+e.depth.active+"px)"}),t.css({transform:"rotateY(0deg) translateZ("+e.depth.active+"px)"}),f.addClass(x.animating).css({top:e.origin+"px",transform:"rotateX(-90deg) translateZ("+e.depth.next+"px)"})},left:function(){var e={active:t.outerWidth(!0),next:f.outerWidth(!0)},n={origin:(e.active-e.next)/2,depth:{active:e.next/2,next:e.active/2}};g.verbose("Setting the initial animation position as left",f,n),S.css({transform:"translateZ(-"+n.depth.active+"px)"}),t.css({transform:"rotateY(0deg) translateZ("+n.depth.active+"px)"}),f.addClass(x.animating).css({left:n.origin+"px",transform:"rotateY(-90deg) translateZ("+n.depth.next+"px)"})},right:function(){var e={active:t.outerWidth(!0),next:f.outerWidth(!0)},n={origin:(e.active-e.next)/2,depth:{active:e.next/2,next:e.active/2}};g.verbose("Setting the initial animation position as left",f,n),S.css({transform:"translateZ(-"+n.depth.active+"px)"}),t.css({transform:"rotateY(0deg) translateZ("+n.depth.active+"px)"}),f.addClass(x.animating).css({left:n.origin+"px",transform:"rotateY(90deg) translateZ("+n.depth.next+"px)"})},behind:function(){var e={active:t.outerWidth(!0),next:f.outerWidth(!0)},n={origin:(e.active-e.next)/2,depth:{active:e.next/2,next:e.active/2}};g.verbose("Setting the initial animation position as behind",f,n),t.css({transform:"rotateY(0deg)"}),f.addClass(x.animating).css({left:n.origin+"px",transform:"rotateY(-180deg)"})}},setting:function(t,n){if(g.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,v,t);else{if(n===i)return v[t];v[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,g,t);else{if(n===i)return g[t];g[t]=n}},debug:function(){v.debug&&(v.performance?g.performance.log(arguments):(g.debug=Function.prototype.bind.call(console.info,console,v.name+":"),g.debug.apply(console,arguments)))},verbose:function(){v.verbose&&v.debug&&(v.performance?g.performance.log(arguments):(g.verbose=Function.prototype.bind.call(console.info,console,v.name+":"),g.verbose.apply(console,arguments)))},error:function(){g.error=Function.prototype.bind.call(console.error,console,v.name+":"),g.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;v.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:R,"Execution Time":n})),clearTimeout(g.performance.timer),g.performance.timer=setTimeout(g.performance.display,500)},display:function(){var t=v.name+":",n=0;s=!1,clearTimeout(g.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",p&&(t+=" '"+p+"'"),r.length>1&&(t+=" ("+r.length+")"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,o){var r,s,c,l=P;return n=n||d,o=R||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},u?(P===i&&g.initialize(),g.invoke(l)):(P!==i&&P.invoke("destroy"),g.initialize())}),a!==i?a:this},e.fn.shape.settings={name:"Shape",debug:!1,verbose:!1,performance:!0,namespace:"shape",beforeChange:function(){},onChange:function(){},allowRepeats:!1,duration:!1,error:{side:"You tried to switch to a side that does not exist.",method:"The method you called is not defined"},className:{animating:"animating",hidden:"hidden",loading:"loading",active:"active"},selector:{sides:".sides",side:".side"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.sidebar=function(o){var a,r=e(this),s=e(t),c=e(n),l=e("html"),u=e("head"),d=r.selector||"",m=(new Date).getTime(),f=[],g=arguments[0],p="string"==typeof g,v=[].slice.call(arguments,1),h=t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)};return r.each(function(){var r,b,y,x,C,w,k=e.isPlainObject(o)?e.extend(!0,{},e.fn.sidebar.settings,o):e.extend({},e.fn.sidebar.settings),S=k.selector,T=k.className,A=k.namespace,R=k.regExp,P=k.error,E="."+A,F="module-"+A,D=e(this),O=e(k.context),q=D.children(S.sidebar),j=O.children(S.fixed),z=O.children(S.pusher),I=this,L=D.data(F);w={initialize:function(){w.debug("Initializing sidebar",o),w.create.id(),C=w.get.transitionEvent(),w.is.ios()&&w.set.ios(),k.delaySetup?h(w.setup.layout):w.setup.layout(),h(function(){w.setup.cache()}),w.instantiate()},instantiate:function(){w.verbose("Storing instance of module",w),L=w,D.data(F,w)},create:{id:function(){y=(Math.random().toString(16)+"000000000").substr(2,8),b="."+y,w.verbose("Creating unique id for element",y)}},destroy:function(){w.verbose("Destroying previous module for",D),D.off(E).removeData(F),w.is.ios()&&w.remove.ios(),O.off(b),s.off(b),c.off(b)},event:{clickaway:function(e){var t=z.find(e.target).length>0||z.is(e.target),n=O.is(e.target);t&&(w.verbose("User clicked on dimmed page"),w.hide()),n&&(w.verbose("User clicked on dimmable context (scaled out page)"),w.hide())},touch:function(e){},containScroll:function(e){I.scrollTop<=0&&(I.scrollTop=1),I.scrollTop+I.offsetHeight>=I.scrollHeight&&(I.scrollTop=I.scrollHeight-I.offsetHeight-1)},scroll:function(t){0===e(t.target).closest(S.sidebar).length&&t.preventDefault()}},bind:{clickaway:function(){w.verbose("Adding clickaway events to context",O),k.closable&&O.on("click"+b,w.event.clickaway).on("touchend"+b,w.event.clickaway)},scrollLock:function(){k.scrollLock&&(w.debug("Disabling page scroll"),s.on("DOMMouseScroll"+b,w.event.scroll)),w.verbose("Adding events to contain sidebar scroll"),c.on("touchmove"+b,w.event.touch),D.on("scroll"+E,w.event.containScroll)}},unbind:{clickaway:function(){w.verbose("Removing clickaway events from context",O),O.off(b)},scrollLock:function(){w.verbose("Removing scroll lock from page"),c.off(b),s.off(b),D.off("scroll"+E)}},add:{inlineCSS:function(){var t,n=w.cache.width||D.outerWidth(),i=w.cache.height||D.outerHeight(),o=w.is.rtl(),a=w.get.direction(),s={left:n,right:-n,top:i,bottom:-i};o&&(w.verbose("RTL detected, flipping widths"),s.left=-n,s.right=n),t="<style>","left"===a||"right"===a?(w.debug("Adding CSS rules for animation distance",n),t+=" .ui.visible."+a+".sidebar ~ .fixed, .ui.visible."+a+".sidebar ~ .pusher { -webkit-transform: translate3d("+s[a]+"px, 0, 0); transform: translate3d("+s[a]+"px, 0, 0); }"):("top"===a||"bottom"==a)&&(t+=" .ui.visible."+a+".sidebar ~ .fixed, .ui.visible."+a+".sidebar ~ .pusher { -webkit-transform: translate3d(0, "+s[a]+"px, 0); transform: translate3d(0, "+s[a]+"px, 0); }"),w.is.ie()&&("left"===a||"right"===a?(w.debug("Adding CSS rules for animation distance",n),t+=" body.pushable > .ui.visible."+a+".sidebar ~ .pusher:after { -webkit-transform: translate3d("+s[a]+"px, 0, 0); transform: translate3d("+s[a]+"px, 0, 0); }"):("top"===a||"bottom"==a)&&(t+=" body.pushable > .ui.visible."+a+".sidebar ~ .pusher:after { -webkit-transform: translate3d(0, "+s[a]+"px, 0); transform: translate3d(0, "+s[a]+"px, 0); }"),t+=" body.pushable > .ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .pusher:after, body.pushable > .ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .pusher:after { -webkit-transform: translate3d(0px, 0, 0); transform: translate3d(0px, 0, 0); }"),t+="</style>",r=e(t).appendTo(u),w.debug("Adding sizing css to head",r)}},refresh:function(){w.verbose("Refreshing selector cache"),O=e(k.context),q=O.children(S.sidebar),z=O.children(S.pusher),j=O.children(S.fixed),w.clear.cache()},refreshSidebars:function(){w.verbose("Refreshing other sidebars"),q=O.children(S.sidebar)},repaint:function(){w.verbose("Forcing repaint event"),I.style.display="none";I.offsetHeight;I.scrollTop=I.scrollTop,I.style.display=""},setup:{cache:function(){w.cache={width:D.outerWidth(),height:D.outerHeight(),rtl:"rtl"==D.css("direction")}},layout:function(){0===O.children(S.pusher).length&&(w.debug("Adding wrapper element for sidebar"),w.error(P.pusher),z=e('<div class="pusher" />'),O.children().not(S.omitted).not(q).wrapAll(z),w.refresh()),(0===D.nextAll(S.pusher).length||D.nextAll(S.pusher)[0]!==z[0])&&(w.debug("Moved sidebar to correct parent element"),w.error(P.movedSidebar,I),D.detach().prependTo(O),w.refresh()),w.clear.cache(),w.set.pushable(),w.set.direction()}},attachEvents:function(t,n){var i=e(t);n=e.isFunction(w[n])?w[n]:w.toggle,i.length>0?(w.debug("Attaching sidebar events to element",t,n),i.on("click"+E,n)):w.error(P.notFound,t)},show:function(t){if(t=e.isFunction(t)?t:function(){},w.is.hidden()){if(w.refreshSidebars(),k.overlay&&(w.error(P.overlay),k.transition="overlay"),w.refresh(),w.othersActive())if(w.debug("Other sidebars currently visible"),k.exclusive){if("overlay"!=k.transition)return void w.hideOthers(w.show);w.hideOthers()}else k.transition="overlay";w.pushPage(function(){t.call(I),k.onShow.call(I)}),k.onChange.call(I),k.onVisible.call(I)}else w.debug("Sidebar is already visible")},hide:function(t){t=e.isFunction(t)?t:function(){},(w.is.visible()||w.is.animating())&&(w.debug("Hiding sidebar",t),w.refreshSidebars(),w.pullPage(function(){t.call(I),k.onHidden.call(I)}),k.onChange.call(I),k.onHide.call(I))},othersAnimating:function(){return q.not(D).filter("."+T.animating).length>0},othersVisible:function(){return q.not(D).filter("."+T.visible).length>0},othersActive:function(){return w.othersVisible()||w.othersAnimating()},hideOthers:function(e){var t=q.not(D).filter("."+T.visible),n=t.length,i=0;e=e||function(){},t.sidebar("hide",function(){i++,i==n&&e()})},toggle:function(){w.verbose("Determining toggled direction"),w.is.hidden()?w.show():w.hide()},pushPage:function(t){var n,i,o,a=w.get.transition(),r="overlay"===a||w.othersActive()?D:z;t=e.isFunction(t)?t:function(){},"scale down"==k.transition&&w.scrollToTop(),w.set.transition(a),w.repaint(),n=function(){w.bind.clickaway(),w.add.inlineCSS(),w.set.animating(),w.set.visible()},i=function(){w.set.dimmed()},o=function(e){e.target==r[0]&&(r.off(C+b,o),w.remove.animating(),w.bind.scrollLock(),t.call(I))},r.off(C+b),r.on(C+b,o),h(n),k.dimPage&&!w.othersVisible()&&h(i)},pullPage:function(t){var n,i,o=w.get.transition(),a="overlay"==o||w.othersActive()?D:z;t=e.isFunction(t)?t:function(){},w.verbose("Removing context push state",w.get.direction()),w.unbind.clickaway(),w.unbind.scrollLock(),n=function(){w.set.transition(o),w.set.animating(),w.remove.visible(),k.dimPage&&!w.othersVisible()&&z.removeClass(T.dimmed)},i=function(e){e.target==a[0]&&(a.off(C+b,i),w.remove.animating(),w.remove.transition(),w.remove.inlineCSS(),("scale down"==o||k.returnScroll&&w.is.mobile())&&w.scrollBack(),t.call(I))},a.off(C+b),a.on(C+b,i),h(n)},scrollToTop:function(){w.verbose("Scrolling to top of page to avoid animation issues"),x=e(t).scrollTop(),D.scrollTop(0),t.scrollTo(0,0)},scrollBack:function(){w.verbose("Scrolling back to original page position"),t.scrollTo(0,x)},clear:{cache:function(){w.verbose("Clearing cached dimensions"),w.cache={}}},set:{ios:function(){l.addClass(T.ios)},pushed:function(){O.addClass(T.pushed)},pushable:function(){O.addClass(T.pushable)},dimmed:function(){z.addClass(T.dimmed)},active:function(){D.addClass(T.active)},animating:function(){D.addClass(T.animating)},transition:function(e){e=e||w.get.transition(),D.addClass(e)},direction:function(e){e=e||w.get.direction(),D.addClass(T[e])},visible:function(){D.addClass(T.visible)},overlay:function(){D.addClass(T.overlay)}},remove:{inlineCSS:function(){w.debug("Removing inline css styles",r),r&&r.length>0&&r.remove()},ios:function(){l.removeClass(T.ios)},pushed:function(){O.removeClass(T.pushed)},pushable:function(){O.removeClass(T.pushable)},active:function(){D.removeClass(T.active)},animating:function(){D.removeClass(T.animating)},transition:function(e){e=e||w.get.transition(),D.removeClass(e)},direction:function(e){e=e||w.get.direction(),D.removeClass(T[e])},visible:function(){D.removeClass(T.visible)},overlay:function(){D.removeClass(T.overlay)}},get:{direction:function(){return D.hasClass(T.top)?T.top:D.hasClass(T.right)?T.right:D.hasClass(T.bottom)?T.bottom:T.left},transition:function(){var e,t=w.get.direction();return e=w.is.mobile()?"auto"==k.mobileTransition?k.defaultTransition.mobile[t]:k.mobileTransition:"auto"==k.transition?k.defaultTransition.computer[t]:k.transition,w.verbose("Determined transition",e),e},transitionEvent:function(){var e,t=n.createElement("element"),o={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(e in o)if(t.style[e]!==i)return o[e]}},is:{ie:function(){var e=!t.ActiveXObject&&"ActiveXObject"in t,n="ActiveXObject"in t;return e||n},ios:function(){var e=navigator.userAgent,t=e.match(R.ios),n=e.match(R.mobileChrome);return t&&!n?(w.verbose("Browser was found to be iOS",e),!0):!1},mobile:function(){var e=navigator.userAgent,t=e.match(R.mobile);return t?(w.verbose("Browser was found to be mobile",e),!0):(w.verbose("Browser is not mobile, using regular transition",e),!1)},hidden:function(){return!w.is.visible()},visible:function(){return D.hasClass(T.visible)},open:function(){return w.is.visible()},closed:function(){return w.is.hidden()},vertical:function(){return D.hasClass(T.top)},animating:function(){return O.hasClass(T.animating)},rtl:function(){return w.cache.rtl===i&&(w.cache.rtl="rtl"==D.css("direction")),w.cache.rtl}},setting:function(t,n){if(w.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,k,t);else{if(n===i)return k[t];k[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,w,t);else{if(n===i)return w[t];w[t]=n}},debug:function(){k.debug&&(k.performance?w.performance.log(arguments):(w.debug=Function.prototype.bind.call(console.info,console,k.name+":"),w.debug.apply(console,arguments)))},verbose:function(){k.verbose&&k.debug&&(k.performance?w.performance.log(arguments):(w.verbose=Function.prototype.bind.call(console.info,console,k.name+":"),w.verbose.apply(console,arguments)))},error:function(){w.error=Function.prototype.bind.call(console.error,console,k.name+":"),w.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;k.performance&&(t=(new Date).getTime(),i=m||t,n=t-i,m=t,f.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:I,"Execution Time":n})),clearTimeout(w.performance.timer),w.performance.timer=setTimeout(w.performance.display,500)},display:function(){var t=k.name+":",n=0;m=!1,clearTimeout(w.performance.timer),e.each(f,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",d&&(t+=" '"+d+"'"),(console.group!==i||console.table!==i)&&f.length>0&&(console.groupCollapsed(t),console.table?console.table(f):e.each(f,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),f=[]}},invoke:function(t,n,o){var r,s,c,l=L;return n=n||v,o=I||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(w.error(P.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},p?(L===i&&w.initialize(),w.invoke(g)):(L!==i&&w.invoke("destroy"),w.initialize())}),a!==i?a:this},e.fn.sidebar.settings={name:"Sidebar",namespace:"sidebar",debug:!1,verbose:!1,performance:!0,transition:"auto",mobileTransition:"auto",defaultTransition:{computer:{left:"uncover",right:"uncover",top:"overlay",bottom:"overlay"},mobile:{left:"uncover",right:"uncover",top:"overlay",bottom:"overlay"}},context:"body",exclusive:!1,closable:!0,dimPage:!0,scrollLock:!1,returnScroll:!1,delaySetup:!1,duration:500,onChange:function(){},onShow:function(){},onHide:function(){},onHidden:function(){},onVisible:function(){},className:{active:"active",animating:"animating",dimmed:"dimmed",ios:"ios",pushable:"pushable",pushed:"pushed",right:"right",top:"top",left:"left",bottom:"bottom",visible:"visible"},selector:{fixed:".fixed",omitted:"script, link, style, .ui.modal, .ui.dimmer, .ui.nag, .ui.fixed",pusher:".pusher",sidebar:".ui.sidebar"},regExp:{ios:/(iPad|iPhone|iPod)/g,mobileChrome:/(CriOS)/g,mobile:/Mobile|iP(hone|od|ad)|Android|BlackBerry|IEMobile|Kindle|NetFront|Silk-Accelerated|(hpw|web)OS|Fennec|Minimo|Opera M(obi|ini)|Blazer|Dolfin|Dolphin|Skyfire|Zune/g},error:{method:"The method you called is not defined.",pusher:"Had to add pusher element. For optimal performance make sure body content is inside a pusher element",movedSidebar:"Had to move sidebar. For optimal performance make sure sidebar and pusher are direct children of your body tag",overlay:"The overlay setting is no longer supported, use animation: overlay",notFound:"There were no elements that matched the specified selector"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.sticky=function(n){var o,a=e(this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1);return a.each(function(){var a,m,f,g,p=e.isPlainObject(n)?e.extend(!0,{},e.fn.sticky.settings,n):e.extend({},e.fn.sticky.settings),v=p.className,h=p.namespace,b=p.error,y="."+h,x="module-"+h,C=e(this),w=e(t),k=e(p.scrollContext),S=(C.selector||"",C.data(x)),T=t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)},A=this;g={initialize:function(){g.determineContainer(),g.determineContext(),g.verbose("Initializing sticky",p,a),g.save.positions(),g.checkErrors(),g.bind.events(),p.observeChanges&&g.observeChanges(),g.instantiate()},instantiate:function(){g.verbose("Storing instance of module",g),S=g,C.data(x,g)},destroy:function(){g.verbose("Destroying previous instance"),g.reset(),f&&f.disconnect(),w.off("load"+y,g.event.load).off("resize"+y,g.event.resize),k.off("scrollchange"+y,g.event.scrollchange),C.removeData(x)},observeChanges:function(){var e=m[0];"MutationObserver"in t&&(f=new MutationObserver(function(e){clearTimeout(g.timer),g.timer=setTimeout(function(){g.verbose("DOM tree modified, updating sticky menu",e),g.refresh()},100)}),f.observe(A,{childList:!0,subtree:!0}),f.observe(e,{childList:!0,subtree:!0}),g.debug("Setting up mutation observer",f))},determineContainer:function(){a=C.offsetParent()},determineContext:function(){return m=p.context?e(p.context):a,0===m.length?void g.error(b.invalidContext,p.context,C):void 0},checkErrors:function(){return g.is.hidden()&&g.error(b.visible,C),g.cache.element.height>g.cache.context.height?(g.reset(),void g.error(b.elementSize,C)):void 0},bind:{events:function(){w.on("load"+y,g.event.load).on("resize"+y,g.event.resize),k.off("scroll"+y).on("scroll"+y,g.event.scroll).on("scrollchange"+y,g.event.scrollchange)}},event:{load:function(){g.verbose("Page contents finished loading"),T(g.refresh)},resize:function(){g.verbose("Window resized"),T(g.refresh)},scroll:function(){T(function(){k.triggerHandler("scrollchange"+y,k.scrollTop())})},scrollchange:function(e,t){g.stick(t),p.onScroll.call(A)}},refresh:function(e){g.reset(),p.context||g.determineContext(),e&&g.determineContainer(),g.save.positions(),g.stick(),p.onReposition.call(A)},supports:{sticky:function(){{var t=e("<div/>");t[0]}return t.addClass(v.supported),t.css("position").match("sticky")}},save:{lastScroll:function(e){g.lastScroll=e},elementScroll:function(e){g.elementScroll=e},positions:function(){{var e={height:w.height()},t={margin:{top:parseInt(C.css("margin-top"),10),bottom:parseInt(C.css("margin-bottom"),10)},offset:C.offset(),width:C.outerWidth(),height:C.outerHeight()},n={offset:m.offset(),height:m.outerHeight()};({height:a.outerHeight()})}g.cache={fits:t.height<e.height,window:{height:e.height},element:{margin:t.margin,top:t.offset.top-t.margin.top,left:t.offset.left,width:t.width,height:t.height,bottom:t.offset.top+t.height},context:{top:n.offset.top,height:n.height,bottom:n.offset.top+n.height}},g.set.containerSize(),g.set.size(),g.stick(),g.debug("Caching element positions",g.cache)}},get:{direction:function(e){var t="down";return e=e||k.scrollTop(),g.lastScroll!==i&&(g.lastScroll<e?t="down":g.lastScroll>e&&(t="up")),t},scrollChange:function(e){return e=e||k.scrollTop(),g.lastScroll?e-g.lastScroll:0},currentElementScroll:function(){return g.elementScroll?g.elementScroll:g.is.top()?Math.abs(parseInt(C.css("top"),10))||0:Math.abs(parseInt(C.css("bottom"),10))||0},elementScroll:function(e){e=e||k.scrollTop();var t=g.cache.element,n=g.cache.window,i=g.get.scrollChange(e),o=t.height-n.height+p.offset,a=g.get.currentElementScroll(),r=a+i;return a=g.cache.fits||0>r?0:r>o?o:r}},remove:{lastScroll:function(){delete g.lastScroll},elementScroll:function(e){delete g.elementScroll},offset:function(){C.css("margin-top","")}},set:{offset:function(){g.verbose("Setting offset on element",p.offset),C.css("margin-top",p.offset)},containerSize:function(){var e=a.get(0).tagName;"HTML"===e||"body"==e?g.determineContainer():Math.abs(a.outerHeight()-g.cache.context.height)>p.jitter&&(g.debug("Context has padding, specifying exact height for container",g.cache.context.height),a.css({height:g.cache.context.height}))},minimumSize:function(){var e=g.cache.element;a.css("min-height",e.height)},scroll:function(e){g.debug("Setting scroll on element",e),g.elementScroll!=e&&(g.is.top()&&C.css("bottom","").css("top",-e),g.is.bottom()&&C.css("top","").css("bottom",e))},size:function(){0!==g.cache.element.height&&0!==g.cache.element.width&&(A.style.setProperty("width",g.cache.element.width+"px","important"),A.style.setProperty("height",g.cache.element.height+"px","important"))}},is:{top:function(){return C.hasClass(v.top)},bottom:function(){return C.hasClass(v.bottom)},initialPosition:function(){return!g.is.fixed()&&!g.is.bound()},hidden:function(){return!C.is(":visible")},bound:function(){return C.hasClass(v.bound)},fixed:function(){return C.hasClass(v.fixed)}},stick:function(e){var t=e||k.scrollTop(),n=g.cache,i=n.fits,o=n.element,a=n.window,r=n.context,s=g.is.bottom()&&p.pushing?p.bottomOffset:p.offset,e={top:t+s,bottom:t+s+a.height},c=(g.get.direction(e.top),i?0:g.get.elementScroll(e.top)),l=!i,u=0!==o.height;u&&(g.is.initialPosition()?e.top>=r.bottom?(g.debug("Initial element position is bottom of container"),g.bindBottom()):e.top>o.top&&(o.height+e.top-c>=r.bottom?(g.debug("Initial element position is bottom of container"),g.bindBottom()):(g.debug("Initial element position is fixed"),g.fixTop())):g.is.fixed()?g.is.top()?e.top<=o.top?(g.debug("Fixed element reached top of container"),g.setInitialPosition()):o.height+e.top-c>=r.bottom?(g.debug("Fixed element reached bottom of container"),g.bindBottom()):l&&(g.set.scroll(c),g.save.lastScroll(e.top),g.save.elementScroll(c)):g.is.bottom()&&(e.bottom-o.height<=o.top?(g.debug("Bottom fixed rail has reached top of container"),g.setInitialPosition()):e.bottom>=r.bottom?(g.debug("Bottom fixed rail has reached bottom of container"), -g.bindBottom()):l&&(g.set.scroll(c),g.save.lastScroll(e.top),g.save.elementScroll(c))):g.is.bottom()&&(p.pushing?g.is.bound()&&e.bottom<=r.bottom&&(g.debug("Fixing bottom attached element to bottom of browser."),g.fixBottom()):g.is.bound()&&e.top<=r.bottom-o.height&&(g.debug("Fixing bottom attached element to top of browser."),g.fixTop())))},bindTop:function(){g.debug("Binding element to top of parent container"),g.remove.offset(),C.css({left:"",top:"",marginBottom:""}).removeClass(v.fixed).removeClass(v.bottom).addClass(v.bound).addClass(v.top),p.onTop.call(A),p.onUnstick.call(A)},bindBottom:function(){g.debug("Binding element to bottom of parent container"),g.remove.offset(),C.css({left:"",top:""}).removeClass(v.fixed).removeClass(v.top).addClass(v.bound).addClass(v.bottom),p.onBottom.call(A),p.onUnstick.call(A)},setInitialPosition:function(){g.debug("Returning to initial position"),g.unfix(),g.unbind()},fixTop:function(){g.debug("Fixing element to top of page"),g.set.minimumSize(),g.set.offset(),C.css({left:g.cache.element.left,bottom:"",marginBottom:""}).removeClass(v.bound).removeClass(v.bottom).addClass(v.fixed).addClass(v.top),p.onStick.call(A)},fixBottom:function(){g.debug("Sticking element to bottom of page"),g.set.minimumSize(),g.set.offset(),C.css({left:g.cache.element.left,bottom:"",marginBottom:""}).removeClass(v.bound).removeClass(v.top).addClass(v.fixed).addClass(v.bottom),p.onStick.call(A)},unbind:function(){g.is.bound()&&(g.debug("Removing container bound position on element"),g.remove.offset(),C.removeClass(v.bound).removeClass(v.top).removeClass(v.bottom))},unfix:function(){g.is.fixed()&&(g.debug("Removing fixed position on element"),g.remove.offset(),C.removeClass(v.fixed).removeClass(v.top).removeClass(v.bottom),p.onUnstick.call(A))},reset:function(){g.debug("Reseting elements position"),g.unbind(),g.unfix(),g.resetCSS(),g.remove.offset(),g.remove.lastScroll()},resetCSS:function(){C.css({width:"",height:""}),a.css({height:""})},setting:function(t,n){if(e.isPlainObject(t))e.extend(!0,p,t);else{if(n===i)return p[t];p[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,g,t);else{if(n===i)return g[t];g[t]=n}},debug:function(){p.debug&&(p.performance?g.performance.log(arguments):(g.debug=Function.prototype.bind.call(console.info,console,p.name+":"),g.debug.apply(console,arguments)))},verbose:function(){p.verbose&&p.debug&&(p.performance?g.performance.log(arguments):(g.verbose=Function.prototype.bind.call(console.info,console,p.name+":"),g.verbose.apply(console,arguments)))},error:function(){g.error=Function.prototype.bind.call(console.error,console,p.name+":"),g.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;p.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:A,"Execution Time":n})),clearTimeout(g.performance.timer),g.performance.timer=setTimeout(g.performance.display,0)},display:function(){var t=p.name+":",n=0;s=!1,clearTimeout(g.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,a){var r,s,c,l=S;return n=n||d,a=A||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},u?(S===i&&g.initialize(),g.invoke(l)):(S!==i&&S.invoke("destroy"),g.initialize())}),o!==i?o:this},e.fn.sticky.settings={name:"Sticky",namespace:"sticky",debug:!1,verbose:!0,performance:!0,pushing:!1,context:!1,scrollContext:t,offset:0,bottomOffset:0,jitter:5,observeChanges:!1,onReposition:function(){},onScroll:function(){},onStick:function(){},onUnstick:function(){},onTop:function(){},onBottom:function(){},error:{container:"Sticky element must be inside a relative container",visible:"Element is hidden, you must call refresh after element becomes visible",method:"The method you called is not defined.",invalidContext:"Context specified does not exist",elementSize:"Sticky element is larger than its container, cannot create sticky."},className:{bound:"bound",fixed:"fixed",supported:"native",top:"top",bottom:"bottom"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.tab=function(o){var a,r=e(e.isFunction(this)?t:this),s=r.selector||"",c=(new Date).getTime(),l=[],u=arguments[0],d="string"==typeof u,m=[].slice.call(arguments,1),f=!1;return r.each(function(){var g,p,v,h,b,y,x=e.isPlainObject(o)?e.extend(!0,{},e.fn.tab.settings,o):e.extend({},e.fn.tab.settings),C=x.className,w=x.metadata,k=x.selector,S=x.error,T="."+x.namespace,A="module-"+x.namespace,R=e(this),P={},E=!0,F=0,D=this,O=R.data(A);b={initialize:function(){b.debug("Initializing tab menu item",R),b.fix.callbacks(),b.determineTabs(),b.debug("Determining tabs",x.context,p),x.auto&&b.set.auto(),b.bind.events(),x.history&&!f&&(b.initializeHistory(),f=!0),b.instantiate()},instantiate:function(){b.verbose("Storing instance of module",b),O=b,R.data(A,b)},destroy:function(){b.debug("Destroying tabs",R),R.removeData(A).off(T)},bind:{events:function(){e.isWindow(D)||(b.debug("Attaching tab activation events to element",R),R.on("click"+T,b.event.click))}},determineTabs:function(){var t;"parent"===x.context?(R.closest(k.ui).length>0?(t=R.closest(k.ui),b.verbose("Using closest UI element as parent",t)):t=R,g=t.parent(),b.verbose("Determined parent element for creating context",g)):x.context?(g=e(x.context),b.verbose("Using selector for tab context",x.context,g)):g=e("body"),x.childrenOnly?(p=g.children(k.tabs),b.debug("Searching tab context children for tabs",g,p)):(p=g.find(k.tabs),b.debug("Searching tab context for tabs",g,p))},fix:{callbacks:function(){e.isPlainObject(o)&&(o.onTabLoad||o.onTabInit)&&(o.onTabLoad&&(o.onLoad=o.onTabLoad,delete o.onTabLoad,b.error(S.legacyLoad,o.onLoad)),o.onTabInit&&(o.onFirstLoad=o.onTabInit,delete o.onTabInit,b.error(S.legacyInit,o.onFirstLoad)),x=e.extend(!0,{},e.fn.tab.settings,o))}},initializeHistory:function(){if(b.debug("Initializing page state"),e.address===i)return b.error(S.state),!1;if("state"==x.historyType){if(b.debug("Using HTML5 to manage state"),x.path===!1)return b.error(S.path),!1;e.address.history(!0).state(x.path)}e.address.bind("change",b.event.history.change)},event:{click:function(t){var n=e(this).data(w.tab);n!==i?(x.history?(b.verbose("Updating page state",t),e.address.value(n)):(b.verbose("Changing tab",t),b.changeTab(n)),t.preventDefault()):b.debug("No tab specified")},history:{change:function(t){var n=t.pathNames.join("/")||b.get.initialPath(),o=x.templates.determineTitle(n)||!1;b.performance.display(),b.debug("History change event",n,t),y=t,n!==i&&b.changeTab(n),o&&e.address.title(o)}}},refresh:function(){v&&(b.debug("Refreshing tab",v),b.changeTab(v))},cache:{read:function(e){return e!==i?P[e]:!1},add:function(e,t){e=e||v,b.debug("Adding cached content for",e),P[e]=t},remove:function(e){e=e||v,b.debug("Removing cached content for",e),delete P[e]}},set:{auto:function(){var t="string"==typeof x.path?x.path.replace(/\/$/,"")+"/{$tab}":"/{$tab}";b.verbose("Setting up automatic tab retrieval from server",t),e.isPlainObject(x.apiSettings)?x.apiSettings.url=t:x.apiSettings={url:t}},loading:function(e){var t=b.get.tabElement(e),n=t.hasClass(C.loading);n||(b.verbose("Setting loading state for",t),t.addClass(C.loading).siblings(p).removeClass(C.active+" "+C.loading),t.length>0&&x.onRequest.call(t[0],e))},state:function(t){e.address.value(t)}},changeTab:function(n){var i=t.history&&t.history.pushState,o=i&&x.ignoreFirstLoad&&E,a=x.auto||e.isPlainObject(x.apiSettings),r=a&&!o?b.utilities.pathToArray(n):b.get.defaultPathArray(n);n=b.utilities.arrayToPath(r),e.each(r,function(t,i){var s,c,l,u,d=r.slice(0,t+1),m=b.utilities.arrayToPath(d),f=b.is.tab(m),p=t+1==r.length,k=b.get.tabElement(m);if(b.verbose("Looking for tab",i),f){if(b.verbose("Tab was found",i),v=m,h=b.utilities.filterArray(r,d),p?u=!0:(c=r.slice(0,t+2),l=b.utilities.arrayToPath(c),u=!b.is.tab(l),u&&b.verbose("Tab parameters found",c)),u&&a)return o?(b.debug("Ignoring remote content on first tab load",m),E=!1,b.cache.add(n,k.html()),b.activate.all(m),x.onFirstLoad.call(k[0],m,h,y),x.onLoad.call(k[0],m,h,y)):(b.activate.navigation(m),b.fetch.content(m,n)),!1;b.debug("Opened local tab",m),b.activate.all(m),b.cache.read(m)||(b.cache.add(m,!0),b.debug("First time tab loaded calling tab init"),x.onFirstLoad.call(k[0],m,h,y)),x.onLoad.call(k[0],m,h,y)}else{if(-1!=n.search("/")||""===n)return b.error(S.missingTab,R,g,m),!1;if(s=e("#"+n+', a[name="'+n+'"]'),m=s.closest("[data-tab]").data(w.tab),k=b.get.tabElement(m),s&&s.length>0&&m)return b.debug("Anchor link used, opening parent tab",k,s),k.hasClass(C.active)||setTimeout(function(){b.scrollTo(s)},0),b.activate.all(m),b.cache.read(m)||(b.cache.add(m,!0),b.debug("First time tab loaded calling tab init"),x.onFirstLoad.call(k[0],m,h,y)),x.onLoad.call(k[0],m,h,y),!1}})},scrollTo:function(t){var i=t&&t.length>0?t.offset().top:!1;i!==!1&&(b.debug("Forcing scroll to an in-page link in a hidden tab",i,t),e(n).scrollTop(i))},update:{content:function(e,t,n){var o=b.get.tabElement(e),a=o[0];n=n!==i?n:x.evaluateScripts,n?(b.debug("Updating HTML and evaluating inline scripts",e,t),o.html(t)):(b.debug("Updating HTML",e,t),a.innerHTML=t)}},fetch:{content:function(t,n){var o,a,r=b.get.tabElement(t),s={dataType:"html",encodeParameters:!1,on:"now",cache:x.alwaysRefresh,headers:{"X-Remote":!0},onSuccess:function(e){b.cache.add(n,e),b.update.content(t,e),t==v?(b.debug("Content loaded",t),b.activate.tab(t)):b.debug("Content loaded in background",t),x.onFirstLoad.call(r[0],t,h,y),x.onLoad.call(r[0],t,h,y)},urlData:{tab:n}},c=r.api("get request")||!1,l=c&&"pending"===c.state();n=n||t,a=b.cache.read(n),x.cache&&a?(b.activate.tab(t),b.debug("Adding cached content",n),"once"==x.evaluateScripts?b.update.content(t,a,!1):b.update.content(t,a),x.onLoad.call(r[0],t,h,y)):l?(b.set.loading(t),b.debug("Content is already loading",n)):e.api!==i?(o=e.extend(!0,{},x.apiSettings,s),b.debug("Retrieving remote content",n,o),b.set.loading(t),r.api(o)):b.error(S.api)}},activate:{all:function(e){b.activate.tab(e),b.activate.navigation(e)},tab:function(e){var t=b.get.tabElement(e),n=t.hasClass(C.active);b.verbose("Showing tab content for",t),n||(t.addClass(C.active).siblings(p).removeClass(C.active+" "+C.loading),t.length>0&&x.onVisible.call(t[0],e))},navigation:function(e){var t=b.get.navElement(e),n=t.hasClass(C.active);b.verbose("Activating tab navigation for",t,e),n||t.addClass(C.active).siblings(r).removeClass(C.active+" "+C.loading)}},deactivate:{all:function(){b.deactivate.navigation(),b.deactivate.tabs()},navigation:function(){r.removeClass(C.active)},tabs:function(){p.removeClass(C.active+" "+C.loading)}},is:{tab:function(e){return e!==i?b.get.tabElement(e).length>0:!1}},get:{initialPath:function(){return r.eq(0).data(w.tab)||p.eq(0).data(w.tab)},path:function(){return e.address.value()},defaultPathArray:function(e){return b.utilities.pathToArray(b.get.defaultPath(e))},defaultPath:function(e){var t=r.filter("[data-"+w.tab+'^="'+e+'/"]').eq(0),n=t.data(w.tab)||!1;if(n){if(b.debug("Found default tab",n),F<x.maxDepth)return F++,b.get.defaultPath(n);b.error(S.recursion)}else b.debug("No default tabs found for",e,p);return F=0,e},navElement:function(e){return e=e||v,r.filter("[data-"+w.tab+'="'+e+'"]')},tabElement:function(e){var t,n,i,o;return e=e||v,i=b.utilities.pathToArray(e),o=b.utilities.last(i),t=p.filter("[data-"+w.tab+'="'+e+'"]'),n=p.filter("[data-"+w.tab+'="'+o+'"]'),t.length>0?t:n},tab:function(){return v}},utilities:{filterArray:function(t,n){return e.grep(t,function(t){return-1==e.inArray(t,n)})},last:function(t){return e.isArray(t)?t[t.length-1]:!1},pathToArray:function(e){return e===i&&(e=v),"string"==typeof e?e.split("/"):[e]},arrayToPath:function(t){return e.isArray(t)?t.join("/"):!1}},setting:function(t,n){if(b.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,x,t);else{if(n===i)return x[t];x[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,b,t);else{if(n===i)return b[t];b[t]=n}},debug:function(){x.debug&&(x.performance?b.performance.log(arguments):(b.debug=Function.prototype.bind.call(console.info,console,x.name+":"),b.debug.apply(console,arguments)))},verbose:function(){x.verbose&&x.debug&&(x.performance?b.performance.log(arguments):(b.verbose=Function.prototype.bind.call(console.info,console,x.name+":"),b.verbose.apply(console,arguments)))},error:function(){b.error=Function.prototype.bind.call(console.error,console,x.name+":"),b.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;x.performance&&(t=(new Date).getTime(),i=c||t,n=t-i,c=t,l.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:D,"Execution Time":n})),clearTimeout(b.performance.timer),b.performance.timer=setTimeout(b.performance.display,500)},display:function(){var t=x.name+":",n=0;c=!1,clearTimeout(b.performance.timer),e.each(l,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",s&&(t+=" '"+s+"'"),(console.group!==i||console.table!==i)&&l.length>0&&(console.groupCollapsed(t),console.table?console.table(l):e.each(l,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),l=[]}},invoke:function(t,n,o){var r,s,c,l=O;return n=n||m,o=D||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(b.error(S.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},d?(O===i&&b.initialize(),b.invoke(u)):(O!==i&&O.invoke("destroy"),b.initialize())}),a!==i?a:this},e.tab=function(){e(t).tab.apply(this,arguments)},e.fn.tab.settings={name:"Tab",namespace:"tab",debug:!1,verbose:!1,performance:!0,auto:!1,history:!1,historyType:"hash",path:!1,context:!1,childrenOnly:!1,maxDepth:25,alwaysRefresh:!1,cache:!0,ignoreFirstLoad:!1,apiSettings:!1,evaluateScripts:"once",onFirstLoad:function(e,t,n){},onLoad:function(e,t,n){},onVisible:function(e,t,n){},onRequest:function(e,t,n){},templates:{determineTitle:function(e){}},error:{api:"You attempted to load content without API module",method:"The method you called is not defined",missingTab:"Activated tab cannot be found. Tabs are case-sensitive.",noContent:"The tab you specified is missing a content url.",path:"History enabled, but no path was specified",recursion:"Max recursive depth reached",legacyInit:"onTabInit has been renamed to onFirstLoad in 2.0, please adjust your code.",legacyLoad:"onTabLoad has been renamed to onLoad in 2.0. Please adjust your code",state:"History requires Asual's Address library <https://github.com/asual/jquery-address>"},metadata:{tab:"tab",loaded:"loaded",promise:"promise"},className:{loading:"loading",active:"active"},selector:{tabs:".ui.tab",ui:".ui"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.transition=function(){{var o,a=e(this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments,u=l[0],d=[].slice.call(arguments,1),m="string"==typeof u;t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)}}return a.each(function(t){var f,g,p,v,h,b,y,x,C,w=e(this),k=this;C={initialize:function(){f=C.get.settings.apply(k,l),v=f.className,p=f.error,h=f.metadata,x="."+f.namespace,y="module-"+f.namespace,g=w.data(y)||C,b=C.get.animationEndEvent(),m&&(m=C.invoke(u)),m===!1&&(C.verbose("Converted arguments into settings object",f),f.interval?C.delay(f.animate):C.animate(),C.instantiate())},instantiate:function(){C.verbose("Storing instance of module",C),g=C,w.data(y,g)},destroy:function(){C.verbose("Destroying previous module for",k),w.removeData(y)},refresh:function(){C.verbose("Refreshing display type on next animation"),delete C.displayType},forceRepaint:function(){C.verbose("Forcing element repaint");var e=w.parent(),t=w.next();0===t.length?w.detach().appendTo(e):w.detach().insertBefore(t)},repaint:function(){C.verbose("Repainting element");k.offsetWidth},delay:function(e){var n,o,r=C.get.animationDirection();r||(r=C.can.transition()?C.get.direction():"static"),e=e!==i?e:f.interval,n="auto"==f.reverse&&r==v.outward,o=n||1==f.reverse?(a.length-t)*f.interval:t*f.interval,C.debug("Delaying animation by",o),setTimeout(C.animate,o)},animate:function(e){if(f=e||f,!C.is.supported())return C.error(p.support),!1;if(C.debug("Preparing animation",f.animation),C.is.animating()){if(f.queue)return!f.allowRepeats&&C.has.direction()&&C.is.occurring()&&C.queuing!==!0?C.debug("Animation is currently occurring, preventing queueing same animation",f.animation):C.queue(f.animation),!1;if(!f.allowRepeats&&C.is.occurring())return C.debug("Animation is already occurring, will not execute repeated animation",f.animation),!1;C.debug("New animation started, completing previous early",f.animation),g.complete()}C.can.animate()?C.set.animating(f.animation):C.error(p.noAnimation,f.animation,k)},reset:function(){C.debug("Resetting animation to beginning conditions"),C.remove.animationCallbacks(),C.restore.conditions(),C.remove.animating()},queue:function(e){C.debug("Queueing animation of",e),C.queuing=!0,w.one(b+".queue"+x,function(){C.queuing=!1,C.repaint(),C.animate.apply(this,f)})},complete:function(e){C.debug("Animation complete",f.animation),C.remove.completeCallback(),C.remove.failSafe(),C.is.looping()||(C.is.outward()?(C.verbose("Animation is outward, hiding element"),C.restore.conditions(),C.hide()):C.is.inward()?(C.verbose("Animation is outward, showing element"),C.restore.conditions(),C.show()):C.restore.conditions())},force:{visible:function(){var e=w.attr("style"),t=C.get.userStyle(),n=C.get.displayType(),o=t+"display: "+n+" !important;",a=w.css("display"),r=e===i||""===e;a!==n?(C.verbose("Overriding default display to show element",n),w.attr("style",o)):r&&w.removeAttr("style")},hidden:function(){var e=w.attr("style"),t=w.css("display"),n=e===i||""===e;"none"===t||C.is.hidden()?n&&w.removeAttr("style"):(C.verbose("Overriding default display to hide element"),w.css("display","none"))}},has:{direction:function(t){var n=!1;return t=t||f.animation,"string"==typeof t&&(t=t.split(" "),e.each(t,function(e,t){(t===v.inward||t===v.outward)&&(n=!0)})),n},inlineDisplay:function(){var t=w.attr("style")||"";return e.isArray(t.match(/display.*?;/,""))}},set:{animating:function(e){var t;C.remove.completeCallback(),e=e||f.animation,t=C.get.animationClass(e),C.save.animation(t),C.force.visible(),C.remove.hidden(),C.remove.direction(),C.start.animation(t)},duration:function(e,t){t=t||f.duration,t="number"==typeof t?t+"ms":t,(t||0===t)&&(C.verbose("Setting animation duration",t),w.css({"animation-duration":t}))},direction:function(e){e=e||C.get.direction(),e==v.inward?C.set.inward():C.set.outward()},looping:function(){C.debug("Transition set to loop"),w.addClass(v.looping)},hidden:function(){w.addClass(v.transition).addClass(v.hidden)},inward:function(){C.debug("Setting direction to inward"),w.removeClass(v.outward).addClass(v.inward)},outward:function(){C.debug("Setting direction to outward"),w.removeClass(v.inward).addClass(v.outward)},visible:function(){w.addClass(v.transition).addClass(v.visible)}},start:{animation:function(e){e=e||C.get.animationClass(),C.debug("Starting tween",e),w.addClass(e).one(b+".complete"+x,C.complete),f.useFailSafe&&C.add.failSafe(),C.set.duration(f.duration),f.onStart.call(k)}},save:{animation:function(e){C.cache||(C.cache={}),C.cache.animation=e},displayType:function(e){"none"!==e&&w.data(h.displayType,e)},transitionExists:function(t,n){e.fn.transition.exists[t]=n,C.verbose("Saving existence of transition",t,n)}},restore:{conditions:function(){var e=C.get.currentAnimation();e&&(w.removeClass(e),C.verbose("Removing animation class",C.cache)),C.remove.duration()}},add:{failSafe:function(){var e=C.get.duration();C.timer=setTimeout(function(){w.triggerHandler(b)},e+f.failSafeDelay),C.verbose("Adding fail safe timer",C.timer)}},remove:{animating:function(){w.removeClass(v.animating)},animationCallbacks:function(){C.remove.queueCallback(),C.remove.completeCallback()},queueCallback:function(){w.off(".queue"+x)},completeCallback:function(){w.off(".complete"+x)},display:function(){w.css("display","")},direction:function(){w.removeClass(v.inward).removeClass(v.outward)},duration:function(){w.css("animation-duration","")},failSafe:function(){C.verbose("Removing fail safe timer",C.timer),C.timer&&clearTimeout(C.timer)},hidden:function(){w.removeClass(v.hidden)},visible:function(){w.removeClass(v.visible)},looping:function(){C.debug("Transitions are no longer looping"),C.is.looping()&&(C.reset(),w.removeClass(v.looping))},transition:function(){w.removeClass(v.visible).removeClass(v.hidden)}},get:{settings:function(t,n,i){return"object"==typeof t?e.extend(!0,{},e.fn.transition.settings,t):"function"==typeof i?e.extend({},e.fn.transition.settings,{animation:t,onComplete:i,duration:n}):"string"==typeof n||"number"==typeof n?e.extend({},e.fn.transition.settings,{animation:t,duration:n}):"object"==typeof n?e.extend({},e.fn.transition.settings,n,{animation:t}):"function"==typeof n?e.extend({},e.fn.transition.settings,{animation:t,onComplete:n}):e.extend({},e.fn.transition.settings,{animation:t})},animationClass:function(e){var t=e||f.animation,n=C.can.transition()&&!C.has.direction()?C.get.direction()+" ":"";return v.animating+" "+v.transition+" "+n+t},currentAnimation:function(){return C.cache&&C.cache.animation!==i?C.cache.animation:!1},currentDirection:function(){return C.is.inward()?v.inward:v.outward},direction:function(){return C.is.hidden()||!C.is.visible()?v.inward:v.outward},animationDirection:function(t){var n;return t=t||f.animation,"string"==typeof t&&(t=t.split(" "),e.each(t,function(e,t){t===v.inward?n=v.inward:t===v.outward&&(n=v.outward)})),n?n:!1},duration:function(e){return e=e||f.duration,e===!1&&(e=w.css("animation-duration")||0),"string"==typeof e?e.indexOf("ms")>-1?parseFloat(e):1e3*parseFloat(e):e},displayType:function(){return f.displayType?f.displayType:(w.data(h.displayType)===i&&C.can.transition(!0),w.data(h.displayType))},userStyle:function(e){return e=e||w.attr("style")||"",e.replace(/display.*?;/,"")},transitionExists:function(t){return e.fn.transition.exists[t]},animationStartEvent:function(){var e,t=n.createElement("div"),o={animation:"animationstart",OAnimation:"oAnimationStart",MozAnimation:"mozAnimationStart",WebkitAnimation:"webkitAnimationStart"};for(e in o)if(t.style[e]!==i)return o[e];return!1},animationEndEvent:function(){var e,t=n.createElement("div"),o={animation:"animationend",OAnimation:"oAnimationEnd",MozAnimation:"mozAnimationEnd",WebkitAnimation:"webkitAnimationEnd"};for(e in o)if(t.style[e]!==i)return o[e];return!1}},can:{transition:function(t){var n,o,a,r,s,c,l,u=f.animation,d=C.get.transitionExists(u);if(d===i||t){if(C.verbose("Determining whether animation exists"),n=w.attr("class"),o=w.prop("tagName"),a=e("<"+o+" />").addClass(n).insertAfter(w),r=a.addClass(u).removeClass(v.inward).removeClass(v.outward).addClass(v.animating).addClass(v.transition).css("animationName"),s=a.addClass(v.inward).css("animationName"),l=a.attr("class",n).removeAttr("style").removeClass(v.hidden).removeClass(v.visible).show().css("display"),C.verbose("Determining final display state",l),C.save.displayType(l),a.remove(),r!=s)C.debug("Direction exists for animation",u),c=!0;else{if("none"==r||!r)return void C.debug("No animation defined in css",u);C.debug("Static animation found",u,l),c=!1}C.save.transitionExists(u,c)}return d!==i?d:c},animate:function(){return C.can.transition()!==i}},is:{animating:function(){return w.hasClass(v.animating)},inward:function(){return w.hasClass(v.inward)},outward:function(){return w.hasClass(v.outward)},looping:function(){return w.hasClass(v.looping)},occurring:function(e){return e=e||f.animation,e="."+e.replace(" ","."),w.filter(e).length>0},visible:function(){return w.is(":visible")},hidden:function(){return"hidden"===w.css("visibility")},supported:function(){return b!==!1}},hide:function(){C.verbose("Hiding element"),C.is.animating()&&C.reset(),k.blur(),C.remove.display(),C.remove.visible(),C.set.hidden(),C.force.hidden(),f.onHide.call(k),f.onComplete.call(k)},show:function(e){C.verbose("Showing element",e),C.remove.hidden(),C.set.visible(),C.force.visible(),f.onShow.call(k),f.onComplete.call(k)},toggle:function(){C.is.visible()?C.hide():C.show()},stop:function(){C.debug("Stopping current animation"),w.triggerHandler(b)},stopAll:function(){C.debug("Stopping all animation"),C.remove.queueCallback(),w.triggerHandler(b)},clear:{queue:function(){C.debug("Clearing animation queue"),C.remove.queueCallback()}},enable:function(){C.verbose("Starting animation"),w.removeClass(v.disabled)},disable:function(){C.debug("Stopping animation"),w.addClass(v.disabled)},setting:function(t,n){if(C.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,f,t);else{if(n===i)return f[t];f[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,C,t);else{if(n===i)return C[t];C[t]=n}},debug:function(){f.debug&&(f.performance?C.performance.log(arguments):(C.debug=Function.prototype.bind.call(console.info,console,f.name+":"),C.debug.apply(console,arguments)))},verbose:function(){f.verbose&&f.debug&&(f.performance?C.performance.log(arguments):(C.verbose=Function.prototype.bind.call(console.info,console,f.name+":"),C.verbose.apply(console,arguments)))},error:function(){C.error=Function.prototype.bind.call(console.error,console,f.name+":"),C.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;f.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:k,"Execution Time":n})),clearTimeout(C.performance.timer),C.performance.timer=setTimeout(C.performance.display,500)},display:function(){var t=f.name+":",n=0;s=!1,clearTimeout(C.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),a.length>1&&(t+=" ("+a.length+")"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,a){var r,s,c,l=g;return n=n||d,a=k||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s!==i?s:!1}},C.initialize()}),o!==i?o:this},e.fn.transition.exists={},e.fn.transition.settings={name:"Transition",debug:!1,verbose:!1,performance:!0,namespace:"transition",interval:0,reverse:"auto",onStart:function(){},onComplete:function(){},onShow:function(){},onHide:function(){},useFailSafe:!0,failSafeDelay:100,allowRepeats:!1,displayType:!1,animation:"fade",duration:!1,queue:!0,metadata:{displayType:"display"},className:{animating:"animating",disabled:"disabled",hidden:"hidden",inward:"in",loading:"loading",looping:"looping",outward:"out",transition:"transition",visible:"visible"},error:{noAnimation:"There is no css animation matching the one you specified. Please make sure your css is vendor prefixed, and you have included transition css.",repeated:"That animation is already occurring, cancelling repeated animation",method:"The method you called is not defined",support:"This browser does not support CSS animations"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.api=e.fn.api=function(n){var o,a=e(e.isFunction(this)?t:this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1);return a.each(function(){var a,m,f,g,p,v,h=e.isPlainObject(n)?e.extend(!0,{},e.fn.api.settings,n):e.extend({},e.fn.api.settings),b=h.namespace,y=h.metadata,x=h.selector,C=h.error,w=h.className,k="."+b,S="module-"+b,T=e(this),A=T.closest(x.form),R=h.stateContext?e(h.stateContext):T,P=this,E=R[0],F=T.data(S);v={initialize:function(){u||v.bind.events(),v.instantiate()},instantiate:function(){v.verbose("Storing instance of module",v),F=v,T.data(S,F)},destroy:function(){v.verbose("Destroying previous module for",P),T.removeData(S).off(k)},bind:{events:function(){var e=v.get.event();e?(v.verbose("Attaching API events to element",e),T.on(e+k,v.event.trigger)):"now"==h.on&&(v.debug("Querying API endpoint immediately"),v.query())}},decode:{json:function(e){if(e!==i&&"string"==typeof e)try{e=JSON.parse(e)}catch(t){}return e}},read:{cachedResponse:function(e){var n;return t.Storage===i?void v.error(C.noStorage):(n=sessionStorage.getItem(e),v.debug("Using cached response",e,n),n=v.decode.json(n),!1)}},write:{cachedResponse:function(n,o){return o&&""===o?void v.debug("Response empty, not caching",o):t.Storage===i?void v.error(C.noStorage):(e.isPlainObject(o)&&(o=JSON.stringify(o)),sessionStorage.setItem(n,o),void v.verbose("Storing cached response for url",n,o))}},query:function(){if(v.is.disabled())return void v.debug("Element is disabled API request aborted");if(v.is.loading()){if(!h.interruptRequests)return void v.debug("Cancelling request, previous request is still pending");v.debug("Interrupting previous request"),v.abort()}return h.defaultData&&e.extend(!0,h.urlData,v.get.defaultData()),h.serializeForm&&(h.data=v.add.formData(h.data)),m=v.get.settings(),m===!1?(v.cancelled=!0,void v.error(C.beforeSend)):(v.cancelled=!1,f=v.get.templatedURL(),f||v.is.mocked()?(f=v.add.urlData(f),f||v.is.mocked()?(a=e.extend(!0,{},h,{type:h.method||h.type,data:g,url:h.base+f,beforeSend:h.beforeXHR,success:function(){},failure:function(){},complete:function(){}}),v.debug("Querying URL",a.url),v.verbose("Using AJAX settings",a),"local"===h.cache&&v.read.cachedResponse(f)?(v.debug("Response returned from local cache"),v.request=v.create.request(),void v.request.resolveWith(E,[v.read.cachedResponse(f)])):void(h.throttle?h.throttleFirstRequest||v.timer?(v.debug("Throttling request",h.throttle),clearTimeout(v.timer),v.timer=setTimeout(function(){v.timer&&delete v.timer,v.debug("Sending throttled request",g,a.method),v.send.request()},h.throttle)):(v.debug("Sending request",g,a.method),v.send.request(),v.timer=setTimeout(function(){},h.throttle)):(v.debug("Sending request",g,a.method),v.send.request()))):void 0):void v.error(C.missingURL))},should:{removeError:function(){return h.hideError===!0||"auto"===h.hideError&&!v.is.form()}},is:{disabled:function(){return T.filter(x.disabled).length>0},form:function(){return T.is("form")||R.is("form")},mocked:function(){return h.mockResponse||h.mockResponseAsync},input:function(){return T.is("input")},loading:function(){return v.request&&"pending"==v.request.state()},abortedRequest:function(e){return e&&e.readyState!==i&&0===e.readyState?(v.verbose("XHR request determined to be aborted"),!0):(v.verbose("XHR request was not aborted"),!1)},validResponse:function(t){return"json"!==h.dataType&&"jsonp"!==h.dataType||!e.isFunction(h.successTest)?(v.verbose("Response is not JSON, skipping validation",h.successTest,t),!0):(v.debug("Checking JSON returned success",h.successTest,t),h.successTest(t)?(v.debug("Response passed success test",t),!0):(v.debug("Response failed success test",t),!1))}},was:{cancelled:function(){ -return v.cancelled||!1},succesful:function(){return v.request&&"resolved"==v.request.state()},failure:function(){return v.request&&"rejected"==v.request.state()},complete:function(){return v.request&&("resolved"==v.request.state()||"rejected"==v.request.state())}},add:{urlData:function(t,n){var o,a;return t&&(o=t.match(h.regExp.required),a=t.match(h.regExp.optional),n=n||h.urlData,o&&(v.debug("Looking for required URL variables",o),e.each(o,function(o,a){var r=-1!==a.indexOf("$")?a.substr(2,a.length-3):a.substr(1,a.length-2),s=e.isPlainObject(n)&&n[r]!==i?n[r]:T.data(r)!==i?T.data(r):R.data(r)!==i?R.data(r):n[r];return s===i?(v.error(C.requiredParameter,r,t),t=!1,!1):(v.verbose("Found required variable",r,s),s=h.encodeParameters?v.get.urlEncodedValue(s):s,t=t.replace(a,s),void 0)})),a&&(v.debug("Looking for optional URL variables",o),e.each(a,function(o,a){var r=-1!==a.indexOf("$")?a.substr(3,a.length-4):a.substr(2,a.length-3),s=e.isPlainObject(n)&&n[r]!==i?n[r]:T.data(r)!==i?T.data(r):R.data(r)!==i?R.data(r):n[r];s!==i?(v.verbose("Optional variable Found",r,s),t=t.replace(a,s)):(v.verbose("Optional variable not found",r),t=-1!==t.indexOf("/"+a)?t.replace("/"+a,""):t.replace(a,""))}))),t},formData:function(t){var n,o=e.fn.serializeObject!==i,a=o?A.serializeObject():A.serialize();return t=t||h.data,n=e.isPlainObject(t),n?o?(v.debug("Extending existing data with form data",t,a),t=e.extend(!0,{},t,a)):(v.error(C.missingSerialize),v.debug("Cant extend data. Replacing data with form data",t,a),t=a):(v.debug("Adding form data",a),t=a),t}},send:{request:function(){v.set.loading(),v.request=v.create.request(),v.is.mocked()?v.mockedXHR=v.create.mockedXHR():v.xhr=v.create.xhr(),h.onRequest.call(E,v.request,v.xhr)}},event:{trigger:function(e){v.query(),("submit"==e.type||"click"==e.type)&&e.preventDefault()},xhr:{always:function(){},done:function(t,n,i){var o=this,a=(new Date).getTime()-p,r=h.loadingDuration-a,s=e.isFunction(h.onResponse)?h.onResponse.call(o,e.extend(!0,{},t)):!1;r=r>0?r:0,s&&(v.debug("Modified API response in onResponse callback",h.onResponse,s,t),t=s),r>0&&v.debug("Response completed early delaying state change by",r),setTimeout(function(){v.is.validResponse(t)?v.request.resolveWith(o,[t,i]):v.request.rejectWith(o,[i,"invalid"])},r)},fail:function(e,t,n){var i=this,o=(new Date).getTime()-p,a=h.loadingDuration-o;a=a>0?a:0,a>0&&v.debug("Response completed early delaying state change by",a),setTimeout(function(){v.is.abortedRequest(e)?v.request.rejectWith(i,[e,"aborted",n]):v.request.rejectWith(i,[e,"error",t,n])},a)}},request:{done:function(e,t){v.debug("Successful API Response",e),"local"===h.cache&&f&&(v.write.cachedResponse(f,e),v.debug("Saving server response locally",v.cache)),h.onSuccess.call(E,e,T,t)},complete:function(e,t){var n,i;v.was.succesful()?(i=e,n=t):(n=e,i=v.get.responseFromXHR(n)),v.remove.loading(),h.onComplete.call(E,i,T,n)},fail:function(e,t,n){var o=v.get.responseFromXHR(e),r=v.get.errorFromRequest(o,t,n);"aborted"==t?(v.debug("XHR Aborted (Most likely caused by page navigation or CORS Policy)",t,n),h.onAbort.call(E,t,T,e)):"invalid"==t?v.debug("JSON did not pass success test. A server-side error has most likely occurred",o):"error"==t&&e!==i&&(v.debug("XHR produced a server error",t,n),200!=e.status&&n!==i&&""!==n&&v.error(C.statusMessage+n,a.url),h.onError.call(E,r,T,e)),h.errorDuration&&"aborted"!==t&&(v.debug("Adding error state"),v.set.error(),v.should.removeError()&&setTimeout(v.remove.error,h.errorDuration)),v.debug("API Request failed",r,e),h.onFailure.call(E,o,T,e)}}},create:{request:function(){return e.Deferred().always(v.event.request.complete).done(v.event.request.done).fail(v.event.request.fail)},mockedXHR:function(){var t,n,i,o=!1,a=!1,r=!1;return i=e.Deferred().always(v.event.xhr.complete).done(v.event.xhr.done).fail(v.event.xhr.fail),h.mockResponse?(e.isFunction(h.mockResponse)?(v.debug("Using mocked callback returning response",h.mockResponse),n=h.mockResponse.call(E,h)):(v.debug("Using specified response",h.mockResponse),n=h.mockResponse),i.resolveWith(E,[n,o,{responseText:n}])):e.isFunction(h.mockResponseAsync)&&(t=function(e){v.debug("Async callback returned response",e),e?i.resolveWith(E,[e,o,{responseText:e}]):i.rejectWith(E,[{responseText:e},a,r])},v.debug("Using async mocked response",h.mockResponseAsync),h.mockResponseAsync.call(E,h,t)),i},xhr:function(){var t;return t=e.ajax(a).always(v.event.xhr.always).done(v.event.xhr.done).fail(v.event.xhr.fail),v.verbose("Created server request",t),t}},set:{error:function(){v.verbose("Adding error state to element",R),R.addClass(w.error)},loading:function(){v.verbose("Adding loading state to element",R),R.addClass(w.loading),p=(new Date).getTime()}},remove:{error:function(){v.verbose("Removing error state from element",R),R.removeClass(w.error)},loading:function(){v.verbose("Removing loading state from element",R),R.removeClass(w.loading)}},get:{responseFromXHR:function(t){return e.isPlainObject(t)?"json"==h.dataType||"jsonp"==h.dataType?v.decode.json(t.responseText):t.responseText:!1},errorFromRequest:function(t,n,o){return e.isPlainObject(t)&&t.error!==i?t.error:h.error[n]!==i?h.error[n]:o},request:function(){return v.request||!1},xhr:function(){return v.xhr||!1},settings:function(){var e;return e=h.beforeSend.call(E,h),e&&(e.success!==i&&(v.debug("Legacy success callback detected",e),v.error(C.legacyParameters,e.success),e.onSuccess=e.success),e.failure!==i&&(v.debug("Legacy failure callback detected",e),v.error(C.legacyParameters,e.failure),e.onFailure=e.failure),e.complete!==i&&(v.debug("Legacy complete callback detected",e),v.error(C.legacyParameters,e.complete),e.onComplete=e.complete)),e===i&&v.error(C.noReturnedValue),e!==i?e:h},urlEncodedValue:function(e){var n=t.decodeURIComponent(e),i=t.encodeURIComponent(e),o=n!==e;return o?(v.debug("URL value is already encoded, avoiding double encoding",e),e):(v.verbose("Encoding value using encodeURIComponent",e,i),i)},defaultData:function(){var t={};return e.isWindow(P)||(v.is.input()?t.value=T.val():v.is.form()&&(t.text=T.text())),t},event:function(){return e.isWindow(P)||"now"==h.on?(v.debug("API called without element, no events attached"),!1):"auto"==h.on?T.is("input")?P.oninput!==i?"input":P.onpropertychange!==i?"propertychange":"keyup":T.is("form")?"submit":"click":h.on},templatedURL:function(e){if(e=e||T.data(y.action)||h.action||!1,f=T.data(y.url)||h.url||!1)return v.debug("Using specified url",f),f;if(e){if(v.debug("Looking up url for action",e,h.api),h.api[e]===i&&!v.is.mocked())return void v.error(C.missingAction,h.action,h.api);f=h.api[e]}else v.is.form()&&(f=T.attr("action")||R.attr("action")||!1,v.debug("No url or action specified, defaulting to form action",f));return f}},abort:function(){var e=v.get.xhr();e&&"resolved"!==e.state()&&(v.debug("Cancelling API request"),e.abort())},reset:function(){v.remove.error(),v.remove.loading()},setting:function(t,n){if(v.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,h,t);else{if(n===i)return h[t];h[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,v,t);else{if(n===i)return v[t];v[t]=n}},debug:function(){h.debug&&(h.performance?v.performance.log(arguments):(v.debug=Function.prototype.bind.call(console.info,console,h.name+":"),v.debug.apply(console,arguments)))},verbose:function(){h.verbose&&h.debug&&(h.performance?v.performance.log(arguments):(v.verbose=Function.prototype.bind.call(console.info,console,h.name+":"),v.verbose.apply(console,arguments)))},error:function(){v.error=Function.prototype.bind.call(console.error,console,h.name+":"),v.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;h.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"","Execution Time":n})),clearTimeout(v.performance.timer),v.performance.timer=setTimeout(v.performance.display,500)},display:function(){var t=h.name+":",n=0;s=!1,clearTimeout(v.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,a){var r,s,c,l=F;return n=n||d,a=P||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(v.error(C.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},u?(F===i&&v.initialize(),v.invoke(l)):(F!==i&&F.invoke("destroy"),v.initialize())}),o!==i?o:this},e.api.settings={name:"API",namespace:"api",debug:!1,verbose:!1,performance:!0,api:{},cache:!0,interruptRequests:!0,on:"auto",stateContext:!1,loadingDuration:0,hideError:"auto",errorDuration:2e3,encodeParameters:!0,action:!1,url:!1,base:"",urlData:{},defaultData:!0,serializeForm:!1,throttle:0,throttleFirstRequest:!0,method:"get",data:{},dataType:"json",mockResponse:!1,mockResponseAsync:!1,beforeSend:function(e){return e},beforeXHR:function(e){},onRequest:function(e,t){},onResponse:!1,onSuccess:function(e,t){},onComplete:function(e,t){},onFailure:function(e,t){},onError:function(e,t){},onAbort:function(e,t){},successTest:!1,error:{beforeSend:"The before send function has aborted the request",error:"There was an error with your request",exitConditions:"API Request Aborted. Exit conditions met",JSONParse:"JSON could not be parsed during error handling",legacyParameters:"You are using legacy API success callback names",method:"The method you called is not defined",missingAction:"API action used but no url was defined",missingSerialize:"jquery-serialize-object is required to add form data to an existing data object",missingURL:"No URL specified for api event",noReturnedValue:"The beforeSend callback must return a settings object, beforeSend ignored.",noStorage:"Caching respopnses locally requires session storage",parseError:"There was an error parsing your request",requiredParameter:"Missing a required URL parameter: ",statusMessage:"Server gave an error: ",timeout:"Your request timed out"},regExp:{required:/\{\$*[A-z0-9]+\}/g,optional:/\{\/\$*[A-z0-9]+\}/g},className:{loading:"loading",error:"error"},selector:{disabled:".disabled",form:"form"},metadata:{action:"action",url:"url"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.state=function(t){var o,a=e(this),r=a.selector||"",s=("ontouchstart"in n.documentElement,(new Date).getTime()),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1);return a.each(function(){var n,m=e.isPlainObject(t)?e.extend(!0,{},e.fn.state.settings,t):e.extend({},e.fn.state.settings),f=m.error,g=m.metadata,p=m.className,v=m.namespace,h=m.states,b=m.text,y="."+v,x=v+"-module",C=e(this),w=this,k=C.data(x);n={initialize:function(){n.verbose("Initializing module"),m.automatic&&n.add.defaults(),m.context&&""!==r?e(m.context).on(r,"mouseenter"+y,n.change.text).on(r,"mouseleave"+y,n.reset.text).on(r,"click"+y,n.toggle.state):C.on("mouseenter"+y,n.change.text).on("mouseleave"+y,n.reset.text).on("click"+y,n.toggle.state),n.instantiate()},instantiate:function(){n.verbose("Storing instance of module",n),k=n,C.data(x,n)},destroy:function(){n.verbose("Destroying previous module",k),C.off(y).removeData(x)},refresh:function(){n.verbose("Refreshing selector cache"),C=e(w)},add:{defaults:function(){var o=t&&e.isPlainObject(t.states)?t.states:{};e.each(m.defaults,function(t,a){n.is[t]!==i&&n.is[t]()&&(n.verbose("Adding default states",t,w),e.extend(m.states,a,o))})}},is:{active:function(){return C.hasClass(p.active)},loading:function(){return C.hasClass(p.loading)},inactive:function(){return!C.hasClass(p.active)},state:function(e){return p[e]===i?!1:C.hasClass(p[e])},enabled:function(){return!C.is(m.filter.active)},disabled:function(){return C.is(m.filter.active)},textEnabled:function(){return!C.is(m.filter.text)},button:function(){return C.is(".button:not(a, .submit)")},input:function(){return C.is("input")},progress:function(){return C.is(".ui.progress")}},allow:function(e){n.debug("Now allowing state",e),h[e]=!0},disallow:function(e){n.debug("No longer allowing",e),h[e]=!1},allows:function(e){return h[e]||!1},enable:function(){C.removeClass(p.disabled)},disable:function(){C.addClass(p.disabled)},setState:function(e){n.allows(e)&&C.addClass(p[e])},removeState:function(e){n.allows(e)&&C.removeClass(p[e])},toggle:{state:function(){var t,o;if(n.allows("active")&&n.is.enabled()){if(n.refresh(),e.fn.api!==i)if(t=C.api("get request"),o=C.api("was cancelled"))n.debug("API Request cancelled by beforesend"),m.activateTest=function(){return!1},m.deactivateTest=function(){return!1};else if(t)return void n.listenTo(t);n.change.state()}}},listenTo:function(t){n.debug("API request detected, waiting for state signal",t),t&&(b.loading&&n.update.text(b.loading),e.when(t).then(function(){"resolved"==t.state()?(n.debug("API request succeeded"),m.activateTest=function(){return!0},m.deactivateTest=function(){return!0}):(n.debug("API request failed"),m.activateTest=function(){return!1},m.deactivateTest=function(){return!1}),n.change.state()}))},change:{state:function(){n.debug("Determining state change direction"),n.is.inactive()?n.activate():n.deactivate(),m.sync&&n.sync(),m.onChange.call(w)},text:function(){n.is.textEnabled()&&(n.is.disabled()?(n.verbose("Changing text to disabled text",b.hover),n.update.text(b.disabled)):n.is.active()?b.hover?(n.verbose("Changing text to hover text",b.hover),n.update.text(b.hover)):b.deactivate&&(n.verbose("Changing text to deactivating text",b.deactivate),n.update.text(b.deactivate)):b.hover?(n.verbose("Changing text to hover text",b.hover),n.update.text(b.hover)):b.activate&&(n.verbose("Changing text to activating text",b.activate),n.update.text(b.activate)))}},activate:function(){m.activateTest.call(w)&&(n.debug("Setting state to active"),C.addClass(p.active),n.update.text(b.active),m.onActivate.call(w))},deactivate:function(){m.deactivateTest.call(w)&&(n.debug("Setting state to inactive"),C.removeClass(p.active),n.update.text(b.inactive),m.onDeactivate.call(w))},sync:function(){n.verbose("Syncing other buttons to current state"),a.not(C).state(n.is.active()?"activate":"deactivate")},get:{text:function(){return m.selector.text?C.find(m.selector.text).text():C.html()},textFor:function(e){return b[e]||!1}},flash:{text:function(e,t,i){var o=n.get.text();n.debug("Flashing text message",e,t),e=e||m.text.flash,t=t||m.flashDuration,i=i||function(){},n.update.text(e),setTimeout(function(){n.update.text(o),i.call(w)},t)}},reset:{text:function(){var e=b.active||C.data(g.storedText),t=b.inactive||C.data(g.storedText);n.is.textEnabled()&&(n.is.active()&&e?(n.verbose("Resetting active text",e),n.update.text(e)):t&&(n.verbose("Resetting inactive text",e),n.update.text(t)))}},update:{text:function(e){var t=n.get.text();e&&e!==t?(n.debug("Updating text",e),m.selector.text?C.data(g.storedText,e).find(m.selector.text).text(e):C.data(g.storedText,e).html(e)):n.debug("Text is already set, ignoring update",e)}},setting:function(t,o){if(n.debug("Changing setting",t,o),e.isPlainObject(t))e.extend(!0,m,t);else{if(o===i)return m[t];m[t]=o}},internal:function(t,o){if(e.isPlainObject(t))e.extend(!0,n,t);else{if(o===i)return n[t];n[t]=o}},debug:function(){m.debug&&(m.performance?n.performance.log(arguments):(n.debug=Function.prototype.bind.call(console.info,console,m.name+":"),n.debug.apply(console,arguments)))},verbose:function(){m.verbose&&m.debug&&(m.performance?n.performance.log(arguments):(n.verbose=Function.prototype.bind.call(console.info,console,m.name+":"),n.verbose.apply(console,arguments)))},error:function(){n.error=Function.prototype.bind.call(console.error,console,m.name+":"),n.error.apply(console,arguments)},performance:{log:function(e){var t,i,o;m.performance&&(t=(new Date).getTime(),o=s||t,i=t-o,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:w,"Execution Time":i})),clearTimeout(n.performance.timer),n.performance.timer=setTimeout(n.performance.display,500)},display:function(){var t=m.name+":",o=0;s=!1,clearTimeout(n.performance.timer),e.each(c,function(e,t){o+=t["Execution Time"]}),t+=" "+o+"ms",r&&(t+=" '"+r+"'"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,a,r){var s,c,l,u=k;return a=a||d,r=w||r,"string"==typeof t&&u!==i&&(t=t.split(/[\. ]/),s=t.length-1,e.each(t,function(o,a){var r=o!=s?a+t[o+1].charAt(0).toUpperCase()+t[o+1].slice(1):t;if(e.isPlainObject(u[r])&&o!=s)u=u[r];else{if(u[r]!==i)return c=u[r],!1;if(!e.isPlainObject(u[a])||o==s)return u[a]!==i?(c=u[a],!1):(n.error(f.method,t),!1);u=u[a]}})),e.isFunction(c)?l=c.apply(r,a):c!==i&&(l=c),e.isArray(o)?o.push(l):o!==i?o=[o,l]:l!==i&&(o=l),c}},u?(k===i&&n.initialize(),n.invoke(l)):(k!==i&&k.invoke("destroy"),n.initialize())}),o!==i?o:this},e.fn.state.settings={name:"State",debug:!1,verbose:!1,namespace:"state",performance:!0,onActivate:function(){},onDeactivate:function(){},onChange:function(){},activateTest:function(){return!0},deactivateTest:function(){return!0},automatic:!0,sync:!1,flashDuration:1e3,filter:{text:".loading, .disabled",active:".disabled"},context:!1,error:{beforeSend:"The before send function has cancelled state change",method:"The method you called is not defined."},metadata:{promise:"promise",storedText:"stored-text"},className:{active:"active",disabled:"disabled",error:"error",loading:"loading",success:"success",warning:"warning"},selector:{text:!1},defaults:{input:{disabled:!0,loading:!0,active:!0},button:{disabled:!0,loading:!0,active:!0},progress:{active:!0,success:!0,warning:!0,error:!0}},states:{active:!0,disabled:!0,error:!0,loading:!0,success:!0,warning:!0},text:{disabled:!1,flash:!1,hover:!1,active:!1,inactive:!1,activate:!1,deactivate:!1}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.visibility=function(o){var a,r=e(this),s=r.selector||"",c=(new Date).getTime(),l=[],u=arguments[0],d="string"==typeof u,m=[].slice.call(arguments,1);return r.each(function(){var r,f,g,p=e.isPlainObject(o)?e.extend(!0,{},e.fn.visibility.settings,o):e.extend({},e.fn.visibility.settings),v=p.className,h=p.namespace,b=p.error,y=p.metadata,x="."+h,C="module-"+h,w=e(t),k=e(this),S=e(p.context),T=(k.selector||"",k.data(C)),A=t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)},R=this,P=!1;g={initialize:function(){g.debug("Initializing",p),g.setup.cache(),g.should.trackChanges()&&("image"==p.type&&g.setup.image(),"fixed"==p.type&&g.setup.fixed(),p.observeChanges&&g.observeChanges(),g.bind.events()),g.save.position(),g.is.visible()||g.error(b.visible,k),p.initialCheck&&g.checkVisibility(),g.instantiate()},instantiate:function(){g.debug("Storing instance",g),k.data(C,g),T=g},destroy:function(){g.verbose("Destroying previous module"),f&&f.disconnect(),w.off("load"+x,g.event.load).off("resize"+x,g.event.resize),S.off("scrollchange"+x,g.event.scrollchange),k.off(x).removeData(C)},observeChanges:function(){"MutationObserver"in t&&(f=new MutationObserver(function(e){g.verbose("DOM tree modified, updating visibility calculations"),g.timer=setTimeout(function(){g.verbose("DOM tree modified, updating sticky menu"),g.refresh()},100)}),f.observe(R,{childList:!0,subtree:!0}),g.debug("Setting up mutation observer",f))},bind:{events:function(){g.verbose("Binding visibility events to scroll and resize"),p.refreshOnLoad&&w.on("load"+x,g.event.load),w.on("resize"+x,g.event.resize),S.off("scroll"+x).on("scroll"+x,g.event.scroll).on("scrollchange"+x,g.event.scrollchange)}},event:{resize:function(){g.debug("Window resized"),p.refreshOnResize&&A(g.refresh)},load:function(){g.debug("Page finished loading"),A(g.refresh)},scroll:function(){p.throttle?(clearTimeout(g.timer),g.timer=setTimeout(function(){S.triggerHandler("scrollchange"+x,[S.scrollTop()])},p.throttle)):A(function(){S.triggerHandler("scrollchange"+x,[S.scrollTop()])})},scrollchange:function(e,t){g.checkVisibility(t)}},precache:function(t,i){t instanceof Array||(t=[t]);for(var o=t.length,a=0,r=[],s=n.createElement("img"),c=function(){a++,a>=t.length&&e.isFunction(i)&&i()};o--;)s=n.createElement("img"),s.onload=c,s.onerror=c,s.src=t[o],r.push(s)},enableCallbacks:function(){g.debug("Allowing callbacks to occur"),P=!1},disableCallbacks:function(){g.debug("Disabling all callbacks temporarily"),P=!0},should:{trackChanges:function(){return d?(g.debug("One time query, no need to bind events"),!1):(g.debug("Callbacks being attached"),!0)}},setup:{cache:function(){g.cache={occurred:{},screen:{},element:{}}},image:function(){var e=k.data(y.src);e&&(g.verbose("Lazy loading image",e),p.once=!0,p.observeChanges=!1,p.onOnScreen=function(){g.debug("Image on screen",R),g.precache(e,function(){g.set.image(e)})})},fixed:function(){g.debug("Setting up fixed"),p.once=!1,p.observeChanges=!1,p.initialCheck=!0,p.refreshOnLoad=!0,o.transition||(p.transition=!1),g.create.placeholder(),g.debug("Added placeholder",r),p.onTopPassed=function(){g.debug("Element passed, adding fixed position",k),g.show.placeholder(),g.set.fixed(),p.transition&&e.fn.transition!==i&&k.transition(p.transition,p.duration)},p.onTopPassedReverse=function(){g.debug("Element returned to position, removing fixed",k),g.hide.placeholder(),g.remove.fixed()}}},create:{placeholder:function(){g.verbose("Creating fixed position placeholder"),r=k.clone(!1).css("display","none").addClass(v.placeholder).insertAfter(k)}},show:{placeholder:function(){g.verbose("Showing placeholder"),r.css("display","block").css("visibility","hidden")}},hide:{placeholder:function(){g.verbose("Hiding placeholder"),r.css("display","none").css("visibility","")}},set:{fixed:function(){g.verbose("Setting element to fixed position"),k.addClass(v.fixed).css({position:"fixed",top:p.offset+"px",left:"auto",zIndex:"1"})},image:function(t){k.attr("src",t),p.transition?e.fn.transition!==i?k.transition(p.transition,p.duration):k.fadeIn(p.duration):k.show()}},is:{onScreen:function(){var e=g.get.elementCalculations();return e.onScreen},offScreen:function(){var e=g.get.elementCalculations();return e.offScreen},visible:function(){return g.cache&&g.cache.element?!(0===g.cache.element.width&&0===g.cache.element.offset.top):!1}},refresh:function(){g.debug("Refreshing constants (width/height)"),"fixed"==p.type&&(g.remove.fixed(),g.remove.occurred()),g.reset(),g.save.position(),p.checkOnRefresh&&g.checkVisibility(),p.onRefresh.call(R)},reset:function(){g.verbose("Reseting all cached values"),e.isPlainObject(g.cache)&&(g.cache.screen={},g.cache.element={})},checkVisibility:function(e){g.verbose("Checking visibility of element",g.cache.element),!P&&g.is.visible()&&(g.save.scroll(e),g.save.calculations(),g.passed(),g.passingReverse(),g.topVisibleReverse(),g.bottomVisibleReverse(),g.topPassedReverse(),g.bottomPassedReverse(),g.onScreen(),g.offScreen(),g.passing(),g.topVisible(),g.bottomVisible(),g.topPassed(),g.bottomPassed(),p.onUpdate&&p.onUpdate.call(R,g.get.elementCalculations()))},passed:function(t,n){var o=g.get.elementCalculations();if(t&&n)p.onPassed[t]=n;else{if(t!==i)return g.get.pixelsPassed(t)>o.pixelsPassed;o.passing&&e.each(p.onPassed,function(e,t){o.bottomVisible||o.pixelsPassed>g.get.pixelsPassed(e)?g.execute(t,e):p.once||g.remove.occurred(t)})}},onScreen:function(e){var t=g.get.elementCalculations(),n=e||p.onOnScreen,o="onScreen";return e&&(g.debug("Adding callback for onScreen",e),p.onOnScreen=e),t.onScreen?g.execute(n,o):p.once||g.remove.occurred(o),e!==i?t.onOnScreen:void 0},offScreen:function(e){var t=g.get.elementCalculations(),n=e||p.onOffScreen,o="offScreen";return e&&(g.debug("Adding callback for offScreen",e),p.onOffScreen=e),t.offScreen?g.execute(n,o):p.once||g.remove.occurred(o),e!==i?t.onOffScreen:void 0},passing:function(e){var t=g.get.elementCalculations(),n=e||p.onPassing,o="passing";return e&&(g.debug("Adding callback for passing",e),p.onPassing=e),t.passing?g.execute(n,o):p.once||g.remove.occurred(o),e!==i?t.passing:void 0},topVisible:function(e){var t=g.get.elementCalculations(),n=e||p.onTopVisible,o="topVisible";return e&&(g.debug("Adding callback for top visible",e),p.onTopVisible=e),t.topVisible?g.execute(n,o):p.once||g.remove.occurred(o),e===i?t.topVisible:void 0},bottomVisible:function(e){var t=g.get.elementCalculations(),n=e||p.onBottomVisible,o="bottomVisible";return e&&(g.debug("Adding callback for bottom visible",e),p.onBottomVisible=e),t.bottomVisible?g.execute(n,o):p.once||g.remove.occurred(o),e===i?t.bottomVisible:void 0},topPassed:function(e){var t=g.get.elementCalculations(),n=e||p.onTopPassed,o="topPassed";return e&&(g.debug("Adding callback for top passed",e),p.onTopPassed=e),t.topPassed?g.execute(n,o):p.once||g.remove.occurred(o),e===i?t.topPassed:void 0},bottomPassed:function(e){var t=g.get.elementCalculations(),n=e||p.onBottomPassed,o="bottomPassed";return e&&(g.debug("Adding callback for bottom passed",e),p.onBottomPassed=e),t.bottomPassed?g.execute(n,o):p.once||g.remove.occurred(o),e===i?t.bottomPassed:void 0},passingReverse:function(e){var t=g.get.elementCalculations(),n=e||p.onPassingReverse,o="passingReverse";return e&&(g.debug("Adding callback for passing reverse",e),p.onPassingReverse=e),t.passing?p.once||g.remove.occurred(o):g.get.occurred("passing")&&g.execute(n,o),e!==i?!t.passing:void 0},topVisibleReverse:function(e){var t=g.get.elementCalculations(),n=e||p.onTopVisibleReverse,o="topVisibleReverse";return e&&(g.debug("Adding callback for top visible reverse",e),p.onTopVisibleReverse=e),t.topVisible?p.once||g.remove.occurred(o):g.get.occurred("topVisible")&&g.execute(n,o),e===i?!t.topVisible:void 0},bottomVisibleReverse:function(e){var t=g.get.elementCalculations(),n=e||p.onBottomVisibleReverse,o="bottomVisibleReverse";return e&&(g.debug("Adding callback for bottom visible reverse",e),p.onBottomVisibleReverse=e),t.bottomVisible?p.once||g.remove.occurred(o):g.get.occurred("bottomVisible")&&g.execute(n,o),e===i?!t.bottomVisible:void 0},topPassedReverse:function(e){var t=g.get.elementCalculations(),n=e||p.onTopPassedReverse,o="topPassedReverse";return e&&(g.debug("Adding callback for top passed reverse",e),p.onTopPassedReverse=e),t.topPassed?p.once||g.remove.occurred(o):g.get.occurred("topPassed")&&g.execute(n,o),e===i?!t.onTopPassed:void 0},bottomPassedReverse:function(e){var t=g.get.elementCalculations(),n=e||p.onBottomPassedReverse,o="bottomPassedReverse";return e&&(g.debug("Adding callback for bottom passed reverse",e),p.onBottomPassedReverse=e),t.bottomPassed?p.once||g.remove.occurred(o):g.get.occurred("bottomPassed")&&g.execute(n,o),e===i?!t.bottomPassed:void 0},execute:function(e,t){var n=g.get.elementCalculations(),i=g.get.screenCalculations();e=e||!1,e&&(p.continuous?(g.debug("Callback being called continuously",t,n),e.call(R,n,i)):g.get.occurred(t)||(g.debug("Conditions met",t,n),e.call(R,n,i))),g.save.occurred(t)},remove:{fixed:function(){g.debug("Removing fixed position"),k.removeClass(v.fixed).css({position:"",top:"",left:"",zIndex:""})},occurred:function(e){if(e){var t=g.cache.occurred;t[e]!==i&&t[e]===!0&&(g.debug("Callback can now be called again",e),g.cache.occurred[e]=!1)}else g.cache.occurred={}}},save:{calculations:function(){g.verbose("Saving all calculations necessary to determine positioning"),g.save.direction(),g.save.screenCalculations(),g.save.elementCalculations()},occurred:function(e){e&&(g.cache.occurred[e]===i||g.cache.occurred[e]!==!0)&&(g.verbose("Saving callback occurred",e),g.cache.occurred[e]=!0)},scroll:function(e){e=e+p.offset||S.scrollTop()+p.offset,g.cache.scroll=e},direction:function(){var e,t=g.get.scroll(),n=g.get.lastScroll();return e=t>n&&n?"down":n>t&&n?"up":"static",g.cache.direction=e,g.cache.direction},elementPosition:function(){var e=g.cache.element,t=g.get.screenSize();return g.verbose("Saving element position"),e.fits=e.height<t.height,e.offset=k.offset(),e.width=k.outerWidth(),e.height=k.outerHeight(),g.cache.element=e,e},elementCalculations:function(){var e=g.get.screenCalculations(),t=g.get.elementPosition();return p.includeMargin?(t.margin={},t.margin.top=parseInt(k.css("margin-top"),10),t.margin.bottom=parseInt(k.css("margin-bottom"),10),t.top=t.offset.top-t.margin.top,t.bottom=t.offset.top+t.height+t.margin.bottom):(t.top=t.offset.top,t.bottom=t.offset.top+t.height),t.topVisible=e.bottom>=t.top,t.topPassed=e.top>=t.top,t.bottomVisible=e.bottom>=t.bottom,t.bottomPassed=e.top>=t.bottom,t.pixelsPassed=0,t.percentagePassed=0,t.onScreen=t.topVisible&&!t.bottomPassed,t.passing=t.topPassed&&!t.bottomPassed,t.offScreen=!t.onScreen,t.passing&&(t.pixelsPassed=e.top-t.top,t.percentagePassed=(e.top-t.top)/t.height),g.cache.element=t,g.verbose("Updated element calculations",t),t},screenCalculations:function(){var e=g.get.scroll();return g.save.direction(),g.cache.screen.top=e,g.cache.screen.bottom=e+g.cache.screen.height,g.cache.screen},screenSize:function(){g.verbose("Saving window position"),g.cache.screen={height:S.height()}},position:function(){g.save.screenSize(),g.save.elementPosition()}},get:{pixelsPassed:function(e){var t=g.get.elementCalculations();return e.search("%")>-1?t.height*(parseInt(e,10)/100):parseInt(e,10)},occurred:function(e){return g.cache.occurred!==i?g.cache.occurred[e]||!1:!1},direction:function(){return g.cache.direction===i&&g.save.direction(),g.cache.direction},elementPosition:function(){return g.cache.element===i&&g.save.elementPosition(),g.cache.element},elementCalculations:function(){return g.cache.element===i&&g.save.elementCalculations(),g.cache.element},screenCalculations:function(){return g.cache.screen===i&&g.save.screenCalculations(),g.cache.screen},screenSize:function(){return g.cache.screen===i&&g.save.screenSize(),g.cache.screen},scroll:function(){return g.cache.scroll===i&&g.save.scroll(),g.cache.scroll},lastScroll:function(){return g.cache.screen===i?(g.debug("First scroll event, no last scroll could be found"),!1):g.cache.screen.top}},setting:function(t,n){if(e.isPlainObject(t))e.extend(!0,p,t);else{if(n===i)return p[t];p[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,g,t);else{if(n===i)return g[t];g[t]=n}},debug:function(){p.debug&&(p.performance?g.performance.log(arguments):(g.debug=Function.prototype.bind.call(console.info,console,p.name+":"),g.debug.apply(console,arguments)))},verbose:function(){p.verbose&&p.debug&&(p.performance?g.performance.log(arguments):(g.verbose=Function.prototype.bind.call(console.info,console,p.name+":"),g.verbose.apply(console,arguments)))},error:function(){g.error=Function.prototype.bind.call(console.error,console,p.name+":"),g.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;p.performance&&(t=(new Date).getTime(),i=c||t,n=t-i,c=t,l.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:R,"Execution Time":n})),clearTimeout(g.performance.timer),g.performance.timer=setTimeout(g.performance.display,500)},display:function(){var t=p.name+":",n=0;c=!1,clearTimeout(g.performance.timer),e.each(l,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",s&&(t+=" '"+s+"'"),(console.group!==i||console.table!==i)&&l.length>0&&(console.groupCollapsed(t),console.table?console.table(l):e.each(l,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),l=[]}},invoke:function(t,n,o){var r,s,c,l=T;return n=n||m,o=R||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o], -!1):(g.error(b.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},d?(T===i&&g.initialize(),T.save.scroll(),T.save.calculations(),g.invoke(u)):(T!==i&&T.invoke("destroy"),g.initialize())}),a!==i?a:this},e.fn.visibility.settings={name:"Visibility",namespace:"visibility",debug:!1,verbose:!1,performance:!0,observeChanges:!0,initialCheck:!0,refreshOnLoad:!0,refreshOnResize:!0,checkOnRefresh:!0,once:!0,continuous:!1,offset:0,includeMargin:!1,context:t,throttle:!1,type:!1,transition:"fade in",duration:1e3,onPassed:{},onOnScreen:!1,onOffScreen:!1,onPassing:!1,onTopVisible:!1,onBottomVisible:!1,onTopPassed:!1,onBottomPassed:!1,onPassingReverse:!1,onTopVisibleReverse:!1,onBottomVisibleReverse:!1,onTopPassedReverse:!1,onBottomPassedReverse:!1,onUpdate:!1,onRefresh:function(){},metadata:{src:"src"},className:{fixed:"fixed",placeholder:"placeholder"},error:{method:"The method you called is not defined.",visible:"Element is hidden, you must call refresh after element becomes visible"}}}(jQuery,window,document);
\ No newline at end of file diff --git a/public/js/semantic-2.1.6.min.js b/public/js/semantic-2.1.6.min.js new file mode 100755 index 00000000..c5f5249f --- /dev/null +++ b/public/js/semantic-2.1.6.min.js @@ -0,0 +1,19 @@ + /* + * # Semantic UI - 2.1.6 + * https://github.com/Semantic-Org/Semantic-UI + * http://www.semantic-ui.com/ + * + * Copyright 2014 Contributors + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ +!function(e,t,n,i){e.site=e.fn.site=function(o){var a,r,s=(new Date).getTime(),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1),m=e.isPlainObject(o)?e.extend(!0,{},e.site.settings,o):e.extend({},e.site.settings),f=m.namespace,g=m.error,p="module-"+f,v=e(n),h=v,b=this,y=h.data(p);return a={initialize:function(){a.instantiate()},instantiate:function(){a.verbose("Storing instance of site",a),y=a,h.data(p,a)},normalize:function(){a.fix.console(),a.fix.requestAnimationFrame()},fix:{console:function(){a.debug("Normalizing window.console"),(console===i||console.log===i)&&(a.verbose("Console not available, normalizing events"),a.disable.console()),("undefined"==typeof console.group||"undefined"==typeof console.groupEnd||"undefined"==typeof console.groupCollapsed)&&(a.verbose("Console group not available, normalizing events"),t.console.group=function(){},t.console.groupEnd=function(){},t.console.groupCollapsed=function(){}),"undefined"==typeof console.markTimeline&&(a.verbose("Mark timeline not available, normalizing events"),t.console.markTimeline=function(){})},consoleClear:function(){a.debug("Disabling programmatic console clearing"),t.console.clear=function(){}},requestAnimationFrame:function(){a.debug("Normalizing requestAnimationFrame"),t.requestAnimationFrame===i&&(a.debug("RequestAnimationFrame not available, normalizing event"),t.requestAnimationFrame=t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)})}},moduleExists:function(t){return e.fn[t]!==i&&e.fn[t].settings!==i},enabled:{modules:function(t){var n=[];return t=t||m.modules,e.each(t,function(e,t){a.moduleExists(t)&&n.push(t)}),n}},disabled:{modules:function(t){var n=[];return t=t||m.modules,e.each(t,function(e,t){a.moduleExists(t)||n.push(t)}),n}},change:{setting:function(t,n,o,r){o="string"==typeof o?"all"===o?m.modules:[o]:o||m.modules,r=r!==i?r:!0,e.each(o,function(i,o){var s,c=a.moduleExists(o)?e.fn[o].settings.namespace||!1:!0;a.moduleExists(o)&&(a.verbose("Changing default setting",t,n,o),e.fn[o].settings[t]=n,r&&c&&(s=e(":data(module-"+c+")"),s.length>0&&(a.verbose("Modifying existing settings",s),s[o]("setting",t,n))))})},settings:function(t,n,o){n="string"==typeof n?[n]:n||m.modules,o=o!==i?o:!0,e.each(n,function(n,i){var r;a.moduleExists(i)&&(a.verbose("Changing default setting",t,i),e.extend(!0,e.fn[i].settings,t),o&&f&&(r=e(":data(module-"+f+")"),r.length>0&&(a.verbose("Modifying existing settings",r),r[i]("setting",t))))})}},enable:{console:function(){a.console(!0)},debug:function(e,t){e=e||m.modules,a.debug("Enabling debug for modules",e),a.change.setting("debug",!0,e,t)},verbose:function(e,t){e=e||m.modules,a.debug("Enabling verbose debug for modules",e),a.change.setting("verbose",!0,e,t)}},disable:{console:function(){a.console(!1)},debug:function(e,t){e=e||m.modules,a.debug("Disabling debug for modules",e),a.change.setting("debug",!1,e,t)},verbose:function(e,t){e=e||m.modules,a.debug("Disabling verbose debug for modules",e),a.change.setting("verbose",!1,e,t)}},console:function(e){if(e){if(y.cache.console===i)return void a.error(g.console);a.debug("Restoring console function"),t.console=y.cache.console}else a.debug("Disabling console function"),y.cache.console=t.console,t.console={clear:function(){},error:function(){},group:function(){},groupCollapsed:function(){},groupEnd:function(){},info:function(){},log:function(){},markTimeline:function(){},warn:function(){}}},destroy:function(){a.verbose("Destroying previous site for",h),h.removeData(p)},cache:{},setting:function(t,n){if(e.isPlainObject(t))e.extend(!0,m,t);else{if(n===i)return m[t];m[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,a,t);else{if(n===i)return a[t];a[t]=n}},debug:function(){m.debug&&(m.performance?a.performance.log(arguments):(a.debug=Function.prototype.bind.call(console.info,console,m.name+":"),a.debug.apply(console,arguments)))},verbose:function(){m.verbose&&m.debug&&(m.performance?a.performance.log(arguments):(a.verbose=Function.prototype.bind.call(console.info,console,m.name+":"),a.verbose.apply(console,arguments)))},error:function(){a.error=Function.prototype.bind.call(console.error,console,m.name+":"),a.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;m.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Element:b,Name:e[0],Arguments:[].slice.call(e,1)||"","Execution Time":n})),clearTimeout(a.performance.timer),a.performance.timer=setTimeout(a.performance.display,500)},display:function(){var t=m.name+":",n=0;s=!1,clearTimeout(a.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,o){var s,c,l,u=y;return n=n||d,o=b||o,"string"==typeof t&&u!==i&&(t=t.split(/[\. ]/),s=t.length-1,e.each(t,function(n,o){var r=n!=s?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(u[r])&&n!=s)u=u[r];else{if(u[r]!==i)return c=u[r],!1;if(!e.isPlainObject(u[o])||n==s)return u[o]!==i?(c=u[o],!1):(a.error(g.method,t),!1);u=u[o]}})),e.isFunction(c)?l=c.apply(o,n):c!==i&&(l=c),e.isArray(r)?r.push(l):r!==i?r=[r,l]:l!==i&&(r=l),c}},u?(y===i&&a.initialize(),a.invoke(l)):(y!==i&&a.destroy(),a.initialize()),r!==i?r:this},e.site.settings={name:"Site",namespace:"site",error:{console:"Console cannot be restored, most likely it was overwritten outside of module",method:"The method you called is not defined."},debug:!1,verbose:!1,performance:!0,modules:["accordion","api","checkbox","dimmer","dropdown","embed","form","modal","nag","popup","rating","shape","sidebar","state","sticky","tab","transition","visit","visibility"],siteNamespace:"site",namespaceStub:{cache:{},config:{},sections:{},section:{},utilities:{}}},e.extend(e.expr[":"],{data:e.expr.createPseudo?e.expr.createPseudo(function(t){return function(n){return!!e.data(n,t)}}):function(t,n,i){return!!e.data(t,i[3])}})}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.form=function(t){var o,a=e(this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments[0],u=arguments[1],d="string"==typeof l,m=[].slice.call(arguments,1);return a.each(function(){var f,g,p,v,h,b,y,x,C,w,k,S,T,A,R,E,P,F,D=e(this),O=this,q=[],j=!1;F={initialize:function(){F.get.settings(),d?(P===i&&F.instantiate(),F.invoke(l)):(F.verbose("Initializing form validation",D,x),F.bindEvents(),F.set.defaults(),F.instantiate())},instantiate:function(){F.verbose("Storing instance of module",F),P=F,D.data(R,F)},destroy:function(){F.verbose("Destroying previous module",P),F.removeEvents(),D.removeData(R)},refresh:function(){F.verbose("Refreshing selector cache"),f=D.find(k.field),g=D.find(k.group),p=D.find(k.message),v=D.find(k.prompt),h=D.find(k.submit),b=D.find(k.clear),y=D.find(k.reset)},submit:function(){F.verbose("Submitting form",D),D.submit()},attachEvents:function(t,n){n=n||"submit",e(t).on("click"+E,function(e){F[n](),e.preventDefault()})},bindEvents:function(){F.verbose("Attaching form events"),D.on("submit"+E,F.validate.form).on("blur"+E,k.field,F.event.field.blur).on("click"+E,k.submit,F.submit).on("click"+E,k.reset,F.reset).on("click"+E,k.clear,F.clear),x.keyboardShortcuts&&D.on("keydown"+E,k.field,F.event.field.keydown),f.each(function(){var t=e(this),n=t.prop("type"),i=F.get.changeEvent(n,t);e(this).on(i+E,F.event.field.change)})},clear:function(){f.each(function(){var t=e(this),n=t.parent(),i=t.closest(g),o=i.find(k.prompt),a=t.data(w.defaultValue)||"",r=n.is(k.uiCheckbox),s=n.is(k.uiDropdown),c=i.hasClass(S.error);c&&(F.verbose("Resetting error on field",i),i.removeClass(S.error),o.remove()),s?(F.verbose("Resetting dropdown value",n,a),n.dropdown("clear")):r?t.prop("checked",!1):(F.verbose("Resetting field value",t,a),t.val(""))})},reset:function(){f.each(function(){var t=e(this),n=t.parent(),o=t.closest(g),a=o.find(k.prompt),r=t.data(w.defaultValue),s=n.is(k.uiCheckbox),c=n.is(k.uiDropdown),l=o.hasClass(S.error);r!==i&&(l&&(F.verbose("Resetting error on field",o),o.removeClass(S.error),a.remove()),c?(F.verbose("Resetting dropdown value",n,r),n.dropdown("restore defaults")):s?(F.verbose("Resetting checkbox value",n,r),t.prop("checked",r)):(F.verbose("Resetting field value",t,r),t.val(r)))})},is:{bracketedRule:function(e){return e.type&&e.type.match(x.regExp.bracket)},valid:function(){var t=!0;return F.verbose("Checking if form is valid"),e.each(C,function(e,n){F.validate.field(n,e)||(t=!1)}),t}},removeEvents:function(){D.off(E),f.off(E),h.off(E),f.off(E)},event:{field:{keydown:function(t){var n=e(this),i=t.which,o={enter:13,escape:27};i==o.escape&&(F.verbose("Escape key pressed blurring field"),n.blur()),!t.ctrlKey&&i==o.enter&&n.is(k.input)&&n.not(k.checkbox).length>0&&(j||(n.one("keyup"+E,F.event.field.keyup),F.submit(),F.debug("Enter pressed on input submitting form")),j=!0)},keyup:function(){j=!1},blur:function(t){var n=e(this),i=n.closest(g),o=F.get.validation(n);i.hasClass(S.error)?(F.debug("Revalidating field",n,o),F.validate.form.call(F,t,!0)):("blur"==x.on||"change"==x.on)&&o&&F.validate.field(o)},change:function(t){var n=e(this),i=n.closest(g);("change"==x.on||i.hasClass(S.error)&&x.revalidate)&&(clearTimeout(F.timer),F.timer=setTimeout(function(){F.debug("Revalidating field",n,F.get.validation(n)),F.validate.form.call(F,t,!0)},x.delay))}}},get:{ancillaryValue:function(e){return e.type&&F.is.bracketedRule(e)?e.type.match(x.regExp.bracket)[1]+"":!1},ruleName:function(e){return F.is.bracketedRule(e)?e.type.replace(e.type.match(x.regExp.bracket)[0],""):e.type},changeEvent:function(e,t){return"checkbox"==e||"radio"==e||"hidden"==e||t.is("select")?"change":F.get.inputEvent()},inputEvent:function(){return n.createElement("input").oninput!==i?"input":n.createElement("input").onpropertychange!==i?"propertychange":"keyup"},prompt:function(e,t){var n,i,o,a=F.get.ruleName(e),r=F.get.ancillaryValue(e),s=e.prompt||x.prompt[a]||x.text.unspecifiedRule,c=-1!==s.search("{value}"),l=-1!==s.search("{name}");return(l||c)&&(i=F.get.field(t.identifier)),c&&(s=s.replace("{value}",i.val())),l&&(n=i.closest(k.group).find("label").eq(0),o=1==n.size()?n.text():i.prop("placeholder")||x.text.unspecifiedField,s=s.replace("{name}",o)),s=s.replace("{identifier}",t.identifier),s=s.replace("{ruleValue}",r),e.prompt||F.verbose("Using default validation prompt for type",s,a),s},settings:function(){if(e.isPlainObject(t)){var n,o=Object.keys(t),a=o.length>0?t[o[0]].identifier!==i&&t[o[0]].rules!==i:!1;a?(x=e.extend(!0,{},e.fn.form.settings,u),C=e.extend({},e.fn.form.settings.defaults,t),F.error(x.error.oldSyntax,O),F.verbose("Extending settings from legacy parameters",C,x)):(t.fields&&(n=Object.keys(t.fields),("string"==typeof t.fields[n[0]]||e.isArray(t.fields[n[0]]))&&e.each(t.fields,function(n,i){"string"==typeof i&&(i=[i]),t.fields[n]={rules:[]},e.each(i,function(e,i){t.fields[n].rules.push({type:i})})})),x=e.extend(!0,{},e.fn.form.settings,t),C=e.extend({},e.fn.form.settings.defaults,x.fields),F.verbose("Extending settings",C,x))}else x=e.fn.form.settings,C=e.fn.form.settings.defaults,F.verbose("Using default form validation",C,x);A=x.namespace,w=x.metadata,k=x.selector,S=x.className,T=x.error,R="module-"+A,E="."+A,P=D.data(R),F.refresh()},field:function(t){return F.verbose("Finding field with identifier",t),f.filter("#"+t).length>0?f.filter("#"+t):f.filter('[name="'+t+'"]').length>0?f.filter('[name="'+t+'"]'):f.filter('[name="'+t+'[]"]').length>0?f.filter('[name="'+t+'[]"]'):f.filter("[data-"+w.validate+'="'+t+'"]').length>0?f.filter("[data-"+w.validate+'="'+t+'"]'):e("<input/>")},fields:function(t){var n=e();return e.each(t,function(e,t){n=n.add(F.get.field(t))}),n},validation:function(t){var n,i;return C?(e.each(C,function(e,o){i=o.identifier||e,F.get.field(i)[0]==t[0]&&(o.identifier=i,n=o)}),n||!1):!1},value:function(e){var t,n=[];return n.push(e),t=F.get.values.call(O,n),t[e]},values:function(t){var n=e.isArray(t)?F.get.fields(t):f,i={};return n.each(function(t,n){var o=e(n),a=(o.prop("type"),o.prop("name")),r=o.val(),s=o.is(k.checkbox),c=o.is(k.radio),l=-1!==a.indexOf("[]"),u=s?o.is(":checked"):!1;a&&(l?(a=a.replace("[]",""),i[a]||(i[a]=[]),s?u?i[a].push(r||!0):i[a].push(!1):i[a].push(r)):c?u&&(i[a]=r):s?u?i[a]=r||!0:i[a]=!1:i[a]=r)}),i}},has:{field:function(e){return F.verbose("Checking for existence of a field with identifier",e),"string"!=typeof e&&F.error(T.identifier,e),f.filter("#"+e).length>0?!0:f.filter('[name="'+e+'"]').length>0?!0:f.filter("[data-"+w.validate+'="'+e+'"]').length>0?!0:!1}},add:{prompt:function(t,n){var o=F.get.field(t),a=o.closest(g),r=a.children(k.prompt),s=0!==r.length;n="string"==typeof n?[n]:n,F.verbose("Adding field error state",t),a.addClass(S.error),x.inline&&(s||(r=x.templates.prompt(n),r.appendTo(a)),r.html(n[0]),s?F.verbose("Inline errors are disabled, no inline error added",t):x.transition&&e.fn.transition!==i&&D.transition("is supported")?(F.verbose("Displaying error with css transition",x.transition),r.transition(x.transition+" in",x.duration)):(F.verbose("Displaying error with fallback javascript animation"),r.fadeIn(x.duration)))},errors:function(e){F.debug("Adding form error messages",e),F.set.error(),p.html(x.templates.error(e))}},remove:{prompt:function(t){var n=F.get.field(t),o=n.closest(g),a=o.children(k.prompt);o.removeClass(S.error),x.inline&&a.is(":visible")&&(F.verbose("Removing prompt for field",t),x.transition&&e.fn.transition!==i&&D.transition("is supported")?a.transition(x.transition+" out",x.duration,function(){a.remove()}):a.fadeOut(x.duration,function(){a.remove()}))}},set:{success:function(){D.removeClass(S.error).addClass(S.success)},defaults:function(){f.each(function(){var t=e(this),n=t.filter(k.checkbox).length>0,i=n?t.is(":checked"):t.val();t.data(w.defaultValue,i)})},error:function(){D.removeClass(S.success).addClass(S.error)},value:function(e,t){var n={};return n[e]=t,F.set.values.call(O,n)},values:function(t){e.isEmptyObject(t)||e.each(t,function(t,n){var i,o=F.get.field(t),a=o.parent(),r=e.isArray(n),s=a.is(k.uiCheckbox),c=a.is(k.uiDropdown),l=o.is(k.radio)&&s,u=o.length>0;u&&(r&&s?(F.verbose("Selecting multiple",n,o),a.checkbox("uncheck"),e.each(n,function(e,t){i=o.filter('[value="'+t+'"]'),a=i.parent(),i.length>0&&a.checkbox("check")})):l?(F.verbose("Selecting radio value",n,o),o.filter('[value="'+n+'"]').parent(k.uiCheckbox).checkbox("check")):s?(F.verbose("Setting checkbox value",n,a),n===!0?a.checkbox("check"):a.checkbox("uncheck")):c?(F.verbose("Setting dropdown value",n,a),a.dropdown("set selected",n)):(F.verbose("Setting field value",n,o),o.val(n)))})}},validate:{form:function(e,t){var n=F.get.values();if(j)return!1;if(q=[],F.is.valid()){if(F.debug("Form has no validation errors, submitting"),F.set.success(),t!==!0)return x.onSuccess.call(O,e,n)}else if(F.debug("Form has errors"),F.set.error(),x.inline||F.add.errors(q),D.data("moduleApi")!==i&&e.stopImmediatePropagation(),t!==!0)return x.onFailure.call(O,q,n)},field:function(t,n){var o=t.identifier||n,a=F.get.field(o),r=!0,s=[];return t.identifier||(F.debug("Using field name as identifier",o),t.identifier=o),a.prop("disabled")?(F.debug("Field is disabled. Skipping",o),r=!0):t.optional&&""===e.trim(a.val())?(F.debug("Field is optional and empty. Skipping",o),r=!0):t.rules!==i&&e.each(t.rules,function(e,n){F.has.field(o)&&!F.validate.rule(t,n)&&(F.debug("Field is invalid",o,n.type),s.push(F.get.prompt(n,t)),r=!1)}),r?(F.remove.prompt(o,s),x.onValid.call(a),!0):(q=q.concat(s),F.add.prompt(o,s),x.onInvalid.call(a,s),!1)},rule:function(t,n){var o=F.get.field(t.identifier),a=(n.type,o.val()),r=F.get.ancillaryValue(n),s=F.get.ruleName(n),c=x.rules[s];return e.isFunction(c)?(a=a===i||""===a||null===a?"":e.trim(a+""),c.call(o,a,r)):void F.error(T.noRule,s)}},setting:function(t,n){if(e.isPlainObject(t))e.extend(!0,x,t);else{if(n===i)return x[t];x[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,F,t);else{if(n===i)return F[t];F[t]=n}},debug:function(){x.debug&&(x.performance?F.performance.log(arguments):(F.debug=Function.prototype.bind.call(console.info,console,x.name+":"),F.debug.apply(console,arguments)))},verbose:function(){x.verbose&&x.debug&&(x.performance?F.performance.log(arguments):(F.verbose=Function.prototype.bind.call(console.info,console,x.name+":"),F.verbose.apply(console,arguments)))},error:function(){F.error=Function.prototype.bind.call(console.error,console,x.name+":"),F.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;x.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:O,"Execution Time":n})),clearTimeout(F.performance.timer),F.performance.timer=setTimeout(F.performance.display,500)},display:function(){var t=x.name+":",n=0;s=!1,clearTimeout(F.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),a.length>1&&(t+=" ("+a.length+")"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,a){var r,s,c,l=P;return n=n||m,a=O||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},F.initialize()}),o!==i?o:this},e.fn.form.settings={name:"Form",namespace:"form",debug:!1,verbose:!1,performance:!0,fields:!1,keyboardShortcuts:!0,on:"submit",inline:!1,delay:200,revalidate:!0,transition:"scale",duration:200,onValid:function(){},onInvalid:function(){},onSuccess:function(){return!0},onFailure:function(){return!1},metadata:{defaultValue:"default",validate:"validate"},regExp:{bracket:/\[(.*)\]/i,decimal:/^\d*(\.)\d+/,email:"[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?",escape:/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,flags:/^\/(.*)\/(.*)?/,integer:/^\-?\d+$/,number:/^\-?\d*(\.\d+)?$/,url:/(https?:\/\/(?:www\.|(?!www))[^\s\.]+\.[^\s]{2,}|www\.[^\s]+\.[^\s]{2,})/i},text:{unspecifiedRule:"Please enter a valid value",unspecifiedField:"This field"},prompt:{empty:"{name} must have a value",checked:"{name} must be checked",email:"{name} must be a valid e-mail",url:"{name} must be a valid url",regExp:"{name} is not formatted correctly",integer:"{name} must be an integer",decimal:"{name} must be a decimal number",number:"{name} must be set to a number",is:'{name} must be "{ruleValue}"',isExactly:'{name} must be exactly "{ruleValue}"',not:'{name} cannot be set to "{ruleValue}"',notExactly:'{name} cannot be set to exactly "{ruleValue}"',contain:'{name} cannot contain "{ruleValue}"',containExactly:'{name} cannot contain exactly "{ruleValue}"',doesntContain:'{name} must contain "{ruleValue}"',doesntContainExactly:'{name} must contain exactly "{ruleValue}"',minLength:"{name} must be at least {ruleValue} characters",length:"{name} must be at least {ruleValue} characters",exactLength:"{name} must be exactly {ruleValue} characters",maxLength:"{name} cannot be longer than {ruleValue} characters",match:"{name} must match {ruleValue} field",different:"{name} must have a different value than {ruleValue} field",creditCard:"{name} must be a valid credit card number",minCount:"{name} must have at least {ruleValue} choices",exactCount:"{name} must have exactly {ruleValue} choices",maxCount:"{name} must have {ruleValue} or less choices"},selector:{checkbox:'input[type="checkbox"], input[type="radio"]',clear:".clear",field:"input, textarea, select",group:".field",input:"input",message:".error.message",prompt:".prompt.label",radio:'input[type="radio"]',reset:'.reset:not([type="reset"])',submit:'.submit:not([type="submit"])',uiCheckbox:".ui.checkbox",uiDropdown:".ui.dropdown"},className:{error:"error",label:"ui prompt label",pressed:"down",success:"success"},error:{identifier:"You must specify a string identifier for each field",method:"The method you called is not defined.",noRule:"There is no rule matching the one you specified",oldSyntax:"Starting in 2.0 forms now only take a single settings object. Validation settings converted to new syntax automatically."},templates:{error:function(t){var n='<ul class="list">';return e.each(t,function(e,t){n+="<li>"+t+"</li>"}),n+="</ul>",e(n)},prompt:function(t){return e("<div/>").addClass("ui basic red pointing prompt label").html(t[0])}},rules:{empty:function(t){return!(t===i||""===t||e.isArray(t)&&0===t.length)},checked:function(){return e(this).filter(":checked").length>0},email:function(t){var n=new RegExp(e.fn.form.settings.regExp.email,"i");return n.test(t)},url:function(t){return e.fn.form.settings.regExp.url.test(t)},regExp:function(t,n){var i,o=n.match(e.fn.form.settings.regExp.flags);return o&&(n=o.length>=2?o[1]:n,i=o.length>=3?o[2]:""),t.match(new RegExp(n,i))},integer:function(t,n){var o,a,r,s=e.fn.form.settings.regExp.integer;return n&&-1===["",".."].indexOf(n)&&(-1==n.indexOf("..")?s.test(n)&&(o=a=n-0):(r=n.split("..",2),s.test(r[0])&&(o=r[0]-0),s.test(r[1])&&(a=r[1]-0))),s.test(t)&&(o===i||t>=o)&&(a===i||a>=t)},decimal:function(t){return e.fn.form.settings.regExp.decimal.test(t)},number:function(t){return e.fn.form.settings.regExp.number.test(t)},is:function(e,t){return t="string"==typeof t?t.toLowerCase():t,e="string"==typeof e?e.toLowerCase():e,e==t},isExactly:function(e,t){return e==t},not:function(e,t){return e="string"==typeof e?e.toLowerCase():e,t="string"==typeof t?t.toLowerCase():t,e!=t},notExactly:function(e,t){return e!=t},contains:function(t,n){return n=n.replace(e.fn.form.settings.regExp.escape,"\\$&"),-1!==t.search(new RegExp(n,"i"))},containsExactly:function(t,n){return n=n.replace(e.fn.form.settings.regExp.escape,"\\$&"),-1!==t.search(new RegExp(n))},doesntContain:function(t,n){return n=n.replace(e.fn.form.settings.regExp.escape,"\\$&"),-1===t.search(new RegExp(n,"i"))},doesntContainExactly:function(t,n){return n=n.replace(e.fn.form.settings.regExp.escape,"\\$&"),-1===t.search(new RegExp(n))},minLength:function(e,t){return e!==i?e.length>=t:!1},length:function(e,t){return e!==i?e.length>=t:!1},exactLength:function(e,t){return e!==i?e.length==t:!1},maxLength:function(e,t){return e!==i?e.length<=t:!1},match:function(t,n){var o;e(this);return e('[data-validate="'+n+'"]').length>0?o=e('[data-validate="'+n+'"]').val():e("#"+n).length>0?o=e("#"+n).val():e('[name="'+n+'"]').length>0?o=e('[name="'+n+'"]').val():e('[name="'+n+'[]"]').length>0&&(o=e('[name="'+n+'[]"]')),o!==i?t.toString()==o.toString():!1},different:function(t,n){var o;e(this);return e('[data-validate="'+n+'"]').length>0?o=e('[data-validate="'+n+'"]').val():e("#"+n).length>0?o=e("#"+n).val():e('[name="'+n+'"]').length>0?o=e('[name="'+n+'"]').val():e('[name="'+n+'[]"]').length>0&&(o=e('[name="'+n+'[]"]')),o!==i?t.toString()!==o.toString():!1},creditCard:function(t,n){var i,o,a={visa:{pattern:/^4/,length:[16]},amex:{pattern:/^3[47]/,length:[15]},mastercard:{pattern:/^5[1-5]/,length:[16]},discover:{pattern:/^(6011|622(12[6-9]|1[3-9][0-9]|[2-8][0-9]{2}|9[0-1][0-9]|92[0-5]|64[4-9])|65)/,length:[16]},unionPay:{pattern:/^(62|88)/,length:[16,17,18,19]},jcb:{pattern:/^35(2[89]|[3-8][0-9])/,length:[16]},maestro:{pattern:/^(5018|5020|5038|6304|6759|676[1-3])/,length:[12,13,14,15,16,17,18,19]},dinersClub:{pattern:/^(30[0-5]|^36)/,length:[14]},laser:{pattern:/^(6304|670[69]|6771)/,length:[16,17,18,19]},visaElectron:{pattern:/^(4026|417500|4508|4844|491(3|7))/,length:[16]}},r={},s=!1,c="string"==typeof n?n.split(","):!1;if("string"==typeof t&&0!==t.length){if(c&&(e.each(c,function(n,i){o=a[i],o&&(r={length:-1!==e.inArray(t.length,o.length),pattern:-1!==t.search(o.pattern)},r.length&&r.pattern&&(s=!0))}),!s))return!1;if(i={number:-1!==e.inArray(t.length,a.unionPay.length),pattern:-1!==t.search(a.unionPay.pattern)},i.number&&i.pattern)return!0;for(var l=t.length,u=0,d=[[0,1,2,3,4,5,6,7,8,9],[0,2,4,6,8,1,3,5,7,9]],m=0;l--;)m+=d[u][parseInt(t.charAt(l),10)],u^=1;return m%10===0&&m>0}},minCount:function(e,t){return 0==t?!0:1==t?""!==e:e.split(",").length>=t},exactCount:function(e,t){return 0==t?""===e:1==t?""!==e&&-1===e.search(","):e.split(",").length==t},maxCount:function(e,t){return 0==t?!1:1==t?-1===e.search(","):e.split(",").length<=t}}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.accordion=function(n){var o,a=e(this),r=(new Date).getTime(),s=[],c=arguments[0],l="string"==typeof c,u=[].slice.call(arguments,1);t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)};return a.each(function(){var d,m,f=e.isPlainObject(n)?e.extend(!0,{},e.fn.accordion.settings,n):e.extend({},e.fn.accordion.settings),g=f.className,p=f.namespace,v=f.selector,h=f.error,b="."+p,y="module-"+p,x=a.selector||"",C=e(this),w=C.find(v.title),k=C.find(v.content),S=this,T=C.data(y);m={initialize:function(){m.debug("Initializing",C),m.bind.events(),f.observeChanges&&m.observeChanges(),m.instantiate()},instantiate:function(){T=m,C.data(y,m)},destroy:function(){m.debug("Destroying previous instance",C),C.off(b).removeData(y)},refresh:function(){w=C.find(v.title),k=C.find(v.content)},observeChanges:function(){"MutationObserver"in t&&(d=new MutationObserver(function(e){m.debug("DOM tree modified, updating selector cache"),m.refresh()}),d.observe(S,{childList:!0,subtree:!0}),m.debug("Setting up mutation observer",d))},bind:{events:function(){m.debug("Binding delegated events"),C.on(f.on+b,v.trigger,m.event.click)}},event:{click:function(){m.toggle.call(this)}},toggle:function(t){var n=t!==i?"number"==typeof t?w.eq(t):e(t).closest(v.title):e(this).closest(v.title),o=n.next(k),a=o.hasClass(g.animating),r=o.hasClass(g.active),s=r&&!a,c=!r&&a;m.debug("Toggling visibility of content",n),s||c?f.collapsible?m.close.call(n):m.debug("Cannot close accordion content collapsing is disabled"):m.open.call(n)},open:function(t){var n=t!==i?"number"==typeof t?w.eq(t):e(t).closest(v.title):e(this).closest(v.title),o=n.next(k),a=o.hasClass(g.animating),r=o.hasClass(g.active),s=r||a;return s?void m.debug("Accordion already open, skipping",o):(m.debug("Opening accordion content",n),f.onOpening.call(o),f.exclusive&&m.closeOthers.call(n),n.addClass(g.active),o.stop(!0,!0).addClass(g.animating),f.animateChildren&&(e.fn.transition!==i&&C.transition("is supported")?o.children().transition({animation:"fade in",queue:!1,useFailSafe:!0,debug:f.debug,verbose:f.verbose,duration:f.duration}):o.children().stop(!0,!0).animate({opacity:1},f.duration,m.resetOpacity)),void o.slideDown(f.duration,f.easing,function(){o.removeClass(g.animating).addClass(g.active),m.reset.display.call(this),f.onOpen.call(this),f.onChange.call(this)}))},close:function(t){var n=t!==i?"number"==typeof t?w.eq(t):e(t).closest(v.title):e(this).closest(v.title),o=n.next(k),a=o.hasClass(g.animating),r=o.hasClass(g.active),s=!r&&a,c=r&&a;!r&&!s||c||(m.debug("Closing accordion content",o),f.onClosing.call(o),n.removeClass(g.active),o.stop(!0,!0).addClass(g.animating),f.animateChildren&&(e.fn.transition!==i&&C.transition("is supported")?o.children().transition({animation:"fade out",queue:!1,useFailSafe:!0,debug:f.debug,verbose:f.verbose,duration:f.duration}):o.children().stop(!0,!0).animate({opacity:0},f.duration,m.resetOpacity)),o.slideUp(f.duration,f.easing,function(){o.removeClass(g.animating).removeClass(g.active),m.reset.display.call(this),f.onClose.call(this),f.onChange.call(this)}))},closeOthers:function(t){var n,o,a,r=t!==i?w.eq(t):e(this).closest(v.title),s=r.parents(v.content).prev(v.title),c=r.closest(v.accordion),l=v.title+"."+g.active+":visible",u=v.content+"."+g.active+":visible";f.closeNested?(n=c.find(l).not(s),a=n.next(k)):(n=c.find(l).not(s),o=c.find(u).find(l).not(s),n=n.not(o),a=n.next(k)),n.length>0&&(m.debug("Exclusive enabled, closing other content",n),n.removeClass(g.active),a.removeClass(g.animating).stop(!0,!0),f.animateChildren&&(e.fn.transition!==i&&C.transition("is supported")?a.children().transition({animation:"fade out",useFailSafe:!0,debug:f.debug,verbose:f.verbose,duration:f.duration}):a.children().stop(!0,!0).animate({opacity:0},f.duration,m.resetOpacity)),a.slideUp(f.duration,f.easing,function(){e(this).removeClass(g.active),m.reset.display.call(this)}))},reset:{display:function(){m.verbose("Removing inline display from element",this),e(this).css("display",""),""===e(this).attr("style")&&e(this).attr("style","").removeAttr("style")},opacity:function(){m.verbose("Removing inline opacity from element",this),e(this).css("opacity",""),""===e(this).attr("style")&&e(this).attr("style","").removeAttr("style")}},setting:function(t,n){if(m.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,f,t);else{if(n===i)return f[t];f[t]=n}},internal:function(t,n){return m.debug("Changing internal",t,n),n===i?m[t]:void(e.isPlainObject(t)?e.extend(!0,m,t):m[t]=n)},debug:function(){f.debug&&(f.performance?m.performance.log(arguments):(m.debug=Function.prototype.bind.call(console.info,console,f.name+":"),m.debug.apply(console,arguments)))},verbose:function(){f.verbose&&f.debug&&(f.performance?m.performance.log(arguments):(m.verbose=Function.prototype.bind.call(console.info,console,f.name+":"),m.verbose.apply(console,arguments)))},error:function(){m.error=Function.prototype.bind.call(console.error,console,f.name+":"),m.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;f.performance&&(t=(new Date).getTime(),i=r||t,n=t-i,r=t,s.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:S,"Execution Time":n})),clearTimeout(m.performance.timer),m.performance.timer=setTimeout(m.performance.display,500)},display:function(){var t=f.name+":",n=0;r=!1,clearTimeout(m.performance.timer),e.each(s,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",x&&(t+=" '"+x+"'"),(console.group!==i||console.table!==i)&&s.length>0&&(console.groupCollapsed(t),console.table?console.table(s):e.each(s,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),s=[]}},invoke:function(t,n,a){var r,s,c,l=T;return n=n||u,a=S||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(m.error(h.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},l?(T===i&&m.initialize(),m.invoke(c)):(T!==i&&T.invoke("destroy"),m.initialize())}),o!==i?o:this},e.fn.accordion.settings={name:"Accordion",namespace:"accordion",debug:!1,verbose:!1,performance:!0,on:"click",observeChanges:!0,exclusive:!0,collapsible:!0,closeNested:!1,animateChildren:!0,duration:350,easing:"easeOutQuad",onOpening:function(){},onOpen:function(){},onClosing:function(){},onClose:function(){},onChange:function(){},error:{method:"The method you called is not defined"},className:{active:"active",animating:"animating"},selector:{accordion:".accordion",title:".title",trigger:".title",content:".content"}},e.extend(e.easing,{easeOutQuad:function(e,t,n,i,o){return-i*(t/=o)*(t-2)+n}})}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.checkbox=function(o){var a,r=e(this),s=r.selector||"",c=(new Date).getTime(),l=[],u=arguments[0],d="string"==typeof u,m=[].slice.call(arguments,1);return r.each(function(){var r,f,g=e.extend(!0,{},e.fn.checkbox.settings,o),p=g.className,v=g.namespace,h=g.selector,b=g.error,y="."+v,x="module-"+v,C=e(this),w=e(this).children(h.label),k=e(this).children(h.input),S=k[0],T=!1,A=!1,R=C.data(x),E=this; +f={initialize:function(){f.verbose("Initializing checkbox",g),f.create.label(),f.bind.events(),f.set.tabbable(),f.hide.input(),f.observeChanges(),f.instantiate(),f.setup()},instantiate:function(){f.verbose("Storing instance of module",f),R=f,C.data(x,f)},destroy:function(){f.verbose("Destroying module"),f.unbind.events(),f.show.input(),C.removeData(x)},fix:{reference:function(){C.is(h.input)&&(f.debug("Behavior called on <input> adjusting invoked element"),C=C.closest(h.checkbox),f.refresh())}},setup:function(){f.set.initialLoad(),f.is.indeterminate()?(f.debug("Initial value is indeterminate"),f.indeterminate()):f.is.checked()?(f.debug("Initial value is checked"),f.check()):(f.debug("Initial value is unchecked"),f.uncheck()),f.remove.initialLoad()},refresh:function(){w=C.children(h.label),k=C.children(h.input),S=k[0]},hide:{input:function(){f.verbose("Modfying <input> z-index to be unselectable"),k.addClass(p.hidden)}},show:{input:function(){f.verbose("Modfying <input> z-index to be selectable"),k.removeClass(p.hidden)}},observeChanges:function(){"MutationObserver"in t&&(r=new MutationObserver(function(e){f.debug("DOM tree modified, updating selector cache"),f.refresh()}),r.observe(E,{childList:!0,subtree:!0}),f.debug("Setting up mutation observer",r))},attachEvents:function(t,n){var i=e(t);n=e.isFunction(f[n])?f[n]:f.toggle,i.length>0?(f.debug("Attaching checkbox events to element",t,n),i.on("click"+y,n)):f.error(b.notFound)},event:{click:function(t){var n=e(t.target);return n.is(h.input)?void f.verbose("Using default check action on initialized checkbox"):n.is(h.link)?void f.debug("Clicking link inside checkbox, skipping toggle"):(f.toggle(),k.focus(),void t.preventDefault())},keydown:function(e){var t=e.which,n={enter:13,space:32,escape:27};t==n.escape?(f.verbose("Escape key pressed blurring field"),k.blur(),A=!0):e.ctrlKey||t!=n.space&&t!=n.enter?A=!1:(f.verbose("Enter/space key pressed, toggling checkbox"),f.toggle(),A=!0)},keyup:function(e){A&&e.preventDefault()}},check:function(){f.should.allowCheck()&&(f.debug("Checking checkbox",k),f.set.checked(),f.should.ignoreCallbacks()||(g.onChecked.call(S),g.onChange.call(S)))},uncheck:function(){f.should.allowUncheck()&&(f.debug("Unchecking checkbox"),f.set.unchecked(),f.should.ignoreCallbacks()||(g.onUnchecked.call(S),g.onChange.call(S)))},indeterminate:function(){return f.should.allowIndeterminate()?void f.debug("Checkbox is already indeterminate"):(f.debug("Making checkbox indeterminate"),f.set.indeterminate(),void(f.should.ignoreCallbacks()||(g.onIndeterminate.call(S),g.onChange.call(S))))},determinate:function(){return f.should.allowDeterminate()?void f.debug("Checkbox is already determinate"):(f.debug("Making checkbox determinate"),f.set.determinate(),void(f.should.ignoreCallbacks()||(g.onDeterminate.call(S),g.onChange.call(S))))},enable:function(){return f.is.enabled()?void f.debug("Checkbox is already enabled"):(f.debug("Enabling checkbox"),f.set.enabled(),void g.onEnable.call(S))},disable:function(){return f.is.disabled()?void f.debug("Checkbox is already disabled"):(f.debug("Disabling checkbox"),f.set.disabled(),void g.onDisable.call(S))},get:{radios:function(){var t=f.get.name();return e('input[name="'+t+'"]').closest(h.checkbox)},otherRadios:function(){return f.get.radios().not(C)},name:function(){return k.attr("name")}},is:{initialLoad:function(){return T},radio:function(){return k.hasClass(p.radio)||"radio"==k.attr("type")},indeterminate:function(){return k.prop("indeterminate")!==i&&k.prop("indeterminate")},checked:function(){return k.prop("checked")!==i&&k.prop("checked")},disabled:function(){return k.prop("disabled")!==i&&k.prop("disabled")},enabled:function(){return!f.is.disabled()},determinate:function(){return!f.is.indeterminate()},unchecked:function(){return!f.is.checked()}},should:{allowCheck:function(){return f.is.determinate()&&f.is.checked()&&!f.should.forceCallbacks()?(f.debug("Should not allow check, checkbox is already checked"),!1):g.beforeChecked.apply(S)===!1?(f.debug("Should not allow check, beforeChecked cancelled"),!1):!0},allowUncheck:function(){return f.is.determinate()&&f.is.unchecked()&&!f.should.forceCallbacks()?(f.debug("Should not allow uncheck, checkbox is already unchecked"),!1):g.beforeUnchecked.apply(S)===!1?(f.debug("Should not allow uncheck, beforeUnchecked cancelled"),!1):!0},allowIndeterminate:function(){return f.is.indeterminate()&&!f.should.forceCallbacks()?(f.debug("Should not allow indeterminate, checkbox is already indeterminate"),!1):g.beforeIndeterminate.apply(S)===!1?(f.debug("Should not allow indeterminate, beforeIndeterminate cancelled"),!1):!0},allowDeterminate:function(){return f.is.determinate()&&!f.should.forceCallbacks()?(f.debug("Should not allow determinate, checkbox is already determinate"),!1):g.beforeDeterminate.apply(S)===!1?(f.debug("Should not allow determinate, beforeDeterminate cancelled"),!1):!0},forceCallbacks:function(){return f.is.initialLoad()&&g.fireOnInit},ignoreCallbacks:function(){return T&&!g.fireOnInit}},can:{change:function(){return!(C.hasClass(p.disabled)||C.hasClass(p.readOnly)||k.prop("disabled")||k.prop("readonly"))},uncheck:function(){return"boolean"==typeof g.uncheckable?g.uncheckable:!f.is.radio()}},set:{initialLoad:function(){T=!0},checked:function(){return f.verbose("Setting class to checked"),C.removeClass(p.indeterminate).addClass(p.checked),f.is.radio()&&f.uncheckOthers(),!f.is.indeterminate()&&f.is.checked()?void f.debug("Input is already checked, skipping input property change"):(f.verbose("Setting state to checked",S),k.prop("indeterminate",!1).prop("checked",!0),void f.trigger.change())},unchecked:function(){return f.verbose("Removing checked class"),C.removeClass(p.indeterminate).removeClass(p.checked),!f.is.indeterminate()&&f.is.unchecked()?void f.debug("Input is already unchecked"):(f.debug("Setting state to unchecked"),k.prop("indeterminate",!1).prop("checked",!1),void f.trigger.change())},indeterminate:function(){return f.verbose("Setting class to indeterminate"),C.addClass(p.indeterminate),f.is.indeterminate()?void f.debug("Input is already indeterminate, skipping input property change"):(f.debug("Setting state to indeterminate"),k.prop("indeterminate",!0),void f.trigger.change())},determinate:function(){return f.verbose("Removing indeterminate class"),C.removeClass(p.indeterminate),f.is.determinate()?void f.debug("Input is already determinate, skipping input property change"):(f.debug("Setting state to determinate"),void k.prop("indeterminate",!1))},disabled:function(){return f.verbose("Setting class to disabled"),C.addClass(p.disabled),f.is.disabled()?void f.debug("Input is already disabled, skipping input property change"):(f.debug("Setting state to disabled"),k.prop("disabled","disabled"),void f.trigger.change())},enabled:function(){return f.verbose("Removing disabled class"),C.removeClass(p.disabled),f.is.enabled()?void f.debug("Input is already enabled, skipping input property change"):(f.debug("Setting state to enabled"),k.prop("disabled",!1),void f.trigger.change())},tabbable:function(){f.verbose("Adding tabindex to checkbox"),k.attr("tabindex")===i&&k.attr("tabindex",0)}},remove:{initialLoad:function(){T=!1}},trigger:{change:function(){var e=n.createEvent("HTMLEvents"),t=k[0];t&&(f.verbose("Triggering native change event"),e.initEvent("change",!0,!1),t.dispatchEvent(e))}},create:{label:function(){k.prevAll(h.label).length>0?(k.prev(h.label).detach().insertAfter(k),f.debug("Moving existing label",w)):f.has.label()||(w=e("<label>").insertAfter(k),f.debug("Creating label",w))}},has:{label:function(){return w.length>0}},bind:{events:function(){f.verbose("Attaching checkbox events"),C.on("click"+y,f.event.click).on("keydown"+y,h.input,f.event.keydown).on("keyup"+y,h.input,f.event.keyup)}},unbind:{events:function(){f.debug("Removing events"),C.off(y)}},uncheckOthers:function(){var e=f.get.otherRadios();f.debug("Unchecking other radios",e),e.removeClass(p.checked)},toggle:function(){return f.can.change()?void(f.is.indeterminate()||f.is.unchecked()?(f.debug("Currently unchecked"),f.check()):f.is.checked()&&f.can.uncheck()&&(f.debug("Currently checked"),f.uncheck())):void(f.is.radio()||f.debug("Checkbox is read-only or disabled, ignoring toggle"))},setting:function(t,n){if(f.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,g,t);else{if(n===i)return g[t];g[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,f,t);else{if(n===i)return f[t];f[t]=n}},debug:function(){g.debug&&(g.performance?f.performance.log(arguments):(f.debug=Function.prototype.bind.call(console.info,console,g.name+":"),f.debug.apply(console,arguments)))},verbose:function(){g.verbose&&g.debug&&(g.performance?f.performance.log(arguments):(f.verbose=Function.prototype.bind.call(console.info,console,g.name+":"),f.verbose.apply(console,arguments)))},error:function(){f.error=Function.prototype.bind.call(console.error,console,g.name+":"),f.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;g.performance&&(t=(new Date).getTime(),i=c||t,n=t-i,c=t,l.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:E,"Execution Time":n})),clearTimeout(f.performance.timer),f.performance.timer=setTimeout(f.performance.display,500)},display:function(){var t=g.name+":",n=0;c=!1,clearTimeout(f.performance.timer),e.each(l,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",s&&(t+=" '"+s+"'"),(console.group!==i||console.table!==i)&&l.length>0&&(console.groupCollapsed(t),console.table?console.table(l):e.each(l,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),l=[]}},invoke:function(t,n,o){var r,s,c,l=R;return n=n||m,o=E||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(f.error(b.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},d?(R===i&&f.initialize(),f.invoke(u)):(R!==i&&R.invoke("destroy"),f.initialize())}),a!==i?a:this},e.fn.checkbox.settings={name:"Checkbox",namespace:"checkbox",debug:!1,verbose:!0,performance:!0,uncheckable:"auto",fireOnInit:!1,onChange:function(){},beforeChecked:function(){},beforeUnchecked:function(){},beforeDeterminate:function(){},beforeIndeterminate:function(){},onChecked:function(){},onUnchecked:function(){},onDeterminate:function(){},onIndeterminate:function(){},onEnabled:function(){},onDisabled:function(){},className:{checked:"checked",indeterminate:"indeterminate",disabled:"disabled",hidden:"hidden",radio:"radio",readOnly:"read-only"},error:{method:"The method you called is not defined"},selector:{checkbox:".ui.checkbox",label:"label, .box",input:'input[type="checkbox"], input[type="radio"]',link:"a[href]"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.dimmer=function(t){var o,a=e(this),r=(new Date).getTime(),s=[],c=arguments[0],l="string"==typeof c,u=[].slice.call(arguments,1);return a.each(function(){var d,m,f,g=e.isPlainObject(t)?e.extend(!0,{},e.fn.dimmer.settings,t):e.extend({},e.fn.dimmer.settings),p=g.selector,v=g.namespace,h=g.className,b=g.error,y="."+v,x="module-"+v,C=a.selector||"",w="ontouchstart"in n.documentElement?"touchstart":"click",k=e(this),S=this,T=k.data(x);f={preinitialize:function(){f.is.dimmer()?(m=k.parent(),d=k):(m=k,d=f.has.dimmer()?g.dimmerName?m.find(p.dimmer).filter("."+g.dimmerName):m.find(p.dimmer):f.create())},initialize:function(){f.debug("Initializing dimmer",g),f.bind.events(),f.set.dimmable(),f.instantiate()},instantiate:function(){f.verbose("Storing instance of module",f),T=f,k.data(x,T)},destroy:function(){f.verbose("Destroying previous module",d),f.unbind.events(),f.remove.variation(),m.off(y)},bind:{events:function(){"hover"==g.on?m.on("mouseenter"+y,f.show).on("mouseleave"+y,f.hide):"click"==g.on&&m.on(w+y,f.toggle),f.is.page()&&(f.debug("Setting as a page dimmer",m),f.set.pageDimmer()),f.is.closable()&&(f.verbose("Adding dimmer close event",d),m.on(w+y,p.dimmer,f.event.click))}},unbind:{events:function(){k.removeData(x)}},event:{click:function(t){f.verbose("Determining if event occured on dimmer",t),(0===d.find(t.target).length||e(t.target).is(p.content))&&(f.hide(),t.stopImmediatePropagation())}},addContent:function(t){var n=e(t);f.debug("Add content to dimmer",n),n.parent()[0]!==d[0]&&n.detach().appendTo(d)},create:function(){var t=e(g.template.dimmer());return g.variation&&(f.debug("Creating dimmer with variation",g.variation),t.addClass(g.variation)),g.dimmerName&&(f.debug("Creating named dimmer",g.dimmerName),t.addClass(g.dimmerName)),t.appendTo(m),t},show:function(t){t=e.isFunction(t)?t:function(){},f.debug("Showing dimmer",d,g),f.is.dimmed()&&!f.is.animating()||!f.is.enabled()?f.debug("Dimmer is already shown or disabled"):(f.animate.show(t),g.onShow.call(S),g.onChange.call(S))},hide:function(t){t=e.isFunction(t)?t:function(){},f.is.dimmed()||f.is.animating()?(f.debug("Hiding dimmer",d),f.animate.hide(t),g.onHide.call(S),g.onChange.call(S)):f.debug("Dimmer is not visible")},toggle:function(){f.verbose("Toggling dimmer visibility",d),f.is.dimmed()?f.hide():f.show()},animate:{show:function(t){t=e.isFunction(t)?t:function(){},g.useCSS&&e.fn.transition!==i&&d.transition("is supported")?("auto"!==g.opacity&&f.set.opacity(),d.transition({animation:g.transition+" in",queue:!1,duration:f.get.duration(),useFailSafe:!0,onStart:function(){f.set.dimmed()},onComplete:function(){f.set.active(),t()}})):(f.verbose("Showing dimmer animation with javascript"),f.set.dimmed(),"auto"==g.opacity&&(g.opacity=.8),d.stop().css({opacity:0,width:"100%",height:"100%"}).fadeTo(f.get.duration(),g.opacity,function(){d.removeAttr("style"),f.set.active(),t()}))},hide:function(t){t=e.isFunction(t)?t:function(){},g.useCSS&&e.fn.transition!==i&&d.transition("is supported")?(f.verbose("Hiding dimmer with css"),d.transition({animation:g.transition+" out",queue:!1,duration:f.get.duration(),useFailSafe:!0,onStart:function(){f.remove.dimmed()},onComplete:function(){f.remove.active(),t()}})):(f.verbose("Hiding dimmer with javascript"),f.remove.dimmed(),d.stop().fadeOut(f.get.duration(),function(){f.remove.active(),d.removeAttr("style"),t()}))}},get:{dimmer:function(){return d},duration:function(){return"object"==typeof g.duration?f.is.active()?g.duration.hide:g.duration.show:g.duration}},has:{dimmer:function(){return g.dimmerName?k.find(p.dimmer).filter("."+g.dimmerName).length>0:k.find(p.dimmer).length>0}},is:{active:function(){return d.hasClass(h.active)},animating:function(){return d.is(":animated")||d.hasClass(h.animating)},closable:function(){return"auto"==g.closable?"hover"==g.on?!1:!0:g.closable},dimmer:function(){return k.hasClass(h.dimmer)},dimmable:function(){return k.hasClass(h.dimmable)},dimmed:function(){return m.hasClass(h.dimmed)},disabled:function(){return m.hasClass(h.disabled)},enabled:function(){return!f.is.disabled()},page:function(){return m.is("body")},pageDimmer:function(){return d.hasClass(h.pageDimmer)}},can:{show:function(){return!d.hasClass(h.disabled)}},set:{opacity:function(e){var t=d.css("background-color"),n=t.split(","),i=n&&4==n.length;e=0===g.opacity?0:g.opacity||e,i?(n[3]=e+")",t=n.join(",")):t="rgba(0, 0, 0, "+e+")",f.debug("Setting opacity to",e),d.css("background-color",t)},active:function(){d.addClass(h.active)},dimmable:function(){m.addClass(h.dimmable)},dimmed:function(){m.addClass(h.dimmed)},pageDimmer:function(){d.addClass(h.pageDimmer)},disabled:function(){d.addClass(h.disabled)},variation:function(e){e=e||g.variation,e&&d.addClass(e)}},remove:{active:function(){d.removeClass(h.active)},dimmed:function(){m.removeClass(h.dimmed)},disabled:function(){d.removeClass(h.disabled)},variation:function(e){e=e||g.variation,e&&d.removeClass(e)}},setting:function(t,n){if(f.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,g,t);else{if(n===i)return g[t];g[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,f,t);else{if(n===i)return f[t];f[t]=n}},debug:function(){g.debug&&(g.performance?f.performance.log(arguments):(f.debug=Function.prototype.bind.call(console.info,console,g.name+":"),f.debug.apply(console,arguments)))},verbose:function(){g.verbose&&g.debug&&(g.performance?f.performance.log(arguments):(f.verbose=Function.prototype.bind.call(console.info,console,g.name+":"),f.verbose.apply(console,arguments)))},error:function(){f.error=Function.prototype.bind.call(console.error,console,g.name+":"),f.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;g.performance&&(t=(new Date).getTime(),i=r||t,n=t-i,r=t,s.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:S,"Execution Time":n})),clearTimeout(f.performance.timer),f.performance.timer=setTimeout(f.performance.display,500)},display:function(){var t=g.name+":",n=0;r=!1,clearTimeout(f.performance.timer),e.each(s,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",C&&(t+=" '"+C+"'"),a.length>1&&(t+=" ("+a.length+")"),(console.group!==i||console.table!==i)&&s.length>0&&(console.groupCollapsed(t),console.table?console.table(s):e.each(s,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),s=[]}},invoke:function(t,n,a){var r,s,c,l=T;return n=n||u,a=S||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(f.error(b.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},f.preinitialize(),l?(T===i&&f.initialize(),f.invoke(c)):(T!==i&&T.invoke("destroy"),f.initialize())}),o!==i?o:this},e.fn.dimmer.settings={name:"Dimmer",namespace:"dimmer",debug:!1,verbose:!1,performance:!0,dimmerName:!1,variation:!1,closable:"auto",useCSS:!0,transition:"fade",on:!1,opacity:"auto",duration:{show:500,hide:500},onChange:function(){},onShow:function(){},onHide:function(){},error:{method:"The method you called is not defined."},className:{active:"active",animating:"animating",dimmable:"dimmable",dimmed:"dimmed",dimmer:"dimmer",disabled:"disabled",hide:"hide",pageDimmer:"page",show:"show"},selector:{dimmer:"> .ui.dimmer",content:".ui.dimmer > .content, .ui.dimmer > .content > .center"},template:{dimmer:function(){return e("<div />").attr("class","ui dimmer")}}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.dropdown=function(o){var a,r=e(this),s=e(n),c=r.selector||"",l="ontouchstart"in n.documentElement,u=(new Date).getTime(),d=[],m=arguments[0],f="string"==typeof m,g=[].slice.call(arguments,1);return r.each(function(p){var v,h,b,y,x,C,w,k=e.isPlainObject(o)?e.extend(!0,{},e.fn.dropdown.settings,o):e.extend({},e.fn.dropdown.settings),S=k.className,T=k.message,A=k.fields,R=k.keys,E=k.metadata,P=k.namespace,F=k.regExp,D=k.selector,O=k.error,q=k.templates,j="."+P,z="module-"+P,I=e(this),L=e(k.context),N=I.find(D.text),V=I.find(D.search),H=I.find(D.input),M=I.find(D.icon),U=I.prev().find(D.text).length>0?I.prev().find(D.text):I.prev(),W=I.children(D.menu),B=W.find(D.item),Q=!1,X=!1,$=!1,Y=this,Z=I.data(z);w={initialize:function(){w.debug("Initializing dropdown",k),w.is.alreadySetup()?w.setup.reference():(w.setup.layout(),w.refreshData(),w.save.defaults(),w.restore.selected(),w.create.id(),w.bind.events(),w.observeChanges(),w.instantiate())},instantiate:function(){w.verbose("Storing instance of dropdown",w),Z=w,I.data(z,w)},destroy:function(){w.verbose("Destroying previous dropdown",I),w.remove.tabbable(),I.off(j).removeData(z),W.off(j),s.off(b),x&&x.disconnect(),C&&C.disconnect()},observeChanges:function(){"MutationObserver"in t&&(x=new MutationObserver(function(e){w.debug("<select> modified, recreating menu"),w.setup.select()}),C=new MutationObserver(function(e){w.debug("Menu modified, updating selector cache"),w.refresh()}),w.has.input()&&x.observe(H[0],{childList:!0,subtree:!0}),w.has.menu()&&C.observe(W[0],{childList:!0,subtree:!0}),w.debug("Setting up mutation observer",x,C))},create:{id:function(){y=(Math.random().toString(16)+"000000000").substr(2,8),b="."+y,w.verbose("Creating unique id for element",y)},userChoice:function(t){var n,o,a;return(t=t||w.get.userValues())?(t=e.isArray(t)?t:[t],e.each(t,function(t,r){w.get.item(r)===!1&&(a=k.templates.addition(w.add.variables(T.addResult,r)),o=e("<div />").html(a).attr("data-"+E.value,r).attr("data-"+E.text,r).addClass(S.addition).addClass(S.item),n=n===i?o:n.add(o),w.verbose("Creating user choices for value",r,o))}),n):!1},userLabels:function(t){var n=w.get.userValues();n&&(w.debug("Adding user labels",n),e.each(n,function(e,t){w.verbose("Adding custom user value"),w.add.label(t,t)}))},menu:function(){W=e("<div />").addClass(S.menu).appendTo(I)}},search:function(e){e=e!==i?e:w.get.query(),w.verbose("Searching for query",e),w.filter(e)},select:{firstUnfiltered:function(){w.verbose("Selecting first non-filtered element"),w.remove.selectedItem(),B.not(D.unselectable).eq(0).addClass(S.selected)},nextAvailable:function(e){e=e.eq(0);var t=e.nextAll(D.item).not(D.unselectable).eq(0),n=e.prevAll(D.item).not(D.unselectable).eq(0),i=t.length>0;i?(w.verbose("Moving selection to",t),t.addClass(S.selected)):(w.verbose("Moving selection to",n),n.addClass(S.selected))}},setup:{api:function(){var e={debug:k.debug,on:!1};w.verbose("First request, initializing API"),I.api(e)},layout:function(){I.is("select")&&(w.setup.select(),w.setup.returnedObject()),w.has.menu()||w.create.menu(),w.is.search()&&!w.has.search()&&(w.verbose("Adding search input"),V=e("<input />").addClass(S.search).prop("autocomplete","off").insertBefore(N)),k.allowTab&&w.set.tabbable()},select:function(){var t=w.get.selectValues();w.debug("Dropdown initialized on a select",t),I.is("select")&&(H=I),H.parent(D.dropdown).length>0?(w.debug("UI dropdown already exists. Creating dropdown menu only"),I=H.closest(D.dropdown),w.has.menu()||w.create.menu(),W=I.children(D.menu),w.setup.menu(t)):(w.debug("Creating entire dropdown from select"),I=e("<div />").attr("class",H.attr("class")).addClass(S.selection).addClass(S.dropdown).html(q.dropdown(t)).insertBefore(H),H.hasClass(S.multiple)&&H.prop("multiple")===!1&&(w.error(O.missingMultiple),H.prop("multiple",!0)),H.is("[multiple]")&&w.set.multiple(),H.prop("disabled")&&(w.debug("Disabling dropdown"),I.addClass(S.disabled)),H.removeAttr("class").detach().prependTo(I)),w.refresh()},menu:function(e){W.html(q.menu(e,A)),B=W.find(D.item)},reference:function(){w.debug("Dropdown behavior was called on select, replacing with closest dropdown"),I=I.parent(D.dropdown),w.refresh(),w.setup.returnedObject(),f&&(Z=w,w.invoke(m))},returnedObject:function(){var e=r.slice(0,p),t=r.slice(p+1);r=e.add(I).add(t)}},refresh:function(){w.refreshSelectors(),w.refreshData()},refreshSelectors:function(){w.verbose("Refreshing selector cache"),N=I.find(D.text),V=I.find(D.search),H=I.find(D.input),M=I.find(D.icon),U=I.prev().find(D.text).length>0?I.prev().find(D.text):I.prev(),W=I.children(D.menu),B=W.find(D.item)},refreshData:function(){w.verbose("Refreshing cached metadata"),B.removeData(E.text).removeData(E.value),I.removeData(E.defaultText).removeData(E.defaultValue).removeData(E.placeholderText)},toggle:function(){w.verbose("Toggling menu visibility"),w.is.active()?w.hide():w.show()},show:function(t){if(t=e.isFunction(t)?t:function(){},w.can.show()&&!w.is.active()){if(w.debug("Showing dropdown"),w.is.multiple()&&!w.has.search()&&w.is.allFiltered())return!0;!w.has.message()||w.has.maxSelections()||w.has.allResultsFiltered()||w.remove.message(),k.onShow.call(Y)!==!1&&w.animate.show(function(){w.can.click()&&w.bind.intent(),w.set.visible(),t.call(Y)})}},hide:function(t){t=e.isFunction(t)?t:function(){},w.is.active()&&(w.debug("Hiding dropdown"),k.onHide.call(Y)!==!1&&w.animate.hide(function(){w.remove.visible(),t.call(Y)}))},hideOthers:function(){w.verbose("Finding other dropdowns to hide"),r.not(I).has(D.menu+"."+S.visible).dropdown("hide")},hideMenu:function(){w.verbose("Hiding menu instantaneously"),w.remove.active(),w.remove.visible(),W.transition("hide")},hideSubMenus:function(){var e=W.children(D.item).find(D.menu);w.verbose("Hiding sub menus",e),e.transition("hide")},bind:{events:function(){l&&w.bind.touchEvents(),w.bind.keyboardEvents(),w.bind.inputEvents(),w.bind.mouseEvents()},touchEvents:function(){w.debug("Touch device detected binding additional touch events"),w.is.searchSelection()||w.is.single()&&I.on("touchstart"+j,w.event.test.toggle),W.on("touchstart"+j,D.item,w.event.item.mouseenter)},keyboardEvents:function(){w.verbose("Binding keyboard events"),I.on("keydown"+j,w.event.keydown),w.has.search()&&I.on(w.get.inputEvent()+j,D.search,w.event.input),w.is.multiple()&&s.on("keydown"+b,w.event.document.keydown)},inputEvents:function(){w.verbose("Binding input change events"),I.on("change"+j,D.input,w.event.change)},mouseEvents:function(){w.verbose("Binding mouse events"),w.is.multiple()&&I.on("click"+j,D.label,w.event.label.click).on("click"+j,D.remove,w.event.remove.click),w.is.searchSelection()?(I.on("mousedown"+j,D.menu,w.event.menu.mousedown).on("mouseup"+j,D.menu,w.event.menu.mouseup).on("click"+j,D.icon,w.event.icon.click).on("click"+j,D.search,w.show).on("focus"+j,D.search,w.event.search.focus).on("blur"+j,D.search,w.event.search.blur).on("click"+j,D.text,w.event.text.focus),w.is.multiple()&&I.on("click"+j,w.event.click)):("click"==k.on?I.on("click"+j,D.icon,w.event.icon.click).on("click"+j,w.event.test.toggle):"hover"==k.on?I.on("mouseenter"+j,w.delay.show).on("mouseleave"+j,w.delay.hide):I.on(k.on+j,w.toggle),I.on("mousedown"+j,w.event.mousedown).on("mouseup"+j,w.event.mouseup).on("focus"+j,w.event.focus).on("blur"+j,w.event.blur)),W.on("mouseenter"+j,D.item,w.event.item.mouseenter).on("mouseleave"+j,D.item,w.event.item.mouseleave).on("click"+j,D.item,w.event.item.click)},intent:function(){w.verbose("Binding hide intent event to document"),l&&s.on("touchstart"+b,w.event.test.touch).on("touchmove"+b,w.event.test.touch),s.on("click"+b,w.event.test.hide)}},unbind:{intent:function(){w.verbose("Removing hide intent event from document"),l&&s.off("touchstart"+b).off("touchmove"+b),s.off("click"+b)}},filter:function(e){var t=e!==i?e:w.get.query(),n=function(){w.is.multiple()&&w.filterActive(),w.select.firstUnfiltered(),w.has.allResultsFiltered()?k.onNoResults.call(Y,t)?k.allowAdditions||(w.verbose("All items filtered, showing message",t),w.add.message(T.noResults)):(w.verbose("All items filtered, hiding dropdown",t),w.hideMenu()):w.remove.message(),k.allowAdditions&&w.add.userSuggestion(e),w.is.searchSelection()&&w.can.show()&&w.is.focusedOnSearch()&&w.show()};k.useLabels&&w.has.maxSelections()||(k.apiSettings?w.can.useAPI()?w.queryRemote(t,function(){n()}):w.error(O.noAPI):(w.filterItems(t),n()))},queryRemote:function(t,n){var i={errorDuration:!1,throttle:k.throttle,urlData:{query:t},onError:function(){w.add.message(T.serverError),n()},onFailure:function(){w.add.message(T.serverError),n()},onSuccess:function(e){w.remove.message(),w.setup.menu({values:e[A.remoteValues]}),n()}};I.api("get request")||w.setup.api(),i=e.extend(!0,{},i,k.apiSettings),I.api("setting",i).api("query")},filterItems:function(t){var n=t!==i?t:w.get.query(),o=null,a=w.escape.regExp(n),r=new RegExp("^"+a,"igm");w.has.query()&&(o=[],w.verbose("Searching for matching values",n),B.each(function(){var t,i,a=e(this);if("both"==k.match||"text"==k.match){if(t=String(w.get.choiceText(a,!1)),-1!==t.search(r))return o.push(this),!0;if(k.fullTextSearch&&w.fuzzySearch(n,t))return o.push(this),!0}if("both"==k.match||"value"==k.match){if(i=String(w.get.choiceValue(a,t)),-1!==i.search(r))return o.push(this),!0;if(k.fullTextSearch&&w.fuzzySearch(n,i))return o.push(this),!0}})),w.debug("Showing only matched items",n),w.remove.filteredItem(),o&&B.not(o).addClass(S.filtered)},fuzzySearch:function(e,t){var n=t.length,i=e.length;if(e=e.toLowerCase(),t=t.toLowerCase(),i>n)return!1;if(i===n)return e===t;e:for(var o=0,a=0;i>o;o++){for(var r=e.charCodeAt(o);n>a;)if(t.charCodeAt(a++)===r)continue e;return!1}return!0},filterActive:function(){k.useLabels&&B.filter("."+S.active).addClass(S.filtered)},focusSearch:function(){w.is.search()&&!w.is.focusedOnSearch()&&V[0].focus()},forceSelection:function(){var e=B.not(S.filtered).filter("."+S.selected).eq(0),t=B.not(S.filtered).filter("."+S.active).eq(0),n=e.length>0?e:t,i=n.size()>0;if(w.has.query()){if(i)return w.debug("Forcing partial selection to selected item",n),void w.event.item.click.call(n);w.remove.searchTerm()}w.hide()},event:{change:function(){$||(w.debug("Input changed, updating selection"),w.set.selected())},focus:function(){k.showOnFocus&&!Q&&w.is.hidden()&&!h&&w.show()},click:function(t){var n=e(t.target);n.is(I)&&!w.is.focusedOnSearch()&&w.focusSearch()},blur:function(e){h=n.activeElement===this,Q||h||(w.remove.activeLabel(),w.hide())},mousedown:function(){Q=!0},mouseup:function(){Q=!1},search:{focus:function(){Q=!0,w.is.multiple()&&w.remove.activeLabel(),k.showOnFocus&&(w.search(),w.show())},blur:function(e){h=n.activeElement===this,X||h?h&&k.forceSelection&&w.forceSelection():w.is.multiple()?(w.remove.activeLabel(),w.hide()):k.forceSelection?w.forceSelection():w.hide()}},icon:{click:function(e){w.toggle(),e.stopPropagation()}},text:{focus:function(e){Q=!0,w.focusSearch()}},input:function(e){(w.is.multiple()||w.is.searchSelection())&&w.set.filtered(),clearTimeout(w.timer),w.timer=setTimeout(w.search,k.delay.search)},label:{click:function(t){var n=e(this),i=I.find(D.label),o=i.filter("."+S.active),a=n.nextAll("."+S.active),r=n.prevAll("."+S.active),s=a.length>0?n.nextUntil(a).add(o).add(n):n.prevUntil(r).add(o).add(n);t.shiftKey?(o.removeClass(S.active),s.addClass(S.active)):t.ctrlKey?n.toggleClass(S.active):(o.removeClass(S.active),n.addClass(S.active)),k.onLabelSelect.apply(this,i.filter("."+S.active))}},remove:{click:function(){var t=e(this).parent();t.hasClass(S.active)?w.remove.activeLabels():w.remove.activeLabels(t)}},test:{toggle:function(e){var t=w.is.multiple()?w.show:w.toggle;w.determine.eventOnElement(e,t)&&e.preventDefault()},touch:function(e){w.determine.eventOnElement(e,function(){"touchstart"==e.type?w.timer=setTimeout(function(){w.hide()},k.delay.touch):"touchmove"==e.type&&clearTimeout(w.timer)}),e.stopPropagation()},hide:function(e){w.determine.eventInModule(e,w.hide)}},menu:{mousedown:function(){X=!0},mouseup:function(){X=!1}},item:{mouseenter:function(t){var n=e(this).children(D.menu),i=e(this).siblings(D.item).children(D.menu);n.length>0&&(clearTimeout(w.itemTimer),w.itemTimer=setTimeout(function(){w.verbose("Showing sub-menu",n),e.each(i,function(){w.animate.hide(!1,e(this))}),w.animate.show(!1,n)},k.delay.show),t.preventDefault())},mouseleave:function(t){var n=e(this).children(D.menu);n.length>0&&(clearTimeout(w.itemTimer),w.itemTimer=setTimeout(function(){w.verbose("Hiding sub-menu",n),w.animate.hide(!1,n)},k.delay.hide))},touchend:function(){},click:function(t){var n=e(this),i=e(t?t.target:""),o=n.find(D.menu),a=w.get.choiceText(n),r=w.get.choiceValue(n,a),s=o.length>0,c=o.find(i).length>0;c||s&&!k.allowCategorySelection||(k.useLabels||(w.remove.filteredItem(),w.remove.searchTerm(),w.set.scrollPosition(n)),w.determine.selectAction.call(this,a,r))}},document:{keydown:function(e){var t=e.which,n=w.is.inObject(t,R);if(n){var i=I.find(D.label),o=i.filter("."+S.active),a=(o.data(E.value),i.index(o)),r=i.length,s=o.length>0,c=o.length>1,l=0===a,u=a+1==r,d=w.is.searchSelection(),m=w.is.focusedOnSearch(),f=w.is.focused(),g=m&&0===w.get.caretPosition();if(d&&!s&&!m)return;t==R.leftArrow?!f&&!g||s?s&&(e.shiftKey?w.verbose("Adding previous label to selection"):(w.verbose("Selecting previous label"),i.removeClass(S.active)),l&&!c?o.addClass(S.active):o.prev(D.siblingLabel).addClass(S.active).end(), +e.preventDefault()):(w.verbose("Selecting previous label"),i.last().addClass(S.active)):t==R.rightArrow?(f&&!s&&i.first().addClass(S.active),s&&(e.shiftKey?w.verbose("Adding next label to selection"):(w.verbose("Selecting next label"),i.removeClass(S.active)),u?d?m?i.removeClass(S.active):w.focusSearch():c?o.next(D.siblingLabel).addClass(S.active):o.addClass(S.active):o.next(D.siblingLabel).addClass(S.active),e.preventDefault())):t==R.deleteKey||t==R.backspace?s?(w.verbose("Removing active labels"),u&&d&&!m&&w.focusSearch(),o.last().next(D.siblingLabel).addClass(S.active),w.remove.activeLabels(o),e.preventDefault()):g&&!s&&t==R.backspace&&(w.verbose("Removing last label on input backspace"),o=i.last().addClass(S.active),w.remove.activeLabels(o)):o.removeClass(S.active)}}},keydown:function(e){var t=e.which,n=w.is.inObject(t,R);if(n){var i,o,a=B.not(D.unselectable).filter("."+S.selected).eq(0),r=W.children("."+S.active).eq(0),s=a.length>0?a:r,c=s.length>0?s.siblings(":not(."+S.filtered+")").andSelf():W.children(":not(."+S.filtered+")"),l=s.children(D.menu),u=s.closest(D.menu),d=u.hasClass(S.visible)||u.hasClass(S.animating)||u.parent(D.menu).length>0,m=l.length>0,f=s.length>0,g=s.not(D.unselectable).length>0,p=t==R.delimiter&&k.allowAdditions&&w.is.multiple();if(w.is.visible()){if((t==R.enter||p)&&(t==R.enter&&f&&m&&!k.allowCategorySelection?(w.verbose("Pressed enter on unselectable category, opening sub menu"),t=R.rightArrow):g&&(w.verbose("Selecting item from keyboard shortcut",s),w.event.item.click.call(s,e),w.is.searchSelection()&&w.remove.searchTerm()),e.preventDefault()),t==R.leftArrow&&(o=u[0]!==W[0],o&&(w.verbose("Left key pressed, closing sub-menu"),w.animate.hide(!1,u),s.removeClass(S.selected),u.closest(D.item).addClass(S.selected),e.preventDefault())),t==R.rightArrow&&m&&(w.verbose("Right key pressed, opening sub-menu"),w.animate.show(!1,l),s.removeClass(S.selected),l.find(D.item).eq(0).addClass(S.selected),e.preventDefault()),t==R.upArrow){if(i=f&&d?s.prevAll(D.item+":not("+D.unselectable+")").eq(0):B.eq(0),c.index(i)<0)return w.verbose("Up key pressed but reached top of current menu"),void e.preventDefault();w.verbose("Up key pressed, changing active item"),s.removeClass(S.selected),i.addClass(S.selected),w.set.scrollPosition(i),e.preventDefault()}if(t==R.downArrow){if(i=f&&d?i=s.nextAll(D.item+":not("+D.unselectable+")").eq(0):B.eq(0),0===i.length)return w.verbose("Down key pressed but reached bottom of current menu"),void e.preventDefault();w.verbose("Down key pressed, changing active item"),B.removeClass(S.selected),i.addClass(S.selected),w.set.scrollPosition(i),e.preventDefault()}t==R.pageUp&&(w.scrollPage("up"),e.preventDefault()),t==R.pageDown&&(w.scrollPage("down"),e.preventDefault()),t==R.escape&&(w.verbose("Escape key pressed, closing dropdown"),w.hide())}else p&&e.preventDefault(),t==R.downArrow&&(w.verbose("Down key pressed, showing dropdown"),w.show(),e.preventDefault())}else w.is.selection()&&!w.is.search()&&w.set.selectedLetter(String.fromCharCode(t))}},trigger:{change:function(){var e=n.createEvent("HTMLEvents"),t=H[0];t&&(w.verbose("Triggering native change event"),e.initEvent("change",!0,!1),t.dispatchEvent(e))}},determine:{selectAction:function(t,n){w.verbose("Determining action",k.action),e.isFunction(w.action[k.action])?(w.verbose("Triggering preset action",k.action,t,n),w.action[k.action].call(this,t,n)):e.isFunction(k.action)?(w.verbose("Triggering user action",k.action,t,n),k.action.call(this,t,n)):w.error(O.action,k.action)},eventInModule:function(t,i){var o=e(t.target),a=o.closest(n.documentElement).length>0,r=o.closest(I).length>0;return i=e.isFunction(i)?i:function(){},a&&!r?(w.verbose("Triggering event",i),i(),!0):(w.verbose("Event occurred in dropdown, canceling callback"),!1)},eventOnElement:function(t,n){var i=e(t.target),o=i.closest(D.siblingLabel),a=0===I.find(o).length,r=0===i.closest(W).length;return n=e.isFunction(n)?n:function(){},a&&r?(w.verbose("Triggering event",n),n(),!0):(w.verbose("Event occurred in dropdown menu, canceling callback"),!1)}},action:{nothing:function(){},activate:function(t,n){if(n=n!==i?n:t,w.can.activate(e(this))){if(w.set.selected(n,e(this)),w.is.multiple()&&!w.is.allFiltered())return;w.hideAndClear()}},select:function(e,t){w.action.activate.call(this)},combo:function(t,n){n=n!==i?n:t,w.set.selected(n,e(this)),w.hideAndClear()},hide:function(e,t){w.set.value(t),w.hideAndClear()}},get:{id:function(){return y},defaultText:function(){return I.data(E.defaultText)},defaultValue:function(){return I.data(E.defaultValue)},placeholderText:function(){return I.data(E.placeholderText)||""},text:function(){return N.text()},query:function(){return e.trim(V.val())},searchWidth:function(e){return e*k.glyphWidth+"em"},selectionCount:function(){var t,n=w.get.values();return t=w.is.multiple()?e.isArray(n)?n.length:0:""!==w.get.value()?1:0},transition:function(e){return"auto"==k.transition?w.is.upward(e)?"slide up":"slide down":k.transition},userValues:function(){var t=w.get.values();return t?(t=e.isArray(t)?t:[t],e.grep(t,function(e){return w.get.item(e)===!1})):!1},uniqueArray:function(t){return e.grep(t,function(n,i){return e.inArray(n,t)===i})},caretPosition:function(){var e,t,i=V.get(0);return"selectionStart"in i?i.selectionStart:n.selection?(i.focus(),e=n.selection.createRange(),t=e.text.length,e.moveStart("character",-i.value.length),e.text.length-t):void 0},value:function(){var t=H.length>0?H.val():I.data(E.value);return e.isArray(t)&&1===t.length&&""===t[0]?"":t},values:function(){var e=w.get.value();return""===e?"":!w.has.selectInput()&&w.is.multiple()?"string"==typeof e?e.split(k.delimiter):"":e},remoteValues:function(){var t=w.get.values(),n=!1;return t&&("string"==typeof t&&(t=[t]),n={},e.each(t,function(e,t){var i=w.read.remoteData(t);w.verbose("Restoring value from session data",i,t),n[t]=i?i:t})),n},choiceText:function(t,n){return n=n!==i?n:k.preserveHTML,t?(t.find(D.menu).length>0&&(w.verbose("Retreiving text of element with sub-menu"),t=t.clone(),t.find(D.menu).remove(),t.find(D.menuIcon).remove()),t.data(E.text)!==i?t.data(E.text):n?e.trim(t.html()):e.trim(t.text())):void 0},choiceValue:function(t,n){return n=n||w.get.choiceText(t),t?t.data(E.value)!==i?String(t.data(E.value)):"string"==typeof n?e.trim(n.toLowerCase()):String(n):!1},inputEvent:function(){var e=V[0];return e?e.oninput!==i?"input":e.onpropertychange!==i?"propertychange":"keyup":!1},selectValues:function(){var t={};return t.values=[],I.find("option").each(function(){var n=e(this),o=n.html(),a=n.attr("disabled"),r=n.attr("value")!==i?n.attr("value"):o;"auto"===k.placeholder&&""===r?t.placeholder=o:t.values.push({name:o,value:r,disabled:a})}),k.placeholder&&"auto"!==k.placeholder&&(w.debug("Setting placeholder value to",k.placeholder),t.placeholder=k.placeholder),k.sortSelect?(t.values.sort(function(e,t){return e.name>t.name?1:-1}),w.debug("Retrieved and sorted values from select",t)):w.debug("Retreived values from select",t),t},activeItem:function(){return B.filter("."+S.active)},selectedItem:function(){var e=B.not(D.unselectable).filter("."+S.selected);return e.length>0?e:B.eq(0)},itemWithAdditions:function(e){var t=w.get.item(e),n=w.create.userChoice(e),i=n&&n.length>0;return i&&(t=t.length>0?t.add(n):n),t},item:function(t,n){var o,a,r=!1;return t=t!==i?t:w.get.values()!==i?w.get.values():w.get.text(),o=a?t.length>0:t!==i&&null!==t,a=w.is.multiple()&&e.isArray(t),n=""===t||0===t?!0:n||!1,o&&B.each(function(){var o=e(this),s=w.get.choiceText(o),c=w.get.choiceValue(o,s);if(null!==c&&c!==i)if(a)(-1!==e.inArray(String(c),t)||-1!==e.inArray(s,t))&&(r=r?r.add(o):o);else if(n){if(w.verbose("Ambiguous dropdown value using strict type check",o,t),c===t||s===t)return r=o,!0}else if(String(c)==String(t)||s==t)return w.verbose("Found select item by value",c,t),r=o,!0}),r}},check:{maxSelections:function(e){return k.maxSelections?(e=e!==i?e:w.get.selectionCount(),e>=k.maxSelections?(w.debug("Maximum selection count reached"),k.useLabels&&(B.addClass(S.filtered),w.add.message(T.maxSelections)),!0):(w.verbose("No longer at maximum selection count"),w.remove.message(),w.remove.filteredItem(),w.is.searchSelection()&&w.filterItems(),!1)):!0}},restore:{defaults:function(){w.clear(),w.restore.defaultText(),w.restore.defaultValue()},defaultText:function(){var e=w.get.defaultText(),t=w.get.placeholderText;e===t?(w.debug("Restoring default placeholder text",e),w.set.placeholderText(e)):(w.debug("Restoring default text",e),w.set.text(e))},defaultValue:function(){var e=w.get.defaultValue();e!==i&&(w.debug("Restoring default value",e),""!==e?(w.set.value(e),w.set.selected()):(w.remove.activeItem(),w.remove.selectedItem()))},labels:function(){k.allowAdditions&&(k.useLabels||(w.error(O.labels),k.useLabels=!0),w.debug("Restoring selected values"),w.create.userLabels()),w.check.maxSelections()},selected:function(){w.restore.values(),w.is.multiple()?(w.debug("Restoring previously selected values and labels"),w.restore.labels()):w.debug("Restoring previously selected values")},values:function(){w.set.initialLoad(),k.apiSettings?k.saveRemoteData?w.restore.remoteValues():w.clearValue():w.set.selected(),w.remove.initialLoad()},remoteValues:function(){var t=w.get.remoteValues();w.debug("Recreating selected from session data",t),t&&(w.is.single()?e.each(t,function(e,t){w.set.text(t)}):e.each(t,function(e,t){w.add.label(e,t)}))}},read:{remoteData:function(e){var n;return t.Storage===i?void w.error(O.noStorage):(n=sessionStorage.getItem(e),n!==i?n:!1)}},save:{defaults:function(){w.save.defaultText(),w.save.placeholderText(),w.save.defaultValue()},defaultValue:function(){var e=w.get.value();w.verbose("Saving default value as",e),I.data(E.defaultValue,e)},defaultText:function(){var e=w.get.text();w.verbose("Saving default text as",e),I.data(E.defaultText,e)},placeholderText:function(){var e;k.placeholder!==!1&&N.hasClass(S.placeholder)&&(e=w.get.text(),w.verbose("Saving placeholder text as",e),I.data(E.placeholderText,e))},remoteData:function(e,n){return t.Storage===i?void w.error(O.noStorage):(w.verbose("Saving remote data to session storage",n,e),void sessionStorage.setItem(n,e))}},clear:function(){w.is.multiple()?w.remove.labels():(w.remove.activeItem(),w.remove.selectedItem()),w.set.placeholderText(),w.clearValue()},clearValue:function(){w.set.value("")},scrollPage:function(e,t){var n,i,o,a=t||w.get.selectedItem(),r=a.closest(D.menu),s=r.outerHeight(),c=r.scrollTop(),l=B.eq(0).outerHeight(),u=Math.floor(s/l),d=(r.prop("scrollHeight"),"up"==e?c-l*u:c+l*u),m=B.not(D.unselectable);o="up"==e?m.index(a)-u:m.index(a)+u,n="up"==e?o>=0:o<m.length,i=n?m.eq(o):"up"==e?m.first():m.last(),i.length>0&&(w.debug("Scrolling page",e,i),a.removeClass(S.selected),i.addClass(S.selected),r.scrollTop(d))},set:{filtered:function(){var e=w.is.multiple(),t=w.is.searchSelection(),n=e&&t,i=t?w.get.query():"",o="string"==typeof i&&i.length>0,a=w.get.searchWidth(i.length),r=""!==i;e&&o&&(w.verbose("Adjusting input width",a,k.glyphWidth),V.css("width",a)),o||n&&r?(w.verbose("Hiding placeholder text"),N.addClass(S.filtered)):(!e||n&&!r)&&(w.verbose("Showing placeholder text"),N.removeClass(S.filtered))},loading:function(){I.addClass(S.loading)},placeholderText:function(e){e=e||w.get.placeholderText(),w.debug("Setting placeholder text",e),w.set.text(e),N.addClass(S.placeholder)},tabbable:function(){w.has.search()?(w.debug("Added tabindex to searchable dropdown"),V.val("").attr("tabindex",0),W.attr("tabindex",-1)):(w.debug("Added tabindex to dropdown"),I.attr("tabindex")===i&&(I.attr("tabindex",0),W.attr("tabindex",-1)))},initialLoad:function(){w.verbose("Setting initial load"),v=!0},activeItem:function(e){k.allowAdditions&&e.filter(D.addition).length>0?e.addClass(S.filtered):e.addClass(S.active)},scrollPosition:function(e,t){var n,o,a,r,s,c,l,u,d,m=5;e=e||w.get.selectedItem(),n=e.closest(D.menu),o=e&&e.length>0,t=t!==i?t:!1,e&&n.length>0&&o&&(r=e.position().top,n.addClass(S.loading),c=n.scrollTop(),s=n.offset().top,r=e.offset().top,a=c-s+r,t||(l=n.height(),d=a+m>c+l,u=c>a-m),w.debug("Scrolling to active item",a),(t||u||d)&&n.scrollTop(a),n.removeClass(S.loading))},text:function(e){"select"!==k.action&&("combo"==k.action?(w.debug("Changing combo button text",e,U),k.preserveHTML?U.html(e):U.text(e)):(e!==w.get.placeholderText()&&N.removeClass(S.placeholder),w.debug("Changing text",e,N),N.removeClass(S.filtered),k.preserveHTML?N.html(e):N.text(e)))},selectedLetter:function(t){var n,i=B.filter("."+S.selected),o=i.length>0&&w.has.firstLetter(i,t),a=!1;o&&(n=i.nextAll(B).eq(0),w.has.firstLetter(n,t)&&(a=n)),a||B.each(function(){return w.has.firstLetter(e(this),t)?(a=e(this),!1):void 0}),a&&(w.verbose("Scrolling to next value with letter",t),w.set.scrollPosition(a),i.removeClass(S.selected),a.addClass(S.selected))},direction:function(e){"auto"==k.direction?w.is.onScreen(e)?w.remove.upward(e):w.set.upward(e):"upward"==k.direction&&w.set.upward(e)},upward:function(e){var t=e||I;t.addClass(S.upward)},value:function(e,t,n){var o=H.length>0,a=(!w.has.value(e),w.get.values()),r=e!==i?String(e):e;if(o){if(r==a&&(w.verbose("Skipping value update already same value",e,a),!w.is.initialLoad()))return;w.is.single()&&w.has.selectInput()&&w.can.extendSelect()&&(w.debug("Adding user option",e),w.add.optionValue(e)),w.debug("Updating input value",e,a),$=!0,H.val(e),k.fireOnInit===!1&&w.is.initialLoad()?w.debug("Input native change event ignored on initial load"):w.trigger.change(),$=!1}else w.verbose("Storing value in metadata",e,H),e!==a&&I.data(E.value,r);k.fireOnInit===!1&&w.is.initialLoad()?w.verbose("No callback on initial load",k.onChange):k.onChange.call(Y,e,t,n)},active:function(){I.addClass(S.active)},multiple:function(){I.addClass(S.multiple)},visible:function(){I.addClass(S.visible)},exactly:function(e,t){w.debug("Setting selected to exact values"),w.clear(),w.set.selected(e,t)},selected:function(t,n){var i=w.is.multiple();n=k.allowAdditions?n||w.get.itemWithAdditions(t):n||w.get.item(t),n&&(w.debug("Setting selected menu item to",n),w.is.single()?(w.remove.activeItem(),w.remove.selectedItem()):k.useLabels&&w.remove.selectedItem(),n.each(function(){var t=e(this),o=w.get.choiceText(t),a=w.get.choiceValue(t,o),r=t.hasClass(S.filtered),s=t.hasClass(S.active),c=t.hasClass(S.addition),l=i&&1==n.length;i?!s||c?(k.apiSettings&&k.saveRemoteData&&w.save.remoteData(o,a),k.useLabels?(w.add.value(a,o,t),w.add.label(a,o,l),w.set.activeItem(t),w.filterActive(),w.select.nextAvailable(n)):(w.add.value(a,o,t),w.set.text(w.add.variables(T.count)),w.set.activeItem(t))):r||(w.debug("Selected active value, removing label"),w.remove.selected(a)):(k.apiSettings&&k.saveRemoteData&&w.save.remoteData(o,a),w.set.text(o),w.set.value(a,o,t),t.addClass(S.active).addClass(S.selected))}))}},add:{label:function(t,n,i){var o,a=w.is.searchSelection()?V:N;return o=e("<a />").addClass(S.label).attr("data-value",t).html(q.label(t,n)),o=k.onLabelCreate.call(o,t,n),w.has.label(t)?void w.debug("Label already exists, skipping",t):(k.label.variation&&o.addClass(k.label.variation),void(i===!0?(w.debug("Animating in label",o),o.addClass(S.hidden).insertBefore(a).transition(k.label.transition,k.label.duration)):(w.debug("Adding selection label",o),o.insertBefore(a))))},message:function(t){var n=W.children(D.message),i=k.templates.message(w.add.variables(t));n.length>0?n.html(i):n=e("<div/>").html(i).addClass(S.message).appendTo(W)},optionValue:function(t){var n=H.find('option[value="'+t+'"]'),i=n.length>0;i||(x&&(x.disconnect(),w.verbose("Temporarily disconnecting mutation observer",t)),w.is.single()&&(w.verbose("Removing previous user addition"),H.find("option."+S.addition).remove()),e("<option/>").prop("value",t).addClass(S.addition).html(t).appendTo(H),w.verbose("Adding user addition as an <option>",t),x&&x.observe(H[0],{childList:!0,subtree:!0}))},userSuggestion:function(e){var t,n=W.children(D.addition),i=w.get.item(e),o=i&&i.not(D.addition).length,a=n.length>0;if(!k.useLabels||!w.has.maxSelections()){if(""===e||o)return void n.remove();B.removeClass(S.selected),a?(t=k.templates.addition(w.add.variables(T.addResult,e)),n.html(t).attr("data-"+E.value,e).attr("data-"+E.text,e).removeClass(S.filtered).addClass(S.selected),w.verbose("Replacing user suggestion with new value",n)):(n=w.create.userChoice(e),n.prependTo(W).addClass(S.selected),w.verbose("Adding item choice to menu corresponding with user choice addition",n))}},variables:function(e,t){var n,i,o=-1!==e.search("{count}"),a=-1!==e.search("{maxCount}"),r=-1!==e.search("{term}");return w.verbose("Adding templated variables to message",e),o&&(n=w.get.selectionCount(),e=e.replace("{count}",n)),a&&(n=w.get.selectionCount(),e=e.replace("{maxCount}",k.maxSelections)),r&&(i=t||w.get.query(),e=e.replace("{term}",i)),e},value:function(t,n,i){var o,a=w.get.values();return""===t?void w.debug("Cannot select blank values from multiselect"):(e.isArray(a)?(o=a.concat([t]),o=w.get.uniqueArray(o)):o=[t],w.has.selectInput()?w.can.extendSelect()&&(w.debug("Adding value to select",t,o,H),w.add.optionValue(t)):(o=o.join(k.delimiter),w.debug("Setting hidden input to delimited value",o,H)),k.fireOnInit===!1&&w.is.initialLoad()?w.verbose("Skipping onadd callback on initial load",k.onAdd):k.onAdd.call(Y,t,n,i),w.set.value(o,t,n,i),void w.check.maxSelections())}},remove:{active:function(){I.removeClass(S.active)},activeLabel:function(){I.find(D.label).removeClass(S.active)},loading:function(){I.removeClass(S.loading)},initialLoad:function(){v=!1},upward:function(e){var t=e||I;t.removeClass(S.upward)},visible:function(){I.removeClass(S.visible)},activeItem:function(){B.removeClass(S.active)},filteredItem:function(){k.useLabels&&w.has.maxSelections()||(k.useLabels&&w.is.multiple()?B.not("."+S.active).removeClass(S.filtered):B.removeClass(S.filtered))},optionValue:function(e){var t=H.find('option[value="'+e+'"]'),n=t.length>0;n&&t.hasClass(S.addition)&&(x&&(x.disconnect(),w.verbose("Temporarily disconnecting mutation observer",e)),t.remove(),w.verbose("Removing user addition as an <option>",e),x&&x.observe(H[0],{childList:!0,subtree:!0}))},message:function(){W.children(D.message).remove()},searchTerm:function(){w.verbose("Cleared search term"),V.val(""),w.set.filtered()},selected:function(t,n){return(n=k.allowAdditions?n||w.get.itemWithAdditions(t):n||w.get.item(t))?void n.each(function(){var t=e(this),n=w.get.choiceText(t),i=w.get.choiceValue(t,n);w.is.multiple()?k.useLabels?(w.remove.value(i,n,t),w.remove.label(i)):(w.remove.value(i,n,t),0===w.get.selectionCount()?w.set.placeholderText():w.set.text(w.add.variables(T.count))):w.remove.value(i,n,t),t.removeClass(S.filtered).removeClass(S.active),k.useLabels&&t.removeClass(S.selected)}):!1},selectedItem:function(){B.removeClass(S.selected)},value:function(e,t,n){var i,o=w.get.values();w.has.selectInput()?(w.verbose("Input is <select> removing selected option",e),i=w.remove.arrayValue(e,o),w.remove.optionValue(e)):(w.verbose("Removing from delimited values",e),i=w.remove.arrayValue(e,o),i=i.join(k.delimiter)),k.fireOnInit===!1&&w.is.initialLoad()?w.verbose("No callback on initial load",k.onRemove):k.onRemove.call(Y,e,t,n),w.set.value(i,t,n),w.check.maxSelections()},arrayValue:function(t,n){return e.isArray(n)||(n=[n]),n=e.grep(n,function(e){return t!=e}),w.verbose("Removed value from delimited string",t,n),n},label:function(e,t){var n=I.find(D.label),i=n.filter('[data-value="'+e+'"]');w.verbose("Removing label",i),i.remove()},activeLabels:function(e){e=e||I.find(D.label).filter("."+S.active),w.verbose("Removing active label selections",e),w.remove.labels(e)},labels:function(t){t=t||I.find(D.label),w.verbose("Removing labels",t),t.each(function(){var t=e(this),n=t.data(E.value),o=n!==i?String(n):n,a=w.is.userValue(o);return k.onLabelRemove.call(t,n)===!1?void w.debug("Label remove callback cancelled removal"):void(a?(w.remove.value(o),w.remove.label(o)):w.remove.selected(o))})},tabbable:function(){w.has.search()?(w.debug("Searchable dropdown initialized"),V.removeAttr("tabindex"),W.removeAttr("tabindex")):(w.debug("Simple selection dropdown initialized"),I.removeAttr("tabindex"),W.removeAttr("tabindex"))}},has:{search:function(){return V.length>0},selectInput:function(){return H.is("select")},firstLetter:function(e,t){var n,i;return e&&0!==e.length&&"string"==typeof t?(n=w.get.choiceText(e,!1),t=t.toLowerCase(),i=String(n).charAt(0).toLowerCase(),t==i):!1},input:function(){return H.length>0},items:function(){return B.length>0},menu:function(){return W.length>0},message:function(){return 0!==W.children(D.message).length},label:function(e){var t=I.find(D.label);return t.filter('[data-value="'+e+'"]').length>0},maxSelections:function(){return k.maxSelections&&w.get.selectionCount()>=k.maxSelections},allResultsFiltered:function(){return B.filter(D.unselectable).length===B.length},query:function(){return""!==w.get.query()},value:function(t){var n=w.get.values(),i=e.isArray(n)?n&&-1!==e.inArray(t,n):n==t;return i?!0:!1}},is:{active:function(){return I.hasClass(S.active)},alreadySetup:function(){return I.is("select")&&I.parent(D.dropdown).length>0&&0===I.prev().length},animating:function(e){return e?e.transition&&e.transition("is animating"):W.transition&&W.transition("is animating")},disabled:function(){return I.hasClass(S.disabled)},focused:function(){return n.activeElement===I[0]},focusedOnSearch:function(){return n.activeElement===V[0]},allFiltered:function(){return(w.is.multiple()||w.has.search())&&!w.has.message()&&w.has.allResultsFiltered()},hidden:function(e){return!w.is.visible(e)},initialLoad:function(){return v},onScreen:function(e){var t,n=e||W,i=!0,o={};return n.addClass(S.loading),t={context:{scrollTop:L.scrollTop(),height:L.outerHeight()},menu:{offset:n.offset(),height:n.outerHeight()}},o={above:t.context.scrollTop<=t.menu.offset.top-t.menu.height,below:t.context.scrollTop+t.context.height>=t.menu.offset.top+t.menu.height},o.below?(w.verbose("Dropdown can fit in context downward",o),i=!0):o.below||o.above?(w.verbose("Dropdown cannot fit below, opening upward",o),i=!1):(w.verbose("Dropdown cannot fit in either direction, favoring downward",o),i=!0),n.removeClass(S.loading),i},inObject:function(t,n){var i=!1;return e.each(n,function(e,n){return n==t?(i=!0,!0):void 0}),i},multiple:function(){return I.hasClass(S.multiple)},single:function(){return!w.is.multiple()},selectMutation:function(t){var n=!1;return e.each(t,function(t,i){return i.target&&e(i.target).is("select")?(n=!0,!0):void 0}),n},search:function(){return I.hasClass(S.search)},searchSelection:function(){return w.has.search()&&1===V.parent(D.dropdown).length},selection:function(){return I.hasClass(S.selection)},userValue:function(t){return-1!==e.inArray(t,w.get.userValues())},upward:function(e){var t=e||I;return t.hasClass(S.upward)},visible:function(e){return e?e.hasClass(S.visible):W.hasClass(S.visible)}},can:{activate:function(e){return k.useLabels?!0:w.has.maxSelections()?w.has.maxSelections()&&e.hasClass(S.active)?!0:!1:!0},click:function(){return l||"click"==k.on},extendSelect:function(){return k.allowAdditions||k.apiSettings},show:function(){return!w.is.disabled()&&(w.has.items()||w.has.message())},useAPI:function(){return e.fn.api!==i}},animate:{show:function(t,n){var o,a=n||W,r=n?function(){}:function(){w.hideSubMenus(),w.hideOthers(),w.set.active()};t=e.isFunction(t)?t:function(){},w.verbose("Doing menu show animation",a),w.set.direction(n),o=w.get.transition(n),w.is.selection()&&w.set.scrollPosition(w.get.selectedItem(),!0),(w.is.hidden(a)||w.is.animating(a))&&("none"==o?(r(),a.transition("show"),t.call(Y)):e.fn.transition!==i&&I.transition("is supported")?a.transition({animation:o+" in",debug:k.debug,verbose:k.verbose,duration:k.duration,queue:!0,onStart:r,onComplete:function(){t.call(Y)}}):w.error(O.noTransition,o))},hide:function(t,n){var o=n||W,a=(n?.9*k.duration:k.duration,n?function(){}:function(){w.can.click()&&w.unbind.intent(),w.remove.active()}),r=w.get.transition(n);t=e.isFunction(t)?t:function(){},(w.is.visible(o)||w.is.animating(o))&&(w.verbose("Doing menu hide animation",o),"none"==r?(a(),o.transition("hide"),t.call(Y)):e.fn.transition!==i&&I.transition("is supported")?o.transition({animation:r+" out",duration:k.duration,debug:k.debug,verbose:k.verbose,queue:!0,onStart:a,onComplete:function(){"auto"==k.direction&&w.remove.upward(n),t.call(Y)}}):w.error(O.transition))}},hideAndClear:function(){w.remove.searchTerm(),w.has.maxSelections()||(w.has.search()?w.hide(function(){w.remove.filteredItem()}):w.hide())},delay:{show:function(){w.verbose("Delaying show event to ensure user intent"),clearTimeout(w.timer),w.timer=setTimeout(w.show,k.delay.show)},hide:function(){w.verbose("Delaying hide event to ensure user intent"),clearTimeout(w.timer),w.timer=setTimeout(w.hide,k.delay.hide)}},escape:{regExp:function(e){return e=String(e),e.replace(F.escape,"\\$&")}},setting:function(t,n){if(w.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,k,t);else{if(n===i)return k[t];k[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,w,t);else{if(n===i)return w[t];w[t]=n}},debug:function(){k.debug&&(k.performance?w.performance.log(arguments):(w.debug=Function.prototype.bind.call(console.info,console,k.name+":"),w.debug.apply(console,arguments)))},verbose:function(){k.verbose&&k.debug&&(k.performance?w.performance.log(arguments):(w.verbose=Function.prototype.bind.call(console.info,console,k.name+":"),w.verbose.apply(console,arguments)))},error:function(){w.error=Function.prototype.bind.call(console.error,console,k.name+":"),w.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;k.performance&&(t=(new Date).getTime(),i=u||t,n=t-i,u=t,d.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:Y,"Execution Time":n})),clearTimeout(w.performance.timer),w.performance.timer=setTimeout(w.performance.display,500)},display:function(){var t=k.name+":",n=0;u=!1,clearTimeout(w.performance.timer),e.each(d,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",c&&(t+=" '"+c+"'"),(console.group!==i||console.table!==i)&&d.length>0&&(console.groupCollapsed(t),console.table?console.table(d):e.each(d,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),d=[]}},invoke:function(t,n,o){var r,s,c,l=Z;return n=n||g,o=Y||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(w.error(O.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},f?(Z===i&&w.initialize(),w.invoke(m)):(Z!==i&&Z.invoke("destroy"),w.initialize())}),a!==i?a:r},e.fn.dropdown.settings={debug:!1,verbose:!1,performance:!0,on:"click",action:"activate",apiSettings:!1,saveRemoteData:!0,throttle:200,context:t,direction:"auto",keepOnScreen:!0,match:"both",fullTextSearch:!1,placeholder:"auto",preserveHTML:!0,sortSelect:!1,forceSelection:!0,allowAdditions:!1,maxSelections:!1,useLabels:!0,delimiter:",",showOnFocus:!0,allowTab:!0,allowCategorySelection:!1,fireOnInit:!1,transition:"auto",duration:200,glyphWidth:1.0714,label:{transition:"scale",duration:200,variation:!1},delay:{hide:300,show:200,search:20,touch:50},onChange:function(e,t,n){},onAdd:function(e,t,n){},onRemove:function(e,t,n){},onLabelSelect:function(e){},onLabelCreate:function(t,n){return e(this)},onLabelRemove:function(e){return!0},onNoResults:function(e){return!0},onShow:function(){},onHide:function(){},name:"Dropdown",namespace:"dropdown",message:{addResult:"Add <b>{term}</b>",count:"{count} selected",maxSelections:"Max {maxCount} selections",noResults:"No results found.",serverError:"There was an error contacting the server"},error:{action:"You called a dropdown action that was not defined",alreadySetup:"Once a select has been initialized behaviors must be called on the created ui dropdown",labels:"Allowing user additions currently requires the use of labels.",missingMultiple:"<select> requires multiple property to be set to correctly preserve multiple values",method:"The method you called is not defined.",noAPI:"The API module is required to load resources remotely",noStorage:"Saving remote data requires session storage",noTransition:"This module requires ui transitions <https://github.com/Semantic-Org/UI-Transition>"},regExp:{escape:/[-[\]{}()*+?.,\\^$|#\s]/g},metadata:{defaultText:"defaultText",defaultValue:"defaultValue",placeholderText:"placeholder",text:"text",value:"value"},fields:{remoteValues:"results",values:"values",name:"name",value:"value"},keys:{backspace:8,delimiter:188,deleteKey:46,enter:13,escape:27,pageUp:33,pageDown:34,leftArrow:37,upArrow:38,rightArrow:39,downArrow:40},selector:{addition:".addition",dropdown:".ui.dropdown",icon:"> .dropdown.icon",input:'> input[type="hidden"], > select',item:".item",label:"> .label",remove:"> .label > .delete.icon",siblingLabel:".label",menu:".menu",message:".message",menuIcon:".dropdown.icon",search:"input.search, .menu > .search > input",text:"> .text:not(.icon)",unselectable:".disabled, .filtered"},className:{active:"active",addition:"addition",animating:"animating",disabled:"disabled",dropdown:"ui dropdown",filtered:"filtered",hidden:"hidden transition",item:"item",label:"ui label",loading:"loading",menu:"menu",message:"message",multiple:"multiple",placeholder:"default",search:"search",selected:"selected",selection:"selection",upward:"upward",visible:"visible"}},e.fn.dropdown.settings.templates={dropdown:function(t){var n=t.placeholder||!1,i=(t.values||{},"");return i+='<i class="dropdown icon"></i>',i+=t.placeholder?'<div class="default text">'+n+"</div>":'<div class="text"></div>',i+='<div class="menu">',e.each(t.values,function(e,t){i+=t.disabled?'<div class="disabled item" data-value="'+t.value+'">'+t.name+"</div>":'<div class="item" data-value="'+t.value+'">'+t.name+"</div>"}),i+="</div>"},menu:function(t,n){var i=t[n.values]||{},o="";return e.each(i,function(e,t){o+='<div class="item" data-value="'+t[n.value]+'">'+t[n.name]+"</div>"}),o},label:function(e,t){return t+'<i class="delete icon"></i>'},message:function(e){return e},addition:function(e){return e}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.embed=function(n){var o,a=e(this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1);return a.each(function(){var m,f=e.isPlainObject(n)?e.extend(!0,{},e.fn.embed.settings,n):e.extend({},e.fn.embed.settings),g=f.selector,p=f.className,v=f.sources,h=f.error,b=f.metadata,y=f.namespace,x=f.templates,C="."+y,w="module-"+y,k=(e(t),e(this)),S=k.find(g.placeholder),T=k.find(g.icon),A=k.find(g.embed),R=this,E=k.data(w);m={initialize:function(){m.debug("Initializing embed"),m.determine.autoplay(),m.create(),m.bind.events(),m.instantiate()},instantiate:function(){m.verbose("Storing instance of module",m),E=m,k.data(w,m)},destroy:function(){m.verbose("Destroying previous instance of embed"),m.reset(),k.removeData(w).off(C)},refresh:function(){m.verbose("Refreshing selector cache"),S=k.find(g.placeholder),T=k.find(g.icon),A=k.find(g.embed)},bind:{events:function(){m.has.placeholder()&&(m.debug("Adding placeholder events"),k.on("click"+C,g.placeholder,m.createAndShow).on("click"+C,g.icon,m.createAndShow))}},create:function(){var e=m.get.placeholder();e?m.createPlaceholder():m.createAndShow()},createPlaceholder:function(e){var t=m.get.icon(),n=m.get.url();m.generate.embed(n);e=e||m.get.placeholder(),k.html(x.placeholder(e,t)),m.debug("Creating placeholder for embed",e,t)},createEmbed:function(t){m.refresh(),t=t||m.get.url(),A=e("<div/>").addClass(p.embed).html(m.generate.embed(t)).appendTo(k),f.onCreate.call(R,t),m.debug("Creating embed object",A)},createAndShow:function(){m.createEmbed(),m.show()},change:function(e,t,n){m.debug("Changing video to ",e,t,n), +k.data(b.source,e).data(b.id,t).data(b.url,n),m.create()},reset:function(){m.debug("Clearing embed and showing placeholder"),m.remove.active(),m.remove.embed(),m.showPlaceholder(),f.onReset.call(R)},show:function(){m.debug("Showing embed"),m.set.active(),f.onDisplay.call(R)},hide:function(){m.debug("Hiding embed"),m.showPlaceholder()},showPlaceholder:function(){m.debug("Showing placeholder image"),m.remove.active(),f.onPlaceholderDisplay.call(R)},get:{id:function(){return f.id||k.data(b.id)},placeholder:function(){return f.placeholder||k.data(b.placeholder)},icon:function(){return f.icon?f.icon:k.data(b.icon)!==i?k.data(b.icon):m.determine.icon()},source:function(e){return f.source?f.source:k.data(b.source)!==i?k.data(b.source):m.determine.source()},type:function(){var e=m.get.source();return v[e]!==i?v[e].type:!1},url:function(){return f.url?f.url:k.data(b.url)!==i?k.data(b.url):m.determine.url()}},determine:{autoplay:function(){m.should.autoplay()&&(f.autoplay=!0)},source:function(t){var n=!1;return t=t||m.get.url(),t&&e.each(v,function(e,i){return-1!==t.search(i.domain)?(n=e,!1):void 0}),n},icon:function(){var e=m.get.source();return v[e]!==i?v[e].icon:!1},url:function(){var e,t=f.id||k.data(b.id),n=f.source||k.data(b.source);return e=v[n]!==i?v[n].url.replace("{id}",t):!1,e&&k.data(b.url,e),e}},set:{active:function(){k.addClass(p.active)}},remove:{active:function(){k.removeClass(p.active)},embed:function(){A.empty()}},encode:{parameters:function(e){var t,n=[];for(t in e)n.push(encodeURIComponent(t)+"="+encodeURIComponent(e[t]));return n.join("&")}},generate:{embed:function(e){m.debug("Generating embed html");var t,n,i=m.get.source();return e=m.get.url(e),e?(n=m.generate.parameters(i),t=x.iframe(e,n)):m.error(h.noURL,k),t},parameters:function(t,n){var o=v[t]&&v[t].parameters!==i?v[t].parameters(f):{};return n=n||f.parameters,n&&(o=e.extend({},o,n)),o=f.onEmbed(o),m.encode.parameters(o)}},has:{placeholder:function(){return f.placeholder||k.data(b.placeholder)}},should:{autoplay:function(){return"auto"===f.autoplay?f.placeholder||k.data(b.placeholder)!==i:f.autoplay}},is:{video:function(){return"video"==m.get.type()}},setting:function(t,n){if(m.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,f,t);else{if(n===i)return f[t];f[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,m,t);else{if(n===i)return m[t];m[t]=n}},debug:function(){f.debug&&(f.performance?m.performance.log(arguments):(m.debug=Function.prototype.bind.call(console.info,console,f.name+":"),m.debug.apply(console,arguments)))},verbose:function(){f.verbose&&f.debug&&(f.performance?m.performance.log(arguments):(m.verbose=Function.prototype.bind.call(console.info,console,f.name+":"),m.verbose.apply(console,arguments)))},error:function(){m.error=Function.prototype.bind.call(console.error,console,f.name+":"),m.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;f.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:R,"Execution Time":n})),clearTimeout(m.performance.timer),m.performance.timer=setTimeout(m.performance.display,500)},display:function(){var t=f.name+":",n=0;s=!1,clearTimeout(m.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),a.length>1&&(t+=" ("+a.length+")"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,a){var r,s,c,l=E;return n=n||d,a=R||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(m.error(h.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},u?(E===i&&m.initialize(),m.invoke(l)):(E!==i&&E.invoke("destroy"),m.initialize())}),o!==i?o:this},e.fn.embed.settings={name:"Embed",namespace:"embed",debug:!1,verbose:!1,performance:!0,icon:!1,source:!1,url:!1,id:!1,autoplay:"auto",color:"#444444",hd:!0,brandedUI:!1,parameters:!1,onDisplay:function(){},onPlaceholderDisplay:function(){},onReset:function(){},onCreate:function(e){},onEmbed:function(e){return e},metadata:{id:"id",icon:"icon",placeholder:"placeholder",source:"source",url:"url"},error:{noURL:"No URL specified",method:"The method you called is not defined"},className:{active:"active",embed:"embed"},selector:{embed:".embed",placeholder:".placeholder",icon:".icon"},sources:{youtube:{name:"youtube",type:"video",icon:"video play",domain:"youtube.com",url:"//www.youtube.com/embed/{id}",parameters:function(e){return{autohide:!e.brandedUI,autoplay:e.autoplay,color:e.colors||i,hq:e.hd,jsapi:e.api,modestbranding:!e.brandedUI}}},vimeo:{name:"vimeo",type:"video",icon:"video play",domain:"vimeo.com",url:"//player.vimeo.com/video/{id}",parameters:function(e){return{api:e.api,autoplay:e.autoplay,byline:e.brandedUI,color:e.colors||i,portrait:e.brandedUI,title:e.brandedUI}}}},templates:{iframe:function(e,t){return'<iframe src="'+e+"?"+t+'" width="100%" height="100%" frameborder="0" scrolling="no" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>'},placeholder:function(e,t){var n="";return t&&(n+='<i class="'+t+' icon"></i>'),e&&(n+='<img class="placeholder" src="'+e+'">'),n}},api:!0,onPause:function(){},onPlay:function(){},onStop:function(){}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.modal=function(o){var a,r=e(this),s=e(t),c=e(n),l=e("body"),u=r.selector||"",d=(new Date).getTime(),m=[],f=arguments[0],g="string"==typeof f,p=[].slice.call(arguments,1),v=t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)};return r.each(function(){var r,h,b,y,x,C,w,k,S,T=e.isPlainObject(o)?e.extend(!0,{},e.fn.modal.settings,o):e.extend({},e.fn.modal.settings),A=T.selector,R=T.className,E=T.namespace,P=T.error,F="."+E,D="module-"+E,O=e(this),q=e(T.context),j=O.find(A.close),z=this,I=O.data(D);S={initialize:function(){S.verbose("Initializing dimmer",q),S.create.id(),S.create.dimmer(),S.refreshModals(),S.bind.events(),T.observeChanges&&S.observeChanges(),S.instantiate()},instantiate:function(){S.verbose("Storing instance of modal"),I=S,O.data(D,I)},create:{dimmer:function(){var t={debug:T.debug,dimmerName:"modals",duration:{show:T.duration,hide:T.duration}},n=e.extend(!0,t,T.dimmerSettings);return T.inverted&&(n.variation=n.variation!==i?n.variation+" inverted":"inverted"),e.fn.dimmer===i?void S.error(P.dimmer):(S.debug("Creating dimmer with settings",n),y=q.dimmer(n),T.detachable?(S.verbose("Modal is detachable, moving content into dimmer"),y.dimmer("add content",O)):S.set.undetached(),T.blurring&&y.addClass(R.blurring),void(x=y.dimmer("get dimmer")))},id:function(){w=(Math.random().toString(16)+"000000000").substr(2,8),C="."+w,S.verbose("Creating unique id for element",w)}},destroy:function(){S.verbose("Destroying previous modal"),O.removeData(D).off(F),s.off(C),j.off(F),q.dimmer("destroy")},observeChanges:function(){"MutationObserver"in t&&(k=new MutationObserver(function(e){S.debug("DOM tree modified, refreshing"),S.refresh()}),k.observe(z,{childList:!0,subtree:!0}),S.debug("Setting up mutation observer",k))},refresh:function(){S.remove.scrolling(),S.cacheSizes(),S.set.screenHeight(),S.set.type(),S.set.position()},refreshModals:function(){h=O.siblings(A.modal),r=h.add(O)},attachEvents:function(t,n){var i=e(t);n=e.isFunction(S[n])?S[n]:S.toggle,i.length>0?(S.debug("Attaching modal events to element",t,n),i.off(F).on("click"+F,n)):S.error(P.notFound,t)},bind:{events:function(){S.verbose("Attaching events"),O.on("click"+F,A.close,S.event.close).on("click"+F,A.approve,S.event.approve).on("click"+F,A.deny,S.event.deny),s.on("resize"+C,S.event.resize)}},get:{id:function(){return(Math.random().toString(16)+"000000000").substr(2,8)}},event:{approve:function(){return T.onApprove.call(z,e(this))===!1?void S.verbose("Approve callback returned false cancelling hide"):void S.hide()},deny:function(){return T.onDeny.call(z,e(this))===!1?void S.verbose("Deny callback returned false cancelling hide"):void S.hide()},close:function(){S.hide()},click:function(t){var i=e(t.target),o=i.closest(A.modal).length>0,a=e.contains(n.documentElement,t.target);!o&&a&&(S.debug("Dimmer clicked, hiding all modals"),S.is.active()&&(S.remove.clickaway(),T.allowMultiple?S.hide():S.hideAll()))},debounce:function(e,t){clearTimeout(S.timer),S.timer=setTimeout(e,t)},keyboard:function(e){var t=e.which,n=27;t==n&&(T.closable?(S.debug("Escape key pressed hiding modal"),S.hide()):S.debug("Escape key pressed, but closable is set to false"),e.preventDefault())},resize:function(){y.dimmer("is active")&&v(S.refresh)}},toggle:function(){S.is.active()||S.is.animating()?S.hide():S.show()},show:function(t){t=e.isFunction(t)?t:function(){},S.refreshModals(),S.showModal(t)},hide:function(t){t=e.isFunction(t)?t:function(){},S.refreshModals(),S.hideModal(t)},showModal:function(t){t=e.isFunction(t)?t:function(){},S.is.animating()||!S.is.active()?(S.showDimmer(),S.cacheSizes(),S.set.position(),S.set.screenHeight(),S.set.type(),S.set.clickaway(),!T.allowMultiple&&S.others.active()?S.hideOthers(S.showModal):(T.onShow.call(z),T.transition&&e.fn.transition!==i&&O.transition("is supported")?(S.debug("Showing modal with css animations"),O.transition({debug:T.debug,animation:T.transition+" in",queue:T.queue,duration:T.duration,useFailSafe:!0,onComplete:function(){T.onVisible.apply(z),S.add.keyboardShortcuts(),S.save.focus(),S.set.active(),T.autofocus&&S.set.autofocus(),t()}})):S.error(P.noTransition))):S.debug("Modal is already visible")},hideModal:function(t,n){return t=e.isFunction(t)?t:function(){},S.debug("Hiding modal"),T.onHide.call(z,e(this))===!1?void S.verbose("Hide callback returned false cancelling hide"):void((S.is.animating()||S.is.active())&&(T.transition&&e.fn.transition!==i&&O.transition("is supported")?(S.remove.active(),O.transition({debug:T.debug,animation:T.transition+" out",queue:T.queue,duration:T.duration,useFailSafe:!0,onStart:function(){S.others.active()||n||S.hideDimmer(),S.remove.keyboardShortcuts()},onComplete:function(){T.onHidden.call(z),S.restore.focus(),t()}})):S.error(P.noTransition)))},showDimmer:function(){y.dimmer("is animating")||!y.dimmer("is active")?(S.debug("Showing dimmer"),y.dimmer("show")):S.debug("Dimmer already visible")},hideDimmer:function(){return y.dimmer("is animating")||y.dimmer("is active")?void y.dimmer("hide",function(){S.remove.clickaway(),S.remove.screenHeight()}):void S.debug("Dimmer is not visible cannot hide")},hideAll:function(t){var n=r.filter("."+R.active+", ."+R.animating);t=e.isFunction(t)?t:function(){},n.length>0&&(S.debug("Hiding all visible modals"),S.hideDimmer(),n.modal("hide modal",t))},hideOthers:function(t){var n=h.filter("."+R.active+", ."+R.animating);t=e.isFunction(t)?t:function(){},n.length>0&&(S.debug("Hiding other modals",h),n.modal("hide modal",t,!0))},others:{active:function(){return h.filter("."+R.active).length>0},animating:function(){return h.filter("."+R.animating).length>0}},add:{keyboardShortcuts:function(){S.verbose("Adding keyboard shortcuts"),c.on("keyup"+F,S.event.keyboard)}},save:{focus:function(){b=e(n.activeElement).blur()}},restore:{focus:function(){b&&b.length>0&&b.focus()}},remove:{active:function(){O.removeClass(R.active)},clickaway:function(){T.closable&&x.off("click"+C)},bodyStyle:function(){""===l.attr("style")&&(S.verbose("Removing style attribute"),l.removeAttr("style"))},screenHeight:function(){S.debug("Removing page height"),l.css("height","")},keyboardShortcuts:function(){S.verbose("Removing keyboard shortcuts"),c.off("keyup"+F)},scrolling:function(){y.removeClass(R.scrolling),O.removeClass(R.scrolling)}},cacheSizes:function(){var o=O.outerHeight();(S.cache===i||0!==o)&&(S.cache={pageHeight:e(n).outerHeight(),height:o+T.offset,contextHeight:"body"==T.context?e(t).height():y.height()}),S.debug("Caching modal and container sizes",S.cache)},can:{fit:function(){return S.cache.height+2*T.padding<S.cache.contextHeight}},is:{active:function(){return O.hasClass(R.active)},animating:function(){return O.transition("is supported")?O.transition("is animating"):O.is(":visible")},scrolling:function(){return y.hasClass(R.scrolling)},modernBrowser:function(){return!(t.ActiveXObject||"ActiveXObject"in t)}},set:{autofocus:function(){var e=O.find(":input").filter(":visible"),t=e.filter("[autofocus]"),n=t.length>0?t.first():e.first();n.length>0&&n.focus()},clickaway:function(){T.closable&&x.on("click"+C,S.event.click)},screenHeight:function(){S.can.fit()?l.css("height",""):(S.debug("Modal is taller than page content, resizing page height"),l.css("height",S.cache.height+2*T.padding))},active:function(){O.addClass(R.active)},scrolling:function(){y.addClass(R.scrolling),O.addClass(R.scrolling)},type:function(){S.can.fit()?(S.verbose("Modal fits on screen"),S.others.active()||S.others.animating()||S.remove.scrolling()):(S.verbose("Modal cannot fit on screen setting to scrolling"),S.set.scrolling())},position:function(){S.verbose("Centering modal on page",S.cache),S.can.fit()?O.css({top:"",marginTop:-(S.cache.height/2)}):O.css({marginTop:"",top:c.scrollTop()})},undetached:function(){y.addClass(R.undetached)}},setting:function(t,n){if(S.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,T,t);else{if(n===i)return T[t];T[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,S,t);else{if(n===i)return S[t];S[t]=n}},debug:function(){T.debug&&(T.performance?S.performance.log(arguments):(S.debug=Function.prototype.bind.call(console.info,console,T.name+":"),S.debug.apply(console,arguments)))},verbose:function(){T.verbose&&T.debug&&(T.performance?S.performance.log(arguments):(S.verbose=Function.prototype.bind.call(console.info,console,T.name+":"),S.verbose.apply(console,arguments)))},error:function(){S.error=Function.prototype.bind.call(console.error,console,T.name+":"),S.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;T.performance&&(t=(new Date).getTime(),i=d||t,n=t-i,d=t,m.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:z,"Execution Time":n})),clearTimeout(S.performance.timer),S.performance.timer=setTimeout(S.performance.display,500)},display:function(){var t=T.name+":",n=0;d=!1,clearTimeout(S.performance.timer),e.each(m,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",u&&(t+=" '"+u+"'"),(console.group!==i||console.table!==i)&&m.length>0&&(console.groupCollapsed(t),console.table?console.table(m):e.each(m,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),m=[]}},invoke:function(t,n,o){var r,s,c,l=I;return n=n||p,o=z||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},g?(I===i&&S.initialize(),S.invoke(f)):(I!==i&&I.invoke("destroy"),S.initialize())}),a!==i?a:this},e.fn.modal.settings={name:"Modal",namespace:"modal",debug:!1,verbose:!1,performance:!0,observeChanges:!1,allowMultiple:!1,detachable:!0,closable:!0,autofocus:!0,inverted:!1,blurring:!1,dimmerSettings:{closable:!1,useCSS:!0},context:"body",queue:!1,duration:500,offset:0,transition:"scale",padding:50,onShow:function(){},onVisible:function(){},onHide:function(){return!0},onHidden:function(){},onApprove:function(){return!0},onDeny:function(){return!0},selector:{close:"> .close",approve:".actions .positive, .actions .approve, .actions .ok",deny:".actions .negative, .actions .deny, .actions .cancel",modal:".ui.modal"},error:{dimmer:"UI Dimmer, a required component is not included in this page",method:"The method you called is not defined.",notFound:"The element you specified could not be found"},className:{active:"active",animating:"animating",blurring:"blurring",scrolling:"scrolling",undetached:"undetached"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.nag=function(n){var o,a=e(this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1);return a.each(function(){var a,m=e.isPlainObject(n)?e.extend(!0,{},e.fn.nag.settings,n):e.extend({},e.fn.nag.settings),f=(m.className,m.selector),g=m.error,p=m.namespace,v="."+p,h=p+"-module",b=e(this),y=(b.find(f.close),e(m.context?m.context:"body")),x=this,C=b.data(h);t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)};a={initialize:function(){a.verbose("Initializing element"),b.on("click"+v,f.close,a.dismiss).data(h,a),m.detachable&&b.parent()[0]!==y[0]&&b.detach().prependTo(y),m.displayTime>0&&setTimeout(a.hide,m.displayTime),a.show()},destroy:function(){a.verbose("Destroying instance"),b.removeData(h).off(v)},show:function(){a.should.show()&&!b.is(":visible")&&(a.debug("Showing nag",m.animation.show),"fade"==m.animation.show?b.fadeIn(m.duration,m.easing):b.slideDown(m.duration,m.easing))},hide:function(){a.debug("Showing nag",m.animation.hide),"fade"==m.animation.show?b.fadeIn(m.duration,m.easing):b.slideUp(m.duration,m.easing)},onHide:function(){a.debug("Removing nag",m.animation.hide),b.remove(),m.onHide&&m.onHide()},dismiss:function(e){m.storageMethod&&a.storage.set(m.key,m.value),a.hide(),e.stopImmediatePropagation(),e.preventDefault()},should:{show:function(){return m.persist?(a.debug("Persistent nag is set, can show nag"),!0):a.storage.get(m.key)!=m.value.toString()?(a.debug("Stored value is not set, can show nag",a.storage.get(m.key)),!0):(a.debug("Stored value is set, cannot show nag",a.storage.get(m.key)),!1)}},get:{storageOptions:function(){var e={};return m.expires&&(e.expires=m.expires),m.domain&&(e.domain=m.domain),m.path&&(e.path=m.path),e}},clear:function(){a.storage.remove(m.key)},storage:{set:function(n,o){var r=a.get.storageOptions();if("localstorage"==m.storageMethod&&t.localStorage!==i)t.localStorage.setItem(n,o),a.debug("Value stored using local storage",n,o);else if("sessionstorage"==m.storageMethod&&t.sessionStorage!==i)t.sessionStorage.setItem(n,o),a.debug("Value stored using session storage",n,o);else{if(e.cookie===i)return void a.error(g.noCookieStorage);e.cookie(n,o,r),a.debug("Value stored using cookie",n,o,r)}},get:function(n,o){var r;return"localstorage"==m.storageMethod&&t.localStorage!==i?r=t.localStorage.getItem(n):"sessionstorage"==m.storageMethod&&t.sessionStorage!==i?r=t.sessionStorage.getItem(n):e.cookie!==i?r=e.cookie(n):a.error(g.noCookieStorage),("undefined"==r||"null"==r||r===i||null===r)&&(r=i),r},remove:function(n){var o=a.get.storageOptions();"localstorage"==m.storageMethod&&t.localStorage!==i?t.localStorage.removeItem(n):"sessionstorage"==m.storageMethod&&t.sessionStorage!==i?t.sessionStorage.removeItem(n):e.cookie!==i?e.removeCookie(n,o):a.error(g.noStorage)}},setting:function(t,n){if(a.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,m,t);else{if(n===i)return m[t];m[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,a,t);else{if(n===i)return a[t];a[t]=n}},debug:function(){m.debug&&(m.performance?a.performance.log(arguments):(a.debug=Function.prototype.bind.call(console.info,console,m.name+":"),a.debug.apply(console,arguments)))},verbose:function(){m.verbose&&m.debug&&(m.performance?a.performance.log(arguments):(a.verbose=Function.prototype.bind.call(console.info,console,m.name+":"),a.verbose.apply(console,arguments)))},error:function(){a.error=Function.prototype.bind.call(console.error,console,m.name+":"),a.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;m.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:x,"Execution Time":n})),clearTimeout(a.performance.timer),a.performance.timer=setTimeout(a.performance.display,500)},display:function(){var t=m.name+":",n=0;s=!1,clearTimeout(a.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,r){var s,c,l,u=C;return n=n||d,r=x||r,"string"==typeof t&&u!==i&&(t=t.split(/[\. ]/),s=t.length-1,e.each(t,function(n,o){var r=n!=s?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(u[r])&&n!=s)u=u[r];else{if(u[r]!==i)return c=u[r],!1;if(!e.isPlainObject(u[o])||n==s)return u[o]!==i?(c=u[o],!1):(a.error(g.method,t),!1);u=u[o]}})),e.isFunction(c)?l=c.apply(r,n):c!==i&&(l=c),e.isArray(o)?o.push(l):o!==i?o=[o,l]:l!==i&&(o=l),c}},u?(C===i&&a.initialize(),a.invoke(l)):(C!==i&&C.invoke("destroy"),a.initialize())}),o!==i?o:this},e.fn.nag.settings={name:"Nag",debug:!1,verbose:!1,performance:!0,namespace:"Nag",persist:!1,displayTime:0,animation:{show:"slide",hide:"slide"},context:!1,detachable:!1,expires:30,domain:!1,path:"/",storageMethod:"cookie",key:"nag",value:"dismiss",error:{noCookieStorage:"$.cookie is not included. A storage solution is required.",noStorage:"Neither $.cookie or store is defined. A storage solution is required for storing state",method:"The method you called is not defined."},className:{bottom:"bottom",fixed:"fixed"},selector:{close:".close.icon"},speed:500,easing:"easeOutQuad",onHide:function(){}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.popup=function(o){var a,r=e(this),s=e(n),c=e(t),l=e("body"),u=r.selector||"",d=!0,m=(new Date).getTime(),f=[],g=arguments[0],p="string"==typeof g,v=[].slice.call(arguments,1);return r.each(function(){var n,r,h,b,y,x=e.isPlainObject(o)?e.extend(!0,{},e.fn.popup.settings,o):e.extend({},e.fn.popup.settings),C=x.selector,w=x.className,k=x.error,S=x.metadata,T=x.namespace,A="."+x.namespace,R="module-"+T,E=e(this),P=e(x.context),F=x.target?e(x.target):E,D=0,O=!1,q=!1,j=this,z=E.data(R);y={initialize:function(){y.debug("Initializing",E),y.createID(),y.bind.events(),!y.exists()&&x.preserve&&y.create(),y.instantiate()},instantiate:function(){y.verbose("Storing instance",y),z=y,E.data(R,z)},refresh:function(){x.popup?n=e(x.popup).eq(0):x.inline&&(n=F.nextAll(C.popup).eq(0),x.popup=n),x.popup?(n.addClass(w.loading),r=y.get.offsetParent(),n.removeClass(w.loading),x.movePopup&&y.has.popup()&&y.get.offsetParent(n)[0]!==r[0]&&(y.debug("Moving popup to the same offset parent as activating element"),n.detach().appendTo(r))):r=x.inline?y.get.offsetParent(F):y.has.popup()?y.get.offsetParent(n):l,r.is("html")&&r[0]!==l[0]&&(y.debug("Setting page as offset parent"),r=l),y.get.variation()&&y.set.variation()},reposition:function(){y.refresh(),y.set.position()},destroy:function(){y.debug("Destroying previous module"),n&&!x.preserve&&y.removePopup(),clearTimeout(y.hideTimer),clearTimeout(y.showTimer),c.off(h),E.off(A).removeData(R)},event:{start:function(t){var n=e.isPlainObject(x.delay)?x.delay.show:x.delay;clearTimeout(y.hideTimer),q||(y.showTimer=setTimeout(y.show,n))},end:function(){var t=e.isPlainObject(x.delay)?x.delay.hide:x.delay;clearTimeout(y.showTimer),y.hideTimer=setTimeout(y.hide,t)},touchstart:function(e){q=!0,y.show()},resize:function(){y.is.visible()&&y.set.position()},hideGracefully:function(t){t&&0===e(t.target).closest(C.popup).length?(y.debug("Click occurred outside popup hiding popup"),y.hide()):y.debug("Click was inside popup, keeping popup open")}},create:function(){var t=y.get.html(),i=y.get.title(),o=y.get.content();t||o||i?(y.debug("Creating pop-up html"),t||(t=x.templates.popup({title:i,content:o})),n=e("<div/>").addClass(w.popup).data(S.activator,E).html(t),x.inline?(y.verbose("Inserting popup element inline",n),n.insertAfter(E)):(y.verbose("Appending popup element to body",n),n.appendTo(P)),y.refresh(),y.set.variation(),x.hoverable&&y.bind.popup(),x.onCreate.call(n,j)):0!==F.next(C.popup).length?(y.verbose("Pre-existing popup found"),x.inline=!0,x.popups=F.next(C.popup).data(S.activator,E),y.refresh(),x.hoverable&&y.bind.popup()):x.popup?(e(x.popup).data(S.activator,E),y.verbose("Used popup specified in settings"),y.refresh(),x.hoverable&&y.bind.popup()):y.debug("No content specified skipping display",j)},createID:function(){b=(Math.random().toString(16)+"000000000").substr(2,8),h="."+b,y.verbose("Creating unique id for element",b)},toggle:function(){y.debug("Toggling pop-up"),y.is.hidden()?(y.debug("Popup is hidden, showing pop-up"),y.unbind.close(),y.show()):(y.debug("Popup is visible, hiding pop-up"),y.hide())},show:function(e){if(e=e||function(){},y.debug("Showing pop-up",x.transition),y.is.hidden()&&(!y.is.active()||!y.is.dropdown())){if(y.exists()||y.create(),x.onShow.call(n,j)===!1)return void y.debug("onShow callback returned false, cancelling popup animation");x.preserve||x.popup||y.refresh(),n&&y.set.position()&&(y.save.conditions(),x.exclusive&&y.hideAll(),y.animate.show(e))}},hide:function(e){if(e=e||function(){},y.is.visible()||y.is.animating()){if(x.onHide.call(n,j)===!1)return void y.debug("onHide callback returned false, cancelling popup animation");y.remove.visible(),y.unbind.close(),y.restore.conditions(),y.animate.hide(e)}},hideAll:function(){e(C.popup).filter("."+w.visible).each(function(){e(this).data(S.activator).popup("hide")})},exists:function(){return n?x.inline||x.popup?y.has.popup():n.closest(P).length>=1?!0:!1:!1},removePopup:function(){y.has.popup()&&!x.popup&&(y.debug("Removing popup",n),n.remove(),n=i,x.onRemove.call(n,j))},save:{conditions:function(){y.cache={title:E.attr("title")},y.cache.title&&E.removeAttr("title"),y.verbose("Saving original attributes",y.cache.title)}},restore:{conditions:function(){return y.cache&&y.cache.title&&(E.attr("title",y.cache.title),y.verbose("Restoring original attributes",y.cache.title)),!0}},animate:{show:function(t){t=e.isFunction(t)?t:function(){},x.transition&&e.fn.transition!==i&&E.transition("is supported")?(y.set.visible(),n.transition({animation:x.transition+" in",queue:!1,debug:x.debug,verbose:x.verbose,duration:x.duration,onComplete:function(){y.bind.close(),t.call(n,j),x.onVisible.call(n,j)}})):y.error(k.noTransition)},hide:function(t){return t=e.isFunction(t)?t:function(){},y.debug("Hiding pop-up"),x.onHide.call(n,j)===!1?void y.debug("onHide callback returned false, cancelling popup animation"):void(x.transition&&e.fn.transition!==i&&E.transition("is supported")?n.transition({animation:x.transition+" out",queue:!1,duration:x.duration,debug:x.debug,verbose:x.verbose,onComplete:function(){y.reset(),t.call(n,j),x.onHidden.call(n,j)}}):y.error(k.noTransition))}},change:{content:function(e){n.html(e)}},get:{html:function(){return E.removeData(S.html),E.data(S.html)||x.html},title:function(){return E.removeData(S.title),E.data(S.title)||x.title},content:function(){return E.removeData(S.content),E.data(S.content)||E.attr("title")||x.content},variation:function(){return E.removeData(S.variation),E.data(S.variation)||x.variation},popup:function(){return n},popupOffset:function(){return n.offset()},calculations:function(){var e,i=F[0],o=x.inline||x.popup&&x.movePopup?F.position():F.offset(),a={};return a={target:{element:F[0],width:F.outerWidth(),height:F.outerHeight(),top:o.top,left:o.left,margin:{}},popup:{width:n.outerWidth(),height:n.outerHeight()},parent:{width:r.outerWidth(),height:r.outerHeight()},screen:{scroll:{top:c.scrollTop(),left:c.scrollLeft()},width:c.width(),height:c.height()}},x.setFluidWidth&&y.is.fluid()&&(a.container={width:n.parent().outerWidth()},a.popup.width=a.container.width),a.target.margin.top=x.inline?parseInt(t.getComputedStyle(i).getPropertyValue("margin-top"),10):0,a.target.margin.left=x.inline?y.is.rtl()?parseInt(t.getComputedStyle(i).getPropertyValue("margin-right"),10):parseInt(t.getComputedStyle(i).getPropertyValue("margin-left"),10):0,e=a.screen,a.boundary={top:e.scroll.top,bottom:e.scroll.top+e.height,left:e.scroll.left,right:e.scroll.left+e.width},a},id:function(){return b},startEvent:function(){return"hover"==x.on?"mouseenter":"focus"==x.on?"focus":!1},scrollEvent:function(){return"scroll"},endEvent:function(){return"hover"==x.on?"mouseleave":"focus"==x.on?"blur":!1},distanceFromBoundary:function(e,t){var n,i,o={};return e=e||y.get.offset(),t=t||y.get.calculations(),n=t.popup,i=t.boundary,e&&(o={top:e.top-i.top,left:e.left-i.left,right:i.right-(e.left+n.width),bottom:i.bottom-(e.top+n.height)},y.verbose("Distance from boundaries determined",e,o)),o},offsetParent:function(t){var n=t!==i?t[0]:E[0],o=n.parentNode,a=e(o);if(o)for(var r="none"===a.css("transform"),s="static"===a.css("position"),c=a.is("html");o&&!c&&s&&r;)o=o.parentNode,a=e(o),r="none"===a.css("transform"),s="static"===a.css("position"),c=a.is("html");return a&&a.length>0?a:e()},positions:function(){return{"top left":!1,"top center":!1,"top right":!1,"bottom left":!1,"bottom center":!1,"bottom right":!1,"left center":!1,"right center":!1}},nextPosition:function(e){var t=e.split(" "),n=t[0],i=t[1],o={top:"bottom",bottom:"top",left:"right",right:"left"},a={left:"center",center:"right",right:"left"},r={"top left":"top center","top center":"top right","top right":"right center","right center":"bottom right","bottom right":"bottom center","bottom center":"bottom left","bottom left":"left center","left center":"top left"},s="top"==n||"bottom"==n,c=!1,l=!1,u=!1;return O||(y.verbose("All available positions available"),O=y.get.positions()),y.debug("Recording last position tried",e),O[e]=!0,"opposite"===x.prefer&&(u=[o[n],i],u=u.join(" "),c=O[u]===!0,y.debug("Trying opposite strategy",u)),"adjacent"===x.prefer&&s&&(u=[n,a[i]],u=u.join(" "),l=O[u]===!0,y.debug("Trying adjacent strategy",u)),(l||c)&&(y.debug("Using backup position",u),u=r[e]),u}},set:{position:function(e,t){if(0===F.length||0===n.length)return void y.error(k.notFound);var o,a,r,s,c,l,u,d;if(t=t||y.get.calculations(),e=e||E.data(S.position)||x.position,o=E.data(S.offset)||x.offset,a=x.distanceAway,r=t.target,s=t.popup,c=t.parent,0===r.width&&0===r.height&&!(r.element instanceof SVGGraphicsElement))return y.debug("Popup target is hidden, no action taken"),!1;switch(x.inline&&(y.debug("Adding margin to calculation",r.margin),"left center"==e||"right center"==e?(o+=r.margin.top,a+=-r.margin.left):"top left"==e||"top center"==e||"top right"==e?(o+=r.margin.left,a-=r.margin.top):(o+=r.margin.left,a+=r.margin.top)),y.debug("Determining popup position from calculations",e,t),y.is.rtl()&&(e=e.replace(/left|right/g,function(e){return"left"==e?"right":"left"}),y.debug("RTL: Popup position updated",e)),D==x.maxSearchDepth&&"string"==typeof x.lastResort&&(e=x.lastResort),e){case"top left":l={top:"auto",bottom:c.height-r.top+a,left:r.left+o,right:"auto"};break;case"top center":l={bottom:c.height-r.top+a,left:r.left+r.width/2-s.width/2+o,top:"auto",right:"auto"};break;case"top right":l={bottom:c.height-r.top+a,right:c.width-r.left-r.width-o,top:"auto",left:"auto"};break;case"left center":l={top:r.top+r.height/2-s.height/2+o,right:c.width-r.left+a,left:"auto",bottom:"auto"};break;case"right center":l={top:r.top+r.height/2-s.height/2+o,left:r.left+r.width+a,bottom:"auto",right:"auto"};break;case"bottom left":l={top:r.top+r.height+a,left:r.left+o,bottom:"auto",right:"auto"};break;case"bottom center":l={top:r.top+r.height+a,left:r.left+r.width/2-s.width/2+o,bottom:"auto",right:"auto"};break;case"bottom right":l={top:r.top+r.height+a,right:c.width-r.left-r.width-o,left:"auto",bottom:"auto"}}if(l===i&&y.error(k.invalidPosition,e),y.debug("Calculated popup positioning values",l),n.css(l).removeClass(w.position).addClass(e).addClass(w.loading), +u=y.get.popupOffset(),d=y.get.distanceFromBoundary(u,t),y.is.offstage(d,e)){if(y.debug("Position is outside viewport",e),D<x.maxSearchDepth)return D++,e=y.get.nextPosition(e),y.debug("Trying new position",e),n?y.set.position(e,t):!1;if(!x.lastResort)return y.debug("Popup could not find a position to display",n),y.error(k.cannotPlace,j),y.remove.attempts(),y.remove.loading(),y.reset(),!1;y.debug("No position found, showing with last position")}return y.debug("Position is on stage",e),y.remove.attempts(),y.remove.loading(),x.setFluidWidth&&y.is.fluid()&&y.set.fluidWidth(t),!0},fluidWidth:function(e){e=e||y.get.calculations(),y.debug("Automatically setting element width to parent width",e.parent.width),n.css("width",e.container.width)},variation:function(e){e=e||y.get.variation(),e&&y.has.popup()&&(y.verbose("Adding variation to popup",e),n.addClass(e))},visible:function(){E.addClass(w.visible)}},remove:{loading:function(){n.removeClass(w.loading)},variation:function(e){e=e||y.get.variation(),e&&(y.verbose("Removing variation",e),n.removeClass(e))},visible:function(){E.removeClass(w.visible)},attempts:function(){y.verbose("Resetting all searched positions"),D=0,O=!1}},bind:{events:function(){y.debug("Binding popup events to module"),"click"==x.on&&E.on("click"+A,y.toggle),"hover"==x.on&&d&&E.on("touchstart"+A,y.event.touchstart),y.get.startEvent()&&E.on(y.get.startEvent()+A,y.event.start).on(y.get.endEvent()+A,y.event.end),x.target&&y.debug("Target set to element",F),c.on("resize"+h,y.event.resize)},popup:function(){y.verbose("Allowing hover events on popup to prevent closing"),n&&y.has.popup()&&n.on("mouseenter"+A,y.event.start).on("mouseleave"+A,y.event.end)},close:function(){(x.hideOnScroll===!0||"auto"==x.hideOnScroll&&"click"!=x.on)&&(s.one(y.get.scrollEvent()+h,y.event.hideGracefully),P.one(y.get.scrollEvent()+h,y.event.hideGracefully)),"hover"==x.on&&q&&(y.verbose("Binding popup close event to document"),s.on("touchstart"+h,function(e){y.verbose("Touched away from popup"),y.event.hideGracefully.call(j,e)})),"click"==x.on&&x.closable&&(y.verbose("Binding popup close event to document"),s.on("click"+h,function(e){y.verbose("Clicked away from popup"),y.event.hideGracefully.call(j,e)}))}},unbind:{close:function(){(x.hideOnScroll===!0||"auto"==x.hideOnScroll&&"click"!=x.on)&&(s.off("scroll"+h,y.hide),P.off("scroll"+h,y.hide)),"hover"==x.on&&q&&(s.off("touchstart"+h),q=!1),"click"==x.on&&x.closable&&(y.verbose("Removing close event from document"),s.off("click"+h))}},has:{popup:function(){return n&&n.length>0}},is:{offstage:function(t,n){var i=[];return e.each(t,function(e,t){t<-x.jitter&&(y.debug("Position exceeds allowable distance from edge",e,t,n),i.push(e))}),i.length>0?!0:!1},active:function(){return E.hasClass(w.active)},animating:function(){return n&&n.hasClass(w.animating)},fluid:function(){return n&&n.hasClass(w.fluid)},visible:function(){return n&&n.hasClass(w.visible)},dropdown:function(){return E.hasClass(w.dropdown)},hidden:function(){return!y.is.visible()},rtl:function(){return"rtl"==E.css("direction")}},reset:function(){y.remove.visible(),x.preserve?e.fn.transition!==i&&n.transition("remove transition"):y.removePopup()},setting:function(t,n){if(e.isPlainObject(t))e.extend(!0,x,t);else{if(n===i)return x[t];x[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,y,t);else{if(n===i)return y[t];y[t]=n}},debug:function(){x.debug&&(x.performance?y.performance.log(arguments):(y.debug=Function.prototype.bind.call(console.info,console,x.name+":"),y.debug.apply(console,arguments)))},verbose:function(){x.verbose&&x.debug&&(x.performance?y.performance.log(arguments):(y.verbose=Function.prototype.bind.call(console.info,console,x.name+":"),y.verbose.apply(console,arguments)))},error:function(){y.error=Function.prototype.bind.call(console.error,console,x.name+":"),y.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;x.performance&&(t=(new Date).getTime(),i=m||t,n=t-i,m=t,f.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:j,"Execution Time":n})),clearTimeout(y.performance.timer),y.performance.timer=setTimeout(y.performance.display,500)},display:function(){var t=x.name+":",n=0;m=!1,clearTimeout(y.performance.timer),e.each(f,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",u&&(t+=" '"+u+"'"),(console.group!==i||console.table!==i)&&f.length>0&&(console.groupCollapsed(t),console.table?console.table(f):e.each(f,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),f=[]}},invoke:function(t,n,o){var r,s,c,l=z;return n=n||v,o=j||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},p?(z===i&&y.initialize(),y.invoke(g)):(z!==i&&z.invoke("destroy"),y.initialize())}),a!==i?a:this},e.fn.popup.settings={name:"Popup",debug:!1,verbose:!1,performance:!0,namespace:"popup",onCreate:function(){},onRemove:function(){},onShow:function(){},onVisible:function(){},onHide:function(){},onHidden:function(){},on:"hover",addTouchEvents:!0,position:"top left",variation:"",movePopup:!0,target:!1,popup:!1,inline:!1,preserve:!1,hoverable:!1,content:!1,html:!1,title:!1,closable:!0,hideOnScroll:"auto",exclusive:!1,context:"body",prefer:"opposite",lastResort:!1,delay:{show:50,hide:70},setFluidWidth:!0,duration:200,transition:"scale",distanceAway:0,jitter:2,offset:0,maxSearchDepth:15,error:{invalidPosition:"The position you specified is not a valid position",cannotPlace:"Popup does not fit within the boundaries of the viewport",method:"The method you called is not defined.",noTransition:"This module requires ui transitions <https://github.com/Semantic-Org/UI-Transition>",notFound:"The target or popup you specified does not exist on the page"},metadata:{activator:"activator",content:"content",html:"html",offset:"offset",position:"position",title:"title",variation:"variation"},className:{active:"active",animating:"animating",dropdown:"dropdown",fluid:"fluid",loading:"loading",popup:"ui popup",position:"top left center bottom right",visible:"visible"},selector:{popup:".ui.popup"},templates:{escape:function(e){var t=/[&<>"'`]/g,n=/[&<>"'`]/,i={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},o=function(e){return i[e]};return n.test(e)?e.replace(t,o):e},popup:function(t){var n="",o=e.fn.popup.settings.templates.escape;return typeof t!==i&&(typeof t.title!==i&&t.title&&(t.title=o(t.title),n+='<div class="header">'+t.title+"</div>"),typeof t.content!==i&&t.content&&(t.content=o(t.content),n+='<div class="content">'+t.content+"</div>")),n}}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.progress=function(t){var o,a=e(this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1);return a.each(function(){var a,m,f=e.isPlainObject(t)?e.extend(!0,{},e.fn.progress.settings,t):e.extend({},e.fn.progress.settings),g=f.className,p=f.metadata,v=f.namespace,h=f.selector,b=f.error,y="."+v,x="module-"+v,C=e(this),w=e(this).find(h.bar),k=e(this).find(h.progress),S=e(this).find(h.label),T=this,A=C.data(x),R=!1;m={initialize:function(){m.debug("Initializing progress bar",f),m.set.duration(),m.set.transitionEvent(),m.read.metadata(),m.read.settings(),m.instantiate()},instantiate:function(){m.verbose("Storing instance of progress",m),A=m,C.data(x,m)},destroy:function(){m.verbose("Destroying previous progress for",C),clearInterval(A.interval),m.remove.state(),C.removeData(x),A=i},reset:function(){m.set.percent(0),m.set.value(0)},complete:function(){(m.percent===i||m.percent<100)&&m.set.percent(100)},read:{metadata:function(){var e={percent:C.data(p.percent),total:C.data(p.total),value:C.data(p.value)};e.percent&&(m.debug("Current percent value set from metadata",e.percent),m.set.percent(e.percent)),e.total&&(m.debug("Total value set from metadata",e.total),m.set.total(e.total)),e.value&&(m.debug("Current value set from metadata",e.value),m.set.value(e.value),m.set.progress(e.value))},settings:function(){f.total!==!1&&(m.debug("Current total set in settings",f.total),m.set.total(f.total)),f.value!==!1&&(m.debug("Current value set in settings",f.value),m.set.value(f.value),m.set.progress(m.value)),f.percent!==!1&&(m.debug("Current percent set in settings",f.percent),m.set.percent(f.percent))}},increment:function(e){var t,n,i;m.has.total()?(n=m.get.value(),e=e||1,i=n+e,t=m.get.total(),m.debug("Incrementing value",n,i,t),i>t&&(m.debug("Value cannot increment above total",t),i=t)):(n=m.get.percent(),e=e||m.get.randomValue(),i=n+e,t=100,m.debug("Incrementing percentage by",n,i),i>t&&(m.debug("Value cannot increment above 100 percent"),i=t)),m.set.progress(i)},decrement:function(e){var t,n,i=m.get.total();i?(t=m.get.value(),e=e||1,n=t-e,m.debug("Decrementing value by",e,t)):(t=m.get.percent(),e=e||m.get.randomValue(),n=t-e,m.debug("Decrementing percentage by",e,t)),0>n&&(m.debug("Value cannot decrement below 0"),n=0),m.set.progress(n)},has:{total:function(){return m.get.total()!==!1}},get:{text:function(e){var t=m.value||0,n=m.total||0,i=R?m.get.displayPercent():m.percent||0,o=m.total>0?n-t:100-i;return e=e||"",e=e.replace("{value}",t).replace("{total}",n).replace("{left}",o).replace("{percent}",i),m.debug("Adding variables to progress bar text",e),e},randomValue:function(){return m.debug("Generating random increment percentage"),Math.floor(Math.random()*f.random.max+f.random.min)},numericValue:function(e){return"string"==typeof e?""!==e.replace(/[^\d.]/g,"")?+e.replace(/[^\d.]/g,""):!1:e},transitionEnd:function(){var e,t=n.createElement("element"),o={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(e in o)if(t.style[e]!==i)return o[e]},displayPercent:function(){var e=w.width(),t=C.width(),n=parseInt(w.css("min-width"),10),i=e>n?e/t*100:m.percent;return f.precision>0?Math.round(i*(10*f.precision))/(10*f.precision):Math.round(i)},percent:function(){return m.percent||0},value:function(){return m.value||0},total:function(){return m.total||!1}},is:{success:function(){return C.hasClass(g.success)},warning:function(){return C.hasClass(g.warning)},error:function(){return C.hasClass(g.error)},active:function(){return C.hasClass(g.active)},visible:function(){return C.is(":visible")}},remove:{state:function(){m.verbose("Removing stored state"),delete m.total,delete m.percent,delete m.value},active:function(){m.verbose("Removing active state"),C.removeClass(g.active)},success:function(){m.verbose("Removing success state"),C.removeClass(g.success)},warning:function(){m.verbose("Removing warning state"),C.removeClass(g.warning)},error:function(){m.verbose("Removing error state"),C.removeClass(g.error)}},set:{barWidth:function(e){e>100?m.error(b.tooHigh,e):0>e?m.error(b.tooLow,e):(w.css("width",e+"%"),C.attr("data-percent",parseInt(e,10)))},duration:function(e){e=e||f.duration,e="number"==typeof e?e+"ms":e,m.verbose("Setting progress bar transition duration",e),w.css({"transition-duration":e})},percent:function(e){e="string"==typeof e?+e.replace("%",""):e,e=f.precision>0?Math.round(e*(10*f.precision))/(10*f.precision):Math.round(e),m.percent=e,m.has.total()||(m.value=f.precision>0?Math.round(e/100*m.total*(10*f.precision))/(10*f.precision):Math.round(e/100*m.total*10)/10,f.limitValues&&(m.value=m.value>100?100:m.value<0?0:m.value)),m.set.barWidth(e),m.set.labelInterval(),m.set.labels(),f.onChange.call(T,e,m.value,m.total)},labelInterval:function(){var e=function(){m.verbose("Bar finished animating, removing continuous label updates"),clearInterval(m.interval),R=!1,m.set.labels()};clearInterval(m.interval),w.one(a+y,e),m.timer=setTimeout(e,f.duration+100),R=!0,m.interval=setInterval(m.set.labels,f.framerate)},labels:function(){m.verbose("Setting both bar progress and outer label text"),m.set.barLabel(),m.set.state()},label:function(e){e=e||"",e&&(e=m.get.text(e),m.debug("Setting label to text",e),S.text(e))},state:function(e){e=e!==i?e:m.percent,100===e?!f.autoSuccess||m.is.warning()||m.is.error()?(m.verbose("Reached 100% removing active state"),m.remove.active()):(m.set.success(),m.debug("Automatically triggering success at 100%")):e>0?(m.verbose("Adjusting active progress bar label",e),m.set.active()):(m.remove.active(),m.set.label(f.text.active))},barLabel:function(e){e!==i?k.text(m.get.text(e)):"ratio"==f.label&&m.total?(m.debug("Adding ratio to bar label"),k.text(m.get.text(f.text.ratio))):"percent"==f.label&&(m.debug("Adding percentage to bar label"),k.text(m.get.text(f.text.percent)))},active:function(e){e=e||f.text.active,m.debug("Setting active state"),f.showActivity&&!m.is.active()&&C.addClass(g.active),m.remove.warning(),m.remove.error(),m.remove.success(),e&&m.set.label(e),f.onActive.call(T,m.value,m.total)},success:function(e){e=e||f.text.success,m.debug("Setting success state"),C.addClass(g.success),m.remove.active(),m.remove.warning(),m.remove.error(),m.complete(),e&&m.set.label(e),f.onSuccess.call(T,m.total)},warning:function(e){e=e||f.text.warning,m.debug("Setting warning state"),C.addClass(g.warning),m.remove.active(),m.remove.success(),m.remove.error(),m.complete(),e&&m.set.label(e),f.onWarning.call(T,m.value,m.total)},error:function(e){e=e||f.text.error,m.debug("Setting error state"),C.addClass(g.error),m.remove.active(),m.remove.success(),m.remove.warning(),m.complete(),e&&m.set.label(e),f.onError.call(T,m.value,m.total)},transitionEvent:function(){a=m.get.transitionEnd()},total:function(e){m.total=e},value:function(e){m.value=e},progress:function(e){var t,n=m.get.numericValue(e);n===!1&&m.error(b.nonNumeric,e),m.has.total()?(m.set.value(n),t=n/m.total*100,m.debug("Calculating percent complete from total",t),m.set.percent(t)):(t=n,m.debug("Setting value to exact percentage value",t),m.set.percent(t))}},setting:function(t,n){if(m.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,f,t);else{if(n===i)return f[t];f[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,m,t);else{if(n===i)return m[t];m[t]=n}},debug:function(){f.debug&&(f.performance?m.performance.log(arguments):(m.debug=Function.prototype.bind.call(console.info,console,f.name+":"),m.debug.apply(console,arguments)))},verbose:function(){f.verbose&&f.debug&&(f.performance?m.performance.log(arguments):(m.verbose=Function.prototype.bind.call(console.info,console,f.name+":"),m.verbose.apply(console,arguments)))},error:function(){m.error=Function.prototype.bind.call(console.error,console,f.name+":"),m.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;f.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:T,"Execution Time":n})),clearTimeout(m.performance.timer),m.performance.timer=setTimeout(m.performance.display,500)},display:function(){var t=f.name+":",n=0;s=!1,clearTimeout(m.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,a){var r,s,c,l=A;return n=n||d,a=T||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(m.error(b.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},u?(A===i&&m.initialize(),m.invoke(l)):(A!==i&&A.invoke("destroy"),m.initialize())}),o!==i?o:this},e.fn.progress.settings={name:"Progress",namespace:"progress",debug:!1,verbose:!1,performance:!0,random:{min:2,max:5},duration:300,autoSuccess:!0,showActivity:!0,limitValues:!0,label:"percent",precision:0,framerate:1e3/30,percent:!1,total:!1,value:!1,onChange:function(e,t,n){},onSuccess:function(e){},onActive:function(e,t){},onError:function(e,t){},onWarning:function(e,t){},error:{method:"The method you called is not defined.",nonNumeric:"Progress value is non numeric",tooHigh:"Value specified is above 100%",tooLow:"Value specified is below 0%"},regExp:{variable:/\{\$*[A-z0-9]+\}/g},metadata:{percent:"percent",total:"total",value:"value"},selector:{bar:"> .bar",label:"> .label",progress:".bar > .progress"},text:{active:!1,error:!1,success:!1,warning:!1,percent:"{percent}%",ratio:"{value} of {total}"},className:{active:"active",error:"error",success:"success",warning:"warning"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.rating=function(t){var n,o=e(this),a=o.selector||"",r=(new Date).getTime(),s=[],c=arguments[0],l="string"==typeof c,u=[].slice.call(arguments,1);return o.each(function(){var d,m=e.isPlainObject(t)?e.extend(!0,{},e.fn.rating.settings,t):e.extend({},e.fn.rating.settings),f=m.namespace,g=m.className,p=m.metadata,v=m.selector,h=(m.error,"."+f),b="module-"+f,y=this,x=e(this).data(b),C=e(this),w=C.find(v.icon);d={initialize:function(){d.verbose("Initializing rating module",m),0===w.length&&d.setup.layout(),m.interactive?d.enable():d.disable(),d.set.rating(d.get.initialRating()),d.instantiate()},instantiate:function(){d.verbose("Instantiating module",m),x=d,C.data(b,d)},destroy:function(){d.verbose("Destroying previous instance",x),d.remove.events(),C.removeData(b)},refresh:function(){w=C.find(v.icon)},setup:{layout:function(){var t=d.get.maxRating(),n=e.fn.rating.settings.templates.icon(t);d.debug("Generating icon html dynamically"),C.html(n),d.refresh()}},event:{mouseenter:function(){var t=e(this);t.nextAll().removeClass(g.selected),C.addClass(g.selected),t.addClass(g.selected).prevAll().addClass(g.selected)},mouseleave:function(){C.removeClass(g.selected),w.removeClass(g.selected)},click:function(){var t=e(this),n=d.get.rating(),i=w.index(t)+1,o="auto"==m.clearable?1===w.length:m.clearable;o&&n==i?d.clearRating():d.set.rating(i)}},clearRating:function(){d.debug("Clearing current rating"),d.set.rating(0)},bind:{events:function(){d.verbose("Binding events"),C.on("mouseenter"+h,v.icon,d.event.mouseenter).on("mouseleave"+h,v.icon,d.event.mouseleave).on("click"+h,v.icon,d.event.click)}},remove:{events:function(){d.verbose("Removing events"),C.off(h)}},enable:function(){d.debug("Setting rating to interactive mode"),d.bind.events(),C.removeClass(g.disabled)},disable:function(){d.debug("Setting rating to read-only mode"),d.remove.events(),C.addClass(g.disabled)},get:{initialRating:function(){return C.data(p.rating)!==i?(C.removeData(p.rating),C.data(p.rating)):m.initialRating},maxRating:function(){return C.data(p.maxRating)!==i?(C.removeData(p.maxRating),C.data(p.maxRating)):m.maxRating},rating:function(){var e=w.filter("."+g.active).length;return d.verbose("Current rating retrieved",e),e}},set:{rating:function(e){var t=e-1>=0?e-1:0,n=w.eq(t);C.removeClass(g.selected),w.removeClass(g.selected).removeClass(g.active),e>0&&(d.verbose("Setting current rating to",e),n.prevAll().andSelf().addClass(g.active)),m.onRate.call(y,e)}},setting:function(t,n){if(d.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,m,t);else{if(n===i)return m[t];m[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,d,t);else{if(n===i)return d[t];d[t]=n}},debug:function(){m.debug&&(m.performance?d.performance.log(arguments):(d.debug=Function.prototype.bind.call(console.info,console,m.name+":"),d.debug.apply(console,arguments)))},verbose:function(){m.verbose&&m.debug&&(m.performance?d.performance.log(arguments):(d.verbose=Function.prototype.bind.call(console.info,console,m.name+":"),d.verbose.apply(console,arguments)))},error:function(){d.error=Function.prototype.bind.call(console.error,console,m.name+":"),d.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;m.performance&&(t=(new Date).getTime(),i=r||t,n=t-i,r=t,s.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:y,"Execution Time":n})),clearTimeout(d.performance.timer),d.performance.timer=setTimeout(d.performance.display,500)},display:function(){var t=m.name+":",n=0;r=!1,clearTimeout(d.performance.timer),e.each(s,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",a&&(t+=" '"+a+"'"),o.length>1&&(t+=" ("+o.length+")"),(console.group!==i||console.table!==i)&&s.length>0&&(console.groupCollapsed(t),console.table?console.table(s):e.each(s,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),s=[]}},invoke:function(t,o,a){var r,s,c,l=x;return o=o||u,a=y||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(a,o):s!==i&&(c=s),e.isArray(n)?n.push(c):n!==i?n=[n,c]:c!==i&&(n=c),s}},l?(x===i&&d.initialize(),d.invoke(c)):(x!==i&&x.invoke("destroy"),d.initialize())}),n!==i?n:this},e.fn.rating.settings={name:"Rating",namespace:"rating",debug:!1,verbose:!1,performance:!0,initialRating:0,interactive:!0,maxRating:4,clearable:"auto",onRate:function(e){},error:{method:"The method you called is not defined",noMaximum:"No maximum rating specified. Cannot generate HTML automatically"},metadata:{rating:"rating",maxRating:"maxRating"},className:{active:"active",disabled:"disabled",selected:"selected",loading:"loading"},selector:{icon:".icon"},templates:{icon:function(e){for(var t=1,n="";e>=t;)n+='<i class="icon"></i>',t++;return n}}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.search=function(o){var a,r=e(this),s=r.selector||"",c=(new Date).getTime(),l=[],u=arguments[0],d="string"==typeof u,m=[].slice.call(arguments,1);return e(this).each(function(){var f,g=e.isPlainObject(o)?e.extend(!0,{},e.fn.search.settings,o):e.extend({},e.fn.search.settings),p=g.className,v=g.metadata,h=g.regExp,b=g.fields,y=g.selector,x=g.error,C=g.namespace,w="."+C,k=C+"-module",S=e(this),T=S.find(y.prompt),A=S.find(y.searchButton),R=S.find(y.results),E=(S.find(y.result),S.find(y.category),this),P=S.data(k);f={initialize:function(){f.verbose("Initializing module"),f.determine.searchFields(),f.bind.events(),f.set.type(),f.create.results(),f.instantiate()},instantiate:function(){f.verbose("Storing instance of module",f),P=f,S.data(k,f)},destroy:function(){f.verbose("Destroying instance"),S.off(w).removeData(k)},bind:{events:function(){f.verbose("Binding events to search"),g.automatic&&(S.on(f.get.inputEvent()+w,y.prompt,f.event.input),T.attr("autocomplete","off")),S.on("focus"+w,y.prompt,f.event.focus).on("blur"+w,y.prompt,f.event.blur).on("keydown"+w,y.prompt,f.handleKeyboard).on("click"+w,y.searchButton,f.query).on("mousedown"+w,y.results,f.event.result.mousedown).on("mouseup"+w,y.results,f.event.result.mouseup).on("click"+w,y.result,f.event.result.click)}},determine:{searchFields:function(){o&&o.searchFields!==i&&(g.searchFields=o.searchFields)}},event:{input:function(){clearTimeout(f.timer),f.timer=setTimeout(f.query,g.searchDelay)},focus:function(){f.set.focus(),f.has.minimumCharacters()&&(f.query(),f.can.show()&&f.showResults())},blur:function(e){var t=n.activeElement===this;t||f.resultsClicked||(f.cancel.query(),f.remove.focus(),f.timer=setTimeout(f.hideResults,g.hideDelay))},result:{mousedown:function(){f.resultsClicked=!0},mouseup:function(){f.resultsClicked=!1},click:function(n){f.debug("Search result selected");var i=e(this),o=i.find(y.title).eq(0),a=i.find("a[href]").eq(0),r=a.attr("href")||!1,s=a.attr("target")||!1,c=(o.html(),o.length>0?o.text():!1),l=f.get.results(),u=i.data(v.result)||f.get.result(c,l);return e.isFunction(g.onSelect)&&g.onSelect.call(E,u,l)===!1?void f.debug("Custom onSelect callback cancelled default select action"):(f.hideResults(),c&&f.set.value(c),void(r&&(f.verbose("Opening search link found in result",a),"_blank"==s||n.ctrlKey?t.open(r):t.location.href=r)))}}},handleKeyboard:function(e){var t,n=S.find(y.result),i=S.find(y.category),o=n.index(n.filter("."+p.active)),a=n.length,r=e.which,s={backspace:8,enter:13,escape:27,upArrow:38,downArrow:40};if(r==s.escape&&(f.verbose("Escape key pressed, blurring search field"),f.trigger.blur()),f.is.visible())if(r==s.enter){if(f.verbose("Enter key pressed, selecting active result"),n.filter("."+p.active).length>0)return f.event.result.click.call(n.filter("."+p.active),e),e.preventDefault(),!1}else r==s.upArrow?(f.verbose("Up key pressed, changing active result"),t=0>o-1?o:o-1,i.removeClass(p.active),n.removeClass(p.active).eq(t).addClass(p.active).closest(i).addClass(p.active),e.preventDefault()):r==s.downArrow&&(f.verbose("Down key pressed, changing active result"),t=o+1>=a?o:o+1,i.removeClass(p.active),n.removeClass(p.active).eq(t).addClass(p.active).closest(i).addClass(p.active),e.preventDefault());else r==s.enter&&(f.verbose("Enter key pressed, executing query"),f.query(),f.set.buttonPressed(),T.one("keyup",f.remove.buttonFocus))},setup:{api:function(){var e={debug:g.debug,on:!1,cache:"local",action:"search",onError:f.error};f.verbose("First request, initializing API"),S.api(e)}},can:{useAPI:function(){return e.fn.api!==i},show:function(){return f.is.focused()&&!f.is.visible()&&!f.is.empty()},transition:function(){return g.transition&&e.fn.transition!==i&&S.transition("is supported")}},is:{empty:function(){return""===R.html()},visible:function(){return R.filter(":visible").length>0},focused:function(){return T.filter(":focus").length>0}},trigger:{blur:function(){var e=n.createEvent("HTMLEvents"),t=T[0];t&&(f.verbose("Triggering native blur event"),e.initEvent("blur",!1,!1),t.dispatchEvent(e))}},get:{inputEvent:function(){var e=T[0],t=e!==i&&e.oninput!==i?"input":e!==i&&e.onpropertychange!==i?"propertychange":"keyup";return t},value:function(){return T.val()},results:function(){var e=S.data(v.results);return e},result:function(t,n){var o=["title","id"],a=!1;return t=t!==i?t:f.get.value(),n=n!==i?n:f.get.results(),"category"===g.type?(f.debug("Finding result that matches",t),e.each(n,function(n,i){return e.isArray(i.results)&&(a=f.search.object(t,i.results,o)[0])?!1:void 0})):(f.debug("Finding result in results object",t),a=f.search.object(t,n,o)[0]),a||!1}},set:{focus:function(){S.addClass(p.focus)},loading:function(){S.addClass(p.loading)},value:function(e){f.verbose("Setting search input value",e),T.val(e)},type:function(e){e=e||g.type,"category"==g.type&&S.addClass(g.type)},buttonPressed:function(){A.addClass(p.pressed)}},remove:{loading:function(){S.removeClass(p.loading)},focus:function(){S.removeClass(p.focus)},buttonPressed:function(){A.removeClass(p.pressed)}},query:function(){var t=f.get.value(),n=f.read.cache(t);f.has.minimumCharacters()?(n?(f.debug("Reading result from cache",t),f.save.results(n.results),f.addResults(n.html),f.inject.id(n.results)):(f.debug("Querying for",t),e.isPlainObject(g.source)||e.isArray(g.source)?f.search.local(t):f.can.useAPI()?f.search.remote(t):f.error(x.source)),g.onSearchQuery.call(E,t)):f.hideResults()},search:{local:function(e){var t,n=f.search.object(e,g.content);f.set.loading(),f.save.results(n),f.debug("Returned local search results",n),t=f.generateResults({results:n}),f.remove.loading(),f.addResults(t),f.inject.id(n),f.write.cache(e,{html:t,results:n})},remote:function(t){var n={onSuccess:function(e){f.parse.response.call(E,e,t)},onFailure:function(){f.displayMessage(x.serverError)},urlData:{query:t}};S.api("get request")||f.setup.api(),e.extend(!0,n,g.apiSettings),f.debug("Executing search",n),f.cancel.query(),S.api("setting",n).api("query")},object:function(t,n,o){var a=[],r=[],s=t.toString().replace(h.escape,"\\$&"),c=new RegExp(h.beginsWith+s,"i"),l=function(t,n){var i=-1==e.inArray(n,a),o=-1==e.inArray(n,r);i&&o&&t.push(n)};return n=n||g.source,o=o!==i?o:g.searchFields,e.isArray(o)||(o=[o]),n===i||n===!1?(f.error(x.source),[]):(e.each(o,function(i,o){e.each(n,function(e,n){var i="string"==typeof n[o];i&&(-1!==n[o].search(c)?l(a,n):g.searchFullText&&f.fuzzySearch(t,n[o])&&l(r,n))})}),e.merge(a,r))}},fuzzySearch:function(e,t){var n=t.length,i=e.length;if("string"!=typeof e)return!1;if(e=e.toLowerCase(),t=t.toLowerCase(),i>n)return!1;if(i===n)return e===t;e:for(var o=0,a=0;i>o;o++){for(var r=e.charCodeAt(o);n>a;)if(t.charCodeAt(a++)===r)continue e;return!1}return!0},parse:{response:function(e,t){var n=f.generateResults(e);f.verbose("Parsing server response",e),e!==i&&t!==i&&e[b.results]!==i&&(f.addResults(n),f.inject.id(e[b.results]),f.write.cache(t,{html:n,results:e[b.results]}),f.save.results(e[b.results]))}},cancel:{query:function(){f.can.useAPI()&&S.api("abort")}},has:{minimumCharacters:function(){var e=f.get.value(),t=e.length;return t>=g.minCharacters}},clear:{cache:function(e){var t=S.data(v.cache);e?e&&t&&t[e]&&(f.debug("Removing value from cache",e),delete t[e],S.data(v.cache,t)):(f.debug("Clearing cache",e),S.removeData(v.cache))}},read:{cache:function(e){var t=S.data(v.cache);return g.cache?(f.verbose("Checking cache for generated html for query",e),"object"==typeof t&&t[e]!==i?t[e]:!1):!1}},create:{id:function(e,t){var n,o,a=e+1;return t!==i?(n=String.fromCharCode(97+t),o=n+a,f.verbose("Creating category result id",o)):(o=a,f.verbose("Creating result id",o)),o},results:function(){0===R.length&&(R=e("<div />").addClass(p.results).appendTo(S))}},inject:{result:function(e,t,n){f.verbose("Injecting result into results");var o=n!==i?R.children().eq(n).children(y.result).eq(t):R.children(y.result).eq(t);f.verbose("Injecting results metadata",o),o.data(v.result,e)},id:function(t){f.debug("Injecting unique ids into results");var n=0,o=0;return"category"===g.type?e.each(t,function(t,a){o=0,e.each(a.results,function(e,t){var r=a.results[e];r.id===i&&(r.id=f.create.id(o,n)),f.inject.result(r,o,n),o++}),n++}):e.each(t,function(e,n){var a=t[e];a.id===i&&(a.id=f.create.id(o)),f.inject.result(a,o),o++}),t}},save:{results:function(e){f.verbose("Saving current search results to metadata",e),S.data(v.results,e)}},write:{cache:function(e,t){var n=S.data(v.cache)!==i?S.data(v.cache):{};g.cache&&(f.verbose("Writing generated html to cache",e,t),n[e]=t,S.data(v.cache,n))}},addResults:function(t){return e.isFunction(g.onResultsAdd)&&g.onResultsAdd.call(R,t)===!1?(f.debug("onResultsAdd callback cancelled default action"),!1):(R.html(t),void(f.can.show()&&f.showResults()))},showResults:function(){f.is.visible()||(f.can.transition()?(f.debug("Showing results with css animations"),R.transition({animation:g.transition+" in",debug:g.debug,verbose:g.verbose,duration:g.duration,queue:!0})):(f.debug("Showing results with javascript"),R.stop().fadeIn(g.duration,g.easing)),g.onResultsOpen.call(R))},hideResults:function(){f.is.visible()&&(f.can.transition()?(f.debug("Hiding results with css animations"),R.transition({animation:g.transition+" out",debug:g.debug,verbose:g.verbose,duration:g.duration,queue:!0})):(f.debug("Hiding results with javascript"),R.stop().fadeOut(g.duration,g.easing)),g.onResultsClose.call(R))},generateResults:function(t){f.debug("Generating html from response",t);var n=g.templates[g.type],i=e.isPlainObject(t[b.results])&&!e.isEmptyObject(t[b.results]),o=e.isArray(t[b.results])&&t[b.results].length>0,a="";return i||o?(g.maxResults>0&&(i?"standard"==g.type&&f.error(x.maxResults):t[b.results]=t[b.results].slice(0,g.maxResults)),e.isFunction(n)?a=n(t,b):f.error(x.noTemplate,!1)):a=f.displayMessage(x.noResults,"empty"),g.onResults.call(E,t),a},displayMessage:function(e,t){return t=t||"standard",f.debug("Displaying message",e,t),f.addResults(g.templates.message(e,t)),g.templates.message(e,t)},setting:function(t,n){if(e.isPlainObject(t))e.extend(!0,g,t);else{ +if(n===i)return g[t];g[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,f,t);else{if(n===i)return f[t];f[t]=n}},debug:function(){g.debug&&(g.performance?f.performance.log(arguments):(f.debug=Function.prototype.bind.call(console.info,console,g.name+":"),f.debug.apply(console,arguments)))},verbose:function(){g.verbose&&g.debug&&(g.performance?f.performance.log(arguments):(f.verbose=Function.prototype.bind.call(console.info,console,g.name+":"),f.verbose.apply(console,arguments)))},error:function(){f.error=Function.prototype.bind.call(console.error,console,g.name+":"),f.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;g.performance&&(t=(new Date).getTime(),i=c||t,n=t-i,c=t,l.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:E,"Execution Time":n})),clearTimeout(f.performance.timer),f.performance.timer=setTimeout(f.performance.display,500)},display:function(){var t=g.name+":",n=0;c=!1,clearTimeout(f.performance.timer),e.each(l,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",s&&(t+=" '"+s+"'"),r.length>1&&(t+=" ("+r.length+")"),(console.group!==i||console.table!==i)&&l.length>0&&(console.groupCollapsed(t),console.table?console.table(l):e.each(l,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),l=[]}},invoke:function(t,n,o){var r,s,c,l=P;return n=n||m,o=E||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},d?(P===i&&f.initialize(),f.invoke(u)):(P!==i&&P.invoke("destroy"),f.initialize())}),a!==i?a:this},e.fn.search.settings={name:"Search",namespace:"search",debug:!1,verbose:!1,performance:!0,type:"standard",minCharacters:1,apiSettings:!1,source:!1,searchFields:["title","description"],displayField:"",searchFullText:!0,automatic:!0,hideDelay:0,searchDelay:200,maxResults:7,cache:!0,transition:"scale",duration:200,easing:"easeOutExpo",onSelect:!1,onResultsAdd:!1,onSearchQuery:function(e){},onResults:function(e){},onResultsOpen:function(){},onResultsClose:function(){},className:{active:"active",empty:"empty",focus:"focus",loading:"loading",results:"results",pressed:"down"},error:{source:"Cannot search. No source used, and Semantic API module was not included",noResults:"Your search returned no results",logging:"Error in debug logging, exiting.",noEndpoint:"No search endpoint was specified",noTemplate:"A valid template name was not specified.",serverError:"There was an issue querying the server.",maxResults:"Results must be an array to use maxResults setting",method:"The method you called is not defined."},metadata:{cache:"cache",results:"results",result:"result"},regExp:{escape:/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,beginsWith:"(?:s|^)"},fields:{categories:"results",categoryName:"name",categoryResults:"results",description:"description",image:"image",price:"price",results:"results",title:"title",url:"url",action:"action",actionText:"text",actionURL:"url"},selector:{prompt:".prompt",searchButton:".search.button",results:".results",category:".category",result:".result",title:".title, .name"},templates:{escape:function(e){var t=/[&<>"'`]/g,n=/[&<>"'`]/,i={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},o=function(e){return i[e]};return n.test(e)?e.replace(t,o):e},message:function(e,t){var n="";return e!==i&&t!==i&&(n+='<div class="message '+t+'">',n+="empty"==t?'<div class="header">No Results</div class="header"><div class="description">'+e+'</div class="description">':' <div class="description">'+e+"</div>",n+="</div>"),n},category:function(t,n){var o="";e.fn.search.settings.templates.escape;return t[n.categoryResults]!==i?(e.each(t[n.categoryResults],function(t,a){a[n.results]!==i&&a.results.length>0&&(o+='<div class="category">',a[n.categoryName]!==i&&(o+='<div class="name">'+a[n.categoryName]+"</div>"),e.each(a.results,function(e,t){o+=t[n.url]?'<a class="result" href="'+t[n.url]+'">':'<a class="result">',t[n.image]!==i&&(o+='<div class="image"> <img src="'+t[n.image]+'"></div>'),o+='<div class="content">',t[n.price]!==i&&(o+='<div class="price">'+t[n.price]+"</div>"),t[n.title]!==i&&(o+='<div class="title">'+t[n.title]+"</div>"),t[n.description]!==i&&(o+='<div class="description">'+t[n.description]+"</div>"),o+="</div>",o+="</a>"}),o+="</div>")}),t[n.action]&&(o+='<a href="'+t[n.action][n.actionURL]+'" class="action">'+t[n.action][n.actionText]+"</a>"),o):!1},standard:function(t,n){var o="";return t[n.results]!==i?(e.each(t[n.results],function(e,t){o+=t[n.url]?'<a class="result" href="'+t[n.url]+'">':'<a class="result">',t[n.image]!==i&&(o+='<div class="image"> <img src="'+t[n.image]+'"></div>'),o+='<div class="content">',t[n.price]!==i&&(o+='<div class="price">'+t[n.price]+"</div>"),t[n.title]!==i&&(o+='<div class="title">'+t[n.title]+"</div>"),t[n.description]!==i&&(o+='<div class="description">'+t[n.description]+"</div>"),o+="</div>",o+="</a>"}),t[n.action]&&(o+='<a href="'+t[n.action][n.actionURL]+'" class="action">'+t[n.action][n.actionText]+"</a>"),o):!1}}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.shape=function(o){var a,r=e(this),s=(e("body"),(new Date).getTime()),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1),m=t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)};return r.each(function(){var t,f,g,p=r.selector||"",v=e.isPlainObject(o)?e.extend(!0,{},e.fn.shape.settings,o):e.extend({},e.fn.shape.settings),h=v.namespace,b=v.selector,y=v.error,x=v.className,C="."+h,w="module-"+h,k=e(this),S=k.find(b.sides),T=k.find(b.side),A=!1,R=this,E=k.data(w);g={initialize:function(){g.verbose("Initializing module for",R),g.set.defaultSide(),g.instantiate()},instantiate:function(){g.verbose("Storing instance of module",g),E=g,k.data(w,E)},destroy:function(){g.verbose("Destroying previous module for",R),k.removeData(w).off(C)},refresh:function(){g.verbose("Refreshing selector cache for",R),k=e(R),S=e(this).find(b.shape),T=e(this).find(b.side)},repaint:function(){g.verbose("Forcing repaint event");var e=S[0]||n.createElement("div");e.offsetWidth},animate:function(e,n){g.verbose("Animating box with properties",e),n=n||function(e){g.verbose("Executing animation callback"),e!==i&&e.stopPropagation(),g.reset(),g.set.active()},v.beforeChange.call(f[0]),g.get.transitionEvent()?(g.verbose("Starting CSS animation"),k.addClass(x.animating),S.css(e).one(g.get.transitionEvent(),n),g.set.duration(v.duration),m(function(){k.addClass(x.animating),t.addClass(x.hidden)})):n()},queue:function(e){g.debug("Queueing animation of",e),S.one(g.get.transitionEvent(),function(){g.debug("Executing queued animation"),setTimeout(function(){k.shape(e)},0)})},reset:function(){g.verbose("Animating states reset"),k.removeClass(x.animating).attr("style","").removeAttr("style"),S.attr("style","").removeAttr("style"),T.attr("style","").removeAttr("style").removeClass(x.hidden),f.removeClass(x.animating).attr("style","").removeAttr("style")},is:{complete:function(){return T.filter("."+x.active)[0]==f[0]},animating:function(){return k.hasClass(x.animating)}},set:{defaultSide:function(){t=k.find("."+v.className.active),f=t.next(b.side).length>0?t.next(b.side):k.find(b.side).first(),A=!1,g.verbose("Active side set to",t),g.verbose("Next side set to",f)},duration:function(e){e=e||v.duration,e="number"==typeof e?e+"ms":e,g.verbose("Setting animation duration",e),(v.duration||0===v.duration)&&S.add(T).css({"-webkit-transition-duration":e,"-moz-transition-duration":e,"-ms-transition-duration":e,"-o-transition-duration":e,"transition-duration":e})},currentStageSize:function(){var e=k.find("."+v.className.active),t=e.outerWidth(!0),n=e.outerHeight(!0);k.css({width:t,height:n})},stageSize:function(){var e=k.clone().addClass(x.loading),t=e.find("."+v.className.active),n=A?e.find(b.side).eq(A):t.next(b.side).length>0?t.next(b.side):e.find(b.side).first(),i={};g.set.currentStageSize(),t.removeClass(x.active),n.addClass(x.active),e.insertAfter(k),i={width:n.outerWidth(!0),height:n.outerHeight(!0)},e.remove(),k.css(i),g.verbose("Resizing stage to fit new content",i)},nextSide:function(e){A=e,f=T.filter(e),A=T.index(f),0===f.length&&(g.set.defaultSide(),g.error(y.side)),g.verbose("Next side manually set to",f)},active:function(){g.verbose("Setting new side to active",f),T.removeClass(x.active),f.addClass(x.active),v.onChange.call(f[0]),g.set.defaultSide()}},flip:{up:function(){return!g.is.complete()||g.is.animating()||v.allowRepeats?void(g.is.animating()?g.queue("flip up"):(g.debug("Flipping up",f),g.set.stageSize(),g.stage.above(),g.animate(g.get.transform.up()))):void g.debug("Side already visible",f)},down:function(){return!g.is.complete()||g.is.animating()||v.allowRepeats?void(g.is.animating()?g.queue("flip down"):(g.debug("Flipping down",f),g.set.stageSize(),g.stage.below(),g.animate(g.get.transform.down()))):void g.debug("Side already visible",f)},left:function(){return!g.is.complete()||g.is.animating()||v.allowRepeats?void(g.is.animating()?g.queue("flip left"):(g.debug("Flipping left",f),g.set.stageSize(),g.stage.left(),g.animate(g.get.transform.left()))):void g.debug("Side already visible",f)},right:function(){return!g.is.complete()||g.is.animating()||v.allowRepeats?void(g.is.animating()?g.queue("flip right"):(g.debug("Flipping right",f),g.set.stageSize(),g.stage.right(),g.animate(g.get.transform.right()))):void g.debug("Side already visible",f)},over:function(){return!g.is.complete()||g.is.animating()||v.allowRepeats?void(g.is.animating()?g.queue("flip over"):(g.debug("Flipping over",f),g.set.stageSize(),g.stage.behind(),g.animate(g.get.transform.over()))):void g.debug("Side already visible",f)},back:function(){return!g.is.complete()||g.is.animating()||v.allowRepeats?void(g.is.animating()?g.queue("flip back"):(g.debug("Flipping back",f),g.set.stageSize(),g.stage.behind(),g.animate(g.get.transform.back()))):void g.debug("Side already visible",f)}},get:{transform:{up:function(){var e={y:-((t.outerHeight(!0)-f.outerHeight(!0))/2),z:-(t.outerHeight(!0)/2)};return{transform:"translateY("+e.y+"px) translateZ("+e.z+"px) rotateX(-90deg)"}},down:function(){var e={y:-((t.outerHeight(!0)-f.outerHeight(!0))/2),z:-(t.outerHeight(!0)/2)};return{transform:"translateY("+e.y+"px) translateZ("+e.z+"px) rotateX(90deg)"}},left:function(){var e={x:-((t.outerWidth(!0)-f.outerWidth(!0))/2),z:-(t.outerWidth(!0)/2)};return{transform:"translateX("+e.x+"px) translateZ("+e.z+"px) rotateY(90deg)"}},right:function(){var e={x:-((t.outerWidth(!0)-f.outerWidth(!0))/2),z:-(t.outerWidth(!0)/2)};return{transform:"translateX("+e.x+"px) translateZ("+e.z+"px) rotateY(-90deg)"}},over:function(){var e={x:-((t.outerWidth(!0)-f.outerWidth(!0))/2)};return{transform:"translateX("+e.x+"px) rotateY(180deg)"}},back:function(){var e={x:-((t.outerWidth(!0)-f.outerWidth(!0))/2)};return{transform:"translateX("+e.x+"px) rotateY(-180deg)"}}},transitionEvent:function(){var e,t=n.createElement("element"),o={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(e in o)if(t.style[e]!==i)return o[e]},nextSide:function(){return t.next(b.side).length>0?t.next(b.side):k.find(b.side).first()}},stage:{above:function(){var e={origin:(t.outerHeight(!0)-f.outerHeight(!0))/2,depth:{active:f.outerHeight(!0)/2,next:t.outerHeight(!0)/2}};g.verbose("Setting the initial animation position as above",f,e),S.css({transform:"translateZ(-"+e.depth.active+"px)"}),t.css({transform:"rotateY(0deg) translateZ("+e.depth.active+"px)"}),f.addClass(x.animating).css({top:e.origin+"px",transform:"rotateX(90deg) translateZ("+e.depth.next+"px)"})},below:function(){var e={origin:(t.outerHeight(!0)-f.outerHeight(!0))/2,depth:{active:f.outerHeight(!0)/2,next:t.outerHeight(!0)/2}};g.verbose("Setting the initial animation position as below",f,e),S.css({transform:"translateZ(-"+e.depth.active+"px)"}),t.css({transform:"rotateY(0deg) translateZ("+e.depth.active+"px)"}),f.addClass(x.animating).css({top:e.origin+"px",transform:"rotateX(-90deg) translateZ("+e.depth.next+"px)"})},left:function(){var e={active:t.outerWidth(!0),next:f.outerWidth(!0)},n={origin:(e.active-e.next)/2,depth:{active:e.next/2,next:e.active/2}};g.verbose("Setting the initial animation position as left",f,n),S.css({transform:"translateZ(-"+n.depth.active+"px)"}),t.css({transform:"rotateY(0deg) translateZ("+n.depth.active+"px)"}),f.addClass(x.animating).css({left:n.origin+"px",transform:"rotateY(-90deg) translateZ("+n.depth.next+"px)"})},right:function(){var e={active:t.outerWidth(!0),next:f.outerWidth(!0)},n={origin:(e.active-e.next)/2,depth:{active:e.next/2,next:e.active/2}};g.verbose("Setting the initial animation position as left",f,n),S.css({transform:"translateZ(-"+n.depth.active+"px)"}),t.css({transform:"rotateY(0deg) translateZ("+n.depth.active+"px)"}),f.addClass(x.animating).css({left:n.origin+"px",transform:"rotateY(90deg) translateZ("+n.depth.next+"px)"})},behind:function(){var e={active:t.outerWidth(!0),next:f.outerWidth(!0)},n={origin:(e.active-e.next)/2,depth:{active:e.next/2,next:e.active/2}};g.verbose("Setting the initial animation position as behind",f,n),t.css({transform:"rotateY(0deg)"}),f.addClass(x.animating).css({left:n.origin+"px",transform:"rotateY(-180deg)"})}},setting:function(t,n){if(g.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,v,t);else{if(n===i)return v[t];v[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,g,t);else{if(n===i)return g[t];g[t]=n}},debug:function(){v.debug&&(v.performance?g.performance.log(arguments):(g.debug=Function.prototype.bind.call(console.info,console,v.name+":"),g.debug.apply(console,arguments)))},verbose:function(){v.verbose&&v.debug&&(v.performance?g.performance.log(arguments):(g.verbose=Function.prototype.bind.call(console.info,console,v.name+":"),g.verbose.apply(console,arguments)))},error:function(){g.error=Function.prototype.bind.call(console.error,console,v.name+":"),g.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;v.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:R,"Execution Time":n})),clearTimeout(g.performance.timer),g.performance.timer=setTimeout(g.performance.display,500)},display:function(){var t=v.name+":",n=0;s=!1,clearTimeout(g.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",p&&(t+=" '"+p+"'"),r.length>1&&(t+=" ("+r.length+")"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,o){var r,s,c,l=E;return n=n||d,o=R||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},u?(E===i&&g.initialize(),g.invoke(l)):(E!==i&&E.invoke("destroy"),g.initialize())}),a!==i?a:this},e.fn.shape.settings={name:"Shape",debug:!1,verbose:!1,performance:!0,namespace:"shape",beforeChange:function(){},onChange:function(){},allowRepeats:!1,duration:!1,error:{side:"You tried to switch to a side that does not exist.",method:"The method you called is not defined"},className:{animating:"animating",hidden:"hidden",loading:"loading",active:"active"},selector:{sides:".sides",side:".side"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.sidebar=function(o){var a,r=e(this),s=e(t),c=e(n),l=e("html"),u=e("head"),d=r.selector||"",m=(new Date).getTime(),f=[],g=arguments[0],p="string"==typeof g,v=[].slice.call(arguments,1),h=t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)};return r.each(function(){var r,b,y,x,C,w,k=e.isPlainObject(o)?e.extend(!0,{},e.fn.sidebar.settings,o):e.extend({},e.fn.sidebar.settings),S=k.selector,T=k.className,A=k.namespace,R=k.regExp,E=k.error,P="."+A,F="module-"+A,D=e(this),O=e(k.context),q=D.children(S.sidebar),j=O.children(S.fixed),z=O.children(S.pusher),I=this,L=D.data(F);w={initialize:function(){w.debug("Initializing sidebar",o),w.create.id(),C=w.get.transitionEvent(),w.is.ios()&&w.set.ios(),k.delaySetup?h(w.setup.layout):w.setup.layout(),h(function(){w.setup.cache()}),w.instantiate()},instantiate:function(){w.verbose("Storing instance of module",w),L=w,D.data(F,w)},create:{id:function(){y=(Math.random().toString(16)+"000000000").substr(2,8),b="."+y,w.verbose("Creating unique id for element",y)}},destroy:function(){w.verbose("Destroying previous module for",D),D.off(P).removeData(F),w.is.ios()&&w.remove.ios(),O.off(b),s.off(b),c.off(b)},event:{clickaway:function(e){var t=z.find(e.target).length>0||z.is(e.target),n=O.is(e.target);t&&(w.verbose("User clicked on dimmed page"),w.hide()),n&&(w.verbose("User clicked on dimmable context (scaled out page)"),w.hide())},touch:function(e){},containScroll:function(e){I.scrollTop<=0&&(I.scrollTop=1),I.scrollTop+I.offsetHeight>=I.scrollHeight&&(I.scrollTop=I.scrollHeight-I.offsetHeight-1)},scroll:function(t){0===e(t.target).closest(S.sidebar).length&&t.preventDefault()}},bind:{clickaway:function(){w.verbose("Adding clickaway events to context",O),k.closable&&O.on("click"+b,w.event.clickaway).on("touchend"+b,w.event.clickaway)},scrollLock:function(){k.scrollLock&&(w.debug("Disabling page scroll"),s.on("DOMMouseScroll"+b,w.event.scroll)),w.verbose("Adding events to contain sidebar scroll"),c.on("touchmove"+b,w.event.touch),D.on("scroll"+P,w.event.containScroll)}},unbind:{clickaway:function(){w.verbose("Removing clickaway events from context",O),O.off(b)},scrollLock:function(){w.verbose("Removing scroll lock from page"),c.off(b),s.off(b),D.off("scroll"+P)}},add:{inlineCSS:function(){var t,n=w.cache.width||D.outerWidth(),i=w.cache.height||D.outerHeight(),o=w.is.rtl(),a=w.get.direction(),s={left:n,right:-n,top:i,bottom:-i};o&&(w.verbose("RTL detected, flipping widths"),s.left=-n,s.right=n),t="<style>","left"===a||"right"===a?(w.debug("Adding CSS rules for animation distance",n),t+=" .ui.visible."+a+".sidebar ~ .fixed, .ui.visible."+a+".sidebar ~ .pusher { -webkit-transform: translate3d("+s[a]+"px, 0, 0); transform: translate3d("+s[a]+"px, 0, 0); }"):("top"===a||"bottom"==a)&&(t+=" .ui.visible."+a+".sidebar ~ .fixed, .ui.visible."+a+".sidebar ~ .pusher { -webkit-transform: translate3d(0, "+s[a]+"px, 0); transform: translate3d(0, "+s[a]+"px, 0); }"),w.is.ie()&&("left"===a||"right"===a?(w.debug("Adding CSS rules for animation distance",n),t+=" body.pushable > .ui.visible."+a+".sidebar ~ .pusher:after { -webkit-transform: translate3d("+s[a]+"px, 0, 0); transform: translate3d("+s[a]+"px, 0, 0); }"):("top"===a||"bottom"==a)&&(t+=" body.pushable > .ui.visible."+a+".sidebar ~ .pusher:after { -webkit-transform: translate3d(0, "+s[a]+"px, 0); transform: translate3d(0, "+s[a]+"px, 0); }"),t+=" body.pushable > .ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .pusher:after, body.pushable > .ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .pusher:after { -webkit-transform: translate3d(0px, 0, 0); transform: translate3d(0px, 0, 0); }"),t+="</style>",r=e(t).appendTo(u),w.debug("Adding sizing css to head",r)}},refresh:function(){w.verbose("Refreshing selector cache"),O=e(k.context),q=O.children(S.sidebar),z=O.children(S.pusher),j=O.children(S.fixed),w.clear.cache()},refreshSidebars:function(){w.verbose("Refreshing other sidebars"),q=O.children(S.sidebar)},repaint:function(){w.verbose("Forcing repaint event"),I.style.display="none";I.offsetHeight;I.scrollTop=I.scrollTop,I.style.display=""},setup:{cache:function(){w.cache={width:D.outerWidth(),height:D.outerHeight(),rtl:"rtl"==D.css("direction")}},layout:function(){0===O.children(S.pusher).length&&(w.debug("Adding wrapper element for sidebar"),w.error(E.pusher),z=e('<div class="pusher" />'),O.children().not(S.omitted).not(q).wrapAll(z),w.refresh()),(0===D.nextAll(S.pusher).length||D.nextAll(S.pusher)[0]!==z[0])&&(w.debug("Moved sidebar to correct parent element"),w.error(E.movedSidebar,I),D.detach().prependTo(O),w.refresh()),w.clear.cache(),w.set.pushable(),w.set.direction()}},attachEvents:function(t,n){var i=e(t);n=e.isFunction(w[n])?w[n]:w.toggle,i.length>0?(w.debug("Attaching sidebar events to element",t,n),i.on("click"+P,n)):w.error(E.notFound,t)},show:function(t){if(t=e.isFunction(t)?t:function(){},w.is.hidden()){if(w.refreshSidebars(),k.overlay&&(w.error(E.overlay),k.transition="overlay"),w.refresh(),w.othersActive())if(w.debug("Other sidebars currently visible"),k.exclusive){if("overlay"!=k.transition)return void w.hideOthers(w.show);w.hideOthers()}else k.transition="overlay";w.pushPage(function(){t.call(I),k.onShow.call(I)}),k.onChange.call(I),k.onVisible.call(I)}else w.debug("Sidebar is already visible")},hide:function(t){t=e.isFunction(t)?t:function(){},(w.is.visible()||w.is.animating())&&(w.debug("Hiding sidebar",t),w.refreshSidebars(),w.pullPage(function(){t.call(I),k.onHidden.call(I)}),k.onChange.call(I),k.onHide.call(I))},othersAnimating:function(){return q.not(D).filter("."+T.animating).length>0},othersVisible:function(){return q.not(D).filter("."+T.visible).length>0},othersActive:function(){return w.othersVisible()||w.othersAnimating()},hideOthers:function(e){var t=q.not(D).filter("."+T.visible),n=t.length,i=0;e=e||function(){},t.sidebar("hide",function(){i++,i==n&&e()})},toggle:function(){w.verbose("Determining toggled direction"),w.is.hidden()?w.show():w.hide()},pushPage:function(t){var n,i,o,a=w.get.transition(),r="overlay"===a||w.othersActive()?D:z;t=e.isFunction(t)?t:function(){},"scale down"==k.transition&&w.scrollToTop(),w.set.transition(a),w.repaint(),n=function(){w.bind.clickaway(),w.add.inlineCSS(),w.set.animating(),w.set.visible()},i=function(){w.set.dimmed()},o=function(e){e.target==r[0]&&(r.off(C+b,o),w.remove.animating(),w.bind.scrollLock(),t.call(I))},r.off(C+b),r.on(C+b,o),h(n),k.dimPage&&!w.othersVisible()&&h(i)},pullPage:function(t){var n,i,o=w.get.transition(),a="overlay"==o||w.othersActive()?D:z;t=e.isFunction(t)?t:function(){},w.verbose("Removing context push state",w.get.direction()),w.unbind.clickaway(),w.unbind.scrollLock(),n=function(){w.set.transition(o),w.set.animating(),w.remove.visible(),k.dimPage&&!w.othersVisible()&&z.removeClass(T.dimmed)},i=function(e){e.target==a[0]&&(a.off(C+b,i),w.remove.animating(),w.remove.transition(),w.remove.inlineCSS(),("scale down"==o||k.returnScroll&&w.is.mobile())&&w.scrollBack(),t.call(I))},a.off(C+b),a.on(C+b,i),h(n)},scrollToTop:function(){w.verbose("Scrolling to top of page to avoid animation issues"),x=e(t).scrollTop(),D.scrollTop(0),t.scrollTo(0,0)},scrollBack:function(){w.verbose("Scrolling back to original page position"),t.scrollTo(0,x)},clear:{cache:function(){w.verbose("Clearing cached dimensions"),w.cache={}}},set:{ios:function(){l.addClass(T.ios)},pushed:function(){O.addClass(T.pushed)},pushable:function(){O.addClass(T.pushable)},dimmed:function(){z.addClass(T.dimmed)},active:function(){D.addClass(T.active)},animating:function(){D.addClass(T.animating)},transition:function(e){e=e||w.get.transition(),D.addClass(e)},direction:function(e){e=e||w.get.direction(),D.addClass(T[e])},visible:function(){D.addClass(T.visible)},overlay:function(){D.addClass(T.overlay)}},remove:{inlineCSS:function(){w.debug("Removing inline css styles",r),r&&r.length>0&&r.remove()},ios:function(){l.removeClass(T.ios)},pushed:function(){O.removeClass(T.pushed)},pushable:function(){O.removeClass(T.pushable)},active:function(){D.removeClass(T.active)},animating:function(){D.removeClass(T.animating)},transition:function(e){e=e||w.get.transition(),D.removeClass(e)},direction:function(e){e=e||w.get.direction(),D.removeClass(T[e])},visible:function(){D.removeClass(T.visible)},overlay:function(){D.removeClass(T.overlay)}},get:{direction:function(){return D.hasClass(T.top)?T.top:D.hasClass(T.right)?T.right:D.hasClass(T.bottom)?T.bottom:T.left},transition:function(){var e,t=w.get.direction();return e=w.is.mobile()?"auto"==k.mobileTransition?k.defaultTransition.mobile[t]:k.mobileTransition:"auto"==k.transition?k.defaultTransition.computer[t]:k.transition,w.verbose("Determined transition",e),e},transitionEvent:function(){var e,t=n.createElement("element"),o={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(e in o)if(t.style[e]!==i)return o[e]}},is:{ie:function(){var e=!t.ActiveXObject&&"ActiveXObject"in t,n="ActiveXObject"in t;return e||n},ios:function(){var e=navigator.userAgent,t=e.match(R.ios),n=e.match(R.mobileChrome);return t&&!n?(w.verbose("Browser was found to be iOS",e),!0):!1},mobile:function(){var e=navigator.userAgent,t=e.match(R.mobile);return t?(w.verbose("Browser was found to be mobile",e),!0):(w.verbose("Browser is not mobile, using regular transition",e),!1)},hidden:function(){return!w.is.visible()},visible:function(){return D.hasClass(T.visible)},open:function(){return w.is.visible()},closed:function(){return w.is.hidden()},vertical:function(){return D.hasClass(T.top)},animating:function(){return O.hasClass(T.animating)},rtl:function(){return w.cache.rtl===i&&(w.cache.rtl="rtl"==D.css("direction")),w.cache.rtl}},setting:function(t,n){if(w.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,k,t);else{if(n===i)return k[t];k[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,w,t);else{if(n===i)return w[t];w[t]=n}},debug:function(){k.debug&&(k.performance?w.performance.log(arguments):(w.debug=Function.prototype.bind.call(console.info,console,k.name+":"),w.debug.apply(console,arguments)))},verbose:function(){k.verbose&&k.debug&&(k.performance?w.performance.log(arguments):(w.verbose=Function.prototype.bind.call(console.info,console,k.name+":"),w.verbose.apply(console,arguments)))},error:function(){w.error=Function.prototype.bind.call(console.error,console,k.name+":"),w.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;k.performance&&(t=(new Date).getTime(),i=m||t,n=t-i,m=t,f.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:I,"Execution Time":n})),clearTimeout(w.performance.timer),w.performance.timer=setTimeout(w.performance.display,500)},display:function(){var t=k.name+":",n=0;m=!1,clearTimeout(w.performance.timer),e.each(f,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",d&&(t+=" '"+d+"'"),(console.group!==i||console.table!==i)&&f.length>0&&(console.groupCollapsed(t),console.table?console.table(f):e.each(f,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),f=[]}},invoke:function(t,n,o){var r,s,c,l=L;return n=n||v,o=I||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(w.error(E.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},p?(L===i&&w.initialize(),w.invoke(g)):(L!==i&&w.invoke("destroy"),w.initialize())}),a!==i?a:this},e.fn.sidebar.settings={name:"Sidebar",namespace:"sidebar",debug:!1,verbose:!1,performance:!0,transition:"auto",mobileTransition:"auto",defaultTransition:{computer:{left:"uncover",right:"uncover",top:"overlay",bottom:"overlay"},mobile:{left:"uncover",right:"uncover",top:"overlay",bottom:"overlay"}},context:"body",exclusive:!1,closable:!0,dimPage:!0,scrollLock:!1,returnScroll:!1,delaySetup:!1,duration:500,onChange:function(){},onShow:function(){},onHide:function(){},onHidden:function(){},onVisible:function(){},className:{active:"active",animating:"animating",dimmed:"dimmed",ios:"ios",pushable:"pushable",pushed:"pushed",right:"right",top:"top",left:"left",bottom:"bottom",visible:"visible"},selector:{fixed:".fixed",omitted:"script, link, style, .ui.modal, .ui.dimmer, .ui.nag, .ui.fixed",pusher:".pusher",sidebar:".ui.sidebar"},regExp:{ios:/(iPad|iPhone|iPod)/g,mobileChrome:/(CriOS)/g,mobile:/Mobile|iP(hone|od|ad)|Android|BlackBerry|IEMobile|Kindle|NetFront|Silk-Accelerated|(hpw|web)OS|Fennec|Minimo|Opera M(obi|ini)|Blazer|Dolfin|Dolphin|Skyfire|Zune/g},error:{method:"The method you called is not defined.",pusher:"Had to add pusher element. For optimal performance make sure body content is inside a pusher element",movedSidebar:"Had to move sidebar. For optimal performance make sure sidebar and pusher are direct children of your body tag",overlay:"The overlay setting is no longer supported, use animation: overlay",notFound:"There were no elements that matched the specified selector"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.sticky=function(n){var o,a=e(this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1);return a.each(function(){var a,m,f,g,p=e.isPlainObject(n)?e.extend(!0,{},e.fn.sticky.settings,n):e.extend({},e.fn.sticky.settings),v=p.className,h=p.namespace,b=p.error,y="."+h,x="module-"+h,C=e(this),w=e(t),k=e(p.scrollContext),S=(C.selector||"",C.data(x)),T=t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)},A=this;g={initialize:function(){g.determineContainer(),g.determineContext(),g.verbose("Initializing sticky",p,a),g.save.positions(),g.checkErrors(),g.bind.events(),p.observeChanges&&g.observeChanges(),g.instantiate()},instantiate:function(){g.verbose("Storing instance of module",g),S=g,C.data(x,g)},destroy:function(){g.verbose("Destroying previous instance"),g.reset(),f&&f.disconnect(),w.off("load"+y,g.event.load).off("resize"+y,g.event.resize),k.off("scrollchange"+y,g.event.scrollchange),C.removeData(x)},observeChanges:function(){var e=m[0];"MutationObserver"in t&&(f=new MutationObserver(function(e){clearTimeout(g.timer),g.timer=setTimeout(function(){g.verbose("DOM tree modified, updating sticky menu",e),g.refresh()},100)}),f.observe(A,{childList:!0,subtree:!0}),f.observe(e,{childList:!0,subtree:!0}),g.debug("Setting up mutation observer",f))},determineContainer:function(){a=C.offsetParent()},determineContext:function(){return m=p.context?e(p.context):a,0===m.length?void g.error(b.invalidContext,p.context,C):void 0},checkErrors:function(){return g.is.hidden()&&g.error(b.visible,C),g.cache.element.height>g.cache.context.height?(g.reset(),void g.error(b.elementSize,C)):void 0},bind:{events:function(){w.on("load"+y,g.event.load).on("resize"+y,g.event.resize),k.off("scroll"+y).on("scroll"+y,g.event.scroll).on("scrollchange"+y,g.event.scrollchange)}},event:{load:function(){g.verbose("Page contents finished loading"),T(g.refresh)},resize:function(){g.verbose("Window resized"),T(g.refresh)},scroll:function(){T(function(){k.triggerHandler("scrollchange"+y,k.scrollTop())})},scrollchange:function(e,t){g.stick(t),p.onScroll.call(A)}},refresh:function(e){g.reset(),p.context||g.determineContext(),e&&g.determineContainer(),g.save.positions(),g.stick(),p.onReposition.call(A)},supports:{sticky:function(){var t=e("<div/>");t[0];return t.addClass(v.supported),t.css("position").match("sticky")}},save:{lastScroll:function(e){g.lastScroll=e},elementScroll:function(e){g.elementScroll=e},positions:function(){var e={height:k.height()},t={margin:{top:parseInt(C.css("margin-top"),10),bottom:parseInt(C.css("margin-bottom"),10) +},offset:C.offset(),width:C.outerWidth(),height:C.outerHeight()},n={offset:m.offset(),height:m.outerHeight()};({height:a.outerHeight()});g.is.standardScroll()||(g.debug("Non-standard scroll. Removing scroll offset from element offset"),e.top=k.scrollTop(),e.left=k.scrollLeft(),t.offset.top+=e.top,n.offset.top+=e.top,t.offset.left+=e.left,n.offset.left+=e.left),g.cache={fits:t.height<e.height,scrollContext:{height:e.height},element:{margin:t.margin,top:t.offset.top-t.margin.top,left:t.offset.left,width:t.width,height:t.height,bottom:t.offset.top+t.height},context:{top:n.offset.top,height:n.height,bottom:n.offset.top+n.height}},g.set.containerSize(),g.set.size(),g.stick(),g.debug("Caching element positions",g.cache)}},get:{direction:function(e){var t="down";return e=e||k.scrollTop(),g.lastScroll!==i&&(g.lastScroll<e?t="down":g.lastScroll>e&&(t="up")),t},scrollChange:function(e){return e=e||k.scrollTop(),g.lastScroll?e-g.lastScroll:0},currentElementScroll:function(){return g.elementScroll?g.elementScroll:g.is.top()?Math.abs(parseInt(C.css("top"),10))||0:Math.abs(parseInt(C.css("bottom"),10))||0},elementScroll:function(e){e=e||k.scrollTop();var t=g.cache.element,n=g.cache.scrollContext,i=g.get.scrollChange(e),o=t.height-n.height+p.offset,a=g.get.currentElementScroll(),r=a+i;return a=g.cache.fits||0>r?0:r>o?o:r}},remove:{lastScroll:function(){delete g.lastScroll},elementScroll:function(e){delete g.elementScroll},offset:function(){C.css("margin-top","")}},set:{offset:function(){g.verbose("Setting offset on element",p.offset),C.css("margin-top",p.offset)},containerSize:function(){var e=a.get(0).tagName;"HTML"===e||"body"==e?g.determineContainer():Math.abs(a.outerHeight()-g.cache.context.height)>p.jitter&&(g.debug("Context has padding, specifying exact height for container",g.cache.context.height),a.css({height:g.cache.context.height}))},minimumSize:function(){var e=g.cache.element;a.css("min-height",e.height)},scroll:function(e){g.debug("Setting scroll on element",e),g.elementScroll!=e&&(g.is.top()&&C.css("bottom","").css("top",-e),g.is.bottom()&&C.css("top","").css("bottom",e))},size:function(){0!==g.cache.element.height&&0!==g.cache.element.width&&(A.style.setProperty("width",g.cache.element.width+"px","important"),A.style.setProperty("height",g.cache.element.height+"px","important"))}},is:{standardScroll:function(){return k[0]==t},top:function(){return C.hasClass(v.top)},bottom:function(){return C.hasClass(v.bottom)},initialPosition:function(){return!g.is.fixed()&&!g.is.bound()},hidden:function(){return!C.is(":visible")},bound:function(){return C.hasClass(v.bound)},fixed:function(){return C.hasClass(v.fixed)}},stick:function(e){var t=e||k.scrollTop(),n=g.cache,i=n.fits,o=n.element,a=n.scrollContext,r=n.context,s=g.is.bottom()&&p.pushing?p.bottomOffset:p.offset,e={top:t+s,bottom:t+s+a.height},c=(g.get.direction(e.top),i?0:g.get.elementScroll(e.top)),l=!i,u=0!==o.height;u&&(g.is.initialPosition()?e.top>=r.bottom?(g.debug("Initial element position is bottom of container"),g.bindBottom()):e.top>o.top&&(o.height+e.top-c>=r.bottom?(g.debug("Initial element position is bottom of container"),g.bindBottom()):(g.debug("Initial element position is fixed"),g.fixTop())):g.is.fixed()?g.is.top()?e.top<=o.top?(g.debug("Fixed element reached top of container"),g.setInitialPosition()):o.height+e.top-c>=r.bottom?(g.debug("Fixed element reached bottom of container"),g.bindBottom()):l&&(g.set.scroll(c),g.save.lastScroll(e.top),g.save.elementScroll(c)):g.is.bottom()&&(e.bottom-o.height<=o.top?(g.debug("Bottom fixed rail has reached top of container"),g.setInitialPosition()):e.bottom>=r.bottom?(g.debug("Bottom fixed rail has reached bottom of container"),g.bindBottom()):l&&(g.set.scroll(c),g.save.lastScroll(e.top),g.save.elementScroll(c))):g.is.bottom()&&(e.top<=o.top?(g.debug("Jumped from bottom fixed to top fixed, most likely used home/end button"),g.setInitialPosition()):p.pushing?g.is.bound()&&e.bottom<=r.bottom&&(g.debug("Fixing bottom attached element to bottom of browser."),g.fixBottom()):g.is.bound()&&e.top<=r.bottom-o.height&&(g.debug("Fixing bottom attached element to top of browser."),g.fixTop())))},bindTop:function(){g.debug("Binding element to top of parent container"),g.remove.offset(),C.css({left:"",top:"",marginBottom:""}).removeClass(v.fixed).removeClass(v.bottom).addClass(v.bound).addClass(v.top),p.onTop.call(A),p.onUnstick.call(A)},bindBottom:function(){g.debug("Binding element to bottom of parent container"),g.remove.offset(),C.css({left:"",top:""}).removeClass(v.fixed).removeClass(v.top).addClass(v.bound).addClass(v.bottom),p.onBottom.call(A),p.onUnstick.call(A)},setInitialPosition:function(){g.debug("Returning to initial position"),g.unfix(),g.unbind()},fixTop:function(){g.debug("Fixing element to top of page"),g.set.minimumSize(),g.set.offset(),C.css({left:g.cache.element.left,bottom:"",marginBottom:""}).removeClass(v.bound).removeClass(v.bottom).addClass(v.fixed).addClass(v.top),p.onStick.call(A)},fixBottom:function(){g.debug("Sticking element to bottom of page"),g.set.minimumSize(),g.set.offset(),C.css({left:g.cache.element.left,bottom:"",marginBottom:""}).removeClass(v.bound).removeClass(v.top).addClass(v.fixed).addClass(v.bottom),p.onStick.call(A)},unbind:function(){g.is.bound()&&(g.debug("Removing container bound position on element"),g.remove.offset(),C.removeClass(v.bound).removeClass(v.top).removeClass(v.bottom))},unfix:function(){g.is.fixed()&&(g.debug("Removing fixed position on element"),g.remove.offset(),C.removeClass(v.fixed).removeClass(v.top).removeClass(v.bottom),p.onUnstick.call(A))},reset:function(){g.debug("Reseting elements position"),g.unbind(),g.unfix(),g.resetCSS(),g.remove.offset(),g.remove.lastScroll()},resetCSS:function(){C.css({width:"",height:""}),a.css({height:""})},setting:function(t,n){if(e.isPlainObject(t))e.extend(!0,p,t);else{if(n===i)return p[t];p[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,g,t);else{if(n===i)return g[t];g[t]=n}},debug:function(){p.debug&&(p.performance?g.performance.log(arguments):(g.debug=Function.prototype.bind.call(console.info,console,p.name+":"),g.debug.apply(console,arguments)))},verbose:function(){p.verbose&&p.debug&&(p.performance?g.performance.log(arguments):(g.verbose=Function.prototype.bind.call(console.info,console,p.name+":"),g.verbose.apply(console,arguments)))},error:function(){g.error=Function.prototype.bind.call(console.error,console,p.name+":"),g.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;p.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:A,"Execution Time":n})),clearTimeout(g.performance.timer),g.performance.timer=setTimeout(g.performance.display,0)},display:function(){var t=p.name+":",n=0;s=!1,clearTimeout(g.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,a){var r,s,c,l=S;return n=n||d,a=A||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},u?(S===i&&g.initialize(),g.invoke(l)):(S!==i&&S.invoke("destroy"),g.initialize())}),o!==i?o:this},e.fn.sticky.settings={name:"Sticky",namespace:"sticky",debug:!1,verbose:!0,performance:!0,pushing:!1,context:!1,scrollContext:t,offset:0,bottomOffset:0,jitter:5,observeChanges:!1,onReposition:function(){},onScroll:function(){},onStick:function(){},onUnstick:function(){},onTop:function(){},onBottom:function(){},error:{container:"Sticky element must be inside a relative container",visible:"Element is hidden, you must call refresh after element becomes visible",method:"The method you called is not defined.",invalidContext:"Context specified does not exist",elementSize:"Sticky element is larger than its container, cannot create sticky."},className:{bound:"bound",fixed:"fixed",supported:"native",top:"top",bottom:"bottom"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.tab=function(o){var a,r=e(e.isFunction(this)?t:this),s=r.selector||"",c=(new Date).getTime(),l=[],u=arguments[0],d="string"==typeof u,m=[].slice.call(arguments,1),f=!1;return r.each(function(){var g,p,v,h,b,y,x=e.isPlainObject(o)?e.extend(!0,{},e.fn.tab.settings,o):e.extend({},e.fn.tab.settings),C=x.className,w=x.metadata,k=x.selector,S=x.error,T="."+x.namespace,A="module-"+x.namespace,R=e(this),E={},P=!0,F=0,D=this,O=R.data(A);b={initialize:function(){b.debug("Initializing tab menu item",R),b.fix.callbacks(),b.determineTabs(),b.debug("Determining tabs",x.context,p),x.auto&&b.set.auto(),b.bind.events(),x.history&&!f&&(b.initializeHistory(),f=!0),b.instantiate()},instantiate:function(){b.verbose("Storing instance of module",b),O=b,R.data(A,b)},destroy:function(){b.debug("Destroying tabs",R),R.removeData(A).off(T)},bind:{events:function(){e.isWindow(D)||(b.debug("Attaching tab activation events to element",R),R.on("click"+T,b.event.click))}},determineTabs:function(){var t;"parent"===x.context?(R.closest(k.ui).length>0?(t=R.closest(k.ui),b.verbose("Using closest UI element as parent",t)):t=R,g=t.parent(),b.verbose("Determined parent element for creating context",g)):x.context?(g=e(x.context),b.verbose("Using selector for tab context",x.context,g)):g=e("body"),x.childrenOnly?(p=g.children(k.tabs),b.debug("Searching tab context children for tabs",g,p)):(p=g.find(k.tabs),b.debug("Searching tab context for tabs",g,p))},fix:{callbacks:function(){e.isPlainObject(o)&&(o.onTabLoad||o.onTabInit)&&(o.onTabLoad&&(o.onLoad=o.onTabLoad,delete o.onTabLoad,b.error(S.legacyLoad,o.onLoad)),o.onTabInit&&(o.onFirstLoad=o.onTabInit,delete o.onTabInit,b.error(S.legacyInit,o.onFirstLoad)),x=e.extend(!0,{},e.fn.tab.settings,o))}},initializeHistory:function(){if(b.debug("Initializing page state"),e.address===i)return b.error(S.state),!1;if("state"==x.historyType){if(b.debug("Using HTML5 to manage state"),x.path===!1)return b.error(S.path),!1;e.address.history(!0).state(x.path)}e.address.bind("change",b.event.history.change)},event:{click:function(t){var n=e(this).data(w.tab);n!==i?(x.history?(b.verbose("Updating page state",t),e.address.value(n)):(b.verbose("Changing tab",t),b.changeTab(n)),t.preventDefault()):b.debug("No tab specified")},history:{change:function(t){var n=t.pathNames.join("/")||b.get.initialPath(),o=x.templates.determineTitle(n)||!1;b.performance.display(),b.debug("History change event",n,t),y=t,n!==i&&b.changeTab(n),o&&e.address.title(o)}}},refresh:function(){v&&(b.debug("Refreshing tab",v),b.changeTab(v))},cache:{read:function(e){return e!==i?E[e]:!1},add:function(e,t){e=e||v,b.debug("Adding cached content for",e),E[e]=t},remove:function(e){e=e||v,b.debug("Removing cached content for",e),delete E[e]}},set:{auto:function(){var t="string"==typeof x.path?x.path.replace(/\/$/,"")+"/{$tab}":"/{$tab}";b.verbose("Setting up automatic tab retrieval from server",t),e.isPlainObject(x.apiSettings)?x.apiSettings.url=t:x.apiSettings={url:t}},loading:function(e){var t=b.get.tabElement(e),n=t.hasClass(C.loading);n||(b.verbose("Setting loading state for",t),t.addClass(C.loading).siblings(p).removeClass(C.active+" "+C.loading),t.length>0&&x.onRequest.call(t[0],e))},state:function(t){e.address.value(t)}},changeTab:function(n){var i=t.history&&t.history.pushState,o=i&&x.ignoreFirstLoad&&P,a=x.auto||e.isPlainObject(x.apiSettings),r=a&&!o?b.utilities.pathToArray(n):b.get.defaultPathArray(n);n=b.utilities.arrayToPath(r),e.each(r,function(t,i){var s,c,l,u,d=r.slice(0,t+1),m=b.utilities.arrayToPath(d),f=b.is.tab(m),p=t+1==r.length,k=b.get.tabElement(m);if(b.verbose("Looking for tab",i),f){if(b.verbose("Tab was found",i),v=m,h=b.utilities.filterArray(r,d),p?u=!0:(c=r.slice(0,t+2),l=b.utilities.arrayToPath(c),u=!b.is.tab(l),u&&b.verbose("Tab parameters found",c)),u&&a)return o?(b.debug("Ignoring remote content on first tab load",m),P=!1,b.cache.add(n,k.html()),b.activate.all(m),x.onFirstLoad.call(k[0],m,h,y),x.onLoad.call(k[0],m,h,y)):(b.activate.navigation(m),b.fetch.content(m,n)),!1;b.debug("Opened local tab",m),b.activate.all(m),b.cache.read(m)||(b.cache.add(m,!0),b.debug("First time tab loaded calling tab init"),x.onFirstLoad.call(k[0],m,h,y)),x.onLoad.call(k[0],m,h,y)}else{if(-1!=n.search("/")||""===n)return b.error(S.missingTab,R,g,m),!1;if(s=e("#"+n+', a[name="'+n+'"]'),m=s.closest("[data-tab]").data(w.tab),k=b.get.tabElement(m),s&&s.length>0&&m)return b.debug("Anchor link used, opening parent tab",k,s),k.hasClass(C.active)||setTimeout(function(){b.scrollTo(s)},0),b.activate.all(m),b.cache.read(m)||(b.cache.add(m,!0),b.debug("First time tab loaded calling tab init"),x.onFirstLoad.call(k[0],m,h,y)),x.onLoad.call(k[0],m,h,y),!1}})},scrollTo:function(t){var i=t&&t.length>0?t.offset().top:!1;i!==!1&&(b.debug("Forcing scroll to an in-page link in a hidden tab",i,t),e(n).scrollTop(i))},update:{content:function(e,t,n){var o=b.get.tabElement(e),a=o[0];n=n!==i?n:x.evaluateScripts,n?(b.debug("Updating HTML and evaluating inline scripts",e,t),o.html(t)):(b.debug("Updating HTML",e,t),a.innerHTML=t)}},fetch:{content:function(t,n){var o,a,r=b.get.tabElement(t),s={dataType:"html",encodeParameters:!1,on:"now",cache:x.alwaysRefresh,headers:{"X-Remote":!0},onSuccess:function(e){b.cache.add(n,e),b.update.content(t,e),t==v?(b.debug("Content loaded",t),b.activate.tab(t)):b.debug("Content loaded in background",t),x.onFirstLoad.call(r[0],t,h,y),x.onLoad.call(r[0],t,h,y)},urlData:{tab:n}},c=r.api("get request")||!1,l=c&&"pending"===c.state();n=n||t,a=b.cache.read(n),x.cache&&a?(b.activate.tab(t),b.debug("Adding cached content",n),"once"==x.evaluateScripts?b.update.content(t,a,!1):b.update.content(t,a),x.onLoad.call(r[0],t,h,y)):l?(b.set.loading(t),b.debug("Content is already loading",n)):e.api!==i?(o=e.extend(!0,{},x.apiSettings,s),b.debug("Retrieving remote content",n,o),b.set.loading(t),r.api(o)):b.error(S.api)}},activate:{all:function(e){b.activate.tab(e),b.activate.navigation(e)},tab:function(e){var t=b.get.tabElement(e),n=t.hasClass(C.active);b.verbose("Showing tab content for",t),n||(t.addClass(C.active).siblings(p).removeClass(C.active+" "+C.loading),t.length>0&&x.onVisible.call(t[0],e))},navigation:function(e){var t=b.get.navElement(e),n=t.hasClass(C.active);b.verbose("Activating tab navigation for",t,e),n||t.addClass(C.active).siblings(r).removeClass(C.active+" "+C.loading)}},deactivate:{all:function(){b.deactivate.navigation(),b.deactivate.tabs()},navigation:function(){r.removeClass(C.active)},tabs:function(){p.removeClass(C.active+" "+C.loading)}},is:{tab:function(e){return e!==i?b.get.tabElement(e).length>0:!1}},get:{initialPath:function(){return r.eq(0).data(w.tab)||p.eq(0).data(w.tab)},path:function(){return e.address.value()},defaultPathArray:function(e){return b.utilities.pathToArray(b.get.defaultPath(e))},defaultPath:function(e){var t=r.filter("[data-"+w.tab+'^="'+e+'/"]').eq(0),n=t.data(w.tab)||!1;if(n){if(b.debug("Found default tab",n),F<x.maxDepth)return F++,b.get.defaultPath(n);b.error(S.recursion)}else b.debug("No default tabs found for",e,p);return F=0,e},navElement:function(e){return e=e||v,r.filter("[data-"+w.tab+'="'+e+'"]')},tabElement:function(e){var t,n,i,o;return e=e||v,i=b.utilities.pathToArray(e),o=b.utilities.last(i),t=p.filter("[data-"+w.tab+'="'+e+'"]'),n=p.filter("[data-"+w.tab+'="'+o+'"]'),t.length>0?t:n},tab:function(){return v}},utilities:{filterArray:function(t,n){return e.grep(t,function(t){return-1==e.inArray(t,n)})},last:function(t){return e.isArray(t)?t[t.length-1]:!1},pathToArray:function(e){return e===i&&(e=v),"string"==typeof e?e.split("/"):[e]},arrayToPath:function(t){return e.isArray(t)?t.join("/"):!1}},setting:function(t,n){if(b.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,x,t);else{if(n===i)return x[t];x[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,b,t);else{if(n===i)return b[t];b[t]=n}},debug:function(){x.debug&&(x.performance?b.performance.log(arguments):(b.debug=Function.prototype.bind.call(console.info,console,x.name+":"),b.debug.apply(console,arguments)))},verbose:function(){x.verbose&&x.debug&&(x.performance?b.performance.log(arguments):(b.verbose=Function.prototype.bind.call(console.info,console,x.name+":"),b.verbose.apply(console,arguments)))},error:function(){b.error=Function.prototype.bind.call(console.error,console,x.name+":"),b.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;x.performance&&(t=(new Date).getTime(),i=c||t,n=t-i,c=t,l.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:D,"Execution Time":n})),clearTimeout(b.performance.timer),b.performance.timer=setTimeout(b.performance.display,500)},display:function(){var t=x.name+":",n=0;c=!1,clearTimeout(b.performance.timer),e.each(l,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",s&&(t+=" '"+s+"'"),(console.group!==i||console.table!==i)&&l.length>0&&(console.groupCollapsed(t),console.table?console.table(l):e.each(l,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),l=[]}},invoke:function(t,n,o){var r,s,c,l=O;return n=n||m,o=D||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(b.error(S.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},d?(O===i&&b.initialize(),b.invoke(u)):(O!==i&&O.invoke("destroy"),b.initialize())}),a!==i?a:this},e.tab=function(){e(t).tab.apply(this,arguments)},e.fn.tab.settings={name:"Tab",namespace:"tab",debug:!1,verbose:!1,performance:!0,auto:!1,history:!1,historyType:"hash",path:!1,context:!1,childrenOnly:!1,maxDepth:25,alwaysRefresh:!1,cache:!0,ignoreFirstLoad:!1,apiSettings:!1,evaluateScripts:"once",onFirstLoad:function(e,t,n){},onLoad:function(e,t,n){},onVisible:function(e,t,n){},onRequest:function(e,t,n){},templates:{determineTitle:function(e){}},error:{api:"You attempted to load content without API module",method:"The method you called is not defined",missingTab:"Activated tab cannot be found. Tabs are case-sensitive.",noContent:"The tab you specified is missing a content url.",path:"History enabled, but no path was specified",recursion:"Max recursive depth reached",legacyInit:"onTabInit has been renamed to onFirstLoad in 2.0, please adjust your code.",legacyLoad:"onTabLoad has been renamed to onLoad in 2.0. Please adjust your code",state:"History requires Asual's Address library <https://github.com/asual/jquery-address>"},metadata:{tab:"tab",loaded:"loaded",promise:"promise"},className:{loading:"loading",active:"active"},selector:{tabs:".ui.tab",ui:".ui"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.transition=function(){var o,a=e(this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments,u=l[0],d=[].slice.call(arguments,1),m="string"==typeof u;t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)};return a.each(function(t){var f,g,p,v,h,b,y,x,C,w=e(this),k=this;C={initialize:function(){f=C.get.settings.apply(k,l),v=f.className,p=f.error,h=f.metadata,x="."+f.namespace,y="module-"+f.namespace,g=w.data(y)||C,b=C.get.animationEndEvent(),m&&(m=C.invoke(u)),m===!1&&(C.verbose("Converted arguments into settings object",f),f.interval?C.delay(f.animate):C.animate(),C.instantiate())},instantiate:function(){C.verbose("Storing instance of module",C),g=C,w.data(y,g)},destroy:function(){C.verbose("Destroying previous module for",k),w.removeData(y)},refresh:function(){C.verbose("Refreshing display type on next animation"),delete C.displayType},forceRepaint:function(){C.verbose("Forcing element repaint");var e=w.parent(),t=w.next();0===t.length?w.detach().appendTo(e):w.detach().insertBefore(t)},repaint:function(){C.verbose("Repainting element");k.offsetWidth},delay:function(e){var n,o,r=C.get.animationDirection();r||(r=C.can.transition()?C.get.direction():"static"),e=e!==i?e:f.interval,n="auto"==f.reverse&&r==v.outward,o=n||1==f.reverse?(a.length-t)*f.interval:t*f.interval,C.debug("Delaying animation by",o),setTimeout(C.animate,o)},animate:function(e){if(f=e||f,!C.is.supported())return C.error(p.support),!1;if(C.debug("Preparing animation",f.animation),C.is.animating()){if(f.queue)return!f.allowRepeats&&C.has.direction()&&C.is.occurring()&&C.queuing!==!0?C.debug("Animation is currently occurring, preventing queueing same animation",f.animation):C.queue(f.animation),!1;if(!f.allowRepeats&&C.is.occurring())return C.debug("Animation is already occurring, will not execute repeated animation",f.animation),!1;C.debug("New animation started, completing previous early",f.animation),g.complete()}C.can.animate()?C.set.animating(f.animation):C.error(p.noAnimation,f.animation,k)},reset:function(){C.debug("Resetting animation to beginning conditions"),C.remove.animationCallbacks(),C.restore.conditions(),C.remove.animating()},queue:function(e){C.debug("Queueing animation of",e),C.queuing=!0,w.one(b+".queue"+x,function(){C.queuing=!1,C.repaint(),C.animate.apply(this,f)})},complete:function(e){C.debug("Animation complete",f.animation),C.remove.completeCallback(),C.remove.failSafe(),C.is.looping()||(C.is.outward()?(C.verbose("Animation is outward, hiding element"),C.restore.conditions(),C.hide()):C.is.inward()?(C.verbose("Animation is outward, showing element"),C.restore.conditions(),C.show()):(C.verbose("Static animation completed"),C.restore.conditions(),f.onComplete.call(k)))},force:{visible:function(){var e=w.attr("style"),t=C.get.userStyle(),n=C.get.displayType(),o=t+"display: "+n+" !important;",a=w.css("display"),r=e===i||""===e;a!==n?(C.verbose("Overriding default display to show element",n),w.attr("style",o)):r&&w.removeAttr("style")},hidden:function(){var e=w.attr("style"),t=w.css("display"),n=e===i||""===e;"none"===t||C.is.hidden()?n&&w.removeAttr("style"):(C.verbose("Overriding default display to hide element"),w.css("display","none"))}},has:{direction:function(t){var n=!1;return t=t||f.animation,"string"==typeof t&&(t=t.split(" "),e.each(t,function(e,t){(t===v.inward||t===v.outward)&&(n=!0)})),n},inlineDisplay:function(){var t=w.attr("style")||"";return e.isArray(t.match(/display.*?;/,""))}},set:{animating:function(e){var t;C.remove.completeCallback(),e=e||f.animation,t=C.get.animationClass(e),C.save.animation(t),C.force.visible(),C.remove.hidden(),C.remove.direction(),C.start.animation(t)},duration:function(e,t){t=t||f.duration,t="number"==typeof t?t+"ms":t,(t||0===t)&&(C.verbose("Setting animation duration",t),w.css({"animation-duration":t}))},direction:function(e){e=e||C.get.direction(),e==v.inward?C.set.inward():C.set.outward()},looping:function(){C.debug("Transition set to loop"),w.addClass(v.looping)},hidden:function(){w.addClass(v.transition).addClass(v.hidden)},inward:function(){C.debug("Setting direction to inward"),w.removeClass(v.outward).addClass(v.inward)},outward:function(){C.debug("Setting direction to outward"),w.removeClass(v.inward).addClass(v.outward)},visible:function(){w.addClass(v.transition).addClass(v.visible)}},start:{animation:function(e){e=e||C.get.animationClass(),C.debug("Starting tween",e),w.addClass(e).one(b+".complete"+x,C.complete),f.useFailSafe&&C.add.failSafe(),C.set.duration(f.duration),f.onStart.call(k)}},save:{animation:function(e){C.cache||(C.cache={}),C.cache.animation=e},displayType:function(e){"none"!==e&&w.data(h.displayType,e)},transitionExists:function(t,n){e.fn.transition.exists[t]=n,C.verbose("Saving existence of transition",t,n)}},restore:{conditions:function(){var e=C.get.currentAnimation();e&&(w.removeClass(e),C.verbose("Removing animation class",C.cache)),C.remove.duration()}},add:{failSafe:function(){var e=C.get.duration();C.timer=setTimeout(function(){w.triggerHandler(b)},e+f.failSafeDelay),C.verbose("Adding fail safe timer",C.timer)}},remove:{animating:function(){w.removeClass(v.animating)},animationCallbacks:function(){C.remove.queueCallback(),C.remove.completeCallback()},queueCallback:function(){w.off(".queue"+x)},completeCallback:function(){w.off(".complete"+x)},display:function(){w.css("display","")},direction:function(){w.removeClass(v.inward).removeClass(v.outward)},duration:function(){w.css("animation-duration","")},failSafe:function(){C.verbose("Removing fail safe timer",C.timer),C.timer&&clearTimeout(C.timer)},hidden:function(){w.removeClass(v.hidden)},visible:function(){w.removeClass(v.visible)},looping:function(){C.debug("Transitions are no longer looping"),C.is.looping()&&(C.reset(),w.removeClass(v.looping))},transition:function(){w.removeClass(v.visible).removeClass(v.hidden)}},get:{settings:function(t,n,i){return"object"==typeof t?e.extend(!0,{},e.fn.transition.settings,t):"function"==typeof i?e.extend({},e.fn.transition.settings,{animation:t,onComplete:i,duration:n}):"string"==typeof n||"number"==typeof n?e.extend({},e.fn.transition.settings,{animation:t,duration:n}):"object"==typeof n?e.extend({},e.fn.transition.settings,n,{animation:t}):"function"==typeof n?e.extend({},e.fn.transition.settings,{animation:t,onComplete:n}):e.extend({},e.fn.transition.settings,{animation:t})},animationClass:function(e){var t=e||f.animation,n=C.can.transition()&&!C.has.direction()?C.get.direction()+" ":"";return v.animating+" "+v.transition+" "+n+t},currentAnimation:function(){return C.cache&&C.cache.animation!==i?C.cache.animation:!1},currentDirection:function(){return C.is.inward()?v.inward:v.outward},direction:function(){return C.is.hidden()||!C.is.visible()?v.inward:v.outward},animationDirection:function(t){var n;return t=t||f.animation,"string"==typeof t&&(t=t.split(" "),e.each(t,function(e,t){t===v.inward?n=v.inward:t===v.outward&&(n=v.outward)})),n?n:!1},duration:function(e){return e=e||f.duration,e===!1&&(e=w.css("animation-duration")||0),"string"==typeof e?e.indexOf("ms")>-1?parseFloat(e):1e3*parseFloat(e):e},displayType:function(){return f.displayType?f.displayType:(w.data(h.displayType)===i&&C.can.transition(!0),w.data(h.displayType))},userStyle:function(e){return e=e||w.attr("style")||"",e.replace(/display.*?;/,"")},transitionExists:function(t){return e.fn.transition.exists[t]},animationStartEvent:function(){var e,t=n.createElement("div"),o={animation:"animationstart",OAnimation:"oAnimationStart",MozAnimation:"mozAnimationStart",WebkitAnimation:"webkitAnimationStart"};for(e in o)if(t.style[e]!==i)return o[e];return!1},animationEndEvent:function(){var e,t=n.createElement("div"),o={animation:"animationend",OAnimation:"oAnimationEnd",MozAnimation:"mozAnimationEnd",WebkitAnimation:"webkitAnimationEnd"};for(e in o)if(t.style[e]!==i)return o[e];return!1}},can:{transition:function(t){var n,o,a,r,s,c,l,u=f.animation,d=C.get.transitionExists(u);if(d===i||t){if(C.verbose("Determining whether animation exists"),n=w.attr("class"),o=w.prop("tagName"),a=e("<"+o+" />").addClass(n).insertAfter(w),r=a.addClass(u).removeClass(v.inward).removeClass(v.outward).addClass(v.animating).addClass(v.transition).css("animationName"),s=a.addClass(v.inward).css("animationName"),l=a.attr("class",n).removeAttr("style").removeClass(v.hidden).removeClass(v.visible).show().css("display"),C.verbose("Determining final display state",l),C.save.displayType(l),a.remove(),r!=s)C.debug("Direction exists for animation",u),c=!0;else{if("none"==r||!r)return void C.debug("No animation defined in css",u);C.debug("Static animation found",u,l),c=!1}C.save.transitionExists(u,c)}return d!==i?d:c},animate:function(){return C.can.transition()!==i}},is:{animating:function(){return w.hasClass(v.animating)},inward:function(){return w.hasClass(v.inward)},outward:function(){return w.hasClass(v.outward)},looping:function(){return w.hasClass(v.looping)},occurring:function(e){return e=e||f.animation,e="."+e.replace(" ","."),w.filter(e).length>0},visible:function(){return w.is(":visible")},hidden:function(){return"hidden"===w.css("visibility")},supported:function(){return b!==!1}},hide:function(){C.verbose("Hiding element"),C.is.animating()&&C.reset(),k.blur(),C.remove.display(),C.remove.visible(),C.set.hidden(),C.force.hidden(),f.onHide.call(k),f.onComplete.call(k)},show:function(e){C.verbose("Showing element",e),C.remove.hidden(),C.set.visible(),C.force.visible(),f.onShow.call(k),f.onComplete.call(k)},toggle:function(){C.is.visible()?C.hide():C.show()},stop:function(){C.debug("Stopping current animation"),w.triggerHandler(b)},stopAll:function(){C.debug("Stopping all animation"),C.remove.queueCallback(),w.triggerHandler(b)},clear:{queue:function(){C.debug("Clearing animation queue"),C.remove.queueCallback()}},enable:function(){C.verbose("Starting animation"),w.removeClass(v.disabled)},disable:function(){C.debug("Stopping animation"),w.addClass(v.disabled)},setting:function(t,n){if(C.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,f,t);else{if(n===i)return f[t];f[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,C,t);else{if(n===i)return C[t];C[t]=n}},debug:function(){f.debug&&(f.performance?C.performance.log(arguments):(C.debug=Function.prototype.bind.call(console.info,console,f.name+":"),C.debug.apply(console,arguments)))},verbose:function(){f.verbose&&f.debug&&(f.performance?C.performance.log(arguments):(C.verbose=Function.prototype.bind.call(console.info,console,f.name+":"),C.verbose.apply(console,arguments)))},error:function(){C.error=Function.prototype.bind.call(console.error,console,f.name+":"),C.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;f.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:k,"Execution Time":n})),clearTimeout(C.performance.timer),C.performance.timer=setTimeout(C.performance.display,500)},display:function(){var t=f.name+":",n=0;s=!1,clearTimeout(C.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),a.length>1&&(t+=" ("+a.length+")"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,a){var r,s,c,l=g;return n=n||d,a=k||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):!1;l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s!==i?s:!1}},C.initialize()}),o!==i?o:this},e.fn.transition.exists={},e.fn.transition.settings={name:"Transition",debug:!1,verbose:!1,performance:!0,namespace:"transition",interval:0,reverse:"auto",onStart:function(){},onComplete:function(){},onShow:function(){},onHide:function(){},useFailSafe:!0,failSafeDelay:100,allowRepeats:!1,displayType:!1,animation:"fade",duration:!1,queue:!0,metadata:{displayType:"display"},className:{animating:"animating",disabled:"disabled",hidden:"hidden",inward:"in",loading:"loading",looping:"looping",outward:"out",transition:"transition",visible:"visible"},error:{noAnimation:"There is no css animation matching the one you specified. Please make sure your css is vendor prefixed, and you have included transition css.",repeated:"That animation is already occurring, cancelling repeated animation",method:"The method you called is not defined", +support:"This browser does not support CSS animations"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.api=e.fn.api=function(n){var o,a=e(e.isFunction(this)?t:this),r=a.selector||"",s=(new Date).getTime(),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1);return a.each(function(){var a,m,f,g,p,v,h=e.isPlainObject(n)?e.extend(!0,{},e.fn.api.settings,n):e.extend({},e.fn.api.settings),b=h.namespace,y=h.metadata,x=h.selector,C=h.error,w=h.className,k="."+b,S="module-"+b,T=e(this),A=T.closest(x.form),R=h.stateContext?e(h.stateContext):T,E=this,P=R[0],F=T.data(S);v={initialize:function(){u||v.bind.events(),v.instantiate()},instantiate:function(){v.verbose("Storing instance of module",v),F=v,T.data(S,F)},destroy:function(){v.verbose("Destroying previous module for",E),T.removeData(S).off(k)},bind:{events:function(){var e=v.get.event();e?(v.verbose("Attaching API events to element",e),T.on(e+k,v.event.trigger)):"now"==h.on&&(v.debug("Querying API endpoint immediately"),v.query())}},decode:{json:function(e){if(e!==i&&"string"==typeof e)try{e=JSON.parse(e)}catch(t){}return e}},read:{cachedResponse:function(e){var n;return t.Storage===i?void v.error(C.noStorage):(n=sessionStorage.getItem(e),v.debug("Using cached response",e,n),n=v.decode.json(n),!1)}},write:{cachedResponse:function(n,o){return o&&""===o?void v.debug("Response empty, not caching",o):t.Storage===i?void v.error(C.noStorage):(e.isPlainObject(o)&&(o=JSON.stringify(o)),sessionStorage.setItem(n,o),void v.verbose("Storing cached response for url",n,o))}},query:function(){if(v.is.disabled())return void v.debug("Element is disabled API request aborted");if(v.is.loading()){if(!h.interruptRequests)return void v.debug("Cancelling request, previous request is still pending");v.debug("Interrupting previous request"),v.abort()}return h.defaultData&&e.extend(!0,h.urlData,v.get.defaultData()),h.serializeForm&&(h.data=v.add.formData(h.data)),m=v.get.settings(),m===!1?(v.cancelled=!0,void v.error(C.beforeSend)):(v.cancelled=!1,f=v.get.templatedURL(),f||v.is.mocked()?(f=v.add.urlData(f),f||v.is.mocked()?(a=e.extend(!0,{},h,{type:h.method||h.type,data:g,url:h.base+f,beforeSend:h.beforeXHR,success:function(){},failure:function(){},complete:function(){}}),v.debug("Querying URL",a.url),v.verbose("Using AJAX settings",a),"local"===h.cache&&v.read.cachedResponse(f)?(v.debug("Response returned from local cache"),v.request=v.create.request(),void v.request.resolveWith(P,[v.read.cachedResponse(f)])):void(h.throttle?h.throttleFirstRequest||v.timer?(v.debug("Throttling request",h.throttle),clearTimeout(v.timer),v.timer=setTimeout(function(){v.timer&&delete v.timer,v.debug("Sending throttled request",g,a.method),v.send.request()},h.throttle)):(v.debug("Sending request",g,a.method),v.send.request(),v.timer=setTimeout(function(){},h.throttle)):(v.debug("Sending request",g,a.method),v.send.request()))):void 0):void v.error(C.missingURL))},should:{removeError:function(){return h.hideError===!0||"auto"===h.hideError&&!v.is.form()}},is:{disabled:function(){return T.filter(x.disabled).length>0},form:function(){return T.is("form")||R.is("form")},mocked:function(){return h.mockResponse||h.mockResponseAsync},input:function(){return T.is("input")},loading:function(){return v.request&&"pending"==v.request.state()},abortedRequest:function(e){return e&&e.readyState!==i&&0===e.readyState?(v.verbose("XHR request determined to be aborted"),!0):(v.verbose("XHR request was not aborted"),!1)},validResponse:function(t){return"json"!==h.dataType&&"jsonp"!==h.dataType||!e.isFunction(h.successTest)?(v.verbose("Response is not JSON, skipping validation",h.successTest,t),!0):(v.debug("Checking JSON returned success",h.successTest,t),h.successTest(t)?(v.debug("Response passed success test",t),!0):(v.debug("Response failed success test",t),!1))}},was:{cancelled:function(){return v.cancelled||!1},succesful:function(){return v.request&&"resolved"==v.request.state()},failure:function(){return v.request&&"rejected"==v.request.state()},complete:function(){return v.request&&("resolved"==v.request.state()||"rejected"==v.request.state())}},add:{urlData:function(t,n){var o,a;return t&&(o=t.match(h.regExp.required),a=t.match(h.regExp.optional),n=n||h.urlData,o&&(v.debug("Looking for required URL variables",o),e.each(o,function(o,a){var r=-1!==a.indexOf("$")?a.substr(2,a.length-3):a.substr(1,a.length-2),s=e.isPlainObject(n)&&n[r]!==i?n[r]:T.data(r)!==i?T.data(r):R.data(r)!==i?R.data(r):n[r];return s===i?(v.error(C.requiredParameter,r,t),t=!1,!1):(v.verbose("Found required variable",r,s),s=h.encodeParameters?v.get.urlEncodedValue(s):s,t=t.replace(a,s),void 0)})),a&&(v.debug("Looking for optional URL variables",o),e.each(a,function(o,a){var r=-1!==a.indexOf("$")?a.substr(3,a.length-4):a.substr(2,a.length-3),s=e.isPlainObject(n)&&n[r]!==i?n[r]:T.data(r)!==i?T.data(r):R.data(r)!==i?R.data(r):n[r];s!==i?(v.verbose("Optional variable Found",r,s),t=t.replace(a,s)):(v.verbose("Optional variable not found",r),t=-1!==t.indexOf("/"+a)?t.replace("/"+a,""):t.replace(a,""))}))),t},formData:function(t){var n,o=e.fn.serializeObject!==i,a=o?A.serializeObject():A.serialize();return t=t||h.data,n=e.isPlainObject(t),n?o?(v.debug("Extending existing data with form data",t,a),t=e.extend(!0,{},t,a)):(v.error(C.missingSerialize),v.debug("Cant extend data. Replacing data with form data",t,a),t=a):(v.debug("Adding form data",a),t=a),t}},send:{request:function(){v.set.loading(),v.request=v.create.request(),v.is.mocked()?v.mockedXHR=v.create.mockedXHR():v.xhr=v.create.xhr(),h.onRequest.call(P,v.request,v.xhr)}},event:{trigger:function(e){v.query(),("submit"==e.type||"click"==e.type)&&e.preventDefault()},xhr:{always:function(){},done:function(t,n,i){var o=this,a=(new Date).getTime()-p,r=h.loadingDuration-a,s=e.isFunction(h.onResponse)?h.onResponse.call(o,e.extend(!0,{},t)):!1;r=r>0?r:0,s&&(v.debug("Modified API response in onResponse callback",h.onResponse,s,t),t=s),r>0&&v.debug("Response completed early delaying state change by",r),setTimeout(function(){v.is.validResponse(t)?v.request.resolveWith(o,[t,i]):v.request.rejectWith(o,[i,"invalid"])},r)},fail:function(e,t,n){var i=this,o=(new Date).getTime()-p,a=h.loadingDuration-o;a=a>0?a:0,a>0&&v.debug("Response completed early delaying state change by",a),setTimeout(function(){v.is.abortedRequest(e)?v.request.rejectWith(i,[e,"aborted",n]):v.request.rejectWith(i,[e,"error",t,n])},a)}},request:{done:function(e,t){v.debug("Successful API Response",e),"local"===h.cache&&f&&(v.write.cachedResponse(f,e),v.debug("Saving server response locally",v.cache)),h.onSuccess.call(P,e,T,t)},complete:function(e,t){var n,i;v.was.succesful()?(i=e,n=t):(n=e,i=v.get.responseFromXHR(n)),v.remove.loading(),h.onComplete.call(P,i,T,n)},fail:function(e,t,n){var o=v.get.responseFromXHR(e),r=v.get.errorFromRequest(o,t,n);"aborted"==t?(v.debug("XHR Aborted (Most likely caused by page navigation or CORS Policy)",t,n),h.onAbort.call(P,t,T,e)):"invalid"==t?v.debug("JSON did not pass success test. A server-side error has most likely occurred",o):"error"==t&&e!==i&&(v.debug("XHR produced a server error",t,n),200!=e.status&&n!==i&&""!==n&&v.error(C.statusMessage+n,a.url),h.onError.call(P,r,T,e)),h.errorDuration&&"aborted"!==t&&(v.debug("Adding error state"),v.set.error(),v.should.removeError()&&setTimeout(v.remove.error,h.errorDuration)),v.debug("API Request failed",r,e),h.onFailure.call(P,o,T,e)}}},create:{request:function(){return e.Deferred().always(v.event.request.complete).done(v.event.request.done).fail(v.event.request.fail)},mockedXHR:function(){var t,n,i,o=!1,a=!1,r=!1;return i=e.Deferred().always(v.event.xhr.complete).done(v.event.xhr.done).fail(v.event.xhr.fail),h.mockResponse?(e.isFunction(h.mockResponse)?(v.debug("Using mocked callback returning response",h.mockResponse),n=h.mockResponse.call(P,h)):(v.debug("Using specified response",h.mockResponse),n=h.mockResponse),i.resolveWith(P,[n,o,{responseText:n}])):e.isFunction(h.mockResponseAsync)&&(t=function(e){v.debug("Async callback returned response",e),e?i.resolveWith(P,[e,o,{responseText:e}]):i.rejectWith(P,[{responseText:e},a,r])},v.debug("Using async mocked response",h.mockResponseAsync),h.mockResponseAsync.call(P,h,t)),i},xhr:function(){var t;return t=e.ajax(a).always(v.event.xhr.always).done(v.event.xhr.done).fail(v.event.xhr.fail),v.verbose("Created server request",t),t}},set:{error:function(){v.verbose("Adding error state to element",R),R.addClass(w.error)},loading:function(){v.verbose("Adding loading state to element",R),R.addClass(w.loading),p=(new Date).getTime()}},remove:{error:function(){v.verbose("Removing error state from element",R),R.removeClass(w.error)},loading:function(){v.verbose("Removing loading state from element",R),R.removeClass(w.loading)}},get:{responseFromXHR:function(t){return e.isPlainObject(t)?"json"==h.dataType||"jsonp"==h.dataType?v.decode.json(t.responseText):t.responseText:!1},errorFromRequest:function(t,n,o){return e.isPlainObject(t)&&t.error!==i?t.error:h.error[n]!==i?h.error[n]:o},request:function(){return v.request||!1},xhr:function(){return v.xhr||!1},settings:function(){var e;return e=h.beforeSend.call(P,h),e&&(e.success!==i&&(v.debug("Legacy success callback detected",e),v.error(C.legacyParameters,e.success),e.onSuccess=e.success),e.failure!==i&&(v.debug("Legacy failure callback detected",e),v.error(C.legacyParameters,e.failure),e.onFailure=e.failure),e.complete!==i&&(v.debug("Legacy complete callback detected",e),v.error(C.legacyParameters,e.complete),e.onComplete=e.complete)),e===i&&v.error(C.noReturnedValue),e!==i?e:h},urlEncodedValue:function(e){var n=t.decodeURIComponent(e),i=t.encodeURIComponent(e),o=n!==e;return o?(v.debug("URL value is already encoded, avoiding double encoding",e),e):(v.verbose("Encoding value using encodeURIComponent",e,i),i)},defaultData:function(){var t={};return e.isWindow(E)||(v.is.input()?t.value=T.val():v.is.form()&&(t.text=T.text())),t},event:function(){return e.isWindow(E)||"now"==h.on?(v.debug("API called without element, no events attached"),!1):"auto"==h.on?T.is("input")?E.oninput!==i?"input":E.onpropertychange!==i?"propertychange":"keyup":T.is("form")?"submit":"click":h.on},templatedURL:function(e){if(e=e||T.data(y.action)||h.action||!1,f=T.data(y.url)||h.url||!1)return v.debug("Using specified url",f),f;if(e){if(v.debug("Looking up url for action",e,h.api),h.api[e]===i&&!v.is.mocked())return void v.error(C.missingAction,h.action,h.api);f=h.api[e]}else v.is.form()&&(f=T.attr("action")||R.attr("action")||!1,v.debug("No url or action specified, defaulting to form action",f));return f}},abort:function(){var e=v.get.xhr();e&&"resolved"!==e.state()&&(v.debug("Cancelling API request"),e.abort())},reset:function(){v.remove.error(),v.remove.loading()},setting:function(t,n){if(v.debug("Changing setting",t,n),e.isPlainObject(t))e.extend(!0,h,t);else{if(n===i)return h[t];h[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,v,t);else{if(n===i)return v[t];v[t]=n}},debug:function(){h.debug&&(h.performance?v.performance.log(arguments):(v.debug=Function.prototype.bind.call(console.info,console,h.name+":"),v.debug.apply(console,arguments)))},verbose:function(){h.verbose&&h.debug&&(h.performance?v.performance.log(arguments):(v.verbose=Function.prototype.bind.call(console.info,console,h.name+":"),v.verbose.apply(console,arguments)))},error:function(){v.error=Function.prototype.bind.call(console.error,console,h.name+":"),v.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;h.performance&&(t=(new Date).getTime(),i=s||t,n=t-i,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"","Execution Time":n})),clearTimeout(v.performance.timer),v.performance.timer=setTimeout(v.performance.display,500)},display:function(){var t=h.name+":",n=0;s=!1,clearTimeout(v.performance.timer),e.each(c,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",r&&(t+=" '"+r+"'"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,n,a){var r,s,c,l=F;return n=n||d,a=E||a,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(v.error(C.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(a,n):s!==i&&(c=s),e.isArray(o)?o.push(c):o!==i?o=[o,c]:c!==i&&(o=c),s}},u?(F===i&&v.initialize(),v.invoke(l)):(F!==i&&F.invoke("destroy"),v.initialize())}),o!==i?o:this},e.api.settings={name:"API",namespace:"api",debug:!1,verbose:!1,performance:!0,api:{},cache:!0,interruptRequests:!0,on:"auto",stateContext:!1,loadingDuration:0,hideError:"auto",errorDuration:2e3,encodeParameters:!0,action:!1,url:!1,base:"",urlData:{},defaultData:!0,serializeForm:!1,throttle:0,throttleFirstRequest:!0,method:"get",data:{},dataType:"json",mockResponse:!1,mockResponseAsync:!1,beforeSend:function(e){return e},beforeXHR:function(e){},onRequest:function(e,t){},onResponse:!1,onSuccess:function(e,t){},onComplete:function(e,t){},onFailure:function(e,t){},onError:function(e,t){},onAbort:function(e,t){},successTest:!1,error:{beforeSend:"The before send function has aborted the request",error:"There was an error with your request",exitConditions:"API Request Aborted. Exit conditions met",JSONParse:"JSON could not be parsed during error handling",legacyParameters:"You are using legacy API success callback names",method:"The method you called is not defined",missingAction:"API action used but no url was defined",missingSerialize:"jquery-serialize-object is required to add form data to an existing data object",missingURL:"No URL specified for api event",noReturnedValue:"The beforeSend callback must return a settings object, beforeSend ignored.",noStorage:"Caching responses locally requires session storage",parseError:"There was an error parsing your request",requiredParameter:"Missing a required URL parameter: ",statusMessage:"Server gave an error: ",timeout:"Your request timed out"},regExp:{required:/\{\$*[A-z0-9]+\}/g,optional:/\{\/\$*[A-z0-9]+\}/g},className:{loading:"loading",error:"error"},selector:{disabled:".disabled",form:"form"},metadata:{action:"action",url:"url"}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.state=function(t){var o,a=e(this),r=a.selector||"",s=("ontouchstart"in n.documentElement,(new Date).getTime()),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1);return a.each(function(){var n,m=e.isPlainObject(t)?e.extend(!0,{},e.fn.state.settings,t):e.extend({},e.fn.state.settings),f=m.error,g=m.metadata,p=m.className,v=m.namespace,h=m.states,b=m.text,y="."+v,x=v+"-module",C=e(this),w=this,k=C.data(x);n={initialize:function(){n.verbose("Initializing module"),m.automatic&&n.add.defaults(),m.context&&""!==r?e(m.context).on(r,"mouseenter"+y,n.change.text).on(r,"mouseleave"+y,n.reset.text).on(r,"click"+y,n.toggle.state):C.on("mouseenter"+y,n.change.text).on("mouseleave"+y,n.reset.text).on("click"+y,n.toggle.state),n.instantiate()},instantiate:function(){n.verbose("Storing instance of module",n),k=n,C.data(x,n)},destroy:function(){n.verbose("Destroying previous module",k),C.off(y).removeData(x)},refresh:function(){n.verbose("Refreshing selector cache"),C=e(w)},add:{defaults:function(){var o=t&&e.isPlainObject(t.states)?t.states:{};e.each(m.defaults,function(t,a){n.is[t]!==i&&n.is[t]()&&(n.verbose("Adding default states",t,w),e.extend(m.states,a,o))})}},is:{active:function(){return C.hasClass(p.active)},loading:function(){return C.hasClass(p.loading)},inactive:function(){return!C.hasClass(p.active)},state:function(e){return p[e]===i?!1:C.hasClass(p[e])},enabled:function(){return!C.is(m.filter.active)},disabled:function(){return C.is(m.filter.active)},textEnabled:function(){return!C.is(m.filter.text)},button:function(){return C.is(".button:not(a, .submit)")},input:function(){return C.is("input")},progress:function(){return C.is(".ui.progress")}},allow:function(e){n.debug("Now allowing state",e),h[e]=!0},disallow:function(e){n.debug("No longer allowing",e),h[e]=!1},allows:function(e){return h[e]||!1},enable:function(){C.removeClass(p.disabled)},disable:function(){C.addClass(p.disabled)},setState:function(e){n.allows(e)&&C.addClass(p[e])},removeState:function(e){n.allows(e)&&C.removeClass(p[e])},toggle:{state:function(){var t,o;if(n.allows("active")&&n.is.enabled()){if(n.refresh(),e.fn.api!==i)if(t=C.api("get request"),o=C.api("was cancelled"))n.debug("API Request cancelled by beforesend"),m.activateTest=function(){return!1},m.deactivateTest=function(){return!1};else if(t)return void n.listenTo(t);n.change.state()}}},listenTo:function(t){n.debug("API request detected, waiting for state signal",t),t&&(b.loading&&n.update.text(b.loading),e.when(t).then(function(){"resolved"==t.state()?(n.debug("API request succeeded"),m.activateTest=function(){return!0},m.deactivateTest=function(){return!0}):(n.debug("API request failed"),m.activateTest=function(){return!1},m.deactivateTest=function(){return!1}),n.change.state()}))},change:{state:function(){n.debug("Determining state change direction"),n.is.inactive()?n.activate():n.deactivate(),m.sync&&n.sync(),m.onChange.call(w)},text:function(){n.is.textEnabled()&&(n.is.disabled()?(n.verbose("Changing text to disabled text",b.hover),n.update.text(b.disabled)):n.is.active()?b.hover?(n.verbose("Changing text to hover text",b.hover),n.update.text(b.hover)):b.deactivate&&(n.verbose("Changing text to deactivating text",b.deactivate),n.update.text(b.deactivate)):b.hover?(n.verbose("Changing text to hover text",b.hover),n.update.text(b.hover)):b.activate&&(n.verbose("Changing text to activating text",b.activate),n.update.text(b.activate)))}},activate:function(){m.activateTest.call(w)&&(n.debug("Setting state to active"),C.addClass(p.active),n.update.text(b.active),m.onActivate.call(w))},deactivate:function(){m.deactivateTest.call(w)&&(n.debug("Setting state to inactive"),C.removeClass(p.active),n.update.text(b.inactive),m.onDeactivate.call(w))},sync:function(){n.verbose("Syncing other buttons to current state"),n.is.active()?a.not(C).state("activate"):a.not(C).state("deactivate")},get:{text:function(){return m.selector.text?C.find(m.selector.text).text():C.html()},textFor:function(e){return b[e]||!1}},flash:{text:function(e,t,i){var o=n.get.text();n.debug("Flashing text message",e,t),e=e||m.text.flash,t=t||m.flashDuration,i=i||function(){},n.update.text(e),setTimeout(function(){n.update.text(o),i.call(w)},t)}},reset:{text:function(){var e=b.active||C.data(g.storedText),t=b.inactive||C.data(g.storedText);n.is.textEnabled()&&(n.is.active()&&e?(n.verbose("Resetting active text",e),n.update.text(e)):t&&(n.verbose("Resetting inactive text",e),n.update.text(t)))}},update:{text:function(e){var t=n.get.text();e&&e!==t?(n.debug("Updating text",e),m.selector.text?C.data(g.storedText,e).find(m.selector.text).text(e):C.data(g.storedText,e).html(e)):n.debug("Text is already set, ignoring update",e)}},setting:function(t,o){if(n.debug("Changing setting",t,o),e.isPlainObject(t))e.extend(!0,m,t);else{if(o===i)return m[t];m[t]=o}},internal:function(t,o){if(e.isPlainObject(t))e.extend(!0,n,t);else{if(o===i)return n[t];n[t]=o}},debug:function(){m.debug&&(m.performance?n.performance.log(arguments):(n.debug=Function.prototype.bind.call(console.info,console,m.name+":"),n.debug.apply(console,arguments)))},verbose:function(){m.verbose&&m.debug&&(m.performance?n.performance.log(arguments):(n.verbose=Function.prototype.bind.call(console.info,console,m.name+":"),n.verbose.apply(console,arguments)))},error:function(){n.error=Function.prototype.bind.call(console.error,console,m.name+":"),n.error.apply(console,arguments)},performance:{log:function(e){var t,i,o;m.performance&&(t=(new Date).getTime(),o=s||t,i=t-o,s=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:w,"Execution Time":i})),clearTimeout(n.performance.timer),n.performance.timer=setTimeout(n.performance.display,500)},display:function(){var t=m.name+":",o=0;s=!1,clearTimeout(n.performance.timer),e.each(c,function(e,t){o+=t["Execution Time"]}),t+=" "+o+"ms",r&&(t+=" '"+r+"'"),(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,a,r){var s,c,l,u=k;return a=a||d,r=w||r,"string"==typeof t&&u!==i&&(t=t.split(/[\. ]/),s=t.length-1,e.each(t,function(o,a){var r=o!=s?a+t[o+1].charAt(0).toUpperCase()+t[o+1].slice(1):t;if(e.isPlainObject(u[r])&&o!=s)u=u[r];else{if(u[r]!==i)return c=u[r],!1;if(!e.isPlainObject(u[a])||o==s)return u[a]!==i?(c=u[a],!1):(n.error(f.method,t),!1);u=u[a]}})),e.isFunction(c)?l=c.apply(r,a):c!==i&&(l=c),e.isArray(o)?o.push(l):o!==i?o=[o,l]:l!==i&&(o=l),c}},u?(k===i&&n.initialize(),n.invoke(l)):(k!==i&&k.invoke("destroy"),n.initialize())}),o!==i?o:this},e.fn.state.settings={name:"State",debug:!1,verbose:!1,namespace:"state",performance:!0,onActivate:function(){},onDeactivate:function(){},onChange:function(){},activateTest:function(){return!0},deactivateTest:function(){return!0},automatic:!0,sync:!1,flashDuration:1e3,filter:{text:".loading, .disabled",active:".disabled"},context:!1,error:{beforeSend:"The before send function has cancelled state change",method:"The method you called is not defined."},metadata:{promise:"promise",storedText:"stored-text"},className:{active:"active",disabled:"disabled",error:"error",loading:"loading",success:"success",warning:"warning"},selector:{text:!1},defaults:{input:{disabled:!0,loading:!0,active:!0},button:{disabled:!0,loading:!0,active:!0},progress:{active:!0,success:!0,warning:!0,error:!0}},states:{active:!0,disabled:!0,error:!0,loading:!0,success:!0,warning:!0},text:{disabled:!1,flash:!1,hover:!1,active:!1,inactive:!1,activate:!1,deactivate:!1}}}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.visibility=function(o){var a,r=e(this),s=r.selector||"",c=(new Date).getTime(),l=[],u=arguments[0],d="string"==typeof u,m=[].slice.call(arguments,1);return r.each(function(){var r,f,g,p=e.isPlainObject(o)?e.extend(!0,{},e.fn.visibility.settings,o):e.extend({},e.fn.visibility.settings),v=p.className,h=p.namespace,b=p.error,y=p.metadata,x="."+h,C="module-"+h,w=e(t),k=e(this),S=e(p.context),T=(k.selector||"",k.data(C)),A=t.requestAnimationFrame||t.mozRequestAnimationFrame||t.webkitRequestAnimationFrame||t.msRequestAnimationFrame||function(e){setTimeout(e,0)},R=this,E=!1;g={initialize:function(){g.debug("Initializing",p),g.setup.cache(),g.should.trackChanges()&&("image"==p.type&&g.setup.image(),"fixed"==p.type&&g.setup.fixed(),p.observeChanges&&g.observeChanges(),g.bind.events()),g.save.position(),g.is.visible()||g.error(b.visible,k),p.initialCheck&&g.checkVisibility(),g.instantiate()},instantiate:function(){g.debug("Storing instance",g),k.data(C,g),T=g},destroy:function(){g.verbose("Destroying previous module"),f&&f.disconnect(),w.off("load"+x,g.event.load).off("resize"+x,g.event.resize),S.off("scrollchange"+x,g.event.scrollchange),k.off(x).removeData(C)},observeChanges:function(){"MutationObserver"in t&&(f=new MutationObserver(function(e){g.verbose("DOM tree modified, updating visibility calculations"),g.timer=setTimeout(function(){g.verbose("DOM tree modified, updating sticky menu"),g.refresh()},100)}),f.observe(R,{childList:!0,subtree:!0}),g.debug("Setting up mutation observer",f))},bind:{events:function(){g.verbose("Binding visibility events to scroll and resize"),p.refreshOnLoad&&w.on("load"+x,g.event.load),w.on("resize"+x,g.event.resize),S.off("scroll"+x).on("scroll"+x,g.event.scroll).on("scrollchange"+x,g.event.scrollchange)}},event:{resize:function(){g.debug("Window resized"),p.refreshOnResize&&A(g.refresh)},load:function(){g.debug("Page finished loading"),A(g.refresh)},scroll:function(){p.throttle?(clearTimeout(g.timer),g.timer=setTimeout(function(){S.triggerHandler("scrollchange"+x,[S.scrollTop()])},p.throttle)):A(function(){S.triggerHandler("scrollchange"+x,[S.scrollTop()])})},scrollchange:function(e,t){g.checkVisibility(t)}},precache:function(t,i){t instanceof Array||(t=[t]);for(var o=t.length,a=0,r=[],s=n.createElement("img"),c=function(){a++,a>=t.length&&e.isFunction(i)&&i()};o--;)s=n.createElement("img"),s.onload=c,s.onerror=c,s.src=t[o],r.push(s)},enableCallbacks:function(){g.debug("Allowing callbacks to occur"),E=!1},disableCallbacks:function(){g.debug("Disabling all callbacks temporarily"),E=!0},should:{trackChanges:function(){return d?(g.debug("One time query, no need to bind events"),!1):(g.debug("Callbacks being attached"),!0)}},setup:{cache:function(){g.cache={occurred:{},screen:{},element:{}}},image:function(){var e=k.data(y.src);e&&(g.verbose("Lazy loading image",e),p.once=!0,p.observeChanges=!1,p.onOnScreen=function(){g.debug("Image on screen",R),g.precache(e,function(){g.set.image(e)})})},fixed:function(){g.debug("Setting up fixed"),p.once=!1,p.observeChanges=!1,p.initialCheck=!0,p.refreshOnLoad=!0,o.transition||(p.transition=!1),g.create.placeholder(),g.debug("Added placeholder",r),p.onTopPassed=function(){g.debug("Element passed, adding fixed position",k),g.show.placeholder(),g.set.fixed(),p.transition&&e.fn.transition!==i&&k.transition(p.transition,p.duration)},p.onTopPassedReverse=function(){g.debug("Element returned to position, removing fixed",k),g.hide.placeholder(),g.remove.fixed()}}},create:{placeholder:function(){g.verbose("Creating fixed position placeholder"),r=k.clone(!1).css("display","none").addClass(v.placeholder).insertAfter(k)}},show:{placeholder:function(){g.verbose("Showing placeholder"),r.css("display","block").css("visibility","hidden")}},hide:{placeholder:function(){g.verbose("Hiding placeholder"),r.css("display","none").css("visibility","")}},set:{fixed:function(){g.verbose("Setting element to fixed position"),k.addClass(v.fixed).css({position:"fixed",top:p.offset+"px",left:"auto",zIndex:"1"})},image:function(t){k.attr("src",t),p.transition?e.fn.transition!==i?k.transition(p.transition,p.duration):k.fadeIn(p.duration):k.show()}},is:{onScreen:function(){var e=g.get.elementCalculations();return e.onScreen},offScreen:function(){var e=g.get.elementCalculations();return e.offScreen},visible:function(){return g.cache&&g.cache.element?!(0===g.cache.element.width&&0===g.cache.element.offset.top):!1}},refresh:function(){g.debug("Refreshing constants (width/height)"),"fixed"==p.type&&(g.remove.fixed(),g.remove.occurred()),g.reset(),g.save.position(),p.checkOnRefresh&&g.checkVisibility(),p.onRefresh.call(R)},reset:function(){g.verbose("Reseting all cached values"),e.isPlainObject(g.cache)&&(g.cache.screen={},g.cache.element={})},checkVisibility:function(e){g.verbose("Checking visibility of element",g.cache.element),!E&&g.is.visible()&&(g.save.scroll(e),g.save.calculations(),g.passed(),g.passingReverse(),g.topVisibleReverse(),g.bottomVisibleReverse(),g.topPassedReverse(),g.bottomPassedReverse(),g.onScreen(),g.offScreen(),g.passing(),g.topVisible(),g.bottomVisible(),g.topPassed(),g.bottomPassed(),p.onUpdate&&p.onUpdate.call(R,g.get.elementCalculations()))},passed:function(t,n){var o=g.get.elementCalculations();if(t&&n)p.onPassed[t]=n;else{if(t!==i)return g.get.pixelsPassed(t)>o.pixelsPassed;o.passing&&e.each(p.onPassed,function(e,t){o.bottomVisible||o.pixelsPassed>g.get.pixelsPassed(e)?g.execute(t,e):p.once||g.remove.occurred(t)})}},onScreen:function(e){var t=g.get.elementCalculations(),n=e||p.onOnScreen,o="onScreen";return e&&(g.debug("Adding callback for onScreen",e),p.onOnScreen=e),t.onScreen?g.execute(n,o):p.once||g.remove.occurred(o),e!==i?t.onOnScreen:void 0},offScreen:function(e){var t=g.get.elementCalculations(),n=e||p.onOffScreen,o="offScreen";return e&&(g.debug("Adding callback for offScreen",e),p.onOffScreen=e),t.offScreen?g.execute(n,o):p.once||g.remove.occurred(o),e!==i?t.onOffScreen:void 0},passing:function(e){var t=g.get.elementCalculations(),n=e||p.onPassing,o="passing";return e&&(g.debug("Adding callback for passing",e),p.onPassing=e),t.passing?g.execute(n,o):p.once||g.remove.occurred(o),e!==i?t.passing:void 0},topVisible:function(e){var t=g.get.elementCalculations(),n=e||p.onTopVisible,o="topVisible";return e&&(g.debug("Adding callback for top visible",e),p.onTopVisible=e),t.topVisible?g.execute(n,o):p.once||g.remove.occurred(o),e===i?t.topVisible:void 0},bottomVisible:function(e){var t=g.get.elementCalculations(),n=e||p.onBottomVisible,o="bottomVisible";return e&&(g.debug("Adding callback for bottom visible",e),p.onBottomVisible=e),t.bottomVisible?g.execute(n,o):p.once||g.remove.occurred(o),e===i?t.bottomVisible:void 0},topPassed:function(e){var t=g.get.elementCalculations(),n=e||p.onTopPassed,o="topPassed";return e&&(g.debug("Adding callback for top passed",e),p.onTopPassed=e),t.topPassed?g.execute(n,o):p.once||g.remove.occurred(o),e===i?t.topPassed:void 0},bottomPassed:function(e){var t=g.get.elementCalculations(),n=e||p.onBottomPassed,o="bottomPassed";return e&&(g.debug("Adding callback for bottom passed",e),p.onBottomPassed=e),t.bottomPassed?g.execute(n,o):p.once||g.remove.occurred(o),e===i?t.bottomPassed:void 0},passingReverse:function(e){var t=g.get.elementCalculations(),n=e||p.onPassingReverse,o="passingReverse";return e&&(g.debug("Adding callback for passing reverse",e),p.onPassingReverse=e),t.passing?p.once||g.remove.occurred(o):g.get.occurred("passing")&&g.execute(n,o),e!==i?!t.passing:void 0},topVisibleReverse:function(e){var t=g.get.elementCalculations(),n=e||p.onTopVisibleReverse,o="topVisibleReverse";return e&&(g.debug("Adding callback for top visible reverse",e),p.onTopVisibleReverse=e),t.topVisible?p.once||g.remove.occurred(o):g.get.occurred("topVisible")&&g.execute(n,o),e===i?!t.topVisible:void 0},bottomVisibleReverse:function(e){var t=g.get.elementCalculations(),n=e||p.onBottomVisibleReverse,o="bottomVisibleReverse";return e&&(g.debug("Adding callback for bottom visible reverse",e),p.onBottomVisibleReverse=e),t.bottomVisible?p.once||g.remove.occurred(o):g.get.occurred("bottomVisible")&&g.execute(n,o),e===i?!t.bottomVisible:void 0},topPassedReverse:function(e){var t=g.get.elementCalculations(),n=e||p.onTopPassedReverse,o="topPassedReverse";return e&&(g.debug("Adding callback for top passed reverse",e),p.onTopPassedReverse=e),t.topPassed?p.once||g.remove.occurred(o):g.get.occurred("topPassed")&&g.execute(n,o),e===i?!t.onTopPassed:void 0},bottomPassedReverse:function(e){var t=g.get.elementCalculations(),n=e||p.onBottomPassedReverse,o="bottomPassedReverse";return e&&(g.debug("Adding callback for bottom passed reverse",e),p.onBottomPassedReverse=e),t.bottomPassed?p.once||g.remove.occurred(o):g.get.occurred("bottomPassed")&&g.execute(n,o),e===i?!t.bottomPassed:void 0},execute:function(e,t){var n=g.get.elementCalculations(),i=g.get.screenCalculations();e=e||!1,e&&(p.continuous?(g.debug("Callback being called continuously",t,n),e.call(R,n,i)):g.get.occurred(t)||(g.debug("Conditions met",t,n),e.call(R,n,i))),g.save.occurred(t)},remove:{fixed:function(){g.debug("Removing fixed position"),k.removeClass(v.fixed).css({position:"",top:"",left:"",zIndex:""})},occurred:function(e){if(e){var t=g.cache.occurred;t[e]!==i&&t[e]===!0&&(g.debug("Callback can now be called again",e),g.cache.occurred[e]=!1)}else g.cache.occurred={}}},save:{calculations:function(){g.verbose("Saving all calculations necessary to determine positioning"),g.save.direction(),g.save.screenCalculations(),g.save.elementCalculations()},occurred:function(e){e&&(g.cache.occurred[e]===i||g.cache.occurred[e]!==!0)&&(g.verbose("Saving callback occurred",e),g.cache.occurred[e]=!0)},scroll:function(e){e=e+p.offset||S.scrollTop()+p.offset,g.cache.scroll=e},direction:function(){var e,t=g.get.scroll(),n=g.get.lastScroll();return e=t>n&&n?"down":n>t&&n?"up":"static",g.cache.direction=e, +g.cache.direction},elementPosition:function(){var e=g.cache.element,t=g.get.screenSize();return g.verbose("Saving element position"),e.fits=e.height<t.height,e.offset=k.offset(),e.width=k.outerWidth(),e.height=k.outerHeight(),g.cache.element=e,e},elementCalculations:function(){var e=g.get.screenCalculations(),t=g.get.elementPosition();return p.includeMargin?(t.margin={},t.margin.top=parseInt(k.css("margin-top"),10),t.margin.bottom=parseInt(k.css("margin-bottom"),10),t.top=t.offset.top-t.margin.top,t.bottom=t.offset.top+t.height+t.margin.bottom):(t.top=t.offset.top,t.bottom=t.offset.top+t.height),t.topVisible=e.bottom>=t.top,t.topPassed=e.top>=t.top,t.bottomVisible=e.bottom>=t.bottom,t.bottomPassed=e.top>=t.bottom,t.pixelsPassed=0,t.percentagePassed=0,t.onScreen=t.topVisible&&!t.bottomPassed,t.passing=t.topPassed&&!t.bottomPassed,t.offScreen=!t.onScreen,t.passing&&(t.pixelsPassed=e.top-t.top,t.percentagePassed=(e.top-t.top)/t.height),g.cache.element=t,g.verbose("Updated element calculations",t),t},screenCalculations:function(){var e=g.get.scroll();return g.save.direction(),g.cache.screen.top=e,g.cache.screen.bottom=e+g.cache.screen.height,g.cache.screen},screenSize:function(){g.verbose("Saving window position"),g.cache.screen={height:S.height()}},position:function(){g.save.screenSize(),g.save.elementPosition()}},get:{pixelsPassed:function(e){var t=g.get.elementCalculations();return e.search("%")>-1?t.height*(parseInt(e,10)/100):parseInt(e,10)},occurred:function(e){return g.cache.occurred!==i?g.cache.occurred[e]||!1:!1},direction:function(){return g.cache.direction===i&&g.save.direction(),g.cache.direction},elementPosition:function(){return g.cache.element===i&&g.save.elementPosition(),g.cache.element},elementCalculations:function(){return g.cache.element===i&&g.save.elementCalculations(),g.cache.element},screenCalculations:function(){return g.cache.screen===i&&g.save.screenCalculations(),g.cache.screen},screenSize:function(){return g.cache.screen===i&&g.save.screenSize(),g.cache.screen},scroll:function(){return g.cache.scroll===i&&g.save.scroll(),g.cache.scroll},lastScroll:function(){return g.cache.screen===i?(g.debug("First scroll event, no last scroll could be found"),!1):g.cache.screen.top}},setting:function(t,n){if(e.isPlainObject(t))e.extend(!0,p,t);else{if(n===i)return p[t];p[t]=n}},internal:function(t,n){if(e.isPlainObject(t))e.extend(!0,g,t);else{if(n===i)return g[t];g[t]=n}},debug:function(){p.debug&&(p.performance?g.performance.log(arguments):(g.debug=Function.prototype.bind.call(console.info,console,p.name+":"),g.debug.apply(console,arguments)))},verbose:function(){p.verbose&&p.debug&&(p.performance?g.performance.log(arguments):(g.verbose=Function.prototype.bind.call(console.info,console,p.name+":"),g.verbose.apply(console,arguments)))},error:function(){g.error=Function.prototype.bind.call(console.error,console,p.name+":"),g.error.apply(console,arguments)},performance:{log:function(e){var t,n,i;p.performance&&(t=(new Date).getTime(),i=c||t,n=t-i,c=t,l.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:R,"Execution Time":n})),clearTimeout(g.performance.timer),g.performance.timer=setTimeout(g.performance.display,500)},display:function(){var t=p.name+":",n=0;c=!1,clearTimeout(g.performance.timer),e.each(l,function(e,t){n+=t["Execution Time"]}),t+=" "+n+"ms",s&&(t+=" '"+s+"'"),(console.group!==i||console.table!==i)&&l.length>0&&(console.groupCollapsed(t),console.table?console.table(l):e.each(l,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),l=[]}},invoke:function(t,n,o){var r,s,c,l=T;return n=n||m,o=R||o,"string"==typeof t&&l!==i&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(n,o){var a=n!=r?o+t[n+1].charAt(0).toUpperCase()+t[n+1].slice(1):t;if(e.isPlainObject(l[a])&&n!=r)l=l[a];else{if(l[a]!==i)return s=l[a],!1;if(!e.isPlainObject(l[o])||n==r)return l[o]!==i?(s=l[o],!1):(g.error(b.method,t),!1);l=l[o]}})),e.isFunction(s)?c=s.apply(o,n):s!==i&&(c=s),e.isArray(a)?a.push(c):a!==i?a=[a,c]:c!==i&&(a=c),s}},d?(T===i&&g.initialize(),T.save.scroll(),T.save.calculations(),g.invoke(u)):(T!==i&&T.invoke("destroy"),g.initialize())}),a!==i?a:this},e.fn.visibility.settings={name:"Visibility",namespace:"visibility",debug:!1,verbose:!1,performance:!0,observeChanges:!0,initialCheck:!0,refreshOnLoad:!0,refreshOnResize:!0,checkOnRefresh:!0,once:!0,continuous:!1,offset:0,includeMargin:!1,context:t,throttle:!1,type:!1,transition:"fade in",duration:1e3,onPassed:{},onOnScreen:!1,onOffScreen:!1,onPassing:!1,onTopVisible:!1,onBottomVisible:!1,onTopPassed:!1,onBottomPassed:!1,onPassingReverse:!1,onTopVisibleReverse:!1,onBottomVisibleReverse:!1,onTopPassedReverse:!1,onBottomPassedReverse:!1,onUpdate:!1,onRefresh:function(){},metadata:{src:"src"},className:{fixed:"fixed",placeholder:"placeholder"},error:{method:"The method you called is not defined.",visible:"Element is hidden, you must call refresh after element becomes visible"}}}(jQuery,window,document);
\ No newline at end of file diff --git a/public/less/_admin.less b/public/less/_admin.less index d0c65129..8982725c 100644 --- a/public/less/_admin.less +++ b/public/less/_admin.less @@ -10,8 +10,8 @@ padding-bottom: 5px; } th, td { - &:first-child { - padding-left: 15px; + &:first-of-type { + padding-left: 15px !important; } } } @@ -25,4 +25,22 @@ max-width: 200px; } } -}
\ No newline at end of file + + dl.admin-dl-horizontal { + padding: 20px; + margin: 0; + + dd{ + margin-left: 240px; + } + dt { + font-weight: bolder; + float: left; + width: 250px; + clear: left; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + } +} diff --git a/public/less/_base.less b/public/less/_base.less index 99cb736c..086c6877 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -55,7 +55,7 @@ pre { z-index: 900; } .head.link.item { - padding-right: 0!important; + padding-right: 0 !important; .dropdown.icon, .menu .octicon { margin-right: 5px; @@ -65,9 +65,9 @@ pre { margin-right: 0; } .searchbox { - background-color: rgb(244, 244, 244)!important; + background-color: rgb(244, 244, 244) !important; &:focus { - background-color: rgb(233, 233, 233)!important; + background-color: rgb(233, 233, 233) !important; } } .text .octicon { @@ -84,6 +84,7 @@ pre { } } } + .ui { &.left { float: left; @@ -94,51 +95,72 @@ pre { .text { &.red { - color: #d95c5c!important; + color: #d95c5c !important; a { - color: #d95c5c!important; + color: #d95c5c !important; &:hover { - color: #E67777!important; + color: #E67777 !important; } } } &.blue { - color: #428bca!important; + color: #428bca !important; a { - color: #15c!important; + color: #15c !important; &:hover { - color: #428bca!important; + color: #428bca !important; } } } + &.black { + color: #444; + &:hover { + color: #000; + } + } &.grey { - color: #767676!important; + color: #767676 !important; a { - color: #444!important; + color: #444 !important; &:hover { - color: #000!important; + color: #000 !important; } } } + &.light.grey { + color: #888 !important; + } &.green { - color: #6cc644!important; + color: #6cc644 !important; } &.purple { - color: #6e5494!important; + color: #6e5494 !important; } &.yellow { - color: #FBBD08!important; + color: #FBBD08 !important; + } + &.gold { + color: #a1882b !important; } &.left { - text-align: left!important; + text-align: left !important; } &.right { - text-align: right!important; + text-align: right !important; } &.small { font-size: 0.75em; } + &.normal { + font-weight: normal; + } + &.bold { + font-weight: bold; + } + &.italic { + font-style: italic; + } &.truncate { overflow: hidden; @@ -166,7 +188,7 @@ pre { } .warning { &.header { - background-color: #F9EDBE!important; + background-color: #F9EDBE !important; border-color: #F0C36D; } &.segment { @@ -175,7 +197,7 @@ pre { } .info { &.header { - background-color: #d9edf7!important; + background-color: #d9edf7 !important; border-color: #85c5e5; } &.segment { @@ -193,7 +215,7 @@ pre { .form { .fake { - display: none!important; + display: none !important; } } @@ -217,7 +239,7 @@ pre { border-top: none; line-height: 1em; color: rgba(0,0,0,.8); - padding: .71428571em 1.14285714em!important; + padding: .71428571em 1.14285714em !important; font-size: 1rem; text-transform: none; font-weight: 400; @@ -237,12 +259,12 @@ pre { .scrolling.menu { .item.selected { - font-weight: 700!important; + font-weight: 700 !important; } } footer { - margin-top: @footer-margin+14px!important; + margin-top: @footer-margin+14px !important; height: @footer-margin; background-color: white; border-top: 1px solid #d6d6d6; @@ -277,8 +299,8 @@ footer { .generate-img(16); .generate-img(@n, @i: 1) when (@i =< @n) { .img-@{i} { - width: (2px * @i)!important; - height: (2px * @i)!important; + width: (2px * @i) !important; + height: (2px * @i) !important; } .generate-img(@n, (@i + 1)); } @@ -286,7 +308,7 @@ footer { .octicon.icon, .mega-octicon.icon { font-family: octicons; - opacity: 1!important; + opacity: 1 !important; } // Accessibility diff --git a/public/less/_dashboard.less b/public/less/_dashboard.less index d1b194bd..e9b69daa 100644 --- a/public/less/_dashboard.less +++ b/public/less/_dashboard.less @@ -2,6 +2,7 @@ padding-top: 15px; padding-bottom: @footer-margin * 2; + &.feeds, &.issues { .context.user.menu { z-index: 101; @@ -17,6 +18,9 @@ .text { height: 16px; vertical-align: middle; + &.truncate { + width: 85%; + } } .floating.label { top: 7px; @@ -24,12 +28,17 @@ width: 15%; } } - .item.active { - background-color: #4183c4; - color: #FFF; + + // Sort + .jump.item { + margin: 1px; + padding-right: 0; } - .item .text { - width: 85%; + .menu { + max-height: 300px; + overflow-x: auto; + right: 0!important; + left: auto!important; } } .ui.right .head.menu { @@ -44,4 +53,67 @@ } } } +} + +&.feeds { + .news { + .ui.avatar { + margin-top: 13px; + } + p { + line-height: 1em; + } + .time-since { + font-size: 13px; + } + .issue.title { + line-height: 1.1em; + width: 80%; + } + .push.news .content ul { + font-size: 13px; + list-style: none; + padding-left: 10px; + + img { + margin-bottom: -2px; + } + .text.truncate { + width: 80%; + margin-bottom: -5px; + } + } + } + + .list { + .header { + padding-top: 10px; + padding-bottom: 5px; + } + ul { + list-style: none; + margin: 0; + padding-left: 0; + + li { + &:not(:last-child) { + border-bottom: 1px solid #EAEAEA; + } + + &.private { + background-color: #fcf8e9; + } + + a { + padding: 6px 1.2em; + display: block; + + .octicon { + margin-right: 6px; + color: #888; + } + } + } + } + } }
\ No newline at end of file diff --git a/public/less/_explore.less b/public/less/_explore.less index 5d6be537..b510c71a 100644 --- a/public/less/_explore.less +++ b/public/less/_explore.less @@ -1,30 +1,32 @@ .explore { padding-top: 15px; padding-bottom: @footer-margin * 2; +} - &.repositories { - .ui.repository.list { - .item { - border-top: 1px solid #eee; - padding-top: 25px; - padding-bottom: 25px; - .ui.header { - font-size: 1.5rem; - padding-bottom: 10px; - .metas { - color: #888; - font-size: 13px; - font-weight: normal; - span:not(:last-child) { - margin-right: 5px; - } - } - } - .time { - font-size: 12px; - color: #808080; +.ui.repository.list { + .item { + padding-bottom: 25px; + + &:not(:first-child) { + border-top: 1px solid #eee; + padding-top: 25px; + } + + .ui.header { + font-size: 1.5rem; + padding-bottom: 10px; + .metas { + color: #888; + font-size: 13px; + font-weight: normal; + span:not(:last-child) { + margin-right: 5px; } } } + .time { + font-size: 12px; + color: #808080; + } } }
\ No newline at end of file diff --git a/public/less/_markdown.less b/public/less/_markdown.less index d51c1afc..561fa20b 100644 --- a/public/less/_markdown.less +++ b/public/less/_markdown.less @@ -1,39 +1,43 @@ .markdown { - overflow:hidden; - font-family:"Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif; - font-size:16px; - line-height:1.6; - word-wrap:break-word; + overflow: hidden; + font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif; + font-size: 16px; + line-height: 1.6 !important; + word-wrap: break-word; + + &.file-view { + padding: 5px 2em 2em !important; + } >*:first-child { - margin-top:0 !important; + margin-top: 0 !important; } >*:last-child { - margin-bottom:0 !important; + margin-bottom: 0 !important; } a:not([href]) { - color:inherit; - text-decoration:none; + color: inherit; + text-decoration: none; } .absent { - color:#c00; + color: #c00; } .anchor { - position:absolute; - top:0; - left:0; - display:block; - padding-right:6px; - padding-left:30px; - margin-left:-30px; + position: absolute; + top: 0; + left: 0; + display: block; + padding-right: 6px; + padding-left: 30px; + margin-left: -30px; } .anchor:focus { - outline:none; + outline: none; } h1, @@ -42,11 +46,11 @@ h4, h5, h6 { - position:relative; - margin-top:1em; - margin-bottom:16px; - font-weight:bold; - line-height:1.4; + position: relative; + margin-top: 1em; + margin-bottom: 16px; + font-weight: bold; + line-height: 1.4; } h1 .octicon-link, @@ -157,8 +161,11 @@ dl, table, pre { - margin-top:0; - margin-bottom:16px; + margin-top: 0; + margin-bottom: 16px; + } + blockquote { + margin-left: 0; } hr { @@ -471,124 +478,4 @@ font-weight:bold; background:#f8f8f8;border-top:0; } - -} - -/* Author: jmblog */ - -/* Project: https://github.com/jmblog/color-themes-for-google-code-prettify */ - -/* GitHub Theme */ - -/* Pretty printing styles. Used with prettify.js. */ - -/* SPAN elements with the classes below are added by prettyprint. */ - -/* plain text */ - -.pln { - color: #333333; -} -@media screen { - /* string content */ - .str { - color: #dd1144; - } - /* a keyword */ - .kwd { - color: #333333; - } - /* a comment */ - .com { - color: #999988; - font-style: italic; - } - /* a type name */ - .typ { - color: #445588; - } - /* a literal value */ - .lit { - color: #445588; - } - /* punctuation */ - .pun { - color: #333333; - } - /* lisp open bracket */ - .opn { - color: #333333; - } - /* lisp close bracket */ - .clo { - color: #333333; - } - /* a markup tag name */ - .tag { - color: navy; - } - /* a markup attribute name */ - .atn { - color: teal; - } - /* a markup attribute value */ - .atv { - color: #dd1144; - } - /* a declaration */ - .dec { - color: #333333; - } - /* a variable name */ - .var { - color: teal; - } - /* a function name */ - .fun { - color: #990000; - } -} -/* Use higher contrast and text-weight for printable form. */ - -@media print, -projection { - .str { - color: #006600; - } - .kwd { - color: #006; - font-weight: bold; - } - .com { - color: #600; - font-style: italic; - } - .typ { - color: #404; - font-weight: bold; - } - .lit { - color: #004444; - } - .pun, - .opn, - .clo { - color: #444400; - } - .tag { - color: #006; - font-weight: bold; - } - .atn { - color: #440044; - } - .atv { - color: #006600; - } -} -/* Specify class=linenums on a pre to get line numbering */ - -ol.linenums { - margin-top: 0; - margin-bottom: 0; }
\ No newline at end of file diff --git a/public/less/_octicons.less b/public/less/_octicons.less index be97b690..dfd437e6 100755 --- a/public/less/_octicons.less +++ b/public/less/_octicons.less @@ -1,6 +1,6 @@ -// v3.1.0 +// v3.3.0 @octicons-font-path: "../fonts"; -@octicons-version: "396334ee3da78f4302d25c758ae3e3ce5dc3c97d"; +@octicons-version: "30e752e9a0821a0a098947055eeece0b0f46bc34"; @font-face { font-family: 'octicons'; @@ -40,6 +40,7 @@ .octicon-microscope:before, .octicon-beaker:before { content: '\f0dd'} /* */ .octicon-bell:before { content: '\f0de'} /* */ +.octicon-bold:before { content: '\f0e2'} /* */ .octicon-book:before { content: '\f007'} /* */ .octicon-bookmark:before { content: '\f07b'} /* */ .octicon-briefcase:before { content: '\f0d3'} /* */ @@ -120,6 +121,7 @@ .octicon-issue-closed:before { content: '\f028'} /* */ .octicon-issue-opened:before { content: '\f026'} /* */ .octicon-issue-reopened:before { content: '\f027'} /* */ +.octicon-italic:before { content: '\f0e4'} /* */ .octicon-jersey:before { content: '\f019'} /* */ .octicon-key:before { content: '\f049'} /* */ .octicon-keyboard:before { content: '\f00d'} /* */ @@ -134,6 +136,7 @@ .octicon-mirror-private:before, .octicon-git-fork-private:before, .octicon-lock:before { content: '\f06a'} /* */ +.octicon-logo-gist:before { content: '\f0ad'} /* */ .octicon-logo-github:before { content: '\f092'} /* */ .octicon-mail:before { content: '\f03b'} /* */ .octicon-mail-read:before { content: '\f03c'} /* */ @@ -180,8 +183,6 @@ .octicon-rocket:before { content: '\f033'} /* */ .octicon-rss:before { content: '\f034'} /* */ .octicon-ruby:before { content: '\f047'} /* */ -.octicon-screen-full:before { content: '\f066'} /* */ -.octicon-screen-normal:before { content: '\f067'} /* */ .octicon-search-save:before, .octicon-search:before { content: '\f02e'} /* */ .octicon-server:before { content: '\f097'} /* */ @@ -201,8 +202,10 @@ .octicon-tag-remove:before, .octicon-tag-add:before, .octicon-tag:before { content: '\f015'} /* */ +.octicon-tasklist:before { content: '\f0e5'} /* */ .octicon-telescope:before { content: '\f088'} /* */ .octicon-terminal:before { content: '\f0c8'} /* */ +.octicon-text-size:before { content: '\f0e3'} /* */ .octicon-three-bars:before { content: '\f05e'} /* */ .octicon-thumbsdown:before { content: '\f0db'} /* */ .octicon-thumbsup:before { content: '\f0da'} /* */ diff --git a/public/less/_organization.less b/public/less/_organization.less index fc3e8260..3fa54b6e 100644 --- a/public/less/_organization.less +++ b/public/less/_organization.less @@ -25,4 +25,133 @@ min-width: 300px; } } + + &.profile { + #org-avatar { + width: 100px; + height: 100px; + margin-right: 15px; + } + + #org-info { + .ui.header { + font-size: 36px; + margin-bottom: 0; + } + .desc { + font-size: 16px; + margin-bottom: 10px; + } + .meta { + .item { + display: inline-block; + margin-right: 10px; + + .icon { + margin-right: 5px; + } + } + } + } + + .ui.top.header { + .ui.right { + margin-top: 0; + } + } + + .teams { + .item { + padding: 10px 15px; + } + } + } + + &.teams, + &.profile { + .members { + .ui.avatar { + width: 48px; + height: 48px; + margin-right: 5px; + } + } + } + + &.invite { + #invite-box { + margin: auto; + margin-top: 50px; + width: 500px !important; + + #search-user-box { + input { + margin-left: 0; + width: 300px; + } + } + .ui.button { + margin-left: 5px; + margin-top: -3px; + } + } + } + + &.members { + .list { + .item { + margin-left: 0; + margin-right: 0; + border-bottom: 1px solid #eee; + + .ui.avatar { + width: 48px; + height: 48px; + } + .meta { + line-height: 24px; + } + } + } + } + + &.teams { + .detail { + .item { + padding: 10px 15px; + + &:not(:last-child) { + border-bottom: 1px solid #eee; + } + } + } + + .repositories, + .members { + .item { + padding: 10px 20px; + line-height: 32px; + + &:not(:last-child) { + border-bottom: 1px solid #DDD; + } + + .button { + padding: 9px 10px; + } + } + } + + #add-repo-form, + #add-member-form { + input { + margin-left: 0; + } + + .ui.button { + margin-left: 5px; + margin-top: -3px; + } + } + } }
\ No newline at end of file diff --git a/public/less/_repository.less b/public/less/_repository.less index 7fdec66f..6f03819c 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -32,6 +32,10 @@ } } + .owner.dropdown { + min-width: 40% !important; + } + .metas { .menu { max-height: 300px; @@ -78,6 +82,181 @@ padding-right: 0; } } + + &.file.list { + #repo-desc { + font-size: 1.2em; + } + .choose.reference { + .header .icon { + font-size: 1.4em; + } + } + .head.meta { + padding: 0; + li { + list-style: none; + display: inline-block; + + .ui.breadcrumb { + margin-top: -5px; + + span, + a { + font-size: 16px; + } + } + } + } + + .clone.input { + margin-top: -8px; + width: 100%; + + input { + border-radius: 0; + padding: 5px 10px; + } + + .clone.button { + font-size: 13px; + padding: 0 5px; + &:first-child { + border-radius: .28571429rem 0 0 .28571429rem; + } + } + .icon.button { + padding: 0 10px; + } + .dropdown .menu { + right: 0!important; + left: auto!important; + } + } + + #repo-files-table { + .table.list { + width: 80% !important; + } + + thead { + th { + padding-top: 8px; + padding-bottom: 5px; + font-weight: normal; + + #last-commit-message { + margin-left: 5px; + margin-bottom: -4px; + width: 400px; + } + .age { + margin-top: 2px; + } + } + .ui.avatar { + margin-bottom: 5px; + } + } + tbody { + .icon { + margin-left: 5px; + } + .name { + max-width: 120px; + } + .message { + max-width: 300px; + } + .age { + min-width: 150px; + } + + .text.truncate { + margin-bottom: -5px; + max-width: 100%; + } + } + td { + padding-top: 8px; + padding-bottom: 8px; + } + tr:hover { + background-color: #ffffEE; + } + } + + #file-content { + .header { + .icon { + font-size: 1em; + margin-top: -2px; + } + } + .view-raw { + * { + width: 100%; + } + img { + padding: 5px 5px 0 5px; + } + } + + .code-view { + * { + font-size: 13px; + font-family: monospace; + line-height: 20px; + } + + table { + width: 100%; + } + .lines-num { + vertical-align: top; + text-align: right; + color: #999; + background: #f5f5f5; + width: 1%; + + span { + font-family: Monaco, Menlo, Consolas, "Courier New", monospace; + line-height: 20px; + padding: 0 10px; + cursor: pointer; + display: block; + } + } + .lines-num, + .lines-code { + padding: 0; + + + pre, + ol, + .hljs { + background-color: white; + margin: 0; + padding: 0 !important; + li { + padding-left: 5px; + &.active { + background: #ffffdd; + } + } + } + } + } + } + + .sidebar { + padding-left: 0; + + .octicon { + width: 16px; + } + } + } &.options { #interval { @@ -420,11 +599,6 @@ padding: 5px 10px; } } - .button { - float: right; - margin-left: 5px; - margin-top: 1px; - } } } } @@ -585,6 +759,12 @@ } } } + &.file-content { + img { + max-width: 100%; + padding: 5px 5px 0 5px; + } + } } .code-view { overflow: auto; @@ -613,9 +793,204 @@ } } } + + &.release { + #release-list { + border-top: 1px solid #DDD; + margin-top: 20px; + padding-top: 15px; + + >li { + list-style: none; + + .meta, + .detail { + padding-top: 30px; + padding-bottom: 40px; + } + .meta { + text-align: right; + position: relative; + + .tag:not(.icon) { + display: block; + margin-top: 15px; + } + .commit { + display: block; + margin-top: 10px; + } + } + .detail { + border-left: 1px solid #DDD; + + .author { + img { + margin-bottom: -3px; + } + } + .download { + margin-top: 20px; + + >a { + .octicon { + margin-left: 5px; + margin-right: 5px; + } + } + + .list { + padding-left: 0; + border-top: 1px solid #eee; + + li { + list-style: none; + display: block; + padding-top: 8px; + padding-bottom: 8px; + border-bottom: 1px solid #eee; + } + } + } + .dot { + width: 9px; + height: 9px; + background-color: #ccc; + z-index: 999; + position: absolute; + display: block; + left: -5px; + top: 40px; + border-radius: 6px; + border: 1px solid #FFF; + } + } + } + } + } + &.new.release { + .target { + min-width: 500px; + + .at { + margin-left: -5px; + margin-right: 5px; + } + .dropdown.icon { + margin: 0; + padding-top: 3px; + } + .selection.dropdown { + padding-top: 10px; + padding-bottom: 10px; + } + } + .prerelease.field { + margin-bottom: 0; + } + } + + &.watchers { + .list { + padding: 0; + + .item { + list-style: none; + width: 32%; + margin: 10px 10px 10px 0; + padding-bottom: 14px; + float: left; + + .avatar { + width: 48px; + height: 48px; + float: left; + display: block; + margin-right: 10px; + } + .name { + margin-top: 0; + margin-bottom: 0; + font-weight: normal; + } + .meta { + margin-top: 5px; + } + } + } + } + &.forks { + .list { + margin-top: 0; + + .item { + padding-top: 10px; + padding-bottom: 10px; + border-bottom: 1px solid #DDD; + + .ui.avatar { + float: left; + margin-right: 5px; + } + .link { + padding-top: 5px; + } + } + } + } + + &.settings { + &.collaboration { + .collaborator.list { + padding: 0; + + .item { + padding: 10px 20px; + + &:not(:last-child) { + border-bottom: 1px solid #DDD; + } + } + } + + #repo-collab-form { + #search-user-box { + .results { + left: 7px; + } + } + .ui.button { + margin-left: 5px; + margin-top: -3px; + } + } + } + } } // End of .repository +#search-repo-box, +#search-user-box { + .results { + padding: 0; + position: absolute; + + .item { + padding: 10px 15px; + border-bottom: 1px solid #DDD; + cursor: pointer; + + &:hover { + background: rgba(0,0,0,.05)!important; + color: rgba(0,0,0,.95)!important; + } + img { + margin-right: 8px; + } + } + } +} + .issue.list { list-style: none; padding-top: 15px; @@ -673,7 +1048,7 @@ .settings { .content { margin-top: 2px; - .header, + >.header, .segment { box-shadow: 0 1px 2px 0 rgba(34,36,38,.15); } diff --git a/public/less/_user.less b/public/less/_user.less index c403e358..171fccd0 100644 --- a/public/less/_user.less +++ b/public/less/_user.less @@ -18,4 +18,33 @@ } } } + + &.profile { + .ui.card { + .username { + display: block; + } + .extra.content { + padding: 0; + + ul { + margin: 0; + padding: 0; + + li { + padding: 10px; + list-style: none; + + &:not(:last-child) { + border-bottom: 1px solid #eaeaea; + } + } + } + } + } + + .ui.repository.list { + margin-top: 25px; + } + } }
\ No newline at end of file diff --git a/public/ng/css/font-awesome.min.css b/public/ng/css/font-awesome.min.css deleted file mode 100644 index ee4e9782..00000000 --- a/public/ng/css/font-awesome.min.css +++ /dev/null @@ -1,4 +0,0 @@ -/*! - * Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.4.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"} diff --git a/public/ng/css/gogs.css b/public/ng/css/gogs.css deleted file mode 100644 index caecfe25..00000000 --- a/public/ng/css/gogs.css +++ /dev/null @@ -1,3015 +0,0 @@ -html, -body { - height: 100%; -} -.octicon, -.fa { - width: 16px; - text-align: center; -} -.container { - max-width: 1170px; - padding: 0 1.5em; - margin: auto; -} -img.avatar-16 { - width: 16px; - height: 16px; - vertical-align: middle; -} -img.avatar-20 { - width: 20px; - height: 20px; - vertical-align: middle; -} -img.avatar-24 { - width: 24px; - height: 24px; - vertical-align: middle; -} -img.avatar-30 { - width: 30px; - height: 30px; - vertical-align: middle; -} -img.avatar-40 { - width: 40px; - height: 40px; - vertical-align: middle; -} -img.avatar-48 { - width: 48px; - height: 48px; - vertical-align: middle; -} -img.avatar-100 { - width: 100px; - height: 100px; - vertical-align: middle; -} -.drop-down .panel-header { - font-size: 14px; -} -#wrapper { - padding: 0; - margin: 0 0 -55px 0; - min-height: 100%; -} -#footer { - background-color: white; - border-top: 1px solid #d6d6d6; - clear: both; - width: 100%; - color: #888888; -} -#footer .container { - padding: 15px; -} -#footer .official, -#footer .version { - color: #888888; -} -#footer-links > * { - border-left: 1px solid #d6d6d6; - padding-left: 8px; - margin-left: 5px; -} -#footer-links > *:first-child { - border-left: none; -} -#footer-lang { - position: relative; -} -#footer-lang .drop-down { - top: -64px; - left: -2px; - position: absolute; - height: 59px; - z-index: 100; - font-size: 12px; - width: 170%; - min-width: 140px; -} -#footer-lang .drop-down li > a { - padding: 3px 9px; -} -#header { - background-color: #428bca; - height: 45px; -} -#header > .menu-line > li > a { - display: inline-block; - color: #ffffff; -} -#header > .menu-line > li > a:hover { - background-color: transparent; - color: #fff65f; -} -#header > .menu-line > li.head { - color: #ffffff; -} -#header > .menu-line > li.hover a:after { - bottom: -9px; - color: #ffffff; -} -#header > .menu-line > li.current > a { - color: #fff65f; - font-weight: bold; -} -#header-nav-user { - height: 44px; -} -#header-nav-user img { - margin: -2px 10px 0 0; - border-radius: 3px; -} -#header-nav-sign-out > a:hover { - color: #ff908b !important; -} -#header-nav-logo { - padding: 6px 1.2em 6px 0; -} -#header-nav-explore, -#header-nav-help { - font-size: 14px; -} -#header-new-repo-menu { - width: 180px; - background-color: #FFF; - top: 44px; - border-top: none; - left: -66px; -} -#header-new-repo-menu .octicon { - margin-right: 6px; - font-size: 1.1em; -} -.switching-list { - width: 100%; - list-style: none; -} -.switching-list > li { - border-bottom: 1px solid #eaeaea; -} -.switching-list > li:last-child { - border-bottom: none; -} -.switching-list > li > a { - padding: .4em 1.2em; - display: block; - color: #444; -} -.switching-list > li > a:hover { - background-color: #428bca !important; - color: #fff !important; -} -.social-buttons .btn { - border: none; - font-size: 16px; - border-radius: 4px; - margin-right: 12px; - font-family: 'PT Sans Narrow', sans-serif; - padding: 5px 12px; - color: #FFF; -} -.social-buttons .btn .fa { - margin-right: 6px; - font-size: 16px; -} -.social-buttons .twitter { - background-color: #1c6399; -} -.social-buttons .twitter:hover { - background-color: #1c5487; -} -.social-buttons .github { - background-color: #444; -} -.social-buttons .github:hover { - background-color: #333; -} -.social-buttons .google { - background-color: #C03D20; -} -.social-buttons .google:hover { - background-color: #D56060; -} -.social-buttons .weibo { - background-color: #bf1324; -} -.social-buttons .weibo:hover { - background-color: #b94c4a; -} -.social-buttons .qq { - background-color: #03a2ef; -} -.social-buttons .qq:hover { - background-color: #3cb3ff; -} -.main-wrapper { - padding: 20px 0 40px; -} -.user-list { - width: auto; - min-width: 180px; - max-width: 300px; -} -.user-list img { - width: 28px; - height: 28px; - margin-right: 1em; - margin-top: 1px; - vertical-align: middle; -} -.user-list li { - cursor: pointer; - font-weight: bold; -} -.text-success { - color: #3c763d; -} -.text-blue { - color: #15c; -} -.text-red { - color: #DD4B39; -} -.text-grey { - color: #999999; -} -.text-black { - color: #444444; -} -.text-gold { - color: #a1882b; -} -.table { - width: 100%; - max-width: 100%; -} -.table > thead > tr > th, -.table > tbody > tr > th, -.table > tfoot > tr > th, -.table > thead > tr > td, -.table > tbody > tr > td, -.table > tfoot > tr > td { - border-top: 1px solid #e7eaec; - line-height: 1.42857; - padding: 8px; - vertical-align: top; -} -.table th { - text-align: left; -} -.table-striped > tbody > tr:nth-child(odd) > td, -.table-striped > tbody > tr:nth-child(odd) > th { - background-color: #f9f9f9; -} -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; -} -.pagination li { - display: inline; -} -.list-unstyled { - padding-left: 0; - list-style: none; -} -.emoji { - width: 1.5em; - height: 1.5em; - display: inline-block; -} -.markdown { - overflow: hidden; - font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif; - font-size: 16px; - line-height: 1.6; - word-wrap: break-word; - padding: 5px 2em 2em !important; -} -.markdown > *:first-child { - margin-top: 0 !important; -} -.markdown > *:last-child { - margin-bottom: 0 !important; -} -.markdown a:not([href]) { - color: inherit; - text-decoration: none; -} -.markdown .absent { - color: #c00; -} -.markdown .anchor { - position: absolute; - top: 0; - left: 0; - display: block; - padding-right: 6px; - padding-left: 30px; - margin-left: -30px; -} -.markdown .anchor:focus { - outline: none; -} -.markdown h1, -.markdown h2, -.markdown h3, -.markdown h4, -.markdown h5, -.markdown h6 { - position: relative; - margin-top: 1em; - margin-bottom: 16px; - font-weight: bold; - line-height: 1.4; -} -.markdown h1 .octicon-link, -.markdown h2 .octicon-link, -.markdown h3 .octicon-link, -.markdown h4 .octicon-link, -.markdown h5 .octicon-link, -.markdown h6 .octicon-link { - display: none; - color: #000; - vertical-align: middle; -} -.markdown h1:hover .anchor, -.markdown h2:hover .anchor, -.markdown h3:hover .anchor, -.markdown h4:hover .anchor, -.markdown h5:hover .anchor, -.markdown h6:hover .anchor { - padding-left: 8px; - margin-left: -30px; - text-decoration: none; -} -.markdown h1:hover .anchor .octicon-link, -.markdown h2:hover .anchor .octicon-link, -.markdown h3:hover .anchor .octicon-link, -.markdown h4:hover .anchor .octicon-link, -.markdown h5:hover .anchor .octicon-link, -.markdown h6:hover .anchor .octicon-link { - display: inline-block; -} -.markdown h1 tt, -.markdown h1 code, -.markdown h2 tt, -.markdown h2 code, -.markdown h3 tt, -.markdown h3 code, -.markdown h4 tt, -.markdown h4 code, -.markdown h5 tt, -.markdown h5 code, -.markdown h6 tt, -.markdown h6 code { - font-size: inherit; -} -.markdown h1 { - padding-bottom: 0.3em; - font-size: 2.25em; - line-height: 1.2; - border-bottom: 1px solid #eee; -} -.markdown h1 .anchor { - line-height: 1; -} -.markdown h2 { - padding-bottom: 0.3em; - font-size: 1.75em; - line-height: 1.225; - border-bottom: 1px solid #eee; -} -.markdown h2 .anchor { - line-height: 1; -} -.markdown h3 { - font-size: 1.5em; - line-height: 1.43; -} -.markdown h3 .anchor { - line-height: 1.2; -} -.markdown h4 { - font-size: 1.25em; -} -.markdown h4 .anchor { - line-height: 1.2; -} -.markdown h5 { - font-size: 1em; -} -.markdown h5 .anchor { - line-height: 1.1; -} -.markdown h6 { - font-size: 1em; - color: #777; -} -.markdown h6 .anchor { - line-height: 1.1; -} -.markdown p, -.markdown blockquote, -.markdown ul, -.markdown ol, -.markdown dl, -.markdown table, -.markdown pre { - margin-top: 0; - margin-bottom: 16px; -} -.markdown hr { - height: 4px; - padding: 0; - margin: 16px 0; - background-color: #e7e7e7; - border: 0 none; -} -.markdown ul, -.markdown ol { - padding-left: 2em; -} -.markdown ul.no-list, -.markdown ol.no-list { - padding: 0; - list-style-type: none; -} -.markdown ul ul, -.markdown ul ol, -.markdown ol ol, -.markdown ol ul { - margin-top: 0; - margin-bottom: 0; -} -.markdown ol ol, -.markdown ul ol { - list-style-type: lower-roman; -} -.markdown li > p { - margin-top: 16px; -} -.markdown dl { - padding: 0; -} -.markdown dl dt { - padding: 0; - margin-top: 16px; - font-size: 1em; - font-style: italic; - font-weight: bold; -} -.markdown dl dd { - padding: 0 16px; - margin-bottom: 16px; -} -.markdown blockquote { - padding: 0 15px; - color: #777; - border-left: 4px solid #ddd; -} -.markdown blockquote > :first-child { - margin-top: 0; -} -.markdown blockquote > :last-child { - margin-bottom: 0; -} -.markdown table { - display: block; - width: 100%; - overflow: auto; - word-break: normal; - word-break: keep-all; -} -.markdown table th { - font-weight: bold; -} -.markdown table th, -.markdown table td { - padding: 6px 13px !important; - border: 1px solid #ddd; -} -.markdown table tr { - background-color: #fff; - border-top: 1px solid #ccc; -} -.markdown table tr:nth-child(2n) { - background-color: #f8f8f8; -} -.markdown img { - max-width: 100%; - box-sizing: border-box; -} -.markdown .emoji { - max-width: none; -} -.markdown span.frame { - display: block; - overflow: hidden; -} -.markdown span.frame > span { - display: block; - float: left; - width: auto; - padding: 7px; - margin: 13px 0 0; - overflow: hidden; - border: 1px solid #ddd; -} -.markdown span.frame span img { - display: block; - float: left; -} -.markdown span.frame span span { - display: block; - padding: 5px 0 0; - clear: both; - color: #333; -} -.markdown span.align-center { - display: block; - overflow: hidden; - clear: both; -} -.markdown span.align-center > span { - display: block; - margin: 13px auto 0; - overflow: hidden; - text-align: center; -} -.markdown span.align-center span img { - margin: 0 auto; - text-align: center; -} -.markdown span.align-right { - display: block; - overflow: hidden; - clear: both; -} -.markdown span.align-right > span { - display: block; - margin: 13px 0 0; - overflow: hidden; - text-align: right; -} -.markdown span.align-right span img { - margin: 0; - text-align: right; -} -.markdown span.float-left { - display: block; - float: left; - margin-right: 13px; - overflow: hidden; -} -.markdown span.float-left span { - margin: 13px 0 0; -} -.markdown span.float-right { - display: block; - float: right; - margin-left: 13px; - overflow: hidden; -} -.markdown span.float-right > span { - display: block; - margin: 13px auto 0; - overflow: hidden; - text-align: right; -} -.markdown code, -.markdown tt { - padding: 0; - padding-top: 0.2em; - padding-bottom: 0.2em; - margin: 0; - font-size: 85%; - background-color: rgba(0, 0, 0, 0.04); - border-radius: 3px; -} -.markdown code:before, -.markdown code:after, -.markdown tt:before, -.markdown tt:after { - letter-spacing: -0.2em; - content: "\00a0"; -} -.markdown code br, -.markdown tt br { - display: none; -} -.markdown del code { - text-decoration: inherit; -} -.markdown pre > code { - padding: 0; - margin: 0; - font-size: 100%; - word-break: normal; - white-space: pre; - background: transparent; - border: 0; -} -.markdown .highlight { - margin-bottom: 16px; -} -.markdown .highlight pre, -.markdown pre { - padding: 16px; - overflow: auto; - font-size: 85%; - line-height: 1.45; - background-color: #f7f7f7; - border-radius: 3px; -} -.markdown .highlight pre { - margin-bottom: 0; - word-break: normal; -} -.markdown pre { - word-wrap: normal; -} -.markdown pre code, -.markdown pre tt { - display: inline; - max-width: initial; - padding: 0; - margin: 0; - overflow: initial; - line-height: inherit; - word-wrap: normal; - background-color: transparent; - border: 0; -} -.markdown pre code:before, -.markdown pre code:after, -.markdown pre tt:before, -.markdown pre tt:after { - content: normal; -} -.markdown kbd { - display: inline-block; - padding: 3px 5px; - font-size: 11px; - line-height: 10px; - color: #555; - vertical-align: middle; - background-color: #fcfcfc; - border: solid 1px #ccc; - border-bottom-color: #bbb; - border-radius: 3px; - box-shadow: inset 0 -1px 0 #bbbbbb; -} -.markdown .csv-data td, -.markdown .csv-data th { - padding: 5px; - overflow: hidden; - font-size: 12px; - line-height: 1; - text-align: left; - white-space: nowrap; -} -.markdown .csv-data .blob-num { - padding: 10px 8px 9px; - text-align: right; - background: #fff; - border: 0; -} -.markdown .csv-data tr { - border-top: 0; -} -.markdown .csv-data th { - font-weight: bold; - background: #f8f8f8; - border-top: 0; -} -/* Author: jmblog */ -/* Project: https://github.com/jmblog/color-themes-for-google-code-prettify */ -/* GitHub Theme */ -/* Pretty printing styles. Used with prettify.js. */ -/* SPAN elements with the classes below are added by prettyprint. */ -/* plain text */ -.pln { - color: #333333; -} -@media screen { - /* string content */ - .str { - color: #dd1144; - } - /* a keyword */ - .kwd { - color: #333333; - } - /* a comment */ - .com { - color: #999988; - font-style: italic; - } - /* a type name */ - .typ { - color: #445588; - } - /* a literal value */ - .lit { - color: #445588; - } - /* punctuation */ - .pun { - color: #333333; - } - /* lisp open bracket */ - .opn { - color: #333333; - } - /* lisp close bracket */ - .clo { - color: #333333; - } - /* a markup tag name */ - .tag { - color: navy; - } - /* a markup attribute name */ - .atn { - color: teal; - } - /* a markup attribute value */ - .atv { - color: #dd1144; - } - /* a declaration */ - .dec { - color: #333333; - } - /* a variable name */ - .var { - color: teal; - } - /* a function name */ - .fun { - color: #990000; - } -} -/* Use higher contrast and text-weight for printable form. */ -@media print, projection { - .str { - color: #006600; - } - .kwd { - color: #006; - font-weight: bold; - } - .com { - color: #600; - font-style: italic; - } - .typ { - color: #404; - font-weight: bold; - } - .lit { - color: #004444; - } - .pun, - .opn, - .clo { - color: #444400; - } - .tag { - color: #006; - font-weight: bold; - } - .atn { - color: #440044; - } - .atv { - color: #006600; - } -} -/* Specify class=linenums on a pre to get line numbering */ -ol.linenums { - margin-top: 0; - margin-bottom: 0; -} -#promo-wrapper { - padding-top: 50px; - background-color: #428bca; -} -#promo-logo { - margin-right: 50px; - padding-bottom: 50px; -} -#promo-logo img { - max-width: 250px; -} -#promo-content { - color: #FFF; - margin-left: 300px; -} -#promo-content h1, -#promo-content h2 { - font-family: 'PT Sans Narrow', sans-serif; - line-height: 60px; - margin-bottom: 0; - text-shadow: 0 2px 1px rgba(0, 0, 0, 0.5); -} -#promo-content h1 { - font-size: 96px; - line-height: 96px; - margin-bottom: 30px; -} -#promo-content h2 { - font-size: 52px; - line-height: 70px; - font-weight: normal; -} -#promo-form { - padding: 40px 0; -} -#promo-form .ipt-large { - border: none; - border-radius: 4px; - font-size: 18px; - margin-right: 12px; -} -#promo-form .ipt-large:focus { - box-shadow: 0 0 3px #FFF; -} -#promo-form .btn-large { - border-radius: 4px; - font-size: 18px; - margin-right: 12px; -} -#promo-social { - padding-bottom: 60px; -} -#promo-social .qq { - box-shadow: 0 0 1px #1c6399; -} -#feature-wrapper { - font-family: Lato, sans-serif; - font-size: 18px; - padding: 50px 0 100px 0; -} -#feature-wrapper .octicon { - color: #d9453d; - font-size: 60px; - height: 60px; - width: 60px; - line-height: 60px; - margin-right: 12px; - vertical-align: middle; - display: inline-block; -} -#feature-wrapper b { - color: #000; - font-size: 24px; - display: inline-block; - line-height: 60px; -} -#feature-wrapper p { - margin: 1em 0; - line-height: 40px; - padding-right: 30px; -} -#feature-wrapper a { - color: #d9453d; -} -#feature-wrapper a:hover { - color: #ff635a; -} -#feature-wrapper .grid-1-2 { - margin-bottom: 30px; -} -#install-form { - padding: 15px; -} -#install-form label { - width: 35%; -} -#install-form input { - width: 30%; -} -#install-form input[type="checkbox"], -#install-form input[type="radio"] { - width: auto; -} -/* - The dashboard page style -*/ -#dashboard-header { - border-bottom: 1px solid #d6d6d6; - height: 69px; - background-color: #FFF; -} -#dashboard-header > .menu-line > li { - padding: 12px 6px; -} -#dashboard-header > .menu-line > li.drop { - margin-left: -22px; -} -#dashboard-header > .menu-line > li.drop:hover a { - background-color: transparent; -} -#dashboard-header > .menu-line > li.right > a { - font-size: 1.2em; - color: #444444; - margin: -12px 0px; - padding: 22px 0.8em; -} -#dashboard-header > .menu-line > li.right > a:hover { - background-color: transparent; - color: #d9453d; -} -#dashboard-header > .menu-line > li.right > a .octicon { - margin-right: 6px; -} -#dashboard-header > .menu-line > li.right .current { - border-bottom: 2px solid #D26911; -} -#dashboard-selection-menu a img { - margin: -4px 10px 0 0; -} -#dashboard { - padding: 1.5em; -} -#dashboard-sidebar .panel-header h4 { - margin: 0; -} -#dashboard-sidebar > .panel { - margin-bottom: 24px; - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -#dashboard-sidebar-menu { - border-top-left-radius: .3em; - border-top-right-radius: .3em; - width: 100%; - height: 32px; -} -#dashboard-sidebar-menu > li { - border: 1px solid #d6d6d6; - float: left; - margin-right: -1px; - border-bottom: none; -} -#dashboard-sidebar-menu > li > a { - padding-top: .3em; - padding-bottom: .3em; -} -#dashboard-sidebar-menu > li.first { - border-top-left-radius: .3em; -} -#dashboard-sidebar-menu > li.first > a { - border-top-left-radius: .3em; -} -#dashboard-sidebar-menu > li.drop { - border: none; - float: right; -} -#dashboard-sidebar-menu > li.js-tab-nav-show { - background-color: #EEEEEE; -} -#dashboard-sidebar-menu > li.last { - border-top-right-radius: .3em; -} -#dashboard-sidebar-menu > li.last > a { - border-top-right-radius: .3em; -} -#dashboard-my-mirror li, -#dashboard-my-org li, -#dashboard-my-repo li { - border-bottom: 1px solid #EAEAEA; -} -#dashboard-my-mirror li.private, -#dashboard-my-org li.private, -#dashboard-my-repo li.private { - background-color: #fcf8e9; -} -#dashboard-my-mirror li:last-child, -#dashboard-my-org li:last-child, -#dashboard-my-repo li:last-child { - border-bottom: none; -} -#dashboard-my-mirror li a, -#dashboard-my-org li a, -#dashboard-my-repo li a { - padding: 6px 1.2em; - display: block; -} -#dashboard-my-mirror li a .octicon, -#dashboard-my-org li a .octicon, -#dashboard-my-repo li a .octicon { - margin-right: 6px; - color: #888; -} -#dashboard-my-mirror li a:hover .repo-name, -#dashboard-my-org li a:hover .repo-name, -#dashboard-my-repo li a:hover .repo-name { - text-decoration: underline; -} -#dashboard-my-mirror .repo-name, -#dashboard-my-org .repo-name, -#dashboard-my-repo .repo-name { - font-size: 1.1em; -} -#dashboard-my-mirror .repo-star, -#dashboard-my-org .repo-star, -#dashboard-my-repo .repo-star { - color: #888; -} -#dashboard-my-mirror .repo-contrib-header, -#dashboard-my-org .repo-contrib-header, -#dashboard-my-repo .repo-contrib-header { - border-top: 1px solid #d6d6d6; -} -#dashboard-my-mirror .panel-header, -#dashboard-my-org .panel-header, -#dashboard-my-repo .panel-header { - font-size: 14px; -} -#dashboard-my-repo .panel-header .octicon { - margin-right: 6px; - font-size: 12px; -} -#dashboard-my-repo .repo-count { - margin-left: 4px; -} -#dashboard-my-org, -#dashboard-my-mirror { - display: none; -} -#dashboard-new-repo { - width: 50px; - height: 33px; - padding-top: 6px; - margin-right: 1px; - border-top-left-radius: .3em; - border-top-right-radius: .3em; -} -#dashboard-new-repo .octicon { - font-size: 20px; -} -#dashboard-new-repo-menu { - top: 33px; - width: 180px; - background-color: #FFF; - left: -132px; -} -#dashboard-new-repo-menu .octicon { - margin-right: 6px; - font-size: 1.1em; -} -#dashboard-selection-menu { - width: auto; - max-width: 300px; -} -#dashboard-selection-menu > .drop-down { - top: 56px; - left: 22px; -} -#dashboard-selection-menu li { - white-space: nowrap; -} -#dashboard-selection-menu li.checked .octicon { - opacity: 1; -} -#dashboard-selection-menu li a { - text-overflow: ellipsis; - -o-text-overflow: ellipsis; - overflow: hidden; -} -#dashboard-switch-menu { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -#dashboard-switch-menu > li > a img { - margin-top: 0; -} -#dashboard-switch-menu > li > a .octicon { - margin-right: 12px; -} -#dashboard-switch-menu > li:last-child > a { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -#dashboard-switch-menu > li.org > a .octicon { - opacity: 0; -} -#dashboard-switch-menu > li.checked > a { - font-weight: bold; -} -#dashboard-switch-menu > li.checked > a .octicon { - opacity: 1; -} -#dashboard-news { - padding-bottom: 60px; -} -#dashboard-news .news { - margin-right: 2.4em; - padding-bottom: 1em; - margin-bottom: 1em; - border-bottom: 1px solid #E6E6E6; - min-height: 30px; -} -#dashboard-news .news .mega-octicon { - color: #CCC; -} -#dashboard-news .news .avatar { - margin-right: 1.2em; -} -#dashboard-news .news .news-content, -#dashboard-news .news .news-time { - color: #888; -} -#dashboard-news .push-news .news-content li { - margin-left: 1em; -} -#dashboard-news .push-news .news-content li img { - vertical-align: inherit; - margin-bottom: -2px; -} -/* -The register and sign-in page style -*/ -#sign-wrapper { - padding: 60px 0; -} -.sign-panel { - background-color: #ffffff; -} -.sign-form.form-align .field { - margin: 1.2em 0 2em 0; -} -.sign-form.form-align .ipt-large { - width: 300px; -} -.sign-form.form-align label, -.sign-form.form-align .form-label { - width: 160px; -} -.sign-form.form-align .chk-label { - width: auto; - text-align: left; - margin-left: 176px; -} -.sign-form.form-align .alert { - margin: 0 30px 24px 30px; -} -.sign-form.form-align:hover { - box-shadow: 0 0 6px #CCC; -} -.sign-form.container { - padding: 0; - width: 600px; - margin-bottom: 80px; -} -#sign-up-form .panel-content { - margin-top: 1.2em; -} -#sign-up-form h2 { - margin: .5em 1em; -} -#sign-social { - position: relative; - margin: 40px 0; -} -#sign-social .or { - position: absolute; - width: 30px; - top: -52px; - left: 50%; - background-color: #FFF; - margin-left: -15px; -} -#repo-wrapper { - padding-bottom: 100px; -} -#repo-header { - height: 69px; - border-bottom: 1px solid #d6d6d6; - background-color: #ffffff; -} -#repo-header-name { - line-height: 66px; - color: #888888; - font-size: 1.6em; - font-weight: normal; - margin-bottom: 0; -} -#repo-header-name i { - margin-right: 12px; - vertical-align: middle; -} -#repo-header-name .divider { - margin: 0 4px; -} -#repo-header-meta { - line-height: 66px; -} -#repo-header-meta li > a { - padding: 0; -} -#repo-header-meta li > a:hover { - background-color: transparent; -} -#repo-header-meta a > .btn { - line-height: 16px; - margin-left: 16px; - font-size: 13px; -} -#repo-header-meta a > .btn i { - margin-right: 6px; -} -#repo-header-meta a > .btn .num { - margin-left: 6px; -} -#repo-header-download-btn > .btn > i { - margin-right: 0 !important; -} -#repo-header-download-btn:hover:after, -#repo-header-download-btn:hover .btn { - background-color: #383838; - color: #FFF; -} -#repo-header-download-btn:after { - background-color: #444444; - padding: 9px 16px 8px 0; - margin-left: -8px !important; - color: #FFF; - border-top: 1px solid #444444; - border-bottom: 1px solid #444444; - border-top-right-radius: .25em; - border-bottom-right-radius: .25em; -} -#repo-header-download-drop { - line-height: 24px; - width: 460px; - top: 50px; - left: -390px; - padding: 20px; - box-sizing: border-box; - z-index: 1; -} -#repo-header-download-drop .btn > i { - margin-right: 6px; -} -#repo-header-download-drop button, -#repo-header-download-drop input { - font-size: 11px; -} -#repo-header-download-drop #repo-clone-copy { - width: 85px; - text-overflow: clip; -} -#repo-content { - padding-top: 18px; - padding-bottom: 18px; -} -.repo-wide-wrapper { - padding: 18px; - position: relative; -} -#repo-clone-url { - border-right: none; - width: 190px; - border-left: none; - cursor: default; -} -#repo-clone-help { - clear: both; - line-height: 48px; -} -#repo-clone-zip { - line-height: 48px; -} -#repo-clone-zip a { - cursor: pointer; - color: white; - overflow: visible; - padding: .6em 1.2em; -} -#repo-clone-zip .btn { - margin: 0 6px; -} -#repo-desc { - font-size: 1.2em; -} -#repo-desc .no-description { - color: #999; -} -#repo-sidebar-nav .label { - font-size: 12px; - line-height: 1.4em; - margin-top: 2px; -} -#repo-sidebar-nav i { - margin-right: 6px; -} -#repo-sidebar-mini { - margin-top: 6px; - width: 60px; -} -#repo-sidebar-mini li { - margin-bottom: 4px; -} -#repo-sidebar-mini li > a { - position: relative; - padding-left: 12px; - width: 24px; - text-align: center; -} -#repo-sidebar-mini li > a > i.octicon { - font-size: 21px; -} -#repo-sidebar-mini .num { - position: absolute; - font-size: 12px; - top: 0; - left: 36px; - padding: 0 2px; - min-width: 16px; - height: 16px; - text-align: center; - line-height: 16px; - border-radius: 4px; - opacity: 0.7; - -webkit-transform: scale(0.9); - font-weight: bold; -} -#repo-file-nav { - padding: .6em 0 1em 0; -} -#repo-file-nav > li > a { - padding-left: 0; -} -#repo-file-nav > li > a:hover { - background-color: transparent; -} -#repo-file-nav li.repo-jump > a { - padding-right: 0; -} -#repo-file-nav li.repo-jump > a .btn { - margin-left: -1px; -} -#repo-branch-switch > a .btn { - padding-right: 30px; -} -#repo-branch-switch > a:after { - position: absolute; - top: 12px; - right: 30px; - margin-left: 0; - color: #444444; -} -#repo-branch-switch > .drop-down { - top: 40px; - left: 0; -} -#repo-branch-filter-ipt { - width: 100%; - border-left: none; - border-right: none; - box-sizing: border-box; -} -#repo-branch-tag .tab-nav { - border-bottom: 1px solid #EAEAEA; -} -#repo-branch-tag .tab-nav a { - padding: .3em .8em; -} -#repo-branch-tag .tab-nav .js-tab-nav-show { - background-color: #EEE; - font-weight: bold; -} -#repo-branch-tag .switching-list { - max-height: 300px; - overflow-y: auto; -} -#repo-branch-list li i, -#repo-tag-list li i { - margin-right: 12px; - opacity: 0; -} -#repo-branch-list li.checked i, -#repo-tag-list li.checked i { - opacity: 1; -} -#repo-bread .bread { - padding-right: 0; - font-size: 16px; - font-weight: bold; -} -#repo-main { - padding-right: 40px; - box-sizing: border-box; -} -#repo-files-table { - margin-bottom: 20px; -} -#repo-files-table .sha .label { - font-family: Monaco, Menlo, Consolas, "Courier New", monospace; -} -#repo-files-table th, -#repo-files-table td { - text-align: left; - line-height: 32px; -} -#repo-files-table td.icon { - width: 16px; - padding-right: .1em; - padding-left: 1em; -} -#repo-files-table td.name { - max-width: 120px; -} -#repo-files-table td.name .text-truncate { - max-width: 100%; -} -#repo-files-table td.age { - max-width: 120px; - text-align: right; -} -#repo-files-table td.msg { - max-width: 440px; -} -#repo-files-table td.msg .text-truncate { - max-width: 100%; -} -#repo-files-table td.age, -#repo-files-table td.size, -#repo-files-table td.msg a { - color: #888; -} -#repo-files-table td.msg a:hover { - color: #428BCA; - text-decoration: underline; -} -#repo-files-table td.message .text-truncate { - max-width: 360px; -} -#repo-files-table tbody { - background-color: #FFF; -} -#repo-files-table tbody tr:hover { - background-color: #ffffEE; -} -#repo-files-table thead { - background-color: #F0F0F0; -} -#repo-files-table thead .author a { - margin: 0 .4em; -} -#repo-files-table thead .last-commit strong { - color: #444; -} -#repo-files-table thead .last-commit .text-truncate { - max-width: 440px; - margin-left: .4em; -} -#repo-files-table thead .last-commit .text-truncate, -#repo-files-table thead .age { - font-weight: normal; - color: #888; -} -#repo-readme, -#repo-read-file { - margin-bottom: 80px; -} -#repo-bare-start { - margin-bottom: 100px; -} -#repo-bare-start .panel-content { - background-color: #FFF; -} -#repo-bare-start pre { - margin: 0 40px; - padding: 6px 10px; - border: 1px solid #ddd; - background: #f8f8f8; -} -.repo-bare #repo-bare-start h2 { - margin-top: 30px; - margin-bottom: 24px; -} -.repo-bare #repo-header-meta { - display: none; -} -.repo-bare .btn-first { - margin-left: 200px; -} -.repo-bare #repo-clone-copy { - margin-right: 200px; -} -.repo-bare #repo-clone-help { - clear: both; - width: 100%; -} -.repo-bare #repo-clone-url { - width: 520px; -} -/* repository create */ -#team-create-form, -#repo-migrate-form, -#repo-create-form { - width: 800px; - margin: 60px auto auto auto; - background: white; -} -#team-create-form h2, -#repo-migrate-form h2, -#repo-create-form h2 { - margin: .5em 1em; -} -#team-create-form .field, -#repo-migrate-form .field, -#repo-create-form .field { - margin: 1.2em 0 2em 0; -} -#team-create-form .ipt, -#repo-migrate-form .ipt, -#repo-create-form .ipt { - width: 540px; -} -#team-create-form textarea, -#repo-migrate-form textarea, -#repo-create-form textarea { - height: 120px; -} -#team-create-form .avatar, -#repo-migrate-form .avatar, -#repo-create-form .avatar { - vertical-align: middle; - margin-right: .6em; - width: 28px; - height: 28px; -} -#team-create-form:hover, -#repo-migrate-form:hover, -#repo-create-form:hover { - box-shadow: 0px 0px 6px #CCC; -} -#repo-create-cancel { - margin-left: 4em; -} -#release-new-target-branch-list, -#repo-create-owner-list { - top: 30px; - left: 0; - width: auto; - max-width: 300px; -} -#release-new-target-branch-list .octicon, -#repo-create-owner-list .octicon { - margin-right: 12px; - opacity: 0; -} -#release-new-target-branch-list .avatar, -#repo-create-owner-list .avatar { - width: 20px; - height: 20px; -} -#release-new-target-branch-list li, -#repo-create-owner-list li { - white-space: nowrap; -} -#release-new-target-branch-list li.checked .octicon, -#repo-create-owner-list li.checked .octicon { - opacity: 1; -} -#release-new-target-branch-list li a, -#repo-create-owner-list li a { - text-overflow: ellipsis; - -o-text-overflow: ellipsis; - overflow: hidden; -} -#release-new-target-branch-list { - margin-top: -1px; - min-width: 150px; -} -#release-new-title { - margin-top: 10px; -} -#release-new-content { - width: 100%; -} -#release-preview-btn .btn { - border-left: 0; -} -#release-preview.markdown { - margin-top: 5px; - background-color: transparent; -} -.file-name { - margin-left: 1em; -} -.file-size { - font-size: 13px; - color: #888; - margin-left: 1em; -} -.code-view { - overflow: auto; - overflow-x: auto; - overflow-y: hidden; - background: white; -} -.code-view .view-raw { - min-height: 40px; - text-align: center; - padding-top: 20px; -} -.code-view .view-raw .btn { - font-size: 1.05em; - line-height: 16px; - padding: 6px 8px; -} -.code-view table { - width: 100%; -} -.code-view table td { - padding: 0; -} -.code-view .lines-num { - vertical-align: top; - text-align: right; - color: #999; - background: #f5f5f5; - width: 1%; -} -.code-view .lines-num span { - font-family: Monaco, Menlo, Consolas, "Courier New", monospace; - line-height: 20px; - padding: 0 10px; - cursor: pointer; - display: block; -} -.code-view .lines-code > pre { - border: none; - border-left: 1px solid #ddd; -} -.code-view .lines-code > pre > ol.linenums > li { - padding: 0 10px; - line-height: 20px; -} -.code-view .lines-code > pre > ol.linenums > li.active { - background: #ffffdd; -} -.repo-setting-zone { - padding: 30px; -} -#team-repositories-list, -#team-members-list, -#repo-collab-list { - list-style: none; - padding: 10px 0 5px 0; -} -#team-repositories-list li.collab, -#team-members-list li.collab, -#repo-collab-list li.collab { - clear: both; - height: 50px; - padding: 0 15px 0 15px; -} -#team-repositories-list a.member, -#team-members-list a.member, -#repo-collab-list a.member { - color: #444; - height: 50px; - line-height: 50px; -} -#team-repositories-list a.member:hover, -#team-members-list a.member:hover, -#repo-collab-list a.member:hover { - color: #4183C4; -} -#team-repositories-list .avatar, -#team-members-list .avatar, -#repo-collab-list .avatar { - margin-right: 1em; - width: 40px; -} -#team-repositories-list .remove-collab, -#team-members-list .remove-collab, -#repo-collab-list .remove-collab { - color: #DD4B39; -} -.repo-user-list-block { - position: relative; - top: 5px; -} -.setting-list { - width: 100%; - list-style: none; -} -#commits-list { - padding-top: 20px; -} -#commits-list h4 { - line-height: 30px; - margin-bottom: 0; -} -.commit-list th { - background-color: #FFF; - line-height: 28px !important; -} -.commit-list .date { - width: 120px; -} -.commit-list .author { - padding-left: 20px; - min-width: 180px; -} -.commit-list .author img { - margin-top: -4px; -} -.commit-list .sha a { - font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace; - font-size: 14px; -} -.commit-list .message { - width: 60%; -} -.commit-list .message span { - max-width: 500px; -} -.commit-message { - white-space: pre-wrap; -} -.diff-head-box { - margin-top: 10px; -} -.diff-head-box .panel-body { - padding: 10px 15px 5px 10px; -} -.diff-head-box .author img { - margin-top: -7px; -} -.diff-detail-box { - margin: 15px 0; - line-height: 30px; -} -.diff-detail-box ol { - clear: both; - padding-left: 0; - margin-bottom: 28px; -} -.diff-detail-box ol li { - list-style: none; - padding-bottom: 4px; - margin-bottom: 4px; - border-bottom: 1px dashed #DDD; - padding-left: 6px; -} -.diff-detail-box span.status { - display: inline-block; - width: 12px; - height: 12px; - margin-right: 8px; - vertical-align: middle; -} -.diff-detail-box span.status.modify { - background-color: #f0db88; -} -.diff-detail-box span.status.add { - background-color: #b4e2b4; -} -.diff-detail-box span.status.del { - background-color: #e9aeae; -} -.diff-detail-box span.status.rename { - background-color: #dad8ff; -} -.diff-box .count { - margin-right: 12px; -} -.diff-box .count .bar { - background-color: #e75316; - height: 12px; - width: 40px; - display: inline-block; - margin: 2px 4px 0 4px; - vertical-align: text-top; -} -.diff-box .count .bar .add { - background-color: #77c64a; - height: 12px; -} -.diff-box .file { - color: #888; -} -.diff-box .panel-header { - font-size: 14px; -} -.diff-file-box .file-body.file-code .lines-num { - text-align: right; - color: #999; - background: #fafafa; - width: 1%; -} -.diff-file-box .file-body.file-code .lines-num-old { - border-right: 1px solid #DDD; -} -.diff-file-box .code-diff tbody tr.tag-code td, -.diff-file-box .code-diff tbody tr.tag-code pre { - background-color: #E0E0E0 !important; - border-color: #ADADAD !important; -} -.diff-file-box .code-diff tbody tr.tag-code td.selected-line, -.diff-file-box .code-diff tbody tr.tag-code td.selected-line pre { - background-color: #ffffdd !important; -} -.diff-file-box .code-diff tbody tr.same-code td.selected-line, -.diff-file-box .code-diff tbody tr.same-code td.selected-line pre { - background-color: #ffffdd !important; -} -.diff-file-box .code-diff tbody tr.del-code td, -.diff-file-box .code-diff tbody tr.del-code pre { - background-color: #ffe2dd !important; - border-color: #e9aeae !important; -} -.diff-file-box .code-diff tbody tr.del-code td.selected-line, -.diff-file-box .code-diff tbody tr.del-code td.selected-line pre { - background-color: #ffffdd !important; -} -.diff-file-box .code-diff tbody tr.add-code td, -.diff-file-box .code-diff tbody tr.add-code pre { - background-color: #d1ffd6 !important; - border-color: #b4e2b4 !important; -} -.diff-file-box .code-diff tbody tr.add-code td.selected-line, -.diff-file-box .code-diff tbody tr.add-code td.selected-line pre { - background-color: #ffffdd !important; -} -.diff-file-box .code-diff tbody tr:hover td, -.diff-file-box .code-diff tbody tr:hover pre { - background-color: #FFF8D2 !important; - border-color: #F0DB88 !important; -} -.compare-head-box { - margin-top: 10px; -} -.compare-head-box .compare { - padding: 0 15px 15px 15px; -} -.fork-flag { - display: block; - font-size: 11px; - line-height: 10px; - white-space: nowrap; - margin-left: 44px; - margin-top: -15px; -} -#release h4 { - font-size: 18px; -} -#release h4 small { - font-weight: 400; - line-height: 1; - color: #999; -} -#release #release-head { - margin-top: 0; - margin-bottom: 0; - padding-bottom: 20px; - border-bottom: 1px solid #DDD; -} -#release #release-head .btn { - margin-left: 10px; -} -#release .release-item > div { - padding-top: 20px; - padding-bottom: 20px; -} -#release .release-item .label-green:hover { - background-color: #65ad4e; -} -#release .release-item .release-meta { - position: relative; - float: left; - padding-right: 15px; -} -#release .release-item .tag, -#release .release-item .commit { - display: block; - margin-top: 12px; - line-height: 20px; -} -#release .release-item .release-detail { - margin-top: -1px; - border-left: 1px solid #DDD; - position: relative; - float: left; - padding-left: 15px; -} -#release .release-item .title { - line-height: 25px; - margin-top: 0; -} -#release .release-item p.info { - line-height: 20px; - color: #666; - margin-bottom: 15px; -} -#release .release-item p.info > * { - margin-right: 10px; -} -#release .release-item .author img { - margin-top: -3px; -} -#release .release-item div.desc { - margin-bottom: 25px; -} -#release .release-item div.desc.markdown { - background-color: transparent; -} -#release .release-item .download a { - margin-right: 10px; -} -#release .release-item .dot { - width: 9px; - height: 9px; - background-color: #ccc; - z-index: 999; - position: absolute; - display: block; - left: -6px; - top: 27px; - border-radius: 6px; - border: 1px solid #FFF; -} -#release #release-new-form { - padding-top: 15px; -} -#stars h4, -#watchers h4, -#forks h4 { - font-size: 18px; - padding-bottom: 20px; - text-transform: capitalize; - border-bottom: 1px solid #DDD; -} -#stars h3, -#watchers h3, -#forks h3 { - margin: -4px 0 0 0; - padding: 0; -} -#stars .avatar, -#watchers .avatar, -#forks .avatar { - width: 75px; - height: 75px; - float: left; - display: block; - margin-right: 10px; -} -#stars .avatar-small, -#watchers .avatar-small, -#forks .avatar-small { - width: 24px; - height: 24px; - float: left; - display: block; - margin-right: 10px; -} -#stars ol, -#watchers ol, -#forks ol { - margin-top: 10px; - list-style: none; - width: 100%; - overflow: hidden; -} -#stars li, -#watchers li, -#forks li { - width: 32.25%; - margin: 10px 10px 10px 0; - border-bottom: 1px solid #DDD; - float: left; - padding-bottom: 10px; -} -#stars .pagination, -#watchers .pagination, -#forks .pagination { - width: 100%; - text-align: center; - text-transform: capitalize; -} -#stars .pagination a, -#watchers .pagination a, -#forks .pagination a { - border-radius: 3px; - border: 1px solid #399ADE; - padding: 8px; - margin: 0; -} -#stars .pagination .active, -#watchers .pagination .active, -#forks .pagination .active { - border-radius: 3px; - border: 1px solid #399ADE; - background: #399ADE; - cursor: default; - padding: 8px; - margin: 0; - color: #FFFFFF; -} -#stars .pagination .disabled, -#watchers .pagination .disabled, -#forks .pagination .disabled { - border-radius: 3px; - border: 1px solid #DDD; - color: #D3D3D3; - cursor: default; - padding: 8px; - margin: 0; -} -#forks p { - padding: 5px 0; -} -#admin-wrapper, -#setting-wrapper { - padding-bottom: 100px; -} -#setting-menu { - box-sizing: border-box; -} -#setting-menu li > a { - border-left: 2px solid #FFF; - background-color: #FFF; -} -#setting-menu li:hover { - border-color: #EAEAEA; -} -#setting-menu li:hover a { - border-left: 2px solid #EFEFEF; - background-color: #EFEFEF !important; - color: #000 !important; -} -#setting-menu li.current a { - color: #000 !important; - font-weight: bold; - border-left: 2px solid #d26911; -} -.setting-content { - margin-left: 32px; -} -#auth-setting-form, -#org-setting-form, -#repo-setting-form, -#user-profile-form, -#add-email-form, -.repo-setting-form { - background-color: #FFF; - padding: 30px 0; -} -#auth-setting-form textarea, -#org-setting-form textarea, -#repo-setting-form textarea, -#user-profile-form textarea, -#add-email-form textarea, -.repo-setting-form textarea { - margin-left: 4px; - height: 100px; -} -#auth-setting-form label, -#org-setting-form label, -#repo-setting-form label, -#user-profile-form label, -#add-email-form label, -.repo-setting-form label, -#auth-setting-form .form-label, -#org-setting-form .form-label, -#repo-setting-form .form-label, -#user-profile-form .form-label, -#add-email-form .form-label, -.repo-setting-form .form-label { - width: 240px; -} -#auth-setting-form .ipt, -#org-setting-form .ipt, -#repo-setting-form .ipt, -#user-profile-form .ipt, -#add-email-form .ipt, -.repo-setting-form .ipt { - width: 360px; -} -#auth-setting-form .field, -#org-setting-form .field, -#repo-setting-form .field, -#user-profile-form .field, -#add-email-form .field, -.repo-setting-form .field { - margin-bottom: 24px; -} -#hook-type { - padding: 10px 0 0 0; - background-color: #fff; -} -#hook-type .field { - margin-bottom: 24px; -} -#hook-type label { - width: 240px; -} -#repo-hooks-panel, -#repo-hooks-history-panel, -#user-social-panel, -#user-applications-panel, -#user-email-panel, -#user-ssh-panel { - margin-bottom: 20px; -} -#repo-hooks-panel .setting-list, -#repo-hooks-history-panel .setting-list, -#user-social-panel .setting-list, -#user-applications-panel .setting-list, -#user-email-panel .setting-list, -#user-ssh-panel .setting-list { - background-color: #FFF; -} -#repo-hooks-panel .setting-list li, -#repo-hooks-history-panel .setting-list li, -#user-social-panel .setting-list li, -#user-applications-panel .setting-list li, -#user-email-panel .setting-list li, -#user-ssh-panel .setting-list li { - padding: 8px 20px; - border-bottom: 1px solid #eaeaea; -} -#repo-hooks-panel .setting-list li.ssh:hover, -#repo-hooks-history-panel .setting-list li.ssh:hover, -#user-social-panel .setting-list li.ssh:hover, -#user-applications-panel .setting-list li.ssh:hover, -#user-email-panel .setting-list li.ssh:hover, -#user-ssh-panel .setting-list li.ssh:hover { - background-color: #ffffEE; -} -#repo-hooks-panel .setting-list li i, -#repo-hooks-history-panel .setting-list li i, -#user-social-panel .setting-list li i, -#user-applications-panel .setting-list li i, -#user-email-panel .setting-list li i, -#user-ssh-panel .setting-list li i { - padding-right: 5px; -} -#repo-hooks-panel .active-icon, -#repo-hooks-history-panel .active-icon, -#user-social-panel .active-icon, -#user-applications-panel .active-icon, -#user-email-panel .active-icon, -#user-ssh-panel .active-icon { - width: 10px; - height: 10px; - border-radius: 6px; - padding: 0; - margin-right: 20px; - margin-top: 10px; -} -#repo-hooks-panel .ssh-content, -#repo-hooks-history-panel .ssh-content, -#user-social-panel .ssh-content, -#user-applications-panel .ssh-content, -#user-email-panel .ssh-content, -#user-ssh-panel .ssh-content { - margin-left: 24px; -} -#repo-hooks-panel .ssh-content .octicon, -#repo-hooks-history-panel .ssh-content .octicon, -#user-social-panel .ssh-content .octicon, -#user-applications-panel .ssh-content .octicon, -#user-email-panel .ssh-content .octicon, -#user-ssh-panel .ssh-content .octicon { - margin-right: 4px; -} -#repo-hooks-panel .ssh-content .print, -#repo-hooks-history-panel .ssh-content .print, -#user-social-panel .ssh-content .print, -#user-applications-panel .ssh-content .print, -#user-email-panel .ssh-content .print, -#user-ssh-panel .ssh-content .print, -#repo-hooks-panel .ssh-content .access, -#repo-hooks-history-panel .ssh-content .access, -#user-social-panel .ssh-content .access, -#user-applications-panel .ssh-content .access, -#user-email-panel .ssh-content .access, -#user-ssh-panel .ssh-content .access, -#repo-hooks-panel .ssh-content .activity, -#repo-hooks-history-panel .ssh-content .activity, -#user-social-panel .ssh-content .activity, -#user-applications-panel .ssh-content .activity, -#user-email-panel .ssh-content .activity, -#user-ssh-panel .ssh-content .activity { - color: #888; -} -#repo-hooks-panel .ssh-content .access, -#repo-hooks-history-panel .ssh-content .access, -#user-social-panel .ssh-content .access, -#user-applications-panel .ssh-content .access, -#user-email-panel .ssh-content .access, -#user-ssh-panel .ssh-content .access { - max-width: 500px; -} -#repo-hooks-panel .ssh-btn, -#repo-hooks-history-panel .ssh-btn, -#user-social-panel .ssh-btn, -#user-applications-panel .ssh-btn, -#user-email-panel .ssh-btn, -#user-ssh-panel .ssh-btn { - margin-top: 6px; -} -.form-settings-add .panel-body { - background-color: #FFF; - padding: 30px 0; -} -.form-settings-add .ipt { - width: 500px; -} -.form-settings-add textarea { - height: 120px; - margin-left: 3px; -} -.form-settings-add .field { - margin-bottom: 24px; -} -.pr-main { - margin-right: 100px; -} -.pr-sidebar { - border-left: 1px solid #DDD; - box-sizing: border-box; - position: absolute; - right: 0; - top: 12px; -} -.pr-title { - padding: 4px 0; -} -.pr-title .pr-num { - font-weight: normal; - color: #888; -} -.pr-meta { - color: #888; - padding: 4px 0 8px 0; -} -.pr-meta .pr-author { - margin: 0 8px; - color: #444; -} -.pr-meta .pr-author:hover { - text-decoration: underline; -} -.pr-meta .pr-branch { - margin: 0 4px; - font-size: 12px; - padding: 4px 6px; -} -.pr-nav { - border-bottom: 1px solid #DDD; - margin-top: 16px; - margin-bottom: 16px; -} -.pr-nav .octicon { - margin-right: 4px; -} -.pr-nav li > a { - padding: 3px 9px !important; - border: 1px solid transparent; - border-bottom: none; - border-top-left-radius: .2em; - border-top-right-radius: .2em; -} -.pr-nav li > a .label { - padding: 1px 5px; - font-size: 12px; - margin-left: 4px; -} -.pr-nav li.js-tab-nav-show > a { - background-color: #FFF; - border-color: #E6E6E6; -} -.diff-bar .diff-add { - color: #65ad4e; -} -.diff-bar .diff-delete { - color: #d9453d; -} -.diff-bar .diff-status { - width: 50px; - background-color: #d9453d; - height: 10px; - margin-top: 7px; - margin-left: 4px; - margin-right: 4px; - border-radius: .2em; -} -.diff-bar .diff-status-inner { - width: 45%; - background-color: #65ad4e; - height: 10px; - border-top-left-radius: .2em; - border-bottom-left-radius: .2em; -} -#pr-commit, -#pr-file-diff, -#issue-add-comment-preview { - display: none; -} -#pr-conversation-list { - padding-right: 30px; - box-sizing: border-box; -} -.issue-comment, -.issue-commit, -.issue-line, -.issue-merge, -.issue-add-comment { - margin-bottom: 24px; -} -.issue-comment .author-avatar img { - margin-right: 12px; -} -.issue-comment .panel { - margin-left: 60px; - margin-top: -40px; -} -.issue-comment .panel-header { - font-size: 13px; -} -.issue-comment .author-name { - font-weight: bold; -} -.issue-comment .date { - margin-left: 4px; - font-style: italic; - color: #888; -} -.issue-comment .action > * { - margin-left: 4px; - font-size: 12px; -} -.issue-comment .action i { - font-size: 13px; -} -.issue-commit { - line-height: 32px; -} -.issue-commit i, -.issue-commit .author-avatar img { - margin-right: 16px; -} -.issue-commit .sha { - margin-left: 24px; -} -.issue-commit .message { - display: block; - margin-left: 88px; - padding-top: 4px; - line-height: 24px; -} -.issue-merge .ico { - width: 40px; - height: 40px; - text-align: center; - color: #FFF; - margin-right: 12px; -} -.issue-merge .ico i { - margin-top: 8px; - font-size: 24px; -} -.issue-merge .panel { - margin-left: 60px; - margin-top: -40px; -} -.issue-merge .panel-header { - font-size: 13px; -} -.issue-merge-ok .ico { - background-color: #65AD4E; -} -.issue-merge-ok .panel, -.issue-merge-ok .panel-content, -.issue-merge-ok .panel-header { - border-color: #65AD4E; - background-color: #FFF; -} -.issue-merge-ok .panel-header { - color: #508a3e; -} -.issue-line { - height: 4px; - background-color: #E6E6E6; -} -.issue-add-comment .panel { - margin-left: 60px; - margin-top: -40px; -} -.issue-add-comment .panel-header { - font-size: 13px; - padding-bottom: 0; -} -.issue-add-comment .add-nav > li > a { - padding: 4px 12px; - color: #444; - border: 1px solid #CCC; - margin-bottom: -1px; - font-size: 14px; - border-top-left-radius: .3em; - border-top-right-radius: .3em; -} -.issue-add-comment .add-nav > li > a:hover { - background-color: #FFF; -} -.issue-add-comment .add-nav > li.js-tab-nav-show > a { - background-color: #FFF; -} -textarea#issue-add-content { - width: 100%; - box-sizing: border-box; - height: 120px; - resize: vertical; -} -#issue-list-nav { - border-bottom: 1px solid #DDD; - padding-bottom: 12px; -} -#issue-list-nav li > a { - font-size: 13px; - font-weight: bold; - padding: .2em .8em; -} -#issue-list-nav li.current > a { - background-color: #0079bc; - color: #FAFAFA; -} -#issue-list-nav li.right { - margin-left: 4px; -} -#issue-new > a, -#label-new > a, -#milestone-new > a { - padding: 0 !important; -} -#issue-new > a button, -#label-new > a button, -#milestone-new > a button { - height: 29px; -} -#issue-list-menu { - padding: 16px 0 12px 0; - border-bottom: 1px solid #BBB; - margin-bottom: 12px; -} -#issue-list-menu .mark a { - color: #AAA; -} -#issue-list-menu .mark a:hover { - color: #444; -} -#issue-list-menu .mark.hover a { - color: #222; - font-weight: bold; -} -#issue-list-menu > .left .mark { - margin-right: 12px; -} -#issue-list-menu > .right .mark { - margin-left: 12px; -} -#issue-list .item, -#pull-list .item { - position: relative; - padding-bottom: 12px; - margin-bottom: 12px; - border-bottom: 1px dashed #AAA; -} -#issue-list .item .title > .title-text, -#pull-list .item .title > .title-text { - color: #444; - font-size: 15px; - margin: 0 6px; -} -#issue-list .comment, -#pull-list .comment { - color: #666; - position: absolute; - top: 6px; - right: 0; -} -#issue-list .issue-label a, -#pull-list .issue-label a { - color: #FFF; -} -#issue-list .desc, -#pull-list .desc { - color: #999; -} -#issue-list .desc a, -#pull-list .desc a { - color: #999; -} -#issue-list .desc a:hover, -#pull-list .desc a:hover { - color: #03a2ef; -} -#issue-list-filter .drop > a { - width: 90px; - padding: 0; - margin-left: 12px; - text-align: center; -} -#issue-list-filter .drop-down { - z-index: 999; - width: 236px; - left: -158px; - top: 22px; - padding: 0 12px; -} -#issue-list-filter .drop-down h4 { - line-height: 40px; - border-bottom: 1px solid #CCC; - margin-bottom: 0; -} -#issue-list-filter .drop-down li { - line-height: 30px; - border-bottom: 1px dashed #EEE; - padding-left: 9px; -} -#issue-list-filter .drop-down li:hover { - background-color: #fcffec; -} -#issue-list-filter .drop-down > ul > li > a { - display: block; -} -#issue-list-filter .labels .color { - margin-top: 8px; - display: inline-block; - width: 12px; - height: 12px; - background-color: red; - margin-right: 9px; - margin-left: 9px; -} -#issue-list-filter .labels .name { - vertical-align: top; - display: inline-block; - color: #444; -} -#issue-list-filter .milestones a { - color: #444; - font-weight: bold; -} -#issue-list-pager { - margin: 18px 0 24px 0; - font-size: 14px; - line-height: 24px; -} -#labels-num { - margin-right: 1em; -} -#label-list a.right { - margin-left: 1em; - color: #999; - line-height: 30px; -} -#label-list a.right i { - margin-right: 3px; -} -#label-list a.right:hover { - color: #444444; -} -#label-list .num { - margin-right: 3px; -} -#label-list .issue-num { - margin-right: 4em; -} -#label-list .label:hover { - color: #FFF; -} -#label-list .label i { - margin-right: 6px; -} -#label-list .item { - height: 30px; - padding-bottom: 12px; - margin-bottom: 12px; - border-bottom: 1px dashed #AAA; -} -#label-add-form .ipt, -#label-edit-form .ipt, -#label-delete-form .ipt { - font-size: 14px; -} -#label-add-form .ipt[name=name], -#label-edit-form .ipt[name=name], -#label-delete-form .ipt[name=name] { - width: 300px; -} -#label-add-form .btn, -#label-edit-form .btn, -#label-delete-form .btn { - height: 33px; - font-size: 14px; - margin-left: 12px; -} -#label-add-form { - padding: 18px 0; - border-bottom: 1px solid #DDD; -} -#label-delete-form span { - line-height: 33px; -} -.label-color-drop .ipt { - width: 100px; -} -.label-color-drop .drop-down { - width: 128px !important; - top: 22px !important; - left: 50px !important; - padding: 12px; - line-height: 16px; -} -.label-color-drop .drop-down a.color { - width: 16px; - height: 16px; - display: inline-block; -} -.label-color-drop label { - width: 24px; - height: 24px; - display: inline-block; - margin: 0 1em; - vertical-align: middle; -} -#milestone-list { - padding-top: 6px; -} -#milestone-list .title-text { - font-size: 16px; -} -#milestone-list .desc { - color: #999; - line-height: 30px; -} -#milestone-list .content { - width: 400px; -} -#milestone-list .item { - padding-bottom: 18px; - margin-bottom: 18px; - border-bottom: 1px dashed #AAA; - position: relative; -} -#milestone-list .action { - position: absolute; - top: 0; - right: 0; -} -#milestone-list .status-bar > .bar { - margin: -2px 8px 0 8px; - width: 360px; - background-color: #DDD; - height: 14px; - vertical-align: middle; -} -#milestone-list .status-bar .opening { - background-color: #65ad4e; - width: 40%; - height: 14px; - vertical-align: top; -} -#milestone-list .action-bar { - margin-top: 8px; -} -#milestone-list .action-bar a { - margin-left: 12px; -} -.issues.list-group { - margin: 10px 0 20px 0; -} -.issues.list-group > .list-group-item { - background-color: #FFF; - border: 1px solid #e5e5e5; - display: block; - padding: 10px 15px; - margin-bottom: -1px; -} -.issues.list-group > .list-group-item:hover { - background-color: rgba(19, 95, 215, 0.03); -} -.issues.list-group > .list-group-item > .title { - margin-bottom: 16px; - font-weight: bold; - font-size: 1.2em; -} -.issues.list-group > .list-group-item > .title > a { - color: #444; -} -.issues.list-group > .list-group-item > .info span { - margin-right: 12px; - color: #888; - line-height: 20px; -} -.issues.list-group > .list-group-item > .info span > a { - color: #444; -} -.org-header-alert .alert { - margin-top: 10px; -} -.org-header { - padding: 16px 0; - background-color: #FFF; - border-bottom: 1px solid #DDD; -} -.org-header img { - padding-right: 10px; -} -#org-home-header { - min-height: 100px; -} -#org-header { - height: 48px; -} -#org-header .org-name { - padding-left: 10px; - font-size: 1.4em; - height: 50px; - line-height: 50px; - margin-bottom: 0; -} -#org-header > div > .menu-line > li.right > a { - font-size: 1.2em; - color: #444444; -} -#org-header > div > .menu-line > li.right > a:hover { - background-color: transparent; - color: #d9453d; -} -#org-header > div > .menu-line > li.right > a .octicon { - margin-right: 4px; -} -#org-header > div > .menu-line > li.right > a .label { - margin-left: 4px; -} -#org-header > div > .menu-line > li.right .current { - border-bottom: 2px solid #D26911; -} -#org-home-header-info { - padding-top: 10px; -} -#org-home-header-info h2 { - font-size: 30px; -} -#org-home-header-info ul { - list-style: none; -} -#org-home-header-info ul li { - float: left; - padding-right: 5px; -} -#org-home-repo-list { - padding: 10px 0; -} -#org-repo-list { - padding: 10px 0; -} -#org-repo-list .org-repo-item { - border-top: 1px solid #eee; - padding: 30px 20px; -} -#org-repo-list .org-repo-item .org-repo-status { - list-style: none; - color: #888; -} -#org-repo-list .org-repo-item .org-repo-status li { - float: left; - margin-right: 6px; -} -#org-repo-list .org-repo-item h2 { - margin-bottom: 5px; -} -#org-repo-list .org-repo-item .org-repo-description { - margin: 0; - font-size: 14px; - color: #666; -} -#org-repo-list .org-repo-item .org-repo-updated { - font-size: 12px; - display: block; - margin: 5px 0 0; - color: #808080; -} -.org-sidebar { - margin: -80px 0 0 20px; -} -.org-sidebar .panel-footer { - padding: .8em 1.2em; -} -.org-sidebar .member-avatar-group { - padding: 15px; -} -.org-sidebar .member-avatar-group img { - width: 59px; - height: 59px; - border-radius: 3px; -} -#org-home-team-list { - padding: 0 15px; -} -#org-home-team-list ul { - list-style: none; - padding-top: 10px; -} -#org-home-team-list ul li { - padding: 10px 0; - border-bottom: 1px solid #eee; -} -#org-home-team-list ul li:last-child { - border-bottom: 0; -} -.team-name { - display: block; - font-size: 14px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.team-meta { - margin-top: 0; - margin-bottom: 0; - color: #777; -} -.org-toolbar { - padding: 10px 0; - border-bottom: 1px solid #eee; -} -#org-member-list .org-member-item { - height: 50px; - line-height: 50px; - border-bottom: 1px solid #eee; - padding: 15px 20px; -} -#org-member-list .org-member-item .member-name { - padding-left: 15px; -} -#org-member-list .org-member-item ul { - list-style: none; -} -#org-member-list .org-member-item ul li { - text-align: center; - display: inline-block; -} -.invite-box { - padding: 50px 0; - min-height: 130px; - margin: 0 auto; - width: 50%; -} -.invite-box input { - width: 300px; -} -#org-member-list-block { - padding-top: 2px; -} -.org-team-list .org-team-list-item { - float: left; - padding: 15px; - width: 555px; -} -.org-team-list .org-team-list-item .member-avatar-group { - padding: 5px 15px; -} -.org-team-list .org-team-list-item .member-avatar-group img { - width: 38px; - height: 38px; - border-radius: 3px; -} -#team-create-form .note { - margin-left: 153px; -} -#org-team-card .desc { - font-size: 14px; - padding: 10px 20px; -} -#org-team-card .team-stats { - padding: 0 20px 10px 20px; - text-transform: uppercase; - border-bottom: 1px solid #dddddd; -} -#org-team-card .panel-footer { - padding: 10px 20px; -} -#team-repositories-list .panel-body .search, -#team-members-list .panel-body .search { - padding: 4px 0 10px 10px; - border-bottom: 1px solid #dddddd; -} -#team-repositories-list li.collab, -#team-members-list li.collab { - padding-top: 10px !important; - border-bottom: 1px solid #dddddd; -} -#team-repositories-list li:last-child, -#team-members-list li:last-child { - border-bottom: 0 !important; -} -#team-repositories-list li a .octicon { - color: #888; -} -#team-repositories-list li .member { - color: #428bca; - font-size: 14px; - height: 40px; - line-height: 40px; -} -.admin-panel { - padding: 10px 20px; -} -.admin-desc { - padding: 10px 20px; -} -.admin-table { - padding: 15px 0 5px 0; -} -.dl-horizontal dt { - float: left; - width: 160px; - clear: left; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.admin-dl-horizontal { - padding: 20px; -} -.admin-dl-horizontal > dt { - width: 250px; -} -.admin-dl-horizontal > dd { - margin-left: 240px; -} -.profile-avatar { - width: 100%; - border-radius: 6px; -} -#profile-name { - padding: 10px 0; -} -#profile-fullname { - font-size: 1.6em; -} -#profile-username { - font-size: 1.6em; - font-weight: bold; -} -.profile-info { - font-size: 14px; -} -.profile-info ul { - padding-bottom: 10px; -} -.profile-info ul .list-group-item { - background-color: transparent; - padding-top: 5px; - color: #666; -} -.profile-info ul .profile-rel { - width: 31%; - text-align: center; - display: inline-block; -} -.profile-info ul .profile-rel strong { - display: block; - font-size: 28px; - font-weight: bold; - line-height: 1; -} -.profile-info ul .profile-rel p { - font-size: 12px; -} -#profile-header li a { - font-size: 1.2em; - color: #444444; - padding: .4em .8em; -} -#profile-header li a:hover { - background-color: transparent; - color: #d9453d; -} -#profile-header li .current { - border-bottom: 2px solid #D26911; -} -#profile-body { - margin-left: 20px; -} diff --git a/public/ng/css/magnific-popup.css b/public/ng/css/magnific-popup.css deleted file mode 100644 index 798ac9d8..00000000 --- a/public/ng/css/magnific-popup.css +++ /dev/null @@ -1,368 +0,0 @@ -/* Magnific Popup CSS */ -.mfp-bg { - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: 1042; - overflow: hidden; - position: fixed; - background: #0b0b0b; - opacity: 0.8; - filter: alpha(opacity=80); } - -.mfp-wrap { - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: 1043; - position: fixed; - outline: none !important; - -webkit-backface-visibility: hidden; } - -.mfp-container { - text-align: center; - position: absolute; - width: 100%; - height: 100%; - left: 0; - top: 0; - padding: 0 8px; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; } - -.mfp-container:before { - content: ''; - display: inline-block; - height: 100%; - vertical-align: middle; } - -.mfp-align-top .mfp-container:before { - display: none; } - -.mfp-content { - position: relative; - display: inline-block; - vertical-align: middle; - margin: 0 auto; - text-align: left; - z-index: 1045; } - -.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content { - width: 100%; - cursor: auto; } - -.mfp-ajax-cur { - cursor: progress; } - -.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close { - cursor: -moz-zoom-out; - cursor: -webkit-zoom-out; - cursor: zoom-out; } - -.mfp-zoom { - cursor: pointer; - cursor: -webkit-zoom-in; - cursor: -moz-zoom-in; - cursor: zoom-in; } - -.mfp-auto-cursor .mfp-content { - cursor: auto; } - -.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter { - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; } - -.mfp-loading.mfp-figure { - display: none; } - -.mfp-hide { - display: none !important; } - -.mfp-preloader { - color: #cccccc; - position: absolute; - top: 50%; - width: auto; - text-align: center; - margin-top: -0.8em; - left: 8px; - right: 8px; - z-index: 1044; } - .mfp-preloader a { - color: #cccccc; } - .mfp-preloader a:hover { - color: white; } - -.mfp-s-ready .mfp-preloader { - display: none; } - -.mfp-s-error .mfp-content { - display: none; } - -button.mfp-close, button.mfp-arrow { - overflow: visible; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; - display: block; - outline: none; - padding: 0; - z-index: 1046; - -webkit-box-shadow: none; - box-shadow: none; } -button::-moz-focus-inner { - padding: 0; - border: 0; } - -.mfp-close { - width: 44px; - height: 44px; - line-height: 44px; - position: absolute; - right: 0; - top: 0; - text-decoration: none; - text-align: center; - opacity: 0.65; - filter: alpha(opacity=65); - padding: 0 0 18px 10px; - color: white; - font-style: normal; - font-size: 28px; - font-family: Arial, Baskerville, monospace; } - .mfp-close:hover, .mfp-close:focus { - opacity: 1; - filter: alpha(opacity=100); } - .mfp-close:active { - top: 1px; } - -.mfp-close-btn-in .mfp-close { - color: #333333; } - -.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close { - color: white; - right: -6px; - text-align: right; - padding-right: 6px; - width: 100%; } - -.mfp-counter { - position: absolute; - top: 0; - right: 0; - color: #cccccc; - font-size: 12px; - line-height: 18px; } - -.mfp-arrow { - position: absolute; - opacity: 0.65; - filter: alpha(opacity=65); - margin: 0; - top: 50%; - margin-top: -55px; - padding: 0; - width: 90px; - height: 110px; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } - .mfp-arrow:active { - margin-top: -54px; } - .mfp-arrow:hover, .mfp-arrow:focus { - opacity: 1; - filter: alpha(opacity=100); } - .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a { - content: ''; - display: block; - width: 0; - height: 0; - position: absolute; - left: 0; - top: 0; - margin-top: 35px; - margin-left: 35px; - border: medium inset transparent; } - .mfp-arrow:after, .mfp-arrow .mfp-a { - border-top-width: 13px; - border-bottom-width: 13px; - top: 8px; } - .mfp-arrow:before, .mfp-arrow .mfp-b { - border-top-width: 21px; - border-bottom-width: 21px; - opacity: 0.7; } - -.mfp-arrow-left { - left: 0; } - .mfp-arrow-left:after, .mfp-arrow-left .mfp-a { - border-right: 17px solid white; - margin-left: 31px; } - .mfp-arrow-left:before, .mfp-arrow-left .mfp-b { - margin-left: 25px; - border-right: 27px solid #3f3f3f; } - -.mfp-arrow-right { - right: 0; } - .mfp-arrow-right:after, .mfp-arrow-right .mfp-a { - border-left: 17px solid white; - margin-left: 39px; } - .mfp-arrow-right:before, .mfp-arrow-right .mfp-b { - border-left: 27px solid #3f3f3f; } - -.mfp-iframe-holder { - padding-top: 40px; - padding-bottom: 40px; } - .mfp-iframe-holder .mfp-content { - line-height: 0; - width: 100%; - max-width: 900px; } - .mfp-iframe-holder .mfp-close { - top: -40px; } - -.mfp-iframe-scaler { - width: 100%; - height: 0; - overflow: hidden; - padding-top: 56.25%; } - .mfp-iframe-scaler iframe { - position: absolute; - display: block; - top: 0; - left: 0; - width: 100%; - height: 100%; - box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); - background: black; } - -/* Main image in popup */ -img.mfp-img { - width: auto; - max-width: 100%; - height: auto; - display: block; - line-height: 0; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 40px 0 40px; - margin: 0 auto; } - -/* The shadow behind the image */ -.mfp-figure { - line-height: 0; } - .mfp-figure:after { - content: ''; - position: absolute; - left: 0; - top: 40px; - bottom: 40px; - display: block; - right: 0; - width: auto; - height: auto; - z-index: -1; - box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); - background: #444444; } - .mfp-figure small { - color: #bdbdbd; - display: block; - font-size: 12px; - line-height: 14px; } - .mfp-figure figure { - margin: 0; } - -.mfp-bottom-bar { - margin-top: -36px; - position: absolute; - top: 100%; - left: 0; - width: 100%; - cursor: auto; } - -.mfp-title { - text-align: left; - line-height: 18px; - color: #f3f3f3; - word-wrap: break-word; - padding-right: 36px; } - -.mfp-image-holder .mfp-content { - max-width: 100%; } - -.mfp-gallery .mfp-image-holder .mfp-figure { - cursor: pointer; } - -@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { - /** - * Remove all paddings around the image on small screen - */ - .mfp-img-mobile .mfp-image-holder { - padding-left: 0; - padding-right: 0; } - .mfp-img-mobile img.mfp-img { - padding: 0; } - .mfp-img-mobile .mfp-figure:after { - top: 0; - bottom: 0; } - .mfp-img-mobile .mfp-figure small { - display: inline; - margin-left: 5px; } - .mfp-img-mobile .mfp-bottom-bar { - background: rgba(0, 0, 0, 0.6); - bottom: 0; - margin: 0; - top: auto; - padding: 3px 5px; - position: fixed; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; } - .mfp-img-mobile .mfp-bottom-bar:empty { - padding: 0; } - .mfp-img-mobile .mfp-counter { - right: 5px; - top: 3px; } - .mfp-img-mobile .mfp-close { - top: 0; - right: 0; - width: 35px; - height: 35px; - line-height: 35px; - background: rgba(0, 0, 0, 0.6); - position: fixed; - text-align: center; - padding: 0; } } - -@media all and (max-width: 900px) { - .mfp-arrow { - -webkit-transform: scale(0.75); - transform: scale(0.75); } - .mfp-arrow-left { - -webkit-transform-origin: 0; - transform-origin: 0; } - .mfp-arrow-right { - -webkit-transform-origin: 100%; - transform-origin: 100%; } - .mfp-container { - padding-left: 6px; - padding-right: 6px; } } - -.mfp-ie7 .mfp-img { - padding: 0; } -.mfp-ie7 .mfp-bottom-bar { - width: 600px; - left: 50%; - margin-left: -300px; - margin-top: 5px; - padding-bottom: 5px; } -.mfp-ie7 .mfp-container { - padding: 0; } -.mfp-ie7 .mfp-content { - padding-top: 44px; } -.mfp-ie7 .mfp-close { - top: 0; - right: 0; - padding-top: 0; } diff --git a/public/ng/css/tipsy.css b/public/ng/css/tipsy.css deleted file mode 100644 index f170fb71..00000000 --- a/public/ng/css/tipsy.css +++ /dev/null @@ -1,25 +0,0 @@ -.tipsy { font-size: 10px; position: absolute; padding: 5px; z-index: 100000; } - .tipsy-inner { background-color: #000; color: #FFF; max-width: 200px; padding: 5px 8px 4px 8px; text-align: center; } - - /* Rounded corners */ - .tipsy-inner { border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; } - - /* Uncomment for shadow */ - /*.tipsy-inner { box-shadow: 0 0 5px #000000; -webkit-box-shadow: 0 0 5px #000000; -moz-box-shadow: 0 0 5px #000000; }*/ - - .tipsy-arrow { position: absolute; width: 0; height: 0; line-height: 0; border: 5px dashed #000; } - - /* Rules to colour arrows */ - .tipsy-arrow-n { border-bottom-color: #000; } - .tipsy-arrow-s { border-top-color: #000; } - .tipsy-arrow-e { border-left-color: #000; } - .tipsy-arrow-w { border-right-color: #000; } - - .tipsy-n .tipsy-arrow { top: 0px; left: 50%; margin-left: -5px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent; } - .tipsy-nw .tipsy-arrow { top: 0; left: 10px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent;} - .tipsy-ne .tipsy-arrow { top: 0; right: 10px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent;} - .tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -5px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; } - .tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; } - .tipsy-se .tipsy-arrow { bottom: 0; right: 10px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; } - .tipsy-e .tipsy-arrow { right: 0; top: 50%; margin-top: -5px; border-left-style: solid; border-right: none; border-top-color: transparent; border-bottom-color: transparent; } - .tipsy-w .tipsy-arrow { left: 0; top: 50%; margin-top: -5px; border-right-style: solid; border-left: none; border-top-color: transparent; border-bottom-color: transparent; } diff --git a/public/ng/css/ui.css b/public/ng/css/ui.css deleted file mode 100644 index fc128ff7..00000000 --- a/public/ng/css/ui.css +++ /dev/null @@ -1,945 +0,0 @@ -* { - padding: 0; - margin: 0; -} -html { - font-size: 13px; - font-family: Helvetica, "Microsoft Yahei", Arial, sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; - line-height: 24px; - color: #444444; - background-color: #fafafa; -} -input, -textarea, -select, -option, -button { - font-family: Helvetica, "Microsoft Yahei", Arial, sans-serif; -} -article, -aside, -details, -figcaption, -figure, -footer, -header, -main, -nav, -section, -summary, -.block { - display: block; -} -.inline { - display: inline; -} -.inline-block { - display: inline-block; -} -.dis-table { - display: table; -} -.dis-table-cell { - display: table-cell; -} -.dis-flex { - display: flex; -} -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; -} -audio:not([controls]) { - display: none; - height: 0; -} -[hidden], -template, -.hidden { - display: none; -} -.opacity { - opacity: 0; -} -.opacity-half { - opacity: .5; -} -a, -.text-link { - color: #428bca; - text-decoration: none; - cursor: pointer; -} -a:hover, -.text-link:hover { - color: #399ade; - text-decoration: none; -} -a:focus, -.text-link:focus { - outline: none; -} -b, -strong, -.text-bold { - font-weight: bold; -} -dfn, -.text-italic { - font-style: italic; -} -h1, -.text-h1 { - font-size: 2em; - margin-bottom: 0.67em; -} -h2, -.text-h2 { - font-size: 1.6em; - margin-bottom: 0.625em; -} -h3, -.text-h3 { - font: 1.2em; - margin-bottom: 0.5em; -} -h4, -h5, -h6, -.text-h4, -.text-h5, -.text-h6 { - font-size: 1em; - margin-bottom: .3em; -} -small, -.text-small { - font-size: .8em; -} -sub, -sup, -.text-sup, -.text-sub { - font-size: .7em; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sup, -.text-sup { - top: -0.5em; -} -sub, -.text-sub { - bottom: -0.25em; -} -.figure, -.blockquote { - margin: 1em 1.5em; -} -pre { - overflow: auto; - margin: 0; - padding: .4em 1em; -} -code, -kbd, -pre, -samp { - font-family: monospace; - font-size: 1em; -} -.text-left { - text-align: left; -} -.text-right { - text-align: right; -} -.text-center { - text-align: center; -} -.list-no-style { - list-style: none; -} -img { - border: none; -} -svg:not(:root) { - overflow: hidden; -} -label { - font-weight: bold; -} -textarea, -input, -.ipt { - padding: .6em; - line-height: normal; - border: 1px solid #bbbbbb; -} -textarea:focus, -input:focus, -.ipt:focus { - background-color: #f2fffc; - outline: none; -} -button, -.btn { - overflow: visible; - padding: .6em 1.2em; -} -button, -select { - text-transform: none; -} -button:focus, -select:focus { - outline: none; -} -button, -input[type="button"], -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; - -moz-appearance: button; - cursor: pointer; - background-color: #888888; - color: #fafafa; - border: none; -} -button:hover, -input[type="button"]:hover, -input[type="reset"]:hover, -input[type="submit"]:hover { - background-color: #444444; - color: #ffffff; -} -button[disabled], -html input[disabled] { - cursor: default; -} -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; - padding: 0; -} -input[type="search"] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; - box-sizing: content-box; -} -fieldset { - border: 1px solid #bbbbbb; - margin: 0 2px; - padding: 0.4em 0.8em 0.8em; -} -legend { - border: 0; - padding: 0; -} -textarea { - overflow: auto; - border: 1px solid #bbbbbb; - padding: .6em; -} -textarea:focus { - background-color: #f2fffc; - outline: none; -} -optgroup { - font-weight: bold; -} -table { - background-color: transparent; - border-collapse: collapse; - border-spacing: 0; -} -td, -th { - padding: 0; -} -hr { - -moz-box-sizing: content-box; - box-sizing: content-box; - height: 0; - border: none; - border-bottom: 1px solid #dddddd; - margin-bottom: .75em; -} -.radius { - border-radius: .25em; -} -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - display: inline-block; - vertical-align: top; -} -pre { - line-height: 1.6; - overflow: auto; - padding: 0; -} -dt { - font-weight: bold; -} -.left { - float: left; -} -.right { - float: right; -} -.clear::after { - clear: both; - content: " "; - width: 0; - height: 0; - display: block; -} -.hide { - display: none; -} -.grid-1-12 { - width: 8.33%; -} -.grid-2-12, -.grid-1-6 { - width: 16.67%; -} -.grid-3-12, -.grid-1-4 { - width: 25%; -} -.grid-4-12, -.grid-1-3 { - width: 33%; -} -.grid-5-12 { - width: 41.67%; -} -.grid-6-12, -.grid-1-2 { - width: 50%; -} -.grid-7-12 { - width: 58.33%; -} -.grid-8-12, -.grid-2-3 { - width: 66.67%; -} -.grid-9-12, -.grid-3-4 { - width: 75%; -} -.grid-10-12, -.grid-5-6 { - width: 83.33%; -} -.grid-11-12 { - width: 91.67%; -} -*[class*="grid-"] { - box-sizing: content-box; -} -.grid-1-5 { - width: 20%; -} -.grid-2-5 { - width: 40%; -} -.grid-3-5 { - width: 60%; -} -.grid-4-5 { - width: 80%; -} -.btn { - white-space: nowrap; -} -.btn-small { - font-size: 10.8px; - padding: .4em .9em; -} -.btn-medium { - font-size: 12px; - padding: .4em .9em; -} -.btn-large { - font-size: 14.4px; - padding: .4em .9em; -} -.btn-green { - background-color: #65ad4e; - border: 1px solid #65ad4e; -} -.btn-green:hover { - background-color: #71bf57; - color: #FFF; -} -.btn-blue { - background-color: #428bca; - border: 1px solid #428bca; -} -.btn-blue:hover { - background-color: #539cdb; - color: #FFF; -} -.btn-red { - color: #FFF; - background-color: #d9453d; - border: 1px solid #d9453d; -} -.btn-red:hover { - background-color: #ff635a; - color: #FFF; -} -.btn-orange { - background-color: #df7514; - border: 1px solid #df7514; -} -.btn-orange:hover { - background-color: #df8229; - color: #FFF; -} -.btn-black { - background-color: #444444; - border: 1px solid #444444; -} -.btn-black:hover { - background-color: #383838; - color: #FFF; -} -.btn-gray { - background-color: #f0f0f0; - color: #444444; - border: 1px solid #d0d0d0; -} -.btn-gray:hover { - background-color: #fafafa; - color: #444444; -} -.btn-white { - background-color: #ffffff; - color: #444444; - border: 1px solid #c6c6c6; -} -.btn-white:hover { - background-color: #e8e8e8; - color: #444444; -} -.btn-white.active { - background-color: #e8e8e8; - color: #444444; -} -.btn-active { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset, 0 0 4px rgba(0, 0, 0, 0.15) inset; -} -.btn-header { - margin-top: -1px; - color: white; - padding: 0 10px; -} -.btn-link { - overflow: visible; - color: white; - padding: .6em 1.2em; -} -.btn-radius { - border-radius: .25em; -} -.btn-left-radius { - border-top-left-radius: .25em; - border-bottom-left-radius: .25em; -} -.btn-right-radius { - border-top-right-radius: .25em; - border-bottom-right-radius: .25em; -} -.btn-block { - display: block; - width: 100%; - box-sizing: content-box; - text-align: center; -} -.btn-comb { - margin-left: -1px; -} -.btn-disabled { - opacity: .6; - cursor: not-allowed; - box-shadow: none; - background-image: none !important; - border: none; -} -.btn-disabled:hover { - background-image: none !important; - color: #ffffff; -} -.btn-group { - display: inline-block; -} -.btn-group > .btn { - position: relative; - float: left; - margin-right: -1px; -} -.btn-group > .btn:first-child { - border-bottom-left-radius: .25em; - border-top-left-radius: .25em; -} -.btn-group > .btn:last-child { - border-bottom-right-radius: .25em; - border-top-right-radius: .25em; -} -.ipt:focus { - border-color: #428bca; -} -.ipt-radius { - border-radius: .25em; -} -.ipt-small { - font-size: 9.6px; -} -.ipt-large { - font-size: 14.4px; -} -.ipt-textarea { - height: auto !important; - width: auto; -} -.ipt-disabled, -input[disabled] { - background-color: #f2f2f2 !important; - color: #888; - cursor: not-allowed; -} -.ipt-disabled:focus, -input[disabled]:focus { - background-color: #f2f2f2 !important; -} -.ipt-readonly:focus, -input[readonly]:focus { - background-color: #f2f2f2 !important; -} -.ipt-error { - border-color: #b63b2c !important; - background-color: #fff0f0 !important; -} -.form label { - margin-right: 1em; -} -.form .help { - color: #999999; - padding-top: .6em; - display: inline-block; -} -.form-stack label { - display: block; -} -.form-stack .field { - margin-bottom: 1em; -} -.form-align label, -.form-align .form-label { - display: inline-block; - width: 120px; - text-align: right; - margin-right: 1em; -} -.form-align .field { - margin-bottom: 1em; -} -label.text-left { - text-align: left; -} -label.req:after { - content: "*"; - color: #d9453d; -} -ul.menu > li { - list-style: none; -} -ul.menu > li > a { - padding: .8em 1.2em; -} -ul.menu > li > a:hover { - background-color: #eaeaea; - color: #444444; -} -ul.menu > li > a.active { - background-color: #4183c4; - color: #FFF; -} -ul.menu > li.current > a, -ul.menu > li.hover > a { - color: #444444; -} -ul.menu > li.head { - font-weight: bold; - padding: .8em 1.2em; -} -ul.menu > li.down:hover > ul.menu-down { - display: block; -} -ul.menu > li.border-bottom { - border-bottom: 1px solid #bbbbbb; - height: 0; - margin: .5em 0; -} -ul.menu-line > li, -ul.menu-line > li > a { - display: inline-block; -} -ul.menu-line > li.down { - position: relative; -} -ul.menu-line > li.down > a:after { - content: "\25BE"; - margin-left: .4em; -} -ul.menu-line > li.down > ul.menu-down { - top: 2.1em; - width: 150%; -} -ul.menu-line > li.hover { - position: relative; -} -ul.menu-line > li.hover > a:after { - position: absolute; - content: "\25B4"; - left: 50%; - bottom: -1.1em; - margin-left: -4px; -} -ul.menu-vertical > li > a, -ul.menu-down > li > a, -ul.menu-vertical > li.head, -ul.menu-down > li.head { - display: block; - padding: .4em 1.2em; -} -ul.menu-vertical > li.down, -ul.menu-down > li.down { - position: relative; -} -ul.menu-vertical > li.down > a:after, -ul.menu-down > li.down > a:after { - content: "\25B8"; - position: absolute; - right: .6em; -} -ul.menu-vertical > li.hover, -ul.menu-down > li.hover { - position: relative; -} -ul.menu-vertical > li.hover > a:after, -ul.menu-down > li.hover > a:after { - content: "\25B8"; - position: absolute; - left: .5em; -} -ul.menu-border, -ul.menu-down { - border: 1px solid #bbbbbb; -} -ul.menu-border > li.head, -ul.menu-down > li.head { - border-bottom: 1px solid #bbbbbb; -} -ul.menu-down { - position: absolute; - display: none; - z-index: 99; - box-shadow: 0 0 2px #666666; - background-color: #ffffff; -} -ul.menu-down-show { - position: absolute; - z-index: 99; - box-shadow: 0 0 2px #666666; - background-color: #ffffff; -} -ul.menu-radius { - border-radius: .3em; -} -ul.menu-radius > li:first-child { - border-top-left-radius: .3em; - border-top-right-radius: .3em; -} -ul.menu-radius > li:first-child > a { - border-top-left-radius: .2em; - border-top-right-radius: .2em; -} -ul.menu-radius > li:last-child { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -ul.menu-radius > li:last-child > a { - border-bottom-left-radius: .2em; - border-bottom-right-radius: .2em; -} -.drop { - position: relative; -} -.drop:hover > .drop-down { - position: absolute; - top: 0; - left: 0; - width: 200%; - display: block; -} -.drop > .drop-down { - display: none; - border: 1px solid #bbbbbb; - box-shadow: 0 0 3px #666666; - background-color: #ffffff; -} -.drop-bottom:after { - content: "\25BE"; - margin-left: .4em; -} -.drop-top:after { - content: "\25B4"; - margin-left: .4em; -} -.panel { - border: 1px solid #cccccc; -} -.panel .panel-header { - font-size: 16px; - padding: .6em 1.2em; - background-color: #eeeeee; - border-bottom: 1px solid #cccccc; -} -.panel .panel-body { - background-color: white; -} -.panel .panel-body .panel-desc { - padding: 0 40px 20px 40px; -} -.panel .panel-content { - padding: 1em 1.2em; -} -.panel .panel-footer { - padding: .6em 1.2em; - background-color: #eeeeee; - border-top: 1px solid #cccccc; -} -.panel.panel-radius { - border-radius: .3em; -} -.panel.panel-radius .panel-header { - border-top-left-radius: .3em; - border-top-right-radius: .3em; -} -.panel.panel-radius .panel-footer { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -.panel.panel-radius .panel-content { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -.panel.panel-info { - border-color: #85c5e5; -} -.panel.panel-info > .panel-header { - color: #31708f; - background-color: #d9edf7; - border-color: #85c5e5; -} -.panel.panel-warning { - border-color: #F0C36D; -} -.panel.panel-warning > .panel-header { - background-color: #F9EDBE; - border-color: #F0C36D; -} -.label { - padding: .3em .6em .2em .6em; - color: #ffffff; -} -.label-red { - background-color: #d9453d; -} -.label-blue { - background-color: #428bca; -} -.label-gray { - background-color: #999999; -} -.label-green { - background-color: #65ad4e; -} -.label-green:hover { - background-color: #71bf57; - color: #FFF; -} -.label-orange { - background-color: #df7514; -} -.label-black { - background-color: #444444; -} -.label-radius { - border-radius: .2em; -} -.label-link { - color: #ffffff; -} -.label-link:hover { - color: #ffffff; -} -.breads .bread:after { - content: "/"; - font-weight: bold; - margin: 0 4px 0 7px; - color: #444444; -} -.breads .bread:last-child:after { - content: ""; - margin: 0; -} -.alert { - padding: .6em 1.5em; - margin-bottom: 10px; -} -.alert i { - margin-right: 8px; -} -.alert-radius { - border-radius: .25em; -} -.alert-red { - color: #d9453d; - border: 1px solid #be2d25; - background-color: #fae9e8; -} -.alert-blue { - color: #428bca; - border: 1px solid #3071a9; - background-color: #f5f9fc; -} -.alert-green { - color: #65ad4e; - border: 1px solid #508a3e; - background-color: #edf6eb; -} -.alert-gray { - color: #999999; - border: 1px solid #808080; - background-color: #f2f2f2; -} -.alert-orange { - color: #df7514; - border: 1px solid #b05c10; - background-color: #fcecdd; -} -.white-popup-block { - background: #FFF; - padding: 20px 30px; - text-align: left; - max-width: 650px; - margin: 40px auto; - position: relative; -} -.white-popup-block p { - font-size: 14px; -} -table th, -table td { - padding: .3em .6em; - line-height: 30px; -} -.table-border { - border: 1px solid #d6d6d6; -} -.table-border tr { - border-top: 1px solid #eaeaea; -} -.table-border tr th, -.table-border tr td { - border-top: 1px solid #eaeaea; -} -.table-border tr:first-child { - border-top: none; -} -.table-border thead { - border-bottom: 1px solid #d6d6d6; -} -.table-block { - width: 100%; - box-sizing: border-box; -} -.table-radius { - border-collapse: separate !important; - border-radius: .3em; -} -.table-radius thead:first-child { - border-top-left-radius: .3em; - border-top-right-radius: .3em; -} -.table-radius thead:first-child tr:first-child { - border-top-left-radius: .3em; -} -.table-radius thead:first-child tr:first-child > th:first-child { - border-top-left-radius: .3em; -} -.table-radius thead:first-child tr:first-child > th:last-child { - border-top-right-radius: .3em; -} -.table-radius tbody { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -.table-radius tbody tr:last-child { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -.table-radius tbody tr:last-child > td:first-child { - border-bottom-left-radius: .3em; -} -.table-radius tbody tr:last-child > td:last-child { - border-bottom-right-radius: .3em; -} -.pager .page { - padding: .3em .5em .2em .5em; - margin: 0 .3em; - background-color: #cccccc; - color: #444444; -} -.pager .page:hover, -.pager .page.hover { - background-color: #428bca; - color: #ffffff; -} -.pager .prev, -.pager .next { - padding: .4em .6em; - margin: 0 .3em; - background-color: #505050; - color: #fafafa; -} -.pager .prev.invalid, -.pager .next.invalid { - background-color: #eeeeee; - color: #aaaaaa; - cursor: not-allowed; -} -.pager .page-radius { - border-radius: .2em; -} diff --git a/public/ng/fonts/FontAwesome.otf b/public/ng/fonts/FontAwesome.otf Binary files differdeleted file mode 100644 index 681bdd4d..00000000 --- a/public/ng/fonts/FontAwesome.otf +++ /dev/null diff --git a/public/ng/fonts/fontawesome-webfont.eot b/public/ng/fonts/fontawesome-webfont.eot Binary files differdeleted file mode 100644 index a30335d7..00000000 --- a/public/ng/fonts/fontawesome-webfont.eot +++ /dev/null diff --git a/public/ng/fonts/fontawesome-webfont.svg b/public/ng/fonts/fontawesome-webfont.svg deleted file mode 100644 index 6fd19abc..00000000 --- a/public/ng/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,640 +0,0 @@ -<?xml version="1.0" standalone="no"?> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> -<metadata></metadata> -<defs> -<font id="fontawesomeregular" horiz-adv-x="1536" > -<font-face units-per-em="1792" ascent="1536" descent="-256" /> -<missing-glyph horiz-adv-x="448" /> -<glyph unicode=" " horiz-adv-x="448" /> -<glyph unicode="	" horiz-adv-x="448" /> -<glyph unicode=" " horiz-adv-x="448" /> -<glyph unicode="¨" horiz-adv-x="1792" /> -<glyph unicode="©" horiz-adv-x="1792" /> -<glyph unicode="®" horiz-adv-x="1792" /> -<glyph unicode="´" horiz-adv-x="1792" /> -<glyph unicode="Æ" horiz-adv-x="1792" /> -<glyph unicode="Ø" horiz-adv-x="1792" /> -<glyph unicode=" " horiz-adv-x="768" /> -<glyph unicode=" " horiz-adv-x="1537" /> -<glyph unicode=" " horiz-adv-x="768" /> -<glyph unicode=" " horiz-adv-x="1537" /> -<glyph unicode=" " horiz-adv-x="512" /> -<glyph unicode=" " horiz-adv-x="384" /> -<glyph unicode=" " horiz-adv-x="256" /> -<glyph unicode=" " horiz-adv-x="256" /> -<glyph unicode=" " horiz-adv-x="192" /> -<glyph unicode=" " horiz-adv-x="307" /> -<glyph unicode=" " horiz-adv-x="85" /> -<glyph unicode=" " horiz-adv-x="307" /> -<glyph unicode=" " horiz-adv-x="384" /> -<glyph unicode="™" horiz-adv-x="1792" /> -<glyph unicode="∞" horiz-adv-x="1792" /> -<glyph unicode="≠" horiz-adv-x="1792" /> -<glyph unicode="◼" horiz-adv-x="500" d="M0 0z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" /> -<glyph unicode="" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" /> -<glyph unicode="" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" /> -<glyph unicode="" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> -<glyph unicode="" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" /> -<glyph unicode="" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" /> -<glyph unicode="" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " /> -<glyph unicode="" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" /> -<glyph unicode="" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" /> -<glyph unicode="" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" /> -<glyph unicode="" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" /> -<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z " /> -<glyph unicode="" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" /> -<glyph unicode="" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" /> -<glyph unicode="" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" /> -<glyph unicode="" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" /> -<glyph unicode="" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" /> -<glyph unicode="" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" /> -<glyph unicode="" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" /> -<glyph unicode="" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" /> -<glyph unicode="" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" /> -<glyph unicode="" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" /> -<glyph unicode="" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" /> -<glyph unicode="" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" /> -<glyph unicode="" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" /> -<glyph unicode="" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> -<glyph unicode="" horiz-adv-x="1664" d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57 q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -4 -0.5 -13t-0.5 -13q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5 q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" /> -<glyph unicode="" horiz-adv-x="1408" d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142 q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5 t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68.5 -0.5t67.5 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5 t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" /> -<glyph unicode="" horiz-adv-x="1024" d="M0 -126l17 85q6 2 81.5 21.5t111.5 37.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5 q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2 t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5 q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" /> -<glyph unicode="" d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1 t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5 t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49 t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" /> -<glyph unicode="" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> -<glyph unicode="" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" /> -<glyph unicode="" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" /> -<glyph unicode="" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" /> -<glyph unicode="" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" /> -<glyph unicode="" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" /> -<glyph unicode="" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" /> -<glyph unicode="" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" /> -<glyph unicode="" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" /> -<glyph unicode="" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" /> -<glyph unicode="" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" /> -<glyph unicode="" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" /> -<glyph unicode="" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" /> -<glyph unicode="" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" /> -<glyph unicode="" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" /> -<glyph unicode="" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" /> -<glyph unicode="" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" /> -<glyph unicode="" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" /> -<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" /> -<glyph unicode="" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" /> -<glyph unicode="" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " /> -<glyph unicode="" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" /> -<glyph unicode="" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> -<glyph unicode="" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" /> -<glyph unicode="" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" /> -<glyph unicode="" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " /> -<glyph unicode="" horiz-adv-x="1664" d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45 t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" /> -<glyph unicode="" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" /> -<glyph unicode="" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" /> -<glyph unicode="" horiz-adv-x="2048" d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" /> -<glyph unicode="" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960z" /> -<glyph unicode="" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" /> -<glyph unicode="" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" /> -<glyph unicode="" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" /> -<glyph unicode="" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" /> -<glyph unicode="" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" /> -<glyph unicode="" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" /> -<glyph unicode="" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" /> -<glyph unicode="" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" /> -<glyph unicode="" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" /> -<glyph unicode="" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" /> -<glyph unicode="" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" /> -<glyph unicode="" horiz-adv-x="1024" d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" /> -<glyph unicode="" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" /> -<glyph unicode="" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" /> -<glyph unicode="" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" /> -<glyph unicode="" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" /> -<glyph unicode="" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5 t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" /> -<glyph unicode="" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" /> -<glyph unicode="" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" /> -<glyph unicode="" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" /> -<glyph unicode="" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" /> -<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" /> -<glyph unicode="" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" /> -<glyph unicode="" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" /> -<glyph unicode="" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " /> -<glyph unicode="" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" /> -<glyph unicode="" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " /> -<glyph unicode="" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" /> -<glyph unicode="" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" /> -<glyph unicode="" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" /> -<glyph unicode="" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" /> -<glyph unicode="" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" /> -<glyph unicode="" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" /> -<glyph unicode="" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" /> -<glyph unicode="" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" /> -<glyph unicode="" d="M829 318q0 -76 -58.5 -112.5t-139.5 -36.5q-41 0 -80.5 9.5t-75.5 28.5t-58 53t-22 78q0 46 25 80t65.5 51.5t82 25t84.5 7.5q20 0 31 -2q2 -1 23 -16.5t26 -19t23 -18t24.5 -22t19 -22.5t17 -26t9 -26.5t4.5 -31.5zM755 863q0 -60 -33 -99.5t-92 -39.5q-53 0 -93 42.5 t-57.5 96.5t-17.5 106q0 61 32 104t92 43q53 0 93.5 -45t58 -101t17.5 -107zM861 1120l88 64h-265q-85 0 -161 -32t-127.5 -98t-51.5 -153q0 -93 64.5 -154.5t158.5 -61.5q22 0 43 3q-13 -29 -13 -54q0 -44 40 -94q-175 -12 -257 -63q-47 -29 -75.5 -73t-28.5 -95 q0 -43 18.5 -77.5t48.5 -56.5t69 -37t77.5 -21t76.5 -6q60 0 120.5 15.5t113.5 46t86 82.5t33 117q0 49 -20 89.5t-49 66.5t-58 47.5t-49 44t-20 44.5t15.5 42.5t37.5 39.5t44 42t37.5 59.5t15.5 82.5q0 60 -22.5 99.5t-72.5 90.5h83zM1152 672h128v64h-128v128h-64v-128 h-128v-64h128v-160h64v160zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1664" d="M735 740q0 -36 32 -70.5t77.5 -68t90.5 -73.5t77 -104t32 -142q0 -90 -48 -173q-72 -122 -211 -179.5t-298 -57.5q-132 0 -246.5 41.5t-171.5 137.5q-37 60 -37 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 42 -47.5 74t-15.5 73q0 36 21 85q-46 -4 -68 -4 q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q77 66 182.5 98t217.5 32h418l-138 -88h-131q74 -63 112 -133t38 -160q0 -72 -24.5 -129.5t-59 -93t-69.5 -65t-59.5 -61.5t-24.5 -66zM589 836q38 0 78 16.5t66 43.5q53 57 53 159q0 58 -17 125t-48.5 129.5 t-84.5 103.5t-117 41q-42 0 -82.5 -19.5t-65.5 -52.5q-47 -59 -47 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26zM591 -37q58 0 111.5 13t99 39t73 73t27.5 109q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -48 2 q-53 0 -105 -7t-107.5 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -70 35 -123.5t91.5 -83t119 -44t127.5 -14.5zM1401 839h213v-108h-213v-219h-105v219h-212v108h212v217h105v-217z" /> -<glyph unicode="" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> -<glyph unicode="" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" /> -<glyph unicode="" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" /> -<glyph unicode="" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> -<glyph unicode="" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" /> -<glyph unicode="" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" /> -<glyph unicode="" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" /> -<glyph unicode="" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> -<glyph unicode="" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" /> -<glyph unicode="" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" /> -<glyph unicode="" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" /> -<glyph unicode="" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" /> -<glyph unicode="" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" /> -<glyph unicode="" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" /> -<glyph unicode="" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" /> -<glyph unicode="" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" /> -<glyph unicode="" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5 t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" /> -<glyph unicode="" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" /> -<glyph unicode="" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" /> -<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704 q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" /> -<glyph unicode="" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" /> -<glyph unicode="" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" /> -<glyph unicode="" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" /> -<glyph unicode="" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" /> -<glyph unicode="" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> -<glyph unicode="" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> -<glyph unicode="" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> -<glyph unicode="" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> -<glyph unicode="" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> -<glyph unicode="" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> -<glyph unicode="" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> -<glyph unicode="" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> -<glyph unicode="" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" /> -<glyph unicode="" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" /> -<glyph unicode="" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" /> -<glyph unicode="" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" /> -<glyph unicode="" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" /> -<glyph unicode="" horiz-adv-x="1792" d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5 q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" /> -<glyph unicode="" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" /> -<glyph unicode="" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" /> -<glyph unicode="" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" /> -<glyph unicode="" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" /> -<glyph unicode="" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" /> -<glyph unicode="" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" /> -<glyph unicode="" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" /> -<glyph unicode="" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" /> -<glyph unicode="" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" /> -<glyph unicode="" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" /> -<glyph unicode="" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" /> -<glyph unicode="" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" /> -<glyph unicode="" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" /> -<glyph unicode="" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" /> -<glyph unicode="" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" /> -<glyph unicode="" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" /> -<glyph unicode="" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" /> -<glyph unicode="" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> -<glyph unicode="" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" /> -<glyph unicode="" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" /> -<glyph unicode="" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" /> -<glyph unicode="" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" /> -<glyph unicode="" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" /> -<glyph unicode="" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" /> -<glyph unicode="" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" /> -<glyph unicode="" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" /> -<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" /> -<glyph unicode="" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" /> -<glyph unicode="" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" /> -<glyph unicode="" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" /> -<glyph unicode="" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" /> -<glyph unicode="" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" /> -<glyph unicode="" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" /> -<glyph unicode="" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" /> -<glyph unicode="" d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" /> -<glyph unicode="" d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" /> -<glyph unicode="" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" /> -<glyph unicode="" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" /> -<glyph unicode="" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" /> -<glyph unicode="" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" /> -<glyph unicode="" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" /> -<glyph unicode="" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" /> -<glyph unicode="" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" /> -<glyph unicode="" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" /> -<glyph unicode="" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" /> -<glyph unicode="" horiz-adv-x="1408" d="M928 135v-151l-707 -1v151zM1169 481v-701l-1 -35v-1h-1132l-35 1h-1v736h121v-618h928v618h120zM241 393l704 -65l-13 -150l-705 65zM309 709l683 -183l-39 -146l-683 183zM472 1058l609 -360l-77 -130l-609 360zM832 1389l398 -585l-124 -85l-399 584zM1285 1536 l121 -697l-149 -26l-121 697z" /> -<glyph unicode="" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" /> -<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" /> -<glyph unicode="" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" /> -<glyph unicode="" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1024" d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14 q78 2 134 29z" /> -<glyph unicode="" d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" /> -<glyph unicode="" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" /> -<glyph unicode="" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" /> -<glyph unicode="" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" /> -<glyph unicode="" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" /> -<glyph unicode="" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324 l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" /> -<glyph unicode="" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> -<glyph unicode="" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> -<glyph unicode="" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" /> -<glyph unicode="" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" /> -<glyph unicode="" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" /> -<glyph unicode="" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " /> -<glyph unicode="" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" /> -<glyph unicode="" d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179 q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" /> -<glyph unicode="" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="2176" d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40 t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29 q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9 q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102 t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" /> -<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69 q-46 32 -141.5 92.5t-142.5 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13 t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5 t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21 t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286 t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273 t273 -182.5t331.5 -68z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" /> -<glyph unicode="" horiz-adv-x="2048" d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" /> -<glyph unicode="" horiz-adv-x="2304" d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" /> -<glyph unicode="" d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q43 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" /> -<glyph unicode="" horiz-adv-x="1280" d="M981 197q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -49 2q-53 0 -104.5 -7t-107 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -56 23.5 -102t61 -75.5t87 -50t100 -29t101.5 -8.5q58 0 111.5 13t99 39t73 73t27.5 109zM864 1055 q0 59 -17 125.5t-48 129t-84 103.5t-117 41q-42 0 -82.5 -19.5t-66.5 -52.5q-46 -59 -46 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26q37 0 77.5 16.5t65.5 43.5q53 56 53 159zM752 1536h417l-137 -88h-132q75 -63 113 -133t38 -160q0 -72 -24.5 -129.5 t-59.5 -93t-69.5 -65t-59 -61.5t-24.5 -66q0 -36 32 -70.5t77 -68t90.5 -73.5t77.5 -104t32 -142q0 -91 -49 -173q-71 -122 -209.5 -179.5t-298.5 -57.5q-132 0 -246.5 41.5t-172.5 137.5q-36 59 -36 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 41 -47.5 73.5 t-15.5 73.5q0 40 21 85q-46 -4 -68 -4q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q76 66 182 98t218 32z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26 t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37 q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191 t348 71t348 -71t286 -191t191 -286t71 -348z" /> -<glyph unicode="" d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54 q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83 q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="1920" d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328 v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" /> -<glyph unicode="" d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="2048" d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123 v-369h123z" /> -<glyph unicode="" d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101 v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="2038" d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14 q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24 q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33 q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5 t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43 q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5 t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13 t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" /> -<glyph unicode="" d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10 q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14 q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14 t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44 q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" /> -<glyph unicode="" d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5 t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5 q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126 t135.5 51q85 0 145 -60.5t60 -145.5z" /> -<glyph unicode="" d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5 q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28 q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11 q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q106 35 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5 q20 0 20 -21v-418z" /> -<glyph unicode="" horiz-adv-x="1792" d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48 l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23 t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128 q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128 q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" /> -<glyph unicode="" d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9 t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9 t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9 t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68t68 28t68 -28l228 -228h368l228 228q28 28 68 28t68 -28t28 -68t-28 -68zM864 1152q0 -93 -65.5 -158.5 t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> -<glyph unicode="" horiz-adv-x="1664" d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5 q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819 q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5 t100.5 134t141.5 55.5z" /> -<glyph unicode="" horiz-adv-x="768" d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z " /> -<glyph unicode="" horiz-adv-x="2304" d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67 t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-5 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70 v-400l434 -186q36 -16 57 -48t21 -70z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658 q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204 q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" /> -<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5 t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217 t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5 q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89 q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" /> -<glyph unicode="" d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5 q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5 q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z " /> -<glyph unicode="" horiz-adv-x="1792" d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188 l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5 t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1 q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" /> -<glyph unicode="" horiz-adv-x="2048" d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384 q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5 l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5 t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" /> -<glyph unicode="" d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384 q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" /> -<glyph unicode="" d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64 q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37 q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="1024" d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" /> -<glyph unicode="" horiz-adv-x="2304" d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11 q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245 q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785 l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242 q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236q0 -11 -8 -19 t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786q-13 2 -22 11t-9 22v899 q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" /> -<glyph unicode="" d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127 t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5 t-103 128v128q0 69 103 128t280 93.5t385 34.5z" /> -<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197 q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8 q-1 1 -1 2t-0.5 1.5t-0.5 1.5q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" /> -<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4l-3 21q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5t-3.5 -21.5l-4 -21h-4l-2 21 q-2 26 -7 46l-99 438h90v107h-300z" /> -<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107 h-290v-107h68l189 -272l-194 -283h-68z" /> -<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" /> -<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" /> -<glyph unicode="" d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400 v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79 q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" /> -<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5 q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" /> -<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" /> -<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243 l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" /> -<glyph unicode="" d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406 q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" /> -<glyph unicode="" horiz-adv-x="1792" d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97q14 -16 29.5 -34t34.5 -40t29 -34q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5 t-85 -189.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348q0 222 101 414.5t276.5 317t390.5 155.5v-260q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 q0 230 -145.5 406t-366.5 221v260q215 -31 390.5 -155.5t276.5 -317t101 -414.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" /> -<glyph unicode="" horiz-adv-x="1792" d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> -<glyph unicode="" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58 q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47 q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171 v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" /> -<glyph unicode="" d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1280" d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5 t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153 t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5 q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20 t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5 t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" /> -<glyph unicode="" horiz-adv-x="2048" d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25 q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5 q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109 q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137 l863 639l-478 -797z" /> -<glyph unicode="" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23 t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" /> -<glyph unicode="" d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15 t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2 t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160 q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5 q0 -26 -12 -48t-36 -22z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179 q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" /> -<glyph unicode="" d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256 q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" /> -<glyph unicode="" d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5 t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" /> -<glyph unicode="" d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5 t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5 t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91 q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9 t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" /> -<glyph unicode="" horiz-adv-x="1792" d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323 l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" /> -<glyph unicode="" horiz-adv-x="1792" d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23 zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5 t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" /> -<glyph unicode="" horiz-adv-x="1792" d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1755 1083q37 -37 37 -90t-37 -91l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234l401 400 q38 37 91 37t90 -37z" /> -<glyph unicode="" horiz-adv-x="1792" d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5 t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q3 -2 11 -7 t11 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" /> -<glyph unicode="" horiz-adv-x="1792" d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" /> -<glyph unicode="" d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36 q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q70 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5 t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87 q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19 t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" /> -<glyph unicode="" horiz-adv-x="1792" d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" /> -<glyph unicode="" d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246 q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598 q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" /> -<glyph unicode="" horiz-adv-x="1792" d="M602 949q19 -61 31 -123.5t17 -141.5t-14 -159t-62 -145q-21 81 -67 157t-95.5 127t-99 90.5t-78.5 57.5t-33 19q-62 34 -81.5 100t14.5 128t101 81.5t129 -14.5q138 -83 238 -177zM927 1236q11 -25 20.5 -46t36.5 -100.5t42.5 -150.5t25.5 -179.5t0 -205.5t-47.5 -209.5 t-105.5 -208.5q-51 -72 -138 -72q-54 0 -98 31q-57 40 -69 109t28 127q60 85 81 195t13 199.5t-32 180.5t-39 128t-22 52q-31 63 -8.5 129.5t85.5 97.5q34 17 75 17q47 0 88.5 -25t63.5 -69zM1248 567q-17 -160 -72 -311q-17 131 -63 246q25 174 -5 361q-27 178 -94 342 q114 -90 212 -211q9 -37 15 -80q26 -179 7 -347zM1520 1440q9 -17 23.5 -49.5t43.5 -117.5t50.5 -178t34 -227.5t5 -269t-47 -300t-112.5 -323.5q-22 -48 -66 -75.5t-95 -27.5q-39 0 -74 16q-67 31 -92.5 100t4.5 136q58 126 90 257.5t37.5 239.5t-3.5 213.5t-26.5 180.5 t-38.5 138.5t-32.5 90t-15.5 32.5q-34 65 -11.5 135.5t87.5 104.5q37 20 81 20q49 0 91.5 -25.5t66.5 -70.5z" /> -<glyph unicode="" horiz-adv-x="2304" d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> -<glyph unicode="" horiz-adv-x="2304" d="M671 603h-13q-47 0 -47 -32q0 -22 20 -22q17 0 28 15t12 39zM1066 639h62v3q1 4 0.5 6.5t-1 7t-2 8t-4.5 6.5t-7.5 5t-11.5 2q-28 0 -36 -38zM1606 603h-12q-48 0 -48 -32q0 -22 20 -22q17 0 28 15t12 39zM1925 629q0 41 -30 41q-19 0 -31 -20t-12 -51q0 -42 28 -42 q20 0 32.5 20t12.5 52zM480 770h87l-44 -262h-56l32 201l-71 -201h-39l-4 200l-34 -200h-53l44 262h81l2 -163zM733 663q0 -6 -4 -42q-16 -101 -17 -113h-47l1 22q-20 -26 -58 -26q-23 0 -37.5 16t-14.5 42q0 39 26 60.5t73 21.5q14 0 23 -1q0 3 0.5 5.5t1 4.5t0.5 3 q0 20 -36 20q-29 0 -59 -10q0 4 7 48q38 11 67 11q74 0 74 -62zM889 721l-8 -49q-22 3 -41 3q-27 0 -27 -17q0 -8 4.5 -12t21.5 -11q40 -19 40 -60q0 -72 -87 -71q-34 0 -58 6q0 2 7 49q29 -8 51 -8q32 0 32 19q0 7 -4.5 11.5t-21.5 12.5q-43 20 -43 59q0 72 84 72 q30 0 50 -4zM977 721h28l-7 -52h-29q-2 -17 -6.5 -40.5t-7 -38.5t-2.5 -18q0 -16 19 -16q8 0 16 2l-8 -47q-21 -7 -40 -7q-43 0 -45 47q0 12 8 56q3 20 25 146h55zM1180 648q0 -23 -7 -52h-111q-3 -22 10 -33t38 -11q30 0 58 14l-9 -54q-30 -8 -57 -8q-95 0 -95 95 q0 55 27.5 90.5t69.5 35.5q35 0 55.5 -21t20.5 -56zM1319 722q-13 -23 -22 -62q-22 2 -31 -24t-25 -128h-56l3 14q22 130 29 199h51l-3 -33q14 21 25.5 29.5t28.5 4.5zM1506 763l-9 -57q-28 14 -50 14q-31 0 -51 -27.5t-20 -70.5q0 -30 13.5 -47t38.5 -17q21 0 48 13 l-10 -59q-28 -8 -50 -8q-45 0 -71.5 30.5t-26.5 82.5q0 70 35.5 114.5t91.5 44.5q26 0 61 -13zM1668 663q0 -18 -4 -42q-13 -79 -17 -113h-46l1 22q-20 -26 -59 -26q-23 0 -37 16t-14 42q0 39 25.5 60.5t72.5 21.5q15 0 23 -1q2 7 2 13q0 20 -36 20q-29 0 -59 -10q0 4 8 48 q38 11 67 11q73 0 73 -62zM1809 722q-14 -24 -21 -62q-23 2 -31.5 -23t-25.5 -129h-56l3 14q19 104 29 199h52q0 -11 -4 -33q15 21 26.5 29.5t27.5 4.5zM1950 770h56l-43 -262h-53l3 19q-23 -23 -52 -23q-31 0 -49.5 24t-18.5 64q0 53 27.5 92t64.5 39q31 0 53 -29z M2061 640q0 148 -72.5 273t-198 198t-273.5 73q-181 0 -328 -110q127 -116 171 -284h-50q-44 150 -158 253q-114 -103 -158 -253h-50q44 168 171 284q-147 110 -328 110q-148 0 -273.5 -73t-198 -198t-72.5 -273t72.5 -273t198 -198t273.5 -73q181 0 328 110 q-120 111 -165 264h50q46 -138 152 -233q106 95 152 233h50q-45 -153 -165 -264q147 -110 328 -110q148 0 273.5 73t198 198t72.5 273zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> -<glyph unicode="" horiz-adv-x="2304" d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" /> -<glyph unicode="" horiz-adv-x="2304" d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260 l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279 v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040 q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168 q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5 t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21 h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5 t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" /> -<glyph unicode="" horiz-adv-x="2304" d="M745 630q0 -37 -25.5 -61.5t-62.5 -24.5q-29 0 -46.5 16t-17.5 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM1530 779q0 -42 -22 -57t-66 -15l-32 -1l17 107q2 11 13 11h18q22 0 35 -2t25 -12.5t12 -30.5zM1881 630q0 -36 -25.5 -61t-61.5 -25q-29 0 -47 16 t-18 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM513 801q0 59 -38.5 85.5t-100.5 26.5h-160q-19 0 -21 -19l-65 -408q-1 -6 3 -11t10 -5h76q20 0 22 19l18 110q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM822 489l41 261q1 6 -3 11t-10 5h-76 q-14 0 -17 -33q-27 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q28 0 58 12t48 32q-4 -12 -4 -21q0 -16 13 -16h69q19 0 22 19zM1269 752q0 5 -4 9.5t-9 4.5h-77q-11 0 -18 -10l-106 -156l-44 150q-5 16 -22 16h-75q-5 0 -9 -4.5t-4 -9.5q0 -2 19.5 -59 t42 -123t23.5 -70q-82 -112 -82 -120q0 -13 13 -13h77q11 0 18 10l255 368q2 2 2 7zM1649 801q0 59 -38.5 85.5t-100.5 26.5h-159q-20 0 -22 -19l-65 -408q-1 -6 3 -11t10 -5h82q12 0 16 13l18 116q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM1958 489 l41 261q1 6 -3 11t-10 5h-76q-14 0 -17 -33q-26 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q29 0 59 12t47 32q0 -1 -2 -9t-2 -12q0 -16 13 -16h69q19 0 22 19zM2176 898v1q0 14 -13 14h-74q-11 0 -13 -11l-65 -416l-1 -2q0 -5 4 -9.5t10 -4.5h66 q19 0 21 19zM392 764q-5 -35 -26 -46t-60 -11l-33 -1l17 107q2 11 13 11h19q40 0 58 -11.5t12 -48.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> -<glyph unicode="" horiz-adv-x="2304" d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109 q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118 q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151 q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31 q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5 l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5 l418 363q10 8 23.5 7t21.5 -11z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128 q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161 q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" /> -<glyph unicode="" horiz-adv-x="1408" d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167 q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" /> -<glyph unicode="" d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5 t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53 q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24 t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61 t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10 t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5 t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11t55.5 -11t52.5 -38q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5t47 37.5 q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-35 0 -55.5 11t-52.5 38q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38t-58 27 t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448h256v448 h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51 t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" /> -<glyph unicode="" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" /> -<glyph unicode="" horiz-adv-x="1792" d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" /> -<glyph unicode="" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9 t9 -23z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20 q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50 t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1 q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" /> -<glyph unicode="" d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73 q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110 q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5 t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5 t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" /> -<glyph unicode="" horiz-adv-x="2048" d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5 t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" /> -<glyph unicode="" horiz-adv-x="2304" d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94 q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469 q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400 q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" /> -<glyph unicode="" d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5 h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327 q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5 q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" /> -<glyph unicode="" horiz-adv-x="1280" d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q18 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119 t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5 t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14 q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88 q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5 t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" /> -<glyph unicode="" horiz-adv-x="2048" d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206 q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307 t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14 t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" /> -<glyph unicode="" d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5 t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" /> -<glyph unicode="" d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55 q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410 q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" /> -<glyph unicode="" d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" /> -<glyph unicode="" horiz-adv-x="2048" d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335 q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5 q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360q2 0 4.5 -1t5.5 -2.5l5 -2.5l188 199v347l-187 194 q-13 -8 -29 -10zM986 1438h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13 zM552 226h402l64 66l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224 l213 -225zM1023 946l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196 l-48 -227l130 227h-82zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" /> -<glyph unicode="" d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" /> -<glyph unicode="" d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384 q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021 q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25 q209 0 374 -102q172 107 374 102z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101 q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284 q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" /> -<glyph unicode="" d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34 l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114 v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378 v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51 h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5 t-43 -34t-16.5 -53.5z" /> -<glyph unicode="" horiz-adv-x="2048" d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832 q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126.5t-103.5 132.5t-108.5 126t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5 t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113 t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5 q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="1664" d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" /> -<glyph unicode="" horiz-adv-x="2048" d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20 l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83 q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314 v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" /> -<glyph unicode="" d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14 t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5 q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31 t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" /> -<glyph unicode="" horiz-adv-x="2304" d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5 t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105 l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226 t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" /> -<glyph unicode="" d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12 q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384 q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5 t158.5 -65.5t65.5 -158.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221 q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124 t127 -344z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292 q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" /> -<glyph unicode="" d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-382 -383q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5 q203 0 359 -126l382 382h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> -<glyph unicode="" horiz-adv-x="1280" d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5 t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> -<glyph unicode="" d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9 t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23 t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391 q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391 q0 -226 -154 -391q103 -57 218 -57z" /> -<glyph unicode="" horiz-adv-x="1920" d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230 q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9 t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128 q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -29 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23 t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9 t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5 t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" /> -<glyph unicode="" d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-213 -214l140 -140q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-140 141l-78 -79q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5 t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5q203 0 359 -126l78 78l-172 172q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l172 -172l213 213h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> -<glyph unicode="" horiz-adv-x="1280" d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22 t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5 t131.5 -316.5t316.5 -131.5z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1901 621q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-132q-24 -217 -187.5 -364.5t-384.5 -147.5q-167 0 -306 87t-212 236t-54 319q15 133 88 245.5 t188 182t249 80.5q155 12 292 -52.5t224 -186t103 -271.5h132v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM576 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5 t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1024 576q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1152 576q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123 t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5z" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" /> -<glyph unicode="" horiz-adv-x="1280" d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5 l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5 q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" /> -<glyph unicode="" d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5 t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233 l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" /> -<glyph unicode="" horiz-adv-x="1792" d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216 q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" /> -<glyph unicode="" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5 t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" /> -<glyph unicode="" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136 q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69 t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" /> -<glyph unicode="" horiz-adv-x="2048" d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704 q-26 0 -45 -19t-19 -45v-384h1152z" /> -<glyph unicode="" d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" /> -<glyph unicode="" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56 t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" /> -<glyph unicode="" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47 t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1792 204v-209h-642v209h134v926h-6l-314 -1135h-243l-310 1135h-8v-926h135v-209h-538v209h69q21 0 43 19.5t22 37.5v881q0 18 -22 40t-43 22h-69v209h672l221 -821h6l223 821h670v-209h-71q-19 0 -41 -22t-22 -40v-881q0 -18 21.5 -37.5t41.5 -19.5h71z" /> -<glyph unicode="" d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" /> -<glyph unicode="" horiz-adv-x="2296" d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5 q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5 q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42 q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37 q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5 q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139 q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 4 5 8q16 18 60 23h13q5 18 19 30t33 8 t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132 q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132 q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-106 2 -211 0v1q-1 -27 2.5 -86 t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103 q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34l3 9v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4l-10 -2.5t-12 -2 l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-2 0 -3 -0.5t-3 -0.5h-3q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130t-73 70 q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -2 -1 -5t-1 -4q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150 q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12 q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" /> -<glyph unicode="" horiz-adv-x="2304" d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5 t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5 t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M896 1472q-169 0 -323 -66t-265.5 -177.5t-177.5 -265.5t-66 -323t66 -323t177.5 -265.5t265.5 -177.5t323 -66t323 66t265.5 177.5t177.5 265.5t66 323t-66 323t-177.5 265.5t-265.5 177.5t-323 66zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348 t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM496 704q16 0 16 -16v-480q0 -16 -16 -16h-32q-16 0 -16 16v480q0 16 16 16h32zM896 640q53 0 90.5 -37.5t37.5 -90.5q0 -35 -17.5 -64t-46.5 -46v-114q0 -14 -9 -23 t-23 -9h-64q-14 0 -23 9t-9 23v114q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5zM896 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM544 928v-96 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 93 65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5v-96q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 146 -103 249t-249 103t-249 -103t-103 -249zM1408 192v512q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-512 q0 -26 19 -45t45 -19h896q26 0 45 19t19 45z" /> -<glyph unicode="" horiz-adv-x="2304" d="M1920 1024v-768h-1664v768h1664zM2048 448h128v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288zM2304 832v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113 v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160q53 0 90.5 -37.5t37.5 -90.5z" /> -<glyph unicode="" horiz-adv-x="2304" d="M256 256v768h1280v-768h-1280zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" /> -<glyph unicode="" horiz-adv-x="2304" d="M256 256v768h896v-768h-896zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" /> -<glyph unicode="" horiz-adv-x="2304" d="M256 256v768h512v-768h-512zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" /> -<glyph unicode="" horiz-adv-x="2304" d="M2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23 v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" /> -<glyph unicode="" horiz-adv-x="1280" d="M1133 493q31 -30 14 -69q-17 -40 -59 -40h-382l201 -476q10 -25 0 -49t-34 -35l-177 -75q-25 -10 -49 0t-35 34l-191 452l-312 -312q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v1504q0 42 40 59q12 5 24 5q27 0 45 -19z" /> -<glyph unicode="" horiz-adv-x="1024" d="M832 1408q-320 0 -320 -224v-416h128v-128h-128v-544q0 -224 320 -224h64v-128h-64q-272 0 -384 146q-112 -146 -384 -146h-64v128h64q320 0 320 224v544h-128v128h128v416q0 224 -320 224h-64v128h64q272 0 384 -146q112 146 384 146h64v-128h-64z" /> -<glyph unicode="" horiz-adv-x="2048" d="M2048 1152h-128v-1024h128v-384h-384v128h-1280v-128h-384v384h128v1024h-128v384h384v-128h1280v128h384v-384zM1792 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 -128v128h-128v-128h128zM1664 0v128h128v1024h-128v128h-1280v-128h-128v-1024h128v-128 h1280zM1920 -128v128h-128v-128h128zM1280 896h384v-768h-896v256h-384v768h896v-256zM512 512h640v512h-640v-512zM1536 256v512h-256v-384h-384v-128h640z" /> -<glyph unicode="" horiz-adv-x="2304" d="M2304 768h-128v-640h128v-384h-384v128h-896v-128h-384v384h128v128h-384v-128h-384v384h128v640h-128v384h384v-128h896v128h384v-384h-128v-128h384v128h384v-384zM2048 1024v-128h128v128h-128zM1408 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 256 v128h-128v-128h128zM1536 384h-128v-128h128v128zM384 384h896v128h128v640h-128v128h-896v-128h-128v-640h128v-128zM896 -128v128h-128v-128h128zM2176 -128v128h-128v-128h128zM2048 128v640h-128v128h-384v-384h128v-384h-384v128h-384v-128h128v-128h896v128h128z" /> -<glyph unicode="" d="M1024 288v-416h-928q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68v-928h-416q-40 0 -68 -28t-28 -68zM1152 256h381q-15 -82 -65 -132l-184 -184q-50 -50 -132 -65v381z" /> -<glyph unicode="" d="M1400 256h-248v-248q29 10 41 22l185 185q12 12 22 41zM1120 384h288v896h-1280v-1280h896v288q0 40 28 68t68 28zM1536 1312v-1024q0 -40 -20 -88t-48 -76l-184 -184q-28 -28 -76 -48t-88 -20h-1024q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68 z" /> -<glyph unicode="" horiz-adv-x="2304" d="M1951 538q0 -26 -15.5 -44.5t-38.5 -23.5q-8 -2 -18 -2h-153v140h153q10 0 18 -2q23 -5 38.5 -23.5t15.5 -44.5zM1933 751q0 -25 -15 -42t-38 -21q-3 -1 -15 -1h-139v129h139q3 0 8.5 -0.5t6.5 -0.5q23 -4 38 -21.5t15 -42.5zM728 587v308h-228v-308q0 -58 -38 -94.5 t-105 -36.5q-108 0 -229 59v-112q53 -15 121 -23t109 -9l42 -1q328 0 328 217zM1442 403v113q-99 -52 -200 -59q-108 -8 -169 41t-61 142t61 142t169 41q101 -7 200 -58v112q-48 12 -100 19.5t-80 9.5l-28 2q-127 6 -218.5 -14t-140.5 -60t-71 -88t-22 -106t22 -106t71 -88 t140.5 -60t218.5 -14q101 4 208 31zM2176 518q0 54 -43 88.5t-109 39.5v3q57 8 89 41.5t32 79.5q0 55 -41 88t-107 36q-3 0 -12 0.5t-14 0.5h-455v-510h491q74 0 121.5 36.5t47.5 96.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90 t90 38h2048q52 0 90 -38t38 -90z" /> -<glyph unicode="" horiz-adv-x="2304" d="M858 295v693q-106 -41 -172 -135.5t-66 -211.5t66 -211.5t172 -134.5zM1362 641q0 117 -66 211.5t-172 135.5v-694q106 41 172 135.5t66 211.5zM1577 641q0 -159 -78.5 -294t-213.5 -213.5t-294 -78.5q-119 0 -227.5 46.5t-187 125t-125 187t-46.5 227.5q0 159 78.5 294 t213.5 213.5t294 78.5t294 -78.5t213.5 -213.5t78.5 -294zM1960 634q0 139 -55.5 261.5t-147.5 205.5t-213.5 131t-252.5 48h-301q-176 0 -323.5 -81t-235 -230t-87.5 -335q0 -171 87 -317.5t236 -231.5t323 -85h301q129 0 251.5 50.5t214.5 135t147.5 202.5t55.5 246z M2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1664 -96v1088q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 992v-1088q0 -66 -47 -113t-113 -47h-1088q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113 zM1408 1376v-160h-128v160q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h160v-128h-160q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113z" /> -<glyph unicode="" horiz-adv-x="2304" d="M1728 1088l-384 -704h768zM448 1088l-384 -704h768zM1269 1280q-14 -40 -45.5 -71.5t-71.5 -45.5v-1291h608q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1344q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h608v1291q-40 14 -71.5 45.5t-45.5 71.5h-491q-14 0 -23 9t-9 23v64 q0 14 9 23t23 9h491q21 57 70 92.5t111 35.5t111 -35.5t70 -92.5h491q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-491zM1088 1264q33 0 56.5 23.5t23.5 56.5t-23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5zM2176 384q0 -73 -46.5 -131t-117.5 -91 t-144.5 -49.5t-139.5 -16.5t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81zM896 384q0 -73 -46.5 -131t-117.5 -91t-144.5 -49.5t-139.5 -16.5 t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81z" /> -<glyph unicode="" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-77 -29 -149 -92.5 t-129.5 -152.5t-92.5 -210t-35 -253h1024q0 132 -35 253t-92.5 210t-129.5 152.5t-149 92.5q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" /> -<glyph unicode="" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -66 9 -128h1006q9 61 9 128zM1280 -128q0 130 -34 249.5t-90.5 208t-126.5 152t-146 94.5h-230q-76 -31 -146 -94.5t-126.5 -152t-90.5 -208t-34 -249.5h1024z" /> -<glyph unicode="" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -206 85 -384h854q85 178 85 384zM1223 192q-54 141 -145.5 241.5t-194.5 142.5h-230q-103 -42 -194.5 -142.5t-145.5 -241.5h910z" /> -<glyph unicode="" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-137 -51 -244 -196 h700q-107 145 -244 196q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" /> -<glyph unicode="" d="M1504 -64q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472zM130 0q3 55 16 107t30 95t46 87t53.5 76t64.5 69.5t66 60t70.5 55t66.5 47.5t65 43q-43 28 -65 43t-66.5 47.5t-70.5 55t-66 60t-64.5 69.5t-53.5 76t-46 87 t-30 95t-16 107h1276q-3 -55 -16 -107t-30 -95t-46 -87t-53.5 -76t-64.5 -69.5t-66 -60t-70.5 -55t-66.5 -47.5t-65 -43q43 -28 65 -43t66.5 -47.5t70.5 -55t66 -60t64.5 -69.5t53.5 -76t46 -87t30 -95t16 -107h-1276zM1504 1536q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9 h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472z" /> -<glyph unicode="" d="M768 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-128h-32v93q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-429l-32 30v172q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-224q0 -47 35 -82l310 -296q39 -39 39 -102q0 -26 19 -45t45 -19h640q26 0 45 19t19 45v25 q0 41 10 77l108 436q10 36 10 77v246q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-32h-32v125q0 40 -25 72.5t-64 40.5q-14 2 -23 2q-46 0 -79 -33t-33 -79v-128h-32v122q0 51 -32.5 89.5t-82.5 43.5q-5 1 -13 1zM768 1280q84 0 149 -50q57 34 123 34q59 0 111 -27 t86 -76q27 7 59 7q100 0 170 -71.5t70 -171.5v-246q0 -51 -13 -108l-109 -436q-6 -24 -6 -71q0 -80 -56 -136t-136 -56h-640q-84 0 -138 58.5t-54 142.5l-308 296q-76 73 -76 175v224q0 99 70.5 169.5t169.5 70.5q11 0 16 -1q6 95 75.5 160t164.5 65q52 0 98 -21 q72 69 174 69z" /> -<glyph unicode="" horiz-adv-x="1792" d="M880 1408q-46 0 -79 -33t-33 -79v-656h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528v-256l-154 205q-38 51 -102 51q-53 0 -90.5 -37.5t-37.5 -90.5q0 -43 26 -77l384 -512q38 -51 102 -51h688q34 0 61 22t34 56l76 405q5 32 5 59v498q0 46 -33 79t-79 33t-79 -33 t-33 -79v-272h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528h-32v656q0 46 -33 79t-79 33zM880 1536q68 0 125.5 -35.5t88.5 -96.5q19 4 42 4q99 0 169.5 -70.5t70.5 -169.5v-17q105 6 180.5 -64t75.5 -175v-498q0 -40 -8 -83l-76 -404q-14 -79 -76.5 -131t-143.5 -52 h-688q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 106 75 181t181 75q78 0 128 -34v434q0 99 70.5 169.5t169.5 70.5q23 0 42 -4q31 61 88.5 96.5t125.5 35.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1073 -128h-177q-163 0 -226 141q-23 49 -23 102v5q-62 30 -98.5 88.5t-36.5 127.5q0 38 5 48h-261q-106 0 -181 75t-75 181t75 181t181 75h113l-44 17q-74 28 -119.5 93.5t-45.5 145.5q0 106 75 181t181 75q46 0 91 -17l628 -239h401q106 0 181 -75t75 -181v-668 q0 -88 -54 -157.5t-140 -90.5l-339 -85q-92 -23 -186 -23zM1024 583l-155 -71l-163 -74q-30 -14 -48 -41.5t-18 -60.5q0 -46 33 -79t79 -33q26 0 46 10l338 154q-49 10 -80.5 50t-31.5 90v55zM1344 272q0 46 -33 79t-79 33q-26 0 -46 -10l-290 -132q-28 -13 -37 -17 t-30.5 -17t-29.5 -23.5t-16 -29t-8 -40.5q0 -50 31.5 -82t81.5 -32q20 0 38 9l352 160q30 14 48 41.5t18 60.5zM1112 1024l-650 248q-24 8 -46 8q-53 0 -90.5 -37.5t-37.5 -90.5q0 -40 22.5 -73t59.5 -47l526 -200v-64h-640q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5 t90.5 -37.5h535l233 106v198q0 63 46 106l111 102h-69zM1073 0q82 0 155 19l339 85q43 11 70 45.5t27 78.5v668q0 53 -37.5 90.5t-90.5 37.5h-308l-136 -126q-36 -33 -36 -82v-296q0 -46 33 -77t79 -31t79 35t33 81v208h32v-208q0 -70 -57 -114q52 -8 86.5 -48.5t34.5 -93.5 q0 -42 -23 -78t-61 -53l-310 -141h91z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1151 1536q61 0 116 -28t91 -77l572 -781q118 -159 118 -359v-355q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v177l-286 143h-546q-80 0 -136 56t-56 136v32q0 119 84.5 203.5t203.5 84.5h420l42 128h-686q-100 0 -173.5 67.5t-81.5 166.5q-65 79 -65 182v32 q0 80 56 136t136 56h959zM1920 -64v355q0 157 -93 284l-573 781q-39 52 -103 52h-959q-26 0 -45 -19t-19 -45q0 -32 1.5 -49.5t9.5 -40.5t25 -43q10 31 35.5 50t56.5 19h832v-32h-832q-26 0 -45 -19t-19 -45q0 -44 3 -58q8 -44 44 -73t81 -29h640h91q40 0 68 -28t28 -68 q0 -15 -5 -30l-64 -192q-10 -29 -35 -47.5t-56 -18.5h-443q-66 0 -113 -47t-47 -113v-32q0 -26 19 -45t45 -19h561q16 0 29 -7l317 -158q24 -13 38.5 -36t14.5 -50v-197q0 -26 19 -45t45 -19h384q26 0 45 19t19 45z" /> -<glyph unicode="" horiz-adv-x="2048" d="M816 1408q-48 0 -79.5 -34t-31.5 -82q0 -14 3 -28l150 -624h-26l-116 482q-9 38 -39.5 62t-69.5 24q-47 0 -79 -34t-32 -81q0 -11 4 -29q3 -13 39 -161t68 -282t32 -138v-227l-307 230q-34 26 -77 26q-52 0 -89.5 -36.5t-37.5 -88.5q0 -67 56 -110l507 -379 q34 -26 76 -26h694q33 0 59 20.5t34 52.5l100 401q8 30 10 88t9 86l116 478q3 12 3 26q0 46 -33 79t-80 33q-38 0 -69 -25.5t-40 -62.5l-99 -408h-26l132 547q3 14 3 28q0 47 -32 80t-80 33q-38 0 -68.5 -24t-39.5 -62l-145 -602h-127l-164 682q-9 38 -39.5 62t-68.5 24z M1461 -256h-694q-85 0 -153 51l-507 380q-50 38 -78.5 94t-28.5 118q0 105 75 179t180 74q25 0 49.5 -5.5t41.5 -11t41 -20.5t35 -23t38.5 -29.5t37.5 -28.5l-123 512q-7 35 -7 59q0 93 60 162t152 79q14 87 80.5 144.5t155.5 57.5q83 0 148 -51.5t85 -132.5l103 -428 l83 348q20 81 85 132.5t148 51.5q87 0 152.5 -54t82.5 -139q93 -10 155 -78t62 -161q0 -30 -7 -57l-116 -477q-5 -22 -5 -67q0 -51 -13 -108l-101 -401q-19 -75 -79.5 -122.5t-137.5 -47.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M640 1408q-53 0 -90.5 -37.5t-37.5 -90.5v-512v-384l-151 202q-41 54 -107 54q-52 0 -89 -38t-37 -90q0 -43 26 -77l384 -512q38 -51 102 -51h718q22 0 39.5 13.5t22.5 34.5l92 368q24 96 24 194v217q0 41 -28 71t-68 30t-68 -28t-28 -68h-32v61q0 48 -32 81.5t-80 33.5 q-46 0 -79 -33t-33 -79v-64h-32v90q0 55 -37 94.5t-91 39.5q-53 0 -90.5 -37.5t-37.5 -90.5v-96h-32v570q0 55 -37 94.5t-91 39.5zM640 1536q107 0 181.5 -77.5t74.5 -184.5v-220q22 2 32 2q99 0 173 -69q47 21 99 21q113 0 184 -87q27 7 56 7q94 0 159 -67.5t65 -161.5 v-217q0 -116 -28 -225l-92 -368q-16 -64 -68 -104.5t-118 -40.5h-718q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 105 74.5 180.5t179.5 75.5q71 0 130 -35v547q0 106 75 181t181 75zM768 128v384h-32v-384h32zM1024 128v384h-32v-384h32zM1280 128v384h-32 v-384h32z" /> -<glyph unicode="" d="M1288 889q60 0 107 -23q141 -63 141 -226v-177q0 -94 -23 -186l-85 -339q-21 -86 -90.5 -140t-157.5 -54h-668q-106 0 -181 75t-75 181v401l-239 628q-17 45 -17 91q0 106 75 181t181 75q80 0 145.5 -45.5t93.5 -119.5l17 -44v113q0 106 75 181t181 75t181 -75t75 -181 v-261q27 5 48 5q69 0 127.5 -36.5t88.5 -98.5zM1072 896q-33 0 -60.5 -18t-41.5 -48l-74 -163l-71 -155h55q50 0 90 -31.5t50 -80.5l154 338q10 20 10 46q0 46 -33 79t-79 33zM1293 761q-22 0 -40.5 -8t-29 -16t-23.5 -29.5t-17 -30.5t-17 -37l-132 -290q-10 -20 -10 -46 q0 -46 33 -79t79 -33q33 0 60.5 18t41.5 48l160 352q9 18 9 38q0 50 -32 81.5t-82 31.5zM128 1120q0 -22 8 -46l248 -650v-69l102 111q43 46 106 46h198l106 233v535q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5v-640h-64l-200 526q-14 37 -47 59.5t-73 22.5 q-53 0 -90.5 -37.5t-37.5 -90.5zM1180 -128q44 0 78.5 27t45.5 70l85 339q19 73 19 155v91l-141 -310q-17 -38 -53 -61t-78 -23q-53 0 -93.5 34.5t-48.5 86.5q-44 -57 -114 -57h-208v32h208q46 0 81 33t35 79t-31 79t-77 33h-296q-49 0 -82 -36l-126 -136v-308 q0 -53 37.5 -90.5t90.5 -37.5h668z" /> -<glyph unicode="" horiz-adv-x="1973" d="M857 992v-117q0 -13 -9.5 -22t-22.5 -9h-298v-812q0 -13 -9 -22.5t-22 -9.5h-135q-13 0 -22.5 9t-9.5 23v812h-297q-13 0 -22.5 9t-9.5 22v117q0 14 9 23t23 9h793q13 0 22.5 -9.5t9.5 -22.5zM1895 995l77 -961q1 -13 -8 -24q-10 -10 -23 -10h-134q-12 0 -21 8.5 t-10 20.5l-46 588l-189 -425q-8 -19 -29 -19h-120q-20 0 -29 19l-188 427l-45 -590q-1 -12 -10 -20.5t-21 -8.5h-135q-13 0 -23 10q-9 10 -9 24l78 961q1 12 10 20.5t21 8.5h142q20 0 29 -19l220 -520q10 -24 20 -51q3 7 9.5 24.5t10.5 26.5l221 520q9 19 29 19h141 q13 0 22 -8.5t10 -20.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1042 833q0 88 -60 121q-33 18 -117 18h-123v-281h162q66 0 102 37t36 105zM1094 548l205 -373q8 -17 -1 -31q-8 -16 -27 -16h-152q-20 0 -28 17l-194 365h-155v-350q0 -14 -9 -23t-23 -9h-134q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h294q128 0 190 -24q85 -31 134 -109 t49 -180q0 -92 -42.5 -165.5t-115.5 -109.5q6 -10 9 -16zM896 1376q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM1792 640 q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> -<glyph unicode="" horiz-adv-x="1792" d="M605 303q153 0 257 104q14 18 3 36l-45 82q-6 13 -24 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13t-23.5 -14.5t-28.5 -13.5t-33.5 -9.5t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78 q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-148 0 -246 -96.5t-98 -240.5q0 -146 97 -241.5t247 -95.5zM1235 303q153 0 257 104q14 18 4 36l-45 82q-8 14 -25 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13t-23.5 -14.5t-28.5 -13.5t-33.5 -9.5 t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-147 0 -245.5 -96.5t-98.5 -240.5q0 -146 97 -241.5t247 -95.5zM896 1376 q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191 t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71z" /> -<glyph unicode="" horiz-adv-x="2048" d="M736 736l384 -384l-384 -384l-672 672l672 672l168 -168l-96 -96l-72 72l-480 -480l480 -480l193 193l-289 287zM1312 1312l672 -672l-672 -672l-168 168l96 96l72 -72l480 480l-480 480l-193 -193l289 -287l-96 -96l-384 384z" /> -<glyph unicode="" horiz-adv-x="1792" d="M717 182l271 271l-279 279l-88 -88l192 -191l-96 -96l-279 279l279 279l40 -40l87 87l-127 128l-454 -454zM1075 190l454 454l-454 454l-271 -271l279 -279l88 88l-192 191l96 96l279 -279l-279 -279l-40 40l-87 -88zM1792 640q0 -182 -71 -348t-191 -286t-286 -191 t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> -<glyph unicode="" horiz-adv-x="2304" d="M651 539q0 -39 -27.5 -66.5t-65.5 -27.5q-39 0 -66.5 27.5t-27.5 66.5q0 38 27.5 65.5t66.5 27.5q38 0 65.5 -27.5t27.5 -65.5zM1805 540q0 -39 -27.5 -66.5t-66.5 -27.5t-66.5 27.5t-27.5 66.5t27.5 66t66.5 27t66.5 -27t27.5 -66zM765 539q0 79 -56.5 136t-136.5 57 t-136.5 -56.5t-56.5 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM1918 540q0 80 -56.5 136.5t-136.5 56.5q-79 0 -136 -56.5t-57 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM850 539q0 -116 -81.5 -197.5t-196.5 -81.5q-116 0 -197.5 82t-81.5 197 t82 196.5t197 81.5t196.5 -81.5t81.5 -196.5zM2004 540q0 -115 -81.5 -196.5t-197.5 -81.5q-115 0 -196.5 81.5t-81.5 196.5t81.5 196.5t196.5 81.5q116 0 197.5 -81.5t81.5 -196.5zM1040 537q0 191 -135.5 326.5t-326.5 135.5q-125 0 -231 -62t-168 -168.5t-62 -231.5 t62 -231.5t168 -168.5t231 -62q191 0 326.5 135.5t135.5 326.5zM1708 1110q-254 111 -556 111q-319 0 -573 -110q117 0 223 -45.5t182.5 -122.5t122 -183t45.5 -223q0 115 43.5 219.5t118 180.5t177.5 123t217 50zM2187 537q0 191 -135 326.5t-326 135.5t-326.5 -135.5 t-135.5 -326.5t135.5 -326.5t326.5 -135.5t326 135.5t135 326.5zM1921 1103h383q-44 -51 -75 -114.5t-40 -114.5q110 -151 110 -337q0 -156 -77 -288t-209 -208.5t-287 -76.5q-133 0 -249 56t-196 155q-47 -56 -129 -179q-11 22 -53.5 82.5t-74.5 97.5 q-80 -99 -196.5 -155.5t-249.5 -56.5q-155 0 -287 76.5t-209 208.5t-77 288q0 186 110 337q-9 51 -40 114.5t-75 114.5h365q149 100 355 156.5t432 56.5q224 0 421 -56t348 -157z" /> -<glyph unicode="" horiz-adv-x="1280" d="M640 629q-188 0 -321 133t-133 320q0 188 133 321t321 133t321 -133t133 -321q0 -187 -133 -320t-321 -133zM640 1306q-92 0 -157.5 -65.5t-65.5 -158.5q0 -92 65.5 -157.5t157.5 -65.5t157.5 65.5t65.5 157.5q0 93 -65.5 158.5t-157.5 65.5zM1163 574q13 -27 15 -49.5 t-4.5 -40.5t-26.5 -38.5t-42.5 -37t-61.5 -41.5q-115 -73 -315 -94l73 -72l267 -267q30 -31 30 -74t-30 -73l-12 -13q-31 -30 -74 -30t-74 30q-67 68 -267 268l-267 -268q-31 -30 -74 -30t-73 30l-12 13q-31 30 -31 73t31 74l267 267l72 72q-203 21 -317 94 q-39 25 -61.5 41.5t-42.5 37t-26.5 38.5t-4.5 40.5t15 49.5q10 20 28 35t42 22t56 -2t65 -35q5 -4 15 -11t43 -24.5t69 -30.5t92 -24t113 -11q91 0 174 25.5t120 50.5l38 25q33 26 65 35t56 2t42 -22t28 -35z" /> -<glyph unicode="" d="M927 956q0 -66 -46.5 -112.5t-112.5 -46.5t-112.5 46.5t-46.5 112.5t46.5 112.5t112.5 46.5t112.5 -46.5t46.5 -112.5zM1141 593q-10 20 -28 32t-47.5 9.5t-60.5 -27.5q-10 -8 -29 -20t-81 -32t-127 -20t-124 18t-86 36l-27 18q-31 25 -60.5 27.5t-47.5 -9.5t-28 -32 q-22 -45 -2 -74.5t87 -73.5q83 -53 226 -67l-51 -52q-142 -142 -191 -190q-22 -22 -22 -52.5t22 -52.5l9 -9q22 -22 52.5 -22t52.5 22l191 191q114 -115 191 -191q22 -22 52.5 -22t52.5 22l9 9q22 22 22 52.5t-22 52.5l-191 190l-52 52q141 14 225 67q67 44 87 73.5t-2 74.5 zM1092 956q0 134 -95 229t-229 95t-229 -95t-95 -229t95 -229t229 -95t229 95t95 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> -<glyph unicode="" horiz-adv-x="1720" d="M1565 1408q65 0 110 -45.5t45 -110.5v-519q0 -176 -68 -336t-182.5 -275t-274 -182.5t-334.5 -67.5q-176 0 -335.5 67.5t-274.5 182.5t-183 275t-68 336v519q0 64 46 110t110 46h1409zM861 344q47 0 82 33l404 388q37 35 37 85q0 49 -34.5 83.5t-83.5 34.5q-47 0 -82 -33 l-323 -310l-323 310q-35 33 -81 33q-49 0 -83.5 -34.5t-34.5 -83.5q0 -51 36 -85l405 -388q33 -33 81 -33z" /> -<glyph unicode="" horiz-adv-x="2304" d="M1494 -103l-295 695q-25 -49 -158.5 -305.5t-198.5 -389.5q-1 -1 -27.5 -0.5t-26.5 1.5q-82 193 -255.5 587t-259.5 596q-21 50 -66.5 107.5t-103.5 100.5t-102 43q0 5 -0.5 24t-0.5 27h583v-50q-39 -2 -79.5 -16t-66.5 -43t-10 -64q26 -59 216.5 -499t235.5 -540 q31 61 140 266.5t131 247.5q-19 39 -126 281t-136 295q-38 69 -201 71v50l513 -1v-47q-60 -2 -93.5 -25t-12.5 -69q33 -70 87 -189.5t86 -187.5q110 214 173 363q24 55 -10 79.5t-129 26.5q1 7 1 25v24q64 0 170.5 0.5t180 1t92.5 0.5v-49q-62 -2 -119 -33t-90 -81 l-213 -442q13 -33 127.5 -290t121.5 -274l441 1017q-14 38 -49.5 62.5t-65 31.5t-55.5 8v50l460 -4l1 -2l-1 -44q-139 -4 -201 -145q-526 -1216 -559 -1291h-49z" /> -<glyph unicode="" horiz-adv-x="1792" d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640 q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5 t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5 t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5 t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191 t191 -286t71 -348z" /> -<glyph unicode="" horiz-adv-x="1792" d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962 q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5 q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5 q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" /> -<glyph unicode="" d="M768 -92q77 0 139.5 63t100.5 166t59 234.5t21 268.5t-21 268.5t-59 234.5t-100.5 166t-139.5 63t-139.5 -63t-100.5 -166t-59 -234.5t-21 -268.5t21 -268.5t59 -234.5t100.5 -166t139.5 -63zM768 -256q-184 0 -333 77t-240 203t-141 287t-50 329t50 329t141 287t240 203 t333 77q148 0 274 -50t214.5 -136t151.5 -201t92.5 -244t29.5 -265t-29.5 -265t-92.5 -244t-151.5 -201t-214.5 -136t-274 -50z" /> -<glyph unicode="" horiz-adv-x="1792" d="M716 -69q-143 35 -261.5 114t-197.5 191q-139 -300 -17 -398q26 -21 85 -24.5t127.5 9.5t141 41.5t122.5 66.5zM693 762h452q0 108 -61.5 169t-168.5 61q-103 0 -162.5 -62.5t-59.5 -167.5zM1724 1137h-34q26 102 22.5 170t-25 110t-63.5 57t-93.5 11t-115 -26.5 t-128.5 -56.5t-134 -79q129 -37 238.5 -113.5t185 -179t110 -231.5t15.5 -262h-1005q0 -60 10 -106t34 -85t69.5 -60t112.5 -21q87 0 142.5 44t72.5 122h540q-71 -230 -281.5 -377t-477.5 -147q-83 0 -159 15q-35 -40 -151 -94t-248 -78t-219 35q-78 60 -100 159t7 214 t88 242t143.5 248t173.5 226.5t177.5 183.5t156.5 112v24q-120 -37 -258.5 -137.5t-240.5 -207t-159 -195.5q4 106 34 201t80 169t118 135.5t147.5 100.5t168 65.5t180.5 29.5t185 -8q310 186 503 189h7q57 0 103 -18q80 -30 98 -132.5t-30 -248.5z" /> -<glyph unicode="" horiz-adv-x="2048" d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23 v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> -<glyph unicode="" horiz-adv-x="1792" d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34 h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100 q-68 175 -180 287z" /> -<glyph unicode="" horiz-adv-x="2304" d="M1391 390v0l-1 1q-15 18 -34.5 37.5t-62.5 57.5t-93.5 62t-95.5 24q-48 0 -83 -21.5t-51 -54t-23 -59t-7 -47.5v0v0q0 -21 7 -48t23 -59t51 -53.5t83 -21.5q45 0 95.5 24t94 62.5t62 57t34.5 37.5zM2103 390q0 21 -7 47.5t-23 59t-51 54t-83 21.5q-45 0 -95.5 -24 t-94 -62.5t-62 -57t-34.5 -37.5l-1 -1v0v0l1 -1q15 -18 34.5 -37.5t62.5 -57.5t93.5 -62t95.5 -24q48 0 83 21.5t51 53.5t23 59t7 48zM2304 393q0 -69 -24 -137.5t-68 -126t-116 -93.5t-159 -36q-68 0 -134 24t-113.5 58.5t-84.5 69.5t-59.5 59t-25.5 24t-22.5 -24 t-54.5 -58.5t-81.5 -69.5t-115 -59t-143.5 -24q-65 0 -123.5 22.5t-96.5 54t-66.5 66.5t-41 59.5t-12.5 32.5q0 -8 -8.5 -26.5t-25 -45.5t-47 -55t-69 -52.5t-96.5 -40t-125 -15.5q-71 0 -130 15.5t-98.5 39.5t-70.5 56.5t-48 63.5t-27.5 63.5t-14 54t-3.5 36.5h217 q0 -55 49 -107.5t126 -52.5q79 0 134.5 67t55.5 148q0 80 -52 136.5t-138 56.5q-5 0 -13 -0.5t-31 -5t-43 -12t-42 -24.5t-34 -40h-195l102 583h602v-174h-445q-27 -159 -41 -248q4 0 16.5 13t31.5 28.5t65 28.5t108 13t114 -20.5t82.5 -49.5t51.5 -58.5t31 -50t11 -20.5 t13 25t36.5 60.5t60.5 71.5t97 61t133 25t140.5 -25t115.5 -60.5t83.5 -71.5t56.5 -61t21 -25q2 0 22 25t56 60.5t83.5 71.5t115.5 61t140 25q92 0 164.5 -35t115.5 -93t65 -125t22 -137z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30 q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57 t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133 q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9 h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224 v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23 t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47 t47 -113v-96h128q52 0 90 -38t38 -90z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1111 151l-46 -46q-9 -9 -22 -9t-23 9l-188 189l-188 -189q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22t9 23l189 188l-189 188q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l188 -188l188 188q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23l-188 -188l188 -188q9 -10 9 -23t-9 -22z M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1303 572l-512 -512q-10 -9 -23 -9t-23 9l-288 288q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l220 -220l444 444q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23 t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47 t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> -<glyph unicode="" horiz-adv-x="1792" d="M448 1536q26 0 45 -19t19 -45v-891l536 429q17 14 40 14q26 0 45 -19t19 -45v-379l536 429q17 14 40 14q26 0 45 -19t19 -45v-1152q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h384z" /> -<glyph unicode="" horiz-adv-x="1024" d="M512 448q66 0 128 15v-655q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v655q61 -15 128 -15zM512 1536q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150zM512 1312q14 0 23 9t9 23t-9 23t-23 9q-146 0 -249 -103t-103 -249 q0 -14 9 -23t23 -9t23 9t9 23q0 119 84.5 203.5t203.5 84.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1745 1239q10 -10 10 -23t-10 -23l-141 -141q-28 -28 -68 -28h-1344q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h576v64q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-64h512q40 0 68 -28zM768 320h256v-512q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v512zM1600 768 q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-1344q-40 0 -68 28l-141 141q-10 10 -10 23t10 23l141 141q28 28 68 28h512v192h256v-192h576z" /> -<glyph unicode="" horiz-adv-x="2048" d="M2020 1525q28 -20 28 -53v-1408q0 -20 -11 -36t-29 -23l-640 -256q-24 -11 -48 0l-616 246l-616 -246q-10 -5 -24 -5q-19 0 -36 11q-28 20 -28 53v1408q0 20 11 36t29 23l640 256q24 11 48 0l616 -246l616 246q32 13 60 -6zM736 1390v-1270l576 -230v1270zM128 1173 v-1270l544 217v1270zM1920 107v1270l-544 -217v-1270z" /> -<glyph unicode="" horiz-adv-x="1792" d="M512 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472q0 20 17 28l480 256q7 4 15 4zM1760 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472 q0 20 17 28l480 256q7 4 15 4zM640 1536q8 0 14 -3l512 -256q18 -10 18 -29v-1472q0 -13 -9.5 -22.5t-22.5 -9.5q-8 0 -14 3l-512 256q-18 10 -18 29v1472q0 13 9.5 22.5t22.5 9.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M640 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 640q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-110 0 -211 18q-173 -173 -435 -229q-52 -10 -86 -13q-12 -1 -22 6t-13 18q-4 15 20 37q5 5 23.5 21.5t25.5 23.5t23.5 25.5t24 31.5t20.5 37 t20 48t14.5 57.5t12.5 72.5q-146 90 -229.5 216.5t-83.5 269.5q0 174 120 321.5t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" /> -<glyph unicode="" horiz-adv-x="1792" d="M640 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5 t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51 t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 130 71 248.5t191 204.5t286 136.5t348 50.5t348 -50.5t286 -136.5t191 -204.5t71 -248.5z" /> -<glyph unicode="" horiz-adv-x="1024" d="M512 345l512 295v-591l-512 -296v592zM0 640v-591l512 296zM512 1527v-591l-512 -296v591zM512 936l512 295v-591z" /> -<glyph unicode="" horiz-adv-x="1792" d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246 q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" /> -<glyph unicode="" d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" /> -<glyph unicode="" d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72 h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275 l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -</font> -</defs></svg>
\ No newline at end of file diff --git a/public/ng/fonts/fontawesome-webfont.ttf b/public/ng/fonts/fontawesome-webfont.ttf Binary files differdeleted file mode 100644 index d7994e13..00000000 --- a/public/ng/fonts/fontawesome-webfont.ttf +++ /dev/null diff --git a/public/ng/fonts/fontawesome-webfont.woff b/public/ng/fonts/fontawesome-webfont.woff Binary files differdeleted file mode 100644 index 6fd4ede0..00000000 --- a/public/ng/fonts/fontawesome-webfont.woff +++ /dev/null diff --git a/public/ng/fonts/fontawesome-webfont.woff2 b/public/ng/fonts/fontawesome-webfont.woff2 Binary files differdeleted file mode 100644 index 5560193c..00000000 --- a/public/ng/fonts/fontawesome-webfont.woff2 +++ /dev/null diff --git a/public/ng/fonts/octicons.css b/public/ng/fonts/octicons.css deleted file mode 100755 index a5dcd153..00000000 --- a/public/ng/fonts/octicons.css +++ /dev/null @@ -1,235 +0,0 @@ -@font-face { - font-family: 'octicons'; - src: url('octicons.eot?#iefix') format('embedded-opentype'), - url('octicons.woff') format('woff'), - url('octicons.ttf') format('truetype'), - url('octicons.svg#octicons') format('svg'); - font-weight: normal; - font-style: normal; -} - -/* - -.octicon is optimized for 16px. -.mega-octicon is optimized for 32px but can be used larger. - -*/ -.octicon, .mega-octicon { - font: normal normal normal 16px/1 octicons; - display: inline-block; - text-decoration: none; - text-rendering: auto; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.mega-octicon { font-size: 32px; } - - -.octicon-alert:before { content: '\f02d'} /* */ -.octicon-alignment-align:before { content: '\f08a'} /* */ -.octicon-alignment-aligned-to:before { content: '\f08e'} /* */ -.octicon-alignment-unalign:before { content: '\f08b'} /* */ -.octicon-arrow-down:before { content: '\f03f'} /* */ -.octicon-arrow-left:before { content: '\f040'} /* */ -.octicon-arrow-right:before { content: '\f03e'} /* */ -.octicon-arrow-small-down:before { content: '\f0a0'} /* */ -.octicon-arrow-small-left:before { content: '\f0a1'} /* */ -.octicon-arrow-small-right:before { content: '\f071'} /* */ -.octicon-arrow-small-up:before { content: '\f09f'} /* */ -.octicon-arrow-up:before { content: '\f03d'} /* */ -.octicon-beer:before { content: '\f069'} /* */ -.octicon-book:before { content: '\f007'} /* */ -.octicon-bookmark:before { content: '\f07b'} /* */ -.octicon-briefcase:before { content: '\f0d3'} /* */ -.octicon-broadcast:before { content: '\f048'} /* */ -.octicon-browser:before { content: '\f0c5'} /* */ -.octicon-bug:before { content: '\f091'} /* */ -.octicon-calendar:before { content: '\f068'} /* */ -.octicon-check:before { content: '\f03a'} /* */ -.octicon-checklist:before { content: '\f076'} /* */ -.octicon-chevron-down:before { content: '\f0a3'} /* */ -.octicon-chevron-left:before { content: '\f0a4'} /* */ -.octicon-chevron-right:before { content: '\f078'} /* */ -.octicon-chevron-up:before { content: '\f0a2'} /* */ -.octicon-circle-slash:before { content: '\f084'} /* */ -.octicon-circuit-board:before { content: '\f0d6'} /* */ -.octicon-clippy:before { content: '\f035'} /* */ -.octicon-clock:before { content: '\f046'} /* */ -.octicon-cloud-download:before { content: '\f00b'} /* */ -.octicon-cloud-upload:before { content: '\f00c'} /* */ -.octicon-code:before { content: '\f05f'} /* */ -.octicon-color-mode:before { content: '\f065'} /* */ -.octicon-comment-add:before, -.octicon-comment:before { content: '\f02b'} /* */ -.octicon-comment-discussion:before { content: '\f04f'} /* */ -.octicon-credit-card:before { content: '\f045'} /* */ -.octicon-dash:before { content: '\f0ca'} /* */ -.octicon-dashboard:before { content: '\f07d'} /* */ -.octicon-database:before { content: '\f096'} /* */ -.octicon-device-camera:before { content: '\f056'} /* */ -.octicon-device-camera-video:before { content: '\f057'} /* */ -.octicon-device-desktop:before { content: '\f27c'} /* */ -.octicon-device-mobile:before { content: '\f038'} /* */ -.octicon-diff:before { content: '\f04d'} /* */ -.octicon-diff-added:before { content: '\f06b'} /* */ -.octicon-diff-ignored:before { content: '\f099'} /* */ -.octicon-diff-modified:before { content: '\f06d'} /* */ -.octicon-diff-removed:before { content: '\f06c'} /* */ -.octicon-diff-renamed:before { content: '\f06e'} /* */ -.octicon-ellipsis:before { content: '\f09a'} /* */ -.octicon-eye-unwatch:before, -.octicon-eye-watch:before, -.octicon-eye:before { content: '\f04e'} /* */ -.octicon-file-binary:before { content: '\f094'} /* */ -.octicon-file-code:before { content: '\f010'} /* */ -.octicon-file-directory:before { content: '\f016'} /* */ -.octicon-file-media:before { content: '\f012'} /* */ -.octicon-file-pdf:before { content: '\f014'} /* */ -.octicon-file-submodule:before { content: '\f017'} /* */ -.octicon-file-symlink-directory:before { content: '\f0b1'} /* */ -.octicon-file-symlink-file:before { content: '\f0b0'} /* */ -.octicon-file-text:before { content: '\f011'} /* */ -.octicon-file-zip:before { content: '\f013'} /* */ -.octicon-flame:before { content: '\f0d2'} /* */ -.octicon-fold:before { content: '\f0cc'} /* */ -.octicon-gear:before { content: '\f02f'} /* */ -.octicon-gift:before { content: '\f042'} /* */ -.octicon-gist:before { content: '\f00e'} /* */ -.octicon-gist-secret:before { content: '\f08c'} /* */ -.octicon-git-branch-create:before, -.octicon-git-branch-delete:before, -.octicon-git-branch:before { content: '\f020'} /* */ -.octicon-git-commit:before { content: '\f01f'} /* */ -.octicon-git-compare:before { content: '\f0ac'} /* */ -.octicon-git-merge:before { content: '\f023'} /* */ -.octicon-git-pull-request-abandoned:before, -.octicon-git-pull-request:before { content: '\f009'} /* */ -.octicon-globe:before { content: '\f0b6'} /* */ -.octicon-graph:before { content: '\f043'} /* */ -.octicon-heart:before { content: '\2665'} /* ♥ */ -.octicon-history:before { content: '\f07e'} /* */ -.octicon-home:before { content: '\f08d'} /* */ -.octicon-horizontal-rule:before { content: '\f070'} /* */ -.octicon-hourglass:before { content: '\f09e'} /* */ -.octicon-hubot:before { content: '\f09d'} /* */ -.octicon-inbox:before { content: '\f0cf'} /* */ -.octicon-info:before { content: '\f059'} /* */ -.octicon-issue-closed:before { content: '\f028'} /* */ -.octicon-issue-opened:before { content: '\f026'} /* */ -.octicon-issue-reopened:before { content: '\f027'} /* */ -.octicon-jersey:before { content: '\f019'} /* */ -.octicon-jump-down:before { content: '\f072'} /* */ -.octicon-jump-left:before { content: '\f0a5'} /* */ -.octicon-jump-right:before { content: '\f0a6'} /* */ -.octicon-jump-up:before { content: '\f073'} /* */ -.octicon-key:before { content: '\f049'} /* */ -.octicon-keyboard:before { content: '\f00d'} /* */ -.octicon-law:before { content: '\f0d8'} /* */ -.octicon-light-bulb:before { content: '\f000'} /* */ -.octicon-link:before { content: '\f05c'} /* */ -.octicon-link-external:before { content: '\f07f'} /* */ -.octicon-list-ordered:before { content: '\f062'} /* */ -.octicon-list-unordered:before { content: '\f061'} /* */ -.octicon-location:before { content: '\f060'} /* */ -.octicon-gist-private:before, -.octicon-mirror-private:before, -.octicon-git-fork-private:before, -.octicon-lock:before { content: '\f06a'} /* */ -.octicon-logo-github:before { content: '\f092'} /* */ -.octicon-mail:before { content: '\f03b'} /* */ -.octicon-mail-read:before { content: '\f03c'} /* */ -.octicon-mail-reply:before { content: '\f051'} /* */ -.octicon-mark-github:before { content: '\f00a'} /* */ -.octicon-markdown:before { content: '\f0c9'} /* */ -.octicon-megaphone:before { content: '\f077'} /* */ -.octicon-mention:before { content: '\f0be'} /* */ -.octicon-microscope:before { content: '\f089'} /* */ -.octicon-milestone:before { content: '\f075'} /* */ -.octicon-mirror-public:before, -.octicon-mirror:before { content: '\f024'} /* */ -.octicon-mortar-board:before { content: '\f0d7'} /* */ -.octicon-move-down:before { content: '\f0a8'} /* */ -.octicon-move-left:before { content: '\f074'} /* */ -.octicon-move-right:before { content: '\f0a9'} /* */ -.octicon-move-up:before { content: '\f0a7'} /* */ -.octicon-mute:before { content: '\f080'} /* */ -.octicon-no-newline:before { content: '\f09c'} /* */ -.octicon-octoface:before { content: '\f008'} /* */ -.octicon-organization:before { content: '\f037'} /* */ -.octicon-package:before { content: '\f0c4'} /* */ -.octicon-paintcan:before { content: '\f0d1'} /* */ -.octicon-pencil:before { content: '\f058'} /* */ -.octicon-person-add:before, -.octicon-person-follow:before, -.octicon-person:before { content: '\f018'} /* */ -.octicon-pin:before { content: '\f041'} /* */ -.octicon-playback-fast-forward:before { content: '\f0bd'} /* */ -.octicon-playback-pause:before { content: '\f0bb'} /* */ -.octicon-playback-play:before { content: '\f0bf'} /* */ -.octicon-playback-rewind:before { content: '\f0bc'} /* */ -.octicon-plug:before { content: '\f0d4'} /* */ -.octicon-repo-create:before, -.octicon-gist-new:before, -.octicon-file-directory-create:before, -.octicon-file-add:before, -.octicon-plus:before { content: '\f05d'} /* */ -.octicon-podium:before { content: '\f0af'} /* */ -.octicon-primitive-dot:before { content: '\f052'} /* */ -.octicon-primitive-square:before { content: '\f053'} /* */ -.octicon-pulse:before { content: '\f085'} /* */ -.octicon-puzzle:before { content: '\f0c0'} /* */ -.octicon-question:before { content: '\f02c'} /* */ -.octicon-quote:before { content: '\f063'} /* */ -.octicon-radio-tower:before { content: '\f030'} /* */ -.octicon-repo-delete:before, -.octicon-repo:before { content: '\f001'} /* */ -.octicon-repo-clone:before { content: '\f04c'} /* */ -.octicon-repo-force-push:before { content: '\f04a'} /* */ -.octicon-gist-fork:before, -.octicon-repo-forked:before { content: '\f002'} /* */ -.octicon-repo-pull:before { content: '\f006'} /* */ -.octicon-repo-push:before { content: '\f005'} /* */ -.octicon-rocket:before { content: '\f033'} /* */ -.octicon-rss:before { content: '\f034'} /* */ -.octicon-ruby:before { content: '\f047'} /* */ -.octicon-screen-full:before { content: '\f066'} /* */ -.octicon-screen-normal:before { content: '\f067'} /* */ -.octicon-search-save:before, -.octicon-search:before { content: '\f02e'} /* */ -.octicon-server:before { content: '\f097'} /* */ -.octicon-settings:before { content: '\f07c'} /* */ -.octicon-log-in:before, -.octicon-sign-in:before { content: '\f036'} /* */ -.octicon-log-out:before, -.octicon-sign-out:before { content: '\f032'} /* */ -.octicon-split:before { content: '\f0c6'} /* */ -.octicon-squirrel:before { content: '\f0b2'} /* */ -.octicon-star-add:before, -.octicon-star-delete:before, -.octicon-star:before { content: '\f02a'} /* */ -.octicon-steps:before { content: '\f0c7'} /* */ -.octicon-stop:before { content: '\f08f'} /* */ -.octicon-repo-sync:before, -.octicon-sync:before { content: '\f087'} /* */ -.octicon-tag-remove:before, -.octicon-tag-add:before, -.octicon-tag:before { content: '\f015'} /* */ -.octicon-telescope:before { content: '\f088'} /* */ -.octicon-terminal:before { content: '\f0c8'} /* */ -.octicon-three-bars:before { content: '\f05e'} /* */ -.octicon-tools:before { content: '\f031'} /* */ -.octicon-trashcan:before { content: '\f0d0'} /* */ -.octicon-triangle-down:before { content: '\f05b'} /* */ -.octicon-triangle-left:before { content: '\f044'} /* */ -.octicon-triangle-right:before { content: '\f05a'} /* */ -.octicon-triangle-up:before { content: '\f0aa'} /* */ -.octicon-unfold:before { content: '\f039'} /* */ -.octicon-unmute:before { content: '\f0ba'} /* */ -.octicon-versions:before { content: '\f064'} /* */ -.octicon-remove-close:before, -.octicon-x:before { content: '\f081'} /* */ -.octicon-zap:before { content: '\26A1'} /* ⚡ */ diff --git a/public/ng/fonts/octicons.eot b/public/ng/fonts/octicons.eot Binary files differdeleted file mode 100755 index 22881a8b..00000000 --- a/public/ng/fonts/octicons.eot +++ /dev/null diff --git a/public/ng/fonts/octicons.svg b/public/ng/fonts/octicons.svg deleted file mode 100755 index ea3e0f16..00000000 --- a/public/ng/fonts/octicons.svg +++ /dev/null @@ -1,198 +0,0 @@ -<?xml version="1.0" standalone="no"?> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg xmlns="http://www.w3.org/2000/svg"> -<metadata> -(c) 2012-2014 GitHub - -When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos) - -Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL) -Applies to all font files - -Code License: MIT (http://choosealicense.com/licenses/mit/) -Applies to all other files -</metadata> -<defs> -<font id="octicons" horiz-adv-x="1024" > -<font-face font-family="octicons" font-weight="400" font-stretch="normal" units-per-em="1024" ascent="832" descent="-192" /> -<missing-glyph d="M512 832C229.25 832 0 602.75 0 320c0-226.25 146.688-418.125 350.156-485.812 25.594-4.688 34.938 11.125 34.938 24.625 0 12.188-0.469 52.562-0.719 95.312C242-76.81200000000001 211.906 14.5 211.906 14.5c-23.312 59.125-56.844 74.875-56.844 74.875-46.531 31.75 3.53 31.125 3.53 31.125 51.406-3.562 78.47-52.75 78.47-52.75 45.688-78.25 119.875-55.625 149-42.5 4.654 33 17.904 55.625 32.5 68.375C304.906 106.56200000000001 185.344 150.5 185.344 346.688c0 55.938 19.969 101.562 52.656 137.406-5.219 13-22.844 65.094 5.062 135.562 0 0 42.938 13.75 140.812-52.5 40.812 11.406 84.594 17.031 128.125 17.219 43.5-0.188 87.312-5.875 128.188-17.281 97.688 66.312 140.688 52.5 140.688 52.5 28-70.531 10.375-122.562 5.125-135.5 32.812-35.844 52.625-81.469 52.625-137.406 0-196.688-119.75-240-233.812-252.688 18.438-15.875 34.75-47 34.75-94.75 0-68.438-0.688-123.625-0.688-140.5 0-13.625 9.312-29.562 35.25-24.562C877.438-98 1024 93.875 1024 320 1024 602.75 794.75 832 512 832z" horiz-adv-x="1024" /> -<glyph glyph-name="alert" unicode="" d="M1005.854 31.753000000000043l-438.286 767C556.173 818.694 534.967 831 512 831s-44.173-12.306-55.567-32.247l-438.286-767c-11.319-19.809-11.238-44.144 0.213-63.876C29.811-51.85500000000002 50.899-64 73.714-64h876.572c22.814 0 43.903 12.145 55.354 31.877S1017.173 11.94399999999996 1005.854 31.753000000000043zM576 64H448V192h128V64zM576 256H448V512h128V256z" horiz-adv-x="1024" /> -<glyph glyph-name="alignment-align" unicode="" d="M192 768C85.938 768 0 682.062 0 576s85.938-192 192-192c106.062 0 192 85.938 192 192S298.062 768 192 768zM672 224l160 160H384v-448l160 160 288-288 128 128L672 224z" horiz-adv-x="960" /> -<glyph glyph-name="alignment-aligned-to" unicode="" d="M384 256l128 128 288-288 160 160v-448H512l160 160L384 256zM192 384C85.938 384 0 469.938 0 576S85.938 768 192 768c106.062 0 192-85.938 192-192S298.062 384 192 384z" horiz-adv-x="960" /> -<glyph glyph-name="alignment-unalign" unicode="" d="M512 640L384 512 128 768 0 640l256-256L128 256l64-64 384 384L512 640zM640 256l128 128-64 64L320 64l64-64 128 128 256-256 128 128L640 256z" horiz-adv-x="896" /> -<glyph glyph-name="arrow-down" unicode="" d="M448 384V640H192v-256H0l320-384 320 384H448z" horiz-adv-x="640" /> -<glyph glyph-name="arrow-left" unicode="" d="M384 448V640L0 320l384-320V192h256V448H384z" horiz-adv-x="640" /> -<glyph glyph-name="arrow-right" unicode="" d="M640 320L256 640v-192H0v-256h256v-192L640 320z" horiz-adv-x="640" /> -<glyph glyph-name="arrow-small-down" unicode="" d="M256 384V512H128v-128H0l192-256 192 256H256z" horiz-adv-x="384" /> -<glyph glyph-name="arrow-small-left" unicode="" d="M256 384V512L0 320l256-192V256h128V384H256z" horiz-adv-x="384" /> -<glyph glyph-name="arrow-small-right" unicode="" d="M384 320L128 512v-128H0v-128h128v-128L384 320z" horiz-adv-x="384" /> -<glyph glyph-name="arrow-small-up" unicode="" d="M192 512L0 256h128v-128h128V256h128L192 512z" horiz-adv-x="384" /> -<glyph glyph-name="arrow-up" unicode="" d="M320 640L0 256h192v-256h256V256h192L320 640z" horiz-adv-x="640" /> -<glyph glyph-name="beer" unicode="" d="M896 576c-31 0-192 0-192 0v128c0 71-158 128-352 128s-352-57-352-128v-768c0-71 158-128 352-128s352 57 352 128v128s160 0 192 0 64 30 64 64 0 350 0 384-29 64-64 64z m-704-576h-64v512h64v-512z m192-64h-64v512h64v-512z m192 64h-64v512h64v-512z m-224 640c-124 0-224 29-224 64s100 64 224 64 224-29 224-64-100-64-224-64z m480-448h-128v256h128v-256z" horiz-adv-x="1024" /> -<glyph glyph-name="book" unicode="" d="M768 256h-128c-34 0-64-32-64-64h256c0 34-32 64-64 64z m-55 416c-167 0-209-32-233-56-24 24-66 56-233 56s-247-46-247-78v-586c29 16 119 48 214 56 115 9 234-9 234-32 0-16 8-31 31-32 0 0 0 0 1 0 0 0 0 0 1 0 23 1 31 16 31 32 0 23 119 41 234 32 94-7 185-40 214-56v586c0 32-80 78-247 78z m-265-572c-30 16-103 28-192 28s-170-12-192-27c0 0 0 411 0 443s64 59 192 59 192-27 192-59 0-444 0-444z m448 1c-22 15-103 27-192 27s-162-12-192-28c0 0 0 412 0 444s64 59 192 59 192-27 192-59 0-443 0-443z m-128 283h-128c-34 0-64-32-64-64h256c0 34-32 64-64 64z m0 128h-128c-34 0-64-32-64-64h256c0 34-32 64-64 64z m-448-128h-128c-32 0-64-30-64-64h256c0 32-30 64-64 64z m0-128h-128c-32 0-64-30-64-64h256c0 32-30 64-64 64z m0 256h-128c-32 0-64-30-64-64h256c0 32-30 64-64 64z" horiz-adv-x="1024" /> -<glyph glyph-name="bookmark" unicode="" d="M0 704v-768l192 128 192-128V704H0zM316.25 507.25l-71.875-51.938 27.188-83.406c2.75-8.375-0.688-11.062-7.562-6.594l-72 52.094-72-52.031c-6.844-4.469-10.312-1.781-7.562 6.594l27.219 83.406L67.783 507.25c-6.469 5.125-5 9.219 3.906 9.219l88 0.125 27.125 83.094c2.812 8.812 7.562 8.812 10.375 0l27.188-83.094 87.938-0.125C321.25 516.469 322.688 512.375 316.25 507.25z" horiz-adv-x="384" /> -<glyph glyph-name="briefcase" unicode="" d="M896 640H640v66c0 34.2-27.8 62-62 62H446c-34.2 0-62-27.8-62-62v-66H128c-35.3 0-64-28.7-64-64v-512c0-35.3 28.7-64 64-64h768c35.3 0 64 28.7 64 64V576C960 611.3 931.3 640 896 640zM448 688c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-48H448V688zM896 320H576v-64H448v64H128V576h64v-192h640V576h64V320z" horiz-adv-x="1024" /> -<glyph glyph-name="broadcast" unicode="" d="M448 640c142 0 256-115 256-256 0-69-28-132-72-178l-16-93c91 56 152 156 152 271 0 177-143 320-320 320s-320-143-320-320c0-115 61-215 152-271l-16 93c-45 46-72 109-72 178 0 142 114 256 256 256z m-64-320c-36 0-64-29-64-64v-128c0-36 30-64 64-64v-256h128v256c34 0 64 28 64 64v128c0 35-28 64-64 64s-64 0-64 0-28 0-64 0z m192 128c0 71-57 128-128 128s-128-57-128-128 57-128 128-128 128 57 128 128z m-128 384c-247 0-448-201-448-448 0-197 128-363 305-423l-12 72c-135 60-229 194-229 351 0 212 172 384 384 384s384-172 384-384c0-157-94-291-229-351l-12-72c177 60 305 225 305 423 0 247-201 448-448 448z" horiz-adv-x="896" /> -<glyph glyph-name="browser" unicode="" d="M320 640h64v-64h-64V640zM192 640h64v-64h-64V640zM64 640h64v-64H64V640zM832 0H64V512h768V0zM832 576H448v64h384V576zM896 640c0 35.35-28.65 64-64 64H64c-35.35 0-64-28.65-64-64v-640c0-35.35 28.65-64 64-64h768c35.35 0 64 28.65 64 64V640z" horiz-adv-x="896" /> -<glyph glyph-name="bug" unicode="" d="M243.621 675.469C190.747 618.688 205.34 528 205.34 528s53.968-64 160-64c106.031 0 160.031 64 160.031 64s14.375 89.469-37.375 146.312c32.375 18.031 51.438 44.094 43.562 61.812-8.938 19.969-48.375 21.75-88.25 3.969-14.812-6.594-27.438-14.969-37.25-23.875-12.438 2.25-25.625 3.781-40.72 3.781-14.061 0-26.561-1.344-38.344-3.25-9.656 8.75-22.062 16.875-36.531 23.344-39.875 17.719-79.375 15.938-88.25-3.969C194.465 718.781 212.497 693.438 243.621 675.469zM644.746 262.25c-8.25 1.75-16.125 2.75-23.75 3.5 0 2.125 0.375 4.125 0.375 6.312 0 33.594-4.75 65.654-12.438 96.125 16.438-1.406 37.375 2.375 58.562 11.779 39.875 17.781 65 48.375 56.125 68.219-8.875 19.969-48.375 21.75-88.25 3.969-18.625-8.312-33.812-19.469-44-30.906-7.75 18.25-16.5 35.781-26.812 51.719-30.188-25.156-87.312-62.719-167.062-71.062v-321.781c0 0-0.25-32-32.031-32-31.75 0-32 32-32 32V401.781c-79.811 8.344-136.968 45.969-167.093 71.062-9.875-15.312-18.375-32-25.938-49.344-10.281 10.625-24.625 20.844-41.969 28.594-39.875 17.719-79.375 15.938-88.25-3.969-8.906-19.906 16.25-50.438 56.125-68.219 19.844-8.846 39.531-12.812 55.469-12.096-7.656-30.404-12.469-62.344-12.469-95.812 0-2.188 0.375-4.25 0.438-6.5-6.719-0.75-13.688-1.75-20.781-3.25-51.969-10.75-91.781-37.625-88.844-59.812 2.938-22.312 47.5-31.5 99.594-20.688 6.781 1.375 13.438 3.125 19.781 5.062C128.684 146 143.34 108.125 163.622 75.5c-12.031-6.062-24.531-15-36.031-26.625C95.715 17 82.779-21.75 98.715-37.68799999999999c15.938-15.937 54.656-3 86.531 28.812 9.344 9.375 16.844 19.25 22.656 29C251.434-22.5 305.965-48 365.465-48c60.343 0 115.781 26.25 159.531 69.938 5.875-10.312 13.75-20.812 23.625-30.688 31.812-31.875 70.625-44.812 86.562-28.875s3 54.625-28.875 86.5c-12.312 12.375-25.688 21.75-38.438 27.938 20.125 32.5 34.625 70.375 43.688 111.062 7.188-2.25 14.688-4.375 22.562-6.062 52.061-10.812 96.625-1.562 99.625 20.688C736.558 224.625 696.746 251.5 644.746 262.25z" horiz-adv-x="733.886" /> -<glyph glyph-name="calendar" unicode="" d="M704 320h-64v-128h64V320zM576 320h-64v-128h64V320zM704 512h-64v-128h64V512zM832 320h-64v-128h64V320zM576 128h-64v-128h64V128zM768 832h-64v-128h64V832zM256 832h-64v-128h64V832zM832 512h-64v-128h64V512zM576 512h-64v-128h64V512zM320 128h-64v-128h64V128zM192 320h-64v-128h64V320zM320 320h-64v-128h64V320zM832 768v-128H640V768H320v-128H128V768H0v-896h960V768H832zM896-64H64V576h832V-64zM192 128h-64v-128h64V128zM448 512h-64v-128h64V512zM448 128h-64v-128h64V128zM320 512h-64v-128h64V512zM448 320h-64v-128h64V320zM704 128h-64v-128h64V128z" horiz-adv-x="1024" /> -<glyph glyph-name="check" unicode="" d="M640 640L256 256 128 384 0 256l256-256 512 512L640 640z" horiz-adv-x="768" /> -<glyph glyph-name="checklist" unicode="" d="M760.688 315.78099999999995l-49.812 49.656c-6.438 6.529-16.938 6.594-23.375 0L582.5 260.5 462.375 140.125l-93.031 93.125c-6.531 6.562-17.031 6.562-23.5 0l-49.719-49.688c-6.531-6.562-6.531-17.062 0-23.562l104.781-104.875 17.969-17.875 31.688-31.812c6.562-6.562 17.188-6.562 23.562 0l49.625 49.688L760.625 292.22C767.25 298.688 767.25 309.188 760.688 315.78099999999995zM228.469 251.188L278.156 301c42.469 42.375 116.344 42.438 158.781-0.062l25.312-25.312L576 384V704H0v-704h320l-91.531 92.125C184.688 136.062 184.688 207.375 228.469 251.188zM192 640h320v-64H192V640zM192 512h320v-64H192V512zM128 320H64v64h64V320zM128 448H64v64h64V448zM128 576H64v64h64V576zM192 384h64v-64h-64V384z" horiz-adv-x="765.602" /> -<glyph glyph-name="chevron-down" unicode="" d="M512 512L320 320 128 512 0 384l320-320 320 320L512 512z" horiz-adv-x="640" /> -<glyph glyph-name="chevron-left" unicode="" d="M448 512L320 640 0 320l320-320 128 128L256 320 448 512z" horiz-adv-x="448" /> -<glyph glyph-name="chevron-right" unicode="" d="M128 640L0 512l192-192L0 128l128-128 320 320L128 640z" horiz-adv-x="448" /> -<glyph glyph-name="chevron-up" unicode="" d="M320 576L0 256l128-128 192 192 192-192 128 128L320 576z" horiz-adv-x="640" /> -<glyph glyph-name="circle-slash" unicode="" d="M320 640C143.219 640 0 496.781 0 320c0-176.75 143.219-320 320-320 176.75 0 320 143.25 320 320C640 496.781 496.75 640 320 640zM320 512c27.656 0 53.688-6.094 77.438-16.562L144.562 242.562C134.094 266.312 128 292.34400000000005 128 320 128 426 213.938 512 320 512zM320 128c-28.031 0-54.531 6.375-78.594 17.125l253.906 252.5C505.875 373.812 512 347.719 512 320 512 213.938 426.062 128 320 128z" horiz-adv-x="640" /> -<glyph glyph-name="circuit-board" unicode="" d="M320 576c35.346 0 64-28.654 64-64 0-35.346-28.654-64-64-64s-64 28.654-64 64C256 547.346 284.654 576 320 576zM960 64c0-106.039-85.961-192-192-192H320l192 192h81.128c22.132-38.258 63.494-64 110.872-64 70.692 0 128 57.308 128 128s-57.308 128-128 128c-47.377 0-88.74-25.742-110.872-64H448L156.044-99.95600000000002C100.845-66.23199999999997 64-5.419999999999959 64 64V576c0 106.039 85.961 192 192 192v-145.128C217.742 600.74 192 559.377 192 512c0-70.692 57.308-128 128-128 47.276 0 88.56 25.633 110.727 63.756l162.416 0.219C615.279 409.731 656.633 384 704 384c70.692 0 128 57.308 128 128s-57.308 128-128 128c-47.388 0-88.758-25.753-110.887-64.025l-162.097-0.219c-11.246 19.54-27.503 35.828-47.016 47.116V768h384c106.039 0 192-85.961 192-192V64zM640 128c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64S640 92.654 640 128zM640 512c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64S640 476.654 640 512z" horiz-adv-x="1024" /> -<glyph glyph-name="clippy" unicode="" d="M704-64h-640v576h640v-192h64v320c0 35-29 64-64 64h-192c0 71-57 128-128 128s-128-57-128-128h-192c-35 0-64-29-64-64v-704c0-35 29-64 64-64h640c35 0 64 29 64 64v128h-64v-128z m-512 704c29 0 29 0 64 0s64 29 64 64 29 64 64 64 64-29 64-64 32-64 64-64 33 0 64 0 64-29 64-64h-512c0 39 28 64 64 64z m-64-512h128v64h-128v-64z m448 128v128l-256-192 256-192v128h320v128h-320z m-448-256h192v64h-192v-64z m320 448h-320v-64h320v64z m-192-128h-128v-64h128v64z" horiz-adv-x="896" /> -<glyph glyph-name="clock" unicode="" d="M384 256h256l64 64-64 64H512V576l-64 64-64-64V256zM448 768C200.562 768 0 567.438 0 320c0-247.438 200.562-448 448-448 247.438 0 448 200.562 448 448C896 567.438 695.438 768 448 768zM448 0c-176.25 0-320 143.75-320 320 0 175.938 144.188 319.5 320 320 175.812-0.5 320-144.062 320-320C768 143.75 624.25 0 448 0z" horiz-adv-x="896" /> -<glyph glyph-name="cloud-download" unicode="" d="M832 512c-8.75 0-17.125-1.406-25.625-2.562C757.625 623.75 644.125 704 512 704c-132.156 0-245.562-80.25-294.406-194.562C209.156 510.594 200.781 512 192 512 85.938 512 0 426.062 0 320s85.938-192 192-192c20.531 0 39.875 4.25 58.375 10.375C284.469 100.625 331.312 75.25 384 67.5v65.25c-49.844 10.375-91.594 42.812-112.625 87.875C249.531 203 222.219 192 192 192c-70.656 0-128 57.375-128 128 0 70.656 57.344 128 128 128 25.281 0 48.625-7.562 68.406-20.094C281.344 548.219 385.594 640 512 640c126.5 0 229.75-92.219 250.5-212.75 20 13 43.875 20.75 69.5 20.75 70.625 0 128-57.344 128-128 0-70.625-57.375-128-128-128-10.25 0-20 1.5-29.625 3.75C773.438 154.875 725.938 128 672 128c-11.062 0-21.625 1.625-32 4v-64.938c10.438-1.688 21.062-3.062 32-3.062 61.188 0 116.5 24.625 156.938 64.438C830 128.375 830.875 128 832 128c106.062 0 192 85.938 192 192S938.062 512 832 512zM576 320H448v-320H320l192-192 192 192H576V320z" horiz-adv-x="1024" /> -<glyph glyph-name="cloud-upload" unicode="" d="M512 448L320 256h128v-320h128V256h128L512 448zM832 512c-8.75 0-17.125-1.406-25.625-2.562C757.625 623.812 644.125 704 512 704c-132.156 0-245.562-80.188-294.406-194.562C209.156 510.594 200.781 512 192 512 85.938 512 0 426 0 320c0-106.062 85.938-192 192-192 20.531 0 39.875 4.25 58.375 10.438C284.469 100.625 331.312 75.25 384 67.5v65.25c-49.844 10.375-91.594 42.812-112.625 87.75C249.531 203 222.219 192 192 192c-70.656 0-128 57.375-128 128 0 70.656 57.344 128 128 128 25.281 0 48.625-7.562 68.406-20.156C281.344 548.219 385.594 640 512 640c126.5 0 229.75-92.219 250.5-212.75 20 13 43.875 20.75 69.5 20.75 70.625 0 128-57.344 128-128 0-70.625-57.375-128-128-128-10.25 0-20 1.5-29.625 3.75C773.438 154.875 725.938 128 672 128c-11.062 0-21.625 1.625-32 4v-64.938c10.438-1.688 21.062-3.062 32-3.062 61.188 0 116.5 24.688 157 64.438 1 0 1.875-0.438 3-0.438 106.062 0 192 85.938 192 192C1024 426 938.062 512 832 512z" horiz-adv-x="1024" /> -<glyph glyph-name="code" unicode="" d="M608 640l-96-96 224-224L512 96l96-96 288 320L608 640zM288 640L0 320l288-320 96 96L160 320l224 224L288 640z" horiz-adv-x="896" /> -<glyph glyph-name="color-mode" unicode="" d="M0 704v-768h768V704H0zM64 0V640h640L64 0z" horiz-adv-x="768" /> -<glyph glyph-name="comment" unicode="" d="M768 704H128C66 704 0 640 0 576v-384c0-128 128-128 128-128h64v-256l256 256c0 0 258 0 320 0s128 68 128 128V576C896 638 832 704 768 704z" horiz-adv-x="896" /> -<glyph glyph-name="comment-discussion" unicode="" d="M256 320c0 64 0 192 0 192s-160 0-192 0-64-32-64-64 0-288 0-320 32-64 64-64 64 0 64 0v-192l194 192s162 0 192 0 62 32 62 64 0 64 0 64-128 0-192 0-128 64-128 128z m576 384c-32 0-416 0-448 0s-64-32-64-64 0-288 0-320 32-64 64-64 190 0 190 0l194-192v192s32 0 64 0 64 32 64 64 0 288 0 320-32 64-64 64z" horiz-adv-x="896" /> -<glyph glyph-name="credit-card" unicode="" d="M128 128h128v64h-128v-64z m192 0h128v64h-128v-64z m64 192h-256v-64h256v64z m-128 64h64l128 128h-64l-128-128z m192-128h192v64h-192v-64z m512 384c-32 0-864 0-896 0s-64-32-64-64 0-480 0-512 32-64 64-64 864 0 896 0 64 32 64 64 0 480 0 512-32 64-64 64z m0-256v-288s0-32-32-32h-832c-32 0-32 32-32 32v288h64l128 128h-192v32s0 32 32 32h832c32 0 32-32 32-32v-32h-384l-128-128h512z" horiz-adv-x="1024" /> -<glyph glyph-name="dash" unicode="" d="M0 384v-128h512V384H0z" horiz-adv-x="512" /> -<glyph glyph-name="dashboard" unicode="" d="M416 367.5c-61.562 0-111.5-49.938-111.5-111.5S354.438 144.5 416 144.5 527.5 194.438 527.5 256c0 8.5-1.125 16.75-3 24.688C606.125 375.625 732.5 523.656 800 608c23.125 28.875-2.312 56.188-32 32-85.188-69.375-232.312-194.688-326.906-275.594C433.031 366.281 424.625 367.5 416 367.5zM447.875 576.125c0 17.656-14.344 32-32 32s-32-14.344-32-32 14.344-32 32-32S447.875 558.469 447.875 576.125zM639.875 320.125c0-17.656 14.375-32 32-32s32 14.344 32 32-14.375 32-32 32S639.875 337.781 639.875 320.125zM287.875 576.125c-17.656 0-32-14.344-32-32s14.344-32 32-32 32 14.344 32 32S305.531 576.125 287.875 576.125zM223.875 448.125c0 17.656-14.344 32-32 32s-32-14.344-32-32 14.344-32 32-32S223.875 430.469 223.875 448.125zM127.875 320.125c0-17.656 14.344-32 32-32s32 14.344 32 32-14.344 32-32 32S127.875 337.781 127.875 320.125zM575.875 544.125c0 17.656-14.375 32-32 32s-32-14.344-32-32 14.375-32 32-32S575.875 526.469 575.875 544.125zM792.875 495.312l-68.75-89.938C731.625 378.188 736 349.625 736 320c0-176.75-143.312-320-320-320S96 143.25 96 320c0 176.688 143.312 320 320 320 65.875 0 127-19.969 177.875-54.094l79.25 60.625C602.375 702.406 513.25 736 416 736 186.25 736 0 549.75 0 320s186.25-416 416-416 416 186.25 416 416C832 382.719 817.75 442 792.875 495.312z" horiz-adv-x="832" /> -<glyph glyph-name="database" unicode="" d="M384-128C171.969-128 0-70.625 0 0c0 38.625 0 80.875 0 128 0 11.125 5.562 21.688 13.562 32C56.375 104.875 205.25 64 384 64s327.625 40.875 370.438 96c8-10.312 13.562-20.875 13.562-32 0-37.062 0-76.375 0-128C768-70.625 596-128 384-128zM384 128C171.969 128 0 185.375 0 256c0 38.656 0 80.844 0 128 0 6.781 2.562 13.375 6 19.906l0 0C7.938 408 10.5 412.031 13.562 416 56.375 360.906 205.25 320 384 320s327.625 40.906 370.438 96c3.062-3.969 5.625-8 7.562-12.094l0 0c3.438-6.531 6-13.125 6-19.906 0-37.062 0-76.344 0-128C768 185.375 596 128 384 128zM384 384C171.969 384 0 441.344 0 512c0 20.219 0 41.594 0 64 0 20.344 0 41.469 0 64C0 710.656 171.969 768 384 768c212 0 384-57.344 384-128 0-19.969 0-41.156 0-64 0-19.594 0-40.25 0-64C768 441.344 596 384 384 384zM384 704c-141.375 0-256-28.594-256-64s114.625-64 256-64 256 28.594 256 64S525.375 704 384 704z" horiz-adv-x="768" /> -<glyph glyph-name="device-camera" unicode="" d="M512 447.999c-70.691 0-127.999-57.308-127.999-127.999S441.309 192.00099999999998 512 192.00099999999998c5.713 0 11.337 0.38 16.852 1.105-46.344 7.058-81.851 47.079-81.851 95.394 0 53.295 43.204 96.499 96.499 96.499 48.314 0 88.336-35.507 95.394-81.851 0.726 5.515 1.105 11.139 1.105 16.852C639.999 390.691 582.691 447.999 512 447.999zM896 576H767.999L640 704H384L255.999 576H128c-35.348 0-64-28.652-64-64v-448c0-35.347 28.652-64 64-64h768c35.347 0 64 28.653 64 64V512C960 547.348 931.347 576 896 576zM416 640h192l64-64H352L416 640zM160.143 64C142.391 64 128 78.39099999999996 128 96.14300000000003V384h64v64h-64v31.857C128 497.609 142.391 512 160.143 512h182.526c-3.98-3.518-7.881-7.174-11.688-10.98-99.974-99.975-99.974-262.064 0-362.039l74.98-74.98H160.143zM512 128.00099999999998c-106.038 0-191.999 85.961-191.999 191.999S405.962 511.999 512 511.999 703.999 426.038 703.999 320 618.038 128.00099999999998 512 128.00099999999998zM832 352L681.327 512H832V352z" horiz-adv-x="1024" /> -<glyph glyph-name="device-camera-video" unicode="" d="M576 640c-35.347 0-64-28.653-64-64s28.653-64 64-64 64 28.653 64 64S611.347 640 576 640zM896 448L768 320v64c0 30.625-21.515 56.21-50.25 62.503C748.958 480.646 768 526.097 768 575.998 768 682.038 682.039 768 576 768c-101.123 0-183.986-78.178-191.45-177.393C350.516 621.306 305.442 640 256 640c-106.038 0-192-85.962-192-192.002C64 341.961 149.962 256 256 256h-64v-128h64v-128c0-35.347 28.653-64 64-64h384c35.347 0 64 28.653 64 64v64l128-128h64V448H896zM256 512c-35.347 0-64-28.653-64-64s28.653-64 64-64v-64c-70.692 0-128 57.308-128 127.999C128 518.692 185.308 576 256 576s128-57.307 128-128h-64C320 483.347 291.347 512 256 512zM576 128H448V256h128V128zM704 237.21299999999997c-33.526 33.547-70.276 70.317-73.373 73.414C624.837 316.418 616.837 320 608 320H416c-17.674 0-32-14.326-32-32v-192c0-8.329 3.183-15.915 8.396-21.607 0.53-0.58 39.123-39.164 74.409-74.393H352c-17.674 0-32 14.326-32 32V352c0 17.674 14.326 32 32 32h320c17.674 0 32-14.326 32-32V237.21299999999997zM576 448c-70.692 0-128 57.308-128 127.999C448 646.692 505.308 704 576 704s128-57.308 128-128.001C704 505.308 646.692 448 576 448zM896 128l-64 64 0.082 128.084L896 384.002V128z" horiz-adv-x="1024" /> -<glyph glyph-name="device-desktop" unicode="" d="M960 768c-32 0-864 0-896 0s-64-32-64-64 0-544 0-576 32-64 64-64 320 0 320 0-192-64-192-128c0-32 32-64 64-64s480 0 512 0 64 32 64 64c0 64-192 128-192 128s288 0 320 0 64 32 64 64 0 544 0 576-32 64-64 64z m0-640h-896v576h896v-576z m-64 512h-192c-384-64-542-300-576-384v-64h768v448z" horiz-adv-x="1024" /> -<glyph glyph-name="device-mobile" unicode="" d="M576 832H64C28.688 832 0 803.312 0 768v-896c0-35.375 28.688-64 64-64h512c35.375 0 64 28.625 64 64V768C640 803.312 611.375 832 576 832zM288 768h64c17.625 0 32-14.344 32-32s-14.375-32-32-32h-64c-17.656 0-32 14.344-32 32S270.344 768 288 768zM352-128h-64c-17.656 0-32 14.375-32 32s14.344 32 32 32h64c17.625 0 32-14.375 32-32S369.625-128 352-128zM576 0H64V640h512V0z" horiz-adv-x="640" /> -<glyph glyph-name="diff" unicode="" d="M448 576H320v-128H192v-128h128v-128h128V320h128V448H448V576zM192-64h384V64H192V-64zM640 832H128v-64h480l224-224v-608h64V576L640 832zM0 704v-896h768V512L576 704H0zM704-128H64V640h480l160-160V-128z" horiz-adv-x="896" /> -<glyph glyph-name="diff-added" unicode="" d="M512 512h-128v-128h-128v-128h128v-128h128v128h128v128h-128v128z m320 256c-32 0-736 0-768 0s-64-32-64-64 0-736 0-768 32-64 64-64 736 0 768 0 64 32 64 64 0 736 0 768-32 64-64 64z m-64-736c0-16-17-32-32-32s-558 0-576 0-32 12-32 32c0 16 0 560 0 576s16 32 32 32 561 0 576 0 32-16 32-32 0-560 0-576z" horiz-adv-x="896" /> -<glyph glyph-name="diff-ignored" unicode="" d="M832 768h-768c-32 0-64-32-64-64v-768c0-32 32-64 64-64h768c32 0 64 32 64 64v768c0 32-32 64-64 64z m-64-736c0-16-17-32-32-32h-576c-18 0-32 12-32 32v576c0 16 16 32 32 32h576c15 0 32-16 32-32v-576z m-512 194v-98h98l286 286v98h-98l-286-286z" horiz-adv-x="896" /> -<glyph glyph-name="diff-modified" unicode="" d="M832 768h-768c-32 0-64-32-64-64v-768c0-32 32-64 64-64h768c32 0 64 32 64 64v768c0 32-32 64-64 64z m-64-736c0-16-17-32-32-32h-576c-18 0-32 12-32 32v576c0 16 16 32 32 32h576c15 0 32-16 32-32v-576z m-320 416c-71 0-128-57-128-128s57-128 128-128 128 57 128 128-57 128-128 128z" horiz-adv-x="896" /> -<glyph glyph-name="diff-removed" unicode="" d="M832 768h-768c-32 0-64-32-64-64v-768c0-32 32-64 64-64h768c32 0 64 32 64 64v768c0 32-32 64-64 64z m-64-736c0-16-17-32-32-32h-576c-18 0-32 12-32 32v576c0 16 16 32 32 32h576c15 0 32-16 32-32v-576z m-512 224h384v128h-384v-128z" horiz-adv-x="896" /> -<glyph glyph-name="diff-renamed" unicode="" d="M832 768h-768c-32 0-64-32-64-64v-768c0-32 32-64 64-64h768c32 0 64 32 64 64v768c0 32-32 64-64 64z m-64-736c0-16-17-32-32-32h-576c-18 0-32 12-32 32v576c0 16 16 32 32 32h576c15 0 32-16 32-32v-576z m-320 352h-192v-128h192v-128l256 192-256 192v-128z" horiz-adv-x="896" /> -<glyph glyph-name="ellipsis" unicode="" d="M640 512c-64 0-448 0-512 0s-128-64-128-128 0-64 0-128 64-128 128-128 448 0 512 0 128 64 128 128 0 64 0 128-64 128-128 128z m-384-256h-128v128h128v-128z m192 0h-128v128h128v-128z m192 0h-128v128h128v-128z" horiz-adv-x="768" /> -<glyph glyph-name="eye" unicode="" d="M512 704c-192 0-416-128-512-384 96-192 288-320 512-320s416 128 512 320c-96 256-320 384-512 384z m0-640c-192 0-352 128-384 256 32 128 192 256 384 256s352-128 384-256c-32-128-192-256-384-256z m0 448c-20 0-38-4-56-9 33-15 56-48 56-87 0-53-43-96-96-96-39 0-72 23-87 56-5-18-9-36-9-56 0-106 86-192 192-192s192 86 192 192-86 192-192 192z" horiz-adv-x="1024" /> -<glyph glyph-name="file-binary" unicode="" d="M0-128V768h576l192-192v-704H0zM704 512L512 704H64v-768h640V512zM320 320H128V576h192V320zM256 512h-64v-128h64V512zM256 64h64v-64H128v64h64V192h-64v64h128V64zM512 384h64v-64H384v64h64V512h-64v64h128V384zM576 0H384V256h192V0zM512 192h-64v-128h64V192z" horiz-adv-x="768" /> -<glyph glyph-name="file-code" unicode="" d="M288 448L128 288l160-160 64 64-96 96 96 96L288 448zM416 384l96-96-96-96 64-64 160 160L480 448 416 384zM576 768H0v-896h768V576L576 768zM704-64H64V704h448l192-192V-64z" horiz-adv-x="768" /> -<glyph glyph-name="file-directory" unicode="" d="M832 640c-32 0-336 0-352 0s-32 16-32 32 0 0 0 32-32 64-64 64-288 0-320 0-64-32-64-64 0-704 0-704h896s0 544 0 576-32 64-64 64z m-448 0h-320s0 15 0 32 16 32 32 32 241 0 256 0 32-15 32-32 0-32 0-32z" horiz-adv-x="896" /> -<glyph glyph-name="file-media" unicode="" d="M576 768H0v-896h768V576L576 768zM704-64H64V704h448l192-192V-64zM128 576v-512h128c0 70.625 57.344 128 128 128-70.656 0-128 57.375-128 128 0 70.656 57.344 128 128 128 70.625 0 128-57.344 128-128 0-70.625-57.375-128-128-128 70.625 0 128-57.375 128-128h128V448L512 576H128z" horiz-adv-x="768" /> -<glyph glyph-name="file-pdf" unicode="" d="M576 768H0v-896h768V576L576 768zM64 704h255.812c-13.188-4.094-27.281-15.031-34.625-42.875-13.25-49.406-7.031-130.75 15.625-209.344C276.688 370.562 178.188 175.125 171.531 163.5c-15.625-4.875-65.344-23.625-107.531-59.812V704zM347.125 396.531c57.625-149.781 95-149.531 135.188-167.594C398.344 216 334.219 206.75 249.781 169.5 246.094 163.062 326.281 315.40599999999995 347.125 396.531zM704-64H65.844 64v0.375c0.781-0.062 1.094-0.375 1.844-0.375 33.812 0 84.75 21 180.562 182.375 38.188 15.438 72.062 26.875 78.469 28.938 58.812 14.875 125 26.625 187.562 33.375C566.875 153.5 639.125 135 680.25 132.375c9.625-0.5 16.062 1.188 23.75 2V-64zM704 246.625c-23.688 14.688-54 25-89.125 25-24.25 0-50.625-1.375-78.688-4.375-26.938 13-92.562 32.719-147.188 190.219 17.094 103.625 12.719 173.562 12.719 173.562 6.781 52.938-23.344 72.844-51.625 72.844 0 0-0.279 0.125-0.344 0.125H512l192-192V246.625z" horiz-adv-x="768" /> -<glyph glyph-name="file-submodule" unicode="" d="M832 320c-32 0-192 0-192 0 0 32-32 64-64 64s-96 0-128 0-64-32-64-64 0-320 0-320h512s0 224 0 256-32 64-64 64z m-256-64h-128s0 17 0 32 15 32 32 32 48 0 64 0 32-15 32-32 0-32 0-32z m256 320c-32 0-336 0-352 0s-32 17-32 32 0 0 0 32-32 64-64 64-288 0-320 0-64-32-64-64 0-640 0-640h320s0 352 0 384 32 64 64 64 224 0 256 0 64-32 64-64h192s0 96 0 128-32 64-64 64z m-448 0h-320s0 16 0 32 16 32 32 32 240 0 256 0 32-17 32-32 0-32 0-32z" horiz-adv-x="896" /> -<glyph glyph-name="file-symlink-directory" unicode="" d="M832 640h-352c-16 0-32 16-32 32s0 0 0 32-32 64-64 64h-320c-32 0-64-32-64-64s0-704 0-704h896s0 544 0 576-32 64-64 64z m-768 32c0 17 16 32 32 32h256c15 0 32-15 32-32s0-32 0-32h-320s0 15 0 32z m384-544v128c-125 0-224-56-256-192 0 209 107 320 256 320 0 49 0 128 0 128l256-192-256-192z" horiz-adv-x="896" /> -<glyph glyph-name="file-symlink-file" unicode="" d="M576 768h-576v-896h768v704l-192 192z m128-832h-640v768h448l192-192v-576z m-320 448c-149 0-256-111-256-320 32 136 131 192 256 192v-128l256 192-256 192s0-79 0-128z" horiz-adv-x="768" /> -<glyph glyph-name="file-text" unicode="" d="M448 576H128v-64h320V576zM576 768H0v-896h768V576L576 768zM704-64H64V704h448l192-192V-64zM128 64h512v64H128V64zM128 192h512v64H128V192zM128 320h512v64H128V320z" horiz-adv-x="768" /> -<glyph glyph-name="file-zip" unicode="" d="M320 256v64h-64v-64H320zM320 384v64h-64v-64H320zM320 512v64h-64v-64H320zM192 448h64v64h-64V448zM576 768H0v-896h768V576L576 768zM704-64H64V704h192v-64h64v64h192l192-192V-64zM192 576h64v64h-64V576zM192 320h64v64h-64V320zM192 192l-64-64v-128h256V128l-64 64h-64v64h-64V192zM320 128v-64H192v64H320z" horiz-adv-x="768" /> -<glyph glyph-name="flame" unicode="" d="M433 787c50-134 24-207-32-265-61-64-156-112-223-206-89-125-104-400 217-472-135 71-164 277-18 406-38-125 32-205 119-176 85 29 141-32 139-102-1-48-20-89-69-112 209 37 293 210 293 342 0 174-155 198-77 344-93-8-125-69-116-169 6-66-63-111-114-81-41 25-40 73-4 109 77 76 107 251-115 382z" horiz-adv-x="1024" /> -<glyph glyph-name="fold" unicode="" d="M896 576H672l-64-64h192L672 384H224L96 512h192l-64 64H0v-63.999L160 352 0 192v-64h224l64 64H96l128 128h448l128-128H608l64-64h224v64L736 352l160 160.001V576zM640 640H512V832H384v-192H256l192-192L640 640zM256 64h128v-192h128V64h128L448 256 256 64z" horiz-adv-x="896" /> -<glyph glyph-name="gear" unicode="" d="M447.938 482C358.531 482 286 409.469 286 320c0-89.375 72.531-162.062 161.938-162.062 89.438 0 161.438 72.688 161.438 162.062C609.375 409.469 537.375 482 447.938 482zM772.625 226.938l-29.188-70.312 52.062-102.25 6.875-13.5-72.188-72.188L611.75 24.625l-70.312-28.875L505.75-113.5l-4.562-14.5H399.156L355-4.687999999999988l-70.312 29-102.404-51.938-13.5-6.75-72.156 72.125 55.875 118.5-28.969 70.25L14.469 262.125 0 266.812V368.781L123.406 413l28.969 70.188-51.906 102.469-6.844 13.438 72.062 72.062 118.594-55.844 70.219 29.031 35.656 109.188L394.75 768h102l44.188-123.469 70.125-29.031L713.5 667.469l13.625 6.844 72.125-72.062-55.875-118.406L772.25 413.5l109.375-35.656L896 373.25v-101.938L772.625 226.938z" horiz-adv-x="896" /> -<glyph glyph-name="gift" unicode="" d="M448-128h320V192H448V-128zM64-128h320V192H64V-128zM447.75 455.812c31.469 3.5 66.875 7.406 87.375 9.719C619 474.875 694.5 550.406 703.812 634.25c9.312 83.75-51 144.125-134.688 134.719C503.688 761.656 443.844 714 416 653.625 388.156 714 328.312 761.656 262.906 769.031 179.188 778.375 118.781 718 128.188 634.25c9.344-83.844 84.875-159.312 168.656-168.719 20.531-2.312 55.938-6.281 87.406-9.719C383.75 451.594 384 448 384 448h64C448 448 448.25 451.594 447.75 455.812zM555.375 691.312c45.25 5.062 78-27.562 72.875-72.875-5-45.312-45.875-86.156-91.125-91.219-45.375-5.031-78 27.594-72.938 72.906C469.249 645.436 510.125 686.281 555.375 691.312zM294.906 527.219c-45.25 5.062-86.062 45.906-91.125 91.219-5.063 45.313 27.594 77.938 72.812 72.875 45.312-5.031 86.156-45.875 91.222-91.188C372.875 554.812 340.219 522.188 294.906 527.219zM448 448v-192h384V448H448zM0 256h384V448H0V256z" horiz-adv-x="896" /> -<glyph glyph-name="gist" unicode="" d="M416 448l96-96-96-96 64-64 160 160-160 160-64-64z m-416 320v-832h768v832h-768z m704-768h-640v704h640v-704z m-352 256l-96 96 96 96-64 64-160-160 160-160 64 64z" horiz-adv-x="768" /> -<glyph glyph-name="gist-secret" unicode="" d="M193 128l128-192h-256l-65 256 257 64-64-128z m448 128l64-128-128-192h256l64 256-256 64z m-84 0h-216l44-102-64-218h256l-64 218 44 102z m84 192h-384l-128-64h640l-128 64z m-64 256l-128-64-128 64-64-192h384l-64 192z" horiz-adv-x="896" /> -<glyph glyph-name="git-branch" unicode="" d="M512 640c-71 0-128-57-128-128 0-47 26-88 64-110v-18c0-64-64-128-128-128-53 0-95-11-128-29v303c38 22 64 63 64 110 0 71-57 128-128 128s-128-57-128-128c0-47 26-88 64-110v-419c-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 34-13 64-34 87 19 23 49 41 98 41 128 0 256 128 256 256v18c38 22 64 63 64 110 0 71-57 128-128 128z m-384 64c35 0 64-29 64-64s-29-64-64-64-64 29-64 64 29 64 64 64z m0-768c-35 0-64 29-64 64s29 64 64 64 64-29 64-64-29-64-64-64z m384 512c-35 0-64 29-64 64s29 64 64 64 64-29 64-64-29-64-64-64z" horiz-adv-x="640" /> -<glyph glyph-name="git-commit" unicode="" d="M694.875 384C666.375 494.219 567.125 576 448 576c-119.094 0-218.375-81.781-246.906-192H0v-128h201.094C229.625 145.75 328.906 64 448 64c119.125 0 218.375 81.75 246.875 192H896V384H694.875zM448 192c-70.656 0-128 57.375-128 128 0 70.656 57.344 128 128 128 70.625 0 128-57.344 128-128C576 249.375 518.625 192 448 192z" horiz-adv-x="896" /> -<glyph glyph-name="git-compare" unicode="" d="M832 110s0 306 0 402-96 192-192 192c-64 0-64 0-64 0v128l-192-192 192-192v128s32 0 64 0 64-32 64-64 0-402 0-402c-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110z m-64-174c-35 0-64 29-64 64s29 64 64 64 64-29 64-64-29-64-64-64z m-448 128s-32 0-64 0-64 32-64 64 0 402 0 402c38 22 64 63 64 110 0 71-57 128-128 128s-128-57-128-128c0-47 26-88 64-110 0 0 0-306 0-402s96-192 192-192c64 0 64 0 64 0v-128l192 192-192 192v-128z m-192 512c-35 0-64 29-64 64s29 64 64 64 64-29 64-64-29-64-64-64z" horiz-adv-x="896" /> -<glyph glyph-name="git-merge" unicode="" d="M640 384c-47.625 0-88.625-26.312-110.625-64.906C523.625 319.5 518 320 512 320c-131.062 0-255.438 99.844-300.812 223.438C238.469 566.906 256 601.281 256 640c0 70.656-57.344 128-128 128S0 710.656 0 640c0-47.219 25.844-88.062 64-110.281V110.25C25.844 88.06200000000001 0 47.25 0 0c0-70.625 57.344-128 128-128s128 57.375 128 128c0 47.25-25.844 88.062-64 110.25V340.531C276.156 251.5 392.375 192 512 192c6.375 0 11.625 0.438 17.375 0.625C551.5 154.188 592.5 128 640 128c70.625 0 128 57.375 128 128C768 326.656 710.625 384 640 384zM128-64c-35.312 0-64 28.625-64 64 0 35.312 28.688 64 64 64 35.406 0 64-28.688 64-64C192-35.375 163.406-64 128-64zM128 576c-35.312 0-64 28.594-64 64s28.688 64 64 64c35.406 0 64-28.594 64-64S163.406 576 128 576zM640 192c-35.312 0-64 28.625-64 64 0 35.406 28.688 64 64 64 35.375 0 64-28.594 64-64C704 220.625 675.375 192 640 192z" horiz-adv-x="768" /> -<glyph glyph-name="git-pull-request" unicode="" d="M704 110s0 306 0 402-96 192-192 192c-64 0-64 0-64 0v128l-192-192 192-192v128s32 0 64 0 64-32 64-64 0-402 0-402c-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110z m-64-174c-35 0-64 29-64 64s29 64 64 64 64-29 64-64-29-64-64-64z m-512 832c-71 0-128-57-128-128 0-47 26-88 64-110v-419c-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110v419c38 22 64 63 64 110 0 71-57 128-128 128z m0-832c-35 0-64 29-64 64s29 64 64 64 64-29 64-64-29-64-64-64z m0 640c-35 0-64 29-64 64s29 64 64 64 64-29 64-64-29-64-64-64z" horiz-adv-x="768" /> -<glyph glyph-name="globe" unicode="" d="M512 704c-212.077 0-384-171.923-384-384s171.923-384 384-384c25.953 0 51.303 2.582 75.812 7.49-9.879 4.725-10.957 40.174-1.188 60.385 10.875 22.5 45 79.5 11.25 98.625s-24.375 27.75-45 49.875-12.19 25.451-13.5 31.125c-4.5 19.5 19.875 48.75 21 51.75s1.125 14.25 0.75 17.625S545.75 265.25 542 265.625s-5.625-6-10.875-6.375-28.125 13.875-33 17.625-7.125 12.75-13.875 19.5-7.5 1.5-18 5.625-44.25 16.5-70.125 27-28.125 25.219-28.5 35.625-15.75 25.5-22.961 36.375c-7.209 10.875-8.539 25.875-11.164 22.5s13.5-42.75 10.875-43.875-8.25 10.875-15.75 20.625 7.875 4.5-16.125 51.75 7.5 71.344 9 96 20.25-9 10.5 6.75 0.75 48.75-6.75 60.75S275 602 275 602c1.125 11.625 37.5 31.5 63.75 49.875s42.281 4.125 63.375-2.625 22.5-4.5 15.375 2.25 3 10.125 19.5 7.5 21-22.5 46.125-20.625 2.625-4.875 6-11.25-3.75-5.625-20.25-16.875S469.25 599 498.5 577.625s20.25 14.25 17.25 30S537.125 611 537.125 611c18-12 14.674-0.66 27.799-4.785S613.625 572 613.625 572c-44.625-24.375-16.5-27-9-32.625s-15.375-16.5-15.375-16.5c-9.375 9.375-10.875-0.375-16.875-3.75s-0.375-12-0.375-12c-31.031-4.875-24-37.5-23.625-45.375s-19.875-19.875-25.125-31.125S536.75 395 527 393.5s-19.5 36.75-72 22.5c-15.828-4.297-51-22.5-32.25-59.625s49.875 10.5 60.375 5.25-3-28.875-0.75-29.25 29.625-1.031 31.125-33 41.625-29.25 50.25-30 37.5 23.625 41.625 24.75S626 309.125 662 288.5s54.375-17.625 66.75-26.25 3.75-25.875 15.375-31.5 58.125 1.875 69.75-17.25-48-115.125-66.75-125.625S719.75 53.375 701 38s-45-34.406-69.75-49.125c-21.908-13.027-25.85-36.365-35.609-43.732C767.496-16.67999999999995 896 136.64999999999998 896 320 896 532.077 724.077 704 512 704zM602 343.625c-5.25-1.5-16.125-11.25-42.75 4.5s-45 12.75-47.25 15.375c0 0-2.25 6.375 9.375 7.5 23.871 2.311 54-22.125 60.75-22.5s10.125 6.75 22.125 2.883C616.25 347.52 607.25 345.125 602 343.625zM476.375 665.75c-2.615 1.902 2.166 4.092 5.016 7.875 1.645 2.186 0.425 5.815 2.484 7.875 5.625 5.625 33.375 13.5 27.949-1.875C506.4 664.25 480.5 662.75 476.375 665.75zM543.5 617c-9.375 0.375-31.443 2.707-27.375 6.75 15.844 15.75-6 20.25-19.5 21.375S477.5 653.75 484.25 654.5s33.75-0.375 38.25-4.125 28.875-13.5 30.375-20.625S552.875 616.625 543.5 617zM624.875 619.625c-7.5-6-45.24 21.529-52.5 27.75-31.5 27-48.375 18-54.99 22.5-6.617 4.5-4.26 10.5 5.865 19.5s38.625-3 55.125-4.875 35.625-14.625 36-29.781C614.75 639.564 632.375 625.625 624.875 619.625z" horiz-adv-x="1024" /> -<glyph glyph-name="graph" unicode="" d="M704 576H512v-640h192V576zM960 384H768v-448h192V384zM64-128V0h64v64H64V192h64v64H64V384h64v64H64V576h64v64H64V768h64V832H0v-1024h1024v64H64zM448 256H256v-320h192V256z" horiz-adv-x="1024" /> -<glyph glyph-name="heart" unicode="♥" d="M384-32c399 314 384 425 384 512s-72 192-192 192-192-128-192-128-72 128-192 128-192-105-192-192-15-198 384-512z" horiz-adv-x="768.199" /> -<glyph glyph-name="history" unicode="" d="M448 768c-90.938 0-175.312-27.531-245.938-74.062L128 768v-256h256l-88 88c45.438 24.688 96.688 40 152 40 176.75 0 320-143.219 320-320 0-176.75-143.25-320-320-320-176.781 0-320 143.25-320 320 0 45.562 9.781 88.781 27 128H64v99.406C24.312 480.5 0 403.406 0 320c0-247.438 200.562-448 448-448 247.438 0 448 200.562 448 448C896 567.438 695.438 768 448 768zM447.031 1L512 64V256h128l64 64-64 64H512l-64 64L320 320l64-64v-192L447.031 1z" horiz-adv-x="896" /> -<glyph glyph-name="home" unicode="" d="M192 256l64-384h192V192h128v-320h192l64 384L512 576 192 256zM832 448V704H704l0.312-128.312L512 768 0 256h128l384 384 384-384h128L832 448z" horiz-adv-x="1024" /> -<glyph glyph-name="horizontal-rule" unicode="" d="M63.938 384h128v-128h64V639.938h-64V448h-128V639.938H0V256h63.938V384zM639.875 256V384h-63.938v-128H639.875zM639.875 448V575.938h-63.938V448H639.875zM447.938 448V575.938h128v64h-192V256h64V384h128v64H447.938zM0 0h639.875V128H0V0z" horiz-adv-x="639.875" /> -<glyph glyph-name="hourglass" unicode="" d="M571 320c118 85 197 240 197 384 0 71-172 128-384 128s-384-57-384-128c0-144 80-299 197-384-118-85-197-240-197-384 0-71 172-128 384-128s384 57 384 128c0 144-80 299-197 384z m-187 448c141 0 256-29 256-64s-115-64-256-64-256 29-256 64 115 64 256 64z m-64-706c-154-7-238-40-253-82 16 114 75 189 141 251 73 68 112 60 112 103v-273z m-105 352c-70 55-122 130-142 215 70-32 183-53 311-53s241 21 311 53c-20-85-72-160-142-215-24 17-70 34-169 34s-145-17-169-34z m233-352v273c0-43 39-35 112-103 66-62 125-138 141-251-14 41-99 75-253 82z" horiz-adv-x="768" /> -<glyph glyph-name="hubot" unicode="" d="M512 768c-283 0-512-229-512-512 0 0 0-192 0-256s64-128 128-128 704 0 768 0 128 64 128 128 0 256 0 256c0 283-229 512-512 512z m96-768h-192c-18 0-32 14-32 32s14 32 32 32h192c18 0 32-14 32-32s-14-32-32-32z m288 128c0-32-32-64-64-64s-128 0-128 0c0 32-32 64-64 64s-224 0-256 0-64-32-64-64c0 0-96 0-128 0s-64 32-64 64 0 360 0 360c78 129 220 216 384 216s306-87 384-216c0 0 0-328 0-360z m-128 384c-32 0-480 0-512 0s-64-32-64-64 0-96 0-128 32-64 64-64 480 0 512 0 64 32 64 64 0 96 0 128-32 64-64 64z m0-128l-64-64h-128l-64 64-64-64h-128l-64 64v64h64l64-64 64 64h128l64-64 64 64h64v-64z" horiz-adv-x="1024" /> -<glyph glyph-name="inbox" unicode="" d="M704 640H64L0 256v-256h768V256L704 640zM576 256l-64-128H256l-64 128H79l49 320h512l49-320H576z" horiz-adv-x="768" /> -<glyph glyph-name="info" unicode="" d="M448 448c35 0 64 29 64 64s-29 64-64 64-64-29-64-64 29-64 64-64z m0 320c-247 0-448-201-448-448s201-448 448-448 448 201 448 448-201 448-448 448z m0-768c-177 0-320 143-320 320s143 320 320 320 320-143 320-320-143-320-320-320z m64 320c0 32-32 64-64 64s-32 0-64 0-64-32-64-64h64s0-160 0-192 32-64 64-64 32 0 64 0 64 32 64 64h-64s0 160 0 192z" horiz-adv-x="896" /> -<glyph glyph-name="issue-closed" unicode="" d="M704 515.969l-96-96L768 256l256 256-96 96L769.25 449.219 704 515.969zM512 0c-176.781 0-320 143.25-320 320 0 176.781 143.219 320 320 320 88.375 0 168.375-35.844 226.25-93.75l90.562 90.5C747.75 717.875 635.75 768 512 768 264.562 768 64 567.438 64 320c0-247.438 200.562-448 448-448 247.438 0 448 200.562 448 448L759.75 119.75C768.688 130.75 684.75 0 512 0zM576 576H448v-320h128V576zM448 64h128V192H448V64z" horiz-adv-x="1024" /> -<glyph glyph-name="issue-opened" unicode="" d="M448 768C200.562 768 0 567.438 0 320c0-247.438 200.562-448 448-448 247.438 0 448 200.562 448 448C896 567.438 695.438 768 448 768zM448 0c-176.781 0-320 143.25-320 320 0 176.781 143.219 320 320 320 176.75 0 320-143.219 320-320C768 143.25 624.75 0 448 0zM384 64h128V192H384V64zM384 256h128V576H384V256z" horiz-adv-x="896" /> -<glyph glyph-name="issue-reopened" unicode="" d="M639.125 64.75C585.75 24.625 520 0 448 0c-176.781 0-320 143.25-320 320 0 45.562 9.781 88.781 27 128H64v99.469C24.312 480.562 0 403.406 0 320c0-247.438 200.562-448 448-448 107.375 0 204.5 39.312 281.75 102.25L768-64V128H576L639.125 64.75zM384 64h128V192H384V64zM512 576H384v-320h128V576zM896 320c0 247.438-200.562 448-448 448-107.406 0-204.531-39.312-281.656-102.344L128 704v-192h192l-63.156 63.156C310.281 615.312 376 640 448 640c176.75 0 320-143.219 320-320 0-45.562-9.75-88.75-27-128h91v-99.5C871.688 159.438 896 236.5 896 320z" horiz-adv-x="896" /> -<glyph glyph-name="jersey" unicode="" d="M704 832h-192c0-32-33-64-97-64s-95 32-95 64h-192c0-128-2-384-128-384 0 0-1-544-1-576s32-64 64-64 672 0 704 0 64 32 64 64 0 576 0 576c-126 0-128 256-128 384z m-609-960c-16 0-31 10-31 32 0 32 0 480 0 480 119 64 128 192 128 384h64c0-96 32-191 160-192s160 96 160 192h64c0-186 32-276 64-339v-557s-593 0-609 0z m385 576l-32-32v-320l32-32h128l32 32v320l-32 32h-128z m96-320h-64v256h64v-256z m-352 320l-32-32v-320l32-32h128l32 32v320l-32 32h-128z m96-320h-64v256h64v-256z" horiz-adv-x="896" /> -<glyph glyph-name="jump-down" unicode="" d="M767.75 640H0.25L384 256.25 767.75 640zM0 128v-128h768V128H0z" horiz-adv-x="768" /> -<glyph glyph-name="jump-left" unicode="" d="M256.25 320L640-63.75v767.5L256.25 320zM0-64h128V704H0V-64z" horiz-adv-x="640" /> -<glyph glyph-name="jump-right" unicode="" d="M0-63.75L383.75 320 0 703.812V-63.75zM512 704v-768h128V704H512z" horiz-adv-x="640" /> -<glyph glyph-name="jump-up" unicode="" d="M0.188 0h767.5L384 383.75 0.188 0zM0 640v-128h768V640H0z" horiz-adv-x="768" /> -<glyph glyph-name="key" unicode="" d="M640.9 768.1c-141.4 0-256-114.6-256-256 0-19.6 2.2-38.6 6.4-56.9L0 64v-64l64-64h128l64 64v64h64v64h64v64h128l70.8 70.8c18.7-4.3 38.1-6.6 58.1-6.6 141.4 0 256 114.6 256 256S782.2 768.1 640.9 768.1zM384 320L64 0v64l320 320V320zM704 512c-35.3 0-64 28.7-64 64 0 35.3 28.7 64 64 64s64-28.7 64-64C768 540.7 739.3 512 704 512z" horiz-adv-x="896.9" /> -<glyph glyph-name="keyboard" unicode="" d="M640 256h64V384h-64V256zM768 576h-64v-128h64V576zM640 576h-64v-128h64V576zM512 256h64V384h-64V256zM384 64h320V192H384V64zM768 256h128V576h-64v-192h-64V256zM256 64h64V192h-64V64zM768 64h128V192H768V64zM512 576h-64v-128h64V576zM192 384h-64v-128h64V384zM192 192h-64v-128h64V192zM0 704v-768h1024V704H0zM960 0H64V640h896V0zM384 256h64V384h-64V256zM256 576H128v-128h128V576zM384 576h-64v-128h64V576zM256 256h64V384h-64V256z" horiz-adv-x="1024" /> -<glyph glyph-name="law" unicode="" d="M514 640c34 1 61 28 62 62 1 37-29 67-66 66-34-1-61-28-62-62-1-37 29-67 66-66z m464-384h-18l-127 246c18 2 36 9 52 16 24 11 29 43 11 62l-1 1c-11 11-28 15-43 8-14-6-34-13-53-13-56 0-81 64-287 64s-231-64-287-64c-20 0-39 6-53 13-15 6-32 3-43-8l-1-1c-18-19-13-50 11-62 16-8 34-14 52-16l-127-246h-18c-8 0-14-7-13-15 11-64 92-113 191-113s180 49 191 113c1 8-5 15-13 15h-18l-127 245c83 7 127 49 191 49v-486c-35 0-64-29-64-64h-71c-28 0-57-29-57-64h512c0 35-29 64-71 64h-57c0 35-29 64-64 64v486c64 0 108-42 191-49l-127-245h-18c-8 0-14-7-13-15 11-64 92-113 191-113s180 49 191 113c1 8-5 15-13 15z m-658 0h-192l96 180 96-180z m384 0l96 180 96-180h-192z" horiz-adv-x="1024" /> -<glyph glyph-name="light-bulb" unicode="" d="M512 768c-176.731 0-320-143.269-320-320 0-104.69 50.278-197.633 128-256.015V0c0-35.346 28.653-64 64-64 0-35.346 28.653-64 64-64h128c35.347 0 64 28.654 64 64 35.347 0 64 28.654 64 64V191.985C781.722 250.36699999999996 832 343.31 832 448 832 624.731 688.731 768 512 768zM640 32c0-17.673-14.326-32-32-32H416c-17.674 0-32 14.327-32 32v32h256V32zM704 278.693c-33.234-33.03-64-42.389-64-124.041V128h-64V256l128 128v64l-64 64-64-64-64 64-64-64-64 64-64-64v-64l128-128v-128h-64v26.652c0 81.652-30.766 91.011-64 124.041C280.177 323.82 256 383.082 256 448c0 141.385 114.615 256 256 256s256-114.615 256-256C768 383.082 743.823 323.82 704 278.693zM512 256L384 384v64l64-64 64 64 64-64 64 64v-64L512 256z" horiz-adv-x="1024" /> -<glyph glyph-name="link" unicode="" d="M768 576h-138c48-32 93-89 107-128h30c65 0 128-64 128-128s-65-128-128-128h-192c-63 0-128 64-128 128 0 23 7 45 18 64h-137c-5-21-8-42-8-64 0-128 127-256 255-256s65 0 193 0 256 128 256 256-128 256-256 256z m-481-384h-30c-65 0-128 64-128 128s65 128 128 128h192c63 0 128-64 128-128 0-23-7-45-18-64h137c5 21 8 42 8 64 0 128-127 256-255 256s-65 0-193 0-256-128-256-256 128-256 256-256h138c-48 32-93 89-107 128z" horiz-adv-x="1024" /> -<glyph glyph-name="link-external" unicode="" d="M640 64H128V574.094L256 576V704H0v-768h768V256H640V64zM384 704l128-128L320 384l128-128 192 192 128-128V704H384z" horiz-adv-x="768" /> -<glyph glyph-name="list-ordered" unicode="" d="M320 256h448v128h-448v-128z m0-256h448v128h-448v-128z m0 640v-128h448v128h-448z m-241-256h78v256h-36l-85-23v-50l43 2v-185z m110-206c0 36-12 78-96 78-33 0-64-6-83-16l1-66c21 10 42 15 67 15s32-11 32-28c0-26-30-58-110-112v-50h192v67l-91-2c49 30 87 66 87 113l1 1z" horiz-adv-x="768" /> -<glyph glyph-name="list-unordered" unicode="" d="M0 256h128v128h-128v-128z m0 256h128v128h-128v-128z m0-512h128v128h-128v-128z m256 256h512v128h-512v-128z m0 256h512v128h-512v-128z m0-512h512v128h-512v-128z" horiz-adv-x="768" /> -<glyph glyph-name="location" unicode="" d="M320 832c-177 0-320-143-320-320s160-416 320-704c160 288 320 527 320 704s-143 320-320 320z m0-448c-71 0-128 57-128 128s57 128 128 128 128-57 128-128-57-128-128-128z" horiz-adv-x="640" /> -<glyph glyph-name="lock" unicode="" d="M704 384c-32 0-64 0-64 0s0 64 0 192-128 256-256 256-256-128-256-256 0-192 0-192-32 0-64 0-64-32-64-64 0-416 0-448 32-64 64-64 608 0 640 0 64 32 64 64 0 416 0 448-32 64-64 64z m-192-128h-384v-64h384v-64h-384v-64h384v-64h-384v-64h384v-64h-448v448h448v-64z m0 128h-256s0 128 0 192 64 128 128 128 128-64 128-128 0-192 0-192z" horiz-adv-x="768" /> -<glyph glyph-name="logo-github" unicode="" d="M552.73 499.865H311.557c-6.205 0-11.25-5.045-11.25-11.297v-117.887c0-6.252 5.045-11.272 11.25-11.272h94.109v-146.542c0 0-21.145-7.057-79.496-7.057-68.914 0-165.156 25.244-165.156 236.795 0 211.642 100.197 239.491 194.307 239.491 81.465 0 116.514-14.304 138.869-21.241 7.01-2.203 13.404 4.831 13.404 11.105L534.543 785.87c0 2.912-1.041 6.417-4.262 8.785C521.186 801.048 465.865 832 326.168 832 165.133 832 0 763.513 0 434.243 0 105.02099999999996 189.051 56 348.381 56c131.883 0 212.021 56.314 212.021 56.314 3.268 1.801 3.6 6.395 3.6 8.479V488.568C563.955 494.773 558.887 499.865 552.73 499.865zM1772.381 803.866h-135.695c-6.252 0-11.271-5.044-11.271-11.296v-262.393h-211.619V792.57c0 6.252-5.068 11.296-11.178 11.296h-135.838c-6.111 0-11.084-5.044-11.084-11.296v-710.473c0-6.299 5.021-11.32 11.084-11.32h135.838c6.203 0 11.178 5.068 11.178 11.32V385.933h211.619l-0.475-303.883c0-6.3 5.021-11.272 11.084-11.272h135.885c6.252 0 11.131 5.068 11.131 11.272l0.473 710.521C1783.607 798.822 1778.539 803.866 1772.381 803.866zM714.949 787.763c-48.357 0-87.574-39.572-87.574-88.403 0-48.855 39.217-88.428 87.574-88.428s87.527 39.572 87.527 88.428C802.477 748.19 763.307 787.763 714.949 787.763zM792.861 559.874c0 6.205-5.02 11.344-11.131 11.344H646.32c-6.348 0-11.746-6.394-11.746-12.67 0 0 0-394.654 0-469.867 0-13.735 8.572-17.903 19.703-17.903 0 0 57.688 0 121.959 0 13.311 0 16.814 6.536 16.814 18.188-0.094 25.197-0.094 123.808-0.094 142.942C792.861 250.09500000000003 792.861 559.874 792.861 559.874zM2297.973 570.152h-134.701c-6.158 0-11.084-5.092-11.084-11.344v-348.31c0 0-34.244-25.197-82.934-25.197-48.547 0-61.525 22.024-61.525 69.719 0 47.553 0 303.835 0 303.835 0 6.252-5.068 11.345-11.131 11.345h-136.643c-6.252 0-11.178-5.093-11.178-11.345 0 0 0-185.521 0-326.807 0-141.284 78.766-175.906 186.99-175.906 88.854 0 160.609 49.115 160.609 49.115s3.363-25.766 5.068-28.844c1.422-3.078 5.447-6.158 9.852-6.158h86.58c6.158 0 11.178 5.069 11.178 11.321l0.379 477.278C2309.15 565.0609999999999 2304.129 570.152 2297.973 570.152zM2666.932 586.1610000000001c-76.539 0-128.592-34.148-128.592-34.148V792.57c0 6.252-5.068 11.296-11.131 11.296h-136.264c-6.109 0-11.131-5.044-11.131-11.296l-0.379-710.521c0-6.3 5.068-11.272 11.225-11.272 0 0 94.773 0 94.869 0 4.215 0 7.389 2.179 9.805 5.968 2.369 3.837 5.73 32.775 5.73 32.775s55.557-52.763 161.035-52.763c123.807 0 194.758 62.804 194.758 281.906C2856.859 557.482 2743.471 586.1610000000001 2666.932 586.1610000000001zM2613.791 185.77499999999998c-46.701 1.421-78.34 22.64-78.34 22.64v225.07c0 0 31.307 19.206 69.672 22.593 48.547 4.31 95.438-10.326 95.438-126.13C2700.322 207.94100000000003 2679.199 183.83399999999995 2613.791 185.77499999999998zM1185.125 188.33299999999997c-5.969 0-21.219-2.368-36.85-2.368-49.92 0-66.971 23.256-66.971 53.331 0 30.218 0 199.85 0 199.85h101.926c6.252 0 11.178 5.044 11.178 11.343v109.48c0.094 6.299-4.926 11.344-11.178 11.344h-101.926l-0.143 134.535c0 5.092-2.699 7.625-8.572 7.625H933.861c-5.352 0-8.336-2.391-8.336-7.578v-139.035c0 0-69.576-16.79-74.266-18.188-4.641-1.326-8.051-5.684-8.051-10.822v-87.408c0-6.252 5.068-11.344 11.178-11.344h71.139c0 0 0-91.34 0-210.222 0-156.109 109.553-171.455 183.439-171.455 33.723 0 74.076 10.988 80.848 13.356 4.074 1.421 6.395 5.637 6.395 10.136l0.047 96.101C1196.254 183.312 1190.998 188.428 1185.125 188.33299999999997z" horiz-adv-x="2856.857" /> -<glyph glyph-name="mail" unicode="" d="M0 640v-640h896V640H0zM768 576L448 312 128 576H768zM64 512l252.031-191.625L64 128V512zM128 64l254 206.25L448 220l65.875 50.125L768 64H128zM832 128L579.625 320.062 832 512V128z" horiz-adv-x="896" /> -<glyph glyph-name="mail-read" unicode="" d="M576 448H256v-64h320V448zM384 576H256v-64h128V576zM768 603.469V704H627.188L448 832 268.812 704H128v-100.531L0 512v-640h896V512L768 603.469zM192 640h512v-244.812L448 184 192 395.188V640zM64 384l252.031-191.625L64 0V384zM128-64l254 206.25L448 92l65.875 50.125L768-64H128zM832 0L579.625 192.062 832 384V0z" horiz-adv-x="896" /> -<glyph glyph-name="mail-reply" unicode="" d="M384 672l-384-288 384-288v192c111 0 329-61 384-280 0 291-196 451-384 472v192z" horiz-adv-x="768" /> -<glyph glyph-name="mark-github" unicode="" d="M512 832C229.25 832 0 602.75 0 320c0-226.25 146.688-418.125 350.156-485.812 25.594-4.688 34.938 11.125 34.938 24.625 0 12.188-0.469 52.562-0.719 95.312C242-76.81200000000001 211.906 14.5 211.906 14.5c-23.312 59.125-56.844 74.875-56.844 74.875-46.531 31.75 3.53 31.125 3.53 31.125 51.406-3.562 78.47-52.75 78.47-52.75 45.688-78.25 119.875-55.625 149-42.5 4.654 33 17.904 55.625 32.5 68.375C304.906 106.56200000000001 185.344 150.5 185.344 346.688c0 55.938 19.969 101.562 52.656 137.406-5.219 13-22.844 65.094 5.062 135.562 0 0 42.938 13.75 140.812-52.5 40.812 11.406 84.594 17.031 128.125 17.219 43.5-0.188 87.312-5.875 128.188-17.281 97.688 66.312 140.688 52.5 140.688 52.5 28-70.531 10.375-122.562 5.125-135.5 32.812-35.844 52.625-81.469 52.625-137.406 0-196.688-119.75-240-233.812-252.688 18.438-15.875 34.75-47 34.75-94.75 0-68.438-0.688-123.625-0.688-140.5 0-13.625 9.312-29.562 35.25-24.562C877.438-98 1024 93.875 1024 320 1024 602.75 794.75 832 512 832z" horiz-adv-x="1024" /> -<glyph glyph-name="markdown" unicode="" d="M950.154 640H73.846C33.127 640 0 606.873 0 566.154v-492.308C0 33.125 33.127 0 73.846 0h876.308c40.721 0 73.846 33.125 73.846 73.846V566.154C1024 606.873 990.875 640 950.154 640zM576 128.125L448 128V320l-96-123.077L256 320v-192H128V512h128l96-128 96 128 128 0.125V128.125zM767.091 96.125L608 320h96V512h128v-192h96L767.091 96.125z" horiz-adv-x="1024" /> -<glyph glyph-name="megaphone" unicode="" d="M832 800c-130 0-124-130-704-128C57.344 672 0 557.375 0 416s57.344-256 128-256c22.781 0 43.188-0.5 64.188-0.875L256-128l192-32 64 96-45.125 203.125C709.375 102.875 733.75 32 832 32c106 0 192 172 192 384C1024 628.031 938 800 832 800zM197 349.062c-39.188 1.469-82.188 2.25-127.562 2.625C66 371.406 64 393.094 64 416c0 88.375 28.688 192 64 192 39.031-0.125 75 0.438 109 1.406C209.656 562.438 192 493.688 192 416 192 392.688 194.062 370.562 197 349.062zM261.312 346.062C258.125 368.312 256 391.625 256 416c0 79.5 18.438 149.5 46.906 196.219 155.156 8.312 251.906 28.469 319.031 50.188C593.625 595.531 576 510.344 576 416c0-40 3.875-78 9.5-114.312C513.344 320.375 412.812 337.406 261.312 346.062zM832 128c-12.125 0-23.688 5.062-34.812 12.125-15.25 67.312-83.438 418.344 117.438 494.188C942.125 581.5 960 503.812 960 416 960 257 902.625 128 832 128z" horiz-adv-x="1024" /> -<glyph glyph-name="mention" unicode="" d="M466.697 732.899C238.66 760.898 31.1 598.735 3.102 370.698c-28-228.038 134.163-435.598 362.2-463.597 71.429-8.756 145.115 0.913 213.325 29.946l-0.016 0.032c24.404 10.357 35.788 38.538 25.431 62.939-10.359 24.403-38.538 35.787-62.94 25.43l-0.001 0.004c-52.472-22.339-109.15-29.799-164.1-23.067-175.413 21.538-300.153 181.2-278.616 356.613 21.538 175.413 181.199 300.154 356.613 278.616 175.412-21.538 300.154-181.199 278.617-356.612-4.309-35.083-21.542-55.725-61.6-55.725-42.5 0-64 45.889-64 81.222V432c0 26.51-21.49 48-48 48-9.699 0-18.72-2.887-26.269-7.833-25.684 20.259-57.437 33.87-94.349 38.402-105.246 12.923-201.045-61.924-213.967-167.17C212.508 238.15200000000004 287.354 142.35400000000004 392.6 129.43200000000002c57.379-7.045 116.216 14.707 157.871 53.13 24.959-28.124 59.866-47.624 100.121-52.567 87.707-10.769 167.537 51.602 178.307 139.309C856.898 497.34 694.734 704.899 466.697 732.899zM511.285 308.30100000000004c-6.462-52.623-54.361-90.047-106.985-83.585-52.623 6.461-90.046 54.36-83.585 106.984 6.461 52.623 54.361 90.046 106.984 83.585C480.322 408.823 517.746 360.924 511.285 308.30100000000004z" horiz-adv-x="832" /> -<glyph glyph-name="microscope" unicode="" d="M617-64c86.312 18.75 151 100 151 192 0 58.438-26.625 110.125-67.875 145.375C702.5 288.625 704 304.125 704 320c0 104.844-49.875 197.875-128 256l64 64v64l64 64L640 832l-64-64h-64L256 512l-128-64v-128l64-64h128l64 128 96 96c55.5-33.406 96-90.438 96-160-106.062 0-192-85.938-192-192H0v-64h192c19.125-14.25 42.062-22.125 64-32v-96H128L0-192h768L640-64H617zM512 128c0 35.375 28.625 64 64 64s64-28.625 64-64c0-35.312-28.625-64-64-64S512 92.68799999999999 512 128z" horiz-adv-x="768" /> -<glyph glyph-name="milestone" unicode="" d="M704 640H0v-256h704l128 128L704 640zM448 448H320V576h128V448zM448 832H320v-128h128V832zM320-192h128V320H320V-192z" horiz-adv-x="832" /> -<glyph glyph-name="mirror" unicode="" d="M320 512L128 320l192-192V256h384v-128l192 192L704 512v-128H320V512zM512 832L0 512v-704l512 256 512-256V512L512 832zM960-64L576 128v64H448v-64L64-64V448l384 256v-256h128V704l384-256V-64z" horiz-adv-x="1024" /> -<glyph glyph-name="mortar-board" unicode="" d="M501 244l-245 76s0-96 0-160 115-96 256-96 256 32 256 96 0 160 0 160l-245-76c-7-2-15-2-23 0h1z m18 409c-4 1-9 1-13 0l-489-152c-21-7-21-36 0-43l111-35v-113c-19-11-32-32-32-55 0-12 3-23 9-32-5-9-9-20-9-32v-165c0-35 128-35 128 0v165c0 12-3 23-9 32 5 9 9 20 9 32 0 24-13 44-32 55v93l313-98c4-1 9-1 13 0l489 152c21 7 21 36 0 43l-488 153z m-6-205c-35 0-64 14-64 32s29 32 64 32 64-14 64-32-29-32-64-32z" horiz-adv-x="1024" /> -<glyph glyph-name="move-down" unicode="" d="M640 512H448V832H192v-320H0l320-384L640 512zM0-192h640V0H0V-192z" horiz-adv-x="640" /> -<glyph glyph-name="move-left" unicode="" d="M0 0h192V640H0V0zM704 448V640L320 320l384-320V192h320V448H704z" horiz-adv-x="1024" /> -<glyph glyph-name="move-right" unicode="" d="M832 640v-640h192V640H832zM320 448H0v-256h320v-192l384 320L320 640V448z" horiz-adv-x="1024" /> -<glyph glyph-name="move-up" unicode="" d="M0 128h192v-320h256V128h192L320 512 0 128zM0 832v-192h640V832H0z" horiz-adv-x="640" /> -<glyph glyph-name="mute" unicode="" d="M128 448H0v-256h128l256-192h64V640h-64L128 448zM864 416l-64 64-96-96-96 96-63-63.5 95-96.5-96-96 64-64 96 96 96-96 64 64-96 96L864 416z" horiz-adv-x="896" /> -<glyph glyph-name="no-newline" unicode="" d="M896 512v-128H768V512L576 320l192-192V256h192c0 0 64 0.375 64 64s0 192 0 192H896zM224 544C100.281 544 0 443.719 0 320c0-123.75 100.281-224 224-224s224 100.25 224 224C448 443.719 347.719 544 224 544zM96 320c0 70.656 57.344 128 128 128 18.75 0 36.406-4.219 52.469-11.531L107.531 267.5C100.219 283.625 96 301.25 96 320zM224 192c-18.75 0-36.406 4.25-52.469 11.5l168.938 168.969C347.781 356.406 352 338.75 352 320 352 249.375 294.656 192 224 192z" horiz-adv-x="1024" /> -<glyph glyph-name="octoface" unicode="" d="M940.812 554.312c8.25 20.219 35.375 101.75-8.562 211.906 0 0-67.375 21.312-219.875-82.906C648.5 700.875 579.875 703.5 512 703.5c-67.906 0-136.438-2.625-200.5-20.25C159.031 787.531 91.719 766.219 91.719 766.219 47.812 656 74.938 574.531 83.188 554.312 31.5 498.438 0 427.125 0 339.656 0 10.437999999999988 213.25-64 510.844-64 808.562-64 1024 10.437999999999988 1024 339.656 1024 427.125 992.5 498.438 940.812 554.312zM512-1c-211.406 0-382.781 9.875-382.781 214.688 0 48.938 24.062 94.595 65.344 132.312 68.75 62.969 185.281 29.688 317.438 29.688 132.25 0 248.625 33.281 317.438-29.625 41.312-37.78 65.438-83.312 65.438-132.312C894.875 8.875 723.375-1 512-1zM351.156 319.562c-42.469 0-76.906-51.062-76.906-114.188s34.438-114.312 76.906-114.312c42.375 0 76.812 51.188 76.812 114.312S393.531 319.562 351.156 319.562zM672.875 319.562C630.5 319.562 596 268.5 596 205.375s34.5-114.312 76.875-114.312 76.812 51.188 76.812 114.312C749.75 268.5 715.312 319.562 672.875 319.562z" horiz-adv-x="1024" /> -<glyph glyph-name="organization" unicode="" d="M768 448h-64H576h-64-64-64-64H192h-64C57.344 448 0 390.656 0 320v-64c0-47.25 25.844-88.062 64-110.25V-64h256v-128h256V-64h256V145.75c38.125 22.188 64 62.938 64 110.25v64C896 390.656 838.625 448 768 448zM256 0H128V256H64v64c0 35.312 28.688 64 64 64h81.719c-11-18.875-17.719-40.562-17.719-64v-128c0-47.25 25.844-88.062 64-110.25V0zM576 128V256h-64v-384H384V256h-64v-128c-35.312 0-64 28.625-64 64V320c0 35.312 28.688 64 64 64h256c35.375 0 64-28.688 64-64v-128C640 156.625 611.375 128 576 128zM832 256h-64v-256H640v81.75c38.125 22.188 64 62.938 64 110.25V320c0 23.438-6.75 45.125-17.75 64H768c35.375 0 64-28.688 64-64V256zM303.688 514.625C338.875 474.125 390.156 448 448 448c57.875 0 109.125 26.125 144.312 66.625C614.125 475.062 655.688 448 704 448c70.625 0 128 57.344 128 128s-57.375 128-128 128c-25.625 0-49.375-7.688-69.375-20.688C614.875 768.438 539.062 832 448 832S281.094 768.438 261.375 683.312C241.344 696.312 217.594 704 192 704c-70.656 0-128-57.344-128-128s57.344-128 128-128C240.312 448 281.844 475.062 303.688 514.625zM704 640c35.375 0 64-28.594 64-64s-28.625-64-64-64c-35.312 0-64 28.594-64 64S668.688 640 704 640zM448 768c70.625 0 128-57.344 128-128s-57.375-128-128-128c-70.656 0-128 57.344-128 128S377.344 768 448 768zM192 512c-35.312 0-64 28.594-64 64s28.688 64 64 64c35.406 0 64-28.594 64-64S227.406 512 192 512z" horiz-adv-x="896" /> -<glyph glyph-name="package" unicode="" d="M480 768L0 640v-576l480-128 480 128V640L480 768zM63.875 111.06600000000003L63.5 544l384.498-102.533 0.001-432.833L63.875 111.06600000000003zM63.5 608l160.254 42.734L640 539.735v-0.135l-160-42.667L63.5 608zM896.125 111.06600000000003L512.001 8.634000000000015l0.001 432.833L640 475.6v-156l128 34.135V509.733L896.5 544 896.125 111.06600000000003zM768 573.733v0.125L351.734 684.862 480 719.066 896.5 608 768 573.733z" horiz-adv-x="1024" /> -<glyph glyph-name="paintcan" unicode="" d="M384 832C171.923 832 0 660.077 0 448v-64c0-35.346 28.654-64 64-64v-320c0-70.692 143.269-128 320-128s320 57.308 320 128V320c35.346 0 64 28.654 64 64v64C768 660.077 596.077 832 384 832zM576 192v-32c0-17.673-14.327-32-32-32s-32 14.327-32 32v32c0 17.673-14.327 32-32 32s-32-14.327-32-32v-160c0-17.673-14.327-32-32-32s-32 14.327-32 32V160c0 17.673-14.327 32-32 32s-32-14.327-32-32v-32c0-35.346-28.654-64-64-64s-64 28.654-64 64v64c-35.346 0-64 28.654-64 64V371.193C186.382 340.108 279.318 320 384 320s197.618 20.108 256 51.193V256C640 220.654 611.346 192 576 192zM384 384c-107.433 0-199.393 26.474-237.372 64 37.979 37.526 129.939 64 237.372 64s199.393-26.474 237.372-64C583.393 410.474 491.433 384 384 384zM384 576c-176.62 0-319.816-57.236-319.996-127.867-0.001 0.001-0.002 0.001-0.003 0.002C64.075 624.804 207.314 768 384 768c176.731 0 320-143.269 320-320C704 518.692 560.731 576 384 576z" horiz-adv-x="768" /> -<glyph glyph-name="pencil" unicode="" d="M704 768L576 640l192-192 128 128L704 768zM0 64l0.688-192.562L192-128l512 512L512 576 0 64zM192-64H64V64h64v-64h64V-64z" horiz-adv-x="896" /> -<glyph glyph-name="person" unicode="" d="M448 640C448 746 362.062 832 256 832S64 746 64 640c0-106.062 85.938-192 192-192S448 533.938 448 640zM256 512c-70.656 0-128 57.344-128 128S185.344 768 256 768c70.625 0 128-57.344 128-128S326.625 512 256 512zM384 448H256 128C57.344 448 0 390.656 0 320v-128c0-70.625 57.344-128 128-128v-256h256V64c70.625 0 128 57.375 128 128V320C512 390.656 454.625 448 384 448zM448 192c0-35.375-28.625-64-64-64V256h-64v-384H192V256h-64v-128c-35.312 0-64 28.625-64 64V320c0 35.312 28.688 64 64 64h256c35.375 0 64-28.688 64-64V192z" horiz-adv-x="512" /> -<glyph glyph-name="pin" unicode="" d="M196 128l64-320 64 320c-20-2-43-3-64-3s-44 1-64 3z m254 299c-33 17-62 59-62 85v64c0 22 12 39 23 52 15 13 24 29 24 45 0 53-61 95-175 95s-175-42-175-95c0-16 9-32 24-45 11-13 23-30 23-52v-64c0-26-29-68-62-85-38-19-70-54-70-88 0-74 101-148 260-148s260 73 260 148c0 33-31 68-70 88z" horiz-adv-x="519.657" /> -<glyph glyph-name="playback-fast-forward" unicode="" d="M0 64l384 256L0 576V64zM768 320L384 576v-256-256L768 320z" horiz-adv-x="768" /> -<glyph glyph-name="playback-pause" unicode="" d="M0 0h192V640H0V0zM320 640v-640h192V640H320z" horiz-adv-x="512" /> -<glyph glyph-name="playback-play" unicode="" d="M0 640l512-320L0 0V640z" horiz-adv-x="512" /> -<glyph glyph-name="playback-rewind" unicode="" d="M384 320l384-256V576L384 320zM0 320l384-256V320 576L0 320z" horiz-adv-x="768" /> -<glyph glyph-name="plug" unicode="" d="M1003.386 627.336l-0.905 0.905c-24.744 24.744-64.861 24.744-89.605 0l-45.707-45.707-90.51 90.51 45.707 45.707c24.744 24.744 24.744 64.861 0 89.605l-0.905 0.905c-24.744 24.744-64.861 24.744-89.605 0l-47.973-47.973C621.76 802.446 537.237 795.66 482.502 740.926l-24.89-24.89c-109.011-109.011-121.948-277.692-38.854-400.892l-4.138-4.138c-62.392-62.392-62.484-163.493-0.275-225.999 12.41-12.469 12.642-33.327 0.121-45.683-12.509-12.343-32.655-12.292-45.101 0.153l-89.427 89.427c-62.637 62.638-164.63 63.747-227.299 1.141-62.542-62.479-62.562-163.829-0.058-226.332l8.763-8.763c24.744-24.744 64.861-24.744 89.605 0l0.905 0.905c24.744 24.744 24.744 64.861 0 89.605l-8.292 8.292c-12.329 12.329-13.085 32.418-1.098 45.081 12.437 13.138 33.174 13.353 45.882 0.645l89.328-89.328c62.92-62.92 165.504-63.814 228.081-0.553 61.793 62.468 61.65 163.161-0.431 225.451-12.55 12.592-12.777 32.866-0.207 45.437l4.151 4.151c123.2-83.095 291.881-70.158 400.892 38.854l24.89 24.89c54.734 54.735 61.52 139.258 20.362 201.382l47.973 47.973C1028.129 562.475 1028.129 602.593 1003.386 627.336zM889.796 333.632c-37.49-37.49-98.274-37.49-135.765 0L527.757 559.906c-37.49 37.49-37.49 98.274 0 135.765 29.556 29.556 73.585 35.804 109.269 18.759l-41.839-41.839c-24.744-24.744-24.744-64.861 0-89.604l0.905-0.905c24.744-24.744 64.861-24.744 89.605 0l45.707 45.707 90.51-90.51-45.707-45.707c-24.744-24.744-24.744-64.861 0-89.605l0.905-0.905c24.744-24.744 64.861-24.744 89.604 0l41.839 41.839C925.6 407.218 919.351 363.188 889.796 333.632z" horiz-adv-x="1024" /> -<glyph glyph-name="plus" unicode="" d="M384 384V640H256v-256H0v-128h256v-256h128V256h256V384H384z" horiz-adv-x="640" /> -<glyph glyph-name="podium" unicode="" d="M320 832c-32 0-64-32-64-64s0-64 0-64h-64l-192-192v-128h192l64-384-128-64v-64h512v64l-128 64 64 384h192v128l-192 192h-256v64s14 0 32 0 32 17 32 32-16 32-32 32 0 0-32 0z m0-832l-53 320h118l-1-320h-64z m-224 512l128 128h32v-64h64v64h224l128-128h-576z" horiz-adv-x="768" /> -<glyph glyph-name="primitive-dot" unicode="" d="M-0.088 320c0 141.5 114.5 256 256 256 141.438 0 256-114.5 256-256s-114.562-256-256-256C114.413 64-0.088 178.5-0.088 320z" horiz-adv-x="511.825" /> -<glyph glyph-name="primitive-square" unicode="" d="M512 64H0V576h512V64z" horiz-adv-x="512" /> -<glyph glyph-name="pulse" unicode="" d="M736 320.062L563.188 486.406 422.406 288 352 729.594 152.438 320.062H0V192h230.406L288 307.188l57.594-345.562L576 288l102.375-96H896V320.062H736z" horiz-adv-x="896" /> -<glyph glyph-name="puzzle" unicode="" d="M755.75 256.85c-13.95 9.96-28.52 16.59-43.47 19.92-8.84 1.69-18.06 2.33-27.57 1.81-8.99-0.5-17.56-1.68-25.69-3.52-6.1-1.69-12.22-3.89-18.35-6.59-18.18-8.02-33.89-18.12-46.79-30.33-12.22-12.9-22.32-28.62-30.34-46.79-2.7-6.12-4.9-12.24-6.59-18.34-1.84-8.14-3.03-16.7-3.52-25.69-0.52-9.51 0.12-18.73 1.81-27.57 3.33-14.95 9.96-29.52 19.92-43.47 3.89-5.44 8.08-10.4 12.56-14.88 20.06-20.03 45.83-30.7 75.42-34.11 8.92-1.02 18.12-1.68 26.53-4.48 5.12-1.7 9.16-4.08 12.08-7.02 6.65-6.6 7.63-16.1 2.5-27.24-3.15-6.84-7.7-13.45-12.96-18.84l-2.79-2.86c-3.93-3.92-6.41-6.4-7.05-7.04-3.13-3.16-6.1-6.15-9.06-9.15l-2.96-2.92c-10.52-10.58-21.09-21.12-31.66-31.65-22.76-22.82-45.57-45.58-68.38-68.36-7.5-7.5-15-15-22.5-22.49-3.46-3.45-7.07-6.38-10.78-8.79-1.8-1.22-3.49-2.24-5.18-3.16-19.6-9.89-41.43-5.92-59.24 11.88-5.4 5.4-10.62 10.62-15.85 15.84-30.25 30.25-60.48 60.52-90.77 90.73-8.59 8.57-17.13 17.08-25.68 25.59-6.12 6.09-12.67 11.85-19.56 17.06-5.72 4.33-11.59 7.56-17.46 9.73-21.16 7.32-41.41 2.01-54.67-13.26-3.81-4.8-7-10.47-9.39-16.94-3.43-9.26-4.6-19.47-5.9-29.36-4.9-37.53-25.8-68.43-55.98-82.65-7.48-3.65-15.49-6.29-23.9-7.78-7.95-1.41-15.95-1.71-23.85-1.04-26.61 1.35-49.48 13.09-68.51 32.57-1.68 1.67-2.1 2.09-2.51 2.51-19.48 19.02-31.22 41.9-32.57 68.5-0.68 7.9-0.37 15.9 1.04 23.85 1.49 8.41 4.13 16.43 7.78 23.9 14.22 30.18 45.13 51.07 82.65 55.97 9.89 1.29 20.1 2.47 29.36 5.9 6.94 2.56 12.96 6.05 17.97 10.23 14.54 13.15 19.59 32.63 12.84 52.34-2.78 7.35-6 13.22-10.33 18.94-5.21 6.88-10.97 13.43-17.06 19.55-8.51 8.55-17.03 17.09-25.55 25.63-26.92 26.98-53.84 53.88-80.75 80.78l-10.03 10.03c-5.22 5.22-10.45 10.45-15.26 15.27-18.39 18.4-22.35 40.22-12.46 59.82 0.92 1.69 1.94 3.37 3.08 5.05 2.49 3.84 5.42 7.45 8.87 10.91 7.49 7.5 14.99 15 22.49 22.5 22.77 22.81 45.54 45.62 68.36 68.38 10.53 10.57 21.06 21.14 31.65 31.66l2.92 2.96c2.99 2.97 5.99 5.93 8.98 8.9 0.8 0.81 3.28 3.29 7.2 7.22l2.86 2.79c5.39 5.26 12 9.8 18.84 12.96 11.14 5.13 20.63 4.15 27.24-2.5 2.94-2.92 5.32-6.96 7.02-12.08 2.79-8.41 3.45-17.61 4.48-26.53 3.41-29.59 14.08-55.35 34.11-75.41 4.49-4.48 9.44-8.67 14.88-12.56 13.95-9.96 28.52-16.59 43.47-19.92 8.84-1.69 18.06-2.33 27.57-1.81 8.99 0.5 17.56 1.68 25.69 3.52 6.1 1.69 12.22 3.89 18.35 6.59 18.18 8.02 33.89 18.12 46.79 30.33 12.22 12.9 22.32 28.62 30.34 46.79 2.7 6.12 4.9 12.24 6.59 18.34 1.84 8.14 3.03 16.7 3.52 25.69 0.52 9.51-0.12 18.73-1.81 27.57-3.33 14.95-9.96 29.52-19.92 43.47-3.89 5.44-8.08 10.4-12.56 14.88-20.06 20.03-45.83 30.7-75.42 34.11-8.92 1.02-18.12 1.68-26.53 4.48-5.12 1.7-9.16 4.08-12.08 7.02-6.65 6.6-7.63 16.1-2.5 27.24 3.15 6.84 7.7 13.45 12.96 18.84l2.79 2.86c3.93 3.92 6.41 6.4 7.05 7.04 3.13 3.16 6.1 6.15 9.06 9.15l2.96 2.92c10.52 10.58 21.09 21.12 31.66 31.65 22.76 22.82 45.57 45.58 68.38 68.35 7.5 7.5 15 15 22.5 22.49 3.46 3.45 7.07 6.38 10.78 8.79 1.8 1.22 3.49 2.24 5.18 3.16 19.6 9.89 41.43 5.92 59.24-11.88 5.4-5.4 10.62-10.62 15.85-15.84 30.25-30.25 60.48-60.52 90.77-90.73 8.59-8.57 17.13-17.08 25.68-25.59 6.12-6.09 12.67-11.85 19.56-17.06 5.72-4.33 11.59-7.56 17.46-9.73 21.16-7.32 41.41-2.01 54.67 13.26 3.81 4.8 7 10.47 9.39 16.94 3.43 9.26 4.6 19.47 5.9 29.36 4.9 37.53 25.8 68.43 55.98 82.65 7.48 3.65 15.49 6.28 23.9 7.78 7.95 1.41 15.95 1.71 23.85 1.04 26.61-1.35 49.48-13.09 68.51-32.57 1.68-1.67 2.1-2.09 2.51-2.51 19.48-19.02 31.22-41.9 32.57-68.5 0.68-7.9 0.37-15.9-1.04-23.85-1.49-8.41-4.13-16.43-7.78-23.9-14.22-30.18-45.13-51.07-82.65-55.97-9.89-1.29-20.1-2.47-29.36-5.9-6.94-2.56-12.96-6.05-17.97-10.23-14.54-13.15-19.59-32.63-12.84-52.34 2.78-7.35 6-13.22 10.33-18.94 5.21-6.88 10.97-13.43 17.06-19.55 8.51-8.55 17.03-17.09 25.55-25.63 30.26-30.33 60.54-60.56 90.78-90.81 5.22-5.22 10.45-10.45 15.26-15.27 18.39-18.4 22.35-40.22 12.46-59.82-0.92-1.69-1.94-3.37-3.08-5.05-2.49-3.84-5.42-7.45-8.87-10.91-7.49-7.5-14.99-15-22.49-22.5-22.77-22.81-45.54-45.62-68.36-68.38-10.53-10.57-21.06-21.14-31.65-31.66l-2.92-2.96c-2.99-2.97-5.99-5.93-8.98-8.9-0.8-0.81-3.28-3.29-7.2-7.22l-2.86-2.79c-5.39-5.26-12-9.8-18.84-12.96-11.14-5.13-20.63-4.15-27.24 2.5-2.94 2.92-5.32 6.96-7.02 12.08-2.79 8.41-3.45 17.61-4.48 26.53-3.41 29.59-14.08 55.35-34.11 75.41C766.15 248.76999999999998 761.19 252.97000000000003 755.75 256.85z" horiz-adv-x="1024" /> -<glyph glyph-name="question" unicode="" d="M448 64h128v128h-128v-128z m64 512c-96 0-192-96-192-192h128c0 32 32 64 64 64s64-32 64-64c0-64-128-64-128-128h128c64 22 128 64 128 160s-96 160-192 160z m0 256c-283 0-512-229-512-512s229-512 512-512 512 229 512 512-229 512-512 512z m0-896c-212 0-384 172-384 384s172 384 384 384 384-172 384-384-172-384-384-384z" horiz-adv-x="1024" /> -<glyph glyph-name="quote" unicode="" d="M0 320v-256h256V320H128c0 0 0 128 128 128V576C256 576 0 576 0 320zM640 448V576c0 0-256 0-256-256v-256h256V320H512C512 320 512 448 640 448z" horiz-adv-x="640" /> -<glyph glyph-name="radio-tower" unicode="" d="M306.838 441.261c15.868 16.306 15.868 42.731 0 59.037-20.521 21.116-30.643 48.417-30.705 76.124 0.062 27.77 10.183 55.039 30.705 76.186 15.868 16.337 15.868 42.764 0 59.069-7.934 8.184-18.272 12.275-28.706 12.275-10.371 0-20.804-4.029-28.738-12.213-36.266-37.297-54.633-86.433-54.57-135.317-0.062-48.792 18.305-97.927 54.57-135.161C265.262 424.955 290.97 424.955 306.838 441.261zM149.093 798.858c-8.121 8.309-18.68 12.463-29.3 12.463-10.558 0-21.179-4.154-29.237-12.463C30.8 737.509 0.751 656.856 0.813 576.422 0.751 496.081 30.8 415.272 90.494 353.985c16.181-16.618 42.356-16.618 58.537 0 16.118 16.587 16.118 43.513 0 60.067-43.7 44.98-65.44 103.456-65.44 162.368s21.74 117.449 65.44 162.368C165.149 755.439 165.149 782.365 149.093 798.858zM513.031 472.153c57.351 0 103.956 46.574 103.956 103.956 0 57.382-46.605 103.955-103.956 103.955-57.381 0-103.956-46.573-103.956-103.955C409.076 518.727 455.65 472.153 513.031 472.153zM933.539 798.233c-16.181 16.618-42.355 16.618-58.475 0-16.181-16.587-16.181-43.513 0-60.068 43.668-44.918 65.409-103.456 65.409-162.368 0-58.85-21.805-117.387-65.473-162.306-16.117-16.618-16.117-43.575 0.062-60.068 8.059-8.309 18.616-12.463 29.237-12.463 10.558 0 21.178 4.154 29.236 12.463 59.726 61.287 89.774 142.096 89.649 222.437C1023.313 656.138 993.264 736.947 933.539 798.233zM513.281 389.127L513.281 389.127c-26.489-0.062-53.04 6.466-77.091 19.429L235.057-127.59000000000003h95.209l54.819 63.973h255.891l53.977-63.973h95.272L589.124 408.431C565.384 395.655 539.395 389.127 513.281 389.127zM512.656 358.483L577.004 128.29999999999995H449.059L512.656 358.483zM385.086 0.3550000000000182l63.974 63.973h127.944l63.974-63.973H385.086zM717.194 710.958c-15.868-16.306-15.868-42.731 0-59.037 20.491-21.116 30.611-48.511 30.674-76.124-0.062-27.77-10.183-55.102-30.674-76.187-15.868-16.336-15.868-42.763 0-59.068 7.871-8.184 18.242-12.213 28.737-12.213 10.309 0 20.741 4.029 28.675 12.213 36.298 37.234 54.665 86.433 54.54 135.255 0.125 48.792-18.181 97.927-54.54 135.161C758.801 727.264 733.062 727.264 717.194 710.958z" horiz-adv-x="1024" /> -<glyph glyph-name="repo" unicode="" d="M320 576h-64v-64h64v64z m0 128h-64v-64h64v64z m384 128c-32 0-608 0-640 0s-64-32-64-64 0-736 0-768 32-64 64-64 128 0 128 0v-128l96 96 96-96v128s288 0 320 0 64 32 64 64 0 736 0 768-32 64-64 64z m0-800c0-16-15-32-32-32s-288 0-288 0v64h-192v-64s-79 0-96 0-32 17-32 32 0 96 0 96h640s0-80 0-96z m0 160h-512v576h513l-1-576z m-384 128h-64v-64h64v64z m0 128h-64v-64h64v64z" horiz-adv-x="768" /> -<glyph glyph-name="repo-clone" unicode="" d="M320 448h-64v-64h64v64z m-128 320h256v64s-352 0-384 0-64-32-64-64 0-736 0-768 32-64 64-64 128 0 128 0v-128l96 96 96-96v128s286 0 320 0 64 32 64 64 0 192 0 192h-576v576z m512-640s0-79 0-96-14-32-32-32-288 0-288 0v64h-192v-64s-80 0-96 0-32 16-32 32 0 96 0 96h640z m-384 448h-64v-64h64v64z m-64-320h64v64h-64v-64z m704 576c-32 0-288 0-320 0s-64-32-64-64 0-352 0-384 32-64 64-64 64 0 64 0v-64l32 32 32-32v64s160 0 192 0 64 32 64 64 0 352 0 384-32 64-64 64z m-256-448s-15 0-32 0-32 15-32 32 0 32 0 32h64v-64z m256 32c0-16-15-32-32-32s-160 0-160 0v64h192s0-16 0-32z m0 96h-256v256h224s32 0 32-32 0-224 0-224z m-640 192h-64v-64h64v64z" horiz-adv-x="1024" /> -<glyph glyph-name="repo-force-push" unicode="" d="M768 768c0 32-32 64-64 64s-608 0-640 0-64-32-64-64 0-768 0-768 0 32 0 0 32-64 64-64 128 0 128 0v-128l128 128v128h-128v-64s-79 0-96 0-32 15-32 32 0 96 0 96h256v64h-128v576h512v-576h-128v-64h128s0-80 0-96-15-32-32-32-96 0-96 0v-64s96 0 128 0 64 32 64 64 0 736 0 768z m-272-320h144l-192 256-192-256h144l-144-192h128v-448h128v448h128l-144 192z" horiz-adv-x="767.896" /> -<glyph glyph-name="repo-forked" unicode="" d="M768 704c0 71-57 128-128 128s-128-57-128-128c0-47 26-89 64-111v-106l-192-212-192 212v106c38 22 64 63 64 111 0 71-57 128-128 128s-128-57-128-128c0-47 26-89 64-111v-156l256-282v-109c-38-22-64-63-64-111 0-71 57-128 128-128s128 57 128 128c0 47-26 89-64 111v109l256 282v156c38 22 64 63 64 111z m-640 63c34 0 62-28 62-62s-28-62-62-62-62 28-62 62 28 62 62 62z m256-891c-34 0-62 28-62 62s28 62 62 62 62-28 62-62-28-62-62-62z m256 891c34 0 62-28 62-62s-28-62-62-62-62 28-62 62 28 62 62 62z" horiz-adv-x="768" /> -<glyph glyph-name="repo-pull" unicode="" d="M1024 512l-192 192v-128h-384v-128h384v-128l192 192z m-320-320h-512v576h512v-128h64s0 96 0 128-32 64-64 64-608 0-640 0-64-32-64-64 0-736 0-768 32-64 64-64 128 0 128 0v-128l96 96 96-96v128s288 0 320 0 64 32 64 64 0 384 0 384h-64v-192z m0-160c0-15-15-32-32-32s-288 0-288 0v64h-192v-64s-79 0-96 0-32 16-32 32 0 96 0 96h640s0-81 0-96z m-384 544h-64v-64h64v64z m0 128h-64v-64h64v64z m0-256h-64v-64h64v64z m-64-192h64v64h-64v-64z" horiz-adv-x="1024" /> -<glyph glyph-name="repo-push" unicode="" d="M448 512l-192-256h128v-448h128v448h128l-192 256z m-192 0h64v64h-64v-64z m64 192h-64v-64h64v64z m384 128c-32 0-608 0-640 0s-64-32-64-64 0-736 0-768 32-64 64-64 128 0 128 0v-128l128 128v128h-128v-64s-79 0-96 0-32 14-32 32 0 96 0 96h256v64h-128v576h513l-1-576h-128v-64h128s0-79 0-96-15-32-32-32-96 0-96 0v-64s96 0 128 0 64 32 64 64 0 736 0 768-32 64-64 64z" horiz-adv-x="768" /> -<glyph glyph-name="rocket" unicode="" d="M716.737 707.944c-71.926-41.686-148.041-96.13-218.436-166.555-45-45.031-81.213-88.78-110.39-129.778L209.538 378.65 0.047 169.00300000000004l186.818-5.815 131.562 131.562c-46.439-96.224-50.536-160.019-50.536-160.019l58.854-58.792c0 0 65.827 6.255 162.737 53.163L355.107-5.119000000000028l5.88-186.881 209.585 209.521 33.086 179.252c41.403 29.02 85.185 65.046 129.716 109.545 70.425 70.455 124.837 146.541 166.555 218.466-45.97 9.351-88.125 28.488-121.397 61.668C745.257 619.819 725.994 661.975 716.737 707.944zM786.161 745.157c5.004-45 19.952-81.274 44.78-105.98 24.769-24.985 60.98-39.902 106.138-44.844C1003.063 727.677 1023.953 832 1023.953 832S919.63 811.142 786.161 745.157z" horiz-adv-x="1024" /> -<glyph glyph-name="rss" unicode="" d="M128 192C57.344 192 0 134.625 0 64s57.344-128 128-128 128 57.375 128 128S198.656 192 128 192zM128 448c0 0-64-2-64-64s64-64 64-64c141.375 0 256-114.625 256-256 0 0 0-64 64-64s64 64 64 64C512 276 340.031 448 128 448zM128 704c0 0-64 0-64-64s64-64 64-64c282.75 0 512-229.25 512-512 0 0 0-64 64-64s64 64 64 64C768 417.406 481.5 704 128 704z" horiz-adv-x="768" /> -<glyph glyph-name="ruby" unicode="" d="M768 704H256L0 448l512-512 512 512L768 704zM128 448l192 192h384l192-192L512 64 128 448zM704 576H512v-448l320 320L704 576z" horiz-adv-x="1024" /> -<glyph glyph-name="screen-full" unicode="" d="M128 64h639.875V576H128V64zM255.938 448h384v-256h-384V448zM64 639.938h191.938v64H0V448h64V639.938zM64 192H0v-255.938h255.938V0H64V192zM639.938 703.938v-64h191.938V448h64V703.938H639.938zM831.875 0H639.938v-63.938h255.938V192h-64V0z" horiz-adv-x="895.875" /> -<glyph glyph-name="screen-normal" unicode="" d="M127.938 640.062H0v-64h191.938V768h-64V640.062zM0-0.06200000000001182h127.938V-128h64V63.93799999999999H0V-0.06200000000001182zM768.062 640.062V768h-64v-191.938H896v64H768.062zM704.062-128h64V-0.06200000000001182H896v64H704.062V-128zM192.062 128H704V512H192.062V128zM320 384h256v-128H320V384z" horiz-adv-x="896" /> -<glyph glyph-name="search" unicode="" d="M960 0L710.875 249.125C746.438 307.188 768 374.844 768 448 768 660.031 596 832 384 832 171.969 832 0 660.031 0 448c0-212 171.969-384 384-384 73.156 0 140.812 21.562 198.875 57L832-128c17.5-17.5 46.5-17.375 64 0l64 64C977.5-46.5 977.5-17.5 960 0zM384 192c-141.375 0-256 114.625-256 256s114.625 256 256 256 256-114.625 256-256S525.375 192 384 192z" horiz-adv-x="973.125" /> -<glyph glyph-name="server" unicode="" d="M704 448h-640c-35 0-64-32-64-64v-128c0-32 32-64 64-64h640c32 0 64 32 64 64v128c0 32-32 64-64 64z m-576-192h-64v128h64v-128z m128 0h-64v128h64v-128z m128 0h-64v128h64v-128z m128 0h-64v128h64v-128z m192-128h-640c-35 0-64-32-64-64v-128c0-32 32-64 64-64h640c32 0 64 32 64 64v128c0 32-32 64-64 64z m-576-192h-64v128h64v-128z m128 0h-64v128h64v-128z m128 0h-64v128h64v-128z m128 0h-64v128h64v-128z m192 832h-640c-35 0-64-32-64-64v-128c0-32 32-64 64-64h640c32 0 64 32 64 64v128c0 32-32 64-64 64z m-576-192h-64v128h64v-128z m128 0h-64v128h64v-128z m128 0h-64v128h64v-128z m128 0h-64v128h64v-128z m192 64h-64v64h64v-64z" horiz-adv-x="768" /> -<glyph glyph-name="settings" unicode="" d="M64-64h128V128H64V-64zM192 704H64v-320h128V704zM512 704H384v-128h128V704zM0 192h256V320H0V192zM384-64h128V320H384V-64zM320 384h256V512H320V384zM832 704H704v-384h128V704zM640 256v-128h256V256H640zM704-64h128V64H704V-64z" horiz-adv-x="896" /> -<glyph glyph-name="sign-in" unicode="" d="M640 256L640 384 896 384 896 512 640 512 640 640 448 496 448 640 192 768 704 768 704 576 768 576 768 832 64 832 64 0 448-192 448 0 768 0 768 320 704 320 704 64 448 64 448 400z" horiz-adv-x="896" /> -<glyph glyph-name="sign-out" unicode="" d="M640 64H384V640L128 768h512v-192h64V832H0v-832l384-192V0h320V320h-64V64zM1024 448L768 640v-128H512v-128h256v-128L1024 448z" horiz-adv-x="1024" /> -<glyph glyph-name="split" unicode="" d="M448 576l-256 256-192-192 311-300c15 81 43 136 133 230l5 6z m128 256l133-133-197-197c-99-99-128-162-128-309v-384h256v384c0 52 19 94 53 128l197 197 133-133v448h-448z" horiz-adv-x="1024" /> -<glyph glyph-name="squirrel" unicode="" d="M768 768c-141.385 0-256-83.75-256-186.875C512 457.25 544 387 512 192c0 288-177 405.783-256 405.783 3.266 32.17-30.955 42.217-30.955 42.217s-14-7.124-19.354-21.583c-17.231 20.053-36.154 17.54-36.154 17.54l-8.491-37.081c0 0-117.045-40.876-118.635-206.292C56 371 141.311 353.898 201.887 364.882c57.157-2.956 42.991-50.648 30.193-63.446C178.083 247.438 128 320 64 320s-64-64 0-64 64-64 192-64c-198-77 0-256 0-256h-64c-64 0-64-64-64-64s256 0 384 0c192 0 320 64 320 222.182 0 54.34-27.699 114.629-64 162.228C697.057 349.433 782.453 427.566 832 384s192-64 192 128C1024 653.385 909.385 768 768 768zM160 448c-17.674 0-32 14.327-32 32 0 17.674 14.326 32 32 32 17.673 0 32-14.326 32-32C192 462.327 177.673 448 160 448z" horiz-adv-x="1024" /> -<glyph glyph-name="star" unicode="" d="M896 448l-313.5 40.781L448 768 313.469 488.781 0 448l230.469-208.875L171-63.93799999999999l277 148.812 277.062-148.812L665.5 239.125 896 448z" horiz-adv-x="896" /> -<glyph glyph-name="steps" unicode="" d="M136 768C60.89 768 0 667.71 0 544c0-68.83 17.02-141.84 34-254.54C47.3 201.16999999999996 79.67 128 136 128s94.08 48.79 94.08 137.97c0 30.37-24.97 78.75-26.08 120.03-2.02 74.46 49.93 104.17 49.93 173C253.93 682.71 211.1 768 136 768zM502.97 512c-75.1 0-117.93-85.29-117.93-209 0-68.83 51.95-98.54 49.93-173-1.109-41.28-26.08-89.66-26.08-120.03 0-89.18 37.75-137.97 94.08-137.97s88.7 73.17 102 161.46c16.98 112.7 34 185.71 34 254.54C638.97 411.71 578.08 512 502.97 512z" horiz-adv-x="640" /> -<glyph glyph-name="stop" unicode="" d="M704 832H320L0 512v-384l320-320h384l320 320V512L704 832zM896 192L640-64H384L128 192V448l256 256h256l256-256V192zM448 256h128V576H448V256zM448 64h128V192H448V64z" horiz-adv-x="1024" /> -<glyph glyph-name="sync" unicode="" d="M655.461 358.531c11.875-81.719-13.062-167.781-76.812-230.594-94.188-92.938-239.5-104.375-346.375-34.562l74.875 73L31.96 204.75 70.367-64l84.031 80.5c150.907-111.25 364.938-100.75 502.063 34.562 79.5 78.438 115.75 182.562 111.25 285.312L655.461 358.531zM189.46 511.938c94.156 92.938 239.438 104.438 346.313 34.562l-75-72.969 275.188-38.406L697.586 704l-83.938-80.688C462.711 734.656 248.742 724.031 111.585 588.75 32.085 510.344-4.133 406.219 0.335 303.5l112.25-22.125C100.71 363.125 125.71 449.094 189.46 511.938z" horiz-adv-x="768.051" /> -<glyph glyph-name="tag" unicode="" d="M384 768H128L0 640v-256l512-512 384 384L384 768zM64 416V608l96 96h192l448-448L512-32 64 416zM448 512L256 320l256-256 192 192L448 512zM352 320l96 96 160-160-96-96L352 320zM320 544c0 53-43 96-96 96s-96-43-96-96 43-96 96-96S320 491 320 544zM224 512c-17.656 0-32 14.344-32 32s14.344 32 32 32 32-14.344 32-32S241.656 512 224 512z" horiz-adv-x="896" /> -<glyph glyph-name="telescope" unicode="" d="M76 409c32 8 229 59 229 59-1-6-2-19-2-19 0-71 49-128 128-128s128 59 128 128c0 11-8 22-19 32l49-3s7 2 31 8c-51-14-108 31-126 99s8 135 60 149c-24-6-31-8-31-8l-168-110c-34-9-55-46-46-80 2-9 7-17 12-23-7-12-12-26-15-40-27 1-51 19-59 46-9 34 11 69 45 78l-245-65c-34-9-54-43-45-77s41-54 73-46z m419-153h-128v-64l-320-320h128l192 128v-128h128v128l192-128h128l-320 320v64z m429 448c-18 68-70 110-122 96-69-18-98-28-186-51-51-14-79-80-61-148s74-115 125-102c87 23 117 33 186 51 51 14 76 85 58 154z m-70-90c-17-5-42 17-51 51s-4 66 13 70 42-17 51-51 4-66-13-70z" horiz-adv-x="929.875" /> -<glyph glyph-name="terminal" unicode="" d="M831 705H63c-35.35 0-64-28.65-64-64v-640c0-35.35 28.65-64 64-64h768c35.35 0 64 28.65 64 64V641C895 676.35 866.35 705 831 705zM127 257l128 128L127 513l64 64 192-192L191 193 127 257zM639 193H383v64h256V193z" horiz-adv-x="896" /> -<glyph glyph-name="three-bars" unicode="" d="M0 640v-128h768v128h-768z m0-384h768v128h-768v-128z m0-256h768v128h-768v-128z" horiz-adv-x="768" /> -<glyph glyph-name="tools" unicode="" d="M286.547 366.984c16.843-16.812 81.716-85.279 81.716-85.279l35.968 37.093-56.373 58.248L456.072 491.98c0 0-48.842 47.623-27.468 28.655 20.438 75.903 1.812 160.589-55.842 220.243C315.608 800.064 234.392 819.47 161.425 799.096l123.653-127.715-32.53-125.309-121.06-33.438L7.898 640.3820000000001c-19.718-75.436-0.969-159.339 56.311-218.556C124.302 359.703 210.83 341.453 286.547 366.984zM698.815 242.769L549.694 95.46100000000001l245.932-254.805c20.062-20.812 46.498-31.188 72.872-31.188 26.25 0 52.624 10.375 72.811 31.188 40.249 41.624 40.249 108.997 0 150.62L698.815 242.769zM1023.681 670.162L867.06 832.001 405.387 354.703l56.373-58.248L185.425 10.839000000000055l-63.154-33.749-89.217-145.559 22.719-23.562 140.839 92.247 32.655 65.312 276.336 285.554 56.404-58.248L1023.681 670.162z" horiz-adv-x="1024" /> -<glyph glyph-name="trashcan" unicode="" d="M704 704H448c0 0 0 24.057 0 32 0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 0-32 0-32H128c-35.346 0-64-28.654-64-64v-64c0-35.346 28.654-64 64-64v-576c0-35.346 28.654-64 64-64h448c35.346 0 64 28.654 64 64V512c35.346 0 64 28.654 64 64v64C768 675.346 739.346 704 704 704zM640-32c0-17.673-14.327-32-32-32H224c-17.673 0-32 14.327-32 32V512h64v-480c0-17.673 14.327-32 32-32s32 14.327 32 32l0.387 480H384v-480c0-17.673 14.327-32 32-32s32 14.327 32 32l0.387 480h64L512 32c0-17.673 14.327-32 32-32s32 14.327 32 32V512h64V-32zM704 592c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h544c8.837 0 16-7.163 16-16V592z" horiz-adv-x="768" /> -<glyph glyph-name="triangle-down" unicode="" d="M0 448l383.75-383.75L767.5 448H0z" horiz-adv-x="767.5" /> -<glyph glyph-name="triangle-left" unicode="" d="M0 320.125l383.75-383.75v767.5L0 320.125z" horiz-adv-x="383.75" /> -<glyph glyph-name="triangle-right" unicode="" d="M0.062 703.75L383.812 320 0.062-63.75V703.75z" horiz-adv-x="383.875" /> -<glyph glyph-name="triangle-up" unicode="" d="M383.75 576L0 192.25h767.5L383.75 576z" horiz-adv-x="767.5" /> -<glyph glyph-name="unfold" unicode="" d="M384 448h128V640h128L448 832 256 640h128V448zM576 576v-64h224L672 384H224L96 512h224v64H0v-63.999L160 352 0 192v-64h320v64H96l128 128h448l128-128H576v-64h320v64L736 352l160 160.001V576H576zM512 256H384v-192H256l192-192 192 192H512V256z" horiz-adv-x="896" /> -<glyph glyph-name="unmute" unicode="" d="M128 448H0v-256h128l256-192h64V640h-64L128 448zM538.51 410.51c-12.496 12.497-32.758 12.497-45.255 0-12.496-12.496-12.496-32.758 0-45.255 24.994-24.993 24.994-65.516 0-90.51-12.496-12.496-12.496-32.758 0-45.255 12.497-12.496 32.759-12.496 45.255 0C588.497 279.47900000000004 588.497 360.523 538.51 410.51zM629.02 501.019c-12.495 12.497-32.758 12.497-45.255 0-12.495-12.496-12.495-32.758 0-45.255 74.981-74.98 74.981-196.548 0-271.528-12.495-12.497-12.495-32.76 0-45.256 12.497-12.496 32.76-12.496 45.255 0C728.994 238.95399999999995 728.994 401.045 629.02 501.019zM719.529 591.529c-12.497 12.497-32.76 12.497-45.255 0-12.496-12.496-12.496-32.758 0-45.255 124.968-124.968 124.968-327.58 0-452.548-12.496-12.497-12.496-32.759 0-45.255 12.495-12.497 32.758-12.497 45.255 0C869.49 198.433 869.49 441.568 719.529 591.529z" horiz-adv-x="896" /> -<glyph glyph-name="versions" unicode="" d="M0 128h128v64H64V448h64v64H0V128zM384 640v-640h512V640H384zM768 128H512V512h256V128zM192 64h128v64h-64V512h64v64H192V64z" horiz-adv-x="896" /> -<glyph glyph-name="x" unicode="" d="M640 512L512 640 320 448 128 640 0 512l192-192L0 128l128-128 192 192 192-192 128 128L448 320 640 512z" horiz-adv-x="640" /> -<glyph glyph-name="zap" unicode="⚡" d="M640 384H384L576 832 0 256h256L64-192 640 384z" horiz-adv-x="640" /> -</font> -</defs> -</svg> diff --git a/public/ng/fonts/octicons.ttf b/public/ng/fonts/octicons.ttf Binary files differdeleted file mode 100755 index 189ca281..00000000 --- a/public/ng/fonts/octicons.ttf +++ /dev/null diff --git a/public/ng/fonts/octicons.woff b/public/ng/fonts/octicons.woff Binary files differdeleted file mode 100755 index 2b770e42..00000000 --- a/public/ng/fonts/octicons.woff +++ /dev/null diff --git a/public/ng/js/gogs.js b/public/ng/js/gogs.js deleted file mode 100644 index f8048162..00000000 --- a/public/ng/js/gogs.js +++ /dev/null @@ -1,970 +0,0 @@ -// @codekit-prepend "lib/jquery-1.11.1.min.js" -// @codekit-prepend "lib/lib.js" -// @codekit-prepend "utils/tabs.js" -// @codekit-prepend "utils/preview.js" -// @codekit-prepend "gogs/issue_label.js" -// @codekit-prepend "lib/jquery.tipsy.js" - -var Gogs = {}; - -(function ($) { - // Extend jQuery ajax, set CSRF token value. - var ajax = $.ajax; - $.extend({ - ajax: function (url, options) { - if (typeof url === 'object') { - options = url; - url = undefined; - } - options = options || {}; - url = options.url; - var csrftoken = $('meta[name=_csrf]').attr('content'); - var headers = options.headers || {}; - var domain = document.domain.replace(/\./ig, '\\.'); - if (!/^(http:|https:).*/.test(url) || eval('/^(http:|https:)\\/\\/(.+\\.)*' + domain + '.*/').test(url)) { - headers = $.extend(headers, {'X-Csrf-Token': csrftoken}); - } - options.headers = headers; - var callback = options.success; - options.success = function (data) { - if (data.once) { - // change all _once value if ajax data.once exist - $('[name=_once]').val(data.once); - } - if (callback) { - callback.apply(this, arguments); - } - }; - return ajax(url, options); - }, - - changeHash: function (hash) { - if (history.pushState) { - history.pushState(null, null, hash); - } - else { - location.hash = hash; - } - }, - - deSelect: function () { - if (window.getSelection) { - window.getSelection().removeAllRanges(); - } else { - document.selection.empty(); - } - } - }); - $.fn.extend({ - toggleHide: function () { - $(this).each(function(n, v) { $(v).addClass("hidden"); }); - }, - toggleShow: function () { - $(this).each(function(n, v) { $(v).removeClass("hidden"); }); - }, - toggleAjax: function (successCallback, errorCallback) { - var url = $(this).data("ajax"); - var method = $(this).data('ajax-method') || 'get'; - var ajaxName = $(this).data('ajax-name'); - var data = {}; - - if (ajaxName.endsWith("preview")) { - data["mode"] = "gfm"; - data["context"] = $(this).data('ajax-context'); - } - - $('[data-ajax-rel=' + ajaxName + ']').each(function () { - var field = $(this).data("ajax-field"); - var t = $(this).data("ajax-val"); - if (t == "val") { - data[field] = $(this).val(); - return true; - } - if (t == "txt") { - data[field] = $(this).text(); - return true; - } - if (t == "html") { - data[field] = $(this).html(); - return true; - } - if (t == "data") { - data[field] = $(this).data("ajax-data"); - return true; - } - return true; - }); - console.log("toggleAjax:", method, url, data); - $.ajax({ - url: url, - method: method.toUpperCase(), - data: data, - error: errorCallback, - success: function (d) { - if (successCallback) { - successCallback(d); - } - } - }) - } - }); -}(jQuery)); - -(function ($) { - // Render markdown. - Gogs.renderMarkdown = function () { - var $md = $('.markdown'); - var $pre = $md.find('pre > code').parent(); - $pre.addClass('prettyprint'); - prettyPrint(); - - // Set anchor. - var headers = {}; - $md.find('h1, h2, h3, h4, h5, h6').each(function () { - var node = $(this); - var val = encodeURIComponent(node.text().toLowerCase().replace(/[^\w\- ]/g, '').replace(/[ ]/g, '-')); - var name = val; - if (headers[val] > 0) { - name = val + '-' + headers[val]; - } - if (headers[val] == undefined) { - headers[val] = 1; - } else { - headers[val] += 1; - } - node = node.wrap('<div id="' + name + '" class="anchor-wrap" ></div>'); - node.append('<a class="anchor" href="#' + name + '"><span class="octicon octicon-link"></span></a>'); - }); - }; - - // Render code view. - Gogs.renderCodeView = function () { - function selectRange($list, $select, $from) { - $list.removeClass('active'); - if ($from) { - var a = parseInt($select.attr('rel').substr(1)); - var b = parseInt($from.attr('rel').substr(1)); - var c; - if (a != b) { - if (a > b) { - c = a; - a = b; - b = c; - } - var classes = []; - for (i = a; i <= b; i++) { - classes.push('.L' + i); - } - $list.filter(classes.join(',')).addClass('active'); - $.changeHash('#L' + a + '-' + 'L' + b); - return - } - } - $select.addClass('active'); - $.changeHash('#' + $select.attr('rel')); - } - - $(document).on('click', '.lines-num span', function (e) { - var $select = $(this); - var $list = $select.parent().siblings('.lines-code').find('ol.linenums > li'); - selectRange($list, $list.filter('[rel=' + $select.attr('rel') + ']'), (e.shiftKey ? $list.filter('.active').eq(0) : null)); - $.deSelect(); - }); - - $('.code-view .lines-code > pre').each(function () { - var $pre = $(this); - var $lineCode = $pre.parent(); - var $lineNums = $lineCode.siblings('.lines-num'); - if ($lineNums.length > 0) { - var nums = $pre.find('ol.linenums > li').length; - for (var i = 1; i <= nums; i++) { - $lineNums.append('<span id="L' + i + '" rel="L' + i + '">' + i + '</span>'); - } - } - }); - - $(window).on('hashchange', function (e) { - var m = window.location.hash.match(/^#(L\d+)\-(L\d+)$/); - var $list = $('.code-view ol.linenums > li'); - var $first; - if (m) { - $first = $list.filter('.' + m[1]); - selectRange($list, $first, $list.filter('.' + m[2])); - $("html, body").scrollTop($first.offset().top - 200); - return; - } - m = window.location.hash.match(/^#(L\d+)$/); - if (m) { - $first = $list.filter('.' + m[1]); - selectRange($list, $first); - $("html, body").scrollTop($first.offset().top - 200); - } - }).trigger('hashchange'); - }; - - // Render diff view. - Gogs.renderDiffView = function () { - function selectRange($list, $select, $from) { - $list.removeClass('active'); - $list.parents('tr').removeClass('end-selected-line'); - $list.parents('tr').find('td').removeClass('selected-line'); - if ($from) { - var expr = new RegExp(/diff-(\w+)([LR]\d+)/); - var selectMatches = $select.attr('rel').match(expr) - var fromMatches = $from.attr('rel').match(expr) - var selectTop = $select.offset().top; - var fromTop = $from.offset().top; - var hash; - - if (selectMatches[2] != fromMatches[2]) { - if ((selectTop > fromTop)) { - $startElem = $from; - $endElem = $select; - hash = fromMatches[1]+fromMatches[2] + '-' + selectMatches[2]; - } else { - $startElem = $select; - $endElem = $from; - hash = selectMatches[1]+selectMatches[2] + '-' + fromMatches[2]; - } - $endElem.parents('tr').next().addClass('end-selected-line'); - var $selectedLines = $startElem.parents('tr').nextUntil('.end-selected-line').andSelf(); - $selectedLines.find('td.lines-num > span').addClass('active') - $selectedLines.find('td').addClass('selected-line'); - $.changeHash('#diff-'+hash); - return - } - } - $select.addClass('active'); - $select.parents('tr').find('td').addClass('selected-line'); - $.changeHash('#' + $select.attr('rel')); - } - - $(document).on('click', '.code-diff .lines-num span', function (e) { - var $select = $(this); - var $list = $select.parent().siblings('.lines-code').parents().find('td.lines-num > span'); - selectRange( - $list, - $list.filter('[rel=' + $select.attr('rel') + ']'), - (e.shiftKey && $list.filter('.active').length ? $list.filter('.active').eq(0) : null) - ); - $.deSelect(); - }); - - $('.code-diff .lines-code > pre').each(function () { - var $pre = $(this); - var $lineCode = $pre.parent(); - var $lineNums = $lineCode.siblings('.lines-num'); - if ($lineNums.length > 0) { - var nums = $pre.find('ol.linenums > li').length; - for (var i = 1; i <= nums; i++) { - $lineNums.append('<span id="L' + i + '" rel="L' + i + '">' + i + '</span>'); - } - } - }); - - $(window).on('hashchange', function (e) { - var m = window.location.hash.match(/^#diff-(\w+)([LR]\d+)\-([LR]\d+)$/); - var $list = $('.code-diff td.lines-num > span'); - var $first; - if (m) { - $first = $list.filter('[rel=diff-' + m[1] + m[2] + ']'); - selectRange($list, $first, $list.filter('[rel=diff-' + m[1] + m[3] + ']')); - $("html, body").scrollTop($first.offset().top - 200); - return; - } - m = window.location.hash.match(/^#diff-(\w+)([LR]\d+)$/); - if (m) { - $first = $list.filter('[rel=diff-' + m[1] + m[2] + ']'); - selectRange($list, $first); - $("html, body").scrollTop($first.offset().top - 200); - } - }).trigger('hashchange'); - }; - - // Search users by keyword. - Gogs.searchUsers = function (val, $target) { - var notEmpty = function (str) { - return str && str.length > 0; - } - $.ajax({ - url: Gogs.AppSubUrl + '/api/v1/users/search?q=' + val, - dataType: "json", - success: function (json) { - if (json.ok && json.data.length) { - var html = ''; - $.each(json.data, function (i, item) { - html += '<li><a><img src="' + item.avatar_url + '"><span class="username">' + item.username + '</span>'; - if (notEmpty(item.full_name)) { - html += ' (' + item.full_name + ')'; - } - html += '</a></li>'; - }); - $target.html(html); - $target.toggleShow(); - } else { - $target.toggleHide(); - } - } - }); - } - - // Search repositories by keyword. - Gogs.searchRepos = function (val, $target, $param) { - $.ajax({ - url: Gogs.AppSubUrl + '/api/v1/repos/search?q=' + val + '&' + $param, - dataType: "json", - success: function (json) { - if (json.ok && json.data.length) { - var html = ''; - $.each(json.data, function (i, item) { - html += '<li><a><span class="octicon octicon-repo"></span> ' + item.full_name + '</a></li>'; - }); - $target.html(html); - $target.toggleShow(); - } else { - $target.toggleHide(); - } - } - }); - } - - // Copy util. - Gogs.bindCopy = function (selector) { - if ($(selector).hasClass('js-copy-bind')) { - return; - } - - if ( document.documentElement.classList.contains("is-copy-enabled") ) { - - $(selector).click(function(event) { - var $this = $(this); - - var cfrom = $this.attr('data-copy-from'); - $(cfrom).select(); - document.execCommand('copy'); - getSelection().removeAllRanges(); - - $this.tipsy("hide").attr('original-title', $this.data('after-title')); - setTimeout(function () { - $this.tipsy("show"); - }, 200); - setTimeout(function () { - $this.tipsy('hide').attr('original-title', $this.data('original-title')); - }, 2000); - - this.blur(); - return; - }); - - $(selector).addClass("js-copy-bind"); - - } else { - - $(selector).zclip({ - path: Gogs.AppSubUrl + "/js/ZeroClipboard.swf", - copy: function () { - var t = $(this).data("copy-val"); - var to = $($(this).data("copy-from")); - var str = ""; - if (t == "txt") { - str = to.text(); - } - if (t == 'val') { - str = to.val(); - } - if (t == 'html') { - str = to.html(); - } - return str; - }, - afterCopy: function () { - var $this = $(this); - $this.tipsy("hide").attr('original-title', $this.data('after-title')); - setTimeout(function () { - $this.tipsy("show"); - }, 200); - setTimeout(function () { - $this.tipsy('hide').attr('original-title', $this.data('original-title')); - }, 2000); - } - }).addClass("js-copy-bind"); - } - } -})(jQuery); - -function initCore() { - Gogs.renderMarkdown(); - - if ($('.code-diff').length == 0) { - Gogs.renderCodeView(); - } else { - Gogs.renderDiffView(); - } - - // Switch list. - $('.js-tab-nav').click(function (e) { - if (!$(this).hasClass('js-tab-nav-show')) { - $(this).parent().find('.js-tab-nav-show').each(function () { - $(this).removeClass('js-tab-nav-show'); - $($(this).data('tab-target')).hide(); - }); - $(this).addClass('js-tab-nav-show'); - $($(this).data('tab-target')).show(); - } - e.preventDefault(); - }); - - // Popup. - $(document).on('click', '.popup-modal-dismiss', function (e) { - e.preventDefault(); - $.magnificPopup.close(); - }); - - // Plugins. - $('.collapse').hide(); - $('.tipsy-tooltip').tipsy({ - fade: true - }); -} - -function initUserSetting() { - // Confirmation of change username in user profile page. - var $username = $('#username'); - var $profile_form = $('#user-profile-form'); - $('#change-username-btn').magnificPopup({ - modal: true, - callbacks: { - open: function () { - if (($username.data('uname') == $username.val())) { - $.magnificPopup.close(); - $profile_form.submit(); - } - } - } - }).click(function () { - if (($username.data('uname') != $username.val())) { - e.preventDefault(); - return true; - } - }); - $('#change-username-submit').click(function () { - $.magnificPopup.close(); - $profile_form.submit(); - }); - - // Show panels. - $('.show-form-btn').click(function () { - $($(this).data('target-form')).removeClass("hide"); - }); - - // Confirmation of delete account. - $('#delete-account-btn').magnificPopup({ - modal: true - }).click(function (e) { - e.preventDefault(); - return true; - }); - $('#delete-account-submit').click(function () { - $.magnificPopup.close(); - $('#delete-account-form').submit(); - }); -} - -function initRepoCreate() { - // Owner switch menu click. - $('#repo-create-owner-list').on('click', 'li', function () { - if (!$(this).hasClass('checked')) { - var uid = $(this).data('uid'); - $('#repo-owner-id').val(uid); - $('#repo-owner-avatar').attr("src", $(this).find('img').attr("src")); - $('#repo-owner-name').text($(this).text().trim()); - - $(this).parent().find('.checked').removeClass('checked'); - $(this).addClass('checked'); - console.log("set repo owner to uid :", uid, $(this).text().trim()); - } - }); - - $('#auth-button').click(function (e) { - $('#repo-migrate-auth').slideToggle('fast'); - e.preventDefault(); - }) - console.log('initRepoCreate'); -} - -function initRepo() { - // Clone link switch button. - $('#repo-clone-ssh').click(function () { - $(this).removeClass('btn-gray').addClass('btn-blue'); - $('#repo-clone-https').removeClass('btn-blue').addClass('btn-gray'); - $('#repo-clone-url').val($(this).data('link')); - $('.clone-url').text($(this).data('link')) - }); - $('#repo-clone-https').click(function () { - $(this).removeClass('btn-gray').addClass('btn-blue'); - $('#repo-clone-ssh').removeClass('btn-blue').addClass('btn-gray'); - $('#repo-clone-url').val($(this).data('link')); - $('.clone-url').text($(this).data('link')) - }); - - // Copy URL. - var $clone_btn = $('#repo-clone-copy'); - $clone_btn.hover(function () { - Gogs.bindCopy($(this)); - }) - $clone_btn.tipsy({ - fade: true - }); - - // Markdown preview. - $('.markdown-preview').click(function() { - var $this = $(this); - $this.toggleAjax(function (resp) { - $($this.data("preview")).html(resp); - }, function () { - $($this.data("preview")).html("no content"); - }) - }); -} - -// when user changes hook type, hide/show proper divs -function initHookTypeChange() { - // web hook type change - $('select#hook-type').on("change", function () { - hookTypes = ['Gogs', 'Slack']; - - var curHook = $(this).val(); - hookTypes.forEach(function (hookType) { - if (curHook === hookType) { - $('div#' + hookType.toLowerCase()).toggleShow(); - } - else { - $('div#' + hookType.toLowerCase()).toggleHide(); - } - }); - }); -} - -function initRepoRelease() { - $('#release-new-target-branch-list li').click(function() { - if (!$(this).hasClass('checked')) { - $('#repo-branch-current').text($(this).text()); - $('#tag-target').val($(this).text()); - - $(this).parent().find('.checked').removeClass('checked'); - $(this).addClass('checked'); - } - }) -} - -function initRepoSetting() { - // Options. - // Confirmation of changing repository name. - var $reponame = $('#repo_name'); - var $setting_form = $('#repo-setting-form'); - $('#change-reponame-btn').magnificPopup({ - modal: true, - callbacks: { - open: function () { - if (($reponame.data('repo-name') == $reponame.val())) { - $.magnificPopup.close(); - $setting_form.submit(); - } - } - } - }).click(function () { - if (($reponame.data('repo-name') != $reponame.val())) { - e.preventDefault(); - return true; - } - }); - $('#change-reponame-submit').click(function () { - $.magnificPopup.close(); - $setting_form.submit(); - }); - - initHookTypeChange(); - - // Transfer repository. - $('#transfer-repo-btn').magnificPopup({ - modal: true - }); - $('#transfer-repo-submit').click(function () { - $.magnificPopup.close(); - $('#transfer-repo-form').submit(); - }); - - // Delete repository. - $('#delete-repo-btn').magnificPopup({ - modal: true - }); - $('#delete-repo-submit').click(function () { - $.magnificPopup.close(); - $('#delete-repo-form').submit(); - }); - - // Collaboration. - $('#repo-collab-list hr:last-child').remove(); - var $ul = $('#repo-collaborator').next().next().find('ul'); - $('#repo-collaborator').on('keyup', function () { - var $this = $(this); - if (!$this.val()) { - $ul.toggleHide(); - return; - } - Gogs.searchUsers($this.val(), $ul); - }).on('focus', function () { - if (!$(this).val()) { - $ul.toggleHide(); - } else { - $ul.toggleShow(); - } - }).next().next().find('ul').on("click", 'li', function () { - $('#repo-collaborator').val($(this).find('.username').text()); - $ul.toggleHide(); - }); -} - -function initOrgSetting() { - // Options. - // Confirmation of changing organization name. - var $orgname = $('#orgname'); - var $setting_form = $('#org-setting-form'); - $('#change-orgname-btn').magnificPopup({ - modal: true, - callbacks: { - open: function () { - if (($orgname.data('orgname') == $orgname.val())) { - $.magnificPopup.close(); - $setting_form.submit(); - } - } - } - }).click(function () { - if (($orgname.data('orgname') != $orgname.val())) { - e.preventDefault(); - return true; - } - }); - $('#change-orgname-submit').click(function () { - $.magnificPopup.close(); - $setting_form.submit(); - }); - - // Confirmation of delete organization. - $('#delete-org-btn').magnificPopup({ - modal: true - }).click(function (e) { - e.preventDefault(); - return true; - }); - $('#delete-org-submit').click(function () { - $.magnificPopup.close(); - $('#delete-org-form').submit(); - }); - - initHookTypeChange(); -} - -function initInvite() { - // Invitation. - var $ul = $('#org-member-invite-list'); - $('#org-member-invite').on('keyup', function () { - var $this = $(this); - if (!$this.val()) { - $ul.toggleHide(); - return; - } - Gogs.searchUsers($this.val(), $ul); - }).on('focus', function () { - if (!$(this).val()) { - $ul.toggleHide(); - } else { - $ul.toggleShow(); - } - }).next().next().find('ul').on("click", 'li', function () { - $('#org-member-invite').val($(this).find('.username').text()); - $ul.toggleHide(); - }); -} - -function initOrgTeamCreate() { - // Delete team. - $('#org-team-delete').magnificPopup({ - modal: true - }).click(function (e) { - e.preventDefault(); - return true; - }); - $('#delete-team-submit').click(function () { - $.magnificPopup.close(); - var $form = $('#team-create-form'); - $form.attr('action', $form.data('delete-url')); - }); -} - -function initTeamMembersList() { - // Add team member. - var $ul = $('#org-team-members-list'); - $('#org-team-members-add').on('keyup', function () { - var $this = $(this); - if (!$this.val()) { - $ul.toggleHide(); - return; - } - Gogs.searchUsers($this.val(), $ul); - }).on('focus', function () { - if (!$(this).val()) { - $ul.toggleHide(); - } else { - $ul.toggleShow(); - } - }).next().next().find('ul').on("click", 'li', function () { - $('#org-team-members-add').val($(this).find('.username').text()); - $ul.toggleHide(); - }); -} - -function initTeamRepositoriesList() { - // Add team repository. - var $ul = $('#org-team-repositories-list'); - $('#org-team-repositories-add').on('keyup', function () { - var $this = $(this); - if (!$this.val()) { - $ul.toggleHide(); - return; - } - Gogs.searchRepos($this.val(), $ul, 'uid=' + $this.data('uid')); - }).on('focus', function () { - if (!$(this).val()) { - $ul.toggleHide(); - } else { - $ul.toggleShow(); - } - }).next().next().find('ul').on("click", 'li', function () { - $('#org-team-repositories-add').val($(this).text()); - $ul.toggleHide(); - }); -} - -function initAdmin() { - // Create account. - $('#login-type').on("change", function () { - var v = $(this).val(); - if (v.indexOf("0-") + 1) { - $('.auth-name').toggleHide(); - $(".pwd").find("input").attr("required", "required") - .end().toggleShow(); - } else { - $(".pwd").find("input").removeAttr("required") - .end().toggleHide(); - $('.auth-name').toggleShow(); - } - }); - - // Delete account. - $('#delete-account-btn').magnificPopup({ - modal: true - }).click(function (e) { - e.preventDefault(); - return true; - }); - $('#delete-account-submit').click(function () { - $.magnificPopup.close(); - var $form = $('#user-profile-form'); - $form.attr('action', $form.data('delete-url')); - }); - - // Create authorization. Keep list in sync with models/login.go. - var all_auths = ['none', 'plain', 'ldap', 'dldap', 'smtp', 'pam']; - $('#auth-type').on("change", function () { - var v = $(this).val(); - if (v >= all_auths.length) return; - - // Hide all through their class names. - $.each(all_auths, function(i, type) { - $('.' + type).toggleHide(); - }); - - // Show the selected one. - var selected = all_auths[v]; - $('.' + selected).toggleShow(); - }); - - // Delete authorization. - $('#delete-auth-btn').magnificPopup({ - modal: true - }).click(function (e) { - e.preventDefault(); - return true; - }); - $('#delete-auth-submit').click(function () { - $.magnificPopup.close(); - var $form = $('#auth-setting-form'); - $form.attr('action', $form.data('delete-url')); - }); -} - -function initInstall() { - // Change database type. - (function () { - var mysql_default = '127.0.0.1:3306'; - var postgres_default = '127.0.0.1:5432'; - - $('#install-database').on("change", function () { - var val = $(this).val(); - if (val != "SQLite3") { - $('.server-sql').show(); - $('.sqlite-setting').addClass("hide"); - if (val == "PostgreSQL") { - $('.pgsql-setting').removeClass("hide"); - - // Change the host value to the Postgres default, but only - // if the user hasn't already changed it from the MySQL - // default. - if ($('#database-host').val() == mysql_default) { - $('#database-host').val(postgres_default); - } - } else if (val == 'MySQL') { - $('.pgsql-setting').addClass("hide"); - if ($('#database-host').val() == postgres_default) { - $('#database-host').val(mysql_default); - } - } else { - $('.pgsql-setting').addClass("hide"); - } - } else { - $('.server-sql').hide(); - $('.pgsql-setting').hide(); - $('.sqlite-setting').removeClass("hide"); - } - }); - }()); -} - -function initProfile() { - // Avatar. - $('#profile-avatar').tipsy({ - fade: true - }); -} - -function initTimeSwitch() { - // Time switch. - $(".time-since[title]").on("click", function () { - var $this = $(this); - - var title = $this.attr("title"); - var text = $this.text(); - - $this.text(title); - $this.attr("title", text); - }); -} - -function initDiff() { - $('.diff-detail-box>a').click(function () { - $($(this).data('target')).slideToggle(100); - }) - - var $counter = $('.diff-counter'); - if ($counter.length < 1) { - return; - } - $counter.each(function (i, item) { - var $item = $(item); - var addLine = $item.find('span[data-line].add').data("line"); - var delLine = $item.find('span[data-line].del').data("line"); - var addPercent = parseFloat(addLine) / (parseFloat(addLine) + parseFloat(delLine)) * 100; - $item.find(".bar .add").css("width", addPercent + "%"); - }); -} - -$(document).ready(function () { - Gogs.AppSubUrl = $('head').data('suburl') || ''; - initCore(); - if ($('#user-profile-setting').length) { - initUserSetting(); - } - if ($('#repo-create-form').length || $('#repo-migrate-form').length) { - initRepoCreate(); - } - if ($('#repo-header').length) { - initTimeSwitch(); - initRepo(); - } - if ($('#release').length) { - initRepoRelease(); - } - if ($('#repo-setting').length) { - initRepoSetting(); - } - if ($('#org-setting').length) { - initOrgSetting(); - } - if ($('#invite-box').length) { - initInvite(); - } - if ($('#team-create-form').length) { - initOrgTeamCreate(); - } - if ($('#team-members-list').length) { - initTeamMembersList(); - } - if ($('#team-repositories-list').length) { - initTeamRepositoriesList(); - } - if ($('#admin-setting').length) { - initAdmin(); - } - if ($('#install-form').length) { - initInstall(); - } - if ($('#user-profile-page').length) { - initProfile(); - } - if ($('#diff-page').length) { - initTimeSwitch(); - initDiff(); - } - - $('#dashboard-sidebar-menu').tabs(); - $('#pull-issue-preview').markdown_preview(".issue-add-comment"); - - homepage(); - emojify.setConfig({ - img_dir: Gogs.AppSubUrl + '/img/emoji' - }); - emojify.run(); - - // Fix language drop-down menu height. - var l = $('#footer-lang li').length; - $('#footer-lang .drop-down').css({ - "top": (-31 * l) + "px", - "height": (31 * l - 3) + "px" - }); -}); - -function homepage() { - // Change method to GET if no username input. - $('#promo-form').submit(function (e) { - if ($('#username').val() === "") { - e.preventDefault(); - window.location.href = Gogs.AppSubUrl + '/user/login'; - return true - } - }); - // Redirect to register page. - $('#register-button').click(function (e) { - if ($('#username').val() === "") { - e.preventDefault(); - window.location.href = Gogs.AppSubUrl + '/user/sign_up'; - return true - } - $('#promo-form').attr('action', Gogs.AppSubUrl + '/user/sign_up'); - }); -} - -String.prototype.endsWith = function (suffix) { - return this.indexOf(suffix, this.length - suffix.length) !== -1; -}; diff --git a/public/ng/js/gogs/issue_label.js b/public/ng/js/gogs/issue_label.js deleted file mode 100644 index 31aebdd4..00000000 --- a/public/ng/js/gogs/issue_label.js +++ /dev/null @@ -1,97 +0,0 @@ -// when dom ready, init issue label events -$(document).ready(function(){ - var labelColors = ["#e11d21","#EB6420","#FBCA04","#009800", - "#006B75","#207DE5","#0052cc","#53E917", - "#F6C6C7","#FAD8C7","#FEF2C0","#BFE5BF", - "#BFDADC","#C7DEF8","#BFD4F2","#D4C5F9"]; - - var colorDropHtml = ""; - labelColors.forEach(function(item){ - colorDropHtml += '<a class="color" style="background-color:'+item+'" data-color-hex="'+item+'"></a>'; - }); - - - - // render label color input - var color_input = $('#label-add-color'); - var color_label = $('#label-add-form .label-color-drop label'); - color_label.css("background-color",labelColors[0]); - color_input.val(labelColors[0]); - - - // render label color drop - function render_color_drop($e){ - $e.find('.label-color-drop .drop-down') - .html(colorDropHtml) - .on("click","a",function(){ - var $form = $(this).parents(".form"); - var color_label = $form.find(".label-color-drop label"); - var color_input = $form.find("input[name=color]"); - var color = $(this).data("color-hex"); - color_label.css("background-color",color); - color_input.val(color); - }); - } - - - // color drop visible - var form = $('#label-add-form'); - render_color_drop(form); - $('#label-new-btn').on("click",function(){ - if(form.hasClass("hidden")){ - form.removeClass("hidden"); - } - }); - $('#label-cancel-btn').on("click",function(){ - form.addClass("hidden"); - }); - - // label edit form render - var $edit_form_tpl = $("#label-edit-form-tpl"); - $("#label-list").on("click","a.edit",function(){ - var $label_item = $(this).parents(".item"); - var $clone_form = $edit_form_tpl.clone(); - render_color_drop($clone_form); - - // add default color - var color_label = $clone_form.find(".label-color-drop label"); - var color_input = $clone_form.find("input[name=color]"); - var color = $label_item.find(".label").data("color-hex"); - color_label.css("background-color",color); - color_input.val(color); - - // add label name - $clone_form.find("input[name=name]").val($label_item.find(".label").text()); - - // add label id - $clone_form.find("input[name=id]").val($label_item.attr("id").replace("label-","")); - - // append form - $label_item.after($clone_form.show()); - - // add cancel button event - $('#label-edit-cancel-btn').on("click",function(){ - $clone_form.remove(); - }); - - }); - - // label delete form render - var $del_form_tpl = $('#label-delete-form-tpl'); - $("#label-list").on("click","a.delete",function(){ - var $label_item = $(this).parents(".item"); - var $clone_form = $del_form_tpl.clone(); - - // add label id - $clone_form.find("input[name=id]").val($label_item.attr("id").replace("label-","")); - - // append form - $label_item.after($clone_form.show()); - - // add cancel button event - $('#label-del-cancel-btn').on("click",function(){ - $clone_form.remove(); - }); - }); - -}); diff --git a/public/ng/js/lib/jquery-1.11.1.min.js b/public/ng/js/lib/jquery-1.11.1.min.js deleted file mode 100644 index ab28a247..00000000 --- a/public/ng/js/lib/jquery-1.11.1.min.js +++ /dev/null @@ -1,4 +0,0 @@ -/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ -!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="<div class='a'></div><div class='a i'></div>",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="<select msallowclip=''><option selected=''></option></select>",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=lb(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=mb(b);function pb(){}pb.prototype=d.filters=d.pseudos,d.setFilters=new pb,g=fb.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=S.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=T.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(R," ")}),h=h.slice(c.length));for(g in d.filter)!(e=X[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fb.error(a):z(a,i).slice(0)};function qb(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h; -if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?m.queue(this[0],a):void 0===b?this:this.each(function(){var c=m.queue(this,a,b);m._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&m.dequeue(this,a)})},dequeue:function(a){return this.each(function(){m.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=m.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=m._data(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var S=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=["Top","Right","Bottom","Left"],U=function(a,b){return a=b||a,"none"===m.css(a,"display")||!m.contains(a.ownerDocument,a)},V=m.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===m.type(c)){e=!0;for(h in c)m.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,m.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(m(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav></:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="<textarea>x</textarea>",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="<input type='radio' checked='checked' name='t'/>",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function ab(){return!0}function bb(){return!1}function cb(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},fix:function(a){if(a[m.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=Z.test(e)?this.mouseHooks:Y.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new m.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=f.srcElement||y),3===a.target.nodeType&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,g.filter?g.filter(a,f):a},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,d,e,f=b.button,g=b.fromElement;return null==a.pageX&&null!=b.clientX&&(d=a.target.ownerDocument||y,e=d.documentElement,c=d.body,a.pageX=b.clientX+(e&&e.scrollLeft||c&&c.scrollLeft||0)-(e&&e.clientLeft||c&&c.clientLeft||0),a.pageY=b.clientY+(e&&e.scrollTop||c&&c.scrollTop||0)-(e&&e.clientTop||c&&c.clientTop||0)),!a.relatedTarget&&g&&(a.relatedTarget=g===a.target?b.toElement:g),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==cb()&&this.focus)try{return this.focus(),!1}catch(a){}},delegateType:"focusin"},blur:{trigger:function(){return this===cb()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return m.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(a){return m.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c,d){var e=m.extend(new m.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?m.event.trigger(e,null,b):m.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},m.removeEvent=y.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]===K&&(a[d]=null),a.detachEvent(d,c))},m.Event=function(a,b){return this instanceof m.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?ab:bb):this.type=a,b&&m.extend(this,b),this.timeStamp=a&&a.timeStamp||m.now(),void(this[m.expando]=!0)):new m.Event(a,b)},m.Event.prototype={isDefaultPrevented:bb,isPropagationStopped:bb,isImmediatePropagationStopped:bb,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=ab,a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=ab,a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=ab,a&&a.stopImmediatePropagation&&a.stopImmediatePropagation(),this.stopPropagation()}},m.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){m.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!m.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),k.submitBubbles||(m.event.special.submit={setup:function(){return m.nodeName(this,"form")?!1:void m.event.add(this,"click._submit keypress._submit",function(a){var b=a.target,c=m.nodeName(b,"input")||m.nodeName(b,"button")?b.form:void 0;c&&!m._data(c,"submitBubbles")&&(m.event.add(c,"submit._submit",function(a){a._submit_bubble=!0}),m._data(c,"submitBubbles",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&m.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){return m.nodeName(this,"form")?!1:void m.event.remove(this,"._submit")}}),k.changeBubbles||(m.event.special.change={setup:function(){return X.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(m.event.add(this,"propertychange._change",function(a){"checked"===a.originalEvent.propertyName&&(this._just_changed=!0)}),m.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),m.event.simulate("change",this,a,!0)})),!1):void m.event.add(this,"beforeactivate._change",function(a){var b=a.target;X.test(b.nodeName)&&!m._data(b,"changeBubbles")&&(m.event.add(b,"change._change",function(a){!this.parentNode||a.isSimulated||a.isTrigger||m.event.simulate("change",this.parentNode,a,!0)}),m._data(b,"changeBubbles",!0))})},handle:function(a){var b=a.target;return this!==b||a.isSimulated||a.isTrigger||"radio"!==b.type&&"checkbox"!==b.type?a.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return m.event.remove(this,"._change"),!X.test(this.nodeName)}}),k.focusinBubbles||m.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){m.event.simulate(b,a.target,m.event.fix(a),!0)};m.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=m._data(d,b);e||d.addEventListener(a,c,!0),m._data(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=m._data(d,b)-1;e?m._data(d,b,e):(d.removeEventListener(a,c,!0),m._removeData(d,b))}}}),m.fn.extend({on:function(a,b,c,d,e){var f,g;if("object"==typeof a){"string"!=typeof b&&(c=c||b,b=void 0);for(f in a)this.on(f,b,c,a[f],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&("string"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=bb;else if(!d)return this;return 1===e&&(g=d,d=function(a){return m().off(a),g.apply(this,arguments)},d.guid=g.guid||(g.guid=m.guid++)),this.each(function(){m.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,m(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||"function"==typeof b)&&(c=b,b=void 0),c===!1&&(c=bb),this.each(function(){m.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){m.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?m.event.trigger(a,b,c,!0):void 0}});function db(a){var b=eb.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}var eb="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",fb=/ jQuery\d+="(?:null|\d+)"/g,gb=new RegExp("<(?:"+eb+")[\\s/>]","i"),hb=/^\s+/,ib=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,jb=/<([\w:]+)/,kb=/<tbody/i,lb=/<|&#?\w+;/,mb=/<(?:script|style|link)/i,nb=/checked\s*(?:[^=]|=\s*.checked.)/i,ob=/^$|\/(?:java|ecma)script/i,pb=/^true\/(.*)/,qb=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,rb={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:k.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},sb=db(y),tb=sb.appendChild(y.createElement("div"));rb.optgroup=rb.option,rb.tbody=rb.tfoot=rb.colgroup=rb.caption=rb.thead,rb.th=rb.td;function ub(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ub(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function vb(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wb(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xb(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function yb(a){var b=pb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function zb(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Ab(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Bb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xb(b).text=a.text,yb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!gb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(tb.innerHTML=a.outerHTML,tb.removeChild(f=tb.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ub(f),h=ub(a),g=0;null!=(e=h[g]);++g)d[g]&&Bb(e,d[g]);if(b)if(c)for(h=h||ub(a),d=d||ub(f),g=0;null!=(e=h[g]);g++)Ab(e,d[g]);else Ab(a,f);return d=ub(f,"script"),d.length>0&&zb(d,!i&&ub(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=db(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(lb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(jb.exec(f)||["",""])[1].toLowerCase(),l=rb[i]||rb._default,h.innerHTML=l[1]+f.replace(ib,"<$1></$2>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&hb.test(f)&&p.push(b.createTextNode(hb.exec(f)[0])),!k.tbody){f="table"!==i||kb.test(f)?"<table>"!==l[1]||kb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ub(p,"input"),vb),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ub(o.appendChild(f),"script"),g&&zb(h),c)){e=0;while(f=h[e++])ob.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ub(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&zb(ub(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ub(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fb,""):void 0;if(!("string"!=typeof a||mb.test(a)||!k.htmlSerialize&&gb.test(a)||!k.leadingWhitespace&&hb.test(a)||rb[(jb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ib,"<$1></$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ub(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ub(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&nb.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ub(i,"script"),xb),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ub(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,yb),j=0;f>j;j++)d=g[j],ob.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qb,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Cb,Db={};function Eb(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fb(a){var b=y,c=Db[a];return c||(c=Eb(a,b),"none"!==c&&c||(Cb=(Cb||m("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=(Cb[0].contentWindow||Cb[0].contentDocument).document,b.write(),b.close(),c=Eb(a,b),Cb.detach()),Db[a]=c),c}!function(){var a;k.shrinkWrapBlocks=function(){if(null!=a)return a;a=!1;var b,c,d;return c=y.getElementsByTagName("body")[0],c&&c.style?(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",b.appendChild(y.createElement("div")).style.width="5px",a=3!==b.offsetWidth),c.removeChild(d),a):void 0}}();var Gb=/^margin/,Hb=new RegExp("^("+S+")(?!px)[a-z%]+$","i"),Ib,Jb,Kb=/^(top|right|bottom|left)$/;a.getComputedStyle?(Ib=function(a){return a.ownerDocument.defaultView.getComputedStyle(a,null)},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c.getPropertyValue(b)||c[b]:void 0,c&&(""!==g||m.contains(a.ownerDocument,a)||(g=m.style(a,b)),Hb.test(g)&&Gb.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0===g?g:g+""}):y.documentElement.currentStyle&&(Ib=function(a){return a.currentStyle},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Hb.test(g)&&!Kb.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function Lb(a,b){return{get:function(){var c=a();if(null!=c)return c?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d,e,f,g,h;if(b=y.createElement("div"),b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=d&&d.style){c.cssText="float:left;opacity:.5",k.opacity="0.5"===c.opacity,k.cssFloat=!!c.cssFloat,b.style.backgroundClip="content-box",b.cloneNode(!0).style.backgroundClip="",k.clearCloneStyle="content-box"===b.style.backgroundClip,k.boxSizing=""===c.boxSizing||""===c.MozBoxSizing||""===c.WebkitBoxSizing,m.extend(k,{reliableHiddenOffsets:function(){return null==g&&i(),g},boxSizingReliable:function(){return null==f&&i(),f},pixelPosition:function(){return null==e&&i(),e},reliableMarginRight:function(){return null==h&&i(),h}});function i(){var b,c,d,i;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),b.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",e=f=!1,h=!0,a.getComputedStyle&&(e="1%"!==(a.getComputedStyle(b,null)||{}).top,f="4px"===(a.getComputedStyle(b,null)||{width:"4px"}).width,i=b.appendChild(y.createElement("div")),i.style.cssText=b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",i.style.marginRight=i.style.width="0",b.style.width="1px",h=!parseFloat((a.getComputedStyle(i,null)||{}).marginRight)),b.innerHTML="<table><tr><td></td><td>t</td></tr></table>",i=b.getElementsByTagName("td"),i[0].style.cssText="margin:0;border:0;padding:0;display:none",g=0===i[0].offsetHeight,g&&(i[0].style.display="",i[1].style.display="none",g=0===i[0].offsetHeight),c.removeChild(d))}}}(),m.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var Mb=/alpha\([^)]*\)/i,Nb=/opacity\s*=\s*([^)]*)/,Ob=/^(none|table(?!-c[ea]).+)/,Pb=new RegExp("^("+S+")(.*)$","i"),Qb=new RegExp("^([+-])=("+S+")","i"),Rb={position:"absolute",visibility:"hidden",display:"block"},Sb={letterSpacing:"0",fontWeight:"400"},Tb=["Webkit","O","Moz","ms"];function Ub(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=Tb.length;while(e--)if(b=Tb[e]+c,b in a)return b;return d}function Vb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=m._data(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&U(d)&&(f[g]=m._data(d,"olddisplay",Fb(d.nodeName)))):(e=U(d),(c&&"none"!==c||!e)&&m._data(d,"olddisplay",e?c:m.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}function Wb(a,b,c){var d=Pb.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Xb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=m.css(a,c+T[f],!0,e)),d?("content"===c&&(g-=m.css(a,"padding"+T[f],!0,e)),"margin"!==c&&(g-=m.css(a,"border"+T[f]+"Width",!0,e))):(g+=m.css(a,"padding"+T[f],!0,e),"padding"!==c&&(g+=m.css(a,"border"+T[f]+"Width",!0,e)));return g}function Yb(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=Ib(a),g=k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=Jb(a,b,f),(0>e||null==e)&&(e=a.style[b]),Hb.test(e))return e;d=g&&(k.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Xb(a,b,c||(g?"border":"content"),d,f)+"px"}m.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Jb(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":k.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=m.camelCase(b),i=a.style;if(b=m.cssProps[h]||(m.cssProps[h]=Ub(i,h)),g=m.cssHooks[b]||m.cssHooks[h],void 0===c)return g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b];if(f=typeof c,"string"===f&&(e=Qb.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(m.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||m.cssNumber[h]||(c+="px"),k.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),!(g&&"set"in g&&void 0===(c=g.set(a,c,d)))))try{i[b]=c}catch(j){}}},css:function(a,b,c,d){var e,f,g,h=m.camelCase(b);return b=m.cssProps[h]||(m.cssProps[h]=Ub(a.style,h)),g=m.cssHooks[b]||m.cssHooks[h],g&&"get"in g&&(f=g.get(a,!0,c)),void 0===f&&(f=Jb(a,b,d)),"normal"===f&&b in Sb&&(f=Sb[b]),""===c||c?(e=parseFloat(f),c===!0||m.isNumeric(e)?e||0:f):f}}),m.each(["height","width"],function(a,b){m.cssHooks[b]={get:function(a,c,d){return c?Ob.test(m.css(a,"display"))&&0===a.offsetWidth?m.swap(a,Rb,function(){return Yb(a,b,d)}):Yb(a,b,d):void 0},set:function(a,c,d){var e=d&&Ib(a);return Wb(a,c,d?Xb(a,b,d,k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,e),e):0)}}}),k.opacity||(m.cssHooks.opacity={get:function(a,b){return Nb.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=m.isNumeric(b)?"alpha(opacity="+100*b+")":"",f=d&&d.filter||c.filter||"";c.zoom=1,(b>=1||""===b)&&""===m.trim(f.replace(Mb,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=Mb.test(f)?f.replace(Mb,e):f+" "+e)}}),m.cssHooks.marginRight=Lb(k.reliableMarginRight,function(a,b){return b?m.swap(a,{display:"inline-block"},Jb,[a,"marginRight"]):void 0}),m.each({margin:"",padding:"",border:"Width"},function(a,b){m.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+T[d]+b]=f[d]||f[d-2]||f[0];return e}},Gb.test(a)||(m.cssHooks[a+b].set=Wb)}),m.fn.extend({css:function(a,b){return V(this,function(a,b,c){var d,e,f={},g=0;if(m.isArray(b)){for(d=Ib(a),e=b.length;e>g;g++)f[b[g]]=m.css(a,b[g],!1,d);return f}return void 0!==c?m.style(a,b,c):m.css(a,b)},a,b,arguments.length>1)},show:function(){return Vb(this,!0)},hide:function(){return Vb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){U(this)?m(this).show():m(this).hide()})}});function Zb(a,b,c,d,e){return new Zb.prototype.init(a,b,c,d,e)}m.Tween=Zb,Zb.prototype={constructor:Zb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(m.cssNumber[c]?"":"px") -},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this):Zb.propHooks._default.get(this)},run:function(a){var b,c=Zb.propHooks[this.prop];return this.pos=b=this.options.duration?m.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Zb.propHooks._default.set(this),this}},Zb.prototype.init.prototype=Zb.prototype,Zb.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=m.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){m.fx.step[a.prop]?m.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[m.cssProps[a.prop]]||m.cssHooks[a.prop])?m.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Zb.propHooks.scrollTop=Zb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},m.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},m.fx=Zb.prototype.init,m.fx.step={};var $b,_b,ac=/^(?:toggle|show|hide)$/,bc=new RegExp("^(?:([+-])=|)("+S+")([a-z%]*)$","i"),cc=/queueHooks$/,dc=[ic],ec={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=bc.exec(b),f=e&&e[3]||(m.cssNumber[a]?"":"px"),g=(m.cssNumber[a]||"px"!==f&&+d)&&bc.exec(m.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,m.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function fc(){return setTimeout(function(){$b=void 0}),$b=m.now()}function gc(a,b){var c,d={height:a},e=0;for(b=b?1:0;4>e;e+=2-b)c=T[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function hc(a,b,c){for(var d,e=(ec[b]||[]).concat(ec["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function ic(a,b,c){var d,e,f,g,h,i,j,l,n=this,o={},p=a.style,q=a.nodeType&&U(a),r=m._data(a,"fxshow");c.queue||(h=m._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,n.always(function(){n.always(function(){h.unqueued--,m.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[p.overflow,p.overflowX,p.overflowY],j=m.css(a,"display"),l="none"===j?m._data(a,"olddisplay")||Fb(a.nodeName):j,"inline"===l&&"none"===m.css(a,"float")&&(k.inlineBlockNeedsLayout&&"inline"!==Fb(a.nodeName)?p.zoom=1:p.display="inline-block")),c.overflow&&(p.overflow="hidden",k.shrinkWrapBlocks()||n.always(function(){p.overflow=c.overflow[0],p.overflowX=c.overflow[1],p.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],ac.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(q?"hide":"show")){if("show"!==e||!r||void 0===r[d])continue;q=!0}o[d]=r&&r[d]||m.style(a,d)}else j=void 0;if(m.isEmptyObject(o))"inline"===("none"===j?Fb(a.nodeName):j)&&(p.display=j);else{r?"hidden"in r&&(q=r.hidden):r=m._data(a,"fxshow",{}),f&&(r.hidden=!q),q?m(a).show():n.done(function(){m(a).hide()}),n.done(function(){var b;m._removeData(a,"fxshow");for(b in o)m.style(a,b,o[b])});for(d in o)g=hc(q?r[d]:0,d,n),d in r||(r[d]=g.start,q&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function jc(a,b){var c,d,e,f,g;for(c in a)if(d=m.camelCase(c),e=b[d],f=a[c],m.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=m.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function kc(a,b,c){var d,e,f=0,g=dc.length,h=m.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=$b||fc(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:m.extend({},b),opts:m.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:$b||fc(),duration:c.duration,tweens:[],createTween:function(b,c){var d=m.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(jc(k,j.opts.specialEasing);g>f;f++)if(d=dc[f].call(j,a,k,j.opts))return d;return m.map(k,hc,j),m.isFunction(j.opts.start)&&j.opts.start.call(a,j),m.fx.timer(m.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}m.Animation=m.extend(kc,{tweener:function(a,b){m.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],ec[c]=ec[c]||[],ec[c].unshift(b)},prefilter:function(a,b){b?dc.unshift(a):dc.push(a)}}),m.speed=function(a,b,c){var d=a&&"object"==typeof a?m.extend({},a):{complete:c||!c&&b||m.isFunction(a)&&a,duration:a,easing:c&&b||b&&!m.isFunction(b)&&b};return d.duration=m.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in m.fx.speeds?m.fx.speeds[d.duration]:m.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){m.isFunction(d.old)&&d.old.call(this),d.queue&&m.dequeue(this,d.queue)},d},m.fn.extend({fadeTo:function(a,b,c,d){return this.filter(U).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=m.isEmptyObject(a),f=m.speed(b,c,d),g=function(){var b=kc(this,m.extend({},a),f);(e||m._data(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=m.timers,g=m._data(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&cc.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&m.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=m._data(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=m.timers,g=d?d.length:0;for(c.finish=!0,m.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),m.each(["toggle","show","hide"],function(a,b){var c=m.fn[b];m.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(gc(b,!0),a,d,e)}}),m.each({slideDown:gc("show"),slideUp:gc("hide"),slideToggle:gc("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){m.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),m.timers=[],m.fx.tick=function(){var a,b=m.timers,c=0;for($b=m.now();c<b.length;c++)a=b[c],a()||b[c]!==a||b.splice(c--,1);b.length||m.fx.stop(),$b=void 0},m.fx.timer=function(a){m.timers.push(a),a()?m.fx.start():m.timers.pop()},m.fx.interval=13,m.fx.start=function(){_b||(_b=setInterval(m.fx.tick,m.fx.interval))},m.fx.stop=function(){clearInterval(_b),_b=null},m.fx.speeds={slow:600,fast:200,_default:400},m.fn.delay=function(a,b){return a=m.fx?m.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},function(){var a,b,c,d,e;b=y.createElement("div"),b.setAttribute("className","t"),b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=y.createElement("select"),e=c.appendChild(y.createElement("option")),a=b.getElementsByTagName("input")[0],d.style.cssText="top:1px",k.getSetAttribute="t"!==b.className,k.style=/top/.test(d.getAttribute("style")),k.hrefNormalized="/a"===d.getAttribute("href"),k.checkOn=!!a.value,k.optSelected=e.selected,k.enctype=!!y.createElement("form").enctype,c.disabled=!0,k.optDisabled=!e.disabled,a=y.createElement("input"),a.setAttribute("value",""),k.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),k.radioValue="t"===a.value}();var lc=/\r/g;m.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=m.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,m(this).val()):a,null==e?e="":"number"==typeof e?e+="":m.isArray(e)&&(e=m.map(e,function(a){return null==a?"":a+""})),b=m.valHooks[this.type]||m.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=m.valHooks[e.type]||m.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(lc,""):null==c?"":c)}}}),m.extend({valHooks:{option:{get:function(a){var b=m.find.attr(a,"value");return null!=b?b:m.trim(m.text(a))}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(k.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&m.nodeName(c.parentNode,"optgroup"))){if(b=m(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=m.makeArray(b),g=e.length;while(g--)if(d=e[g],m.inArray(m.valHooks.option.get(d),f)>=0)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),m.each(["radio","checkbox"],function(){m.valHooks[this]={set:function(a,b){return m.isArray(b)?a.checked=m.inArray(m(a).val(),b)>=0:void 0}},k.checkOn||(m.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var mc,nc,oc=m.expr.attrHandle,pc=/^(?:checked|selected)$/i,qc=k.getSetAttribute,rc=k.input;m.fn.extend({attr:function(a,b){return V(this,m.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){m.removeAttr(this,a)})}}),m.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===K?m.prop(a,b,c):(1===f&&m.isXMLDoc(a)||(b=b.toLowerCase(),d=m.attrHooks[b]||(m.expr.match.bool.test(b)?nc:mc)),void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=m.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void m.removeAttr(a,b))},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=m.propFix[c]||c,m.expr.match.bool.test(c)?rc&&qc||!pc.test(c)?a[d]=!1:a[m.camelCase("default-"+c)]=a[d]=!1:m.attr(a,c,""),a.removeAttribute(qc?c:d)},attrHooks:{type:{set:function(a,b){if(!k.radioValue&&"radio"===b&&m.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),nc={set:function(a,b,c){return b===!1?m.removeAttr(a,c):rc&&qc||!pc.test(c)?a.setAttribute(!qc&&m.propFix[c]||c,c):a[m.camelCase("default-"+c)]=a[c]=!0,c}},m.each(m.expr.match.bool.source.match(/\w+/g),function(a,b){var c=oc[b]||m.find.attr;oc[b]=rc&&qc||!pc.test(b)?function(a,b,d){var e,f;return d||(f=oc[b],oc[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,oc[b]=f),e}:function(a,b,c){return c?void 0:a[m.camelCase("default-"+b)]?b.toLowerCase():null}}),rc&&qc||(m.attrHooks.value={set:function(a,b,c){return m.nodeName(a,"input")?void(a.defaultValue=b):mc&&mc.set(a,b,c)}}),qc||(mc={set:function(a,b,c){var d=a.getAttributeNode(c);return d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+="","value"===c||b===a.getAttribute(c)?b:void 0}},oc.id=oc.name=oc.coords=function(a,b,c){var d;return c?void 0:(d=a.getAttributeNode(b))&&""!==d.value?d.value:null},m.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);return c&&c.specified?c.value:void 0},set:mc.set},m.attrHooks.contenteditable={set:function(a,b,c){mc.set(a,""===b?!1:b,c)}},m.each(["width","height"],function(a,b){m.attrHooks[b]={set:function(a,c){return""===c?(a.setAttribute(b,"auto"),c):void 0}}})),k.style||(m.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+""}});var sc=/^(?:input|select|textarea|button|object)$/i,tc=/^(?:a|area)$/i;m.fn.extend({prop:function(a,b){return V(this,m.prop,a,b,arguments.length>1)},removeProp:function(a){return a=m.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),m.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!m.isXMLDoc(a),f&&(b=m.propFix[b]||b,e=m.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=m.find.attr(a,"tabindex");return b?parseInt(b,10):sc.test(a.nodeName)||tc.test(a.nodeName)&&a.href?0:-1}}}}),k.hrefNormalized||m.each(["href","src"],function(a,b){m.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),k.optSelected||(m.propHooks.selected={get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}}),m.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){m.propFix[this.toLowerCase()]=this}),k.enctype||(m.propFix.enctype="encoding");var uc=/[\t\r\n\f]/g;m.fn.extend({addClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j="string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).addClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(uc," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=m.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j=0===arguments.length||"string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).removeClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(uc," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?m.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(m.isFunction(a)?function(c){m(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=m(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===K||"boolean"===c)&&(this.className&&m._data(this,"__className__",this.className),this.className=this.className||a===!1?"":m._data(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(uc," ").indexOf(b)>=0)return!0;return!1}}),m.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){m.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),m.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var vc=m.now(),wc=/\?/,xc=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;m.parseJSON=function(b){if(a.JSON&&a.JSON.parse)return a.JSON.parse(b+"");var c,d=null,e=m.trim(b+"");return e&&!m.trim(e.replace(xc,function(a,b,e,f){return c&&b&&(d=0),0===d?a:(c=e||b,d+=!f-!e,"")}))?Function("return "+e)():m.error("Invalid JSON: "+b)},m.parseXML=function(b){var c,d;if(!b||"string"!=typeof b)return null;try{a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b))}catch(e){c=void 0}return c&&c.documentElement&&!c.getElementsByTagName("parsererror").length||m.error("Invalid XML: "+b),c};var yc,zc,Ac=/#.*$/,Bc=/([?&])_=[^&]*/,Cc=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Dc=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Ec=/^(?:GET|HEAD)$/,Fc=/^\/\//,Gc=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Hc={},Ic={},Jc="*/".concat("*");try{zc=location.href}catch(Kc){zc=y.createElement("a"),zc.href="",zc=zc.href}yc=Gc.exec(zc.toLowerCase())||[];function Lc(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(E)||[];if(m.isFunction(c))while(d=f[e++])"+"===d.charAt(0)?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Mc(a,b,c,d){var e={},f=a===Ic;function g(h){var i;return e[h]=!0,m.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Nc(a,b){var c,d,e=m.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&&((e[d]?a:c||(c={}))[d]=b[d]);return c&&m.extend(!0,a,c),a}function Oc(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===e&&(e=a.mimeType||b.getResponseHeader("Content-Type"));if(e)for(g in h)if(h[g]&&h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+" "+i[0]]){f=g;break}d||(d=g)}f=f||d}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function Pc(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}m.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:zc,type:"GET",isLocal:Dc.test(yc[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Jc,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":m.parseJSON,"text xml":m.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Nc(Nc(a,m.ajaxSettings),b):Nc(m.ajaxSettings,a)},ajaxPrefilter:Lc(Hc),ajaxTransport:Lc(Ic),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=m.ajaxSetup({},b),l=k.context||k,n=k.context&&(l.nodeType||l.jquery)?m(l):m.event,o=m.Deferred(),p=m.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!j){j={};while(b=Cc.exec(f))j[b[1].toLowerCase()]=b[2]}b=j[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?f:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return i&&i.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||zc)+"").replace(Ac,"").replace(Fc,yc[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=m.trim(k.dataType||"*").toLowerCase().match(E)||[""],null==k.crossDomain&&(c=Gc.exec(k.url.toLowerCase()),k.crossDomain=!(!c||c[1]===yc[1]&&c[2]===yc[2]&&(c[3]||("http:"===c[1]?"80":"443"))===(yc[3]||("http:"===yc[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=m.param(k.data,k.traditional)),Mc(Hc,k,b,v),2===t)return v;h=k.global,h&&0===m.active++&&m.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!Ec.test(k.type),e=k.url,k.hasContent||(k.data&&(e=k.url+=(wc.test(e)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=Bc.test(e)?e.replace(Bc,"$1_="+vc++):e+(wc.test(e)?"&":"?")+"_="+vc++)),k.ifModified&&(m.lastModified[e]&&v.setRequestHeader("If-Modified-Since",m.lastModified[e]),m.etag[e]&&v.setRequestHeader("If-None-Match",m.etag[e])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+Jc+"; q=0.01":""):k.accepts["*"]);for(d in k.headers)v.setRequestHeader(d,k.headers[d]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(d in{success:1,error:1,complete:1})v[d](k[d]);if(i=Mc(Ic,k,b,v)){v.readyState=1,h&&n.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,i.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,c,d){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),i=void 0,f=d||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,c&&(u=Oc(k,v,c)),u=Pc(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(m.lastModified[e]=w),w=v.getResponseHeader("etag"),w&&(m.etag[e]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,h&&n.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),h&&(n.trigger("ajaxComplete",[v,k]),--m.active||m.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return m.get(a,b,c,"json")},getScript:function(a,b){return m.get(a,void 0,b,"script")}}),m.each(["get","post"],function(a,b){m[b]=function(a,c,d,e){return m.isFunction(c)&&(e=e||d,d=c,c=void 0),m.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),m.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){m.fn[b]=function(a){return this.on(b,a)}}),m._evalUrl=function(a){return m.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},m.fn.extend({wrapAll:function(a){if(m.isFunction(a))return this.each(function(b){m(this).wrapAll(a.call(this,b))});if(this[0]){var b=m(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return this.each(m.isFunction(a)?function(b){m(this).wrapInner(a.call(this,b))}:function(){var b=m(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=m.isFunction(a);return this.each(function(c){m(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){m.nodeName(this,"body")||m(this).replaceWith(this.childNodes)}).end()}}),m.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0||!k.reliableHiddenOffsets()&&"none"===(a.style&&a.style.display||m.css(a,"display"))},m.expr.filters.visible=function(a){return!m.expr.filters.hidden(a)};var Qc=/%20/g,Rc=/\[\]$/,Sc=/\r?\n/g,Tc=/^(?:submit|button|image|reset|file)$/i,Uc=/^(?:input|select|textarea|keygen)/i;function Vc(a,b,c,d){var e;if(m.isArray(b))m.each(b,function(b,e){c||Rc.test(a)?d(a,e):Vc(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==m.type(b))d(a,b);else for(e in b)Vc(a+"["+e+"]",b[e],c,d)}m.param=function(a,b){var c,d=[],e=function(a,b){b=m.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=m.ajaxSettings&&m.ajaxSettings.traditional),m.isArray(a)||a.jquery&&!m.isPlainObject(a))m.each(a,function(){e(this.name,this.value)});else for(c in a)Vc(c,a[c],b,e);return d.join("&").replace(Qc,"+")},m.fn.extend({serialize:function(){return m.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=m.prop(this,"elements");return a?m.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!m(this).is(":disabled")&&Uc.test(this.nodeName)&&!Tc.test(a)&&(this.checked||!W.test(a))}).map(function(a,b){var c=m(this).val();return null==c?null:m.isArray(c)?m.map(c,function(a){return{name:b.name,value:a.replace(Sc,"\r\n")}}):{name:b.name,value:c.replace(Sc,"\r\n")}}).get()}}),m.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&Zc()||$c()}:Zc;var Wc=0,Xc={},Yc=m.ajaxSettings.xhr();a.ActiveXObject&&m(a).on("unload",function(){for(var a in Xc)Xc[a](void 0,!0)}),k.cors=!!Yc&&"withCredentials"in Yc,Yc=k.ajax=!!Yc,Yc&&m.ajaxTransport(function(a){if(!a.crossDomain||k.cors){var b;return{send:function(c,d){var e,f=a.xhr(),g=++Wc;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)void 0!==c[e]&&f.setRequestHeader(e,c[e]+"");f.send(a.hasContent&&a.data||null),b=function(c,e){var h,i,j;if(b&&(e||4===f.readyState))if(delete Xc[g],b=void 0,f.onreadystatechange=m.noop,e)4!==f.readyState&&f.abort();else{j={},h=f.status,"string"==typeof f.responseText&&(j.text=f.responseText);try{i=f.statusText}catch(k){i=""}h||!a.isLocal||a.crossDomain?1223===h&&(h=204):h=j.text?200:404}j&&d(h,i,j,f.getAllResponseHeaders())},a.async?4===f.readyState?setTimeout(b):f.onreadystatechange=Xc[g]=b:b()},abort:function(){b&&b(void 0,!0)}}}});function Zc(){try{return new a.XMLHttpRequest}catch(b){}}function $c(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}m.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return m.globalEval(a),a}}}),m.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),m.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=y.head||m("head")[0]||y.documentElement;return{send:function(d,e){b=y.createElement("script"),b.async=!0,a.scriptCharset&&(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&&(b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,c||e(200,"success"))},c.insertBefore(b,c.firstChild)},abort:function(){b&&b.onload(void 0,!0)}}}});var _c=[],ad=/(=)\?(?=&|$)|\?\?/;m.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=_c.pop()||m.expando+"_"+vc++;return this[a]=!0,a}}),m.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(ad.test(b.url)?"url":"string"==typeof b.data&&!(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&ad.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=m.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(ad,"$1"+e):b.jsonp!==!1&&(b.url+=(wc.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||m.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,_c.push(e)),g&&m.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),m.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||y;var d=u.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=m.buildFragment([a],b,e),e&&e.length&&m(e).remove(),m.merge([],d.childNodes))};var bd=m.fn.load;m.fn.load=function(a,b,c){if("string"!=typeof a&&bd)return bd.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>=0&&(d=m.trim(a.slice(h,a.length)),a=a.slice(0,h)),m.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(f="POST"),g.length>0&&m.ajax({url:a,type:f,dataType:"html",data:b}).done(function(a){e=arguments,g.html(d?m("<div>").append(m.parseHTML(a)).find(d):a)}).complete(c&&function(a,b){g.each(c,e||[a.responseText,b,a])}),this},m.expr.filters.animated=function(a){return m.grep(m.timers,function(b){return a===b.elem}).length};var cd=a.document.documentElement;function dd(a){return m.isWindow(a)?a:9===a.nodeType?a.defaultView||a.parentWindow:!1}m.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=m.css(a,"position"),l=m(a),n={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=m.css(a,"top"),i=m.css(a,"left"),j=("absolute"===k||"fixed"===k)&&m.inArray("auto",[f,i])>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),m.isFunction(b)&&(b=b.call(a,c,h)),null!=b.top&&(n.top=b.top-h.top+g),null!=b.left&&(n.left=b.left-h.left+e),"using"in b?b.using.call(a,n):l.css(n)}},m.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){m.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&&e.ownerDocument;if(f)return b=f.documentElement,m.contains(b,e)?(typeof e.getBoundingClientRect!==K&&(d=e.getBoundingClientRect()),c=dd(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===m.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),m.nodeName(a[0],"html")||(c=a.offset()),c.top+=m.css(a[0],"borderTopWidth",!0),c.left+=m.css(a[0],"borderLeftWidth",!0)),{top:b.top-c.top-m.css(d,"marginTop",!0),left:b.left-c.left-m.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||cd;while(a&&!m.nodeName(a,"html")&&"static"===m.css(a,"position"))a=a.offsetParent;return a||cd})}}),m.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c=/Y/.test(b);m.fn[a]=function(d){return V(this,function(a,d,e){var f=dd(a);return void 0===e?f?b in f?f[b]:f.document.documentElement[d]:a[d]:void(f?f.scrollTo(c?m(f).scrollLeft():e,c?e:m(f).scrollTop()):a[d]=e)},a,d,arguments.length,null)}}),m.each(["top","left"],function(a,b){m.cssHooks[b]=Lb(k.pixelPosition,function(a,c){return c?(c=Jb(a,b),Hb.test(c)?m(a).position()[b]+"px":c):void 0})}),m.each({Height:"height",Width:"width"},function(a,b){m.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){m.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return V(this,function(b,c,d){var e;return m.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?m.css(b,c,g):m.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),m.fn.size=function(){return this.length},m.fn.andSelf=m.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return m});var ed=a.jQuery,fd=a.$;return m.noConflict=function(b){return a.$===m&&(a.$=fd),b&&a.jQuery===m&&(a.jQuery=ed),m},typeof b===K&&(a.jQuery=a.$=m),m}); diff --git a/public/ng/js/lib/jquery.magnific-popup.min.js b/public/ng/js/lib/jquery.magnific-popup.min.js deleted file mode 100644 index 4e3e16ff..00000000 --- a/public/ng/js/lib/jquery.magnific-popup.min.js +++ /dev/null @@ -1,4 +0,0 @@ -/*! Magnific Popup - v0.9.9 - 2014-09-06 -* http://dimsemenov.com/plugins/magnific-popup/ -* Copyright (c) 2014 Dmitry Semenov; */ -(function(e){var t,n,i,o,r,a,s,l="Close",c="BeforeClose",d="AfterClose",u="BeforeAppend",p="MarkupParse",f="Open",m="Change",g="mfp",h="."+g,v="mfp-ready",C="mfp-removing",y="mfp-prevent-close",w=function(){},b=!!window.jQuery,I=e(window),x=function(e,n){t.ev.on(g+e+h,n)},k=function(t,n,i,o){var r=document.createElement("div");return r.className="mfp-"+t,i&&(r.innerHTML=i),o?n&&n.appendChild(r):(r=e(r),n&&r.appendTo(n)),r},T=function(n,i){t.ev.triggerHandler(g+n,i),t.st.callbacks&&(n=n.charAt(0).toLowerCase()+n.slice(1),t.st.callbacks[n]&&t.st.callbacks[n].apply(t,e.isArray(i)?i:[i]))},E=function(n){return n===s&&t.currTemplate.closeBtn||(t.currTemplate.closeBtn=e(t.st.closeMarkup.replace("%title%",t.st.tClose)),s=n),t.currTemplate.closeBtn},_=function(){e.magnificPopup.instance||(t=new w,t.init(),e.magnificPopup.instance=t)},S=function(){var e=document.createElement("p").style,t=["ms","O","Moz","Webkit"];if(void 0!==e.transition)return!0;for(;t.length;)if(t.pop()+"Transition"in e)return!0;return!1};w.prototype={constructor:w,init:function(){var n=navigator.appVersion;t.isIE7=-1!==n.indexOf("MSIE 7."),t.isIE8=-1!==n.indexOf("MSIE 8."),t.isLowIE=t.isIE7||t.isIE8,t.isAndroid=/android/gi.test(n),t.isIOS=/iphone|ipad|ipod/gi.test(n),t.supportsTransition=S(),t.probablyMobile=t.isAndroid||t.isIOS||/(Opera Mini)|Kindle|webOS|BlackBerry|(Opera Mobi)|(Windows Phone)|IEMobile/i.test(navigator.userAgent),o=e(document),t.popupsCache={}},open:function(n){i||(i=e(document.body));var r;if(n.isObj===!1){t.items=n.items.toArray(),t.index=0;var s,l=n.items;for(r=0;l.length>r;r++)if(s=l[r],s.parsed&&(s=s.el[0]),s===n.el[0]){t.index=r;break}}else t.items=e.isArray(n.items)?n.items:[n.items],t.index=n.index||0;if(t.isOpen)return t.updateItemHTML(),void 0;t.types=[],a="",t.ev=n.mainEl&&n.mainEl.length?n.mainEl.eq(0):o,n.key?(t.popupsCache[n.key]||(t.popupsCache[n.key]={}),t.currTemplate=t.popupsCache[n.key]):t.currTemplate={},t.st=e.extend(!0,{},e.magnificPopup.defaults,n),t.fixedContentPos="auto"===t.st.fixedContentPos?!t.probablyMobile:t.st.fixedContentPos,t.st.modal&&(t.st.closeOnContentClick=!1,t.st.closeOnBgClick=!1,t.st.showCloseBtn=!1,t.st.enableEscapeKey=!1),t.bgOverlay||(t.bgOverlay=k("bg").on("click"+h,function(){t.close()}),t.wrap=k("wrap").attr("tabindex",-1).on("click"+h,function(e){t._checkIfClose(e.target)&&t.close()}),t.container=k("container",t.wrap)),t.contentContainer=k("content"),t.st.preloader&&(t.preloader=k("preloader",t.container,t.st.tLoading));var c=e.magnificPopup.modules;for(r=0;c.length>r;r++){var d=c[r];d=d.charAt(0).toUpperCase()+d.slice(1),t["init"+d].call(t)}T("BeforeOpen"),t.st.showCloseBtn&&(t.st.closeBtnInside?(x(p,function(e,t,n,i){n.close_replaceWith=E(i.type)}),a+=" mfp-close-btn-in"):t.wrap.append(E())),t.st.alignTop&&(a+=" mfp-align-top"),t.fixedContentPos?t.wrap.css({overflow:t.st.overflowY,overflowX:"hidden",overflowY:t.st.overflowY}):t.wrap.css({top:I.scrollTop(),position:"absolute"}),(t.st.fixedBgPos===!1||"auto"===t.st.fixedBgPos&&!t.fixedContentPos)&&t.bgOverlay.css({height:o.height(),position:"absolute"}),t.st.enableEscapeKey&&o.on("keyup"+h,function(e){27===e.keyCode&&t.close()}),I.on("resize"+h,function(){t.updateSize()}),t.st.closeOnContentClick||(a+=" mfp-auto-cursor"),a&&t.wrap.addClass(a);var u=t.wH=I.height(),m={};if(t.fixedContentPos&&t._hasScrollBar(u)){var g=t._getScrollbarSize();g&&(m.marginRight=g)}t.fixedContentPos&&(t.isIE7?e("body, html").css("overflow","hidden"):m.overflow="hidden");var C=t.st.mainClass;return t.isIE7&&(C+=" mfp-ie7"),C&&t._addClassToMFP(C),t.updateItemHTML(),T("BuildControls"),e("html").css(m),t.bgOverlay.add(t.wrap).prependTo(t.st.prependTo||i),t._lastFocusedEl=document.activeElement,setTimeout(function(){t.content?(t._addClassToMFP(v),t._setFocus()):t.bgOverlay.addClass(v),o.on("focusin"+h,t._onFocusIn)},16),t.isOpen=!0,t.updateSize(u),T(f),n},close:function(){t.isOpen&&(T(c),t.isOpen=!1,t.st.removalDelay&&!t.isLowIE&&t.supportsTransition?(t._addClassToMFP(C),setTimeout(function(){t._close()},t.st.removalDelay)):t._close())},_close:function(){T(l);var n=C+" "+v+" ";if(t.bgOverlay.detach(),t.wrap.detach(),t.container.empty(),t.st.mainClass&&(n+=t.st.mainClass+" "),t._removeClassFromMFP(n),t.fixedContentPos){var i={marginRight:""};t.isIE7?e("body, html").css("overflow",""):i.overflow="",e("html").css(i)}o.off("keyup"+h+" focusin"+h),t.ev.off(h),t.wrap.attr("class","mfp-wrap").removeAttr("style"),t.bgOverlay.attr("class","mfp-bg"),t.container.attr("class","mfp-container"),!t.st.showCloseBtn||t.st.closeBtnInside&&t.currTemplate[t.currItem.type]!==!0||t.currTemplate.closeBtn&&t.currTemplate.closeBtn.detach(),t._lastFocusedEl&&e(t._lastFocusedEl).focus(),t.currItem=null,t.content=null,t.currTemplate=null,t.prevHeight=0,T(d)},updateSize:function(e){if(t.isIOS){var n=document.documentElement.clientWidth/window.innerWidth,i=window.innerHeight*n;t.wrap.css("height",i),t.wH=i}else t.wH=e||I.height();t.fixedContentPos||t.wrap.css("height",t.wH),T("Resize")},updateItemHTML:function(){var n=t.items[t.index];t.contentContainer.detach(),t.content&&t.content.detach(),n.parsed||(n=t.parseEl(t.index));var i=n.type;if(T("BeforeChange",[t.currItem?t.currItem.type:"",i]),t.currItem=n,!t.currTemplate[i]){var o=t.st[i]?t.st[i].markup:!1;T("FirstMarkupParse",o),t.currTemplate[i]=o?e(o):!0}r&&r!==n.type&&t.container.removeClass("mfp-"+r+"-holder");var a=t["get"+i.charAt(0).toUpperCase()+i.slice(1)](n,t.currTemplate[i]);t.appendContent(a,i),n.preloaded=!0,T(m,n),r=n.type,t.container.prepend(t.contentContainer),T("AfterChange")},appendContent:function(e,n){t.content=e,e?t.st.showCloseBtn&&t.st.closeBtnInside&&t.currTemplate[n]===!0?t.content.find(".mfp-close").length||t.content.append(E()):t.content=e:t.content="",T(u),t.container.addClass("mfp-"+n+"-holder"),t.contentContainer.append(t.content)},parseEl:function(n){var i,o=t.items[n];if(o.tagName?o={el:e(o)}:(i=o.type,o={data:o,src:o.src}),o.el){for(var r=t.types,a=0;r.length>a;a++)if(o.el.hasClass("mfp-"+r[a])){i=r[a];break}o.src=o.el.attr("data-mfp-src"),o.src||(o.src=o.el.attr("href"))}return o.type=i||t.st.type||"inline",o.index=n,o.parsed=!0,t.items[n]=o,T("ElementParse",o),t.items[n]},addGroup:function(e,n){var i=function(i){i.mfpEl=this,t._openClick(i,e,n)};n||(n={});var o="click.magnificPopup";n.mainEl=e,n.items?(n.isObj=!0,e.off(o).on(o,i)):(n.isObj=!1,n.delegate?e.off(o).on(o,n.delegate,i):(n.items=e,e.off(o).on(o,i)))},_openClick:function(n,i,o){var r=void 0!==o.midClick?o.midClick:e.magnificPopup.defaults.midClick;if(r||2!==n.which&&!n.ctrlKey&&!n.metaKey){var a=void 0!==o.disableOn?o.disableOn:e.magnificPopup.defaults.disableOn;if(a)if(e.isFunction(a)){if(!a.call(t))return!0}else if(a>I.width())return!0;n.type&&(n.preventDefault(),t.isOpen&&n.stopPropagation()),o.el=e(n.mfpEl),o.delegate&&(o.items=i.find(o.delegate)),t.open(o)}},updateStatus:function(e,i){if(t.preloader){n!==e&&t.container.removeClass("mfp-s-"+n),i||"loading"!==e||(i=t.st.tLoading);var o={status:e,text:i};T("UpdateStatus",o),e=o.status,i=o.text,t.preloader.html(i),t.preloader.find("a").on("click",function(e){e.stopImmediatePropagation()}),t.container.addClass("mfp-s-"+e),n=e}},_checkIfClose:function(n){if(!e(n).hasClass(y)){var i=t.st.closeOnContentClick,o=t.st.closeOnBgClick;if(i&&o)return!0;if(!t.content||e(n).hasClass("mfp-close")||t.preloader&&n===t.preloader[0])return!0;if(n===t.content[0]||e.contains(t.content[0],n)){if(i)return!0}else if(o&&e.contains(document,n))return!0;return!1}},_addClassToMFP:function(e){t.bgOverlay.addClass(e),t.wrap.addClass(e)},_removeClassFromMFP:function(e){this.bgOverlay.removeClass(e),t.wrap.removeClass(e)},_hasScrollBar:function(e){return(t.isIE7?o.height():document.body.scrollHeight)>(e||I.height())},_setFocus:function(){(t.st.focus?t.content.find(t.st.focus).eq(0):t.wrap).focus()},_onFocusIn:function(n){return n.target===t.wrap[0]||e.contains(t.wrap[0],n.target)?void 0:(t._setFocus(),!1)},_parseMarkup:function(t,n,i){var o;i.data&&(n=e.extend(i.data,n)),T(p,[t,n,i]),e.each(n,function(e,n){if(void 0===n||n===!1)return!0;if(o=e.split("_"),o.length>1){var i=t.find(h+"-"+o[0]);if(i.length>0){var r=o[1];"replaceWith"===r?i[0]!==n[0]&&i.replaceWith(n):"img"===r?i.is("img")?i.attr("src",n):i.replaceWith('<img src="'+n+'" class="'+i.attr("class")+'" />'):i.attr(o[1],n)}}else t.find(h+"-"+e).html(n)})},_getScrollbarSize:function(){if(void 0===t.scrollbarSize){var e=document.createElement("div");e.style.cssText="width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;",document.body.appendChild(e),t.scrollbarSize=e.offsetWidth-e.clientWidth,document.body.removeChild(e)}return t.scrollbarSize}},e.magnificPopup={instance:null,proto:w.prototype,modules:[],open:function(t,n){return _(),t=t?e.extend(!0,{},t):{},t.isObj=!0,t.index=n||0,this.instance.open(t)},close:function(){return e.magnificPopup.instance&&e.magnificPopup.instance.close()},registerModule:function(t,n){n.options&&(e.magnificPopup.defaults[t]=n.options),e.extend(this.proto,n.proto),this.modules.push(t)},defaults:{disableOn:0,key:null,midClick:!1,mainClass:"",preloader:!0,focus:"",closeOnContentClick:!1,closeOnBgClick:!0,closeBtnInside:!0,showCloseBtn:!0,enableEscapeKey:!0,modal:!1,alignTop:!1,removalDelay:0,prependTo:null,fixedContentPos:"auto",fixedBgPos:"auto",overflowY:"auto",closeMarkup:'<button title="%title%" type="button" class="mfp-close">×</button>',tClose:"Close (Esc)",tLoading:"Loading..."}},e.fn.magnificPopup=function(n){_();var i=e(this);if("string"==typeof n)if("open"===n){var o,r=b?i.data("magnificPopup"):i[0].magnificPopup,a=parseInt(arguments[1],10)||0;r.items?o=r.items[a]:(o=i,r.delegate&&(o=o.find(r.delegate)),o=o.eq(a)),t._openClick({mfpEl:o},i,r)}else t.isOpen&&t[n].apply(t,Array.prototype.slice.call(arguments,1));else n=e.extend(!0,{},n),b?i.data("magnificPopup",n):i[0].magnificPopup=n,t.addGroup(i,n);return i};var P,O,z,M="inline",B=function(){z&&(O.after(z.addClass(P)).detach(),z=null)};e.magnificPopup.registerModule(M,{options:{hiddenClass:"hide",markup:"",tNotFound:"Content not found"},proto:{initInline:function(){t.types.push(M),x(l+"."+M,function(){B()})},getInline:function(n,i){if(B(),n.src){var o=t.st.inline,r=e(n.src);if(r.length){var a=r[0].parentNode;a&&a.tagName&&(O||(P=o.hiddenClass,O=k(P),P="mfp-"+P),z=r.after(O).detach().removeClass(P)),t.updateStatus("ready")}else t.updateStatus("error",o.tNotFound),r=e("<div>");return n.inlineElement=r,r}return t.updateStatus("ready"),t._parseMarkup(i,{},n),i}}});var F,H="ajax",L=function(){F&&i.removeClass(F)},A=function(){L(),t.req&&t.req.abort()};e.magnificPopup.registerModule(H,{options:{settings:null,cursor:"mfp-ajax-cur",tError:'<a href="%url%">The content</a> could not be loaded.'},proto:{initAjax:function(){t.types.push(H),F=t.st.ajax.cursor,x(l+"."+H,A),x("BeforeChange."+H,A)},getAjax:function(n){F&&i.addClass(F),t.updateStatus("loading");var o=e.extend({url:n.src,success:function(i,o,r){var a={data:i,xhr:r};T("ParseAjax",a),t.appendContent(e(a.data),H),n.finished=!0,L(),t._setFocus(),setTimeout(function(){t.wrap.addClass(v)},16),t.updateStatus("ready"),T("AjaxContentAdded")},error:function(){L(),n.finished=n.loadError=!0,t.updateStatus("error",t.st.ajax.tError.replace("%url%",n.src))}},t.st.ajax.settings);return t.req=e.ajax(o),""}}});var j,N=function(n){if(n.data&&void 0!==n.data.title)return n.data.title;var i=t.st.image.titleSrc;if(i){if(e.isFunction(i))return i.call(t,n);if(n.el)return n.el.attr(i)||""}return""};e.magnificPopup.registerModule("image",{options:{markup:'<div class="mfp-figure"><div class="mfp-close"></div><figure><div class="mfp-img"></div><figcaption><div class="mfp-bottom-bar"><div class="mfp-title"></div><div class="mfp-counter"></div></div></figcaption></figure></div>',cursor:"mfp-zoom-out-cur",titleSrc:"title",verticalFit:!0,tError:'<a href="%url%">The image</a> could not be loaded.'},proto:{initImage:function(){var e=t.st.image,n=".image";t.types.push("image"),x(f+n,function(){"image"===t.currItem.type&&e.cursor&&i.addClass(e.cursor)}),x(l+n,function(){e.cursor&&i.removeClass(e.cursor),I.off("resize"+h)}),x("Resize"+n,t.resizeImage),t.isLowIE&&x("AfterChange",t.resizeImage)},resizeImage:function(){var e=t.currItem;if(e&&e.img&&t.st.image.verticalFit){var n=0;t.isLowIE&&(n=parseInt(e.img.css("padding-top"),10)+parseInt(e.img.css("padding-bottom"),10)),e.img.css("max-height",t.wH-n)}},_onImageHasSize:function(e){e.img&&(e.hasSize=!0,j&&clearInterval(j),e.isCheckingImgSize=!1,T("ImageHasSize",e),e.imgHidden&&(t.content&&t.content.removeClass("mfp-loading"),e.imgHidden=!1))},findImageSize:function(e){var n=0,i=e.img[0],o=function(r){j&&clearInterval(j),j=setInterval(function(){return i.naturalWidth>0?(t._onImageHasSize(e),void 0):(n>200&&clearInterval(j),n++,3===n?o(10):40===n?o(50):100===n&&o(500),void 0)},r)};o(1)},getImage:function(n,i){var o=0,r=function(){n&&(n.img[0].complete?(n.img.off(".mfploader"),n===t.currItem&&(t._onImageHasSize(n),t.updateStatus("ready")),n.hasSize=!0,n.loaded=!0,T("ImageLoadComplete")):(o++,200>o?setTimeout(r,100):a()))},a=function(){n&&(n.img.off(".mfploader"),n===t.currItem&&(t._onImageHasSize(n),t.updateStatus("error",s.tError.replace("%url%",n.src))),n.hasSize=!0,n.loaded=!0,n.loadError=!0)},s=t.st.image,l=i.find(".mfp-img");if(l.length){var c=document.createElement("img");c.className="mfp-img",n.img=e(c).on("load.mfploader",r).on("error.mfploader",a),c.src=n.src,l.is("img")&&(n.img=n.img.clone()),c=n.img[0],c.naturalWidth>0?n.hasSize=!0:c.width||(n.hasSize=!1)}return t._parseMarkup(i,{title:N(n),img_replaceWith:n.img},n),t.resizeImage(),n.hasSize?(j&&clearInterval(j),n.loadError?(i.addClass("mfp-loading"),t.updateStatus("error",s.tError.replace("%url%",n.src))):(i.removeClass("mfp-loading"),t.updateStatus("ready")),i):(t.updateStatus("loading"),n.loading=!0,n.hasSize||(n.imgHidden=!0,i.addClass("mfp-loading"),t.findImageSize(n)),i)}}});var W,R=function(){return void 0===W&&(W=void 0!==document.createElement("p").style.MozTransform),W};e.magnificPopup.registerModule("zoom",{options:{enabled:!1,easing:"ease-in-out",duration:300,opener:function(e){return e.is("img")?e:e.find("img")}},proto:{initZoom:function(){var e,n=t.st.zoom,i=".zoom";if(n.enabled&&t.supportsTransition){var o,r,a=n.duration,s=function(e){var t=e.clone().removeAttr("style").removeAttr("class").addClass("mfp-animated-image"),i="all "+n.duration/1e3+"s "+n.easing,o={position:"fixed",zIndex:9999,left:0,top:0,"-webkit-backface-visibility":"hidden"},r="transition";return o["-webkit-"+r]=o["-moz-"+r]=o["-o-"+r]=o[r]=i,t.css(o),t},d=function(){t.content.css("visibility","visible")};x("BuildControls"+i,function(){if(t._allowZoom()){if(clearTimeout(o),t.content.css("visibility","hidden"),e=t._getItemToZoom(),!e)return d(),void 0;r=s(e),r.css(t._getOffset()),t.wrap.append(r),o=setTimeout(function(){r.css(t._getOffset(!0)),o=setTimeout(function(){d(),setTimeout(function(){r.remove(),e=r=null,T("ZoomAnimationEnded")},16)},a)},16)}}),x(c+i,function(){if(t._allowZoom()){if(clearTimeout(o),t.st.removalDelay=a,!e){if(e=t._getItemToZoom(),!e)return;r=s(e)}r.css(t._getOffset(!0)),t.wrap.append(r),t.content.css("visibility","hidden"),setTimeout(function(){r.css(t._getOffset())},16)}}),x(l+i,function(){t._allowZoom()&&(d(),r&&r.remove(),e=null)})}},_allowZoom:function(){return"image"===t.currItem.type},_getItemToZoom:function(){return t.currItem.hasSize?t.currItem.img:!1},_getOffset:function(n){var i;i=n?t.currItem.img:t.st.zoom.opener(t.currItem.el||t.currItem);var o=i.offset(),r=parseInt(i.css("padding-top"),10),a=parseInt(i.css("padding-bottom"),10);o.top-=e(window).scrollTop()-r;var s={width:i.width(),height:(b?i.innerHeight():i[0].offsetHeight)-a-r};return R()?s["-moz-transform"]=s.transform="translate("+o.left+"px,"+o.top+"px)":(s.left=o.left,s.top=o.top),s}}});var Z="iframe",q="//about:blank",D=function(e){if(t.currTemplate[Z]){var n=t.currTemplate[Z].find("iframe");n.length&&(e||(n[0].src=q),t.isIE8&&n.css("display",e?"block":"none"))}};e.magnificPopup.registerModule(Z,{options:{markup:'<div class="mfp-iframe-scaler"><div class="mfp-close"></div><iframe class="mfp-iframe" src="//about:blank" frameborder="0" allowfullscreen></iframe></div>',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){t.types.push(Z),x("BeforeChange",function(e,t,n){t!==n&&(t===Z?D():n===Z&&D(!0))}),x(l+"."+Z,function(){D()})},getIframe:function(n,i){var o=n.src,r=t.st.iframe;e.each(r.patterns,function(){return o.indexOf(this.index)>-1?(this.id&&(o="string"==typeof this.id?o.substr(o.lastIndexOf(this.id)+this.id.length,o.length):this.id.call(this,o)),o=this.src.replace("%id%",o),!1):void 0});var a={};return r.srcAction&&(a[r.srcAction]=o),t._parseMarkup(i,a,n),t.updateStatus("ready"),i}}});var K=function(e){var n=t.items.length;return e>n-1?e-n:0>e?n+e:e},Y=function(e,t,n){return e.replace(/%curr%/gi,t+1).replace(/%total%/gi,n)};e.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'<button title="%title%" type="button" class="mfp-arrow mfp-arrow-%dir%"></button>',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%"},proto:{initGallery:function(){var n=t.st.gallery,i=".mfp-gallery",r=Boolean(e.fn.mfpFastClick);return t.direction=!0,n&&n.enabled?(a+=" mfp-gallery",x(f+i,function(){n.navigateByImgClick&&t.wrap.on("click"+i,".mfp-img",function(){return t.items.length>1?(t.next(),!1):void 0}),o.on("keydown"+i,function(e){37===e.keyCode?t.prev():39===e.keyCode&&t.next()})}),x("UpdateStatus"+i,function(e,n){n.text&&(n.text=Y(n.text,t.currItem.index,t.items.length))}),x(p+i,function(e,i,o,r){var a=t.items.length;o.counter=a>1?Y(n.tCounter,r.index,a):""}),x("BuildControls"+i,function(){if(t.items.length>1&&n.arrows&&!t.arrowLeft){var i=n.arrowMarkup,o=t.arrowLeft=e(i.replace(/%title%/gi,n.tPrev).replace(/%dir%/gi,"left")).addClass(y),a=t.arrowRight=e(i.replace(/%title%/gi,n.tNext).replace(/%dir%/gi,"right")).addClass(y),s=r?"mfpFastClick":"click";o[s](function(){t.prev()}),a[s](function(){t.next()}),t.isIE7&&(k("b",o[0],!1,!0),k("a",o[0],!1,!0),k("b",a[0],!1,!0),k("a",a[0],!1,!0)),t.container.append(o.add(a))}}),x(m+i,function(){t._preloadTimeout&&clearTimeout(t._preloadTimeout),t._preloadTimeout=setTimeout(function(){t.preloadNearbyImages(),t._preloadTimeout=null},16)}),x(l+i,function(){o.off(i),t.wrap.off("click"+i),t.arrowLeft&&r&&t.arrowLeft.add(t.arrowRight).destroyMfpFastClick(),t.arrowRight=t.arrowLeft=null}),void 0):!1},next:function(){t.direction=!0,t.index=K(t.index+1),t.updateItemHTML()},prev:function(){t.direction=!1,t.index=K(t.index-1),t.updateItemHTML()},goTo:function(e){t.direction=e>=t.index,t.index=e,t.updateItemHTML()},preloadNearbyImages:function(){var e,n=t.st.gallery.preload,i=Math.min(n[0],t.items.length),o=Math.min(n[1],t.items.length);for(e=1;(t.direction?o:i)>=e;e++)t._preloadItem(t.index+e);for(e=1;(t.direction?i:o)>=e;e++)t._preloadItem(t.index-e)},_preloadItem:function(n){if(n=K(n),!t.items[n].preloaded){var i=t.items[n];i.parsed||(i=t.parseEl(n)),T("LazyLoad",i),"image"===i.type&&(i.img=e('<img class="mfp-img" />').on("load.mfploader",function(){i.hasSize=!0}).on("error.mfploader",function(){i.hasSize=!0,i.loadError=!0,T("LazyLoadError",i)}).attr("src",i.src)),i.preloaded=!0}}}});var U="retina";e.magnificPopup.registerModule(U,{options:{replaceSrc:function(e){return e.src.replace(/\.\w+$/,function(e){return"@2x"+e})},ratio:1},proto:{initRetina:function(){if(window.devicePixelRatio>1){var e=t.st.retina,n=e.ratio;n=isNaN(n)?n():n,n>1&&(x("ImageHasSize."+U,function(e,t){t.img.css({"max-width":t.img[0].naturalWidth/n,width:"100%"})}),x("ElementParse."+U,function(t,i){i.src=e.replaceSrc(i,n)}))}}}}),function(){var t=1e3,n="ontouchstart"in window,i=function(){I.off("touchmove"+r+" touchend"+r)},o="mfpFastClick",r="."+o;e.fn.mfpFastClick=function(o){return e(this).each(function(){var a,s=e(this);if(n){var l,c,d,u,p,f;s.on("touchstart"+r,function(e){u=!1,f=1,p=e.originalEvent?e.originalEvent.touches[0]:e.touches[0],c=p.clientX,d=p.clientY,I.on("touchmove"+r,function(e){p=e.originalEvent?e.originalEvent.touches:e.touches,f=p.length,p=p[0],(Math.abs(p.clientX-c)>10||Math.abs(p.clientY-d)>10)&&(u=!0,i())}).on("touchend"+r,function(e){i(),u||f>1||(a=!0,e.preventDefault(),clearTimeout(l),l=setTimeout(function(){a=!1},t),o())})})}s.on("click"+r,function(){a||o()})})},e.fn.destroyMfpFastClick=function(){e(this).off("touchstart"+r+" click"+r),n&&I.off("touchmove"+r+" touchend"+r)}}(),_()})(window.jQuery||window.Zepto);
\ No newline at end of file diff --git a/public/ng/js/lib/jquery.tipsy.js b/public/ng/js/lib/jquery.tipsy.js deleted file mode 100644 index f95c063f..00000000 --- a/public/ng/js/lib/jquery.tipsy.js +++ /dev/null @@ -1,258 +0,0 @@ -// tipsy, facebook style tooltips for jquery -// version 1.0.0a -// (c) 2008-2010 jason frame [jason@onehackoranother.com] -// released under the MIT license - -(function($) { - - function maybeCall(thing, ctx) { - return (typeof thing == 'function') ? (thing.call(ctx)) : thing; - }; - - function isElementInDOM(ele) { - while (ele = ele.parentNode) { - if (ele == document) return true; - } - return false; - }; - - function Tipsy(element, options) { - this.$element = $(element); - this.options = options; - this.enabled = true; - this.fixTitle(); - }; - - Tipsy.prototype = { - show: function() { - var title = this.getTitle(); - if (title && this.enabled) { - var $tip = this.tip(); - - $tip.find('.tipsy-inner')[this.options.html ? 'html' : 'text'](title); - $tip[0].className = 'tipsy'; // reset classname in case of dynamic gravity - $tip.remove().css({top: 0, left: 0, visibility: 'hidden', display: 'block'}).prependTo(document.body); - - var pos = $.extend({}, this.$element.offset(), { - width: this.$element[0].offsetWidth, - height: this.$element[0].offsetHeight - }); - - var actualWidth = $tip[0].offsetWidth, - actualHeight = $tip[0].offsetHeight, - gravity = maybeCall(this.options.gravity, this.$element[0]); - - var tp; - switch (gravity.charAt(0)) { - case 'n': - tp = {top: pos.top + pos.height + this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2}; - break; - case 's': - tp = {top: pos.top - actualHeight - this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2}; - break; - case 'e': - tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth - this.options.offset}; - break; - case 'w': - tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width + this.options.offset}; - break; - } - - if (gravity.length == 2) { - if (gravity.charAt(1) == 'w') { - tp.left = pos.left + pos.width / 2 - 15; - } else { - tp.left = pos.left + pos.width / 2 - actualWidth + 15; - } - } - - $tip.css(tp).addClass('tipsy-' + gravity); - $tip.find('.tipsy-arrow')[0].className = 'tipsy-arrow tipsy-arrow-' + gravity.charAt(0); - if (this.options.className) { - $tip.addClass(maybeCall(this.options.className, this.$element[0])); - } - - if (this.options.fade) { - $tip.stop().css({opacity: 0, display: 'block', visibility: 'visible'}).animate({opacity: this.options.opacity}); - } else { - $tip.css({visibility: 'visible', opacity: this.options.opacity}); - } - } - }, - - hide: function() { - if (this.options.fade) { - this.tip().stop().fadeOut(function() { $(this).remove(); }); - } else { - this.tip().remove(); - } - }, - - fixTitle: function() { - var $e = this.$element; - if ($e.attr('title') || typeof($e.attr('original-title')) != 'string') { - $e.attr('original-title', $e.attr('title') || '').removeAttr('title'); - } - }, - - getTitle: function() { - var title, $e = this.$element, o = this.options; - this.fixTitle(); - var title, o = this.options; - if (typeof o.title == 'string') { - title = $e.attr(o.title == 'title' ? 'original-title' : o.title); - } else if (typeof o.title == 'function') { - title = o.title.call($e[0]); - } - title = ('' + title).replace(/(^\s*|\s*$)/, ""); - return title || o.fallback; - }, - - tip: function() { - if (!this.$tip) { - this.$tip = $('<div class="tipsy"></div>').html('<div class="tipsy-arrow"></div><div class="tipsy-inner"></div>'); - this.$tip.data('tipsy-pointee', this.$element[0]); - } - return this.$tip; - }, - - validate: function() { - if (!this.$element[0].parentNode) { - this.hide(); - this.$element = null; - this.options = null; - } - }, - - enable: function() { this.enabled = true; }, - disable: function() { this.enabled = false; }, - toggleEnabled: function() { this.enabled = !this.enabled; } - }; - - $.fn.tipsy = function(options) { - - if (options === true) { - return this.data('tipsy'); - } else if (typeof options == 'string') { - var tipsy = this.data('tipsy'); - if (tipsy) tipsy[options](); - return this; - } - - options = $.extend({}, $.fn.tipsy.defaults, options); - - function get(ele) { - var tipsy = $.data(ele, 'tipsy'); - if (!tipsy) { - tipsy = new Tipsy(ele, $.fn.tipsy.elementOptions(ele, options)); - $.data(ele, 'tipsy', tipsy); - } - return tipsy; - } - - function enter() { - var tipsy = get(this); - tipsy.hoverState = 'in'; - if (options.delayIn == 0) { - tipsy.show(); - } else { - tipsy.fixTitle(); - setTimeout(function() { if (tipsy.hoverState == 'in') tipsy.show(); }, options.delayIn); - } - }; - - function leave() { - var tipsy = get(this); - tipsy.hoverState = 'out'; - if (options.delayOut == 0) { - tipsy.hide(); - } else { - setTimeout(function() { if (tipsy.hoverState == 'out') tipsy.hide(); }, options.delayOut); - } - }; - - if (!options.live) this.each(function() { get(this); }); - - if (options.trigger != 'manual') { - var binder = options.live ? 'live' : 'bind', - eventIn = options.trigger == 'hover' ? 'mouseenter' : 'focus', - eventOut = options.trigger == 'hover' ? 'mouseleave' : 'blur'; - this[binder](eventIn, enter)[binder](eventOut, leave); - } - - return this; - - }; - - $.fn.tipsy.defaults = { - className: null, - delayIn: 0, - delayOut: 0, - fade: false, - fallback: '', - gravity: 'n', - html: false, - live: false, - offset: 0, - opacity: 0.8, - title: 'title', - trigger: 'hover' - }; - - $.fn.tipsy.revalidate = function() { - $('.tipsy').each(function() { - var pointee = $.data(this, 'tipsy-pointee'); - if (!pointee || !isElementInDOM(pointee)) { - $(this).remove(); - } - }); - }; - - // Overwrite this method to provide options on a per-element basis. - // For example, you could store the gravity in a 'tipsy-gravity' attribute: - // return $.extend({}, options, {gravity: $(ele).attr('tipsy-gravity') || 'n' }); - // (remember - do not modify 'options' in place!) - $.fn.tipsy.elementOptions = function(ele, options) { - return $.metadata ? $.extend({}, options, $(ele).metadata()) : options; - }; - - $.fn.tipsy.autoNS = function() { - return $(this).offset().top > ($(document).scrollTop() + $(window).height() / 2) ? 's' : 'n'; - }; - - $.fn.tipsy.autoWE = function() { - return $(this).offset().left > ($(document).scrollLeft() + $(window).width() / 2) ? 'e' : 'w'; - }; - - /** - * yields a closure of the supplied parameters, producing a function that takes - * no arguments and is suitable for use as an autogravity function like so: - * - * @param margin (int) - distance from the viewable region edge that an - * element should be before setting its tooltip's gravity to be away - * from that edge. - * @param prefer (string, e.g. 'n', 'sw', 'w') - the direction to prefer - * if there are no viewable region edges effecting the tooltip's - * gravity. It will try to vary from this minimally, for example, - * if 'sw' is preferred and an element is near the right viewable - * region edge, but not the top edge, it will set the gravity for - * that element's tooltip to be 'se', preserving the southern - * component. - */ - $.fn.tipsy.autoBounds = function(margin, prefer) { - return function() { - var dir = {ns: prefer[0], ew: (prefer.length > 1 ? prefer[1] : false)}, - boundTop = $(document).scrollTop() + margin, - boundLeft = $(document).scrollLeft() + margin, - $this = $(this); - - if ($this.offset().top < boundTop) dir.ns = 'n'; - if ($this.offset().left < boundLeft) dir.ew = 'w'; - if ($(window).width() + $(document).scrollLeft() - $this.offset().left < margin) dir.ew = 'e'; - if ($(window).height() + $(document).scrollTop() - $this.offset().top < margin) dir.ns = 's'; - - return dir.ns + (dir.ew ? dir.ew : ''); - } - }; - -})(jQuery); diff --git a/public/ng/js/lib/lib.js b/public/ng/js/lib/lib.js deleted file mode 100644 index 5e95433d..00000000 --- a/public/ng/js/lib/lib.js +++ /dev/null @@ -1,168 +0,0 @@ -// pretty print -!function(){var q=null;window.PR_SHOULD_USE_CONTINUATION=!0; -(function(){function S(a){function d(e){var b=e.charCodeAt(0);if(b!==92)return b;var a=e.charAt(1);return(b=r[a])?b:"0"<=a&&a<="7"?parseInt(e.substring(1),8):a==="u"||a==="x"?parseInt(e.substring(2),16):e.charCodeAt(1)}function g(e){if(e<32)return(e<16?"\\x0":"\\x")+e.toString(16);e=String.fromCharCode(e);return e==="\\"||e==="-"||e==="]"||e==="^"?"\\"+e:e}function b(e){var b=e.substring(1,e.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),e=[],a= -b[0]==="^",c=["["];a&&c.push("^");for(var a=a?1:0,f=b.length;a<f;++a){var h=b[a];if(/\\[bdsw]/i.test(h))c.push(h);else{var h=d(h),l;a+2<f&&"-"===b[a+1]?(l=d(b[a+2]),a+=2):l=h;e.push([h,l]);l<65||h>122||(l<65||h>90||e.push([Math.max(65,h)|32,Math.min(l,90)|32]),l<97||h>122||e.push([Math.max(97,h)&-33,Math.min(l,122)&-33]))}}e.sort(function(e,a){return e[0]-a[0]||a[1]-e[1]});b=[];f=[];for(a=0;a<e.length;++a)h=e[a],h[0]<=f[1]+1?f[1]=Math.max(f[1],h[1]):b.push(f=h);for(a=0;a<b.length;++a)h=b[a],c.push(g(h[0])), -h[1]>h[0]&&(h[1]+1>h[0]&&c.push("-"),c.push(g(h[1])));c.push("]");return c.join("")}function s(e){for(var a=e.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),c=a.length,d=[],f=0,h=0;f<c;++f){var l=a[f];l==="("?++h:"\\"===l.charAt(0)&&(l=+l.substring(1))&&(l<=h?d[l]=-1:a[f]=g(l))}for(f=1;f<d.length;++f)-1===d[f]&&(d[f]=++x);for(h=f=0;f<c;++f)l=a[f],l==="("?(++h,d[h]||(a[f]="(?:")):"\\"===l.charAt(0)&&(l=+l.substring(1))&&l<=h&& -(a[f]="\\"+d[l]);for(f=0;f<c;++f)"^"===a[f]&&"^"!==a[f+1]&&(a[f]="");if(e.ignoreCase&&m)for(f=0;f<c;++f)l=a[f],e=l.charAt(0),l.length>=2&&e==="["?a[f]=b(l):e!=="\\"&&(a[f]=l.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return a.join("")}for(var x=0,m=!1,j=!1,k=0,c=a.length;k<c;++k){var i=a[k];if(i.ignoreCase)j=!0;else if(/[a-z]/i.test(i.source.replace(/\\u[\da-f]{4}|\\x[\da-f]{2}|\\[^UXux]/gi,""))){m=!0;j=!1;break}}for(var r={b:8,t:9,n:10,v:11, -f:12,r:13},n=[],k=0,c=a.length;k<c;++k){i=a[k];if(i.global||i.multiline)throw Error(""+i);n.push("(?:"+s(i)+")")}return RegExp(n.join("|"),j?"gi":"g")}function T(a,d){function g(a){var c=a.nodeType;if(c==1){if(!b.test(a.className)){for(c=a.firstChild;c;c=c.nextSibling)g(c);c=a.nodeName.toLowerCase();if("br"===c||"li"===c)s[j]="\n",m[j<<1]=x++,m[j++<<1|1]=a}}else if(c==3||c==4)c=a.nodeValue,c.length&&(c=d?c.replace(/\r\n?/g,"\n"):c.replace(/[\t\n\r ]+/g," "),s[j]=c,m[j<<1]=x,x+=c.length,m[j++<<1|1]= -a)}var b=/(?:^|\s)nocode(?:\s|$)/,s=[],x=0,m=[],j=0;g(a);return{a:s.join("").replace(/\n$/,""),d:m}}function H(a,d,g,b){d&&(a={a:d,e:a},g(a),b.push.apply(b,a.g))}function U(a){for(var d=void 0,g=a.firstChild;g;g=g.nextSibling)var b=g.nodeType,d=b===1?d?a:g:b===3?V.test(g.nodeValue)?a:d:d;return d===a?void 0:d}function C(a,d){function g(a){for(var j=a.e,k=[j,"pln"],c=0,i=a.a.match(s)||[],r={},n=0,e=i.length;n<e;++n){var z=i[n],w=r[z],t=void 0,f;if(typeof w==="string")f=!1;else{var h=b[z.charAt(0)]; -if(h)t=z.match(h[1]),w=h[0];else{for(f=0;f<x;++f)if(h=d[f],t=z.match(h[1])){w=h[0];break}t||(w="pln")}if((f=w.length>=5&&"lang-"===w.substring(0,5))&&!(t&&typeof t[1]==="string"))f=!1,w="src";f||(r[z]=w)}h=c;c+=z.length;if(f){f=t[1];var l=z.indexOf(f),B=l+f.length;t[2]&&(B=z.length-t[2].length,l=B-f.length);w=w.substring(5);H(j+h,z.substring(0,l),g,k);H(j+h+l,f,I(w,f),k);H(j+h+B,z.substring(B),g,k)}else k.push(j+h,w)}a.g=k}var b={},s;(function(){for(var g=a.concat(d),j=[],k={},c=0,i=g.length;c<i;++c){var r= -g[c],n=r[3];if(n)for(var e=n.length;--e>=0;)b[n.charAt(e)]=r;r=r[1];n=""+r;k.hasOwnProperty(n)||(j.push(r),k[n]=q)}j.push(/[\S\s]/);s=S(j)})();var x=d.length;return g}function v(a){var d=[],g=[];a.tripleQuotedStrings?d.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?d.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/, -q,"'\"`"]):d.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&g.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var b=a.hashComments;b&&(a.cStyleComments?(b>1?d.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):d.push(["com",/^#(?:(?:define|e(?:l|nd)if|else|error|ifn?def|include|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),g.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h(?:h|pp|\+\+)?|[a-z]\w*)>/,q])):d.push(["com", -/^#[^\n\r]*/,q,"#"]));a.cStyleComments&&(g.push(["com",/^\/\/[^\n\r]*/,q]),g.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));if(b=a.regexLiterals){var s=(b=b>1?"":"\n\r")?".":"[\\S\\s]";g.push(["lang-regex",RegExp("^(?:^^\\.?|[+-]|[!=]=?=?|\\#|%=?|&&?=?|\\(|\\*=?|[+\\-]=|->|\\/=?|::?|<<?=?|>>?>?=?|,|;|\\?|@|\\[|~|{|\\^\\^?=?|\\|\\|?=?|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*("+("/(?=[^/*"+b+"])(?:[^/\\x5B\\x5C"+b+"]|\\x5C"+s+"|\\x5B(?:[^\\x5C\\x5D"+b+"]|\\x5C"+ -s+")*(?:\\x5D|$))+/")+")")])}(b=a.types)&&g.push(["typ",b]);b=(""+a.keywords).replace(/^ | $/g,"");b.length&&g.push(["kwd",RegExp("^(?:"+b.replace(/[\s,]+/g,"|")+")\\b"),q]);d.push(["pln",/^\s+/,q," \r\n\t\u00a0"]);b="^.[^\\s\\w.$@'\"`/\\\\]*";a.regexLiterals&&(b+="(?!s*/)");g.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/, -q],["pun",RegExp(b),q]);return C(d,g)}function J(a,d,g){function b(a){var c=a.nodeType;if(c==1&&!x.test(a.className))if("br"===a.nodeName)s(a),a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)b(a);else if((c==3||c==4)&&g){var d=a.nodeValue,i=d.match(m);if(i)c=d.substring(0,i.index),a.nodeValue=c,(d=d.substring(i.index+i[0].length))&&a.parentNode.insertBefore(j.createTextNode(d),a.nextSibling),s(a),c||a.parentNode.removeChild(a)}}function s(a){function b(a,c){var d= -c?a.cloneNode(!1):a,e=a.parentNode;if(e){var e=b(e,1),g=a.nextSibling;e.appendChild(d);for(var i=g;i;i=g)g=i.nextSibling,e.appendChild(i)}return d}for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),d;(d=a.parentNode)&&d.nodeType===1;)a=d;c.push(a)}for(var x=/(?:^|\s)nocode(?:\s|$)/,m=/\r\n?|\n/,j=a.ownerDocument,k=j.createElement("li");a.firstChild;)k.appendChild(a.firstChild);for(var c=[k],i=0;i<c.length;++i)b(c[i]);d===(d|0)&&c[0].setAttribute("value",d);var r=j.createElement("ol"); -r.className="linenums";for(var d=Math.max(0,d-1|0)||0,i=0,n=c.length;i<n;++i)k=c[i],k.setAttribute("rel", "L"+(i+d+1)),k.className="L"+(i+d+1),k.firstChild||k.appendChild(j.createTextNode("\u00a0")),r.appendChild(k);a.appendChild(r)}function p(a,d){for(var g=d.length;--g>=0;){var b=d[g];F.hasOwnProperty(b)?D.console&&console.warn("cannot override language handler %s",b):F[b]=a}}function I(a,d){if(!a||!F.hasOwnProperty(a))a=/^\s*</.test(d)?"default-markup":"default-code";return F[a]}function K(a){var d=a.h;try{var g=T(a.c,a.i),b=g.a; -a.a=b;a.d=g.d;a.e=0;I(d,b)(a);var s=/\bMSIE\s(\d+)/.exec(navigator.userAgent),s=s&&+s[1]<=8,d=/\n/g,x=a.a,m=x.length,g=0,j=a.d,k=j.length,b=0,c=a.g,i=c.length,r=0;c[i]=m;var n,e;for(e=n=0;e<i;)c[e]!==c[e+2]?(c[n++]=c[e++],c[n++]=c[e++]):e+=2;i=n;for(e=n=0;e<i;){for(var p=c[e],w=c[e+1],t=e+2;t+2<=i&&c[t+1]===w;)t+=2;c[n++]=p;c[n++]=w;e=t}c.length=n;var f=a.c,h;if(f)h=f.style.display,f.style.display="none";try{for(;b<k;){var l=j[b+2]||m,B=c[r+2]||m,t=Math.min(l,B),A=j[b+1],G;if(A.nodeType!==1&&(G=x.substring(g, -t))){s&&(G=G.replace(d,"\r"));A.nodeValue=G;var L=A.ownerDocument,o=L.createElement("span");o.className=c[r+1];var v=A.parentNode;v.replaceChild(o,A);o.appendChild(A);g<l&&(j[b+1]=A=L.createTextNode(x.substring(t,l)),v.insertBefore(A,o.nextSibling))}g=t;g>=l&&(b+=2);g>=B&&(r+=2)}}finally{if(f)f.style.display=h}}catch(u){D.console&&console.log(u&&u.stack||u)}}var D=window,y=["break,continue,do,else,for,if,return,while"],E=[[y,"auto,case,char,const,default,double,enum,extern,float,goto,inline,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], -"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],M=[E,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,delegate,dynamic_cast,explicit,export,friend,generic,late_check,mutable,namespace,nullptr,property,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],N=[E,"abstract,assert,boolean,byte,extends,final,finally,implements,import,instanceof,interface,null,native,package,strictfp,super,synchronized,throws,transient"], -O=[N,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,internal,into,is,let,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var,virtual,where"],E=[E,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],P=[y,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"], -Q=[y,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],W=[y,"as,assert,const,copy,drop,enum,extern,fail,false,fn,impl,let,log,loop,match,mod,move,mut,priv,pub,pure,ref,self,static,struct,true,trait,type,unsafe,use"],y=[y,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],R=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)\b/, -V=/\S/,X=v({keywords:[M,O,E,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",P,Q,y],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),F={};p(X,["default-code"]);p(C([],[["pln",/^[^<?]+/],["dec",/^<!\w[^>]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-", -/^<xmp\b[^>]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);p(C([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/], -["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css",/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);p(C([],[["atv",/^[\S\s]+/]]),["uq.val"]);p(v({keywords:M,hashComments:!0,cStyleComments:!0,types:R}),["c","cc","cpp","cxx","cyc","m"]);p(v({keywords:"null,true,false"}),["json"]);p(v({keywords:O,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:R}), -["cs"]);p(v({keywords:N,cStyleComments:!0}),["java"]);p(v({keywords:y,hashComments:!0,multiLineStrings:!0}),["bash","bsh","csh","sh"]);p(v({keywords:P,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),["cv","py","python"]);p(v({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:2}),["perl","pl","pm"]);p(v({keywords:Q, -hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb","ruby"]);p(v({keywords:E,cStyleComments:!0,regexLiterals:!0}),["javascript","js"]);p(v({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,throw,true,try,unless,until,when,while,yes",hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);p(v({keywords:W,cStyleComments:!0,multilineStrings:!0}),["rc","rs","rust"]); -p(C([],[["str",/^[\S\s]+/]]),["regex"]);var Y=D.PR={createSimpleLexer:C,registerLangHandler:p,sourceDecorator:v,PR_ATTRIB_NAME:"atn",PR_ATTRIB_VALUE:"atv",PR_COMMENT:"com",PR_DECLARATION:"dec",PR_KEYWORD:"kwd",PR_LITERAL:"lit",PR_NOCODE:"nocode",PR_PLAIN:"pln",PR_PUNCTUATION:"pun",PR_SOURCE:"src",PR_STRING:"str",PR_TAG:"tag",PR_TYPE:"typ",prettyPrintOne:D.prettyPrintOne=function(a,d,g){var b=document.createElement("div");b.innerHTML="<pre>"+a+"</pre>";b=b.firstChild;g&&J(b,g,!0);K({h:d,j:g,c:b,i:1}); -return b.innerHTML},prettyPrint:D.prettyPrint=function(a,d){function g(){for(var b=D.PR_SHOULD_USE_CONTINUATION?c.now()+250:Infinity;i<p.length&&c.now()<b;i++){for(var d=p[i],j=h,k=d;k=k.previousSibling;){var m=k.nodeType,o=(m===7||m===8)&&k.nodeValue;if(o?!/^\??prettify\b/.test(o):m!==3||/\S/.test(k.nodeValue))break;if(o){j={};o.replace(/\b(\w+)=([\w%+\-.:]+)/g,function(a,b,c){j[b]=c});break}}k=d.className;if((j!==h||e.test(k))&&!v.test(k)){m=!1;for(o=d.parentNode;o;o=o.parentNode)if(f.test(o.tagName)&& -o.className&&e.test(o.className)){m=!0;break}if(!m){d.className+=" prettyprinted";m=j.lang;if(!m){var m=k.match(n),y;if(!m&&(y=U(d))&&t.test(y.tagName))m=y.className.match(n);m&&(m=m[1])}if(w.test(d.tagName))o=1;else var o=d.currentStyle,u=s.defaultView,o=(o=o?o.whiteSpace:u&&u.getComputedStyle?u.getComputedStyle(d,q).getPropertyValue("white-space"):0)&&"pre"===o.substring(0,3);u=j.linenums;if(!(u=u==="true"||+u))u=(u=k.match(/\blinenums\b(?::(\d+))?/))?u[1]&&u[1].length?+u[1]:!0:!1;u&&J(d,u,o);r= -{h:m,c:d,j:u,i:o};K(r)}}}i<p.length?setTimeout(g,250):"function"===typeof a&&a()}for(var b=d||document.body,s=b.ownerDocument||document,b=[b.getElementsByTagName("pre"),b.getElementsByTagName("code"),b.getElementsByTagName("xmp")],p=[],m=0;m<b.length;++m)for(var j=0,k=b[m].length;j<k;++j)p.push(b[m][j]);var b=q,c=Date;c.now||(c={now:function(){return+new Date}});var i=0,r,n=/\blang(?:uage)?-([\w.]+)(?!\S)/,e=/\bprettyprint\b/,v=/\bprettyprinted\b/,w=/pre|xmp/i,t=/^code$/i,f=/^(?:pre|code|xmp)$/i, -h={};g()}};typeof define==="function"&&define.amd&&define("google-code-prettify",[],function(){return Y})})();}() - -// lang-apollo.js -PR.registerLangHandler(PR.createSimpleLexer([["com",/^#[^\n\r]*/,null,"#"],["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"']],[["kwd",/^(?:ADS|AD|AUG|BZF|BZMF|CAE|CAF|CA|CCS|COM|CS|DAS|DCA|DCOM|DCS|DDOUBL|DIM|DOUBLE|DTCB|DTCF|DV|DXCH|EDRUPT|EXTEND|INCR|INDEX|NDX|INHINT|LXCH|MASK|MSK|MP|MSU|NOOP|OVSK|QXCH|RAND|READ|RELINT|RESUME|RETURN|ROR|RXOR|SQUARE|SU|TCR|TCAA|OVSK|TCF|TC|TS|WAND|WOR|WRITE|XCH|XLQ|XXALQ|ZL|ZQ|ADD|ADZ|SUB|SUZ|MPY|MPR|MPZ|DVP|COM|ABS|CLA|CLZ|LDQ|STO|STQ|ALS|LLS|LRS|TRA|TSQ|TMI|TOV|AXT|TIX|DLY|INP|OUT)\s/, -null],["typ",/^(?:-?GENADR|=MINUS|2BCADR|VN|BOF|MM|-?2CADR|-?[1-6]DNADR|ADRES|BBCON|[ES]?BANK=?|BLOCK|BNKSUM|E?CADR|COUNT\*?|2?DEC\*?|-?DNCHAN|-?DNPTR|EQUALS|ERASE|MEMORY|2?OCT|REMADR|SETLOC|SUBRO|ORG|BSS|BES|SYN|EQU|DEFINE|END)\s/,null],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[!-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["apollo","agc","aea"]); - -// lang-basic.js -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["str",/^"(?:[^\n\r"\\]|\\.)*(?:"|$)/,a,'"'],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["com",/^REM[^\n\r]*/,a],["kwd",/^\b(?:AND|CLOSE|CLR|CMD|CONT|DATA|DEF ?FN|DIM|END|FOR|GET|GOSUB|GOTO|IF|INPUT|LET|LIST|LOAD|NEW|NEXT|NOT|ON|OPEN|OR|POKE|PRINT|READ|RESTORE|RETURN|RUN|SAVE|STEP|STOP|SYS|THEN|TO|VERIFY|WAIT)\b/,a],["pln",/^[a-z][^\W_]?(?:\$|%)?/i,a],["lit",/^(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?/i,a,"0123456789"],["pun", -/^.[^\s\w"$%.]*/,a]]),["basic","cbm"]); - -// lang-clj.js -/* - Copyright (C) 2011 Google Inc. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -*/ -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["opn",/^[([{]+/,a,"([{"],["clo",/^[)\]}]+/,a,")]}"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:def|if|do|let|quote|var|fn|loop|recur|throw|try|monitor-enter|monitor-exit|defmacro|defn|defn-|macroexpand|macroexpand-1|for|doseq|dosync|dotimes|and|or|when|not|assert|doto|proxy|defstruct|first|rest|cons|defprotocol|deftype|defrecord|reify|defmulti|defmethod|meta|with-meta|ns|in-ns|create-ns|import|intern|refer|alias|namespace|resolve|ref|deref|refset|new|set!|memfn|to-array|into-array|aset|gen-class|reduce|map|filter|find|nil?|empty?|hash-map|hash-set|vec|vector|seq|flatten|reverse|assoc|dissoc|list|list?|disj|get|union|difference|intersection|extend|extend-type|extend-protocol|prn)\b/,a], -["typ",/^:[\dA-Za-z-]+/]]),["clj"]); - -// lang-css.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n\u000c"]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]+)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//], -["com",/^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}\b/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); - -// lang-dart.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"]],[["com",/^#!.*/],["kwd",/^\b(?:import|library|part of|part|as|show|hide)\b/i],["com",/^\/\/.*/],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["kwd",/^\b(?:class|interface)\b/i],["kwd",/^\b(?:assert|break|case|catch|continue|default|do|else|finally|for|if|in|is|new|return|super|switch|this|throw|try|while)\b/i],["kwd",/^\b(?:abstract|const|extends|factory|final|get|implements|native|operator|set|static|typedef|var)\b/i], -["typ",/^\b(?:bool|double|dynamic|int|num|object|string|void)\b/i],["kwd",/^\b(?:false|null|true)\b/i],["str",/^r?'''[\S\s]*?[^\\]'''/],["str",/^r?"""[\S\s]*?[^\\]"""/],["str",/^r?'('|[^\n\f\r]*?[^\\]')/],["str",/^r?"("|[^\n\f\r]*?[^\\]")/],["pln",/^[$_a-z]\w*/i],["pun",/^[!%&*+/:<-?^|~-]/],["lit",/^\b0x[\da-f]+/i],["lit",/^\b\d+(?:\.\d*)?(?:e[+-]?\d+)?/i],["lit",/^\b\.\d+(?:e[+-]?\d+)?/i],["pun",/^[(),.;[\]{}]/]]), -["dart"]); - -// lang-erlang.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\u000b\u000c\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["lit",/^[a-z]\w*/],["lit",/^'(?:[^\n\f\r'\\]|\\[^&])+'?/,null,"'"],["lit",/^\?[^\t\n ({]+/,null,"?"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^%[^\n]*/],["kwd",/^(?:module|attributes|do|let|in|letrec|apply|call|primop|case|of|end|when|fun|try|catch|receive|after|char|integer|float,atom,string,var)\b/], -["kwd",/^-[_a-z]+/],["typ",/^[A-Z_]\w*/],["pun",/^[,.;]/]]),["erlang","erl"]); - -// lang-go.js -// PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["pln",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])+(?:'|$)|`[^`]*(?:`|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\/\*[\S\s]*?\*\/)/],["pln",/^(?:[^"'/`]|\/(?![*/]))+/]]),["go"]); - -// lang-hs.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\u000b\u000c\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/, -null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]); - -// lang-lisp.js -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a], -["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","lsp","scm","ss","rkt"]); - -// lang-llvm.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^!?"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["com",/^;[^\n\r]*/,null,";"]],[["pln",/^[!%@](?:[$\-.A-Z_a-z][\w$\-.]*|\d+)/],["kwd",/^[^\W\d]\w*/,null],["lit",/^\d+\.\d+/],["lit",/^(?:\d+|0[Xx][\dA-Fa-f]+)/],["pun",/^[(-*,:<->[\]{}]|\.\.\.$/]]),["llvm","ll"]); - -// lang-lua.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$))/,null,"\"'"]],[["com",/^--(?:\[(=*)\[[\S\s]*?(?:]\1]|$)|[^\n\r]*)/],["str",/^\[(=*)\[[\S\s]*?(?:]\1]|$)/],["kwd",/^(?:and|break|do|else|elseif|end|false|for|function|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/,null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i], -["pln",/^[_a-z]\w*/i],["pun",/^[^\w\t\n\r \xa0][^\w\t\n\r "'+=\xa0-]*/]]),["lua"]); - -// lang-ml.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^#(?:if[\t\n\r \xa0]+(?:[$_a-z][\w']*|``[^\t\n\r`]*(?:``|$))|else|endif|light)/i,null,"#"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])(?:'|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\(\*[\S\s]*?\*\))/],["kwd",/^(?:abstract|and|as|assert|begin|class|default|delegate|do|done|downcast|downto|elif|else|end|exception|extern|false|finally|for|fun|function|if|in|inherit|inline|interface|internal|lazy|let|match|member|module|mutable|namespace|new|null|of|open|or|override|private|public|rec|return|static|struct|then|to|true|try|type|upcast|use|val|void|when|while|with|yield|asr|land|lor|lsl|lsr|lxor|mod|sig|atomic|break|checked|component|const|constraint|constructor|continue|eager|event|external|fixed|functor|global|include|method|mixin|object|parallel|process|protected|pure|sealed|trait|virtual|volatile)\b/], -["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^(?:[_a-z][\w']*[!#?]?|``[^\t\n\r`]*(?:``|$))/i],["pun",/^[^\w\t\n\r "'\xa0]+/]]),["fs","ml"]); - -// lang-mumps.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"]|\\.)*"/,null,'"']],[["com",/^;[^\n\r]*/,null,";"],["dec",/^\$(?:d|device|ec|ecode|es|estack|et|etrap|h|horolog|i|io|j|job|k|key|p|principal|q|quit|st|stack|s|storage|sy|system|t|test|tl|tlevel|tr|trestart|x|y|z[a-z]*|a|ascii|c|char|d|data|e|extract|f|find|fn|fnumber|g|get|j|justify|l|length|na|name|o|order|p|piece|ql|qlength|qs|qsubscript|q|query|r|random|re|reverse|s|select|st|stack|t|text|tr|translate|nan)\b/i, -null],["kwd",/^(?:[^$]b|break|c|close|d|do|e|else|f|for|g|goto|h|halt|h|hang|i|if|j|job|k|kill|l|lock|m|merge|n|new|o|open|q|quit|r|read|s|set|tc|tcommit|tre|trestart|tro|trollback|ts|tstart|u|use|v|view|w|write|x|xecute)\b/i,null],["lit",/^[+-]?(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?/i],["pln",/^[a-z][^\W_]*/i],["pun",/^[^\w\t\n\r"$%;^\xa0]|_/]]),["mumps"]); - -// lang-n.js -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["str",/^(?:'(?:[^\n\r'\\]|\\.)*'|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,a,'"'],["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,a,"#"],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["str",/^@"(?:[^"]|"")*(?:"|$)/,a],["str",/^<#[^#>]*(?:#>|$)/,a],["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,a],["com",/^\/\/[^\n\r]*/,a],["com",/^\/\*[\S\s]*?(?:\*\/|$)/, -a],["kwd",/^(?:abstract|and|as|base|catch|class|def|delegate|enum|event|extern|false|finally|fun|implements|interface|internal|is|macro|match|matches|module|mutable|namespace|new|null|out|override|params|partial|private|protected|public|ref|sealed|static|struct|syntax|this|throw|true|try|type|typeof|using|variant|virtual|volatile|when|where|with|assert|assert2|async|break|checked|continue|do|else|ensures|for|foreach|if|late|lock|new|nolate|otherwise|regexp|repeat|requires|return|surroundwith|unchecked|unless|using|while|yield)\b/, -a],["typ",/^(?:array|bool|byte|char|decimal|double|float|int|list|long|object|sbyte|short|string|ulong|uint|ufloat|ulong|ushort|void)\b/,a],["lit",/^@[$_a-z][\w$@]*/i,a],["typ",/^@[A-Z]+[a-z][\w$@]*/,a],["pln",/^'?[$_a-z][\w$@]*/i,a],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,a,"0123456789"],["pun",/^.[^\s\w"-$'./@`]*/,a]]),["n","nemerle"]); - -// lang-pascal.js -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["str",/^'(?:[^\n\r'\\]|\\.)*(?:'|$)/,a,"'"],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["com",/^\(\*[\S\s]*?(?:\*\)|$)|^{[\S\s]*?(?:}|$)/,a],["kwd",/^(?:absolute|and|array|asm|assembler|begin|case|const|constructor|destructor|div|do|downto|else|end|external|for|forward|function|goto|if|implementation|in|inline|interface|interrupt|label|mod|not|object|of|or|packed|procedure|program|record|repeat|set|shl|shr|then|to|type|unit|until|uses|var|virtual|while|with|xor)\b/i,a], -["lit",/^(?:true|false|self|nil)/i,a],["pln",/^[a-z][^\W_]*/i,a],["lit",/^(?:\$[\da-f]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?)/i,a,"0123456789"],["pun",/^.[^\s\w$'./@]*/,a]]),["pascal"]); - -// lang-proto.js -PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]); - -// lang-r.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^'\\]|\\[\S\s])*(?:'|$)/,null,"'"]],[["com",/^#.*/],["kwd",/^(?:if|else|for|while|repeat|in|next|break|return|switch|function)(?![\w.])/],["lit",/^0[Xx][\dA-Fa-f]+([Pp]\d+)?[Li]?/],["lit",/^[+-]?(\d+(\.\d+)?|\.\d+)([Ee][+-]?\d+)?[Li]?/],["lit",/^(?:NULL|NA(?:_(?:integer|real|complex|character)_)?|Inf|TRUE|FALSE|NaN|\.\.(?:\.|\d+))(?![\w.])/], -["pun",/^(?:<<?-|->>?|-|==|<=|>=|<|>|&&?|!=|\|\|?|[!*+/^]|%.*?%|[$=@~]|:{1,3}|[(),;?[\]{}])/],["pln",/^(?:[A-Za-z]+[\w.]*|\.[^\W\d][\w.]*)(?![\w.])/],["str",/^`.+`/]]),["r","s","R","S","Splus"]); - -// lang-rd.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["lit",/^\\(?:cr|l?dots|R|tab)\b/],["kwd",/^\\[@-Za-z]+/],["kwd",/^#(?:ifn?def|endif)/],["pln",/^\\[{}]/],["pun",/^[()[\]{}]+/]]),["Rd","rd"]); - -// lang-scala.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:""(?:""?(?!")|[^"\\]|\\.)*"{0,3}|(?:[^\n\r"\\]|\\.)*"?)/,null,'"'],["lit",/^`(?:[^\n\r\\`]|\\.)*`?/,null,"`"],["pun",/^[!#%&(--:-@[-^{-~]+/,null,"!#%&()*+,-:;<=>?@[\\]^{|}~"]],[["str",/^'(?:[^\n\r'\\]|\\(?:'|[^\n\r']+))'/],["lit",/^'[$A-Z_a-z][\w$]*(?![\w$'])/],["kwd",/^(?:abstract|case|catch|class|def|do|else|extends|final|finally|for|forSome|if|implicit|import|lazy|match|new|object|override|package|private|protected|requires|return|sealed|super|throw|trait|try|type|val|var|while|with|yield)\b/], -["lit",/^(?:true|false|null|this)\b/],["lit",/^(?:0(?:[0-7]+|x[\da-f]+)l?|(?:0|[1-9]\d*)(?:(?:\.\d+)?(?:e[+-]?\d+)?f?|l?)|\\.\d+(?:e[+-]?\d+)?f?)/i],["typ",/^[$_]*[A-Z][\d$A-Z_]*[a-z][\w$]*/],["pln",/^[$A-Z_a-z][\w$]*/],["com",/^\/(?:\/.*|\*(?:\/|\**[^*/])*(?:\*+\/?)?)/],["pun",/^(?:\.+|\/)/]]),["scala"]); - -// lang-sql.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^(?:"(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')/,null,"\"'"]],[["com",/^(?:--[^\n\r]*|\/\*[\S\s]*?(?:\*\/|$))/],["kwd",/^(?:add|all|alter|and|any|apply|as|asc|authorization|backup|begin|between|break|browse|bulk|by|cascade|case|check|checkpoint|close|clustered|coalesce|collate|column|commit|compute|connect|constraint|contains|containstable|continue|convert|create|cross|current|current_date|current_time|current_timestamp|current_user|cursor|database|dbcc|deallocate|declare|default|delete|deny|desc|disk|distinct|distributed|double|drop|dummy|dump|else|end|errlvl|escape|except|exec|execute|exists|exit|fetch|file|fillfactor|following|for|foreign|freetext|freetexttable|from|full|function|goto|grant|group|having|holdlock|identity|identitycol|identity_insert|if|in|index|inner|insert|intersect|into|is|join|key|kill|left|like|lineno|load|match|matched|merge|natural|national|nocheck|nonclustered|nocycle|not|null|nullif|of|off|offsets|on|open|opendatasource|openquery|openrowset|openxml|option|or|order|outer|over|partition|percent|pivot|plan|preceding|precision|primary|print|proc|procedure|public|raiserror|read|readtext|reconfigure|references|replication|restore|restrict|return|revoke|right|rollback|rowcount|rowguidcol|rows?|rule|save|schema|select|session_user|set|setuser|shutdown|some|start|statistics|system_user|table|textsize|then|to|top|tran|transaction|trigger|truncate|tsequal|unbounded|union|unique|unpivot|update|updatetext|use|user|using|values|varying|view|waitfor|when|where|while|with|within|writetext|xml)(?=[^\w-]|$)/i, -null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^[_a-z][\w-]*/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'+\xa0-]*/]]),["sql"]); - -// lang-tcl.js -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["opn",/^{+/,a,"{"],["clo",/^}+/,a,"}"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:after|append|apply|array|break|case|catch|continue|error|eval|exec|exit|expr|for|foreach|if|incr|info|proc|return|set|switch|trace|uplevel|upvar|while)\b/,a],["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit", -/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["tcl"]); - -// lang-tex.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["kwd",/^\\[@-Za-z]+/],["kwd",/^\\./],["typ",/^[$&]/],["lit",/[+-]?(?:\.\d+|\d+(?:\.\d*)?)(cm|em|ex|in|pc|pt|bp|mm)/i],["pun",/^[()=[\]{}]+/]]),["latex","tex"]); - -// lang-vb.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0\u2028\u2029]+/,null,"\t\n\r \u00a0\u2028\u2029"],["str",/^(?:["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})(?:["\u201c\u201d]c|$)|["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})*(?:["\u201c\u201d]|$))/i,null,'"\u201c\u201d'],["com",/^['\u2018\u2019](?:_(?:\r\n?|[^\r]?)|[^\n\r_\u2028\u2029])*/,null,"'\u2018\u2019"]],[["kwd",/^(?:addhandler|addressof|alias|and|andalso|ansi|as|assembly|auto|boolean|byref|byte|byval|call|case|catch|cbool|cbyte|cchar|cdate|cdbl|cdec|char|cint|class|clng|cobj|const|cshort|csng|cstr|ctype|date|decimal|declare|default|delegate|dim|directcast|do|double|each|else|elseif|end|endif|enum|erase|error|event|exit|finally|for|friend|function|get|gettype|gosub|goto|handles|if|implements|imports|in|inherits|integer|interface|is|let|lib|like|long|loop|me|mod|module|mustinherit|mustoverride|mybase|myclass|namespace|new|next|not|notinheritable|notoverridable|object|on|option|optional|or|orelse|overloads|overridable|overrides|paramarray|preserve|private|property|protected|public|raiseevent|readonly|redim|removehandler|resume|return|select|set|shadows|shared|short|single|static|step|stop|string|structure|sub|synclock|then|throw|to|try|typeof|unicode|until|variant|wend|when|while|with|withevents|writeonly|xor|endif|gosub|let|variant|wend)\b/i, -null],["com",/^rem\b.*/i],["lit",/^(?:true\b|false\b|nothing\b|\d+(?:e[+-]?\d+[dfr]?|[dfilrs])?|(?:&h[\da-f]+|&o[0-7]+)[ils]?|\d*\.\d+(?:e[+-]?\d+)?[dfr]?|#\s+(?:\d+[/-]\d+[/-]\d+(?:\s+\d+:\d+(?::\d+)?(\s*(?:am|pm))?)?|\d+:\d+(?::\d+)?(\s*(?:am|pm))?)\s+#)/i],["pln",/^(?:(?:[a-z]|_\w)\w*(?:\[[!#%&@]+])?|\[(?:[a-z]|_\w)\w*])/i],["pun",/^[^\w\t\n\r "'[\]\xa0\u2018\u2019\u201c\u201d\u2028\u2029]+/],["pun",/^(?:\[|])/]]),["vb","vbs"]); - -// lang-vhdl.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"]],[["str",/^(?:[box]?"(?:[^"]|"")*"|'.')/i],["com",/^--[^\n\r]*/],["kwd",/^(?:abs|access|after|alias|all|and|architecture|array|assert|attribute|begin|block|body|buffer|bus|case|component|configuration|constant|disconnect|downto|else|elsif|end|entity|exit|file|for|function|generate|generic|group|guarded|if|impure|in|inertial|inout|is|label|library|linkage|literal|loop|map|mod|nand|new|next|nor|not|null|of|on|open|or|others|out|package|port|postponed|procedure|process|pure|range|record|register|reject|rem|report|return|rol|ror|select|severity|shared|signal|sla|sll|sra|srl|subtype|then|to|transport|type|unaffected|units|until|use|variable|wait|when|while|with|xnor|xor)(?=[^\w-]|$)/i, -null],["typ",/^(?:bit|bit_vector|character|boolean|integer|real|time|string|severity_level|positive|natural|signed|unsigned|line|text|std_u?logic(?:_vector)?)(?=[^\w-]|$)/i,null],["typ",/^'(?:active|ascending|base|delayed|driving|driving_value|event|high|image|instance_name|last_active|last_event|last_value|left|leftof|length|low|path_name|pos|pred|quiet|range|reverse_range|right|rightof|simple_name|stable|succ|transaction|val|value)(?=[^\w-]|$)/i,null],["lit",/^\d+(?:_\d+)*(?:#[\w.\\]+#(?:[+-]?\d+(?:_\d+)*)?|(?:\.\d+(?:_\d+)*)?(?:e[+-]?\d+(?:_\d+)*)?)/i], -["pln",/^(?:[a-z]\w*|\\[^\\]*\\)/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'\xa0-]*/]]),["vhdl","vhd"]); - -// lang-wiki.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\d\t a-gi-z\xa0]+/,null,"\t \u00a0abcdefgijklmnopqrstuvwxyz0123456789"],["pun",/^[*=[\]^~]+/,null,"=*~^[]"]],[["lang-wiki.meta",/(?:^^|\r\n?|\n)(#[a-z]+)\b/],["lit",/^[A-Z][a-z][\da-z]+[A-Z][a-z][^\W_]+\b/],["lang-",/^{{{([\S\s]+?)}}}/],["lang-",/^`([^\n\r`]+)`/],["str",/^https?:\/\/[^\s#/?]*(?:\/[^\s#?]*)?(?:\?[^\s#]*)?(?:#\S*)?/i],["pln",/^(?:\r\n|[\S\s])[^\n\r#*=A-[^`h{~]*/]]),["wiki"]); -PR.registerLangHandler(PR.createSimpleLexer([["kwd",/^#[a-z]+/i,null,"#"]],[]),["wiki.meta"]); - -// lang-yaml.js -var a=null; -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]); - -/* - * zClip :: jQuery ZeroClipboard v1.1.1 - * http://steamdev.com/zclip - * - * Copyright 2011, SteamDev - * Released under the MIT license. - * http://www.opensource.org/licenses/mit-license.php - * - * Date: Wed Jun 01, 2011 - */ - -(function(a){a.fn.zclip=function(c){if(typeof c=="object"&&!c.length){var b=a.extend({path:"ZeroClipboard.swf",copy:null,beforeCopy:null,afterCopy:null,clickAfter:true,setHandCursor:true,setCSSEffects:true},c);return this.each(function(){var e=a(this);if(e.is(":visible")&&(typeof b.copy=="string"||a.isFunction(b.copy))){ZeroClipboard.setMoviePath(b.path);var d=new ZeroClipboard.Client();if(a.isFunction(b.copy)){e.bind("zClip_copy",b.copy)}if(a.isFunction(b.beforeCopy)){e.bind("zClip_beforeCopy",b.beforeCopy)}if(a.isFunction(b.afterCopy)){e.bind("zClip_afterCopy",b.afterCopy)}d.setHandCursor(b.setHandCursor);d.setCSSEffects(b.setCSSEffects);d.addEventListener("mouseOver",function(f){e.trigger("mouseenter")});d.addEventListener("mouseOut",function(f){e.trigger("mouseleave")});d.addEventListener("mouseDown",function(f){e.trigger("mousedown");if(!a.isFunction(b.copy)){d.setText(b.copy)}else{d.setText(e.triggerHandler("zClip_copy"))}if(a.isFunction(b.beforeCopy)){e.trigger("zClip_beforeCopy")}});d.addEventListener("complete",function(f,g){if(a.isFunction(b.afterCopy)){e.trigger("zClip_afterCopy")}else{if(g.length>500){g=g.substr(0,500)+"...\n\n("+(g.length-500)+" characters not shown)"}e.removeClass("hover");alert("Copied text to clipboard:\n\n "+g)}if(b.clickAfter){e.trigger("click")}});d.glue(e[0],e.parent()[0]);a(window).bind("load resize",function(){d.reposition()})}})}else{if(typeof c=="string"){return this.each(function(){var f=a(this);c=c.toLowerCase();var e=f.data("zclipId");var d=a("#"+e+".zclip");if(c=="remove"){d.remove();f.removeClass("active hover")}else{if(c=="hide"){d.hide();f.removeClass("active hover")}else{if(c=="show"){d.show()}}}})}}}})(jQuery);var ZeroClipboard={version:"1.0.7",clients:{},moviePath:"ZeroClipboard.swf",nextId:1,$:function(a){if(typeof(a)=="string"){a=document.getElementById(a)}if(!a.addClass){a.hide=function(){/*this.style.display="none"*/};a.show=function(){this.style.display=""};a.addClass=function(b){this.removeClass(b);this.className+=" "+b};a.removeClass=function(d){var e=this.className.split(/\s+/);var b=-1;for(var c=0;c<e.length;c++){if(e[c]==d){b=c;c=e.length}}if(b>-1){e.splice(b,1);this.className=e.join(" ")}return this};a.hasClass=function(b){return !!this.className.match(new RegExp("\\s*"+b+"\\s*"))}}return a},setMoviePath:function(a){this.moviePath=a},dispatch:function(d,b,c){var a=this.clients[d];if(a){a.receiveEvent(b,c)}},register:function(b,a){this.clients[b]=a},getDOMObjectPosition:function(c,a){var b={left:0,top:0,width:c.width?c.width:c.offsetWidth,height:c.height?c.height:c.offsetHeight};if(c&&(c!=a)){b.left+=c.offsetLeft;b.top+=c.offsetTop}return b},Client:function(a){this.handlers={};this.id=ZeroClipboard.nextId++;this.movieId="ZeroClipboardMovie_"+this.id;ZeroClipboard.register(this.id,this);if(a){this.glue(a)}}};ZeroClipboard.Client.prototype={id:0,ready:false,movie:null,clipText:"",handCursorEnabled:true,cssEffects:true,handlers:null,glue:function(d,b,e){this.domElement=ZeroClipboard.$(d);var f=99;if(this.domElement.style.zIndex){f=parseInt(this.domElement.style.zIndex,10)+1}if(typeof(b)=="string"){b=ZeroClipboard.$(b)}else{if(typeof(b)=="undefined"){b=document.getElementsByTagName("body")[0]}}var c=ZeroClipboard.getDOMObjectPosition(this.domElement,b);this.div=document.createElement("div");this.div.className="zclip";this.div.id="zclip-"+this.movieId;$(this.domElement).data("zclipId","zclip-"+this.movieId);var a=this.div.style;a.position="absolute";a.left=""+c.left+"px";a.top=""+c.top+"px";a.width=""+c.width+"px";a.height=""+c.height+"px";a.zIndex=f;if(typeof(e)=="object"){for(addedStyle in e){a[addedStyle]=e[addedStyle]}}b.appendChild(this.div);this.div.innerHTML=this.getHTML(c.width,c.height)},getHTML:function(d,a){var c="";var b="id="+this.id+"&width="+d+"&height="+a;if(navigator.userAgent.match(/MSIE/)){var e=location.href.match(/^https/i)?"https://":"http://";c+='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="'+e+'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="'+d+'" height="'+a+'" id="'+this.movieId+'" align="middle"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="false" /><param name="movie" value="'+ZeroClipboard.moviePath+'" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="bgcolor" value="#ffffff" /><param name="flashvars" value="'+b+'"/><param name="wmode" value="transparent"/></object>'}else{c+='<embed id="'+this.movieId+'" src="'+ZeroClipboard.moviePath+'" loop="false" menu="false" quality="best" bgcolor="#ffffff" width="'+d+'" height="'+a+'" name="'+this.movieId+'" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="'+b+'" wmode="transparent" />'}return c},hide:function(){if(this.div){this.div.style.left="-2000px"}},show:function(){this.reposition()},destroy:function(){if(this.domElement&&this.div){this.hide();this.div.innerHTML="";var a=document.getElementsByTagName("body")[0];try{a.removeChild(this.div)}catch(b){}this.domElement=null;this.div=null}},reposition:function(c){if(c){this.domElement=ZeroClipboard.$(c);if(!this.domElement){this.hide()}}if(this.domElement&&this.div){var b=ZeroClipboard.getDOMObjectPosition(this.domElement);var a=this.div.style;a.left=""+b.left+"px";a.top=""+b.top+"px"}},setText:function(a){this.clipText=a;if(this.ready){this.movie.setText(a)}},addEventListener:function(a,b){a=a.toString().toLowerCase().replace(/^on/,"");if(!this.handlers[a]){this.handlers[a]=[]}this.handlers[a].push(b)},setHandCursor:function(a){this.handCursorEnabled=a;if(this.ready){this.movie.setHandCursor(a)}},setCSSEffects:function(a){this.cssEffects=!!a},receiveEvent:function(d,f){d=d.toString().toLowerCase().replace(/^on/,"");switch(d){case"load":this.movie=document.getElementById(this.movieId);if(!this.movie){var c=this;setTimeout(function(){c.receiveEvent("load",null)},1);return}if(!this.ready&&navigator.userAgent.match(/Firefox/)&&navigator.userAgent.match(/Windows/)){var c=this;setTimeout(function(){c.receiveEvent("load",null)},100);this.ready=true;return}this.ready=true;try{this.movie.setText(this.clipText)}catch(h){}try{this.movie.setHandCursor(this.handCursorEnabled)}catch(h){}break;case"mouseover":if(this.domElement&&this.cssEffects){this.domElement.addClass("hover");if(this.recoverActive){this.domElement.addClass("active")}}break;case"mouseout":if(this.domElement&&this.cssEffects){this.recoverActive=false;if(this.domElement.hasClass("active")){this.domElement.removeClass("active");this.recoverActive=true}this.domElement.removeClass("hover")}break;case"mousedown":if(this.domElement&&this.cssEffects){this.domElement.addClass("active")}break;case"mouseup":if(this.domElement&&this.cssEffects){this.domElement.removeClass("active");this.recoverActive=false}break}if(this.handlers[d]){for(var b=0,a=this.handlers[d].length;b<a;b++){var g=this.handlers[d][b];if(typeof(g)=="function"){g(this,f)}else{if((typeof(g)=="object")&&(g.length==2)){g[0][g[1]](this,f)}else{if(typeof(g)=="string"){window[g](this,f)}}}}}}}; diff --git a/public/ng/js/min/gogs-min.js b/public/ng/js/min/gogs-min.js deleted file mode 100644 index 464ba542..00000000 --- a/public/ng/js/min/gogs-min.js +++ /dev/null @@ -1,6 +0,0 @@ -function Tabs(e){function t(e){console.log("hide",e),e.removeClass("js-tab-nav-show"),$(e.data("tab-target")).removeClass("js-tab-show").hide()}function n(e){console.log("show",e),e.addClass("js-tab-nav-show"),$(e.data("tab-target")).addClass("js-tab-show").show()}var i=$(e);if(i.length){var r=i.find(".js-tab-nav-show");r.length&&$(r.data("tab-target")).addClass("js-tab-show"),i.on("click",".js-tab-nav",function(e){e.preventDefault();var o=$(this);o.hasClass("js-tab-nav-show")||(r=i.find(".js-tab-nav-show").eq(0),t(r),n(o))}),console.log("init tabs @",e)}}function Preview(e,t){function n(e){return e.find(".js-preview-input").eq(0)}function i(e){return e.hasClass("js-preview-container")?e:e.find(".js-preview-container").eq(0)}var r=$(e),o=$(t),a=n(o);if(!a.length)return void console.log("[preview]: no preview input");var s=i(o);return s.length?(r.on("click",function(){$.post("/api/v1/markdown",{text:a.val()},function(e){s.html(e)})}),void console.log("[preview]: init preview @",e,"&",t)):void console.log("[preview]: no preview container")}function initCore(){Gogs.renderMarkdown(),0==$(".code-diff").length?Gogs.renderCodeView():Gogs.renderDiffView(),$(".js-tab-nav").click(function(e){$(this).hasClass("js-tab-nav-show")||($(this).parent().find(".js-tab-nav-show").each(function(){$(this).removeClass("js-tab-nav-show"),$($(this).data("tab-target")).hide()}),$(this).addClass("js-tab-nav-show"),$($(this).data("tab-target")).show()),e.preventDefault()}),$(document).on("click",".popup-modal-dismiss",function(e){e.preventDefault(),$.magnificPopup.close()}),$(".collapse").hide(),$(".tipsy-tooltip").tipsy({fade:!0})}function initUserSetting(){var t=$("#username"),n=$("#user-profile-form");$("#change-username-btn").magnificPopup({modal:!0,callbacks:{open:function(){t.data("uname")==t.val()&&($.magnificPopup.close(),n.submit())}}}).click(function(){return t.data("uname")!=t.val()?(e.preventDefault(),!0):void 0}),$("#change-username-submit").click(function(){$.magnificPopup.close(),n.submit()}),$(".show-form-btn").click(function(){$($(this).data("target-form")).removeClass("hide")}),$("#delete-account-btn").magnificPopup({modal:!0}).click(function(e){return e.preventDefault(),!0}),$("#delete-account-submit").click(function(){$.magnificPopup.close(),$("#delete-account-form").submit()})}function initRepoCreate(){$("#repo-create-owner-list").on("click","li",function(){if(!$(this).hasClass("checked")){var e=$(this).data("uid");$("#repo-owner-id").val(e),$("#repo-owner-avatar").attr("src",$(this).find("img").attr("src")),$("#repo-owner-name").text($(this).text().trim()),$(this).parent().find(".checked").removeClass("checked"),$(this).addClass("checked"),console.log("set repo owner to uid :",e,$(this).text().trim())}}),$("#auth-button").click(function(e){$("#repo-migrate-auth").slideToggle("fast"),e.preventDefault()}),console.log("initRepoCreate")}function initRepo(){$("#repo-clone-ssh").click(function(){$(this).removeClass("btn-gray").addClass("btn-blue"),$("#repo-clone-https").removeClass("btn-blue").addClass("btn-gray"),$("#repo-clone-url").val($(this).data("link")),$(".clone-url").text($(this).data("link"))}),$("#repo-clone-https").click(function(){$(this).removeClass("btn-gray").addClass("btn-blue"),$("#repo-clone-ssh").removeClass("btn-blue").addClass("btn-gray"),$("#repo-clone-url").val($(this).data("link")),$(".clone-url").text($(this).data("link"))});var e=$("#repo-clone-copy");e.hover(function(){Gogs.bindCopy($(this))}),e.tipsy({fade:!0}),$(".markdown-preview").click(function(){var e=$(this);e.toggleAjax(function(t){$(e.data("preview")).html(t)},function(){$(e.data("preview")).html("no content")})})}function initHookTypeChange(){$("select#hook-type").on("change",function(){hookTypes=["Gogs","Slack"];var e=$(this).val();hookTypes.forEach(function(t){e===t?$("div#"+t.toLowerCase()).toggleShow():$("div#"+t.toLowerCase()).toggleHide()})})}function initRepoRelease(){$("#release-new-target-branch-list li").click(function(){$(this).hasClass("checked")||($("#repo-branch-current").text($(this).text()),$("#tag-target").val($(this).text()),$(this).parent().find(".checked").removeClass("checked"),$(this).addClass("checked"))})}function initRepoSetting(){var t=$("#repo_name"),n=$("#repo-setting-form");$("#change-reponame-btn").magnificPopup({modal:!0,callbacks:{open:function(){t.data("repo-name")==t.val()&&($.magnificPopup.close(),n.submit())}}}).click(function(){return t.data("repo-name")!=t.val()?(e.preventDefault(),!0):void 0}),$("#change-reponame-submit").click(function(){$.magnificPopup.close(),n.submit()}),initHookTypeChange(),$("#transfer-repo-btn").magnificPopup({modal:!0}),$("#transfer-repo-submit").click(function(){$.magnificPopup.close(),$("#transfer-repo-form").submit()}),$("#delete-repo-btn").magnificPopup({modal:!0}),$("#delete-repo-submit").click(function(){$.magnificPopup.close(),$("#delete-repo-form").submit()}),$("#repo-collab-list hr:last-child").remove();var i=$("#repo-collaborator").next().next().find("ul");$("#repo-collaborator").on("keyup",function(){var e=$(this);return e.val()?void Gogs.searchUsers(e.val(),i):void i.toggleHide()}).on("focus",function(){$(this).val()?i.toggleShow():i.toggleHide()}).next().next().find("ul").on("click","li",function(){$("#repo-collaborator").val($(this).find(".username").text()),i.toggleHide()})}function initOrgSetting(){var t=$("#orgname"),n=$("#org-setting-form");$("#change-orgname-btn").magnificPopup({modal:!0,callbacks:{open:function(){t.data("orgname")==t.val()&&($.magnificPopup.close(),n.submit())}}}).click(function(){return t.data("orgname")!=t.val()?(e.preventDefault(),!0):void 0}),$("#change-orgname-submit").click(function(){$.magnificPopup.close(),n.submit()}),$("#delete-org-btn").magnificPopup({modal:!0}).click(function(e){return e.preventDefault(),!0}),$("#delete-org-submit").click(function(){$.magnificPopup.close(),$("#delete-org-form").submit()}),initHookTypeChange()}function initInvite(){var e=$("#org-member-invite-list");$("#org-member-invite").on("keyup",function(){var t=$(this);return t.val()?void Gogs.searchUsers(t.val(),e):void e.toggleHide()}).on("focus",function(){$(this).val()?e.toggleShow():e.toggleHide()}).next().next().find("ul").on("click","li",function(){$("#org-member-invite").val($(this).find(".username").text()),e.toggleHide()})}function initOrgTeamCreate(){$("#org-team-delete").magnificPopup({modal:!0}).click(function(e){return e.preventDefault(),!0}),$("#delete-team-submit").click(function(){$.magnificPopup.close();var e=$("#team-create-form");e.attr("action",e.data("delete-url"))})}function initTeamMembersList(){var e=$("#org-team-members-list");$("#org-team-members-add").on("keyup",function(){var t=$(this);return t.val()?void Gogs.searchUsers(t.val(),e):void e.toggleHide()}).on("focus",function(){$(this).val()?e.toggleShow():e.toggleHide()}).next().next().find("ul").on("click","li",function(){$("#org-team-members-add").val($(this).find(".username").text()),e.toggleHide()})}function initTeamRepositoriesList(){var e=$("#org-team-repositories-list");$("#org-team-repositories-add").on("keyup",function(){var t=$(this);return t.val()?void Gogs.searchRepos(t.val(),e,"uid="+t.data("uid")):void e.toggleHide()}).on("focus",function(){$(this).val()?e.toggleShow():e.toggleHide()}).next().next().find("ul").on("click","li",function(){$("#org-team-repositories-add").val($(this).text()),e.toggleHide()})}function initAdmin(){$("#login-type").on("change",function(){var e=$(this).val();e.indexOf("0-")+1?($(".auth-name").toggleHide(),$(".pwd").find("input").attr("required","required").end().toggleShow()):($(".pwd").find("input").removeAttr("required").end().toggleHide(),$(".auth-name").toggleShow())}),$("#delete-account-btn").magnificPopup({modal:!0}).click(function(e){return e.preventDefault(),!0}),$("#delete-account-submit").click(function(){$.magnificPopup.close();var e=$("#user-profile-form");e.attr("action",e.data("delete-url"))}),$("#auth-type").on("change",function(){var e=$(this).val();2==e&&($(".ldap").toggleShow(),$(".smtp").toggleHide(),$(".pam").toggleHide()),3==e&&($(".smtp").toggleShow(),$(".ldap").toggleHide(),$(".pam").toggleHide()),4==e&&($(".pam").toggleShow(),$(".smtp").toggleHide(),$(".ldap").toggleHide())}),$("#delete-auth-btn").magnificPopup({modal:!0}).click(function(e){return e.preventDefault(),!0}),$("#delete-auth-submit").click(function(){$.magnificPopup.close();var e=$("#auth-setting-form");e.attr("action",e.data("delete-url"))})}function initInstall(){!function(){var e="127.0.0.1:3306",t="127.0.0.1:5432";$("#install-database").on("change",function(){var n=$(this).val();"SQLite3"!=n?($(".server-sql").show(),$(".sqlite-setting").addClass("hide"),"PostgreSQL"==n?($(".pgsql-setting").removeClass("hide"),$("#database-host").val()==e&&$("#database-host").val(t)):"MySQL"==n?($(".pgsql-setting").addClass("hide"),$("#database-host").val()==t&&$("#database-host").val(e)):$(".pgsql-setting").addClass("hide")):($(".server-sql").hide(),$(".pgsql-setting").hide(),$(".sqlite-setting").removeClass("hide"))})}()}function initProfile(){$("#profile-avatar").tipsy({fade:!0})}function initTimeSwitch(){$(".time-since[title]").on("click",function(){var e=$(this),t=e.attr("title"),n=e.text();e.text(t),e.attr("title",n)})}function initDiff(){$(".diff-detail-box>a").click(function(){$($(this).data("target")).slideToggle(100)});var e=$(".diff-counter");e.length<1||e.each(function(e,t){var n=$(t),i=n.find("span[data-line].add").data("line"),r=n.find("span[data-line].del").data("line"),o=parseFloat(i)/(parseFloat(i)+parseFloat(r))*100;n.find(".bar .add").css("width",o+"%")})}function homepage(){$("#promo-form").submit(function(e){return""===$("#username").val()?(e.preventDefault(),window.location.href=Gogs.AppSubUrl+"/user/login",!0):void 0}),$("#register-button").click(function(e){return""===$("#username").val()?(e.preventDefault(),window.location.href=Gogs.AppSubUrl+"/user/sign_up",!0):void $("#promo-form").attr("action",Gogs.AppSubUrl+"/user/sign_up")})}!function(e,t){"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){function n(e){var t=e.length,n=oe.type(e);return"function"===n||oe.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e}function i(e,t,n){if(oe.isFunction(t))return oe.grep(e,function(e,i){return!!t.call(e,i,e)!==n});if(t.nodeType)return oe.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(pe.test(t))return oe.filter(t,e,n);t=oe.filter(t,e)}return oe.grep(e,function(e){return oe.inArray(e,t)>=0!==n})}function r(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}function o(e){var t=we[e]={};return oe.each(e.match(xe)||[],function(e,n){t[n]=!0}),t}function a(){me.addEventListener?(me.removeEventListener("DOMContentLoaded",s,!1),e.removeEventListener("load",s,!1)):(me.detachEvent("onreadystatechange",s),e.detachEvent("onload",s))}function s(){(me.addEventListener||"load"===event.type||"complete"===me.readyState)&&(a(),oe.ready())}function l(e,t,n){if(void 0===n&&1===e.nodeType){var i="data-"+t.replace(Te,"-$1").toLowerCase();if(n=e.getAttribute(i),"string"==typeof n){try{n="true"===n?!0:"false"===n?!1:"null"===n?null:+n+""===n?+n:Se.test(n)?oe.parseJSON(n):n}catch(r){}oe.data(e,t,n)}else n=void 0}return n}function c(e){var t;for(t in e)if(("data"!==t||!oe.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}function u(e,t,n,i){if(oe.acceptData(e)){var r,o,a=oe.expando,s=e.nodeType,l=s?oe.cache:e,c=s?e[a]:e[a]&&a;if(c&&l[c]&&(i||l[c].data)||void 0!==n||"string"!=typeof t)return c||(c=s?e[a]=V.pop()||oe.guid++:a),l[c]||(l[c]=s?{}:{toJSON:oe.noop}),("object"==typeof t||"function"==typeof t)&&(i?l[c]=oe.extend(l[c],t):l[c].data=oe.extend(l[c].data,t)),o=l[c],i||(o.data||(o.data={}),o=o.data),void 0!==n&&(o[oe.camelCase(t)]=n),"string"==typeof t?(r=o[t],null==r&&(r=o[oe.camelCase(t)])):r=o,r}}function d(e,t,n){if(oe.acceptData(e)){var i,r,o=e.nodeType,a=o?oe.cache:e,s=o?e[oe.expando]:oe.expando;if(a[s]){if(t&&(i=n?a[s]:a[s].data)){oe.isArray(t)?t=t.concat(oe.map(t,oe.camelCase)):t in i?t=[t]:(t=oe.camelCase(t),t=t in i?[t]:t.split(" ")),r=t.length;for(;r--;)delete i[t[r]];if(n?!c(i):!oe.isEmptyObject(i))return}(n||(delete a[s].data,c(a[s])))&&(o?oe.cleanData([e],!0):ie.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}function f(){return!0}function p(){return!1}function h(){try{return me.activeElement}catch(e){}}function m(e){var t=Pe.split("|"),n=e.createDocumentFragment();if(n.createElement)for(;t.length;)n.createElement(t.pop());return n}function g(e,t){var n,i,r=0,o=typeof e.getElementsByTagName!==$e?e.getElementsByTagName(t||"*"):typeof e.querySelectorAll!==$e?e.querySelectorAll(t||"*"):void 0;if(!o)for(o=[],n=e.childNodes||e;null!=(i=n[r]);r++)!t||oe.nodeName(i,t)?o.push(i):oe.merge(o,g(i,t));return void 0===t||t&&oe.nodeName(e,t)?oe.merge([e],o):o}function v(e){De.test(e.type)&&(e.defaultChecked=e.checked)}function y(e,t){return oe.nodeName(e,"table")&&oe.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function b(e){return e.type=(null!==oe.find.attr(e,"type"))+"/"+e.type,e}function x(e){var t=Ze.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function w(e,t){for(var n,i=0;null!=(n=e[i]);i++)oe._data(n,"globalEval",!t||oe._data(t[i],"globalEval"))}function C(e,t){if(1===t.nodeType&&oe.hasData(e)){var n,i,r,o=oe._data(e),a=oe._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(i=0,r=s[n].length;r>i;i++)oe.event.add(t,n,s[n][i])}a.data&&(a.data=oe.extend({},a.data))}}function k(e,t){var n,i,r;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!ie.noCloneEvent&&t[oe.expando]){r=oe._data(t);for(i in r.events)oe.removeEvent(t,i,r.handle);t.removeAttribute(oe.expando)}"script"===n&&t.text!==e.text?(b(t).text=e.text,x(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),ie.html5Clone&&e.innerHTML&&!oe.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&De.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}function S(t,n){var i,r=oe(n.createElement(t)).appendTo(n.body),o=e.getDefaultComputedStyle&&(i=e.getDefaultComputedStyle(r[0]))?i.display:oe.css(r[0],"display");return r.detach(),o}function T(e){var t=me,n=Je[e];return n||(n=S(e,t),"none"!==n&&n||(Ke=(Ke||oe("<iframe frameborder='0' width='0' height='0'/>")).appendTo(t.documentElement),t=(Ke[0].contentWindow||Ke[0].contentDocument).document,t.write(),t.close(),n=S(e,t),Ke.detach()),Je[e]=n),n}function E(e,t){return{get:function(){var n=e();return null!=n?n?void delete this.get:(this.get=t).apply(this,arguments):void 0}}}function N(e,t){if(t in e)return t;for(var n=t.charAt(0).toUpperCase()+t.slice(1),i=t,r=ft.length;r--;)if(t=ft[r]+n,t in e)return t;return i}function L(e,t){for(var n,i,r,o=[],a=0,s=e.length;s>a;a++)i=e[a],i.style&&(o[a]=oe._data(i,"olddisplay"),n=i.style.display,t?(o[a]||"none"!==n||(i.style.display=""),""===i.style.display&&Le(i)&&(o[a]=oe._data(i,"olddisplay",T(i.nodeName)))):(r=Le(i),(n&&"none"!==n||!r)&&oe._data(i,"olddisplay",r?n:oe.css(i,"display"))));for(a=0;s>a;a++)i=e[a],i.style&&(t&&"none"!==i.style.display&&""!==i.style.display||(i.style.display=t?o[a]||"":"none"));return e}function A(e,t,n){var i=lt.exec(t);return i?Math.max(0,i[1]-(n||0))+(i[2]||"px"):t}function D(e,t,n,i,r){for(var o=n===(i?"border":"content")?4:"width"===t?1:0,a=0;4>o;o+=2)"margin"===n&&(a+=oe.css(e,n+Ne[o],!0,r)),i?("content"===n&&(a-=oe.css(e,"padding"+Ne[o],!0,r)),"margin"!==n&&(a-=oe.css(e,"border"+Ne[o]+"Width",!0,r))):(a+=oe.css(e,"padding"+Ne[o],!0,r),"padding"!==n&&(a+=oe.css(e,"border"+Ne[o]+"Width",!0,r)));return a}function j(e,t,n){var i=!0,r="width"===t?e.offsetWidth:e.offsetHeight,o=nt(e),a=ie.boxSizing&&"border-box"===oe.css(e,"boxSizing",!1,o);if(0>=r||null==r){if(r=it(e,t,o),(0>r||null==r)&&(r=e.style[t]),tt.test(r))return r;i=a&&(ie.boxSizingReliable()||r===e.style[t]),r=parseFloat(r)||0}return r+D(e,t,n||(a?"border":"content"),i,o)+"px"}function R(e,t,n,i,r){return new R.prototype.init(e,t,n,i,r)}function H(){return setTimeout(function(){pt=void 0}),pt=oe.now()}function _(e,t){var n,i={height:e},r=0;for(t=t?1:0;4>r;r+=2-t)n=Ne[r],i["margin"+n]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function P(e,t,n){for(var i,r=(bt[t]||[]).concat(bt["*"]),o=0,a=r.length;a>o;o++)if(i=r[o].call(n,t,e))return i}function O(e,t,n){var i,r,o,a,s,l,c,u,d=this,f={},p=e.style,h=e.nodeType&&Le(e),m=oe._data(e,"fxshow");n.queue||(s=oe._queueHooks(e,"fx"),null==s.unqueued&&(s.unqueued=0,l=s.empty.fire,s.empty.fire=function(){s.unqueued||l()}),s.unqueued++,d.always(function(){d.always(function(){s.unqueued--,oe.queue(e,"fx").length||s.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[p.overflow,p.overflowX,p.overflowY],c=oe.css(e,"display"),u="none"===c?oe._data(e,"olddisplay")||T(e.nodeName):c,"inline"===u&&"none"===oe.css(e,"float")&&(ie.inlineBlockNeedsLayout&&"inline"!==T(e.nodeName)?p.zoom=1:p.display="inline-block")),n.overflow&&(p.overflow="hidden",ie.shrinkWrapBlocks()||d.always(function(){p.overflow=n.overflow[0],p.overflowX=n.overflow[1],p.overflowY=n.overflow[2]}));for(i in t)if(r=t[i],mt.exec(r)){if(delete t[i],o=o||"toggle"===r,r===(h?"hide":"show")){if("show"!==r||!m||void 0===m[i])continue;h=!0}f[i]=m&&m[i]||oe.style(e,i)}else c=void 0;if(oe.isEmptyObject(f))"inline"===("none"===c?T(e.nodeName):c)&&(p.display=c);else{m?"hidden"in m&&(h=m.hidden):m=oe._data(e,"fxshow",{}),o&&(m.hidden=!h),h?oe(e).show():d.done(function(){oe(e).hide()}),d.done(function(){var t;oe._removeData(e,"fxshow");for(t in f)oe.style(e,t,f[t])});for(i in f)a=P(h?m[i]:0,i,d),i in m||(m[i]=a.start,h&&(a.end=a.start,a.start="width"===i||"height"===i?1:0))}}function q(e,t){var n,i,r,o,a;for(n in e)if(i=oe.camelCase(n),r=t[i],o=e[n],oe.isArray(o)&&(r=o[1],o=e[n]=o[0]),n!==i&&(e[i]=o,delete e[n]),a=oe.cssHooks[i],a&&"expand"in a){o=a.expand(o),delete e[i];for(n in o)n in e||(e[n]=o[n],t[n]=r)}else t[i]=r}function M(e,t,n){var i,r,o=0,a=yt.length,s=oe.Deferred().always(function(){delete l.elem}),l=function(){if(r)return!1;for(var t=pt||H(),n=Math.max(0,c.startTime+c.duration-t),i=n/c.duration||0,o=1-i,a=0,l=c.tweens.length;l>a;a++)c.tweens[a].run(o);return s.notifyWith(e,[c,o,n]),1>o&&l?n:(s.resolveWith(e,[c]),!1)},c=s.promise({elem:e,props:oe.extend({},t),opts:oe.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:pt||H(),duration:n.duration,tweens:[],createTween:function(t,n){var i=oe.Tween(e,c.opts,t,n,c.opts.specialEasing[t]||c.opts.easing);return c.tweens.push(i),i},stop:function(t){var n=0,i=t?c.tweens.length:0;if(r)return this;for(r=!0;i>n;n++)c.tweens[n].run(1);return t?s.resolveWith(e,[c,t]):s.rejectWith(e,[c,t]),this}}),u=c.props;for(q(u,c.opts.specialEasing);a>o;o++)if(i=yt[o].call(c,e,u,c.opts))return i;return oe.map(u,P,c),oe.isFunction(c.opts.start)&&c.opts.start.call(e,c),oe.fx.timer(oe.extend(l,{elem:e,anim:c,queue:c.opts.queue})),c.progress(c.opts.progress).done(c.opts.done,c.opts.complete).fail(c.opts.fail).always(c.opts.always)}function z(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var i,r=0,o=t.toLowerCase().match(xe)||[];if(oe.isFunction(n))for(;i=o[r++];)"+"===i.charAt(0)?(i=i.slice(1)||"*",(e[i]=e[i]||[]).unshift(n)):(e[i]=e[i]||[]).push(n)}}function F(e,t,n,i){function r(s){var l;return o[s]=!0,oe.each(e[s]||[],function(e,s){var c=s(t,n,i);return"string"!=typeof c||a||o[c]?a?!(l=c):void 0:(t.dataTypes.unshift(c),r(c),!1)}),l}var o={},a=e===It;return r(t.dataTypes[0])||!o["*"]&&r("*")}function B(e,t){var n,i,r=oe.ajaxSettings.flatOptions||{};for(i in t)void 0!==t[i]&&((r[i]?e:n||(n={}))[i]=t[i]);return n&&oe.extend(!0,e,n),e}function I(e,t,n){for(var i,r,o,a,s=e.contents,l=e.dataTypes;"*"===l[0];)l.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(a in s)if(s[a]&&s[a].test(r)){l.unshift(a);break}if(l[0]in n)o=l[0];else{for(a in n){if(!l[0]||e.converters[a+" "+l[0]]){o=a;break}i||(i=a)}o=o||i}return o?(o!==l[0]&&l.unshift(o),n[o]):void 0}function W(e,t,n,i){var r,o,a,s,l,c={},u=e.dataTypes.slice();if(u[1])for(a in e.converters)c[a.toLowerCase()]=e.converters[a];for(o=u.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!l&&i&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=o,o=u.shift())if("*"===o)o=l;else if("*"!==l&&l!==o){if(a=c[l+" "+o]||c["* "+o],!a)for(r in c)if(s=r.split(" "),s[1]===o&&(a=c[l+" "+s[0]]||c["* "+s[0]])){a===!0?a=c[r]:c[r]!==!0&&(o=s[0],u.unshift(s[1]));break}if(a!==!0)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(d){return{state:"parsererror",error:a?d:"No conversion from "+l+" to "+o}}}return{state:"success",data:t}}function U(e,t,n,i){var r;if(oe.isArray(t))oe.each(t,function(t,r){n||Zt.test(e)?i(e,r):U(e+"["+("object"==typeof r?t:"")+"]",r,n,i)});else if(n||"object"!==oe.type(t))i(e,t);else for(r in t)U(e+"["+r+"]",t[r],n,i)}function X(){try{return new e.XMLHttpRequest}catch(t){}}function Z(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}function G(e){return oe.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}var V=[],Q=V.slice,Y=V.concat,K=V.push,J=V.indexOf,ee={},te=ee.toString,ne=ee.hasOwnProperty,ie={},re="1.11.1",oe=function(e,t){return new oe.fn.init(e,t)},ae=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,se=/^-ms-/,le=/-([\da-z])/gi,ce=function(e,t){return t.toUpperCase()};oe.fn=oe.prototype={jquery:re,constructor:oe,selector:"",length:0,toArray:function(){return Q.call(this)},get:function(e){return null!=e?0>e?this[e+this.length]:this[e]:Q.call(this)},pushStack:function(e){var t=oe.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return oe.each(this,e,t)},map:function(e){return this.pushStack(oe.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(Q.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:K,sort:V.sort,splice:V.splice},oe.extend=oe.fn.extend=function(){var e,t,n,i,r,o,a=arguments[0]||{},s=1,l=arguments.length,c=!1;for("boolean"==typeof a&&(c=a,a=arguments[s]||{},s++),"object"==typeof a||oe.isFunction(a)||(a={}),s===l&&(a=this,s--);l>s;s++)if(null!=(r=arguments[s]))for(i in r)e=a[i],n=r[i],a!==n&&(c&&n&&(oe.isPlainObject(n)||(t=oe.isArray(n)))?(t?(t=!1,o=e&&oe.isArray(e)?e:[]):o=e&&oe.isPlainObject(e)?e:{},a[i]=oe.extend(c,o,n)):void 0!==n&&(a[i]=n));return a},oe.extend({expando:"jQuery"+(re+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isFunction:function(e){return"function"===oe.type(e)},isArray:Array.isArray||function(e){return"array"===oe.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!oe.isArray(e)&&e-parseFloat(e)>=0},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},isPlainObject:function(e){var t;if(!e||"object"!==oe.type(e)||e.nodeType||oe.isWindow(e))return!1;try{if(e.constructor&&!ne.call(e,"constructor")&&!ne.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}if(ie.ownLast)for(t in e)return ne.call(e,t);for(t in e);return void 0===t||ne.call(e,t)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?ee[te.call(e)]||"object":typeof e},globalEval:function(t){t&&oe.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(se,"ms-").replace(le,ce)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,i){var r,o=0,a=e.length,s=n(e);if(i){if(s)for(;a>o&&(r=t.apply(e[o],i),r!==!1);o++);else for(o in e)if(r=t.apply(e[o],i),r===!1)break}else if(s)for(;a>o&&(r=t.call(e[o],o,e[o]),r!==!1);o++);else for(o in e)if(r=t.call(e[o],o,e[o]),r===!1)break;return e},trim:function(e){return null==e?"":(e+"").replace(ae,"")},makeArray:function(e,t){var i=t||[];return null!=e&&(n(Object(e))?oe.merge(i,"string"==typeof e?[e]:e):K.call(i,e)),i},inArray:function(e,t,n){var i;if(t){if(J)return J.call(t,e,n);for(i=t.length,n=n?0>n?Math.max(0,i+n):n:0;i>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,t){for(var n=+t.length,i=0,r=e.length;n>i;)e[r++]=t[i++];if(n!==n)for(;void 0!==t[i];)e[r++]=t[i++];return e.length=r,e},grep:function(e,t,n){for(var i,r=[],o=0,a=e.length,s=!n;a>o;o++)i=!t(e[o],o),i!==s&&r.push(e[o]);return r},map:function(e,t,i){var r,o=0,a=e.length,s=n(e),l=[];if(s)for(;a>o;o++)r=t(e[o],o,i),null!=r&&l.push(r);else for(o in e)r=t(e[o],o,i),null!=r&&l.push(r);return Y.apply([],l)},guid:1,proxy:function(e,t){var n,i,r;return"string"==typeof t&&(r=e[t],t=e,e=r),oe.isFunction(e)?(n=Q.call(arguments,2),i=function(){return e.apply(t||this,n.concat(Q.call(arguments)))},i.guid=e.guid=e.guid||oe.guid++,i):void 0},now:function(){return+new Date},support:ie}),oe.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){ee["[object "+t+"]"]=t.toLowerCase()});var ue=function(e){function t(e,t,n,i){var r,o,a,s,l,c,d,p,h,m;if((t?t.ownerDocument||t:F)!==R&&j(t),t=t||R,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(_&&!i){if(r=ye.exec(e))if(a=r[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&M(t,o)&&o.id===a)return n.push(o),n}else{if(r[2])return ee.apply(n,t.getElementsByTagName(e)),n;if((a=r[3])&&w.getElementsByClassName&&t.getElementsByClassName)return ee.apply(n,t.getElementsByClassName(a)),n}if(w.qsa&&(!P||!P.test(e))){if(p=d=z,h=t,m=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){for(c=T(e),(d=t.getAttribute("id"))?p=d.replace(xe,"\\$&"):t.setAttribute("id",p),p="[id='"+p+"'] ",l=c.length;l--;)c[l]=p+f(c[l]);h=be.test(e)&&u(t.parentNode)||t,m=c.join(",")}if(m)try{return ee.apply(n,h.querySelectorAll(m)),n}catch(g){}finally{d||t.removeAttribute("id")}}}return N(e.replace(ce,"$1"),t,n,i)}function n(){function e(n,i){return t.push(n+" ")>C.cacheLength&&delete e[t.shift()],e[n+" "]=i}var t=[];return e}function i(e){return e[z]=!0,e}function r(e){var t=R.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function o(e,t){for(var n=e.split("|"),i=e.length;i--;)C.attrHandle[n[i]]=t}function a(e,t){var n=t&&e,i=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||V)-(~e.sourceIndex||V);if(i)return i;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function s(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function l(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function c(e){return i(function(t){return t=+t,i(function(n,i){for(var r,o=e([],n.length,t),a=o.length;a--;)n[r=o[a]]&&(n[r]=!(i[r]=n[r]))})})}function u(e){return e&&typeof e.getElementsByTagName!==G&&e}function d(){}function f(e){for(var t=0,n=e.length,i="";n>t;t++)i+=e[t].value;return i}function p(e,t,n){var i=t.dir,r=n&&"parentNode"===i,o=I++;return t.first?function(t,n,o){for(;t=t[i];)if(1===t.nodeType||r)return e(t,n,o)}:function(t,n,a){var s,l,c=[B,o];if(a){for(;t=t[i];)if((1===t.nodeType||r)&&e(t,n,a))return!0}else for(;t=t[i];)if(1===t.nodeType||r){if(l=t[z]||(t[z]={}),(s=l[i])&&s[0]===B&&s[1]===o)return c[2]=s[2];if(l[i]=c,c[2]=e(t,n,a))return!0}}}function h(e){return e.length>1?function(t,n,i){for(var r=e.length;r--;)if(!e[r](t,n,i))return!1;return!0}:e[0]}function m(e,n,i){for(var r=0,o=n.length;o>r;r++)t(e,n[r],i);return i}function g(e,t,n,i,r){for(var o,a=[],s=0,l=e.length,c=null!=t;l>s;s++)(o=e[s])&&(!n||n(o,i,r))&&(a.push(o),c&&t.push(s));return a}function v(e,t,n,r,o,a){return r&&!r[z]&&(r=v(r)),o&&!o[z]&&(o=v(o,a)),i(function(i,a,s,l){var c,u,d,f=[],p=[],h=a.length,v=i||m(t||"*",s.nodeType?[s]:s,[]),y=!e||!i&&t?v:g(v,f,e,s,l),b=n?o||(i?e:h||r)?[]:a:y;if(n&&n(y,b,s,l),r)for(c=g(b,p),r(c,[],s,l),u=c.length;u--;)(d=c[u])&&(b[p[u]]=!(y[p[u]]=d));if(i){if(o||e){if(o){for(c=[],u=b.length;u--;)(d=b[u])&&c.push(y[u]=d);o(null,b=[],c,l)}for(u=b.length;u--;)(d=b[u])&&(c=o?ne.call(i,d):f[u])>-1&&(i[c]=!(a[c]=d))}}else b=g(b===a?b.splice(h,b.length):b),o?o(null,a,b,l):ee.apply(a,b)})}function y(e){for(var t,n,i,r=e.length,o=C.relative[e[0].type],a=o||C.relative[" "],s=o?1:0,l=p(function(e){return e===t},a,!0),c=p(function(e){return ne.call(t,e)>-1},a,!0),u=[function(e,n,i){return!o&&(i||n!==L)||((t=n).nodeType?l(e,n,i):c(e,n,i))}];r>s;s++)if(n=C.relative[e[s].type])u=[p(h(u),n)];else{if(n=C.filter[e[s].type].apply(null,e[s].matches),n[z]){for(i=++s;r>i&&!C.relative[e[i].type];i++);return v(s>1&&h(u),s>1&&f(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(ce,"$1"),n,i>s&&y(e.slice(s,i)),r>i&&y(e=e.slice(i)),r>i&&f(e))}u.push(n)}return h(u)}function b(e,n){var r=n.length>0,o=e.length>0,a=function(i,a,s,l,c){var u,d,f,p=0,h="0",m=i&&[],v=[],y=L,b=i||o&&C.find.TAG("*",c),x=B+=null==y?1:Math.random()||.1,w=b.length;for(c&&(L=a!==R&&a);h!==w&&null!=(u=b[h]);h++){if(o&&u){for(d=0;f=e[d++];)if(f(u,a,s)){l.push(u);break}c&&(B=x)}r&&((u=!f&&u)&&p--,i&&m.push(u))}if(p+=h,r&&h!==p){for(d=0;f=n[d++];)f(m,v,a,s);if(i){if(p>0)for(;h--;)m[h]||v[h]||(v[h]=K.call(l));v=g(v)}ee.apply(l,v),c&&!i&&v.length>0&&p+n.length>1&&t.uniqueSort(l)}return c&&(B=x,L=y),m};return r?i(a):a}var x,w,C,k,S,T,E,N,L,A,D,j,R,H,_,P,O,q,M,z="sizzle"+-new Date,F=e.document,B=0,I=0,W=n(),U=n(),X=n(),Z=function(e,t){return e===t&&(D=!0),0},G="undefined",V=1<<31,Q={}.hasOwnProperty,Y=[],K=Y.pop,J=Y.push,ee=Y.push,te=Y.slice,ne=Y.indexOf||function(e){for(var t=0,n=this.length;n>t;t++)if(this[t]===e)return t;return-1},ie="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",re="[\\x20\\t\\r\\n\\f]",oe="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",ae=oe.replace("w","w#"),se="\\["+re+"*("+oe+")(?:"+re+"*([*^$|!~]?=)"+re+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+ae+"))|)"+re+"*\\]",le=":("+oe+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+se+")*)|.*)\\)|)",ce=new RegExp("^"+re+"+|((?:^|[^\\\\])(?:\\\\.)*)"+re+"+$","g"),ue=new RegExp("^"+re+"*,"+re+"*"),de=new RegExp("^"+re+"*([>+~]|"+re+")"+re+"*"),fe=new RegExp("="+re+"*([^\\]'\"]*?)"+re+"*\\]","g"),pe=new RegExp(le),he=new RegExp("^"+ae+"$"),me={ID:new RegExp("^#("+oe+")"),CLASS:new RegExp("^\\.("+oe+")"),TAG:new RegExp("^("+oe.replace("w","w*")+")"),ATTR:new RegExp("^"+se),PSEUDO:new RegExp("^"+le),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+re+"*(even|odd|(([+-]|)(\\d*)n|)"+re+"*(?:([+-]|)"+re+"*(\\d+)|))"+re+"*\\)|)","i"),bool:new RegExp("^(?:"+ie+")$","i"),needsContext:new RegExp("^"+re+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+re+"*((?:-\\d)?\\d*)"+re+"*\\)|)(?=[^-]|$)","i")},ge=/^(?:input|select|textarea|button)$/i,ve=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,ye=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,be=/[+~]/,xe=/'|\\/g,we=new RegExp("\\\\([\\da-f]{1,6}"+re+"?|("+re+")|.)","ig"),Ce=function(e,t,n){var i="0x"+t-65536;return i!==i||n?t:0>i?String.fromCharCode(i+65536):String.fromCharCode(i>>10|55296,1023&i|56320)};try{ee.apply(Y=te.call(F.childNodes),F.childNodes),Y[F.childNodes.length].nodeType}catch($e){ee={apply:Y.length?function(e,t){J.apply(e,te.call(t))}:function(e,t){for(var n=e.length,i=0;e[n++]=t[i++];);e.length=n-1}}}w=t.support={},S=t.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},j=t.setDocument=function(e){var t,n=e?e.ownerDocument||e:F,i=n.defaultView; -return n!==R&&9===n.nodeType&&n.documentElement?(R=n,H=n.documentElement,_=!S(n),i&&i!==i.top&&(i.addEventListener?i.addEventListener("unload",function(){j()},!1):i.attachEvent&&i.attachEvent("onunload",function(){j()})),w.attributes=r(function(e){return e.className="i",!e.getAttribute("className")}),w.getElementsByTagName=r(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),w.getElementsByClassName=$.test(n.getElementsByClassName)&&r(function(e){return e.innerHTML="<div class='a'></div><div class='a i'></div>",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),w.getById=r(function(e){return H.appendChild(e).id=z,!n.getElementsByName||!n.getElementsByName(z).length}),w.getById?(C.find.ID=function(e,t){if(typeof t.getElementById!==G&&_){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},C.filter.ID=function(e){var t=e.replace(we,Ce);return function(e){return e.getAttribute("id")===t}}):(delete C.find.ID,C.filter.ID=function(e){var t=e.replace(we,Ce);return function(e){var n=typeof e.getAttributeNode!==G&&e.getAttributeNode("id");return n&&n.value===t}}),C.find.TAG=w.getElementsByTagName?function(e,t){return typeof t.getElementsByTagName!==G?t.getElementsByTagName(e):void 0}:function(e,t){var n,i=[],r=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[r++];)1===n.nodeType&&i.push(n);return i}return o},C.find.CLASS=w.getElementsByClassName&&function(e,t){return typeof t.getElementsByClassName!==G&&_?t.getElementsByClassName(e):void 0},O=[],P=[],(w.qsa=$.test(n.querySelectorAll))&&(r(function(e){e.innerHTML="<select msallowclip=''><option selected=''></option></select>",e.querySelectorAll("[msallowclip^='']").length&&P.push("[*^$]="+re+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||P.push("\\["+re+"*(?:value|"+ie+")"),e.querySelectorAll(":checked").length||P.push(":checked")}),r(function(e){var t=n.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&P.push("name"+re+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||P.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),P.push(",.*:")})),(w.matchesSelector=$.test(q=H.matches||H.webkitMatchesSelector||H.mozMatchesSelector||H.oMatchesSelector||H.msMatchesSelector))&&r(function(e){w.disconnectedMatch=q.call(e,"div"),q.call(e,"[s!='']:x"),O.push("!=",le)}),P=P.length&&new RegExp(P.join("|")),O=O.length&&new RegExp(O.join("|")),t=$.test(H.compareDocumentPosition),M=t||$.test(H.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,i=t&&t.parentNode;return e===i||!(!i||1!==i.nodeType||!(n.contains?n.contains(i):e.compareDocumentPosition&&16&e.compareDocumentPosition(i)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},Z=t?function(e,t){if(e===t)return D=!0,0;var i=!e.compareDocumentPosition-!t.compareDocumentPosition;return i?i:(i=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1,1&i||!w.sortDetached&&t.compareDocumentPosition(e)===i?e===n||e.ownerDocument===F&&M(F,e)?-1:t===n||t.ownerDocument===F&&M(F,t)?1:A?ne.call(A,e)-ne.call(A,t):0:4&i?-1:1)}:function(e,t){if(e===t)return D=!0,0;var i,r=0,o=e.parentNode,s=t.parentNode,l=[e],c=[t];if(!o||!s)return e===n?-1:t===n?1:o?-1:s?1:A?ne.call(A,e)-ne.call(A,t):0;if(o===s)return a(e,t);for(i=e;i=i.parentNode;)l.unshift(i);for(i=t;i=i.parentNode;)c.unshift(i);for(;l[r]===c[r];)r++;return r?a(l[r],c[r]):l[r]===F?-1:c[r]===F?1:0},n):R},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if((e.ownerDocument||e)!==R&&j(e),n=n.replace(fe,"='$1']"),!(!w.matchesSelector||!_||O&&O.test(n)||P&&P.test(n)))try{var i=q.call(e,n);if(i||w.disconnectedMatch||e.document&&11!==e.document.nodeType)return i}catch(r){}return t(n,R,null,[e]).length>0},t.contains=function(e,t){return(e.ownerDocument||e)!==R&&j(e),M(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!==R&&j(e);var n=C.attrHandle[t.toLowerCase()],i=n&&Q.call(C.attrHandle,t.toLowerCase())?n(e,t,!_):void 0;return void 0!==i?i:w.attributes||!_?e.getAttribute(t):(i=e.getAttributeNode(t))&&i.specified?i.value:null},t.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},t.uniqueSort=function(e){var t,n=[],i=0,r=0;if(D=!w.detectDuplicates,A=!w.sortStable&&e.slice(0),e.sort(Z),D){for(;t=e[r++];)t===e[r]&&(i=n.push(r));for(;i--;)e.splice(n[i],1)}return A=null,e},k=t.getText=function(e){var t,n="",i=0,r=e.nodeType;if(r){if(1===r||9===r||11===r){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=k(e)}else if(3===r||4===r)return e.nodeValue}else for(;t=e[i++];)n+=k(t);return n},C=t.selectors={cacheLength:50,createPseudo:i,match:me,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(we,Ce),e[3]=(e[3]||e[4]||e[5]||"").replace(we,Ce),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||t.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&t.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return me.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&pe.test(n)&&(t=T(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(we,Ce).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=W[e+" "];return t||(t=new RegExp("(^|"+re+")"+e+"("+re+"|$)"))&&W(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==G&&e.getAttribute("class")||"")})},ATTR:function(e,n,i){return function(r){var o=t.attr(r,e);return null==o?"!="===n:n?(o+="","="===n?o===i:"!="===n?o!==i:"^="===n?i&&0===o.indexOf(i):"*="===n?i&&o.indexOf(i)>-1:"$="===n?i&&o.slice(-i.length)===i:"~="===n?(" "+o+" ").indexOf(i)>-1:"|="===n?o===i||o.slice(0,i.length+1)===i+"-":!1):!0}},CHILD:function(e,t,n,i,r){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===i&&0===r?function(e){return!!e.parentNode}:function(t,n,l){var c,u,d,f,p,h,m=o!==a?"nextSibling":"previousSibling",g=t.parentNode,v=s&&t.nodeName.toLowerCase(),y=!l&&!s;if(g){if(o){for(;m;){for(d=t;d=d[m];)if(s?d.nodeName.toLowerCase()===v:1===d.nodeType)return!1;h=m="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?g.firstChild:g.lastChild],a&&y){for(u=g[z]||(g[z]={}),c=u[e]||[],p=c[0]===B&&c[1],f=c[0]===B&&c[2],d=p&&g.childNodes[p];d=++p&&d&&d[m]||(f=p=0)||h.pop();)if(1===d.nodeType&&++f&&d===t){u[e]=[B,p,f];break}}else if(y&&(c=(t[z]||(t[z]={}))[e])&&c[0]===B)f=c[1];else for(;(d=++p&&d&&d[m]||(f=p=0)||h.pop())&&((s?d.nodeName.toLowerCase()!==v:1!==d.nodeType)||!++f||(y&&((d[z]||(d[z]={}))[e]=[B,f]),d!==t)););return f-=r,f===i||f%i===0&&f/i>=0}}},PSEUDO:function(e,n){var r,o=C.pseudos[e]||C.setFilters[e.toLowerCase()]||t.error("unsupported pseudo: "+e);return o[z]?o(n):o.length>1?(r=[e,e,"",n],C.setFilters.hasOwnProperty(e.toLowerCase())?i(function(e,t){for(var i,r=o(e,n),a=r.length;a--;)i=ne.call(e,r[a]),e[i]=!(t[i]=r[a])}):function(e){return o(e,0,r)}):o}},pseudos:{not:i(function(e){var t=[],n=[],r=E(e.replace(ce,"$1"));return r[z]?i(function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:i(function(e){return function(n){return t(e,n).length>0}}),contains:i(function(e){return function(t){return(t.textContent||t.innerText||k(t)).indexOf(e)>-1}}),lang:i(function(e){return he.test(e||"")||t.error("unsupported lang: "+e),e=e.replace(we,Ce).toLowerCase(),function(t){var n;do if(n=_?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===H},focus:function(e){return e===R.activeElement&&(!R.hasFocus||R.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!C.pseudos.empty(e)},header:function(e){return ve.test(e.nodeName)},input:function(e){return ge.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:c(function(){return[0]}),last:c(function(e,t){return[t-1]}),eq:c(function(e,t,n){return[0>n?n+t:n]}),even:c(function(e,t){for(var n=0;t>n;n+=2)e.push(n);return e}),odd:c(function(e,t){for(var n=1;t>n;n+=2)e.push(n);return e}),lt:c(function(e,t,n){for(var i=0>n?n+t:n;--i>=0;)e.push(i);return e}),gt:c(function(e,t,n){for(var i=0>n?n+t:n;++i<t;)e.push(i);return e})}},C.pseudos.nth=C.pseudos.eq;for(x in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})C.pseudos[x]=s(x);for(x in{submit:!0,reset:!0})C.pseudos[x]=l(x);return d.prototype=C.filters=C.pseudos,C.setFilters=new d,T=t.tokenize=function(e,n){var i,r,o,a,s,l,c,u=U[e+" "];if(u)return n?0:u.slice(0);for(s=e,l=[],c=C.preFilter;s;){(!i||(r=ue.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),l.push(o=[])),i=!1,(r=de.exec(s))&&(i=r.shift(),o.push({value:i,type:r[0].replace(ce," ")}),s=s.slice(i.length));for(a in C.filter)!(r=me[a].exec(s))||c[a]&&!(r=c[a](r))||(i=r.shift(),o.push({value:i,type:a,matches:r}),s=s.slice(i.length));if(!i)break}return n?s.length:s?t.error(e):U(e,l).slice(0)},E=t.compile=function(e,t){var n,i=[],r=[],o=X[e+" "];if(!o){for(t||(t=T(e)),n=t.length;n--;)o=y(t[n]),o[z]?i.push(o):r.push(o);o=X(e,b(r,i)),o.selector=e}return o},N=t.select=function(e,t,n,i){var r,o,a,s,l,c="function"==typeof e&&e,d=!i&&T(e=c.selector||e);if(n=n||[],1===d.length){if(o=d[0]=d[0].slice(0),o.length>2&&"ID"===(a=o[0]).type&&w.getById&&9===t.nodeType&&_&&C.relative[o[1].type]){if(t=(C.find.ID(a.matches[0].replace(we,Ce),t)||[])[0],!t)return n;c&&(t=t.parentNode),e=e.slice(o.shift().value.length)}for(r=me.needsContext.test(e)?0:o.length;r--&&(a=o[r],!C.relative[s=a.type]);)if((l=C.find[s])&&(i=l(a.matches[0].replace(we,Ce),be.test(o[0].type)&&u(t.parentNode)||t))){if(o.splice(r,1),e=i.length&&f(o),!e)return ee.apply(n,i),n;break}}return(c||E(e,d))(i,t,!_,n,be.test(e)&&u(t.parentNode)||t),n},w.sortStable=z.split("").sort(Z).join("")===z,w.detectDuplicates=!!D,j(),w.sortDetached=r(function(e){return 1&e.compareDocumentPosition(R.createElement("div"))}),r(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||o("type|href|height|width",function(e,t,n){return n?void 0:e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),w.attributes&&r(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||o("value",function(e,t,n){return n||"input"!==e.nodeName.toLowerCase()?void 0:e.defaultValue}),r(function(e){return null==e.getAttribute("disabled")})||o(ie,function(e,t,n){var i;return n?void 0:e[t]===!0?t.toLowerCase():(i=e.getAttributeNode(t))&&i.specified?i.value:null}),t}(e);oe.find=ue,oe.expr=ue.selectors,oe.expr[":"]=oe.expr.pseudos,oe.unique=ue.uniqueSort,oe.text=ue.getText,oe.isXMLDoc=ue.isXML,oe.contains=ue.contains;var de=oe.expr.match.needsContext,fe=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,pe=/^.[^:#\[\.,]*$/;oe.filter=function(e,t,n){var i=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===i.nodeType?oe.find.matchesSelector(i,e)?[i]:[]:oe.find.matches(e,oe.grep(t,function(e){return 1===e.nodeType}))},oe.fn.extend({find:function(e){var t,n=[],i=this,r=i.length;if("string"!=typeof e)return this.pushStack(oe(e).filter(function(){for(t=0;r>t;t++)if(oe.contains(i[t],this))return!0}));for(t=0;r>t;t++)oe.find(e,i[t],n);return n=this.pushStack(r>1?oe.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},filter:function(e){return this.pushStack(i(this,e||[],!1))},not:function(e){return this.pushStack(i(this,e||[],!0))},is:function(e){return!!i(this,"string"==typeof e&&de.test(e)?oe(e):e||[],!1).length}});var he,me=e.document,ge=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,ve=oe.fn.init=function(e,t){var n,i;if(!e)return this;if("string"==typeof e){if(n="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:ge.exec(e),!n||!n[1]&&t)return!t||t.jquery?(t||he).find(e):this.constructor(t).find(e);if(n[1]){if(t=t instanceof oe?t[0]:t,oe.merge(this,oe.parseHTML(n[1],t&&t.nodeType?t.ownerDocument||t:me,!0)),fe.test(n[1])&&oe.isPlainObject(t))for(n in t)oe.isFunction(this[n])?this[n](t[n]):this.attr(n,t[n]);return this}if(i=me.getElementById(n[2]),i&&i.parentNode){if(i.id!==n[2])return he.find(e);this.length=1,this[0]=i}return this.context=me,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):oe.isFunction(e)?"undefined"!=typeof he.ready?he.ready(e):e(oe):(void 0!==e.selector&&(this.selector=e.selector,this.context=e.context),oe.makeArray(e,this))};ve.prototype=oe.fn,he=oe(me);var ye=/^(?:parents|prev(?:Until|All))/,be={children:!0,contents:!0,next:!0,prev:!0};oe.extend({dir:function(e,t,n){for(var i=[],r=e[t];r&&9!==r.nodeType&&(void 0===n||1!==r.nodeType||!oe(r).is(n));)1===r.nodeType&&i.push(r),r=r[t];return i},sibling:function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}}),oe.fn.extend({has:function(e){var t,n=oe(e,this),i=n.length;return this.filter(function(){for(t=0;i>t;t++)if(oe.contains(this,n[t]))return!0})},closest:function(e,t){for(var n,i=0,r=this.length,o=[],a=de.test(e)||"string"!=typeof e?oe(e,t||this.context):0;r>i;i++)for(n=this[i];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&oe.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?oe.unique(o):o)},index:function(e){return e?"string"==typeof e?oe.inArray(this[0],oe(e)):oe.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(oe.unique(oe.merge(this.get(),oe(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),oe.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return oe.dir(e,"parentNode")},parentsUntil:function(e,t,n){return oe.dir(e,"parentNode",n)},next:function(e){return r(e,"nextSibling")},prev:function(e){return r(e,"previousSibling")},nextAll:function(e){return oe.dir(e,"nextSibling")},prevAll:function(e){return oe.dir(e,"previousSibling")},nextUntil:function(e,t,n){return oe.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return oe.dir(e,"previousSibling",n)},siblings:function(e){return oe.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return oe.sibling(e.firstChild)},contents:function(e){return oe.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:oe.merge([],e.childNodes)}},function(e,t){oe.fn[e]=function(n,i){var r=oe.map(this,t,n);return"Until"!==e.slice(-5)&&(i=n),i&&"string"==typeof i&&(r=oe.filter(i,r)),this.length>1&&(be[e]||(r=oe.unique(r)),ye.test(e)&&(r=r.reverse())),this.pushStack(r)}});var xe=/\S+/g,we={};oe.Callbacks=function(e){e="string"==typeof e?we[e]||o(e):oe.extend({},e);var t,n,i,r,a,s,l=[],c=!e.once&&[],u=function(o){for(n=e.memory&&o,i=!0,a=s||0,s=0,r=l.length,t=!0;l&&r>a;a++)if(l[a].apply(o[0],o[1])===!1&&e.stopOnFalse){n=!1;break}t=!1,l&&(c?c.length&&u(c.shift()):n?l=[]:d.disable())},d={add:function(){if(l){var i=l.length;!function o(t){oe.each(t,function(t,n){var i=oe.type(n);"function"===i?e.unique&&d.has(n)||l.push(n):n&&n.length&&"string"!==i&&o(n)})}(arguments),t?r=l.length:n&&(s=i,u(n))}return this},remove:function(){return l&&oe.each(arguments,function(e,n){for(var i;(i=oe.inArray(n,l,i))>-1;)l.splice(i,1),t&&(r>=i&&r--,a>=i&&a--)}),this},has:function(e){return e?oe.inArray(e,l)>-1:!(!l||!l.length)},empty:function(){return l=[],r=0,this},disable:function(){return l=c=n=void 0,this},disabled:function(){return!l},lock:function(){return c=void 0,n||d.disable(),this},locked:function(){return!c},fireWith:function(e,n){return!l||i&&!c||(n=n||[],n=[e,n.slice?n.slice():n],t?c.push(n):u(n)),this},fire:function(){return d.fireWith(this,arguments),this},fired:function(){return!!i}};return d},oe.extend({Deferred:function(e){var t=[["resolve","done",oe.Callbacks("once memory"),"resolved"],["reject","fail",oe.Callbacks("once memory"),"rejected"],["notify","progress",oe.Callbacks("memory")]],n="pending",i={state:function(){return n},always:function(){return r.done(arguments).fail(arguments),this},then:function(){var e=arguments;return oe.Deferred(function(n){oe.each(t,function(t,o){var a=oe.isFunction(e[t])&&e[t];r[o[1]](function(){var e=a&&a.apply(this,arguments);e&&oe.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[o[0]+"With"](this===i?n.promise():this,a?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?oe.extend(e,i):i}},r={};return i.pipe=i.then,oe.each(t,function(e,o){var a=o[2],s=o[3];i[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),r[o[0]]=function(){return r[o[0]+"With"](this===r?i:this,arguments),this},r[o[0]+"With"]=a.fireWith}),i.promise(r),e&&e.call(r,r),r},when:function(e){var t=0,n=Q.call(arguments),i=n.length,r=1!==i||e&&oe.isFunction(e.promise)?i:0,o=1===r?e:oe.Deferred(),a=function(e,t,n){return function(i){t[e]=this,n[e]=arguments.length>1?Q.call(arguments):i,n===s?o.notifyWith(t,n):--r||o.resolveWith(t,n)}},s,l,c;if(i>1)for(s=new Array(i),l=new Array(i),c=new Array(i);i>t;t++)n[t]&&oe.isFunction(n[t].promise)?n[t].promise().done(a(t,c,n)).fail(o.reject).progress(a(t,l,s)):--r;return r||o.resolveWith(c,n),o.promise()}});var Ce;oe.fn.ready=function(e){return oe.ready.promise().done(e),this},oe.extend({isReady:!1,readyWait:1,holdReady:function(e){e?oe.readyWait++:oe.ready(!0)},ready:function(e){if(e===!0?!--oe.readyWait:!oe.isReady){if(!me.body)return setTimeout(oe.ready);oe.isReady=!0,e!==!0&&--oe.readyWait>0||(Ce.resolveWith(me,[oe]),oe.fn.triggerHandler&&(oe(me).triggerHandler("ready"),oe(me).off("ready")))}}}),oe.ready.promise=function(t){if(!Ce)if(Ce=oe.Deferred(),"complete"===me.readyState)setTimeout(oe.ready);else if(me.addEventListener)me.addEventListener("DOMContentLoaded",s,!1),e.addEventListener("load",s,!1);else{me.attachEvent("onreadystatechange",s),e.attachEvent("onload",s);var n=!1;try{n=null==e.frameElement&&me.documentElement}catch(i){}n&&n.doScroll&&!function r(){if(!oe.isReady){try{n.doScroll("left")}catch(e){return setTimeout(r,50)}a(),oe.ready()}}()}return Ce.promise(t)};var $e="undefined",ke;for(ke in oe(ie))break;ie.ownLast="0"!==ke,ie.inlineBlockNeedsLayout=!1,oe(function(){var e,t,n,i;n=me.getElementsByTagName("body")[0],n&&n.style&&(t=me.createElement("div"),i=me.createElement("div"),i.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",n.appendChild(i).appendChild(t),typeof t.style.zoom!==$e&&(t.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",ie.inlineBlockNeedsLayout=e=3===t.offsetWidth,e&&(n.style.zoom=1)),n.removeChild(i))}),function(){var e=me.createElement("div");if(null==ie.deleteExpando){ie.deleteExpando=!0;try{delete e.test}catch(t){ie.deleteExpando=!1}}e=null}(),oe.acceptData=function(e){var t=oe.noData[(e.nodeName+" ").toLowerCase()],n=+e.nodeType||1;return 1!==n&&9!==n?!1:!t||t!==!0&&e.getAttribute("classid")===t};var Se=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Te=/([A-Z])/g;oe.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return e=e.nodeType?oe.cache[e[oe.expando]]:e[oe.expando],!!e&&!c(e)},data:function(e,t,n){return u(e,t,n)},removeData:function(e,t){return d(e,t)},_data:function(e,t,n){return u(e,t,n,!0)},_removeData:function(e,t){return d(e,t,!0)}}),oe.fn.extend({data:function(e,t){var n,i,r,o=this[0],a=o&&o.attributes;if(void 0===e){if(this.length&&(r=oe.data(o),1===o.nodeType&&!oe._data(o,"parsedAttrs"))){for(n=a.length;n--;)a[n]&&(i=a[n].name,0===i.indexOf("data-")&&(i=oe.camelCase(i.slice(5)),l(o,i,r[i])));oe._data(o,"parsedAttrs",!0)}return r}return"object"==typeof e?this.each(function(){oe.data(this,e)}):arguments.length>1?this.each(function(){oe.data(this,e,t)}):o?l(o,e,oe.data(o,e)):void 0},removeData:function(e){return this.each(function(){oe.removeData(this,e)})}}),oe.extend({queue:function(e,t,n){var i;return e?(t=(t||"fx")+"queue",i=oe._data(e,t),n&&(!i||oe.isArray(n)?i=oe._data(e,t,oe.makeArray(n)):i.push(n)),i||[]):void 0},dequeue:function(e,t){t=t||"fx";var n=oe.queue(e,t),i=n.length,r=n.shift(),o=oe._queueHooks(e,t),a=function(){oe.dequeue(e,t)};"inprogress"===r&&(r=n.shift(),i--),r&&("fx"===t&&n.unshift("inprogress"),delete o.stop,r.call(e,a,o)),!i&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return oe._data(e,n)||oe._data(e,n,{empty:oe.Callbacks("once memory").add(function(){oe._removeData(e,t+"queue"),oe._removeData(e,n)})})}}),oe.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length<n?oe.queue(this[0],e):void 0===t?this:this.each(function(){var n=oe.queue(this,e,t);oe._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&oe.dequeue(this,e)})},dequeue:function(e){return this.each(function(){oe.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,i=1,r=oe.Deferred(),o=this,a=this.length,s=function(){--i||r.resolveWith(o,[o])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";a--;)n=oe._data(o[a],e+"queueHooks"),n&&n.empty&&(i++,n.empty.add(s));return s(),r.promise(t)}});var Ee=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,Ne=["Top","Right","Bottom","Left"],Le=function(e,t){return e=t||e,"none"===oe.css(e,"display")||!oe.contains(e.ownerDocument,e)},Ae=oe.access=function(e,t,n,i,r,o,a){var s=0,l=e.length,c=null==n;if("object"===oe.type(n)){r=!0;for(s in n)oe.access(e,t,s,n[s],!0,o,a)}else if(void 0!==i&&(r=!0,oe.isFunction(i)||(a=!0),c&&(a?(t.call(e,i),t=null):(c=t,t=function(e,t,n){return c.call(oe(e),n)})),t))for(;l>s;s++)t(e[s],n,a?i:i.call(e[s],s,t(e[s],n)));return r?e:c?t.call(e):l?t(e[0],n):o},De=/^(?:checkbox|radio)$/i;!function(){var e=me.createElement("input"),t=me.createElement("div"),n=me.createDocumentFragment();if(t.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",ie.leadingWhitespace=3===t.firstChild.nodeType,ie.tbody=!t.getElementsByTagName("tbody").length,ie.htmlSerialize=!!t.getElementsByTagName("link").length,ie.html5Clone="<:nav></:nav>"!==me.createElement("nav").cloneNode(!0).outerHTML,e.type="checkbox",e.checked=!0,n.appendChild(e),ie.appendChecked=e.checked,t.innerHTML="<textarea>x</textarea>",ie.noCloneChecked=!!t.cloneNode(!0).lastChild.defaultValue,n.appendChild(t),t.innerHTML="<input type='radio' checked='checked' name='t'/>",ie.checkClone=t.cloneNode(!0).cloneNode(!0).lastChild.checked,ie.noCloneEvent=!0,t.attachEvent&&(t.attachEvent("onclick",function(){ie.noCloneEvent=!1}),t.cloneNode(!0).click()),null==ie.deleteExpando){ie.deleteExpando=!0;try{delete t.test}catch(i){ie.deleteExpando=!1}}}(),function(){var t,n,i=me.createElement("div");for(t in{submit:!0,change:!0,focusin:!0})n="on"+t,(ie[t+"Bubbles"]=n in e)||(i.setAttribute(n,"t"),ie[t+"Bubbles"]=i.attributes[n].expando===!1);i=null}();var je=/^(?:input|select|textarea)$/i,Re=/^key/,He=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_e=/^([^.]*)(?:\.(.+)|)$/;oe.event={global:{},add:function(e,t,n,i,r){var o,a,s,l,c,u,d,f,p,h,m,g=oe._data(e);if(g){for(n.handler&&(l=n,n=l.handler,r=l.selector),n.guid||(n.guid=oe.guid++),(a=g.events)||(a=g.events={}),(u=g.handle)||(u=g.handle=function(e){return typeof oe===$e||e&&oe.event.triggered===e.type?void 0:oe.event.dispatch.apply(u.elem,arguments)},u.elem=e),t=(t||"").match(xe)||[""],s=t.length;s--;)o=_e.exec(t[s])||[],p=m=o[1],h=(o[2]||"").split(".").sort(),p&&(c=oe.event.special[p]||{},p=(r?c.delegateType:c.bindType)||p,c=oe.event.special[p]||{},d=oe.extend({type:p,origType:m,data:i,handler:n,guid:n.guid,selector:r,needsContext:r&&oe.expr.match.needsContext.test(r),namespace:h.join(".")},l),(f=a[p])||(f=a[p]=[],f.delegateCount=0,c.setup&&c.setup.call(e,i,h,u)!==!1||(e.addEventListener?e.addEventListener(p,u,!1):e.attachEvent&&e.attachEvent("on"+p,u))),c.add&&(c.add.call(e,d),d.handler.guid||(d.handler.guid=n.guid)),r?f.splice(f.delegateCount++,0,d):f.push(d),oe.event.global[p]=!0);e=null}},remove:function(e,t,n,i,r){var o,a,s,l,c,u,d,f,p,h,m,g=oe.hasData(e)&&oe._data(e);if(g&&(u=g.events)){for(t=(t||"").match(xe)||[""],c=t.length;c--;)if(s=_e.exec(t[c])||[],p=m=s[1],h=(s[2]||"").split(".").sort(),p){for(d=oe.event.special[p]||{},p=(i?d.delegateType:d.bindType)||p,f=u[p]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),l=o=f.length;o--;)a=f[o],!r&&m!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||i&&i!==a.selector&&("**"!==i||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,d.remove&&d.remove.call(e,a));l&&!f.length&&(d.teardown&&d.teardown.call(e,h,g.handle)!==!1||oe.removeEvent(e,p,g.handle),delete u[p])}else for(p in u)oe.event.remove(e,p+t[c],n,i,!0);oe.isEmptyObject(u)&&(delete g.handle,oe._removeData(e,"events"))}},trigger:function(t,n,i,r){var o,a,s,l,c,u,d,f=[i||me],p=ne.call(t,"type")?t.type:t,h=ne.call(t,"namespace")?t.namespace.split("."):[];if(s=u=i=i||me,3!==i.nodeType&&8!==i.nodeType&&!$.test(p+oe.event.triggered)&&(p.indexOf(".")>=0&&(h=p.split("."),p=h.shift(),h.sort()),a=p.indexOf(":")<0&&"on"+p,t=t[oe.expando]?t:new oe.Event(p,"object"==typeof t&&t),t.isTrigger=r?2:3,t.namespace=h.join("."),t.namespace_re=t.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=i),n=null==n?[t]:oe.makeArray(n,[t]),c=oe.event.special[p]||{},r||!c.trigger||c.trigger.apply(i,n)!==!1)){if(!r&&!c.noBubble&&!oe.isWindow(i)){for(l=c.delegateType||p,$.test(l+p)||(s=s.parentNode);s;s=s.parentNode)f.push(s),u=s;u===(i.ownerDocument||me)&&f.push(u.defaultView||u.parentWindow||e)}for(d=0;(s=f[d++])&&!t.isPropagationStopped();)t.type=d>1?l:c.bindType||p,o=(oe._data(s,"events")||{})[t.type]&&oe._data(s,"handle"),o&&o.apply(s,n),o=a&&s[a],o&&o.apply&&oe.acceptData(s)&&(t.result=o.apply(s,n),t.result===!1&&t.preventDefault());if(t.type=p,!r&&!t.isDefaultPrevented()&&(!c._default||c._default.apply(f.pop(),n)===!1)&&oe.acceptData(i)&&a&&i[p]&&!oe.isWindow(i)){u=i[a],u&&(i[a]=null),oe.event.triggered=p;try{i[p]()}catch(m){}oe.event.triggered=void 0,u&&(i[a]=u)}return t.result}},dispatch:function(e){e=oe.event.fix(e);var t,n,i,r,o,a=[],s=Q.call(arguments),l=(oe._data(this,"events")||{})[e.type]||[],c=oe.event.special[e.type]||{};if(s[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){for(a=oe.event.handlers.call(this,e,l),t=0;(r=a[t++])&&!e.isPropagationStopped();)for(e.currentTarget=r.elem,o=0;(i=r.handlers[o++])&&!e.isImmediatePropagationStopped();)(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,n=((oe.event.special[i.origType]||{}).handle||i.handler).apply(r.elem,s),void 0!==n&&(e.result=n)===!1&&(e.preventDefault(),e.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,i,r,o,a=[],s=t.delegateCount,l=e.target;if(s&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(1===l.nodeType&&(l.disabled!==!0||"click"!==e.type)){for(r=[],o=0;s>o;o++)i=t[o],n=i.selector+" ",void 0===r[n]&&(r[n]=i.needsContext?oe(n,this).index(l)>=0:oe.find(n,this,null,[l]).length),r[n]&&r.push(i);r.length&&a.push({elem:l,handlers:r})}return s<t.length&&a.push({elem:this,handlers:t.slice(s)}),a},fix:function(e){if(e[oe.expando])return e;var t,n,i,r=e.type,o=e,a=this.fixHooks[r];for(a||(this.fixHooks[r]=a=He.test(r)?this.mouseHooks:Re.test(r)?this.keyHooks:{}),i=a.props?this.props.concat(a.props):this.props,e=new oe.Event(o),t=i.length;t--;)n=i[t],e[n]=o[n];return e.target||(e.target=o.srcElement||me),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,a.filter?a.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,t){var n,i,r,o=t.button,a=t.fromElement;return null==e.pageX&&null!=t.clientX&&(i=e.target.ownerDocument||me,r=i.documentElement,n=i.body,e.pageX=t.clientX+(r&&r.scrollLeft||n&&n.scrollLeft||0)-(r&&r.clientLeft||n&&n.clientLeft||0),e.pageY=t.clientY+(r&&r.scrollTop||n&&n.scrollTop||0)-(r&&r.clientTop||n&&n.clientTop||0)),!e.relatedTarget&&a&&(e.relatedTarget=a===e.target?t.toElement:a),e.which||void 0===o||(e.which=1&o?1:2&o?3:4&o?2:0),e}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==h()&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===h()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return oe.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(e){return oe.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,i){var r=oe.extend(new oe.Event,n,{type:e,isSimulated:!0,originalEvent:{}});i?oe.event.trigger(r,null,t):oe.event.dispatch.call(t,r),r.isDefaultPrevented()&&n.preventDefault()}},oe.removeEvent=me.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var i="on"+t;e.detachEvent&&(typeof e[i]===$e&&(e[i]=null),e.detachEvent(i,n))},oe.Event=function(e,t){return this instanceof oe.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&e.returnValue===!1?f:p):this.type=e,t&&oe.extend(this,t),this.timeStamp=e&&e.timeStamp||oe.now(),void(this[oe.expando]=!0)):new oe.Event(e,t)},oe.Event.prototype={isDefaultPrevented:p,isPropagationStopped:p,isImmediatePropagationStopped:p,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=f,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=f,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=f,e&&e.stopImmediatePropagation&&e.stopImmediatePropagation(),this.stopPropagation()}},oe.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,t){oe.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,i=this,r=e.relatedTarget,o=e.handleObj;return(!r||r!==i&&!oe.contains(i,r))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),ie.submitBubbles||(oe.event.special.submit={setup:function(){return oe.nodeName(this,"form")?!1:void oe.event.add(this,"click._submit keypress._submit",function(e){var t=e.target,n=oe.nodeName(t,"input")||oe.nodeName(t,"button")?t.form:void 0;n&&!oe._data(n,"submitBubbles")&&(oe.event.add(n,"submit._submit",function(e){ -e._submit_bubble=!0}),oe._data(n,"submitBubbles",!0))})},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&oe.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return oe.nodeName(this,"form")?!1:void oe.event.remove(this,"._submit")}}),ie.changeBubbles||(oe.event.special.change={setup:function(){return je.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(oe.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),oe.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),oe.event.simulate("change",this,e,!0)})),!1):void oe.event.add(this,"beforeactivate._change",function(e){var t=e.target;je.test(t.nodeName)&&!oe._data(t,"changeBubbles")&&(oe.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||oe.event.simulate("change",this.parentNode,e,!0)}),oe._data(t,"changeBubbles",!0))})},handle:function(e){var t=e.target;return this!==t||e.isSimulated||e.isTrigger||"radio"!==t.type&&"checkbox"!==t.type?e.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return oe.event.remove(this,"._change"),!je.test(this.nodeName)}}),ie.focusinBubbles||oe.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){oe.event.simulate(t,e.target,oe.event.fix(e),!0)};oe.event.special[t]={setup:function(){var i=this.ownerDocument||this,r=oe._data(i,t);r||i.addEventListener(e,n,!0),oe._data(i,t,(r||0)+1)},teardown:function(){var i=this.ownerDocument||this,r=oe._data(i,t)-1;r?oe._data(i,t,r):(i.removeEventListener(e,n,!0),oe._removeData(i,t))}}}),oe.fn.extend({on:function(e,t,n,i,r){var o,a;if("object"==typeof e){"string"!=typeof t&&(n=n||t,t=void 0);for(o in e)this.on(o,t,n,e[o],r);return this}if(null==n&&null==i?(i=t,n=t=void 0):null==i&&("string"==typeof t?(i=n,n=void 0):(i=n,n=t,t=void 0)),i===!1)i=p;else if(!i)return this;return 1===r&&(a=i,i=function(e){return oe().off(e),a.apply(this,arguments)},i.guid=a.guid||(a.guid=oe.guid++)),this.each(function(){oe.event.add(this,e,i,n,t)})},one:function(e,t,n,i){return this.on(e,t,n,i,1)},off:function(e,t,n){var i,r;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,oe(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(r in e)this.off(r,t,e[r]);return this}return(t===!1||"function"==typeof t)&&(n=t,t=void 0),n===!1&&(n=p),this.each(function(){oe.event.remove(this,e,n,t)})},trigger:function(e,t){return this.each(function(){oe.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];return n?oe.event.trigger(e,t,n,!0):void 0}});var Pe="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",Oe=/ jQuery\d+="(?:null|\d+)"/g,qe=new RegExp("<(?:"+Pe+")[\\s/>]","i"),Me=/^\s+/,ze=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,Fe=/<([\w:]+)/,Be=/<tbody/i,Ie=/<|&#?\w+;/,We=/<(?:script|style|link)/i,Ue=/checked\s*(?:[^=]|=\s*.checked.)/i,Xe=/^$|\/(?:java|ecma)script/i,Ze=/^true\/(.*)/,Ge=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,Ve={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:ie.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},Qe=m(me),Ye=Qe.appendChild(me.createElement("div"));Ve.optgroup=Ve.option,Ve.tbody=Ve.tfoot=Ve.colgroup=Ve.caption=Ve.thead,Ve.th=Ve.td,oe.extend({clone:function(e,t,n){var i,r,o,a,s,l=oe.contains(e.ownerDocument,e);if(ie.html5Clone||oe.isXMLDoc(e)||!qe.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Ye.innerHTML=e.outerHTML,Ye.removeChild(o=Ye.firstChild)),!(ie.noCloneEvent&&ie.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||oe.isXMLDoc(e)))for(i=g(o),s=g(e),a=0;null!=(r=s[a]);++a)i[a]&&k(r,i[a]);if(t)if(n)for(s=s||g(e),i=i||g(o),a=0;null!=(r=s[a]);a++)C(r,i[a]);else C(e,o);return i=g(o,"script"),i.length>0&&w(i,!l&&g(e,"script")),i=s=r=null,o},buildFragment:function(e,t,n,i){for(var r,o,a,s,l,c,u,d=e.length,f=m(t),p=[],h=0;d>h;h++)if(o=e[h],o||0===o)if("object"===oe.type(o))oe.merge(p,o.nodeType?[o]:o);else if(Ie.test(o)){for(s=s||f.appendChild(t.createElement("div")),l=(Fe.exec(o)||["",""])[1].toLowerCase(),u=Ve[l]||Ve._default,s.innerHTML=u[1]+o.replace(ze,"<$1></$2>")+u[2],r=u[0];r--;)s=s.lastChild;if(!ie.leadingWhitespace&&Me.test(o)&&p.push(t.createTextNode(Me.exec(o)[0])),!ie.tbody)for(o="table"!==l||Be.test(o)?"<table>"!==u[1]||Be.test(o)?0:s:s.firstChild,r=o&&o.childNodes.length;r--;)oe.nodeName(c=o.childNodes[r],"tbody")&&!c.childNodes.length&&o.removeChild(c);for(oe.merge(p,s.childNodes),s.textContent="";s.firstChild;)s.removeChild(s.firstChild);s=f.lastChild}else p.push(t.createTextNode(o));for(s&&f.removeChild(s),ie.appendChecked||oe.grep(g(p,"input"),v),h=0;o=p[h++];)if((!i||-1===oe.inArray(o,i))&&(a=oe.contains(o.ownerDocument,o),s=g(f.appendChild(o),"script"),a&&w(s),n))for(r=0;o=s[r++];)Xe.test(o.type||"")&&n.push(o);return s=null,f},cleanData:function(e,t){for(var n,i,r,o,a=0,s=oe.expando,l=oe.cache,c=ie.deleteExpando,u=oe.event.special;null!=(n=e[a]);a++)if((t||oe.acceptData(n))&&(r=n[s],o=r&&l[r])){if(o.events)for(i in o.events)u[i]?oe.event.remove(n,i):oe.removeEvent(n,i,o.handle);l[r]&&(delete l[r],c?delete n[s]:typeof n.removeAttribute!==$e?n.removeAttribute(s):n[s]=null,V.push(r))}}}),oe.fn.extend({text:function(e){return Ae(this,function(e){return void 0===e?oe.text(this):this.empty().append((this[0]&&this[0].ownerDocument||me).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=y(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=y(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){for(var n,i=e?oe.filter(e,this):this,r=0;null!=(n=i[r]);r++)t||1!==n.nodeType||oe.cleanData(g(n)),n.parentNode&&(t&&oe.contains(n.ownerDocument,n)&&w(g(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){for(var e,t=0;null!=(e=this[t]);t++){for(1===e.nodeType&&oe.cleanData(g(e,!1));e.firstChild;)e.removeChild(e.firstChild);e.options&&oe.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return oe.clone(this,e,t)})},html:function(e){return Ae(this,function(e){var t=this[0]||{},n=0,i=this.length;if(void 0===e)return 1===t.nodeType?t.innerHTML.replace(Oe,""):void 0;if(!("string"!=typeof e||We.test(e)||!ie.htmlSerialize&&qe.test(e)||!ie.leadingWhitespace&&Me.test(e)||Ve[(Fe.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(ze,"<$1></$2>");try{for(;i>n;n++)t=this[n]||{},1===t.nodeType&&(oe.cleanData(g(t,!1)),t.innerHTML=e);t=0}catch(r){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=arguments[0];return this.domManip(arguments,function(t){e=this.parentNode,oe.cleanData(g(this)),e&&e.replaceChild(t,this)}),e&&(e.length||e.nodeType)?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t){e=Y.apply([],e);var n,i,r,o,a,s,l=0,c=this.length,u=this,d=c-1,f=e[0],p=oe.isFunction(f);if(p||c>1&&"string"==typeof f&&!ie.checkClone&&Ue.test(f))return this.each(function(n){var i=u.eq(n);p&&(e[0]=f.call(this,n,i.html())),i.domManip(e,t)});if(c&&(s=oe.buildFragment(e,this[0].ownerDocument,!1,this),n=s.firstChild,1===s.childNodes.length&&(s=n),n)){for(o=oe.map(g(s,"script"),b),r=o.length;c>l;l++)i=s,l!==d&&(i=oe.clone(i,!0,!0),r&&oe.merge(o,g(i,"script"))),t.call(this[l],i,l);if(r)for(a=o[o.length-1].ownerDocument,oe.map(o,x),l=0;r>l;l++)i=o[l],Xe.test(i.type||"")&&!oe._data(i,"globalEval")&&oe.contains(a,i)&&(i.src?oe._evalUrl&&oe._evalUrl(i.src):oe.globalEval((i.text||i.textContent||i.innerHTML||"").replace(Ge,"")));s=n=null}return this}}),oe.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){oe.fn[e]=function(e){for(var n,i=0,r=[],o=oe(e),a=o.length-1;a>=i;i++)n=i===a?this:this.clone(!0),oe(o[i])[t](n),K.apply(r,n.get());return this.pushStack(r)}});var Ke,Je={};!function(){var e;ie.shrinkWrapBlocks=function(){if(null!=e)return e;e=!1;var t,n,i;return n=me.getElementsByTagName("body")[0],n&&n.style?(t=me.createElement("div"),i=me.createElement("div"),i.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",n.appendChild(i).appendChild(t),typeof t.style.zoom!==$e&&(t.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",t.appendChild(me.createElement("div")).style.width="5px",e=3!==t.offsetWidth),n.removeChild(i),e):void 0}}();var et=/^margin/,tt=new RegExp("^("+Ee+")(?!px)[a-z%]+$","i"),nt,it,rt=/^(top|right|bottom|left)$/;e.getComputedStyle?(nt=function(e){return e.ownerDocument.defaultView.getComputedStyle(e,null)},it=function(e,t,n){var i,r,o,a,s=e.style;return n=n||nt(e),a=n?n.getPropertyValue(t)||n[t]:void 0,n&&(""!==a||oe.contains(e.ownerDocument,e)||(a=oe.style(e,t)),tt.test(a)&&et.test(t)&&(i=s.width,r=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=i,s.minWidth=r,s.maxWidth=o)),void 0===a?a:a+""}):me.documentElement.currentStyle&&(nt=function(e){return e.currentStyle},it=function(e,t,n){var i,r,o,a,s=e.style;return n=n||nt(e),a=n?n[t]:void 0,null==a&&s&&s[t]&&(a=s[t]),tt.test(a)&&!rt.test(t)&&(i=s.left,r=e.runtimeStyle,o=r&&r.left,o&&(r.left=e.currentStyle.left),s.left="fontSize"===t?"1em":a,a=s.pixelLeft+"px",s.left=i,o&&(r.left=o)),void 0===a?a:a+""||"auto"}),!function(){function t(){var t,n,i,r;n=me.getElementsByTagName("body")[0],n&&n.style&&(t=me.createElement("div"),i=me.createElement("div"),i.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",n.appendChild(i).appendChild(t),t.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",o=a=!1,l=!0,e.getComputedStyle&&(o="1%"!==(e.getComputedStyle(t,null)||{}).top,a="4px"===(e.getComputedStyle(t,null)||{width:"4px"}).width,r=t.appendChild(me.createElement("div")),r.style.cssText=t.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",r.style.marginRight=r.style.width="0",t.style.width="1px",l=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),t.innerHTML="<table><tr><td></td><td>t</td></tr></table>",r=t.getElementsByTagName("td"),r[0].style.cssText="margin:0;border:0;padding:0;display:none",s=0===r[0].offsetHeight,s&&(r[0].style.display="",r[1].style.display="none",s=0===r[0].offsetHeight),n.removeChild(i))}var n,i,r,o,a,s,l;n=me.createElement("div"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",r=n.getElementsByTagName("a")[0],(i=r&&r.style)&&(i.cssText="float:left;opacity:.5",ie.opacity="0.5"===i.opacity,ie.cssFloat=!!i.cssFloat,n.style.backgroundClip="content-box",n.cloneNode(!0).style.backgroundClip="",ie.clearCloneStyle="content-box"===n.style.backgroundClip,ie.boxSizing=""===i.boxSizing||""===i.MozBoxSizing||""===i.WebkitBoxSizing,oe.extend(ie,{reliableHiddenOffsets:function(){return null==s&&t(),s},boxSizingReliable:function(){return null==a&&t(),a},pixelPosition:function(){return null==o&&t(),o},reliableMarginRight:function(){return null==l&&t(),l}}))}(),oe.swap=function(e,t,n,i){var r,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];r=n.apply(e,i||[]);for(o in t)e.style[o]=a[o];return r};var ot=/alpha\([^)]*\)/i,at=/opacity\s*=\s*([^)]*)/,st=/^(none|table(?!-c[ea]).+)/,lt=new RegExp("^("+Ee+")(.*)$","i"),ct=new RegExp("^([+-])=("+Ee+")","i"),ut={position:"absolute",visibility:"hidden",display:"block"},dt={letterSpacing:"0",fontWeight:"400"},ft=["Webkit","O","Moz","ms"];oe.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=it(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":ie.cssFloat?"cssFloat":"styleFloat"},style:function(e,t,n,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var r,o,a,s=oe.camelCase(t),l=e.style;if(t=oe.cssProps[s]||(oe.cssProps[s]=N(l,s)),a=oe.cssHooks[t]||oe.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(r=a.get(e,!1,i))?r:l[t];if(o=typeof n,"string"===o&&(r=ct.exec(n))&&(n=(r[1]+1)*r[2]+parseFloat(oe.css(e,t)),o="number"),null!=n&&n===n&&("number"!==o||oe.cssNumber[s]||(n+="px"),ie.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),!(a&&"set"in a&&void 0===(n=a.set(e,n,i)))))try{l[t]=n}catch(c){}}},css:function(e,t,n,i){var r,o,a,s=oe.camelCase(t);return t=oe.cssProps[s]||(oe.cssProps[s]=N(e.style,s)),a=oe.cssHooks[t]||oe.cssHooks[s],a&&"get"in a&&(o=a.get(e,!0,n)),void 0===o&&(o=it(e,t,i)),"normal"===o&&t in dt&&(o=dt[t]),""===n||n?(r=parseFloat(o),n===!0||oe.isNumeric(r)?r||0:o):o}}),oe.each(["height","width"],function(e,t){oe.cssHooks[t]={get:function(e,n,i){return n?st.test(oe.css(e,"display"))&&0===e.offsetWidth?oe.swap(e,ut,function(){return j(e,t,i)}):j(e,t,i):void 0},set:function(e,n,i){var r=i&&nt(e);return A(e,n,i?D(e,t,i,ie.boxSizing&&"border-box"===oe.css(e,"boxSizing",!1,r),r):0)}}}),ie.opacity||(oe.cssHooks.opacity={get:function(e,t){return at.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,i=e.currentStyle,r=oe.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=i&&i.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===oe.trim(o.replace(ot,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||i&&!i.filter)||(n.filter=ot.test(o)?o.replace(ot,r):o+" "+r)}}),oe.cssHooks.marginRight=E(ie.reliableMarginRight,function(e,t){return t?oe.swap(e,{display:"inline-block"},it,[e,"marginRight"]):void 0}),oe.each({margin:"",padding:"",border:"Width"},function(e,t){oe.cssHooks[e+t]={expand:function(n){for(var i=0,r={},o="string"==typeof n?n.split(" "):[n];4>i;i++)r[e+Ne[i]+t]=o[i]||o[i-2]||o[0];return r}},et.test(e)||(oe.cssHooks[e+t].set=A)}),oe.fn.extend({css:function(e,t){return Ae(this,function(e,t,n){var i,r,o={},a=0;if(oe.isArray(t)){for(i=nt(e),r=t.length;r>a;a++)o[t[a]]=oe.css(e,t[a],!1,i);return o}return void 0!==n?oe.style(e,t,n):oe.css(e,t)},e,t,arguments.length>1)},show:function(){return L(this,!0)},hide:function(){return L(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){Le(this)?oe(this).show():oe(this).hide()})}}),oe.Tween=R,R.prototype={constructor:R,init:function(e,t,n,i,r,o){this.elem=e,this.prop=n,this.easing=r||"swing",this.options=t,this.start=this.now=this.cur(),this.end=i,this.unit=o||(oe.cssNumber[n]?"":"px")},cur:function(){var e=R.propHooks[this.prop];return e&&e.get?e.get(this):R.propHooks._default.get(this)},run:function(e){var t,n=R.propHooks[this.prop];return this.pos=t=this.options.duration?oe.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):R.propHooks._default.set(this),this}},R.prototype.init.prototype=R.prototype,R.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=oe.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){oe.fx.step[e.prop]?oe.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[oe.cssProps[e.prop]]||oe.cssHooks[e.prop])?oe.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},R.propHooks.scrollTop=R.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},oe.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},oe.fx=R.prototype.init,oe.fx.step={};var pt,ht,mt=/^(?:toggle|show|hide)$/,gt=new RegExp("^(?:([+-])=|)("+Ee+")([a-z%]*)$","i"),vt=/queueHooks$/,yt=[O],bt={"*":[function(e,t){var n=this.createTween(e,t),i=n.cur(),r=gt.exec(t),o=r&&r[3]||(oe.cssNumber[e]?"":"px"),a=(oe.cssNumber[e]||"px"!==o&&+i)&>.exec(oe.css(n.elem,e)),s=1,l=20;if(a&&a[3]!==o){o=o||a[3],r=r||[],a=+i||1;do s=s||".5",a/=s,oe.style(n.elem,e,a+o);while(s!==(s=n.cur()/i)&&1!==s&&--l)}return r&&(a=n.start=+a||+i||0,n.unit=o,n.end=r[1]?a+(r[1]+1)*r[2]:+r[2]),n}]};oe.Animation=oe.extend(M,{tweener:function(e,t){oe.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");for(var n,i=0,r=e.length;r>i;i++)n=e[i],bt[n]=bt[n]||[],bt[n].unshift(t)},prefilter:function(e,t){t?yt.unshift(e):yt.push(e)}}),oe.speed=function(e,t,n){var i=e&&"object"==typeof e?oe.extend({},e):{complete:n||!n&&t||oe.isFunction(e)&&e,duration:e,easing:n&&t||t&&!oe.isFunction(t)&&t};return i.duration=oe.fx.off?0:"number"==typeof i.duration?i.duration:i.duration in oe.fx.speeds?oe.fx.speeds[i.duration]:oe.fx.speeds._default,(null==i.queue||i.queue===!0)&&(i.queue="fx"),i.old=i.complete,i.complete=function(){oe.isFunction(i.old)&&i.old.call(this),i.queue&&oe.dequeue(this,i.queue)},i},oe.fn.extend({fadeTo:function(e,t,n,i){return this.filter(Le).css("opacity",0).show().end().animate({opacity:t},e,n,i)},animate:function(e,t,n,i){var r=oe.isEmptyObject(e),o=oe.speed(t,n,i),a=function(){var t=M(this,oe.extend({},e),o);(r||oe._data(this,"finish"))&&t.stop(!0)};return a.finish=a,r||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,t,n){var i=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,r=null!=e&&e+"queueHooks",o=oe.timers,a=oe._data(this);if(r)a[r]&&a[r].stop&&i(a[r]);else for(r in a)a[r]&&a[r].stop&&vt.test(r)&&i(a[r]);for(r=o.length;r--;)o[r].elem!==this||null!=e&&o[r].queue!==e||(o[r].anim.stop(n),t=!1,o.splice(r,1));(t||!n)&&oe.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=oe._data(this),i=n[e+"queue"],r=n[e+"queueHooks"],o=oe.timers,a=i?i.length:0;for(n.finish=!0,oe.queue(this,e,[]),r&&r.stop&&r.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)i[t]&&i[t].finish&&i[t].finish.call(this);delete n.finish})}}),oe.each(["toggle","show","hide"],function(e,t){var n=oe.fn[t];oe.fn[t]=function(e,i,r){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(_(t,!0),e,i,r)}}),oe.each({slideDown:_("show"),slideUp:_("hide"),slideToggle:_("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){oe.fn[e]=function(e,n,i){return this.animate(t,e,n,i)}}),oe.timers=[],oe.fx.tick=function(){var e,t=oe.timers,n=0;for(pt=oe.now();n<t.length;n++)e=t[n],e()||t[n]!==e||t.splice(n--,1);t.length||oe.fx.stop(),pt=void 0},oe.fx.timer=function(e){oe.timers.push(e),e()?oe.fx.start():oe.timers.pop()},oe.fx.interval=13,oe.fx.start=function(){ht||(ht=setInterval(oe.fx.tick,oe.fx.interval))},oe.fx.stop=function(){clearInterval(ht),ht=null},oe.fx.speeds={slow:600,fast:200,_default:400},oe.fn.delay=function(e,t){return e=oe.fx?oe.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var i=setTimeout(t,e);n.stop=function(){clearTimeout(i)}})},function(){var e,t,n,i,r;t=me.createElement("div"),t.setAttribute("className","t"),t.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",i=t.getElementsByTagName("a")[0],n=me.createElement("select"),r=n.appendChild(me.createElement("option")),e=t.getElementsByTagName("input")[0],i.style.cssText="top:1px",ie.getSetAttribute="t"!==t.className,ie.style=/top/.test(i.getAttribute("style")),ie.hrefNormalized="/a"===i.getAttribute("href"),ie.checkOn=!!e.value,ie.optSelected=r.selected,ie.enctype=!!me.createElement("form").enctype,n.disabled=!0,ie.optDisabled=!r.disabled,e=me.createElement("input"),e.setAttribute("value",""),ie.input=""===e.getAttribute("value"),e.value="t",e.setAttribute("type","radio"),ie.radioValue="t"===e.value}();var xt=/\r/g;oe.fn.extend({val:function(e){var t,n,i,r=this[0];return arguments.length?(i=oe.isFunction(e),this.each(function(n){var r;1===this.nodeType&&(r=i?e.call(this,n,oe(this).val()):e,null==r?r="":"number"==typeof r?r+="":oe.isArray(r)&&(r=oe.map(r,function(e){return null==e?"":e+""})),t=oe.valHooks[this.type]||oe.valHooks[this.nodeName.toLowerCase()],t&&"set"in t&&void 0!==t.set(this,r,"value")||(this.value=r))})):r?(t=oe.valHooks[r.type]||oe.valHooks[r.nodeName.toLowerCase()],t&&"get"in t&&void 0!==(n=t.get(r,"value"))?n:(n=r.value,"string"==typeof n?n.replace(xt,""):null==n?"":n)):void 0}}),oe.extend({valHooks:{option:{get:function(e){var t=oe.find.attr(e,"value");return null!=t?t:oe.trim(oe.text(e))}},select:{get:function(e){for(var t,n,i=e.options,r=e.selectedIndex,o="select-one"===e.type||0>r,a=o?null:[],s=o?r+1:i.length,l=0>r?s:o?r:0;s>l;l++)if(n=i[l],!(!n.selected&&l!==r||(ie.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&oe.nodeName(n.parentNode,"optgroup"))){if(t=oe(n).val(),o)return t;a.push(t)}return a},set:function(e,t){for(var n,i,r=e.options,o=oe.makeArray(t),a=r.length;a--;)if(i=r[a],oe.inArray(oe.valHooks.option.get(i),o)>=0)try{i.selected=n=!0}catch(s){i.scrollHeight}else i.selected=!1;return n||(e.selectedIndex=-1),r}}}}),oe.each(["radio","checkbox"],function(){oe.valHooks[this]={set:function(e,t){return oe.isArray(t)?e.checked=oe.inArray(oe(e).val(),t)>=0:void 0}},ie.checkOn||(oe.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var wt,Ct,$t=oe.expr.attrHandle,kt=/^(?:checked|selected)$/i,St=ie.getSetAttribute,Tt=ie.input;oe.fn.extend({attr:function(e,t){return Ae(this,oe.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){oe.removeAttr(this,e)})}}),oe.extend({attr:function(e,t,n){var i,r,o=e.nodeType;return e&&3!==o&&8!==o&&2!==o?typeof e.getAttribute===$e?oe.prop(e,t,n):(1===o&&oe.isXMLDoc(e)||(t=t.toLowerCase(),i=oe.attrHooks[t]||(oe.expr.match.bool.test(t)?Ct:wt)),void 0===n?i&&"get"in i&&null!==(r=i.get(e,t))?r:(r=oe.find.attr(e,t),null==r?void 0:r):null!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):void oe.removeAttr(e,t)):void 0},removeAttr:function(e,t){var n,i,r=0,o=t&&t.match(xe);if(o&&1===e.nodeType)for(;n=o[r++];)i=oe.propFix[n]||n,oe.expr.match.bool.test(n)?Tt&&St||!kt.test(n)?e[i]=!1:e[oe.camelCase("default-"+n)]=e[i]=!1:oe.attr(e,n,""),e.removeAttribute(St?n:i)},attrHooks:{type:{set:function(e,t){if(!ie.radioValue&&"radio"===t&&oe.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}}}),Ct={set:function(e,t,n){return t===!1?oe.removeAttr(e,n):Tt&&St||!kt.test(n)?e.setAttribute(!St&&oe.propFix[n]||n,n):e[oe.camelCase("default-"+n)]=e[n]=!0,n}},oe.each(oe.expr.match.bool.source.match(/\w+/g),function(e,t){var n=$t[t]||oe.find.attr;$t[t]=Tt&&St||!kt.test(t)?function(e,t,i){var r,o;return i||(o=$t[t],$t[t]=r,r=null!=n(e,t,i)?t.toLowerCase():null,$t[t]=o),r}:function(e,t,n){return n?void 0:e[oe.camelCase("default-"+t)]?t.toLowerCase():null}}),Tt&&St||(oe.attrHooks.value={set:function(e,t,n){return oe.nodeName(e,"input")?void(e.defaultValue=t):wt&&wt.set(e,t,n)}}),St||(wt={set:function(e,t,n){var i=e.getAttributeNode(n);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(n)),i.value=t+="","value"===n||t===e.getAttribute(n)?t:void 0}},$t.id=$t.name=$t.coords=function(e,t,n){var i;return n?void 0:(i=e.getAttributeNode(t))&&""!==i.value?i.value:null},oe.valHooks.button={get:function(e,t){var n=e.getAttributeNode(t);return n&&n.specified?n.value:void 0},set:wt.set},oe.attrHooks.contenteditable={set:function(e,t,n){wt.set(e,""===t?!1:t,n)}},oe.each(["width","height"],function(e,t){oe.attrHooks[t]={set:function(e,n){return""===n?(e.setAttribute(t,"auto"),n):void 0}}})),ie.style||(oe.attrHooks.style={get:function(e){return e.style.cssText||void 0},set:function(e,t){return e.style.cssText=t+""}});var Et=/^(?:input|select|textarea|button|object)$/i,Nt=/^(?:a|area)$/i;oe.fn.extend({prop:function(e,t){return Ae(this,oe.prop,e,t,arguments.length>1)},removeProp:function(e){return e=oe.propFix[e]||e,this.each(function(){try{this[e]=void 0,delete this[e]}catch(t){}})}}),oe.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(e,t,n){var i,r,o,a=e.nodeType;return e&&3!==a&&8!==a&&2!==a?(o=1!==a||!oe.isXMLDoc(e),o&&(t=oe.propFix[t]||t,r=oe.propHooks[t]),void 0!==n?r&&"set"in r&&void 0!==(i=r.set(e,n,t))?i:e[t]=n:r&&"get"in r&&null!==(i=r.get(e,t))?i:e[t]):void 0},propHooks:{tabIndex:{get:function(e){var t=oe.find.attr(e,"tabindex");return t?parseInt(t,10):Et.test(e.nodeName)||Nt.test(e.nodeName)&&e.href?0:-1}}}}),ie.hrefNormalized||oe.each(["href","src"],function(e,t){oe.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),ie.optSelected||(oe.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}}),oe.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){oe.propFix[this.toLowerCase()]=this}),ie.enctype||(oe.propFix.enctype="encoding");var Lt=/[\t\r\n\f]/g;oe.fn.extend({addClass:function(e){var t,n,i,r,o,a,s=0,l=this.length,c="string"==typeof e&&e;if(oe.isFunction(e))return this.each(function(t){oe(this).addClass(e.call(this,t,this.className))});if(c)for(t=(e||"").match(xe)||[];l>s;s++)if(n=this[s],i=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(Lt," "):" ")){for(o=0;r=t[o++];)i.indexOf(" "+r+" ")<0&&(i+=r+" ");a=oe.trim(i),n.className!==a&&(n.className=a)}return this},removeClass:function(e){var t,n,i,r,o,a,s=0,l=this.length,c=0===arguments.length||"string"==typeof e&&e;if(oe.isFunction(e))return this.each(function(t){oe(this).removeClass(e.call(this,t,this.className))});if(c)for(t=(e||"").match(xe)||[];l>s;s++)if(n=this[s],i=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(Lt," "):"")){for(o=0;r=t[o++];)for(;i.indexOf(" "+r+" ")>=0;)i=i.replace(" "+r+" "," ");a=e?oe.trim(i):"",n.className!==a&&(n.className=a)}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):this.each(oe.isFunction(e)?function(n){oe(this).toggleClass(e.call(this,n,this.className,t),t)}:function(){if("string"===n)for(var t,i=0,r=oe(this),o=e.match(xe)||[];t=o[i++];)r.hasClass(t)?r.removeClass(t):r.addClass(t);else(n===$e||"boolean"===n)&&(this.className&&oe._data(this,"__className__",this.className),this.className=this.className||e===!1?"":oe._data(this,"__className__")||"")})},hasClass:function(e){for(var t=" "+e+" ",n=0,i=this.length;i>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(Lt," ").indexOf(t)>=0)return!0;return!1}}),oe.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){oe.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),oe.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,i){return this.on(t,e,n,i)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var At=oe.now(),Dt=/\?/,jt=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;oe.parseJSON=function(t){if(e.JSON&&e.JSON.parse)return e.JSON.parse(t+"");var n,i=null,r=oe.trim(t+"");return r&&!oe.trim(r.replace(jt,function(e,t,r,o){return n&&t&&(i=0),0===i?e:(n=r||t,i+=!o-!r,"")}))?Function("return "+r)():oe.error("Invalid JSON: "+t)},oe.parseXML=function(t){var n,i;if(!t||"string"!=typeof t)return null;try{e.DOMParser?(i=new DOMParser,n=i.parseFromString(t,"text/xml")):(n=new ActiveXObject("Microsoft.XMLDOM"),n.async="false",n.loadXML(t))}catch(r){n=void 0}return n&&n.documentElement&&!n.getElementsByTagName("parsererror").length||oe.error("Invalid XML: "+t),n};var Rt,Ht,_t=/#.*$/,Pt=/([?&])_=[^&]*/,Ot=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,qt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Mt=/^(?:GET|HEAD)$/,zt=/^\/\//,Ft=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Bt={},It={},Wt="*/".concat("*");try{Ht=location.href}catch(Ut){Ht=me.createElement("a"),Ht.href="",Ht=Ht.href}Rt=Ft.exec(Ht.toLowerCase())||[],oe.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Ht,type:"GET",isLocal:qt.test(Rt[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Wt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":oe.parseJSON,"text xml":oe.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?B(B(e,oe.ajaxSettings),t):B(oe.ajaxSettings,e)},ajaxPrefilter:z(Bt),ajaxTransport:z(It),ajax:function(e,t){function n(e,t,n,i){var r,u,v,y,x,C=t;2!==b&&(b=2,s&&clearTimeout(s),c=void 0,a=i||"",w.readyState=e>0?4:0,r=e>=200&&300>e||304===e,n&&(y=I(d,w,n)),y=W(d,y,w,r),r?(d.ifModified&&(x=w.getResponseHeader("Last-Modified"),x&&(oe.lastModified[o]=x),x=w.getResponseHeader("etag"),x&&(oe.etag[o]=x)),204===e||"HEAD"===d.type?C="nocontent":304===e?C="notmodified":(C=y.state,u=y.data,v=y.error,r=!v)):(v=C,(e||!C)&&(C="error",0>e&&(e=0))),w.status=e,w.statusText=(t||C)+"",r?h.resolveWith(f,[u,C,w]):h.rejectWith(f,[w,C,v]),w.statusCode(g),g=void 0,l&&p.trigger(r?"ajaxSuccess":"ajaxError",[w,d,r?u:v]),m.fireWith(f,[w,C]),l&&(p.trigger("ajaxComplete",[w,d]),--oe.active||oe.event.trigger("ajaxStop")))}"object"==typeof e&&(t=e,e=void 0),t=t||{};var i,r,o,a,s,l,c,u,d=oe.ajaxSetup({},t),f=d.context||d,p=d.context&&(f.nodeType||f.jquery)?oe(f):oe.event,h=oe.Deferred(),m=oe.Callbacks("once memory"),g=d.statusCode||{},v={},y={},b=0,x="canceled",w={readyState:0,getResponseHeader:function(e){var t;if(2===b){if(!u)for(u={};t=Ot.exec(a);)u[t[1].toLowerCase()]=t[2];t=u[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===b?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return b||(e=y[n]=y[n]||e,v[e]=t),this},overrideMimeType:function(e){return b||(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>b)for(t in e)g[t]=[g[t],e[t]];else w.always(e[w.status]);return this},abort:function(e){var t=e||x;return c&&c.abort(t),n(0,t),this}};if(h.promise(w).complete=m.add,w.success=w.done,w.error=w.fail,d.url=((e||d.url||Ht)+"").replace(_t,"").replace(zt,Rt[1]+"//"),d.type=t.method||t.type||d.method||d.type,d.dataTypes=oe.trim(d.dataType||"*").toLowerCase().match(xe)||[""],null==d.crossDomain&&(i=Ft.exec(d.url.toLowerCase()),d.crossDomain=!(!i||i[1]===Rt[1]&&i[2]===Rt[2]&&(i[3]||("http:"===i[1]?"80":"443"))===(Rt[3]||("http:"===Rt[1]?"80":"443")))),d.data&&d.processData&&"string"!=typeof d.data&&(d.data=oe.param(d.data,d.traditional)), -F(Bt,d,t,w),2===b)return w;l=d.global,l&&0===oe.active++&&oe.event.trigger("ajaxStart"),d.type=d.type.toUpperCase(),d.hasContent=!Mt.test(d.type),o=d.url,d.hasContent||(d.data&&(o=d.url+=(Dt.test(o)?"&":"?")+d.data,delete d.data),d.cache===!1&&(d.url=Pt.test(o)?o.replace(Pt,"$1_="+At++):o+(Dt.test(o)?"&":"?")+"_="+At++)),d.ifModified&&(oe.lastModified[o]&&w.setRequestHeader("If-Modified-Since",oe.lastModified[o]),oe.etag[o]&&w.setRequestHeader("If-None-Match",oe.etag[o])),(d.data&&d.hasContent&&d.contentType!==!1||t.contentType)&&w.setRequestHeader("Content-Type",d.contentType),w.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+("*"!==d.dataTypes[0]?", "+Wt+"; q=0.01":""):d.accepts["*"]);for(r in d.headers)w.setRequestHeader(r,d.headers[r]);if(d.beforeSend&&(d.beforeSend.call(f,w,d)===!1||2===b))return w.abort();x="abort";for(r in{success:1,error:1,complete:1})w[r](d[r]);if(c=F(It,d,t,w)){w.readyState=1,l&&p.trigger("ajaxSend",[w,d]),d.async&&d.timeout>0&&(s=setTimeout(function(){w.abort("timeout")},d.timeout));try{b=1,c.send(v,n)}catch(C){if(!(2>b))throw C;n(-1,C)}}else n(-1,"No Transport");return w},getJSON:function(e,t,n){return oe.get(e,t,n,"json")},getScript:function(e,t){return oe.get(e,void 0,t,"script")}}),oe.each(["get","post"],function(e,t){oe[t]=function(e,n,i,r){return oe.isFunction(n)&&(r=r||i,i=n,n=void 0),oe.ajax({url:e,type:t,dataType:r,data:n,success:i})}}),oe.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){oe.fn[t]=function(e){return this.on(t,e)}}),oe._evalUrl=function(e){return oe.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},oe.fn.extend({wrapAll:function(e){if(oe.isFunction(e))return this.each(function(t){oe(this).wrapAll(e.call(this,t))});if(this[0]){var t=oe(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstChild&&1===e.firstChild.nodeType;)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return this.each(oe.isFunction(e)?function(t){oe(this).wrapInner(e.call(this,t))}:function(){var t=oe(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=oe.isFunction(e);return this.each(function(n){oe(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){oe.nodeName(this,"body")||oe(this).replaceWith(this.childNodes)}).end()}}),oe.expr.filters.hidden=function(e){return e.offsetWidth<=0&&e.offsetHeight<=0||!ie.reliableHiddenOffsets()&&"none"===(e.style&&e.style.display||oe.css(e,"display"))},oe.expr.filters.visible=function(e){return!oe.expr.filters.hidden(e)};var Xt=/%20/g,Zt=/\[\]$/,Gt=/\r?\n/g,Vt=/^(?:submit|button|image|reset|file)$/i,Qt=/^(?:input|select|textarea|keygen)/i;oe.param=function(e,t){var n,i=[],r=function(e,t){t=oe.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(void 0===t&&(t=oe.ajaxSettings&&oe.ajaxSettings.traditional),oe.isArray(e)||e.jquery&&!oe.isPlainObject(e))oe.each(e,function(){r(this.name,this.value)});else for(n in e)U(n,e[n],t,r);return i.join("&").replace(Xt,"+")},oe.fn.extend({serialize:function(){return oe.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=oe.prop(this,"elements");return e?oe.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!oe(this).is(":disabled")&&Qt.test(this.nodeName)&&!Vt.test(e)&&(this.checked||!De.test(e))}).map(function(e,t){var n=oe(this).val();return null==n?null:oe.isArray(n)?oe.map(n,function(e){return{name:t.name,value:e.replace(Gt,"\r\n")}}):{name:t.name,value:n.replace(Gt,"\r\n")}}).get()}}),oe.ajaxSettings.xhr=void 0!==e.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&X()||Z()}:X;var Yt=0,Kt={},Jt=oe.ajaxSettings.xhr();e.ActiveXObject&&oe(e).on("unload",function(){for(var e in Kt)Kt[e](void 0,!0)}),ie.cors=!!Jt&&"withCredentials"in Jt,Jt=ie.ajax=!!Jt,Jt&&oe.ajaxTransport(function(e){if(!e.crossDomain||ie.cors){var t;return{send:function(n,i){var r,o=e.xhr(),a=++Yt;if(o.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(r in e.xhrFields)o[r]=e.xhrFields[r];e.mimeType&&o.overrideMimeType&&o.overrideMimeType(e.mimeType),e.crossDomain||n["X-Requested-With"]||(n["X-Requested-With"]="XMLHttpRequest");for(r in n)void 0!==n[r]&&o.setRequestHeader(r,n[r]+"");o.send(e.hasContent&&e.data||null),t=function(n,r){var s,l,c;if(t&&(r||4===o.readyState))if(delete Kt[a],t=void 0,o.onreadystatechange=oe.noop,r)4!==o.readyState&&o.abort();else{c={},s=o.status,"string"==typeof o.responseText&&(c.text=o.responseText);try{l=o.statusText}catch(u){l=""}s||!e.isLocal||e.crossDomain?1223===s&&(s=204):s=c.text?200:404}c&&i(s,l,c,o.getAllResponseHeaders())},e.async?4===o.readyState?setTimeout(t):o.onreadystatechange=Kt[a]=t:t()},abort:function(){t&&t(void 0,!0)}}}}),oe.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return oe.globalEval(e),e}}}),oe.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),oe.ajaxTransport("script",function(e){if(e.crossDomain){var t,n=me.head||oe("head")[0]||me.documentElement;return{send:function(i,r){t=me.createElement("script"),t.async=!0,e.scriptCharset&&(t.charset=e.scriptCharset),t.src=e.url,t.onload=t.onreadystatechange=function(e,n){(n||!t.readyState||/loaded|complete/.test(t.readyState))&&(t.onload=t.onreadystatechange=null,t.parentNode&&t.parentNode.removeChild(t),t=null,n||r(200,"success"))},n.insertBefore(t,n.firstChild)},abort:function(){t&&t.onload(void 0,!0)}}}});var en=[],tn=/(=)\?(?=&|$)|\?\?/;oe.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=en.pop()||oe.expando+"_"+At++;return this[e]=!0,e}}),oe.ajaxPrefilter("json jsonp",function(t,n,i){var r,o,a,s=t.jsonp!==!1&&(tn.test(t.url)?"url":"string"==typeof t.data&&!(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&tn.test(t.data)&&"data");return s||"jsonp"===t.dataTypes[0]?(r=t.jsonpCallback=oe.isFunction(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,s?t[s]=t[s].replace(tn,"$1"+r):t.jsonp!==!1&&(t.url+=(Dt.test(t.url)?"&":"?")+t.jsonp+"="+r),t.converters["script json"]=function(){return a||oe.error(r+" was not called"),a[0]},t.dataTypes[0]="json",o=e[r],e[r]=function(){a=arguments},i.always(function(){e[r]=o,t[r]&&(t.jsonpCallback=n.jsonpCallback,en.push(r)),a&&oe.isFunction(o)&&o(a[0]),a=o=void 0}),"script"):void 0}),oe.parseHTML=function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||me;var i=fe.exec(e),r=!n&&[];return i?[t.createElement(i[1])]:(i=oe.buildFragment([e],t,r),r&&r.length&&oe(r).remove(),oe.merge([],i.childNodes))};var nn=oe.fn.load;oe.fn.load=function(e,t,n){if("string"!=typeof e&&nn)return nn.apply(this,arguments);var i,r,o,a=this,s=e.indexOf(" ");return s>=0&&(i=oe.trim(e.slice(s,e.length)),e=e.slice(0,s)),oe.isFunction(t)?(n=t,t=void 0):t&&"object"==typeof t&&(o="POST"),a.length>0&&oe.ajax({url:e,type:o,dataType:"html",data:t}).done(function(e){r=arguments,a.html(i?oe("<div>").append(oe.parseHTML(e)).find(i):e)}).complete(n&&function(e,t){a.each(n,r||[e.responseText,t,e])}),this},oe.expr.filters.animated=function(e){return oe.grep(oe.timers,function(t){return e===t.elem}).length};var rn=e.document.documentElement;oe.offset={setOffset:function(e,t,n){var i,r,o,a,s,l,c,u=oe.css(e,"position"),d=oe(e),f={};"static"===u&&(e.style.position="relative"),s=d.offset(),o=oe.css(e,"top"),l=oe.css(e,"left"),c=("absolute"===u||"fixed"===u)&&oe.inArray("auto",[o,l])>-1,c?(i=d.position(),a=i.top,r=i.left):(a=parseFloat(o)||0,r=parseFloat(l)||0),oe.isFunction(t)&&(t=t.call(e,n,s)),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+r),"using"in t?t.using.call(e,f):d.css(f)}},oe.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each(function(t){oe.offset.setOffset(this,e,t)});var t,n,i={top:0,left:0},r=this[0],o=r&&r.ownerDocument;return o?(t=o.documentElement,oe.contains(t,r)?(typeof r.getBoundingClientRect!==$e&&(i=r.getBoundingClientRect()),n=G(o),{top:i.top+(n.pageYOffset||t.scrollTop)-(t.clientTop||0),left:i.left+(n.pageXOffset||t.scrollLeft)-(t.clientLeft||0)}):i):void 0},position:function(){if(this[0]){var e,t,n={top:0,left:0},i=this[0];return"fixed"===oe.css(i,"position")?t=i.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),oe.nodeName(e[0],"html")||(n=e.offset()),n.top+=oe.css(e[0],"borderTopWidth",!0),n.left+=oe.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-oe.css(i,"marginTop",!0),left:t.left-n.left-oe.css(i,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent||rn;e&&!oe.nodeName(e,"html")&&"static"===oe.css(e,"position");)e=e.offsetParent;return e||rn})}}),oe.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,t){var n=/Y/.test(t);oe.fn[e]=function(i){return Ae(this,function(e,i,r){var o=G(e);return void 0===r?o?t in o?o[t]:o.document.documentElement[i]:e[i]:void(o?o.scrollTo(n?oe(o).scrollLeft():r,n?r:oe(o).scrollTop()):e[i]=r)},e,i,arguments.length,null)}}),oe.each(["top","left"],function(e,t){oe.cssHooks[t]=E(ie.pixelPosition,function(e,n){return n?(n=it(e,t),tt.test(n)?oe(e).position()[t]+"px":n):void 0})}),oe.each({Height:"height",Width:"width"},function(e,t){oe.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,i){oe.fn[i]=function(i,r){var o=arguments.length&&(n||"boolean"!=typeof i),a=n||(i===!0||r===!0?"margin":"border");return Ae(this,function(t,n,i){var r;return oe.isWindow(t)?t.document.documentElement["client"+e]:9===t.nodeType?(r=t.documentElement,Math.max(t.body["scroll"+e],r["scroll"+e],t.body["offset"+e],r["offset"+e],r["client"+e])):void 0===i?oe.css(t,n,a):oe.style(t,n,i,a)},t,o?i:void 0,o,null)}})}),oe.fn.size=function(){return this.length},oe.fn.andSelf=oe.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return oe});var on=e.jQuery,an=e.$;return oe.noConflict=function(t){return e.$===oe&&(e.$=an),t&&e.jQuery===oe&&(e.jQuery=on),oe},typeof t===$e&&(e.jQuery=e.$=oe),oe}),!function(){var e=null;window.PR_SHOULD_USE_CONTINUATION=!0,function(){function t(e){function t(e){var t=e.charCodeAt(0);if(92!==t)return t;var n=e.charAt(1);return(t=d[n])?t:n>="0"&&"7">=n?parseInt(e.substring(1),8):"u"===n||"x"===n?parseInt(e.substring(2),16):e.charCodeAt(1)}function n(e){return 32>e?(16>e?"\\x0":"\\x")+e.toString(16):(e=String.fromCharCode(e),"\\"===e||"-"===e||"]"===e||"^"===e?"\\"+e:e)}function i(e){var i=e.substring(1,e.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),e=[],r="^"===i[0],o=["["];r&&o.push("^");for(var r=r?1:0,a=i.length;a>r;++r){var s=i[r];if(/\\[bdsw]/i.test(s))o.push(s);else{var s=t(s),l;a>r+2&&"-"===i[r+1]?(l=t(i[r+2]),r+=2):l=s,e.push([s,l]),65>l||s>122||(65>l||s>90||e.push([32|Math.max(65,s),32|Math.min(l,90)]),97>l||s>122||e.push([-33&Math.max(97,s),-33&Math.min(l,122)]))}}for(e.sort(function(e,t){return e[0]-t[0]||t[1]-e[1]}),i=[],a=[],r=0;r<e.length;++r)s=e[r],s[0]<=a[1]+1?a[1]=Math.max(a[1],s[1]):i.push(a=s);for(r=0;r<i.length;++r)s=i[r],o.push(n(s[0])),s[1]>s[0]&&(s[1]+1>s[0]&&o.push("-"),o.push(n(s[1])));return o.push("]"),o.join("")}function r(e){for(var t=e.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),r=t.length,s=[],l=0,c=0;r>l;++l){var u=t[l];"("===u?++c:"\\"===u.charAt(0)&&(u=+u.substring(1))&&(c>=u?s[u]=-1:t[l]=n(u))}for(l=1;l<s.length;++l)-1===s[l]&&(s[l]=++o);for(c=l=0;r>l;++l)u=t[l],"("===u?(++c,s[c]||(t[l]="(?:")):"\\"===u.charAt(0)&&(u=+u.substring(1))&&c>=u&&(t[l]="\\"+s[u]);for(l=0;r>l;++l)"^"===t[l]&&"^"!==t[l+1]&&(t[l]="");if(e.ignoreCase&&a)for(l=0;r>l;++l)u=t[l],e=u.charAt(0),u.length>=2&&"["===e?t[l]=i(u):"\\"!==e&&(t[l]=u.replace(/[A-Za-z]/g,function(e){return e=e.charCodeAt(0),"["+String.fromCharCode(-33&e,32|e)+"]"}));return t.join("")}for(var o=0,a=!1,s=!1,l=0,c=e.length;c>l;++l){var u=e[l];if(u.ignoreCase)s=!0;else if(/[a-z]/i.test(u.source.replace(/\\u[\da-f]{4}|\\x[\da-f]{2}|\\[^UXux]/gi,""))){a=!0,s=!1;break}}for(var d={b:8,t:9,n:10,v:11,f:12,r:13},f=[],l=0,c=e.length;c>l;++l){if(u=e[l],u.global||u.multiline)throw Error(""+u);f.push("(?:"+r(u)+")")}return RegExp(f.join("|"),s?"gi":"g")}function n(e,t){function n(e){var l=e.nodeType;if(1==l){if(!i.test(e.className)){for(l=e.firstChild;l;l=l.nextSibling)n(l);l=e.nodeName.toLowerCase(),("br"===l||"li"===l)&&(r[s]="\n",a[s<<1]=o++,a[s++<<1|1]=e)}}else(3==l||4==l)&&(l=e.nodeValue,l.length&&(l=t?l.replace(/\r\n?/g,"\n"):l.replace(/[\t\n\r ]+/g," "),r[s]=l,a[s<<1]=o,o+=l.length,a[s++<<1|1]=e))}var i=/(?:^|\s)nocode(?:\s|$)/,r=[],o=0,a=[],s=0;return n(e),{a:r.join("").replace(/\n$/,""),d:a}}function i(e,t,n,i){t&&(e={a:t,e:e},n(e),i.push.apply(i,e.g))}function r(e){for(var t=void 0,n=e.firstChild;n;n=n.nextSibling)var i=n.nodeType,t=1===i?t?e:n:3===i&&w.test(n.nodeValue)?e:t;return t===e?void 0:t}function o(n,r){function o(e){for(var t=e.e,n=[t,"pln"],u=0,d=e.a.match(s)||[],f={},p=0,h=d.length;h>p;++p){var m=d[p],g=f[m],v=void 0,y;if("string"==typeof g)y=!1;else{var b=a[m.charAt(0)];if(b)v=m.match(b[1]),g=b[0];else{for(y=0;l>y;++y)if(b=r[y],v=m.match(b[1])){g=b[0];break}v||(g="pln")}!(y=g.length>=5&&"lang-"===g.substring(0,5))||v&&"string"==typeof v[1]||(y=!1,g="src"),y||(f[m]=g)}if(b=u,u+=m.length,y){y=v[1];var x=m.indexOf(y),w=x+y.length;v[2]&&(w=m.length-v[2].length,x=w-y.length),g=g.substring(5),i(t+b,m.substring(0,x),o,n),i(t+b+x,y,c(g,y),n),i(t+b+w,m.substring(w),o,n)}else n.push(t+b,g)}e.g=n}var a={},s;!function(){for(var i=n.concat(r),o=[],l={},c=0,u=i.length;u>c;++c){var d=i[c],f=d[3];if(f)for(var p=f.length;--p>=0;)a[f.charAt(p)]=d;d=d[1],f=""+d,l.hasOwnProperty(f)||(o.push(d),l[f]=e)}o.push(/[\S\s]/),s=t(o)}();var l=r.length;return o}function a(t){var n=[],i=[];t.tripleQuotedStrings?n.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,e,"'\""]):t.multiLineStrings?n.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,e,"'\"`"]):n.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,e,"\"'"]),t.verbatimStrings&&i.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,e]);var r=t.hashComments;if(r&&(t.cStyleComments?(r>1?n.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,e,"#"]):n.push(["com",/^#(?:(?:define|e(?:l|nd)if|else|error|ifn?def|include|line|pragma|undef|warning)\b|[^\n\r]*)/,e,"#"]),i.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h(?:h|pp|\+\+)?|[a-z]\w*)>/,e])):n.push(["com",/^#[^\n\r]*/,e,"#"])),t.cStyleComments&&(i.push(["com",/^\/\/[^\n\r]*/,e]),i.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,e])),r=t.regexLiterals){var a=(r=r>1?"":"\n\r")?".":"[\\S\\s]";i.push(["lang-regex",RegExp("^(?:^^\\.?|[+-]|[!=]=?=?|\\#|%=?|&&?=?|\\(|\\*=?|[+\\-]=|->|\\/=?|::?|<<?=?|>>?>?=?|,|;|\\?|@|\\[|~|{|\\^\\^?=?|\\|\\|?=?|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*("+("/(?=[^/*"+r+"])(?:[^/\\x5B\\x5C"+r+"]|\\x5C"+a+"|\\x5B(?:[^\\x5C\\x5D"+r+"]|\\x5C"+a+")*(?:\\x5D|$))+/")+")")])}return(r=t.types)&&i.push(["typ",r]),r=(""+t.keywords).replace(/^ | $/g,""),r.length&&i.push(["kwd",RegExp("^(?:"+r.replace(/[\s,]+/g,"|")+")\\b"),e]),n.push(["pln",/^\s+/,e," \r\n "]),r="^.[^\\s\\w.$@'\"`/\\\\]*",t.regexLiterals&&(r+="(?!s*/)"),i.push(["lit",/^@[$_a-z][\w$@]*/i,e],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,e],["pln",/^[$_a-z][\w$@]*/i,e],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,e,"0123456789"],["pln",/^\\[\S\s]?/,e],["pun",RegExp(r),e]),o(n,i)}function s(e,t,n){function i(e){var t=e.nodeType;if(1!=t||o.test(e.className)){if((3==t||4==t)&&n){var l=e.nodeValue,c=l.match(a);c&&(t=l.substring(0,c.index),e.nodeValue=t,(l=l.substring(c.index+c[0].length))&&e.parentNode.insertBefore(s.createTextNode(l),e.nextSibling),r(e),t||e.parentNode.removeChild(e))}}else if("br"===e.nodeName)r(e),e.parentNode&&e.parentNode.removeChild(e);else for(e=e.firstChild;e;e=e.nextSibling)i(e)}function r(e){function t(e,n){var i=n?e.cloneNode(!1):e,r=e.parentNode;if(r){var r=t(r,1),o=e.nextSibling;r.appendChild(i);for(var a=o;a;a=o)o=a.nextSibling,r.appendChild(a)}return i}for(;!e.nextSibling;)if(e=e.parentNode,!e)return;for(var e=t(e.nextSibling,0),n;(n=e.parentNode)&&1===n.nodeType;)e=n;c.push(e)}for(var o=/(?:^|\s)nocode(?:\s|$)/,a=/\r\n?|\n/,s=e.ownerDocument,l=s.createElement("li");e.firstChild;)l.appendChild(e.firstChild);for(var c=[l],u=0;u<c.length;++u)i(c[u]);t===(0|t)&&c[0].setAttribute("value",t);var d=s.createElement("ol");d.className="linenums";for(var t=Math.max(0,t-1|0)||0,u=0,f=c.length;f>u;++u)l=c[u],l.setAttribute("rel","L"+(u+t+1)),l.className="L"+(u+t+1),l.firstChild||l.appendChild(s.createTextNode(" ")),d.appendChild(l);e.appendChild(d)}function l(e,t){for(var n=t.length;--n>=0;){var i=t[n];k.hasOwnProperty(i)?d.console&&console.warn("cannot override language handler %s",i):k[i]=e}}function c(e,t){return e&&k.hasOwnProperty(e)||(e=/^\s*</.test(t)?"default-markup":"default-code"),k[e]}function u(e){var t=e.h;try{var i=n(e.c,e.i),r=i.a;e.a=r,e.d=i.d,e.e=0,c(t,r)(e);var o=/\bMSIE\s(\d+)/.exec(navigator.userAgent),o=o&&+o[1]<=8,t=/\n/g,a=e.a,s=a.length,i=0,l=e.d,u=l.length,r=0,f=e.g,p=f.length,h=0;f[p]=s;var m,g;for(g=m=0;p>g;)f[g]!==f[g+2]?(f[m++]=f[g++],f[m++]=f[g++]):g+=2;for(p=m,g=m=0;p>g;){for(var v=f[g],y=f[g+1],b=g+2;p>=b+2&&f[b+1]===y;)b+=2;f[m++]=v,f[m++]=y,g=b}f.length=m;var x=e.c,w;x&&(w=x.style.display,x.style.display="none");try{for(;u>r;){var C=l[r+2]||s,k=f[h+2]||s,b=Math.min(C,k),S=l[r+1],T;if(1!==S.nodeType&&(T=a.substring(i,b))){o&&(T=T.replace(t,"\r")),S.nodeValue=T;var E=S.ownerDocument,N=E.createElement("span");N.className=f[h+1];var L=S.parentNode;L.replaceChild(N,S),N.appendChild(S),C>i&&(l[r+1]=S=E.createTextNode(a.substring(b,C)),L.insertBefore(S,N.nextSibling))}i=b,i>=C&&(r+=2),i>=k&&(h+=2)}}finally{x&&(x.style.display=w)}}catch(A){d.console&&console.log(A&&A.stack||A)}}var d=window,f=["break,continue,do,else,for,if,return,while"],p=[[f,"auto,case,char,const,default,double,enum,extern,float,goto,inline,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],h=[p,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,delegate,dynamic_cast,explicit,export,friend,generic,late_check,mutable,namespace,nullptr,property,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],m=[p,"abstract,assert,boolean,byte,extends,final,finally,implements,import,instanceof,interface,null,native,package,strictfp,super,synchronized,throws,transient"],g=[m,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,internal,into,is,let,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var,virtual,where"],p=[p,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],v=[f,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],y=[f,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],b=[f,"as,assert,const,copy,drop,enum,extern,fail,false,fn,impl,let,log,loop,match,mod,move,mut,priv,pub,pure,ref,self,static,struct,true,trait,type,unsafe,use"],f=[f,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],x=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)\b/,w=/\S/,C=a({keywords:[h,g,p,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",v,y,f],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),k={};l(C,["default-code"]),l(o([],[["pln",/^[^<?]+/],["dec",/^<!\w[^>]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^<xmp\b[^>]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]),l(o([["pln",/^\s+/,e," \r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,e,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css",/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]),l(o([],[["atv",/^[\S\s]+/]]),["uq.val"]),l(a({keywords:h,hashComments:!0,cStyleComments:!0,types:x}),["c","cc","cpp","cxx","cyc","m"]),l(a({keywords:"null,true,false"}),["json"]),l(a({keywords:g,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:x}),["cs"]),l(a({keywords:m,cStyleComments:!0}),["java"]),l(a({keywords:f,hashComments:!0,multiLineStrings:!0}),["bash","bsh","csh","sh"]),l(a({keywords:v,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),["cv","py","python"]),l(a({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:2}),["perl","pl","pm"]),l(a({keywords:y,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb","ruby"]),l(a({keywords:p,cStyleComments:!0,regexLiterals:!0}),["javascript","js"]),l(a({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,throw,true,try,unless,until,when,while,yes",hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]),l(a({keywords:b,cStyleComments:!0,multilineStrings:!0}),["rc","rs","rust"]),l(o([],[["str",/^[\S\s]+/]]),["regex"]);var S=d.PR={createSimpleLexer:o,registerLangHandler:l,sourceDecorator:a,PR_ATTRIB_NAME:"atn",PR_ATTRIB_VALUE:"atv",PR_COMMENT:"com",PR_DECLARATION:"dec",PR_KEYWORD:"kwd",PR_LITERAL:"lit",PR_NOCODE:"nocode",PR_PLAIN:"pln",PR_PUNCTUATION:"pun",PR_SOURCE:"src",PR_STRING:"str",PR_TAG:"tag",PR_TYPE:"typ",prettyPrintOne:d.prettyPrintOne=function(e,t,n){var i=document.createElement("div");return i.innerHTML="<pre>"+e+"</pre>",i=i.firstChild,n&&s(i,n,!0),u({h:t,j:n,c:i,i:1}),i.innerHTML},prettyPrint:d.prettyPrint=function(t,n){function i(){for(var n=d.PR_SHOULD_USE_CONTINUATION?h.now()+250:1/0;m<l.length&&h.now()<n;m++){for(var o=l[m],c=k,f=o;f=f.previousSibling;){var p=f.nodeType,S=(7===p||8===p)&&f.nodeValue;if(S?!/^\??prettify\b/.test(S):3!==p||/\S/.test(f.nodeValue))break;if(S){c={},S.replace(/\b(\w+)=([\w%+\-.:]+)/g,function(e,t,n){c[t]=n});break}}if(f=o.className,(c!==k||y.test(f))&&!b.test(f)){for(p=!1,S=o.parentNode;S;S=S.parentNode)if(C.test(S.tagName)&&S.className&&y.test(S.className)){p=!0;break}if(!p){if(o.className+=" prettyprinted",p=c.lang,!p){var p=f.match(v),T;!p&&(T=r(o))&&w.test(T.tagName)&&(p=T.className.match(v)),p&&(p=p[1])}if(x.test(o.tagName))S=1;else var S=o.currentStyle,E=a.defaultView,S=(S=S?S.whiteSpace:E&&E.getComputedStyle?E.getComputedStyle(o,e).getPropertyValue("white-space"):0)&&"pre"===S.substring(0,3);E=c.linenums,(E="true"===E||+E)||(E=(E=f.match(/\blinenums\b(?::(\d+))?/))?E[1]&&E[1].length?+E[1]:!0:!1),E&&s(o,E,S),g={h:p,c:o,j:E,i:S},u(g)}}}m<l.length?setTimeout(i,250):"function"==typeof t&&t()}for(var o=n||document.body,a=o.ownerDocument||document,o=[o.getElementsByTagName("pre"),o.getElementsByTagName("code"),o.getElementsByTagName("xmp")],l=[],c=0;c<o.length;++c)for(var f=0,p=o[c].length;p>f;++f)l.push(o[c][f]);var o=e,h=Date;h.now||(h={now:function(){return+new Date}});var m=0,g,v=/\blang(?:uage)?-([\w.]+)(?!\S)/,y=/\bprettyprint\b/,b=/\bprettyprinted\b/,x=/pre|xmp/i,w=/^code$/i,C=/^(?:pre|code|xmp)$/i,k={};i()}};"function"==typeof define&&define.amd&&define("google-code-prettify",[],function(){return S})}()}(),PR.registerLangHandler(PR.createSimpleLexer([["com",/^#[^\n\r]*/,null,"#"],["pln",/^[\t\n\r \xa0]+/,null," \n\r "],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"']],[["kwd",/^(?:ADS|AD|AUG|BZF|BZMF|CAE|CAF|CA|CCS|COM|CS|DAS|DCA|DCOM|DCS|DDOUBL|DIM|DOUBLE|DTCB|DTCF|DV|DXCH|EDRUPT|EXTEND|INCR|INDEX|NDX|INHINT|LXCH|MASK|MSK|MP|MSU|NOOP|OVSK|QXCH|RAND|READ|RELINT|RESUME|RETURN|ROR|RXOR|SQUARE|SU|TCR|TCAA|OVSK|TCF|TC|TS|WAND|WOR|WRITE|XCH|XLQ|XXALQ|ZL|ZQ|ADD|ADZ|SUB|SUZ|MPY|MPR|MPZ|DVP|COM|ABS|CLA|CLZ|LDQ|STO|STQ|ALS|LLS|LRS|TRA|TSQ|TMI|TOV|AXT|TIX|DLY|INP|OUT)\s/,null],["typ",/^(?:-?GENADR|=MINUS|2BCADR|VN|BOF|MM|-?2CADR|-?[1-6]DNADR|ADRES|BBCON|[ES]?BANK=?|BLOCK|BNKSUM|E?CADR|COUNT\*?|2?DEC\*?|-?DNCHAN|-?DNPTR|EQUALS|ERASE|MEMORY|2?OCT|REMADR|SETLOC|SUBRO|ORG|BSS|BES|SYN|EQU|DEFINE|END)\s/,null],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[!-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["apollo","agc","aea"]);var a=null;PR.registerLangHandler(PR.createSimpleLexer([["str",/^"(?:[^\n\r"\\]|\\.)*(?:"|$)/,a,'"'],["pln",/^\s+/,a," \r\n "]],[["com",/^REM[^\n\r]*/,a],["kwd",/^\b(?:AND|CLOSE|CLR|CMD|CONT|DATA|DEF ?FN|DIM|END|FOR|GET|GOSUB|GOTO|IF|INPUT|LET|LIST|LOAD|NEW|NEXT|NOT|ON|OPEN|OR|POKE|PRINT|READ|RESTORE|RETURN|RUN|SAVE|STEP|STOP|SYS|THEN|TO|VERIFY|WAIT)\b/,a],["pln",/^[a-z][^\W_]?(?:\$|%)?/i,a],["lit",/^(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?/i,a,"0123456789"],["pun",/^.[^\s\w"$%.]*/,a]]),["basic","cbm"]);var a=null;PR.registerLangHandler(PR.createSimpleLexer([["opn",/^[([{]+/,a,"([{"],["clo",/^[)\]}]+/,a,")]}"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a," \n\r "],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:def|if|do|let|quote|var|fn|loop|recur|throw|try|monitor-enter|monitor-exit|defmacro|defn|defn-|macroexpand|macroexpand-1|for|doseq|dosync|dotimes|and|or|when|not|assert|doto|proxy|defstruct|first|rest|cons|defprotocol|deftype|defrecord|reify|defmulti|defmethod|meta|with-meta|ns|in-ns|create-ns|import|intern|refer|alias|namespace|resolve|ref|deref|refset|new|set!|memfn|to-array|into-array|aset|gen-class|reduce|map|filter|find|nil?|empty?|hash-map|hash-set|vec|vector|seq|flatten|reverse|assoc|dissoc|list|list?|disj|get|union|difference|intersection|extend|extend-type|extend-protocol|prn)\b/,a],["typ",/^:[\dA-Za-z-]+/]]),["clj"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \r\n\f"]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]+)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com",/^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}\b/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]),PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]),PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null," \n\r "]],[["com",/^#!.*/],["kwd",/^\b(?:import|library|part of|part|as|show|hide)\b/i],["com",/^\/\/.*/],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["kwd",/^\b(?:class|interface)\b/i],["kwd",/^\b(?:assert|break|case|catch|continue|default|do|else|finally|for|if|in|is|new|return|super|switch|this|throw|try|while)\b/i],["kwd",/^\b(?:abstract|const|extends|factory|final|get|implements|native|operator|set|static|typedef|var)\b/i],["typ",/^\b(?:bool|double|dynamic|int|num|object|string|void)\b/i],["kwd",/^\b(?:false|null|true)\b/i],["str",/^r?'''[\S\s]*?[^\\]'''/],["str",/^r?"""[\S\s]*?[^\\]"""/],["str",/^r?'('|[^\n\f\r]*?[^\\]')/],["str",/^r?"("|[^\n\f\r]*?[^\\]")/],["pln",/^[$_a-z]\w*/i],["pun",/^[!%&*+/:<-?^|~-]/],["lit",/^\b0x[\da-f]+/i],["lit",/^\b\d+(?:\.\d*)?(?:e[+-]?\d+)?/i],["lit",/^\b\.\d+(?:e[+-]?\d+)?/i],["pun",/^[(),.;[\]{}]/]]),["dart"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null," \n\f\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["lit",/^[a-z]\w*/],["lit",/^'(?:[^\n\f\r'\\]|\\[^&])+'?/,null,"'"],["lit",/^\?[^\t\n ({]+/,null,"?"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^%[^\n]*/],["kwd",/^(?:module|attributes|do|let|in|letrec|apply|call|primop|case|of|end|when|fun|try|catch|receive|after|char|integer|float,atom,string,var)\b/],["kwd",/^-[_a-z]+/],["typ",/^[A-Z_]\w*/],["pun",/^[,.;]/]]),["erlang","erl"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null," \n\f\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/,null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]);var a=null;PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a," \n\r "],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a],["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","lsp","scm","ss","rkt"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null," \n\r "],["str",/^!?"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["com",/^;[^\n\r]*/,null,";"]],[["pln",/^[!%@](?:[$\-.A-Z_a-z][\w$\-.]*|\d+)/],["kwd",/^[^\W\d]\w*/,null],["lit",/^\d+\.\d+/],["lit",/^(?:\d+|0[Xx][\dA-Fa-f]+)/],["pun",/^[(-*,:<->[\]{}]|\.\.\.$/]]),["llvm","ll"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null," \n\r "],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$))/,null,"\"'"]],[["com",/^--(?:\[(=*)\[[\S\s]*?(?:]\1]|$)|[^\n\r]*)/],["str",/^\[(=*)\[[\S\s]*?(?:]\1]|$)/],["kwd",/^(?:and|break|do|else|elseif|end|false|for|function|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/,null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^[_a-z]\w*/i],["pun",/^[^\w\t\n\r \xa0][^\w\t\n\r "'+=\xa0-]*/]]),["lua"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null," \n\r "],["com",/^#(?:if[\t\n\r \xa0]+(?:[$_a-z][\w']*|``[^\t\n\r`]*(?:``|$))|else|endif|light)/i,null,"#"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])(?:'|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\(\*[\S\s]*?\*\))/],["kwd",/^(?:abstract|and|as|assert|begin|class|default|delegate|do|done|downcast|downto|elif|else|end|exception|extern|false|finally|for|fun|function|if|in|inherit|inline|interface|internal|lazy|let|match|member|module|mutable|namespace|new|null|of|open|or|override|private|public|rec|return|static|struct|then|to|true|try|type|upcast|use|val|void|when|while|with|yield|asr|land|lor|lsl|lsr|lxor|mod|sig|atomic|break|checked|component|const|constraint|constructor|continue|eager|event|external|fixed|functor|global|include|method|mixin|object|parallel|process|protected|pure|sealed|trait|virtual|volatile)\b/],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^(?:[_a-z][\w']*[!#?]?|``[^\t\n\r`]*(?:``|$))/i],["pun",/^[^\w\t\n\r "'\xa0]+/]]),["fs","ml"]), -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null," \n\r "],["str",/^"(?:[^"]|\\.)*"/,null,'"']],[["com",/^;[^\n\r]*/,null,";"],["dec",/^\$(?:d|device|ec|ecode|es|estack|et|etrap|h|horolog|i|io|j|job|k|key|p|principal|q|quit|st|stack|s|storage|sy|system|t|test|tl|tlevel|tr|trestart|x|y|z[a-z]*|a|ascii|c|char|d|data|e|extract|f|find|fn|fnumber|g|get|j|justify|l|length|na|name|o|order|p|piece|ql|qlength|qs|qsubscript|q|query|r|random|re|reverse|s|select|st|stack|t|text|tr|translate|nan)\b/i,null],["kwd",/^(?:[^$]b|break|c|close|d|do|e|else|f|for|g|goto|h|halt|h|hang|i|if|j|job|k|kill|l|lock|m|merge|n|new|o|open|q|quit|r|read|s|set|tc|tcommit|tre|trestart|tro|trollback|ts|tstart|u|use|v|view|w|write|x|xecute)\b/i,null],["lit",/^[+-]?(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?/i],["pln",/^[a-z][^\W_]*/i],["pun",/^[^\w\t\n\r"$%;^\xa0]|_/]]),["mumps"]);var a=null;PR.registerLangHandler(PR.createSimpleLexer([["str",/^(?:'(?:[^\n\r'\\]|\\.)*'|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,a,'"'],["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,a,"#"],["pln",/^\s+/,a," \r\n "]],[["str",/^@"(?:[^"]|"")*(?:"|$)/,a],["str",/^<#[^#>]*(?:#>|$)/,a],["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,a],["com",/^\/\/[^\n\r]*/,a],["com",/^\/\*[\S\s]*?(?:\*\/|$)/,a],["kwd",/^(?:abstract|and|as|base|catch|class|def|delegate|enum|event|extern|false|finally|fun|implements|interface|internal|is|macro|match|matches|module|mutable|namespace|new|null|out|override|params|partial|private|protected|public|ref|sealed|static|struct|syntax|this|throw|true|try|type|typeof|using|variant|virtual|volatile|when|where|with|assert|assert2|async|break|checked|continue|do|else|ensures|for|foreach|if|late|lock|new|nolate|otherwise|regexp|repeat|requires|return|surroundwith|unchecked|unless|using|while|yield)\b/,a],["typ",/^(?:array|bool|byte|char|decimal|double|float|int|list|long|object|sbyte|short|string|ulong|uint|ufloat|ulong|ushort|void)\b/,a],["lit",/^@[$_a-z][\w$@]*/i,a],["typ",/^@[A-Z]+[a-z][\w$@]*/,a],["pln",/^'?[$_a-z][\w$@]*/i,a],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,a,"0123456789"],["pun",/^.[^\s\w"-$'./@`]*/,a]]),["n","nemerle"]);var a=null;PR.registerLangHandler(PR.createSimpleLexer([["str",/^'(?:[^\n\r'\\]|\\.)*(?:'|$)/,a,"'"],["pln",/^\s+/,a," \r\n "]],[["com",/^\(\*[\S\s]*?(?:\*\)|$)|^{[\S\s]*?(?:}|$)/,a],["kwd",/^(?:absolute|and|array|asm|assembler|begin|case|const|constructor|destructor|div|do|downto|else|end|external|for|forward|function|goto|if|implementation|in|inline|interface|interrupt|label|mod|not|object|of|or|packed|procedure|program|record|repeat|set|shl|shr|then|to|type|unit|until|uses|var|virtual|while|with|xor)\b/i,a],["lit",/^(?:true|false|self|nil)/i,a],["pln",/^[a-z][^\W_]*/i,a],["lit",/^(?:\$[\da-f]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?)/i,a,"0123456789"],["pun",/^.[^\s\w$'./@]*/,a]]),["pascal"]),PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null," \n\r "],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^'\\]|\\[\S\s])*(?:'|$)/,null,"'"]],[["com",/^#.*/],["kwd",/^(?:if|else|for|while|repeat|in|next|break|return|switch|function)(?![\w.])/],["lit",/^0[Xx][\dA-Fa-f]+([Pp]\d+)?[Li]?/],["lit",/^[+-]?(\d+(\.\d+)?|\.\d+)([Ee][+-]?\d+)?[Li]?/],["lit",/^(?:NULL|NA(?:_(?:integer|real|complex|character)_)?|Inf|TRUE|FALSE|NaN|\.\.(?:\.|\d+))(?![\w.])/],["pun",/^(?:<<?-|->>?|-|==|<=|>=|<|>|&&?|!=|\|\|?|[!*+/^]|%.*?%|[$=@~]|:{1,3}|[(),;?[\]{}])/],["pln",/^(?:[A-Za-z]+[\w.]*|\.[^\W\d][\w.]*)(?![\w.])/],["str",/^`.+`/]]),["r","s","R","S","Splus"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null," \n\r "],["com",/^%[^\n\r]*/,null,"%"]],[["lit",/^\\(?:cr|l?dots|R|tab)\b/],["kwd",/^\\[@-Za-z]+/],["kwd",/^#(?:ifn?def|endif)/],["pln",/^\\[{}]/],["pun",/^[()[\]{}]+/]]),["Rd","rd"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null," \n\r "],["str",/^"(?:""(?:""?(?!")|[^"\\]|\\.)*"{0,3}|(?:[^\n\r"\\]|\\.)*"?)/,null,'"'],["lit",/^`(?:[^\n\r\\`]|\\.)*`?/,null,"`"],["pun",/^[!#%&(--:-@[-^{-~]+/,null,"!#%&()*+,-:;<=>?@[\\]^{|}~"]],[["str",/^'(?:[^\n\r'\\]|\\(?:'|[^\n\r']+))'/],["lit",/^'[$A-Z_a-z][\w$]*(?![\w$'])/],["kwd",/^(?:abstract|case|catch|class|def|do|else|extends|final|finally|for|forSome|if|implicit|import|lazy|match|new|object|override|package|private|protected|requires|return|sealed|super|throw|trait|try|type|val|var|while|with|yield)\b/],["lit",/^(?:true|false|null|this)\b/],["lit",/^(?:0(?:[0-7]+|x[\da-f]+)l?|(?:0|[1-9]\d*)(?:(?:\.\d+)?(?:e[+-]?\d+)?f?|l?)|\\.\d+(?:e[+-]?\d+)?f?)/i],["typ",/^[$_]*[A-Z][\d$A-Z_]*[a-z][\w$]*/],["pln",/^[$A-Z_a-z][\w$]*/],["com",/^\/(?:\/.*|\*(?:\/|\**[^*/])*(?:\*+\/?)?)/],["pun",/^(?:\.+|\/)/]]),["scala"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null," \n\r "],["str",/^(?:"(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')/,null,"\"'"]],[["com",/^(?:--[^\n\r]*|\/\*[\S\s]*?(?:\*\/|$))/],["kwd",/^(?:add|all|alter|and|any|apply|as|asc|authorization|backup|begin|between|break|browse|bulk|by|cascade|case|check|checkpoint|close|clustered|coalesce|collate|column|commit|compute|connect|constraint|contains|containstable|continue|convert|create|cross|current|current_date|current_time|current_timestamp|current_user|cursor|database|dbcc|deallocate|declare|default|delete|deny|desc|disk|distinct|distributed|double|drop|dummy|dump|else|end|errlvl|escape|except|exec|execute|exists|exit|fetch|file|fillfactor|following|for|foreign|freetext|freetexttable|from|full|function|goto|grant|group|having|holdlock|identity|identitycol|identity_insert|if|in|index|inner|insert|intersect|into|is|join|key|kill|left|like|lineno|load|match|matched|merge|natural|national|nocheck|nonclustered|nocycle|not|null|nullif|of|off|offsets|on|open|opendatasource|openquery|openrowset|openxml|option|or|order|outer|over|partition|percent|pivot|plan|preceding|precision|primary|print|proc|procedure|public|raiserror|read|readtext|reconfigure|references|replication|restore|restrict|return|revoke|right|rollback|rowcount|rowguidcol|rows?|rule|save|schema|select|session_user|set|setuser|shutdown|some|start|statistics|system_user|table|textsize|then|to|top|tran|transaction|trigger|truncate|tsequal|unbounded|union|unique|unpivot|update|updatetext|use|user|using|values|varying|view|waitfor|when|where|while|with|within|writetext|xml)(?=[^\w-]|$)/i,null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^[_a-z][\w-]*/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'+\xa0-]*/]]),["sql"]);var a=null;PR.registerLangHandler(PR.createSimpleLexer([["opn",/^{+/,a,"{"],["clo",/^}+/,a,"}"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^[\t\n\r \xa0]+/,a," \n\r "],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:after|append|apply|array|break|case|catch|continue|error|eval|exec|exit|expr|for|foreach|if|incr|info|proc|return|set|switch|trace|uplevel|upvar|while)\b/,a],["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["tcl"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null," \n\r "],["com",/^%[^\n\r]*/,null,"%"]],[["kwd",/^\\[@-Za-z]+/],["kwd",/^\\./],["typ",/^[$&]/],["lit",/[+-]?(?:\.\d+|\d+(?:\.\d*)?)(cm|em|ex|in|pc|pt|bp|mm)/i],["pun",/^[()=[\]{}]+/]]),["latex","tex"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0\u2028\u2029]+/,null," \n\r \u2028\u2029"],["str",/^(?:["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})(?:["\u201c\u201d]c|$)|["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})*(?:["\u201c\u201d]|$))/i,null,'"“”'],["com",/^['\u2018\u2019](?:_(?:\r\n?|[^\r]?)|[^\n\r_\u2028\u2029])*/,null,"'‘’"]],[["kwd",/^(?:addhandler|addressof|alias|and|andalso|ansi|as|assembly|auto|boolean|byref|byte|byval|call|case|catch|cbool|cbyte|cchar|cdate|cdbl|cdec|char|cint|class|clng|cobj|const|cshort|csng|cstr|ctype|date|decimal|declare|default|delegate|dim|directcast|do|double|each|else|elseif|end|endif|enum|erase|error|event|exit|finally|for|friend|function|get|gettype|gosub|goto|handles|if|implements|imports|in|inherits|integer|interface|is|let|lib|like|long|loop|me|mod|module|mustinherit|mustoverride|mybase|myclass|namespace|new|next|not|notinheritable|notoverridable|object|on|option|optional|or|orelse|overloads|overridable|overrides|paramarray|preserve|private|property|protected|public|raiseevent|readonly|redim|removehandler|resume|return|select|set|shadows|shared|short|single|static|step|stop|string|structure|sub|synclock|then|throw|to|try|typeof|unicode|until|variant|wend|when|while|with|withevents|writeonly|xor|endif|gosub|let|variant|wend)\b/i,null],["com",/^rem\b.*/i],["lit",/^(?:true\b|false\b|nothing\b|\d+(?:e[+-]?\d+[dfr]?|[dfilrs])?|(?:&h[\da-f]+|&o[0-7]+)[ils]?|\d*\.\d+(?:e[+-]?\d+)?[dfr]?|#\s+(?:\d+[/-]\d+[/-]\d+(?:\s+\d+:\d+(?::\d+)?(\s*(?:am|pm))?)?|\d+:\d+(?::\d+)?(\s*(?:am|pm))?)\s+#)/i],["pln",/^(?:(?:[a-z]|_\w)\w*(?:\[[!#%&@]+])?|\[(?:[a-z]|_\w)\w*])/i],["pun",/^[^\w\t\n\r "'[\]\xa0\u2018\u2019\u201c\u201d\u2028\u2029]+/],["pun",/^(?:\[|])/]]),["vb","vbs"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null," \n\r "]],[["str",/^(?:[box]?"(?:[^"]|"")*"|'.')/i],["com",/^--[^\n\r]*/],["kwd",/^(?:abs|access|after|alias|all|and|architecture|array|assert|attribute|begin|block|body|buffer|bus|case|component|configuration|constant|disconnect|downto|else|elsif|end|entity|exit|file|for|function|generate|generic|group|guarded|if|impure|in|inertial|inout|is|label|library|linkage|literal|loop|map|mod|nand|new|next|nor|not|null|of|on|open|or|others|out|package|port|postponed|procedure|process|pure|range|record|register|reject|rem|report|return|rol|ror|select|severity|shared|signal|sla|sll|sra|srl|subtype|then|to|transport|type|unaffected|units|until|use|variable|wait|when|while|with|xnor|xor)(?=[^\w-]|$)/i,null],["typ",/^(?:bit|bit_vector|character|boolean|integer|real|time|string|severity_level|positive|natural|signed|unsigned|line|text|std_u?logic(?:_vector)?)(?=[^\w-]|$)/i,null],["typ",/^'(?:active|ascending|base|delayed|driving|driving_value|event|high|image|instance_name|last_active|last_event|last_value|left|leftof|length|low|path_name|pos|pred|quiet|range|reverse_range|right|rightof|simple_name|stable|succ|transaction|val|value)(?=[^\w-]|$)/i,null],["lit",/^\d+(?:_\d+)*(?:#[\w.\\]+#(?:[+-]?\d+(?:_\d+)*)?|(?:\.\d+(?:_\d+)*)?(?:e[+-]?\d+(?:_\d+)*)?)/i],["pln",/^(?:[a-z]\w*|\\[^\\]*\\)/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'\xa0-]*/]]),["vhdl","vhd"]),PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\d\t a-gi-z\xa0]+/,null," abcdefgijklmnopqrstuvwxyz0123456789"],["pun",/^[*=[\]^~]+/,null,"=*~^[]"]],[["lang-wiki.meta",/(?:^^|\r\n?|\n)(#[a-z]+)\b/],["lit",/^[A-Z][a-z][\da-z]+[A-Z][a-z][^\W_]+\b/],["lang-",/^{{{([\S\s]+?)}}}/],["lang-",/^`([^\n\r`]+)`/],["str",/^https?:\/\/[^\s#/?]*(?:\/[^\s#?]*)?(?:\?[^\s#]*)?(?:#\S*)?/i],["pln",/^(?:\r\n|[\S\s])[^\n\r#*=A-[^`h{~]*/]]),["wiki"]),PR.registerLangHandler(PR.createSimpleLexer([["kwd",/^#[a-z]+/i,null,"#"]],[]),["wiki.meta"]);var a=null,a=null;PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]),function(e){e.fn.zclip=function(t){if("object"==typeof t&&!t.length){var n=e.extend({path:"ZeroClipboard.swf",copy:null,beforeCopy:null,afterCopy:null,clickAfter:!0,setHandCursor:!0,setCSSEffects:!0},t);return this.each(function(){var t=e(this);if(t.is(":visible")&&("string"==typeof n.copy||e.isFunction(n.copy))){ZeroClipboard.setMoviePath(n.path);var i=new ZeroClipboard.Client;e.isFunction(n.copy)&&t.bind("zClip_copy",n.copy),e.isFunction(n.beforeCopy)&&t.bind("zClip_beforeCopy",n.beforeCopy),e.isFunction(n.afterCopy)&&t.bind("zClip_afterCopy",n.afterCopy),i.setHandCursor(n.setHandCursor),i.setCSSEffects(n.setCSSEffects),i.addEventListener("mouseOver",function(e){t.trigger("mouseenter")}),i.addEventListener("mouseOut",function(e){t.trigger("mouseleave")}),i.addEventListener("mouseDown",function(r){t.trigger("mousedown"),e.isFunction(n.copy)?i.setText(t.triggerHandler("zClip_copy")):i.setText(n.copy),e.isFunction(n.beforeCopy)&&t.trigger("zClip_beforeCopy")}),i.addEventListener("complete",function(i,r){e.isFunction(n.afterCopy)?t.trigger("zClip_afterCopy"):(r.length>500&&(r=r.substr(0,500)+"...\n\n("+(r.length-500)+" characters not shown)"),t.removeClass("hover"),alert("Copied text to clipboard:\n\n "+r)),n.clickAfter&&t.trigger("click")}),i.glue(t[0],t.parent()[0]),e(window).bind("load resize",function(){i.reposition()})}})}return"string"==typeof t?this.each(function(){var n=e(this);t=t.toLowerCase();var i=n.data("zclipId"),r=e("#"+i+".zclip");"remove"==t?(r.remove(),n.removeClass("active hover")):"hide"==t?(r.hide(),n.removeClass("active hover")):"show"==t&&r.show()}):void 0}}(jQuery);var ZeroClipboard={version:"1.0.7",clients:{},moviePath:"ZeroClipboard.swf",nextId:1,$:function(e){return"string"==typeof e&&(e=document.getElementById(e)),e.addClass||(e.hide=function(){},e.show=function(){this.style.display=""},e.addClass=function(e){this.removeClass(e),this.className+=" "+e},e.removeClass=function(e){for(var t=this.className.split(/\s+/),n=-1,i=0;i<t.length;i++)t[i]==e&&(n=i,i=t.length);return n>-1&&(t.splice(n,1),this.className=t.join(" ")),this},e.hasClass=function(e){return!!this.className.match(new RegExp("\\s*"+e+"\\s*"))}),e},setMoviePath:function(e){this.moviePath=e},dispatch:function(e,t,n){var i=this.clients[e];i&&i.receiveEvent(t,n)},register:function(e,t){this.clients[e]=t},getDOMObjectPosition:function(e,t){var n={left:0,top:0,width:e.width?e.width:e.offsetWidth,height:e.height?e.height:e.offsetHeight};return e&&e!=t&&(n.left+=e.offsetLeft,n.top+=e.offsetTop),n},Client:function(e){this.handlers={},this.id=ZeroClipboard.nextId++,this.movieId="ZeroClipboardMovie_"+this.id,ZeroClipboard.register(this.id,this),e&&this.glue(e)}};ZeroClipboard.Client.prototype={id:0,ready:!1,movie:null,clipText:"",handCursorEnabled:!0,cssEffects:!0,handlers:null,glue:function(e,t,n){this.domElement=ZeroClipboard.$(e);var i=99;this.domElement.style.zIndex&&(i=parseInt(this.domElement.style.zIndex,10)+1),"string"==typeof t?t=ZeroClipboard.$(t):"undefined"==typeof t&&(t=document.getElementsByTagName("body")[0]);var r=ZeroClipboard.getDOMObjectPosition(this.domElement,t);this.div=document.createElement("div"),this.div.className="zclip",this.div.id="zclip-"+this.movieId,$(this.domElement).data("zclipId","zclip-"+this.movieId);var o=this.div.style;if(o.position="absolute",o.left=""+r.left+"px",o.top=""+r.top+"px",o.width=""+r.width+"px",o.height=""+r.height+"px",o.zIndex=i,"object"==typeof n)for(addedStyle in n)o[addedStyle]=n[addedStyle];t.appendChild(this.div),this.div.innerHTML=this.getHTML(r.width,r.height)},getHTML:function(e,t){var n="",i="id="+this.id+"&width="+e+"&height="+t;if(navigator.userAgent.match(/MSIE/)){var r=location.href.match(/^https/i)?"https://":"http://";n+='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="'+r+'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="'+e+'" height="'+t+'" id="'+this.movieId+'" align="middle"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="false" /><param name="movie" value="'+ZeroClipboard.moviePath+'" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="bgcolor" value="#ffffff" /><param name="flashvars" value="'+i+'"/><param name="wmode" value="transparent"/></object>'}else n+='<embed id="'+this.movieId+'" src="'+ZeroClipboard.moviePath+'" loop="false" menu="false" quality="best" bgcolor="#ffffff" width="'+e+'" height="'+t+'" name="'+this.movieId+'" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="'+i+'" wmode="transparent" />';return n},hide:function(){this.div&&(this.div.style.left="-2000px")},show:function(){this.reposition()},destroy:function(){if(this.domElement&&this.div){this.hide(),this.div.innerHTML="";var e=document.getElementsByTagName("body")[0];try{e.removeChild(this.div)}catch(t){}this.domElement=null,this.div=null}},reposition:function(e){if(e&&(this.domElement=ZeroClipboard.$(e),this.domElement||this.hide()),this.domElement&&this.div){var t=ZeroClipboard.getDOMObjectPosition(this.domElement),n=this.div.style;n.left=""+t.left+"px",n.top=""+t.top+"px"}},setText:function(e){this.clipText=e,this.ready&&this.movie.setText(e)},addEventListener:function(e,t){e=e.toString().toLowerCase().replace(/^on/,""),this.handlers[e]||(this.handlers[e]=[]),this.handlers[e].push(t)},setHandCursor:function(e){this.handCursorEnabled=e,this.ready&&this.movie.setHandCursor(e)},setCSSEffects:function(e){this.cssEffects=!!e},receiveEvent:function(e,t){switch(e=e.toString().toLowerCase().replace(/^on/,"")){case"load":if(this.movie=document.getElementById(this.movieId),!this.movie){var n=this;return void setTimeout(function(){n.receiveEvent("load",null)},1)}if(!this.ready&&navigator.userAgent.match(/Firefox/)&&navigator.userAgent.match(/Windows/)){var n=this;return setTimeout(function(){n.receiveEvent("load",null)},100),void(this.ready=!0)}this.ready=!0;try{this.movie.setText(this.clipText)}catch(i){}try{this.movie.setHandCursor(this.handCursorEnabled)}catch(i){}break;case"mouseover":this.domElement&&this.cssEffects&&(this.domElement.addClass("hover"),this.recoverActive&&this.domElement.addClass("active"));break;case"mouseout":this.domElement&&this.cssEffects&&(this.recoverActive=!1,this.domElement.hasClass("active")&&(this.domElement.removeClass("active"),this.recoverActive=!0),this.domElement.removeClass("hover"));break;case"mousedown":this.domElement&&this.cssEffects&&this.domElement.addClass("active");break;case"mouseup":this.domElement&&this.cssEffects&&(this.domElement.removeClass("active"),this.recoverActive=!1)}if(this.handlers[e])for(var r=0,o=this.handlers[e].length;o>r;r++){var a=this.handlers[e][r];"function"==typeof a?a(this,t):"object"==typeof a&&2==a.length?a[0][a[1]](this,t):"string"==typeof a&&window[a](this,t)}}},$.fn.extend({tabs:function(){Tabs(this)}}),$.fn.extend({markdown_preview:function(e){Preview(this,e)}}),$(document).ready(function(){function e(e){e.find(".label-color-drop .drop-down").html(n).on("click","a",function(){var e=$(this).parents(".form"),t=e.find(".label-color-drop label"),n=e.find("input[name=color]"),i=$(this).data("color-hex");t.css("background-color",i),n.val(i)})}var t=["#e11d21","#EB6420","#FBCA04","#009800","#006B75","#207DE5","#0052cc","#53E917","#F6C6C7","#FAD8C7","#FEF2C0","#BFE5BF","#BFDADC","#C7DEF8","#BFD4F2","#D4C5F9"],n="";t.forEach(function(e){n+='<a class="color" style="background-color:'+e+'" data-color-hex="'+e+'"></a>'});var i=$("#label-add-color"),r=$("#label-add-form .label-color-drop label");r.css("background-color",t[0]),i.val(t[0]);var o=$("#label-add-form");e(o),$("#label-new-btn").on("click",function(){o.hasClass("hidden")&&o.removeClass("hidden")}),$("#label-cancel-btn").on("click",function(){o.addClass("hidden")});var a=$("#label-edit-form-tpl");$("#label-list").on("click","a.edit",function(){var t=$(this).parents(".item"),n=a.clone();e(n);var i=n.find(".label-color-drop label"),r=n.find("input[name=color]"),o=t.find(".label").data("color-hex");i.css("background-color",o),r.val(o),n.find("input[name=name]").val(t.find(".label").text()),n.find("input[name=id]").val(t.attr("id").replace("label-","")),t.after(n.show()),$("#label-edit-cancel-btn").on("click",function(){n.remove()})});var s=$("#label-delete-form-tpl");$("#label-list").on("click","a.delete",function(){var e=$(this).parents(".item"),t=s.clone();t.find("input[name=id]").val(e.attr("id").replace("label-","")),e.after(t.show()),$("#label-del-cancel-btn").on("click",function(){t.remove()})})}),function($){function e(e,t){return"function"==typeof e?e.call(t):e}function t(e){for(;e=e.parentNode;)if(e==document)return!0;return!1}function n(e,t){this.$element=$(e),this.options=t,this.enabled=!0,this.fixTitle()}n.prototype={show:function(){var t=this.getTitle();if(t&&this.enabled){var n=this.tip();n.find(".tipsy-inner")[this.options.html?"html":"text"](t),n[0].className="tipsy",n.remove().css({top:0,left:0,visibility:"hidden",display:"block"}).prependTo(document.body);var i=$.extend({},this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight}),r=n[0].offsetWidth,o=n[0].offsetHeight,a=e(this.options.gravity,this.$element[0]),s;switch(a.charAt(0)){case"n":s={top:i.top+i.height+this.options.offset,left:i.left+i.width/2-r/2};break;case"s":s={top:i.top-o-this.options.offset,left:i.left+i.width/2-r/2};break;case"e":s={top:i.top+i.height/2-o/2,left:i.left-r-this.options.offset};break;case"w":s={top:i.top+i.height/2-o/2,left:i.left+i.width+this.options.offset}}2==a.length&&("w"==a.charAt(1)?s.left=i.left+i.width/2-15:s.left=i.left+i.width/2-r+15),n.css(s).addClass("tipsy-"+a),n.find(".tipsy-arrow")[0].className="tipsy-arrow tipsy-arrow-"+a.charAt(0),this.options.className&&n.addClass(e(this.options.className,this.$element[0])),this.options.fade?n.stop().css({opacity:0,display:"block",visibility:"visible"}).animate({opacity:this.options.opacity}):n.css({visibility:"visible",opacity:this.options.opacity})}},hide:function(){this.options.fade?this.tip().stop().fadeOut(function(){$(this).remove()}):this.tip().remove()},fixTitle:function(){var e=this.$element;(e.attr("title")||"string"!=typeof e.attr("original-title"))&&e.attr("original-title",e.attr("title")||"").removeAttr("title")},getTitle:function(){var e,t=this.$element,n=this.options;this.fixTitle();var e,n=this.options;return"string"==typeof n.title?e=t.attr("title"==n.title?"original-title":n.title):"function"==typeof n.title&&(e=n.title.call(t[0])),e=(""+e).replace(/(^\s*|\s*$)/,""),e||n.fallback},tip:function(){return this.$tip||(this.$tip=$('<div class="tipsy"></div>').html('<div class="tipsy-arrow"></div><div class="tipsy-inner"></div>'),this.$tip.data("tipsy-pointee",this.$element[0])),this.$tip},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled}},$.fn.tipsy=function(e){function t(t){var i=$.data(t,"tipsy");return i||(i=new n(t,$.fn.tipsy.elementOptions(t,e)),$.data(t,"tipsy",i)),i}function i(){var n=t(this);n.hoverState="in",0==e.delayIn?n.show():(n.fixTitle(),setTimeout(function(){"in"==n.hoverState&&n.show()},e.delayIn))}function r(){var n=t(this);n.hoverState="out",0==e.delayOut?n.hide():setTimeout(function(){"out"==n.hoverState&&n.hide()},e.delayOut)}if(e===!0)return this.data("tipsy");if("string"==typeof e){var o=this.data("tipsy");return o&&o[e](),this}if(e=$.extend({},$.fn.tipsy.defaults,e),e.live||this.each(function(){t(this)}),"manual"!=e.trigger){var a=e.live?"live":"bind",s="hover"==e.trigger?"mouseenter":"focus",l="hover"==e.trigger?"mouseleave":"blur";this[a](s,i)[a](l,r)}return this},$.fn.tipsy.defaults={className:null,delayIn:0,delayOut:0,fade:!1,fallback:"",gravity:"n",html:!1,live:!1,offset:0,opacity:.8,title:"title",trigger:"hover"},$.fn.tipsy.revalidate=function(){$(".tipsy").each(function(){var e=$.data(this,"tipsy-pointee");e&&t(e)||$(this).remove()})},$.fn.tipsy.elementOptions=function(e,t){return $.metadata?$.extend({},t,$(e).metadata()):t},$.fn.tipsy.autoNS=function(){return $(this).offset().top>$(document).scrollTop()+$(window).height()/2?"s":"n"},$.fn.tipsy.autoWE=function(){return $(this).offset().left>$(document).scrollLeft()+$(window).width()/2?"e":"w"},$.fn.tipsy.autoBounds=function(e,t){return function(){var n={ns:t[0],ew:t.length>1?t[1]:!1},i=$(document).scrollTop()+e,r=$(document).scrollLeft()+e,o=$(this);return o.offset().top<i&&(n.ns="n"),o.offset().left<r&&(n.ew="w"),$(window).width()+$(document).scrollLeft()-o.offset().left<e&&(n.ew="e"),$(window).height()+$(document).scrollTop()-o.offset().top<e&&(n.ns="s"),n.ns+(n.ew?n.ew:"")}}}(jQuery);var Gogs={};!function($){var ajax=$.ajax;$.extend({ajax:function(url,options){"object"==typeof url&&(options=url,url=void 0),options=options||{},url=options.url;var csrftoken=$("meta[name=_csrf]").attr("content"),headers=options.headers||{},domain=document.domain.replace(/\./gi,"\\.");(!/^(http:|https:).*/.test(url)||eval("/^(http:|https:)\\/\\/(.+\\.)*"+domain+".*/").test(url))&&(headers=$.extend(headers,{"X-Csrf-Token":csrftoken})),options.headers=headers;var callback=options.success;return options.success=function(e){e.once&&$("[name=_once]").val(e.once),callback&&callback.apply(this,arguments)},ajax(url,options)},changeHash:function(e){history.pushState?history.pushState(null,null,e):location.hash=e},deSelect:function(){window.getSelection?window.getSelection().removeAllRanges():document.selection.empty()}}),$.fn.extend({toggleHide:function(){$(this).addClass("hidden")},toggleShow:function(){$(this).removeClass("hidden")},toggleAjax:function(e,t){var n=$(this).data("ajax"),i=$(this).data("ajax-method")||"get",r=$(this).data("ajax-name"),o={};r.endsWith("preview")&&(o.mode="gfm",o.context=$(this).data("ajax-context")),$("[data-ajax-rel="+r+"]").each(function(){var e=$(this).data("ajax-field"),t=$(this).data("ajax-val");return"val"==t?(o[e]=$(this).val(),!0):"txt"==t?(o[e]=$(this).text(),!0):"html"==t?(o[e]=$(this).html(),!0):"data"==t?(o[e]=$(this).data("ajax-data"),!0):!0}),console.log("toggleAjax:",i,n,o),$.ajax({url:n,method:i.toUpperCase(),data:o,error:t,success:function(t){e&&e(t)}})}})}(jQuery),function($){Gogs.renderMarkdown=function(){var e=$(".markdown"),t=e.find("pre > code").parent();t.addClass("prettyprint"),prettyPrint();var n={};e.find("h1, h2, h3, h4, h5, h6").each(function(){var e=$(this),t=encodeURIComponent(e.text().toLowerCase().replace(/[^\w\- ]/g,"").replace(/[ ]/g,"-")),i=t;n[t]>0&&(i=t+"-"+n[t]),void 0==n[t]?n[t]=1:n[t]+=1,e=e.wrap('<div id="'+i+'" class="anchor-wrap" ></div>'),e.append('<a class="anchor" href="#'+i+'"><span class="octicon octicon-link"></span></a>')})},Gogs.renderCodeView=function(){function e(e,t,n){if(e.removeClass("active"),n){var r=parseInt(t.attr("rel").substr(1)),o=parseInt(n.attr("rel").substr(1)),a;if(r!=o){r>o&&(a=r,r=o,o=a);var s=[];for(i=r;i<=o;i++)s.push(".L"+i);return e.filter(s.join(",")).addClass("active"),void $.changeHash("#L"+r+"-L"+o)}}t.addClass("active"),$.changeHash("#"+t.attr("rel"))}$(document).on("click",".lines-num span",function(t){var n=$(this),i=n.parent().siblings(".lines-code").find("ol.linenums > li");e(i,i.filter("[rel="+n.attr("rel")+"]"),t.shiftKey?i.filter(".active").eq(0):null),$.deSelect()}),$(".code-view .lines-code > pre").each(function(){var e=$(this),t=e.parent(),n=t.siblings(".lines-num");if(n.length>0)for(var i=e.find("ol.linenums > li").length,r=1;i>=r;r++)n.append('<span id="L'+r+'" rel="L'+r+'">'+r+"</span>")}),$(window).on("hashchange",function(t){var n=window.location.hash.match(/^#(L\d+)\-(L\d+)$/),i=$(".code-view ol.linenums > li"),r;return n?(r=i.filter("."+n[1]),e(i,r,i.filter("."+n[2])),void $("html, body").scrollTop(r.offset().top-200)):(n=window.location.hash.match(/^#(L\d+)$/),void(n&&(r=i.filter("."+n[1]),e(i,r),$("html, body").scrollTop(r.offset().top-200))))}).trigger("hashchange")},Gogs.renderDiffView=function(){function e(e,t,n){if(e.removeClass("active"),e.parents("tr").removeClass("end-selected-line"),e.parents("tr").find("td").removeClass("selected-line"),n){var i=new RegExp(/diff-(\w+)([LR]\d+)/),r=t.attr("rel").match(i),o=n.attr("rel").match(i),a=t.offset().top,s=n.offset().top,l;if(r[2]!=o[2]){a>s?($startElem=n,$endElem=t,l=o[1]+o[2]+"-"+r[2]):($startElem=t,$endElem=n,l=r[1]+r[2]+"-"+o[2]),$endElem.parents("tr").next().addClass("end-selected-line");var c=$startElem.parents("tr").nextUntil(".end-selected-line").andSelf();return c.find("td.lines-num > span").addClass("active"),c.find("td").addClass("selected-line"),void $.changeHash("#diff-"+l)}}t.addClass("active"),t.parents("tr").find("td").addClass("selected-line"),$.changeHash("#"+t.attr("rel"))}$(document).on("click",".code-diff .lines-num span",function(t){var n=$(this),i=n.parent().siblings(".lines-code").parents().find("td.lines-num > span");e(i,i.filter("[rel="+n.attr("rel")+"]"),t.shiftKey&&i.filter(".active").length?i.filter(".active").eq(0):null),$.deSelect()}),$(".code-diff .lines-code > pre").each(function(){var e=$(this),t=e.parent(),n=t.siblings(".lines-num");if(n.length>0)for(var i=e.find("ol.linenums > li").length,r=1;i>=r;r++)n.append('<span id="L'+r+'" rel="L'+r+'">'+r+"</span>")}),$(window).on("hashchange",function(t){var n=window.location.hash.match(/^#diff-(\w+)([LR]\d+)\-([LR]\d+)$/),i=$(".code-diff td.lines-num > span"),r;return n?(r=i.filter("[rel=diff-"+n[1]+n[2]+"]"),e(i,r,i.filter("[rel=diff-"+n[1]+n[3]+"]")),void $("html, body").scrollTop(r.offset().top-200)):(n=window.location.hash.match(/^#diff-(\w+)([LR]\d+)$/),void(n&&(r=i.filter("[rel=diff-"+n[1]+n[2]+"]"),e(i,r),$("html, body").scrollTop(r.offset().top-200))))}).trigger("hashchange")},Gogs.searchUsers=function(e,t){var n=function(e){return e&&e.length>0};$.ajax({url:Gogs.AppSubUrl+"/api/v1/users/search?q="+e,dataType:"json",success:function(e){if(e.ok&&e.data.length){var i="";$.each(e.data,function(e,t){i+='<li><a><img src="'+t.avatar_url+'"><span class="username">'+t.username+"</span>",n(t.full_name)&&(i+=" ("+t.full_name+")"),i+="</a></li>"}),t.html(i),t.toggleShow()}else t.toggleHide()}})},Gogs.searchRepos=function(e,t,n){$.ajax({url:Gogs.AppSubUrl+"/api/v1/repos/search?q="+e+"&"+n,dataType:"json",success:function(e){if(e.ok&&e.data.length){var n="";$.each(e.data,function(e,t){n+='<li><a><span class="octicon octicon-repo"></span> '+t.full_name+"</a></li>"}),t.html(n),t.toggleShow()}else t.toggleHide()}})},Gogs.bindCopy=function(e){$(e).hasClass("js-copy-bind")||(document.documentElement.classList.contains("is-copy-enabled")?($(e).click(function(e){var t=$(this),n=t.attr("data-copy-from");$(n).select(),document.execCommand("copy"),getSelection().removeAllRanges(),t.tipsy("hide").attr("original-title",t.data("after-title")),setTimeout(function(){t.tipsy("show")},200),setTimeout(function(){t.tipsy("hide").attr("original-title",t.data("original-title"))},2e3),this.blur()}),$(e).addClass("js-copy-bind")):$(e).zclip({path:Gogs.AppSubUrl+"/js/ZeroClipboard.swf",copy:function(){var e=$(this).data("copy-val"),t=$($(this).data("copy-from")),n="";return"txt"==e&&(n=t.text()),"val"==e&&(n=t.val()),"html"==e&&(n=t.html()),n},afterCopy:function(){var e=$(this);e.tipsy("hide").attr("original-title",e.data("after-title")),setTimeout(function(){e.tipsy("show")},200),setTimeout(function(){e.tipsy("hide").attr("original-title",e.data("original-title"))},2e3)}}).addClass("js-copy-bind"))}}(jQuery),$(document).ready(function(){Gogs.AppSubUrl=$("head").data("suburl")||"",initCore(),$("#user-profile-setting").length&&initUserSetting(),($("#repo-create-form").length||$("#repo-migrate-form").length)&&initRepoCreate(),$("#repo-header").length&&(initTimeSwitch(),initRepo()),$("#release").length&&initRepoRelease(),$("#repo-setting").length&&initRepoSetting(), -$("#org-setting").length&&initOrgSetting(),$("#invite-box").length&&initInvite(),$("#team-create-form").length&&initOrgTeamCreate(),$("#team-members-list").length&&initTeamMembersList(),$("#team-repositories-list").length&&initTeamRepositoriesList(),$("#admin-setting").length&&initAdmin(),$("#install-form").length&&initInstall(),$("#user-profile-page").length&&initProfile(),$("#diff-page").length&&(initTimeSwitch(),initDiff()),$("#dashboard-sidebar-menu").tabs(),$("#pull-issue-preview").markdown_preview(".issue-add-comment"),homepage(),emojify.setConfig({img_dir:"/img/emoji"}),emojify.run();var e=$("#footer-lang li").length;$("#footer-lang .drop-down").css({top:-31*e+"px",height:31*e-3+"px"})}),String.prototype.endsWith=function(e){return-1!==this.indexOf(e,this.length-e.length)};
\ No newline at end of file diff --git a/public/ng/js/utils/preview.js b/public/ng/js/utils/preview.js deleted file mode 100644 index 87ab39e5..00000000 --- a/public/ng/js/utils/preview.js +++ /dev/null @@ -1,53 +0,0 @@ -/** - * preview plugin - * @param selector - * @param target_selector - */ -function Preview(selector, target_selector) { - - // get input element - function get_input($e) { - return $e.find(".js-preview-input").eq(0); - } - - // get result html container element - function get_container($t) { - if ($t.hasClass("js-preview-container")) { - return $t - } - return $t.find(".js-preview-container").eq(0); - } - - var $e = $(selector); - var $t = $(target_selector); - - var $ipt = get_input($t); - if (!$ipt.length) { - console.log("[preview]: no preview input"); - return - } - var $cnt = get_container($t); - if (!$cnt.length) { - console.log("[preview]: no preview container"); - return - } - - - // call api via ajax - $e.on("click", function () { - $.post("/api/v1/markdown", { - text: $ipt.val() - }, function (html) { - $cnt.html(html); - }) - }); - - console.log("[preview]: init preview @", selector, "&", target_selector); -} - - -$.fn.extend({ - markdown_preview: function (target) { - Preview(this, target); - } -}); diff --git a/public/ng/js/utils/tabs.js b/public/ng/js/utils/tabs.js deleted file mode 100644 index 2e2731ef..00000000 --- a/public/ng/js/utils/tabs.js +++ /dev/null @@ -1,45 +0,0 @@ -/* - js tabs and tabbed content plugin - */ -function Tabs(selector) { - - function hide($nav) { - console.log("hide", $nav); - $nav.removeClass("js-tab-nav-show"); - $($nav.data("tab-target")).removeClass("js-tab-show").hide(); - } - - function show($nav) { - console.log("show", $nav); - $nav.addClass("js-tab-nav-show"); - $($nav.data("tab-target")).addClass("js-tab-show").show(); - } - - var $e = $(selector); - if ($e.length) { - // pre-assign init index - var $current = $e.find('.js-tab-nav-show'); - if ($current.length) { - $($current.data("tab-target")).addClass("js-tab-show"); - } - // bind nav click - $e.on("click", ".js-tab-nav", function (e) { - e.preventDefault(); - var $this = $(this); - // is showing, not change. - if ($this.hasClass("js-tab-nav-show")) { - return; - } - $current = $e.find(".js-tab-nav-show").eq(0); - hide($current); - show($this); - }); - console.log("init tabs @", selector) - } -} - -$.fn.extend({ - tabs: function () { - Tabs(this); - } -});
\ No newline at end of file diff --git a/public/ng/less/gogs.less b/public/ng/less/gogs.less deleted file mode 100644 index 2d9812da..00000000 --- a/public/ng/less/gogs.less +++ /dev/null @@ -1,11 +0,0 @@ -@import "gogs/base"; -@import "gogs/markdown"; -@import "gogs/external"; -@import "gogs/dashboard"; -@import "gogs/sign"; -@import "gogs/repository"; -@import "gogs/settings"; -@import "gogs/issue"; -@import "gogs/organization"; -@import "gogs/admin"; -@import "gogs/profile";
\ No newline at end of file diff --git a/public/ng/less/gogs/admin.less b/public/ng/less/gogs/admin.less deleted file mode 100644 index 010e0f06..00000000 --- a/public/ng/less/gogs/admin.less +++ /dev/null @@ -1,26 +0,0 @@ -.admin-panel { - padding: 10px 20px; -} -.admin-desc { - padding: 10px 20px; -} -.admin-table { - padding: 15px 0 5px 0; -} -.dl-horizontal dt { - float: left; - width: 160px; - clear: left; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.admin-dl-horizontal { - padding: 20px; - > dt { - width: 250px; - } - > dd { - margin-left: 240px; - } -}
\ No newline at end of file diff --git a/public/ng/less/gogs/base.less b/public/ng/less/gogs/base.less deleted file mode 100644 index ede56f01..00000000 --- a/public/ng/less/gogs/base.less +++ /dev/null @@ -1,306 +0,0 @@ -@import "../ui/var"; -@headerBgColor: #428BCA; -@headerLinkFontColor: #FFF; -@headerLinkHoverColor: #fff65f; -@headerLinkCurrentColor: #fff65f; -@headerSignOutColor: #ff908b; -@footerBorderColor: #D6D6D6; -@footerFontColor: #888; -@langNum: 2px; -// means 2 items -html, -body { - height: 100%; -} -.octicon, -.fa { - width: 16px; - text-align: center; -} -.container { - max-width: 1170px; - padding: 0 1.5em; - margin: auto; -} -img.avatar-16 { - width: 16px; - height: 16px; - vertical-align: middle; -} -img.avatar-20 { - width: 20px; - height: 20px; - vertical-align: middle; -} -img.avatar-24 { - width: 24px; - height: 24px; - vertical-align: middle; -} -img.avatar-30 { - width: 30px; - height: 30px; - vertical-align: middle; -} -img.avatar-40 { - width: 40px; - height: 40px; - vertical-align: middle; -} -img.avatar-48{ - width: 48px; - height: 48px; - vertical-align: middle; -} -img.avatar-100{ - width: 100px; - height: 100px; - vertical-align: middle; -} -.drop-down{ - .panel-header{ - font-size: 14px; - } -} -#wrapper { - padding: 0; - margin: 0 0 -55px 0; - min-height: 100%; -} -#footer { - background-color: white; - border-top: 1px solid@footerBorderColor; - -clear: both; - width: 100%; - .container { - padding: 15px; - } - color:@footerFontColor; -.official, - .version { - color: @footerFontColor; - } -} -#footer-links { - > * { - border-left: 1px solid@footerBorderColor; - padding-left: 8px; - margin-left: 5px; - &:first-child { - border-left: none; - } - } -} -#footer-lang { - position: relative; - .drop-down { - top: -2-31*@langNum; - left: -2px; - position: absolute; - height: -3+31*@langNum; - z-index: 100; - font-size: 12px; - width: 170%; - min-width: 140px; - li > a { - padding: 3px 9px; - } - } -} -#header { - background-color: @headerBgColor; - height: 45px; - > .menu-line { - > li > a { - display: inline-block; - color:@headerLinkFontColor; - &:hover { - background-color: transparent; - color: @headerLinkHoverColor; - } - } - > li.head { - color: @headerLinkFontColor; - } - > li.hover a:after { - bottom: -9px; - color: @headerLinkFontColor; - } - > li.current > a { - color: @headerLinkCurrentColor; - font-weight: bold; - } - } -} -#header-nav-user { - height: 44px; - img { - margin: -2px 10px 0 0; - border-radius: 3px; - } -} -#header-nav-sign-out > a:hover { - color: @headerSignOutColor !important; -} -#header-nav-logo { - padding: 6px 1.2em 6px 0; -} -#header-nav-explore, -#header-nav-help { - font-size: 14px; -} -#header-new-repo-menu { - width: 180px; - background-color: #FFF; - top: 44px; - border-top: none; - .octicon { - margin-right: 6px; - font-size: 1.1em; - } - left:-66px; -} -.switching-list { - width: 100%; - list-style: none; - > li { - border-bottom: 1px solid #eaeaea; - &:last-child { - border-bottom: none; - } - > a { - padding: .4em 1.2em; - display: block; - color: #444; - &:hover { - background-color: #428bca !important; - color: #fff !important; - } - } - } -} -.social-buttons { - .btn { - border: none; - font-size: 16px; - border-radius: 4px; - margin-right: 12px; - font-family: 'PT Sans Narrow', sans-serif; - padding: 5px 12px; - color: #FFF; - .fa { - margin-right: 6px; - font-size: 16px; - } - } - .twitter { - background-color: #1c6399; - &:hover { - background-color: #1c5487; - } - } - .github { - background-color: #444; - &:hover { - background-color: #333; - } - } - .google { - background-color: #C03D20; - &:hover { - background-color: #D56060; - } - } - .weibo { - background-color: #bf1324; - &:hover { - background-color: #b94c4a; - } - } - .qq { - background-color: #03a2ef; - &:hover { - background-color: #3cb3ff; - } - } -} -.main-wrapper { - padding: 20px 0 40px; -} -.user-list { - width: auto; - min-width: 180px; - max-width: 300px; - img { - width: 28px; - height: 28px; - margin-right: 1em; - margin-top: 1px; - vertical-align: middle; - } - li { - cursor: pointer; - font-weight: bold; - } -} -.text-success { - color: #3c763d; -} -.text-blue { - color: #15c; -} -.text-red { - color: #DD4B39; -} -.text-grey { - color: #999999; -} -.text-black { - color: #444444; -} -.text-gold { - color: #a1882b; -} -.table { - width: 100%; - max-width: 100%; - > thead > tr > th, - > tbody > tr > th, - > tfoot > tr > th, - > thead > tr > td, - > tbody > tr > td, - > tfoot > tr > td { - border-top: 1px solid #e7eaec; - line-height: 1.42857; - padding: 8px; - vertical-align: top; - } - th { - text-align: left; - } -} -.table-striped { - >tbody>tr:nth-child(odd)>td, - >tbody>tr:nth-child(odd)>th { - background-color: #f9f9f9; - } -} -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; - li { - display: inline; - } -} -.list-unstyled { - padding-left: 0; - list-style: none; -} -.emoji { - width: 1.5em; - height: 1.5em; - display: inline-block; -}
\ No newline at end of file diff --git a/public/ng/less/gogs/dashboard.less b/public/ng/less/gogs/dashboard.less deleted file mode 100644 index 59482162..00000000 --- a/public/ng/less/gogs/dashboard.less +++ /dev/null @@ -1,260 +0,0 @@ -@import "../ui/var"; -/* - The dashboard page style -*/ -@dashboardHeaderBorderColor: #D6D6D6; -@dashboardHeaderLinkColor: #444; -@dashboardHeaderLinkHoverColor: #D9453D; -@dashboardSwitchMenuHoverBgColor: @linkColor; -@dashboardSwitchMenuHoverFontColor: #FFF; - -// dashboard header, contains dashboard selection menu and nav of Feed/PR/Issues. -#dashboard-header { - border-bottom: 1px solid @dashboardHeaderBorderColor; - height: 69px; - background-color: #FFF; - > .menu-line { - > li { - padding: 12px 6px; - } - > li.drop{ - margin-left: -22px; - &:hover a { - background-color: transparent; - } - } - > li.right { - > a { - font-size: 1.2em; - color: @dashboardHeaderLinkColor; - margin: -12px 0px; - padding: 22px 0.8em; - &:hover { - background-color: transparent; - color: @dashboardHeaderLinkHoverColor; - } - .octicon { - margin-right: 6px; - } - } - .current { - border-bottom: 2px solid #D26911; - } - } - } -} -// dashboard context switch selection -#dashboard-selection-menu { - a img { - margin: -4px 10px 0 0; - } -} -#dashboard { - padding: 1.5em; -} -// dashboard sidebar contains contributed repositories panel, -// and my repositories panel -#dashboard-sidebar { - .panel-header h4 { - margin: 0; - } - > .panel { - margin-bottom: 24px; - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; - } -} -#dashboard-sidebar-menu { - border-top-left-radius: .3em; - border-top-right-radius: .3em; - > li { - border: 1px solid #d6d6d6; - float: left; - margin-right: -1px; - border-bottom: none; - > a { - padding-top: .3em; - padding-bottom: .3em; - } - } - > li.first { - border-top-left-radius: .3em; - > a { - border-top-left-radius: .3em; - } - } - > li.drop { - border: none; - float: right; - } - width: 100%; - height: 32px; - > li.js-tab-nav-show { - background-color: #EEEEEE; - } - > li.last { - border-top-right-radius: .3em; - > a { - border-top-right-radius: .3em; - } - } -} -#dashboard-my-mirror, -#dashboard-my-org, -#dashboard-my-repo { - li { - &.private { - background-color: #fcf8e9; - } - border-bottom: 1px solid #EAEAEA; - &:last-child { - border-bottom: none; - } - a { - padding: 6px 1.2em; - display: block; - .octicon { - margin-right: 6px; - color: #888; - } - &:hover { - .repo-name { - text-decoration: underline; - } - } - } - } - .repo-name { - font-size: 1.1em; - } - .repo-star { - color: #888; - } - .repo-contrib-header { - border-top: 1px solid #d6d6d6; - } - .panel-header { - font-size: 14px; - } -} -#dashboard-my-repo { - .panel-header { - .octicon { - margin-right: 6px; - font-size: 12px; - } - } - .repo-count { - margin-left: 4px; - } -} -#dashboard-my-org, -#dashboard-my-mirror { - display: none; -} -// the button of new repository in my repositories panel -#dashboard-new-repo { - width: 50px; - height: 33px; - padding-top: 6px; - margin-right: 1px; - .octicon { - font-size: 20px; - } - border-top-left-radius: .3em; - border-top-right-radius: .3em; -} -// the drop-down menu of #dashboard-new-repo -#dashboard-new-repo-menu { - top: 33px; - width: 180px; - background-color: #FFF; - left: -132px; - .octicon { - margin-right: 6px; - font-size: 1.1em; - } -} -#dashboard-selection-menu { - width: auto; - max-width: 300px; - > .drop-down { - top: 56px; - left: 22px; - } - li { - white-space: nowrap; - &.checked { - .octicon { - opacity: 1; - } - } - a { - text-overflow: ellipsis; - -o-text-overflow: ellipsis; - overflow: hidden; - } - } -} -// the drop-down menu of #dashboard-selection-menu -#dashboard-switch-menu { - > li { - > a { - img { - margin-top: 0; - } - .octicon { - margin-right: 12px; - } - } - &:last-child { - > a { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; - } - } - } - > li.org > a { - .octicon { - opacity: 0; - } - } - > li.checked > a { - .octicon { - opacity: 1; - } - font-weight: bold; - } - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -#dashboard-news { - padding-bottom: 60px; - .news { - margin-right: 2.4em; - .mega-octicon { - color: #CCC; - } - .avatar { - margin-right: 1.2em; - } - .news-content, - .news-time { - color: #888; - } - padding-bottom: 1em; - margin-bottom: 1em; - border-bottom: 1px solid #E6E6E6; - min-height: 30px; - } - .push-news { - .news-content li { - margin-left: 1em; - img { - vertical-align: inherit; - margin-bottom: -2px; - } - } - } -} - diff --git a/public/ng/less/gogs/external.less b/public/ng/less/gogs/external.less deleted file mode 100644 index 407fc4f5..00000000 --- a/public/ng/less/gogs/external.less +++ /dev/null @@ -1,105 +0,0 @@ -@import "base"; -@import "../ui/var"; -#promo-wrapper { - padding-top: 50px; - background-color: @headerBgColor; -} -#promo-logo { - margin-right: 50px; - padding-bottom: 50px; - img { - max-width: 250px; - } -} -#promo-content { - color: #FFF; - margin-left: 300px; - h1, - h2 { - font-family: 'PT Sans Narrow', sans-serif; - line-height: 60px; - margin-bottom: 0; - text-shadow: 0 2px 1px rgba(0, 0, 0, 0.5); - } - h1 { - font-size: 96px; - line-height: 96px; - margin-bottom: 30px; - } - h2 { - font-size: 52px; - line-height: 70px; - font-weight: normal; - } -} -#promo-form { - padding: 40px 0; - .ipt-large { - border: none; - border-radius: 4px; - font-size: 18px; - margin-right: 12px; - &:focus { - box-shadow: 0 0 3px #FFF; - } - } - .btn-large { - border-radius: 4px; - font-size: 18px; - margin-right: 12px; - } -} -#promo-social { - padding-bottom: 60px; - .qq{ - box-shadow: 0 0 1px #1c6399; - } -} -#feature-wrapper { - font-family: Lato, sans-serif; - font-size: 18px; - padding: 50px 0 100px 0; - .octicon { - color: @btnRedColor; - font-size: 60px; - height: 60px; - width: 60px; - line-height: 60px; - margin-right: 12px; - vertical-align: middle; - display: inline-block; - } - b { - color: #000; - font-size: 24px; - display: inline-block; - line-height: 60px; - } - p { - margin: 1em 0; - line-height: 40px; - padding-right: 30px; - } - a { - color: @btnRedColor; - &:hover { - color: @btnHoverRedColor; - } - } - .grid-1-2 { - margin-bottom: 30px; - } -} -#install-form { - padding: 15px; - label { - width: 35%; - } - input { - width: 30%; - } - input[type="checkbox"], - input[type="radio"] { - width: auto; - } -}
\ No newline at end of file diff --git a/public/ng/less/gogs/issue.less b/public/ng/less/gogs/issue.less deleted file mode 100644 index c920343d..00000000 --- a/public/ng/less/gogs/issue.less +++ /dev/null @@ -1,540 +0,0 @@ -@import "../ui/var"; -// pull request main content -.pr-main { - margin-right: 100px; -} -// right bar in pull request page -.pr-sidebar { - border-left: 1px solid #DDD; - box-sizing: border-box; - position: absolute; - right: 0; - top: 12px; -} -.pr-title { - .pr-num { - font-weight: normal; - color: #888; - } - padding: 4px 0; -} -.pr-meta { - color: #888; - padding: 4px 0 8px 0; - .pr-author { - margin: 0 8px; - color: #444; - &:hover { - text-decoration: underline; - } - } - .pr-branch { - margin: 0 4px; - font-size: 12px; - padding: 4px 6px; - } -} -.pr-nav { - border-bottom: 1px solid #DDD; - margin-top: 16px; - margin-bottom: 16px; - .octicon { - margin-right: 4px; - } - li > a { - padding: 3px 9px !important; - border: 1px solid transparent; - border-bottom: none; - .label { - padding: 1px 5px; - font-size: 12px; - margin-left: 4px; - } - border-top-left-radius: .2em; - border-top-right-radius: .2em; - } - li.js-tab-nav-show { - > a { - background-color: #FFF; - border-color: #E6E6E6; - } - } -} -.diff-bar { - .diff-add { - color: @btnGreenColor; - } - .diff-delete { - color: @btnRedColor; - } - .diff-status { - width: 50px; - background-color: @btnRedColor; - height: 10px; - margin-top: 7px; - margin-left: 4px; - margin-right: 4px; - border-radius: .2em; - } - .diff-status-inner { - width: 45%; - background-color: @btnGreenColor; - height: 10px; - border-top-left-radius: .2em; - border-bottom-left-radius: .2em; - } -} -#pr-commit, -#pr-file-diff, -#issue-add-comment-preview { - display: none; -} -#pr-conversation-list { - padding-right: 30px; - box-sizing: border-box; -} -.issue-comment, -.issue-commit, -.issue-line, -.issue-merge, -.issue-add-comment { - margin-bottom: 24px; -} -.issue-comment { - .author-avatar { - img { - margin-right: 12px; - } - } - .panel { - margin-left: 60px; - margin-top: -40px; - } - .panel-header { - font-size: 13px; - } - .author-name { - font-weight: bold; - } - .date { - margin-left: 4px; - font-style: italic; - color: #888; - } - .action { - > * { - margin-left: 4px; - font-size: 12px; - } - i { - font-size: 13px; - } - } -} -.issue-commit { - line-height: 32px; - i, .author-avatar img { - margin-right: 16px; - } - .sha { - margin-left: 24px; - } - .message { - display: block; - margin-left: 88px; - padding-top: 4px; - line-height: 24px; - } -} -.issue-merge { - .ico { - width: 40px; - height: 40px; - text-align: center; - color: #FFF; - i { - margin-top: 8px; - font-size: 24px; - } - margin-right: 12px; - } - .panel { - margin-left: 60px; - margin-top: -40px; - } - .panel-header { - font-size: 13px; - } -} -.issue-merge-ok { - .ico { - background-color: #65AD4E; - } - .panel, - .panel-content, - .panel-header { - border-color: #65AD4E; - background-color: #FFF; - } - .panel-header { - color: darken(#65AD4E, 10%); - } -} -.issue-line { - height: 4px; - background-color: #E6E6E6; -} -.issue-add-comment { - .panel { - margin-left: 60px; - margin-top: -40px; - } - .panel-header { - font-size: 13px; - padding-bottom: 0; - } - .add-nav { - > li { - > a { - padding: 4px 12px; - color: #444; - border: 1px solid #CCC; - margin-bottom: -1px; - font-size: 14px; - border-top-left-radius: .3em; - border-top-right-radius: .3em; - &:hover { - background-color: #FFF; - } - } - &.js-tab-nav-show { - > a { - background-color: #FFF; - } - } - } - } -} -textarea#issue-add-content { - width: 100%; - box-sizing: border-box; - height: 120px; - resize: vertical; -} -// #issue list navigator -#issue-list-nav { - border-bottom: 1px solid #DDD; - padding-bottom: 12px; - li { - > a { - font-size: 13px; - font-weight: bold; - padding: .2em .8em; - } - } - li.current { - > a { - background-color: #0079bc; - color: #FAFAFA; - } - } - li.right { - margin-left: 4px; - } -} -// new issue button -#issue-new, -#label-new, -#milestone-new{ - > a { - padding: 0 !important; - button { - height: 29px; - } - } -} -// issue list menu -#issue-list-menu { - padding: 16px 0 12px 0; - border-bottom: 1px solid #BBB; - margin-bottom: 12px; - .mark { - a { - color: #AAA; - &:hover { - color: #444; - } - } - &.hover { - a { - color: #222; - font-weight: bold; - } - } - } - > .left { - .mark { - margin-right: 12px; - } - } - > .right { - .mark { - margin-left: 12px; - } - } -} -// each issue list item -#issue-list, -#pull-list { - .item { - position: relative; - padding-bottom: 12px; - margin-bottom: 12px; - border-bottom: 1px dashed #AAA; - .title > .title-text { - color: #444; - font-size: 15px; - margin: 0 6px; - } - } - .comment { - color: #666; - position: absolute; - top: 6px; - right: 0; - } - .issue-label { - a { - color: #FFF; - } - } - .desc { - color: #999; - a { - color: #999; - &:hover { - color: #03a2ef; - } - } - } -} -// issue list filter -#issue-list-filter{ - .drop > a{ - width: 90px; - padding: 0; - margin-left: 12px; - text-align: center; - } - .drop-down{ - z-index: 999; - width: 236px; - left:-158px; // 260 - 90 - 12 - top:22px; - padding: 0 12px; - h4{ - line-height: 40px; - border-bottom: 1px solid #CCC; - margin-bottom: 0; - } - li{ - line-height: 30px; - border-bottom: 1px dashed #EEE; - padding-left: 9px; - &:hover{ - background-color: #fcffec; - } - } - > ul > li > a{ - display: block; - } - } - .labels{ - .color{ - margin-top: 8px; - display: inline-block; - width: 12px; - height: 12px; - background-color: red; - margin-right: 9px; - margin-left: 9px; - } - .name{ - vertical-align: top; - display: inline-block; - color: #444; - } - } - .milestones{ - a{ - color: #444; - font-weight: bold; - } - } -} -// issue list pager -#issue-list-pager { - margin: 18px 0 24px 0; - font-size: 14px; - line-height: 24px; -} -// labels numbers -#labels-num { - margin-right: 1em; -} -// labels list -#label-list { - a.right { - margin-left: 1em; - color: #999; - i { - margin-right: 3px; - } - line-height: 30px; - &:hover { - color: #444444; - } - } - .num { - margin-right: 3px; - } - .issue-num { - margin-right: 4em; - } - .label { - &:hover { - color: #FFF; - } - i { - margin-right: 6px; - } - } - .item { - height: 30px; - padding-bottom: 12px; - margin-bottom: 12px; - border-bottom: 1px dashed #AAA; - } -} -// label add form, label edit form -#label-add-form, -#label-edit-form, -#label-delete-form{ - .ipt{ - font-size: 14px; - } - .ipt[name=name]{ - width: 300px; - } - .btn{ - height: 33px; - font-size: 14px; - margin-left: 12px; - } -} -#label-add-form{ - padding: 18px 0; - border-bottom: 1px solid #DDD; -} -#label-delete-form{ - span{ - line-height: 33px; - } -} -// label color drop -.label-color-drop{ - .ipt{ - width:100px; - } - .drop-down{ - width:128px !important; - top:22px !important; - left:50px !important; - padding: 12px; - line-height: 16px; - a.color{ - width: 16px; - height: 16px; - display: inline-block; - } - } - label{ - width: 24px; - height: 24px; - display: inline-block; - margin: 0 1em; - vertical-align: middle; - } -} -// milestone items -#milestone-list{ - padding-top: 6px; - .title-text{ - font-size: 16px; - } - .desc { - color: #999; - line-height: 30px; - } - .content{ - width: 400px; - } - .item { - padding-bottom: 18px; - margin-bottom: 18px; - border-bottom: 1px dashed #AAA; - position: relative; - } - .action{ - position: absolute; - top: 0; - right: 0; - } - .status-bar { - > .bar { - margin: -2px 8px 0 8px; - width: 360px; - background-color: #DDD; - height: 14px; - vertical-align:middle; - } - .opening{ - background-color: #65ad4e; - width: 40%; - height: 14px; - vertical-align: top; - } - } - .action-bar{ - margin-top: 8px; - a{ - margin-left: 12px; - } - } -} - -.issues.list-group { - margin: 10px 0 20px 0; - > .list-group-item { - background-color: #FFF; - border: 1px solid #e5e5e5; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - &:hover { - background-color: rgba(19, 95, 215, 0.03); - } - > .title { - margin-bottom: 16px; - font-weight: bold; - font-size: 1.2em; - > a { color: #444; } - } - > .info span { - margin-right: 12px; - color: #888; - line-height: 20px; - > a { color: #444; } - } - } -} diff --git a/public/ng/less/gogs/markdown.less b/public/ng/less/gogs/markdown.less deleted file mode 100644 index 33006660..00000000 --- a/public/ng/less/gogs/markdown.less +++ /dev/null @@ -1,595 +0,0 @@ -.markdown { - overflow:hidden; - font-family:"Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif; - font-size:16px; - line-height:1.6; - word-wrap:break-word; - padding: 5px 2em 2em !important; - - >*:first-child { - margin-top:0 !important; - } - - >*:last-child { - margin-bottom:0 !important; - } - - a:not([href]) { - color:inherit; - text-decoration:none; - } - - .absent { - color:#c00; - } - - .anchor { - position:absolute; - top:0; - left:0; - display:block; - padding-right:6px; - padding-left:30px; - margin-left:-30px; - } - - .anchor:focus { - outline:none; - } - - h1, - h2, - h3, - h4, - h5, - h6 { - position:relative; - margin-top:1em; - margin-bottom:16px; - font-weight:bold; - line-height:1.4; - } - - h1 .octicon-link, - h2 .octicon-link, - h3 .octicon-link, - h4 .octicon-link, - h5 .octicon-link, - h6 .octicon-link { - display:none; - color:#000; - vertical-align:middle; - } - - h1:hover .anchor, - h2:hover .anchor, - h3:hover .anchor, - h4:hover .anchor, - h5:hover .anchor, - h6:hover .anchor { - padding-left:8px; - margin-left:-30px; - text-decoration:none; - } - - h1:hover .anchor .octicon-link, - h2:hover .anchor .octicon-link, - h3:hover .anchor .octicon-link, - h4:hover .anchor .octicon-link, - h5:hover .anchor .octicon-link, - h6:hover .anchor .octicon-link { - display:inline-block; - } - - h1 tt, - h1 code, - h2 tt, - h2 code, - h3 tt, - h3 code, - h4 tt, - h4 code, - h5 tt, - h5 code, - h6 tt, - h6 code { - font-size:inherit; - } - - h1 { - padding-bottom:0.3em; - font-size:2.25em; - line-height:1.2; - border-bottom:1px solid #eee; - } - - h1 .anchor { - line-height:1; - } - - h2 { - padding-bottom:0.3em; - font-size:1.75em; - line-height:1.225; - border-bottom:1px solid #eee; - } - - h2 .anchor { - line-height:1; - } - - h3 { - font-size:1.5em; - line-height:1.43; - } - - h3 .anchor { - line-height:1.2; - } - - h4 { - font-size:1.25em; - } - - h4 .anchor { - line-height:1.2; - } - - h5 { - font-size:1em; - } - - h5 .anchor { - line-height:1.1; - } - - h6 { - font-size:1em;color:#777; - } - - h6 .anchor { - line-height:1.1; - } - - p, - blockquote, - ul, - ol, - dl, - table, - pre { - margin-top:0; - margin-bottom:16px; - } - - hr { - height:4px; - padding:0; - margin:16px 0; - background-color:#e7e7e7; - border:0 none; - } - - ul, - ol { - padding-left:2em; - } - - ul.no-list, - ol.no-list { - padding:0; - list-style-type:none; - } - - ul ul, - ul ol, - ol ol, - ol ul { - margin-top:0; - margin-bottom:0; - } - - ol ol, - ul ol { - list-style-type: lower-roman; - } - - li>p { - margin-top:16px; - } - - dl { - padding:0; - } - - dl dt { - padding:0; - margin-top:16px; - font-size:1em; - font-style:italic; - font-weight:bold; - } - - dl dd { - padding:0 16px; - margin-bottom:16px; - } - - blockquote { - padding:0 15px; - color:#777; - border-left:4px solid #ddd; - } - - blockquote>:first-child { - margin-top:0; - } - - blockquote>:last-child { - margin-bottom:0; - } - - table { - display:block; - width:100%; - overflow:auto; - word-break:normal; - word-break:keep-all; - } - - table th { - font-weight:bold; - } - - table th, - table td { - padding:6px 13px !important; - border:1px solid #ddd; - } - - table tr { - background-color:#fff; - border-top:1px solid #ccc; - } - - table tr:nth-child(2n) { - background-color:#f8f8f8; - } - - img { - max-width:100%; - box-sizing:border-box; - } - - .emoji { - max-width:none; - } - - span.frame { - display:block; - overflow:hidden; - } - - span.frame>span { - display:block; - float:left; - width:auto; - padding:7px; - margin:13px 0 0; - overflow:hidden; - border:1px solid #ddd; - } - - span.frame span img { - display:block; - float:left; - } - - span.frame span span { - display:block; - padding:5px 0 0; - clear:both; - color:#333; - } - - span.align-center { - display:block; - overflow:hidden; - clear:both; - } - - span.align-center>span { - display:block; - margin:13px auto 0; - overflow:hidden; - text-align:center; - } - - span.align-center span img { - margin:0 auto; - text-align:center; - } - - span.align-right { - display:block; - overflow:hidden; - clear:both; - } - - span.align-right>span { - display:block; - margin:13px 0 0; - overflow:hidden; - text-align:right; - } - - span.align-right span img { - margin:0; - text-align:right; - } - - span.float-left { - display:block; - float:left; - margin-right:13px; - overflow:hidden; - } - - span.float-left span { - margin:13px 0 0; - } - - span.float-right { - display:block; - float:right; - margin-left:13px; - overflow:hidden; - } - - span.float-right>span { - display:block; - margin:13px auto 0; - overflow:hidden; - text-align:right; - } - - code, - tt { - padding:0; - padding-top:0.2em; - padding-bottom:0.2em; - margin:0; - font-size:85%; - background-color:rgba(0,0,0,0.04); - border-radius:3px; - } - - code:before, - code:after, - tt:before, - tt:after { - letter-spacing:-0.2em; - content:"\00a0"; - } - - code br, - tt br { - display:none; - } - - del code { - text-decoration:inherit; - } - - pre>code { - padding:0; - margin:0; - font-size:100%; - word-break:normal; - white-space:pre; - background:transparent; - border:0; - } - - .highlight { - margin-bottom:16px; - } - - .highlight pre, - pre { - padding:16px; - overflow:auto; - font-size:85%; - line-height:1.45; - background-color:#f7f7f7; - border-radius:3px; - } - - .highlight pre { - margin-bottom:0; - word-break:normal; - } - - pre { - word-wrap:normal; - } - - pre code, - pre tt { - display:inline; - max-width:initial; - padding:0; - margin:0; - overflow:initial; - line-height:inherit; - word-wrap:normal; - background-color:transparent; - border:0; - } - - pre code:before, - pre code:after, - pre tt:before, - pre tt:after { - content:normal; - } - - kbd { - display:inline-block; - padding:3px 5px; - font-size:11px; - line-height:10px; - color:#555; - vertical-align:middle; - background-color:#fcfcfc; - border:solid 1px #ccc; - border-bottom-color:#bbb; - border-radius:3px; - box-shadow:inset 0 -1px 0 #bbb; - } - - .csv-data td, - .csv-data th { - padding:5px; - overflow:hidden; - font-size:12px; - line-height:1; - text-align:left; - white-space:nowrap; - } - - .csv-data .blob-num { - padding:10px 8px 9px; - text-align:right; - background:#fff;border:0; - } - - .csv-data tr { - border-top:0; - } - - .csv-data th { - font-weight:bold; - background:#f8f8f8;border-top:0; - } - -} - -/* Author: jmblog */ - -/* Project: https://github.com/jmblog/color-themes-for-google-code-prettify */ - -/* GitHub Theme */ - -/* Pretty printing styles. Used with prettify.js. */ - -/* SPAN elements with the classes below are added by prettyprint. */ - -/* plain text */ - -.pln { - color: #333333; -} -@media screen { - /* string content */ - .str { - color: #dd1144; - } - /* a keyword */ - .kwd { - color: #333333; - } - /* a comment */ - .com { - color: #999988; - font-style: italic; - } - /* a type name */ - .typ { - color: #445588; - } - /* a literal value */ - .lit { - color: #445588; - } - /* punctuation */ - .pun { - color: #333333; - } - /* lisp open bracket */ - .opn { - color: #333333; - } - /* lisp close bracket */ - .clo { - color: #333333; - } - /* a markup tag name */ - .tag { - color: navy; - } - /* a markup attribute name */ - .atn { - color: teal; - } - /* a markup attribute value */ - .atv { - color: #dd1144; - } - /* a declaration */ - .dec { - color: #333333; - } - /* a variable name */ - .var { - color: teal; - } - /* a function name */ - .fun { - color: #990000; - } -} -/* Use higher contrast and text-weight for printable form. */ - -@media print, -projection { - .str { - color: #006600; - } - .kwd { - color: #006; - font-weight: bold; - } - .com { - color: #600; - font-style: italic; - } - .typ { - color: #404; - font-weight: bold; - } - .lit { - color: #004444; - } - .pun, - .opn, - .clo { - color: #444400; - } - .tag { - color: #006; - font-weight: bold; - } - .atn { - color: #440044; - } - .atv { - color: #006600; - } -} -/* Specify class=linenums on a pre to get line numbering */ - -ol.linenums { - margin-top: 0; - margin-bottom: 0; -}
\ No newline at end of file diff --git a/public/ng/less/gogs/organization.less b/public/ng/less/gogs/organization.less deleted file mode 100644 index e2accbea..00000000 --- a/public/ng/less/gogs/organization.less +++ /dev/null @@ -1,232 +0,0 @@ -@import "../ui/var"; -.org-header-alert .alert { - margin-top: 10px; -} -.org-header { - padding: 16px 0; - background-color: #FFF; - border-bottom: 1px solid #DDD; - img { - padding-right: 10px; - } -} -#org-home-header { - min-height: 100px; -} -#org-header { - height: 48px; - .org-name { - padding-left: 10px; - font-size: 1.4em; - height: 50px; - line-height: 50px; - margin-bottom: 0; - } - > div { - > .menu-line { - > li { - &.right { - > a { - font-size: 1.2em; - color: @dashboardHeaderLinkColor; - &:hover { - background-color: transparent; - color: @dashboardHeaderLinkHoverColor; - } - .octicon { - margin-right: 4px; - } - .label{ - margin-left: 4px; - } - } - .current { - border-bottom: 2px solid #D26911; - } - } - } - } - } -} -#org-home-header-info { - padding-top: 10px; - h2 { - font-size: 30px; - } - ul { - list-style: none; - li { - float: left; - padding-right: 5px; - } - } -} -#org-home-repo-list { - padding: 10px 0; -} -#org-repo-list { - padding: 10px 0; - .org-repo-item { - border-top: 1px solid #eee; - padding: 30px 20px; - .org-repo-status { - list-style: none; - color: #888; - li { - float: left; - margin-right: 6px; - } - } - h2 { - margin-bottom: 5px; - } - .org-repo-description { - margin: 0; - font-size: 14px; - color: #666; - } - .org-repo-updated { - font-size: 12px; - display: block; - margin: 5px 0 0; - color: #808080; - } - } -} -.org-sidebar { - margin: -80px 0 0 20px; - .panel-footer { - padding: .8em 1.2em; - } - .member-avatar-group { - padding: 15px; - img { - width: 59px; - height: 59px; - border-radius: 3px; - } - } -} -#org-home-team-list { - padding: 0 15px; - ul { - list-style: none; - padding-top: 10px; - li { - padding: 10px 0; - border-bottom: 1px solid #eee; - &:last-child { - border-bottom: 0; - } - } - } -} -.team-name { - display: block; - font-size: 14px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.team-meta { - margin-top: 0; - margin-bottom: 0; - color: #777; -} -.org-toolbar { - padding: 10px 0; - border-bottom: 1px solid #eee; -} -#org-member-list { - .org-member-item { - height: 50px; - line-height: 50px; - border-bottom: 1px solid #eee; - padding: 15px 20px; - .member-name { - padding-left: 15px; - } - ul { - list-style: none; - li { - text-align: center; - display: inline-block; - } - } - } -} -.invite-box { - padding: 50px 0; - min-height: 130px; - margin: 0 auto; - width: 50%; - input { - width: 300px; - } -} -#org-member-list-block { - padding-top: 2px; -} -.org-team-list { - .org-team-list-item { - float: left; - padding: 15px; - width: 555px; - .member-avatar-group { - padding: 5px 15px; - img { - width: 38px; - height: 38px; - border-radius: 3px; - } - } - } -} -#team-create-form { - .note { - margin-left: 153px; - } -} -#org-team-card { - .desc { - font-size: 14px; - padding: 10px 20px; - } - .team-stats { - padding: 0 20px 10px 20px; - text-transform: uppercase; - border-bottom: 1px solid #dddddd; - } - .panel-footer { - padding: 10px 20px; - } -} -#team-repositories-list, -#team-members-list { - .panel-body .search { - padding: 4px 0 10px 10px; - border-bottom: 1px solid #dddddd; - } - li { - &.collab { - padding-top: 10px !important; - border-bottom: 1px solid #dddddd; - } - &:last-child { - border-bottom: 0 !important; - } - } -} -#team-repositories-list { - li { - a .octicon { - color: #888; - } - .member { - color: @linkColor; - font-size: 14px; - height: 40px; - line-height: 40px; - } - } -}
\ No newline at end of file diff --git a/public/ng/less/gogs/profile.less b/public/ng/less/gogs/profile.less deleted file mode 100644 index 1102ef78..00000000 --- a/public/ng/less/gogs/profile.less +++ /dev/null @@ -1,59 +0,0 @@ -.profile-avatar { - width: 100%; - border-radius: 6px; -} -#profile-name { - padding: 10px 0; -} -#profile-fullname { - font-size: 1.6em; -} -#profile-username { - font-size: 1.6em; - font-weight: bold; -} -.profile-info { - // padding: 0 50px; - font-size: 14px; - ul { - padding-bottom: 10px; - .list-group-item { - background-color: transparent; - padding-top: 5px; - color: #666; - } - .profile-rel { - width: 31%; - text-align: center; - display: inline-block; - strong { - display: block; - font-size: 28px; - font-weight: bold; - line-height: 1; - } - p { - font-size: 12px; - } - } - } -} -#profile-header { - li { - a { - font-size: 1.2em; - color: #444444; - padding: .4em .8em; - &:hover { - background-color: transparent; - color: @dashboardHeaderLinkHoverColor; - } - } - .current { - border-bottom: 2px solid #D26911; - } - } -} -#profile-body { - margin-left: 20px; -}
\ No newline at end of file diff --git a/public/ng/less/gogs/repository.less b/public/ng/less/gogs/repository.less deleted file mode 100644 index c403b51f..00000000 --- a/public/ng/less/gogs/repository.less +++ /dev/null @@ -1,878 +0,0 @@ -@import "../ui/var"; -@repoHeaderBorderColor: #D6D6D6; -@repoHeaderBgColor: #FFF; -@repoHeaderNameColor: #888; - -#repo-wrapper { - padding-bottom: 100px; -} -#repo-header { - height: 69px; - border-bottom: 1px solid@repoHeaderBorderColor; - background-color: @repoHeaderBgColor; -} -#repo-header-name { - line-height: 66px; - color: @repoHeaderNameColor; - font-size: 1.6em; - font-weight: normal; - margin-bottom: 0; - i { - margin-right: 12px; - vertical-align: middle; - } - .divider { - margin: 0 4px; - } -} -#repo-header-meta { - line-height: 66px; - li { - >a { - padding: 0; - &:hover { - background-color: transparent; - } - } - } - a { - &>.btn { - line-height: 16px; - margin-left: 16px; - font-size: 13px; - i { - margin-right: 6px; - } - .num { - margin-left: 6px; - } - } - } -} -#repo-header-download-btn { - >.btn>i { - margin-right: 0 !important; - } - &:hover { - &:after, .btn { - background-color: @btnHoverBlackColor; - color: #FFF; - } - } - &:after { - background-color: @btnBlackColor; - padding: 9px 16px 8px 0; - margin-left: -8px !important; - color: #FFF; - border-top: 1px solid@btnBlackColor; - border-bottom: 1px solid@btnBlackColor; - border-top-right-radius: .25em; - border-bottom-right-radius: .25em; - } -} -#repo-header-download-drop { - line-height: 24px; - width: 460px; - top: 50px; - left: -390px; - padding: 20px; - box-sizing: border-box; - z-index: 1; - .btn>i { - margin-right: 6px; - } - button, input { - font-size: 11px; - } - #repo-clone-copy { - width: 85px; - text-overflow: clip; - } -} -#repo-content { - padding-top: 18px; - padding-bottom: 18px; -} -.repo-wide-wrapper { - padding: 18px; - position: relative; -} -#repo-clone-url { - border-right: none; - width: 190px; - border-left: none; - cursor: default; -} -#repo-clone-help { - clear: both; - line-height: 48px; -} -#repo-clone-zip { - line-height: 48px; - a { - cursor: pointer; - color: white; - overflow: visible; - padding: .6em 1.2em; - } - .btn { - margin: 0 6px; - } -} -#repo-desc { - font-size: 1.2em; - .no-description{ - color: #999; - } -} -#repo-sidebar-nav { - .label { - font-size: 12px; - line-height: 1.4em; - margin-top: 2px; - } - i { - margin-right: 6px; - } -} -#repo-sidebar-mini { - margin-top: 6px; - width: 60px; - li { - margin-bottom: 4px; - } - li > a { - position: relative; - padding-left: 12px; - width: 24px; - text-align: center; - >i.octicon { - font-size: 21px; - } - } - .num { - position: absolute; - font-size: 12px; - top: 0; - left: 36px; - padding: 0 2px; - min-width: 16px; - height: 16px; - text-align: center; - line-height: 16px; - border-radius: 4px; - opacity: 0.7; - -webkit-transform: scale(0.9); - font-weight: bold; - } -} -#repo-file-nav { - padding: .6em 0 1em 0; - >li>a { - padding-left: 0; - &:hover { - background-color: transparent; - } -} - li.repo-jump > a { - padding-right: 0; - .btn { - margin-left: -1px; - } - } -} -#repo-branch-switch { - >a { - .btn { - padding-right: 30px; - } - &:after { - position: absolute; - top: 12px; - right: 30px; - margin-left: 0; - color: @baseFontColor; - } - } - >.drop-down { - top: 40px; - left: 0; - } -} -#repo-branch-filter-ipt { - width: 100%; - border-left: none; - border-right: none; - box-sizing: border-box; -} -#repo-branch-tag { - .tab-nav { - border-bottom: 1px solid #EAEAEA; - a { - padding: .3em .8em; - } - .js-tab-nav-show { - background-color: #EEE; - font-weight: bold; - } - } - .switching-list { - max-height: 300px; - overflow-y: auto; - } -} -#repo-branch-list, -#repo-tag-list { - li { - i { - margin-right: 12px; - opacity: 0; - } - } - li.checked { - i { - opacity: 1; - } - } -} -#repo-bread { - .bread { - padding-right: 0; - font-size: 16px; - font-weight: bold; - } -} -#repo-main { - padding-right: 40px; - box-sizing: border-box; -} -#repo-files-table { - margin-bottom: 20px; - .sha .label { - font-family: Monaco,Menlo,Consolas,"Courier New",monospace; - } - th, td { - text-align: left; - line-height: 32px; - } - td.icon { - width: 16px; - padding-right: .1em; - padding-left: 1em; - } - td.name { - max-width: 120px; - .text-truncate { - max-width: 100%; - } - } - td.age { - max-width: 120px; - text-align: right; - } - td.msg { - max-width: 440px; - .text-truncate { - max-width: 100%; - } - } - td.age, - td.size, - td.msg a { - color: #888; - } - td.msg a:hover { - color: #428BCA; - text-decoration: underline; - } - td.message { - .text-truncate { - max-width: 360px; - } - } - tbody { - background-color: #FFF; - tr:hover { - background-color: #ffffEE; - } - } - thead { - background-color: #F0F0F0; - .author { - a { - margin: 0 .4em; - } - } - .last-commit { - strong { - color: #444; - } - .text-truncate { - max-width: 440px; - margin-left: .4em; - } - } - .last-commit .text-truncate, - .age { - font-weight: normal; - color: #888; - } - } -} -#repo-readme, -#repo-read-file { - margin-bottom: 80px; -} -#repo-bare-start { - margin-bottom: 100px; - .panel-content { - background-color: #FFF; - } - pre { - margin: 0 40px; - padding: 6px 10px; - border: 1px solid #ddd; - background: #f8f8f8; - } -} -.repo-bare { - #repo-bare-start { - h2 { - margin-top: 30px; - margin-bottom: 24px; - } - } - #repo-header-meta { - display: none; - } - .btn-first { - margin-left: 200px; - } - #repo-clone-copy { - margin-right: 200px; - } - #repo-clone-help { - clear: both; - width: 100%; - } - #repo-clone-url { - width: 520px; - } -} - -/* repository create */ - -#team-create-form, -#repo-migrate-form, -#repo-create-form { - width: 800px; - margin: 60px auto auto auto; - background: white; - h2 { - margin: .5em 1em; - } - .field { - margin: 1.2em 0 2em 0; - } - .ipt { - width: 540px; - } - textarea { - height: 120px; - } - .avatar { - vertical-align: middle; - margin-right: .6em; - width: 28px; - height: 28px; - } - &:hover { - box-shadow: 0px 0px 6px #CCC; - } -} -#repo-create-cancel { - margin-left: 4em; -} -#release-new-target-branch-list, -#repo-create-owner-list { - top: 30px; - left: 0; - width: auto; - max-width: 300px; - .octicon { - margin-right: 12px; - opacity: 0; - } - .avatar { - width: 20px; - height: 20px; - } - li { - white-space: nowrap; - &.checked { - .octicon { - opacity: 1; - } - } - a { - text-overflow: ellipsis; - -o-text-overflow: ellipsis; - overflow: hidden; - } - } -} -#release-new-target-branch-list { - margin-top: -1px; - min-width: 150px; -} -#release-new-title { - margin-top: 10px; -} -#release-new-content { - width: 100%; -} -#release-preview-btn .btn { - border-left: 0; -} -#release-preview.markdown { - margin-top: 5px; - background-color: transparent; -} -.file-name { - margin-left: 1em; -} -.file-size { - font-size: 13px; - color: #888; - margin-left: 1em; -} -.code-view { - overflow: auto; - overflow-x: auto; - overflow-y: hidden; - background: white; - .view-raw { - min-height: 40px; - text-align: center; - padding-top: 20px; - .btn { - font-size: 1.05em; - line-height: 16px; - padding: 6px 8px; - } - } - table { - width: 100%; - td { - padding: 0; - } - } - .lines-num { - vertical-align: top; - text-align: right; - color: #999; - background: #f5f5f5; - width: 1%; - span { - font-family: Monaco,Menlo,Consolas,"Courier New",monospace; - line-height: 20px; - padding: 0 10px; - cursor: pointer; - display: block; - } - } - .lines-code > pre { - border: none; - border-left: 1px solid #ddd; - > ol.linenums > li { - padding: 0 10px; - line-height: 20px; - &.active { - background: #ffffdd; - } - } - } -} -.repo-setting-zone { - padding: 30px; -} -#team-repositories-list, -#team-members-list, -#repo-collab-list { - list-style: none; - padding: 10px 0 5px 0; - li.collab { - clear: both; - height: 50px; - padding: 0 15px 0 15px; - } - a.member { - color: #444; - height: 50px; - line-height: 50px; - &:hover { - color: #4183C4; - } - } - .avatar { - margin-right: 1em; - width: 40px; - } - .remove-collab { - color: #DD4B39; - } -} -.repo-user-list-block { - position: relative; - top: 5px; -} -.setting-list { - width: 100%; - list-style: none; -} -#commits-list { - padding-top: 20px; - h4{ - line-height: 30px; - margin-bottom: 0; - } -} -.commit-list { - th { - background-color: #FFF; - line-height: 28px !important; - } - .date { - width: 120px; - } - .author { - padding-left: 20px; - min-width: 180px; - img { - margin-top: -4px; - } - } - .sha a { - font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace; - font-size: 14px; - } - .message { - width: 60%; - span { - max-width: 500px; - } - } -} - -.commit-message { - white-space: pre-wrap; -} - -.diff-head-box { - margin-top: 10px; - .panel-body { - padding: 10px 15px 5px 10px; - } - .author { - img { - margin-top: -7px; - } - } -} -.diff-detail-box { - margin: 15px 0; - line-height: 30px; - ol { - clear: both; - padding-left: 0; - margin-bottom: 28px; - li { - list-style: none; - padding-bottom: 4px; - margin-bottom: 4px; - border-bottom: 1px dashed #DDD; - padding-left: 6px; - } - } - span.status{ - display: inline-block; - width: 12px; - height: 12px; - margin-right: 8px; - vertical-align: middle; - &.modify { - background-color: #f0db88; - } - &.add { - background-color: #b4e2b4; - } - &.del { - background-color: #e9aeae; - } - &.rename { - background-color: #dad8ff; - } - } -} -.diff-box { - .count { - margin-right: 12px; - .bar { - background-color: #e75316; - height: 12px; - width: 40px; - display: inline-block; - margin: 2px 4px 0 4px; - vertical-align: text-top; - .add { - background-color: #77c64a; - height: 12px; - } - } - } - .file { - color: #888; - } - .panel-header { - font-size: 14px; - } -} -.diff-file-box { - .file-body.file-code { - .lines-num { - text-align: right; - color: #999; - background: #fafafa; - width: 1%; - } - .lines-num-old { - border-right: 1px solid #DDD; - } - } - .code-diff { - tbody { - tr { - &.tag-code { - td, pre { - background-color: #E0E0E0 !important; - border-color: #ADADAD !important; - } - td.selected-line, td.selected-line pre { - background-color: #ffffdd !important; - } - } - &.same-code { - td.selected-line, td.selected-line pre { - background-color: #ffffdd !important; - } - } - &.del-code { - td, pre { - background-color: #ffe2dd !important; - border-color: #e9aeae !important; - } - td.selected-line, td.selected-line pre { - background-color: #ffffdd !important; - } - } - &.add-code { - td, pre { - background-color: #d1ffd6 !important; - border-color: #b4e2b4 !important; - } - td.selected-line, td.selected-line pre { - background-color: #ffffdd !important; - } - } - &:hover { - td, pre { - background-color: #FFF8D2 !important; - border-color: #F0DB88 !important; - } - } - } - } - } -} -.compare-head-box { - margin-top: 10px; - .compare { - padding: 0 15px 15px 15px; - } -} -.fork-flag { - display: block; - font-size: 11px; - line-height: 10px; - white-space: nowrap; - margin-left: 44px; - margin-top: -15px; -} -#release { - h4 { - font-size: 18px; - small { - font-weight: 400; - line-height: 1; - color: #999; - } - } - #release-head { - margin-top: 0; - margin-bottom: 0; - padding-bottom: 20px; - border-bottom: 1px solid #DDD; - .btn { - margin-left: 10px; - } - } - .release-item { - &>div { - padding-top: 20px; - padding-bottom: 20px; - } - .label-green:hover { - background-color: @labelGreenColor; - } - .release-meta { - position: relative; - float: left; - padding-right: 15px; - } - .tag, - .commit { - display: block; - margin-top: 12px; - line-height: 20px; - } - .release-detail { - margin-top: -1px; - border-left: 1px solid #DDD; - position: relative; - float: left; - padding-left: 15px; - } - .title { - line-height: 25px; - margin-top: 0; - } - p.info { - line-height: 20px; - color: #666; - margin-bottom: 15px; - >* { - margin-right: 10px; - } - } - .author { - img { - margin-top: -3px; - } - } - div.desc { - margin-bottom: 25px; - &.markdown { - background-color: transparent; - } - } - .download a { - margin-right: 10px; - } - .dot { - width: 9px; - height: 9px; - background-color: #ccc; - z-index: 999; - position: absolute; - display: block; - left: -6px; - top: 27px; - border-radius: 6px; - border: 1px solid #FFF; - } - } - #release-new-form { - padding-top: 15px; - } -} - -#stars, #watchers, #forks { - h4 { - font-size: 18px; - padding-bottom: 20px; - text-transform: capitalize; - border-bottom: 1px solid #DDD; - } - - h3 { - margin: -4px 0 0 0; - padding: 0; - } - - .avatar { - width: 75px; - height: 75px; - float: left; - display: block; - margin-right: 10px; - } - - .avatar-small { - width: 24px; - height: 24px; - float: left; - display: block; - margin-right: 10px; - } - - ol { - margin-top: 10px; - list-style: none; - width: 100%; - overflow: hidden; - } - - li { - width: 32.25%; - margin: 10px 10px 10px 0; - border-bottom: 1px solid #DDD; - float: left; - padding-bottom: 10px; - } - - .pagination { - width: 100%; - text-align: center; - text-transform: capitalize; - - a { - border-radius: 3px; - border: 1px solid #399ADE; - padding: 8px; - margin: 0; - } - - .active { - border-radius: 3px; - border: 1px solid #399ADE; - background: #399ADE; - cursor: default; - padding: 8px; - margin: 0; - color: #FFFFFF; - } - - .disabled { - border-radius: 3px; - border: 1px solid #DDD; - color: #D3D3D3; - cursor: default; - padding: 8px; - margin: 0; - } - } -} - -#forks p { - padding: 5px 0; -} diff --git a/public/ng/less/gogs/settings.less b/public/ng/less/gogs/settings.less deleted file mode 100644 index 98164544..00000000 --- a/public/ng/less/gogs/settings.less +++ /dev/null @@ -1,131 +0,0 @@ -@import "../ui/var"; -#admin-wrapper, -#setting-wrapper { - padding-bottom: 100px; -} - -#setting-menu { - box-sizing: border-box; - li > a { - border-left: 2px solid #FFF; - background-color: #FFF; - } - li:hover { - a { - border-left: 2px solid #EFEFEF; - background-color: #EFEFEF !important; - color: #000 !important; - } - border-color: #EAEAEA; - } - li.current { - a { - color: #000 !important; - font-weight: bold; - border-left: 2px solid #d26911; - } - } -} - -.setting-content { - margin-left: 32px; -} - -#auth-setting-form, -#org-setting-form, -#repo-setting-form, -#user-profile-form, -#add-email-form, -.repo-setting-form { - background-color: #FFF; - padding: 30px 0; - textarea { - margin-left: 4px; - height: 100px; - } - label, - .form-label { - width: 240px; - } - .ipt { - width: 360px; - } - .field { - margin-bottom: 24px; - } -} - -#hook-type { - padding: 10px 0 0 0; - background-color: #fff; - .field { - margin-bottom: 24px; - } - label { - width: 240px; - } -} - -#repo-hooks-panel, -#repo-hooks-history-panel, -#user-social-panel, -#user-applications-panel, -#user-email-panel, -#user-ssh-panel { - margin-bottom: 20px; - .setting-list { - background-color: #FFF; - li { - padding: 8px 20px; - border-bottom: 1px solid #eaeaea; - &.ssh:hover { - background-color: #ffffEE; - } - i { - padding-right: 5px; - } - } - } - .active-icon { - width: 10px; - height: 10px; - border-radius: 6px; - padding: 0; - margin-right: 20px; - margin-top: 10px; - } - .ssh-content { - margin-left: 24px; - .octicon { - margin-right: 4px; - } - .print, - .access, - .activity { - color: #888; - } - .access { - max-width: 500px; - } - } - .ssh-btn { - margin-top: 6px; - } -} - -.form-settings-add { - .panel-body { - background-color: #FFF; - padding: 30px 0; - } - .ipt { - width: 500px; - } - textarea { - height: 120px; - margin-left: 3px; - } - .field { - margin-bottom: 24px; - } -} diff --git a/public/ng/less/gogs/sign.less b/public/ng/less/gogs/sign.less deleted file mode 100644 index 3950be03..00000000 --- a/public/ng/less/gogs/sign.less +++ /dev/null @@ -1,68 +0,0 @@ -@import "../ui/var"; - -/* -The register and sign-in page style -*/ - -@signPanelBgColor: #FFF; - -#sign-wrapper { - padding: 60px 0; -} - -.sign-panel { - background-color: @signPanelBgColor; -} - -.sign-form.form-align { - .field { - margin: 1.2em 0 2em 0; - } - .ipt-large { - width: 300px; - } - label, - .form-label { - width: 160px; - } - .chk-label { - width: auto; - text-align: left; - margin-left: 176px; - } - .alert{ - margin:0 30px 24px 30px; - } - &:hover{ - box-shadow: 0 0 6px #CCC; - } -} - -.sign-form.container{ - padding: 0; - width: 600px; - margin-bottom: 80px; -} - -// register form element -#sign-up-form { - .panel-content{ - margin-top: 1.2em; - } - h2 { - margin: .5em 1em; - } -} - -#sign-social{ - position: relative; - margin: 40px 0; - .or{ - position: absolute; - width: 30px; - top: -52px; - left: 50%; - background-color: #FFF; - margin-left: -15px; - } -} diff --git a/public/ng/less/ui.less b/public/ng/less/ui.less deleted file mode 100644 index fc7ad3c2..00000000 --- a/public/ng/less/ui.less +++ /dev/null @@ -1,11 +0,0 @@ -@import "ui/var"; -@import "ui/reset"; -@import "ui/grid"; -@import "ui/form"; -@import "ui/menu"; -@import "ui/panel"; -@import "ui/label"; -@import "ui/bread"; -@import "ui/alert"; -@import "ui/table"; -@import "ui/pager";
\ No newline at end of file diff --git a/public/ng/less/ui/alert.less b/public/ng/less/ui/alert.less deleted file mode 100644 index 606c1114..00000000 --- a/public/ng/less/ui/alert.less +++ /dev/null @@ -1,55 +0,0 @@ -@import "var"; - -.alert{ - padding: .6em 1.5em; - margin-bottom: 10px; - i{ - margin-right: 8px; - } -} - -.alert-radius{ - border-radius: .25em; -} - -.alert-red{ - color: @alertRedColor; - border: 1px solid darken(@alertRedColor,10%); - background-color: lighten(@alertRedColor,40%); -} - -.alert-blue{ - color: @alertBlueColor; - border: 1px solid darken(@alertBlueColor,10%); - background-color: lighten(@alertBlueColor,45%); -} - -.alert-green{ - color: @alertGreenColor; - border: 1px solid darken(@alertGreenColor,10%); - background-color: lighten(@alertGreenColor,45%); -} - -.alert-gray{ - color: @alertGrayColor; - border: 1px solid darken(@alertGrayColor,10%); - background-color: lighten(@alertGrayColor,35%); -} - -.alert-orange{ - color: @alertOrangeColor; - border: 1px solid darken(@alertOrangeColor,10%); - background-color: lighten(@alertOrangeColor,45%); -} -.white-popup-block { - background: #FFF; - padding: 20px 30px; - text-align: left; - max-width: 650px; - margin: 40px auto; - position: relative; - p { - font-size: 14px; - } -} - diff --git a/public/ng/less/ui/bread.less b/public/ng/less/ui/bread.less deleted file mode 100644 index 9e96eb43..00000000 --- a/public/ng/less/ui/bread.less +++ /dev/null @@ -1,18 +0,0 @@ -@import "var"; - -.breads { - .bread { - &:after { - content: "/"; - font-weight: bold; - margin: 0 4px 0 7px; - color:@breadColor; - } - } - .bread:last-child { - &:after { - content: ""; - margin: 0; - } - } -}
\ No newline at end of file diff --git a/public/ng/less/ui/form.less b/public/ng/less/ui/form.less deleted file mode 100644 index aeaf9c88..00000000 --- a/public/ng/less/ui/form.less +++ /dev/null @@ -1,230 +0,0 @@ -@import "var"; - -// Button. -.btn { - white-space: nowrap; -} -.btn-small { - font-size: 0.9*@baseFontSize; - padding: .4em .9em; -} -.btn-medium { - font-size: @baseFontSize; - padding: .4em .9em; -} -.btn-large { - font-size: 1.2*@baseFontSize; - padding: .4em .9em; -} - -.btn-green { - background-color: @btnGreenColor; - border: 1px solid @btnGreenColor; - &:hover { - background-color: @btnHoverGreenColor; - color: #FFF; - } -} -.btn-blue { - background-color: @btnBlueColor; - border: 1px solid @btnBlueColor; - &:hover { - background-color: @btnHoverBlueColor; - color: #FFF; - } -} -.btn-red { - color: #FFF; - background-color: @btnRedColor; - border: 1px solid @btnRedColor; - &:hover { - background-color: @btnHoverRedColor; - color: #FFF; - } -} -.btn-orange { - background-color: @btnOrangeColor; - border: 1px solid @btnOrangeColor; - &:hover { - background-color: @btnHoverOrangeColor; - color: #FFF; - } -} - -.btn-black { - background-color: @btnBlackColor; - border: 1px solid @btnBlackColor; - &:hover { - background-color: @btnHoverBlackColor; - color: #FFF; - } -} - -.btn-gray { - background-color: @btnGrayColor; - color: @baseFontColor; - border: 1px solid @btnGrayBorderColor; - &:hover { - background-color: @btnGrayHoverColor; - color: @baseFontColor; - } -} - -.btn-white { - background-color: @btnWhiteColor; - color: @baseFontColor; - border: 1px solid @btnWhiteBorderColor; - &:hover { - background-color: @btnWhiteHoverColor; - color: @baseFontColor; - } - &.active { - background-color: @btnWhiteHoverColor; - color: @baseFontColor; - } -} -// status buttons - -.btn-active { - box-shadow: 0 0 0 1px rgba(0, 0, 0, .1) inset, 0 0 4px rgba(0, 0, 0, .15) inset -} -.btn-header { - margin-top: -1px; - color: white; - padding: 0 10px; -} -.btn-link { - overflow: visible; - color: white; - padding: .6em 1.2em; -} -.btn-radius { - border-radius: .25em; -} -.btn-left-radius { - border-top-left-radius: .25em; - border-bottom-left-radius: .25em; -} -.btn-right-radius { - border-top-right-radius: .25em; - border-bottom-right-radius: .25em; -} -.btn-block { - display: block; - width: 100%; - box-sizing: content-box; - text-align: center; -} -.btn-comb { - margin-left: -1px; -} - -.btn-disabled { - opacity: .6; - cursor: not-allowed; - box-shadow: none; - background-image: none !important; - border: none; - &:hover { - background-image: none !important; - color: @btnHoverFontColor; - } -} - -.btn-group { - display: inline-block; - > .btn { - position: relative; - float: left; - margin-right: -1px; - &:first-child{ - border-bottom-left-radius: .25em; - border-top-left-radius: .25em; - } - &:last-child{ - border-bottom-right-radius: .25em; - border-top-right-radius: .25em; - } - } -} -// input form elements -.ipt { - &:focus { - border-color: @iptFocusBorderColor; - } -} -.ipt-radius { - border-radius: .25em; -} -.ipt-small { - font-size: .8*@baseFontSize; -} -.ipt-large { - font-size: 1.2*@baseFontSize; -} -.ipt-textarea { - height: auto !important; - width: auto; -} -.ipt-disabled, -input[disabled] { - background-color: @iptDisabledColor !important; - &:focus { - background-color: @iptDisabledColor !important; - } - color: #888; - cursor: not-allowed; -} -.ipt-readonly, -input[readonly] { - &:focus { - background-color: @iptDisabledColor !important; - } -} -.ipt-error { - border-color: @iptErrorBorderColor !important; - background-color: @iptErrorFocusColor !important; -} - -.form { - label { - margin-right: 1em; - } - .help { - color: @formHelpFontColor; - padding-top: .6em; - display: inline-block; - } -} - -.form-stack { - label { - display: block; - } - .field { - margin-bottom: 1em; - } -} -.form-align { - label, - .form-label { - display: inline-block; - width: 120px; - text-align: right; - margin-right: 1em; - } - .field { - margin-bottom: 1em; - } -} -label { - &.text-left { - text-align: left; - } - &.req { - &:after { - content: "*"; - color: @labelRedColor; - } - } -} diff --git a/public/ng/less/ui/grid.less b/public/ng/less/ui/grid.less deleted file mode 100644 index 2b7d0043..00000000 --- a/public/ng/less/ui/grid.less +++ /dev/null @@ -1,99 +0,0 @@ -@import "var"; -@import "reset"; - -// float elements - -.left { - float: left; -} - -.right { - float: right; -} - -.clear::after { - clear: both; - content: " "; - width: 0; - height: 0; - display: block; -} - -.hide { - display: none; -} - -// 12 based grids - -.grid-1-12 { - width: 8.33%; -} - -.grid-2-12, -.grid-1-6 { - width: 16.67%; -} - -.grid-3-12, -.grid-1-4 { - width: 25%; -} - -.grid-4-12, -.grid-1-3 { - width: 33%; -} - -.grid-5-12 { - width: 41.67%; -} - -.grid-6-12, -.grid-1-2 { - width: 50%; -} - -.grid-7-12 { - width: 58.33%; -} - -.grid-8-12, -.grid-2-3 { - width: 66.67%; -} - -.grid-9-12, -.grid-3-4 { - width: 75%; -} - -.grid-10-12, -.grid-5-6 { - width: 83.33%; -} - -.grid-11-12 { - width: 91.67%; -} - -*[class*="grid-"] { - box-sizing: content-box; -} - -// 5 based - -.grid-1-5 { - width: 20%; -} - -.grid-2-5 { - width: 40%; -} - -.grid-3-5 { - width: 60%; -} - -.grid-4-5 { - width: 80%; -} diff --git a/public/ng/less/ui/label.less b/public/ng/less/ui/label.less deleted file mode 100644 index ab07718f..00000000 --- a/public/ng/less/ui/label.less +++ /dev/null @@ -1,43 +0,0 @@ -@import "var"; - -.label { - padding: .3em .6em .2em .6em; - color: @labelFontColor; -} - -.label-red { - background-color: @labelRedColor; -} - -.label-blue { - background-color: @labelBlueColor; -} - -.label-gray { - background-color: @labelGrayColor; -} -.label-green { - background-color: @labelGreenColor; - &:hover { - background-color: @btnHoverGreenColor; - color: #FFF; - } -} -.label-orange { - background-color: @labelOrangeColor; -} - -.label-black { - background-color: @labelBlackColor; -} - -.label-radius{ - border-radius: .2em; -} - -.label-link{ - color: @labelFontColor; - &:hover{ - color: @labelFontColor; - } -}
\ No newline at end of file diff --git a/public/ng/less/ui/menu.less b/public/ng/less/ui/menu.less deleted file mode 100644 index a954ecbf..00000000 --- a/public/ng/less/ui/menu.less +++ /dev/null @@ -1,170 +0,0 @@ -@import "var"; - -// lined menu - -ul.menu { - > li { - list-style: none; - > a { - padding: .8em 1.2em; - &:hover { - background-color: @lineMenuHoverBgColor; - color: @lineMenuHoverFontColor; - } - &.active { - background-color: #4183c4; - color: #FFF; - } - } - &.current > a, - &.hover > a { - color: @lineMenuHoverFontColor; - } - } - > li.head { - font-weight: bold; - padding: .8em 1.2em; - } - > li.down:hover { - > ul.menu-down { - display: block; - } - } - > li.border-bottom { - border-bottom: 1px solid @menuBorderColor; - height: 0; - margin: .5em 0; - } -} - -ul.menu-line { - > li, - > li > a { - display: inline-block; - } - > li.down { - position: relative; - > a:after { - content: "\25BE"; - margin-left: .4em; - } - > ul.menu-down { - top: 2.1em; - width: 150%; - } - } - > li.hover { - position: relative; - > a:after { - position: absolute; - content: "\25B4"; - left: 50%; - bottom: -1.1em; - margin-left: -4px; - } - } -} - -ul.menu-vertical, -ul.menu-down { - > li > a, - > li.head { - display: block; - padding: .4em 1.2em; - } - > li.down { - position: relative; - > a:after { - content: "\25B8"; - position: absolute; - right: .6em; - } - } - > li.hover { - position: relative; - > a:after { - content: "\25B8"; - position: absolute; - left: .5em; - } - } -} - -ul.menu-border, -ul.menu-down { - border: 1px solid @menuBorderColor; - > li.head { - border-bottom: 1px solid @menuBorderColor; - } -} - -ul { - &.menu-down { - position: absolute; - display: none; - z-index: 99; - box-shadow: 0 0 2px @menuShadowColor; - background-color: @menuDownBgColor; - } - &.menu-down-show { - position: absolute; - z-index: 99; - box-shadow: 0 0 2px @menuShadowColor; - background-color: @menuDownBgColor; - } -} - -ul.menu-radius { - border-radius: .3em; - > li { - &:first-child { - border-top-left-radius: .3em; - border-top-right-radius: .3em; - > a { - border-top-left-radius: .2em; - border-top-right-radius: .2em; - } - } - &:last-child { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; - > a { - border-bottom-left-radius: .2em; - border-bottom-right-radius: .2em; - } - } - } -} - -.drop { - position: relative; - &:hover { - > .drop-down { - position: absolute; - top: 0; - left: 0; - width: 200%; - display: block; - } - } - > .drop-down { - display: none; - border: 1px solid @dropBorderColor; - box-shadow: 0 0 3px @menuShadowColor; - background-color: @dropDownBgColor; - } -} - -.drop-bottom { - &:after { - content: "\25BE"; - margin-left: .4em; - } -} - -.drop-top { - &:after { - content: "\25B4"; - margin-left: .4em; - } -} diff --git a/public/ng/less/ui/pager.less b/public/ng/less/ui/pager.less deleted file mode 100644 index 37540b36..00000000 --- a/public/ng/less/ui/pager.less +++ /dev/null @@ -1,28 +0,0 @@ -@import "var"; - -.pager{ - .page{ - padding: .3em .5em .2em .5em; - margin: 0 .3em; - background-color: @pagerPageBgColor; - color: @pagerPageColor; - &:hover,&.hover{ - background-color: @pagerHoverBgColor; - color: @pagerHoverColor; - } - } - .prev,.next{ - padding: .4em .6em; - margin: 0 .3em; - background-color: @pagerDirectionBgColor; - color: @pagerDirectionColor; - &.invalid{ - background-color: @pagerInvalidBgColor; - color: @pagerInvalidColor; - cursor: not-allowed; - } - } - .page-radius{ - border-radius: .2em; - } -}
\ No newline at end of file diff --git a/public/ng/less/ui/panel.less b/public/ng/less/ui/panel.less deleted file mode 100644 index 929de21e..00000000 --- a/public/ng/less/ui/panel.less +++ /dev/null @@ -1,54 +0,0 @@ -@import "var"; -.panel { - border: 1px solid@panelBorderColor; - .panel-header { - font-size: 16px; - padding: .6em 1.2em; - background-color: @panelHeaderBgColor; - border-bottom: 1px solid@panelBorderColor; - } - .panel-body { - background-color: white; - .panel-desc { - padding: 0 40px 20px 40px; - } - } - .panel-content { - padding: 1em 1.2em; - } - .panel-footer { - padding: .6em 1.2em; - background-color: @panelFooterBgColor; - border-top: 1px solid@panelBorderColor; - } - &.panel-radius { - border-radius: .3em; - .panel-header { - border-top-left-radius: .3em; - border-top-right-radius: .3em; - } - .panel-footer { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; - } - .panel-content{ - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; - } - } - &.panel-info { - border-color: #85c5e5; - > .panel-header { - color: #31708f; - background-color: #d9edf7; - border-color: #85c5e5; - } - } - &.panel-warning { - border-color: #F0C36D; - > .panel-header { - background-color: #F9EDBE; - border-color: #F0C36D; - } - } -}
\ No newline at end of file diff --git a/public/ng/less/ui/reset.less b/public/ng/less/ui/reset.less deleted file mode 100644 index 26ec6292..00000000 --- a/public/ng/less/ui/reset.less +++ /dev/null @@ -1,368 +0,0 @@ -@import "var"; - -* { - padding: 0; - margin: 0; -} - -html { - font-size: @baseFontSize+1; - font-family: Helvetica, "Microsoft Yahei", Arial, sans-serif; - // make sure min font size - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; - line-height: @baseLineHeight; - - color: @baseFontColor; - background-color: @baseBgColor; - -} - -input, -textarea, -select, -option, -button { - font-family: Helvetica, "Microsoft Yahei", Arial, sans-serif; -} - -// html5 block elements - -article, -aside, -details, -figcaption, -figure, -footer, -header, -main, -nav, -section, -summary, -.block { - display: block; -} - -.inline { - display: inline; -} - -.inline-block { - display: inline-block; -} - -.dis-table { - display: table; -} - -.dis-table-cell { - display: table-cell; -} - -.dis-flex { - display: flex; -} - -// html5 media elements - -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; -} - -audio:not([controls]) { - display: none; - height: 0; -} - -// display hidden elements - -[hidden], -template, -.hidden { - display: none; -} -.opacity { - opacity: 0; -} -.opacity-half { - opacity: .5; -} - -// links element - -a, -.text-link { - color: @linkColor; - text-decoration: none; - cursor: pointer; - &:hover { - color: @linkHoverColor; - text-decoration: none; - } - &:focus { - outline: none; - } -} - -// stylus elements - -b, -strong, -.text-bold { - font-weight: bold; -} - -dfn, -.text-italic { - font-style: italic; -} - -// headers elements - -h1, -.text-h1 { - font-size: 2em; - margin-bottom: 0.67em; -} - -h2, -.text-h2 { - font-size: 1.6em; - margin-bottom: 0.625em; -} - -h3, -.text-h3 { - font: 1.2em; - margin-bottom: 0.5em; -} - -h4, -h5, -h6, -.text-h4, -.text-h5, -.text-h6 { - font-size: 1em; - margin-bottom: .3em; -} - -// text elements - -small, -.text-small { - font-size: .8em; -} - -sub, -sup, -.text-sup, -.text-sub { - font-size: .7em; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sup, -.text-sup { - top: -0.5em; -} - -sub, -.text-sub { - bottom: -0.25em; -} - -.figure, -.blockquote { - margin: 1em 1.5em; -} - -pre { - overflow: auto; - margin: 0; - padding: .4em 1em; -} - -code, -kbd, -pre, -samp { - font-family: monospace; - font-size: 1em; -} - -.text-left { - text-align: left; -} -.text-right { - text-align: right; -} -.text-center { - text-align: center; -} -.list-no-style { - list-style: none; -} - -// image elements - -img { - border: none; -} - -svg:not(:root) { - overflow: hidden; -} - -// form elements - -label { - font-weight: bold; -} - -textarea, -input, -.ipt { - padding: .6em; - line-height: normal; - border: 1px solid @iptBorderColor; - &:focus { - background-color: @iptFocusColor; - outline: none; - } -} - -button,.btn { - overflow: visible; - padding: .6em 1.2em; -} - -button, -select { - text-transform: none; - &:focus { - outline: none; - } -} - -button, -input[type="button"], -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; - -moz-appearance: button; - cursor: pointer; - background-color: @btnBgColor; - color: @btnFontColor; - border: none; - &:hover { - background-color: @btnHoverBgColor; - color: @btnHoverFontColor; - } -} - -button[disabled], -html input[disabled] { - cursor: default; -} - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} - -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; - padding: 0; -} - -input[type="search"] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; - box-sizing: content-box; -} - -fieldset { - border: 1px solid @iptBorderColor; - margin: 0 2px; - padding: 0.4em 0.8em 0.8em; -} - -legend { - border: 0; - padding: 0; -} - -textarea { - overflow: auto; - border: 1px solid @iptBorderColor; - padding: .6em; - &:focus { - background-color: @iptFocusColor; - outline: none; - } -} - -optgroup { - font-weight: bold; -} - -// table elements -table { - background-color: transparent; - border-collapse: collapse; - border-spacing: 0; -} - -td, -th { - padding: 0; -} - -// hr element - -hr { - -moz-box-sizing: content-box; - box-sizing: content-box; - height: 0; - border: none; - border-bottom: 1px solid @hrColor; - margin-bottom: .75em; -} -// radius element - -.radius { - border-radius: .25em; -} - -// truncate element - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - display: inline-block; - vertical-align: top; -} - -// code elements - -pre { - line-height: 1.6; - overflow: auto; - padding: 0; -} - -dt { - font-weight: bold; -} diff --git a/public/ng/less/ui/table.less b/public/ng/less/ui/table.less deleted file mode 100644 index 0ceb5e8c..00000000 --- a/public/ng/less/ui/table.less +++ /dev/null @@ -1,63 +0,0 @@ -@import "var"; - -table { - th, - td { - padding: .3em .6em; - line-height: 30px; - } -} - -.table-border { - border: 1px solid @tableBorderColor; - tr { - border-top: 1px solid @tableCellBorderColor; - th, - td, { - border-top: 1px solid @tableCellBorderColor; - } - &:first-child { - border-top: none; - } - } - thead { - border-bottom: 1px solid @tableBorderColor; - } -} - -.table-block { - width: 100%; - box-sizing: border-box; -} - -.table-radius { - border-collapse: separate !important; - border-radius: .3em; - thead:first-child { - border-top-left-radius: .3em; - border-top-right-radius: .3em; - tr:first-child { - border-top-left-radius: .3em; - > th:first-child { - border-top-left-radius: .3em; - } - > th:last-child { - border-top-right-radius: .3em; - } - } - } - tbody { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; - tr:last-child { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; - > td:first-child { - border-bottom-left-radius: .3em; - } - > td:last-child { - border-bottom-right-radius: .3em; - } - } - } -}
\ No newline at end of file diff --git a/public/ng/less/ui/var.less b/public/ng/less/ui/var.less deleted file mode 100644 index 98027e54..00000000 --- a/public/ng/less/ui/var.less +++ /dev/null @@ -1,96 +0,0 @@ -@baseFontSize: 12px; - -@baseLineHeight: 24px; - -@baseBgColor: #FAFAFA; -@baseFontColor: #444; - -@linkColor: #428BCA; -@linkHoverColor: #399ADE; -@linkVisitedColor: #0c172f; - -@iptBorderColor: #BBB; -@iptFocusColor: #f2fffc; -@iptFocusBorderColor: #428BCA; -@iptDisabledColor: #F2F2F2; -@iptErrorBorderColor: #b63b2c; -@iptErrorFocusColor: #ffF0F0; -@formHelpFontColor:#999; - -@hrColor: #DDD; - -@inlineCodeColor: #b63b2c; - -@btnBgColor: #888; -@btnFontColor: #FAFAFA; -@btnHoverBgColor: #444; -@btnHoverFontColor: #FFF; - -@btnGreenColor: #65AD4E; -@btnHoverGreenColor: #71BF57; - -@btnBlueColor: #428BCA; -@btnHoverBlueColor: #539CDB; - -@btnRedColor: #D9453D; -@btnHoverRedColor: #FF635A; - -@btnBlackColor: #444; -@btnHoverBlackColor: #383838; - -@btnOrangeColor: #DF7514; -@btnHoverOrangeColor: #df8229; - -@btnGrayColor: #F0F0F0; -@btnGrayHoverColor: #FAFAFA; -@btnGrayBorderColor: #D0D0D0; - -@btnWhiteColor: #FFF; -@btnWhiteHoverColor: #e8e8e8; -@btnWhiteBorderColor: #c6c6c6; - -@lineMenuHoverBgColor: #EAEAEA; -@lineMenuHoverFontColor: #444; - -@menuBorderColor: #BBB; -@dropBorderColor: #BBB; -@menuShadowColor: #666; -@dropShadowColor: #666; -@menuDownBgColor: #FFF; -@dropDownBgColor: #FFF; - -@panelBorderColor: #CCC; -@panelHeaderBgColor: #EEE; -@panelFooterBgColor: #EEE; - -@labelRedColor: #D9453D; -@labelBlueColor: #428BCA; -@labelGreenColor: #65AD4E; -@labelOrangeColor: #DF7514; -@labelBlackColor: #444; -@labelFontColor: #FFF; -@labelGrayColor: #999; - -@breadColor: #444; - -@alertRedColor: #D9453D; -@alertBlueColor: #428BCA; -@alertGreenColor: #65AD4E; -@alertOrangeColor: #DF7514; -@alertBlackColor: #444; -@alertGrayColor: #999; - -@tableBorderColor:#D6D6D6; -@tableCellBorderColor:#EAEAEA; - -@preBgColor:#444; -@preFontColor:#FFF; - -@pagerPageColor:#444; -@pagerPageBgColor:#CCC; -@pagerHoverBgColor:#428BCA; -@pagerHoverColor:#FFF; -@pagerInvalidColor:#AAA; -@pagerInvalidBgColor:#EEE; -@pagerDirectionBgColor:#505050; -@pagerDirectionColor:#FAFAFA; diff --git a/routers/admin/admin.go b/routers/admin/admin.go index 54e4559f..f530cd43 100644 --- a/routers/admin/admin.go +++ b/routers/admin/admin.go @@ -116,6 +116,7 @@ type AdminOperation int const ( CLEAN_INACTIVATE_USER AdminOperation = iota + 1 CLEAN_REPO_ARCHIVES + CLEAN_MISSING_REPOS GIT_GC_REPOS SYNC_SSH_AUTHORIZED_KEY SYNC_REPOSITORY_UPDATE_HOOK @@ -139,6 +140,9 @@ func Dashboard(ctx *middleware.Context) { case CLEAN_REPO_ARCHIVES: success = ctx.Tr("admin.dashboard.delete_repo_archives_success") err = models.DeleteRepositoryArchives() + case CLEAN_MISSING_REPOS: + success = ctx.Tr("admin.dashboard.delete_missing_repos_success") + err = models.DeleteMissingRepositories() case GIT_GC_REPOS: success = ctx.Tr("admin.dashboard.git_gc_repos_success") err = models.GitGcRepos() diff --git a/routers/admin/notice.go b/routers/admin/notice.go index 512c3f59..b076994d 100644 --- a/routers/admin/notice.go +++ b/routers/admin/notice.go @@ -49,5 +49,5 @@ func DeleteNotice(ctx *middleware.Context) { } log.Trace("System notice deleted by admin(%s): %d", ctx.User.Name, id) ctx.Flash.Success(ctx.Tr("admin.notices.delete_success")) - ctx.Redirect("/admin/notices") + ctx.Redirect(setting.AppSubUrl + "/admin/notices") } diff --git a/routers/admin/users.go b/routers/admin/users.go index ac0f5381..d5358553 100644 --- a/routers/admin/users.go +++ b/routers/admin/users.go @@ -213,6 +213,7 @@ func EditUserPost(ctx *middleware.Context, form auth.AdminEditUserForm) { u.IsActive = form.Active u.IsAdmin = form.Admin u.AllowGitHook = form.AllowGitHook + u.AllowImportLocal = form.AllowImportLocal if err := models.UpdateUser(u); err != nil { if models.IsErrEmailAlreadyUsed(err) { diff --git a/routers/api/v1/repo.go b/routers/api/v1/repo.go index 5a002677..b4da4c6f 100644 --- a/routers/api/v1/repo.go +++ b/routers/api/v1/repo.go @@ -5,9 +5,7 @@ package v1 import ( - "net/url" "path" - "strings" "github.com/Unknwon/com" @@ -108,9 +106,9 @@ func ListMyRepos(ctx *middleware.Context) { } numOwnRepos := len(ownRepos) - accessibleRepos, err := ctx.User.GetAccessibleRepositories() + accessibleRepos, err := ctx.User.GetRepositoryAccesses() if err != nil { - ctx.APIError(500, "GetAccessibleRepositories", err) + ctx.APIError(500, "GetRepositoryAccesses", err) return } @@ -218,22 +216,23 @@ func MigrateRepo(ctx *middleware.Context, form auth.MigrateRepoForm) { } } - // Remote address can be HTTP/HTTPS/Git URL or local path. - remoteAddr := form.CloneAddr - if strings.HasPrefix(form.CloneAddr, "http://") || - strings.HasPrefix(form.CloneAddr, "https://") || - strings.HasPrefix(form.CloneAddr, "git://") { - u, err := url.Parse(form.CloneAddr) - if err != nil { - ctx.APIError(422, "", err) - return - } - if len(form.AuthUsername) > 0 || len(form.AuthPassword) > 0 { - u.User = url.UserPassword(form.AuthUsername, form.AuthPassword) + remoteAddr, err := form.ParseRemoteAddr(ctx.User) + if err != nil { + if models.IsErrInvalidCloneAddr(err) { + addrErr := err.(models.ErrInvalidCloneAddr) + switch { + case addrErr.IsURLError: + ctx.APIError(422, "", err) + case addrErr.IsPermissionDenied: + ctx.APIError(422, "", "You are not allowed to import local repositories.") + case addrErr.IsInvalidPath: + ctx.APIError(422, "", "Invalid local path, it does not exist or not a directory.") + default: + ctx.APIError(500, "ParseRemoteAddr", "Unknown error type (ErrInvalidCloneAddr): "+err.Error()) + } + } else { + ctx.APIError(500, "ParseRemoteAddr", err) } - remoteAddr = u.String() - } else if !com.IsDir(remoteAddr) { - ctx.APIError(422, "", "Invalid local path, it does not exist or not a directory.") return } diff --git a/routers/api/v1/repo_hooks.go b/routers/api/v1/repo_hooks.go index 91547cf1..77c2ba66 100644 --- a/routers/api/v1/repo_hooks.go +++ b/routers/api/v1/repo_hooks.go @@ -44,9 +44,9 @@ func ToApiHook(repoLink string, w *models.Webhook) *api.Hook { // https://github.com/gogits/go-gogs-client/wiki/Repositories#list-hooks func ListRepoHooks(ctx *middleware.Context) { - hooks, err := models.GetWebhooksByRepoId(ctx.Repo.Repository.ID) + hooks, err := models.GetWebhooksByRepoID(ctx.Repo.Repository.ID) if err != nil { - ctx.APIError(500, "GetWebhooksByRepoId", err) + ctx.APIError(500, "GetWebhooksByRepoID", err) return } @@ -127,7 +127,11 @@ func CreateRepoHook(ctx *middleware.Context, form api.CreateHookOption) { func EditRepoHook(ctx *middleware.Context, form api.EditHookOption) { w, err := models.GetWebhookByID(ctx.ParamsInt64(":id")) if err != nil { - ctx.APIError(500, "GetWebhookById", err) + if models.IsErrWebhookNotExist(err) { + ctx.Error(404) + } else { + ctx.APIError(500, "GetWebhookById", err) + } return } diff --git a/routers/api/v1/repo_keys.go b/routers/api/v1/repo_keys.go new file mode 100644 index 00000000..7016c55e --- /dev/null +++ b/routers/api/v1/repo_keys.go @@ -0,0 +1,115 @@ +// Copyright 2015 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package v1 + +import ( + "fmt" + + "github.com/Unknwon/com" + + api "github.com/gogits/go-gogs-client" + + "github.com/gogits/gogs/models" + "github.com/gogits/gogs/modules/middleware" + "github.com/gogits/gogs/modules/setting" +) + +func ToApiDeployKey(apiLink string, key *models.DeployKey) *api.DeployKey { + return &api.DeployKey{ + ID: key.ID, + Key: key.Content, + URL: apiLink + com.ToStr(key.ID), + Title: key.Name, + Created: key.Created, + ReadOnly: true, // All deploy keys are read-only. + } +} + +func composeDeployKeysAPILink(repoPath string) string { + return setting.AppUrl + "api/v1/repos/" + repoPath + "/keys/" +} + +// https://github.com/gogits/go-gogs-client/wiki/Repositories---Deploy-Keys#list-deploy-keys +func ListRepoDeployKeys(ctx *middleware.Context) { + keys, err := models.ListDeployKeys(ctx.Repo.Repository.ID) + if err != nil { + ctx.Handle(500, "ListDeployKeys", err) + return + } + + apiLink := composeDeployKeysAPILink(ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name) + apiKeys := make([]*api.DeployKey, len(keys)) + for i := range keys { + if err = keys[i].GetContent(); err != nil { + ctx.APIError(500, "GetContent", err) + return + } + apiKeys[i] = ToApiDeployKey(apiLink, keys[i]) + } + + ctx.JSON(200, &apiKeys) +} + +// https://github.com/gogits/go-gogs-client/wiki/Repositories---Deploy-Keys#get-a-deploy-key +func GetRepoDeployKey(ctx *middleware.Context) { + key, err := models.GetDeployKeyByID(ctx.ParamsInt64(":id")) + if err != nil { + if models.IsErrDeployKeyNotExist(err) { + ctx.Error(404) + } else { + ctx.Handle(500, "GetDeployKeyByID", err) + } + return + } + + if err = key.GetContent(); err != nil { + ctx.APIError(500, "GetContent", err) + return + } + + apiLink := composeDeployKeysAPILink(ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name) + ctx.JSON(200, ToApiDeployKey(apiLink, key)) +} + +// https://github.com/gogits/go-gogs-client/wiki/Repositories---Deploy-Keys#add-a-new-deploy-key +func CreateRepoDeployKey(ctx *middleware.Context, form api.CreateDeployKeyOption) { + content, err := models.CheckPublicKeyString(form.Key) + if err != nil { + if models.IsErrKeyUnableVerify(err) { + ctx.APIError(422, "", "Unable to verify key content") + } else { + ctx.APIError(422, "", fmt.Errorf("Invalid key content: %v", err)) + } + return + } + + key, err := models.AddDeployKey(ctx.Repo.Repository.ID, form.Title, content) + if err != nil { + ctx.Data["HasError"] = true + switch { + case models.IsErrKeyAlreadyExist(err): + ctx.APIError(422, "", "Key content has been used as non-deploy key") + case models.IsErrKeyNameAlreadyUsed(err): + ctx.APIError(422, "", "Key title has been used") + default: + ctx.APIError(500, "AddDeployKey", err) + } + return + } + + key.Content = content + apiLink := composeDeployKeysAPILink(ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name) + ctx.JSON(201, ToApiDeployKey(apiLink, key)) +} + +// https://github.com/gogits/go-gogs-client/wiki/Repositories---Deploy-Keys#remove-a-deploy-key +func DeleteRepoDeploykey(ctx *middleware.Context) { + if err := models.DeleteDeployKey(ctx.ParamsInt64(":id")); err != nil { + ctx.APIError(500, "DeleteDeployKey", err) + return + } + + ctx.Status(204) +} diff --git a/routers/api/v1/user.go b/routers/api/v1/user.go index f27cd3ae..ec4f720c 100644 --- a/routers/api/v1/user.go +++ b/routers/api/v1/user.go @@ -55,7 +55,7 @@ func SearchUsers(ctx *middleware.Context) { } } - ctx.Render.JSON(200, map[string]interface{}{ + ctx.JSON(200, map[string]interface{}{ "ok": true, "data": results, }) diff --git a/routers/install.go b/routers/install.go index 6fa7c12a..5240b88e 100644 --- a/routers/install.go +++ b/routers/install.go @@ -25,6 +25,7 @@ import ( "github.com/gogits/gogs/modules/mailer" "github.com/gogits/gogs/modules/middleware" "github.com/gogits/gogs/modules/setting" + "github.com/gogits/gogs/modules/ssh" "github.com/gogits/gogs/modules/user" ) @@ -76,6 +77,11 @@ func GlobalInit() { log.Info("TiDB Supported") } checkRunMode() + + if setting.StartSSHServer { + ssh.Listen(setting.SSHPort) + log.Info("SSH server started on :%v", setting.SSHPort) + } } func InstallInit(ctx *middleware.Context) { diff --git a/routers/org/members.go b/routers/org/members.go index dd742bb7..a0a3051d 100644 --- a/routers/org/members.go +++ b/routers/org/members.go @@ -50,7 +50,7 @@ func MembersAction(ctx *middleware.Context) { } err = models.ChangeOrgUserStatus(org.Id, uid, false) case "public": - if ctx.User.Id != uid { + if ctx.User.Id != uid && !ctx.Org.IsOwner { ctx.Error(404) return } diff --git a/routers/org/teams.go b/routers/org/teams.go index 6968512f..2dd3c198 100644 --- a/routers/org/teams.go +++ b/routers/org/teams.go @@ -120,7 +120,7 @@ func TeamsRepoAction(ctx *middleware.Context) { var err error switch ctx.Params(":action") { case "add": - repoName := path.Base(ctx.Query("repo-name")) + repoName := path.Base(ctx.Query("repo_name")) var repo *models.Repository repo, err = models.GetRepositoryByName(ctx.Org.Organization.Id, repoName) if err != nil { @@ -280,9 +280,12 @@ func EditTeamPost(ctx *middleware.Context, form auth.CreateTeamForm) { func DeleteTeam(ctx *middleware.Context) { if err := models.DeleteTeam(ctx.Org.Team); err != nil { - ctx.Handle(500, "DeleteTeam", err) - return + ctx.Flash.Error("DeleteTeam: " + err.Error()) + } else { + ctx.Flash.Success(ctx.Tr("org.teams.delete_team_success")) } - ctx.Flash.Success(ctx.Tr("org.teams.delete_team_success")) - ctx.Redirect(ctx.Org.OrgLink + "/teams") + + ctx.JSON(200, map[string]interface{}{ + "redirect": ctx.Org.OrgLink + "/teams", + }) } diff --git a/routers/repo/commit.go b/routers/repo/commit.go index 13483cc8..101cb5c5 100644 --- a/routers/repo/commit.go +++ b/routers/repo/commit.go @@ -8,7 +8,6 @@ import ( "container/list" "path" - "github.com/Unknwon/com" "github.com/Unknwon/paginater" "github.com/gogits/gogs/models" @@ -38,7 +37,6 @@ func RenderIssueLinks(oldCommits *list.List, repoLink string) *list.List { newCommits := list.New() for e := oldCommits.Front(); e != nil; e = e.Next() { c := e.Value.(*git.Commit) - c.CommitMessage = c.CommitMessage newCommits.PushBack(c) } return newCommits @@ -47,18 +45,6 @@ func RenderIssueLinks(oldCommits *list.List, repoLink string) *list.List { func Commits(ctx *middleware.Context) { ctx.Data["PageIsCommits"] = true - userName := ctx.Repo.Owner.Name - repoName := ctx.Repo.Repository.Name - - brs, err := ctx.Repo.GitRepo.GetBranches() - if err != nil { - ctx.Handle(500, "GetBranches", err) - return - } else if len(brs) == 0 { - ctx.Handle(404, "GetBranches", nil) - return - } - commitsCount, err := ctx.Repo.Commit.CommitsCount() if err != nil { ctx.Handle(500, "GetCommitsCount", err) @@ -79,11 +65,12 @@ func Commits(ctx *middleware.Context) { } commits = RenderIssueLinks(commits, ctx.Repo.RepoLink) commits = models.ValidateCommitsWithEmails(commits) - ctx.Data["Commits"] = commits - ctx.Data["Username"] = userName - ctx.Data["Reponame"] = repoName + + ctx.Data["Username"] = ctx.Repo.Owner.Name + ctx.Data["Reponame"] = ctx.Repo.Repository.Name ctx.Data["CommitCount"] = commitsCount + ctx.Data["Branch"] = ctx.Repo.BranchName ctx.HTML(200, COMMITS) } @@ -96,18 +83,6 @@ func SearchCommits(ctx *middleware.Context) { return } - userName := ctx.Params(":username") - repoName := ctx.Params(":reponame") - - brs, err := ctx.Repo.GitRepo.GetBranches() - if err != nil { - ctx.Handle(500, "GetBranches", err) - return - } else if len(brs) == 0 { - ctx.Handle(404, "GetBranches", nil) - return - } - commits, err := ctx.Repo.Commit.SearchCommits(keyword) if err != nil { ctx.Handle(500, "SearchCommits", err) @@ -115,12 +90,13 @@ func SearchCommits(ctx *middleware.Context) { } commits = RenderIssueLinks(commits, ctx.Repo.RepoLink) commits = models.ValidateCommitsWithEmails(commits) + ctx.Data["Commits"] = commits ctx.Data["Keyword"] = keyword - ctx.Data["Username"] = userName - ctx.Data["Reponame"] = repoName + ctx.Data["Username"] = ctx.Repo.Owner.Name + ctx.Data["Reponame"] = ctx.Repo.Repository.Name ctx.Data["CommitCount"] = commits.Len() - ctx.Data["Commits"] = commits + ctx.Data["Branch"] = ctx.Repo.BranchName ctx.HTML(200, COMMITS) } @@ -133,58 +109,36 @@ func FileHistory(ctx *middleware.Context) { return } - userName := ctx.Repo.Owner.Name - repoName := ctx.Repo.Repository.Name branchName := ctx.Repo.BranchName - - brs, err := ctx.Repo.GitRepo.GetBranches() - if err != nil { - ctx.Handle(500, "GetBranches", err) - return - } else if len(brs) == 0 { - ctx.Handle(404, "GetBranches", nil) - return - } - commitsCount, err := ctx.Repo.GitRepo.FileCommitsCount(branchName, fileName) if err != nil { - ctx.Handle(500, "repo.FileHistory(GetCommitsCount)", err) + ctx.Handle(500, "FileCommitsCount", err) return } else if commitsCount == 0 { - ctx.Handle(404, "repo.FileHistory", nil) + ctx.Handle(404, "FileCommitsCount", nil) return } - // Calculate and validate page number. - page := com.StrTo(ctx.Query("p")).MustInt() - if page < 1 { + page := ctx.QueryInt("page") + if page <= 1 { page = 1 } - lastPage := page - 1 - if lastPage < 0 { - lastPage = 0 - } - nextPage := page + 1 - if nextPage*50 > commitsCount { - nextPage = 0 - } + ctx.Data["Page"] = paginater.New(commitsCount, git.CommitsRangeSize, page, 5) - commits, err := ctx.Repo.GitRepo.CommitsByFileAndRange( - branchName, fileName, page) + commits, err := ctx.Repo.GitRepo.CommitsByFileAndRange(branchName, fileName, page) if err != nil { - ctx.Handle(500, "repo.FileHistory(CommitsByRange)", err) + ctx.Handle(500, "CommitsByFileAndRange", err) return } commits = RenderIssueLinks(commits, ctx.Repo.RepoLink) commits = models.ValidateCommitsWithEmails(commits) - ctx.Data["Commits"] = commits - ctx.Data["Username"] = userName - ctx.Data["Reponame"] = repoName + + ctx.Data["Username"] = ctx.Repo.Owner.Name + ctx.Data["Reponame"] = ctx.Repo.Repository.Name ctx.Data["FileName"] = fileName ctx.Data["CommitCount"] = commitsCount - ctx.Data["LastPageNum"] = lastPage - ctx.Data["NextPageNum"] = nextPage + ctx.Data["Branch"] = branchName ctx.HTML(200, COMMITS) } @@ -196,7 +150,6 @@ func Diff(ctx *middleware.Context) { commitID := ctx.Repo.CommitID commit := ctx.Repo.Commit - commit.CommitMessage = commit.CommitMessage diff, err := models.GetDiffCommit(models.RepoPath(userName, repoName), commitID, setting.Git.MaxGitDiffLines) if err != nil { diff --git a/routers/repo/forks.go b/routers/repo/forks.go deleted file mode 100644 index 099f0cc4..00000000 --- a/routers/repo/forks.go +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright 2014 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package repo - -import ( - "fmt" - "github.com/gogits/gogs/modules/base" - "github.com/gogits/gogs/modules/middleware" -) - -const ( - FORKS base.TplName = "repo/forks" -) - -func Forks(ctx *middleware.Context) { - ctx.Data["Title"] = ctx.Tr("repos.forks") - - forks, err := ctx.Repo.Repository.GetForks() - - if err != nil { - ctx.Handle(500, "GetForks", err) - return - } - - for _, fork := range forks { - if err = fork.GetOwner(); err != nil { - ctx.Handle(500, "GetOwner", fmt.Errorf("%d: %v", fork.ID, err)) - return - } - } - - ctx.Data["Forks"] = forks - - ctx.HTML(200, FORKS) -} diff --git a/routers/repo/http.go b/routers/repo/http.go index 178ae92c..214cc9ba 100644 --- a/routers/repo/http.go +++ b/routers/repo/http.go @@ -158,7 +158,7 @@ func HTTP(ctx *middleware.Context) { } if !isPull && repo.IsMirror { - ctx.HandleText(401, "can't push to mirror") + ctx.HandleText(401, "mirror repository is read-only") return } } diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 58382d18..cf6687fe 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -59,6 +59,7 @@ func Issues(ctx *middleware.Context) { if isPullList { ctx.Data["Title"] = ctx.Tr("repo.pulls") ctx.Data["PageIsPullList"] = true + ctx.Data["HasForkedRepo"] = ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID) } else { ctx.Data["Title"] = ctx.Tr("repo.issues") ctx.Data["PageIsIssueList"] = true @@ -124,7 +125,8 @@ func Issues(ctx *middleware.Context) { } else { total = int(issueStats.ClosedCount) } - ctx.Data["Page"] = paginater.New(total, setting.IssuePagingNum, page, 5) + pager := paginater.New(total, setting.IssuePagingNum, page, 5) + ctx.Data["Page"] = pager // Get issues. issues, err := models.Issues(&models.IssuesOptions{ @@ -133,7 +135,7 @@ func Issues(ctx *middleware.Context) { RepoID: repo.ID, PosterID: posterID, MilestoneID: milestoneID, - Page: page, + Page: pager.Current(), IsClosed: isShowClosed, IsMention: filterMode == models.FM_MENTION, IsPull: isPullList, @@ -392,7 +394,7 @@ func NewIssuePost(ctx *middleware.Context, form auth.CreateIssueForm) { issue := &models.Issue{ RepoID: ctx.Repo.Repository.ID, Index: repo.NextIssueIndex(), - Name: form.Title, + Name: strings.TrimSpace(form.Title), PosterID: ctx.User.Id, Poster: ctx.User, MilestoneID: milestoneID, @@ -492,6 +494,7 @@ func ViewIssue(ctx *middleware.Context) { ctx.Data["PageIsPullList"] = true ctx.Data["PageIsPullConversation"] = true + ctx.Data["HasForkedRepo"] = ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID) } else { ctx.Data["PageIsIssueList"] = true } @@ -619,7 +622,7 @@ func UpdateIssueTitle(ctx *middleware.Context) { return } - issue.Name = ctx.Query("title") + issue.Name = ctx.QueryTrim("title") if len(issue.Name) == 0 { ctx.Error(204) return @@ -781,8 +784,8 @@ func NewComment(ctx *middleware.Context, form auth.CreateCommentForm) { var comment *models.Comment defer func() { - // Check if issue owner/poster changes the status of issue. - if (ctx.Repo.IsOwner() || (ctx.IsSigned && issue.IsPoster(ctx.User.Id))) && + // Check if issue admin/poster changes the status of issue. + if (ctx.Repo.IsAdmin() || (ctx.IsSigned && issue.IsPoster(ctx.User.Id))) && (form.Status == "reopen" || form.Status == "close") && !(issue.IsPull && issue.HasMerged) { diff --git a/routers/repo/pull.go b/routers/repo/pull.go index b6959241..ee66da73 100644 --- a/routers/repo/pull.go +++ b/routers/repo/pull.go @@ -45,7 +45,7 @@ func getForkRepository(ctx *middleware.Context) *models.Repository { } ctx.Data["repo_name"] = forkRepo.Name - ctx.Data["desc"] = forkRepo.Description + ctx.Data["description"] = forkRepo.Description ctx.Data["IsPrivate"] = forkRepo.IsPrivate if err = forkRepo.GetOwner(); err != nil { diff --git a/routers/repo/release.go b/routers/repo/release.go index 30d5f60b..8fc1cb7d 100644 --- a/routers/repo/release.go +++ b/routers/repo/release.go @@ -13,15 +13,13 @@ import ( ) const ( - RELEASES base.TplName = "repo/release/list" - RELEASE_NEW base.TplName = "repo/release/new" - RELEASE_EDIT base.TplName = "repo/release/edit" + RELEASES base.TplName = "repo/release/list" + RELEASE_NEW base.TplName = "repo/release/new" ) func Releases(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("repo.release.releases") - ctx.Data["IsRepoToolbarReleases"] = true - ctx.Data["IsRepoReleaseNew"] = false + ctx.Data["PageIsReleaseList"] = true rawTags, err := ctx.Repo.GitRepo.GetTags() if err != nil { @@ -29,9 +27,9 @@ func Releases(ctx *middleware.Context) { return } - rels, err := models.GetReleasesByRepoId(ctx.Repo.Repository.ID) + rels, err := models.GetReleasesByRepoID(ctx.Repo.Repository.ID) if err != nil { - ctx.Handle(500, "GetReleasesByRepoId", err) + ctx.Handle(500, "GetReleasesByRepoID", err) return } @@ -45,7 +43,7 @@ func Releases(ctx *middleware.Context) { continue } if rel.TagName == rawTag { - rel.Publisher, err = models.GetUserByID(rel.PublisherId) + rel.Publisher, err = models.GetUserByID(rel.PublisherID) if err != nil { ctx.Handle(500, "GetUserById", err) return @@ -88,10 +86,10 @@ func Releases(ctx *middleware.Context) { tags[i] = &models.Release{ Title: rawTag, TagName: rawTag, - Sha1: commit.Id.String(), + Sha1: commit.ID.String(), } - tags[i].NumCommits, err = ctx.Repo.GitRepo.CommitsCount(commit.Id.String()) + tags[i].NumCommits, err = ctx.Repo.GitRepo.CommitsCount(commit.ID.String()) if err != nil { ctx.Handle(500, "CommitsCount", err) return @@ -105,7 +103,7 @@ func Releases(ctx *middleware.Context) { continue } - rel.Publisher, err = models.GetUserByID(rel.PublisherId) + rel.Publisher, err = models.GetUserByID(rel.PublisherID) if err != nil { ctx.Handle(500, "GetUserById", err) return @@ -140,27 +138,15 @@ func Releases(ctx *middleware.Context) { } func NewRelease(ctx *middleware.Context) { - if !ctx.Repo.IsOwner() { - ctx.Handle(403, "release.ReleasesNew", nil) - return - } - ctx.Data["Title"] = ctx.Tr("repo.release.new_release") + ctx.Data["PageIsReleaseList"] = true ctx.Data["tag_target"] = ctx.Repo.Repository.DefaultBranch - ctx.Data["IsRepoToolbarReleases"] = true - ctx.Data["IsRepoReleaseNew"] = true ctx.HTML(200, RELEASE_NEW) } func NewReleasePost(ctx *middleware.Context, form auth.NewReleaseForm) { - if !ctx.Repo.IsOwner() { - ctx.Handle(403, "release.ReleasesNew", nil) - return - } - ctx.Data["Title"] = ctx.Tr("repo.release.new_release") - ctx.Data["IsRepoToolbarReleases"] = true - ctx.Data["IsRepoReleaseNew"] = true + ctx.Data["PageIsReleaseList"] = true if ctx.HasError() { ctx.HTML(200, RELEASE_NEW) @@ -185,12 +171,12 @@ func NewReleasePost(ctx *middleware.Context, form auth.NewReleaseForm) { } rel := &models.Release{ - RepoId: ctx.Repo.Repository.ID, - PublisherId: ctx.User.Id, + RepoID: ctx.Repo.Repository.ID, + PublisherID: ctx.User.Id, Title: form.Title, TagName: form.TagName, Target: form.Target, - Sha1: commit.Id.String(), + Sha1: commit.ID.String(), NumCommits: commitsCount, Note: form.Content, IsDraft: len(form.Draft) > 0, @@ -198,67 +184,70 @@ func NewReleasePost(ctx *middleware.Context, form auth.NewReleaseForm) { } if err = models.CreateRelease(ctx.Repo.GitRepo, rel); err != nil { - if err == models.ErrReleaseAlreadyExist { + if models.IsErrReleaseAlreadyExist(err) { + ctx.Data["Err_TagName"] = true ctx.RenderWithErr(ctx.Tr("repo.release.tag_name_already_exist"), RELEASE_NEW, &form) } else { ctx.Handle(500, "CreateRelease", err) } return } - log.Trace("%s Release created: %s/%s:%s", ctx.Req.RequestURI, ctx.User.LowerName, ctx.Repo.Repository.Name, form.TagName) + log.Trace("Release created: %s/%s:%s", ctx.User.LowerName, ctx.Repo.Repository.Name, form.TagName) ctx.Redirect(ctx.Repo.RepoLink + "/releases") } func EditRelease(ctx *middleware.Context) { - if !ctx.Repo.IsOwner() { - ctx.Handle(403, "release.ReleasesEdit", nil) - return - } + ctx.Data["Title"] = ctx.Tr("repo.release.edit_release") + ctx.Data["PageIsReleaseList"] = true + ctx.Data["PageIsEditRelease"] = true tagName := ctx.Params(":tagname") rel, err := models.GetRelease(ctx.Repo.Repository.ID, tagName) if err != nil { - if err == models.ErrReleaseNotExist { + if models.IsErrReleaseNotExist(err) { ctx.Handle(404, "GetRelease", err) } else { ctx.Handle(500, "GetRelease", err) } return } - ctx.Data["Release"] = rel + ctx.Data["ID"] = rel.ID + ctx.Data["tag_name"] = rel.TagName + ctx.Data["tag_target"] = rel.Target + ctx.Data["title"] = rel.Title + ctx.Data["content"] = rel.Note + ctx.Data["prerelease"] = rel.IsPrerelease - ctx.Data["Title"] = ctx.Tr("repo.release.edit_release") - ctx.Data["IsRepoToolbarReleases"] = true - ctx.HTML(200, RELEASE_EDIT) + ctx.HTML(200, RELEASE_NEW) } func EditReleasePost(ctx *middleware.Context, form auth.EditReleaseForm) { - if !ctx.Repo.IsOwner() { - ctx.Handle(403, "release.EditReleasePost", nil) - return - } + ctx.Data["Title"] = ctx.Tr("repo.release.edit_release") + ctx.Data["PageIsReleaseList"] = true + ctx.Data["PageIsEditRelease"] = true tagName := ctx.Params(":tagname") rel, err := models.GetRelease(ctx.Repo.Repository.ID, tagName) if err != nil { - if err == models.ErrReleaseNotExist { + if models.IsErrReleaseNotExist(err) { ctx.Handle(404, "GetRelease", err) } else { ctx.Handle(500, "GetRelease", err) } return } - ctx.Data["Release"] = rel + ctx.Data["tag_name"] = rel.TagName + ctx.Data["tag_target"] = rel.Target + ctx.Data["title"] = rel.Title + ctx.Data["content"] = rel.Note + ctx.Data["prerelease"] = rel.IsPrerelease if ctx.HasError() { - ctx.HTML(200, RELEASE_EDIT) + ctx.HTML(200, RELEASE_NEW) return } - ctx.Data["Title"] = ctx.Tr("repo.release.edit_release") - ctx.Data["IsRepoToolbarReleases"] = true - rel.Title = form.Title rel.Note = form.Content rel.IsDraft = len(form.Draft) > 0 @@ -269,3 +258,15 @@ func EditReleasePost(ctx *middleware.Context, form auth.EditReleaseForm) { } ctx.Redirect(ctx.Repo.RepoLink + "/releases") } + +func DeleteRelease(ctx *middleware.Context) { + if err := models.DeleteReleaseByID(ctx.QueryInt64("id")); err != nil { + ctx.Flash.Error("DeleteReleaseByID: " + err.Error()) + } else { + ctx.Flash.Success(ctx.Tr("repo.release.deletion_success")) + } + + ctx.JSON(200, map[string]interface{}{ + "redirect": ctx.Repo.RepoLink + "/releases", + }) +} diff --git a/routers/repo/repo.go b/routers/repo/repo.go index f7e7e320..f930c132 100644 --- a/routers/repo/repo.go +++ b/routers/repo/repo.go @@ -6,7 +6,6 @@ package repo import ( "fmt" - "net/url" "os" "path" "strings" @@ -164,26 +163,24 @@ func MigratePost(ctx *middleware.Context, form auth.MigrateRepoForm) { return } - // Remote address can be HTTP/HTTPS/Git URL or local path. - // Note: remember to change api/v1/repo.go: MigrateRepo - // FIXME: merge these two functions with better error handling - remoteAddr := form.CloneAddr - if strings.HasPrefix(form.CloneAddr, "http://") || - strings.HasPrefix(form.CloneAddr, "https://") || - strings.HasPrefix(form.CloneAddr, "git://") { - u, err := url.Parse(form.CloneAddr) - if err != nil { + remoteAddr, err := form.ParseRemoteAddr(ctx.User) + if err != nil { + if models.IsErrInvalidCloneAddr(err) { ctx.Data["Err_CloneAddr"] = true - ctx.RenderWithErr(ctx.Tr("form.url_error"), MIGRATE, &form) - return + addrErr := err.(models.ErrInvalidCloneAddr) + switch { + case addrErr.IsURLError: + ctx.RenderWithErr(ctx.Tr("form.url_error"), MIGRATE, &form) + case addrErr.IsPermissionDenied: + ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied"), MIGRATE, &form) + case addrErr.IsInvalidPath: + ctx.RenderWithErr(ctx.Tr("repo.migrate.invalid_local_path"), MIGRATE, &form) + default: + ctx.Handle(500, "Unknown error", err) + } + } else { + ctx.Handle(500, "ParseRemoteAddr", err) } - if len(form.AuthUsername) > 0 || len(form.AuthPassword) > 0 { - u.User = url.UserPassword(form.AuthUsername, form.AuthPassword) - } - remoteAddr = u.String() - } else if !com.IsDir(remoteAddr) { - ctx.Data["Err_CloneAddr"] = true - ctx.RenderWithErr(ctx.Tr("repo.migrate.invalid_local_path"), MIGRATE, &form) return } @@ -207,11 +204,14 @@ func MigratePost(ctx *middleware.Context, form auth.MigrateRepoForm) { } if strings.Contains(err.Error(), "Authentication failed") || - strings.Contains(err.Error(), " not found") || strings.Contains(err.Error(), "could not read Username") { ctx.Data["Err_Auth"] = true ctx.RenderWithErr(ctx.Tr("form.auth_failed", strings.Replace(err.Error(), ":"+form.AuthPassword+"@", ":<password>@", 1)), MIGRATE, &form) return + } else if strings.Contains(err.Error(), "fatal:") { + ctx.Data["Err_CloneAddr"] = true + ctx.RenderWithErr(ctx.Tr("repo.migrate.failed", strings.Replace(err.Error(), ":"+form.AuthPassword+"@", ":<password>@", 1)), MIGRATE, &form) + return } handleCreateError(ctx, err, "MigratePost", MIGRATE, &form) @@ -253,11 +253,6 @@ func Action(ctx *middleware.Context) { redirectTo = ctx.Repo.RepoLink } ctx.Redirect(redirectTo) - - return - ctx.JSON(200, map[string]interface{}{ - "ok": true, - }) } func Download(ctx *middleware.Context) { @@ -320,7 +315,7 @@ func Download(ctx *middleware.Context) { return } - archivePath = path.Join(archivePath, base.ShortSha(commit.Id.String())+ext) + archivePath = path.Join(archivePath, base.ShortSha(commit.ID.String())+ext) if !com.IsFile(archivePath) { if err := commit.CreateArchive(archivePath, archiveType); err != nil { ctx.Handle(500, "Download -> CreateArchive "+archivePath, err) @@ -328,5 +323,5 @@ func Download(ctx *middleware.Context) { } } - ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+"-"+base.ShortSha(commit.Id.String())+ext) + ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+"-"+base.ShortSha(commit.ID.String())+ext) } diff --git a/routers/repo/setting.go b/routers/repo/setting.go index 089c939e..2d686cdd 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -80,11 +80,24 @@ func SettingsPost(ctx *middleware.Context, form auth.RepoSettingForm) { repo.Name = newRepoName repo.LowerName = strings.ToLower(newRepoName) - if ctx.Repo.GitRepo.IsBranchExist(form.Branch) { + if ctx.Repo.GitRepo.IsBranchExist(form.Branch) && + repo.DefaultBranch != form.Branch { repo.DefaultBranch = form.Branch + if err := ctx.Repo.GitRepo.SetDefaultBranch(form.Branch); err != nil { + if !git.IsErrUnsupportedVersion(err) { + ctx.Handle(500, "SetDefaultBranch", err) + return + } + } } repo.Description = form.Description repo.Website = form.Website + + // Visibility of forked repository is forced sync with base repository. + if repo.IsFork { + form.Private = repo.BaseRepo.IsPrivate + } + visibilityChanged := repo.IsPrivate != form.Private repo.IsPrivate = form.Private if err := models.UpdateRepository(repo, visibilityChanged); err != nil { @@ -246,9 +259,9 @@ func Webhooks(ctx *middleware.Context) { ctx.Data["BaseLink"] = ctx.Repo.RepoLink ctx.Data["Description"] = ctx.Tr("repo.settings.hooks_desc", "https://github.com/gogits/go-gogs-client/wiki/Repositories---Webhooks") - ws, err := models.GetWebhooksByRepoId(ctx.Repo.Repository.ID) + ws, err := models.GetWebhooksByRepoID(ctx.Repo.Repository.ID) if err != nil { - ctx.Handle(500, "GetWebhooksByRepoId", err) + ctx.Handle(500, "GetWebhooksByRepoID", err) return } ctx.Data["Webhooks"] = ws @@ -671,7 +684,7 @@ func DeployKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) { content, err := models.CheckPublicKeyString(form.Content) if err != nil { - if err == models.ErrKeyUnableVerify { + if models.IsErrKeyUnableVerify(err) { ctx.Flash.Info(ctx.Tr("form.unable_verify_ssh_key")) } else { ctx.Data["HasError"] = true @@ -682,7 +695,8 @@ func DeployKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) { } } - if err = models.AddDeployKey(ctx.Repo.Repository.ID, form.Title, content); err != nil { + key, err := models.AddDeployKey(ctx.Repo.Repository.ID, form.Title, content) + if err != nil { ctx.Data["HasError"] = true switch { case models.IsErrKeyAlreadyExist(err): @@ -698,7 +712,7 @@ func DeployKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) { } log.Trace("Deploy key added: %d", ctx.Repo.Repository.ID) - ctx.Flash.Success(ctx.Tr("repo.settings.add_key_success", form.Title)) + ctx.Flash.Success(ctx.Tr("repo.settings.add_key_success", key.Name)) ctx.Redirect(ctx.Repo.RepoLink + "/settings/keys") } diff --git a/routers/repo/stars.go b/routers/repo/stars.go deleted file mode 100644 index 93854886..00000000 --- a/routers/repo/stars.go +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright 2014 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package repo - -import ( - "github.com/Unknwon/paginater" - - "github.com/gogits/gogs/models" - "github.com/gogits/gogs/modules/base" - "github.com/gogits/gogs/modules/middleware" -) - -const ( - STARS base.TplName = "repo/stars" -) - -func Stars(ctx *middleware.Context) { - ctx.Data["Title"] = ctx.Tr("repos.stars") - - page := ctx.QueryInt("page") - if page <= 0 { - page = 1 - } - - ctx.Data["Page"] = paginater.New(ctx.Repo.Repository.NumStars, models.ItemsPerPage, page, 5) - - stars, err := ctx.Repo.Repository.GetStars(ctx.QueryInt("page")) - - if err != nil { - ctx.Handle(500, "GetStars", err) - return - } - - if (ctx.QueryInt("page")-1)*models.ItemsPerPage > ctx.Repo.Repository.NumStars { - ctx.Handle(404, "ctx.Repo.Repository.NumStars", nil) - return - } - - ctx.Data["Stars"] = stars - - ctx.HTML(200, STARS) -} diff --git a/routers/repo/view.go b/routers/repo/view.go index 2a36db6b..c057140c 100644 --- a/routers/repo/view.go +++ b/routers/repo/view.go @@ -11,19 +11,25 @@ import ( "path/filepath" "strings" + "github.com/Unknwon/paginater" + "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/git" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/middleware" + "github.com/gogits/gogs/modules/template" ) const ( - HOME base.TplName = "repo/home" + HOME base.TplName = "repo/home" + WATCHERS base.TplName = "repo/watchers" + FORKS base.TplName = "repo/forks" ) func Home(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Repo.Repository.Name + ctx.Data["RequireHighlightJS"] = true branchName := ctx.Repo.BranchName userName := ctx.Repo.Owner.Name @@ -31,14 +37,19 @@ func Home(ctx *middleware.Context) { repoLink := ctx.Repo.RepoLink branchLink := ctx.Repo.RepoLink + "/src/" + branchName + treeLink := branchLink rawLink := ctx.Repo.RepoLink + "/raw/" + branchName // Get tree path treename := ctx.Repo.TreeName - if len(treename) > 0 && treename[len(treename)-1] == '/' { - ctx.Redirect(repoLink + "/src/" + branchName + "/" + treename[:len(treename)-1]) - return + if len(treename) > 0 { + if treename[len(treename)-1] == '/' { + ctx.Redirect(repoLink + "/src/" + branchName + "/" + treename[:len(treename)-1]) + return + } + + treeLink += "/" + treename } ctx.Data["IsRepoToolbarSource"] = true @@ -98,9 +109,9 @@ func Home(ctx *middleware.Context) { readmeExist := base.IsMarkdownFile(blob.Name()) || base.IsReadmeFile(blob.Name()) ctx.Data["ReadmeExist"] = readmeExist if readmeExist { - ctx.Data["FileContent"] = string(base.RenderMarkdown(buf, branchLink)) + ctx.Data["FileContent"] = string(base.RenderMarkdown(buf, path.Dir(treeLink))) } else { - if err, content := base.ToUtf8WithErr(buf); err != nil { + if err, content := template.ToUtf8WithErr(buf); err != nil { if err != nil { log.Error(4, "Convert content encoding: %s", err) } @@ -151,7 +162,7 @@ func Home(ctx *middleware.Context) { ctx.Handle(500, "GetCommitOfRelPath", err) return } - files = append(files, []interface{}{te, git.NewSubModuleFile(c, smUrl, te.Id.String())}) + files = append(files, []interface{}{te, git.NewSubModuleFile(c, smUrl, te.ID.String())}) } } ctx.Data["Files"] = files @@ -171,7 +182,7 @@ func Home(ctx *middleware.Context) { ctx.Data["ReadmeInList"] = true ctx.Data["ReadmeExist"] = true if dataRc, err := readmeFile.Data(); err != nil { - ctx.Handle(404, "repo.SinglereadmeFile.LookupBlob", err) + ctx.Handle(404, "repo.SinglereadmeFile.Data", err) return } else { @@ -191,7 +202,7 @@ func Home(ctx *middleware.Context) { buf = append(buf, d...) switch { case base.IsMarkdownFile(readmeFile.Name()): - buf = base.RenderMarkdown(buf, branchLink) + buf = base.RenderMarkdown(buf, treeLink) default: buf = bytes.Replace(buf, []byte("\n"), []byte(`<br>`), -1) } @@ -238,3 +249,53 @@ func Home(ctx *middleware.Context) { ctx.Data["BranchLink"] = branchLink ctx.HTML(200, HOME) } + +func renderItems(ctx *middleware.Context, total int, getter func(page int) ([]*models.User, error)) { + page := ctx.QueryInt("page") + if page <= 0 { + page = 1 + } + pager := paginater.New(total, models.ItemsPerPage, page, 5) + ctx.Data["Page"] = pager + + items, err := getter(pager.Current()) + if err != nil { + ctx.Handle(500, "getter", err) + return + } + ctx.Data["Watchers"] = items + + ctx.HTML(200, WATCHERS) +} + +func Watchers(ctx *middleware.Context) { + ctx.Data["Title"] = ctx.Tr("repo.watchers") + ctx.Data["PageIsWatchers"] = true + renderItems(ctx, ctx.Repo.Repository.NumWatches, ctx.Repo.Repository.GetWatchers) +} + +func Stars(ctx *middleware.Context) { + ctx.Data["Title"] = ctx.Tr("repo.stargazers") + ctx.Data["PageIsStargazers"] = true + renderItems(ctx, ctx.Repo.Repository.NumStars, ctx.Repo.Repository.GetStargazers) +} + +func Forks(ctx *middleware.Context) { + ctx.Data["Title"] = ctx.Tr("repos.forks") + + forks, err := ctx.Repo.Repository.GetForks() + if err != nil { + ctx.Handle(500, "GetForks", err) + return + } + + for _, fork := range forks { + if err = fork.GetOwner(); err != nil { + ctx.Handle(500, "GetOwner", err) + return + } + } + ctx.Data["Forks"] = forks + + ctx.HTML(200, FORKS) +} diff --git a/routers/repo/watchers.go b/routers/repo/watchers.go deleted file mode 100644 index 8626fa23..00000000 --- a/routers/repo/watchers.go +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright 2014 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package repo - -import ( - "github.com/Unknwon/paginater" - - "github.com/gogits/gogs/models" - "github.com/gogits/gogs/modules/base" - "github.com/gogits/gogs/modules/middleware" -) - -const ( - WATCHERS base.TplName = "repo/watchers" -) - -func Watchers(ctx *middleware.Context) { - ctx.Data["Title"] = ctx.Tr("repos.watches") - - page := ctx.QueryInt("page") - if page <= 0 { - page = 1 - } - - ctx.Data["Page"] = paginater.New(ctx.Repo.Repository.NumWatches, models.ItemsPerPage, page, 5) - - watchers, err := ctx.Repo.Repository.GetWatchers(ctx.QueryInt("page")) - - if err != nil { - ctx.Handle(500, "GetWatchers", err) - return - } - - if (ctx.QueryInt("page")-1)*models.ItemsPerPage > ctx.Repo.Repository.NumWatches { - ctx.Handle(404, "ctx.Repo.Repository.NumWatches", nil) - return - } - - ctx.Data["Watchers"] = watchers - - ctx.HTML(200, WATCHERS) -} diff --git a/routers/user/auth.go b/routers/user/auth.go index 54cbf447..24ed3673 100644 --- a/routers/user/auth.go +++ b/routers/user/auth.go @@ -40,8 +40,9 @@ func SignIn(ctx *middleware.Context) { if redirectTo, _ := url.QueryUnescape(ctx.GetCookie("redirect_to")); len(redirectTo) > 0 { ctx.SetCookie("redirect_to", "", -1, setting.AppSubUrl) ctx.Redirect(redirectTo) + } else { + ctx.Redirect(setting.AppSubUrl + "/") } - ctx.Redirect(setting.AppSubUrl + "/") return } @@ -253,7 +254,7 @@ func ActivateEmail(ctx *middleware.Context) { } log.Trace("Email activated: %s", email.Email) - ctx.Flash.Success(ctx.Tr("settings.add_email_successs")) + ctx.Flash.Success(ctx.Tr("settings.add_email_success")) } ctx.Redirect(setting.AppSubUrl + "/user/settings/email") diff --git a/routers/user/home.go b/routers/user/home.go index 581bb063..39ceaed2 100644 --- a/routers/user/home.go +++ b/routers/user/home.go @@ -52,6 +52,37 @@ func getDashboardContextUser(ctx *middleware.Context) *models.User { return ctxUser } +func retrieveFeeds(ctx *middleware.Context, uid, offset int64, isProfile bool) { + actions, err := models.GetFeeds(uid, offset, isProfile) + if err != nil { + ctx.Handle(500, "GetFeeds", err) + return + } + + // Check access of private repositories. + feeds := make([]*models.Action, 0, len(actions)) + unameAvatars := make(map[string]string) + for _, act := range actions { + // Cache results to reduce queries. + _, ok := unameAvatars[act.ActUserName] + if !ok { + u, err := models.GetUserByName(act.ActUserName) + if err != nil { + if models.IsErrUserNotExist(err) { + continue + } + ctx.Handle(500, "GetUserByName", err) + return + } + unameAvatars[act.ActUserName] = u.AvatarLink() + } + + act.ActAvatar = unameAvatars[act.ActUserName] + feeds = append(feeds, act) + } + ctx.Data["Feeds"] = feeds +} + func Dashboard(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("dashboard") ctx.Data["PageIsDashboard"] = true @@ -62,23 +93,21 @@ func Dashboard(ctx *middleware.Context) { return } - // Check context type. if !ctxUser.IsOrganization() { - // Normal user. - ctxUser = ctx.User - collaborates, err := ctx.User.GetAccessibleRepositories() + collaborateRepos, err := ctx.User.GetAccessibleRepositories() if err != nil { ctx.Handle(500, "GetAccessibleRepositories", err) return } - repositories := make([]*models.Repository, 0, len(collaborates)) - for repo := range collaborates { - repositories = append(repositories, repo) + for i := range collaborateRepos { + if err = collaborateRepos[i].GetOwner(); err != nil { + ctx.Handle(500, "GetOwner: "+collaborateRepos[i].Name, err) + return + } } - - ctx.Data["CollaborateCount"] = len(repositories) - ctx.Data["CollaborativeRepos"] = repositories + ctx.Data["CollaborateCount"] = len(collaborateRepos) + ctx.Data["CollaborativeRepos"] = collaborateRepos } repos, err := models.GetRepositories(ctxUser.Id, true) @@ -89,7 +118,7 @@ func Dashboard(ctx *middleware.Context) { ctx.Data["Repos"] = repos // Get mirror repositories. - mirrors := make([]*models.Repository, 0, len(repos)/2) + mirrors := make([]*models.Repository, 0, 5) for _, repo := range repos { if repo.IsMirror { if err = repo.GetMirror(); err != nil { @@ -102,39 +131,10 @@ func Dashboard(ctx *middleware.Context) { ctx.Data["MirrorCount"] = len(mirrors) ctx.Data["Mirrors"] = mirrors - // Get feeds. - actions, err := models.GetFeeds(ctxUser.Id, 0, false) - if err != nil { - ctx.Handle(500, "GetFeeds", err) + retrieveFeeds(ctx, ctx.User.Id, 0, false) + if ctx.Written() { return } - - // Check access of private repositories. - feeds := make([]*models.Action, 0, len(actions)) - for _, act := range actions { - if act.IsPrivate { - // This prevents having to retrieve the repository for each action - repo := &models.Repository{ID: act.RepoID, IsPrivate: true} - if act.RepoUserName != ctx.User.LowerName { - if has, _ := models.HasAccess(ctx.User, repo, models.ACCESS_MODE_READ); !has { - continue - } - } - - } - // FIXME: cache results? - u, err := models.GetUserByName(act.ActUserName) - if err != nil { - if models.IsErrUserNotExist(err) { - continue - } - ctx.Handle(500, "GetUserByName", err) - return - } - act.ActAvatar = u.AvatarLink() - feeds = append(feeds, act) - } - ctx.Data["Feeds"] = feeds ctx.HTML(200, DASHBOARD) } @@ -156,6 +156,7 @@ func Issues(ctx *middleware.Context) { // Organization does not have view type and filter mode. var ( viewType string + sortType = ctx.Query("sort") filterMode = models.FM_ALL assigneeID int64 posterID int64 @@ -248,6 +249,7 @@ func Issues(ctx *middleware.Context) { Page: page, IsClosed: isShowClosed, IsPull: isPullList, + SortType: sortType, }) if err != nil { ctx.Handle(500, "Issues: %v", err) @@ -276,6 +278,7 @@ func Issues(ctx *middleware.Context) { ctx.Data["IssueStats"] = issueStats ctx.Data["ViewType"] = viewType + ctx.Data["SortType"] = sortType ctx.Data["RepoID"] = repoID ctx.Data["IsShowClosed"] = isShowClosed if isShowClosed { @@ -311,6 +314,9 @@ func Profile(ctx *middleware.Context) { if uname == "favicon.ico" { ctx.Redirect(setting.AppSubUrl + "/img/favicon.png") return + } else if strings.HasSuffix(uname, ".png") { + ctx.Error(404) + return } isShowKeys := false @@ -345,39 +351,10 @@ func Profile(ctx *middleware.Context) { ctx.Data["TabName"] = tab switch tab { case "activity": - actions, err := models.GetFeeds(u.Id, 0, false) - if err != nil { - ctx.Handle(500, "GetFeeds", err) + retrieveFeeds(ctx, u.Id, 0, true) + if ctx.Written() { return } - feeds := make([]*models.Action, 0, len(actions)) - for _, act := range actions { - if act.IsPrivate { - if !ctx.IsSigned { - continue - } - // This prevents having to retrieve the repository for each action - repo := &models.Repository{ID: act.RepoID, IsPrivate: true} - if act.RepoUserName != ctx.User.LowerName { - if has, _ := models.HasAccess(ctx.User, repo, models.ACCESS_MODE_READ); !has { - continue - } - } - - } - // FIXME: cache results? - u, err := models.GetUserByName(act.ActUserName) - if err != nil { - if models.IsErrUserNotExist(err) { - continue - } - ctx.Handle(500, "GetUserByName", err) - return - } - act.ActAvatar = u.AvatarLink() - feeds = append(feeds, act) - } - ctx.Data["Feeds"] = feeds default: ctx.Data["Repos"], err = models.GetRepositories(u.Id, ctx.IsSigned && ctx.User.Id == u.Id) if err != nil { diff --git a/routers/user/setting.go b/routers/user/setting.go index 9be567a4..53b7fdf9 100644 --- a/routers/user/setting.go +++ b/routers/user/setting.go @@ -286,7 +286,7 @@ func SettingsSSHKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) { content, err := models.CheckPublicKeyString(form.Content) if err != nil { - if err == models.ErrKeyUnableVerify { + if models.IsErrKeyUnableVerify(err) { ctx.Flash.Info(ctx.Tr("form.unable_verify_ssh_key")) } else { ctx.Flash.Error(ctx.Tr("form.invalid_ssh_key", err.Error())) diff --git a/scripts/init/centos/gogs b/scripts/init/centos/gogs index 5ff6de53..cacf5742 100644 --- a/scripts/init/centos/gogs +++ b/scripts/init/centos/gogs @@ -29,7 +29,8 @@ GOGS_PATH=${GOGS_HOME}/$NAME GOGS_USER=git SERVICENAME="Gogs Go Git Service" LOCKFILE=/var/lock/subsys/gogs -LOGFILE=${GOGS_HOME}/log/gogs.log +LOGPATH=${GOGS_HOME}/log +LOGFILE=${LOGPATH}/gogs.log RETVAL=0 # Read configuration from /etc/sysconfig/gogs to override defaults @@ -37,6 +38,8 @@ RETVAL=0 # Don't do anything if nothing is installed [ -x ${GOGS_PATH} ] || exit 0 +# exit if logpath dir is not created. +[ -x ${LOGPATH} ] || exit 0 DAEMON_OPTS="--check $NAME" diff --git a/scripts/init/freebsd/gogs b/scripts/init/freebsd/gogs index e1d3bdee..42258c40 100644 --- a/scripts/init/freebsd/gogs +++ b/scripts/init/freebsd/gogs @@ -31,7 +31,7 @@ stop_cmd="${name}_stop" gogs_start() { cd ${gogs_directory} export USER=${gogs_user} - export HOME=${gogs_directory} + export HOME=/usr/home/${gogs_user} /usr/sbin/daemon -f -u ${gogs_user} -p ${pidfile} $command } diff --git a/templates/.VERSION b/templates/.VERSION index dbaaca54..4bae7311 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.18.1029 Beta
\ No newline at end of file +0.7.20.1121 Beta
\ No newline at end of file diff --git a/templates/admin/config.tmpl b/templates/admin/config.tmpl index e302efd0..1a4efa8f 100644 --- a/templates/admin/config.tmpl +++ b/templates/admin/config.tmpl @@ -1,213 +1,190 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div id="admin-wrapper"> - <div id="setting-wrapper" class="main-wrapper"> - <div id="admin-setting" class="container clear"> - {{template "admin/nav" .}} - <div class="grid-4-5 left"> - <div class="setting-content"> - {{template "ng/base/alert" .}} - <div id="setting-content"> - <div class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "admin.config.server_config"}}</strong> - </div> - <div class="panel-body"> - <dl class="dl-horizontal admin-dl-horizontal"> - <dt>{{.i18n.Tr "admin.config.app_name"}}</dt> - <dd>{{AppName}}</dd> - <dt>{{.i18n.Tr "admin.config.app_ver"}}</dt> - <dd>{{AppVer}}</dd> - <dt>{{.i18n.Tr "admin.config.app_url"}}</dt> - <dd>{{.AppUrl}}</dd> - <dt>{{.i18n.Tr "admin.config.domain"}}</dt> - <dd>{{.Domain}}</dd> - <dt>{{.i18n.Tr "admin.config.offline_mode"}}</dt> - <dd><i class="fa fa{{if .OfflineMode}}-check{{end}}-square-o"></i></dd> - <dt>{{.i18n.Tr "admin.config.disable_router_log"}}</dt> - <dd><i class="fa fa{{if .DisableRouterLog}}-check{{end}}-square-o"></i></dd> - <hr/> - <dt>{{.i18n.Tr "admin.config.run_user"}}</dt> - <dd>{{.RunUser}}</dd> - <dt>{{.i18n.Tr "admin.config.run_mode"}}</dt> - <dd>{{.RunMode}}</dd> - <hr/> - <dt>{{.i18n.Tr "admin.config.repo_root_path"}}</dt> - <dd>{{.RepoRootPath}}</dd> - <dt>{{.i18n.Tr "admin.config.static_file_root_path"}}</dt> - <dd>{{.StaticRootPath}}</dd> - <dt>{{.i18n.Tr "admin.config.log_file_root_path"}}</dt> - <dd>{{.LogRootPath}}</dd> - <dt>{{.i18n.Tr "admin.config.script_type"}}</dt> - <dd>{{.ScriptType}}</dd> - <dt>{{.i18n.Tr "admin.config.reverse_auth_user"}}</dt> - <dd>{{.ReverseProxyAuthUser}}</dd> - </dl> - </div> - </div> - <br> - <div class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "admin.config.db_config"}}</strong> - </div> - <div class="panel-body"> - <dl class="dl-horizontal admin-dl-horizontal"> - <dt>{{.i18n.Tr "admin.config.db_type"}}</dt> - <dd>{{.DbCfg.Type}}</dd> - <dt>{{.i18n.Tr "admin.config.db_host"}}</dt> - <dd>{{.DbCfg.Host}}</dd> - <dt>{{.i18n.Tr "admin.config.db_name"}}</dt> - <dd>{{.DbCfg.Name}}</dd> - <dt>{{.i18n.Tr "admin.config.db_user"}}</dt> - <dd>{{.DbCfg.User}}</dd> - <dt>{{.i18n.Tr "admin.config.db_ssl_mode"}}</dt> - <dd>{{.DbCfg.SSLMode}} {{.i18n.Tr "admin.config.db_ssl_mode_helper"}}</dd> - <dt>{{.i18n.Tr "admin.config.db_path"}}</dt> - <dd>{{.DbCfg.Path}} {{.i18n.Tr "admin.config.db_path_helper"}}</dd> - </dl> - </div> - </div> - <br> - <div class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "admin.config.service_config"}}</strong> - </div> - <div class="panel-body"> - <dl class="dl-horizontal admin-dl-horizontal"> - <dt>{{.i18n.Tr "admin.config.register_email_confirm"}}</dt> - <dd><i class="fa fa{{if .Service.RegisterEmailConfirm}}-check{{end}}-square-o"></i></dd> - <dt>{{.i18n.Tr "admin.config.disable_register"}}</dt> - <dd><i class="fa fa{{if .Service.DisableRegistration}}-check{{end}}-square-o"></i></dd> - <dt>{{.i18n.Tr "admin.config.show_registration_button"}}</dt> - <dd><i class="fa fa{{if .Service.ShowRegistrationButton}}-check{{end}}-square-o"></i></dd> - <dt>{{.i18n.Tr "admin.config.require_sign_in_view"}}</dt> - <dd><i class="fa fa{{if .Service.RequireSignInView}}-check{{end}}-square-o"></i></dd> - <dt>{{.i18n.Tr "admin.config.enable_cache_avatar"}}</dt> - <dd><i class="fa fa{{if .Service.EnableCacheAvatar}}-check{{end}}-square-o"></i></dd> - <dt>{{.i18n.Tr "admin.config.mail_notify"}}</dt> - <dd><i class="fa fa{{if .Service.EnableNotifyMail}}-check{{end}}-square-o"></i></dd> - <dt>{{.i18n.Tr "admin.config.disable_key_size_check"}}</dt> - <dd><i class="fa fa{{if .Service.DisableMinimumKeySizeCheck}}-check{{end}}-square-o"></i></dd> - <dt>{{.i18n.Tr "admin.config.enable_captcha"}}</dt> - <dd><i class="fa fa{{if .Service.EnableCaptcha}}-check{{end}}-square-o"></i></dd> - <hr/> - <dt>{{.i18n.Tr "admin.config.active_code_lives"}}</dt> - <dd>{{.Service.ActiveCodeLives}} {{.i18n.Tr "tool.raw_minutes"}}</dd> - <dt>{{.i18n.Tr "admin.config.reset_password_code_lives"}}</dt> - <dd>{{.Service.ResetPwdCodeLives}} {{.i18n.Tr "tool.raw_minutes"}}</dd> - </dl> - </div> - </div> - <br> - <div class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "admin.config.webhook_config"}}</strong> - </div> - <div class="panel-body"> - <dl class="dl-horizontal admin-dl-horizontal"> - <dt>{{.i18n.Tr "admin.config.queue_length"}}</dt> - <dd>{{.Webhook.QueueLength}}</dd> - <dt>{{.i18n.Tr "admin.config.deliver_timeout"}}</dt> - <dd>{{.Webhook.DeliverTimeout}} {{.i18n.Tr "tool.raw_seconds"}}</dd> - <dt>{{.i18n.Tr "admin.config.skip_tls_verify"}}</dt> - <dd><i class="fa fa{{if .Webhook.SkipTLSVerify}}-check{{end}}-square-o"></i></dd> - </dl> - </div> - </div> - <br> - <div class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "admin.config.mailer_config"}}</strong> - </div> - <div class="panel-body"> - <dl class="dl-horizontal admin-dl-horizontal"> - <dt>{{.i18n.Tr "admin.config.mailer_enabled"}}</dt> - <dd><i class="fa fa{{if .MailerEnabled}}-check{{end}}-square-o"></i></dd> - {{if .MailerEnabled}}<dt>{{.i18n.Tr "admin.config.mailer_name"}}</dt> - <dd>{{.Mailer.Name}}</dd> - <dt>{{.i18n.Tr "admin.config.mailer_disable_helo"}}</dt> - <dd><i class="fa fa{{if .Mailer.DisableHelo}}-check{{end}}-square-o"></i></dd> - <dt>{{.i18n.Tr "admin.config.mailer_host"}}</dt> - <dd>{{.Mailer.Host}}</dd> - <dt>{{.i18n.Tr "admin.config.mailer_user"}}</dt> - <dd>{{.Mailer.User}}</dd>{{end}} - </dl> - </div> - </div> - <br> - <div class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "admin.config.cache_config"}}</strong> - </div> - <div class="panel-body"> - <dl class="dl-horizontal admin-dl-horizontal"> - <dt>{{.i18n.Tr "admin.config.cache_adapter"}}</dt> - <dd>{{.CacheAdapter}}</dd> - <dt>{{.i18n.Tr "admin.config.cache_interval"}}</dt> - <dd>{{.CacheInternal}} {{.i18n.Tr "tool.raw_seconds"}}</dd> - <dt>{{.i18n.Tr "admin.config.cache_conn"}}</dt> - <dd><pre>{{.CacheConn}}</pre></dd> - </dl> - </div> - </div> - <br> - <div class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "admin.config.session_config"}}</strong> - </div> - <div class="panel-body"> - <dl class="dl-horizontal admin-dl-horizontal"> - <dt>{{.i18n.Tr "admin.config.session_provider"}}</dt> - <dd>{{.SessionConfig.Provider}}</dd> - <dt>{{.i18n.Tr "admin.config.provider_config"}}</dt> - <dd><pre>{{.SessionConfig.ProviderConfig}}</pre></dd> - <dt>{{.i18n.Tr "admin.config.cookie_name"}}</dt> - <dd>{{.SessionConfig.CookieName}}</dd> - <dt>{{.i18n.Tr "admin.config.gc_interval_time"}}</dt> - <dd>{{.SessionConfig.Gclifetime}} {{.i18n.Tr "tool.raw_seconds"}}</dd> - <dt>{{.i18n.Tr "admin.config.session_life_time"}}</dt> - <dd>{{.SessionConfig.Maxlifetime}} {{.i18n.Tr "tool.raw_seconds"}}</dd> - <dt>{{.i18n.Tr "admin.config.https_only"}}</dt> - <dd><i class="fa fa{{if .SessionConfig.Secure}}-check{{end}}-square-o"></i></dd> - <dt>{{.i18n.Tr "admin.config.cookie_life_time"}}</dt> - <dd>{{.SessionConfig.CookieLifeTime}} {{.i18n.Tr "tool.raw_seconds"}}</dd> - </dl> - </div> - </div> - <br> - <div class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "admin.config.picture_config"}}</strong> - </div> - <div class="panel-body"> - <dl class="dl-horizontal admin-dl-horizontal"> - <dt>{{.i18n.Tr "admin.config.picture_service"}}</dt> - <dd>{{.PictureService}}</dd> - <dt>{{.i18n.Tr "admin.config.disable_gravatar"}}</dt> - <dd><i class="fa fa{{if .DisableGravatar}}-check{{end}}-square-o"></i></dd> - </dl> - </div> - </div> - <br> - <div class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "admin.config.log_config"}}</strong> - </div> - <div class="panel-body"> - <dl class="dl-horizontal admin-dl-horizontal"> - {{range .Loggers}} - <dt>{{$.i18n.Tr "admin.config.log_mode"}}</dt> - <dd>{{.Mode}}</dd> - <dt>{{$.i18n.Tr "admin.config.log_config"}}</dt> - <dd><pre>{{.Config}}</pre></dd> - {{end}} - </dl> - </div> - </div> - </div> - </div> - </div> - </div> +{{template "base/head" .}} +<div class="admin monitor"> + <div class="ui container"> + <div class="ui grid"> + {{template "admin/navbar" .}} + <div class="twelve wide column content"> + {{template "base/alert" .}} + <h4 class="ui top attached header"> + {{.i18n.Tr "admin.config.server_config"}} + </h4> + <div class="ui attached table segment"> + <dl class="dl-horizontal admin-dl-horizontal"> + <dt>{{.i18n.Tr "admin.config.app_name"}}</dt> + <dd>{{AppName}}</dd> + <dt>{{.i18n.Tr "admin.config.app_ver"}}</dt> + <dd>{{AppVer}}</dd> + <dt>{{.i18n.Tr "admin.config.app_url"}}</dt> + <dd>{{.AppUrl}}</dd> + <dt>{{.i18n.Tr "admin.config.domain"}}</dt> + <dd>{{.Domain}}</dd> + <dt>{{.i18n.Tr "admin.config.offline_mode"}}</dt> + <dd><i class="fa fa{{if .OfflineMode}}-check{{end}}-square-o"></i></dd> + <dt>{{.i18n.Tr "admin.config.disable_router_log"}}</dt> + <dd><i class="fa fa{{if .DisableRouterLog}}-check{{end}}-square-o"></i></dd> + <div class="ui divider"></div> + <dt>{{.i18n.Tr "admin.config.run_user"}}</dt> + <dd>{{.RunUser}}</dd> + <dt>{{.i18n.Tr "admin.config.run_mode"}}</dt> + <dd>{{.RunMode}}</dd> + <div class="ui divider"></div> + <dt>{{.i18n.Tr "admin.config.repo_root_path"}}</dt> + <dd>{{.RepoRootPath}}</dd> + <dt>{{.i18n.Tr "admin.config.static_file_root_path"}}</dt> + <dd>{{.StaticRootPath}}</dd> + <dt>{{.i18n.Tr "admin.config.log_file_root_path"}}</dt> + <dd>{{.LogRootPath}}</dd> + <dt>{{.i18n.Tr "admin.config.script_type"}}</dt> + <dd>{{.ScriptType}}</dd> + <dt>{{.i18n.Tr "admin.config.reverse_auth_user"}}</dt> + <dd>{{.ReverseProxyAuthUser}}</dd> + </dl> + </div> + + <h4 class="ui top attached header"> + {{.i18n.Tr "admin.config.db_config"}} + </h4> + <div class="ui attached table segment"> + <dl class="dl-horizontal admin-dl-horizontal"> + <dt>{{.i18n.Tr "admin.config.db_type"}}</dt> + <dd>{{.DbCfg.Type}}</dd> + <dt>{{.i18n.Tr "admin.config.db_host"}}</dt> + <dd>{{.DbCfg.Host}}</dd> + <dt>{{.i18n.Tr "admin.config.db_name"}}</dt> + <dd>{{.DbCfg.Name}}</dd> + <dt>{{.i18n.Tr "admin.config.db_user"}}</dt> + <dd>{{.DbCfg.User}}</dd> + <dt>{{.i18n.Tr "admin.config.db_ssl_mode"}}</dt> + <dd>{{.DbCfg.SSLMode}} {{.i18n.Tr "admin.config.db_ssl_mode_helper"}}</dd> + <dt>{{.i18n.Tr "admin.config.db_path"}}</dt> + <dd>{{.DbCfg.Path}} {{.i18n.Tr "admin.config.db_path_helper"}}</dd> + </dl> + </div> + + <h4 class="ui top attached header"> + {{.i18n.Tr "admin.config.service_config"}} + </h4> + <div class="ui attached table segment"> + <dl class="dl-horizontal admin-dl-horizontal"> + <dt>{{.i18n.Tr "admin.config.register_email_confirm"}}</dt> + <dd><i class="fa fa{{if .Service.RegisterEmailConfirm}}-check{{end}}-square-o"></i></dd> + <dt>{{.i18n.Tr "admin.config.disable_register"}}</dt> + <dd><i class="fa fa{{if .Service.DisableRegistration}}-check{{end}}-square-o"></i></dd> + <dt>{{.i18n.Tr "admin.config.show_registration_button"}}</dt> + <dd><i class="fa fa{{if .Service.ShowRegistrationButton}}-check{{end}}-square-o"></i></dd> + <dt>{{.i18n.Tr "admin.config.require_sign_in_view"}}</dt> + <dd><i class="fa fa{{if .Service.RequireSignInView}}-check{{end}}-square-o"></i></dd> + <dt>{{.i18n.Tr "admin.config.enable_cache_avatar"}}</dt> + <dd><i class="fa fa{{if .Service.EnableCacheAvatar}}-check{{end}}-square-o"></i></dd> + <dt>{{.i18n.Tr "admin.config.mail_notify"}}</dt> + <dd><i class="fa fa{{if .Service.EnableNotifyMail}}-check{{end}}-square-o"></i></dd> + <dt>{{.i18n.Tr "admin.config.disable_key_size_check"}}</dt> + <dd><i class="fa fa{{if .Service.DisableMinimumKeySizeCheck}}-check{{end}}-square-o"></i></dd> + <dt>{{.i18n.Tr "admin.config.enable_captcha"}}</dt> + <dd><i class="fa fa{{if .Service.EnableCaptcha}}-check{{end}}-square-o"></i></dd> + <div class="ui divider"></div> + <dt>{{.i18n.Tr "admin.config.active_code_lives"}}</dt> + <dd>{{.Service.ActiveCodeLives}} {{.i18n.Tr "tool.raw_minutes"}}</dd> + <dt>{{.i18n.Tr "admin.config.reset_password_code_lives"}}</dt> + <dd>{{.Service.ResetPwdCodeLives}} {{.i18n.Tr "tool.raw_minutes"}}</dd> + </dl> + </div> + + <h4 class="ui top attached header"> + {{.i18n.Tr "admin.config.webhook_config"}} + </h4> + <div class="ui attached table segment"> + <dl class="dl-horizontal admin-dl-horizontal"> + <dt>{{.i18n.Tr "admin.config.queue_length"}}</dt> + <dd>{{.Webhook.QueueLength}}</dd> + <dt>{{.i18n.Tr "admin.config.deliver_timeout"}}</dt> + <dd>{{.Webhook.DeliverTimeout}} {{.i18n.Tr "tool.raw_seconds"}}</dd> + <dt>{{.i18n.Tr "admin.config.skip_tls_verify"}}</dt> + <dd><i class="fa fa{{if .Webhook.SkipTLSVerify}}-check{{end}}-square-o"></i></dd> + </dl> + </div> + + <h4 class="ui top attached header"> + {{.i18n.Tr "admin.config.mailer_config"}} + </h4> + <div class="ui attached table segment"> + <dl class="dl-horizontal admin-dl-horizontal"> + <dt>{{.i18n.Tr "admin.config.mailer_enabled"}}</dt> + <dd><i class="fa fa{{if .MailerEnabled}}-check{{end}}-square-o"></i></dd> + {{if .MailerEnabled}}<dt>{{.i18n.Tr "admin.config.mailer_name"}}</dt> + <dd>{{.Mailer.Name}}</dd> + <dt>{{.i18n.Tr "admin.config.mailer_disable_helo"}}</dt> + <dd><i class="fa fa{{if .Mailer.DisableHelo}}-check{{end}}-square-o"></i></dd> + <dt>{{.i18n.Tr "admin.config.mailer_host"}}</dt> + <dd>{{.Mailer.Host}}</dd> + <dt>{{.i18n.Tr "admin.config.mailer_user"}}</dt> + <dd>{{.Mailer.User}}</dd>{{end}} + </dl> + </div> + + <h4 class="ui top attached header"> + {{.i18n.Tr "admin.config.cache_config"}} + </h4> + <div class="ui attached table segment"> + <dl class="dl-horizontal admin-dl-horizontal"> + <dt>{{.i18n.Tr "admin.config.cache_adapter"}}</dt> + <dd>{{.CacheAdapter}}</dd> + <dt>{{.i18n.Tr "admin.config.cache_interval"}}</dt> + <dd>{{.CacheInternal}} {{.i18n.Tr "tool.raw_seconds"}}</dd> + <dt>{{.i18n.Tr "admin.config.cache_conn"}}</dt> + <dd><pre>{{.CacheConn}}</pre></dd> + </dl> + </div> + + <h4 class="ui top attached header"> + {{.i18n.Tr "admin.config.session_config"}} + </h4> + <div class="ui attached table segment"> + <dl class="dl-horizontal admin-dl-horizontal"> + <dt>{{.i18n.Tr "admin.config.session_provider"}}</dt> + <dd>{{.SessionConfig.Provider}}</dd> + <dt>{{.i18n.Tr "admin.config.provider_config"}}</dt> + <dd><pre>{{.SessionConfig.ProviderConfig}}</pre></dd> + <dt>{{.i18n.Tr "admin.config.cookie_name"}}</dt> + <dd>{{.SessionConfig.CookieName}}</dd> + <dt>{{.i18n.Tr "admin.config.gc_interval_time"}}</dt> + <dd>{{.SessionConfig.Gclifetime}} {{.i18n.Tr "tool.raw_seconds"}}</dd> + <dt>{{.i18n.Tr "admin.config.session_life_time"}}</dt> + <dd>{{.SessionConfig.Maxlifetime}} {{.i18n.Tr "tool.raw_seconds"}}</dd> + <dt>{{.i18n.Tr "admin.config.https_only"}}</dt> + <dd><i class="fa fa{{if .SessionConfig.Secure}}-check{{end}}-square-o"></i></dd> + <dt>{{.i18n.Tr "admin.config.cookie_life_time"}}</dt> + <dd>{{.SessionConfig.CookieLifeTime}} {{.i18n.Tr "tool.raw_seconds"}}</dd> + </dl> + </div> + + <h4 class="ui top attached header"> + {{.i18n.Tr "admin.config.picture_config"}} + </h4> + <div class="ui attached table segment"> + <dl class="dl-horizontal admin-dl-horizontal"> + <dt>{{.i18n.Tr "admin.config.picture_service"}}</dt> + <dd>{{.PictureService}}</dd> + <dt>{{.i18n.Tr "admin.config.disable_gravatar"}}</dt> + <dd><i class="fa fa{{if .DisableGravatar}}-check{{end}}-square-o"></i></dd> + </dl> + </div> + + <h4 class="ui top attached header"> + {{.i18n.Tr "admin.config.log_config"}} + </h4> + <div class="ui attached table segment"> + <dl class="dl-horizontal admin-dl-horizontal"> + {{range .Loggers}} + <dt>{{$.i18n.Tr "admin.config.log_mode"}}</dt> + <dd>{{.Mode}}</dd> + <dt>{{$.i18n.Tr "admin.config.log_config"}}</dt> + <dd><pre>{{.Config}}</pre></dd> + {{end}} + </dl> + </div> + </div> </div> + </div> </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/admin/dashboard.tmpl b/templates/admin/dashboard.tmpl index 847f4880..769375ec 100644 --- a/templates/admin/dashboard.tmpl +++ b/templates/admin/dashboard.tmpl @@ -1,157 +1,121 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div id="admin-wrapper"> - <div id="setting-wrapper" class="main-wrapper"> - <div id="repo-setting" class="container clear"> - {{template "admin/nav" .}} - <div class="grid-4-5 left"> - <div class="setting-content"> - {{template "ng/base/alert" .}} - <div id="setting-content"> - <div class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "admin.dashboard.statistic"}}</strong> - </div> - <div class="panel-body"> - <p class="admin-desc"> - {{.i18n.Tr "admin.dashboard.statistic_info" .Stats.Counter.User .Stats.Counter.Org .Stats.Counter.PublicKey .Stats.Counter.Repo .Stats.Counter.Watch .Stats.Counter.Star .Stats.Counter.Action .Stats.Counter.Access .Stats.Counter.Issue .Stats.Counter.Comment .Stats.Counter.Oauth .Stats.Counter.Follow .Stats.Counter.Mirror .Stats.Counter.Release .Stats.Counter.LoginSource .Stats.Counter.Webhook .Stats.Counter.Milestone .Stats.Counter.Label .Stats.Counter.HookTask .Stats.Counter.Team .Stats.Counter.UpdateTask .Stats.Counter.Attachment | Str2html}} - </div> - </div> - <br> - <div class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "admin.dashboard.operations"}}</strong> - </div> - <div class="panel-body admin-panel"> - <div class="admin-table"> - <table class="table"> - <tbody> - <tr> - <td>{{.i18n.Tr "admin.dashboard.delete_inactivate_accounts"}}</td> - <td><i class="fa fa-caret-square-o-right"></i> <a href="{{AppSubUrl}}/admin?op=1">{{.i18n.Tr "admin.dashboard.operation_run"}}</a></td> - </tr> - <tr> - <td>{{.i18n.Tr "admin.dashboard.delete_repo_archives"}}</td> - <td><i class="fa fa-caret-square-o-right"></i> <a href="{{AppSubUrl}}/admin?op=2">{{.i18n.Tr "admin.dashboard.operation_run"}}</a></td> - </tr> - <tr> - <td>{{.i18n.Tr "admin.dashboard.git_gc_repos"}}</td> - <td><i class="fa fa-caret-square-o-right"></i> <a href="{{AppSubUrl}}/admin?op=3">{{.i18n.Tr "admin.dashboard.operation_run"}}</a></td> - </tr> - <tr> - <td>{{.i18n.Tr "admin.dashboard.resync_all_sshkeys"}}</td> - <td><i class="fa fa-caret-square-o-right"></i> <a href="{{AppSubUrl}}/admin?op=4">{{.i18n.Tr "admin.dashboard.operation_run"}}</a></td> - </tr> - <tr> - <td>{{.i18n.Tr "admin.dashboard.resync_all_update_hooks"}}</td> - <td><i class="fa fa-caret-square-o-right"></i> <a href="{{AppSubUrl}}/admin?op=5">{{.i18n.Tr "admin.dashboard.operation_run"}}</a></td> - </tr> - </tbody> - </table> - </div> - </div> - </div> - <br> - <div class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "admin.dashboard.system_status"}}</strong> - </div> - <div class="panel-body"> - <dl class="dl-horizontal admin-dl-horizontal"> - <dt>{{.i18n.Tr "admin.dashboard.server_uptime"}}</dt> - <dd>{{.SysStatus.Uptime}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.current_goroutine"}}</dt> - <dd>{{.SysStatus.NumGoroutine}}</dd> - - <hr/> - <dt>{{.i18n.Tr "admin.dashboard.current_memory_usage"}}</dt> - <dd>{{.SysStatus.MemAllocated}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.total_memory_allocated"}}</dt> - <dd>{{.SysStatus.MemTotal}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.memory_obtained"}}</dt> - <dd>{{.SysStatus.MemSys}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.pointer_lookup_times"}}</dt> - <dd>{{.SysStatus.Lookups}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.memory_allocate_times"}}</dt> - <dd>{{.SysStatus.MemMallocs}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.memory_free_times"}}</dt> - <dd>{{.SysStatus.MemFrees}}</dd> - - <hr/> - <dt>{{.i18n.Tr "admin.dashboard.current_heap_usage"}}</dt> - <dd>{{.SysStatus.HeapAlloc}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.heap_memory_obtained"}}</dt> - <dd>{{.SysStatus.HeapSys}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.heap_memory_idle"}}</dt> - <dd>{{.SysStatus.HeapIdle}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.heap_memory_in_use"}}</dt> - <dd>{{.SysStatus.HeapInuse}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.heap_memory_released"}}</dt> - <dd>{{.SysStatus.HeapReleased}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.heap_objects"}}</dt> - <dd>{{.SysStatus.HeapObjects}}</dd> - - <hr/> - <dt>{{.i18n.Tr "admin.dashboard.bootstrap_stack_usage"}}</dt> - <dd>{{.SysStatus.StackInuse}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.stack_memory_obtained"}}</dt> - <dd>{{.SysStatus.StackSys}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.mspan_structures_usage"}}</dt> - <dd>{{.SysStatus.MSpanInuse}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.mspan_structures_obtained"}}</dt> - <dd>{{.SysStatus.HeapSys}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.mcache_structures_usage"}}</dt> - <dd>{{.SysStatus.MCacheInuse}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.mcache_structures_obtained"}}</dt> - <dd>{{.SysStatus.MCacheSys}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.profiling_bucket_hash_table_obtained"}}</dt> - <dd>{{.SysStatus.BuckHashSys}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.gc_metadata_obtained"}}</dt> - <dd>{{.SysStatus.GCSys}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.other_system_allocation_obtained"}}</dt> - <dd>{{.SysStatus.OtherSys}}</dd> - - <hr> - <dt>{{.i18n.Tr "admin.dashboard.next_gc_recycle"}}</dt> - <dd>{{.SysStatus.NextGC}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.last_gc_time"}}</dt> - <dd>{{.SysStatus.LastGC}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.total_gc_pause"}}</dt> - <dd>{{.SysStatus.PauseTotalNs}}</dd> - - <dt>{{.i18n.Tr "admin.dashboard.last_gc_pause"}}</dt> - <dd>{{.SysStatus.PauseNs}}</dd> +{{template "base/head" .}} +<div class="admin dashboard"> + <div class="ui container"> + <div class="ui grid"> + {{template "admin/navbar" .}} + <div class="twelve wide column content"> + {{template "base/alert" .}} + <h4 class="ui top attached header"> + {{.i18n.Tr "admin.dashboard.statistic"}} + </h4> + <div class="ui attached segment"> + <p> + {{.i18n.Tr "admin.dashboard.statistic_info" .Stats.Counter.User .Stats.Counter.Org .Stats.Counter.PublicKey .Stats.Counter.Repo .Stats.Counter.Watch .Stats.Counter.Star .Stats.Counter.Action .Stats.Counter.Access .Stats.Counter.Issue .Stats.Counter.Comment .Stats.Counter.Oauth .Stats.Counter.Follow .Stats.Counter.Mirror .Stats.Counter.Release .Stats.Counter.LoginSource .Stats.Counter.Webhook .Stats.Counter.Milestone .Stats.Counter.Label .Stats.Counter.HookTask .Stats.Counter.Team .Stats.Counter.UpdateTask .Stats.Counter.Attachment | Str2html}} + </p> + </div> + <h4 class="ui top attached header"> + {{.i18n.Tr "admin.dashboard.operations"}} + </h4> + <div class="ui attached table segment"> + <table class="ui very basic table"> + <tbody> + <tr> + <td>{{.i18n.Tr "admin.dashboard.delete_inactivate_accounts"}}</td> + <td><i class="fa fa-caret-square-o-right"></i> <a href="{{AppSubUrl}}/admin?op=1">{{.i18n.Tr "admin.dashboard.operation_run"}}</a></td> + </tr> + <tr> + <td>{{.i18n.Tr "admin.dashboard.delete_repo_archives"}}</td> + <td><i class="fa fa-caret-square-o-right"></i> <a href="{{AppSubUrl}}/admin?op=2">{{.i18n.Tr "admin.dashboard.operation_run"}}</a></td> + </tr> + <tr> + <td>{{.i18n.Tr "admin.dashboard.delete_missing_repos"}}</td> + <td><i class="fa fa-caret-square-o-right"></i> <a href="{{AppSubUrl}}/admin?op=3">{{.i18n.Tr "admin.dashboard.operation_run"}}</a></td> + </tr> + <tr> + <td>{{.i18n.Tr "admin.dashboard.git_gc_repos"}}</td> + <td><i class="fa fa-caret-square-o-right"></i> <a href="{{AppSubUrl}}/admin?op=4">{{.i18n.Tr "admin.dashboard.operation_run"}}</a></td> + </tr> + <tr> + <td>{{.i18n.Tr "admin.dashboard.resync_all_sshkeys"}}</td> + <td><i class="fa fa-caret-square-o-right"></i> <a href="{{AppSubUrl}}/admin?op=5">{{.i18n.Tr "admin.dashboard.operation_run"}}</a></td> + </tr> + <tr> + <td>{{.i18n.Tr "admin.dashboard.resync_all_update_hooks"}}</td> + <td><i class="fa fa-caret-square-o-right"></i> <a href="{{AppSubUrl}}/admin?op=6">{{.i18n.Tr "admin.dashboard.operation_run"}}</a></td> + </tr> + </tbody> + </table> + </div> - <dt>{{.i18n.Tr "admin.dashboard.gc_times"}}</dt> - <dd>{{.SysStatus.NumGC}}</dd> - </dl> - </div> - </div> - </div> - </div> - </div> + <h4 class="ui top attached header"> + {{.i18n.Tr "admin.dashboard.system_status"}} + </h4> + <div class="ui attached table segment"> + <dl class="dl-horizontal admin-dl-horizontal"> + <dt>{{.i18n.Tr "admin.dashboard.server_uptime"}}</dt> + <dd>{{.SysStatus.Uptime}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.current_goroutine"}}</dt> + <dd>{{.SysStatus.NumGoroutine}}</dd> + <div class="ui divider"></div> + <dt>{{.i18n.Tr "admin.dashboard.current_memory_usage"}}</dt> + <dd>{{.SysStatus.MemAllocated}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.total_memory_allocated"}}</dt> + <dd>{{.SysStatus.MemTotal}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.memory_obtained"}}</dt> + <dd>{{.SysStatus.MemSys}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.pointer_lookup_times"}}</dt> + <dd>{{.SysStatus.Lookups}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.memory_allocate_times"}}</dt> + <dd>{{.SysStatus.MemMallocs}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.memory_free_times"}}</dt> + <dd>{{.SysStatus.MemFrees}}</dd> + <div class="ui divider"></div> + <dt>{{.i18n.Tr "admin.dashboard.current_heap_usage"}}</dt> + <dd>{{.SysStatus.HeapAlloc}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.heap_memory_obtained"}}</dt> + <dd>{{.SysStatus.HeapSys}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.heap_memory_idle"}}</dt> + <dd>{{.SysStatus.HeapIdle}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.heap_memory_in_use"}}</dt> + <dd>{{.SysStatus.HeapInuse}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.heap_memory_released"}}</dt> + <dd>{{.SysStatus.HeapReleased}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.heap_objects"}}</dt> + <dd>{{.SysStatus.HeapObjects}}</dd> + <div class="ui divider"></div> + <dt>{{.i18n.Tr "admin.dashboard.bootstrap_stack_usage"}}</dt> + <dd>{{.SysStatus.StackInuse}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.stack_memory_obtained"}}</dt> + <dd>{{.SysStatus.StackSys}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.mspan_structures_usage"}}</dt> + <dd>{{.SysStatus.MSpanInuse}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.mspan_structures_obtained"}}</dt> + <dd>{{.SysStatus.HeapSys}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.mcache_structures_usage"}}</dt> + <dd>{{.SysStatus.MCacheInuse}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.mcache_structures_obtained"}}</dt> + <dd>{{.SysStatus.MCacheSys}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.profiling_bucket_hash_table_obtained"}}</dt> + <dd>{{.SysStatus.BuckHashSys}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.gc_metadata_obtained"}}</dt> + <dd>{{.SysStatus.GCSys}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.other_system_allocation_obtained"}}</dt> + <dd>{{.SysStatus.OtherSys}}</dd> + <div class="ui divider"></div> + <dt>{{.i18n.Tr "admin.dashboard.next_gc_recycle"}}</dt> + <dd>{{.SysStatus.NextGC}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.last_gc_time"}}</dt> + <dd>{{.SysStatus.LastGC}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.total_gc_pause"}}</dt> + <dd>{{.SysStatus.PauseTotalNs}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.last_gc_pause"}}</dt> + <dd>{{.SysStatus.PauseNs}}</dd> + <dt>{{.i18n.Tr "admin.dashboard.gc_times"}}</dt> + <dd>{{.SysStatus.NumGC}}</dd> + </dl> </div> + </div> </div> + </div> </div> -{{template "ng/base/footer" .}} +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/admin/org/list.tmpl b/templates/admin/org/list.tmpl index 4070b46e..bc4610b6 100644 --- a/templates/admin/org/list.tmpl +++ b/templates/admin/org/list.tmpl @@ -24,7 +24,7 @@ {{range .Orgs}} <tr> <td>{{.Id}}</td> - <td><a href="{{AppSubUrl}}/org/{{.Name}}">{{.Name}}</a></td> + <td><a href="{{.HomeLink}}">{{.Name}}</a></td> <td>{{.NumTeams}}</td> <td>{{.NumMembers}}</td> <td>{{.NumRepos}}</td> diff --git a/templates/admin/user/edit.tmpl b/templates/admin/user/edit.tmpl index d4e83d6f..6f30f05c 100644 --- a/templates/admin/user/edit.tmpl +++ b/templates/admin/user/edit.tmpl @@ -72,7 +72,13 @@ <div class="inline field"> <div class="ui checkbox"> <label><strong>{{.i18n.Tr "admin.users.allow_git_hook"}}</strong></label> - <input name="allow_git_hook" type="checkbox" {{if or .User.IsAdmin .User.AllowGitHook}}checked{{end}}> + <input name="allow_git_hook" type="checkbox" {{if .User.CanEditGitHook}}checked{{end}}> + </div> + </div> + <div class="inline field"> + <div class="ui checkbox"> + <label><strong>{{.i18n.Tr "admin.users.allow_import_local"}}</strong></label> + <input name="allow_import_local" type="checkbox" {{if .User.CanImportLocal}}checked{{end}}> </div> </div> diff --git a/templates/base/footer.tmpl b/templates/base/footer.tmpl index 31941b75..a48c11d8 100644 --- a/templates/base/footer.tmpl +++ b/templates/base/footer.tmpl @@ -2,7 +2,7 @@ <footer> <div class="ui container"> <div class="ui left"> - © 2015 Gogs {{.i18n.Tr "version"}}: {{AppVer}} {{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> {{.i18n.Tr "template"}}: <strong>{{call .TmplLoadTimes}}</strong> + © 2015 Gogs {{if (or .ShowFooterVersion .PageIsAdmin)}}{{.i18n.Tr "version"}}: {{AppVer}}{{end}} {{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> {{.i18n.Tr "template"}}: <strong>{{call .TmplLoadTimes}}</strong> </div> <div class="ui right links"> {{if .ShowFooterBranding}} @@ -20,7 +20,7 @@ </div> </div> <a target="_blank" href="http://gogs.io">{{.i18n.Tr "website"}}</a> - <span class="version">{{GoVer}}</span> + {{if (or .ShowFooterVersion .PageIsAdmin)}}<span class="version">{{GoVer}}</span>{{end}} </div> </div> </footer> @@ -28,8 +28,8 @@ <!-- Third-party libraries --> {{if .RequireHighlightJS}} - <link rel="stylesheet" href="{{AppSubUrl}}/css/highlight-8.7/default.css"> - <script src="{{AppSubUrl}}/js/libs/highlight-8.7.pack.js"></script> + <link rel="stylesheet" href="{{AppSubUrl}}/css/highlight-8.9.1/github.css"> + <script src="{{AppSubUrl}}/js/libs/highlight-8.9.1.pack.js"></script> {{end}} {{if .RequireMinicolors}} <link rel="stylesheet" href="{{AppSubUrl}}/css/jquery.minicolors-2.1.12.css"> @@ -40,10 +40,10 @@ <script src="{{AppSubUrl}}/js/libs/jquery.datetimepicker-2.4.5.js"></script> {{end}} {{if .RequireDropzone}} - <link rel="stylesheet" href="{{AppSubUrl}}/css/dropzone-4.0.1.css"> - <script src="{{AppSubUrl}}/js/libs/dropzone-4.0.1.js"></script> + <link rel="stylesheet" href="{{AppSubUrl}}/css/dropzone-4.2.0.css"> + <script src="{{AppSubUrl}}/js/libs/dropzone-4.2.0.js"></script> {{end}} <script src="{{AppSubUrl}}/js/libs/emojify-1.1.0.min.js"></script> - <script src="{{AppSubUrl}}/js/libs/clipboard-1.3.1.min.js"></script> + <script src="{{AppSubUrl}}/js/libs/clipboard-1.5.5.min.js"></script> -</html>
\ No newline at end of file +</html> diff --git a/templates/base/head.tmpl b/templates/base/head.tmpl index 323079f7..171e6fde 100644 --- a/templates/base/head.tmpl +++ b/templates/base/head.tmpl @@ -11,6 +11,7 @@ <meta name="_suburl" content="{{AppSubUrl}}" /> {{if .GoGetImport}} <meta name="go-import" content="{{.GoGetImport}} git {{.CloneLink.HTTPS}}"> + <meta name="go-source" content="{{.GoGetImport}} _ {{.GoDocDirectory}} {{.GoDocFile}}"> {{end}} <link rel="shortcut icon" href="{{AppSubUrl}}/img/favicon.png" /> @@ -19,11 +20,11 @@ <link rel="stylesheet" href="{{AppSubUrl}}/css/font-awesome-4.4.0.min.css"> <!-- Stylesheet --> - <link rel="stylesheet" href="{{AppSubUrl}}/css/semantic-2.1.3.min.css"> + <link rel="stylesheet" href="{{AppSubUrl}}/css/semantic-2.1.6.min.css"> <link rel="stylesheet" href="{{AppSubUrl}}/css/gogs.css?v={{AppVer}}"> <!-- JavaScript --> - <script src="{{AppSubUrl}}/js/semantic-2.1.3.min.js"></script> + <script src="{{AppSubUrl}}/js/semantic-2.1.6.min.js"></script> <script src="{{AppSubUrl}}/js/gogs.js?v={{AppVer}}"></script> <title>{{if .Title}}{{.Title}} - {{end}}{{AppName}}</title> diff --git a/templates/explore/repo_list.tmpl b/templates/explore/repo_list.tmpl new file mode 100644 index 00000000..5a459ded --- /dev/null +++ b/templates/explore/repo_list.tmpl @@ -0,0 +1,23 @@ +<div class="ui repository list"> + {{range .Repos}} + <div class="item"> + <div class="ui header"> + <a href="{{AppSubUrl}}/{{if .Owner}}{{.Owner.Name}}{{else if $.Org}}{{$.Org.Name}}{{else}}{{$.Owner.Name}}{{end}}/{{.Name}}">{{if $.PageIsExplore}}{{.Owner.Name}} / {{end}}{{.Name}}</a> + {{if .IsPrivate}} + <span class="text gold"><i class="icon octicon octicon-lock"></i></span> + {{else if .IsFork}} + <span><i class="icon octicon octicon-repo-forked"></i></span> + {{else if .IsMirror}} + <span><i class="icon octicon octicon-repo-clone"></i></span> + {{end}} + + <div class="ui right metas"> + <span class="text grey"><i class="octicon octicon-star"></i> {{.NumStars}}</span> + <span class="text grey"><i class="octicon octicon-git-branch"></i> {{.NumForks}}</span> + </div> + </div> + {{if .Description}}<p>{{.Description}}</p>{{end}} + <p class="time">{{$.i18n.Tr "org.repo_updated"}} {{TimeSince .Updated $.i18n.Lang}}</p> + </div> + {{end}} +</div>
\ No newline at end of file diff --git a/templates/explore/repos.tmpl b/templates/explore/repos.tmpl index 75940e11..1d45a96e 100644 --- a/templates/explore/repos.tmpl +++ b/templates/explore/repos.tmpl @@ -4,22 +4,7 @@ <div class="ui grid"> {{template "explore/navbar" .}} <div class="twelve wide column content"> - <div class="ui repository list"> - {{range $i, $v := .Repos}} - <div class="item"> - <div class="ui header"> - <a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">{{.Owner.Name}} / {{.Name}}</a> - - <div class="ui right metas"> - <span class="text grey"><i class="octicon octicon-star"></i> {{.NumStars}}</span> - <span class="text grey"><i class="octicon octicon-git-branch"></i> {{.NumForks}}</span> - </div> - </div> - {{if .Description}}<p>{{.Description}}</p>{{end}} - <p class="time">{{$.i18n.Tr "org.repo_updated"}} {{TimeSince .Updated $.i18n.Lang}}</p> - </div> - {{end}} - </div> + {{template "explore/repo_list" .}} {{with .Page}} {{if gt .TotalPages 1}} diff --git a/templates/mail/auth/register_notify.tmpl b/templates/mail/auth/register_notify.tmpl index ae9d76b7..5fc450b5 100644 --- a/templates/mail/auth/register_notify.tmpl +++ b/templates/mail/auth/register_notify.tmpl @@ -8,6 +8,7 @@ <body> <p>Hi <b>{{.User.Name}}</b>, this is your registration confirmation email for {{.AppName}}!</p> <p>You can now login via username: {{.User.Name}}.</p> + <p><a href="{{.AppUrl}}user/login">{{.AppUrl}}user/login</a></p> <p>© 2015 <a target="_blank" href="http://gogs.io">Gogs: Go Git Service</a></p> </body> </html> diff --git a/templates/ng/base/alert.tmpl b/templates/ng/base/alert.tmpl deleted file mode 100644 index 4c2976a9..00000000 --- a/templates/ng/base/alert.tmpl +++ /dev/null @@ -1,3 +0,0 @@ -{{if .Flash.ErrorMsg}}<span class="alert alert-red alert-radius block text-bold"><i class="octicon octicon-alert"></i>{{.Flash.ErrorMsg|Str2html}}</span>{{end}} -{{if .Flash.SuccessMsg}}<div class="alert alert-green alert-radius block"><i class="octicon octicon-check"></i>{{.Flash.SuccessMsg|Str2html}}</div>{{end}} -{{if .Flash.InfoMsg}}<div class="alert alert-blue alert-radius block"><i class="octicon octicon-info"></i>{{.Flash.InfoMsg|Str2html}}</div>{{end}}
\ No newline at end of file diff --git a/templates/ng/base/footer.tmpl b/templates/ng/base/footer.tmpl deleted file mode 100644 index bafcc46e..00000000 --- a/templates/ng/base/footer.tmpl +++ /dev/null @@ -1,29 +0,0 @@ - </div> - <footer id="footer"> - <div class="container clear"> - <p class="left" id="footer-rights">© 2015 Gogs · {{.i18n.Tr "version"}}: {{AppVer}} · {{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> · - {{.i18n.Tr "template"}}: <strong>{{call .TmplLoadTimes}}</strong></p> - - <div class="right" id="footer-links"> - {{if .ShowFooterBranding}} - <a target="_blank" href="https://github.com/gogits/gogs"><i class="fa fa-github-square"></i></a> - <a target="_blank" href="https://twitter.com/gogitservice"><i class="fa fa-twitter"></i></a> - <a target="_blank" href="https://plus.google.com/communities/115599856376145964459"><i class="fa fa-google-plus"></i></a> - <a target="_blank" href="http://weibo.com/gogschina"><i class="fa fa-weibo"></i></a> - {{end}} - <div id="footer-lang" class="inline drop drop-top">{{.i18n.Tr "language"}} - <div class="drop-down"> - <ul class="menu menu-vertical switching-list"> - {{range .AllLangs}} - <li><a href="{{if eq $.Lang .Lang}}#{{else}}{{$.Link}}?lang={{.Lang}}{{end}}">{{.Name}}</a></li> - {{end}} - </ul> - </div> - </div> - <a target="_blank" href="http://gogs.io">{{.i18n.Tr "website"}}</a> - <span class="version">{{GoVer}}</span> - </div> - </div> - </footer> - </body> -</html>
\ No newline at end of file diff --git a/templates/ng/base/head.tmpl b/templates/ng/base/head.tmpl deleted file mode 100644 index 2a13036e..00000000 --- a/templates/ng/base/head.tmpl +++ /dev/null @@ -1,42 +0,0 @@ -<!DOCTYPE html> -<html{{if .BrowserSupportsCopy}} class="is-copy-enabled"{{end}}> - <head data-suburl="{{AppSubUrl}}"> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <meta http-equiv="X-UA-Compatible" content="IE=edge"/> - <meta name="author" content="Gogs - Go Git Service" /> - <meta name="description" content="Gogs(Go Git Service) a painless self-hosted Git Service written in Go" /> - <meta name="keywords" content="go, git, self-hosted, gogs"> - <meta name="referrer" content="no-referrer" /> - <meta name="_csrf" content="{{.CsrfToken}}" /> - {{if .GoGetImport}}<meta name="go-import" content="{{.GoGetImport}} git {{.CloneLink.HTTPS}}">{{end}} - - <link rel="shortcut icon" href="{{AppSubUrl}}/img/favicon.png" /> - - - <link rel="stylesheet" href="{{AppSubUrl}}/ng/css/font-awesome.min.css"> - - <script src="{{AppSubUrl}}/ng/js/lib/jquery-1.11.1.min.js"></script> - - <!-- Stylesheet --> - <link rel="stylesheet" href="{{AppSubUrl}}/ng/css/ui.css"> - <link rel="stylesheet" href="{{AppSubUrl}}/ng/css/gogs.css"> - <link rel="stylesheet" href="{{AppSubUrl}}/ng/css/tipsy.css"> - <link rel="stylesheet" href="{{AppSubUrl}}/ng/css/magnific-popup.css"> - <link rel="stylesheet" href="{{AppSubUrl}}/ng/fonts/octicons.css"> - <link rel="stylesheet" href="{{AppSubUrl}}/css/github.min.css"> - - <!-- JavaScript --> - <script src="{{AppSubUrl}}/ng/js/lib/lib.js"></script> - <script src="{{AppSubUrl}}/ng/js/lib/jquery.tipsy.js"></script> - <script src="{{AppSubUrl}}/ng/js/lib/jquery.magnific-popup.min.js"></script> - <script src="{{AppSubUrl}}/js/libs/emojify-1.1.0.min.js"></script> - <script src="{{AppSubUrl}}/ng/js/utils/tabs.js"></script> - <script src="{{AppSubUrl}}/ng/js/utils/preview.js"></script> - <script src="{{AppSubUrl}}/ng/js/gogs/issue_label.js"></script> - <script src="{{AppSubUrl}}/ng/js/gogs.js"></script> - - <title>{{if .Title}}{{.Title}} - {{end}}{{AppName}}</title> - </head> - <body> - <div id="wrapper"> - <noscript>Please enable JavaScript in your browser!</noscript> diff --git a/templates/ng/base/header.tmpl b/templates/ng/base/header.tmpl deleted file mode 100644 index da921836..00000000 --- a/templates/ng/base/header.tmpl +++ /dev/null @@ -1,60 +0,0 @@ -<header id="header"> - <ul class="menu menu-line container" id="header-nav"> - {{if not .PageIsHome}} - <li class="head" id="header-nav-logo"> - <img src="{{AppSubUrl}}/img/favicon.png" alt="avatar" class="avatar-30"/> - </li> - <li {{if .PageIsDashboard}}class="current"{{end}}> - <a href="{{AppSubUrl}}/">{{if .IsSigned}}{{.i18n.Tr "dashboard"}}{{else}}{{.i18n.Tr "home"}}{{end}}</a> - </li> - <li><a href="{{AppSubUrl}}/explore">{{.i18n.Tr "explore"}}</a></li> - <li><a target="_blank" href="http://gogs.io/docs">{{.i18n.Tr "help"}}</a></li> - {{end}} - - {{if .IsSigned}} - <li class="right" id="header-nav-sign-out"> - <a href="{{AppSubUrl}}/user/logout" title="{{.i18n.Tr "sign_out"}}"><i class="octicon octicon-sign-out"></i></a> - </li> - <li class="right {{if .PageIsUserSettings}}current{{end}}"> - <a href="{{AppSubUrl}}/user/settings" title="{{.i18n.Tr "account_settings"}}"><i class="octicon octicon-settings"></i></a> - </li> - {{if .IsAdmin}} - <li class="right {{if .PageIsAdmin}}current{{end}}"> - <a href="{{AppSubUrl}}/admin" title="{{.i18n.Tr "admin_panel"}}"><i class="octicon octicon-circuit-board"></i></a> - </li> - {{end}} - <li class="right down"> - <a href="#"><i class="octicon octicon-plus"></i></a> - <ul class="menu menu-down" id="header-new-repo-menu"> - <li><a href="{{AppSubUrl}}/repo/create"><i class="octicon octicon-repo-create"></i>{{.i18n.Tr "new_repo"}}</a></li> - <li><a href="{{AppSubUrl}}/repo/migrate"><i class="octicon octicon-repo-clone"></i>{{.i18n.Tr "new_migrate"}}</a></li> - <li><a href="{{AppSubUrl}}/org/create"><i class="octicon octicon-organization"></i>{{.i18n.Tr "new_org"}}</a></li> - </ul> - </li> - <li class="right" id="header-nav-user"> - <a href="{{AppSubUrl}}/{{.SignedUser.Name}}" class="text-bold"> - <img src="{{.SignedUser.AvatarLink}}" alt="user-avatar" class="avatar-30"/> - {{.SignedUser.Name}} - </a> - </li> - {{else}} - {{if .PageIsHome}} - <li class="right" id="header-nav-help"> - <a target="_blank" href="http://gogs.io/docs"><i class="octicon octicon-info"></i> {{.i18n.Tr "help"}}</a> - </li> - <li class="right" id="header-nav-explore"> - <a href="{{AppSubUrl}}/explore"><i class="octicon octicon-globe"></i> {{.i18n.Tr "explore"}}</a> - </li> - {{else}} - <li class="right" id="header-nav-sign-in"> - <a href="{{AppSubUrl}}/user/login" title="Sign In"><i class="octicon octicon-sign-in"></i> {{.i18n.Tr "sign_in"}}</a> - </li> - {{if .ShowRegistrationButton}} - <li class="right"> - <a href="{{AppSubUrl}}/user/sign_up" title="Account Settings"><i class="octicon octicon-person-add"></i> {{.i18n.Tr "register"}}</a> - </li> - {{end}} - {{end}} - {{end}} - </ul> -</header>
\ No newline at end of file diff --git a/templates/org/base/header.tmpl b/templates/org/base/header.tmpl deleted file mode 100644 index 1649b920..00000000 --- a/templates/org/base/header.tmpl +++ /dev/null @@ -1,16 +0,0 @@ -<div class="org-header" id="org-header"> - <div class="container"> - <a class="text-black left" href="{{AppSubUrl}}/org/{{.Org.LowerName}}"> - <img class="avatar-48 left" src="{{.Org.AvatarLink}}?s=100"> - <span class="org-name">{{if .Org.FullName}}{{.Org.FullName}}{{else}}{{.Org.Name}}{{end}}</span> - </a> - <ul class="menu menu-line container"> - <li class="right"> - <a {{if .PageIsOrgTeams}}class="current"{{end}} href="{{.OrgLink}}/teams"><i class="octicon octicon-jersey"></i> {{.i18n.Tr "org.teams"}} <span class="label label-gray label-radius">{{.Org.NumTeams}}</span></a> - </li> - <li class="right"> - <a {{if .PageIsOrgMembers}}class="current"{{end}} href="{{.OrgLink}}/members"><i class="octicon octicon-organization"></i> {{.i18n.Tr "org.people"}} <span class="label label-gray label-radius">{{.Org.NumMembers}}</span></a> - </li> - </ul> - </div> -</div>
\ No newline at end of file diff --git a/templates/org/home.tmpl b/templates/org/home.tmpl index 43010636..9f64f302 100644 --- a/templates/org/home.tmpl +++ b/templates/org/home.tmpl @@ -1,93 +1,85 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div class="org-header" id="org-home-header"> - <div class="container clear"> - <img class="avatar-100 left" src="{{.Org.AvatarLink}}?s=140"/> - <div id="org-home-header-info"> - <h2> - {{.Org.FullName}} - {{if .IsOrganizationOwner}}<a class="text-grey" href="{{.OrgLink}}/settings"><span class="octicon octicon-gear"></span></a>{{end}} - </h2> - {{if .Org.Description}}<p>{{.Org.Description}}</p>{{end}} - <ul class="text-grey"> - {{if .Org.Location}}<li><span class="octicon octicon-location"></span> <span>{{.Org.Location}}</span></li>{{end}} - {{if .Org.Website}}<li><span class="octicon octicon-link"></span> <a target="_blank" href="{{.Org.Website}}">{{.Org.Website}}</a></li>{{end}} - {{if and .Org.Email .IsSigned}}<li><span class="octicon octicon-mail"></span> <a href="mailto:{{.Org.Email}}">{{.Org.Email}}</a></li>{{end}} - </ul> - </div> - </div> -</div> -<div class="container"> - {{$isMember := .Org.IsOrgMember $.SignedUser.Id}} - <div id="org-home-repo-list" class="left grid-2-3"> - <div class="clear"> - {{if .IsOrganizationOwner}} - <a class="btn btn-green btn-large btn-link btn-radius right" href="{{AppSubUrl}}/repo/create?org={{.Org.Id}}"><i class="octicon octicon-repo-create"></i> {{.i18n.Tr "new_repo"}}</a> - {{end}} - </div> - <div id="org-repo-list"> - {{range .Repos}} - {{if or (not .IsPrivate) (.HasAccess $.SignedUser)}} - <div class="org-repo-item"> - <ul class="org-repo-status right"> - <li><i class="octicon octicon-star"></i> {{.NumStars}}</li> - <li><i class="octicon octicon-git-branch"></i> {{.NumForks}}</li> - </ul> - <h2><a href="{{AppSubUrl}}/{{$.Org.Name}}/{{.Name}}">{{.Name}}</a></h2> - <p class="org-repo-description">{{.Description}}</p> - <p class="org-repo-updated">{{$.i18n.Tr "org.repo_updated"}} {{TimeSince .Updated $.i18n.Lang}}</p> - </div> - {{end}} - {{end}} +{{template "base/head" .}} +<div class="organization profile"> + <div class="ui container"> + <div class="ui grid"> + <div class="ui sixteen wide column"> + <img class="ui left" id="org-avatar" src="{{.Org.AvatarLink}}?s=140"/> + <div id="org-info"> + <div class="ui header"> + {{.Org.FullName}} + {{if .IsOrganizationOwner}}<a class="text grey" href="{{.OrgLink}}/settings"><span class="icon octicon octicon-gear"></span></a>{{end}} + </div> + {{if .Org.Description}}<p class="desc">{{.Org.Description}}</p>{{end}} + <div class="text grey meta"> + {{if .Org.Location}}<div class="item"><span class="icon octicon octicon-location"></span> <span>{{.Org.Location}}</span></div>{{end}} + {{if .Org.Website}}<div class="item"><span class="icon octicon octicon-link"></span> <a target="_blank" href="{{.Org.Website}}">{{.Org.Website}}</a></div>{{end}} + </div> + </div> + + </div> </div> </div> - <div class="grid-1-3 right"> - <div class="org-sidebar"> - <div class="panel panel-radius"> - <div class="panel-header"> - {{if $isMember}} - <a class="text-grey right" href="{{AppSubUrl}}/org/{{.Org.LowerName}}/members"><strong>{{.Org.NumMembers}}</strong><span class="octicon octicon-chevron-right"></span></a> - {{end}} - <strong>{{.i18n.Tr "org.people"}}</strong> - </div> - <div class="panel-body member-avatar-group"> - {{range .Members}} - {{if or $isMember (.IsPublicMember $.Org.Id)}} - <a href="{{AppSubUrl}}/{{.Name}}" title="{{.Name}}"><img src="{{.AvatarLink}}"></a> - {{end}} - {{end}} - </div> - {{if .IsOrganizationOwner}} - <div class="panel-footer"> - <a class="btn btn-medium btn-blue btn-link btn-radius" href="{{AppSubUrl}}/org/{{.Org.LowerName}}/invitations/new">{{.i18n.Tr "org.invite_someone"}}</a> - </div> - {{end}} - </div> - {{if $isMember}} - <br> - <div class="panel panel-radius"> - <div class="panel-header"> - <a class="text-grey right" href="{{AppSubUrl}}/org/{{.Org.LowerName}}/teams"><strong>{{.Org.NumTeams}}</strong><span class="octicon octicon-chevron-right"></span></a> - <strong>{{.i18n.Tr "org.teams"}}</strong> - </div> - <div class="panel-body" id="org-home-team-list"> - <ul> - {{range .Teams}} - <li> - <a class="text-black" href="{{AppSubUrl}}/org/{{$.Org.LowerName}}/teams/{{.LowerName}}"><strong class="team-name">{{.Name}}</strong></a> - <p class="team-meta">{{.NumMembers}} {{$.i18n.Tr "org.lower_members"}} · {{.NumRepos}} {{$.i18n.Tr "org.lower_repositories"}}</p> - </li> - {{end}} - </ul> - </div> - {{if .IsOrganizationOwner}} - <div class="panel-footer"> - <a class="btn btn-medium btn-blue btn-link btn-radius" href="{{AppSubUrl}}/org/{{$.Org.LowerName}}/teams/new">{{.i18n.Tr "org.create_new_team"}}</a> - </div> - {{end}} - </div> - {{end}} - </div> + + <div class="ui divider"></div> + + <div class="ui container"> + <div class="ui grid"> + {{$isMember := .Org.IsOrgMember $.SignedUser.Id}} + <div class="ui eleven wide column"> + {{if .IsOrganizationOwner}} + <div class="text right"> + <a class="ui green button" href="{{AppSubUrl}}/repo/create?org={{.Org.Id}}"><i class="octicon octicon-repo-create"></i> {{.i18n.Tr "new_repo"}}</a> + </div> + <div class="ui divider"></div> + {{end}} + {{template "explore/repo_list" .}} + </div> + + <div class="ui five wide column"> + <h4 class="ui top attached header"> + <strong>{{.i18n.Tr "org.people"}}</strong> + {{if $isMember}} + <div class="ui right"> + <a class="text grey" href="{{.Org.HomeLink}}/members"><strong>{{.Org.NumMembers}}</strong><span class="octicon octicon-chevron-right"></span></a> + </div> + {{end}} + </h4> + <div class="ui attached segment members"> + {{range .Members}} + {{if or $isMember (.IsPublicMember $.Org.Id)}} + <a href="{{.HomeLink}}" title="{{.Name}}"><img class="ui avatar" src="{{.AvatarLink}}"></a> + {{end}} + {{end}} + </div> + {{if .IsOrganizationOwner}} + <div class="ui bottom attached segment"> + <a class="ui blue small button" href="{{.Org.HomeLink}}/invitations/new">{{.i18n.Tr "org.invite_someone"}}</a> + </div> + {{end}} + + {{if $isMember}} + <div class="ui top attached header"> + <strong>{{.i18n.Tr "org.teams"}}</strong> + <div class="ui right"> + <a class="text grey" href="{{.Org.HomeLink}}/teams"><strong>{{.Org.NumTeams}}</strong><span class="octicon octicon-chevron-right"></span></a> + </div> + </div> + <div class="ui attached table segment teams"> + {{range .Teams}} + <div class="item"> + <a href="{{$.Org.HomeLink}}/teams/{{.LowerName}}"><strong class="team-name">{{.Name}}</strong></a> + <p class="text grey">{{.NumMembers}} {{$.i18n.Tr "org.lower_members"}} · {{.NumRepos}} {{$.i18n.Tr "org.lower_repositories"}}</p> + </div> + {{end}} + </div> + {{if .IsOrganizationOwner}} + <div class="ui bottom attached segment"> + <a class="ui blue small button" href="{{.Org.HomeLink}}/teams/new">{{.i18n.Tr "org.create_new_team"}}</a> + </div> + {{end}} + {{end}} + </div> + </div> </div> </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/org/member/invite.tmpl b/templates/org/member/invite.tmpl index bff1b98b..d412dd30 100644 --- a/templates/org/member/invite.tmpl +++ b/templates/org/member/invite.tmpl @@ -1,18 +1,23 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -{{template "org/base/header" .}} -<div class="container"> - <div class="invite-box" id="invite-box"> - {{template "ng/base/alert" .}} - <h3>{{.i18n.Tr "org.members.invite_desc" .Org.FullName}}</h3> - <form id="invite-member-form" action="{{.OrgLink}}/invitations/new" method="post"> - {{.CsrfTokenHtml}} - <input class="ipt ipt-large ipt-radius" id="org-member-invite" name="uname" autocomplete="off" required> - <button class="btn btn-blue btn-large btn-radius">{{.i18n.Tr "org.members.invite_now"}}</button> - <div id="org-member-list-block"> - <ul class="menu-down-show menu-vertical menu-radius switching-list user-list" id="org-member-invite-list"></ul> - </div> - </form> +{{template "base/head" .}} +<div class="organization invite"> + {{template "org/header" .}} + <div class="ui container"> + <div id="invite-box"> + {{template "base/alert" .}} + <h2>{{.i18n.Tr "org.members.invite_desc" .Org.DisplayName}}</h2> + <form class="ui form" action="{{.Link}}" method="post"> + {{.CsrfTokenHtml}} + <div class="inline field ui left"> + <div id="search-user-box"> + <div class="ui input"> + <input class="prompt" name="uname" placeholder="{{.i18n.Tr "repo.settings.search_user_placeholder"}}" autocomplete="off" autofocus required> + </div> + <div class="ui segment results hide"></div> + </div> + </div> + <button class="ui blue button">{{.i18n.Tr "org.members.invite_now"}}</button> + </form> + </div> </div> </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/org/member/members.tmpl b/templates/org/member/members.tmpl index 0e7453ac..8399e044 100644 --- a/templates/org/member/members.tmpl +++ b/templates/org/member/members.tmpl @@ -1,49 +1,60 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -{{template "org/base/header" .}} -<div class="container"> - <div class="org-header-alert"> - {{template "ng/base/alert" .}} - </div> - <div class="org-toolbar clear"> +{{template "base/head" .}} +<div class="organization members"> + {{template "org/header" .}} + <div class="ui container"> + {{template "base/alert" .}} {{if .IsOrganizationOwner}} - <a class="btn btn-green btn-large btn-link btn-radius right" href="{{.OrgLink}}/invitations/new"><i class="octicon octicon-repo-create"></i> {{.i18n.Tr "org.invite_someone"}}</a> + <div class="text right"> + <a class="ui blue button" href="{{.OrgLink}}/invitations/new"><i class="octicon octicon-repo-create"></i> {{.i18n.Tr "org.invite_someone"}}</a> + </div> + <div class="ui divider"></div> {{end}} - </div> - <div id="org-member-list"> - {{range .Members}} - <div class="org-member-item"> - <img class="avatar-48 left" src="{{.AvatarLink}}?s=100"> - <a class="text-black" href="{{AppSubUrl}}/{{.Name}}"><span class="member-name"><strong>{{.FullName}}</strong>({{.Name}})</span></a> - <ul class="grid-6-12 right"> - <li class="grid-1-3"> - {{ $isPublic := .IsPublicMember $.Org.Id}} - {{if $isPublic}} - {{$.i18n.Tr "org.members.public"}} - {{if eq $.SignedUser.Id .Id}}(<a href="{{$.OrgLink}}/members/action/private?uid={{.Id}}">{{$.i18n.Tr "org.members.public_helper"}}</a>){{end}} - {{else}} - {{$.i18n.Tr "org.members.private"}} - {{if eq $.SignedUser.Id .Id}}(<a href="{{$.OrgLink}}/members/action/public?uid={{.Id}}">{{$.i18n.Tr "org.members.private_helper"}}</a>){{end}} - {{end}} - </li> - <li class="grid-1-4">{{if .IsUserOrgOwner $.Org.Id}}<strong>{{$.i18n.Tr "org.members.owner"}}</strong>{{else}}{{$.i18n.Tr "org.members.member"}}{{end}}</li> - {{if eq $.SignedUser.Id .Id}} - <li class="grid-1-6 right"> - <a class="btn btn-red btn-link btn-radius" href="{{$.OrgLink}}/members/action/leave?uid={{.Id}}">{{$.i18n.Tr "org.members.leave"}}</a> - </li> - {{else if $.IsOrganizationOwner}} - <li class="grid-1-6 right"> - <a class="btn btn-red btn-link btn-radius" href="{{$.OrgLink}}/members/action/remove?uid={{.Id}}">{{$.i18n.Tr "org.members.remove"}}</a> - </li> - {{if $isPublic}} - <li class="grid-1-6 right"> - <a class="btn btn-blue btn-link btn-radius" href="{{$.OrgLink}}/members/action/private?uid={{.Id}}">{{$.i18n.Tr "org.members.conceal"}}</a> - </li> + + <div class="list"> + {{range .Members}} + <div class="item ui grid"> + <div class="ui one wide column"> + <img class="ui avatar" src="{{.AvatarLink}}?s=48"> + </div> + <div class="ui three wide column"> + <div class="meta"><a href="{{.HomeLink}}">{{.Name}}</a></div> + <div class="meta">{{.FullName}}</div> + </div> + <div class="ui five wide column center"> + <div class="meta"> + {{$.i18n.Tr "org.members.membership_visibility"}} + </div> + <div class="meta"> + {{ $isPublic := .IsPublicMember $.Org.Id}} + {{if $isPublic}} + <strong>{{$.i18n.Tr "org.members.public"}}</strong> + {{if or (eq $.SignedUser.Id .Id) $.IsOrganizationOwner}}(<a href="{{$.OrgLink}}/members/action/private?uid={{.Id}}">{{$.i18n.Tr "org.members.public_helper"}}</a>){{end}} + {{else}} + <strong>{{$.i18n.Tr "org.members.private"}}</strong> + {{if or (eq $.SignedUser.Id .Id) $.IsOrganizationOwner}}(<a href="{{$.OrgLink}}/members/action/public?uid={{.Id}}">{{$.i18n.Tr "org.members.private_helper"}}</a>){{end}} + {{end}} + </div> + </div> + <div class="ui three wide column center"> + <div class="meta"> + {{$.i18n.Tr "org.members.member_role"}} + </div> + <div class="meta"> + <strong>{{if .IsUserOrgOwner $.Org.Id}}<span class="octicon octicon-shield"></span> {{$.i18n.Tr "org.members.owner"}}{{else}}{{$.i18n.Tr "org.members.member"}}{{end}}</strong> + </div> + </div> + <div class="ui four wide column"> + <div class="text right"> + {{if eq $.SignedUser.Id .Id}} + <a class="ui red small button" href="{{$.OrgLink}}/members/action/leave?uid={{.Id}}">{{$.i18n.Tr "org.members.leave"}}</a> + {{else if $.IsOrganizationOwner}} + <a class="ui red small button" href="{{$.OrgLink}}/members/action/remove?uid={{.Id}}">{{$.i18n.Tr "org.members.remove"}}</a> {{end}} - {{end}} - </ul> + </div> + </div> + </div> + {{end}} </div> - {{end}} </div> </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/org/settings/options.tmpl b/templates/org/settings/options.tmpl index 61db48b6..157ff975 100644 --- a/templates/org/settings/options.tmpl +++ b/templates/org/settings/options.tmpl @@ -17,7 +17,7 @@ <input id="org_name" name="name" value="{{.Org.Name}}" data-org-name="{{.Org.Name}}" autofocus required> </div> <div class="field {{if .Err_FullName}}error{{end}}"> - <label for="full_name">{{.i18n.Tr "org.org_name_holder"}}</label> + <label for="full_name">{{.i18n.Tr "org.org_full_name_holder"}}</label> <input id="full_name" name="full_name" value="{{.Org.FullName}}"> </div> <div class="field {{if .Err_Description}}error{{end}}"> diff --git a/templates/org/team/members.tmpl b/templates/org/team/members.tmpl index 66f496eb..83b832e1 100644 --- a/templates/org/team/members.tmpl +++ b/templates/org/team/members.tmpl @@ -1,45 +1,46 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -{{template "org/base/header" .}} -<div id="setting-wrapper" class="main-wrapper"> - <div id="team-members-list" class="container clear"> - {{template "ng/base/alert" .}} - {{template "org/team/sidebar" .}} - <div class="grid-2-3 left"> - <div class="setting-content"> - <div class="panel panel-radius"> - <div class="panel-header"> - {{.i18n.Tr "org.teams.members"}} - </div> - <ul class="panel-body setting-list" id="team-members-list"> - {{if .IsOrganizationOwner}} - <li class="search"> - <form class="form form-align" action="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/add" id="repo-collab-form"> - {{.CsrfTokenHtml}} - <input type="hidden" name="uid" value="{{.SignedUser.Id}}"> - <input class="ipt ipt-large ipt-radius" id="org-team-members-add" name="uname" autocomplete="off" required /> - <button class="btn btn-blue btn-large btn-radius">{{.i18n.Tr "org.teams.add_team_member"}}</button> - <div class="repo-user-list-block"> - <ul class="menu-down-show menu-vertical menu-radius switching-list user-list" id="org-team-members-list"></ul> - </div> - </form> - </li> +{{template "base/head" .}} +<div class="organization teams"> + {{template "org/header" .}} + <div class="ui container"> + {{template "base/alert" .}} + <div class="ui grid"> + {{template "org/team/sidebar" .}} + <div class="ui ten wide column"> + <div class="ui top attached header"> + {{.i18n.Tr "org.teams.members"}} + </div> + <div class="ui attached table segment members"> + {{range .Team.Members}} + <div class="item"> + {{if $.IsOrganizationOwner}} + <a class="ui red small button right" href="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/remove?uid={{.Id}}">{{$.i18n.Tr "org.members.remove"}}</a> {{end}} - {{range .Team.Members}} - <li class="collab"> - {{if $.IsOrganizationOwner}} - <a class="btn btn-small btn-red btn-radius right" href="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/remove?uid={{.Id}}">{{$.i18n.Tr "org.members.remove"}}</a> - {{end}} - <a class="member" href="{{AppSubUrl}}/{{.Name}}"> - <img alt="{{.Name}}" class="pull-left avatar" src="{{.AvatarLink}}"> - <strong>{{.FullName}}</strong> ({{.Name}}) - </a> - </li> - {{end}} - </ul> + <a href="{{.HomeLink}}"> + <img class="ui avatar image" src="{{.AvatarLink}}"> + {{.DisplayName}} + </a> + </div> + {{end}} + </div> + {{if .IsOrganizationOwner}} + <div class="ui bottom attached segment"> + <form class="ui form" id="add-member-form" action="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/add" method="post"> + {{.CsrfTokenHtml}} + <input type="hidden" name="uid" value="{{.SignedUser.Id}}"> + <div class="inline field ui left"> + <div id="search-user-box"> + <div class="ui input"> + <input class="prompt" name="uname" placeholder="{{.i18n.Tr "repo.settings.search_user_placeholder"}}" autocomplete="off" required> + </div> + <div class="ui segment results hide"></div> + </div> + </div> + <button class="ui green button">{{.i18n.Tr "org.teams.add_team_member"}}</button> + </form> </div> + {{end}} </div> - </div> + </div> </div> </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/org/team/new.tmpl b/templates/org/team/new.tmpl index 89afd84f..8d09e2ac 100644 --- a/templates/org/team/new.tmpl +++ b/templates/org/team/new.tmpl @@ -1,70 +1,82 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -{{template "org/base/header" .}} -<div id="repo-wrapper"> - <form id="team-create-form" class="form form-align panel panel-radius" action="{{if .PageIsOrgTeamsNew}}{{.OrgLink}}/teams/new{{else}}{{.OrgLink}}/teams/{{.Team.LowerName}}/edit{{end}}" data-delete-url="{{.OrgLink}}/teams/{{.Team.LowerName}}/delete" method="post"> +{{template "base/head" .}} +<div class="organization new team"> + {{template "org/header" .}} + <div class="ui middle very relaxed page grid"> + <div class="column"> + <form class="ui form" action="{{if .PageIsOrgTeamsNew}}{{.OrgLink}}/teams/new{{else}}{{.OrgLink}}/teams/{{.Team.LowerName}}/edit{{end}}" data-delete-url="{{.OrgLink}}/teams/{{.Team.LowerName}}/delete" method="post"> {{.CsrfTokenHtml}} - <div class="panel-header"> - <h2> - {{if .PageIsOrgTeamsNew}}{{.i18n.Tr "org.create_new_team"}}{{else}}{{.i18n.Tr "org.teams.settings"}}{{end}} - </h2> - </div> - <div class="panel-content"> - {{template "ng/base/alert" .}} + <h3 class="ui top attached header"> + {{if .PageIsOrgTeamsNew}}{{.i18n.Tr "org.create_new_team"}}{{else}}{{.i18n.Tr "org.teams.settings"}}{{end}} + </h3> + <div class="ui attached segment"> + {{template "base/alert" .}} + <div class="required field {{if .Err_TeamName}}error{{end}}"> + <label for="team_name">{{.i18n.Tr "org.team_name"}}</label> + {{if eq .Team.LowerName "owners"}} + <input type="hidden" name="team_name" value="{{.team_name}}"> + {{end}} + <input id="team_name" name="team_name" value="{{.team_name}}" required {{if eq .Team.LowerName "owners"}}disabled{{end}} autofocus> + <span class="help">{{.i18n.Tr "org.team_name_helper"}}</span> + </div> + <div class="field {{if .Err_Description}}error{{end}}"> + <label for="desc">{{.i18n.Tr "org.team_desc"}}</label> + <input id="desc" name="desc" value="{{.desc}}"> + <span class="help">{{.i18n.Tr "org.team_desc_helper"}}</span> + </div> + {{if not (eq .Team.LowerName "owners")}} + <div class="grouped field"> + <label>{{.i18n.Tr "org.team_permission_desc"}}</label> + <br> <div class="field"> - <label class="req" for="team-name">{{.i18n.Tr "org.team_name"}}</label> - {{if eq .Team.LowerName "owners"}} - <input type="hidden" name="team_name" value="{{.team_name}}"> - {{end}} - <input class="ipt ipt-large ipt-radius {{if .Err_TeamName}}ipt-error{{end}}" id="team-name" name="team_name" value="{{.team_name}}" required {{if eq .Team.LowerName "owners"}}disabled{{end}} /> - <span class="form-label"></span> - <span class="help">{{.i18n.Tr "org.team_name_helper"}}</span> + <div class="ui radio checkbox"> + <input type="radio" name="permission" value="read" {{if or .PageIsOrgTeamsNew (eq .Team.Authorize 1)}}checked{{end}}> + <label>{{.i18n.Tr "org.teams.read_access"}}</label> + <span class="help">{{.i18n.Tr "org.teams.read_access_helper"}}</span> + </div> </div> <div class="field"> - <label for="desc">{{.i18n.Tr "org.team_desc"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_Description}}ipt-error{{end}}" id="desc" name="desc" value="{{.desc}}" /> - <span class="form-label"></span> - <span class="help">{{.i18n.Tr "org.team_desc_helper"}}</span> + <div class="ui radio checkbox"> + <input type="radio" name="permission" value="write" {{if eq .Team.Authorize 2}}checked{{end}}> + <label>{{.i18n.Tr "org.teams.write_access"}}</label> + <span class="help">{{.i18n.Tr "org.teams.write_access_helper"}}</span> + </div> </div> - {{if not (eq .Team.LowerName "owners")}} <div class="field"> - <h4 class="text-center">{{.i18n.Tr "org.team_permission_desc"}}</h4> - <label></label> - <input name="permission" type="radio" value="read" {{if or .PageIsOrgTeamsNew (eq .Team.Authorize 1)}}checked{{end}}> {{.i18n.Tr "org.teams.read_access"}} - <label></label> - <p class="text-grey note">{{.i18n.Tr "org.teams.read_access_helper"}}</p> - <label></label> - <input name="permission" type="radio" value="write" {{if eq .Team.Authorize 2}}checked{{end}}> {{.i18n.Tr "org.teams.write_access"}} - <label></label> - <p class="text-grey note">{{.i18n.Tr "org.teams.write_access_helper"}}</p> - <label></label> - <input name="permission" type="radio" value="admin" {{if eq .Team.Authorize 3}}checked{{end}}> {{.i18n.Tr "org.teams.admin_access"}} - <label></label> - <p class="text-grey note">{{.i18n.Tr "org.teams.admin_access_helper"}}</p> + <div class="ui radio checkbox"> + <input type="radio" name="permission" value="admin" {{if eq .Team.Authorize 3}}checked{{end}}> + <label>{{.i18n.Tr "org.teams.admin_access"}}</label> + <span class="help">{{.i18n.Tr "org.teams.admin_access_helper"}}</span> + </div> </div> - <hr> + </div> + <div class="ui divider"></div> + {{end}} + + <div class="field"> + {{if .PageIsOrgTeamsNew}} + <button class="ui green button">{{.i18n.Tr "org.create_new_team"}}</button> + <a class="ui button" href="{{.OrgLink}}/teams">{{.i18n.Tr "cancel"}}</a> + {{else}} + <button class="ui green button">{{.i18n.Tr "org.teams.update_settings"}}</button> + {{if not (eq .Team.LowerName "owners")}} + <button class="ui red button delete-button" data-url="{{.OrgLink}}/teams/{{.team_name}}/delete">{{.i18n.Tr "org.teams.delete_team"}}</button> + {{end}} {{end}} - <div class="field"> - <label></label> - {{if .PageIsOrgTeamsNew}} - <button class="btn btn-large btn-blue btn-radius">{{.i18n.Tr "org.create_new_team"}}</button> - <a class="btn btn-small btn-gray btn-radius" id="repo-create-cancel" href="{{.OrgLink}}/teams"><strong>{{.i18n.Tr "cancel"}}</strong></a> - {{else}} - <button class="btn btn-large btn-green btn-radius">{{.i18n.Tr "org.teams.update_settings"}}</button> - {{if not (eq .Team.LowerName "owners")}} - - <button class="btn btn-large btn-red btn-radius" id="org-team-delete" href="#delete-team-modal">{{.i18n.Tr "org.teams.delete_team"}}</button> - <div class="white-popup-block mfp-hide" id="delete-team-modal"> - <h1 class="text-red">{{.i18n.Tr "org.teams.delete_team_title"}}</h1> - <p>{{.i18n.Tr "org.teams.delete_team_desc"}}</p> - <br> - <button class="btn btn-red btn-large btn-radius" id="delete-team-submit">{{.i18n.Tr "settings.continue"}}</button> - <button class="btn btn-large btn-radius popup-modal-dismiss">{{.i18n.Tr "settings.cancel"}}</button> - </div> - {{end}} - {{end}} - </div> + </div> </div> - </form> + </form> + </div> + </div> +</div> + +<div class="ui small basic delete modal"> + <div class="ui icon header"> + <i class="trash icon"></i> + {{.i18n.Tr "org.teams.delete_team_title"}} + </div> + <div class="content"> + <p>{{.i18n.Tr "org.teams.delete_team_desc"}}</p> + </div> + {{template "base/delete_modal_actions" .}} </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/org/team/repositories.tmpl b/templates/org/team/repositories.tmpl index 33d4dea8..28126bef 100644 --- a/templates/org/team/repositories.tmpl +++ b/templates/org/team/repositories.tmpl @@ -1,45 +1,46 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -{{template "org/base/header" .}} -<div id="setting-wrapper" class="main-wrapper"> - <div id="team-members-list" class="container clear"> - {{template "ng/base/alert" .}} - {{template "org/team/sidebar" .}} - <div class="grid-2-3 left"> - <div class="setting-content"> - <div class="panel panel-radius"> - <div class="panel-header"> - {{.i18n.Tr "org.teams.repositories"}} - </div> +{{template "base/head" .}} +<div class="organization teams"> + {{template "org/header" .}} + <div class="ui container"> + {{template "base/alert" .}} + <div class="ui grid"> + {{template "org/team/sidebar" .}} + <div class="ui ten wide column"> + <div class="ui top attached header"> + {{.i18n.Tr "org.teams.repositories"}} + </div> + <div class="ui attached table segment repositories"> {{$canAddRemove := and $.IsOrganizationOwner (not (eq $.Team.LowerName "owners"))}} - <ul class="panel-body setting-list" id="team-repositories-list"> - {{if $canAddRemove}} - <li class="search"> - <form class="form form-align" action="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/repo/add" id="repo-collab-form"> - {{.CsrfTokenHtml}} - <input class="ipt ipt-large ipt-radius" id="org-team-repositories-add" name="repo-name" autocomplete="off" data-uid="{{.Org.Id}}" required /> - <button class="btn btn-blue btn-large btn-radius">{{.i18n.Tr "org.teams.add_team_repository"}}</button> - <div class="repo-user-list-block"> - <ul class="menu-down-show menu-vertical menu-radius switching-list user-list" id="org-team-repositories-list"></ul> - </div> - </form> - </li> + {{range .Team.Repos}} + <div class="item"> + {{if $canAddRemove}} + <a class="ui red small button right" href="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/repo/remove?repoid={{.ID}}">{{$.i18n.Tr "org.teams.remove_repo"}}</a> {{end}} - {{range .Team.Repos}} - <li class="collab"> - {{if $canAddRemove}} - <a class="btn btn-small btn-red btn-radius right" href="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/repo/remove?repoid={{.ID}}">{{$.i18n.Tr "org.teams.remove_repo"}}</a> - {{end}} - <a class="member" href="{{AppSubUrl}}/{{$.Org.Name}}/{{.Name}}"> - <i class="octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i> - <strong>{{$.Org.Name}}/{{.Name}}</strong> - </a> - </li> - {{end}} - </ul> - </div> + <a class="member" href="{{AppSubUrl}}/{{$.Org.Name}}/{{.Name}}"> + <i class="icon octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i> + <strong>{{$.Org.Name}}/{{.Name}}</strong> + </a> + </div> + {{end}} + </div> + {{if $canAddRemove}} + <div class="ui bottom attached segment"> + <form class="ui form" id="add-repo-form" action="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/repo/add" method="post"> + {{.CsrfTokenHtml}} + <div class="inline field ui left"> + <div id="search-repo-box" data-uid="{{.Org.Id}}"> + <div class="ui input"> + <input class="prompt" name="repo_name" placeholder="{{.i18n.Tr "org.teams.search_repo_placeholder"}}" autocomplete="off" required> + </div> + <div class="ui segment results hide"></div> + </div> + </div> + <button class="ui green button">{{.i18n.Tr "org.teams.add_team_repository"}}</button> + </form> + </div> + {{end}} </div> </div> </div> </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/org/team/sidebar.tmpl b/templates/org/team/sidebar.tmpl index d6d92519..5abf34be 100644 --- a/templates/org/team/sidebar.tmpl +++ b/templates/org/team/sidebar.tmpl @@ -1,34 +1,41 @@ -<div class="grid-1-3 panel panel-radius left" id="org-team-card"> - <div class="panel-header"> - {{if .Team.IsMember $.SignedUser.Id}} - <a class="btn btn-small btn-red btn-header btn-radius right" href="{{.OrgLink}}/teams/{{.Team.LowerName}}/action/leave?uid={{$.SignedUser.Id}}&page=team">{{$.i18n.Tr "org.teams.leave"}}</a> - {{else if .IsOrganizationOwner}} - <a class="btn btn-small btn-blue btn-header btn-radius right" href="{{.OrgLink}}/teams/{{.Team.LowerName}}/action/join?uid={{$.SignedUser.Id}}&page=team">{{$.i18n.Tr "org.teams.join"}}</a> - {{end}} - <strong>{{.Team.Name}}</strong> +<div class="ui six wide column"> + <h4 class="ui top attached header"> + <strong>{{.Team.Name}}</strong> + <div class="ui right"> + {{if .Team.IsMember $.SignedUser.Id}} + <a class="ui red tiny button" href="{{.OrgLink}}/teams/{{.Team.LowerName}}/action/leave?uid={{$.SignedUser.Id}}&page=team">{{$.i18n.Tr "org.teams.leave"}}</a> + {{else if .IsOrganizationOwner}} + <a class="ui blue tiny button" href="{{.OrgLink}}/teams/{{.Team.LowerName}}/action/join?uid={{$.SignedUser.Id}}&page=team">{{$.i18n.Tr "org.teams.join"}}</a> + {{end}} </div> - <div class="panel-body"> - <p class="desc">{{if .Team.Description}}{{.Team.Description}}{{else}}{{.i18n.Tr "org.teams.no_desc"}}{{end}}</p> - <hr> - <div class="team-stats"> - <a href="{{.OrgLink}}/teams/{{.Team.LowerName}}"><span class="octicon octicon-person"></span> <strong>{{.Team.NumMembers}}</strong> {{$.i18n.Tr "org.lower_members"}}</a> · - <a href="{{.OrgLink}}/teams/{{.Team.LowerName}}/repositories"><span class="octicon octicon-repo"></span> <strong>{{.Team.NumRepos}}</strong> {{$.i18n.Tr "org.lower_repositories"}}</a> - </div> - <p class="desc"> - {{if eq .Team.LowerName "owners"}} - {{.i18n.Tr "org.teams.owners_permission_desc" | Str2html}} - {{else if (eq .Team.Authorize 1)}} - {{.i18n.Tr "org.teams.read_permission_desc" | Str2html}} - {{else if (eq .Team.Authorize 2)}} - {{.i18n.Tr "org.teams.write_permission_desc" | Str2html}} - {{else if (eq .Team.Authorize 3)}} - {{.i18n.Tr "org.teams.admin_permission_desc" | Str2html}} - {{end}} - </p> + </h4> + <div class="ui attached table segment detail"> + <div class="item"> + {{if .Team.Description}} + {{.Team.Description}} + {{else}} + <span class="text grey italic">{{.i18n.Tr "org.teams.no_desc"}}</span> + {{end}} </div> - {{if .IsOrganizationOwner}} - <div class="panel-footer"> - <a class="btn btn-medium btn-green btn-link btn-radius" href="{{.OrgLink}}/teams/{{.Team.LowerName}}/edit"><span class="octicon octicon-gear"></span> {{$.i18n.Tr "org.teams.settings"}}</a> + <div class="item"> + <a href="{{.OrgLink}}/teams/{{.Team.LowerName}}"><span class="octicon octicon-person"></span> <strong>{{.Team.NumMembers}}</strong> {{$.i18n.Tr "org.lower_members"}}</a> · + <a href="{{.OrgLink}}/teams/{{.Team.LowerName}}/repositories"><span class="octicon octicon-repo"></span> <strong>{{.Team.NumRepos}}</strong> {{$.i18n.Tr "org.lower_repositories"}}</a> </div> - {{end}} + <div class="item"> + {{if eq .Team.LowerName "owners"}} + {{.i18n.Tr "org.teams.owners_permission_desc" | Str2html}} + {{else if (eq .Team.Authorize 1)}} + {{.i18n.Tr "org.teams.read_permission_desc" | Str2html}} + {{else if (eq .Team.Authorize 2)}} + {{.i18n.Tr "org.teams.write_permission_desc" | Str2html}} + {{else if (eq .Team.Authorize 3)}} + {{.i18n.Tr "org.teams.admin_permission_desc" | Str2html}} + {{end}} + </div> + </div> + {{if .IsOrganizationOwner}} + <div class="ui bottom attached segment"> + <a class="ui teal small button" href="{{.OrgLink}}/teams/{{.Team.LowerName}}/edit"><span class="octicon octicon-gear"></span> {{$.i18n.Tr "org.teams.settings"}}</a> + </div> + {{end}} </div>
\ No newline at end of file diff --git a/templates/org/team/teams.tmpl b/templates/org/team/teams.tmpl index 30df3e40..2289af12 100644 --- a/templates/org/team/teams.tmpl +++ b/templates/org/team/teams.tmpl @@ -1,42 +1,41 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -{{template "org/base/header" .}} -<div class="container"> - <div class="org-header-alert"> - {{template "ng/base/alert" .}} - </div> - <div class="org-toolbar clear"> +{{template "base/head" .}} +<div class="organization teams"> + {{template "org/header" .}} + <div class="ui container"> + {{template "base/alert" .}} {{if .IsOrganizationOwner}} - <a class="btn btn-green btn-large btn-link btn-radius right" href="{{.OrgLink}}/teams/new"><i class="octicon octicon-repo-create"></i> {{.i18n.Tr "org.create_new_team"}}</a> + <div class="text right"> + <a class="ui green button" href="{{.OrgLink}}/teams/new"><i class="octicon octicon-repo-create"></i> {{.i18n.Tr "org.create_new_team"}}</a> + </div> + <div class="ui divider"></div> {{end}} - </div> - <div class="org-team-list"> - {{range .Teams}} - <div class="org-team-list-item"> - <div class="panel panel-radius"> - <div class="panel-header"> - {{if .IsMember $.SignedUser.Id}} - <a class="btn btn-small btn-red btn-header btn-radius right" href="{{$.OrgLink}}/teams/{{.LowerName}}/action/leave?uid={{$.SignedUser.Id}}">{{$.i18n.Tr "org.teams.leave"}}</a> - {{else if $.IsOrganizationOwner}} - <a class="btn btn-small btn-blue btn-header btn-radius right" href="{{$.OrgLink}}/teams/{{.LowerName}}/action/join?uid={{$.SignedUser.Id}}">{{$.i18n.Tr "org.teams.join"}}</a> - {{end}} - <a class="text-black" href="{{$.OrgLink}}/teams/{{.LowerName}}"><strong>{{.Name}}</strong></a> + + <div class="ui two column grid"> + {{range .Teams}} + <div class="column"> + <div class="ui top attached header"> + <a class="text black" href="{{$.OrgLink}}/teams/{{.LowerName}}"><strong>{{.Name}}</strong></a> + <div class="ui right"> + {{if .IsMember $.SignedUser.Id}} + <a class="ui red small button" href="{{$.OrgLink}}/teams/{{.LowerName}}/action/leave?uid={{$.SignedUser.Id}}">{{$.i18n.Tr "org.teams.leave"}}</a> + {{else if $.IsOrganizationOwner}} + <a class="ui blue small button" href="{{$.OrgLink}}/teams/{{.LowerName}}/action/join?uid={{$.SignedUser.Id}}">{{$.i18n.Tr "org.teams.join"}}</a> + {{end}} + </div> </div> - {{if .NumMembers}} - <div class="panel-body member-avatar-group"> + <div class="ui attached segment members"> {{range .Members}} - <a href="{{AppSubUrl}}/{{.Name}}" title="{{.Name}}"> - <img src="{{.AvatarLink}}"> + <a href="{{.HomeLink}}" title="{{.Name}}"> + <img class="ui avatar image" src="{{.AvatarLink}}"> </a> {{end}} </div> - {{end}} - <div class="panel-footer"> - <p class="team-meta">{{.NumMembers}} {{$.i18n.Tr "org.lower_members"}} · {{.NumRepos}} {{$.i18n.Tr "org.lower_repositories"}}</p> + <div class="ui bottom attached header"> + <p class="team-meta">{{.NumMembers}} {{$.i18n.Tr "org.lower_members"}} · {{.NumRepos}} {{$.i18n.Tr "org.lower_repositories"}}</p> </div> </div> + {{end}} </div> - {{end}} </div> </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/repo/commits.tmpl b/templates/repo/commits.tmpl index e54c9ed7..769841de 100644 --- a/templates/repo/commits.tmpl +++ b/templates/repo/commits.tmpl @@ -2,6 +2,7 @@ <div class="repository commits"> {{template "repo/header" .}} <div class="ui container"> + {{template "repo/sidebar" .}} {{template "repo/commits_table" .}} </div> </div> diff --git a/templates/repo/commits_table.tmpl b/templates/repo/commits_table.tmpl index a077af0b..58ab1ebb 100644 --- a/templates/repo/commits_table.tmpl +++ b/templates/repo/commits_table.tmpl @@ -1,5 +1,5 @@ <h4 class="ui top attached header"> - {{.CommitCount}} {{.i18n.Tr "repo.commits.commits"}} + {{.CommitCount}} {{.i18n.Tr "repo.commits.commits"}} {{if .Branch}}({{.Branch}}){{end}} {{if .PageIsCommits}} <div class="ui right"> <form action="{{.RepoLink}}/commits/{{.BranchName}}/search"> @@ -36,7 +36,7 @@ <img class="ui avatar image" src="{{AvatarLink .Author.Email}}" alt=""/> {{.Author.Name}} {{end}} </td> - <td class="sha"><a rel="nofollow" class="ui green sha label" href="{{AppSubUrl}}/{{$.Username}}/{{$.Reponame}}/commit/{{.Id}} ">{{SubStr .Id.String 0 10}} </a></td> + <td class="sha"><a rel="nofollow" class="ui green sha label" href="{{AppSubUrl}}/{{$.Username}}/{{$.Reponame}}/commit/{{.ID}} ">{{SubStr .ID.String 0 10}} </a></td> <td class="message"><span class="text truncate">{{RenderCommitMessage .Summary $.RepoLink}}</span></td> <td class="date">{{TimeSince .Author.When $.Lang}}</td> </tr> diff --git a/templates/repo/create.tmpl b/templates/repo/create.tmpl index 183da494..07a9c091 100644 --- a/templates/repo/create.tmpl +++ b/templates/repo/create.tmpl @@ -15,18 +15,18 @@ <input type="hidden" id="uid" name="uid" value="{{.ContextUser.Id}}" required> <span class="text"> <img class="ui mini image" src="{{.ContextUser.AvatarLink}}"> - {{.ContextUser.Name}} + {{.ContextUser.ShortName 20}} </span> <i class="dropdown icon"></i> <div class="menu"> <div class="item" data-value="{{.SignedUser.Id}}"> <img class="ui mini image" src="{{.SignedUser.AvatarLink}}"> - {{.SignedUser.Name}} + {{.SignedUser.ShortName 20}} </div> {{range .Orgs}} <div class="item" data-value="{{.Id}}"> <img class="ui mini image" src="{{.AvatarLink}}"> - {{.Name}} + {{.ShortName 20}} </div> {{end}} </div> @@ -71,7 +71,7 @@ </div> <div class="inline field"> <label>{{.i18n.Tr "repo.license"}}</label> - <div class="ui selection dropdown"> + <div class="ui search selection dropdown"> <input type="hidden" name="license" value="{{.license}}"> <div class="default text">{{.i18n.Tr "repo.license_helper"}}</div> <div class="menu"> diff --git a/templates/repo/diff_box.tmpl b/templates/repo/diff_box.tmpl index f4509942..a1d106b7 100644 --- a/templates/repo/diff_box.tmpl +++ b/templates/repo/diff_box.tmpl @@ -36,18 +36,18 @@ <div class="diff-file-box diff-box file-content" id="diff-{{.Index}}"> <h4 class="ui top attached normal header"> <div class="diff-counter count ui left"> - {{if not $file.IsBin}} - <span class="add" data-line="{{.Addition}}">+ {{.Addition}}</span> - <span class="bar"> - <span class="pull-left add"></span> - <span class="pull-left del"></span> - </span> - <span class="del" data-line="{{.Deletion}}">- {{.Deletion}}</span> - {{else}} - {{$.i18n.Tr "repo.diff.bin"}} + {{if $file.IsBin}} + {{$.i18n.Tr "repo.diff.bin"}} + {{else if not $file.IsRenamed}} + <span class="add" data-line="{{.Addition}}">+ {{.Addition}}</span> + <span class="bar"> + <span class="pull-left add"></span> + <span class="pull-left del"></span> + </span> + <span class="del" data-line="{{.Deletion}}">- {{.Deletion}}</span> {{end}} </div> - <span class="file">{{$file.Name}}</span> + <span class="file">{{if $file.IsRenamed}}{{$file.OldName}} → {{end}}{{$file.Name}}</span> <div class="ui right"> {{if $file.IsDeleted}} <a class="ui basic tiny button" rel="nofollow" href="{{EscapePound $.BeforeSourcePath}}/{{EscapePound .Name}}">{{$.i18n.Tr "repo.diff.view_file"}}</a> @@ -57,33 +57,35 @@ </div> </h4> <div class="ui attached table segment"> - {{$isImage := (call $.IsImageFile $file.Name)}} - {{if $isImage}} - <div class="center"> - <img src="{{$.RawPath}}/{{EscapePound .Name}}"> - </div> - {{else}} - <div class="file-body file-code code-view code-diff"> - <table> - <tbody> - {{range .Sections}} - {{range $k, $line := .Lines}} - <tr class="{{DiffLineTypeToStr .Type}}-code nl-{{$k}} ol-{{$k}}"> - <td class="lines-num lines-num-old"> - <span rel="{{if $line.LeftIdx}}diff-{{Sha1 $file.Name}}L{{$line.LeftIdx}}{{end}}">{{if $line.LeftIdx}}{{$line.LeftIdx}}{{end}}</span> - </td> - <td class="lines-num lines-num-new"> - <span rel="{{if $line.RightIdx}}diff-{{Sha1 $file.Name}}R{{$line.RightIdx}}{{end}}">{{if $line.RightIdx}}{{$line.RightIdx}}{{end}}</span> - </td> - <td class="lines-code"> - <pre>{{$line.Content}}</pre> - </td> - </tr> - {{end}} - {{end}} - </tbody> - </table> - </div> + {{if not $file.IsRenamed}} + {{$isImage := (call $.IsImageFile $file.Name)}} + {{if and $isImage}} + <div class="center"> + <img src="{{$.RawPath}}/{{EscapePound .Name}}"> + </div> + {{else}} + <div class="file-body file-code code-view code-diff"> + <table> + <tbody> + {{range .Sections}} + {{range $k, $line := .Lines}} + <tr class="{{DiffLineTypeToStr .Type}}-code nl-{{$k}} ol-{{$k}}"> + <td class="lines-num lines-num-old"> + <span rel="{{if $line.LeftIdx}}diff-{{Sha1 $file.Name}}L{{$line.LeftIdx}}{{end}}">{{if $line.LeftIdx}}{{$line.LeftIdx}}{{end}}</span> + </td> + <td class="lines-num lines-num-new"> + <span rel="{{if $line.RightIdx}}diff-{{Sha1 $file.Name}}R{{$line.RightIdx}}{{end}}">{{if $line.RightIdx}}{{$line.RightIdx}}{{end}}</span> + </td> + <td class="lines-code"> + <pre>{{$line.Content}}</pre> + </td> + </tr> + {{end}} + {{end}} + </tbody> + </table> + </div> + {{end}} {{end}} </div> </div> diff --git a/templates/repo/forks.tmpl b/templates/repo/forks.tmpl index d1fd0320..e3fd90c6 100644 --- a/templates/repo/forks.tmpl +++ b/templates/repo/forks.tmpl @@ -1,27 +1,23 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div id="repo-wrapper"> - {{template "repo/header_old" .}} - <div id="repo-content" class="clear container"> - <div id="repo-main" class="left grid-5-6"> - <div id="forks"> - <h4> - <strong>{{.i18n.Tr "repos.forks"}}</strong> - </h4> - - <ol> - {{range .Forks}} - <p> - <img class="avatar-small" src="{{.Owner.AvatarLink}}"> - <a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a> - / - <a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a> - </p> - {{end}} - </div> +{{template "base/head" .}} +<div class="repository forks"> + {{template "repo/header" .}} + <div class="ui container"> + {{template "repo/sidebar" .}} + <h2 class="ui dividing header"> + {{.i18n.Tr "repo.forks"}} + </h2> + <div class="ui list"> + {{range .Forks}} + <div class="item"> + <img class="ui avatar image" src="{{.Owner.AvatarLink}}"> + <div class="link"> + <a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a> + / + <a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a> + </div> </div> - - {{template "repo/sidebar" .}} + {{end}} </div> + </div> </div> -{{template "ng/base/footer" .}} +{{template "base/footer" .}} diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index b03e2eaa..06bd49b9 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -1,48 +1,48 @@ {{with .Repository}} <div class="ui container"><!-- start container --> - <div class="ui vertically padded grid head"><!-- start grid --> - <div class="column"><!-- start column --> - <div class="ui header"> - <div class="ui huge breadcrumb"> - <i class="mega-octicon octicon-{{if .IsPrivate}}lock{{else if .IsMirror}}repo-clone{{else if .IsFork}}repo-forked{{else}}repo{{end}}"></i> - <a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a> - <div class="divider"> / </div> - <a href="{{$.RepoLink}}">{{.Name}}</a> - {{if .IsMirror}}<div class="ui label">{{$.i18n.Tr "mirror"}}</div>{{end}} - {{if .IsFork}}<div class="fork-flag">{{$.i18n.Tr "repo.forked_from"}} <a href="{{.BaseRepo.RepoLink}}">{{SubStr .BaseRepo.RepoLink 1 -1}}</a></div>{{end}} - </div> + <div class="ui vertically padded grid head"><!-- start grid --> + <div class="column"><!-- start column --> + <div class="ui header"> + <div class="ui huge breadcrumb"> + <i class="mega-octicon octicon-{{if .IsPrivate}}lock{{else if .IsMirror}}repo-clone{{else if .IsFork}}repo-forked{{else}}repo{{end}}"></i> + <a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a> + <div class="divider"> / </div> + <a href="{{$.RepoLink}}">{{.Name}}</a> + {{if .IsMirror}}<div class="ui label">{{$.i18n.Tr "mirror"}}</div>{{end}} + {{if .IsFork}}<div class="fork-flag">{{$.i18n.Tr "repo.forked_from"}} <a href="{{.BaseRepo.RepoLink}}">{{SubStr .BaseRepo.RepoLink 1 -1}}</a></div>{{end}} + </div> - <div class="ui right"> - <div class="ui labeled button" tabindex="0"> - <a class="ui grey button" href="{{$.RepoLink}}/action/{{if $.IsWatchingRepo}}un{{end}}watch?redirect_to={{$.Link}}"> - <i class="icon fa fa-eye{{if not $.IsWatchingRepo}}-slash{{end}}"></i>{{if $.IsWatchingRepo}}{{$.i18n.Tr "repo.unwatch"}}{{else}}{{$.i18n.Tr "repo.watch"}}{{end}} - </a> - <a class="ui basic label" href="{{.RepoLink}}/watchers"> - {{.NumWatches}} - </a> - </div> - <div class="ui labeled button" tabindex="0"> - <a class="ui grey button" href="{{$.RepoLink}}/action/{{if $.IsStaringRepo}}un{{end}}star?redirect_to={{$.Link}}"> - <i class="icon fa-star{{if not $.IsStaringRepo}}-o{{end}}"></i>{{if $.IsStaringRepo}}{{$.i18n.Tr "repo.unstar"}}{{else}}{{$.i18n.Tr "repo.star"}}{{end}} - </a> - <a class="ui basic label" href="{{.RepoLink}}/stars"> - {{.NumStars}} - </a> - </div> - {{if .CanBeForked}} - <div class="ui labeled button" tabindex="0"> - <a class="ui grey button {{if eq .OwnerID $.SignedUserID}}poping up{{end}}" {{if not (eq .OwnerID $.SignedUserID)}}href="{{AppSubUrl}}/repo/fork/{{.ID}}"{{else}} data-content="{{$.i18n.Tr "repo.fork_from_self"}}" data-position="top center" data-variation="tiny"{{end}}> - <i class="icon octicon octicon-repo-forked"></i>{{$.i18n.Tr "repo.fork"}} - </a> - <a class="ui basic label" href="{{.RepoLink}}/forks"> - {{.NumForks}} - </a> - </div> - {{end}} - </div> - </div> - </div><!-- end column --> - </div><!-- end grid --> + <div class="ui right"> + <div class="ui labeled button" tabindex="0"> + <a class="ui button" href="{{$.RepoLink}}/action/{{if $.IsWatchingRepo}}un{{end}}watch?redirect_to={{$.Link}}"> + <i class="icon fa fa-eye{{if not $.IsWatchingRepo}}-slash{{end}}"></i>{{if $.IsWatchingRepo}}{{$.i18n.Tr "repo.unwatch"}}{{else}}{{$.i18n.Tr "repo.watch"}}{{end}} + </a> + <a class="ui basic label" href="{{.RepoLink}}/watchers"> + {{.NumWatches}} + </a> + </div> + <div class="ui labeled button" tabindex="0"> + <a class="ui button" href="{{$.RepoLink}}/action/{{if $.IsStaringRepo}}un{{end}}star?redirect_to={{$.Link}}"> + <i class="icon fa-star{{if not $.IsStaringRepo}}-o{{end}}"></i>{{if $.IsStaringRepo}}{{$.i18n.Tr "repo.unstar"}}{{else}}{{$.i18n.Tr "repo.star"}}{{end}} + </a> + <a class="ui basic label" href="{{.RepoLink}}/stars"> + {{.NumStars}} + </a> + </div> + {{if .CanBeForked}} + <div class="ui labeled button" tabindex="0"> + <a class="ui button {{if eq .OwnerID $.SignedUserID}}poping up{{end}}" {{if not (eq .OwnerID $.SignedUserID)}}href="{{AppSubUrl}}/repo/fork/{{.ID}}"{{else}} data-content="{{$.i18n.Tr "repo.fork_from_self"}}" data-position="top center" data-variation="tiny"{{end}}> + <i class="icon octicon octicon-repo-forked"></i>{{$.i18n.Tr "repo.fork"}} + </a> + <a class="ui basic label" href="{{.RepoLink}}/forks"> + {{.NumForks}} + </a> + </div> + {{end}} + </div> + </div> + </div><!-- end column --> + </div><!-- end grid --> </div><!-- end container --> <div class="ui divider"></div> {{end}} diff --git a/templates/repo/header_old.tmpl b/templates/repo/header_old.tmpl deleted file mode 100644 index 23a3e088..00000000 --- a/templates/repo/header_old.tmpl +++ /dev/null @@ -1,65 +0,0 @@ -{{with .Repository}} -<div id="repo-header" class="clear"> - <div class="container clear"> - <h1 id="repo-header-name" class="left public"> - <i class="mega-octicon octicon-{{if .IsPrivate}}lock{{else if .IsMirror}}repo-clone{{else if .IsFork}}repo-forked{{else}}repo{{end}}"></i> - <a class="author" href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a> - <span class="divider">/</span> - <a class="repo text-bold" href="{{$.RepoLink}}">{{.Name}}</a> - {{if .IsMirror}}<span class="label label-gray">{{$.i18n.Tr "mirror"}}</span>{{end}} - {{if .IsFork}}<span class="fork-flag">forked from <a href="{{.BaseRepo.RepoLink}}">{{SubStr .BaseRepo.RepoLink 1 -1}}</a></span>{{end}} - </h1> - <ul id="repo-header-meta" class="right menu menu-line"> - <li id="repo-header-download" class="drop"> - <a id="repo-header-download-btn" href="#"> - <button class="btn btn-black text-bold btn-radius"> - <i class="octicon octicon-cloud-download"></i> - </button> - </a> - <div id="repo-header-download-drop" class="drop-down"> - <div id="repo-clone" class="clear"> - {{if not $.DisableSSH}} - <button class="btn btn-blue left btn-left-radius" id="repo-clone-ssh" data-link="{{$.CloneLink.SSH}}">SSH</button> - {{end}} - <button class="btn {{if $.DisableSSH}}btn-blue{{else}}btn-gray{{end}} left" id="repo-clone-https" data-link="{{$.CloneLink.HTTPS}}">HTTPS</button> - <input id="repo-clone-url" class="ipt ipt-disabled left" value="{{if $.DisableSSH}}{{$.CloneLink.HTTPS}}{{else}}{{$.CloneLink.SSH}}{{end}}" onclick="this.select();" readonly /> - <button id="repo-clone-copy" class="btn btn-black left btn-right-radius" data-copy-val="val" data-copy-from="#repo-clone-url" original-title="{{$.i18n.Tr "repo.click_to_copy"}}" data-original-title="{{$.i18n.Tr "repo.click_to_copy"}}" data-after-title="{{$.i18n.Tr "repo.copied"}}">{{$.i18n.Tr "repo.copy_link"}}</button> - <p class="text-center" id="repo-clone-help">{{$.i18n.Tr "repo.clone_helper" "http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository" | Str2html}}</p> - <hr/> - <div class="text-center" id="repo-clone-zip"> - <a class="btn btn-green btn-radius" href="{{$.RepoLink}}/archive/{{EscapePound $.BranchName}}.zip"><i class="octicon octicon-file-zip"></i>ZIP</a> - <a class="btn btn-green btn-radius" href="{{$.RepoLink}}/archive/{{EscapePound $.BranchName}}.tar.gz"><i class="octicon octicon-file-zip"></i>TAR.GZ</a> - </div> - </div> - </div> - </li> - <li id="repo-header-watch"> - <a id="repo-header-watch-btn" href="{{$.RepoLink}}/action/{{if $.IsWatchingRepo}}un{{end}}watch"> - <button class="btn btn-gray text-bold btn-radius"> - <i class="octicon octicon-eye-watch"></i>{{if $.IsWatchingRepo}}{{$.i18n.Tr "repo.unwatch"}}{{else}}{{$.i18n.Tr "repo.watch"}}{{end}}<span class="num">{{.NumWatches}}</span> - </button> - </a> - </li> - <li id="repo-header-star"> - <a id="repo-header-star-btn" href="{{$.RepoLink}}/action/{{if $.IsStaringRepo}}un{{end}}star"> - <button class="btn btn-gray text-bold btn-radius"> - <i class="octicon octicon-star"></i>{{if $.IsStaringRepo}}{{$.i18n.Tr "repo.unstar"}}{{else}}{{$.i18n.Tr "repo.star"}}{{end}} - <span class="num">{{.NumStars}}</span> - </button> - </a> - </li> - {{if .CanBeForked}} - <li id="repo-header-fork"> - <a id="repo-header-fork-btn" {{if or (not $.IsRepositoryAdmin) $.Owner.IsOrganization}}href="{{AppSubUrl}}/repo/fork/{{.ID}}"{{end}}> - <button class="btn btn-gray text-bold btn-radius"> - <i class="octicon octicon-repo-forked"></i>{{$.i18n.Tr "repo.fork"}} - <span class="num">{{.NumForks}}</span> - </button> - </a> - - </li> - {{end}} - </ul> - </div> -</div> -{{end}} diff --git a/templates/repo/home.tmpl b/templates/repo/home.tmpl index 0be1b84d..4069eff3 100644 --- a/templates/repo/home.tmpl +++ b/templates/repo/home.tmpl @@ -1,81 +1,117 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div id="repo-wrapper"> - {{template "repo/header_old" .}} - <div id="repo-content" class="clear container"> - <div id="repo-main" class="left grid-5-6"> - <p id="repo-desc"> - {{if .Repository.DescriptionHtml}}<span class="description">{{.Repository.DescriptionHtml}}</span>{{else}}<span class="no-description text-italic">{{.i18n.Tr "repo.no_desc"}}</span>{{end}} - <a class="link" href="{{.Repository.Website}}">{{.Repository.Website}}</a> - </p> - <ul id="repo-file-nav" class="clear menu menu-line"> - {{if and .IsRepositoryAdmin .Repository.BaseRepo}} - {{ $baseRepo := .Repository.BaseRepo}} - <li> - <a href="{{AppSubUrl}}/{{$baseRepo.Owner.Name}}/{{$baseRepo.Name}}/compare/{{$.BaseDefaultBranch}}...{{$.Owner.Name}}:{{$.BranchName}}"> - <button class="btn btn-green btn-small btn-radius" id="repo-compare-btn"><i class="octicon octicon-git-compare"></i></button> - </a> - </li> - {{end}} - <li id="repo-branch-switch" class="down drop"> - <a> - <button class="btn btn-gray btn-medium btn-radius"> - <i class="octicon octicon-git-branch"></i> {{if .IsViewBranch}}{{.i18n.Tr "repo.branch"}}{{else}}{{.i18n.Tr "repo.tree"}}{{end}}: - <strong id="repo-branch-current">{{if .IsViewBranch}}{{.BranchName}}{{else}}{{ShortSha .BranchName}}{{end}}</strong> - </button> - </a> - <div class="drop-down panel"> - <p class="panel-header text-bold">{{.i18n.Tr "repo.branch_and_tags"}}</p> - <!-- <input id="repo-branch-filter-ipt" class="ipt ipt-large" type="text" placeholder="find branches / tags"/> --> - <div id="repo-branch-tag"> - <ul class="menu menu-line tab-nav clear" id="repo-branch-tab-nav"> - <li class="js-tab-nav {{if not .IsTag}}js-tab-nav-show{{end}} left" data-tab-target="#repo-branch-list"><a>{{.i18n.Tr "repo.branches"}}</a></li> - <li class="js-tab-nav {{if .IsTag}}js-tab-nav-show{{end}} left" data-tab-target="#repo-tag-list"><a>{{.i18n.Tr "repo.tags"}}</a></li> - </ul> - <ul class="menu menu-vertical switching-list {{if .IsTag}}hide{{end}}" id="repo-branch-list"> - {{range .Branches}} - <li {{if eq . $.BranchName}}class="checked"{{end}}><a href="{{$.RepoLink}}/src/{{EscapePound .}}"><i class="octicon octicon-check"></i>{{.}}</a></li> - {{end}} - </ul> - <ul class="menu menu-vertical switching-list {{if not .IsTag}}hide{{end}}" id="repo-tag-list"> - {{range .Tags}} - <li {{if eq . $.BranchName}}class="checked"{{end}}><a href="{{$.RepoLink}}/src/{{EscapePound .}}"><i class="octicon octicon-check"></i>{{.}}</a></li> - {{end}} - </ul> - </div> - </div> - </li> - <li id="repo-bread" class="breads"> - <a class="title bread" href="{{.RepoLink}}/src/{{EscapePound .BranchName}}">{{.Repository.Name}}</a> - {{ $n := len .Treenames}} - {{ $l := Subtract $n 1}} - {{range $i, $v := .Treenames}} - {{if eq $i $l}} - <span class="bread">{{$v}}</span> - {{else}} - {{ $p := index $.Paths $i}} - <span class="bread"><a href="{{EscapePound $.BranchLink}}/{{EscapePound $p}}">{{$v}}</a></span> - {{end}} - {{end}} - </li> - <!-- <li id="repo-commits-jump" class="repo-jump right"> - <a href="#"> - <button class="btn btn-small btn-gray btn-right-radius"><i class="octicon octicon-git-commit"></i></button> +{{template "base/head" .}} +<div class="repository file list"> + {{template "repo/header" .}} + <div class="ui container"> + {{template "repo/sidebar" .}} + <div class="ui grid"> + <div class="ui ten wide column"> + <p id="repo-desc"> + {{if .Repository.DescriptionHtml}}<span class="description">{{.Repository.DescriptionHtml}}</span>{{else}}<span class="no-description text-italic">{{.i18n.Tr "repo.no_desc"}}</span>{{end}} + <a class="link" href="{{.Repository.Website}}">{{.Repository.Website}}</a> + </p> + </div> + <div class="ui six wide column"> + <div class="ui action small clone input"> + {{if not $.DisableSSH}} + <button class="ui blue basic clone button" id="repo-clone-ssh" data-link="{{.CloneLink.SSH}}"> + SSH + </button> + {{end}} + <button class="ui {{if $.DisableSSH}}blue{{end}} basic clone button" id="repo-clone-https" data-link="{{.CloneLink.HTTPS}}"> + {{if eq Protocol "http"}}HTTP{{else}}HTTPS{{end}} + </button> + <input id="repo-clone-url" value="{{if $.DisableSSH}}{{$.CloneLink.HTTPS}}{{else}}{{$.CloneLink.SSH}}{{end}}" readonly> + <button class="ui basic icon button poping up clipboard" id="clipboard-btn" data-original="{{.i18n.Tr "repo.copy_link"}}" data-success="{{.i18n.Tr "repo.copy_link_success"}}" data-error="{{.i18n.Tr "repo.copy_link_error"}}" data-content="{{.i18n.Tr "repo.copy_link"}}" data-variation="inverted tiny" data-clipboard-target="#repo-clone-url"> + <i class="octicon octicon-clippy"></i> + </button> + <div class="ui basic jump dropdown icon button"> + <i class="download icon"></i> + <div class="menu"> + <a class="item" href="{{$.RepoLink}}/archive/{{EscapePound $.BranchName}}.zip"><i class="icon octicon octicon-file-zip"></i> ZIP</a> + <a class="item" href="{{$.RepoLink}}/archive/{{EscapePound $.BranchName}}.tar.gz"><i class="icon octicon octicon-file-zip"></i> TAR.GZ</a> + </div> + </div> + </div> + </div> + </div> + + <ul class="head meta"> + {{if and .IsRepositoryAdmin .Repository.BaseRepo}} + <li> + {{ $baseRepo := .Repository.BaseRepo}} + <a href="{{AppSubUrl}}/{{$baseRepo.Owner.Name}}/{{$baseRepo.Name}}/compare/{{$.BaseDefaultBranch}}...{{$.Owner.Name}}:{{$.BranchName}}"> + <button class="ui green small button"><i class="octicon octicon-git-compare"></i></button> + </a> + </li> + {{end}} + <li> + <div class="choose reference"> + <div class="ui floating filter dropdown" data-no-results="{{.i18n.Tr "repo.pulls.no_results"}}"> + <div class="ui basic small button"> + <span class="text"> + <i class="octicon octicon-git-branch"></i> + {{if .IsViewBranch}}{{.i18n.Tr "repo.branch"}}{{else}}{{.i18n.Tr "repo.tree"}}{{end}}: + <strong>{{if .IsViewBranch}}{{.BranchName}}{{else}}{{ShortSha .BranchName}}{{end}}</strong> + </span> + <i class="dropdown icon"></i> + </div> + <div class="menu"> + <div class="ui icon search input"> + <i class="filter icon"></i> + <input name="search" placeholder="{{.i18n.Tr "repo.filter_branch_and_tag"}}..."> + </div> + <div class="header"> + <div class="ui grid"> + <div class="two column row"> + <a class="reference column" href="#" data-target="#branch-list"> + <span class="text {{if .IsViewBranch}}black{{end}}"> + <i class="icon octicon octicon-git-branch"></i> {{.i18n.Tr "repo.branches"}} + </span> </a> - </li> - <li id="repo-find-jump" class="repo-jump right"> - <a href="#"> - <button class="btn btn-small btn-gray btn-left-radius"><i class="octicon octicon-list-unordered"></i></button> + <a class="reference column" href="#" data-target="#tag-list"> + <span class="text {{if .IsTag}}black{{end}}"> + <i class="reference tags icon"></i> {{.i18n.Tr "repo.tags"}} + </span> </a> - </li> --> - </ul> - {{if .IsFile}} - {{template "repo/view_file" .}} + </div> + </div> + </div> + <div id="branch-list" class="scrolling menu" {{if .IsTag}}style="display: none"{{end}}> + {{range .Branches}} + <div class="item {{if eq $.BranchName .}}selected{{end}}" data-url="{{$.RepoLink}}/src/{{EscapePound .}}">{{.}}</div> + {{end}} + </div> + <div id="tag-list" class="scrolling menu" {{if .IsViewBranch}}style="display: none"{{end}}> + {{range .Tags}} + <div class="item {{if eq $.BranchName .}}selected{{end}}" data-url="{{$.RepoLink}}/src/{{EscapePound .}}">{{.}}</div> + {{end}} + </div> + </div> + </div> + </div> + </li> + <li> + <div class="ui breadcrumb"> + <a class="section" href="{{.RepoLink}}/src/{{EscapePound .BranchName}}">{{.Repository.Name}}</a> + {{ $n := len .Treenames}} + {{ $l := Subtract $n 1}} + {{range $i, $v := .Treenames}} + <div class="divider"> / </div> + {{if eq $i $l}} + <span class="active section">{{$v}}</span> {{else}} - {{template "repo/view_list" .}} + {{ $p := index $.Paths $i}} + <span class="section"><a href="{{EscapePound $.BranchLink}}/{{EscapePound $p}}">{{$v}}</a></span> {{end}} + {{end}} </div> - {{template "repo/sidebar" .}} - </div> + </li> + </ul> + {{if .IsFile}} + {{template "repo/view_file" .}} + {{else}} + {{template "repo/view_list" .}} + {{end}} + </div> </div> -{{template "ng/base/footer" .}} +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/repo/issue/comment_tab.tmpl b/templates/repo/issue/comment_tab.tmpl index a2b5bea2..d2880feb 100644 --- a/templates/repo/issue/comment_tab.tmpl +++ b/templates/repo/issue/comment_tab.tmpl @@ -4,7 +4,7 @@ <a class="item" data-tab="preview" data-url="{{AppSubUrl}}/api/v1/markdown" data-context="{{.RepoLink}}">{{.i18n.Tr "repo.release.preview"}}</a> </div> <div class="ui bottom attached active tab segment" data-tab="write"> - <textarea id="content" name="content"></textarea> + <textarea id="content" name="content" tabindex="4"></textarea> </div> <div class="ui bottom attached tab segment markdown" data-tab="preview"> {{.i18n.Tr "repo.release.loading"}} diff --git a/templates/repo/issue/labels.tmpl b/templates/repo/issue/labels.tmpl index dd84ce41..f622d1a2 100644 --- a/templates/repo/issue/labels.tmpl +++ b/templates/repo/issue/labels.tmpl @@ -2,6 +2,7 @@ <div class="repository labels"> {{template "repo/header" .}} <div class="ui container"> + {{template "repo/sidebar" .}} <div class="navbar"> {{template "repo/issue/navbar" .}} {{if .IsRepositoryAdmin}} diff --git a/templates/repo/issue/list.tmpl b/templates/repo/issue/list.tmpl index e0ae6977..479de75b 100644 --- a/templates/repo/issue/list.tmpl +++ b/templates/repo/issue/list.tmpl @@ -2,10 +2,15 @@ <div class="repository"> {{template "repo/header" .}} <div class="ui container"> + {{template "repo/sidebar" .}} <div class="navbar"> {{template "repo/issue/navbar" .}} <div class="ui right"> + {{if .PageIsIssueList}} <a class="ui green button" href="{{.RepoLink}}/issues/new">{{.i18n.Tr "repo.issues.new"}}</a> + {{else}} + <a class="ui green button {{if not .HasForkedRepo}}disabled{{end}}" href="{{.RepoLink}}/compare/{{.BranchName}}...{{.SignedUserName}}:{{.BranchName}}">{{.i18n.Tr "repo.pulls.new"}}</a> + {{end}} </div> </div> <div class="ui divider"></div> diff --git a/templates/repo/issue/milestones.tmpl b/templates/repo/issue/milestones.tmpl index 248b81e2..7a626065 100644 --- a/templates/repo/issue/milestones.tmpl +++ b/templates/repo/issue/milestones.tmpl @@ -2,6 +2,7 @@ <div class="repository milestones"> {{template "repo/header" .}} <div class="ui container"> + {{template "repo/sidebar" .}} <div class="navbar"> {{template "repo/issue/navbar" .}} {{if .IsRepositoryAdmin}} diff --git a/templates/repo/issue/navbar.tmpl b/templates/repo/issue/navbar.tmpl index 327011af..d6d1074c 100644 --- a/templates/repo/issue/navbar.tmpl +++ b/templates/repo/issue/navbar.tmpl @@ -1,6 +1,8 @@ <div class="ui compact small menu"> + {{if not .PageIsList}} <a class="{{if .PageIsIssueList}}active{{end}} item" href="{{.RepoLink}}/issues">{{.i18n.Tr "repo.issues"}}</a> <a class="{{if .PageIsPullList}}active{{end}} item" href="{{.RepoLink}}/pulls">{{.i18n.Tr "repo.pulls"}}</a> + {{end}} <a class="{{if .PageIsLabels}}active{{end}} item" href="{{.RepoLink}}/labels">{{.i18n.Tr "repo.labels"}}</a> <a class="{{if .PageIsMilestones}}active{{end}} item" href="{{.RepoLink}}/milestones">{{.i18n.Tr "repo.milestones"}}</a> </div>
\ No newline at end of file diff --git a/templates/repo/issue/new_form.tmpl b/templates/repo/issue/new_form.tmpl index b3cf9925..8576d7db 100644 --- a/templates/repo/issue/new_form.tmpl +++ b/templates/repo/issue/new_form.tmpl @@ -13,7 +13,7 @@ </a> <div class="ui segment content"> <div class="field"> - <input name="title" placeholder="{{.i18n.Tr "repo.milestones.title"}}" value="{{.title}}" autofocus required> + <input name="title" placeholder="{{.i18n.Tr "repo.milestones.title"}}" value="{{.title}}" tabindex="3" autofocus required> </div> {{template "repo/issue/comment_tab" .}} <div class="text right"> diff --git a/templates/repo/issue/view.tmpl b/templates/repo/issue/view.tmpl index dff8910b..506e4e3f 100644 --- a/templates/repo/issue/view.tmpl +++ b/templates/repo/issue/view.tmpl @@ -5,7 +5,11 @@ <div class="navbar"> {{template "repo/issue/navbar" .}} <div class="ui right"> - <a class="ui green button" href="{{$.RepoLink}}/issues/new">{{.i18n.Tr "repo.issues.new"}}</a> + {{if .PageIsIssueList}} + <a class="ui green button" href="{{.RepoLink}}/issues/new">{{.i18n.Tr "repo.issues.new"}}</a> + {{else}} + <a class="ui green button {{if not .HasForkedRepo}}disabled{{end}}" href="{{.RepoLink}}/compare/{{.BranchName}}...{{.SignedUserName}}:{{.BranchName}}">{{.i18n.Tr "repo.pulls.new"}}</a> + {{end}} </div> </div> <div class="ui divider"></div> diff --git a/templates/repo/issue/view_content.tmpl b/templates/repo/issue/view_content.tmpl index 2fd0d064..56519e78 100644 --- a/templates/repo/issue/view_content.tmpl +++ b/templates/repo/issue/view_content.tmpl @@ -206,16 +206,16 @@ <div class="text right"> {{if and .IsIssueOwner (not .DisableStatusChange)}} {{if .Issue.IsClosed}} - <div id="status-button" class="ui green basic button" data-status="{{.i18n.Tr "repo.issues.reopen_issue"}}" data-status-and-comment="{{.i18n.Tr "repo.issues.reopen_comment_issue"}}" data-status-val="reopen"> + <div id="status-button" class="ui green basic button" tabindex="6" data-status="{{.i18n.Tr "repo.issues.reopen_issue"}}" data-status-and-comment="{{.i18n.Tr "repo.issues.reopen_comment_issue"}}" data-status-val="reopen"> {{.i18n.Tr "repo.issues.reopen_issue"}} </div> {{else}} - <div id="status-button" class="ui red basic button" data-status="{{.i18n.Tr "repo.issues.close_issue"}}" data-status-and-comment="{{.i18n.Tr "repo.issues.close_comment_issue"}}" data-status-val="close"> + <div id="status-button" class="ui red basic button" tabindex="6" data-status="{{.i18n.Tr "repo.issues.close_issue"}}" data-status-and-comment="{{.i18n.Tr "repo.issues.close_comment_issue"}}" data-status-val="close"> {{.i18n.Tr "repo.issues.close_issue"}} </div> {{end}} {{end}} - <button class="ui green button"> + <button class="ui green button" tabindex="5"> {{.i18n.Tr "repo.issues.create_comment"}} </button> </div> @@ -326,14 +326,14 @@ <a class="preview item" data-url="/api/v1/markdown" data-context="{{$.RepoLink}}">{{$.i18n.Tr "repo.release.preview"}}</a> </div> <div class="ui bottom attached active write tab segment"> - <textarea id="content" name="content"></textarea> + <textarea tabindex="1" id="content" name="content"></textarea> </div> <div class="ui bottom attached tab preview segment markdown emojify"> {{$.i18n.Tr "repo.release.loading"}} </div> <div class="text right edit buttons"> - <div class="ui basic blue cancel button">{{.i18n.Tr "repo.issues.cancel"}}</div> - <div class="ui green save button">{{.i18n.Tr "repo.issues.save"}}</div> + <div class="ui basic blue cancel button" tabindex="3">{{.i18n.Tr "repo.issues.cancel"}}</div> + <div class="ui green save button" tabindex="2">{{.i18n.Tr "repo.issues.save"}}</div> </div> </div> </div> diff --git a/templates/repo/migrate.tmpl b/templates/repo/migrate.tmpl index c1ed2110..222b2750 100644 --- a/templates/repo/migrate.tmpl +++ b/templates/repo/migrate.tmpl @@ -36,22 +36,22 @@ <div class="inline required field {{if .Err_Owner}}error{{end}}"> <label>{{.i18n.Tr "repo.owner"}}</label> - <div class="ui selection dropdown"> + <div class="ui selection owner dropdown"> <input type="hidden" id="uid" name="uid" value="{{.ContextUser.Id}}" required> <span class="text"> <img class="ui mini image" src="{{.ContextUser.AvatarLink}}"> - {{.ContextUser.Name}} + {{.ContextUser.ShortName 20}} </span> <i class="dropdown icon"></i> <div class="menu"> <div class="item" data-value="{{.SignedUser.Id}}"> <img class="ui mini image" src="{{.SignedUser.AvatarLink}}"> - {{.SignedUser.Name}} + {{.SignedUser.ShortName 20}} </div> {{range .Orgs}} <div class="item" data-value="{{.Id}}"> <img class="ui mini image" src="{{.AvatarLink}}"> - {{.Name}} + {{.ShortName 20}} </div> {{end}} </div> diff --git a/templates/repo/pulls/fork.tmpl b/templates/repo/pulls/fork.tmpl index cc2005c2..b2f857da 100644 --- a/templates/repo/pulls/fork.tmpl +++ b/templates/repo/pulls/fork.tmpl @@ -11,23 +11,23 @@ {{template "base/alert" .}} <div class="inline required field {{if .Err_Owner}}error{{end}}"> <label>{{.i18n.Tr "repo.owner"}}</label> - <div class="ui selection dropdown"> + <div class="ui selection owner dropdown"> <input type="hidden" id="uid" name="uid" value="{{.ContextUser.Id}}" required> <span class="text"> <img class="ui mini image" src="{{.ContextUser.AvatarLink}}"> - {{.ContextUser.Name}} + {{.ContextUser.ShortName 20}} </span> <i class="dropdown icon"></i> <div class="menu"> <div class="item" data-value="{{.SignedUser.Id}}"> <img class="ui mini image" src="{{.SignedUser.AvatarLink}}"> - {{.SignedUser.Name}} + {{.SignedUser.ShortName 20}} </div> {{range .Orgs}} {{if .IsOwnedBy $.SignedUser.Id}} <div class="item" data-value="{{.Id}}"> <img class="ui mini image" src="{{.AvatarLink}}"> - {{.Name}} + {{.ShortName 20}} </div> {{end}} {{end}} @@ -52,8 +52,8 @@ <span class="help">{{.i18n.Tr "repo.fork_visiblity_helper"}}</span> </div> <div class="inline field {{if .Err_Description}}error{{end}}"> - <label for="desc">{{.i18n.Tr "repo.repo_desc"}}</label> - <textarea id="desc" name="desc">{{.desc}}</textarea> + <label for="description">{{.i18n.Tr "repo.repo_desc"}}</label> + <textarea id="description" name="description">{{.description}}</textarea> </div> <div class="inline field"> diff --git a/templates/repo/release/edit.tmpl b/templates/repo/release/edit.tmpl deleted file mode 100644 index 062884e2..00000000 --- a/templates/repo/release/edit.tmpl +++ /dev/null @@ -1,59 +0,0 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div id="repo-wrapper"> - {{template "repo/header_old" .}} - <div id="repo-content" class="clear container"> - <div id="repo-main" class="left grid-5-6"> - {{template "ng/base/alert" .}} - <div id="release"> - <h4 id="release-head">{{.i18n.Tr "repo.release.edit_release"}}</h4> - <form class="form" id="release-new-form" action="{{.RepoLink}}/releases/edit/{{.Release.TagName}}" method="post"> - {{.CsrfTokenHtml}} - <div class="field"> - <b>{{.Release.TagName}}</b> - <span class="target-at">@</span> - <strong>{{.Repository.DefaultBranch}}</strong> - </div> - <div class="field"> - <input class="ipt ipt-large ipt-radius grid-4-5" id="release-new-title" name="title" placeholder="{{.i18n.Tr "repo.release.release_title"}}" value="{{.Release.Title}}" required> - </div> - <br> - <div class="field grid-4-5"> - <div class="md-help pull-right"> - {{.i18n.Tr "repo.release.content_with_md" "https://help.github.com/articles/markdown-basics" | Str2html}} - </div> - <div class="clear"> - <ul class="tab-nav list-unstyled"> - <li class="js-tab-nav js-tab-nav-show left" data-tab-target="#release-textarea"> - <button class="btn btn-medium btn-gray btn-left-radius">{{.i18n.Tr "repo.release.write"}}</button> - </li> - <li class="js-tab-nav left markdown-preview" id="release-preview-btn" data-tab-target="#release-preview" data-ajax="{{AppSubUrl}}/api/v1/markdown" data-ajax-name="release-preview" data-ajax-context="{{.RepoLink}}" data-ajax-method="post" data-preview="#release-preview"> - <button class="btn btn-medium btn-gray btn-right-radius">{{.i18n.Tr "repo.release.preview"}}</button> - </li> - </ul> - </div> - <div id="release-textarea"> - <div class="form-group"> - <textarea class="ipt ipt-large ipt-radius" name="content" id="release-new-content" rows="10" placeholder="{{.i18n.Tr "repo.release.content_placeholder"}}" data-ajax-rel="release-preview" data-ajax-val="val" data-ajax-field="text" required>{{.Release.Note}}</textarea> - </div> - </div> - <div class="markdown hide" id="release-preview">{{.i18n.Tr "repo.release.loading"}}</div> - <br> - <hr> - <div class="text-right"> - <input class="ipt-chk" name="prerelease" type="checkbox" {{if .Release.IsPrerelease}}checked{{end}}/> - <span><strong>{{.i18n.Tr "repo.release.prerelease_desc"}}</strong></span> - <p>{{.i18n.Tr "repo.release.prerelease_helper"}}</p> - <button class="btn btn-large btn-green btn-radius">Publish release</button> - {{if .Release.IsDraft}} - <input class="btn btn-large btn-gary btn-radius" type="submit" name="draft" value="{{.i18n.Tr "repo.release.save_draft"}}"/> - {{end}} - </div> - </div> - </form> - </div> - </div> - {{template "repo/sidebar" .}} - </div> -</div> -{{template "ng/base/footer" .}}
\ No newline at end of file diff --git a/templates/repo/release/list.tmpl b/templates/repo/release/list.tmpl index eb3ba91d..b8a8dff2 100644 --- a/templates/repo/release/list.tmpl +++ b/templates/repo/release/list.tmpl @@ -1,73 +1,81 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div id="repo-wrapper"> - {{template "repo/header_old" .}} - <div id="repo-content" class="clear container"> - <div id="repo-main" class="left grid-5-6"> - <div id="release"> - <h4 id="release-head"> - <span class="release"><strong>{{.i18n.Tr "repo.release.releases"}}</strong></span><!-- / - <a class="tag" href="{{AppSubUrl}}/{tag_link}">Tags</a> --> - <!-- comment : if in tag page, show a.release and span.tag please --> - {{if .IsRepositoryAdmin}} - <a class="btn" href="{{$.RepoLink}}/releases/new"> - <button class="btn btn-medium btn-blue btn-radius"> - {{.i18n.Tr "repo.release.new_release"}} - </button> - </a> - {{end}} - </h4> - <ul id="release-list" class="list-unstyled"> - {{range .Releases}} - <li class="release-item clearfix" id="release-{{.Sha1}}"> - {{if .PublisherId}} - <div class="grid-1-6 text-right release-meta"> - {{if .IsDraft}} - <span class="label label-blue label-radius">{{$.i18n.Tr "repo.release.draft"}}</span> - {{else if .IsPrerelease}} - <span class="label label-orange label-radius">{{$.i18n.Tr "repo.release.prerelease"}}</span> - {{else}} - <span class="label label-green label-radius">{{$.i18n.Tr "repo.release.stable"}}</span> - {{end}} - <a class="tag" href="{{$.RepoLink}}/src/{{.TagName}}" rel="nofollow"><i class="fa fa-tag"></i> {{.TagName}}</a> - <a class="commit" href="{{$.RepoLink}}/src/{{.Sha1}}" rel="nofollow"><i class="fa fa-code"></i> {{ShortSha .Sha1}}</a> - </div> - <div class="grid-9-12 release-detail left"> - <h4 class="title"><a href="{{$.RepoLink}}/src/{{.TagName}}">{{.Title}}</a> <small>(<a href="{{$.RepoLink}}/releases/edit/{{.TagName}}" rel="nofollow">{{$.i18n.Tr "repo.release.edit"}}</a>)</small></h4> - <p class="info"> - <span class="author"><img class="avatar-20" src="{{.Publisher.AvatarLink}}"> - <a href="{{AppSubUrl}}/{{.Publisher.Name}}">{{.Publisher.Name}}</a></span> - {{if .Created}}<span class="time">{{TimeSince .Created $.Lang}}</span>{{end}} - <span class="ahead">{{$.i18n.Tr "repo.release.ahead" .NumCommitsBehind .Target | Str2html}}</span> - </p> - <div class="markdown desc"> - {{Str2html .Note}} - </div> - <p class="download"> - <a class="btn btn-gray btn-large btn-radius" href="{{$.RepoLink}}/archive/{{.TagName}}.zip" rel="nofollow"><i class="fa fa-download"></i> {{$.i18n.Tr "repo.release.source_code"}} (ZIP)</a> - <a class="btn btn-gray btn-large btn-radius" href="{{$.RepoLink}}/archive/{{.TagName}}.tar.gz"><i class="fa fa-download"></i> {{$.i18n.Tr "repo.release.source_code"}} (TAR.GZ)</a> - </p> - <span class="dot"> </span> - </div> - {{else}} - <div class="grid-1-6 text-right release-meta"> - <a class="commit" href="{{$.RepoLink}}/src/{{.Sha1}}" rel="nofollow"><i class="fa fa-code"></i> {{ShortSha .Sha1}}</a> - </div> - <div class="grid-9-12 release-detail left"> - <h5 class="title"><a href="{{$.RepoLink}}/src/{{.TagName}}" rel="nofollow">{{.TagName}}</a> <i class="fa fa-tag"></i></h5> - <p class="download"> - <a class="download-link" href="{{$.RepoLink}}/archive/{{.TagName}}.zip" rel="nofollow"><i class="fa fa-download"></i> ZIP</a> - <a class="download-link" href="{{$.RepoLink}}/archive/{{.TagName}}.tar.gz"><i class="fa fa-download"></i> TAR.GZ</a> - </p> - <span class="dot"> </span> - </div> - {{end}} - </li> - {{end}} - </ul> +{{template "base/head" .}} +<div class="repository release"> + {{template "repo/header" .}} + <div class="ui container"> + {{template "repo/sidebar" .}} + {{template "base/alert" .}} + <h2 class="ui header"> + {{.i18n.Tr "repo.release.releases"}} + {{if .IsRepositoryAdmin}} + <div class="ui right"> + <a class="ui small green button" href="{{$.RepoLink}}/releases/new"> + {{.i18n.Tr "repo.release.new_release"}} + </a> + </div> + {{end}} + </h2> + <ul id="release-list"> + {{range .Releases}} + <li class="ui grid"> + <div class="ui four wide column meta"> + {{if .PublisherID}} + {{if .IsDraft}} + <span class="ui yellow label">{{$.i18n.Tr "repo.release.draft"}}</span> + {{else if .IsPrerelease}} + <span class="ui orange label">{{$.i18n.Tr "repo.release.prerelease"}}</span> + {{else}} + <span class="ui green label">{{$.i18n.Tr "repo.release.stable"}}</span> + {{end}} + <span class="tag text blue"> + <a href="{{$.RepoLink}}/src/{{.TagName}}" rel="nofollow"><i class="tag icon"></i> {{.TagName}}</a> + </span> + {{end}} + <span class="commit"> + <a href="{{$.RepoLink}}/src/{{.Sha1}}" rel="nofollow"><i class="code icon"></i> {{ShortSha .Sha1}}</a> + </span> + </div> + <div class="ui twelve wide column detail"> + {{if .PublisherID}} + <h3> + <a href="{{$.RepoLink}}/src/{{.TagName}}">{{.Title}}</a> + {{if $.IsRepositoryAdmin}}<small>(<a href="{{$.RepoLink}}/releases/edit/{{.TagName}}" rel="nofollow">{{$.i18n.Tr "repo.release.edit"}}</a>)</small>{{end}} + </h3> + <p class="text grey"> + <span class="author"> + <img class="img-10" src="{{.Publisher.AvatarLink}}"> + <a href="{{AppSubUrl}}/{{.Publisher.Name}}">{{.Publisher.Name}}</a> + </span> + {{if .Created}}<span class="time">{{TimeSince .Created $.Lang}}</span>{{end}} + <span class="ahead">{{$.i18n.Tr "repo.release.ahead" .NumCommitsBehind .Target | Str2html}}</span> + </p> + <div class="markdown desc"> + {{Str2html .Note}} + </div> + <div class="download"> + <h2>{{$.i18n.Tr "repo.release.downloads"}}</h2> + <ul class="list"> + <li> + <a href="{{$.RepoLink}}/archive/{{.TagName}}.zip" rel="nofollow"><i class="icon octicon octicon-file-zip"></i> {{$.i18n.Tr "repo.release.source_code"}} (ZIP)</a> + </li> + <li> + <a href="{{$.RepoLink}}/archive/{{.TagName}}.tar.gz"><i class="icon octicon octicon-file-zip"></i> {{$.i18n.Tr "repo.release.source_code"}} (TAR.GZ)</a> + </li> + </ul> + </div> + {{else}} + <h4> + <a href="{{$.RepoLink}}/src/{{.TagName}}" rel="nofollow"><i class="tag icon"></i> {{.TagName}}</a> + </h4> + <div class="download"> + <a href="{{$.RepoLink}}/archive/{{.TagName}}.zip" rel="nofollow"><i class="octicon octicon-file-zip"></i> ZIP</a> + <a href="{{$.RepoLink}}/archive/{{.TagName}}.tar.gz"><i class="octicon octicon-file-zip"></i> TAR.GZ</a> </div> + {{end}} + <span class="dot"> </span> </div> - {{template "repo/sidebar" .}} - </div> + </li> + {{end}} + </ul> + </div> </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/repo/release/new.tmpl b/templates/repo/release/new.tmpl index d8909142..b966eb6c 100644 --- a/templates/repo/release/new.tmpl +++ b/templates/repo/release/new.tmpl @@ -1,68 +1,99 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div id="repo-wrapper"> - {{template "repo/header_old" .}} - <div id="repo-content" class="clear container"> - <div id="repo-main" class="left grid-5-6"> - {{template "ng/base/alert" .}} - <div id="release"> - <h4 id="release-head">{{.i18n.Tr "repo.release.new_release"}}</h4> - <form class="form" id="release-new-form" action="{{.RepoLink}}/releases/new" method="post"> - {{.CsrfTokenHtml}} - <div class="field"> - <input class="ipt ipt-large ipt-radius" name="tag_name" value="{{.tag_name}}" placeholder="{{.i18n.Tr "repo.release.tag_name"}}" required> - <span class="target-at">@</span> - <div class="inline-block drop"> - <button class="btn btn-gray btn-medium btn-radius drop-bottom"> - <i class="octicon octicon-git-branch"></i> {{.i18n.Tr "repo.release.target"}} : - <strong id="repo-branch-current">{{.Repository.DefaultBranch}}</strong> - </button> - <ul class="drop-down menu menu-vertical menu-radius switching-list" id="release-new-target-branch-list"> - {{range .Branches}} - <li {{if eq . $.tag_target}}class="checked"{{end}}><a><i class="octicon octicon-check"></i>{{.}}</a></li> - {{end}} - </ul> - </div> - <input id="tag-target" type="hidden" name="tag_target" value="{{.tag_target}}"/> - </div> - <p class="help">{{.i18n.Tr "repo.release.tag_helper"}}</p> - <div class="field"> - <input class="ipt ipt-large ipt-radius grid-4-5" id="release-new-title" name="title" placeholder="{{.i18n.Tr "repo.release.release_title"}}" value="{{.title}}" required> - </div> - <br> - <div class="field grid-4-5"> - <div class="md-help pull-right"> - {{.i18n.Tr "repo.release.content_with_md" "https://help.github.com/articles/markdown-basics" | Str2html}} - </div> - <div class="clear"> - <ul class="tab-nav list-unstyled"> - <li class="js-tab-nav js-tab-nav-show left" data-tab-target="#release-textarea"> - <button class="btn btn-medium btn-gray btn-left-radius">{{.i18n.Tr "repo.release.write"}}</button> - </li> - <li class="js-tab-nav left markdown-preview" id="release-preview-btn" data-tab-target="#release-preview" data-ajax="{{AppSubUrl}}/api/v1/markdown" data-ajax-name="release-preview" data-ajax-context="{{.RepoLink}}" data-ajax-method="post" data-preview="#release-preview"> - <button class="btn btn-medium btn-gray btn-right-radius">{{.i18n.Tr "repo.release.preview"}}</button> - </li> - </ul> - </div> - <div id="release-textarea"> - <div class="form-group"> - <textarea class="ipt ipt-large ipt-radius" name="content" id="release-new-content" rows="10" placeholder="{{.i18n.Tr "repo.release.content_placeholder"}}" data-ajax-rel="release-preview" data-ajax-val="val" data-ajax-field="text" required>{{.content}}</textarea> - </div> - </div> - <div class="markdown hide" id="release-preview">{{.i18n.Tr "repo.release.loading"}}</div> - <hr> - <div class="text-right"> - <input class="ipt-chk" name="prerelease" type="checkbox" {{if .prerelease}}checked{{end}}/> - <span><strong>{{.i18n.Tr "repo.release.prerelease_desc"}}</strong></span> - <p>{{.i18n.Tr "repo.release.prerelease_helper"}}</p> - <button class="btn btn-large btn-green btn-radius">{{.i18n.Tr "repo.release.publish"}}</button> - <input class="btn btn-large btn-gary btn-radius" type="submit" name="draft" value="{{.i18n.Tr "repo.release.save_draft"}}"/> - </div> - </div> - </form> +{{template "base/head" .}} +<div class="repository new release"> + {{template "repo/header" .}} + <div class="ui container"> + {{template "repo/sidebar" .}} + <h2 class="ui dividing header"> + {{if .PageIsEditRelease}} + {{.i18n.Tr "repo.release.edit_release"}} + <div class="sub header">{{.i18n.Tr "repo.release.edit_subheader"}}</div> + {{else}} + {{.i18n.Tr "repo.release.new_release"}} + <div class="sub header">{{.i18n.Tr "repo.release.new_subheader"}}</div> + {{end}} + </h2> + {{template "base/alert" .}} + <form class="ui form grid" action="{{.Link}}" method="post"> + {{.CsrfTokenHtml}} + <div class="ui seven wide column target"> + <div class="inline field {{if .Err_TagName}}error{{end}}"> + {{if .PageIsEditRelease}} + <b>{{.tag_name}}</b><span class="at">@</span><strong>{{.tag_target}}</strong> + {{else}} + <input name="tag_name" value="{{.tag_name}}" placeholder="{{.i18n.Tr "repo.release.tag_name"}}" autofocus required> + <span class="at">@</span> + <div class="ui selection dropdown"> + <input type="hidden" name="tag_target" value="{{.tag_target}}"/> + <i class="octicon octicon-git-branch"></i> + <div class="text"> + {{.i18n.Tr "repo.release.target"}} : + <strong id="repo-branch-current">{{.Repository.DefaultBranch}}</strong> </div> + <i class="dropdown icon"></i> + <div class="menu"> + {{range .Branches}} + <div class="item" data-value="{{.}}">{{.}}</div> + {{end}} + </div> + </div> + <span class="help">{{.i18n.Tr "repo.release.tag_helper"}}</span> + {{end}} + </div> + </div> + <div class="eleven wide column"> + <div class="field {{if .Err_Title}}error{{end}}"> + <label>{{.i18n.Tr "repo.release.title"}}</label> + <input name="title" placeholder="{{.i18n.Tr "repo.release.title"}}" value="{{.title}}" autofocus required> + </div> + <div class="field"> + <label>{{.i18n.Tr "repo.release.content"}}</label> + <textarea name="content">{{.content}}</textarea> </div> - {{template "repo/sidebar" .}} - </div> + </div> + <div class="ui container"> + <div class="ui divider"></div> + <div class="ui text right"> + <div class="prerelease field"> + <div class="ui checkbox"> + <input type="checkbox" name="prerelease" {{if .prerelease}}checked{{end}}> + <label><strong>{{.i18n.Tr "repo.release.prerelease_desc"}}</strong></label> + </div> + </div> + <span class="help">{{.i18n.Tr "repo.release.prerelease_helper"}}</span> + <div class="field"> + {{if .PageIsEditRelease}} + <a class="ui blue basic button" href="{{.RepoLink}}/releases"> + {{.i18n.Tr "repo.release.cancel"}} + </a> + <button class="ui green button"> + {{.i18n.Tr "repo.release.edit_release"}} + </button> + <a class="ui red button delete-button" data-url="{{$.RepoLink}}/releases/delete" data-id="{{.ID}}"> + {{$.i18n.Tr "repo.release.delete_release"}} + </a> + {{else}} + <button class="ui green button"> + {{.i18n.Tr "repo.release.publish"}} + </button> + <input class="ui grey button" type="submit" name="draft" value="{{.i18n.Tr "repo.release.save_draft"}}"/> + {{end}} + </div> + </div> + </div> + </form> + </div> +</div> + +{{if .PageIsEditRelease}} +<div class="ui small basic delete modal"> + <div class="ui icon header"> + <i class="trash icon"></i> + {{.i18n.Tr "repo.release.deletion"}} + </div> + <div class="content"> + <p>{{.i18n.Tr "repo.release.deletion_desc"}}</p> + </div> + {{template "base/delete_modal_actions" .}} </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{end}} +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/repo/setting_nav.tmpl b/templates/repo/setting_nav.tmpl deleted file mode 100644 index 5aa77f0b..00000000 --- a/templates/repo/setting_nav.tmpl +++ /dev/null @@ -1,7 +0,0 @@ -<div id="user-setting-nav" class="col-md-2 repo-setting-nav"> - <ul class="list-group"> - <li class="list-group-item{{if .IsRepoToolbarSetting}} active{{end}}"><a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Repository.Name}}/settings">Options</a></li> - <li class="list-group-item{{if .IsRepoToolbarCollaboration}} active{{end}}"><a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Repository.Name}}/settings/collaboration">Collaborators</a></li> - <li class="list-group-item{{if .IsRepoToolbarWebHooks}} active{{end}}"><a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Repository.Name}}/settings/hooks">Webhooks</a></li> - </ul> -</div>
\ No newline at end of file diff --git a/templates/repo/settings/collaboration.tmpl b/templates/repo/settings/collaboration.tmpl index 4781f667..26009edb 100644 --- a/templates/repo/settings/collaboration.tmpl +++ b/templates/repo/settings/collaboration.tmpl @@ -1,47 +1,44 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div id="repo-wrapper"> - {{template "repo/header_old" .}} - <div id="setting-wrapper" class="main-wrapper"> - <div id="repo-setting" class="container clear"> - {{template "repo/settings/nav" .}} - <div class="grid-4-5 left"> - <div class="setting-content"> - {{template "ng/base/alert" .}} - <div id="setting-content"> - <div id="user-profile-setting-content" class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "repo.settings.collaboration"}}</strong> - </div> - <div class="panel-body"> - <ul id="repo-collab-list"> - {{range .Collaborators}} - <li class="collab"> - {{if not (eq .Id $.Owner.Id)}}<a href="{{$.RepoLink}}/settings/collaboration?remove={{.Name}}" class="remove-collab right"><i class="fa fa-times"></i></a>{{end}} - <a class="member" href="{{AppSubUrl}}/{{.Name}}"> - <img alt="{{.Name}}" class="pull-left avatar" src="{{.AvatarLink}}"> - <strong>{{.FullName}}</strong> ({{.Name}}) - </a> - </li> - <hr> - {{end}} - </ul> - </div> - <div class="panel-footer"> - <form class="form form-align" action="{{.RepoLink}}/settings/collaboration" method="post" id="repo-collab-form"> - {{.CsrfTokenHtml}} - <input class="ipt ipt-large ipt-radius" id="repo-collaborator" name="collaborator" autocomplete="off" required /> - <button class="btn btn-blue btn-large btn-radius">{{.i18n.Tr "repo.settings.add_collaborator"}}</button> - <div class="repo-user-list-block"> - <ul class="menu-down-show menu-vertical menu-radius switching-list user-list" id="repo-collaborator-list"></ul> - </div> - </form> - </div> - </div> - </div> - </div> - </div> - </div> +{{template "base/head" .}} +<div class="repository settings collaboration"> + {{template "repo/header" .}} + <div class="ui container"> + {{template "repo/sidebar" .}} + <div class="ui grid"> + {{template "repo/settings/navbar" .}} + <div class="twelve wide column content"> + {{template "base/alert" .}} + <h4 class="ui top attached header"> + {{.i18n.Tr "repo.settings.collaboration"}} + </h4> + <div class="ui attached segment collaborator list"> + {{range .Collaborators}} + <div class="item"> + {{if not (eq .Id $.Owner.Id)}} + <a href="{{$.RepoLink}}/settings/collaboration?remove={{.Name}}" class="ui right text red"><i class="fa fa-times"></i></a> + {{end}} + <a href="{{AppSubUrl}}/{{.Name}}"> + <img class="ui avatar image" src="{{.AvatarLink}}"> + {{.DisplayName}} + </a> + </div> + {{end}} + </div> + <div class="ui bottom attached segment"> + <form class="ui form" id="repo-collab-form" action="{{.Link}}" method="post"> + {{.CsrfTokenHtml}} + <div class="inline field ui left"> + <div id="search-user-box"> + <div class="ui input"> + <input class="prompt" name="collaborator" placeholder="{{.i18n.Tr "repo.settings.search_user_placeholder"}}" autocomplete="off" required> + </div> + <div class="ui segment results hide"></div> + </div> + </div> + <button class="ui green button">{{.i18n.Tr "repo.settings.add_collaborator"}}</button> + </form> + </div> + </div> + </div> </div> </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/repo/settings/deploy_keys.tmpl b/templates/repo/settings/deploy_keys.tmpl index 0574e9d8..5a695838 100644 --- a/templates/repo/settings/deploy_keys.tmpl +++ b/templates/repo/settings/deploy_keys.tmpl @@ -2,6 +2,7 @@ <div class="repository settings"> {{template "repo/header" .}} <div class="ui container"> + {{template "repo/sidebar" .}} <div class="ui grid"> {{template "repo/settings/navbar" .}} <div class="twelve wide column content"> diff --git a/templates/repo/settings/githook_edit.tmpl b/templates/repo/settings/githook_edit.tmpl index b9b75a3a..2f79481a 100644 --- a/templates/repo/settings/githook_edit.tmpl +++ b/templates/repo/settings/githook_edit.tmpl @@ -2,6 +2,7 @@ <div class="repository settings edit githook"> {{template "repo/header" .}} <div class="ui container"> + {{template "repo/sidebar" .}} <div class="ui grid"> {{template "repo/settings/navbar" .}} <div class="twelve wide column content"> diff --git a/templates/repo/settings/githooks.tmpl b/templates/repo/settings/githooks.tmpl index 8120b80e..980b98fd 100644 --- a/templates/repo/settings/githooks.tmpl +++ b/templates/repo/settings/githooks.tmpl @@ -2,6 +2,7 @@ <div class="repository settings githooks"> {{template "repo/header" .}} <div class="ui container"> + {{template "repo/sidebar" .}} <div class="ui grid"> {{template "repo/settings/navbar" .}} <div class="twelve wide column content"> diff --git a/templates/repo/settings/hook_new.tmpl b/templates/repo/settings/hook_new.tmpl index 7c9a5de1..ac69b02f 100644 --- a/templates/repo/settings/hook_new.tmpl +++ b/templates/repo/settings/hook_new.tmpl @@ -2,6 +2,7 @@ <div class="repository settings new webhook"> {{template "repo/header" .}} <div class="ui container"> + {{template "repo/sidebar" .}} <div class="ui grid"> {{template "repo/settings/navbar" .}} <div class="twelve wide column content"> diff --git a/templates/repo/settings/hooks.tmpl b/templates/repo/settings/hooks.tmpl index e3f6f4dd..187bd563 100644 --- a/templates/repo/settings/hooks.tmpl +++ b/templates/repo/settings/hooks.tmpl @@ -2,6 +2,7 @@ <div class="repository settings webhooks"> {{template "repo/header" .}} <div class="ui container"> + {{template "repo/sidebar" .}} <div class="ui grid"> {{template "repo/settings/navbar" .}} {{template "repo/settings/hook_list" .}} diff --git a/templates/repo/settings/navbar.tmpl b/templates/repo/settings/navbar.tmpl index fb2e8c24..512ee300 100644 --- a/templates/repo/settings/navbar.tmpl +++ b/templates/repo/settings/navbar.tmpl @@ -10,7 +10,7 @@ <a class="{{if .PageIsSettingsHooks}}active{{end}} item" href="{{.RepoLink}}/settings/hooks"> {{.i18n.Tr "repo.settings.hooks"}} </a> - {{if or .SignedUser.AllowGitHook .SignedUser.IsAdmin}} + {{if .SignedUser.CanEditGitHook}} <a class="{{if .PageIsSettingsGitHooks}}active{{end}} item" href="{{.RepoLink}}/settings/hooks/git"> {{.i18n.Tr "repo.settings.githooks"}} </a> diff --git a/templates/repo/settings/options.tmpl b/templates/repo/settings/options.tmpl index 474d719e..e109ec11 100644 --- a/templates/repo/settings/options.tmpl +++ b/templates/repo/settings/options.tmpl @@ -2,6 +2,7 @@ <div class="repository settings options"> {{template "repo/header" .}} <div class="ui container"> + {{template "repo/sidebar" .}} <div class="ui grid"> {{template "repo/settings/navbar" .}} <div class="twelve wide column content"> diff --git a/templates/repo/sidebar.tmpl b/templates/repo/sidebar.tmpl index 6859dabf..ca38627b 100644 --- a/templates/repo/sidebar.tmpl +++ b/templates/repo/sidebar.tmpl @@ -1,30 +1,21 @@ -<div id="repo-sidebar" class="right grid-1-6"> - <ul class="menu menu-vertical" id="repo-sidebar-nav"> - <li> - <a class="radius" href="{{.RepoLink}}/issues"><i class="octicon octicon-issue-opened"></i>{{.i18n.Tr "repo.issues"}}<span class="num right label label-blue label-radius">{{.Repository.NumOpenIssues}}</span></a> - </li> - <li> - <a class="radius" href="{{.RepoLink}}/pulls"><i class="octicon octicon-git-pull-request"></i>{{.i18n.Tr "repo.pulls"}}<span class="num right label label-blue label-radius">{{.Repository.NumOpenPulls}}</span></a> - </li> - <li class="border-bottom"></li> - <li class="head">{{if .IsViewBranch}}{{.BranchName}}{{else}}{{ShortSha .BranchName}}{{end}}</li> - <li> - <a class="radius" href="{{.RepoLink}}/commits/{{EscapePound .BranchName}}"><i class="octicon octicon-history"></i>{{.i18n.Tr "repo.commits"}} <span class="num right label label-gray label-radius">{{.CommitsCount}}</span></a> - </li> - <!-- <li> - <a class="radius" href="{{.RepoLink}}/branches"><i class="octicon octicon-git-branch"></i>Branches<span class="num right label label-gray label-radius">{{.BrancheCount}}</span></a> - </li> --> - <li> - <a class="radius" href="{{.RepoLink}}/releases"><i class="octicon octicon-tag"></i>{{.i18n.Tr "repo.releases"}} <span class="num right label label-gray label-radius">{{.Repository.NumTags}}</span></a> - </li> - <!-- <li> - <a class="radius" href="#"><i class="octicon octicon-organization"></i>contributors <span class="num right label label-gray label-radius">43</span></a> - </li> --> - {{if .IsRepositoryAdmin}} - <li class="border-bottom"></li> - <li> - <a class="radius" href="{{.RepoLink}}/settings"><i class="octicon octicon-tools"></i>{{.i18n.Tr "repo.settings"}}</a> - </li> - {{end}} - </ul> -</div>
\ No newline at end of file +{{if not .IsBareRepo}} +<div class="ui {{if .IsRepositoryAdmin}}five{{else}}four{{end}} item menu"> + <a class="{{if .PageIsIssueList}}active{{end}} item" href="{{.RepoLink}}/issues"> + <i class="icon octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues"}} <span class="ui blue label">{{.Repository.NumOpenIssues}}</span> + </a> + <a class="{{if .PageIsPullList}}active{{end}} item" href="{{.RepoLink}}/pulls"> + <i class="icon octicon octicon-git-pull-request"></i> {{.i18n.Tr "repo.pulls"}} <span class="ui blue label">{{.Repository.NumOpenPulls}}</span> + </a> + <a class="{{if .PageIsCommits}}active{{end}} item" href="{{.RepoLink}}/commits/{{EscapePound .BranchName}}"> + <i class="icon octicon octicon-history"></i> {{.i18n.Tr "repo.commits"}} <span class="ui blue label">{{.CommitsCount}}</span> + </a> + <a class="{{if .PageIsReleaseList}}active{{end}} item" href="{{.RepoLink}}/releases"> + <i class="icon octicon octicon-tag"></i> {{.i18n.Tr "repo.releases"}} <span class="ui blue label">{{.Repository.NumTags}}</span> + </a> + {{if .IsRepositoryAdmin}} + <a class="{{if .PageIsSettings}}active{{end}} item" href="{{.RepoLink}}/settings"> + <i class="icon octicon octicon-tools"></i> {{.i18n.Tr "repo.settings"}} + </a> + {{end}} +</div> +{{end}}
\ No newline at end of file diff --git a/templates/repo/sidebar_mini.tmpl b/templates/repo/sidebar_mini.tmpl deleted file mode 100644 index dfd48c84..00000000 --- a/templates/repo/sidebar_mini.tmpl +++ /dev/null @@ -1,12 +0,0 @@ -<ul class="menu menu-vertical" id="repo-sidebar-mini"> - <li><a href="#" class="btn-right-radius"><i class="octicon octicon-code"></i></a></li> - <li class="border-bottom"></li> - <li><a href="#" class="btn-right-radius"><i class="octicon octicon-issue-opened"></i> - <span class="num label label-blue">999</span> - </a></li> - <li class="current"><a href="#" class="btn-right-radius"><i class="octicon octicon-git-pull-request"></i> - <span class="num label label-black">12</span> - </a></li> - <li class="border-bottom"></li> - <li><a href="#" class="btn-right-radius"><i class="octicon octicon-tools"></i></a></li> -</ul>
\ No newline at end of file diff --git a/templates/repo/stars.tmpl b/templates/repo/stars.tmpl deleted file mode 100644 index af3193dc..00000000 --- a/templates/repo/stars.tmpl +++ /dev/null @@ -1,61 +0,0 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div id="repo-wrapper"> - {{template "repo/header_old" .}} - <div id="repo-content" class="clear container"> - <div id="repo-main" class="left grid-5-6"> - <div id="stars"> - <h4> - <strong>{{.i18n.Tr "repos.stars"}}</strong> - </h4> - - <ol> - {{range .Stars}} - <li> - <a href="{{AppSubUrl}}/{{.Name}}"> - <img class="avatar" src="{{.AvatarLink}}" title="{{.Name}}"/> - - <h3>{{.Name}}</h3> - </a> - - <p> - {{if .Website}} - <span class="octicon octicon-link"></span> <a href="{{.Website}}" target="_blank">{{.Website}}</a> - {{else if .Location}} - <span class="octicon octicon-location"></span> {{.Location}} - {{else}} - <span class="octicon octicon-clock"></span> {{$.i18n.Tr "user.join_on"}} {{DateFmtShort .Created}} - {{end}} - </p> - </li> - {{end}} - </ol> - - {{with .Page}} - {{if gt .TotalPages 1}} - <div class="pagination"> - {{if .HasPrevious}} - <a href="{{$.RepoLink}}/stars?page={{.Previous}}">{{$.i18n.Tr "issues.previous"}}</a> - {{end}} - - {{range .Pages}} - {{if eq .Num -1}} - <a class="disabled item">...</a> - {{else}} - <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.RepoLink}}/stars?page={{.Num}}"{{end}}>{{.Num}}</a> - {{end}} - {{end}} - - {{if .HasNext}} - <a href="{{$.RepoLink}}/stars?page={{.Next}}">{{$.i18n.Tr "issues.next"}}</a> - {{end}} - </div> - {{end}} - {{end}} - </div> - </div> - - {{template "repo/sidebar" .}} - </div> -</div> -{{template "ng/base/footer" .}} diff --git a/templates/repo/view_file.tmpl b/templates/repo/view_file.tmpl index a0d6781c..5751d2e3 100644 --- a/templates/repo/view_file.tmpl +++ b/templates/repo/view_file.tmpl @@ -1,50 +1,50 @@ -<div class="panel panel-radius" id="{{if .ReadmeExist}}repo-readme{{else}}repo-read-file{{end}}"> - <p class="panel-header"> - {{if .ReadmeExist}} - <i class="icon fa fa-book fa-lg"></i> - {{if .ReadmeInList}} - <strong class="file-name">{{.FileName}}</strong> - {{else}} - <strong>{{.FileName}}</strong><span class="file-size">{{FileSize .FileSize}}</span> - {{end}} - {{else}} - <i class="icon fa fa-file-text-o"></i> - <strong class="file-name">{{.FileName}}</strong><span class="file-size">{{FileSize .FileSize}}</span> - {{end}} - {{if not .ReadmeInList}} - {{if not .IsCommit}} - <a class="right" href="{{.RepoLink}}/src/{{.CommitID}}/{{EscapePound .TreeName}}"> - <button class="btn btn-medium btn-gray btn-right-radius btn-comb">{{.i18n.Tr "repo.file_permalink"}}</button> - </a> - {{end}} - <a class="right" href="{{.RepoLink}}/commits/{{EscapePound .BranchName}}/{{EscapePound .TreeName}}"> - <button class="btn btn-medium btn-gray btn-right-radius btn-comb">{{.i18n.Tr "repo.file_history"}}</button> - </a> - <a class="right" href="{{EscapePound .FileLink}}"> - <button class="btn btn-medium btn-gray btn-left-radius btn-comb">{{.i18n.Tr "repo.file_raw"}}</button> - </a> +<div id="file-content"> + <h4 class="ui top attached header" id="{{if .ReadmeExist}}repo-readme{{else}}repo-read-file{{end}}"> + {{if .ReadmeExist}} + <i class="book icon ui left"></i> + {{if .ReadmeInList}} + <strong>{{.FileName}}</strong> + {{else}} + <strong>{{.FileName}}</strong> <span class="text grey normal">{{FileSize .FileSize}}</span> + {{end}} + {{else}} + <i class="file text outline icon ui left"></i> + <strong>{{.FileName}}</strong> <span class="text grey normal">{{FileSize .FileSize}}</span> + {{end}} + {{if not .ReadmeInList}} + <div class="ui right"> + <div class="ui small grey basic buttons"> + {{if not .IsCommit}} + <a class="ui button" href="{{.RepoLink}}/src/{{.CommitID}}/{{EscapePound .TreeName}}">{{.i18n.Tr "repo.file_permalink"}}</a> {{end}} - </p> - <div class="{{if .ReadmeExist}}panel-content markdown{{end}} code-view" id="repo-code-view"> - {{if .ReadmeExist}} - {{if .FileContent}}{{.FileContent | Str2html}}{{end}} + <a class="ui button" href="{{.RepoLink}}/commits/{{EscapePound .BranchName}}/{{EscapePound .TreeName}}">{{.i18n.Tr "repo.file_history"}}</a> + <a class="ui button" href="{{EscapePound .FileLink}}">{{.i18n.Tr "repo.file_raw"}}</a> + </div> + </div> + {{end}} + </h4> + <div class="ui attached table segment"> + <div class="file-view {{if .ReadmeExist}}markdown{{else if .IsFileText}}code-view{{end}}"> + {{if .ReadmeExist}} + {{if .FileContent}}{{.FileContent | Str2html}}{{end}} {{else if not .IsFileText}} <div class="view-raw"> - {{if .IsImageFile}} - <img src="{{EscapePound .FileLink}}"> - {{else}} - <a href="{{EscapePound .FileLink}}" rel="nofollow" class="btn btn-gray btn-radius">{{.i18n.Tr "repo.file_view_raw"}}</a> - {{end}} + {{if .IsImageFile}} + <img src="{{EscapePound .FileLink}}"> + {{else}} + <a href="{{EscapePound .FileLink}}" rel="nofollow" class="btn btn-gray btn-radius">{{.i18n.Tr "repo.file_view_raw"}}</a> + {{end}} </div> - {{else if .FileSize}} + {{else if .FileSize}} <table> - <tbody> - <tr> - <td class="lines-num"></td> - <td class="lines-code"><pre class="prettyprint linenums {{if .FileExt}}lang-{{.FileExt}}{{end}}"><code>{{.FileContent}}</code></pre></td> - </tr> - </tbody> + <tbody> + <tr> + <td class="lines-num"></td> + <td class="lines-code"><pre class="{{if .FileExt}}lang-{{.FileExt}}{{end}}"><code><ol class="linenums">{{.FileContent}}</ol></code></pre></td> + </tr> + </tbody> </table> - {{end}} + {{end}} </div> -</div> + </div> +</div>
\ No newline at end of file diff --git a/templates/repo/view_list.tmpl b/templates/repo/view_list.tmpl index d3303193..9edbd687 100644 --- a/templates/repo/view_list.tmpl +++ b/templates/repo/view_list.tmpl @@ -1,69 +1,64 @@ -<table id="repo-files-table" class="table-border table-block table-radius"> - <thead> +<table id="repo-files-table" class="ui table"> + <thead> <tr> - <th colspan="5" class="clear"> - <span class="author left"> - {{if .LastCommitUser}} - <img class="avatar-24 radius" src="{{.LastCommitUser.AvatarLink}}" /> - <a href="{{AppSubUrl}}/{{.LastCommitUser.Name}}"><strong>{{.LastCommit.Author.Name}}</strong></a>: - {{else}} - <img class="avatar-24 radius" src="{{AvatarLink .LastCommit.Author.Email}}" /> - <strong>{{.LastCommit.Author.Name}}</strong>: - {{end}} - - </span> - <span class="last-commit"><a href="{{.RepoLink}}/commit/{{.LastCommit.Id}}" rel="nofollow"> - <strong>{{ShortSha .LastCommit.Id.String}}</strong></a> - <span class="text-truncate">{{RenderCommitMessage .LastCommit.Summary .RepoLink}}</span> - </span> - <span class="age right">{{TimeSince .LastCommit.Author.When $.Lang}}</span> - </th> + <th colspan="5" class="clear"> + <span> + {{if .LastCommitUser}} + <img class="ui avatar image img-12" src="{{.LastCommitUser.AvatarLink}}" /> + <a href="{{AppSubUrl}}/{{.LastCommitUser.Name}}"><strong>{{.LastCommit.Author.Name}}</strong></a>: + {{else}} + <img class="ui avatar image img-12" src="{{AvatarLink .LastCommit.Author.Email}}" /> + <strong>{{.LastCommit.Author.Name}}</strong>: + {{end}} + </span> + <a class="text black" href="{{.RepoLink}}/commit/{{.LastCommit.ID}}" rel="nofollow"> + <strong>{{ShortSha .LastCommit.ID.String}}</strong></a> + <span class="text truncate grey" id="last-commit-message">{{RenderCommitMessage .LastCommit.Summary .RepoLink}}</span> + <span class="ui right text grey age">{{TimeSince .LastCommit.Author.When $.Lang}}</span> + </th> </tr> - </thead> - <tbody> - {{if .HasParentPath}} - <tr class="has-parent"> - <td class="icon"></td> - <td class="name"><a href="{{EscapePound .BranchLink}}{{.ParentPath}}">..</a></td> - <th class="sha">SHA1</th> - <td class="msg"></td> - <td class="age"></td> - </tr> - {{end}} - {{range $item := .Files}} - {{$entry := index $item 0}} - {{$commit := index $item 1}} - <tr> - {{if $entry.IsSubModule}} - <td class="icon"> - <span class="octicon octicon-file-submodule"></span> - </td> - <td class="name"> - {{if $commit.RefUrl}} - <a href="{{$commit.RefUrl}}" class="text-truncate">{{$entry.Name}}</a> @ <a href="{{$commit.RefUrl}}/commit/{{$commit.RefId}}">{{ShortSha $commit.RefId}}</a> - {{else}} - {{$entry.Name}} @ {{ShortSha $commit.RefId}} - {{end}} - </td> - {{else}} - <td class="icon"> - <span class="octicon octicon-file-{{if or $entry.IsDir}}directory{{else}}text{{end}}"></span> - </td> - <td class="name"> - <a href="{{EscapePound $.BranchLink}}/{{EscapePound $.TreePath}}{{EscapePound $entry.Name}}" class="text-truncate">{{$entry.Name}}</a> - </td> - {{end}} - <td class="sha"> - <a rel="nofollow" class="label label-green" href="{{AppSubUrl}}/{{$.Username}}/{{$.Reponame}}/commit/{{$commit.Id}} ">{{SubStr $commit.Id.String 0 10}} </a> - </td> - <td class="message"> - <span class="text-truncate">{{RenderCommitMessage $commit.Summary $.RepoLink}}</span> - </td> - <td class="age">{{TimeSince $commit.Committer.When $.Lang}}</td> - </tr> + </thead> + <tbody> + {{if .HasParentPath}} + <tr class="has-parent"> + <td><span class="octicon octicon-mail-reply"></span></td> + <td><a href="{{EscapePound .BranchLink}}{{.ParentPath}}">..</a></td> + </tr> + {{end}} + {{range $item := .Files}} + {{$entry := index $item 0}} + {{$commit := index $item 1}} + <tr> + {{if $entry.IsSubModule}} + <td> + <span class="icon octicon octicon-file-submodule"></span> + </td> + <td> + {{if $commit.RefUrl}} + <a href="{{$commit.RefUrl}}" class="text truncate">{{$entry.Name}}</a> @ <a href="{{$commit.RefUrl}}/commit/{{$commit.RefId}}">{{ShortSha $commit.RefId}}</a> + {{else}} + {{$entry.Name}} @ {{ShortSha $commit.RefId}} + {{end}} + </td> + {{else}} + <td> + <span class="icon octicon octicon-file-{{if or $entry.IsDir}}directory{{else}}text{{end}}"></span> + </td> + <td class="name"> + <a href="{{EscapePound $.BranchLink}}/{{EscapePound $.TreePath}}{{EscapePound $entry.Name}}" class="text truncate">{{$entry.Name}}</a> + </td> {{end}} - </tbody> + <td class="sha"> + <a rel="nofollow" class="ui green sha label" href="{{AppSubUrl}}/{{$.Username}}/{{$.Reponame}}/commit/{{$commit.ID}} ">{{SubStr $commit.ID.String 0 10}} </a> + </td> + <td class="message"> + <span class="text truncate">{{RenderCommitMessage $commit.Summary $.RepoLink}}</span> + </td> + <td class="text grey right age">{{TimeSince $commit.Committer.When $.Lang}}</td> + </tr> + {{end}} + </tbody> </table> {{if .ReadmeExist}} - {{template "repo/view_file" .}} + {{template "repo/view_file" .}} {{end}} diff --git a/templates/repo/watchers.tmpl b/templates/repo/watchers.tmpl index 03aba0e9..bfac88bb 100644 --- a/templates/repo/watchers.tmpl +++ b/templates/repo/watchers.tmpl @@ -1,61 +1,57 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div id="repo-wrapper"> - {{template "repo/header_old" .}} - <div id="repo-content" class="clear container"> - <div id="repo-main" class="left grid-5-6"> - <div id="stars"> - <h4> - <strong>{{.i18n.Tr "repos.watches"}}</strong> - </h4> +{{template "base/head" .}} +<div class="repository watchers"> + {{template "repo/header" .}} + <div class="ui container"> + {{template "repo/sidebar" .}} + <h2 class="ui dividing header"> + {{if .PageIsWatchers}} + {{.i18n.Tr "repo.watchers"}} + {{else}} + {{.i18n.Tr "repo.stargazers"}} + {{end}} + </h2> + <ul class="list"> + {{range .Watchers}} + <li class="item ui segment"> + <a href="{{.HomeLink}}"> + <img class="avatar" src="{{.AvatarLink}}"/> + </a> + <h3 class="name"><a href="{{.HomeLink}}">{{.DisplayName}}</a></h3> - <ol> - {{range .Watchers}} - <li> - <a href="{{AppSubUrl}}/{{.Name}}"> - <img class="avatar" src="{{.AvatarLink}}" title="{{.Name}}"/> - - <h3>{{.Name}}</h3> - </a> - - <p> - {{if .Website}} - <span class="octicon octicon-link"></span> <a href="{{.Website}}" target="_blank">{{.Website}}</a> - {{else if .Location}} - <span class="octicon octicon-location"></span> {{.Location}} - {{else}} - <span class="octicon octicon-clock"></span> {{$.i18n.Tr "user.join_on"}} {{DateFmtShort .Created}} - {{end}} - </p> - </li> - {{end}} - </ol> - - {{with .Page}} - {{if gt .TotalPages 1}} - <div class="pagination"> - {{if .HasPrevious}} - <a href="{{$.RepoLink}}/watchers?page={{.Previous}}">{{$.i18n.Tr "issues.previous"}}</a> - {{end}} - - {{range .Pages}} - {{if eq .Num -1}} - <a class="disabled item">...</a> - {{else}} - <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.RepoLink}}/watchers?page={{.Num}}"{{end}}>{{.Num}}</a> - {{end}} - {{end}} - - {{if .HasNext}} - <a href="{{$.RepoLink}}/watchers?page={{.Next}}">{{$.i18n.Tr "issues.next"}}</a> - {{end}} - </div> - {{end}} - {{end}} - </div> + <div class="meta"> + {{if .Website}} + <span class="icon octicon octicon-link"></span> <a href="{{.Website}}" target="_blank">{{.Website}}</a> + {{else if .Location}} + <span class="icon octicon octicon-location"></span> {{.Location}} + {{else}} + <span class="icon octicon octicon-clock"></span> {{$.i18n.Tr "user.join_on"}} {{DateFmtShort .Created}} + {{end}} </div> - - {{template "repo/sidebar" .}} + </li> + {{end}} + </ul> + + {{with .Page}} + {{if gt .TotalPages 1}} + <div class="center page buttons"> + <div class="ui borderless pagination menu"> + <a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?page={{.Previous}}"{{end}}> + <i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} + </a> + {{range .Pages}} + {{if eq .Num -1}} + <a class="disabled item">...</a> + {{else}} + <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?page={{.Num}}"{{end}}>{{.Num}}</a> + {{end}} + {{end}} + <a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?page={{.Next}}"{{end}}> + {{$.i18n.Tr "repo.issues.next"}} <i class="icon right arrow"></i> + </a> + </div> </div> + {{end}} + {{end}} + </div> </div> -{{template "ng/base/footer" .}} +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/user/auth/activate.tmpl b/templates/user/auth/activate.tmpl index caadc4f8..49419dcf 100644 --- a/templates/user/auth/activate.tmpl +++ b/templates/user/auth/activate.tmpl @@ -16,18 +16,10 @@ <p class="center">{{.i18n.Tr "auth.resent_limit_prompt"}}</p> {{else}} <p>{{.i18n.Tr "auth.confirmation_mail_sent_prompt" .SignedUser.Email .Hours | Str2html}}</p> - <div class="ui divider"></div> - <div class="text right"> - <a class="ui green button" href="http://{{Mail2Domain .SignedUser.Email}}">{{.i18n.Tr "auth.sign_in_to_account"}}</a> - </div> {{end}} {{else}} {{if .IsSendRegisterMail}} <p>{{.i18n.Tr "auth.confirmation_mail_sent_prompt" .Email .Hours | Str2html}}</p> - <div class="ui divider"></div> - <div class="text right"> - <a class="ui green button" href="http://{{Mail2Domain .Email}}">{{.i18n.Tr "auth.sign_in_to_account"}}</a> - </div> {{else if .IsActivateFailed}} <p>{{.i18n.Tr "auth.invalid_code"}}</p> {{else}} diff --git a/templates/user/auth/forgot_passwd.tmpl b/templates/user/auth/forgot_passwd.tmpl index f8f23318..de141e67 100644 --- a/templates/user/auth/forgot_passwd.tmpl +++ b/templates/user/auth/forgot_passwd.tmpl @@ -11,10 +11,6 @@ {{template "base/alert" .}} {{if .IsResetSent}} <p>{{.i18n.Tr "auth.confirmation_mail_sent_prompt" .Email .Hours | Str2html}}</p> - <div class="ui divider"></div> - <div class="text right"> - <a class="ui green button" href="http://{{Mail2Domain .Email}}">{{.i18n.Tr "auth.sign_in_to_account"}}</a> - </div> {{else if .IsResetRequest}} <div class="required inline field {{if .Err_Email}}error{{end}}"> <label for="email">{{.i18n.Tr "email"}}</label> diff --git a/templates/user/dashboard/dashboard.tmpl b/templates/user/dashboard/dashboard.tmpl index e530b6f7..b5be8f8f 100644 --- a/templates/user/dashboard/dashboard.tmpl +++ b/templates/user/dashboard/dashboard.tmpl @@ -1,131 +1,112 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -{{template "user/dashboard/nav" .}} -<div id="dashboard-wrapper"> - <div id="dashboard" class="container"> - {{template "ng/base/alert" .}} - <div id="dashboard-news" class="left grid-2-3"> - {{template "user/dashboard/feeds" .}} +{{template "base/head" .}} +<div class="dashboard feeds"> + {{template "user/dashboard/navbar" .}} + <div class="ui container"> + <div class="ui grid"> + <div class="ten wide column"> + {{template "user/dashboard/feeds" .}} + </div> + <div class="six wide column"> + <div class="ui {{if not .ContextUser.IsOrganization}}three{{else}}two{{end}} item tabable menu"> + <a class="item active" data-tab="repos">{{.i18n.Tr "repository"}}</a> + {{if not .ContextUser.IsOrganization}} + <a class="item" data-tab="orgs">{{.i18n.Tr "organization"}}</a> + {{end}} + <a class="item" data-tab="mirrors">{{.i18n.Tr "mirror"}}</a> </div> - <div class="right grid-1-3" id="dashboard-sidebar"> - <ul id="dashboard-sidebar-menu" class="menu menu-line"> - <li class="js-tab-nav js-tab-nav-show first" data-tab-target="#dashboard-my-repo"><a href="#">{{.i18n.Tr "repository"}}</a></li> - {{if not .ContextUser.IsOrganization}} - <li class="js-tab-nav" data-tab-target="#dashboard-my-org"><a href="#">{{.i18n.Tr "organization"}}</a></li> - {{end}} - <li class="js-tab-nav last" data-tab-target="#dashboard-my-mirror"><a href="#">{{.i18n.Tr "mirror"}}</a></li> - <li class="drop right"> - <button class="btn btn-green text-bold" id="dashboard-new-repo"> - <i class="octicon octicon-plus"></i> - </button> - <ul class="menu menu-vertical drop-down" id="dashboard-new-repo-menu"> - <li><a href="{{AppSubUrl}}/repo/create"><i class="octicon octicon-repo-create"></i>{{.i18n.Tr "new_repo"}}</a></li> - <li><a href="{{AppSubUrl}}/repo/migrate"><i class="octicon octicon-repo-clone"></i>{{.i18n.Tr "new_migrate"}}</a></li> - <li><a href="{{AppSubUrl}}/org/create"><i class="octicon octicon-organization"></i>{{.i18n.Tr "new_org"}}</a></li> - </ul> - </li> - </ul> - <div class="panel" id="dashboard-my-repo"> - <div class="panel-header"> - <h4 class="left">{{.i18n.Tr "home.my_repos"}} - <span class="repo-count label label-gray label-radius">{{.ContextUser.NumRepos}}</span> - </h4> - - </div> - <div class="panel-body"> - <ul class="list-no-style"> - {{range .Repos}} - <li {{if .IsPrivate}}class="private"{{end}}> - <a href="{{AppSubUrl}}/{{$.ContextUser.Name}}/{{.Name}}"> - <i class="octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i> - <span class="repo-name"> - <strong class="repo">{{.Name}}</strong> - </span> - <span class="right repo-star"> - <i class="octicon octicon-star"></i>{{.NumStars}} - </span> - </a> - </li> - {{end}} - </ul> - </div> - {{if not .ContextUser.IsOrganization}} - <div class="panel-header repo-contrib-header"> - <h4 class="text-bold">{{.i18n.Tr "home.collaborative_repos"}} - <span class="repo-count label label-gray label-radius">{{.CollaborateCount}}</span> - </h4> - </div> - <div class="panel-body"> - <ul class="list-no-style"> - {{range .CollaborativeRepos}} - <li {{if .IsPrivate}}class="private"{{end}}> - <a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}"> - <i class="octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i> - <span class="repo-name"> - <span class="repo-name-prefix">{{.Owner.Name}} / </span> - <strong class="repo">{{.Name}}</strong> - </span> - <span class="right repo-star"> - <i class="octicon octicon-star"></i>{{.NumStars}} - </span> - </a> - </li> - {{end}} - </ul> - </div> - {{end}} - </div> - {{if not .ContextUser.IsOrganization}} - <div class="panel" id="dashboard-my-org"> - <div class="panel-header"> - <h4 class="text-bold">{{.i18n.Tr "home.my_orgs"}} - <span class="repo-count label label-gray label-radius">{{.ContextUser.GetOrganizationCount}}</span> - </h4> - </div> - <div class="panel-body"> - <ul class="list-no-style"> - {{range .ContextUser.Orgs}} - <li> - <a href="{{AppSubUrl}}/{{.Name}}"> - <i class="octicon octicon-organization"></i> - <span class="repo-name"> - <strong class="repo">{{.Name}}</strong> - </span> - <span class="right repo-star"> - <i class="octicon octicon-repo"></i>{{.NumRepos}} - </span> - </a> - </li> - {{end}} - </ul> - </div> + <div class="ui tab active list" data-tab="repos"> + <h4 class="ui top attached header"> + {{.i18n.Tr "home.my_repos"}} <span class="ui grey label">{{.ContextUser.NumRepos}}</span> + <div class="ui right"> + <a class="ui blue tiny show-panel button" href="{{AppSubUrl}}/repo/create">{{.i18n.Tr "new_repo"}}</a> </div> - {{end}} - <div class="panel" id="dashboard-my-mirror"> - <div class="panel-header"> - <h4 class="text-bold">{{.i18n.Tr "home.my_mirrors"}} - <span class="repo-count label label-gray label-radius">{{.MirrorCount}}</span> - </h4> - </div> - <div class="panel-body"> - <ul class="list-no-style"> - {{range .Mirrors}} - <li {{if .IsPrivate}}class="private"{{end}}> - <a href="{{AppSubUrl}}/{{$.ContextUser.Name}}/{{.Name}}"> - <i class="octicon octicon-repo-clone"></i> - <span class="repo-name"> - <strong class="repo">{{.Name}}</strong> - </span> - <span class="right repo-star"> - <i class="octicon octicon-sync"></i>{{.Interval}}H - </span> - </a> - </li> - {{end}} - </ul> - </div> + </h4> + <div class="ui attached table segment"> + <ul> + {{range .Repos}} + <li {{if .IsPrivate}}class="private"{{end}}> + <a href="{{AppSubUrl}}/{{$.ContextUser.Name}}/{{.Name}}"> + <i class="icon octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i> + <strong>{{.Name}}</strong> + <span class="ui right text light grey"> + <i class="octicon octicon-star"></i>{{.NumStars}} + </span> + </a> + </li> + {{end}} + </ul> + </div> + + {{if not .ContextUser.IsOrganization}} + <h4 class="ui top attached header"> + {{.i18n.Tr "home.collaborative_repos"}} <span class="ui grey label">{{.CollaborateCount}}</span> + </h4> + <div class="ui attached table segment"> + <ul> + {{range .CollaborativeRepos}} + <li {{if .IsPrivate}}class="private"{{end}}> + <a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}"> + <i class="icon octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i> + {{.Owner.Name}} / <strong>{{.Name}}</strong> + <span class="ui right text light grey"> + <i class="octicon octicon-star"></i>{{.NumStars}} + </span> + </a> + </li> + {{end}} + </ul> + </div> + {{end}} + </div> + + {{if not .ContextUser.IsOrganization}} + <div class="ui tab list" data-tab="orgs"> + <h4 class="ui top attached header"> + {{.i18n.Tr "home.my_orgs"}} <span class="ui grey label">{{.ContextUser.GetOrganizationCount}}</span> + <div class="ui right"> + <a class="ui blue tiny show-panel button" href="{{AppSubUrl}}/org/create">{{.i18n.Tr "new_org"}}</a> </div> + </h4> + <div class="ui attached table segment"> + <ul> + {{range .ContextUser.Orgs}} + <li> + <a href="{{AppSubUrl}}/{{.Name}}"> + <i class="icon octicon octicon-organization"></i> + <strong>{{.ShortName 20}}</strong> + <span class="ui right text light grey"> + <i class="octicon octicon-repo"></i>{{.NumRepos}} + </span> + </a> + </li> + {{end}} + </ul> + </div> + </div> + {{end}} + + <div class="ui tab list" data-tab="mirrors"> + <h4 class="ui top attached header"> + {{.i18n.Tr "home.my_mirrors"}} <span class="ui grey label">{{.MirrorCount}}</span> + </h4> + <div class="ui attached table segment"> + <ul> + {{range .Mirrors}} + <li {{if .IsPrivate}}class="private"{{end}}> + <a href="{{AppSubUrl}}/{{$.ContextUser.Name}}/{{.Name}}"> + <i class="icon octicon octicon-repo-clone"></i> + <strong>{{.Name}}</strong> + <span class="ui right text light grey"> + <i class="octicon octicon-sync"></i>{{.Interval}}H + </span> + </a> + </li> + {{end}} + </ul> + </div> </div> + </div> </div> + </div> </div> -{{template "ng/base/footer" .}} +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/user/dashboard/feeds.tmpl b/templates/user/dashboard/feeds.tmpl index a79ff553..fff1e16f 100644 --- a/templates/user/dashboard/feeds.tmpl +++ b/templates/user/dashboard/feeds.tmpl @@ -1,59 +1,69 @@ {{range .Feeds}} -<div class="news clear"> - <div class="avatar left"> - <img class="avatar-30" src="{{.ActAvatar}}" alt=""> - </div> - <div class="content left {{if eq .GetOpType 5}}push-news{{end}} grid-4-5"> - <p class="text-bold"> - <a href="{{AppSubUrl}}/{{.GetActUserName}}">{{.GetActUserName}}</a> - {{if eq .GetOpType 1}} - {{$.i18n.Tr "action.create_repo" .GetRepoLink .GetRepoPath | Str2html}} - {{else if eq .GetOpType 2}} - {{$.i18n.Tr "action.rename_repo" .GetContent .GetRepoLink .GetRepoPath | Str2html}} - {{else if eq .GetOpType 5}} - {{$.i18n.Tr "action.commit_repo" .GetRepoLink .GetBranch .GetRepoPath | Str2html}} - {{else if eq .GetOpType 6}} - {{ $index := index .GetIssueInfos 0}} - {{$.i18n.Tr "action.create_issue" .GetRepoLink $index .GetRepoPath | Str2html}} - {{else if eq .GetOpType 7}} - {{ $index := index .GetIssueInfos 0}} - {{$.i18n.Tr "action.create_pull_request" .GetRepoLink $index .GetRepoPath | Str2html}} - {{else if eq .GetOpType 8}} - {{$.i18n.Tr "action.transfer_repo" .GetContent .GetRepoLink .GetRepoPath | Str2html}} - {{else if eq .GetOpType 9}} - {{$.i18n.Tr "action.push_tag" .GetRepoLink .GetBranch .GetRepoPath | Str2html}} - {{else if eq .GetOpType 10}} - {{ $index := index .GetIssueInfos 0}} - {{$.i18n.Tr "action.comment_issue" .GetRepoLink $index .GetRepoPath | Str2html}} - {{else if eq .GetOpType 11}} - {{ $index := index .GetIssueInfos 0}} - {{$.i18n.Tr "action.merge_pull_request" .GetRepoLink $index .GetRepoPath | Str2html}} - {{end}} +<div class="news"> + <div class="ui left"> + <img class="ui avatar image" src="{{.ActAvatar}}" alt=""> + </div> + <div class="ui grid"> + <div class="ui fifteen wide column"> + <div class="{{if eq .GetOpType 5}}push news{{end}}"> + <p> + <a href="{{AppSubUrl}}/{{.GetActUserName}}">{{.GetActUserName}}</a> + {{if eq .GetOpType 1}} + {{$.i18n.Tr "action.create_repo" .GetRepoLink .GetRepoPath | Str2html}} + {{else if eq .GetOpType 2}} + {{$.i18n.Tr "action.rename_repo" .GetContent .GetRepoLink .GetRepoPath | Str2html}} + {{else if eq .GetOpType 5}} + {{ $branchLink := .GetBranch | EscapePound}} + {{$.i18n.Tr "action.commit_repo" .GetRepoLink $branchLink .GetBranch .GetRepoPath | Str2html}} + {{else if eq .GetOpType 6}} + {{ $index := index .GetIssueInfos 0}} + {{$.i18n.Tr "action.create_issue" .GetRepoLink $index .GetRepoPath | Str2html}} + {{else if eq .GetOpType 7}} + {{ $index := index .GetIssueInfos 0}} + {{$.i18n.Tr "action.create_pull_request" .GetRepoLink $index .GetRepoPath | Str2html}} + {{else if eq .GetOpType 8}} + {{$.i18n.Tr "action.transfer_repo" .GetContent .GetRepoLink .GetRepoPath | Str2html}} + {{else if eq .GetOpType 9}} + {{$.i18n.Tr "action.push_tag" .GetRepoLink .GetBranch .GetRepoPath | Str2html}} + {{else if eq .GetOpType 10}} + {{ $index := index .GetIssueInfos 0}} + {{$.i18n.Tr "action.comment_issue" .GetRepoLink $index .GetRepoPath | Str2html}} + {{else if eq .GetOpType 11}} + {{ $index := index .GetIssueInfos 0}} + {{$.i18n.Tr "action.merge_pull_request" .GetRepoLink $index .GetRepoPath | Str2html}} + {{end}} </p> {{if eq .GetOpType 5}} - <div class="news-content content"> - <ul class="list-no-style"> - {{ $push := ActionContent2Commits .}} - {{ $repoLink := .GetRepoLink}} - {{if $push.Commits}} - {{range $push.Commits}} - <li><img class="avatar-16" src="{{AvatarLink .AuthorEmail}}?s=16"> <a href="{{$repoLink}}/commit/{{.Sha1}}">{{ShortSha .Sha1}}</a> <span class="text-truncate grid-4-5">{{.Message}}</span></li> - {{end}} - {{end}} - {{if $push.CompareUrl}}<li><a href="{{AppSubUrl}}/{{$push.CompareUrl}}">{{$.i18n.Tr "action.compare_2_commits"}} »</a></li>{{end}} - </ul> + <div class="content"> + <ul> + {{ $push := ActionContent2Commits .}} + {{ $repoLink := .GetRepoLink}} + {{if $push.Commits}} + {{range $push.Commits}} + <li><img class="img-8" src="{{$push.AvatarLink .AuthorEmail}}"> <a href="{{$repoLink}}/commit/{{.Sha1}}">{{ShortSha .Sha1}}</a> <span class="text truncate light grey">{{.Message}}</span></li> + {{end}} + {{end}} + {{if $push.CompareUrl}}<li><a href="{{AppSubUrl}}/{{$push.CompareUrl}}">{{$.i18n.Tr "action.compare_2_commits"}} »</a></li>{{end}} + </ul> </div> {{else if eq .GetOpType 6}} - <p class="news-content comment-news">{{index .GetIssueInfos 1}}</p> + <span class="text truncate issue title">{{index .GetIssueInfos 1}}</span> + <p class="text light grey">{{.GetIssueContent}}</p> {{else if eq .GetOpType 7}} - <p class="news-content comment-news">{{index .GetIssueInfos 1}}</p> + <p class="text light grey">{{index .GetIssueInfos 1}}</p> {{else if eq .GetOpType 10}} - <p class="news-content comment-news">{{index .GetIssueInfos 1}}</p> + <span class="text truncate issue title">{{.GetIssueTitle}}</span> + <p class="text light grey">{{index .GetIssueInfos 1}}</p> {{else if eq .GetOpType 11}} - <p class="news-content comment-news">{{index .GetIssueInfos 1}}</p> + <p class="text light grey">{{index .GetIssueInfos 1}}</p> {{end}} - <p class="news-time text-italic">{{TimeSince .GetCreate $.i18n.Lang}}</p> + <p class="text italic light grey">{{TimeSince .GetCreate $.i18n.Lang}}</p> + </div> + </div> + <div class="ui one wide column"> + <i class="text grey mega-octicon octicon-{{ActionIcon .GetOpType}}"></i> </div> - <i class="mega-octicon octicon-{{ActionIcon .GetOpType}} right"></i> + </div> + <div class="ui divider"></div> </div> {{end}}
\ No newline at end of file diff --git a/templates/user/dashboard/issues.tmpl b/templates/user/dashboard/issues.tmpl index 092c2523..678dfecf 100644 --- a/templates/user/dashboard/issues.tmpl +++ b/templates/user/dashboard/issues.tmpl @@ -5,23 +5,23 @@ <div class="ui grid"> <div class="four wide column"> <div class="ui secondary vertical filter menu"> - <a class="{{if eq .ViewType "all"}}ui basic blue button{{end}} item" href="{{.Link}}?repo={{.RepoID}}&state={{.State}}"> + <a class="{{if eq .ViewType "all"}}ui basic blue button{{end}} item" href="{{.Link}}?repo={{.RepoID}}&sort={{$.SortType}}&state={{.State}}"> {{.i18n.Tr "home.issues.in_your_repos"}} <strong class="ui right">{{.IssueStats.AllCount}}</strong> </a> {{if not .ContextUser.IsOrganization}} - <a class="{{if eq .ViewType "assigned"}}ui basic blue button{{end}} item" href="{{.Link}}?type=assigned&repo={{.RepoID}}&state={{.State}}"> + <a class="{{if eq .ViewType "assigned"}}ui basic blue button{{end}} item" href="{{.Link}}?type=assigned&repo={{.RepoID}}&sort={{$.SortType}}&state={{.State}}"> {{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}} <strong class="ui right">{{.IssueStats.AssignCount}}</strong> </a> - <a class="{{if eq .ViewType "created_by"}}ui basic blue button{{end}} item" href="{{.Link}}?type=created_by&repo={{.RepoID}}&state={{.State}}"> + <a class="{{if eq .ViewType "created_by"}}ui basic blue button{{end}} item" href="{{.Link}}?type=created_by&repo={{.RepoID}}&sort={{$.SortType}}&state={{.State}}"> {{.i18n.Tr "repo.issues.filter_type.created_by_you"}} <strong class="ui right">{{.IssueStats.CreateCount}}</strong> </a> {{end}} <div class="ui divider"></div> {{range .Repos}} - <a class="{{if eq $.RepoID .ID}}ui basic blue button{{end}} repo name item" href="{{$.Link}}?type={{$.ViewType}}{{if not (eq $.RepoID .ID)}}&repo={{.ID}}{{end}}&state={{$.State}}"> + <a class="{{if eq $.RepoID .ID}}ui basic blue button{{end}} repo name item" href="{{$.Link}}?type={{$.ViewType}}{{if not (eq $.RepoID .ID)}}&repo={{.ID}}{{end}}&sort={{$.SortType}}&state={{$.State}}"> <span class="text truncate">{{$.ContextUser.Name}}/{{.Name}}</span> <div class="floating ui {{if $.IsShowClosed}}red{{else}}green{{end}} label">{{if $.IsShowClosed}}{{.NumClosedIssues}}{{else}}{{.NumOpenIssues}}{{end}}</div> </a> @@ -30,15 +30,32 @@ </div> <div class="twelve wide column content"> <div class="ui tiny basic status buttons"> - <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{.Link}}?type={{$.ViewType}}&repo={{.RepoID}}&state=open"> + <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{.Link}}?type={{$.ViewType}}&repo={{.RepoID}}&sort={{$.SortType}}&state=open"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> - <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{.Link}}?type={{$.ViewType}}&repo={{.RepoID}}&state=closed"> + <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{.Link}}?type={{$.ViewType}}&repo={{.RepoID}}&sort={{$.SortType}}&state=closed"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> + <div class="ui right floated secondary filter menu"> + <!-- Sort --> + <div class="ui dropdown type jump item"> + <span class="text"> + {{.i18n.Tr "repo.issues.filter_sort"}} + <i class="dropdown icon"></i> + </span> + <div class="menu"> + <a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&repo={{.RepoID}}&sort=latest&state={{$.State}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> + <a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&repo={{.RepoID}}&sort=oldest&state={{$.State}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> + <a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&repo={{.RepoID}}&sort=recentupdate&state={{$.State}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> + <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&repo={{.RepoID}}&sort=leastupdate&state={{$.State}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> + <a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&repo={{.RepoID}}&sort=mostcomment&state={{$.State}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> + <a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&repo={{.RepoID}}&sort=leastcomment&state={{$.State}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> + </div> + </div> + </div> <div class="issue list"> {{range .Issues}} diff --git a/templates/user/dashboard/nav.tmpl b/templates/user/dashboard/nav.tmpl deleted file mode 100644 index 0549bbe9..00000000 --- a/templates/user/dashboard/nav.tmpl +++ /dev/null @@ -1,46 +0,0 @@ -<div id="dashboard-header"> - <ul class="menu menu-line container"> - <li id="dashboard-selection-menu" class="down drop"> - <a href="#" class="text-bold radius"> - <img class="avatar-30" src="{{.ContextUser.AvatarLink}}" alt="user-avatar" /> - {{.ContextUser.Name}} - </a> - <div class="drop-down panel panel-radius"> - <p class="panel-header"><strong>{{.i18n.Tr "home.switch_dashboard_context"}}</strong></p> - <ul class="menu menu-vertical switching-list" id="dashboard-switch-menu"> - <li class="org {{if eq .ContextUser.Id .SignedUser.Id}}checked{{end}}"> - <a href="{{AppSubUrl}}/"> - <i class="octicon octicon-check"></i> - <img class="avatar-24" src="{{.SignedUser.AvatarLink}}" alt="user-avatar" /> - {{.SignedUser.Name}} - </a> - </li> - {{range .Orgs}} - <li class="org {{if eq $.ContextUser.Id .Id}}checked{{end}}"> - <a href="{{.DashboardLink}}"> - <i class="octicon octicon-check"></i> - <img class="avatar-24" src="{{.AvatarLink}}" alt="user-avatar" /> - {{.Name}} - </a> - </li> - {{end}} - <!-- <li> - <a href="{{AppSubUrl}}/user/settings/orgs"><i class="octicon octicon-organization"></i>{{.i18n.Tr "manage_org"}}</a> - </li> --> - <li> - <a href="{{AppSubUrl}}/org/create"><i class="octicon octicon-plus"></i>{{.i18n.Tr "new_org"}}</a> - </li> - </ul> - </div> - </li> - <li class="right"> - <a {{if $.PageIsIssues}}class="current"{{end}} href="{{AppSubUrl}}/{{if .ContextUser.IsOrganization}}org/{{.ContextUser.Name}}/{{end}}issues"><i class="octicon octicon-issue-opened"></i>{{.i18n.Tr "issues"}}</a> - </li> - <!-- <li class="right"> - <a {{if .PageIsPulls}}class="current"{{end}} href="{{.ContextUser.DashboardLink}}pulls"><i class="octicon octicon-git-pull-request"></i>{{.i18n.Tr "pull_requests"}}</a> - </li> --> - <li class="right"> - <a {{if $.PageIsNews}}class="current"{{end}} href="{{.ContextUser.DashboardLink}}"><i class="octicon octicon-rss"></i>{{.i18n.Tr "news_feed"}}</a> - </li> - </ul> -</div>
\ No newline at end of file diff --git a/templates/user/dashboard/navbar.tmpl b/templates/user/dashboard/navbar.tmpl index 5a7fbf7b..7d9c9995 100644 --- a/templates/user/dashboard/navbar.tmpl +++ b/templates/user/dashboard/navbar.tmpl @@ -2,7 +2,7 @@ <div class="ui floating dropdown link jump"> <span class="text"> <img class="ui avatar image" src="{{.ContextUser.AvatarLink}}"> - {{.ContextUser.Name}} + {{.ContextUser.ShortName 20}} <i class="dropdown icon"></i> </span> <div class="context user overflow menu" tabindex="-1"> @@ -10,14 +10,14 @@ {{.i18n.Tr "home.switch_dashboard_context"}} </div> <div class="items"> - <a class="{{if eq .ContextUser.Id .SignedUser.Id}}active selected{{end}} item" href="{{AppSubUrl}}/{{if .PageIsIssues}}issues{{else}}pulls{{end}}"> + <a class="{{if eq .ContextUser.Id .SignedUser.Id}}active selected{{end}} item" href="{{AppSubUrl}}/{{if .PageIsIssues}}issues{{else if .PageIsPulls}}pulls{{end}}"> <img class="ui avatar image" src="{{.SignedUser.AvatarLink}}"> {{.SignedUser.Name}} </a> {{range .Orgs}} - <a class="{{if eq $.ContextUser.Id .Id}}active selected{{end}} item" href="{{AppSubUrl}}/org/{{.Name}}/{{if $.PageIsIssues}}issues{{else}}pulls{{end}}"> + <a class="{{if eq $.ContextUser.Id .Id}}active selected{{end}} item" href="{{AppSubUrl}}/org/{{.Name}}/{{if $.PageIsIssues}}issues{{else if $.PageIsPulls}}pulls{{else}}dashboard{{end}}"> <img class="ui avatar image" src="{{.AvatarLink}}"> - {{.Name}} + {{.ShortName 20}} </a> {{end}} </div> @@ -42,7 +42,7 @@ <div class="right menu"> <div class="item"> <a class="ui blue basic button" href="{{AppSubUrl}}/org/{{.ContextUser.Name}}"> - {{.i18n.Tr "home.view_home" .ContextUser.Name}} + {{.i18n.Tr "home.view_home" (.ContextUser.ShortName 10)}} </a> </div> </div> diff --git a/templates/user/profile.tmpl b/templates/user/profile.tmpl index abb2f194..a17261d1 100644 --- a/templates/user/profile.tmpl +++ b/templates/user/profile.tmpl @@ -1,104 +1,69 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div class="main-wrapper"> - <div id="user-profile-page" class="container clear"> - <div class="grid-1-5 left"> - <div> - {{if and (.Owner.UseCustomAvatar) (eq .SignedUserName .Owner.Name)}} - <a href="{{AppSubUrl}}/user/settings" id="profile-avatar" original-title="{{.i18n.Tr "user.change_custom_avatar"}}"> - {{else if eq .SignedUserName .Owner.Name}} - <a href="http://gravatar.com/emails/" id="profile-avatar" original-title="{{.i18n.Tr "user.change_avatar"}}"> - {{else}} - <a id="profile-avatar"> - {{end}} - <img class="profile-avatar" src="{{.Owner.AvatarLink}}?s=234" title="{{.Owner.Name}}"/> - </a> - <div class="text-center" id="profile-name"> - {{if .Owner.FullName}}<span id="profile-fullname" class="center-block">{{.Owner.FullName}}</span><br>{{end}} - <span class="center-block" id="profile-username">{{.Owner.Name}}</span> - </div> - </div> - <div class="profile-info"> - <hr> - <ul class="list-no-style"> - {{if .Owner.Location}} - <li class="list-group-item"><i class="octicon octicon-location"></i> {{.Owner.Location}}</li> - {{end}} - {{if and .Owner.Email .IsSigned}} - <li class="list-group-item"><i class="octicon octicon-mail"></i> <a href="mailto:{{.Owner.Email}}" rel="nofollow">{{.Owner.Email}}</a></li> - {{end}} - {{if .Owner.Website}} - <li class="list-group-item"><i class="octicon octicon-link"></i> <a target="_blank" href="{{.Owner.Website}}">{{.Owner.Website}}</a></li> - {{end}} - <li class="list-group-item"><i class="octicon octicon-clock"></i> {{.i18n.Tr "user.join_on"}} {{DateFmtShort .Owner.Created}}</li> - </ul> - <hr> - <ul class="list-no-style"> - <li class="list-group-item profile-rel"> - <a class="text-black" href=""> - <strong>{{.Owner.NumFollowers}}</strong> - <p>{{.i18n.Tr "user.followers"}}</p> - </a> - </li> - <li class="list-group-item profile-rel"> - <a class="text-black" href=""> - <strong>{{.Owner.NumStars}}</strong> - <p>{{.i18n.Tr "user.starred"}}</p> - </a> - </li> - <li class="list-group-item profile-rel"> - <a class="text-black" href=""> - <strong>{{.Owner.NumFollowings}}</strong> - <p>{{.i18n.Tr "user.following"}}</p> - </a> - </li> - </ul> - <hr> - </div> +{{template "base/head" .}} +<div class="user profile"> + <div class="ui container"> + <div class="ui grid"> + <div class="ui five wide column"> + <div class="ui card"> + {{if and (.Owner.UseCustomAvatar) (eq .SignedUserName .Owner.Name)}} + <a class="image poping up" href="{{AppSubUrl}}/user/settings" id="profile-avatar" data-content="{{.i18n.Tr "user.change_custom_avatar"}}" data-variation="inverted tiny" data-position="bottom center"> + <img src="{{.Owner.AvatarLink}}?s=290" title="{{.Owner.Name}}"/> + </a> + {{else if eq .SignedUserName .Owner.Name}} + <a class="image poping up" href="http://gravatar.com/emails/" id="profile-avatar" data-content="{{.i18n.Tr "user.change_avatar"}}" data-variation="inverted tiny" data-position="bottom center"> + <img src="{{.Owner.AvatarLink}}?s=290" title="{{.Owner.Name}}"/> + </a> + {{else}} + <span class="image"> + <img src="{{.Owner.AvatarLink}}?s=290" title="{{.Owner.Name}}"/> + </span> + {{end}} + <div class="content"> + {{if .Owner.FullName}}<span class="header text center">{{.Owner.FullName}}</span>{{end}} + <span class="username text center">{{.Owner.Name}}</span> + </div> + <div class="extra content"> + <ul class="text black"> + {{if .Owner.Location}} + <li><i class="icon octicon octicon-location"></i> {{.Owner.Location}}</li> + {{end}} + {{if and .Owner.Email .IsSigned}} + <li> + <i class="icon octicon octicon-mail"></i> + <a href="mailto:{{.Owner.Email}}" rel="nofollow">{{.Owner.Email}}</a> + </li> + {{end}} + {{if .Owner.Website}} + <li> + <i class="icon octicon octicon-link"></i> + <a target="_blank" href="{{.Owner.Website}}">{{.Owner.Website}}</a> + </li> + {{end}} + <li><i class="icon octicon octicon-clock"></i> {{.i18n.Tr "user.join_on"}} {{DateFmtShort .Owner.Created}}</li> + </ul> + </div> </div> - <div class="grid-4-5 left"> - <div id="profile-body"> - <ul class="menu menu-line" id="profile-header"> - <li> - <a {{if not .TabName}}class="current"{{end}} href="{{.Owner.HomeLink}}"><i class="octicon octicon-repo"></i> {{.i18n.Tr "user.repositories"}}</a> - </li> - <li> - <a {{if eq .TabName "activity"}}class="current"{{end}} href="{{.Owner.HomeLink}}?tab=activity"><i class="octicon octicon-repo"></i> {{.i18n.Tr "user.activity"}}</a> - </li> - </ul> - <div class="tab-content"> - {{if eq .TabName "activity"}} - <div class="tab-pane active" id="dashboard-news"> - <br> - {{template "user/dashboard/feeds" .}} - </div> - {{else}} - <div class="tab-pane active"> - <div id="org-repo-list"> - {{range .Repos}} - {{if or (not .IsPrivate) (.HasAccess $.SignedUser)}} - <div class="org-repo-item"> - <ul class="org-repo-status right"> - <li><i class="octicon octicon-star"></i> {{.NumStars}}</li> - <li><i class="octicon octicon-git-branch"></i> {{.NumForks}}</li> - </ul> - <h2> - <a href="{{AppSubUrl}}/{{$.Owner.Name}}/{{.Name}}">{{.Name}}</a> - {{if .IsPrivate}} - <span class="text-gold"><i class="octicon octicon-lock"></i></span> - {{end}} - </h2> - <p class="org-repo-description">{{.Description}}</p> - <p class="org-repo-updated">{{$.i18n.Tr "org.repo_updated"}} {{TimeSince .Updated $.i18n.Lang}}</p> - </div> - {{end}} - {{end}} - </div> - </div> - {{end}} - </div> - </div> + </div> + <div class="ui eleven wide column"> + <div class="ui secondary pointing menu"> + <a class="{{if ne .TabName "activity"}}active{{end}} item" href="{{.Owner.HomeLink}}"> + <i class="icon octicon octicon-repo"></i> {{.i18n.Tr "user.repositories"}} + </a> + <a class="item"> + <a class="{{if eq .TabName "activity"}}active{{end}} item" href="{{.Owner.HomeLink}}?tab=activity"> + <i class="icon octicon octicon-rss"></i> {{.i18n.Tr "user.activity"}} + </a> + </a> </div> + {{if ne .TabName "activity"}} + {{template "explore/repo_list" .}} + {{else}} + <br> + <div class="feeds"> + {{template "user/dashboard/feeds" .}} + </div> + {{end}} + </div> </div> + </div> </div> -{{template "ng/base/footer" .}} +{{template "base/footer" .}}
\ No newline at end of file |