├── .github
└── workflows
│ ├── docker-image.yml
│ └── release.yml
├── .goreleaser.yml
├── .vscode
└── launch.json
├── Dockerfile
├── LICENSE
├── README.md
├── config
├── config.go
├── config_test.go
└── uesr.go
├── ddns-web.png
├── dns
├── alidns.go
├── cloudflare.go
├── dnspod.go
└── index.go
├── go.mod
├── go.sum
├── main.go
├── static
├── bootstrap.min.css
├── common.css
├── favicon.ico
├── js_css_data.go
└── pages
│ └── writing.html
├── util
├── httpUtil.go
├── openExplorer.go
├── staticPagesData.go
├── staticPagesUtil.go
└── user.go
└── web
├── logs.go
├── save.go
└── writing.go
/.github/workflows/docker-image.yml:
--------------------------------------------------------------------------------
1 | name: docker hub release
2 |
3 | # build master with multi-arch to docker hub
4 |
5 | on:
6 | push:
7 | # Sequence of patterns matched against refs/tags
8 | tags:
9 | - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
10 |
11 | jobs:
12 | buildx-dockerhub:
13 | runs-on: ubuntu-latest
14 | env:
15 | DOCKER_REPO: jeessy/ddns-go
16 | DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
17 | DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
18 | DOCKER_PLATFORMS: linux/amd64,linux/arm,linux/arm64
19 | DOCKER_REGISTRY: ""
20 | steps:
21 | - name: Checkout
22 | uses: actions/checkout@v2
23 | - name: Set up Docker buildx
24 | id: buildx
25 | uses: crazy-max/ghaction-docker-buildx@v3
26 | - name: Prepare arguments
27 | id: prepare
28 | run: |
29 | DOCKER_TAGS="--tag ${DOCKER_REPO}:edge"
30 | if [[ $GITHUB_REF == refs/tags/v* ]]; then
31 | DOCKER_TAGS="--tag ${DOCKER_REPO}:latest --tag ${DOCKER_REPO}:${GITHUB_REF#refs/tags/}"
32 | fi
33 | echo ::set-output name=buildx_args:: --output "type=image,push=true" --platform ${DOCKER_PLATFORMS} ${DOCKER_TAGS} .
34 | - name: Docker login
35 | run: |
36 | echo "${DOCKER_PASSWORD}" | docker login "${DOCKER_REGISTRY}" \
37 | --username "${DOCKER_USERNAME}" \
38 | --password-stdin
39 | - name: Run buildx and push
40 | if: success()
41 | run: docker buildx build ${{ steps.prepare.outputs.buildx_args }}
42 | - name: Docker Hub logout
43 | if: always()
44 | run: docker logout
--------------------------------------------------------------------------------
/.github/workflows/release.yml:
--------------------------------------------------------------------------------
1 | name: release
2 |
3 | on:
4 | push:
5 | # Sequence of patterns matched against refs/tags
6 | tags:
7 | - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
8 |
9 | jobs:
10 |
11 | build:
12 | name: Build
13 | runs-on: ubuntu-latest
14 | steps:
15 |
16 | - name: Set up Go 1.x
17 | uses: actions/setup-go@v2
18 | with:
19 | go-version: ^1.15
20 | id: go
21 |
22 | - name: Check out code into the Go module directory
23 | uses: actions/checkout@v2
24 | with:
25 | fetch-depth: 0
26 |
27 | - name: Run GoReleaser
28 | uses: goreleaser/goreleaser-action@v2
29 | if: startsWith(github.ref, 'refs/tags/')
30 | with:
31 | version: latest
32 | args: release --rm-dist
33 | env:
34 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35 |
--------------------------------------------------------------------------------
/.goreleaser.yml:
--------------------------------------------------------------------------------
1 | # This is an example goreleaser.yaml file with some sane defaults.
2 | # Make sure to check the documentation at http://goreleaser.com
3 | before:
4 | hooks:
5 | # You may remove this if you don't use go modules.
6 | - go mod download
7 | # you may remove this if you don't need go generate
8 | - go generate ./...
9 | builds:
10 | - env:
11 | - CGO_ENABLED=0
12 | goos:
13 | - linux
14 | - windows
15 | - darwin
16 | goarch:
17 | - 386
18 | - amd64
19 | - arm
20 | - arm64
21 | archives:
22 | - replacements:
23 | darwin: Darwin
24 | linux: Linux
25 | windows: Windows
26 | 386: i386
27 | amd64: x86_64
28 | checksum:
29 | name_template: 'checksums.txt'
30 | snapshot:
31 | name_template: "{{ .Tag }}-next"
32 | changelog:
33 | sort: asc
34 | filters:
35 | exclude:
36 | - '^docs:'
37 | - '^test:'
38 |
--------------------------------------------------------------------------------
/.vscode/launch.json:
--------------------------------------------------------------------------------
1 | {
2 | // Use IntelliSense to learn about possible attributes.
3 | // Hover to view descriptions of existing attributes.
4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 | "version": "0.2.0",
6 | "configurations": [
7 | {
8 | "name": "Launch",
9 | "type": "go",
10 | "request": "launch",
11 | "mode": "auto",
12 | "program": "${workspaceFolder}/main.go",
13 | "env": {},
14 | "args": []
15 | }
16 | ]
17 | }
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | # build stage
2 | FROM golang:alpine AS builder
3 | WORKDIR /app
4 | COPY . .
5 | RUN go env -w GO111MODULE=on \
6 | && go env -w GOPROXY=https://goproxy.cn,direct \
7 | && go get -d -v . \
8 | && go install -v . \
9 | && go build -v .
10 |
11 | # final stage
12 | FROM alpine
13 | WORKDIR /app
14 | ENV TZ=Asia/Shanghai
15 | COPY --from=builder /app/ddns-go /app/ddns-go
16 | EXPOSE 9876
17 | ENTRYPOINT /app/ddns-go
18 | LABEL Name=ddns-go Version=0.0.1
19 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 jeessy
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | # ddns-go
4 | - 自动获得你的公网IPV4或IPV6并解析到域名中
5 | - 支持Mac、Windows、Linux系统,支持ARM、x86架构
6 | - 支持的域名服务商 `Alidns(阿里云)` `Dnspod(腾讯云)` `Cloudflare`
7 | - 间隔5分钟同步一次
8 | - 支持多个域名同时解析,公司必备
9 | - 支持多级域名
10 | - 网页中配置,简单又方便,可设置登录用户名和密码
11 | - 网页中方便快速查看最近50条日志,不需要跑docker中查看
12 |
13 | ## 系统中使用
14 | - 下载并解压[https://github.com/jeessy2/ddns-go/releases](https://github.com/jeessy2/ddns-go/releases)
15 | - 双击运行,程序自动打开[http://127.0.0.1:9876](http://127.0.0.1:9876),修改你的配置,成功
16 | - [可选] 加入到开机启动中,需自行搜索
17 |
18 | ## Docker中使用
19 | ```
20 | docker run -d \
21 | --name ddns-go \
22 | --restart=always \
23 | -p 9876:9876 \
24 | jeessy/ddns-go
25 | ```
26 | - 在网页中打开`http://主机IP:9876`,修改你的配置,成功
27 | - [可选] docker中默认不支持ipv6,需自行探索如何开启
28 |
29 | ## 使用IPV6
30 | - 前提:你的电脑或终端能正常获取IPV6
31 | - Windows/Mac系统推荐在 `系统中使用`,Windows/Mac桌面版的docker不支持`--net=host`
32 | - Linux的x86或arm架构,如服务器、群晖、xx盒子等等,推荐使用`--net=host`模式,简单点
33 | ```
34 | docker run -d \
35 | --name ddns-go \
36 | --restart=always \
37 | --net=host \
38 | jeessy/ddns-go
39 | ```
40 | - [可选] 使用IPV6后,建议设置登录用户名和密码
41 |
42 | 
43 |
44 | ## Development
45 | ```
46 | go get -u github.com/go-bindata/go-bindata/...
47 | go-bindata -debug -pkg util -o util/staticPagesData.go static/pages/...
48 | go-bindata -pkg static -o static/js_css_data.go -fs -prefix "static/" static/
49 | ```
50 |
51 | ## Release
52 | ```
53 | go-bindata -pkg util -o util/staticPagesData.go static/pages/...
54 | go-bindata -pkg static -o static/js_css_data.go -fs -prefix "static/" static/
55 |
56 | # 自动发布
57 | git tag v0.0.x -m "xxx"
58 | git push --tags
59 | ```
--------------------------------------------------------------------------------
/config/config.go:
--------------------------------------------------------------------------------
1 | package config
2 |
3 | import (
4 | "ddns-go/util"
5 | "io/ioutil"
6 | "log"
7 | "net/http"
8 | "os"
9 | "regexp"
10 | "sync"
11 |
12 | "gopkg.in/yaml.v2"
13 | )
14 |
15 | // Ipv4Reg IPV4正则
16 | const Ipv4Reg = `((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])`
17 |
18 | // Ipv6Reg IPV6正则
19 | const Ipv6Reg = `((([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}))|:)))`
20 |
21 | // Config 配置
22 | type Config struct {
23 | Ipv4 struct {
24 | Enable bool
25 | URL string
26 | Domains []string
27 | }
28 | Ipv6 struct {
29 | Enable bool
30 | URL string
31 | Domains []string
32 | }
33 | DNS DNSConfig
34 | User
35 | }
36 |
37 | // DNSConfig DNS配置
38 | type DNSConfig struct {
39 | Name string
40 | ID string
41 | Secret string
42 | }
43 |
44 | // ConfigCache ConfigCache
45 | type cacheType struct {
46 | ConfigSingle *Config
47 | Err error
48 | Lock sync.Mutex
49 | }
50 |
51 | var cache = &cacheType{}
52 |
53 | // GetConfigCache 获得配置
54 | func GetConfigCache() (conf Config, err error) {
55 |
56 | if cache.ConfigSingle != nil {
57 | return *cache.ConfigSingle, cache.Err
58 | }
59 |
60 | cache.Lock.Lock()
61 | defer cache.Lock.Unlock()
62 |
63 | // init config
64 | cache.ConfigSingle = &Config{}
65 |
66 | configFilePath := util.GetConfigFilePath()
67 | _, err = os.Stat(configFilePath)
68 | if err != nil {
69 | log.Println("没有找到配置文件!请在网页中输入")
70 | cache.Err = err
71 | return *cache.ConfigSingle, err
72 | }
73 |
74 | byt, err := ioutil.ReadFile(configFilePath)
75 | if err != nil {
76 | log.Println("config.yaml读取失败")
77 | cache.Err = err
78 | return *cache.ConfigSingle, err
79 | }
80 |
81 | err = yaml.Unmarshal(byt, cache.ConfigSingle)
82 | if err != nil {
83 | log.Println("反序列化配置文件失败", err)
84 | cache.Err = err
85 | return *cache.ConfigSingle, err
86 | }
87 | // remove err
88 | cache.Err = nil
89 | return *cache.ConfigSingle, err
90 | }
91 |
92 | // SaveConfig 保存配置
93 | func (conf *Config) SaveConfig() (err error) {
94 | byt, err := yaml.Marshal(conf)
95 | if err != nil {
96 | log.Println(err)
97 | return err
98 | }
99 |
100 | err = ioutil.WriteFile(util.GetConfigFilePath(), byt, 0600)
101 | if err != nil {
102 | log.Println(err)
103 | return
104 | }
105 |
106 | // 清空配置缓存
107 | cache.ConfigSingle = nil
108 |
109 | return
110 | }
111 |
112 | // GetIpv4Addr 获得IPV4地址
113 | func (conf *Config) GetIpv4Addr() (result string) {
114 | if conf.Ipv4.Enable {
115 | resp, err := http.Get(conf.Ipv4.URL)
116 | if err != nil {
117 | log.Println("Failed to get ipv4, URL: ", conf.Ipv4.URL)
118 | return
119 | }
120 |
121 | defer resp.Body.Close()
122 | body, err := ioutil.ReadAll(resp.Body)
123 | if err != nil {
124 | log.Println("读取IPV4结果失败, URL: ", conf.Ipv4.URL)
125 | return
126 | }
127 | comp := regexp.MustCompile(Ipv4Reg)
128 | result = comp.FindString(string(body))
129 | }
130 | return
131 | }
132 |
133 | // GetIpv6Addr 获得IPV6地址
134 | func (conf *Config) GetIpv6Addr() (result string) {
135 | if conf.Ipv6.Enable {
136 | resp, err := http.Get(conf.Ipv6.URL)
137 | if err != nil {
138 | log.Println("Failed to get ipv6, URL: ", conf.Ipv6.URL)
139 | return
140 | }
141 |
142 | defer resp.Body.Close()
143 | body, err := ioutil.ReadAll(resp.Body)
144 | if err != nil {
145 | log.Println("读取IPV6结果失败, URL: ", conf.Ipv6.URL)
146 | return
147 | }
148 | comp := regexp.MustCompile(Ipv6Reg)
149 | result = comp.FindString(string(body))
150 | }
151 | return
152 | }
153 |
--------------------------------------------------------------------------------
/config/config_test.go:
--------------------------------------------------------------------------------
1 | package config
2 |
3 | import (
4 | "io/ioutil"
5 | "testing"
6 |
7 | "gopkg.in/yaml.v2"
8 | )
9 |
10 | func TestConfig(t *testing.T) {
11 | conf := &Config{}
12 | byt, err := ioutil.ReadFile("../config.yaml")
13 | if err != nil {
14 | t.Error(err)
15 | }
16 |
17 | yaml.Unmarshal(byt, conf)
18 | if "alidns" != conf.DNS.Name {
19 | t.Error("DNS Name必须为alidns")
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/config/uesr.go:
--------------------------------------------------------------------------------
1 | package config
2 |
3 | import (
4 | "bytes"
5 | "encoding/base64"
6 | "net/http"
7 | "strings"
8 | )
9 |
10 | // User 登录用户
11 | type User struct {
12 | Username string
13 | Password string
14 | }
15 |
16 | // ViewFunc func
17 | type ViewFunc func(http.ResponseWriter, *http.Request)
18 |
19 | // BasicAuth basic auth
20 | func BasicAuth(f ViewFunc) ViewFunc {
21 | return func(w http.ResponseWriter, r *http.Request) {
22 | // 帐号或密码为空。跳过
23 | conf, _ := GetConfigCache()
24 | if conf.Username == "" && conf.Password == "" {
25 | // 执行被装饰的函数
26 | f(w, r)
27 | return
28 | }
29 |
30 | // 认证帐号密码
31 | basicAuthPrefix := "Basic "
32 |
33 | // 获取 request header
34 | auth := r.Header.Get("Authorization")
35 | // 如果是 http basic auth
36 | if strings.HasPrefix(auth, basicAuthPrefix) {
37 | // 解码认证信息
38 | payload, err := base64.StdEncoding.DecodeString(
39 | auth[len(basicAuthPrefix):],
40 | )
41 | if err == nil {
42 | pair := bytes.SplitN(payload, []byte(":"), 2)
43 | if len(pair) == 2 &&
44 | bytes.Equal(pair[0], []byte(conf.Username)) &&
45 | bytes.Equal(pair[1], []byte(conf.Password)) {
46 | // 执行被装饰的函数
47 | f(w, r)
48 | return
49 | }
50 | }
51 | }
52 |
53 | // 认证失败,提示 401 Unauthorized
54 | // Restricted 可以改成其他的值
55 | w.Header().Set("WWW-Authenticate", `Basic realm="Restricted"`)
56 | // 401 状态码
57 | w.WriteHeader(http.StatusUnauthorized)
58 | }
59 | }
60 |
--------------------------------------------------------------------------------
/ddns-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/szrq/ddns-go/fb393f82a1cc358c9fc24d03a5425ad765ed81b7/ddns-web.png
--------------------------------------------------------------------------------
/dns/alidns.go:
--------------------------------------------------------------------------------
1 | package dns
2 |
3 | import (
4 | "ddns-go/config"
5 | "log"
6 |
7 | alidnssdk "github.com/aliyun/alibaba-cloud-sdk-go/services/alidns"
8 | )
9 |
10 | // Alidns 阿里云dns实现
11 | type Alidns struct {
12 | client *alidnssdk.Client
13 | Domains
14 | }
15 |
16 | // Init 初始化
17 | func (ali *Alidns) Init(conf *config.Config) {
18 | client, err := alidnssdk.NewClientWithAccessKey("cn-hangzhou", conf.DNS.ID, conf.DNS.Secret)
19 | if err != nil {
20 | log.Println("Alidns链接失败")
21 | }
22 | ali.client = client
23 |
24 | ali.Domains.ParseDomain(conf)
25 |
26 | }
27 |
28 | // AddUpdateIpv4DomainRecords 添加或更新IPV4记录
29 | func (ali *Alidns) AddUpdateIpv4DomainRecords() {
30 | ali.addUpdateDomainRecords("A")
31 | }
32 |
33 | // AddUpdateIpv6DomainRecords 添加或更新IPV6记录
34 | func (ali *Alidns) AddUpdateIpv6DomainRecords() {
35 | ali.addUpdateDomainRecords("AAAA")
36 | }
37 |
38 | func (ali *Alidns) addUpdateDomainRecords(recordType string) {
39 | ipAddr := ali.Ipv4Addr
40 | domains := ali.Ipv4Domains
41 | if recordType == "AAAA" {
42 | ipAddr = ali.Ipv6Addr
43 | domains = ali.Ipv6Domains
44 | }
45 |
46 | if ipAddr == "" {
47 | return
48 | }
49 |
50 | existReq := alidnssdk.CreateDescribeSubDomainRecordsRequest()
51 | existReq.Type = recordType
52 |
53 | for _, domain := range domains {
54 | existReq.SubDomain = domain.GetFullDomain()
55 | rep, err := ali.client.DescribeSubDomainRecords(existReq)
56 | if err != nil {
57 | log.Println(err)
58 | }
59 | if rep.TotalCount > 0 {
60 | // Update
61 | for _, record := range rep.DomainRecords.Record {
62 | if record.Value == ipAddr {
63 | log.Printf("你的IP %s 没有变化, 域名 %s", ipAddr, domain)
64 | continue
65 | }
66 | request := alidnssdk.CreateUpdateDomainRecordRequest()
67 | request.Scheme = "https"
68 | request.Value = ipAddr
69 | request.Type = recordType
70 | request.RR = domain.GetSubDomain()
71 | request.RecordId = record.RecordId
72 |
73 | updateResp, err := ali.client.UpdateDomainRecord(request)
74 | if err == nil && updateResp.BaseResponse.IsSuccess() {
75 | log.Printf("更新域名解析 %s 成功!IP: %s", domain, ipAddr)
76 | } else {
77 | log.Printf("更新域名解析 %s 失败!IP: %s, Error: %s, Response: %s", domain, ipAddr, err, updateResp.GetHttpContentString())
78 | }
79 | }
80 | } else {
81 | // Add
82 | request := alidnssdk.CreateAddDomainRecordRequest()
83 | request.Scheme = "https"
84 | request.Value = ipAddr
85 | request.Type = recordType
86 | request.RR = domain.GetSubDomain()
87 | request.DomainName = domain.DomainName
88 |
89 | createResp, err := ali.client.AddDomainRecord(request)
90 | if err == nil && createResp.BaseResponse.IsSuccess() {
91 | log.Printf("新增域名解析 %s 成功!IP: %s", domain, ipAddr)
92 | } else {
93 | log.Printf("新增域名解析 %s 失败!IP: %s, Error: %s, Response: %s", domain, ipAddr, err, createResp.GetHttpContentString())
94 | }
95 | }
96 | }
97 | }
98 |
--------------------------------------------------------------------------------
/dns/cloudflare.go:
--------------------------------------------------------------------------------
1 | package dns
2 |
3 | import (
4 | "bytes"
5 | "ddns-go/config"
6 | "ddns-go/util"
7 | "encoding/json"
8 | "fmt"
9 | "log"
10 | "net/http"
11 | "time"
12 | )
13 |
14 | const (
15 | zonesAPI string = "https://api.cloudflare.com/client/v4/zones"
16 | )
17 |
18 | // Cloudflare Cloudflare实现
19 | type Cloudflare struct {
20 | DNSConfig config.DNSConfig
21 | Domains
22 | }
23 |
24 | // CloudflareZonesResp cloudflare zones返回结果
25 | type CloudflareZonesResp struct {
26 | CloudflareStatus
27 | Result []struct {
28 | ID string
29 | Name string
30 | Status string
31 | Paused bool
32 | }
33 | }
34 |
35 | // CloudflareRecordsResp records
36 | type CloudflareRecordsResp struct {
37 | CloudflareStatus
38 | Result []CloudflareRecord
39 | }
40 |
41 | // CloudflareRecord 记录实体
42 | type CloudflareRecord struct {
43 | ID string `json:"id"`
44 | Name string `json:"name"`
45 | Type string `json:"type"`
46 | Content string `json:"content"`
47 | Proxied bool `json:"proxied"`
48 | TTL int `json:"ttl"`
49 | }
50 |
51 | // CloudflareStatus 公共状态
52 | type CloudflareStatus struct {
53 | Success bool
54 | Messages []string
55 | }
56 |
57 | // Init 初始化
58 | func (cf *Cloudflare) Init(conf *config.Config) {
59 | cf.DNSConfig = conf.DNS
60 | cf.Domains.ParseDomain(conf)
61 | }
62 |
63 | // AddUpdateIpv4DomainRecords 添加或更新IPV4记录
64 | func (cf *Cloudflare) AddUpdateIpv4DomainRecords() {
65 | cf.addUpdateDomainRecords("A")
66 | }
67 |
68 | // AddUpdateIpv6DomainRecords 添加或更新IPV6记录
69 | func (cf *Cloudflare) AddUpdateIpv6DomainRecords() {
70 | cf.addUpdateDomainRecords("AAAA")
71 | }
72 |
73 | func (cf *Cloudflare) addUpdateDomainRecords(recordType string) {
74 | ipAddr := cf.Ipv4Addr
75 | domains := cf.Ipv4Domains
76 | if recordType == "AAAA" {
77 | ipAddr = cf.Ipv6Addr
78 | domains = cf.Ipv6Domains
79 | }
80 |
81 | if ipAddr == "" {
82 | return
83 | }
84 |
85 | for _, domain := range domains {
86 | // get zone
87 | result, err := cf.getZones(domain)
88 | if err != nil || len(result.Result) != 1 {
89 | return
90 | }
91 | zoneID := result.Result[0].ID
92 |
93 | var records CloudflareRecordsResp
94 | // getDomains 最多更新前50条
95 | err = cf.request(
96 | "GET",
97 | fmt.Sprintf(zonesAPI+"/%s/dns_records?type=%s&name=%s&per_page=50", zoneID, recordType, domain),
98 | nil,
99 | &records,
100 | )
101 |
102 | if err != nil || !records.Success {
103 | return
104 | }
105 |
106 | if len(records.Result) > 0 {
107 | // 更新
108 | cf.modify(records, zoneID, domain, recordType, ipAddr)
109 | } else {
110 | // 新增
111 | cf.create(zoneID, domain, recordType, ipAddr)
112 | }
113 | }
114 | }
115 |
116 | // 创建
117 | func (cf *Cloudflare) create(zoneID string, domain *Domain, recordType string, ipAddr string) {
118 | record := &CloudflareRecord{
119 | Type: recordType,
120 | Name: domain.String(),
121 | Content: ipAddr,
122 | Proxied: false,
123 | // auto ttl
124 | TTL: 1,
125 | }
126 | var status CloudflareStatus
127 | err := cf.request(
128 | "POST",
129 | fmt.Sprintf(zonesAPI+"/%s/dns_records", zoneID),
130 | record,
131 | &status,
132 | )
133 | if err == nil && status.Success {
134 | log.Printf("新增域名解析 %s 成功!IP: %s", domain, ipAddr)
135 | } else {
136 | log.Printf("新增域名解析 %s 失败!Messages: %s", domain, status.Messages)
137 | }
138 | }
139 |
140 | // 修改
141 | func (cf *Cloudflare) modify(result CloudflareRecordsResp, zoneID string, domain *Domain, recordType string, ipAddr string) {
142 |
143 | for _, record := range result.Result {
144 | // 相同不修改
145 | if record.Content == ipAddr {
146 | log.Printf("你的IP %s 没有变化, 域名 %s", ipAddr, domain)
147 | continue
148 | }
149 | var status CloudflareStatus
150 | record.Content = ipAddr
151 |
152 | err := cf.request(
153 | "PUT",
154 | fmt.Sprintf(zonesAPI+"/%s/dns_records/%s", zoneID, record.ID),
155 | record,
156 | &status,
157 | )
158 |
159 | if err == nil && status.Success {
160 | log.Printf("更新域名解析 %s 成功!IP: %s", domain, ipAddr)
161 | } else {
162 | log.Printf("更新域名解析 %s 失败!Messages: %s", domain, status.Messages)
163 | }
164 | }
165 | }
166 |
167 | // 获得域名记录列表
168 | func (cf *Cloudflare) getZones(domain *Domain) (result CloudflareZonesResp, err error) {
169 | err = cf.request(
170 | "GET",
171 | fmt.Sprintf(zonesAPI+"?name=%s&status=%s&per_page=%s", domain.DomainName, "active", "50"),
172 | nil,
173 | &result,
174 | )
175 |
176 | return
177 | }
178 |
179 | // request 统一请求接口
180 | func (cf *Cloudflare) request(method string, url string, data interface{}, result interface{}) (err error) {
181 | jsonStr := make([]byte, 0)
182 | if data != nil {
183 | jsonStr, _ = json.Marshal(data)
184 | }
185 | req, err := http.NewRequest(
186 | method,
187 | url,
188 | bytes.NewBuffer(jsonStr),
189 | )
190 | if err != nil {
191 | log.Println("http.NewRequest失败. Error: ", err)
192 | return
193 | }
194 | req.Header.Set("Authorization", "Bearer "+cf.DNSConfig.Secret)
195 | req.Header.Set("Content-Type", "application/json")
196 |
197 | clt := http.Client{}
198 | clt.Timeout = 1 * time.Minute
199 | resp, err := clt.Do(req)
200 | err = util.GetHTTPResponse(resp, url, err, result)
201 |
202 | return
203 | }
204 |
--------------------------------------------------------------------------------
/dns/dnspod.go:
--------------------------------------------------------------------------------
1 | package dns
2 |
3 | import (
4 | "ddns-go/config"
5 | "ddns-go/util"
6 | "log"
7 | "net/http"
8 | "net/url"
9 | )
10 |
11 | const (
12 | recordListAPI string = "https://dnsapi.cn/Record.List"
13 | recordModifyURL string = "https://dnsapi.cn/Record.Modify"
14 | recordCreateAPI string = "https://dnsapi.cn/Record.Create"
15 | )
16 |
17 | // Dnspod 腾讯云dns实现
18 | type Dnspod struct {
19 | DNSConfig config.DNSConfig
20 | Domains
21 | }
22 |
23 | // DnspodRecordListResp recordListAPI结果
24 | type DnspodRecordListResp struct {
25 | DnspodStatus
26 | Records []struct {
27 | ID string
28 | Name string
29 | Type string
30 | Value string
31 | Enabled string
32 | }
33 | }
34 |
35 | // DnspodStatus DnspodStatus
36 | type DnspodStatus struct {
37 | Status struct {
38 | Code string
39 | Message string
40 | }
41 | }
42 |
43 | // Init 初始化
44 | func (dnspod *Dnspod) Init(conf *config.Config) {
45 | dnspod.DNSConfig = conf.DNS
46 | dnspod.Domains.ParseDomain(conf)
47 | }
48 |
49 | // AddUpdateIpv4DomainRecords 添加或更新IPV4记录
50 | func (dnspod *Dnspod) AddUpdateIpv4DomainRecords() {
51 | dnspod.addUpdateDomainRecords("A")
52 | }
53 |
54 | // AddUpdateIpv6DomainRecords 添加或更新IPV6记录
55 | func (dnspod *Dnspod) AddUpdateIpv6DomainRecords() {
56 | dnspod.addUpdateDomainRecords("AAAA")
57 | }
58 |
59 | func (dnspod *Dnspod) addUpdateDomainRecords(recordType string) {
60 | ipAddr := dnspod.Ipv4Addr
61 | domains := dnspod.Ipv4Domains
62 | if recordType == "AAAA" {
63 | ipAddr = dnspod.Ipv6Addr
64 | domains = dnspod.Ipv6Domains
65 | }
66 |
67 | if ipAddr == "" {
68 | return
69 | }
70 |
71 | for _, domain := range domains {
72 | result, err := dnspod.getRecordList(domain, recordType)
73 | if err != nil {
74 | return
75 | }
76 |
77 | if len(result.Records) > 0 {
78 | // 更新
79 | dnspod.modify(result, domain, recordType, ipAddr)
80 | } else {
81 | // 新增
82 | dnspod.create(result, domain, recordType, ipAddr)
83 | }
84 | }
85 | }
86 |
87 | // 创建
88 | func (dnspod *Dnspod) create(result DnspodRecordListResp, domain *Domain, recordType string, ipAddr string) {
89 | status, err := dnspod.commonRequest(
90 | recordCreateAPI,
91 | url.Values{
92 | "login_token": {dnspod.DNSConfig.ID + "," + dnspod.DNSConfig.Secret},
93 | "domain": {domain.DomainName},
94 | "sub_domain": {domain.GetSubDomain()},
95 | "record_type": {recordType},
96 | "record_line": {"默认"},
97 | "value": {ipAddr},
98 | "format": {"json"},
99 | },
100 | domain,
101 | )
102 | if err == nil && status.Status.Code == "1" {
103 | log.Printf("新增域名解析 %s 成功!IP: %s", domain, ipAddr)
104 | } else {
105 | log.Printf("新增域名解析 %s 失败!Code: %s, Message: %s", domain, status.Status.Code, status.Status.Message)
106 | }
107 | }
108 |
109 | // 修改
110 | func (dnspod *Dnspod) modify(result DnspodRecordListResp, domain *Domain, recordType string, ipAddr string) {
111 | for _, record := range result.Records {
112 | // 相同不修改
113 | if record.Value == ipAddr {
114 | log.Printf("你的IP %s 没有变化, 域名 %s", ipAddr, domain)
115 | continue
116 | }
117 | status, err := dnspod.commonRequest(
118 | recordModifyURL,
119 | url.Values{
120 | "login_token": {dnspod.DNSConfig.ID + "," + dnspod.DNSConfig.Secret},
121 | "domain": {domain.DomainName},
122 | "sub_domain": {domain.GetSubDomain()},
123 | "record_type": {recordType},
124 | "record_line": {"默认"},
125 | "record_id": {record.ID},
126 | "value": {ipAddr},
127 | "format": {"json"},
128 | },
129 | domain,
130 | )
131 | if err == nil && status.Status.Code == "1" {
132 | log.Printf("更新域名解析 %s 成功!IP: %s", domain, ipAddr)
133 | } else {
134 | log.Printf("更新域名解析 %s 失败!Code: %s, Message: %s", domain, status.Status.Code, status.Status.Message)
135 | }
136 | }
137 | }
138 |
139 | // 公共
140 | func (dnspod *Dnspod) commonRequest(apiAddr string, values url.Values, domain *Domain) (status DnspodStatus, err error) {
141 | resp, err := http.PostForm(
142 | apiAddr,
143 | values,
144 | )
145 |
146 | err = util.GetHTTPResponse(resp, apiAddr, err, &status)
147 |
148 | return
149 | }
150 |
151 | // 获得域名记录列表
152 | func (dnspod *Dnspod) getRecordList(domain *Domain, typ string) (result DnspodRecordListResp, err error) {
153 | values := url.Values{
154 | "login_token": {dnspod.DNSConfig.ID + "," + dnspod.DNSConfig.Secret},
155 | "domain": {domain.DomainName},
156 | "record_type": {typ},
157 | "sub_domain": {domain.GetSubDomain()},
158 | "format": {"json"},
159 | }
160 |
161 | resp, err := http.PostForm(
162 | recordListAPI,
163 | values,
164 | )
165 |
166 | err = util.GetHTTPResponse(resp, recordListAPI, err, &result)
167 |
168 | return
169 | }
170 |
--------------------------------------------------------------------------------
/dns/index.go:
--------------------------------------------------------------------------------
1 | package dns
2 |
3 | import (
4 | "ddns-go/config"
5 | "log"
6 | "strings"
7 | "time"
8 | )
9 |
10 | // DNS interface
11 | type DNS interface {
12 | Init(conf *config.Config)
13 | // 添加或更新IPV4记录
14 | AddUpdateIpv4DomainRecords()
15 | // 添加或更新IPV6记录
16 | AddUpdateIpv6DomainRecords()
17 | }
18 |
19 | // Domains Ipv4/Ipv6 domains
20 | type Domains struct {
21 | Ipv4Addr string
22 | Ipv4Domains []*Domain
23 | Ipv6Addr string
24 | Ipv6Domains []*Domain
25 | }
26 |
27 | // Domain 域名实体
28 | type Domain struct {
29 | DomainName string
30 | SubDomain string
31 | Exist bool
32 | }
33 |
34 | func (d Domain) String() string {
35 | if d.SubDomain != "" {
36 | return d.SubDomain + "." + d.DomainName
37 | }
38 | return d.DomainName
39 | }
40 |
41 | // GetFullDomain 获得全部的,子域名
42 | func (d Domain) GetFullDomain() string {
43 | if d.SubDomain != "" {
44 | return d.SubDomain + "." + d.DomainName
45 | }
46 | return "@" + "." + d.DomainName
47 | }
48 |
49 | // GetSubDomain 获得子域名,为空返回@
50 | // 阿里云,dnspod需要
51 | func (d Domain) GetSubDomain() string {
52 | if d.SubDomain != "" {
53 | return d.SubDomain
54 | }
55 | return "@"
56 | }
57 |
58 | // RunTimer 定时运行
59 | func RunTimer() {
60 | for {
61 | RunOnce()
62 | time.Sleep(time.Minute * time.Duration(5))
63 | }
64 | }
65 |
66 | // RunOnce RunOnce
67 | func RunOnce() {
68 | conf, err := config.GetConfigCache()
69 | if err != nil {
70 | return
71 | }
72 |
73 | var dnsSelected DNS
74 | switch conf.DNS.Name {
75 | case "alidns":
76 | dnsSelected = &Alidns{}
77 | case "dnspod":
78 | dnsSelected = &Dnspod{}
79 | case "cloudflare":
80 | dnsSelected = &Cloudflare{}
81 | default:
82 | dnsSelected = &Alidns{}
83 | }
84 | dnsSelected.Init(&conf)
85 | dnsSelected.AddUpdateIpv4DomainRecords()
86 | dnsSelected.AddUpdateIpv6DomainRecords()
87 | }
88 |
89 | // ParseDomain 解析域名
90 | func (domains *Domains) ParseDomain(conf *config.Config) {
91 | // IPV4
92 | ipv4Addr := conf.GetIpv4Addr()
93 | if ipv4Addr != "" {
94 | domains.Ipv4Addr = ipv4Addr
95 | domains.Ipv4Domains = parseDomainInner(conf.Ipv4.Domains)
96 | }
97 |
98 | // IPV6
99 | ipv6Addr := conf.GetIpv6Addr()
100 | if ipv6Addr != "" {
101 | domains.Ipv6Addr = ipv6Addr
102 | domains.Ipv6Domains = parseDomainInner(conf.Ipv6.Domains)
103 | }
104 | }
105 |
106 | // parseDomainInner 解析域名inner
107 | func parseDomainInner(domainArr []string) (domains []*Domain) {
108 | for _, domainStr := range domainArr {
109 | domainStr = strings.Trim(domainStr, " ")
110 | if domainStr != "" {
111 | domain := &Domain{}
112 | sp := strings.Split(domainStr, ".")
113 | length := len(sp)
114 | if length <= 1 {
115 | log.Println(domainStr, "域名不正确")
116 | continue
117 | } else if length == 2 {
118 | domain.DomainName = domainStr
119 | } else {
120 | // >=3
121 | domain.DomainName = sp[length-2] + "." + sp[length-1]
122 | domain.SubDomain = domainStr[:len(domainStr)-len(domain.DomainName)-1]
123 | }
124 | domains = append(domains, domain)
125 | }
126 | }
127 | return
128 | }
129 |
--------------------------------------------------------------------------------
/go.mod:
--------------------------------------------------------------------------------
1 | module ddns-go
2 |
3 | go 1.15
4 |
5 | require (
6 | github.com/aliyun/alibaba-cloud-sdk-go v1.61.439
7 | github.com/go-bindata/go-bindata v3.1.2+incompatible // indirect
8 | github.com/jmespath/go-jmespath v0.3.0 // indirect
9 | github.com/json-iterator/go v1.1.10 // indirect
10 | github.com/modern-go/reflect2 v1.0.1 // indirect
11 | gopkg.in/ini.v1 v1.60.1 // indirect
12 | gopkg.in/yaml.v2 v2.3.0
13 | )
14 |
--------------------------------------------------------------------------------
/go.sum:
--------------------------------------------------------------------------------
1 | github.com/aliyun/alibaba-cloud-sdk-go v1.61.439 h1:vRjH9EcYcCkVUwti0q6AKcO8vFqCqe3EQOQl1QK+1zw=
2 | github.com/aliyun/alibaba-cloud-sdk-go v1.61.439/go.mod h1:pUKYbK5JQ+1Dfxk80P0qxGqe5dkxDoabbZS7zOcouyA=
3 | github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
4 | github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
5 | github.com/go-bindata/go-bindata v1.0.0 h1:DZ34txDXWn1DyWa+vQf7V9ANc2ILTtrEjtlsdJRF26M=
6 | github.com/go-bindata/go-bindata v3.1.2+incompatible h1:5vjJMVhowQdPzjE1LdxyFF7YFTXg5IgGVW4gBr5IbvE=
7 | github.com/go-bindata/go-bindata v3.1.2+incompatible/go.mod h1:xK8Dsgwmeed+BBsSy2XTopBn/8uK2HWuGSnA11C3Joo=
8 | github.com/goji/httpauth v0.0.0-20160601135302-2da839ab0f4d/go.mod h1:nnjvkQ9ptGaCkuDUx6wNykzzlUixGxvkme+H/lnzb+A=
9 | github.com/golang/tools v0.0.0-20200826040757-bc8aaaa29e06 h1:o8QN2yZHpPfla7J9ZQpaypzCL6fyEGCsLYv1+FpWdJc=
10 | github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
11 | github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=
12 | github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af h1:pmfjZENx5imkbgOkpRUYLnmbU7UEFbjtDA2hxJ1ichM=
13 | github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k=
14 | github.com/jmespath/go-jmespath v0.3.0 h1:OS12ieG61fsCg5+qLJ+SsW9NicxNkg3b25OyT2yCeUc=
15 | github.com/jmespath/go-jmespath v0.3.0/go.mod h1:9QtRXoHjLGCJ5IBSaohpXITPlowMeeYCZ7fLUTSywik=
16 | github.com/json-iterator/go v1.1.5 h1:gL2yXlmiIo4+t+y32d4WGwOjKGYcGOuyrg46vadswDE=
17 | github.com/json-iterator/go v1.1.5/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU=
18 | github.com/json-iterator/go v1.1.10 h1:Kz6Cvnvv2wGdaG/V8yMvfkmNiXq9Ya2KUv4rouJJr68=
19 | github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
20 | github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=
21 | github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
22 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
23 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
24 | github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 h1:Esafd1046DLDQ0W1YjYsBW+p8U2u7vzgW2SQVmlNazg=
25 | github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
26 | github.com/modern-go/reflect2 v1.0.1 h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=
27 | github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
28 | github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
29 | github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=
30 | github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA=
31 | github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
32 | github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
33 | github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
34 | golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
35 | golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
36 | golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
37 | golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
38 | golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
39 | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
40 | gopkg.in/ini.v1 v1.42.0 h1:7N3gPTt50s8GuLortA00n8AqRTk75qOP98+mTPpgzRk=
41 | gopkg.in/ini.v1 v1.42.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
42 | gopkg.in/ini.v1 v1.60.1 h1:P5y5shSkb0CFe44qEeMBgn8JLow09MP17jlJHanke5g=
43 | gopkg.in/ini.v1 v1.60.1/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
44 | gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
45 | gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=
46 | gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
47 |
--------------------------------------------------------------------------------
/main.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import (
4 | "ddns-go/config"
5 | "ddns-go/dns"
6 | "ddns-go/static"
7 | "ddns-go/util"
8 | "ddns-go/web"
9 | "log"
10 | "net/http"
11 | "time"
12 | )
13 |
14 | const port = "9876"
15 |
16 | func main() {
17 | // 启动静态文件服务
18 | http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(static.AssetFile())))
19 | http.Handle("/favicon.ico", http.StripPrefix("/", http.FileServer(static.AssetFile())))
20 |
21 | http.HandleFunc("/", config.BasicAuth(web.Writing))
22 | http.HandleFunc("/save", config.BasicAuth(web.Save))
23 | http.HandleFunc("/logs", config.BasicAuth(web.Logs))
24 |
25 | // 打开浏览器
26 | go util.OpenExplorer("http://127.0.0.1:" + port)
27 | log.Println("启动端口", port, "...")
28 |
29 | // 定时运行
30 | go dns.RunTimer()
31 |
32 | err := http.ListenAndServe(":"+port, nil)
33 |
34 | if err != nil {
35 | log.Println("启动端口发生异常, 1分钟后自动关闭此窗口", err)
36 | time.Sleep(time.Minute)
37 | }
38 |
39 | }
40 |
--------------------------------------------------------------------------------
/static/common.css:
--------------------------------------------------------------------------------
1 | body {
2 | background-color: #f2f3f8;
3 | }
4 |
5 | .portlet {
6 | display: -webkit-box;
7 | display: flex;
8 | -webkit-box-flex: 1;
9 | flex-grow: 1;
10 | -webkit-box-orient: vertical;
11 | -webkit-box-direction: normal;
12 | flex-direction: column;
13 | box-shadow: 0px 0px 13px 3px rgba(82, 63, 105, 0.05);
14 | background-color: #ffffff;
15 | margin-bottom: 20px;
16 | border-radius: 4px;
17 | }
18 |
19 | .portlet .portlet__head {
20 | display: flex;
21 | -webkit-box-align: stretch;
22 | -webkit-box-pack: justify;
23 | justify-content: space-between;
24 | position: relative;
25 | padding: 0 20px;
26 | margin: 0;
27 | border-bottom: 1px solid #ebedf2;
28 | min-height: 60px;
29 | border-top-left-radius: 4px;
30 | border-top-right-radius: 4px;
31 | align-items: center;
32 | font-size: 1.2rem;
33 | font-weight: 540;
34 | color: #48465b;
35 | }
36 |
37 | .portlet .portlet__body {
38 | display: -webkit-box;
39 | display: -ms-flexbox;
40 | -webkit-box-orient: vertical;
41 | -webkit-box-direction: normal;
42 | -ms-flex-direction: column;
43 | flex-direction: column;
44 | padding: 20px;
45 | border-radius: 4px;
46 | }
--------------------------------------------------------------------------------
/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/szrq/ddns-go/fb393f82a1cc358c9fc24d03a5425ad765ed81b7/static/favicon.ico
--------------------------------------------------------------------------------
/static/js_css_data.go:
--------------------------------------------------------------------------------
1 | // Code generated for package static by go-bindata DO NOT EDIT. (@generated)
2 | // sources:
3 | // static/bootstrap.min.css
4 | // static/common.css
5 | // static/favicon.ico
6 | package static
7 |
8 | import (
9 | "bytes"
10 | "compress/gzip"
11 | "fmt"
12 | "net/http"
13 | "io"
14 | "io/ioutil"
15 | "os"
16 | "path/filepath"
17 | "strings"
18 | "time"
19 | )
20 |
21 | func bindataRead(data []byte, name string) ([]byte, error) {
22 | gz, err := gzip.NewReader(bytes.NewBuffer(data))
23 | if err != nil {
24 | return nil, fmt.Errorf("Read %q: %v", name, err)
25 | }
26 |
27 | var buf bytes.Buffer
28 | _, err = io.Copy(&buf, gz)
29 | clErr := gz.Close()
30 |
31 | if err != nil {
32 | return nil, fmt.Errorf("Read %q: %v", name, err)
33 | }
34 | if clErr != nil {
35 | return nil, err
36 | }
37 |
38 | return buf.Bytes(), nil
39 | }
40 |
41 | type asset struct {
42 | bytes []byte
43 | info os.FileInfo
44 | }
45 |
46 | type bindataFileInfo struct {
47 | name string
48 | size int64
49 | mode os.FileMode
50 | modTime time.Time
51 | }
52 |
53 | // Name return file name
54 | func (fi bindataFileInfo) Name() string {
55 | return fi.name
56 | }
57 |
58 | // Size return file size
59 | func (fi bindataFileInfo) Size() int64 {
60 | return fi.size
61 | }
62 |
63 | // Mode return file mode
64 | func (fi bindataFileInfo) Mode() os.FileMode {
65 | return fi.mode
66 | }
67 |
68 | // Mode return file modify time
69 | func (fi bindataFileInfo) ModTime() time.Time {
70 | return fi.modTime
71 | }
72 |
73 | // IsDir return file whether a directory
74 | func (fi bindataFileInfo) IsDir() bool {
75 | return fi.mode&os.ModeDir != 0
76 | }
77 |
78 | // Sys return file is sys mode
79 | func (fi bindataFileInfo) Sys() interface{} {
80 | return nil
81 | }
82 |
83 |
84 | type assetFile struct {
85 | *bytes.Reader
86 | name string
87 | childInfos []os.FileInfo
88 | childInfoOffset int
89 | }
90 |
91 | type assetOperator struct{}
92 |
93 | // Open implement http.FileSystem interface
94 | func (f *assetOperator) Open(name string) (http.File, error) {
95 | var err error
96 | if len(name) > 0 && name[0] == '/' {
97 | name = name[1:]
98 | }
99 | content, err := Asset(name)
100 | if err == nil {
101 | return &assetFile{name: name, Reader: bytes.NewReader(content)}, nil
102 | }
103 | children, err := AssetDir(name)
104 | if err == nil {
105 | childInfos := make([]os.FileInfo, 0, len(children))
106 | for _, child := range children {
107 | childPath := filepath.Join(name, child)
108 | info, errInfo := AssetInfo(filepath.Join(name, child))
109 | if errInfo == nil {
110 | childInfos = append(childInfos, info)
111 | } else {
112 | childInfos = append(childInfos, newDirFileInfo(childPath))
113 | }
114 | }
115 | return &assetFile{name: name, childInfos: childInfos}, nil
116 | } else {
117 | // If the error is not found, return an error that will
118 | // result in a 404 error. Otherwise the server returns
119 | // a 500 error for files not found.
120 | if strings.Contains(err.Error(), "not found") {
121 | return nil, os.ErrNotExist
122 | }
123 | return nil, err
124 | }
125 | }
126 |
127 | // Close no need do anything
128 | func (f *assetFile) Close() error {
129 | return nil
130 | }
131 |
132 | // Readdir read dir's children file info
133 | func (f *assetFile) Readdir(count int) ([]os.FileInfo, error) {
134 | if len(f.childInfos) == 0 {
135 | return nil, os.ErrNotExist
136 | }
137 | if count <= 0 {
138 | return f.childInfos, nil
139 | }
140 | if f.childInfoOffset+count > len(f.childInfos) {
141 | count = len(f.childInfos) - f.childInfoOffset
142 | }
143 | offset := f.childInfoOffset
144 | f.childInfoOffset += count
145 | return f.childInfos[offset : offset+count], nil
146 | }
147 |
148 | // Stat read file info from asset item
149 | func (f *assetFile) Stat() (os.FileInfo, error) {
150 | if len(f.childInfos) != 0 {
151 | return newDirFileInfo(f.name), nil
152 | }
153 | return AssetInfo(f.name)
154 | }
155 |
156 | // newDirFileInfo return default dir file info
157 | func newDirFileInfo(name string) os.FileInfo {
158 | return &bindataFileInfo{
159 | name: name,
160 | size: 0,
161 | mode: os.FileMode(2147484068), // equal os.FileMode(0644)|os.ModeDir
162 | modTime: time.Time{}}
163 | }
164 |
165 | // AssetFile return a http.FileSystem instance that data backend by asset
166 | func AssetFile() http.FileSystem {
167 | return &assetOperator{}
168 | }
169 |
170 | var _bootstrapMinCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x8f\xe3\x38\x92\x20\xfe\xff\x7d\x0a\x6f\x16\x0a\x55\x35\x6d\xb9\x24\xd9\xf2\x2b\xd1\x8d\x9d\x1d\xec\xe2\x16\xe8\x9e\x3f\xa6\x6f\x81\x03\xfa\xea\x00\xd9\xa2\x6d\x4d\xe9\x75\x92\x5c\xa9\xec\x44\xee\x67\xff\x81\x2f\x89\x8f\x20\x25\xd9\xca\x9a\x99\xfd\xed\xf6\x4e\xa5\x45\x06\x23\x82\x11\x41\x2a\x82\x22\x83\x9f\xff\xf0\x4f\xff\x63\xf6\x87\xd9\xbf\xe4\x79\x5d\xd5\x65\x58\xcc\xbe\xad\x16\xc1\xc2\x9d\x7d\xbc\xd4\x75\x51\xed\x3f\x7f\x3e\xa3\xfa\xc0\x2b\x17\xc7\x3c\xfd\xfc\x09\xc3\xff\x29\x2f\x9e\xcb\xf8\x7c\xa9\x67\xbe\xeb\x79\x8e\xef\xfa\xee\xec\x7f\x5d\x90\x80\xe7\x8f\xd7\xfa\x92\x97\x95\x11\xf8\x29\xae\x6b\x54\xce\x67\xff\x9e\x1d\x17\x18\xe8\xe7\xf8\x88\xb2\x0a\x45\xb3\x6b\x16\xa1\x72\xf6\xcb\xbf\xff\x2f\x81\x87\xb8\xbe\x5c\x0f\x84\x7a\xfd\x74\xa8\x3e\xb7\x0c\x7d\x3e\x24\xf9\xe1\x73\x1a\x56\x35\x2a\x3f\xff\xfc\xef\x7f\xfa\xd7\x3f\xff\xfa\xaf\x98\xbf\xcf\xfb\x32\xcf\xeb\x17\xc7\x39\x24\x57\xb4\x7f\xe7\xba\x9b\xc3\xe9\xf4\xe8\x38\x71\x16\xc5\xe7\x7c\xff\x6e\xbd\xf6\xdc\x93\xff\xe8\x38\xc5\xb5\x2c\x12\xb4\x7f\xb7\x3e\xad\xfc\xa3\x87\x0b\xe2\xec\xeb\xfe\x1d\xda\x2e\xd1\xf6\xf8\xe8\x38\x25\x8a\xf6\xef\xa2\xe3\x32\x58\x05\x8f\x8e\x93\x97\x61\x76\x46\xfb\x77\xa7\x68\x83\xbc\xd5\xa3\xe3\x3c\xa3\x24\xc9\x9f\xf6\xef\x4e\xa7\xa3\xe7\x6e\x1e\x1d\xe7\x5c\x22\x94\xed\xdf\xf9\xdb\x70\x43\x5a\xd4\x28\x4c\xf6\xef\x7c\xf7\xb8\xdb\xe1\xea\xe3\x73\x98\xed\xdf\x79\x9b\xd0\x3f\x6c\x1f\x1d\xe7\xe9\x12\xd7\x18\x1d\xe1\xed\x5c\x86\xcf\xfb\x77\xeb\xe3\x26\xd8\x44\xec\xd1\x89\xc2\xf2\xeb\xfe\xdd\x72\xb5\x0c\x57\x2e\x66\xae\x8c\xd3\xb0\x7c\x16\x3a\x54\xa1\x63\x9e\x45\xa4\xac\x6d\x59\x5d\x8f\x47\x54\x55\x02\x17\x71\x76\xca\x45\xb2\x61\x99\xc5\xd9\x59\x60\x3b\xc2\xfd\x2a\x85\x9e\x26\x58\x5d\xfb\x77\xa7\xed\x69\x77\x0a\x09\x80\xc4\xc8\xa1\x44\xe1\xd7\x22\x8f\xb3\xda\x69\xaa\xbd\x52\x52\xa5\xfb\x60\xb3\x2e\x1a\xb9\x34\x8d\xf6\x9b\xf5\x56\x2d\x4d\xce\xfb\xdd\xce\x57\x4b\x9b\x64\xef\xf9\xae\x4b\x8a\x4f\x79\x56\x3b\xa7\x30\x8d\x93\x67\xa7\x0a\xb3\xca\xa9\x50\x19\x9f\xf6\x4e\x58\x14\x09\x72\xaa\xe7\xaa\x46\xe9\xfc\x5f\x92\x38\xfb\xfa\x4b\x78\xfc\x95\x3c\xfe\x5b\x9e\xd5\xf3\x87\x5f\xd1\x39\x47\xb3\xff\xf8\xf7\x87\xf9\x5f\xf2\x43\x5e\xe7\xf3\x87\xff\x89\x92\x6f\xa8\x8e\x8f\xe1\xec\xcf\xe8\x8a\x1e\xe6\x7f\x2c\xe3\x30\x99\x3f\xfc\x39\xaf\xf3\xd9\xaf\x61\x56\x3d\xcc\x3b\x02\xf3\x87\x3f\x62\x02\xb3\x3f\xe5\x49\x5e\xce\xfe\x35\xcd\xff\x1a\x3f\x74\x38\xf5\x82\x5f\x9f\xd3\x43\x9e\x3c\x30\x6c\x62\x2b\xa5\x0f\x69\x9e\xe5\x55\x11\x1e\xd1\xfe\xd7\x7f\xfb\x25\xcf\x72\xe7\x2f\xe8\x7c\x4d\xc2\x72\xfe\x0b\xca\x92\x7c\xfe\x4b\x9e\x85\xc7\x7c\xfe\xa7\x3c\xab\xf2\x24\xac\xe6\x0f\x3f\xc7\x07\x54\x86\x75\x9c\x67\x33\x0c\xfe\x30\x7f\xf8\x53\x7e\x2d\x63\x54\xce\xfe\x8c\x9e\x1e\xe6\x2d\xba\xd7\x3f\xcc\xf7\xfb\xf0\x84\xc7\xd4\x7e\x7f\x40\xa7\xbc\x44\x2f\x87\xbc\x71\xaa\xf8\x77\xac\xeb\x43\x5e\x46\xa8\x74\x0e\x79\xf3\x7a\xa9\xd3\xe4\x45\x60\x69\xdf\xf5\xfa\x31\x89\x33\xe4\x5c\x10\xd1\xbe\xb7\xf0\x82\x47\xe7\x09\x1d\xbe\xc6\xb5\x53\xa3\xa6\xc6\xb8\x90\x13\x46\x7f\xbd\x56\xf5\xde\x73\xdd\xf7\x5d\x6d\x58\x38\x97\xf8\x7c\x21\x66\xe3\x1c\x71\xef\xf7\x75\x19\x66\x55\x11\x96\x28\xab\x5f\xc3\xb2\x8e\x8f\x09\x9a\x87\x55\x1c\xa1\xf9\x29\x3e\x1f\xc3\x02\x77\x09\xff\xbc\x96\x68\x7e\xca\x73\xcc\xf8\x05\x85\x11\xfe\x73\x2e\xf3\x6b\x31\x4f\xc3\x38\x9b\x67\xe1\xb7\x79\x85\x8e\x18\xf8\x25\x8a\xab\x22\x09\x9f\xf7\x87\x24\x3f\x7e\x7d\x3d\xe4\xd1\xf3\x4b\x1a\x96\xe7\x38\xdb\xbb\x8f\x62\x7f\xfe\x81\x6c\x83\xb0\x8d\xc5\xba\xf7\x4a\x94\xd2\xc7\x27\x2a\xfe\x95\xeb\x2a\xea\x08\x1e\xa9\x64\xdf\xf9\x9e\x1f\xf8\xbb\x47\xa2\x93\x30\x89\xcf\xd9\x3e\x41\xa7\xfa\xf1\x10\x1e\xbf\x62\xd1\x65\x11\x53\x01\x9e\x59\x5e\x7f\xab\xc3\x43\x9c\x45\xa8\xf9\xf1\xc1\xf1\x1e\xbe\xec\x4f\xf9\xf1\x5a\xed\xb3\xbc\xfe\x48\x7f\x3a\xdf\xe2\x2a\x3e\x24\xe8\xd3\x4b\x7e\xad\x31\xc1\xbd\xfb\x4f\x71\x5a\xe4\x65\x1d\x66\xf5\xeb\xa5\x14\xad\xe8\x98\x67\x35\xca\x6a\x6c\x46\x8f\x8c\x2d\xf7\x31\xff\x86\xca\x13\x9e\x06\x19\xa2\xd7\x8b\x37\xbf\xf8\xf3\xcb\x72\x7e\x59\xcd\x2f\xc1\xfc\xb2\x66\x6a\x72\xea\xbc\xd8\xbb\x8f\xec\xe1\x90\xd7\x75\x9e\xee\x17\x41\x89\xd2\xd7\xc2\x06\x82\x45\xf3\x1a\x1e\x0e\xe5\x6f\x51\x58\x87\x4e\x5e\xc6\xe7\x38\x0b\x13\xa7\x8e\xeb\x04\x7d\x99\x93\x1a\xfa\xfb\x85\x88\x24\x42\xc7\x9c\x0e\x99\x3d\x79\x99\xe0\x4e\xc9\x86\x0c\x41\xcc\xa2\xbc\xae\x51\xf4\xd8\x0b\x70\xbc\x96\x55\x5e\xee\x2f\x28\x29\x1e\xdb\x61\x45\x18\x75\x4d\x54\x9c\xea\x6b\x5c\x38\xf8\xd5\x92\xe5\x19\x52\x49\xc8\xb5\xaf\x61\x14\x95\xa8\xaa\x5e\x74\x21\x30\x73\xa9\x9f\x13\xb4\xcf\xf2\x32\x0d\x13\xc9\x42\xe2\xec\x82\xca\xb8\x7e\x8d\x92\x79\x9e\xcc\xaf\x49\xaf\x4c\xf3\x64\x96\x63\xd8\xd9\x15\x83\xcf\x48\xa3\x59\xd7\x8e\xf7\xea\x35\xaa\x5f\x44\xcb\xdc\xb8\xee\x6b\x14\xbd\x00\x7a\xe4\x44\xb0\x39\xee\xdd\x57\x32\x50\xff\xdf\x35\xaf\x51\x3b\x50\x67\xee\x8c\x90\x3e\xcc\xab\xba\xcc\xb3\xb3\x84\xf8\x90\x27\x11\x2a\x5f\xab\x34\x4c\xd8\x0c\x45\x86\xc6\xd6\x7d\xff\x5a\x5d\x0f\xf3\xea\x5a\xbc\x14\x79\x15\x13\xb5\x94\x28\x09\xeb\xf8\x1b\x12\x86\xd0\x26\x78\x2f\xc9\xc3\x7d\xfc\x86\xf0\xc4\x13\x26\x6c\x94\x1c\xc2\x0a\x61\x00\x8c\xed\x85\xf1\xed\x2c\xfc\x00\xa5\xaf\x18\x37\x96\x93\xb3\xc0\x4f\xe1\x0b\x1b\x40\xec\x45\xab\xda\x04\xd1\xa2\x36\xdc\xa4\x19\x6f\x7f\xc1\xe3\xa2\xc3\x13\xac\x0f\x4b\xb3\x6d\xbd\x86\x64\x44\xfe\x76\x29\xd1\xe9\xcb\x27\xd6\x8a\xe9\x13\xa4\x2e\x37\x90\x88\x59\x9b\x1d\xf3\x08\xcd\xbf\x1e\xa2\x79\x51\xa2\x79\x15\xa6\x85\xf4\x26\x98\xf6\x95\x24\xce\x6e\x78\x8c\x97\xa8\xcf\x22\xbb\xb9\x24\xbc\xd6\xf9\xa3\x93\x56\x0e\x2f\x61\x66\x5f\x1d\xcb\x3c\x49\x0e\x61\xf9\x4a\x5f\x1d\x9a\x61\xc5\xe9\xf9\x45\x51\x7b\x1a\x47\x51\x82\xf8\x58\xe5\xc3\x07\x9b\xc1\xb7\xf3\x4b\x4b\xf1\x12\x47\x11\xca\x54\x93\xa1\x6d\x5f\xeb\xf0\x90\xe0\xf7\x29\xc1\x70\xcc\x93\x24\x2c\x2a\xb4\xe7\x3f\x5e\xd9\xeb\xec\xa5\x08\xa3\x28\xce\xce\xa4\x7f\x8b\x0d\x19\x11\xbc\x88\x0f\x13\x5a\xca\xcc\x82\xf9\x6c\xea\x44\xce\xd0\x39\xf8\x6d\xb9\xa7\x0d\x5f\xeb\xcb\x8b\x00\xc6\x87\x7a\x12\x1e\x50\xd2\xbe\x18\xe3\x8c\x98\x3f\x19\x76\xe0\x34\x7b\xb8\xd6\x75\x9e\xf1\x7e\x94\x61\x14\x5f\x2b\x3c\x4e\x49\x31\x7d\x1d\xb4\x6f\x01\xaf\x68\xf8\x8c\xc7\x8b\x82\xa2\x99\x61\xc5\xcc\xf8\x34\x47\x5f\x20\x25\xee\x1f\xe9\x11\xc3\x34\x8f\xb3\xe2\x5a\xcf\xf3\xa2\xa6\x6f\xf2\x0a\x25\xe8\x58\xcf\x31\xff\x61\x89\x42\xf8\xad\xcd\xcd\xb6\x33\x1a\x5e\x02\xcd\x71\x22\xa1\x17\xed\x0d\xc4\x6a\x29\x5d\x2a\x37\x32\x38\x4f\x79\x99\x52\xd5\xff\x56\xe6\x09\xfa\x91\xc2\x7d\x79\x61\x53\x3a\xf1\x3e\xf1\x04\x44\xdb\x3d\xe5\x65\xe4\x3c\x95\x61\xc1\x26\xdb\xd7\xdf\xea\xe7\xa2\x6d\x34\xa7\x4f\x25\xaa\x50\xcd\x1f\xaa\xeb\x21\x8d\xeb\x2f\x73\x26\x67\x2e\xa6\xb0\x28\x50\x58\x86\xd9\x11\xed\x69\x8d\x8c\x89\xbe\x8c\xa3\xb8\xc2\x46\x16\x7d\x92\x10\xc3\x75\x8c\x8e\x5a\xc9\xf4\x28\x97\xaa\x9d\x93\x49\xef\x9d\x34\xff\x9d\xe9\x31\xce\x32\x54\xca\xd4\x4d\xd5\x9c\x01\xbd\x9e\xf1\xa0\x55\xf0\xb1\xb1\x77\x81\x81\x48\xd4\x48\x31\x1f\x2f\xe8\xf8\xf5\x90\x37\x5f\xe6\x42\x21\xb6\xd4\xfc\x0b\xec\xcf\x3e\xb6\x88\x5f\x5b\x03\x93\xa7\x91\x12\x11\x73\xe2\x23\xfb\xf5\x14\xa3\x24\xaa\x50\xfd\x92\xc6\x99\xf3\x14\x47\xf5\x65\xef\x76\x58\x1e\x5b\xeb\xa4\x34\xf6\xee\x6b\x82\xce\x28\x8b\x64\xff\xf3\x91\x36\x24\x6e\x70\x1a\x36\x8e\xf0\xa8\xa2\x92\x5f\x91\xc2\xa4\x48\x0b\x00\xf3\x7e\x94\x67\x72\x12\x27\x3a\x34\x6a\x60\xa6\x58\x94\xf9\x99\x78\x09\xa6\x57\x1c\x15\x5c\x76\x4d\x0f\xa8\xc4\x7a\x62\xa6\x48\x74\xe1\x54\x05\xe6\x8a\x0e\x12\x03\x60\x7e\xad\x65\xc0\x17\xc6\x22\x16\x29\xc3\x5e\xa1\xb0\x3c\x5e\xbe\xf0\x29\xc3\xc9\x4f\xa7\x0a\xd5\x7b\x87\x04\x74\xba\xed\xd3\x81\x27\xb6\xec\xc8\xd1\x02\xe1\x75\x05\x0d\x1e\x82\xa0\x6b\x73\x8a\x13\xe4\x5c\x8b\x24\x0f\x23\xce\x23\x16\x6e\x2b\x36\xf3\xf0\xcb\xaf\x35\x9e\x37\xa0\x79\xf3\xb5\xba\xa6\x38\xc8\x6e\x2b\x93\xb8\xaa\x9d\xb8\xc6\x93\xb6\x3c\x90\x6a\x94\x16\x49\x58\xa3\x16\x92\xf6\x8f\xbe\x47\xbe\x48\xa5\x82\x43\xbd\xb8\x78\xf3\xc5\xc5\x9f\x2f\x2e\xcb\xf9\xe2\xb2\x9a\x2f\x2e\xc1\x7c\x71\x59\xcf\x8d\x4e\xb3\x6e\x3c\xcc\x5b\x0a\xb4\x00\xc1\x27\xd8\x2f\x9e\xe0\x3b\xf9\x74\xe2\xc7\x14\x2f\xbe\x58\x4e\x4b\x97\xf3\xcb\xf2\x45\xb4\xc8\x0d\x03\x5f\xcd\x2f\xab\x17\xd5\x54\x5f\x31\xb3\x97\x40\x2a\xf7\x59\xc5\x1a\xb3\x2c\x87\x33\xaf\x8b\x04\x85\x91\x0e\x2d\xf5\x62\xe9\xba\xaf\x0b\x26\x2b\x47\xe4\x7c\x0d\x40\xea\xfd\xe5\x2d\xc5\xbe\x05\xba\xac\xac\x6d\x45\x09\xac\x46\xb6\x15\x85\xb4\x1c\xd6\xf6\x52\x8a\x6e\x90\x27\xb8\xcd\xa2\x27\xc4\x27\x1f\x3e\x5b\x12\xd8\xa2\x99\x55\x79\x12\x47\xb3\xf2\x7c\x08\x3f\xba\x73\xfc\xdf\xc2\xfb\xf4\xba\x20\x2e\xf3\x1c\x70\x9c\xd5\x90\xf2\x75\x91\x86\xe5\xd7\x39\xfe\xa7\x9d\x91\x17\x3e\xa6\xa7\x07\x8f\xc7\xd3\x16\x2d\x5f\x17\x64\x00\x5c\x33\x32\x5d\x47\xad\x8b\x43\x5d\xfc\x47\x52\x29\xcc\xe4\x14\x9a\x0e\xa8\x31\xb0\x64\x84\xc1\x03\x52\x03\xa3\x2f\xb8\x24\xac\x6a\xe7\x78\x89\x93\xe8\x13\x97\x27\x59\x64\x64\xae\xce\x22\xce\xe2\x3a\x0e\x93\xb8\x4a\x05\x89\xec\xdc\xf7\x8f\x8a\x3b\x70\x2d\x0a\x54\x1e\xc3\x0a\xbd\x2e\xb4\x78\x05\x08\xbe\x24\xab\xef\x1a\x38\x74\x09\x43\x79\x47\xc8\xaa\x90\x9c\x3e\xa0\x71\xbb\x6e\xc3\xc2\xec\xfd\xc3\xff\xf1\x5d\x6f\xf5\x7f\x5c\xf7\x8f\xee\xc3\xeb\x22\x4e\xcf\xce\x29\xb9\xc6\x38\xf2\x92\xde\x37\xe2\xc4\x4c\xa0\xea\xcb\x35\x3d\x64\x61\x9c\x08\x2a\x26\xa6\x09\xae\x10\x70\x53\xeb\xac\xeb\x5d\x84\x90\x8f\xd6\x8f\xb2\x9f\xc8\x70\xd8\x88\x33\x9f\x1c\x56\x23\xad\x74\xb0\x83\x0e\x4d\x6d\xd2\x30\x69\xa1\xb9\x67\x2d\xab\x50\x96\x24\x8e\x69\x44\xab\xdf\x2c\x82\x16\x84\xad\xe4\x76\xae\x1c\x59\x66\x74\xf0\xf3\x6b\xf8\x13\x69\x29\xbd\x6b\x5f\xbf\x1e\x22\x41\x6a\x25\x4a\x67\x8b\x95\xac\x7d\x09\x3f\x91\x9f\x26\x55\xb6\x40\xa3\xca\x0f\xdb\xcc\xd7\x43\x34\x13\x69\xb8\xa2\x5d\xb9\xca\x80\xc5\x91\x76\x21\x08\x54\xb3\x2a\x91\x15\x4a\x14\xc3\xcf\x14\x89\x18\xbc\x0a\x2c\x13\x22\x0e\xee\x54\x2c\x8a\x12\x39\x34\xc2\x22\xf1\x0e\x56\x35\xd3\xc8\x72\xe5\x16\x4d\x1b\x9e\x39\xcf\x2c\x10\x7b\x5d\x60\x5b\x0d\x63\xec\xe0\xe9\x1e\x10\x1b\x90\x5e\x50\xb4\x5e\x1a\x9d\x0b\x48\x89\x34\x68\x89\xa3\x26\xae\x1e\x10\x83\xfa\xe7\x14\x45\x71\x38\xfb\xd8\x39\x6a\x64\x65\xf9\xd3\x8b\x40\xb6\xb3\xc7\x00\xf3\xf8\x0a\x34\x22\x0b\xcf\x86\x46\x1b\xdf\xd0\x88\xac\x4b\x1b\x1a\xed\xd6\x86\x46\x74\xd9\xda\xd0\xca\xf3\x28\x83\x5d\x25\x1d\xcf\x73\xa1\x20\x39\x8b\x4f\xa9\x54\x57\xa5\xe2\x53\x93\xfc\x8d\x24\x2e\xb3\x74\x93\xfc\x6d\x7d\xbc\x49\x37\xc3\x45\x78\x9b\x16\x6f\x56\x11\xa0\xfd\x32\x7f\x6a\x07\xb4\x93\x56\xce\x29\x41\x0d\x8e\x63\x78\x19\x7e\x7e\xe4\x15\x74\xd2\xc2\xff\x3c\x2a\x8f\x92\x32\x1d\x51\xbf\x44\x9b\xa4\xe4\x75\x91\xe5\xce\xf9\x5a\xd7\xa8\xac\xe4\x97\xa4\xab\x2c\xd5\x09\x80\x3f\x2d\x8e\x79\x32\x17\x0b\x7e\x3b\x26\x61\x55\xfd\xe1\xc7\x63\x9e\x38\x5f\x5e\x64\x53\x73\x65\x3b\x73\x5f\x69\x6b\x0c\xea\xb1\x3f\x2e\xfb\xcb\x9f\x7d\xfa\x97\xfd\x59\xd2\x3f\x2b\xfa\x27\xa0\x7f\xd6\xf4\xcf\x86\xfe\xd9\xd2\x3f\x3b\xfa\x07\xdb\x29\xfd\x45\x35\x81\xff\x72\x5a\xf8\x97\xdb\xfd\x14\x4a\xfd\xf6\x67\xf7\x6b\xd9\xfe\x5a\xb5\xbf\x82\xf6\xd7\xba\xfd\xb5\x69\x7f\x6d\xdb\x5f\xbb\xf6\x57\xc7\x0f\xb5\x05\xfc\x97\xf3\x83\x7f\xb9\xdd\x4f\xa1\xd4\x6f\x7f\x76\xbf\x96\xed\xaf\x55\xfb\x2b\x68\x7f\xad\xdb\x5f\x9b\xf6\xd7\xb6\xfd\xb5\x6b\x7f\x75\xfc\x50\x6b\xc4\x7f\x39\x3f\xf8\x97\xdb\xfd\x14\x4a\xfd\xf6\x67\xf7\x6b\xd9\xfe\x5a\xb5\xbf\x82\xf6\xd7\xba\xfd\xb5\x69\x7f\x6d\xdb\x5f\xbb\xf6\x57\xc7\x4f\x93\xf0\xbf\x9c\x9f\xa6\x33\x8f\xa6\xb3\x90\xa6\x33\x92\xa6\xb5\x93\xa6\x35\x95\xa6\xb5\x96\xa6\x35\x98\xa6\xb5\x99\xa6\x35\x9b\xa6\xb5\x9c\xa6\x35\x9e\x86\xda\x0f\xb0\x8e\x3c\x72\x32\x25\x76\xfe\xd2\x0e\xd3\xa2\x44\x27\x54\x96\x28\xa2\x6f\x5c\x97\x8e\xd6\x43\x58\xc5\xe4\xfb\x68\x0b\x46\xc8\x7e\x43\x7b\x8f\x02\x9c\xcb\xfc\x69\xef\x3d\x8a\x0b\x11\xb2\x7f\x45\xa6\x0b\xec\x56\x54\x8e\xf7\xd3\x1f\x5a\x7a\x74\xbd\x93\xb8\x0b\xd2\x93\xb1\xb1\xaf\x36\x0e\xc4\xb6\x81\xd4\x34\x90\x5a\x2e\xd5\x96\xcb\xe5\x62\x49\xfe\x4f\x40\x20\x94\x75\x78\xba\x42\x01\xdd\x4a\x45\xe7\x07\x02\x1e\xfc\xd0\x21\xf0\x03\xb1\x65\xa0\xb5\x14\xbb\xe0\x4b\x5d\xf0\xa5\x2e\xac\x35\xc9\xad\x17\x6b\xfc\x7f\x1b\x51\x7e\x5d\x99\x20\xc5\xb6\xf0\xb5\x9d\x7b\x64\x54\xe4\x35\x2a\x3f\xd1\xa6\xec\xfd\x2a\xeb\x83\xcc\x7f\x32\x82\xad\x2e\xcd\x2d\x20\xcc\x6d\x27\x4b\x32\x79\x4e\xd4\xa1\xe5\x38\x65\x90\x99\x7a\x02\x73\x20\x53\xbd\x8c\x67\xe5\xe9\x5d\x10\xca\x3a\x3c\x5d\x21\xc5\xb3\x1e\x67\xd8\xe4\xbd\xa2\x34\x01\x74\x10\x40\x4a\x08\x14\x2d\x6c\x65\x3c\x6b\x40\x0b\x6b\x48\x0b\x6b\x45\x0b\x3b\x19\xcf\x46\xd4\xc2\x46\xd2\xc2\x86\x6b\xc1\x73\x15\x33\x02\xd4\xb0\x85\xd4\xb0\x55\xd4\xe0\x29\xf6\xb8\x03\xf4\xb0\x83\xf4\xb0\x53\xf4\xe0\xa9\x36\xd9\x3f\x3d\xd1\xf8\xe8\x14\x97\x55\xdd\x4d\xa5\x34\x1a\x75\xbc\x47\xfe\x83\xc3\xe1\x88\x5f\x05\xf3\x96\x8f\xfc\x07\x07\x73\x55\x18\xf7\x91\x2f\xe4\x32\x08\x4f\xc3\xc2\x91\x70\x08\x5f\x85\xf0\x19\x84\xcf\x21\x96\x2a\x04\x67\xa4\xe5\x63\xa5\x42\xac\x18\xc4\x8a\x43\x04\x2a\x44\xc0\x20\x02\x0e\xb1\x56\x21\xd6\x0c\x62\xcd\x21\x36\x2a\xc4\x86\x41\x6c\x38\xc4\x56\x85\xd8\x32\x88\x2d\x87\xd8\xa9\x10\x3b\x06\xb1\x6b\x25\xa6\x09\xd5\xe3\x52\xf5\x3a\xb1\xea\x72\x6d\x05\xdb\x4a\xd6\xd3\x44\xeb\x71\xd9\x7a\x58\xb8\x64\x09\xd9\xf1\x5e\x44\xf7\x54\x18\x75\xac\xde\x97\xea\xc5\x49\x8d\x01\x2c\x25\x00\x32\x77\xb1\x9a\x95\x54\x23\x4e\x4a\x0c\x20\x90\x00\xc4\xd9\x86\x01\xac\x25\x00\x32\xa9\xb0\x9a\x8d\x5c\xa3\xf3\xbd\x95\x00\xd6\x3a\xdf\x3b\x09\x60\x23\xf0\xed\xb9\xb2\x4c\x74\xc6\x3d\x59\x6a\xc2\xf8\xb4\x45\x75\xd8\x47\xfb\xae\x7e\x0c\xf6\x36\xef\x71\x65\xb0\x8b\x7a\xb3\x37\x83\xbd\xda\x69\x1d\x1a\xec\x1d\xdf\xec\xd3\x60\x87\xfa\x66\xb7\x06\xfb\xe0\x93\x79\x36\xcc\x51\xbf\xd7\xb9\xc1\xca\x9d\xc2\xbf\xc1\x4a\x9e\xae\x67\x37\x78\x39\x58\xad\x13\x39\x3a\x58\xc9\x13\xf9\x3a\x58\xe5\xe3\xdd\x1d\x1c\xa2\x4d\xe4\xf1\xe0\x18\x6f\x22\xa7\x07\x07\x89\xe3\xfd\x1e\x12\xc1\x4e\xe4\xfa\x90\x10\x78\x22\xef\x87\xc4\xd0\x37\x3a\x40\x55\x3a\xd8\x07\xaa\xd2\xa1\x6e\x50\x95\x0e\xf0\x84\xa4\xe1\x6a\x72\x86\xa4\xb1\x68\xf2\x87\xa4\x51\x66\x72\x89\xa4\x41\x65\xf2\x8a\xa4\xe1\x62\x72\x8c\xa4\x81\x60\xf2\x8d\x24\xbb\x37\xb9\x47\x92\x45\x9b\x3c\x24\xc9\x56\x4d\x4e\x92\x6c\x9a\x66\x3f\x49\x36\x3b\xb3\xab\x24\x9b\x94\xc5\x5b\x22\xaa\x56\xd6\xf3\xba\xaa\x3e\x5f\x8a\xa8\xb7\xc7\x9d\x22\xda\x35\x79\x54\x44\xab\x3d\x4e\x15\x51\x6a\x8f\x5f\x45\x74\x6a\x72\xad\x88\x2e\x7b\xbc\x2b\xa2\xca\x1e\x07\x8b\x68\xd2\xe4\x63\x51\x0d\xf6\xb8\x59\x54\x7d\x06\x4f\xcb\xba\xfa\x9d\x38\x69\xf4\x5d\x5d\xad\x34\xba\xcf\xd5\x4a\xa3\x3b\x5c\xad\x34\x9a\xda\xd5\x4a\xa3\x3b\x5c\xad\x34\xba\xc3\xd5\x4a\xa3\x09\x5d\x2d\xb6\x46\x7b\xaf\xab\x85\x95\x3b\x85\xab\x85\x95\x3c\x5d\xcf\x6e\x70\xb5\xb0\x5a\x27\x72\xb5\xb0\x92\x27\x72\xb5\xb0\xca\xc7\xbb\x5a\x69\x34\x99\xab\x95\x46\x93\xb9\x5a\x69\x74\x8b\xab\x45\x3e\x5e\x4c\xe4\x6a\x91\xaf\x1f\x13\xb9\x5a\xe4\xf3\xc9\x8d\xae\x56\x1a\x0d\x76\xb5\xd2\x68\xa8\xab\x95\x46\x03\x5c\x2d\x69\xb8\x9a\x5c\x2d\x69\x2c\x9a\x5c\x2d\x69\x94\x99\x5c\x2d\x69\x50\x99\x5c\x2d\x69\xb8\x98\x5c\x2d\x69\x20\x98\x5c\x2d\xc9\xee\x4d\xae\x96\x64\xd1\x26\x57\x4b\xb2\x55\x93\xab\x25\x9b\xa6\xd9\xd5\x92\xcd\xce\xec\x6a\xc9\x26\x65\x71\xb5\x88\xaa\x61\x57\x8b\x28\xd8\xee\x6a\x11\xf5\xf6\xb8\x5a\x44\xbb\x26\x57\x8b\x68\xb5\xc7\xd5\x22\x4a\xed\x71\xb5\x88\x4e\x4d\xae\x16\xd1\x65\x8f\xab\x45\x54\xd9\xe3\x6a\x11\x4d\x9a\x5c\x2d\xaa\xc1\x1e\x57\x8b\xaa\x6f\xb8\xab\xd5\xed\x0b\x48\x9c\xe4\xfc\x5d\x5d\xad\xe4\x7c\x9f\xab\x95\x9c\xef\x70\xb5\x92\xf3\xd4\xae\x56\x72\xbe\xc3\xd5\x4a\xce\x77\xb8\x5a\xc9\x79\x42\x57\x8b\x7d\x9e\xbf\xd7\xd5\xc2\xca\x9d\xc2\xd5\xc2\x4a\x9e\xae\x67\x37\xb8\x5a\x58\xad\x13\xb9\x5a\x58\xc9\x13\xb9\x5a\x58\xe5\xe3\x5d\xad\xe4\x3c\x99\xab\x95\x9c\x27\x73\xb5\x92\xf3\x2d\xae\x16\xd9\xb7\x32\x91\xab\x45\x36\xbe\x4c\xe4\x6a\x91\x9d\x33\x37\xba\x5a\xc9\x79\xf8\x97\xbd\xf3\x50\x57\x2b\x39\x0f\x70\xb5\xa4\xe1\x6a\x72\xb5\xa4\xb1\x68\x72\xb5\xa4\x51\x66\x72\xb5\xa4\x41\x65\x72\xb5\xa4\xe1\x62\x72\xb5\xa4\x81\x60\x72\xb5\x24\xbb\x37\xb9\x5a\x92\x45\x9b\x5c\x2d\xc9\x56\x4d\xae\x96\x6c\x9a\x66\x57\x4b\x36\x3b\xb3\xab\x25\x9b\x94\xc5\xd5\x22\xaa\x86\x5d\x2d\xa2\x60\xbb\xab\x45\xd4\xdb\xe3\x6a\x11\xed\x9a\x5c\x2d\xa2\xd5\x1e\x57\x8b\x28\xb5\xc7\xd5\x22\x3a\x35\xb9\x5a\x44\x97\x3d\xae\x16\x51\x65\x8f\xab\x45\x34\x69\x72\xb5\xa8\x06\x7b\x5c\x2d\xaa\xbe\xe1\xae\x96\xb0\x47\x32\x71\x9a\xef\xbb\x13\xaa\x49\xee\xf3\xb5\x9a\xe4\x0e\x5f\xab\x49\xa6\xf6\xb5\x9a\xe4\x0e\x5f\xab\x49\xee\xf0\xb5\x9a\x64\x42\x5f\xab\x99\x66\x7b\x54\x33\xd1\x0e\xa9\x66\xba\x4d\x52\xcd\x4d\xfb\xa4\x9a\xe9\xb6\x4a\x35\xd3\xed\x96\x6a\x6e\xda\x30\xd5\x4c\xb7\x67\xaa\x99\x6e\xdb\x54\x73\xd3\xce\xa9\x66\xc2\xcd\x53\xcd\x84\xfb\xa7\x9a\x3b\xb6\x50\x35\xc9\x60\x5f\xab\x49\x86\xfa\x5a\x4d\x32\xc0\xd7\x92\x86\xab\xc9\xd7\x92\xc6\xa2\xc9\xd7\x92\x46\x99\xc9\xd7\x92\x06\x95\xc9\xd7\x92\x86\x8b\xc9\xd7\x92\x06\x82\xc9\xd7\x92\xec\xde\xe4\x6b\x49\x16\x6d\xf2\xb5\x24\x5b\x35\xf9\x5a\xb2\x69\x9a\x7d\x2d\xd9\xec\xcc\xbe\x96\x6c\x52\x16\x5f\x8b\xa8\x1a\xf6\xb5\x88\x82\xed\xbe\x16\x51\x6f\x8f\xaf\x45\xb4\x6b\xf2\xb5\x88\x56\x7b\x7c\x2d\xa2\xd4\x1e\x5f\x8b\xe8\xd4\xe4\x6b\x11\x5d\xf6\xf8\x5a\x44\x95\x3d\xbe\x16\xd1\xa4\xc9\xd7\xa2\x1a\xec\xf1\xb5\xa8\xfa\x4c\xbe\xd6\x82\x26\x9b\x10\xf6\xa3\x03\x87\x11\xe5\x33\x5f\xb4\xc9\xac\x8e\xe6\xfc\xd7\xa5\x3b\xc4\x46\x33\x4e\x28\xe7\xc4\xeb\xbc\x80\x4f\x96\xb2\xb3\x7f\x2d\xca\x0b\x0a\x23\x8c\x4e\x3d\x67\x4e\x78\x51\xf2\xdf\xf8\x46\x2c\x87\x3c\x7a\xfe\x81\xfc\xfb\x22\x50\x35\xc1\x3b\x55\xda\xf5\x85\x3c\x08\xdd\x59\x92\x93\x97\xb4\x8a\xe2\x42\xd1\x8b\xe9\x08\xa3\x0a\x28\xa0\xed\x8a\x2e\x23\x9a\x53\x71\x40\x48\x98\x9c\x24\x89\x70\x97\xa0\x68\x64\x4c\x09\xaa\x2a\x51\x28\x73\xa0\x36\x82\x0a\x2f\x60\xa1\x44\x1a\x0f\x5d\x26\xb8\xba\x8c\x0b\xcc\x1b\x26\x31\xab\xcb\x7d\x56\x5f\x9c\xfc\xe4\xd4\xcf\x05\xfa\x98\x47\xd1\xa7\x17\xed\xe4\xa2\x78\xae\xd8\x0d\x3e\x71\x4c\x24\xbd\x4c\x87\x47\x4a\x6d\xc3\xcf\x3a\x5a\x51\x6d\x3a\x5c\x2c\x89\xdd\x5c\x7e\xfc\xa9\xeb\x6f\x5b\x72\xd1\xf9\x7b\x77\xd8\x46\xe1\xe9\xa4\xe0\x82\x44\xd9\x56\xa9\x78\x05\x21\x76\x25\xb2\xf2\x18\xad\x4d\x78\x10\x68\x51\x19\xc8\x2d\x99\x24\x74\x36\x77\xa7\x63\x34\xa4\xa9\xd0\x6d\x1b\x10\x24\x09\x99\x44\x9b\x08\x70\xae\x16\x08\x24\x84\x32\x08\x63\xb4\x8e\xb6\xd1\x41\xc3\x08\x49\x57\xa8\xd4\xb1\x0b\x12\x16\xcb\x40\x19\x1f\x96\x87\xcd\xe1\x00\x0a\xaa\xcb\x6d\x68\x92\xf2\x71\x7b\x3c\x1c\x61\x29\x2b\x8d\x4d\x72\xd6\xc0\x20\xb9\xc8\x64\x58\x7a\xc5\xb9\xfc\x28\x4a\x99\x97\x80\xb8\x96\x68\x7d\x3c\x28\xb8\x40\x09\xf3\x2a\x15\xaf\x28\xdd\xb6\x04\x94\xed\xf6\x14\x79\x3b\x04\x8b\x87\xe5\x88\x34\x49\xf6\xe0\x45\x27\x93\x5a\xc4\xa6\x46\xb9\xca\x40\xe0\x48\x96\x48\xc4\xd9\x29\x9f\x0b\xbf\x05\xc4\xf4\x11\x44\x81\x50\x80\x24\x14\x90\x24\x69\x79\x24\x3f\x5e\x94\x47\x58\x80\xeb\xe3\x29\x0a\x41\x29\x90\x94\x9a\x26\xe9\x85\x87\x28\x42\x41\x4f\x3b\x93\xe8\x44\x08\xa8\xd3\x32\x72\x96\xcb\x73\x2e\x3f\x0a\xb8\xdb\x12\x08\xd7\xe9\x84\xd0\x21\x54\x70\x41\x32\x6c\xab\x54\xbc\x82\x24\xbb\x12\x50\x98\xa7\x53\x74\xda\xc0\xd6\xc8\x13\x92\x9a\xe4\x79\x3a\xa1\x6d\xe8\xf5\x37\x35\x89\x54\x01\x32\x48\x42\x20\x41\xf3\xa1\xce\xa5\x27\x01\x39\x2f\x00\x11\x05\x47\x61\x80\x53\x48\x48\xa2\xbc\x26\x52\x0b\x2e\x5a\x01\x28\x4e\x14\xed\xd6\x86\xc1\xcd\xb2\xb9\x1a\xa5\xe9\x1d\xdc\xc3\xa6\xb7\xa5\x49\x98\x32\x0c\x28\x02\x89\x00\xc9\x09\x3a\x17\x1f\x04\xcc\xec\x19\xc4\x12\x9d\xa2\x13\x92\xb0\x40\x72\x64\x15\x91\xf2\x7c\x51\x9f\x61\x9b\x3c\x9c\x8e\xa7\x23\x28\x0a\x9a\x01\xd7\x24\x43\x74\x44\xc7\xd3\xba\xaf\xa1\x49\x84\x12\x08\xd4\x77\x19\x7d\x14\x96\x5f\xe7\xc2\x6f\xc9\x12\xf1\x23\xf8\xa2\x59\x1f\xb7\xc7\x50\x44\x01\x5b\x21\x2e\x8f\xe4\xc7\x8b\xf2\x08\x8a\x6e\x17\xec\x76\x3b\x58\x74\x24\x59\xb0\xf1\xcd\xb2\x3b\x1c\x0e\x26\xbb\xe5\xed\xcc\xb6\xd7\x41\x80\x2f\x04\x09\x79\x78\xac\xe3\x6f\x68\x2e\x3d\x09\x98\x79\x01\x80\xc8\xe4\xbb\x4a\xcc\xd0\xf6\xa6\x8e\x8e\x46\x61\xea\xb3\x0c\x33\x9c\xd9\xd9\x82\x68\x8e\x2b\xf1\xc5\x9a\xb0\x84\x65\x76\x96\x55\xbc\x0a\x56\x51\x10\x28\xe8\xf8\x78\xe2\xf8\x56\xbb\xc0\x0d\x36\x00\x4a\xb4\x43\x47\x74\x52\x50\xca\x61\x15\x66\x6d\x08\x5f\xaf\x77\x5b\xab\xd4\x15\x02\xa9\x04\x70\x5a\xf0\x24\xc0\xdc\x1a\x47\xf9\x41\x30\xe7\xff\x13\xa3\x29\x01\xb5\x2d\xb0\x02\x25\x02\x20\xc6\x2a\x6f\xbf\xcf\x74\xcb\xae\x9b\x60\xb1\xa3\x1b\x8f\x29\xa9\x12\x55\x45\x9e\x55\xf1\x37\x1c\x51\x9b\x73\xd9\xb5\x29\x5e\x1a\x96\x83\x93\xe7\x83\x6b\xf3\x70\x92\xc4\x2f\xf8\x75\x5a\xe7\xd7\xe3\xe5\x15\x42\xff\x93\x51\xba\x00\xa7\x9b\xf5\xc6\xc8\x69\x6a\xc9\xba\x37\x01\xa7\x69\x34\x8a\xd3\xdd\xce\x33\x72\x9a\x9c\xdf\x94\xd3\xe4\x3c\x8a\x53\xcf\xdb\xed\x8c\xac\x36\xc9\x9b\xb2\xda\x24\x16\x56\x35\xf0\xb7\x64\xc5\xcc\xc7\xe2\x94\x97\xa9\x73\xcc\xb3\xba\xcc\x2d\xd2\x60\xc9\x8f\x8e\x61\x72\xfc\xe8\x2d\x02\x94\xce\x7e\x98\xd1\xf5\xb4\xd9\x0f\x33\xbf\x68\x3e\x3d\x76\xcb\x52\xb4\x98\xad\xb6\xdd\x96\xd7\xdb\x38\x97\xaa\x53\x41\x12\x17\xfb\x2e\xb1\x6c\x03\x64\xf0\x3a\xa2\x68\x15\x85\x70\x06\x2f\x92\xfb\x8c\x66\xbf\x10\x67\xc9\xd9\xc2\x0b\xaa\x19\x0a\x2b\x1c\x83\x38\xf9\xb5\x9e\x93\x7c\x9b\x97\x30\xca\x9f\xb4\xba\xd6\xe6\xe8\xe7\xde\xca\x29\x51\x74\x3d\xa2\xc8\x49\x73\x96\x56\x03\x3f\x7e\x7a\x91\x05\x2d\x50\x26\x19\xe0\x64\x3d\xec\x49\x3a\x1c\xd4\x14\x61\x16\xe9\x53\xaa\x90\x5d\xf9\x11\xd6\xa3\x90\x73\xb4\x8c\xb3\xf3\x8b\xde\x8e\x66\xb1\x27\x3d\x22\x5f\x54\xdc\x19\x93\xb9\x82\x88\x66\xc2\x1d\xa4\x15\x39\x60\x74\x0f\xd1\xe9\xd4\xe6\xcb\xc5\x2f\xd4\x46\xa6\x47\x53\x8a\xb1\x57\xb6\xe7\x2f\xe9\x1c\xee\xe3\x97\x83\x22\x8a\x36\x61\x67\x71\xad\x9d\x22\x09\x8f\xe8\x42\xd2\x63\xbf\xc8\xb9\x83\xf3\x22\x3c\xc6\xf5\x33\x49\x99\xa6\xc8\x32\xff\xfd\x86\x76\x58\x05\x77\xd0\xbc\xa3\xf1\xf8\x26\x3c\xc7\xed\x5c\x2a\xfe\xad\x44\x61\x94\x67\xc9\xf3\x17\xc8\xb3\xa6\x5e\x49\x87\x51\xc8\x32\x1b\x85\x35\xfa\x22\xa1\x9a\x2b\xb5\x75\x9c\x22\x27\xc9\x8f\x61\x62\x86\x4b\xf3\xac\xbe\x98\xab\x31\x0a\xb9\xd6\x94\xe9\xf4\x91\x68\x50\x2d\x54\xd3\xa1\xd2\x5c\xc5\x80\xf9\x52\x6d\x7c\x0b\x93\x2b\x1a\x62\xc9\xb2\x68\x49\x6e\x55\x59\xac\x0e\xb9\xfc\xc4\x38\x57\xd2\x6f\x98\xa4\x01\x4d\x4a\x2d\xe6\xc2\x26\x13\x28\x9f\x22\x7f\x98\x79\xc2\xcc\xc9\xbf\x1d\x40\x20\x4a\x1e\xfa\x9e\xd4\xd0\xde\x22\x50\x99\xc0\x6f\x65\x9d\x8f\x5e\x2e\x44\x00\x3d\x7b\x69\x1f\xcd\x2a\x05\x68\xfa\xbd\x44\x7d\x98\xea\x62\xbb\x81\xa9\x4a\xba\x29\x92\x30\xce\xf0\xec\x66\x7e\x97\xa9\x6f\x2a\x35\x3b\xb1\xab\xbe\xb4\xec\x97\x4f\x0c\x99\x9f\xe9\xbb\x48\xaf\xe0\x4e\x4a\xd1\xcc\x5c\x53\x47\xe4\xe2\xe4\x3c\x1f\x04\x27\xc8\xde\x94\x9e\x4c\x85\x07\xdf\xf1\xe0\x2b\x9e\x6a\x48\xcd\xe2\x6c\x50\x10\x98\xfc\x51\xed\x14\x48\xdc\x83\x68\x13\xd2\x70\x1a\xd2\x3e\xca\xe4\x83\x19\x30\x4d\xfc\x96\x5e\x93\x3a\x2e\x12\xf4\x65\x0e\xd5\x62\x12\x5f\xa4\xa4\xcf\x3c\xbd\xb6\x3c\x7b\xc9\x09\x40\x71\x0d\x49\xfa\x0e\x64\x50\x65\xd5\x80\x99\x0a\xf9\x70\x79\x6a\x55\x02\xfa\x26\xa9\xf2\xb4\x4c\x79\x24\x9b\x17\xa7\xc7\xb2\xdf\xb5\x8f\xb6\xdc\x77\x5a\x62\xb0\x0e\x13\x49\x63\x0e\x64\x19\x93\xfb\x2d\x67\x15\x93\xba\x4e\x10\xd0\x97\x69\x87\x26\x3c\x54\x79\x72\xad\x91\x24\xb0\xa5\x7a\xf1\x86\x63\xc4\xd4\xbe\x31\xff\x53\xac\x22\xd3\xd6\x5c\x03\xfe\x8d\x03\x7f\xd1\xa1\x5f\x94\x5c\xb6\x5a\xbd\x7a\x85\x88\x8c\x9d\x64\x07\x16\x15\xcb\x32\xc5\xaa\xfa\x15\x8a\x3b\x35\xd3\x0f\xd0\x47\x94\xd5\xa8\x7c\x24\x0f\x24\x2b\x70\xc5\x8b\x94\xac\xc3\x72\x6e\xe0\x0d\x20\x18\x72\xb9\x8b\x45\xea\x55\x1d\xd6\xf1\xf1\x11\xba\xbb\x82\x61\x5d\x7a\x3e\x70\xfd\xc9\xe2\x5b\x98\xc4\x91\x73\x42\x28\xc2\xb3\xa5\x94\x11\xfc\x51\xff\xbc\xdf\x59\x3f\x9c\x37\x98\x5e\xe7\xc5\xb1\xd6\x79\x8e\x47\x2f\x60\x1b\xe4\x7b\x3e\xc6\xfb\xbb\x43\xee\xfd\xd9\x07\x8f\x12\x65\x43\xb6\x7a\x69\x7a\x13\x59\xf2\x86\xcd\x77\xbd\xab\x16\x2b\x77\xee\xad\x37\xf3\xf5\x6e\xbe\xd8\x7d\x02\x23\x93\xd7\x45\x4c\x3c\x96\x38\xfa\x4f\x45\x76\x73\xad\x86\xf5\x7f\xbe\x78\x0a\x59\x4d\x58\xa3\x68\xb6\x37\x34\xb7\x41\x71\x51\xca\xf7\x4b\x49\xb3\x5c\x4b\x5e\xc5\x24\x3b\x5e\xa4\x5c\x59\x7a\x62\xb7\xb0\xc9\x33\x07\x10\x51\x7e\x12\xc5\x16\xa7\xe1\x19\xed\xaf\x65\xf2\xf1\x21\x0a\xeb\x70\x4f\x9e\x3f\x57\xdf\xce\x3f\x34\x69\x32\x7f\xbf\x3c\x56\xdf\xce\xb3\x26\x4d\xb2\xea\xc7\x0f\x97\xba\x2e\xf6\x9f\x3f\x3f\x3d\x3d\x2d\x9e\x96\x8b\xbc\x3c\x7f\xf6\x5d\xd7\xc5\xc0\x1f\x66\x44\xcf\x3f\x7e\xd8\x7e\x98\x51\x4d\x91\x9f\xdf\x62\xf4\xf4\x2f\x79\xf3\xe3\x07\xb2\xcd\x6d\xb6\xfd\xf0\x7e\x89\xde\x2f\x8f\x45\x58\x5f\x66\xa7\x38\x49\x7e\xfc\xf0\xde\x5f\x52\xb6\x3f\xcc\xa2\x1f\x3f\xfc\xe2\x2f\x96\xb3\xf5\x62\xb3\xfc\x79\xb1\x9e\xad\x16\xc1\xf2\xe8\x2c\x56\x8e\xb7\x70\x57\x8b\xd5\xda\xf1\x16\xab\x99\xb7\xf0\x9c\xc5\x36\xf1\x16\xde\x0c\x3f\x2e\x17\x2b\x67\xb9\xd8\x1e\x17\x6b\x67\xb1\x5e\xce\x3c\xfc\xd7\xdf\xcc\xbc\x85\xbf\xd8\x24\xce\x6a\xb6\x5a\xac\x31\x8a\xe5\x22\x70\x16\x5b\x82\xca\x5b\x78\xbf\x7f\xf8\x4c\xf9\xc0\x9c\xbf\x5f\xa2\x07\x49\x20\x25\x2a\x50\x58\xef\xb3\x9c\xfd\x12\xeb\xba\x59\x96\xac\x4d\xb6\x9e\x24\x15\xae\x47\xed\xf5\xd3\x8c\x4d\x0f\x42\x43\x62\xcf\x14\x9c\x43\x2f\x39\x30\x54\x6a\xb0\x09\xea\x6f\x0f\xb0\x0c\x16\x57\x82\xf6\x61\x8b\x14\x85\x91\x43\x22\x45\x99\x10\xf8\x5a\xa6\x04\xe7\x60\x5d\xcb\xf8\xcb\x38\xa3\x6c\xe5\x5c\xe7\x85\x51\xca\x56\x1d\xbc\x2e\x8e\xd7\xaa\xce\x53\x87\x39\x1c\xc6\x51\x25\x81\x8d\x1c\x56\x5c\x6b\x3e\x9f\x96\xc5\x4e\x4c\x37\xa6\x56\xdd\x98\x0a\x94\x31\xb5\x9a\x05\xe0\x98\xa2\xab\xd9\x6c\x4c\xcd\xdc\x9f\xdd\x99\x7f\x59\xfd\x9e\xba\xb3\xe0\x67\x77\xb6\xbc\xac\xf4\x21\x30\x6b\x0d\x9e\x09\x96\xad\x3e\x51\x5b\xfe\xbc\x2d\x9a\x99\xe7\x16\xcd\xfc\xff\xe7\x33\xc5\x0c\xbf\x76\x04\x59\x51\xf1\x30\x91\xb1\x4b\x2d\x3e\x8f\x1a\xe8\xb0\x9d\x1a\x46\x3a\x60\xad\x53\x0d\x75\xd5\x2b\x11\xde\x83\xba\x07\x07\x4e\x40\x82\xf7\x67\x68\xf8\xa2\x38\x18\x16\x9a\xea\x6b\xb5\x17\xd4\xf0\x9a\x36\xf2\x66\x7f\x6f\xf7\x34\x33\xbc\xc8\x99\x7a\x78\xd8\xa5\x32\xaa\x54\xc3\xb2\x84\x70\xec\x2d\x08\x54\x99\xde\xc0\x03\xbf\x0e\xe2\x6e\x5e\x84\xfb\x40\x75\x6b\xec\x61\x6d\x4f\x84\x8d\xa6\x63\x71\x18\x42\x85\xd5\xe5\xea\x88\xc0\x85\x2b\x5a\xd1\xd7\x07\x32\x16\xa7\xeb\xc1\x00\x74\x2f\x63\xc6\xf8\x00\xe6\xe9\x95\x27\x4c\x74\x9f\x26\xee\xca\x18\xe4\x76\x1b\x22\x37\x32\x19\x6c\x9b\xd4\x59\x07\x57\xd7\x7a\x6f\x6a\x3a\x9a\xbc\xa2\xac\xf1\x4c\x18\x11\xdc\x3f\xb7\xc7\xd9\xb4\x01\x22\xbd\xbd\xb9\xc3\xfb\x8f\x17\x22\xfa\xbe\x3b\x0f\x96\xbd\x21\x22\xeb\xe0\x7f\x6a\x12\x9c\x83\xb5\xa6\x50\xd1\x82\xa6\x0f\x72\x60\xc8\xc8\xc0\xed\xa1\x01\x03\x52\xec\x89\x5d\xc5\xfd\x37\x0d\x1b\x3d\xbf\xf3\x06\xf1\x6f\xea\xf2\x61\x0b\xf9\x30\xab\xea\x32\xff\x8a\x88\x03\x48\x59\x55\xbc\x45\xcf\x9f\x79\x3e\xf3\x17\x8f\x71\x79\x4c\xd0\xec\xd8\xfc\xf8\x61\xfd\x61\x76\x7c\x26\x7f\xca\x1f\x3f\xac\x16\x01\x77\xe5\x88\x4b\x49\x71\x3a\xd8\x6c\xfe\x9a\xc7\xd9\x8f\x1f\x48\xaf\xa8\x67\x19\x2c\xb6\xb3\xe5\x62\x7d\x59\xac\x7e\x5e\xcf\xd6\x8b\xa0\x75\x02\x75\xe4\xdb\x85\x4f\xd0\x2f\xd6\x1f\x3a\x2f\x95\x33\xc9\xf9\x26\xbd\xf8\x07\x8c\x38\x99\xb5\x0c\x89\x39\x25\x50\xd8\xbc\x6c\xd3\x95\x30\x18\x07\x47\x9d\xdc\xe0\x8d\x71\x27\x37\xf6\xbf\x83\xc8\xd3\x34\x38\x65\x6f\x7e\xec\xe8\xfc\xef\xe8\xf3\xbf\x27\x9c\xe1\x13\xce\x77\x08\x5c\xed\x13\x06\x68\xec\x53\xcd\x18\x50\x74\xd8\xbe\x4a\xc7\x87\xaf\xc6\xa6\x2f\x8a\x03\x64\xa5\xab\xbf\xec\x07\x81\x0f\x0e\x64\x07\x7b\x15\x03\x9a\x8e\x0c\x68\xdb\xf6\xb7\x87\xb4\x56\x14\xaa\x9c\x6f\xe2\x63\x5c\x98\x32\x08\x15\x68\xa9\xbd\xec\x4d\x19\xda\x8e\x42\xa9\xee\xe4\x5f\xad\xdd\x75\x04\xed\xa0\x25\x15\xfd\xfd\x98\x2c\xbc\x1d\x81\xd0\x1a\xe0\xaa\xf3\xc0\xa0\x0e\x4c\x1f\xe2\xde\x8c\xde\x6e\x4f\x72\x94\xa9\x1a\xe8\xa8\x08\xd3\xdc\xf8\x06\x16\xee\x09\x75\xfb\x50\x4c\xf4\x2e\x00\xbe\xfc\xda\x3f\xe9\x93\x4b\xbc\xcb\xfc\x69\xd6\x7d\xd6\x97\x8b\x86\x7e\x15\x96\x18\x10\xa7\x5e\xe1\x9c\xb5\xe5\x9a\x0c\xb1\xb1\x7c\xe7\x7e\x7f\x1f\xfa\xbe\x57\x77\x29\x71\xc2\xe3\x57\x5e\xf8\xd7\x6b\x55\xc7\xa7\x67\x87\x5f\x05\xcb\x8a\xe1\xcf\xea\x52\xaf\xe8\xee\x8b\xc1\xec\x99\xb2\xb4\x4c\xaf\x82\x21\xcc\xab\x3b\x72\xc5\x1b\x64\xc5\xc4\x31\xca\x69\xf4\x34\x8e\xa2\x04\x59\x10\x02\x1b\xa4\x94\xcb\x69\xc5\x96\x92\x53\x34\x97\xeb\xe8\xf6\x46\x2a\xe4\x8e\x21\xb3\x79\xfd\x6d\xec\x44\x10\x15\xb8\xff\xa9\x7f\xd3\x43\xbb\x63\xa5\x25\x9b\xa1\x33\x29\xe1\x29\x9d\xaa\x4b\x19\x67\x5f\xbb\xbd\x10\xd0\xc6\x08\x70\x5b\x04\x24\xeb\x76\x2f\xe4\x1b\x48\xc3\x4a\xd1\xb0\x5f\xe5\x75\x71\xa8\x33\xd8\x0c\xd5\xcd\xdc\xf2\xbe\x38\xb2\xc5\x58\x62\x1e\xb4\xd5\x76\x37\xfb\xb5\x42\x25\x77\xbf\xbb\x5d\x9f\x40\x69\xa5\x17\x6a\x05\x43\x36\xe5\x75\x9b\xc4\xc5\xca\x61\xfb\xd8\xfb\xf6\xb8\xa9\xdb\xcb\x4d\xfb\xca\x15\x36\xa1\x9d\xe7\x6f\xbd\x2f\x1d\xab\x57\xdf\x8e\x7e\xa8\x33\x30\xbb\x01\xd1\x6a\x84\x8e\x79\x19\x76\xe0\x18\x7a\xc1\xc2\x2a\xdc\x90\x46\x4d\xb7\x6d\xfe\xc6\xa8\xba\xed\xcc\x18\x1b\x7f\x7a\xe1\x7b\x95\x17\xeb\x80\x32\x48\x3c\x19\x5e\xfd\x89\x3c\xb6\x6d\x3f\xbd\x1c\xaf\x65\x95\x97\xfb\x22\x8f\x89\xed\x87\x32\xea\x53\x8c\x92\xa8\x42\xdd\x4e\xb0\x19\x01\x78\x61\xe0\x0e\xfa\x86\xb2\xba\xea\xfa\xc7\x33\x11\xd8\x8f\x69\xb9\xee\xe6\xa0\x6d\x86\xa7\x85\x12\x96\x01\x07\x9c\xde\xb9\xee\x7a\x17\xed\x34\x5c\x6b\xff\x78\x94\x70\x09\x92\x6f\xd1\x4b\xfb\xf6\x47\xa3\xb7\x2a\x6c\xb9\x9d\x7b\x2b\xa6\x31\xa6\xb0\x96\x13\x49\x71\x2d\x33\xad\x02\xa7\x11\x9d\x55\xeb\x0b\x7e\xd6\x71\x70\x8b\x3d\x6f\x51\x5d\xf2\xa7\x9f\xe4\xee\x94\x79\x11\xe5\x4f\x78\x46\x3f\x9f\x13\xd4\x2b\x4f\x2a\x3a\x99\xff\xe0\x78\xb8\x81\xff\x3d\xa0\xd3\x21\xbd\xe0\xed\x7a\xfb\xd2\xae\x6c\x8c\x53\x74\x9b\x26\xc2\x2e\x0b\x76\x5c\x41\x96\x45\x7b\xdd\xbf\x88\x67\xc8\x40\x08\xc2\xb5\xbf\xde\x2a\xd8\x82\x55\x70\x58\xfb\x0a\x36\x71\x28\x74\x24\x06\x0c\x06\x0b\x09\xeb\x60\xf0\x96\xee\xdc\x23\x82\x82\x84\xa4\x8c\x87\x8e\xa3\x61\x23\x62\x84\x14\x87\x8f\x89\x81\x6d\x80\x51\x21\x74\x6b\xcc\xb8\x68\xa5\x28\x1d\x43\x45\x41\x10\x1c\x6e\xe9\xc5\x1e\x54\xf1\x6d\x63\xc3\xd8\xa3\x01\xa3\x03\xd6\x3c\xcd\xf6\x61\x17\x48\xfb\x81\x14\xfa\x80\x2b\x60\x19\x32\x34\x7c\x6f\xbb\x5d\xaa\x76\xeb\xa1\x0d\x5a\xae\x24\x5c\xd2\xc0\x60\xe8\x07\x0c\x0b\x0b\x7a\xeb\xb0\xd8\xf8\x73\x6f\xeb\xce\x77\x1b\x4d\x34\xea\x90\x60\xbc\x0c\x1b\x10\x83\x25\x37\x62\x38\x0c\x69\x01\x0d\x06\xde\x9d\x31\x43\xa1\x95\x9c\x24\xce\xe3\x66\xb5\x74\xc7\xf3\xbf\x07\x54\x7a\xe3\x30\x80\xfb\x32\x60\x10\x00\x7a\x8e\xb3\x53\xde\x23\x85\x4d\xe8\x1f\x34\xa3\x22\x85\x1d\x8a\x21\xc6\xef\x2d\xb7\xab\xdd\x5a\x45\xe4\x6d\xc2\xed\xa1\x43\x24\x5a\x3e\x41\x3c\xc0\xec\x2d\x88\xad\x66\x1f\x6c\xe7\xde\x66\x3d\xf7\x76\x81\x2c\x0f\xc5\xe8\x09\x1b\xc3\x2c\x7e\x98\xac\x86\x9b\x7b\x3f\x38\x60\xeb\xb4\x0b\xa3\x0c\x9d\xcb\x4a\x62\xdb\xdd\xb8\x9b\xd3\x48\xb6\xf7\xaa\xfa\x6e\x33\x71\xa8\x0b\x03\xec\x1b\x52\x28\xcb\xa1\xd3\x97\xf5\xed\xdd\xe9\x74\xf4\xdc\xcd\xa3\x9a\xfb\x07\x17\x4a\x88\x86\x25\x91\x7b\x87\xdc\x70\xeb\xaa\x89\x29\xa2\xe5\x0e\xb9\xae\x84\x4e\xb4\x77\x4e\x41\x32\xf9\x5b\x28\xf4\x2c\x70\xfa\x73\x6f\x83\xe3\x38\x4d\x48\x8a\xe1\x73\x7e\x54\xdb\xbf\x5f\x86\xc3\x47\xc0\xa0\x16\xc0\x20\x68\x7b\x04\x8f\x03\x63\x17\x5a\x01\x8a\x5d\x38\xae\x77\x81\xa2\xb7\xd1\xa3\x61\x4c\x47\xf4\x01\x61\xe8\xce\x80\x31\x01\xa9\x9b\xa6\x42\xb2\xcf\x09\xed\x52\x39\xb4\x9c\xdf\x21\x19\x32\xf1\x1f\xb7\xfe\x72\xb9\x54\x50\x1d\x22\xdf\xe3\xef\x51\x8a\x4a\x1c\x0a\x0c\xf9\x80\xc9\xdf\x82\xbc\x67\x18\x04\xf3\xed\x52\x7a\x17\x32\x36\xe4\x41\xc0\x38\x19\x36\xff\x0f\x15\xda\x70\xfb\x1f\xd2\x00\x30\x7f\xde\x95\x31\x6f\x81\x56\x68\x92\x24\x7d\xef\xe4\x47\xa3\x99\xdf\xeb\xba\xbc\xcd\xf0\xe1\x8e\x0c\xb2\x7b\x4d\xbf\x24\x05\x50\xff\x24\xb6\x3d\xed\x4e\xa1\x3a\x89\x91\x42\x01\xcd\xd0\xd7\x80\x8f\xd6\x48\x45\x16\x85\xc8\x45\x81\x80\x4c\xb4\x7c\x8a\x7d\xe0\x2b\xc0\x8c\xdd\x6e\xfb\xde\x7a\xee\x7b\x9b\xb9\xef\xed\x14\xe9\x28\xc6\x4f\x99\x19\x3e\xff\x0f\x13\xdd\x70\xeb\x1f\x00\x0f\x18\x3f\xeb\xc9\xd8\x99\x9f\xcb\x4d\x7e\x9f\x46\xbb\xe8\x34\x96\xf9\xbd\xa6\xcf\xdb\x8c\x1f\xec\xc8\x10\xdb\x87\xf4\x3b\x34\x69\xd5\xa3\xba\x85\x9d\x66\xb2\xe2\x28\x06\x85\xb9\x4b\x7f\xe3\x6b\xfe\x64\xe4\x7b\xfe\xaa\x43\x24\x4f\xf7\xe5\xd7\x41\x01\xae\x19\xb1\xd5\xe0\xb7\xfe\x7c\xbb\x9d\xef\x96\xb2\x34\xb4\x99\xbe\xfc\x3a\x70\x9e\x1f\x26\xa9\x31\xb3\x7c\x1f\x38\x38\xc7\xe3\x2e\x8c\xf2\xf3\xb9\xa4\xe4\xf0\xc4\x0b\xbd\x68\x24\xdb\x7b\x55\x79\xb7\xce\xee\x7a\x17\x06\xd8\xb7\xae\x4e\xf6\xf1\x42\x5d\xf5\xef\x5d\xa4\x56\xda\x0d\x5b\xe7\x1f\x87\x53\xb4\x73\x95\x5c\x7f\x57\x85\xef\x2d\x86\xbe\x2a\x56\xac\x92\x50\x0d\x9a\xb3\x6f\xf9\xe2\x06\x8b\x66\xb8\x35\x8f\x6a\x09\x18\xb6\xd6\xc1\x71\xeb\xfa\x23\x55\x3e\xd6\xdc\x6f\xe9\x9d\x6e\xf9\x3d\x7d\xbc\xcf\x32\xb4\x65\xff\xde\xa5\x69\xad\xe5\x90\x91\x30\x1e\x2b\x34\x16\xd4\x85\x7f\xeb\x2a\xae\xbb\x9d\x7b\xde\x66\xee\xf9\xb6\x5e\x1b\x46\x84\x79\x3d\x9f\x77\x64\xf0\x98\xb8\x65\x25\x7f\x64\x5b\xcb\xb8\xb8\x71\x65\xff\x06\x23\xb8\x75\x6c\xdc\xbb\xd2\xdf\xdb\xd3\xbb\x6d\x45\x5e\xf9\xef\x5d\xa9\x56\xda\x0d\x72\x82\x46\xe2\x04\xc7\x86\xb4\xf6\x3f\xf0\x8c\x96\xa1\xaf\xa6\x51\x61\x58\xd2\xe7\xec\x0f\x1f\x13\xa3\x17\xf3\x47\xb5\xb4\x8d\x87\x5b\x16\xf7\x47\xab\xfc\xe6\xb1\x70\xd7\x62\x7f\x4f\x1f\xef\xb3\x0c\x71\xf1\xbf\x77\xe9\x5a\x6c\x34\x68\xb9\x7f\x0c\x42\xc8\xf8\x85\xe5\x7f\x6b\xb0\xb3\x9c\x7b\x6b\x7f\xee\x6d\x57\x70\x07\x0d\x76\x0f\xae\xea\x73\x9e\x07\x1b\xfd\xc8\xf5\xfc\xe1\xcd\x2c\xe6\x7e\xc3\xfa\xfe\x28\xdd\xde\x6a\xe8\x77\xac\xf7\xdb\xba\x76\xa7\x09\x28\xeb\xff\xbd\x4b\xd4\x4a\xbb\x81\xeb\x3c\x63\xd1\x42\xf6\x2e\x2f\xff\x5b\xfb\x1b\x04\x73\x6f\xb7\x9c\x6f\x8c\xdd\x35\x18\xbd\x69\x45\x9f\xb3\x3f\xd8\xee\xc7\x2f\xe4\x8f\x6a\x69\xb1\xfe\x5b\x17\xf6\x47\x2b\xfe\xd6\x61\x70\xdf\x42\x7f\x4f\x37\xef\x33\x0e\x79\xdd\xbf\x77\xb1\x5a\x6e\x36\x64\xce\x1f\x89\x12\x1a\x05\xd2\xca\xff\xc0\x8d\xfa\x70\x3f\x0d\x63\xc0\xb0\xa0\xcf\x59\x1f\x3c\x04\x46\x2f\xe5\x8f\x69\x68\x19\x00\xb7\x2c\xed\x8f\x55\xf5\xad\xb6\x7f\xd7\x52\xbf\xbd\x83\xf7\x59\x84\xb4\xf4\xdf\xbb\x4c\x2d\xb5\x1a\xfa\x06\x18\x85\x14\xb2\x7c\x71\xe5\xdf\xda\xcd\xd5\x76\xee\xaf\x76\x73\x3f\x70\x0d\x1d\x35\x58\x3e\xbc\x9a\xcf\x19\x1f\x6c\xf8\x63\x17\xf1\x47\xb4\xb3\x98\xfd\x6d\x8b\xfa\x23\x55\x7d\xab\xdd\xdf\xb3\xc8\x6f\xed\xe0\xbd\xe6\x20\x2e\xfa\xf7\x2e\x5a\x8b\x8d\x86\xcc\xf6\xa3\x10\xc2\x73\x7d\xbb\xec\x6f\xdd\xd6\xe1\xcf\x83\xed\x7c\x0d\x38\x77\xc0\x2a\xbe\x84\x5b\xb5\x75\xce\xf1\x88\x49\x7e\xd4\x3a\xfe\xf0\x66\xd6\x09\x7e\xec\xba\xfe\x38\xcd\xde\x3e\xb9\xdf\xbc\xce\x6f\xeb\xda\x4d\x06\x90\xc4\xd9\xd7\x17\xc3\x81\x16\xb6\x02\x6c\x3c\xfa\x40\x1a\xcb\xf6\xed\xba\xc1\xfa\xb0\xd4\x9a\x5c\xb3\x08\x95\x98\xf1\xae\x9d\xfc\xa9\x36\xe3\xe6\x3b\xa4\xa5\xfa\x69\x35\xd3\xed\x93\x2d\xd1\x19\x0f\x35\x90\xe3\x5b\xe4\x4e\x8d\x43\x9d\x31\x3c\xe7\x97\xc9\x92\x2d\x0b\x34\xaa\x54\xa0\xd1\x65\xa7\x9e\x24\x99\x34\x46\x49\x8e\x24\x59\x92\xb2\xb7\x30\x3f\x08\xe0\x62\xea\x1e\x92\x54\x47\xc8\x4f\x7f\xb8\xd6\x75\x9e\x7d\xe9\xa0\xc5\xe4\xf5\x25\xaa\x50\x6d\xa8\xab\xae\x87\x34\x16\x2b\xc5\x93\x95\x8b\x53\x18\x21\xf1\xbc\x0d\x3b\xd4\x42\xcf\xef\xe0\xde\x86\xe5\xf0\x2b\x25\x14\x5c\xfc\x2a\x89\x30\x42\x74\x20\xe1\x01\xf3\xa9\x3d\x37\xe3\x92\x0c\xed\x49\x58\x54\x52\xb5\x98\xf0\xa8\x85\xc0\x11\xae\x7e\x04\x8e\x29\xc2\x6d\xaf\x24\xd9\x5f\xe2\x28\x42\x99\x78\xd4\x89\xc2\xcc\x16\x4b\x76\x1e\x69\x70\x6f\x04\xca\x7a\x9f\xf8\x18\x9f\x93\x5f\x09\x3a\xd5\xf4\x57\x49\x2f\x55\xc3\x3f\xaf\x85\xce\xf1\xab\x36\xef\x3d\x5d\xe2\x1a\x39\x55\x11\x92\x7b\x03\x9e\xca\xb0\xd0\x60\xf6\xfb\xf0\x54\xa3\x12\x3e\xf4\x26\x1e\xe1\x5b\xf8\x41\xa0\xdf\x28\xcc\x4a\xf9\xd1\xbb\x87\x07\xf1\x7e\xe1\xc5\x12\xa5\xf4\xd4\x59\x6b\xca\x2c\x73\x32\x2f\x87\xd2\xc4\xb7\x99\xe9\xd9\x33\xa5\x0e\x36\xd1\x7b\x83\xd2\xa2\x7e\xe6\x7d\x52\x4e\x20\xb6\xb0\x29\xca\xae\xb6\xfc\x58\x2c\x87\x34\x4f\x93\xe5\xb9\xae\x2b\x67\xca\x3a\x25\x79\x58\xef\x31\xd8\x63\x77\x6a\xd8\x73\xf1\x18\x96\xa7\x13\x7e\x32\x72\xbf\xa0\x69\x61\xf0\xdc\xac\x1e\xaf\x93\xbd\x30\xe1\x24\x21\xc1\x9f\xc4\x55\xed\x54\xf5\x73\x82\x0c\x87\xfd\xc6\x5f\x13\x23\x5e\x1d\xe6\x05\xa6\x8c\x5b\x92\xb4\x88\x0c\x5f\xca\x36\xe7\xfb\x23\x28\x53\xaa\xde\x17\x9e\x83\x9f\xc0\x90\x73\xb2\xe6\x23\xd6\x72\xfb\x2a\x1d\x48\xa8\x4a\x8d\xb4\x00\x62\x9b\xf5\x16\x20\x96\x46\x03\x89\xa5\xd1\x18\x62\xbb\x9d\x0f\x10\x4b\xce\x03\x89\x25\xe7\x31\xc4\x3c\xdf\x75\x01\x6a\x4d\x32\x90\x5a\x93\x98\xa9\xb1\x79\x66\xa6\x8c\x1b\x3c\x4a\x08\x46\x9e\xe3\x5f\xc9\x55\xa7\xde\x30\xc1\x2c\x1f\x40\xf7\xf6\x13\x90\x7b\xc3\xbc\xa3\x4f\x5a\xbd\x13\x10\xd4\xab\xbe\x89\x88\xa5\x56\xd2\x65\xeb\x3e\xaa\x5a\x33\x4a\x98\x32\x26\xca\x57\xc5\xfa\x3d\xe7\x78\x48\xa6\xdc\xac\x4c\x22\x86\xda\x28\xe2\xb6\x76\x6c\xac\x94\x65\x79\x28\xfd\x64\x6d\x70\x7b\x9b\x62\xba\x57\x04\x51\x91\xe5\x1c\xbc\xa8\x19\x05\xeb\xdb\x28\x66\x04\x29\xea\x00\x59\xc0\x59\x52\x14\x1b\x6b\xed\x71\xff\xb7\x30\x1a\x7d\x1c\x5a\xad\xc7\xd6\x97\x3e\x2b\xb1\x4b\x00\xb6\x92\xd6\x36\x7e\x6b\xe8\xb5\x57\x29\xca\xea\xff\xfb\x23\xe5\xf1\xcb\xdc\x06\x83\xc9\xd9\x21\x88\x04\xec\x20\x75\x5e\x7c\x11\xe7\x77\x26\x1c\x9a\x96\xa2\x6d\x17\xc5\xdf\xe2\x08\x95\x2f\xad\x2f\xcb\xdd\x11\xe6\x9d\xa8\xae\xad\xa0\x23\xe1\x5a\x39\x7a\x7d\x96\x80\x36\xae\x91\xe5\x32\x49\x25\xda\xf1\x68\xb8\x73\x4c\x50\x58\xee\x0f\x79\x7d\x19\x9e\x4b\x81\x5f\xf8\xa4\xfb\xb1\x83\x92\x1e\xb8\x0a\xcb\x3c\xb4\x96\x0b\xa5\x58\xd6\x5b\x7b\x5b\xef\x00\x86\xbf\xc6\x05\x32\x85\x4a\xbb\xa6\x21\x93\xa1\xa5\xe2\x52\xc4\x40\x22\x7c\xfb\x95\x4c\xa4\x8b\x87\x65\x32\xc3\x83\xe2\x9e\x85\x1c\xc9\xf6\x48\xf4\xa4\x26\x24\x6b\x21\x2e\x28\x8c\x84\xa9\x45\xba\xe5\x86\xc7\xd5\x52\xfa\x58\xe0\xf2\x29\x1e\x03\xcb\x6c\x5b\x03\x18\xdc\x5f\xe8\x5e\x21\x83\xfd\x89\x46\x26\x04\xeb\x73\x21\x6e\xe7\x43\xdd\x72\x85\xcf\xc0\x7b\x6b\x0c\xa9\x6a\x74\x52\xc2\x42\x01\xa9\x20\xcf\x96\x84\x2c\x7b\x6f\xe6\x09\x99\x7b\xf8\x93\x11\x35\x35\x6f\x95\x00\x33\xfa\x36\xc2\x31\x36\x97\x16\xe8\x20\xf4\x7d\xf5\xc2\x8a\x4f\x47\x5e\xc7\x6a\x40\x26\xe0\x50\x99\xad\xf3\x3c\x39\x84\xe5\x14\x37\x45\xc9\x59\x65\xaa\x3a\x2c\x6b\x2d\xa9\x0c\x4d\x7e\x83\xab\x24\xf2\xe6\xd4\x40\x72\x1f\xe8\x4f\xba\x00\x78\x8a\xcb\xaa\x76\x8e\x97\x38\x89\x3e\x69\x7d\xd5\x20\x5e\xe4\x4b\x9e\x8a\xc6\x86\x3a\x09\xdb\x76\xa0\x61\x69\x50\x6c\x0d\x52\x7e\xf5\x7d\x7a\xe9\xde\x03\xf4\x6d\xcc\x83\x43\xc5\x93\x53\x2a\x87\x76\xda\xc2\x9a\xd4\x73\x81\x0b\xdc\x7b\x13\x13\x52\x9d\xb6\x24\xe0\x54\x45\x12\xd7\x4a\xea\xd9\x45\xb0\xa6\x0b\x7b\x52\x9e\x24\x5e\x6a\xc0\xc1\x3c\x88\xb9\xc5\xb3\x04\x00\x81\xe0\x40\x82\x1a\xec\x90\xf0\x56\xcc\x2d\x91\x7c\x30\x17\x58\x7d\xfc\x01\x46\xc0\x17\x25\x0d\xd5\xaa\xa0\x68\x66\x20\x45\x4e\x4b\x76\xa1\x96\xb6\xaa\x6a\xa5\x99\x9c\x07\xd2\x84\x48\x6a\x14\xdb\xb9\xba\x1d\xbd\x51\x5c\xa2\x23\xcf\x40\x74\x4d\xb3\x47\xb8\x54\x49\x36\x45\x87\xbb\x98\x6b\xaa\x1b\xea\xe3\xf2\x4d\xf5\x4f\xee\x72\x85\x34\x69\x74\x0b\xb7\x46\x48\xeb\xec\xa1\x4c\xbb\xc6\x69\x04\xbb\x76\xca\x2c\x62\xa6\x65\x99\x4e\x20\x7a\x83\xe7\x15\x70\xf6\xb0\x8f\xea\x91\x92\x19\xc2\xee\xa8\xb9\x46\x9f\x0a\x45\x9e\x68\xff\x34\xa2\x42\xb1\xf8\x76\xd7\x52\xe2\x81\x2d\x66\xc2\x32\x3b\x49\xd6\x76\xc8\x9b\x2f\x06\xec\x22\x2c\xe6\x2f\x37\x01\x0a\x6c\x8c\xc1\x6f\x68\x46\x49\x01\x4b\xa9\x64\x11\x12\x8f\x3b\xb6\xce\xe8\x7e\x82\x3f\xcb\x88\x2f\x4f\xbb\xcf\x75\xef\xab\x9d\x0f\xf6\x12\xd5\xc7\x8b\x34\xdc\x79\x99\x38\x0e\x05\xbe\x7e\x12\xf3\x62\xce\xc1\x1a\x9e\x32\x50\xaa\x93\xae\x02\x36\x57\x09\x39\x0a\x47\x3b\x7d\x9c\xe5\xf7\xc2\x2a\xb4\x76\xc1\xab\xb9\x33\x3f\xf4\xf7\x4c\x02\x03\xbb\x29\x01\x5a\xfa\x2c\xe1\x18\x40\x59\x01\xb4\xd1\xe6\xa0\x03\x25\x6e\x23\x0e\xc2\xf5\xaa\x77\x30\xe9\x4e\xd9\x43\x99\x00\x5a\xf4\xb2\x23\xb6\x91\xf2\x6b\xea\x9e\xa4\x49\x95\x50\xb6\x58\x73\xa2\x59\xb3\x52\xb8\xfb\x6f\xe4\x55\xf1\xed\x97\x37\xb0\xd4\x36\x5e\xc1\x8d\xdb\x54\x89\xf2\x1b\xca\xc6\x94\x0a\x7b\xb3\x3f\xdc\xc7\x8f\xfc\x32\xef\x61\x68\x02\xdf\xd8\x24\xdc\xe9\x12\x96\x9a\x69\x68\x52\x9d\x0d\xb5\xa5\xa1\xad\xb9\x47\x3d\xa5\xb6\x3a\xda\xa2\xf8\x01\xe2\xf7\x6b\x84\xdc\xfa\x9e\x45\x92\x0c\x9c\xa2\x44\xb8\xb0\x57\x41\x10\xa6\x19\xf5\x47\x00\x74\x33\xc3\x2a\x03\x1f\x4a\xbe\x11\x1d\x30\xa2\x25\xa4\xd6\x01\x2d\x22\xfa\x41\x67\x4e\xaa\x15\x2b\xf0\x5c\x06\x83\xaa\x50\x16\xac\x3a\xa8\x9d\x84\xd8\x2b\x00\xad\x5c\x3d\x10\xd5\x00\x76\x2d\xb0\x6a\x89\x7d\x42\x6f\x4d\x47\xbe\x08\x5b\x03\xa3\xf2\xe9\xc1\x25\x2d\xb3\xdd\x9f\xd5\xd8\x90\x78\xb6\xe7\x6e\x7a\x75\xdd\xd8\x70\xd3\xd4\x6a\x17\xb8\xc1\x06\xc8\xc9\x3b\x64\x19\x99\x2d\x76\xeb\x5f\xcd\xdf\x1d\x51\xb4\x8a\x42\xd3\xfd\x54\x8a\xac\x0c\xce\xb5\x0d\x8c\x39\xd3\xe2\xf7\x24\x19\x2f\x8e\xb1\xcd\x3e\x00\xa9\xd6\x5e\x1a\xfc\x4a\x9e\x4f\x7d\x97\xce\xdf\x45\x4a\xaf\xd5\x0d\xec\x27\xdd\xd4\x4d\x80\xf6\xc1\xa4\xb6\x62\x66\x3e\x00\x7f\x0b\xa9\x59\xf6\x74\x9b\xc0\x44\xd4\x55\x6a\x95\x22\xae\x1e\xa9\x30\xca\x1f\xa4\xb1\x91\xb4\xf4\xda\x41\x1a\x33\x01\xda\x35\xa6\xb6\x32\x6b\xcc\x08\x69\xd6\xd8\x04\x5b\xea\x46\x58\xbe\x26\x66\x65\xed\xca\xe3\x0b\x55\x92\x2f\xa1\x8b\x4c\xf0\x64\xc6\x2c\xa0\xcc\x47\xe1\x55\x85\xd6\xe7\x03\x03\xe8\x0c\xcb\x40\xe3\x9b\x59\x2d\x64\xa0\x79\x0c\xb5\x8d\x49\xfc\xbf\x21\xe3\xe1\x86\xc1\x00\xf6\x41\xf4\x2d\x0d\x0b\x54\x63\x91\xc0\xba\x1f\x89\xd1\xb4\xac\x76\x4b\x43\x9b\x96\x46\xf8\xcb\xca\xcd\x01\xe6\x45\x23\xb6\x53\x21\xce\x84\xe1\xaf\x2d\x2b\xd3\x32\xe0\xae\x1a\xed\xc6\x92\x01\xdf\xfc\x24\x3f\xcb\x83\xf1\x4a\xb7\x2d\xb4\xcb\x65\xca\x86\x43\xc7\xe3\x2b\x3b\x98\xe1\x96\x7d\xfa\x16\x12\x37\xb8\x42\xf7\xdf\x0c\xbb\x8c\x48\xdc\x3b\x08\x24\xfb\xb0\x7c\x86\x06\x89\xde\x7b\x77\x90\x9a\x18\xdf\x4c\x84\x9a\xd6\x4d\x37\xfa\x6c\xdd\x43\x64\xec\x81\xb2\x35\x9f\x7e\x89\x1c\x21\x44\x3d\x21\xdc\x32\xda\x68\xd2\xa5\x85\x06\x16\x38\x75\xd3\x4d\x5e\x50\xa3\xdf\x78\xa3\x2f\xf6\xcb\xbb\x78\xa6\x8a\x1b\x08\x77\xd7\x2f\xdd\xc2\x40\xa7\x0b\x83\xa7\xad\xf1\x44\xf9\xd6\x07\xb6\x1a\x1c\x28\x9f\xd8\xeb\xbc\x80\x51\xb5\x1c\xc0\x3b\x7e\xb9\x73\x47\xe3\x1e\x3a\x47\x80\x5b\x5b\xc4\xb1\x48\x26\x12\x60\x4b\x85\xb8\xdd\x09\xde\xa8\x4b\xc3\x8a\x77\x61\x74\x08\x0e\x11\x0b\x2d\x48\xb4\x05\xb3\x4e\x17\x34\x26\xe6\x1c\xe4\xb2\xbb\xf3\x74\x16\xb8\xef\x3f\x07\xee\x7b\xfc\xb7\xe3\x8b\x05\x31\xf0\x4d\x2a\xea\x88\x53\xa2\xa3\x3e\x1c\x83\x66\x2e\xb6\xb6\xf3\x66\xf7\xde\x6e\xbb\x5b\x28\xb7\xca\x2d\x93\xdb\xd9\x16\xbc\x5c\xf3\x74\x3a\xd1\x6b\x23\xd7\x8b\x60\xbd\x5a\x6c\x82\xc4\x59\x2e\x82\xdd\x6c\xb9\x58\x7b\x3e\x56\xc9\x72\x8b\xff\x0d\x7e\x76\x67\xab\x85\xbf\x4e\xfc\xc5\x6e\xb3\x9a\xf9\x8b\xdd\xee\xe7\xed\xcc\x5f\x78\xbb\xa5\x7e\xfd\xe6\x50\x69\xe1\x57\x45\x8d\xca\x34\xce\xc2\xba\x6f\xa2\xba\x71\x8a\x9f\x80\x81\xb7\x56\x9a\x70\x23\xea\x4a\xbb\x11\x75\xf5\x41\xbb\xf5\x53\x56\x1b\xb9\x0c\xf5\x66\x0d\xf0\x99\x6f\xe8\xfd\x7f\xe0\xe5\xd7\x4a\x22\xaa\x91\x94\x47\x19\xc1\x08\xfa\x64\x2d\x62\xd4\x50\x17\xe7\x0a\xb8\xf5\xdf\xc5\x20\x57\xef\x9a\x6d\x2d\xc6\x59\xcd\x9c\x95\x30\xd0\xd9\x7d\xaf\xe5\x8f\x1f\x96\x1f\xe4\x01\x6f\x34\x17\x5b\xb7\xdf\xd0\x56\xaa\xa7\xb8\x3e\x5e\x5e\x24\xbf\xd6\x57\x66\x5e\x0a\xd3\xa3\x50\xfa\x22\x61\x4d\xf9\xbb\x83\x6f\xc6\x90\x5f\x76\x61\x92\xa8\xa1\xf4\x08\x7a\x54\xc9\xf8\x15\x46\xaf\xb3\xf5\x85\x55\x0d\xfa\x3a\x23\xe5\x9c\x15\x5e\x43\x39\xa2\xeb\x21\xb8\xd8\x99\xad\x70\xb1\xb4\x4e\x22\x94\xeb\xf3\x1b\x7d\xe9\x42\x8c\x8b\x67\xba\xde\xf0\x9e\xaa\x39\xbf\xff\x8b\x90\x3b\xe5\x65\xaa\x81\x88\x9c\x98\xa1\xde\xf2\x32\xad\xbf\x3d\x07\x03\xc4\x34\xfc\xa0\xdd\x08\x83\xd4\x0e\xe2\xd9\x1b\xdf\x36\xa1\x09\xce\xa0\xd6\x4d\x2a\xef\x24\xac\xd1\xff\xfe\xc8\x2f\x44\xb7\x55\x0e\xe3\xf0\x2d\xe7\x1e\xba\x06\x66\xb9\xb8\x91\xec\x08\x07\x97\x32\x37\xe2\xd8\x56\x3f\x08\xb0\x79\x67\x66\xbf\x99\x6e\xdc\x07\x01\xf8\x4a\x3e\xc1\x03\x26\xd7\x72\xff\x97\xbc\xac\x7d\xdc\xe7\x8c\xd6\x30\xc3\xa2\x40\x61\x19\x66\x47\x24\xdc\x52\xa8\x16\x2a\xcf\xaf\xd0\x0e\x00\x30\x12\x7f\xbc\xed\xd2\x3c\x00\xfd\x9e\x2c\xd1\x7c\x0b\x93\x6b\x1b\x94\x33\x9d\x83\x03\x4f\xc1\xf1\x5b\x7a\x4d\xea\xb8\x48\xd0\x97\xb9\x52\x81\x2d\xed\x0b\x59\x1a\x20\x3f\x7f\x7c\xf0\x1e\xbe\xb4\x0b\xf3\xd2\x3d\x9b\xd2\xce\x45\xcd\x7d\x81\xe4\x32\x34\x8d\xa6\x1a\x26\xb3\xe6\xa4\xc7\xa8\x29\x42\xe1\xdb\x30\x44\x86\xa8\x8c\x08\xa9\xec\x12\x79\x89\x67\x25\xc8\x67\x32\x49\xf6\x4c\x76\x0a\x26\xa7\x4a\x7b\x3f\x49\xb4\xe2\x10\xc2\xd3\xee\x28\x2a\x3d\xbd\x03\xee\xbb\x05\x17\xef\x55\x06\x92\x73\xdf\x47\x2c\x99\x3e\x48\x1e\x58\x03\x04\xbf\xf6\x48\xb7\x2e\x5b\x96\x19\x6f\x9f\xf2\xb4\x7d\x5a\xda\xfe\x16\xdb\x07\xfa\x5b\x68\xed\x5d\x60\xf5\x70\xc0\x0e\x1f\x78\xf4\xde\x30\x66\x05\x5a\xda\x9a\x93\xb8\x09\x44\x03\x07\x56\x99\x44\xf6\xfa\xc6\x8c\x40\x37\x09\xb3\xf3\x47\x94\x7d\x02\xf0\xf0\x97\x75\xbb\x3c\xf2\x2f\x65\xfe\x54\xa1\x07\x00\x0d\xd0\xfa\x37\xfc\xce\x70\x0e\xa4\xc9\x17\x15\x55\x58\xd7\xe5\x47\x01\x40\x11\x89\xb2\xe4\x25\xad\xf2\xf0\x63\x87\xae\x76\x2c\xfd\x86\xd7\xaa\xf8\x1a\x1d\xfc\xde\xb4\xae\x64\x0d\xfd\x40\x6e\x94\x76\x5f\xaf\xdb\xf5\xbe\x76\x4b\x89\xb2\xc8\x65\x96\x82\xb1\xff\xf6\xfe\xaa\xfa\xef\xdb\x24\x40\xa7\x11\x7e\x56\x4d\xee\x3e\x1e\x15\x94\x32\x3b\xff\x2f\x44\x8b\xd9\x19\xbd\xe8\xa3\xd8\x5b\xac\xc4\x3c\x02\xf6\x7c\x3b\xd3\xbc\xa9\x09\x2b\xea\x45\xb6\x50\xed\x7e\xcf\xe9\x55\x49\x4c\x3e\xde\x5c\xae\xe9\x41\x5f\xd9\xc7\x46\x81\x8d\x64\x3e\x74\x62\x90\x69\x60\xde\x49\xc9\x5b\xe1\xaf\x26\x46\x2c\xbc\x65\x71\x70\xd2\x6e\x41\xd3\xa4\x08\xcb\xcf\xb0\x4c\x2b\xee\xd8\x67\xaf\xcd\x9e\x8c\xed\xc2\x81\x77\x6a\x7e\x9e\xe8\xcd\x7d\x9f\x18\xf7\x3b\x85\xd2\x46\xcb\x57\x8d\x7c\x64\xa0\x68\xd3\x13\x20\x48\x42\xd2\x18\x38\x5a\x90\xf1\xf3\xa0\xa6\x0f\x47\x3d\x38\xca\x6b\x96\xe1\x17\x22\xe6\x45\x4a\xba\xc3\x2d\x48\x3c\xf4\x28\x4e\x18\xf2\x45\xd1\x50\xb6\x43\x84\x7c\xa4\xdc\x07\x08\x1d\xd2\xee\x0c\x0c\x1c\x0c\xe2\xf8\x35\xd8\xf7\x6d\xc6\x8c\x91\xff\x17\xb3\xe4\x21\x73\xf5\x8d\x66\xac\xaa\x42\x15\xdf\x30\xfb\x55\xb0\x8c\xb6\x5d\xa1\xfd\xdf\xa3\xb9\x56\x83\xe7\x61\x35\xc3\x83\x2f\xd4\xb3\x44\x0d\x77\x58\x76\xf5\x5f\xcc\xb0\xa7\xb2\xe1\xaa\x35\xde\xea\x06\xdb\xad\x6e\x35\xda\x6a\x72\x6b\x05\x0c\xd3\x58\x41\xa9\xca\xcb\xea\x02\x6b\xa7\x38\x49\x9c\x24\x7f\x02\x17\x17\xe5\x41\xd1\x63\xfb\x04\xd3\xb5\x28\xba\xa3\xa8\x6c\x07\x4b\x50\x34\xbd\x03\xce\x8c\xbb\x5d\x75\x34\xf8\x8c\x86\xd5\xf9\xa1\x58\x94\x17\x20\x93\x7c\x84\x4e\xe1\x35\xa9\xcd\x48\x34\xd7\x72\x34\x1b\xea\x5c\x36\x98\x72\x35\x94\xa4\x7d\xf7\x05\x10\x27\xb3\x55\xd8\xef\x33\xaa\xc7\x8e\xe2\x09\x7a\xc3\x06\x76\x16\x7e\x9b\xe2\xb4\xbf\xb4\xf8\xa3\x1d\x97\x53\x13\xae\x11\xb2\x34\x63\xa6\x35\xbf\x05\x19\x00\x1c\x94\x1f\x92\x68\x9f\x69\xba\x05\x38\xa9\x26\x07\x5a\x8c\x48\xdd\xa1\x1a\x1d\xc6\x51\x87\x87\x4a\x3e\x60\x2b\x06\xe7\x74\xd8\x76\x90\x33\xf2\x8b\x24\x72\x91\x25\x40\xf7\xfe\xcb\x60\xa4\xfb\x5a\xc0\x0f\x4c\x5a\xea\x66\x3e\x1e\xb6\x18\x36\x64\xf2\xc5\x01\x9d\x9a\x28\x41\xa5\x86\xca\x52\x5e\x92\xa2\xf1\xf8\xac\xfd\x0b\xf7\xd6\x26\xe5\x9b\xe6\x6a\x48\x9c\x24\x55\x4a\x47\x0f\xea\xc2\x42\xce\x05\x33\x60\x99\x45\x9e\x7c\x67\xed\x5f\xb2\x98\xdd\x11\x90\x93\x56\x29\x27\xbe\x4d\x3a\xb2\x1e\x71\xc6\xb8\x8b\x38\x49\x74\x43\x80\x74\xa8\x40\xb6\x69\x3e\x84\x3a\x9a\xd6\xb6\xc5\x65\xdd\x42\xc7\xf7\xa3\x60\x68\xfc\x96\x12\x6c\xb6\xef\x64\xac\x76\xf8\x83\x62\xa1\x47\xf7\x63\x14\x01\xa8\x1c\x3a\xa1\x95\x28\xa2\x0b\xc1\x2e\x9d\x38\x0e\x61\x15\x63\x21\x75\x60\x64\xc1\xea\x1b\xda\x7b\x14\xe0\x5c\xe6\x4f\x7b\x0f\xa2\x58\x87\x07\x9e\x24\xe0\x27\xf2\x50\x84\xc2\xae\x52\x3a\xfa\x25\x18\x66\x17\x4a\x9e\x9d\x2c\xfc\x76\x08\xcb\xef\x72\x3e\xda\x7c\x62\x47\xce\x84\xc0\x52\x20\x68\xa9\x10\xc8\xd9\x1a\xe7\x80\xea\x27\x84\x32\xd3\x14\x49\xd2\xa6\xe0\x16\x61\x9c\xa1\x72\xae\x17\x39\xa7\xe4\x1a\x47\x50\x45\x72\x86\x4a\x53\x10\xb6\x4a\xa1\xd2\x26\x99\x34\x63\xcc\x1b\x88\x8d\xcb\xc8\x39\x94\xe2\xc7\x1d\xe9\x43\x83\xf4\x9d\x63\xe9\xc1\x5f\x5a\x78\xb9\xb6\x2f\xb9\xe7\x6c\x8b\x39\xeb\x96\xcc\x9a\x30\x47\x77\x65\x3d\x6f\x3a\x0c\x38\xee\x3d\x3e\x30\xab\xc7\x0d\x6f\x75\xc6\x8b\x30\xb3\xc9\x5f\xf3\x5c\x05\xa9\xdc\xc8\x90\x4d\xb6\xaa\xc3\x3a\x3e\xb2\x0c\xb1\x12\x29\xe9\x08\x9d\x59\x9b\xc6\xaf\x56\x2d\x22\x9e\xd7\xd8\x38\x73\x91\x50\x45\x98\xbc\xc8\x73\xdf\xfc\x35\xfc\x80\x2f\xef\x0f\x39\x92\x52\x6a\x27\x71\xb4\x2f\xf5\xd0\xf1\xa9\x41\xf9\xdb\xac\xae\x86\xfe\xfa\x11\x98\x52\x4c\x93\x97\x0e\x30\x4e\x06\xea\xc4\xc7\x3c\xb3\xee\x6b\x58\x04\xe2\xde\x7c\x20\x03\x22\xdb\x5f\xd0\xb7\xd9\x96\x4a\x95\xfd\x11\xc5\xd2\xaa\x72\x46\x72\x52\xb4\xc9\x5f\xc3\xa6\xcd\xa1\x1b\x2c\x76\x34\xb3\x2d\x63\x9e\x7e\x0f\xa6\x87\x94\xd4\xf9\x15\xac\x94\x67\x5a\x18\xa4\x9b\x73\xe1\xfa\xb4\xa7\x7d\x37\x0f\xc3\xf5\x4d\xd2\x37\xee\x2c\xf9\x83\x55\xc4\xdd\x98\x20\x69\x0d\xcb\xfc\x69\xc6\x4e\x7a\x82\x85\x63\x33\x7f\xa9\xe4\x66\xe2\x9c\x06\x4c\x59\x65\xfe\xa4\xce\x57\x65\xfe\x64\xc7\x63\x9c\x5a\xf8\x07\xb2\xbe\xe6\x86\xe9\x0c\xf8\xf4\x2d\xcf\x2b\xff\xa8\xd6\x23\xbf\xae\x45\x75\x0b\x05\x16\xa1\xb5\xf3\x29\xf0\x52\xfa\xa7\x38\x2d\xf2\xb2\x0e\xb3\x5a\x7a\x3d\x09\xc5\xa6\x49\xb8\x75\x4a\xd9\x24\x4c\xb3\xc2\x19\x99\xe0\xb3\xa9\xe4\x1d\x02\x83\x7e\xb3\xde\xc0\x83\x3e\x8d\x2c\x6a\x93\x2a\x61\xb5\xc9\x20\xba\xda\xe4\x7a\x5d\x6d\x72\xbd\xae\x36\xb9\xfe\xa6\x41\xcf\xf3\x78\xab\x88\xbf\xeb\xa0\x4f\xa3\x69\x06\xbd\x8c\x67\xf4\xa0\x57\x9b\xdf\x39\xe8\xff\xe1\xac\xe7\xa6\x41\x2f\x08\xed\x6f\x37\xe8\x05\x26\x86\x0e\xfa\xdd\xce\x83\x07\x3d\x39\xad\x6c\x52\x9b\x54\x09\xab\x4d\x06\xd1\xd5\x26\xd7\xeb\x6a\x93\xeb\x75\xb5\xc9\xf5\x37\x0d\x7a\x9e\x4f\x5f\x45\xfc\x5d\x07\x7d\x72\x9e\x66\xd0\xcb\x78\x46\x0f\x7a\xb5\xf9\x9d\x83\xfe\x1f\xce\x7a\x6e\x1a\xf4\x82\xd0\xfe\x76\x83\x5e\x60\x62\xe8\xa0\xf7\xbc\xdd\x0e\x1e\xf5\x4d\x62\xd1\x9b\x54\x09\xeb\x4d\x06\xd1\xf5\x26\xd7\xeb\x7a\x93\xeb\x75\xbd\xc9\xf5\x37\x8d\xfa\xf6\x62\x0b\x15\xf3\x77\x1d\xf6\x4d\x32\xcd\xb0\x97\xf1\x8c\x1e\xf6\x6a\xf3\x3b\x87\xfd\x3f\x9c\xf9\xdc\x34\xec\x05\xa1\xfd\xed\x86\xbd\xc0\x04\x3c\xec\x65\xf8\xef\x69\xdc\x66\x1b\xe8\x33\x00\xab\xf6\xad\xaa\xb7\xea\x7d\xdc\x9c\x21\xb7\x9d\x64\x98\xde\x33\x46\xa7\x1c\xa0\x7f\xef\x9a\xb9\x65\x38\xfe\xed\xc7\xa2\x7d\x20\xf2\xca\x84\x1e\xa2\x91\x56\xe0\xa5\x53\x50\xe4\xd6\xac\xdd\x27\x5b\x03\x65\xf1\x11\x82\x10\xef\x9c\x18\x84\x58\x36\x2b\xbd\x61\x30\xa8\xa1\x95\x33\x19\xd2\xc4\xe1\x66\x10\x21\xf5\x2b\xab\x88\x61\x69\xc5\x40\x3f\x81\x75\x5f\x08\x87\x30\x2b\x7e\x67\xec\x03\xad\x2e\xf9\x93\x0d\x10\xfc\x3e\x39\x48\x45\xdc\xae\x20\xe5\xc8\x9f\x71\xa5\x0b\xd8\x7a\xd0\xd1\x85\xe8\xb7\x3b\x10\xbd\x74\xbb\x63\x6a\xf8\xb7\x74\x4e\x6d\x89\xff\x1f\x3a\x44\x8f\x7b\xf0\xde\xdf\xba\xf3\x19\xfb\xff\x45\xf0\xde\xdf\x7d\x60\xf5\x58\x74\xe8\x18\x16\x3f\x7e\x20\x2c\xb7\xc5\x69\x5c\xa3\x32\x89\xd3\xb8\xfe\xf1\x83\xe7\xb6\xc5\x8c\x13\x9f\x9e\x7b\x5b\xcd\x36\x17\xdf\xff\x65\x35\xf3\x02\xfa\xd7\x5f\x5e\x7c\x1f\x38\x75\x0d\x4b\x0d\x35\xf5\x98\xe1\x41\x92\xf0\x85\xa3\xd4\x4c\x5a\x58\x47\x12\x03\x19\x30\xc8\xa3\xb0\xfc\x0a\xce\x36\xed\x97\x7d\x18\x4a\x21\x0f\x00\xa8\x37\x10\xc3\xc8\x8c\xd3\x8a\x1f\x04\x73\xfe\x3f\x51\x7a\xe6\xd6\x36\x96\x7a\xa6\x16\x89\xd8\x66\x10\x35\x70\x82\x91\xf0\xf8\x56\x3c\xc6\x69\xc6\x42\x52\x99\x65\x2c\x90\xd2\x24\xa3\xc3\x19\xf7\x40\xc0\x0c\x03\x13\x8b\xa2\x1e\x60\x7a\x91\x20\x3c\x83\x28\xfe\x11\xe6\x18\xdc\x81\x59\xf7\xcf\xdf\x70\xa6\x91\x45\xa7\x4c\x34\x83\x06\x8c\x34\xdb\x58\x14\x0e\x4d\x31\x10\x84\x3e\xc8\x8f\x61\x19\xdd\xb5\x53\x64\xe0\xe7\x76\x31\xe1\xfc\x53\x5e\x46\xd4\xf5\x3b\x94\x28\xfc\xea\xe0\xe7\x81\xf7\x94\xb6\xdb\xd5\xfa\xae\x29\xf5\x8d\xf7\x94\xe2\x1e\xff\x74\x51\xf6\xae\xca\x57\x24\xba\x0c\x6a\x41\x76\x01\x90\x14\x74\x42\xf6\x39\xf5\xe4\x16\xfb\xe6\xce\x4a\xf5\xa6\x62\x5e\x3b\x31\x89\x1d\x17\x87\x61\x9b\x95\x98\xea\xc2\x99\x79\x24\x43\x85\x61\xdf\x95\x0e\x0a\x70\xd1\x65\x57\x54\x6e\xd5\x50\xf8\x80\x72\x1d\x9a\x79\x01\x92\xee\x99\xb8\x71\x0e\x79\xf4\xdc\xbb\x11\x4b\x4c\xc0\x57\x34\xed\x96\x20\x4f\x54\x9f\x53\xc7\x75\x82\x94\x7d\x88\x3c\x91\x26\x01\xa8\xae\x07\x09\x86\x9e\x89\x5a\x82\x59\x83\x39\x4e\xd4\xd4\xa2\x90\x60\xa8\xde\xdd\x99\x2d\xd4\x0f\xdd\x4f\x29\x57\xb2\xdc\x13\x76\x15\x5a\xbb\x27\x82\x67\x33\xf0\xc1\xfc\xc6\xa6\x54\x0b\xc4\xe6\xdd\xa5\xa2\x15\xcb\xd8\x90\xa8\x43\x06\x6a\xd4\xe5\x0c\x28\x72\x67\xae\x84\xf0\x07\xc1\xee\x66\xc2\x6f\x76\xa9\x1e\x38\x1c\x5a\x09\x9f\xf2\xbc\x36\x4b\x64\xa8\x04\xe4\x1b\x09\x0d\xdd\xa7\xa4\x80\x91\xd1\x1e\xc6\x74\xa1\xee\x1a\x0d\x9c\xf6\x9e\x6e\xac\x95\x93\x68\x2f\xd6\x90\x42\x1d\x39\x8d\x35\xcd\xa7\xc3\x41\x95\xdb\xad\x65\x12\x64\x73\xa4\x9d\x86\x84\x8d\xb5\x8e\xd3\xb3\x83\x6d\x37\x09\x9f\x87\x9f\xa3\x65\x3b\xa4\xe0\x91\x18\xa7\xe7\x79\x87\x9b\xb6\x11\x0a\xea\xbc\xe8\xc2\xff\x0c\x9d\xc9\xdb\x85\xef\x94\xac\x2e\x25\x1e\x4d\xae\x74\x93\x0a\x80\x15\x23\x79\xbb\x49\x12\xec\x82\xed\xe2\xa1\x69\x26\xc3\x08\x1d\xbf\xce\xe8\xeb\x57\x36\x0a\x2f\x28\x1a\xcb\x06\x96\xb6\xf1\x88\x2d\x71\xed\x3a\x20\xb0\x34\x48\x8a\x94\x8c\xef\x41\xd1\xc8\x56\x44\x78\xd2\xf8\x16\xa6\x72\x77\xc6\x76\x90\xf1\xdf\xfa\xc9\x10\x75\x2e\x93\xe6\x44\x8c\x9f\x11\x60\x59\x62\x6f\x94\x0c\x7d\x59\x4f\x27\x1a\x80\xa9\x01\xdd\x56\x06\xad\xd0\xfa\x07\xa9\x63\x6c\x68\x89\xc7\xc2\x81\x36\xd3\x5d\x2f\xd2\x8b\x79\x26\xce\x32\xf3\xc1\xf0\xc0\x28\xbd\x95\x34\x9d\x93\xc7\x91\xee\x1f\xb3\x46\x06\x26\xb8\x23\xa5\x1f\xf1\x20\xa9\x02\x0d\x7a\x26\xbf\x31\xb4\xed\x62\x35\xd0\x06\xe5\x2a\x73\xc0\x58\xa0\x5e\x7e\x05\x4e\x68\xcc\x31\xeb\x19\xb8\x0c\x43\x7b\x66\x9a\x3e\x3b\xc7\xfc\x9a\xd5\xfb\x25\x3d\xf3\xaa\x94\xa9\x20\x72\xcb\x73\x58\xb4\x5b\x49\xc5\xd6\x62\x39\x50\x94\x97\xc5\x25\xcc\xaa\x3d\x49\xa9\x9c\x3f\x55\x7b\x0f\xec\x62\x4f\x3a\x97\xd7\xd7\x45\x78\x3c\xe6\x65\x14\xe7\x19\x9b\x36\x94\xab\x93\x35\x00\xc1\xc0\xf3\x93\x53\x3f\x17\xea\xf5\x77\x3d\xa3\xdb\x6e\xa4\x20\x31\xaa\x76\x95\xda\xa8\xf3\x1e\x0a\xde\x9f\x24\xaf\x56\xf1\xa6\x54\xef\x87\xde\x2a\x58\xa2\x30\x3a\x96\xd7\xf4\x30\xe1\x59\xad\xd6\x6b\xd4\x7d\x2e\x8f\x6e\x2d\x96\x76\x77\xf7\x26\xec\x50\x42\xc8\x8e\x67\xf9\x66\x6b\xf3\x5d\x3b\x4a\x8b\x1f\x34\x14\xd0\x47\x9e\xbe\x46\xf6\x3b\xd7\xa1\x4f\x49\xf2\x11\xa6\x76\xa7\xf1\xe7\x87\x01\xc4\x48\xd0\xd3\x92\x54\x83\x9f\x6b\x16\xa1\x12\x53\xbf\x1b\x13\x0d\xa3\x94\x36\xca\x09\x28\x9e\x9d\xba\x08\xcf\x71\x46\x9a\xf5\x1b\x8f\xb2\xe1\x5f\x33\x01\x50\xd3\x45\x78\x46\xec\xcb\x5c\x4f\xe2\x78\xf9\xec\x0a\xe4\xd8\xe3\x70\x56\x4e\x24\xe3\xb7\x99\x64\x8c\x29\x76\xe1\xcc\x39\xfc\xb8\x5a\xcb\x9e\x72\x3f\xb3\xdf\xe1\x0d\xd6\x87\xe5\xd0\x9b\xc3\x65\xa3\x97\x8e\x90\x89\xb4\x94\x1b\x9b\x6e\x4c\xcb\x46\xf0\xa9\x01\xe1\x4c\x90\x38\xe8\x23\xd9\x0f\x0c\x02\x73\x9f\xa4\x49\x42\xae\xf3\x21\x44\x6a\xf6\x23\x87\xb6\x99\x57\xa3\xc0\x8c\x55\xc4\xde\x09\x6b\xc0\x01\x36\x30\xc3\xbe\x88\x9f\xaf\x65\x8b\x14\x06\x9f\x01\xa5\xb7\xff\x0f\x3e\x3b\x28\x0e\x32\xb2\x2b\x49\x18\x12\x6a\x88\x3e\xe4\x20\xc7\x22\x80\x31\xda\x2c\xc1\xa4\xfb\x65\x8f\xea\x97\x5c\x2f\x30\xb5\x91\x86\x00\x50\xd3\x01\x24\x72\x55\x0a\x8a\x6b\xd4\x0d\x34\x30\xc2\x5b\xa4\xe5\xf7\x0d\x14\x23\xfb\x37\x0d\x9b\xde\x51\x43\xdf\x71\x61\x74\xb6\xbf\xc0\xb0\xbc\xb0\xb8\x56\x92\xb4\x36\xc1\x7b\x29\x2b\xd9\x46\xcd\x4a\x36\xec\x3a\x2f\xe5\x08\xce\x21\xac\x10\xc6\x02\x67\xb9\x14\x4e\x98\x9b\x8e\xc1\xff\x1d\x1c\xa3\xa7\x12\xd5\x4e\xc3\x87\xb4\x82\x7d\x24\xe0\x4f\xb6\x95\x4c\x0a\x81\xd2\xa2\x7e\x56\xf6\x3e\x1c\xea\x6c\xc6\xe8\xe8\xaf\x45\xe1\xc2\x68\x0c\x41\x96\xaa\xd4\x7d\x2d\x6b\x6d\x5b\xcb\xba\xb3\x16\x9e\x22\xc2\xed\x0c\xc4\x29\xca\x38\x0d\xcb\xe7\x41\xc7\x7f\x43\xb9\x8d\xdc\xe3\xb6\x54\xfd\x14\x02\xe2\x5b\xfb\xc7\xa3\x8a\x6f\x01\xe3\x53\xb2\xa1\x0d\x7d\x15\xe2\x37\x21\x45\x54\xa1\x63\x9e\x45\xbd\x9d\x64\xae\x4f\xa8\xb6\x52\xba\xd9\x95\x0f\xe8\x68\xb0\x0a\x0e\x6b\x5f\xc7\xb9\x30\xe1\x1c\xd3\x59\xcf\xdd\xce\x3d\x6f\x33\xf7\x7c\xb9\xbb\xd7\xe3\x11\x55\x95\x9d\x31\x7f\x1b\x6e\x56\x41\xc7\x18\x6d\xa3\x76\x95\x95\x0e\xe8\xa8\x87\x36\x68\xb9\x52\xf1\xa9\xdd\x14\xa9\x0c\xec\xe4\xca\x9d\x7b\xeb\xcd\x7c\xbd\x13\xbb\x18\x67\xa7\xbc\x87\x9f\x4d\xe8\x1f\xb6\x2d\x3f\xb8\x81\xd2\x39\x52\x34\xa4\x67\xde\x26\xdc\x1e\x24\x4c\x0b\x00\xd3\x98\x3e\xf9\xcb\xb9\xb7\xf6\xe7\xde\x76\x25\x76\xea\x29\x2c\xb3\x2e\x31\xec\x3b\xdf\xf3\x03\x7f\x07\xfa\x13\x47\xcf\xdd\xb4\x0c\xb1\x66\x4a\xef\x78\xa9\xd4\x41\x23\xca\x68\xb9\x43\xae\xab\xa2\x5c\xc0\x28\x47\xf5\x34\x08\xe6\xde\x6e\x39\xdf\x88\x1d\x8d\xc2\xec\xdc\x27\xf5\xe8\xb8\x0c\x04\xfb\xa4\x4d\x94\x3e\xb2\xc2\x01\x3a\x3c\x44\xbe\xb7\x74\x15\x6c\x0b\x10\xdb\xa8\xde\xf9\xee\x3c\x58\x2a\xb6\x49\x36\xa0\xf4\x2b\x71\x7b\xda\x9d\xc2\x96\x23\xd2\x48\xe9\x1e\x2d\x1b\xa8\xc0\x10\xb9\x28\x90\xd1\x2d\x20\x74\xa3\xba\xb7\xda\xce\xfd\xd5\x6e\xee\x07\xae\xac\xbe\xb2\x27\x5b\x04\x4d\x9e\x2d\x88\xbb\xfc\xaa\xa9\xae\xfc\x3a\x68\xf0\x45\xbe\xe7\xaf\x24\x4c\x9a\xda\x38\xf2\x81\xbd\x0a\xfc\x79\xb0\x9d\xaf\xd9\xd0\xfb\xeb\x35\x3d\xe4\x75\x99\x67\xad\x13\xe9\x1b\x96\x37\x0c\xe9\xc4\xe0\xe5\x8c\xa5\x7d\x5d\x4e\xa7\xba\xc2\x54\x89\xe3\x26\xf0\x44\x77\x96\xf6\xec\xbf\x55\xd3\x9c\xbe\x2e\xc2\x04\x95\x50\xc6\xe2\x41\x9f\x42\xbd\xce\xbb\x1c\x75\xea\x9b\x10\x25\xcb\x53\xdd\x1c\xd6\x7e\xb8\xa7\x95\xc4\xad\x55\x5c\x4b\x5e\x17\xc5\x55\x1a\x57\x55\x7c\x48\x90\xd2\xdf\x95\x80\x5e\x80\x9a\x2d\x8e\x49\x5e\x99\xae\x92\xea\x3e\xb6\x19\x3a\x0d\x32\xa8\xf8\x42\xae\xbb\x72\xb7\x01\xa0\xf3\xe3\x11\x05\xfa\x85\x62\xdb\x28\xc4\xc1\xa4\x84\x6a\x76\x91\xee\xc0\x66\xa0\xbb\xd3\x31\xd2\x41\x45\x29\xb5\x1c\xf8\x9b\xc0\xe7\x80\x9a\x1f\xb3\xdc\x2e\xa3\x15\x70\x80\xff\x1d\xf2\xd1\x12\x05\x6a\xd4\xb9\x8e\xb6\xd1\x41\x43\x06\xb3\x78\xdc\x1e\x0f\xc7\x93\x0e\x0c\x30\xe9\xbb\xfe\xd2\x5f\xb7\xa0\xb2\xf7\xe1\x05\xc1\xc6\x5f\x41\x33\xd6\x0a\x45\x5d\x8a\x62\x4e\x75\x89\xd6\xc7\x83\x82\x0a\x66\xf0\xe0\x45\xa7\x83\x06\x0a\xc9\xf0\xe0\x23\x6f\xc9\x01\x45\xcf\xc1\x3d\x06\xab\x35\xf0\xe9\xff\x5d\xe4\xa1\xe3\xc9\x53\xf5\x8b\x50\x80\x0e\x22\x1e\x98\xb1\xf0\x10\x45\x28\x90\xe0\x20\xae\xd6\xfe\x71\xd9\x72\xa5\xbc\xfa\xb7\xc1\x7a\xe5\x42\x42\x3b\x9d\x4e\xcb\x63\xa4\x30\x76\x3a\x21\x74\x08\x15\x54\x30\x6f\xa7\x13\xda\x86\x9e\x0a\x0a\xb0\x17\x2c\x97\x27\xb7\x65\x4f\x7e\x61\x6f\x7c\xef\x08\xaa\xf4\xb4\x8d\x36\x9a\x4a\x4f\xc1\x51\x50\x29\xc5\x64\x60\xce\x3b\xb8\x87\x8d\x02\x09\xf0\xb6\xda\x79\xbe\xb7\xe9\x26\x15\xe1\x75\xbb\xf5\xb6\xde\xd6\x87\x58\x43\xf8\x3f\x95\xb5\xe8\x14\x9d\x90\x84\x08\xe6\x0c\x1d\xd1\xf1\xb4\x96\x01\x01\xc6\xd6\x5b\xfc\x5f\xd7\x81\xee\x35\xe9\x1d\x3c\xe4\x43\x03\x95\x8c\xc9\x9d\x3a\x0a\xd6\xc7\xed\x31\x14\xf1\x18\x86\xc0\xee\x70\x38\x20\x09\x0e\xb2\xb4\x95\x1b\xb8\xc1\xeb\x3f\xf3\x8f\x38\x5f\xd1\xf3\xa9\x0c\x53\x54\xcd\x8a\x32\x3f\x97\xa8\xaa\x9c\x43\x58\x3a\x55\x5d\xc6\x05\xaa\x5e\x4e\x65\x9e\x8a\x1b\x10\xdb\xf9\xd5\xa3\x49\xb3\xeb\x1c\xac\x75\x67\xee\xeb\xeb\x3f\xbf\x21\xee\x05\xc7\xd8\xbf\x1e\x2d\x66\x0c\x55\xbe\x0d\x49\x2b\x19\xe2\xad\xe6\xfa\x7d\x11\x43\x3e\x57\x88\xbd\x9c\x3e\x91\x8e\x7c\xa8\x88\x2d\xb5\xa8\xa7\x8a\x58\xb1\xda\x4f\xc1\xab\xba\xf1\xf6\x75\xb6\x62\x2a\x2c\x77\x10\x1f\x66\xb6\x58\xd3\xd5\x93\xc1\xcb\x26\x92\x90\xf4\x5c\x82\x80\xa5\x44\xfa\x0e\x58\xac\xb7\xb0\x74\xce\x58\x01\x28\xab\x3f\xae\x82\x08\x9d\xe7\xc0\xfe\xda\xe0\xd3\xcc\x0f\xde\xcf\x05\x87\x45\x7b\x0e\xdc\xf7\x86\x96\xe6\x9a\x8d\x82\x43\x79\xfe\xa4\xa7\x8b\xe9\x12\x6d\x49\x3d\x0c\xb3\x38\x0d\x6b\x14\xb5\x9f\x63\x69\x01\x16\x08\x34\x66\x66\x5e\x35\xa3\x7d\x9f\xc5\xd9\x29\xce\xe2\x1a\x3d\x8e\x6e\x71\x93\xaa\x6c\x9c\xd2\xbc\xc8\xd2\xe3\xeb\xeb\x82\x10\x19\x31\x0c\xa8\x4d\xd2\xc3\x72\x62\x76\x23\xf1\xa0\x1c\xc1\xa9\xee\x6f\x64\x1b\x43\x5e\xc5\x5d\xa4\xdf\x3b\x8d\x15\x3c\x21\x28\x3b\xf2\x9c\x90\xa0\x14\xf3\xd6\xca\x99\x06\x85\xb1\xd9\xfa\xa2\x30\x0e\xbe\x07\xd9\x50\x2b\x7f\xa5\xf2\x20\x32\xfd\x5f\xa9\x58\x50\x6a\xa2\x21\x7f\x29\x34\xc6\xa2\xfc\xc6\x0f\x05\xcb\xf0\xef\x7c\x3d\xfb\x12\xe1\x2f\x77\xfa\x46\xc4\x61\xbb\x23\xa5\x95\x7a\x65\xff\xb1\xb6\xf6\x6e\xd2\x91\x79\x0b\x30\xd4\xdc\xf2\xa9\xc0\x44\xa0\xfd\x30\xa5\x19\x80\xe9\xf6\x22\xe8\x3b\x95\xe1\x0a\x26\x95\x16\xd3\xb3\xf6\xc9\xf3\x86\x2f\x6b\x0a\xea\x1f\x34\xa3\xd0\x77\x6d\xf7\x37\xe2\x0c\x5a\xb2\x6a\xb2\x01\x57\x34\x12\xb6\x4b\x5e\xc6\xbf\xe7\x59\x1d\x26\x63\x4e\xa6\x82\x08\x7e\x1a\x62\x5e\xc6\x8f\xa6\xb6\x7d\x1f\x03\xc9\xe9\x16\x37\xec\x03\xab\xb2\x7b\x65\x18\x35\x40\xe2\x83\xdb\x0e\xd0\xb9\xa0\x3c\xc2\x1e\x64\x09\x63\x28\x28\xec\x76\x9b\x04\x74\x22\x9e\x75\xe3\x23\x48\x5f\xca\x6d\x76\xa3\xf9\x90\xd4\x59\xdf\xd5\x82\x40\x8a\x6f\x69\x44\x10\xc1\x11\x76\x04\x35\x9f\xdc\x94\x06\x11\x19\x69\x4d\x96\x6c\x59\x30\x0f\x62\xd6\xac\x5b\xcd\x29\x8d\xbe\xb7\x39\x41\x14\xdf\xd4\x9c\x00\x82\x63\xcc\x09\x68\x3e\xbd\x39\x0d\x21\x72\xbf\x39\xf1\x3c\x4c\x30\x0f\x62\x3e\xa6\x5b\xcd\x29\x39\x7f\x6f\x73\x82\x28\xbe\xa9\x39\x01\x04\xc7\x98\x13\xd0\x7c\x7a\x73\x1a\x42\xe4\x7e\x73\x6a\x13\xfc\xc0\x4c\x34\xf7\x3b\x4b\x24\x8f\xcc\xf7\xb5\x27\x88\xe2\x9b\xda\x13\x40\x70\x8c\x3d\x01\xcd\xa7\xb7\xa7\x21\x44\xc6\xda\x93\xd8\xfe\x94\x5c\xab\x8b\xba\x37\x59\x87\xd0\x98\xe0\x4d\x18\xfb\xf4\xf6\xb7\x01\xed\x7a\x4f\x5e\xea\xa1\xec\xd0\x4f\x3c\xfc\x6b\x8e\xa1\xfd\xc8\x20\xbd\xa7\x95\xf4\x21\xd4\xc8\x12\xff\x6a\x34\x0e\xb9\xb2\xbf\xd7\x14\xc3\x51\x9a\x4a\x0c\x87\x0b\x75\x7a\xc3\x3f\x43\xf1\x2f\x4e\x46\x0c\x23\xc5\xd8\xdb\x4e\x12\xa4\x91\x2d\xfe\x6d\x6b\x2c\xfa\x41\xa2\xe4\x54\x25\x51\xd2\x42\x80\xe2\xc0\x8f\x65\xfc\xbb\x98\xa1\xfd\x58\x31\xda\x5b\x49\x42\x34\xb2\xc4\xbf\xbf\x8d\x43\x3e\x48\x84\x9c\xa6\x24\x42\x5a\xa8\xd3\x1b\xf4\x41\x8f\x7f\xbb\x83\x1a\x8f\x14\x9e\xad\x89\x3c\x8e\x4d\xcc\xf0\x0f\x84\x23\x30\x0f\x1b\xc4\x8c\xa0\x3c\x88\x49\xa1\x4e\x6c\xf8\x17\x47\xfa\x71\xd1\xd0\x7e\xa4\xf0\x7a\x5a\x49\xf2\xb3\xb1\x44\x3e\x62\x8e\x43\x3e\x48\x84\x9c\xa6\x24\x42\x5a\xa8\xd3\x1b\xfa\x55\x94\x7d\x00\x85\x9b\x8f\x14\xa0\xbd\x91\x24\x3f\x33\x43\xec\x3b\xeb\x28\xdc\x83\xc4\xc7\x49\x4a\xe2\xa3\x85\x3a\xb9\x81\x1f\x6e\xd9\x37\x5a\xb0\xf5\x48\xe1\x59\xdb\xc8\xb6\x67\x62\x87\x7f\x09\x1e\x83\x7a\x98\xe5\x31\x8a\xb2\xe5\x91\x42\x48\x53\x03\x3e\x2d\xf3\xaf\xc8\x50\xe3\xd1\x56\x67\x6e\x22\xbf\x2d\x4c\xcc\xf0\x4f\xd5\x23\x30\x0f\x7b\x55\x30\x82\xf2\xab\x82\x14\xbe\xb2\x0d\x42\xf4\xfe\x0f\xe2\xe5\x4b\x27\x28\xb4\xeb\xb7\xf5\x8d\xee\xad\x23\xe4\x2a\x77\xf3\x7b\x45\x33\x73\xc9\x9d\x4f\xed\x35\xee\x8b\x80\x11\x54\xbd\x39\x17\xfc\xfa\xc2\x81\xc9\x69\x41\xbe\x84\xff\x89\x3c\x2e\xba\x47\xa6\x8f\x21\xa0\x94\x6a\xcb\xcd\x26\x78\x3d\x5c\xeb\x3a\xcf\xf8\x36\xa9\x61\x97\x58\xb3\xcf\x2a\xee\x6b\x48\xdb\x75\xc9\x9d\x80\xef\x09\xaf\x8b\x3a\x0f\xab\xfa\xa5\x4b\x94\xbb\x0c\xdc\xa2\xd1\xbe\x45\xeb\x27\x31\xe0\x5c\x13\xd2\x47\xd7\x6d\xf0\x49\xcb\x51\xd3\xdd\xc5\xd2\x97\xa4\xe6\x93\xbc\x05\x50\xba\x10\x45\x85\xe4\x9f\x37\x31\xb5\xa8\xcc\x0b\xe7\x14\x27\x35\x2a\xf7\x87\xe4\x5a\x7e\xf4\x5c\x92\x85\xc0\x5c\xd5\x5e\xe3\x6f\xf8\x22\x48\x44\xa4\x9f\x33\x87\x33\xac\x10\x60\x92\x94\x0a\xbf\x9b\x39\x6a\x4f\xac\x50\xee\xbe\xd3\x60\x2e\x71\xa4\x5d\x6c\x85\x2b\xf8\xc9\xd1\xb1\x9f\x67\xcd\x17\x2a\xc1\xb7\xcd\xc8\x5f\xa1\x26\x53\xb4\x3d\xf1\x8a\x1b\x7c\xe2\xdd\x24\x9f\x8a\xe5\x4f\x89\xaf\x8b\x34\x8f\xc2\xc4\xc9\x0b\x94\xe9\x87\x85\xbb\xba\x19\xfd\xdd\x82\x38\x0d\xb7\xe0\xb6\xe4\x99\xe5\xb3\xa4\x80\xed\x17\xcd\x53\xdc\xa0\x88\x6d\x3c\x64\xdf\x8b\xdb\x4f\xb1\x6e\xe0\x3e\x8a\xfa\x78\x04\x2e\x9a\xc7\xbf\xd5\x51\x23\x5c\xff\x4e\x59\x8c\xe2\x30\xc9\xcf\xc0\x67\x54\x8a\x90\xe6\xf8\x21\x66\xc5\xd3\x9b\x42\x43\x96\xe0\x5a\x9c\xc2\x08\xcd\x64\xbc\xc2\xce\x0c\xe9\x76\xed\x53\x5e\xa6\xb3\xc5\x92\x1d\x99\x51\xee\xac\xbd\x15\x62\xde\x43\x42\xab\xa6\x78\x92\xb0\x46\x1f\xdd\xb9\x13\x90\xa1\x67\xab\x1c\xbc\xe5\x61\x88\x3c\xf8\xfe\x06\x02\x4a\x2f\x15\x94\x40\x75\x6e\xbb\x0b\x71\xdb\x47\xde\x9e\xb6\xa4\x97\x53\xf5\xe2\xa9\x8e\x61\x82\x3e\x7a\x0b\xd7\x17\xbb\x2b\x94\xca\xc6\xe1\x54\xc7\x32\x4f\x12\x3c\x63\xf7\x0f\x74\x3c\x6d\x33\x03\x24\xb9\x54\xc8\x05\x47\x0e\xd9\xb3\x62\x46\xcb\x39\x66\xdb\x8f\x5e\x00\x24\xdf\x2e\x1c\x8b\x6a\xd3\xbd\x58\x79\x2e\x85\x1e\x30\x36\x95\xf5\xa6\xbf\xe9\xa5\x47\x26\x0b\x78\x70\xf3\x46\x74\xb2\x43\xd1\x84\x13\xa7\x90\x88\xab\x4f\xf0\x9c\xba\x76\x20\x9d\xce\xfe\x66\xc9\xb3\x1a\x6e\x51\x98\x24\x53\x59\x5b\x95\xe6\xbf\x43\xe5\x62\x51\x77\x63\x96\x81\x2f\xa3\xf5\xbd\xe5\x5e\x37\x61\xd6\x1c\xc9\x96\xc5\x7a\x85\x21\x3a\x14\x5b\xab\x14\xce\x9f\x88\x83\x93\xf8\x0e\x19\x00\x85\x17\x8a\x32\xe5\xdb\x4e\x24\xdf\xea\x5b\xf9\x5a\xfa\x3f\x72\x7c\x57\x7b\x5d\x71\x9f\x69\xe0\x5b\x72\x25\x24\xab\xfa\xf6\x24\xe8\xf8\xdb\x05\x5c\xb0\xd4\xe8\x90\x39\xbc\xf5\x99\xf4\x6a\xe2\x3c\x89\xde\xba\x34\x97\x4c\xb9\x6b\xed\xae\x1b\x3a\xdb\x7d\x83\x46\xc7\x47\xb9\xf7\x1b\x4e\xdc\xb5\x1c\x9c\xb7\x6b\x29\x26\xd0\x12\x65\x32\x53\x42\x07\x4f\x39\x18\xb3\x77\x48\x89\xf8\xaf\x38\x7f\x42\x99\x04\x5d\xfd\x0c\xb6\x30\x11\xeb\x43\xa5\x2f\xa5\xa1\xc8\xda\xab\xf4\x0e\xf9\x1b\x5e\x2d\x8a\xb2\x08\xce\xfd\x8f\x2b\x64\xcf\x14\xce\xa9\xa7\x28\xd8\x9c\x29\x0d\x50\xb2\x31\x51\x1a\xa0\x66\x2a\xa9\x9f\xfe\xf0\xc2\xbd\x46\x5f\xf4\x96\xe9\x3c\x77\x08\x4b\x27\x45\x61\x75\x2d\x4d\x47\x6d\x9c\xdd\x6e\xb7\x2b\x1a\x36\x7a\x49\x00\xc8\xf4\x2b\x07\x83\x14\x9f\x65\xb3\x8d\xe4\x0a\x09\x77\x2b\xba\x6e\x9b\xe3\x6c\xef\xb1\x10\x0e\x78\x51\x0b\x2f\x1f\x83\x67\xb3\x24\x6e\xf1\xfd\xbe\x0d\x8c\xa7\x75\x14\x0c\xaf\x77\x7b\xab\xf6\x5d\x62\x21\x38\xcd\x4b\xbd\xd5\x6f\x2a\x06\xee\x58\xc8\xb6\xbd\x06\xb4\x4d\x72\xe6\xbe\x59\x93\x08\xad\xb7\xa6\xd6\xed\xa7\x65\xa0\x91\xe7\xad\x48\xab\x45\x9d\xe7\x49\x1d\x17\x80\x79\x75\x6f\x87\x8d\xab\x6c\x16\x65\xf6\xc0\xb6\xf0\x9f\xc2\x34\x4e\x9e\xf7\x4e\x58\x14\x09\x72\xaa\xe7\xaa\x46\xe9\xfc\x5f\x92\x38\xfb\xfa\x4b\x78\xfc\x95\x3c\xfe\x5b\x9e\xd5\xf3\x87\x5f\xd1\x39\x47\xb3\xff\xf8\xf7\x87\xf9\x5f\xf2\x43\x5e\xe7\xf3\x87\xff\x89\x92\x6f\xa8\x8e\x8f\xe1\xec\xcf\xe8\x8a\x1e\xe6\x7f\x2c\xe3\x30\x99\x3f\xfc\x39\xaf\xf3\xd9\xaf\x61\x56\x3d\xcc\xab\x30\xab\x9c\x0a\x95\xf1\x69\xfe\xf0\x47\x4c\x60\xf6\x27\xfc\x12\x9a\xfd\x6b\x9a\xff\x35\x7e\xe8\x70\xea\x05\xbf\x3e\xa7\x87\x3c\x79\x60\xd8\xc4\x56\x6c\x4d\x84\x25\xc9\x29\xd3\x30\x91\x96\xa2\x56\xea\x52\xd4\x22\x10\xb7\x0a\xe3\xd1\x2d\x3e\xd3\xb7\x0e\xb8\xc9\x57\x5c\xb7\xea\x0a\x94\x40\x25\x41\x35\x76\x1a\xf0\x0b\x09\xcf\x4d\x8c\x21\x92\x4c\x98\xe4\x11\x96\x4a\x54\x28\xe9\x2c\x01\x29\xa2\x99\x26\x48\x43\x3a\x67\x6b\xeb\x3f\x60\x9e\x62\xe1\xd5\xcd\x4c\x42\x79\x67\xef\xda\x8a\xd9\x22\x2c\xcb\xfc\x09\x30\x19\xd9\x4a\xa8\xa5\x2d\xb6\x65\x77\x41\xec\x62\xc5\x56\x5a\x44\x44\xed\xe8\xd3\x11\x8a\x97\xc6\x8a\xab\x8c\xc0\x89\x48\xaa\x4e\x32\x87\xbf\x2e\x0e\x95\xc3\x68\x38\x58\x08\xbf\x35\x4e\x91\x84\x47\x94\xa2\xac\xfe\xbf\x3f\xd6\x79\xf1\x65\x2e\x82\xd4\xd8\x4f\xe2\xaf\x86\x15\x3d\x0d\xd3\x8f\x82\x71\xaf\x62\xe2\xd2\xe9\x72\x25\x0e\xc5\xc4\xe5\x60\xc0\xd8\x65\x96\x22\x3e\x9c\xf4\xd5\x9e\x72\xcd\x78\x7f\xd4\x0f\x2b\x11\x8f\xcd\xca\x07\x79\xc1\xc9\x62\x21\x45\xdd\xda\xe5\x8c\x29\x6f\x00\x1a\x48\x34\x25\x3b\xb8\x45\x84\xc3\x1c\x50\x81\xf9\xd6\x42\xb6\x23\x89\x80\x52\x13\x89\xb5\x72\xeb\x32\xc0\x1a\x24\xa7\xc8\x8f\xbe\xf3\x07\x4b\x90\x2a\x5c\x16\x21\xcb\x34\x38\xce\xb8\x18\x22\x48\x88\xb4\x8a\x4b\x91\xed\x69\x19\x81\x0c\x14\x96\x84\xb4\x95\x96\x7a\xd6\x82\x6f\x0f\x11\x44\xa5\xb8\x3d\x83\x25\x85\xb5\x2f\xcb\x09\x97\x8c\xb4\x34\x82\x04\x92\x11\xae\xe0\x12\xe2\x2a\xbf\xd1\xd0\x44\x1a\xa0\xe8\x04\x5a\xad\xe0\xe4\x83\xe1\xa2\x95\x81\xc2\x23\xce\xa2\x28\x3a\x8e\x3b\xce\x32\x54\x0a\xaf\x6c\xf2\x36\xd7\xd6\x7d\xc5\x65\x5f\xf8\xbc\x19\x18\xbf\x99\x8e\xd4\xe5\x05\xf9\x92\x61\x3a\xd7\xad\x05\x8e\x6b\xdd\x35\x68\xf9\xc5\x9e\xe5\x7f\x7b\x08\xff\x65\x3c\x84\xef\xb2\x92\xd1\x9a\xe0\x38\x27\xc3\x13\x07\xb6\x90\x57\x01\xcf\x25\x10\xda\xfd\x3e\x3c\x91\xb5\x4e\xb5\xd8\xe8\x89\xc8\x54\xef\xf0\x4b\x18\x45\x9b\x5f\xc2\x41\xb0\x5f\xa2\x7c\xaa\x0a\xf8\xa4\x65\x47\xf3\x93\x30\x2f\x0a\xd8\x7e\x92\x7d\x13\x12\xe6\x38\x0b\x29\x89\xf7\x50\xd4\xd2\x74\xa8\x93\xe8\x79\x8d\x2c\xba\xc9\x0b\xf2\x57\x24\x3b\x09\x46\x71\xc5\xf4\x6a\x60\x8a\xd4\xbe\x74\x8b\x3a\xa3\xb8\xa2\xe7\xb5\xac\xac\x08\x5e\x14\x07\xa2\x5e\x94\xb8\xa1\x73\x88\x12\x29\x22\x48\x8d\xa4\xe6\x27\xd1\x8f\xd2\xd5\xf8\x28\xf4\x47\x3a\x90\xcd\xd7\x1a\x96\x9d\x1f\x32\x90\x07\x50\xdf\x22\x2f\xf6\xf7\x9f\x20\x59\x45\xbe\xa2\x97\x35\x4e\xef\x0a\x7f\xba\xe6\x65\xf6\xa8\xee\x69\x5e\x76\x9b\xe6\x2d\xfc\x0d\xb0\x00\xd1\x0b\xe4\x50\xcc\x0b\x14\x76\x22\x0f\x31\x01\x86\x09\xb2\x01\x5a\xf5\x93\xe0\x06\x8e\x1e\xca\x32\x76\x50\xbb\x12\x15\x5b\xf4\xe1\xce\x34\xf9\x81\xae\xe1\x38\xf5\xaa\x1c\xea\xfa\x55\x18\xa4\x0a\x66\xab\x79\xb7\x71\x38\x5c\xc1\x33\xfe\xea\xe0\x97\x8d\x98\x25\x68\x02\xb5\x7b\x59\x81\xfb\xde\xfc\xaa\x93\xef\xc2\x60\x3e\xa0\xfa\x4a\xd2\xd7\xae\x4f\x1b\xfc\x5f\x4f\x07\x3b\xef\x9c\xc3\x10\xef\x5c\xba\xf9\x60\x88\xfd\x12\x3c\x90\xf5\xe2\x8a\x9f\x24\x07\xfd\xad\x66\x30\x91\x05\x50\x41\x02\x2b\x3d\x61\x62\xc0\x1c\x78\xdd\x80\x04\x07\x7e\x9c\x81\xcb\xdc\xe9\xe6\x2d\x31\x47\x8d\xbb\x6c\x2f\x10\xba\x81\x3b\x6a\xdc\xb2\x2d\xbe\xd8\xf2\x3b\xb7\xef\x6e\x61\xe7\x96\xe1\x50\x38\x31\x2c\xb3\xe1\xa1\x03\xfe\xef\x4d\x3e\x9a\x28\x63\x0b\xca\xeb\xd9\x0d\x47\x71\x77\x0a\xb0\x6f\x86\x9e\xaa\x27\x89\xf1\xf3\x6b\x85\x12\xfd\xa3\x48\x57\xb7\x90\xbe\xf6\x91\x4f\xae\x75\x7e\x3d\x5e\xf8\xd6\xbc\x22\xcc\x9c\xe7\x47\xbd\xa8\xc3\xc0\x22\x3c\xd3\x96\x12\x68\x5f\x8a\xda\x98\xdb\x85\xe2\x9d\x26\x28\x2c\xf7\x87\xbc\xbe\x48\xdf\x90\xbb\xa6\xf6\x84\x00\x24\xe6\xa0\x1b\xf7\x48\x24\x23\xb0\xa3\x5c\xa8\x82\x8b\xc4\x0d\x5c\xa7\xf0\x88\x9c\x6f\x71\x15\x1f\xe2\x24\xae\x9f\xf9\x66\x1a\x4b\x95\x7d\xdf\xcb\x5a\x4a\x15\x6b\xd8\xd8\x72\x03\x10\xb4\x01\x66\x7d\x5b\x5a\x5a\x59\xa8\xfa\xb6\x15\xa9\xde\xc9\x50\x53\xcf\x95\xb2\xa2\x44\xdf\x94\x32\xbe\xfb\x52\x52\xeb\x2b\x2b\x55\x9a\x13\x5d\xa8\x38\x31\x1d\xba\x47\x51\x2e\xc7\xfa\xfc\x04\xec\x74\x69\xb7\xf0\xfc\x6f\xf2\xc1\x04\xdc\xdd\xc3\xaa\x0c\x6c\x60\xcc\x50\xcf\x20\x2e\x08\xcb\x3d\x6c\x38\x16\x3e\x1c\xc6\x48\x8b\x95\x6e\x20\x92\x55\xd1\x6d\x0d\xec\x94\xe2\x14\x65\x5e\xa0\xb2\x7e\xde\xb3\x5a\x60\xab\x13\xb8\x79\xc8\x46\x89\x08\xdb\x2e\x0d\xa8\x15\x16\x4e\x8f\x2a\x81\x66\x6a\x7a\x08\x4f\xdc\x83\xa8\x34\x1c\xa2\x27\x0b\x24\x0d\x5c\x38\x21\xf7\x11\x12\x28\x97\xe3\xcc\xad\xf0\x08\x1a\x3f\x6a\x26\xe4\xd4\x32\xf6\xf0\x2c\x58\xe6\x89\x3a\xfc\x78\x31\x56\x85\xd1\x19\x6b\x5f\x82\x9d\xc8\xa7\xdb\x8c\x34\x66\xe3\x0d\x9b\x86\x83\xf7\xf6\xe5\xbe\x6e\x93\x05\xa4\xa7\x36\xfd\xf6\x78\x55\x0d\x11\xe2\x40\x1d\xb4\x5b\xab\xc1\x4a\xb2\x99\xda\x40\xc1\xd8\x92\x54\x6a\x39\x4d\xc1\x35\xb7\x2e\x53\xa9\xf8\x71\x0b\xee\x90\x70\x77\x95\xce\x29\x77\x15\x0d\xd5\xe4\x3a\x59\x03\xab\xf4\xaa\x59\xcb\x6d\x3b\xbe\xf0\x29\x9f\xfc\xee\x9c\xae\x7d\x96\x3b\x25\x2a\x50\x48\x92\x69\x7d\x26\x5f\xb8\xdb\x4b\xe6\x4c\xa4\xde\xe0\x56\xdb\x53\x9c\x24\x3f\x7e\x78\xef\x2f\x4f\xa7\x53\x7b\xc7\xed\xb6\xbb\xe2\x76\xab\xdc\x70\xbb\x9d\x6d\xc5\xfb\x6d\xa3\x1f\x3f\xfc\x12\x2c\xfc\x60\xe6\x26\xce\x6a\x46\xff\xf3\x16\x81\xe3\x2d\x82\x9f\x57\xb8\x7c\x95\xf8\x8b\xc0\xf1\x17\xc1\xcf\x14\xec\x77\xe0\x4a\x5a\xb3\xe0\xff\x4e\x7b\xec\x2f\x36\xa4\xc7\xde\x22\xc0\xbd\xfd\x79\x89\x9f\x57\x09\xee\xe6\x0c\x77\x95\xd4\x6f\x93\x95\x43\xfe\xb3\x76\x39\xce\xa2\xf8\x18\xd6\x79\x59\x01\x93\x97\xe9\xba\xc3\x76\x16\x0b\x46\x4c\x63\x03\x66\x27\x38\x61\x17\xbf\x27\xef\xbd\x72\x2d\xde\x7b\xf5\x9e\x1a\xb0\x5b\xb3\x24\x7e\x21\x27\x09\xe2\xdf\xb1\xc7\xce\x28\x92\xa5\xe5\x76\x6f\x92\x2b\xed\x4d\x6a\x9f\xf8\xc6\x8a\x6e\x10\x2d\xbb\xbb\xfa\x4a\xb5\x80\x70\x85\x9f\xc9\x7c\x81\x05\x94\xd5\x64\x6b\x4d\xd1\xf0\xeb\x45\x98\xb7\x7f\xf3\x2a\x38\xdd\x65\xe4\xda\x72\xfa\xf2\xb0\x09\x06\xea\x99\xd7\xc7\xe6\x05\x34\x88\xdb\xe6\xc0\x76\x80\xdc\x0b\x81\x7c\x8f\x63\x58\x90\xac\x6b\x26\x93\xc4\xca\xe7\x49\x9d\xb1\x7a\x5a\x8b\xe8\x3e\x2a\xb5\xc6\x84\x65\xe6\x0b\x5f\xbd\x1c\xb1\xa1\xed\x2d\x08\x25\xdc\xac\x0a\x12\x32\x39\x54\xda\x2f\x75\x0e\x38\xa0\x65\x5e\x87\x35\xfa\xb8\x5c\xbb\x11\x3a\x8b\xde\xa7\x5c\x21\x25\xdb\x9c\x14\xef\x42\xc1\x66\x7b\x43\x08\x4b\x23\xe4\xb7\x72\xe9\x07\x11\x0a\x15\x18\xff\x12\x43\xaf\x1c\xa1\xb6\x75\xbc\x96\xd8\xae\xc8\x57\x2f\x68\xad\xd3\x9c\x74\x3a\x10\xa2\xbe\x2e\x0d\xa1\xcc\x38\x0e\xac\x6d\xb9\x13\x07\x40\xab\xb2\x70\xaa\xf4\x45\xff\xda\x23\x6e\xd6\x64\x8b\x21\x3e\x4a\x6d\xfa\x3f\x97\xf9\xd3\x8b\xfb\xde\xb8\xdf\xdf\xd5\x37\xfb\xbb\x9f\x5e\x03\xf7\x7d\x67\xee\x03\xc3\x06\xc8\x4a\xbe\x23\xf5\x85\x44\x73\x2a\x4b\x52\xe7\x3f\xd0\x8e\x3a\x43\xe9\xa2\x06\xb3\xc9\x60\xfe\x86\x1a\x8c\x11\x56\xee\xae\xd9\x58\x5e\x17\xd4\x0f\xe7\x77\xe2\xbc\x18\xee\xca\xf9\xa7\x38\x2d\xf2\xb2\x0e\xb3\x9a\xb7\xa8\xf3\x42\x05\xae\xf3\x42\x87\x4b\xe3\x28\x4a\x34\xbc\xb4\x54\x87\x66\x1f\x07\x54\x2e\x48\x29\xc0\x43\xa7\x0a\x8d\x97\xae\xca\xd0\x0e\xea\x00\x2b\x17\x5b\x1c\xce\x6d\xa2\x0e\x53\xc2\x41\x01\x3c\x14\xe0\xbb\x7b\x06\xce\xf2\x85\x34\x73\x76\x1c\x52\x03\xd5\xcb\xa9\x0f\x6f\xba\xb5\x46\xe1\xb3\xcb\x86\x61\xba\x51\x46\xe5\x14\xb8\x58\xe6\xac\xde\x2a\x23\x70\xa5\x82\x43\x35\x26\x8e\xe9\xf5\x33\x2a\xc7\x2c\xe9\x84\xe9\x52\x18\x8d\x5f\xf5\x6e\x98\xb3\x7c\x31\x8c\xc8\x91\x04\xaa\x97\x9b\xf8\xa4\xb7\xc7\x28\x7c\x92\xcc\x0e\xa6\x9b\x5d\x54\x26\xe5\x0b\x5e\xce\xc2\xed\x2e\x02\x1b\x02\x90\x52\x68\x64\x8c\x5c\xfe\xa2\x30\xc6\x73\x27\x98\xae\x66\x51\x79\xd3\x6e\x68\x39\xcb\xd7\xb3\x08\xcc\xc8\xa0\x7a\xb9\x89\x4f\x7a\x81\x8b\xc2\x27\x4b\x50\x60\xba\x5c\x45\x65\x53\xbd\x63\xe5\x2c\x5d\xb0\x22\x30\x23\x01\x6a\xc5\x26\x16\xe9\x1d\x2c\x0a\x8b\x34\x09\x80\x29\x13\xad\xca\xa1\x72\x4b\xca\x59\xbc\x22\x45\x60\x44\x04\x53\x4b\x8d\x02\x24\x17\xa8\x68\x02\x2c\xbf\x02\xb0\xf4\x7a\x13\x5d\x7c\xe2\x2d\x27\x67\xe1\x8a\x13\x49\x46\x2d\x90\x52\x68\xb4\x40\x72\x03\x8a\x6a\x81\x97\xb8\x46\xa0\xfd\x9d\x14\x48\xc1\x87\xd2\xe1\x85\x4a\xa9\x19\x75\xfc\xb4\xbd\x33\xec\x5c\x82\x0e\xaa\x5c\xa5\x3c\xa8\x09\x5d\x31\x13\x1f\x06\x35\x83\x2e\x4e\x1e\xd4\x90\x7c\x41\x14\x7e\x0f\x6a\xe4\x72\x21\xb8\x70\xa7\x5b\x00\x9a\xdc\xcb\xd4\xcd\x0e\x8c\xc5\xc4\xc6\x8e\x75\x90\x3c\x6a\x36\x74\xa5\x03\xa4\xe1\x2e\x00\xd6\xbe\x41\x95\xac\x4e\xca\xdb\x93\x83\x0b\x2f\x32\xa9\x81\xf6\x12\x6b\x1b\xf0\xf7\x88\x04\xae\xbd\x43\x38\x38\x9d\xce\xe5\x44\x0d\xea\x54\xce\x61\xdb\x19\x56\x02\xd7\x66\x57\x0e\xce\x27\x3a\x09\x5a\x9b\xe4\x5a\xf1\x89\x96\x67\x9a\x6f\x3a\xd4\xe5\x57\x05\x56\x1b\xfe\x2d\xd7\x74\x54\x2a\x3c\x4b\xb2\x26\xa3\x0f\x45\xd8\x37\x54\xb7\x3f\x96\x28\x05\x20\x35\xb0\x00\x86\xb3\xdd\x66\xae\x36\x32\x7e\xdb\x34\x63\x97\x46\x6b\x6f\xbb\xfe\x3b\x5d\x21\x1a\xfd\x77\xcd\xf7\xd0\xb1\xf5\xb9\x23\x23\x4e\x04\x43\x25\x35\x8e\xc0\x59\x55\xda\xd2\x00\x79\x8c\xcb\x63\x82\x5e\xb4\x90\x05\x82\x25\x97\x3d\xaa\x90\x06\xbc\xae\x9a\x83\x4f\x04\x22\x9f\x66\x4f\x71\x33\xea\xc3\x6d\xe4\xe0\x80\x4e\xfa\xa8\x2d\xe2\x8c\x1c\x1a\xd3\x29\x21\x1e\x04\x42\xc3\x3e\x30\x16\x94\xc1\x65\x38\x00\xa0\x96\x8e\xb9\x93\x27\x00\xc0\x11\x23\xcf\xb6\x04\x02\x3c\xa2\x24\x51\x20\x71\x91\x0c\x7a\x4a\x50\x03\x9d\x2d\x14\x6c\x46\x5c\xc0\x04\x25\xa0\xe1\x10\xca\x61\x54\x02\x80\x80\xd1\x7c\x94\x0e\x4f\x30\x7d\x1a\xab\xd2\x21\x4a\x6b\xa1\x06\xeb\xad\x4a\xfb\x55\x57\xa5\xfd\xda\xe3\x30\x43\x14\xd8\xc2\x0e\xd2\x61\x95\xde\xa7\xc6\x4e\x26\x53\x69\xd2\x92\x33\x3a\x72\xd2\xde\xc1\x97\x0e\x1a\x7f\xe9\xe8\x21\x98\x0e\x18\x85\xe9\x80\x81\x98\x8e\x18\x8b\xe9\xa8\xe1\x98\xde\x39\x22\xd3\xc9\x07\xa5\xe5\x0c\x25\x7e\x35\xf4\xa9\x32\x39\x0f\x51\x65\x0b\x35\x58\x95\xc9\xb9\x5f\x95\xc9\xb9\x5f\x95\x1c\x66\x88\x2a\x5b\xd8\x41\xaa\x4c\xce\xf7\xa9\xb2\x93\xc9\x1b\xaa\xb2\x3d\xd0\x1a\x39\x4d\xd2\xa7\xcb\x26\x19\xa2\xcb\x16\x6a\xb0\x2e\x9b\xa4\x5f\x97\x4d\xd2\xaf\x4b\x0e\x33\x44\x97\x2d\xec\x20\x5d\x36\xc9\x7d\xba\xec\x64\x32\xb5\x2e\x8b\x32\xce\x6a\xac\x3e\xf2\xa3\x4f\x83\x14\x68\x80\x12\x45\xc0\xc1\x7a\xa4\x8d\x7a\x55\x49\xc1\x7a\xb5\x29\x80\x0d\x51\xa8\x08\x3e\x48\xa7\xb4\xc1\x5d\x6a\x95\xa4\x34\x99\x66\x17\x28\x3d\xe0\x10\x05\x55\x45\x9e\x55\xf1\x37\xe8\xea\x74\x70\x1b\x33\x49\x98\xd2\xe6\xc5\xd3\xf6\x39\xaa\x68\x0d\x39\x78\x44\x37\x59\x6d\x32\xd3\x4a\xc8\xe6\x9b\xb9\x0e\x48\x0a\x80\xf2\x98\x7c\xbc\x01\x2a\xf2\xc3\x5f\xd1\xb1\x06\x2a\xbe\xc5\x11\xca\xfb\xf7\x12\x49\xe7\x5f\xb5\x64\x64\x6d\x1e\x40\xbd\x03\xbe\x77\x78\xde\x75\x1b\xc8\x85\xef\xa4\x2b\x7f\xb1\x0d\x36\xde\x6a\xf9\x1e\x68\xe6\xad\x4d\xcd\x82\xf5\xc2\x0f\xa0\x26\xab\xc3\xf3\x12\x6c\xb1\x01\xc1\xbd\xc3\xb3\x07\x82\xd3\x9d\x29\x64\x1b\x01\x1e\x18\x70\x36\x7b\xc1\xde\x6c\x95\x0c\x0f\xcd\xbc\x63\xce\x72\x64\xc6\xa6\xd6\x77\x8c\x39\x25\xfa\x86\xca\x0a\xcc\x9d\x24\x54\x5b\x19\xd5\x81\x24\x86\x6d\x24\x64\x88\xbe\x0e\x18\x09\x3d\x95\x61\xf1\xa2\xe7\x56\x51\xf1\x01\x15\x0c\x01\xbd\x90\x50\x41\x41\x0b\x41\x24\x6a\x95\xc0\x87\xde\xdd\x96\xac\xa9\x9f\x16\x00\x86\xf8\x84\x03\x71\x2d\x31\x8d\x82\x07\x28\x67\xcd\xc9\xa7\x41\xb7\xe3\x88\x0e\xd4\x6f\x48\x0c\xd2\x1f\x5b\x48\x39\x74\xef\x10\x78\x00\x02\x0f\x44\xe0\x69\x08\x68\x76\x34\x91\x87\x2e\x7f\x9a\x8a\x82\x67\x52\x33\x21\xf1\x00\x24\x1a\x1f\x0c\x89\xc4\x89\xb2\x87\x87\x26\x4e\x7a\x91\xb7\xfb\x90\x32\x01\x19\x98\x54\x47\x01\xd2\x31\xa3\x2c\x7a\xd1\x12\xf4\xf4\x61\x95\x40\x74\x9c\x74\x8b\xc7\x0b\xb4\x3b\xc9\x82\x59\x05\xd0\xf1\xb2\x64\x50\x2f\x60\x02\x29\x0b\x66\x29\x95\x94\x8d\x40\x48\x96\x88\x14\xfc\x51\x5c\xd5\x65\x7c\xb8\xd6\xa8\x97\x04\x6d\x2f\x52\x10\xb6\x94\xaa\x4a\x14\x8e\x1e\x0b\x88\xe1\x9c\x59\x26\x94\x92\xf6\x28\x42\x59\x7d\x1a\x3a\x64\xe6\x4f\x55\x9b\xb8\x5f\xc7\x80\x52\xd7\x99\x88\xb0\xfd\x82\xaf\xa0\xd4\xbf\xe0\x4b\x48\xcd\x1f\xf8\xb9\x1c\x4b\x54\x1f\x2f\xba\x24\x49\xb1\x01\xa9\x56\xcb\x71\x1a\x86\x18\xf1\xa5\xc0\x71\x26\x35\xb3\xea\x08\x1c\x63\x1d\x62\x48\x53\xb6\x61\x26\x23\x55\xb5\xd5\xe1\x35\x68\xcc\x3c\xce\x64\xc4\xda\x28\xeb\x30\xeb\x43\x4d\x46\x6d\x1c\x68\x32\x05\x75\x98\x75\x04\xc0\xb1\x06\xd1\x30\x8d\xb4\x4e\x9b\x8a\x8d\x88\xfa\x84\xed\xa4\x25\x60\xb2\x94\x0a\x25\x27\x72\x4a\xac\xc3\x4a\x13\x72\x13\xf3\x53\x5e\x73\x5d\x93\xbd\xfa\xa2\x13\xb0\x29\x46\x27\xa0\x83\xad\x8e\xe0\xb3\x99\x1c\xc1\x2a\xd9\x9b\x80\x13\x32\xb8\x0e\x23\x68\x6d\x04\x9f\x6a\x6a\x02\x4a\x83\xad\x11\xac\x26\x43\x23\x38\xf5\xb9\x41\xc0\x6a\x9c\x20\x08\x5e\xf3\xfc\xc0\x64\xaa\xa8\x5e\x92\x2a\xac\x7b\x82\x57\x57\xbc\x79\x09\x99\xea\x20\x9d\xcc\x63\xae\xd2\xe9\x9d\x66\xca\xde\x9b\xfa\xcd\x2d\xdb\xdf\xc1\x75\xae\xd2\xfb\xbd\x67\xb2\xee\x3f\x89\x03\xcd\xb8\x79\x13\x1f\xba\x4a\xef\x75\xa3\xab\xf4\x7e\x4f\x9a\xe3\xb8\xcb\x99\x4e\x27\xf2\xa7\xd3\xe9\x5d\xea\xf4\x0d\xbd\xea\x2a\x7d\x13\xc7\x1a\x0f\xb7\x37\xf2\xad\xab\xf4\xed\xdd\xeb\x2a\x7d\x6b\x0f\x5b\xd3\xe9\x14\x4e\xb6\xaa\xcc\x7b\xfd\x6c\x40\x8b\x77\xbb\xda\x58\x7d\x6f\xe4\x6d\xa7\x6f\xe5\x70\x6b\xca\x9a\xd2\xe7\x56\x95\x36\x95\xdb\x0d\x28\x6f\x32\xcf\x1b\x1a\x83\x93\x3b\xdf\xc0\x20\x7c\x0b\xff\x1b\xb0\x9a\xa9\x5c\x70\xdc\x83\x69\xbd\x70\xcd\x12\x27\x72\xc4\x55\x23\x9c\xc0\x17\x07\xec\x6f\x0a\x77\x1c\x9c\x3f\x26\xf3\xc8\x01\x63\xb8\xdd\x29\xb7\xec\x06\x20\x98\xd3\x68\x32\xaf\x3c\x8d\xa6\xf7\xca\x29\x7b\x6f\xea\x95\xb7\x6c\x7f\x07\xaf\x3c\x8d\xee\xf7\xca\xc9\x16\x8e\x49\xbc\x72\xc6\xcd\x9b\x78\xe5\x69\x74\xaf\x57\x9e\x46\xf7\x7b\xe5\x1c\xc7\x3d\x5e\x79\x1a\x4d\xe3\x95\x77\x78\x26\xf3\xca\x31\xca\x37\xf3\xca\xd3\xe8\x4d\xbc\x72\x3c\xdc\xde\xc8\x2b\x4f\xa3\xb7\xf7\xca\xd3\xe8\x8d\xbd\x72\x5d\xa7\x53\x78\xe5\xaa\x32\xef\xf5\xca\x01\x2d\xde\xed\x95\x63\xf5\xbd\x8d\x57\x4e\x64\xfa\x16\x5e\xb9\xae\xac\x29\xbd\x72\x55\x69\x53\x79\xe5\x80\xf2\x26\xf3\xca\xa1\x31\x38\xb9\x57\x0e\x0c\xc2\x37\xf0\xca\x21\xab\x99\xca\x2b\xc7\x3d\x98\xd4\x2b\xd7\x2d\x71\x22\xaf\x5c\x35\xc2\x09\xbc\x72\xc0\xfe\xa6\xf0\xca\xc1\xf9\x63\x2a\xaf\x1c\x32\x86\x49\xbd\x72\xbe\xb1\x93\x9a\xd9\x79\x32\xaf\x3c\x39\x4f\xef\x95\x53\xf6\xde\xd4\x2b\x6f\xd9\xfe\x0e\x5e\x79\x72\xbe\xdf\x2b\x27\xbb\x71\x27\xf1\xca\x19\x37\x6f\xe2\x95\x27\xe7\x7b\xbd\xf2\xe4\x7c\xbf\x57\xce\x71\xdc\xe3\x95\x27\xe7\x69\xbc\xf2\x0e\xcf\x64\x5e\x39\x46\xf9\x66\x5e\x79\x72\x7e\x13\xaf\x3c\x39\xbf\x99\x57\x9e\x9c\xdf\xde\x2b\x4f\xce\x6f\xec\x95\xeb\x3a\x9d\xc2\x2b\x57\x95\x79\xaf\x57\x0e\x68\xf1\x6e\xaf\x1c\xab\xef\x6d\xbc\x72\x22\xd3\xb7\xf0\xca\x75\x65\x4d\xe9\x95\xab\x4a\x9b\xca\x2b\x07\x94\x37\x99\x57\x0e\x8d\xc1\xc9\xbd\x72\x60\x10\xbe\x81\x57\x0e\x59\xcd\x54\x5e\x39\xee\xc1\xa4\x5e\xb9\x6e\x89\x13\x79\xe5\xaa\x11\x4e\xe0\x95\x03\xf6\x37\x85\x57\x0e\xce\x1f\x53\x79\xe5\x90\x31\x4c\xea\x95\xb7\x67\x74\x08\xea\x26\x99\xcc\x2d\x6f\x92\xe9\xdd\x72\xca\xde\x9b\xba\xe5\x2d\xdb\xdf\xc1\x2d\x6f\x92\xfb\xdd\x72\x72\xb0\x6a\x12\xb7\x9c\x71\xf3\x26\x6e\x79\x93\xdc\xeb\x96\x37\xc9\xfd\x6e\x39\xc7\x71\x8f\x5b\xde\x24\xd3\xb8\xe5\x1d\x9e\xc9\xdc\xf2\x26\x79\x43\xb7\xbc\x49\xde\xc4\x2d\xc7\xc3\xed\x8d\xdc\xf2\x26\x79\x7b\xb7\xbc\x49\xde\xd8\x2d\xd7\x75\x3a\x85\x5b\xae\x2a\xf3\x5e\xb7\x1c\xd0\xe2\xdd\x6e\x39\x56\xdf\xdb\xb8\xe5\x44\xa6\x6f\xe1\x96\xeb\xca\x9a\xd2\x2d\x57\x95\x36\x95\x5b\x0e\x28\x6f\x32\xb7\x1c\x1a\x83\x93\xbb\xe5\xc0\x20\x7c\x03\xb7\x1c\xb2\x9a\xa9\xdc\x72\xdc\x83\x49\xdd\x72\xdd\x12\x27\x72\xcb\x55\x23\x9c\xc0\x2d\x07\xec\x6f\x0a\xb7\x1c\x9c\x3f\xa6\x72\xcb\x21\x63\xb8\xc3\x2d\x5f\x90\xdb\x3b\x68\xb2\x9d\xee\x22\x0f\xd9\x67\xc0\x00\x34\xb1\x10\x85\x20\xbf\x75\x10\x72\x46\x9b\x42\x28\x27\xb4\x6d\xbb\xd7\x71\xcb\x2a\xed\x67\xa0\x4a\x87\xf0\xc0\xd3\xa9\x80\x6c\x58\xf7\xeb\xe0\xd6\x69\xd4\xcf\x47\x1a\x0d\xe1\x83\xe7\x02\x19\xca\x47\xf7\x85\x82\x68\xe3\xdc\xcf\x47\x72\x1e\xc2\x07\x4f\x64\x31\x94\x0f\x21\x26\xc3\xcd\x9b\xa4\x9f\x11\x1c\x19\xf5\x33\xc2\xb3\x30\xc0\x8c\x2c\xae\x15\xc9\x6c\x96\xa0\x63\xed\x84\xd8\x5b\x67\x19\x60\x85\xf2\x7d\x28\x9e\x74\x7f\x24\x37\xa8\xdb\xaa\x2b\x4b\xad\xb1\x46\xe1\xe4\x2a\xa4\x68\x96\xda\xc8\x33\xa3\xce\x8b\x5a\x5f\xd9\xaa\xcd\x55\x32\x3b\x44\x80\x10\x3b\xb2\x38\x75\x76\xb4\xfa\xca\x56\x6d\xae\x7a\x5d\xf0\xc3\xf7\x54\x34\xed\x51\x7c\x95\xeb\x16\x8c\x9e\xd1\x7f\x51\xce\xec\x8b\xa0\xfc\x00\x3c\x9e\xfb\xeb\xf8\xd8\x1d\x88\xa7\xcf\x20\x28\x4f\x17\xa0\x27\x10\x00\xc1\xf9\xd1\x7a\xfd\xb0\x3d\x08\x7e\x8a\x1b\x14\x75\xb0\xe4\xd1\xc0\x71\x7c\xfc\xfa\xdc\x41\x72\xd5\xd0\x72\x41\xa2\x42\x9f\xe4\x9a\xd7\x05\xc1\x4e\xaf\x15\x97\x08\xb2\x34\x00\x3c\x37\xbf\x76\x9b\xee\xd2\xe5\x6d\xf9\xc5\xd1\x72\xf3\xde\xa4\xfe\x18\xc3\x3f\x57\xd7\x02\x73\x52\xcd\x3e\x7e\x34\xf4\xe2\xd3\x2c\x2f\x67\x1f\x95\x0e\x7c\xfa\xf4\xb2\xa0\xbf\x64\xce\xe5\xa6\x6a\xb7\x59\x97\x3a\x0e\x7c\xf7\xf5\x75\x51\x95\x4e\x9e\x25\xcf\x40\x22\x04\x36\x23\x75\x79\xf9\x3d\xe1\x52\x63\x7e\x6f\xc0\xde\xc1\xa5\x8a\x7d\x3d\x92\xcc\xfa\x25\x3a\xd6\xec\x8a\x35\xf7\x93\x72\xbb\xed\x53\x19\x16\x42\xf2\x04\xc6\x84\x43\x32\x7e\x86\x87\x04\xed\x69\xda\xfa\x39\x50\x43\x7e\xa9\x66\xca\x98\x25\x17\x0a\x30\x6e\xc9\xef\x96\x31\x72\x9f\x55\x82\x28\x67\xf4\xde\x01\xed\xba\xdd\xd7\x05\xbd\xde\x97\x66\x1d\x6c\xf8\x65\xbf\xee\x6c\xe1\xb1\x2b\x9c\xe9\x1f\xf1\xee\x38\x77\x13\x7c\x12\xed\x89\xb6\x51\x9a\x93\x56\x9e\xda\xd4\x83\x5a\xd2\xac\x78\x42\x63\xd2\x6c\xa9\xb5\x05\xc9\xd2\x19\x4a\x68\xae\x4e\x1f\x4f\x8e\x1f\xb0\x64\xdb\x7e\xf0\x5e\xae\x09\x5c\x56\xa3\x24\xd6\x7b\x72\x36\xbc\xcd\x46\x6d\xe3\xb9\xbc\x91\xe7\xaa\xad\xc8\x0c\xd5\xa9\x45\xac\xbc\x60\x36\x78\x16\x73\x19\xe7\x05\xf3\xc1\xaa\x14\x46\x2e\x98\x11\x56\xb5\x51\x5b\x61\x4e\x84\xc4\x1c\x72\x25\x61\x45\x30\x0b\xb1\x36\xa5\xbd\xe8\x2e\xc3\x56\x9b\xa7\x97\x16\xc0\x40\x00\xbf\xbe\xbf\x31\x34\xdd\x9b\xdc\x75\xbf\x3d\x69\x50\x97\x16\xaa\xc3\xf5\x4d\x8a\x0d\xbe\x29\x52\x95\x91\x7c\x53\x7b\x2a\x37\x4e\x1d\xf7\x85\x5f\xa7\x2c\x95\xd7\x8e\x3b\x5f\xa4\xcf\x6d\xb5\x9e\x87\x35\x2d\x09\x48\xd3\x81\x00\x39\x58\xd3\x83\x8a\x07\x4a\xbf\x9a\x26\x2a\x2a\x3d\xf7\x6a\xea\x78\x9c\x53\x3d\x43\x64\x5a\x3b\x1e\x21\xe3\x49\x37\xb1\xea\x70\x25\x81\x6b\x3a\x38\x76\xe7\xa5\x0e\x79\x50\x31\xf2\x6b\x9a\x75\xd0\x44\x45\x4a\xaf\x02\xd6\x01\x1d\xbf\xed\x02\xd0\x03\x9f\xd0\xf3\xb5\xbb\x64\x95\x0e\xf8\x84\x96\x0f\x5c\xda\xa9\xf0\xaf\xe0\x13\xaf\x99\x56\xd8\x57\x50\x76\x37\x19\xcb\xdc\x2f\x39\xf7\x9e\xce\xfc\x92\x10\x5b\x8a\xcc\x6b\x50\x25\x81\x6a\x3a\xa8\xb2\xcd\xdc\xaf\xb0\xae\x60\xe3\xd9\x88\x75\xce\x15\x84\x34\xff\xb0\xc6\xf8\xaa\x65\x1c\x92\xfb\x8a\x10\x5b\x49\xac\x43\x82\x5f\x11\x5a\x2b\x85\x79\x48\xf2\x0a\x46\xce\x3e\x24\x7a\x05\x29\xed\x00\x20\xfb\x80\x77\x41\x4d\x79\x9a\xd6\x4e\x40\xc8\x05\x62\x07\x34\xa8\x92\x40\x35\x1d\x14\xbb\x28\x47\x67\x5e\xc1\xc6\x98\xd7\x00\x13\x15\x21\xbd\x68\x47\x01\x2b\x1c\xb7\xbd\x95\x53\x1a\xce\x05\x99\x60\x8a\xe7\xae\x5e\x9f\x61\x0a\x32\xc3\x14\x8d\x00\x03\x4c\x31\xc5\x41\xc3\x04\xcd\x31\x45\xa2\x21\xd3\x27\x99\xc2\xf1\xba\x4b\x44\xb5\xf1\x5b\x90\x59\xa6\x78\xee\x80\x0c\xd3\x4c\x41\xa6\x99\xa2\x11\x00\x4d\xf3\x4c\x71\xd0\x70\x1a\x27\x9a\x22\xd1\xd0\x1a\x66\x9a\xc2\xf1\xe5\xcb\x50\x95\x6e\xf8\x84\xa4\x2f\x77\x03\xe8\x85\x4f\xc8\xf9\x6a\x2f\x80\x4e\xa8\x18\x4d\xb3\x4d\x91\x68\x48\xe1\xe9\xa6\x70\x96\x6d\x17\xd4\x11\x5d\x90\xf9\xa6\x78\xee\x40\xc0\x09\xa7\x20\x13\x4e\xd1\x08\x60\xf0\x8c\x53\x1c\x34\x7c\x86\x29\xa7\x48\x34\x94\xe0\x9c\x53\x38\xab\x8e\x7b\x48\x03\x2b\x42\x6f\x25\xf3\x0f\xa9\x60\x45\xc8\xad\xd4\x1e\x40\x3a\x50\x71\x1a\xe7\x9d\x22\xd1\xd0\x1a\x26\x9e\xc2\x09\xda\x7e\x68\x63\x9b\xcc\x3c\xc5\x73\x07\x02\x4e\x3d\x05\x99\x7a\x8a\x46\x00\x83\xe7\x9e\xe2\xa0\xe1\x33\x4c\x3e\x45\xa2\xa1\x04\x67\x9f\xd4\xc9\x5a\xa7\xc1\x01\xbd\x86\x8c\xbe\xe4\x33\xc9\x6f\x80\x40\x4b\x0a\xda\x08\xa0\xec\xa6\x5c\xd0\x77\xd0\xf0\xb2\x9e\x40\xd0\x89\x8e\x9a\x5d\xfe\x0d\x78\x10\x99\xdf\x75\x08\xea\x0f\x7d\xe9\x67\xbe\xdc\x1f\xa8\x3b\xf4\xa5\x9f\xf9\x6a\x77\xa0\xde\xa8\x58\xdb\xde\x40\x9d\x51\x11\x0b\x37\x99\x2b\x7d\x69\x1d\x0a\x07\xf0\x28\x32\xea\x04\x64\x92\x4f\xa1\x03\x96\x14\xb0\x11\x00\xf9\x15\xc6\x40\x47\x54\x9c\xbc\x23\x80\x6b\xa1\xa1\xa5\xfd\xd0\xbd\x8b\x6c\xd5\x75\x03\xd4\x09\x75\x07\xb2\x95\xdc\x11\x50\x29\xd4\x1d\xc8\x56\x6a\x57\x40\xad\xa8\x78\xdb\xce\x80\x6a\x51\x51\xb3\xee\x40\x7a\x69\x9d\x0d\x07\xf0\x36\x32\xea\x20\x64\x92\xbf\xa1\x03\x96\x14\xb0\x11\x00\x59\x67\x00\x9f\x43\xc3\xc9\xbb\x02\xb8\x1d\x1a\x5a\xda\x11\x7d\xec\x93\x20\x8e\x75\x44\x0b\xe2\xe8\x5a\x21\xa1\x2a\xc0\x91\xbe\x68\xb0\x25\x87\x6d\x24\xd8\x12\x0e\x0f\x0f\x30\x66\xd6\x23\x0d\x3c\x81\x91\x93\x4e\x29\xc0\xe6\x55\xf9\xd4\xa9\x2c\x91\x1c\xae\x23\xfc\x08\x40\x60\x3c\xc7\x00\x1b\x09\x10\x8e\xea\x40\x9c\x86\xd8\x0e\x44\x0b\x45\x78\x55\x5f\x90\x87\x01\x38\xd5\xfe\x50\x8f\x41\x37\x12\xb4\x25\xe0\x03\xb1\xdb\xc2\x3e\x90\x80\x31\xf8\xab\x7a\xe2\x3f\x5c\xcf\xc9\xf7\x46\x81\x0c\xb8\x91\x80\xcd\xb1\x20\x88\xdb\x12\x11\x82\xe8\x4d\x71\x61\x65\x0f\x0d\x71\x35\xa7\xdd\x17\x20\x32\xd8\x46\x82\x35\x86\x89\x20\x66\x73\xb0\x08\x22\x37\x84\x8c\x55\x5f\xd4\x88\x01\x38\xed\xfe\xd8\x91\x41\x37\x12\xb4\x25\x82\x04\xb1\xdb\xe2\x48\x90\x80\x31\x9a\xac\xec\x01\x25\xae\xe6\xd4\xfb\xc2\x4a\x06\xdb\x48\xb0\xc6\xe0\x12\xc4\x6c\x0e\x31\x41\xe4\x86\x40\x93\x4c\x2e\xa6\x58\x93\x4e\x41\xc5\xb3\x04\x05\x46\x9c\x0c\xb2\x91\x21\xe1\xb8\x13\xc6\x6a\x88\x3e\x61\xc4\x50\x0c\x4a\x66\x13\x6b\x18\x4a\x27\x9e\xe2\x59\x02\x35\x07\xa3\x0c\xbc\x91\xc1\x2d\x21\x29\x8c\xdf\x16\x98\xc2\x24\x8c\xe1\x29\x99\x56\x6c\x11\x2a\x9d\x80\x8a\x67\x09\xd2\x18\xa7\x32\xe8\x46\x86\x36\x47\xab\x30\x76\x4b\xcc\x0a\x13\x30\x45\xae\x64\x7e\xb1\x04\xaf\x74\x22\x2a\x9e\x25\x40\x53\x08\xcb\x80\x1b\x19\xd8\x18\xc8\xc2\xb8\xcd\xe1\x2c\x8c\xde\x10\xd4\x92\xc9\xc5\x1a\xd7\xd2\x79\xa8\x78\x96\x40\xcd\xd1\x2d\x03\x6f\x64\x70\x4b\x8c\x0b\xe3\xb7\x45\xba\x30\x09\x63\xbc\x4b\x66\x1a\x4b\xc8\x4b\xa7\xa4\xe2\x59\x02\x34\x05\xbe\x0c\xb8\x91\x81\x8d\xe1\x2f\x8c\xdb\x1c\x04\xc3\xe8\x0d\xa1\x70\xd5\x1f\x0d\x13\x10\x3e\x3d\x0f\x89\x89\x79\x83\x46\x6e\x60\x8b\x8c\x0d\x34\xac\xf1\xb1\x81\x8c\x39\x4a\xae\x7a\x03\x65\x02\xd1\xb2\xd1\x1f\x2e\x73\xf8\x46\x86\xb7\x04\xcd\x06\x0a\xb6\xd0\xd9\x40\xc4\x18\x40\x57\x7d\x31\x34\x01\x68\x79\xe8\x8d\xa4\x39\x78\x23\x83\x9b\xe3\x69\x03\x7e\x4b\x54\x6d\x20\x61\x8a\xad\xab\xfe\xf0\x9a\x80\xb4\x3c\x0c\x08\xb2\x79\x83\x46\x6e\x60\x0b\xb5\x0d\x34\xac\x01\xb7\x81\x8c\x39\xec\xae\xfa\x22\x6f\x02\xd0\x72\xd1\x1b\x7f\x73\xf0\x46\x06\x37\x47\xe1\x06\xfc\x96\x58\xdc\x40\xc2\x14\x91\x57\xbd\x41\x39\x83\xe0\x4c\x0c\x08\xcd\xbb\x16\x8d\xda\xc2\x18\xa0\x5b\xa8\x98\xc3\x74\x0b\x21\x28\x58\xb7\xec\x5d\x4b\x9d\x34\x32\x47\xeb\xb8\x8e\x70\x26\x00\x81\xd1\x3a\x03\x6c\x24\x40\x38\x5a\x07\x71\x1a\xa2\x75\x10\x2d\x14\xad\xa7\x51\x4f\xb4\x8e\x01\x38\xd5\xfe\x68\x9d\x41\x37\x12\xb4\x25\x5a\x07\xb1\xdb\xa2\x75\x90\x80\x31\x5a\x4f\x23\x7b\xb4\x8e\xeb\x39\xf9\xde\x68\x9d\x01\x37\x12\xb0\x39\x5a\x07\x71\x5b\xa2\x75\x10\xbd\x29\x5a\x4f\x23\x6b\xb4\x8e\xab\x39\xed\xbe\x68\x9d\xc1\x36\x12\xac\x31\x5a\x07\x31\x9b\xa3\x75\x10\xb9\x21\x5a\x4f\xa3\x9e\x68\x1d\x03\x70\xda\xfd\xd1\x3a\x83\x6e\x24\x68\x4b\xb4\x0e\x62\xb7\x45\xeb\x20\x01\x63\xb4\x9e\x46\xd6\x68\x1d\x57\x73\xea\x7d\xd1\x3a\x83\x6d\x24\x58\x63\xb4\x0e\x62\x36\x47\xeb\x20\x72\x43\xb4\x4e\x26\x17\x53\xb4\x4e\xa7\xa0\xe2\x59\x82\x02\xa3\x75\x06\xd9\xc8\x90\x70\xb4\x0e\x63\x35\x44\xeb\x30\x62\x28\x5a\x27\xb3\x89\x35\x5a\xa7\x13\x4f\xf1\x2c\x81\x9a\xa3\x75\x06\xde\xc8\xe0\x96\x68\x1d\xc6\x6f\x8b\xd6\x61\x12\xc6\x68\x9d\x4c\x2b\xb6\x68\x9d\x4e\x40\xc5\xb3\x04\x69\x8c\xd6\x19\x74\x23\x43\x9b\xa3\x75\x18\xbb\x25\x5a\x87\x09\x98\xa2\x75\x32\xbf\x58\xa2\x75\x3a\x11\x15\xcf\x12\xa0\x29\x5a\x67\xc0\x8d\x0c\x6c\x8c\xd6\x61\xdc\xe6\x68\x1d\x46\x6f\x88\xd6\xc9\xe4\x62\x8d\xd6\xe9\x3c\x54\x3c\x4b\xa0\xe6\x68\x9d\x81\x37\x32\xb8\x25\x5a\x87\xf1\xdb\xa2\x75\x98\x84\x31\x5a\x27\x33\x8d\x25\x5a\xa7\x53\x52\xf1\x2c\x01\x9a\xa2\x75\x06\xdc\xc8\xc0\xc6\x68\x1d\xc6\x6d\x8e\xd6\x61\xf4\x86\x68\x3d\x8d\x7a\xa3\x75\x02\xc2\xa7\xe7\x21\xd1\x3a\x6f\xd0\xc8\x0d\x6c\xd1\xba\x81\x86\x35\x5a\x37\x90\x31\x47\xeb\x18\xcc\x1e\xad\x13\x88\x96\x8d\xfe\x68\x9d\xc3\x37\x32\xbc\x25\x5a\x37\x50\xb0\x45\xeb\x06\x22\xc6\x68\x1d\x43\x59\xa3\x75\x02\xd0\xf2\xd0\x1b\xad\x73\xf0\x46\x06\x37\x47\xeb\x06\xfc\x96\x68\xdd\x40\xc2\x14\xad\x63\xa0\x9e\x68\x9d\x80\xb4\x3c\x0c\x88\xd6\x79\x83\x46\x6e\x60\x8b\xd6\x0d\x34\xac\xd1\xba\x81\x8c\x39\x5a\xc7\x60\xd6\x68\x9d\x00\xb4\x5c\xf4\x46\xeb\x1c\xbc\x91\xc1\xcd\xd1\xba\x01\xbf\x25\x5a\x37\x90\x30\x45\xeb\x3c\x2d\x9f\x39\x5a\x67\x10\x9c\x89\x01\xd1\x7a\xd7\xa2\x51\x5b\x18\xa3\x75\x0b\x15\x73\xb4\x6e\x21\x34\x30\x5a\xe7\x27\xbc\x52\x27\x39\x9b\xa3\x75\x5c\x47\x38\x13\x80\xc0\x68\x9d\x01\x36\x12\x20\x1c\xad\x83\x38\x0d\xd1\x3a\x88\x16\x8a\xd6\x93\x73\x4f\xb4\x8e\x01\x38\xd5\xfe\x68\x9d\x41\x37\x12\xb4\x25\x5a\x07\xb1\xdb\xa2\x75\x90\x80\x31\x5a\x4f\xce\xf6\x68\x1d\xd7\x73\xf2\xbd\xd1\x3a\x03\x6e\x24\x60\x73\xb4\x0e\xe2\xb6\x44\xeb\x20\x7a\x53\xb4\x9e\x9c\xad\xd1\x3a\xae\xe6\xb4\xfb\xa2\x75\x06\xdb\x48\xb0\xc6\x68\x1d\xc4\x6c\x8e\xd6\x41\xe4\x86\x68\x3d\x39\xf7\x44\xeb\x18\x80\xd3\xee\x8f\xd6\x19\x74\x23\x41\x5b\xa2\x75\x10\xbb\x2d\x5a\x07\x09\x18\xa3\xf5\xe4\x6c\x8d\xd6\x71\x35\xa7\xde\x17\xad\x33\xd8\x46\x82\x35\x46\xeb\x20\x66\x73\xb4\x0e\x22\x37\x44\xeb\x64\x72\x31\x45\xeb\x74\x0a\x2a\x9e\x25\x28\x30\x5a\x67\x90\x8d\x0c\x09\x47\xeb\x30\x56\x43\xb4\x0e\x23\x86\xa2\x75\x32\x9b\x58\xa3\x75\x3a\xf1\x14\xcf\x12\xa8\x39\x5a\x67\xe0\x8d\x0c\x6e\x89\xd6\x61\xfc\xb6\x68\x1d\x26\x61\x8c\xd6\xc9\xb4\x62\x8b\xd6\xe9\x04\x54\x3c\x4b\x90\xc6\x68\x9d\x41\x37\x32\xb4\x39\x5a\x87\xb1\x5b\xa2\x75\x98\x80\x29\x5a\x27\xf3\x8b\x25\x5a\xa7\x13\x51\xf1\x2c\x01\x9a\xa2\x75\x06\xdc\xc8\xc0\xc6\x68\x1d\xc6\x6d\x8e\xd6\x61\xf4\x86\x68\x9d\x4c\x2e\xd6\x68\x9d\xce\x43\xc5\xb3\x04\x6a\x8e\xd6\x19\x78\x23\x83\x5b\xa2\x75\x18\xbf\x2d\x5a\x87\x49\x18\xa3\x75\x32\xd3\x58\xa2\x75\x3a\x25\x15\xcf\x12\xa0\x29\x5a\x67\xc0\x8d\x0c\x6c\x8c\xd6\x61\xdc\xe6\x68\x1d\x46\x6f\x88\xd6\x93\x73\x6f\xb4\x4e\x40\xf8\xf4\x3c\x24\x5a\xe7\x0d\x1a\xb9\x81\x2d\x5a\x37\xd0\xb0\x46\xeb\x06\x32\xe6\x68\x1d\x83\xd9\xa3\x75\x02\xd1\xb2\xd1\x1f\xad\x73\xf8\x46\x86\xb7\x44\xeb\x06\x0a\xb6\x68\xdd\x40\xc4\x18\xad\x63\x28\x6b\xb4\x4e\x00\x5a\x1e\x7a\xa3\x75\x0e\xde\xc8\xe0\xe6\x68\xdd\x80\xdf\x12\xad\x1b\x48\x98\xa2\x75\x0c\xd4\x13\xad\x13\x90\x96\x87\x01\xd1\x3a\x6f\xd0\xc8\x0d\x6c\xd1\xba\x81\x86\x35\x5a\x37\x90\x31\x47\xeb\x18\xcc\x1a\xad\x13\x80\x96\x8b\xde\x68\x9d\x83\x37\x32\xb8\x39\x5a\x37\xe0\xb7\x44\xeb\x06\x12\xa6\x68\x9d\xa7\xeb\x34\x47\xeb\x0c\x82\x33\x31\x20\x5a\xef\x5a\x34\x6a\x0b\x63\xb4\x6e\xa1\x62\x8e\xd6\x2d\x84\x06\x46\xeb\x6d\x1e\x94\xd4\x69\x12\x73\xb8\xde\x24\x2c\xb4\x16\x80\xc0\x70\xbd\xe1\x47\x92\x45\x40\x38\x5c\x07\x71\x1a\xc2\x75\x10\x2d\x14\xae\x37\x49\x4f\xb8\xde\x24\x2c\xa0\x16\x20\xcd\xe1\x7a\xc3\xcf\x28\x8b\xd0\x96\x70\x1d\xc4\x6e\x0b\xd7\x41\x02\xc6\x70\xbd\x49\xec\xe1\x7a\x93\xb0\x90\x5a\x00\x34\x86\xeb\x0d\x3f\xc0\x2c\x02\x9b\xc3\x75\x10\xb7\x25\x5c\x07\xd1\x9b\xc2\xf5\x26\xb1\x86\xeb\x4d\xc2\x82\x6a\x01\xce\x14\xae\x37\xfc\x74\xb3\x08\x6b\x0c\xd7\x41\xcc\xe6\x70\x1d\x44\x6e\x08\xd7\x9b\xa4\x27\x5c\x6f\x12\x16\x50\x0b\x90\xe6\x70\xbd\xe1\x87\x9e\x45\x68\x4b\xb8\x0e\x62\xb7\x85\xeb\x20\x01\x63\xb8\xde\x24\xd6\x70\xbd\x49\x58\x50\x2d\xc0\x99\xc2\xf5\x86\x9f\x89\x16\x61\x8d\xe1\x3a\x88\xd9\x1c\xae\x83\xc8\x0d\xe1\x3a\x99\x5c\x4c\xe1\x3a\x9d\x82\x8a\x67\x09\x0a\x0c\xd7\x1b\x7e\x64\x5a\x82\x84\xc3\x75\x18\xab\x21\x5c\x87\x11\x43\xe1\x3a\x99\x4d\xac\xe1\x3a\x9d\x78\x8a\x67\x09\xd4\x1c\xae\x37\xfc\x0c\xb5\x04\x6e\x09\xd7\x61\xfc\xb6\x70\x1d\x26\x61\x0c\xd7\xc9\xb4\x62\x0b\xd7\xe9\x04\x54\x3c\x4b\x90\xc6\x70\xbd\xe1\x07\xac\x25\x68\x73\xb8\x0e\x63\xb7\x84\xeb\x30\x01\x53\xb8\x4e\xe6\x17\x4b\xb8\x4e\x27\xa2\xe2\x59\x02\x34\x85\xeb\x0d\x3f\x7d\x2d\x01\x1b\xc3\x75\x18\xb7\x39\x5c\x87\xd1\x1b\xc2\x75\x32\xb9\x58\xc3\x75\x3a\x0f\x15\xcf\x12\xa8\x39\x5c\x6f\xf8\xa1\x6c\x09\xdc\x12\xae\xc3\xf8\x6d\xe1\x3a\x4c\xc2\x18\xae\x93\x99\xc6\x12\xae\xd3\x29\xa9\x78\x96\x00\x4d\xe1\x7a\xc3\xcf\x6c\x4b\xc0\xc6\x70\x1d\xc6\x6d\x0e\xd7\x61\xf4\x86\x70\xbd\x49\x7a\xc3\xf5\x26\xe1\xa1\xb4\x08\x6c\x09\xd7\x9b\xf6\x18\xb7\xd4\xc0\x16\xae\x1b\x68\x58\xc3\x75\x03\x19\x73\xb8\x8e\xc1\xec\xe1\x7a\x93\xf0\x60\x5a\x84\x35\x87\xeb\x4d\x7b\xc6\x5b\x82\xb7\x84\xeb\x06\x0a\xb6\x70\xdd\x40\xc4\x18\xae\x63\x28\x6b\xb8\xde\x24\x3c\x9c\x16\x41\x8d\xe1\x7a\xd3\x1e\x00\x97\xc0\xcd\xe1\xba\x01\xbf\x25\x5c\x37\x90\x30\x85\xeb\x18\xa8\x27\x5c\x6f\x12\x1e\x4a\x8b\xc0\x96\x70\xbd\x69\xcf\x85\x4b\x0d\x6c\xe1\xba\x81\x86\x35\x5c\x37\x90\x31\x87\xeb\x18\xcc\x1a\xae\x37\x09\x0f\xa7\x45\x50\x63\xb8\xde\xb4\xc7\xc6\x25\x70\x73\xb8\x6e\xc0\x6f\x09\xd7\x0d\x24\x4c\xe1\x3a\x4f\xe3\x6b\x0e\xd7\x9b\xa4\x0b\xa4\x65\x68\x53\xb8\xde\x08\x67\xc9\x95\x16\xc6\x70\xdd\x42\xc5\x1c\xae\x5b\x08\x81\xe1\xfa\x82\xe5\xb1\x45\x91\x93\xc4\xd9\xd7\xfd\x3e\x3c\xd5\xa8\x04\x32\x08\xca\x39\x14\x8d\xa9\x10\x1f\x8b\x3c\xce\x6a\x54\x3a\xe8\x1b\xca\xea\x8a\xa6\xe7\xe3\xe9\x93\x1f\x1e\x1e\x0f\xe1\xf1\xeb\x99\xe4\x68\x76\x8e\x79\x92\x97\x7b\x21\x13\x9e\xfb\xe9\x75\x51\xa3\xa6\x76\xd2\x3c\xcb\x49\x32\xbf\x97\x53\x9e\xd5\xce\x29\x4c\xe3\xe4\x79\xff\xeb\xbf\xfd\x92\x67\xb9\xf3\x17\x74\xbe\x26\x61\x39\xff\x05\x65\x49\x3e\xff\x25\xcf\xc2\x63\x3e\xff\x53\x9e\x55\x79\x12\x56\xf3\x87\x9f\xe3\x03\x2a\x43\xcc\xfb\x0c\x83\x3f\xcc\x1f\xfe\x94\x5f\xcb\x18\x95\xb3\x3f\xa3\xa7\x87\x79\x8b\x5a\x94\x1b\x21\xca\xd2\x58\xbf\x90\x07\x9a\x00\x58\xcb\x6c\xcd\x40\xc9\x45\x0d\x7a\xce\x41\x0d\x8e\x5d\xe9\xa0\xa7\x4b\xd4\x20\xeb\xf2\x9a\x1d\xc3\x1a\xa9\xd9\x3d\x1f\x49\x6d\x5b\x88\x92\x24\x2e\xaa\xb8\x02\x32\x30\x32\x44\x24\xc5\xac\xd0\x05\x35\xcf\x2c\xa9\xa2\x39\x66\x05\x28\x2d\xd1\x2c\xa9\x63\xf9\x9c\x05\x38\x2d\x55\xb3\x39\xef\x01\x69\xc5\x93\x11\xf7\x31\xd4\x26\x24\xee\xe5\xa9\xbb\x29\xdd\xc6\x96\xe5\x84\x07\x35\xb0\x68\x18\x5f\x6d\x82\xe2\x5e\xbe\xba\xbb\x22\x47\xf2\xc5\xf7\xb2\x50\xed\x9d\x87\xf1\xd5\x26\x2c\xee\xe5\xab\xbb\x2d\x67\x24\x5f\xed\xaa\x1d\x69\xc7\x93\x17\xf7\x31\xd6\x26\x30\xee\x65\xac\xcb\x17\x6e\x65\x8c\xf5\x22\x7f\x42\xe5\x31\xac\xd0\x0b\x1b\x2d\x61\x56\x9d\xf2\x32\xdd\xb7\x15\x1a\xfe\x6b\x51\xc0\x4d\xda\x0a\xdd\xde\xc3\x22\xae\xc3\x24\xfe\x5d\x6b\xd3\xd5\x88\x8d\xc8\xe4\xf4\x44\xd2\x37\x3a\x09\x4d\xdb\xdc\x95\xec\x97\xae\x6b\x05\x46\xa5\x04\xce\xca\x4c\x4d\xe8\x0c\x23\xb5\x58\x99\x09\x1c\xf2\x24\x92\x60\x37\x76\x58\x85\x17\x5a\xa4\x35\x20\x22\x38\x52\xc8\xaa\x7e\x4e\xd0\x9e\x96\xe8\xf3\x23\x9e\x9d\x5e\xe8\xfc\xfe\xee\x74\x3a\x69\x00\x45\x19\xa7\x61\xf9\xcc\x41\x5c\x77\x73\x90\xa0\x42\x09\x8c\xa6\x89\x9d\x2b\x85\x17\x3c\x2b\x76\x18\x82\xf5\x61\xa9\xcf\x16\xe8\x98\x67\x91\x40\x69\x7d\xdc\x04\x9b\x48\xa7\xd4\x02\xca\xb4\xba\x62\x89\xda\x6a\xb7\x3a\x05\x2b\x9d\xda\xf5\x78\x44\x55\xc5\xa1\xfc\x6d\xb8\x59\x05\x00\x2d\x0a\xa6\x50\x62\x85\x12\x1d\x6f\xb7\xde\xf9\xba\x78\xe3\xec\x94\xb7\x20\x9b\xd0\x3f\x6c\x75\x22\x18\x46\xa6\x40\x4a\x64\xa1\x9d\xd6\xeb\x8d\xde\x8d\xa7\xb0\xcc\xe2\xec\xdc\xe9\xef\xe8\xb9\x1b\x9d\x02\x03\x93\x89\xf0\x42\x89\xce\x21\xdc\x1e\x64\xfb\x23\xb0\x51\x98\x9d\x3b\xa0\xe8\xb8\x0c\x20\x69\x51\x28\x99\x0a\x2b\x93\x88\x84\x1b\x2f\xf2\x43\x7d\xfe\x23\xe3\x92\x77\x65\x7b\xda\x9d\x42\x9d\x06\x01\x92\x49\xd0\x22\x89\xc2\xf1\x10\x2d\x23\x9d\x42\x14\x96\x5f\x39\xc8\x72\xb5\x0c\x57\x2e\xd4\x89\xf2\xab\xda\x85\xf2\xab\xa2\x6c\xdf\x5b\x79\x6b\x0d\xfd\x21\x8f\x5a\xeb\xf5\x3d\x3f\xf0\x77\xfa\xbb\xe7\x5a\xa3\xc8\x68\xe1\x0c\x4d\x12\x1e\xbf\x3a\x81\xfb\xa2\x79\x5d\x0b\x39\xfb\x70\x37\x80\x15\x68\x3f\x08\xe6\xfc\x7f\x50\x9b\x4b\x1c\x51\x7f\x6d\xef\x7e\x76\x67\xe1\x23\x6d\x4a\xe6\xd0\x22\x2c\x51\x56\x53\x5f\x46\xc8\x66\xac\x3b\x83\x22\x74\x97\x51\x9a\x0a\x0c\x1d\x73\xea\xd7\xd1\xcc\xc8\x4a\xa1\x96\x1e\x99\xf6\xba\x44\xe1\xd7\x97\xa7\xbc\x8c\xe8\xed\x56\xe4\xd9\xc1\xcf\xba\x4f\x84\x2a\xc4\x0d\x25\xce\x2e\xa8\x8c\xa5\x77\x16\xcb\x39\xfd\x42\xfe\xc6\x49\x5c\x3f\xf3\x34\xd4\x22\x54\x9c\x01\x70\x5a\x9e\x76\xf6\xb2\x2d\xca\x38\xab\x5f\xfe\x30\x67\x3e\xf7\x7c\xbf\x3f\xa0\x53\x5e\xb2\xae\x81\x59\x9f\x1f\xcd\xf9\xa0\xc3\x7d\x96\xd7\x1f\x17\x87\x3a\xfb\xa4\xc9\xe6\x9a\x45\xa8\x4c\xe2\x0c\xbd\x86\x87\x43\xf9\x5b\x1d\xd7\x09\xfa\xc2\x5d\xfd\xd6\x39\x9f\x7d\x7c\x98\x85\x75\x5d\x7e\x24\xf5\x9f\x66\x0f\x9f\x1e\x5e\x8b\x12\x49\xee\x6b\x51\x22\x47\x71\x60\x0f\x49\x7e\xfc\xfa\xff\xae\x79\x8d\xe6\x18\x9a\xa9\xcd\x2b\x9a\x59\x95\x27\x71\x34\x7b\x17\x46\x87\xe0\x10\x3d\x16\xe1\x19\x51\x85\x38\x71\x56\xc5\x11\xda\x87\xdf\xf2\x38\x7a\xad\x2f\x28\x8c\x5e\xa2\xb8\x2a\x92\xf0\x79\x5f\x87\x87\x04\x39\xb8\x08\x95\x0e\xb6\x8d\xe2\x35\x4e\xcf\xf3\xba\x7c\x31\xb5\xbf\xf8\xf3\xcb\x72\x5e\xbc\xe4\x65\x71\x09\xb3\x6a\xbf\x7c\x7c\x8a\xa3\xfc\xa9\xda\x2f\x69\x95\xd8\x90\xf4\x98\xb5\xfb\x67\x5c\xfe\x52\xc5\xbf\xa3\x7d\xb8\x7c\x25\xc3\x4c\xf1\xca\x44\xcd\x62\x29\x85\x71\x86\x4a\x1b\x50\x16\x7e\x3b\x84\x65\xdb\x17\xac\xa1\xd7\xc5\x21\x8c\xce\x90\x58\x5c\x17\x9b\x36\xee\x2e\xab\xc4\x63\x20\x09\x8b\x0a\xed\xf9\x0f\xc9\x48\x31\xe4\xac\x8e\xe6\xfc\xd7\xe5\x45\x1b\x3e\xda\xbb\x96\x08\x93\x62\x47\x51\xd7\x58\x28\xba\x00\x9c\x45\x08\xf9\x68\xad\x23\x12\x66\x3a\x36\x42\xc4\x9a\x59\x8d\x65\xf8\x03\xf9\x77\x2e\x95\x47\xf2\xe3\x45\x79\x44\xa1\xc0\x07\xef\x09\xe5\x81\x77\x7b\x41\xa0\x78\x03\x99\x87\x47\xb0\xe1\xeb\xff\xf8\xfc\x87\x77\xb3\x2a\xbf\x96\x47\xf4\x4b\x58\x14\x71\x76\xfe\x8f\xbf\xfc\xfc\xe3\x21\xcf\xeb\xaa\x2e\xc3\x62\x91\xc6\xd9\xe2\x58\x55\x8b\x34\x2c\x66\x7f\xf8\xfc\xff\x05\x00\x00\xff\xff\x3f\xdf\x6c\x14\x93\x72\x02\x00")
171 |
172 | func bootstrapMinCssBytes() ([]byte, error) {
173 | return bindataRead(
174 | _bootstrapMinCss,
175 | "bootstrap.min.css",
176 | )
177 | }
178 |
179 | func bootstrapMinCss() (*asset, error) {
180 | bytes, err := bootstrapMinCssBytes()
181 | if err != nil {
182 | return nil, err
183 | }
184 |
185 | info := bindataFileInfo{name: "bootstrap.min.css", size: 160403, mode: os.FileMode(420), modTime: time.Unix(1598592638, 0)}
186 | a := &asset{bytes: bytes, info: info}
187 | return a, nil
188 | }
189 |
190 | var _commonCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\xdb\xae\xda\x30\x10\x7c\xe7\x2b\x56\x3a\x2f\xad\x74\x8c\x92\x70\x11\x32\x1f\x73\xe4\xd8\x9b\xc4\xc5\xb1\xad\xf5\x72\x08\xad\xfa\xef\x55\x6e\x28\x40\x69\xfb\x50\x24\x4b\x78\x66\xd6\xce\xce\x8e\xcb\x60\xae\xf0\x63\x05\x00\x50\x2a\x7d\xaa\x29\x9c\xbd\x11\x3a\xb8\x40\x12\xde\xaa\xa2\xda\x54\x87\xe3\xea\xe7\x6a\xb5\x8e\x81\xd8\x21\x4f\x62\x63\x53\x74\xea\x2a\x41\x5c\xb0\x3c\x59\x16\x65\xe8\x8e\xf7\x4c\xe5\x70\x82\x16\x1a\xd1\xa3\x12\xf2\x91\xe8\x37\xa2\xa6\x70\xb9\x21\x4b\x69\x20\x8b\x9e\x25\x7c\x22\xb1\xd5\xca\x3d\x2b\x8c\x25\xd4\x6c\x83\x97\xe0\x03\xb5\xb3\x64\x38\x76\xc1\xe9\xe0\xce\xad\x1f\xb9\xbe\x2c\x35\xca\xf4\x77\x66\xb1\x1b\x56\xbe\x89\x1d\xf4\x8b\xea\x52\x7d\x39\x14\xef\xb0\xdf\xbc\x43\x9e\xed\xde\x21\x5b\x67\xbb\xaf\xc7\x97\xfe\x0c\xbf\x91\x6e\x15\xd5\xd6\x8b\x32\x30\x87\x56\x42\x91\xc5\x6e\xbe\x91\x0c\x92\x20\x65\xec\x39\x49\xd8\xf6\xf8\xd2\xd0\xf9\xcf\xc7\x47\x83\xca\x3c\xfa\xfb\x7b\x17\x95\xb3\xb5\x97\x90\x98\x90\x75\xf3\xcc\x47\xa5\x4f\x12\xbe\x9d\x13\xdb\xea\x3a\xd2\xd3\x46\xe8\xe0\x79\xb0\x35\x45\xa5\x51\x94\xc8\x17\xc4\xc9\x9c\x18\x92\x1d\x2d\x23\x74\x8a\xed\x27\x4e\xb8\x32\xc6\xfa\x5a\x42\xb6\xe8\x6b\x6c\x58\x42\x76\xd7\xe6\xdc\x7f\x1e\x3b\x48\xc1\x59\x03\x6f\x58\xa2\xa9\x8a\xa9\xc8\x7a\xd1\xa0\xad\x1b\x96\xb0\x7f\xb4\x88\x43\x14\x0e\x2b\xbe\xf7\xea\x41\x40\x7d\xf1\xb3\x62\x70\x44\x58\xc6\x36\x49\xd0\xe8\x19\x69\x0a\x43\xf0\x2c\x92\xfd\x8e\x12\xf2\x75\x41\xd8\x2e\xe0\xcb\xf4\x25\xbb\xed\xd4\xc4\x3c\xd8\xed\x61\xbb\xdf\x95\xaf\xe6\xb4\x78\x34\xff\xf0\x0e\x44\x9b\x86\xd4\xdf\x98\xff\x92\xf1\xf9\xd4\x57\x39\xff\x13\x77\x1b\xe7\x5f\x42\xfa\x2b\x00\x00\xff\xff\x5e\xd0\x1b\x54\x1d\x04\x00\x00")
191 |
192 | func commonCssBytes() ([]byte, error) {
193 | return bindataRead(
194 | _commonCss,
195 | "common.css",
196 | )
197 | }
198 |
199 | func commonCss() (*asset, error) {
200 | bytes, err := commonCssBytes()
201 | if err != nil {
202 | return nil, err
203 | }
204 |
205 | info := bindataFileInfo{name: "common.css", size: 1053, mode: os.FileMode(420), modTime: time.Unix(1599713357, 0)}
206 | a := &asset{bytes: bytes, info: info}
207 | return a, nil
208 | }
209 |
210 | var _faviconIco = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x96\x5d\x68\x5c\x45\x14\xc7\x27\x5a\xab\xb6\x0f\xb6\x2a\x56\x90\xb6\x41\x2c\x28\x3e\xf8\x01\xbe\x16\x85\x3e\x09\x8a\xf4\x45\x7c\x90\x6a\xb1\xd6\xe6\x41\x2a\xe2\x67\xdb\xec\x6c\xf7\xa4\xdb\x34\x6d\x36\xd9\x26\x69\xf6\x23\x9b\xdd\x9d\x3b\x9b\x16\x0a\x42\xf5\x41\x7c\x31\x2a\x2a\x0a\x45\xa8\x68\x2b\x82\x36\x56\x0a\xa5\x96\x76\x9b\xe4\xbf\xa9\xfd\x38\x72\xee\xbd\x6b\x36\xeb\xcd\xee\xdd\x18\xbd\xf0\x67\xd8\x7b\x67\xce\xef\x9c\x33\x67\xce\xac\x52\x6d\xaa\x4d\xb5\xb7\xcb\xd8\xae\x0e\xaf\x50\xea\x1e\xa5\xd4\x83\x4a\xa9\x76\xa5\xd4\x93\xca\x7b\xef\x3e\x2b\x94\xba\x73\xb9\xa7\xa0\x87\xa2\x15\xd5\x15\xad\xb4\x91\xc6\x03\xa4\xa1\x49\xe3\x43\xd2\x38\x49\x1a\x65\xd2\xb8\x4a\x1a\x33\xa4\x71\x91\x34\xce\x91\xc6\x19\xd2\xf8\xce\x9f\x53\x24\x8d\x4d\xa4\xb1\x8a\x34\x64\x7d\x30\xa0\xc1\x23\x6b\x48\x63\x29\x69\x6c\x21\x8d\x1f\x49\xe3\x1a\x69\x70\x0b\x02\x69\x1c\x27\x8d\xad\xa4\x71\x7b\x2b\x3e\xc8\xdc\x23\x07\x4e\xc9\xd8\x41\x1a\x93\x2d\x72\xeb\x55\x21\x8d\x1e\xd2\x58\x16\xd6\x07\x3f\xf6\x87\x48\xe3\xd7\x7f\xc9\xae\x4a\xf6\x69\x1b\x45\x5c\xbb\xb2\xa7\xd5\x7d\x6d\x27\x8d\xa7\x49\x63\xdd\x5e\x9a\x51\x5d\x51\x28\xea\x9c\xae\xf2\xb7\x2f\x12\xbb\xaa\x9f\x49\x23\x49\x1a\xbd\xa4\x11\xf7\xc7\xef\x49\xe3\x18\x69\x3c\x47\x51\x2c\x21\xe1\x6b\xe1\x4f\x2f\xf5\xdf\x2f\x26\x5f\x34\x46\x1a\x1b\x48\x63\xb3\xbf\xaf\x27\x24\x76\x89\x77\x27\x95\xd5\x2e\x2a\x57\x63\x5f\xe5\xd7\xdc\x62\xf3\x37\xfb\xf6\x1f\x27\x8d\x0b\xa4\x71\xdd\x3f\x27\xf5\x7b\xbf\x86\x34\x26\xfe\x03\xfe\xbb\x9e\xfd\x8a\x9c\x87\xd7\x49\xa3\x9f\x34\x1e\xf9\x1f\xf9\x7b\x9b\x9d\x81\x46\xfc\x58\xc4\x1b\xf7\xec\x06\xef\xa5\x7f\x4a\xde\xd7\xce\x0b\x50\xdf\x42\xf9\xf1\x18\xb8\x77\x1f\x78\xe8\x20\x78\x24\x0d\x2e\xe4\xc0\x85\xd1\xb9\xca\x65\xc1\xc3\x83\xe0\xc4\x7e\x70\x77\x57\x20\x7f\xa0\x55\x7e\x57\x14\xdc\xb7\xdf\xb3\xed\x14\xc1\xd6\x34\x56\xc9\xf1\xc6\x7c\x0e\x7c\xb0\x6f\x36\x27\x2d\xc6\xbf\x5a\x7a\x8f\xb0\x07\x92\x8d\xb9\xcd\x7c\x4a\x0f\x83\xe3\xf4\x37\xff\xcd\x90\xfc\xe5\xa4\xf1\x49\x7f\xef\xfc\xf6\x25\xbe\x81\x7e\xf0\xfe\x6e\x2f\xdf\x99\xd4\xfc\x73\x53\x43\x6e\x1e\xcb\x14\xc1\xfa\x66\xfc\x58\xb4\xa2\xb2\x29\xa8\x44\x0f\x3a\xf2\x39\xdc\x08\xb2\x37\x9a\x05\xef\x8b\xcf\xd6\x9a\x48\x72\x35\x98\x9c\x3f\x47\xc9\x04\xbe\x8d\xec\xc0\x4a\xe9\xb1\xcd\x1e\x5b\x84\xb2\x06\x2f\x59\x83\xeb\x41\xb6\xa4\x1e\x82\x6a\x7c\x4f\x0c\x3c\x92\x09\xf6\xc1\x14\x30\x3e\x9a\xc5\xb2\x42\xae\x31\xdf\x9a\x69\xd1\x12\x6b\x30\x16\x68\x27\xef\xc5\xae\x77\x96\x39\xf2\xfe\x45\x2f\x07\x9d\x53\xdc\xf9\xde\x05\x8e\x45\xa6\xf9\xd0\xe0\x6c\x0d\xd6\x69\xc2\x1a\xac\xb3\xa6\x19\xdf\x8d\xfd\x6e\x6b\x70\x22\x88\x5f\x14\xfe\x1e\x70\x74\xe7\x65\xd6\x3b\x2e\xf9\x7b\x30\xe5\xfa\x22\x39\x19\x9e\x9f\x7f\xd5\x1a\x6c\x0c\xc9\x5f\x63\x0d\x4e\xcf\x5d\x5f\xe1\x92\x73\xc5\x1d\x13\x4d\xf2\x5f\x72\x2a\xee\xbc\x00\x1f\xb6\xb7\xc0\x9f\xa8\x65\xe7\x73\xe7\xb9\xa7\xfb\x4b\xce\x66\xce\x72\x7e\xa4\xc2\x3d\x52\x7f\x91\xb9\xf5\x27\xbd\x49\xe6\x67\xd3\xbf\xf3\x68\xee\x8f\x20\x7e\x67\x48\xfe\xea\xda\xf8\x4b\xce\x0c\x77\xee\x3a\xca\xaf\x6d\x7d\x85\x87\x06\x3f\xf5\xfd\xf1\xea\x3d\xd1\x03\x96\x73\x9a\x19\x96\xb9\x33\x9c\xec\x3b\xc1\x2f\x6f\xea\xe0\x58\xb4\xc8\xa6\x30\x59\xcf\x7f\x2b\x24\xff\x0e\x6b\xf0\x75\x2d\xbf\x3b\x3e\xce\xef\xbc\x1d\xe5\x42\xfe\x87\xf9\x72\xeb\xce\x4b\xf4\x1e\xe7\x8e\x6d\x6f\xf0\x48\xf6\x63\x36\x85\xcb\xb5\xdf\x67\xac\xc1\x33\x21\xf9\xa2\xdd\x73\xcf\xdd\x14\x67\xd3\x67\xb9\x98\xbf\xdc\xb0\xdf\xc9\xbc\x4c\xea\x37\xce\x8d\x9c\xab\xff\x76\xd2\x1a\xdc\xd7\x8c\x5f\xe3\xc3\x13\xd6\xe0\x7c\x7d\x0d\x36\xeb\xff\x5e\x1e\x02\xeb\x6f\xc0\x3a\xb8\x29\x14\xdf\x81\xb2\x4e\x45\x7a\x40\x6f\x18\x5e\x08\x49\x2d\x3f\x1c\x86\x5d\x97\x83\x8d\x4e\xd1\x3d\xb7\x0b\x66\x4b\xbf\x34\x05\x7c\x53\xb2\x6e\x4d\xb5\xca\xdf\x72\x68\x00\x9c\x4d\x2d\x80\xed\x78\xbd\x4a\xee\xe0\x6c\x1a\xbf\x1c\x19\x73\xcf\x54\x4b\xfc\x92\x83\x6d\xc9\x84\xf7\xdf\x43\xfc\x30\x85\xf0\x7c\xe9\x43\x07\xf6\x79\x3d\x29\x97\xc1\xc4\xe1\x31\xb7\xa7\xb4\xca\x7f\x55\xee\x4e\xe9\x6d\xf2\xff\x2a\x97\xc5\x25\x6b\x70\xd4\x1a\xfc\x64\x0d\x60\x0d\xfe\xb4\xc6\xbd\x23\xaf\xf9\xe7\xeb\x82\x35\xf8\xc8\x1a\x1c\x1b\x3a\x88\x1b\xb2\x4e\xee\x67\x53\xc0\xa9\x92\x83\x7b\x17\xc0\x7f\xaa\x98\xc7\x64\xff\x01\x77\x0f\xe4\x2e\x4c\x94\x1c\xdc\x66\x0d\xd6\x5a\x83\xf5\xd6\xe0\x59\x6b\xf0\xa2\x35\x78\xde\x1a\x6c\xb0\x06\x8f\x59\x83\x65\x25\x07\x6b\x9d\x22\xbe\x92\xbb\x20\x7d\xc8\xcd\x47\xc9\x1a\x2c\x59\xc0\xfe\x4b\xcd\x7c\xee\x14\x5d\x76\xde\x1a\xdc\xd5\xb4\x7f\x38\xae\xdf\xa2\x47\x65\xad\x35\xb8\x62\x0d\x5e\x68\x85\x2d\x4f\xc9\xa9\x54\x7d\x90\x3b\x23\x6e\x0d\x56\xca\xef\xd4\x07\x1c\xc2\xf7\x29\x65\x4d\xa5\x7a\x8f\x44\xac\xc1\xfd\x61\xf9\x97\xd4\xad\x7c\x5a\xdd\xcc\xe3\xaa\x4d\xf4\xd9\xb8\x52\x6d\x5a\xa9\x5b\xb4\x52\x71\x5f\x1c\xa4\x71\x5f\xcd\xbe\x8b\xdd\xd3\x41\xe2\x2f\xb8\xcc\x67\xf8\xaf\x00\x00\x00\xff\xff\xe0\xdd\xf5\x70\xbe\x10\x00\x00")
211 |
212 | func faviconIcoBytes() ([]byte, error) {
213 | return bindataRead(
214 | _faviconIco,
215 | "favicon.ico",
216 | )
217 | }
218 |
219 | func faviconIco() (*asset, error) {
220 | bytes, err := faviconIcoBytes()
221 | if err != nil {
222 | return nil, err
223 | }
224 |
225 | info := bindataFileInfo{name: "favicon.ico", size: 4286, mode: os.FileMode(420), modTime: time.Unix(1598592638, 0)}
226 | a := &asset{bytes: bytes, info: info}
227 | return a, nil
228 | }
229 |
230 | // Asset loads and returns the asset for the given name.
231 | // It returns an error if the asset could not be found or
232 | // could not be loaded.
233 | func Asset(name string) ([]byte, error) {
234 | cannonicalName := strings.Replace(name, "\\", "/", -1)
235 | if f, ok := _bindata[cannonicalName]; ok {
236 | a, err := f()
237 | if err != nil {
238 | return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err)
239 | }
240 | return a.bytes, nil
241 | }
242 | return nil, fmt.Errorf("Asset %s not found", name)
243 | }
244 |
245 | // MustAsset is like Asset but panics when Asset would return an error.
246 | // It simplifies safe initialization of global variables.
247 | func MustAsset(name string) []byte {
248 | a, err := Asset(name)
249 | if err != nil {
250 | panic("asset: Asset(" + name + "): " + err.Error())
251 | }
252 |
253 | return a
254 | }
255 |
256 | // AssetInfo loads and returns the asset info for the given name.
257 | // It returns an error if the asset could not be found or
258 | // could not be loaded.
259 | func AssetInfo(name string) (os.FileInfo, error) {
260 | cannonicalName := strings.Replace(name, "\\", "/", -1)
261 | if f, ok := _bindata[cannonicalName]; ok {
262 | a, err := f()
263 | if err != nil {
264 | return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err)
265 | }
266 | return a.info, nil
267 | }
268 | return nil, fmt.Errorf("AssetInfo %s not found", name)
269 | }
270 |
271 | // AssetNames returns the names of the assets.
272 | func AssetNames() []string {
273 | names := make([]string, 0, len(_bindata))
274 | for name := range _bindata {
275 | names = append(names, name)
276 | }
277 | return names
278 | }
279 |
280 | // _bindata is a table, holding each asset generator, mapped to its name.
281 | var _bindata = map[string]func() (*asset, error){
282 | "bootstrap.min.css": bootstrapMinCss,
283 | "common.css": commonCss,
284 | "favicon.ico": faviconIco,
285 | }
286 |
287 | // AssetDir returns the file names below a certain
288 | // directory embedded in the file by go-bindata.
289 | // For example if you run go-bindata on data/... and data contains the
290 | // following hierarchy:
291 | // data/
292 | // foo.txt
293 | // img/
294 | // a.png
295 | // b.png
296 | // then AssetDir("data") would return []string{"foo.txt", "img"}
297 | // AssetDir("data/img") would return []string{"a.png", "b.png"}
298 | // AssetDir("foo.txt") and AssetDir("notexist") would return an error
299 | // AssetDir("") will return []string{"data"}.
300 | func AssetDir(name string) ([]string, error) {
301 | node := _bintree
302 | if len(name) != 0 {
303 | cannonicalName := strings.Replace(name, "\\", "/", -1)
304 | pathList := strings.Split(cannonicalName, "/")
305 | for _, p := range pathList {
306 | node = node.Children[p]
307 | if node == nil {
308 | return nil, fmt.Errorf("Asset %s not found", name)
309 | }
310 | }
311 | }
312 | if node.Func != nil {
313 | return nil, fmt.Errorf("Asset %s not found", name)
314 | }
315 | rv := make([]string, 0, len(node.Children))
316 | for childName := range node.Children {
317 | rv = append(rv, childName)
318 | }
319 | return rv, nil
320 | }
321 |
322 | type bintree struct {
323 | Func func() (*asset, error)
324 | Children map[string]*bintree
325 | }
326 |
327 | var _bintree = &bintree{nil, map[string]*bintree{
328 | "bootstrap.min.css": &bintree{bootstrapMinCss, map[string]*bintree{}},
329 | "common.css": &bintree{commonCss, map[string]*bintree{}},
330 | "favicon.ico": &bintree{faviconIco, map[string]*bintree{}},
331 | }}
332 |
333 | // RestoreAsset restores an asset under the given directory
334 | func RestoreAsset(dir, name string) error {
335 | data, err := Asset(name)
336 | if err != nil {
337 | return err
338 | }
339 | info, err := AssetInfo(name)
340 | if err != nil {
341 | return err
342 | }
343 | err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755))
344 | if err != nil {
345 | return err
346 | }
347 | err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode())
348 | if err != nil {
349 | return err
350 | }
351 | err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime())
352 | if err != nil {
353 | return err
354 | }
355 | return nil
356 | }
357 |
358 | // RestoreAssets restores an asset under the given directory recursively
359 | func RestoreAssets(dir, name string) error {
360 | children, err := AssetDir(name)
361 | // File
362 | if err != nil {
363 | return RestoreAsset(dir, name)
364 | }
365 | // Dir
366 | for _, child := range children {
367 | err = RestoreAssets(dir, filepath.Join(name, child))
368 | if err != nil {
369 | return err
370 | }
371 | }
372 | return nil
373 | }
374 |
375 | func _filePath(dir, name string) string {
376 | cannonicalName := strings.Replace(name, "\\", "/", -1)
377 | return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
378 | }
379 |
--------------------------------------------------------------------------------
/static/pages/writing.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |