├── .gitignore ├── fetch ├── index.js ├── webpack.config.js ├── package.json ├── README.md ├── fetch.js ├── fetch_test.go ├── fetch.go └── internal │ └── data │ └── bindata.go ├── glide.yaml ├── wercker.yml ├── README.md ├── LICENSE └── glide.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | vendor 4 | -------------------------------------------------------------------------------- /fetch/index.js: -------------------------------------------------------------------------------- 1 | require('expose?fetch!./fetch'); 2 | -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- 1 | package: github.com/olebedev/gojax 2 | import: 3 | - package: github.com/dop251/goja 4 | - package: github.com/dop251/goja_nodejs 5 | subpackages: 6 | - eventloop 7 | - package: github.com/pkg/errors 8 | testImport: 9 | - package: github.com/stretchr/testify 10 | subpackages: 11 | - require 12 | - package: gopkg.in/elazarl/goproxy.v1 13 | -------------------------------------------------------------------------------- /fetch/webpack.config.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | var webpack = require('webpack'); 3 | 4 | module.exports = { 5 | entry: './index', 6 | output: { 7 | path: path.join(__dirname, 'dist'), 8 | filename: 'bundle.js', 9 | }, 10 | resolve: { 11 | extensions: ['', '.js'] 12 | }, 13 | module: { 14 | loaders: [ 15 | {test: /\.json$/, loader: 'json'} 16 | ] 17 | } 18 | }; 19 | -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- 1 | box: golang:1.7.5 # b/c of this issue https://github.com/elazarl/goproxy/issues/188 2 | build: 3 | steps: 4 | - setup-go-workspace 5 | - script: 6 | name: go get 7 | code: | 8 | go version 9 | go get github.com/Masterminds/glide 10 | glide install 11 | - script: 12 | name: go test 13 | code: | 14 | go test -v -race ./fetch 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # gojax [![godoc](http://img.shields.io/badge/godoc-reference-blue.svg?style=flat)](https://godoc.org/github.com/olebedev/gojax) [![wercker status](https://app.wercker.com/status/af9298279f7b50fe3f8211bde0267e88/s/master "wercker status")](https://app.wercker.com/project/byKey/af9298279f7b50fe3f8211bde0267e88) 2 | 3 | > A set of extensions for [goja](https://github.com/dop251/goja) javascript engine. 4 | 5 | Contains: 6 | 7 | - [fetch](https://github.com/olebedev/gojax/tree/master/fetch) - a window.fetch JavaScript polyfill to use from goja 8 | -------------------------------------------------------------------------------- /fetch/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gojax-fetch", 3 | "version": "0.0.1", 4 | "description": "Fetch polyfill for goja", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "embed": "go-bindata -pkg=\"data\" -o ./internal/data/bindata.go ./dist/bundle.js " 9 | }, 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "expose-loader": "^0.7.0", 14 | "json-loader": "^0.5.2", 15 | "lodash": "^3.9.3", 16 | "node-fetch": "^1.3.0", 17 | "node-libs-browser": "^0.5.2", 18 | "webpack": "^1.9.10", 19 | "when": "^3.7.3" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 Oleg Lebedev 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated 4 | documentation files (the "Software"), to deal in the Software without restriction, including without limitation 5 | the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to 6 | permit persons to whom the Software is furnished to do so, subject to the following conditions: 7 | 8 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 9 | 10 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 11 | WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 12 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 13 | OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 14 | -------------------------------------------------------------------------------- /fetch/README.md: -------------------------------------------------------------------------------- 1 | # fetch [![godoc](http://img.shields.io/badge/godoc-reference-blue.svg?style=flat)](https://godoc.org/github.com/olebedev/gojax/fetch) 2 | 3 | > a window.fetch JavaScript polyfill 4 | 5 | ### Usage 6 | 7 | Install via `go get https://github.com/olebedev/gojax/fetch`. 8 | 9 | ```go 10 | package main 11 | 12 | import ( 13 | "fmt" 14 | 15 | goproxy "gopkg.in/elazarl/goproxy.v1" 16 | 17 | "github.com/dop251/goja" 18 | "github.com/dop251/goja_nodejs/eventloop" 19 | "github.com/olebedev/gojax/fetch" 20 | ) 21 | 22 | func main() { 23 | loop := eventloop.NewEventLoop() 24 | loop.Start() 25 | defer loop.Stop() 26 | 27 | fetch.Enable(loop, goproxy.NewProxyHttpServer()) 28 | 29 | wait := make(chan string, 1) 30 | loop.RunOnLoop(func(vm *goja.Runtime) { 31 | vm.Set("callback", func(call goja.FunctionCall) goja.Value { 32 | wait <- call.Argument(0).ToString().String() 33 | return nil 34 | }) 35 | 36 | vm.RunString(` 37 | fetch('https://ya.ru').then(function(resp){ 38 | return resp.text(); 39 | }).then(function(resp){ 40 | callback(resp.slice(0, 15)); 41 | }); 42 | `) 43 | }) 44 | fmt.Println(<-wait) 45 | } 46 | ``` 47 | 48 | This program will prints `` into stdout. See `fetch_test.go` for more examples. 49 | 50 | -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- 1 | hash: 4f444b392586aca72d384ca3deb3ce64a8a41ec9741d21db9327df04536531a6 2 | updated: 2017-02-19T01:25:24.504447961+05:00 3 | imports: 4 | - name: github.com/dlclark/regexp2 5 | version: b93eddc7b8da68cfc103f431cbc54476817cdf4a 6 | subpackages: 7 | - syntax 8 | - name: github.com/dop251/goja 9 | version: d9f9d94853c32b86a7c1c15ac8194bfb15019f7a 10 | subpackages: 11 | - ast 12 | - file 13 | - parser 14 | - token 15 | - name: github.com/dop251/goja_nodejs 16 | version: 2fc1e6bbfc494e36dd9a0b3e735a4babc538f51f 17 | subpackages: 18 | - console 19 | - eventloop 20 | - require 21 | - util 22 | - name: github.com/pkg/errors 23 | version: 248dadf4e9068a0b3e79f02ed0a610d935de5302 24 | - name: golang.org/x/text 25 | version: 44f4f658a783b0cee41fe0a23b8fc91d9c120558 26 | subpackages: 27 | - cases 28 | - collate 29 | - internal 30 | - internal/colltab 31 | - internal/tag 32 | - language 33 | - transform 34 | - unicode/norm 35 | testImports: 36 | - name: github.com/davecgh/go-spew 37 | version: 04cdfd42973bb9c8589fd6a731800cf222fde1a9 38 | subpackages: 39 | - spew 40 | - name: github.com/pmezard/go-difflib 41 | version: d8ed2627bdf02c080bf22230dbb337003b7aba2d 42 | subpackages: 43 | - difflib 44 | - name: github.com/stretchr/testify 45 | version: 2402e8e7a02fc811447d11f881aa9746cdc57983 46 | subpackages: 47 | - assert 48 | - require 49 | - name: gopkg.in/elazarl/goproxy.v1 50 | version: 0a5b8bdb09049ae4ae68e75437ded0b7a2e324e3 51 | -------------------------------------------------------------------------------- /fetch/fetch.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * fetch.js 4 | * 5 | * a request API compatible with window.fetch 6 | */ 7 | 8 | var Headers = require('node-fetch/lib/headers'); 9 | 10 | var __gofetch__ = global.__fetch__; 11 | delete global.__fetch__; 12 | 13 | module.exports = Fetch; 14 | 15 | /** 16 | * Fetch class 17 | * 18 | * @param Mixed url Absolute url or Request instance 19 | * @param Object opts Fetch options 20 | * @return Promise 21 | */ 22 | function Fetch(url, o) { 23 | 24 | // allow call as function 25 | if (!(this instanceof Fetch)) 26 | return new Fetch(url, o); 27 | 28 | // allow custom promise 29 | if (!Fetch.Promise) { 30 | throw new Error('native promise missing, set Fetch.Promise to your favorite alternative'); 31 | }; 32 | 33 | if (!url) { 34 | throw new Error('url parameter missing'); 35 | }; 36 | 37 | var options = o || {}; 38 | 39 | // wrap http.request into fetch 40 | return new Fetch.Promise(function(resolve, reject) { 41 | 42 | // normalize headers 43 | var headers = new Headers(options.headers || {}); 44 | 45 | if (!headers.has('user-agent')) { 46 | headers.set('user-agent', 'golang-fetch/0.1 (+https://github.com/olebedev/gojax/fetch)'); 47 | } 48 | 49 | headers.set('connection', 'close'); 50 | 51 | if (!headers.has('accept')) { 52 | headers.set('accept', '*/*'); 53 | } 54 | 55 | options.headers = headers.raw(); 56 | 57 | // send a request 58 | __gofetch__(url, options, function(res){ 59 | res.url = url; 60 | resolve(new Response(res)); 61 | }); 62 | }); 63 | }; 64 | 65 | 66 | /** 67 | * Response class 68 | * 69 | * @param Object opts Response options 70 | * @return Void 71 | */ 72 | 73 | function Response(r) { 74 | var k; 75 | for (k in r) { 76 | if (k === 'headers') { 77 | this[k] = new Headers(r[k]); 78 | } else { 79 | this[k] = r[k]; 80 | } 81 | } 82 | this.ok = this.status >= 200 && this.status < 300; 83 | } 84 | 85 | /** 86 | * Decode response as json 87 | * 88 | * @return Promise 89 | */ 90 | Response.prototype.json = function() { 91 | var _this = this; 92 | return new Fetch.Promise(function(resolve, reject) { 93 | resolve(JSON.parse(_this.body)); 94 | }); 95 | } 96 | 97 | /** 98 | * Decode response body as text 99 | * 100 | * @return Promise 101 | */ 102 | Response.prototype.text = function() { 103 | var _this = this; 104 | return new Fetch.Promise(function(resolve, reject) { 105 | resolve(_this.body); 106 | }); 107 | } 108 | 109 | Fetch.Promise = typeof Promise !== 'undefined' ? Promise : require('when').Promise; 110 | -------------------------------------------------------------------------------- /fetch/fetch_test.go: -------------------------------------------------------------------------------- 1 | package fetch 2 | 3 | import ( 4 | "net/http" 5 | "sync" 6 | "testing" 7 | 8 | goproxy "gopkg.in/elazarl/goproxy.v1" 9 | 10 | "github.com/dop251/goja" 11 | "github.com/dop251/goja_nodejs/eventloop" 12 | "github.com/stretchr/testify/require" 13 | ) 14 | 15 | func TestEnable(t *testing.T) { 16 | loop := eventloop.NewEventLoop() 17 | loop.Start() 18 | defer loop.Stop() 19 | 20 | Enable(loop, goproxy.NewProxyHttpServer()) 21 | 22 | var v goja.Value 23 | var err error 24 | var wg sync.WaitGroup 25 | wg.Add(1) 26 | loop.RunOnLoop(func(vm *goja.Runtime) { 27 | v, err = vm.RunString(`typeof fetch`) 28 | wg.Done() 29 | }) 30 | 31 | wg.Wait() 32 | require.Nil(t, err) 33 | require.NotNil(t, v) 34 | require.Equal(t, "function", v.ToString().String()) 35 | } 36 | 37 | func TestRequest(t *testing.T) { 38 | loop := eventloop.NewEventLoop() 39 | loop.Start() 40 | defer loop.Stop() 41 | 42 | Enable(loop, goproxy.NewProxyHttpServer()) 43 | 44 | wait := make(chan string, 1) 45 | loop.RunOnLoop(func(vm *goja.Runtime) { 46 | vm.Set("callback", func(call goja.FunctionCall) goja.Value { 47 | wait <- call.Argument(0).ToString().String() 48 | return nil 49 | }) 50 | 51 | vm.RunString(` 52 | fetch('https://ya.ru').then(function(resp){ 53 | return resp.text(); 54 | }).then(function(resp){ 55 | callback(resp.slice(0, 15)); 56 | }); 57 | `) 58 | }) 59 | 60 | require.Equal(t, "", <-wait) 61 | } 62 | 63 | func TestCustom(t *testing.T) { 64 | loop := eventloop.NewEventLoop() 65 | loop.Start() 66 | defer loop.Stop() 67 | 68 | Enable(loop, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { 69 | w.WriteHeader(http.StatusMethodNotAllowed) 70 | w.Header().Add("Content-Type", "application/json") 71 | w.Write([]byte(`{"error": "method not allowed"}`)) 72 | })) 73 | 74 | wait := make(chan string, 3) 75 | loop.RunOnLoop(func(vm *goja.Runtime) { 76 | vm.Set("callback", func(call goja.FunctionCall) goja.Value { 77 | wait <- call.Argument(0).ToString().String() 78 | return nil 79 | }) 80 | 81 | vm.RunString(` 82 | fetch('https://ya.ru').then(function(resp){ 83 | callback(resp.ok); 84 | callback(resp.status); 85 | callback(resp.url); 86 | callback(resp.method); 87 | callback(resp.headers.get('content-type')); 88 | return resp.json(); 89 | }).then(function(resp){ 90 | callback(resp.error); 91 | }); 92 | `) 93 | }) 94 | 95 | require.Equal(t, "false", <-wait) 96 | require.Equal(t, "405", <-wait) 97 | require.Equal(t, "https://ya.ru", <-wait) 98 | require.Equal(t, "GET", <-wait) 99 | require.Equal(t, "application/json", <-wait) 100 | require.Equal(t, "method not allowed", <-wait) 101 | } 102 | -------------------------------------------------------------------------------- /fetch/fetch.go: -------------------------------------------------------------------------------- 1 | package fetch 2 | 3 | import ( 4 | "bytes" 5 | "fmt" 6 | "io" 7 | "net/http" 8 | "net/http/httptest" 9 | "net/textproto" 10 | 11 | "github.com/dop251/goja" 12 | "github.com/dop251/goja_nodejs/eventloop" 13 | "github.com/olebedev/gojax/fetch/internal/data" 14 | "github.com/pkg/errors" 15 | ) 16 | 17 | // Enable enables fetch for the instance. Loop instance is required instead of 18 | // flat goja's. B/c fetch polyfill uses timeouts for promises. 19 | // 20 | // The second parameter could be any http handler. Even you local instance, 21 | // to handle http requests locally programmatically. 22 | func Enable(loop *eventloop.EventLoop, proxy http.Handler) error { 23 | if proxy == nil { 24 | return errors.New("proxy handler cannot be nil") 25 | } 26 | 27 | script := string(data.MustAsset("dist/bundle.js")) 28 | prg, err := goja.Compile("fetch.js", script, false) 29 | if err != nil { 30 | return errors.Wrap(err, "compile script") 31 | } 32 | loop.RunOnLoop(func(vm *goja.Runtime) { 33 | vm.Set("__fetch__", request(loop, proxy)) 34 | _, err := vm.RunProgram(prg) 35 | if err != nil { 36 | panic(err) 37 | } 38 | }) 39 | 40 | return nil 41 | } 42 | 43 | func request(loop *eventloop.EventLoop, proxy http.Handler) func(call goja.FunctionCall) goja.Value { 44 | return func(call goja.FunctionCall) goja.Value { 45 | if fn, ok := goja.AssertFunction(call.Argument(2)); ok { 46 | u := call.Argument(0).String() 47 | o := call.Argument(1).Export().(map[string]interface{}) 48 | 49 | go func() { 50 | var body io.Reader 51 | method := http.MethodGet 52 | header := make(http.Header) 53 | 54 | 55 | if headers, ex := o["headers"]; ex { 56 | if hmap, okh := headers.(map[string]interface{}); okh { 57 | for key, value := range hmap { 58 | v := value.([]interface{}) 59 | for _, item := range v { 60 | var i []string 61 | i = append(i, item.(string)) 62 | header[textproto.CanonicalMIMEHeaderKey(key)] = i 63 | } 64 | } 65 | } 66 | } 67 | 68 | if b, ex := o["body"]; ex { 69 | if bo, ok := b.(string); ok { 70 | body = bytes.NewBufferString(bo) 71 | } 72 | } 73 | 74 | if m, ex := o["method"]; ex { 75 | if me, ok := m.(string); ok { 76 | method = me 77 | } 78 | } 79 | 80 | var toRet map[string]interface{} 81 | 82 | res := httptest.NewRecorder() 83 | req, err := http.NewRequest(method, u, body) 84 | if err != nil { 85 | toRet = map[string]interface{}{ 86 | "body": fmt.Sprintf("Internal Server Error: %s", err.Error()), 87 | "headers": make(map[string][]string), 88 | "status": http.StatusInternalServerError, 89 | "method": method, 90 | "url": u, 91 | } 92 | } else { 93 | req.Header = header 94 | proxy.ServeHTTP(res, req) 95 | toRet = map[string]interface{}{ 96 | "body": res.Body.String(), 97 | "headers": map[string][]string(res.Header()), 98 | "status": res.Code, 99 | "method": method, 100 | "url": u, 101 | } 102 | } 103 | loop.RunOnLoop(func(vm *goja.Runtime) { fn(nil, vm.ToValue(toRet)) }) 104 | }() 105 | } 106 | return nil 107 | } 108 | } 109 | -------------------------------------------------------------------------------- /fetch/internal/data/bindata.go: -------------------------------------------------------------------------------- 1 | // Code generated by go-bindata. 2 | // sources: 3 | // dist/bundle.js 4 | // DO NOT EDIT! 5 | 6 | package data 7 | 8 | import ( 9 | "bytes" 10 | "compress/gzip" 11 | "fmt" 12 | "io" 13 | "io/ioutil" 14 | "os" 15 | "path/filepath" 16 | "strings" 17 | "time" 18 | ) 19 | 20 | func bindataRead(data []byte, name string) ([]byte, error) { 21 | gz, err := gzip.NewReader(bytes.NewBuffer(data)) 22 | if err != nil { 23 | return nil, fmt.Errorf("Read %q: %v", name, err) 24 | } 25 | 26 | var buf bytes.Buffer 27 | _, err = io.Copy(&buf, gz) 28 | clErr := gz.Close() 29 | 30 | if err != nil { 31 | return nil, fmt.Errorf("Read %q: %v", name, err) 32 | } 33 | if clErr != nil { 34 | return nil, err 35 | } 36 | 37 | return buf.Bytes(), nil 38 | } 39 | 40 | type asset struct { 41 | bytes []byte 42 | info os.FileInfo 43 | } 44 | 45 | type bindataFileInfo struct { 46 | name string 47 | size int64 48 | mode os.FileMode 49 | modTime time.Time 50 | } 51 | 52 | func (fi bindataFileInfo) Name() string { 53 | return fi.name 54 | } 55 | func (fi bindataFileInfo) Size() int64 { 56 | return fi.size 57 | } 58 | func (fi bindataFileInfo) Mode() os.FileMode { 59 | return fi.mode 60 | } 61 | func (fi bindataFileInfo) ModTime() time.Time { 62 | return fi.modTime 63 | } 64 | func (fi bindataFileInfo) IsDir() bool { 65 | return false 66 | } 67 | func (fi bindataFileInfo) Sys() interface{} { 68 | return nil 69 | } 70 | 71 | var _distBundleJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\xbd\x7f\x73\x1b\x37\xb2\x28\xfa\x37\x55\xf5\xbe\x43\x27\xb7\xca\x1a\xca\x34\x69\x7b\x73\x76\xcf\x91\x42\xfb\x68\x1d\x67\xe3\xbd\x89\xed\x6b\x7b\x77\xcf\x2b\x95\x9f\x02\xcd\x60\x44\x58\xc3\x19\x66\x80\x91\xc8\xd8\xfa\xee\xaf\xd0\xf8\x8d\xc1\x90\xb4\xe3\xdd\xbb\xd9\x4d\xfe\x88\xc5\x01\xd0\x00\x1a\x8d\x46\xa3\xd1\x3f\x66\x47\xf8\xdf\x0c\xb2\xb2\xab\x73\xc1\x9a\x3a\x5b\x36\x45\x57\x51\x3e\x86\xf7\x30\x9b\xc1\x0d\xbd\x58\x91\xfc\xea\x8f\x4d\x23\xb8\x68\xc9\xea\xc0\xb6\x18\xcd\x66\xf0\x66\x41\x41\xd5\x87\x9c\xe4\x0b\xea\x95\x5e\x93\x16\x58\xcd\x05\xa9\x2a\x5a\xfc\xa0\x60\xc2\x1c\xde\xdf\x9e\x1c\xf4\x61\xb4\xf4\xa7\x8e\xb5\x14\xcc\x20\xbc\x1a\xe6\x13\x9c\x9f\xeb\xb1\x9c\xeb\xda\xe7\xe7\x7a\xac\xcf\x8a\x31\xbc\xf7\xa1\x4a\xb0\x4f\x16\x34\xbf\x02\x56\x9a\xf1\x31\x0e\xac\xee\x8d\x72\xc4\xca\x2c\x1e\xe5\x99\x81\xfa\x76\xec\xd7\x1c\xb5\x54\x74\x6d\xdd\x9b\x94\xab\x3e\xa5\xeb\x55\xd3\x0a\x7e\xd2\x1b\x4b\x4b\x89\xa0\x40\xa0\xa6\x37\x66\x3c\x19\xa9\x0b\x58\x75\x02\x98\x00\x56\x8b\x06\xc4\x42\x23\x31\xe8\x55\xa2\x51\xb7\x98\x6f\xe9\x5a\x62\x36\x18\xac\x1e\xca\x31\xbc\xbf\x9d\x04\x05\xac\x38\x06\xd3\x2c\x2c\xa9\x1a\x52\xd0\xe2\x18\x4a\x52\xf1\x00\x47\xb7\xbd\x09\x3d\x5d\xd3\xbc\x13\x14\xc7\xac\x47\x97\x58\xba\xd1\xb2\x87\xa1\x9c\x54\x95\x5e\x35\x83\xad\x89\x86\x60\xfe\x75\xdf\x13\x2b\x3e\xee\x0d\xe5\xdb\x8a\x5c\xfa\xe3\x20\x1c\xd4\x44\xfa\x03\x99\xaa\x02\x98\x83\x68\x3b\xda\x83\xf4\x4a\xad\xaf\x84\xa5\x87\x00\x4d\xe9\x81\xf6\xab\x6b\x5a\x08\x47\x7c\xe2\xd5\xb8\x3d\x88\xc8\x5c\xd6\xe1\x3e\xc6\x38\x34\x17\xef\x68\x2e\x20\x73\xf3\xd4\x25\xe7\xe7\x3e\x0d\x24\xd0\x30\x5d\xc2\xdc\x80\x89\xf7\x53\xaf\xa3\x1e\xd1\xa7\x00\xe6\x09\xf2\x8a\x21\xbb\x76\xab\xee\xa2\x62\xf9\xf9\x8a\x88\xc5\xf9\xf9\x0e\xc8\x2b\x98\xc3\x97\x5f\xc6\xb0\xbe\x6f\x48\x01\xb4\x16\xed\xc6\x2e\x5c\x5d\x80\x46\xab\xc6\xa7\xd7\x42\x17\xa4\x78\xc0\xfd\xb1\x87\xf7\x5b\x8b\xb8\x5f\xfe\xdf\xcc\x81\xcd\xce\x0e\x66\x47\x70\x1f\xf4\xb7\x19\x44\xdc\x72\x02\x5b\x89\x56\x72\xa7\x14\x6e\xb2\x07\x92\x9e\x35\x48\xdc\xa7\xf0\xe0\x17\xf5\x31\x3b\x82\xbf\x3d\xfd\xe3\xcb\xd3\x27\xff\x1b\xfe\x7a\xfa\x0a\x9e\x3d\xff\xf3\xd3\x27\x6f\x9e\xbd\x78\x0e\x47\x33\xc7\xe0\x2f\xab\xe6\x82\x54\x63\x78\x1f\x52\x2f\xcc\x41\x95\x9c\x7d\x59\x52\x91\x2f\xbe\x94\x4c\x25\x35\xe8\x87\xe3\x93\xad\x3d\xdd\xaa\x5d\x6e\x47\xeb\x7a\x96\x67\x4a\x6b\x76\x19\xe3\x27\x70\x9b\x8d\xc7\xe3\x71\x88\x81\x87\xff\x40\x0c\xc8\xfa\x47\x07\x23\x38\x02\x9c\xf2\xf4\x1d\x97\x3f\xf0\x03\xc1\x43\x89\x72\x01\xa7\x2f\x9f\x41\xde\x2c\x57\x44\xb0\x8b\x8a\xc2\x0d\x13\x0b\xb8\x61\x75\xd1\xdc\x4c\xb1\x95\xac\x3e\x3b\x38\x40\x56\xfd\x1d\x25\x05\x6d\xf9\x00\xe6\x7e\x27\x97\x1b\xeb\x9d\x9f\x5f\x36\xd8\xf8\xfc\xdc\xe2\x7d\x7a\x7e\xae\x3f\x9d\x1c\x8c\x0a\x5a\x51\x41\x13\x25\x07\xa3\xde\xb2\x7d\x2b\xcb\x4e\x0e\xdc\x64\xf0\x03\xe4\x15\xe1\x6e\x3e\xff\xbd\x22\x2d\x59\x02\xc0\x0f\x6c\x4d\x0b\x00\x80\xae\xad\x00\xe0\xf4\x82\x37\x95\xe4\xe5\xf2\x67\xd3\xc2\x2b\x3d\x6b\x64\x06\x75\x4e\xc3\xc6\x2f\x14\xcb\x02\x68\x56\x82\x83\xee\xa8\x59\x49\xac\x72\x55\x53\xaf\x2f\xbc\x6c\x9b\x25\xe3\x54\x21\xc7\x9d\xe2\xd8\x22\xeb\xda\x6a\x02\x8d\x5a\x31\x90\x62\x06\xa9\xaa\xe6\x06\x24\xdd\x48\x06\x6e\xcf\x92\x11\xc8\x13\x3c\xfb\x22\x93\xe4\x62\x87\xd4\x94\x0a\xcc\x78\x2c\x2b\x80\x21\x29\x79\xb8\x06\xe0\x4f\x22\xe8\x1d\x17\xcd\x12\x56\x76\x60\x0a\x36\x36\x99\xea\xe1\x22\x4d\x48\x98\x62\xd1\x36\x37\x08\xf2\x69\xdb\x36\x6d\x76\x58\x13\xc1\xae\xa9\x69\x0d\x4b\xc6\x39\xab\x2f\x27\xc0\xa9\x80\x00\x04\x88\x06\x36\x4d\xd7\x42\x49\xae\x9b\x96\xc9\x73\xbf\x12\xb4\x55\xed\x0f\xe5\xde\x01\xb8\x55\x43\xc3\xfe\xbb\xb6\x1a\xee\x55\x2e\x0a\xe2\x9e\x0a\xda\x9a\x4e\x43\x20\x92\x9c\xf4\x0a\xc0\x1c\x1a\xf8\xf0\x41\x09\x59\x6a\xea\x37\x2d\x59\xc1\x42\x88\xd5\xb4\xb5\x0b\x2b\x1a\x30\x84\xdb\xc3\x9d\x99\x85\xdb\x2c\x2d\xe5\x4d\x75\x4d\x27\xd0\x52\xb9\xf6\x66\xd1\x10\x7a\xdd\xb4\x4b\x52\xb1\x9f\x29\x2c\x14\xe1\xab\x12\x39\xa4\x85\xdd\x09\x12\xb6\xde\x17\x99\x1e\xe8\xd4\x94\xe2\x60\xf5\x42\x69\x7c\xe8\xa2\xe9\x82\xf0\xec\xb0\xe3\xb4\xbd\x47\x2e\x69\x2d\x0e\xc7\x16\x4b\x60\x80\x4f\x39\x15\x41\x9d\x09\x1c\x5e\x36\x15\xa9\x2f\xef\xe1\x04\x67\xf7\xa7\x0f\x20\xbb\x2b\xa7\xcf\x8f\x67\xb3\x4b\x26\x16\xdd\xc5\x34\x6f\x96\xb3\xa6\xa2\x17\xb4\xa0\xd7\xb3\xcb\xe6\x1d\x59\xcf\xb0\xf6\x58\xe3\x15\xe0\x56\x8f\x27\xe8\x26\x6f\xea\x9a\x22\x4a\x64\x37\x79\xd5\x70\x5c\xcd\xa1\x91\x93\x3c\xa7\xab\x2d\xa3\xd6\xe5\x13\x38\x3c\x9a\x1d\xf5\x7a\x8e\xf1\x34\xb7\x8d\x5b\x72\x93\xd9\x6e\x67\x33\xe0\xb4\x2e\x1c\xb3\x52\x9f\x3d\xee\xa2\xf7\x82\x02\x37\x01\x7f\x55\xc7\x76\x60\x2d\xe5\x53\x49\x69\x73\xc9\x04\x4e\xbc\xaf\x72\xe1\x33\xb9\x7e\xaf\x28\x5f\x35\x35\xa7\xd8\xce\x0e\x56\xd3\xa1\xfc\x47\x52\x9c\x63\x40\xa6\xfa\x10\x0f\x32\x6c\x44\x71\x11\x5b\x3b\xc9\x48\xfe\xda\xb0\xc2\xb0\x58\xcb\x46\xdc\x78\x34\x7e\x25\xc9\x5d\xe1\x70\xca\xa6\x85\xec\x4a\x0a\xfb\xad\xc5\xbd\x5c\x9e\x2b\x98\xcf\xe7\x70\xa8\xf1\x78\xe8\xad\x8b\x64\x2e\x67\x57\x6f\x23\x52\x6d\xcf\xae\xde\xda\x99\x02\xad\x38\x4d\xb5\x90\xb5\xec\xda\x8d\xf4\xff\x64\xf1\xb4\xb9\x92\x82\xa6\xfc\x8b\x0b\x22\x3a\x0e\x8f\xe6\xf0\xf0\xfe\x7d\xb8\x73\x27\xf8\xfa\x35\xfc\xee\xfe\x7d\x89\x40\x0f\x7d\xdf\xd0\xbc\x29\xe4\xad\x48\xe3\x85\x70\x78\xc7\x91\x1d\x1e\x6d\x63\xb2\x06\x29\xd3\x55\xdb\x88\x46\x6c\x56\x74\x2a\x9b\xc1\x1c\xfc\x13\xd8\x60\xeb\x1c\x79\xaa\x1a\xe2\xc9\x27\xb3\x82\x91\x4f\x29\x7f\x7e\xfd\xe2\xf9\x74\x45\x5a\x4e\x33\x84\x3e\xbd\x68\x8a\xcd\xd8\xa7\x92\x2d\x93\x94\x75\xe5\x4c\x05\x5d\x8b\x4f\x98\xa9\x6c\xf6\x8f\x9b\xa9\x37\xbd\x70\x76\xe1\x51\x30\x07\x39\xb6\xa6\x34\xc3\x87\x2f\x24\x09\x76\x75\x41\x4b\x56\xd3\xe2\x10\x1e\xdb\x92\xe3\xa4\xc4\xf0\xd5\xd8\xc0\x3a\xd9\x2e\xdc\xfc\x42\xa1\xeb\x77\xbb\x85\x2e\xc5\xf8\xdd\xfa\x19\x86\xe4\xc9\x4c\x46\xfa\xc1\x5d\x0f\x4d\x59\xe2\x8f\xa6\xbe\xa6\x35\xa3\xb5\x80\x05\xad\x56\xea\x90\xc0\xdd\xdc\x13\x64\x74\x7b\x5f\x94\x09\x40\x0e\x33\x12\xc3\x27\x1d\x2f\x71\x07\x52\x92\x97\x38\x56\x62\xf6\xbb\x6e\xa0\xa6\x89\x42\x1a\xa7\x55\xe9\xc8\x66\x84\x4b\x7e\xee\x38\xb2\x3a\x65\xe5\x65\xe6\x3b\xd3\xd7\x48\x32\x1a\x53\xc3\x13\x57\xbe\x73\xb0\x47\xa3\xd1\x20\x53\x1f\x21\x09\x49\x88\xab\x8a\xb0\x5a\x5f\x10\x0f\x46\x23\xe4\x69\x72\x48\xab\xb6\x59\x49\xd6\xb6\x08\x00\xc6\xa7\xcf\x8b\x9b\xfa\x65\xdb\xac\x68\x2b\x36\x99\x6c\x31\xd6\xf5\x46\x79\x53\x0b\x56\xcb\xbb\xef\x48\xf7\x85\x6d\x35\x91\x6a\x08\x67\xb2\xc9\x5b\xc5\x2d\xb9\x68\x51\xe0\xd0\xed\x15\xe3\xa2\x02\xa1\x4e\xc2\x06\x78\x28\x8d\x46\x9a\x55\x6e\x07\x5b\x77\xcb\x0b\xda\x1e\x4a\x5e\xf8\x05\xe3\xcf\xc9\xf3\x2c\x04\xb5\x4f\x7f\x53\xd1\xbc\xc6\xd1\x65\xe3\x7e\xd7\x61\x9f\xde\x4a\x9c\xb6\x2d\xd9\x18\xf0\x21\xbc\xb2\x69\x9f\x92\x7c\xe1\x76\x0e\x13\x74\x69\xaa\x8e\x24\x31\x4c\xc9\x6a\x45\xeb\x42\x8f\x46\x16\x87\x83\x90\xf5\x6e\xc7\x1a\xb9\x0a\xc1\xb7\xc1\xa9\x88\x54\x58\xb2\x96\x0b\x3d\x17\xb8\x26\x55\x47\xe1\x92\x5d\xd3\x1a\x6a\xb2\xa4\x7d\x12\x57\xf0\x01\x4b\x41\x53\x92\xad\xea\x48\x1b\xc5\x7a\x4d\xdb\x9a\xdc\x3c\xee\x78\x49\x03\xe6\x28\x9b\xab\x99\x49\xa2\xaa\x18\x17\xe6\xac\x32\xf4\x7d\x26\xab\x4c\x45\xf3\x7d\x73\x43\xdb\x27\x84\xd3\x6c\x2c\xcf\x39\x73\x11\xc7\x26\x8f\xf1\x9f\xb3\xfb\x6f\xe1\x18\xea\xae\xaa\xb4\x18\x10\xcf\x57\x0a\xf5\xfe\x6c\xf9\xe7\x98\x2e\xae\xe3\xb6\xe9\x9e\x56\x55\x7a\xc6\xb8\x59\x70\xae\x52\x4e\xc3\xef\x7a\x91\x35\xec\xb3\xb7\x76\x27\x7a\x7c\x73\x17\x66\x82\x99\x3f\x13\xb4\x25\x82\x42\x73\x4d\x5b\x6f\xfe\x09\x06\xf6\xad\x61\x43\x78\xf9\xb9\x20\xf9\x15\x18\xed\x5a\x81\xa2\x0c\x25\xf9\x02\x49\x4d\x5d\x3c\xed\x65\x80\x4b\x86\x50\x75\x74\x82\xc8\x99\xe0\x18\x4f\xdb\xcb\x71\x08\xfe\x8f\x4d\x53\x51\x52\x6b\x91\xe5\xb4\xbd\x04\x80\x1f\xe5\x9f\x3f\x4a\xbe\x8c\x67\xa6\xec\xc4\xf6\xed\xdd\xbc\xd2\x6c\xb3\x8f\x6b\xbd\x6d\x7c\x64\x1b\x70\x6e\x54\x88\x60\xc5\xac\xe5\xe2\x78\x0c\xea\x39\x59\x52\x9e\x05\x18\x1e\xf7\xb7\xa2\x5b\xbe\x51\x7f\x31\x12\x5b\x17\x51\x63\xb9\x9e\x1e\x8e\x3a\x22\xf5\x90\x26\xd0\x43\xdf\x18\x37\xae\xfb\xdb\xfd\xe9\xef\xe2\x17\xd7\xb4\xbd\xc1\x7b\xdd\xa7\x12\x75\x9f\xaa\xe3\x7a\x8a\x2b\x98\x7a\xf8\xeb\x23\x56\x84\xf7\x37\xbb\x9e\xad\xc2\xc8\x4e\x72\x86\x39\x9c\x61\xfd\x1e\x61\x9f\x22\x03\x04\xa2\x47\xd8\xc8\xbb\x24\x5d\x33\x2e\xe4\xb0\x15\xc4\xff\xdb\xb3\x57\x3c\x7a\x2b\x02\x86\x59\x80\x3d\x70\xfc\x36\x27\x8e\x39\x58\xce\xb0\x13\x87\xd3\x55\xc7\x17\x99\x05\x10\x60\x51\xbd\x4d\xc8\x8d\xb7\x70\xb8\x50\x78\xa4\x5a\xe5\x92\xc6\xcc\x2e\xae\xa8\xb7\xfb\x20\x6e\x16\x84\xa7\x99\x62\x8a\xd1\xc5\x92\x44\x7f\x92\xbd\x89\x7d\xa3\xb4\x56\x7f\x17\x8e\xbf\x6d\xd1\xcf\x0e\x95\xbe\xec\xf0\x6d\x7a\x7a\x5a\x9b\xf6\xd1\x7c\x5c\x9f\x60\x2d\xb9\xb1\x12\x66\x56\x37\xf5\x3d\xbe\xa2\x39\x90\x15\x1b\xf7\x2f\x2a\x2f\xb4\xcc\x36\xb0\x02\x12\x54\x7c\x4b\x49\x62\xdf\xdc\xa9\x7d\x29\xfd\xab\x5f\xa4\x1a\x55\x7a\x47\x7d\x81\x38\x3f\xfd\xe1\x9b\xf3\x6f\x9e\x7e\xfb\xec\xf9\xd3\xf3\x57\x4f\x5f\xff\xe5\xfb\x37\xe7\xe7\x27\xb3\xa3\x23\xf8\xef\x8a\xe5\x54\x0a\xd0\x3f\x3c\x7b\x03\xdf\xeb\xbf\xb3\x7c\x0c\x79\xb3\xda\xb4\xec\x72\x21\xe0\xe1\xfd\x07\xf7\xef\x3d\xbc\xff\xe0\x2b\x68\x5a\x76\xc9\x6a\x52\x01\xe9\xc4\xa2\x69\xa1\x69\xf5\x5f\x5c\x49\xf8\x06\x8f\xfa\x0e\xc3\x67\xa7\x77\x51\xcf\x7f\xb3\xa0\x72\xee\x6c\xb9\xaa\xe8\x92\xd6\x82\xd8\x33\x47\x96\x00\xe3\xf2\x9c\x13\xe6\xf9\x25\xef\xde\x35\x7f\x7e\x0d\x25\x59\xb2\x6a\x23\x3f\x56\xec\xa2\x25\x2d\xa3\x1c\xb2\x85\x10\xab\xe3\xd9\x4c\x56\x79\xc7\x51\xb5\xa3\x4f\x40\x3d\xa2\x3f\xb6\x8c\xd4\xf0\x84\x5c\x93\x8a\x29\xde\x64\x8b\xfe\xdc\x2c\x6a\xf8\x8e\xd4\x66\xbb\xb8\xd3\x43\x5d\xcf\xe4\xc5\xe9\xb0\xe3\x14\xa4\x10\x9c\x8b\xc3\x93\x83\xd1\x17\xd9\x56\x04\x7a\x2b\x0b\x99\xc6\xbe\x77\x9f\x10\x6c\x89\xaf\x4f\xa9\x8b\xde\x7f\x20\x97\x91\xb5\x88\x94\x6c\x06\x6a\x3d\x78\x60\xab\x95\x55\x73\x33\x54\xeb\x2b\x57\xab\xa9\x86\x7a\x7c\xe0\xba\x64\xb5\x24\x68\x31\x54\xf1\xf7\xb6\xe2\x25\xad\x95\x60\x33\x50\xf3\x0f\xb6\xe6\xaa\x6d\x2e\x5b\xca\x87\x34\xe1\x0f\xfe\xd3\xd6\x94\x62\xcd\x1b\x75\x41\x4f\xd6\xfc\x2f\x5b\xb3\xab\x17\xa4\x2e\x2a\x5a\xbc\xc2\x4b\x39\x43\xd5\x46\xf2\x85\xe2\xbe\x6d\xf3\x86\x2d\x69\xd3\x09\x54\xa7\x0e\xf5\x70\x5f\xdd\x1f\x64\x75\x77\x71\x3f\xc3\x75\x98\x20\x9e\x27\x88\xc7\x89\x9d\xfe\xc4\x4e\x6f\x82\x57\x28\x85\xbe\x89\x9d\xca\x44\x2d\xf5\x24\x31\xe2\xb7\xb2\xc1\xb4\xa5\x45\x97\x7b\xea\x06\xdd\xed\x04\x4a\x4a\x44\xd7\x5a\xc9\x45\x33\x06\xfd\xd5\x54\xd3\x37\x8c\xe4\x56\xcf\x1e\x3e\x1c\xbb\xe9\x90\xd5\xaa\x1a\xa4\xa5\xdf\x8d\x3d\x80\xea\xda\xf9\x12\xdf\xf5\xe0\xf4\xe5\x33\xf9\x41\xee\xc5\xa9\x51\x78\xcb\xff\xe6\x46\xfd\x7d\x02\xc1\x7f\xfe\x13\xb7\x3c\x7c\x25\x3b\xb7\x6a\x76\x05\x46\x2b\x4e\x34\x18\xdd\xaf\xf9\x7a\xd2\x07\xa3\x4b\x8a\x3e\x1c\xfd\x00\x11\xc1\x91\x5f\x4f\x12\xc3\x51\x25\x1e\x1c\x03\xa8\x62\xa5\x30\xe3\x9f\x83\xfc\x15\x4d\x4a\x01\xc2\x6a\xc4\x6d\x6b\xd1\x18\x65\x8a\x06\xc8\x35\xc0\xb3\x43\xd1\x6e\x0e\xdf\x1a\x80\x44\x08\xba\x5c\xc5\x30\x67\x33\xfd\xc6\xe1\x00\x7a\xcf\x9e\x24\x9e\xac\x06\xb2\x0b\x24\xa9\x18\xe1\x28\x4e\x60\x2b\xd1\x6e\xec\x2c\x99\xbe\x88\x84\xe8\xd2\x5f\x1d\xda\xbf\x79\xfa\xf2\xd5\xd3\x27\xa7\x6f\x9e\x7e\x03\x99\xe4\x78\x8a\x9d\xce\x96\x0d\x17\x92\xfb\x51\xb2\xe4\x63\xf8\x93\xd9\xfc\x44\x7f\x93\xac\x38\xc2\xc2\xb4\xab\x91\xe5\x44\x1d\xaa\xaf\xde\xfa\x7c\x86\x0e\x4d\x8f\xef\x1a\x56\xbb\x85\x94\xbf\x92\x0b\xf9\x67\x59\xed\xa1\x3c\xa1\x96\x4d\x4b\xfb\x60\xe4\xb2\x38\x30\xa4\xaa\xfa\x50\x00\x8d\x04\x14\x1d\x13\x75\x05\x4e\x60\x80\x53\x21\x2a\x6a\x00\xa9\x5f\x31\xac\xd9\x0c\x5e\xab\x6a\x09\x38\x76\x44\xf5\x06\x42\x0a\x35\xfb\x55\x16\x8d\x4f\x34\xa0\x17\x35\xbd\x77\xc3\xea\x9a\xb6\xd0\x92\xdc\xd2\x0e\x6f\x96\x74\xa0\xb5\x2c\xc2\xe6\xb3\x19\xfc\xd0\x55\x82\xa5\xda\xcb\xbf\x07\xda\xcb\x22\xd3\xfe\x5b\xd6\x72\x71\x4f\x34\xf7\xf4\xb4\x11\x84\x81\xb1\x24\x2b\x6f\x06\x4b\xb2\x4a\xe3\x14\xef\xf2\xb2\x72\x36\x46\x2a\x8e\x31\x5a\xb2\x4a\xd0\xd6\x80\x51\xbf\x12\x18\x55\x60\x54\xf1\x00\x24\xc5\x77\xd3\x93\xc2\xa2\xf1\x49\x0c\x4f\xb3\xea\x6d\xf0\x5e\xa1\x54\x94\x84\x87\x45\x12\x68\x04\x0f\xbf\xc7\x40\xed\xa6\xe5\x1a\xc8\xf7\xec\x0a\xcd\x7e\xfc\xdf\x6e\xd3\x3e\xe3\x20\x57\x52\x2c\x3c\x76\x7b\xaf\x62\x57\x74\x02\xe4\x8a\x48\xc9\xa9\x26\x17\x95\x5b\x8d\x97\x01\x27\x7f\x39\xc4\xc9\x4d\xb5\xbc\xa9\xb9\x68\xbb\x5c\x34\xad\x81\x50\xd0\xd2\xac\x03\xcc\x01\x7f\xf5\x56\xd4\x67\xbe\xef\x57\xe6\x5c\x8b\xf4\xe9\xb7\x20\xba\x95\x1a\xda\x6c\xa6\xde\x3a\x51\x53\xee\x70\x10\x9d\xdb\xfe\x4f\x75\x58\x49\xc9\x52\x4a\x73\x7f\xa2\x92\x3f\x8b\xb6\xe3\x1e\x97\x47\xbc\xae\x27\x72\xb7\x5f\x6c\x40\xb4\xa4\xe6\x65\xd3\x2e\x25\xa2\xd6\x4a\x8f\xd2\xd4\xdf\x76\x55\xc9\xaa\x8a\x16\x08\x47\x01\xd3\x77\x92\xf7\x47\xb7\xb0\x0e\xbf\x18\x7e\xfd\xf8\xd6\x6f\xea\x14\x27\xa2\x81\x0b\x8a\x3f\xa9\x12\x6f\x61\x0d\x8c\x2b\x18\x00\xbc\xcb\x73\xca\x79\xd9\x55\xd5\x06\x4a\xd3\x7a\x0a\xf0\xcc\xee\xfb\x17\xed\x5f\xf1\xda\xcb\x38\x90\x1a\xd8\x72\x49\x0b\x26\xb1\xa8\xb5\x14\xa6\x23\x03\xf1\x86\x55\x95\xec\x91\xd5\xd7\xcd\x15\x2d\x5c\x83\x6a\x33\xdd\x32\xf2\x57\xe6\x38\xdc\x73\xe0\xe6\xf8\xdc\x06\xf3\xa5\x11\xf5\xb6\xc0\xb4\xe2\x60\xb7\x2a\x88\xa0\x16\x3e\x69\xe5\x8c\x79\xa7\x95\x5d\xeb\x29\xfc\x77\x41\x57\x2d\xcd\x89\xd0\x0b\x63\x6e\x56\x1c\xde\x6b\xca\xbc\xd5\x86\x74\x66\xad\xc5\x82\x08\x85\x0f\x8d\x59\xb5\xc2\x02\xed\x0a\x65\x53\xd3\x99\xd6\x59\x94\x6e\xa0\x4d\x0b\xb4\x6d\xcd\x9f\x78\xd7\x68\xe4\x9d\x04\x4f\x66\x5b\x3d\x5e\xa1\xd2\x00\xb4\x70\x48\x5d\xcc\x3c\x58\x8c\x43\xdd\x08\xe0\xdd\x6a\x55\x31\x83\xbc\xd9\xc1\xc8\x3d\x3a\xe0\x05\x48\x12\xa8\xa3\xa5\x89\xb7\x3c\x13\x0f\xad\x5a\x16\x44\xa1\xba\x2f\x3a\x65\x6b\x25\x0d\xb2\x12\x32\xd2\x5e\x76\xf2\x36\xc5\xa7\x15\xad\x2f\xc5\x02\xbe\x86\x87\x91\x24\xb9\xf2\x34\xff\xe6\xd3\x54\x72\x8a\x6c\x9f\x91\xb8\x17\x0a\xb3\xfb\xd4\x56\xe7\xd1\x8a\xdc\x2c\x1a\xb9\x07\x25\xf9\x32\x0e\x05\x15\x54\xee\x3d\x5a\xc8\xcd\xa8\xc7\xdd\x0e\x50\xd4\xad\xad\x00\x43\x8f\x71\x13\x89\x5c\x56\x6e\xc6\x83\xf4\xb1\x63\x1c\xfe\x30\xfa\x4b\xa3\x1b\x9b\x5e\xdb\x50\x39\x2c\xa7\xf9\x32\xae\xd1\xc7\xcb\xf7\x52\x6c\x94\xf4\x64\x68\xc0\xce\x66\x02\xb9\xc4\x99\x64\x45\x04\xae\x69\xcb\x65\x9f\x4d\x09\xa5\xa2\x63\x3d\x19\x05\xc5\x9c\x0c\x13\x94\x12\x95\xc5\x00\xb7\x5f\x81\x70\x70\x4b\x3e\x84\xce\x32\xc6\xd2\xb7\xb6\x68\xb0\x77\xff\x9c\x8b\xb0\x83\x67\x5c\x19\xe2\x24\xd2\x66\xe0\x73\x15\xbe\x56\xb1\xf9\xfd\x09\x54\xf3\x98\x2e\x27\x40\xe6\x12\x8f\x78\x20\x66\xd5\xf8\x04\xd8\xd7\xd5\x09\xdc\xbd\xcb\xec\x6b\x0b\x39\x63\x6f\xa5\x18\x66\x5a\x9e\xb1\xb7\xfa\x79\xc5\xa7\x66\xbc\xde\x64\xa5\x52\xd3\x4e\x80\xe8\x8b\x51\x82\x4c\xa5\x74\x57\x02\xab\x51\xf2\x96\x77\x29\x90\x00\x26\x8e\x53\xd8\x75\x22\xed\xa5\xc6\x77\x42\x2a\x87\x23\x64\x53\x8a\xb5\xf0\xae\x12\xfb\xa3\xdd\x10\x67\x1f\xa5\x5a\xae\xcf\x4a\x98\x1d\x4d\xb0\xff\xe9\x74\x0a\x47\x33\x8d\x8c\xd9\xd1\x3b\xbe\x60\xb5\x90\xfc\x88\x15\x72\xa6\xc7\xa2\xed\xa8\x02\xb2\x0b\xd5\xf7\x1e\xec\x46\x76\x1f\xd7\x77\x1f\xbc\xb5\x8f\x58\x5b\x71\x3d\xc4\x0c\x7a\x07\x7f\x7b\x0b\x2b\xc2\xda\x09\x50\x26\x16\x14\x15\x45\x17\x8d\x3c\x86\x4b\xb8\x59\xb0\x7c\xa1\x00\x2c\xc9\x46\x1e\x1c\x4a\x59\xd8\x74\x02\x38\x29\x69\xb5\x91\xe7\x89\x94\x46\xba\x25\x6d\x2d\xa1\xeb\x61\xbd\x37\x5d\x1d\xc3\xcb\xa8\xcf\x63\x6f\xcf\x29\xce\xe1\x7f\x51\x3c\xc4\x7d\xb9\x4d\xac\x0c\x4a\x38\x59\x9f\x01\x7c\x23\xbf\xb7\xb4\xf0\xde\x6c\x6d\x1b\x57\x96\xe6\xdb\xe7\x1a\xa8\x7a\xb2\xb4\xcd\x1c\x3b\x87\xf7\xb0\x9a\x9e\x2b\xbd\x41\xeb\xb3\x79\xb8\x8d\x5a\xc8\x29\x25\x1a\xe8\xcf\x71\x7d\x35\xe1\x5e\x7d\xfb\xf9\x04\xd4\xb1\x80\x5a\xc8\x95\xd5\x83\xa8\x13\x03\x3f\x9a\x3b\xfc\xdc\x8c\xd6\x2f\x7a\xa7\x14\x48\xfa\x26\x6e\x0b\x14\x78\x98\xeb\xee\x7b\xc0\xa4\x70\xf7\xde\xad\x58\xc4\xea\x8f\x23\x96\x7f\xac\xff\x85\xc4\x1e\xff\xc6\xb0\x77\x0e\xac\x44\x21\x26\x12\x8a\xd9\x94\x4e\xc1\xc9\xc5\xee\x75\x1d\x8e\xe0\xf9\x8b\x37\x4f\x8f\xe1\x6f\x52\x78\x30\xca\x58\xb9\xc7\xe4\x66\x3f\x92\xf7\xb0\xa8\xd1\x91\xe2\x10\x8c\xd7\x87\x42\xd6\xac\x36\x0a\x8c\xa4\xd7\x09\x70\x56\xe7\x14\x98\x40\x7a\x36\x77\x78\xd1\x20\x03\xe7\x1c\xb9\xc7\x8f\x12\xe0\x8f\xf8\x9c\x4f\x5b\x81\x4a\xcd\x35\x64\x72\x84\x5a\xb6\xc8\x2b\x7a\x4d\xdb\xd9\x92\x54\x2c\x67\x4d\xc7\xe1\x92\x0a\x7c\xf5\x93\x30\x8b\x06\x6e\x28\x6b\x0b\x40\xd9\x9f\x8f\xfb\xc2\x2b\x90\x7a\x83\x85\x31\x1b\xba\x50\x2f\x04\xb7\x6a\x7e\x29\x44\xf5\xb7\x41\x70\xff\x40\x02\xf2\xf6\xc3\x1a\x0d\x9a\xd4\x4b\xff\x1a\x45\x09\xf5\xc4\x6f\x5a\x1f\xf6\x57\xea\x55\xc4\x58\x3d\x09\xce\x90\x58\x53\x57\x1b\x68\x24\x1a\x25\xe7\x8e\x19\xb4\xe2\x53\x0a\xd8\x82\x5c\x53\xab\x2d\x9a\x6a\x6f\x12\x34\x69\x0d\x64\x38\x27\x0d\x7a\xb7\x04\x23\x44\x93\x5a\x69\x5d\x15\xc4\xbc\xa9\x05\x61\xb5\x3c\xa1\x45\x02\x1a\x7a\x05\xe0\xab\xac\x06\x3b\x74\x06\x4f\xa7\xd3\xa3\x5b\x57\x6a\xb8\x1b\x81\x25\x5b\xfb\x17\x7e\x24\x25\x05\x7a\xff\x43\xe3\x5d\xc3\xea\x6c\x76\x04\xd3\xe9\xd4\xc2\xb1\x47\x86\x5e\x1a\xab\x2d\xa8\x2a\x27\x1b\x26\xf8\xf6\x96\xf5\x30\x12\xb5\x5d\x0a\x56\xaf\x3a\xe1\x86\x2e\xb1\xaf\xcf\x45\x4f\x7a\x6c\xf5\xb6\x55\xb2\xbf\xdc\x3f\x4d\x4d\xc3\xa6\xba\x46\x8c\x33\x5c\x86\x0f\xb1\x20\xc7\xb5\x52\x3c\x73\xb7\x65\xdc\x9a\x66\xdd\xc6\x91\x1e\x66\xdf\x83\xb7\xaa\x32\xd3\x2a\xc4\x1c\x8a\xe7\x4e\xfa\xf2\x10\xf9\x71\xe8\x23\xd5\x0d\xd9\xf0\xf0\x5e\x62\x06\xed\xd1\x99\x82\x23\x69\xa9\xe9\x44\xde\x2c\x29\x70\x81\x27\x69\x53\x26\x90\x3e\x05\x4d\xe5\x21\x35\x2b\x20\x37\x6a\xb5\xaa\x8d\x59\x02\x56\xc2\x8f\xa6\xe5\x8f\xc0\x04\x1a\x35\xc9\x4b\x66\x4f\x35\xfa\x8f\x5b\x8a\xb0\x25\xc2\x6b\x4a\xad\x2a\x2b\xd4\xdc\xa1\xa0\x3c\x6f\xd9\x4a\x34\x6d\x42\x0a\x55\x55\x3f\x6e\xf1\x54\x9b\xc4\xfa\xe9\x0a\xf7\xc8\x8d\xbc\x8d\xaa\xe1\x2c\xc9\xca\x93\x15\x38\x5b\xb2\x8a\xb4\x92\x87\xff\xa8\xb4\x38\xee\x41\x0f\xd5\x56\x3f\x4e\x14\xa8\x8b\x4e\xe8\xc5\x32\x60\xec\x32\x3b\x04\x36\xe6\x55\x34\x42\xf8\xe9\x56\x84\x4b\x52\xd0\x3c\x7d\x92\x86\xdb\x63\x23\x91\x50\x9a\xad\x8f\x8f\x26\xc0\xea\x82\xae\x8f\x9f\xa3\x01\xd6\xf8\xf8\xe8\x56\x4e\x55\x5e\x09\x82\x29\x2b\xa1\x4c\x76\xa3\x8f\xa3\x58\x16\xb6\x93\xd8\xb9\xc4\x03\xb7\x73\xbb\x0b\x9a\x52\xf6\xbc\xa2\xe1\xd8\x3d\x1e\xc2\x70\xe2\xdb\xb8\x47\x40\x1a\x72\x3d\xdc\xe2\xeb\xc9\x6d\x25\x10\x8b\x9f\x88\x9c\x62\x36\x9a\x86\xac\x04\xe5\x04\x59\x7d\xab\xb4\x96\x72\x57\xaf\xda\xe6\x9a\x15\x78\x76\xe9\x29\xdb\x45\xeb\xb8\x39\x67\x6c\xa5\x55\x4b\x0b\x96\x13\x41\xa7\x00\xcf\x70\xd6\xcb\xe8\x68\xda\xbd\xe6\x3b\x69\xe9\x17\x51\x8d\x15\x22\xec\x50\xb5\x56\x56\x69\x22\xcd\xf0\xf5\x52\xfe\xd0\x71\xe1\x49\x55\x62\xd1\xe7\x1e\xea\xb3\x52\x87\x32\x41\x97\x5c\xbf\xb3\x10\x56\x4f\x7f\x31\x85\x79\xe7\x39\x32\x53\x09\x5f\x0f\x4d\xbd\x99\x48\x52\x77\x33\xb1\x7c\x55\x0d\x2a\x41\x62\x5a\xc5\xec\x68\xc1\x36\xfe\x2c\x74\xb6\x05\x7c\x4c\x6c\x5e\x47\x27\x07\xa3\xd8\x06\x38\xf1\xea\xe7\xd9\x09\x28\xc3\x81\xf1\x64\xbb\x4d\x00\x5a\x2c\x5b\x83\x65\x29\xeb\x65\x3d\xb3\xdd\xad\x00\x94\x91\xc8\x38\x4b\x3d\x41\xfe\xd7\xb8\xe7\xff\xf6\x1f\xbf\x2e\x13\x87\x11\xc2\x4b\xda\x1a\xf4\x8a\xad\xbd\x81\xb2\x8d\xf8\xac\xe6\x06\x09\x6b\x03\x5a\x5f\x0f\xbc\xfc\xfe\xfe\x53\x5e\xc7\xfd\xb3\x57\x37\xcb\xca\x09\x2c\xf9\x04\xd6\x13\xd8\x84\x94\x4f\xeb\xeb\xa9\xae\xd7\x66\x7d\xf5\x50\x26\x5b\xc8\xb6\xf6\x25\x7b\xc9\x7b\x44\xed\x9e\x5c\xd9\x92\x16\x99\xef\xa0\x65\xb8\x6c\x20\x7d\x25\x14\x90\x8a\x1d\x48\xb1\x57\x5f\x04\x18\x87\x96\x5e\x53\x22\xc5\x0c\x29\x24\x69\x18\xa4\x44\xef\x2a\x0e\x4b\x56\x55\x8c\xd3\xbc\xa9\x0b\xae\xcb\x0c\x3f\x54\x26\xcb\xb7\x43\xb5\x52\xe2\xa6\xe6\x1b\x23\xb3\xb1\x9d\xd0\x50\xd0\x0a\x6d\x3c\x1c\x89\x5b\x66\x60\xf4\x05\xca\x18\xe8\x82\x5e\x52\x91\x69\xd3\x62\x6d\x1f\xa4\x2f\xee\x65\x53\x15\x99\xfa\xf1\x8d\x04\xa7\xd6\xe2\xba\x61\x05\xdc\x9f\x78\x37\x7c\xdd\x38\x54\x00\x47\xda\x07\x0f\x4c\xa6\x57\x74\x61\x06\xe4\xad\xb7\xbe\x66\x79\xdd\x61\x45\x4f\xa7\x1c\xeb\x33\x14\x48\x1f\xdc\x22\xd6\x5c\xab\x86\x3b\x16\x54\x6b\x27\xf1\xd0\x4f\x2f\x17\x74\x75\x45\xb9\x59\x0f\xf4\xf8\xb0\x27\x8c\xa2\x03\x0e\x94\xb4\x72\x67\xca\xe3\x4c\xb3\xfd\x9c\x68\x57\xe9\x84\x34\xed\xdd\x6a\xb8\xa7\x28\x24\x4b\xfd\x28\x33\xfd\x38\x0a\xd1\xb5\x70\xaf\x7d\x38\x9a\xdf\x42\x4b\x09\x6f\x6a\xed\xf4\x44\x2a\x3d\x3d\x85\x3c\x2c\x11\x0d\x74\x9c\x4e\xa0\xa0\x25\xe9\x2a\x61\x20\x01\xea\x12\xc2\xbd\xcb\x4a\x7c\x71\x30\x32\xc4\xa7\x51\xa5\x50\x10\x43\xba\x9c\xe8\xd1\xec\x41\x9f\xe8\xf6\x07\x73\x8f\xf6\x14\x99\x29\xe3\x27\xf5\x18\x6e\x48\xa9\xa9\xf5\x5f\x8a\x8e\x54\x1f\x11\xd9\x26\x88\xfe\x9a\x71\x26\xb2\xc5\x44\x69\x89\x2d\xb5\xd9\xc7\x0b\xab\x9d\x18\x8d\x46\x92\x09\xe5\x15\x25\xad\x62\x43\x42\x8f\x32\xd4\x3f\xa1\xe2\x6b\x36\x03\xed\x22\xb4\x50\x55\x6e\xfb\x1d\xbc\x72\xea\xb6\x3d\xe1\x5b\x3d\xdc\x20\xf8\x85\x56\x8f\x99\xb9\x6e\xdd\xa3\x16\x63\x99\x41\xd6\x02\xf9\xa6\xb7\x2e\x9e\xc3\x91\x26\xa1\x79\xe8\x6f\xa4\xba\x7d\x8c\x5b\xcb\xa7\x9f\xec\x50\xd9\xa6\xc9\xd5\x57\xbb\xeb\x10\xee\x4a\x42\xbe\x0b\x87\x4b\x7e\x38\x56\xed\x8e\x35\xd4\x13\xbb\x91\x71\x8a\x74\xdc\x7f\x54\xb2\x4e\x4b\x7a\x1e\xff\xc4\xa2\xc9\x90\x64\xd2\x13\x4d\x7e\xff\x77\x16\x4d\x64\x0d\xdd\xe8\x64\x2f\x37\xf6\x55\xdb\xe4\xea\x81\xf0\x9f\x47\xaa\x99\x1d\x29\x97\x75\xd0\x83\x9b\x14\x4d\x8e\x8a\xa7\x89\xdb\xfc\x13\xbb\x6b\xe4\x8f\x1f\x3a\x65\xfe\xf9\xe2\x82\xd3\xf6\x9a\xb6\x93\xbf\xd1\x8b\xff\xcd\x44\xfc\xf9\xb3\x5b\x68\xfa\x22\x93\xf7\xca\xb2\x24\x6b\xf5\x06\xbc\x66\x62\x73\xfc\x7b\x9c\xd4\x68\x36\x83\xd7\x35\x2b\x4b\xf8\xf2\x82\x72\xf1\x25\x10\xbe\xa9\x73\xe0\xf9\x82\x16\x5d\x25\x2f\x16\x8a\x89\x6b\x23\xba\x16\xcd\x24\x34\x02\xa6\x35\x5d\x8b\x37\x4c\xbd\x30\xf7\xe6\x8a\x8a\x65\xc8\x8d\x3d\xb8\x02\xe0\x61\x0a\xaf\x67\xa5\x5c\xa9\x6a\x03\xd7\xb4\x15\x6b\xa7\x5e\x56\x9a\x64\xd4\xf5\x48\x59\x0f\x8f\xc8\xa2\xa1\xbc\x3e\x14\x0a\x0e\xaa\x46\x1d\x30\x23\x18\x7a\x83\x30\x72\x60\x4e\x56\xa2\x6b\x69\xf1\xda\x56\x76\x9c\xc4\x01\xe8\x79\x2f\xde\xb9\xe3\x95\x1a\x1b\xc2\x6f\xd4\x69\x25\xc7\x64\xfd\xe8\x94\x24\xe8\x23\xbf\xd4\xbc\xcb\x5c\x0c\x63\xa9\x72\x7c\xa2\x74\xfc\x38\x3a\xcb\x64\x7d\x08\xc2\x6b\xed\x13\x94\x64\xc4\xae\x2d\xe1\x64\x15\x98\xe5\x96\x7e\xb3\xde\xb4\x65\xe7\xf7\x55\x7b\x33\x1b\x41\x73\x01\x7c\x45\x73\x56\xb2\x5c\xcf\x8a\x95\x90\x31\xfe\xbc\x29\x68\x36\xd6\x81\x92\xe4\x0f\xc9\x00\xb7\x76\x18\xd3\x44\x56\xda\xbe\x3c\xe7\x35\x6f\x81\xe4\x99\x41\x78\x4c\x36\xb6\xd3\x1f\x9a\x82\xb6\x35\x5c\xb4\xcd\x0d\xc7\xb7\x6c\xd3\x3d\xab\xfb\x3b\xc8\x87\x3b\x8e\xfb\xfc\xa2\x8f\x0b\xdd\x87\xa4\xba\xe9\xda\x3c\x65\x21\x0d\xbe\xd2\xe1\x9a\xe6\x96\x5f\x05\xc5\x03\x37\x09\x65\xf2\x3b\x4a\x50\x03\xf4\xc8\x01\xe1\xb8\x2b\x84\x14\x11\x4a\xb3\xac\xa3\x80\x1e\x54\xcd\x9c\xd4\x39\xad\xf0\xdb\x89\x87\x06\x55\xd8\x76\xf5\x8b\xfa\xfb\xa6\x59\xc1\x87\x0f\xfe\xa7\x27\xca\x03\x2a\xbe\x78\xbc\xf7\x47\x79\x6c\xa9\x77\x12\x76\x7d\xec\x91\xe5\xc4\x74\x79\x8c\xf4\x66\x0e\x3d\xff\x05\x45\x92\x07\x44\x4f\x89\x7a\x83\x69\xa2\x48\xec\x2e\x3c\x67\xb5\xd7\x94\x27\xa6\x69\x97\x43\x75\xa4\xda\x43\x00\x8f\xfa\x33\x1d\x53\x48\x7f\x7d\x7b\xd8\x7f\xa0\x4c\xd0\x53\x3c\x30\xe3\xb9\xd9\xab\x17\xbe\xec\xc8\xfd\x1f\x57\x19\xc3\x87\x0f\x38\x6c\x03\x23\xcd\xcd\x13\x90\xd2\x15\x13\x2f\xac\xbb\x68\x5b\x8f\xc3\xbe\xbe\x6a\x36\x4d\x0b\x4b\xa5\xb5\x5c\x8c\x39\x98\xa3\x69\x8a\x16\x19\xf4\x0d\x5d\x0b\xdc\xd2\x87\x87\x63\x5b\xb5\xd1\x51\x01\x7a\x1d\xb6\x5d\xad\x6a\x35\xd3\x46\x7d\xcb\x24\xd8\x09\xbc\x87\x7c\x41\x5a\x92\x0b\xda\x7e\x43\x04\x39\x56\x2f\x6d\xb7\xbd\x07\xdf\xce\x5d\x88\xd1\x52\x5f\xca\xc7\xc1\x48\x47\xf6\xa7\xa4\x64\xbc\xd7\x9d\xe8\xfb\xb3\x2f\x71\xe1\xeb\x3f\xcc\x75\x61\x7c\x79\xb6\xb6\x1a\x01\xb4\x52\x01\x92\x03\x9e\x16\x44\x10\x98\x43\xc6\xe0\xff\x9b\xc3\x83\xc0\x84\xe2\xd7\x2a\xb6\x7d\x8c\xa3\x7c\x0a\xcc\x1f\x7a\xfe\xf1\x7f\xd8\xd7\x3f\x5e\x1e\xdf\x0b\xb6\x44\xcd\xa2\xd2\xed\x9a\xed\xcd\x3c\x3e\xad\x3d\x24\x72\xe5\x20\xd1\x9b\xbe\xf2\x2c\x47\x63\x71\xb9\x68\x50\xb6\xcd\x12\x6e\x16\x44\x50\xb9\x75\xb4\x80\x85\x17\x5c\xca\x69\x2d\x80\x37\xea\xf4\x17\x94\x0b\x49\x58\x35\x6d\xb9\xfa\xc2\x45\x77\x01\x4c\x20\xb0\xa2\xa9\x0f\x05\x5c\xb4\x94\x5c\xe9\x87\xe3\x29\xc0\x1f\x3b\x01\x37\x14\x6a\x4a\x0b\x79\xad\xc4\x70\x31\x18\x91\x0e\x8d\x2a\x37\x90\x13\x91\x2f\x54\xe4\x3c\x8e\x6f\xda\x8c\x23\x30\x59\x71\x45\x0b\x59\xa2\x84\x2f\x39\x0b\x0a\x18\xd2\x41\x5d\xad\xb5\x28\x02\x6a\xa1\x51\x87\xaf\x46\x2e\xbb\x7d\x26\x0e\xd1\x41\x9e\x15\x14\x08\x02\xb4\x14\x7b\x41\x73\x22\x65\x3a\xd1\x6e\x66\xd8\x3b\xe5\x50\x50\x29\x60\x2d\xd9\xcf\x14\x87\x42\x5b\xd4\x82\xd3\xfa\x92\xd5\x94\x4f\xb5\x74\xad\x90\xf5\xda\x13\x48\xbc\xcf\x4f\x3c\x09\xe1\xc4\x8f\x24\xa2\x2f\xd7\xaa\x99\x94\x00\x86\x83\xf1\x78\x92\xd0\x82\x28\x13\xbf\x0b\x4a\x6b\x30\x1c\x5b\xc5\x80\xe8\x81\xf6\xbb\x86\x2d\xe0\x7d\x21\x66\x6b\x07\x99\xdb\xdd\x0e\x5a\xbb\x71\xe1\x49\xc0\x77\xbf\xf7\x46\x1d\x32\xdd\xb1\xdf\x00\xd0\x9c\x31\x44\x60\x70\x63\x3f\x71\x75\xe3\x68\x28\x83\xad\x63\xdc\xfa\x30\x4c\x60\x15\x45\x60\x19\x0d\x46\xb3\x3f\xac\xdb\x5d\xd3\x0f\xb0\xba\x17\x02\x82\xf5\x9a\x07\x00\xf6\x44\x42\x04\x21\x41\x07\x1f\x89\x89\xbd\x01\x4a\x9e\x0d\xd9\x78\x7c\x10\x1c\x34\x56\xb8\xed\xea\x20\x24\x4e\x1f\xcd\x73\x7f\xc9\x83\x81\xcc\x66\x2a\xd8\x93\x94\x80\x59\xdb\x28\x93\x06\xb9\xfb\x49\x4d\x81\x33\xd1\x11\x13\xbb\x47\xff\x97\x10\xec\xbb\x1a\xa5\xeb\x60\xe5\x66\x33\x39\x14\x8f\x48\x6f\x08\xb2\x0d\x72\x4d\x58\x85\x26\x37\x17\xea\x23\x54\x44\x08\xda\x9a\xcd\xe0\x66\x91\x9e\x46\x4c\x2f\x52\xf6\xfb\x22\xae\x39\x0e\xaf\x30\xbb\x68\x30\xb9\x1b\xf6\x9c\x67\x44\xa1\x92\x85\xca\xab\x1f\xfe\x8f\x37\x4b\x8a\xe1\x6f\xe4\xae\xe7\x79\x4b\x6f\x68\xa1\x34\x8e\x1e\x5e\x24\x1a\xea\x06\x9e\x4d\x9f\x4e\x61\x49\x8a\xa2\x46\x6d\x67\x34\x8a\x78\xd0\xf1\x58\x14\x91\x65\x74\xec\x0d\x25\x1a\x99\x1e\xdd\xdf\x70\x74\x54\x59\x68\xd7\xaa\x5b\x39\x04\xd4\x81\xe2\xcb\x3c\x8e\x16\xf9\x13\xbd\x46\x8d\x3a\xd7\xa3\x33\x9c\x1f\x8d\xf2\xb1\x81\x3e\xb2\xb4\x70\x8a\x73\xd6\xd6\xe1\x8a\xa8\xaa\x4d\xd8\xff\xc0\x6c\xd4\xd1\x5d\x77\x55\x85\xaf\x69\xde\xc4\x06\x27\xa7\x67\x83\x5a\x5b\xc2\x81\x5c\x34\xd7\x9a\xa2\xd0\xd1\x54\x1e\x43\x81\x19\x2e\x4e\x00\x8f\xce\xa5\x1c\x3c\x5e\xa1\xfb\x33\x90\xa7\xfb\xa1\x58\x30\x7e\x38\x81\x45\xb3\x52\x76\xfd\x4d\xd7\xda\xa0\x0a\x79\xd3\xb6\xb2\x62\x23\x16\xb4\xbd\x61\xea\xe8\xc4\x37\x4a\xc5\xf6\x89\x01\x48\x25\xef\xff\x88\xc9\x2b\xeb\xcb\xc4\xe4\x6d\xfc\xb0\xf0\x0c\x6a\xbb\xda\x67\x13\xd9\x92\xb4\x57\xb4\x4d\x70\x81\x27\x31\x9f\xf4\xf9\xde\x67\xe1\x04\x79\x62\x1c\x29\x5e\x10\x70\xec\x4f\xe5\x06\xbd\xe9\xa4\x0e\x63\xc7\x12\x9e\x04\x93\xbd\x73\x67\x78\xf6\x1f\x73\x46\xec\x3d\xf1\x7f\x24\x73\x48\x91\xc3\x49\xef\x0c\xfa\x47\xf0\x87\xcf\xc5\x20\xfc\x19\xf9\x2c\x22\x9c\xdc\xf0\x04\x7f\x15\x3c\x62\xda\x1b\xef\xeb\x66\x49\xcd\xb0\xb8\x1d\x17\x8e\xa6\x60\x65\x49\x5b\x79\x35\x68\x31\xd2\x30\xc6\x78\xf1\x49\xf6\x9a\xfb\x8a\xc1\x8f\x41\xad\x62\x40\x09\xd4\x3a\x06\x84\x1c\x48\x8a\xde\x3f\x75\xb4\x43\x5f\xea\xb7\x5a\x16\x2f\x5a\x6d\x88\x31\x57\x51\xa6\x8d\x88\xde\xb5\x72\xb0\xff\x47\x56\x3f\xf1\x9a\x3e\xab\x0b\xba\x86\x39\xdc\x7b\x10\x88\xec\x72\x26\xf5\x5f\x56\xcf\x8d\x12\x2d\xe0\x66\x5f\xd8\x3e\x70\x77\x7b\x90\x83\x6d\x6c\xc3\x79\x78\x63\x4f\x8c\xce\xf2\x48\x0f\x8e\x36\xad\x0f\xc0\x99\x99\x06\xf5\xf2\xa6\xce\x89\xc8\xb0\x6c\x28\x92\x20\xf4\x67\xea\x0f\x49\xf6\xfd\xd3\x50\xa7\x38\x5e\xec\x2a\xf3\xf8\xc9\x6d\x70\xbb\xf1\xaa\xf8\x58\x32\x53\xdd\x89\x13\x13\xb7\x40\xf1\x39\x4f\x96\x8c\x16\xc1\x0c\xc0\xc3\xa1\x0e\xb2\x6d\xc1\x54\xb4\x86\x39\xf8\xb3\xd1\x6d\x6e\x16\xac\xa2\x59\x45\xeb\x90\xd1\x7a\xa8\x34\xed\x4e\xfa\x18\x3f\x7b\xeb\x7d\x44\x48\x90\xdd\xbd\xeb\x21\xf5\x6b\x88\x21\xa7\x16\xb5\x57\x21\x1e\xc2\x99\x03\xf9\x76\x8a\xca\x9b\x93\xb0\xc1\x6d\x6f\x2f\x0c\xaf\xae\xfc\x6f\x10\x1d\xba\x75\x34\x7f\x1d\x60\x6b\x0b\x9d\xc6\x47\xbd\x5e\x36\x13\x99\xb0\xf7\x1e\x11\xe8\x5f\xbd\x9b\x81\x0a\x42\x71\x69\x42\xb7\x2a\xc7\x91\x9e\x6f\xd9\x3d\xa5\x2b\x32\xb8\xec\x95\x3f\x82\x07\x01\x4e\x6d\x08\x3b\x06\x73\x78\x70\x02\x0c\xbe\x86\xb8\xd1\x09\xb0\xbb\x77\x7b\x2b\x21\xc7\x72\xc6\x64\x87\x09\x97\xa0\x1e\xfb\x19\x59\xac\xab\x08\x3c\x72\x0a\xcf\x04\x5d\x2a\x49\x58\xc2\x1a\xfb\xe3\xf6\xf1\x8f\x72\xc2\x03\x0c\x4a\x97\xde\x1f\x8e\xfa\xdd\xbe\xf2\x77\x9e\xd6\xda\x5c\xff\x27\x54\xec\x8a\x72\x6d\xb8\xa5\xc2\x46\xab\x53\x81\x7b\x7b\xd3\x1f\x95\x09\x4a\x07\x3a\x52\xd7\xb4\xec\x74\xdc\xce\x13\xef\xa3\x09\x0d\x82\xff\x2a\x5d\x80\x04\xe2\x87\x97\xe9\xea\x60\x5d\x7b\x40\xa7\xca\x8f\x47\x1d\x90\x0e\xa8\x8e\xe4\x63\x89\x44\x30\x81\x19\x07\x0e\xb5\xca\xea\xd0\x2b\xd3\x9f\xec\x0e\xb7\x05\xca\xe2\xe8\xbd\x0f\x87\xb4\x97\xd7\x66\x93\x9a\x6f\xe6\x24\x9d\xc3\xe1\x21\x3e\x8e\xd3\xe5\x4a\x6c\x40\x85\x1a\x44\xdb\x06\x54\x76\xb6\xf4\x92\xae\x57\xca\x3b\x94\xf7\x5a\x3b\x35\x99\xe7\xe0\xd2\xac\xe4\x84\x7d\x62\xc7\x6e\x64\x81\x3f\xa6\xa2\xf8\x1e\x23\x2d\xe1\x1c\xa2\x42\x34\x74\xef\x7f\x2d\xcb\xfe\xc7\x96\x2e\x9b\x6b\x3a\x0c\x4a\x95\x9f\x56\x95\xa9\xc2\xfb\x75\xe8\x92\x09\xfb\xd5\x43\x31\x53\x41\x34\xfc\xa5\xb4\xd1\x8c\x20\xa5\x3c\x8a\x5b\x7a\x2e\xa8\x4d\x2b\x8c\xee\xc8\xef\x23\xbf\x29\x62\x52\x31\x67\xff\xe1\xec\x10\xfc\x55\xcc\x17\x05\x0b\xdf\x6b\x0a\xd6\xee\x1e\x8b\x6a\x36\x34\x12\x0b\xbd\x5b\x12\x7e\x15\x05\x45\x32\x23\xb9\xaf\x9e\xc7\x02\x5d\xec\x7f\xee\xad\x8b\x3d\x82\x8c\x5d\xd6\x4d\x4b\x8b\x31\xbe\x4e\xfb\x50\xfe\x6b\x5f\x28\x3d\xed\x6c\x30\xce\x78\xf2\x5f\x6a\x75\x67\x4e\x6a\xa5\xbe\x83\x8e\xa3\x9a\xb4\x60\x52\xd8\xfb\x12\x1f\xb1\xfe\x9f\x38\xe8\xff\x2f\xcb\x2c\xf0\xef\x6b\xf5\xa8\xcd\x1d\x9d\x07\xa2\x0a\xf1\x4e\x6d\x40\x81\x20\xc0\x82\xf3\x78\xb8\xd8\x58\xa7\x07\x61\x64\x60\xdf\x48\x4b\xf1\xa2\x5b\x58\x52\xce\xc9\xa5\x31\x72\x0f\x23\x22\x44\x46\xc1\x81\x39\x56\xa6\x1b\xea\xb7\x17\xfc\xe8\xc4\xe7\xb1\xf3\x82\xd3\xf5\x60\x6e\xba\xf2\x3c\xe7\xe4\x75\x24\x8c\x7c\x80\xdf\xac\xbb\xb7\x56\x70\x1a\xe0\xf8\x7c\xfb\x5a\x90\xfc\xea\x0d\xc6\xee\x48\xe8\x3a\xbd\xa1\x44\xb5\xb5\x58\xef\x77\x16\xc6\x31\x1d\x05\xe3\xb0\x07\x0e\xcc\x75\xc0\x33\xfd\x86\x96\x45\xe5\x08\x24\xdd\x74\xea\xa1\x33\x15\xe1\x41\x73\x80\xf0\xfb\xaf\xf5\x45\x2a\xd8\xed\xbf\x2c\xc7\xc7\xbf\xef\x6e\xef\xdb\x38\x2b\x57\xa1\x01\xc3\xe5\x87\x2e\xa4\x1a\xba\x0e\x0e\x5a\x38\xab\xb4\x1c\xbd\xa7\x53\x14\x8c\x7c\xbb\x63\xf3\xda\x8a\x22\xd4\xb7\x2a\xb2\x9a\x06\x1d\x86\xe6\xc2\x4b\x53\xe3\x62\x89\xc5\xe1\xae\x2c\x20\x8c\x51\xeb\x79\x97\x9d\xb8\x3e\xe4\x68\x63\x5f\x23\x15\x3b\xc6\x35\x6f\x87\x2b\x61\x80\x19\x5b\x93\x4b\x6a\x48\xd4\xc5\xef\xaa\xd3\xd9\x0c\x4e\x8b\x82\x69\x5b\x54\xe3\x39\xb1\xbc\x60\x35\x41\x1f\x2c\xdf\x64\x94\xd4\x28\x85\xd6\xca\x9d\xd7\x0f\x2b\x04\x73\xd4\x57\x85\xdf\x55\x64\x20\x1b\x0b\x29\x00\xb5\x44\x3b\x8d\x25\x59\x05\x4d\x74\xc4\x1f\x1b\xec\xc7\x2f\xd3\x31\x7c\xe6\xe0\x61\x23\x11\x74\xc7\x56\xd0\x98\x08\x8d\x8c\x51\x7b\x95\x36\x12\x0e\x9c\x47\x26\x50\x34\xba\x89\x17\x20\x43\x0b\xd1\xc6\xd6\x5a\x49\xd0\x91\x9d\xaf\x0b\x05\xe0\xc7\x8b\xf1\xe3\x88\x21\x90\x41\x4b\xdd\xd0\x3f\xc6\x06\x1c\x40\x3f\x30\xd9\x10\xad\xce\x82\x20\x36\xc3\x86\xbd\x7c\xd5\x52\x12\x84\x44\xf5\x5a\x46\x5e\x28\x78\xf6\x60\x44\x10\x52\x55\x63\xf5\x97\x6d\x46\xfc\xe8\xd9\xa6\x45\x1f\x31\x3a\x44\x80\xb9\x58\x78\x51\xb1\x4f\x92\x46\xa2\xe1\xda\x78\x01\xad\xf2\x66\xb9\xa2\x82\x61\xe6\x15\x79\x4c\x4d\x63\x1b\xf1\x2d\x3e\x40\x72\x85\x9b\xda\x3a\xff\x7a\x3e\x89\x12\x02\x53\x89\xbe\x7c\x67\x3d\x43\x01\xe8\xc0\xaa\xbd\x91\x3d\x2f\xd6\xaa\x8a\x61\x68\xd7\x63\x17\x21\xa7\xe7\x3e\x79\x1b\x37\xd9\x63\x9d\x55\x78\x70\xeb\x4e\x6b\xdd\xec\xcc\xf2\x7a\x91\xe3\x36\x3d\x57\xa2\xe1\x68\x03\xa6\xd4\xf3\xbb\xf7\xed\xb4\x4d\x71\xe5\x82\xfc\x99\x5b\xf9\xa3\x47\x8f\xee\x7b\x86\xdc\x26\xc0\xdf\x1c\x2a\xd7\x0c\x25\x2e\xae\x6f\x7a\x07\x3a\x06\x88\xba\xef\x2f\xd0\x4b\x40\x59\xa8\xe0\xad\x3f\x0a\xf5\xb1\xf6\x7a\xb4\x61\x3e\x46\xac\xcc\xd6\x28\xc2\xa8\x4d\x86\x97\xf2\x8c\x81\xe7\xfb\x36\x76\x96\xd8\xf7\xee\xe9\x41\x19\x0b\xec\x20\xce\xbd\x31\x94\x19\x8d\x16\x3e\x66\xf4\xd4\x8d\x1b\x02\x76\xb9\xc0\xac\x1c\x34\x1b\xc3\x23\xb8\xef\xe0\xdb\x98\x35\x17\x34\x6f\x96\x34\x5b\x58\x53\x6f\x0b\x0d\x0d\xd3\x5f\xd1\xa5\x52\x1b\x78\xce\x5b\xcc\x7a\x48\x8c\x46\x23\x34\xbe\x30\x83\xb2\x9a\x40\x6d\x0b\xae\x6c\xdb\x4d\x5f\x13\xed\x94\xa1\xf7\x96\xf9\xa9\xcc\xd0\xc7\x76\x62\xde\xf4\x58\x99\xd9\xb5\x99\xcf\xbd\xf1\xdb\xe1\x6b\x83\x6d\x4c\xe8\x42\xea\x4b\xaa\xef\x6b\x92\x90\xc6\xc7\xc6\x65\xb5\xe3\x42\x5b\x1e\xa8\x8b\xf9\xa1\x8d\x6c\x1f\x1b\xa9\x1f\x8c\xfa\x3e\x24\x7d\x3b\xfc\x81\xf8\x25\x8a\x98\x47\x23\x4b\x39\x5a\xc1\xb5\xdd\x40\x7f\x3e\xf7\x23\xf7\xd8\x31\x45\x83\x78\x65\x0c\xd3\xf7\x1c\x03\x2b\x33\xbf\xcb\x42\x5b\x3e\xa6\xbb\xf4\x43\x41\x7b\xb4\xa5\xe6\xa1\x74\x4e\xd4\x23\x29\x4b\x9b\xd1\xa2\x04\x5e\x02\xaa\x71\xbc\xaa\x09\xe7\x98\xe7\x43\x9c\xf1\x23\x19\x63\x3d\xe0\xc8\xdf\xf7\xe4\xef\x31\x42\x26\x49\x43\x6e\x03\x0e\x6c\xb9\x6a\x38\x47\xf5\x96\xdc\xee\xb5\xe5\xad\x01\x68\xd1\xd8\xbe\x33\x46\x6d\x3c\x30\x9f\xc5\xc0\x3d\xa8\xe1\x2e\x3c\x48\x31\xd6\xf8\x60\x1d\x60\xac\x91\x13\x4e\xbd\x3f\xc3\x55\x5e\x41\x92\xea\xfb\x1e\x63\x1a\xbc\x01\x16\xc4\x26\xeb\x31\x64\x29\xf9\x78\x3b\xdf\xba\xcc\x0c\xd8\x96\xff\x41\x93\xdf\x27\xf3\x6c\xbf\xbc\xab\x84\x61\xbf\xc3\x3c\x79\x2b\x83\x37\x15\xcc\x69\x6e\x4d\x0a\xd5\xd7\x57\x2e\xb0\x0b\x7e\x90\x3c\x1d\x37\x66\x4b\xb5\x86\x43\x45\xf4\x29\x9b\x36\x1b\x43\xd5\x34\x2b\x25\x33\x8e\x4c\x90\x48\x58\x11\xce\x8f\x21\x6f\xba\x5a\x00\xc9\x45\x67\xc5\x4c\xe3\x91\xab\xa2\x19\xb1\xf9\xfd\x44\x40\xa8\xcf\x70\x4a\xf4\x0e\x05\xfc\xe7\xee\x5d\x33\xe1\x80\xcb\xcd\x66\xf0\xa4\x59\xae\x3a\x41\xcd\x58\x2f\x1b\x52\xa9\x51\xd6\x30\x87\x1f\x88\x58\x4c\x97\x64\x9d\x99\x87\x78\xf9\xfd\x95\x89\x82\x93\x59\x24\x6a\xc2\x36\x35\x1c\x6e\x15\x00\x56\x4b\x00\xe6\xb3\xf1\x03\x62\x65\x56\xc3\x23\xf7\x79\x5f\x46\x8e\x04\x18\x72\x72\xe3\x31\x4e\x04\x54\x94\x70\x01\xda\x07\xe8\x2e\x8e\xeb\x10\x71\x9f\xf1\xf1\x04\xdf\x3b\x17\xa4\x40\xc7\x1f\xdb\xb1\xe1\xfc\xc6\x4e\xdc\xcd\x6b\xf0\x84\x51\x4c\x5b\x53\xe4\x38\xc6\xe9\x6b\xf4\x89\xd3\xa4\xa0\xed\x66\x55\x30\x15\x47\x0a\x13\x58\x92\x2b\xea\x42\x06\x8a\xe6\x86\xb4\x85\x87\xff\x7f\x2c\x95\x1c\x84\x07\xbd\x13\x1b\x7a\x07\x76\x69\x8e\x6a\x13\xb4\xc8\xa2\xc5\xba\x79\xed\x71\x8e\x96\x1f\x7b\x82\x7e\x8e\xd3\x4b\xaf\x97\x3a\xbe\xd6\xc1\xf1\x35\xb0\xe4\xc9\x83\x3b\x3c\xb9\x43\x22\x08\x85\x95\x38\x8c\xd5\x3f\xc9\x59\x6d\xb7\x70\x38\x57\xc7\x60\x13\x93\xfd\xb8\x13\xfc\x14\x43\x72\x97\xa0\x33\x3e\xdb\x00\x45\xb8\x09\xcc\xd1\x84\xe6\xb7\x89\x00\xc3\xe8\xac\xec\x87\xa6\x93\x1c\x00\xeb\xf5\x83\x16\xe1\x7a\x7e\xd4\xd9\xb9\x23\x50\x88\x0a\xd4\x21\x7b\x70\x59\x62\x76\xbb\x99\x0e\x04\xe6\x28\x07\x82\x1f\x9c\x8b\x96\x5c\xd3\x96\xd3\xac\x9c\xb8\xed\x99\x74\x14\xfe\xec\x01\x36\x76\x47\xd8\xe8\x85\xd8\xd8\x3f\xb4\xc6\xe7\x8f\xad\xf1\x99\x82\x6b\xfc\x7d\xa2\x6b\x7c\x4c\x78\x8d\x1e\xa9\xec\x0c\xb0\xa1\xd4\x5f\x30\x57\x8a\x2d\xeb\x08\xe3\x11\xcb\x30\x5d\x59\x58\x13\x20\xb1\x7e\xe3\x8a\xd2\x55\xac\xde\x50\x83\x79\xbd\xa9\xf3\x8c\x4c\x00\x6b\x84\x3a\x8d\x83\xc4\xd8\xb1\xba\x1b\xbf\x0f\x57\x9e\x82\xa4\xa4\xd6\xce\xfd\x86\xc2\x55\xdd\xdc\x04\x0a\x06\x25\x01\x3b\x1d\x00\x2b\xe1\x86\x1e\x5e\x53\x58\x92\x02\xcd\x84\x90\xdd\x95\xa4\x0d\xc4\x3a\xd9\x8b\x33\x25\x30\x7e\x25\x38\x1e\xf4\xfa\x08\xc2\x40\xda\x93\xd4\x46\x8f\x7c\x97\x3c\x52\x59\x89\x58\x39\x63\x6f\x1d\x3b\x34\x30\xcf\xde\xdd\xbd\xfb\x36\x75\xa7\xf6\xce\xe0\xf1\x14\xb7\x40\x9f\x31\x5a\x28\xf6\xf5\x1d\xde\x05\x4b\x67\xca\x75\x72\xb7\xa1\x30\x01\xbf\x24\xea\xd6\xe7\x09\xbb\x65\xe3\x6e\xd5\xe8\x9f\xa1\x4e\x84\x98\xf5\x9e\x7e\x8a\x3e\x68\xaf\xd8\x58\xfd\x7b\x48\x32\x3a\x96\x0d\xe4\xe9\xed\x15\x8c\x69\xa4\xaa\xbf\xa8\xe9\x38\x49\xd0\xb6\x38\x5b\xf9\xbb\x2f\xa9\x4b\x31\x5b\x23\x50\xa5\xc4\xa2\xa2\xe2\x55\x46\x3d\x9e\xad\xf4\x26\xc4\xea\x53\xef\xf2\xa9\x3e\xd8\x6b\x60\x20\x3c\x2d\xa6\xe7\x5d\xdd\xd2\x55\xd3\xda\xe8\x03\xc6\x0e\x1b\x5b\xe9\x94\x1c\xd9\x22\x7d\x74\xbc\x69\x89\x55\x75\x6b\x7d\xf2\x7e\xd1\xbe\x4c\x34\xf8\x1f\x51\x60\x0e\xee\xbb\x43\x31\xb9\x66\x36\xde\x97\x09\x2b\x2b\x41\x7c\xdb\xd5\xb9\x6e\x2e\x1b\x9a\xb8\x29\x2a\x3a\xaa\x4d\xaf\xd5\x3a\xfa\x9e\xc0\x11\xa9\x8b\x23\xf4\x7e\x63\xa4\x52\xa1\xa8\xdd\xb9\x85\x81\x05\xe3\x9b\x2d\x17\xa4\xc5\x48\xc3\xc9\x78\x15\x3b\x62\x44\xa5\xe3\xbb\x05\x71\xc8\x0c\x9f\x97\xff\xf9\xd3\xdf\x16\xe2\x30\x1e\x85\xd3\x2d\xe7\x79\xb7\xec\x2a\x79\xb9\x96\xa7\xe2\x90\x0c\x12\x2d\xd7\xf0\x3e\xea\x07\x95\xd4\x22\x17\xba\x53\x6b\x38\x5b\xd4\xab\x7a\xa9\x3d\x91\x05\xe3\xf3\x06\xf8\xb7\x11\x17\xed\xe6\xea\x9b\x41\x3d\x84\xc7\x40\xda\xf0\x8c\x9a\x60\x1c\xe5\x27\xf8\xbc\x42\xb3\x72\x3c\xf1\xcc\x9a\x1e\xbe\xd5\xe1\x16\x46\xc7\x3b\xdb\xfd\x5d\xa8\x5b\xe7\x26\xf8\x8d\xc4\xff\x4d\x48\x5c\xad\xf7\x67\xa2\xf3\x4f\x26\xf4\x8f\xa0\xf4\x20\x18\xb9\xab\x12\xe5\x4c\x32\x48\xff\x59\xbd\x3f\xc4\x07\x90\x7d\xc4\x95\x17\x0d\xf3\x92\x77\xf6\xf3\x64\x3d\x61\x6f\xcd\x59\xe3\x2c\x20\xfe\x55\x62\x98\x3c\x78\xf8\x9b\xed\xc1\x2f\xb1\x34\xf2\x43\x04\x68\xbd\xfe\xb1\x94\x65\xd4\x9f\xaf\xa5\xec\x31\x51\x24\xaa\xc5\x18\x59\x6a\x9f\x47\x5d\xb9\x91\x6a\x64\xb1\x49\xb5\xe0\x4a\xb5\xf4\x72\x6c\x12\xb3\xf5\x03\x0a\x84\x5d\x46\xee\xfb\xef\x95\x10\x74\x0c\x87\x7a\x88\x87\x5e\xbc\x6c\x0f\x44\xd0\x71\x46\x87\x80\x98\xb1\x1e\x9a\x30\x4d\xc7\x40\xd3\x00\xc3\x89\xc6\x91\xa2\x1d\x44\x8b\x9d\x43\x9d\x62\xf3\x18\xd6\x29\x88\x56\x8a\xd3\x21\xa1\x3c\x9f\x7e\x6d\xf8\x61\xe2\x42\x69\x59\xd3\x77\x81\xd7\x55\xa4\xf0\x09\x8f\x7b\x08\xc3\x0d\x0e\xc7\xba\xd6\x23\xb8\x0f\x80\xb5\xa2\x29\xd8\xb8\x53\x98\xc7\x53\x35\x0a\xff\xeb\xad\x60\xd4\xc6\xcc\xea\x5f\x82\x7b\xec\x91\x26\xfe\x37\xee\x31\xcc\x3d\x96\xe4\x8a\xa2\xfe\x6f\x2a\xda\xcd\x13\x22\xf2\xc5\x2b\x1b\x52\x3f\xfa\xe2\x5b\x24\xd9\x66\x21\x0f\xb0\x9f\x5d\xfa\x40\x49\x62\x7a\x97\xb0\x72\x6b\x3e\x98\x5c\xd9\x1e\xf5\x7a\x8d\x03\x79\x11\xdb\xaf\x67\x78\xe0\xa7\x82\xc0\x54\xca\x68\x56\xbf\xb7\x09\x42\xa5\xcc\xf8\x79\x4f\x57\x81\xf2\x12\x4f\x6a\x2a\xe4\x78\x4f\xeb\x42\x8f\x33\x7b\x0f\xe5\xb1\x1b\xc0\x71\x30\x90\x63\x95\xc2\x43\x01\x3b\x56\xff\x4c\x80\x1d\x57\xf7\x1e\x28\x0c\x1d\xe3\xe4\x6f\x53\xd1\xe6\x12\x69\x72\x9c\xdb\x51\x38\x84\xdc\x0b\x6a\xc8\xca\x2c\x9f\x32\xf8\xba\x7f\xcf\xc5\x4d\x9f\x4f\xcb\x09\xe4\x53\x3b\xca\x7c\x6a\x46\xb5\x08\xaf\xb5\x78\xb1\x56\x23\x4a\x5d\xaf\xf3\x29\xfa\x42\xe4\x53\x2b\xa2\x04\xc1\x20\xc3\x01\x3e\xa7\x6b\x31\x81\xdc\x09\x37\xe9\x40\x8d\xfd\x46\x72\x66\x7e\xc4\x46\x33\x5a\xec\x17\xe6\xb0\xd6\x2b\x32\x65\x70\x6f\x0e\x0f\x92\xeb\x93\x7b\xdd\xf5\xce\x89\x90\xe6\x7a\x84\xe4\xde\x4d\xf4\x08\xb4\x03\x62\xea\x9d\xa9\xf4\x2c\x8e\x1c\x25\xea\x9e\xad\x3f\x70\xbf\x75\x18\xb8\xee\xd7\xcd\xa1\x23\x1e\xfd\x2b\x4b\x12\xfc\xcf\xc6\xa3\x63\x2b\xd0\xb2\x6a\x6e\x52\x46\xa0\x2e\x19\xca\x90\x75\xa7\xcd\x89\x12\x65\x29\x35\xe5\x12\x2f\xb8\x11\xbc\x2a\x5e\x46\x6b\x24\xde\xc3\xb7\xb1\x75\xdc\x77\xb8\xe3\xf1\x96\xd7\x55\x82\x2d\xf1\x81\xa0\x17\xe8\xd6\x86\x4f\x77\xe1\x44\x75\x12\x29\xce\xbb\xa5\x51\x5a\xb6\x94\xaf\x9a\x9a\xb3\x0b\x56\x31\xb1\x51\x97\xe0\x4a\xfb\x9b\x72\x95\x9d\x8e\xd4\xda\x9a\x7e\xd5\x36\x2b\x72\xa9\xd4\xa3\x1d\xbe\x4b\xa9\x37\x26\x0d\xaa\x31\x8c\xeb\x5b\x22\x48\x85\xef\xd1\x13\xeb\xcf\x7a\x81\x6a\xd3\x45\xdb\xdc\xd4\xe6\x86\xba\x68\xb8\x7a\x20\x95\x93\xa8\x2f\xf1\xc5\x4b\x83\xaa\x9a\x0e\x15\x9d\xf9\x15\x88\x16\x53\xb3\xd5\x80\x89\x41\x57\x15\x11\x65\xd3\x2e\xd5\x5d\x9b\x40\xde\x12\xbe\x00\x6d\x78\x31\x74\xe9\xd6\x69\xef\xbc\xa1\x26\x6b\x3c\x55\x7e\xf8\xd1\x4d\xdb\xee\xdc\x1d\xe1\x7c\x9b\x9a\x86\xd6\x95\xaa\xc3\x89\x01\x6c\x38\x50\x2a\x98\x69\xf8\xad\xa5\x39\x65\xf8\x9a\xdc\x07\xe2\x9b\x50\x7a\x0f\x8a\x45\xa1\x7c\x00\xee\xa1\x41\xbe\x44\x8d\x7b\x6d\x59\x4a\x22\xd2\x6e\x55\x48\x50\x53\x80\xa7\x6b\xb2\x5c\x55\x94\x1f\x6b\x00\xc6\x13\x42\x71\xcb\x37\x9b\x15\xd5\xcb\xa7\xc6\x64\x3f\x8c\xad\x2e\x44\x57\xf5\x5e\x52\x54\xd5\x1f\x30\x5c\x4f\xf1\x54\xbd\x85\xc6\xd5\x8d\x6d\x96\xb6\x91\x0b\x6b\xe9\x45\x71\x89\xe7\x7a\x6b\x71\xb4\x75\x0d\xec\x7e\x49\x6d\xa6\xa9\x73\xb1\x8e\x56\x49\xeb\x96\xed\x31\xbe\x3d\x89\x9e\xb5\x78\x35\x3b\xd7\x77\x89\xf6\xc0\x05\x67\x3a\x2b\x8d\xa7\x86\x97\x7e\xf1\x8b\xa4\x73\x46\x60\x83\x4b\x6b\xde\xb5\x34\x53\xdb\xf8\x59\x8d\xaf\xe1\x2f\xc3\x48\xf0\x91\x29\x41\x72\x58\xca\x2f\x03\x3f\xab\x07\x53\x37\xc3\xb3\x07\x6f\x83\x61\x0f\x10\xd8\xdf\x5a\xb2\xe2\xe1\x0b\xaa\xf2\xa2\xd7\x34\x3b\xb1\xf1\xa7\xcc\x7e\xc7\x98\x94\x36\x03\xa4\x51\x21\x1a\x3b\x5c\x43\x9b\x54\xb2\x2a\x64\x28\xea\x29\x30\xda\x9e\x8f\x9d\x05\xb5\xee\x68\x60\xff\x7a\x4f\xa5\x3d\xa2\x71\x75\xf2\xa6\xb6\x4a\xd1\x60\xf8\x29\xc5\x58\x1f\x69\x76\xae\xbd\xa7\xc8\x58\xdf\x44\xe3\xd5\x34\xf3\xb4\x8b\x97\x51\x1f\x8c\xd6\x81\x3d\xb6\x77\x59\x6f\xf1\xa8\xd3\x90\x85\x32\x8b\xd5\x4d\x85\x4b\xf5\x14\x69\x46\xc7\xfe\xf2\xec\xb2\x5f\xb4\x96\xf2\x0c\x43\xd6\xe1\x15\x5a\x7a\x49\xda\xa2\xa2\x9c\xab\x5c\x6c\x54\xee\x94\x83\x44\x10\x6d\xc6\xbd\xf7\x48\x7b\xbc\x60\x12\xd3\x74\x47\x7f\x7b\xf6\xfd\xf7\xf0\xfc\xc5\x1b\x7b\xd6\x20\x63\x0b\x6c\xb1\x0f\xfd\xd3\x4a\x9e\x51\x53\x80\xd3\x7a\xe3\xde\xd8\x54\xb1\x19\x72\xc1\xb8\x1a\xae\xb3\xb6\x4e\x77\xbd\x24\x1b\xed\x98\x87\x90\xf5\x43\x61\x9c\xef\x46\xf2\x44\xce\x2e\x6b\x52\x1d\x18\xcb\x0a\x20\xce\x05\xc2\x44\x5d\x18\xa0\x39\x23\xa6\x9b\x7f\x83\x9c\xa7\x01\x56\x0d\x1f\xf4\x4f\x69\xff\x7c\x1e\xd4\xef\x6e\xe7\x77\x3a\x2a\xec\x00\xc7\x53\xdc\xc3\x67\x77\xa1\x12\xc5\x63\x4b\x66\x06\xbb\x79\x52\x8a\xe9\x38\x7f\x01\x67\xd5\x10\xb7\x6d\xbb\xfa\x35\x2b\xe8\xd3\xb2\xf4\xb4\x39\x26\x93\x20\x2b\x68\x2d\x98\xd8\x4c\xc0\xd8\x1d\xdd\x4e\xb6\xec\xa6\xad\xb0\x8c\xe1\x15\x4d\xba\x1d\xf8\x41\x71\x1c\x0c\x08\x81\xe0\x2d\xc2\x0a\x3b\x5a\x3f\xe5\xdf\x6d\xb5\x1f\xc6\xbc\xbf\x5f\x4f\xdb\xcb\xf0\x2d\x72\x49\x36\x17\xf4\x8d\x4e\x1d\xa7\xcd\xa1\xf4\x8e\x7e\xec\xfa\x40\x15\xbb\x2e\x4d\x74\x7d\xa0\x19\x80\x2d\xc8\x9c\x62\x29\xbe\xcc\x85\x30\x21\x05\x74\x1d\xf1\xad\xd0\x58\x2b\x32\x88\xb0\x81\x41\xdd\xcd\xd8\x8e\x62\x9d\x32\x83\xf0\xdf\xe7\xf3\x06\xb3\xb8\xb6\xcd\x12\x08\x94\x84\x55\x92\x20\x2f\xcc\xee\x56\x09\x50\x75\x54\x1e\x1c\xae\x12\x38\xfd\x2f\xe6\xe4\xe0\xfe\x1b\x11\xc6\x63\xe9\x4b\xbc\x86\x49\x74\xdc\x24\x56\xf6\x21\xa9\x94\xc6\xb8\xc9\x93\x39\x05\x26\x5b\x12\xc4\x19\xe3\x67\x9d\x01\x40\xc3\xc1\x68\x31\x9a\x6b\x45\x4c\xe2\xe8\x36\x35\x8b\xc4\xfb\x8d\x97\xe1\x60\xfb\x5e\xa7\x15\xa7\x43\xa2\x4d\xfb\xb4\x0a\xe5\x1a\xbf\xef\x41\xe7\x1e\xa3\x14\xe8\x25\xe7\x30\x55\x7d\x28\xa9\xcd\xe4\x56\xfa\xf5\xa2\x69\x45\xde\xa9\x88\x37\x11\x2b\xf0\x43\xfa\x22\x24\xb8\x8d\x24\x3e\x44\xd7\x75\x1f\x4f\x41\xba\x67\x7f\xc9\x8c\xd8\x0a\xf7\xc2\x33\x89\x95\x2e\xc9\x47\xdd\x08\x9f\x64\xac\x64\x2f\xdb\x78\xd5\xbc\x2a\x7d\x0b\x27\x26\xb8\x49\xbe\x6d\xb9\xb5\x15\x69\x5d\x95\x80\x04\x86\xd6\x6f\xc3\x68\x55\xe0\x02\x5a\xcc\x5c\x6f\x5d\x9e\xc1\x65\xb9\xde\xbd\x1e\xaf\xba\x5a\x4e\x0d\x63\x6b\x52\xc5\xe2\x6e\x06\xdd\xdd\x54\x0a\x5c\x79\xa3\xcb\x17\xa4\xbe\xd4\xb6\x72\x07\x81\x27\x80\xdb\x65\xc3\xc7\xa1\x77\x10\x3b\xd6\xfa\x49\x27\xdb\x54\x04\x01\xb4\xb3\x24\xe4\x41\xc4\xa5\x6b\xdb\x15\xf0\xfc\xaf\x07\x7c\xd1\x7a\x4f\x2d\x69\x01\xdc\x2c\x8c\xf3\xff\xb7\xf7\xa4\x4c\x5d\x45\xfc\x5b\x58\xc7\x85\x7a\xbe\x76\xc7\x6b\xff\xb5\x63\x87\x9c\x18\xbc\xa5\x30\xae\xba\xf2\x8a\x1f\x03\x05\x56\x73\x41\xea\x5c\x45\x95\x36\xbd\x1f\xbb\xbf\x33\x9a\x8a\xa7\xdc\x87\xe5\x77\xe5\x00\xcd\xe7\x73\xb0\xf7\xe4\xd1\x87\x0f\xe0\x9a\xc0\x17\xca\x34\x16\xee\xdc\xf1\x8c\x14\x9d\x9b\xb8\x37\x30\x77\x97\xbd\x8d\xd4\xd9\xfe\x61\xb9\x4e\x47\xa4\x56\x76\xdc\x87\x2a\x98\xca\x21\x7c\xf8\x00\x61\x81\x27\xbe\xdc\xb9\x03\x6b\x94\x69\x8c\xc9\x6e\x34\x6b\x2d\x76\xf4\xf2\x99\xfe\x4b\x3d\xd8\xfc\xbb\xa4\xd3\x0a\x4b\x68\x59\xc2\x53\x9e\x93\x8a\xd4\x82\xfe\x23\x75\x85\x4d\x55\xc4\xba\xc2\x3e\x7f\x2b\x95\xe7\xb8\x9f\x0a\xe1\xe7\xe0\xf1\x44\xb3\xe8\x5e\x8e\x9d\x84\x0a\x09\x7b\x8c\x4c\x1d\x44\x63\x0f\x8d\xde\x0b\xc2\xcf\xe3\xa8\xc9\x7a\x02\x3f\x07\x4d\x46\xa2\xf1\xb4\xeb\xde\x5d\x54\x02\x1f\x5b\x03\x77\xd5\x13\x16\x88\xc6\xc9\xed\x3f\x5b\xa3\xed\x94\x4a\x2b\x2e\x8a\x5f\x5d\x1c\x0f\xde\xc1\x9d\xff\x25\xf6\xe6\xdf\x3b\x9f\xcc\x3f\xcb\xde\xfc\xfb\x87\x81\xd0\x76\x02\xc3\x81\x20\x8c\x3d\x68\x32\xce\x83\x2e\x93\xa0\x77\xee\x5d\xd7\x53\x4f\x42\x33\x27\xb3\xb6\x59\xe8\x6d\x3d\x94\x3c\xf6\x11\x3d\xfe\x25\x88\x7b\x8f\x80\xf9\xbf\x11\xf7\xfe\x27\xcb\x25\xad\x69\x2b\x05\xb8\x8f\x7b\x89\xf2\x89\x98\x09\x84\x00\x73\xd0\x7f\x05\x91\x33\xba\x5a\x1f\x4b\xea\x8f\x7d\xe2\x34\x78\xde\xb0\xf0\x17\x4e\xe1\x92\x89\x45\x77\x31\xcd\x9b\xe5\x2c\xef\xde\x35\xef\xf8\x0c\x5f\x6d\xb8\x68\x29\xd1\x6f\x36\xf2\x83\x19\x88\x86\xf2\x27\x3d\x33\x20\x90\xad\x1a\x21\x85\x32\x4c\x76\xc4\xea\x92\xd5\x4c\x0a\xa3\x0a\x80\x67\x6b\x69\xec\x2c\xcd\x4d\x70\x3d\x81\x32\x5b\x8f\xe5\xff\xe5\xbf\xe3\x09\x50\x91\x4f\xa1\xab\x05\xab\x9c\xde\x57\x0a\x7a\xe6\x22\x22\x5a\x77\xdd\xec\x5d\x65\xca\x20\x4a\xc7\xa5\x1b\x9f\x94\xf2\xd7\x4a\xa1\xa1\x35\xd9\xd7\x98\x9a\x7f\x3d\x08\xca\x76\xee\x81\x5c\x10\x31\x81\x4b\x76\x4d\x55\x04\x0a\x1d\xe6\x51\x4e\x42\x8f\xce\x5c\x32\xb5\x3b\x8f\xbe\xbb\x51\xb3\x6c\xc0\x17\x4d\x57\x15\xc0\x45\xb3\xda\xa9\x9d\xf4\x67\xb2\x70\x2f\x87\xea\x06\xbc\x6a\x1b\x65\x20\x7a\xb1\x81\x32\xd6\x61\x38\xab\xd9\x75\x64\x64\x3b\x71\x99\xec\x43\x1f\x88\xfe\xcd\x3d\x8c\x5b\x22\x7f\x55\x84\x0b\xd4\x92\xa2\x5b\x38\x5c\xd0\xb2\x69\x4d\x7b\x0f\x5d\xfd\x85\x0a\x15\xf4\x1a\x17\x52\x76\xb2\x8d\x26\xee\x41\x22\x56\x72\x29\xa2\xde\xa2\xa1\x3c\xd3\x34\xf4\xd6\x4a\x32\x69\xb0\x49\x55\xd7\xa7\x6e\x04\x35\xaa\x5f\xbe\x0f\x34\x84\x8b\x8d\x8b\x0c\x63\x0e\x1d\x4d\xbd\x4d\x9b\x71\x4a\x8b\xf1\x58\x23\x8e\x5d\xd3\x6a\xa3\x36\xc8\x81\xf5\x7b\xd3\xdb\x04\x2b\x06\x0b\x30\x7c\xeb\xef\x6a\xbe\x6a\x9a\x2a\xa4\x6e\xbb\x65\x38\x10\x38\xd3\x24\x53\xd3\x9b\xd7\x94\x16\x6f\xcd\x52\xab\x0d\x40\x40\xf6\x36\x0c\xff\x23\xf6\x8f\x04\xb4\x73\x0b\x69\x2e\xf7\x77\xd9\x41\x1a\x17\x21\xc0\x75\xb0\x93\x3e\xf7\x3e\x1a\x1c\xc4\x27\xef\x2b\xbd\x51\x34\x98\xfd\x36\x97\x0b\xd4\x11\xe9\xae\x14\x25\x45\xea\x7b\x63\x20\x14\xd2\x5b\xdc\xb4\x68\x6a\xea\xbb\xdf\x2a\x95\x64\x53\x53\x78\x8c\x2b\x0d\xc7\x16\x92\x1e\xab\x81\xa3\x62\x1d\x65\x35\x5d\xbb\x28\x29\x9e\xa6\x1a\xff\xb0\xd3\x95\xb5\x32\xe5\x73\xae\x09\x74\x68\xbc\x66\x43\xc9\xca\xbd\xd1\xf6\x46\xba\x0f\x1a\x4d\x87\xf1\x20\x0f\xfe\xe5\x6c\xce\xf7\x08\xd8\xf9\x9b\x2c\xb8\xbf\x2c\x68\x02\x23\xc4\xb2\x60\xf2\x40\xb2\xaf\x31\x97\x8c\x0b\xaa\x9d\x6d\x54\x5c\x05\xcb\xe1\xd0\x95\xc6\xe9\x86\xb7\xe8\x78\x5f\xea\xb6\x9f\xa6\xd8\xb5\x3d\x07\xda\x5d\x03\x73\xe7\x53\x85\xf9\xd7\x6b\xf2\xef\x72\x9b\xda\x23\x58\xed\x6f\x3b\x68\xff\x1d\x44\x8a\xe2\x6f\x4c\x2c\x76\xe4\x94\xf7\xde\x87\x74\x42\x79\xbd\x63\x78\x6c\x44\x81\x8f\x41\x3f\x4a\x8a\xfd\x11\x38\x15\x20\x4c\xcc\x40\xf4\x50\xeb\x30\x44\x64\x61\x2c\x20\xda\x29\xc0\xeb\xee\x82\xd3\x9f\x3a\x29\xb7\x58\xff\xb1\x82\xb6\xec\xda\x24\x7b\x73\x6f\x30\xe9\x37\x49\x52\xf1\xc6\x26\x9e\x60\xad\x1b\x99\x3f\x22\xd3\xa1\x79\xf9\xe4\x7a\x8c\x53\x78\x42\x2a\x4c\x5b\xfb\xa3\xac\xf7\xa3\xaa\xed\xe8\xb9\x69\xa1\x6e\x9c\xa3\x96\x79\x05\x95\xe3\xe8\x3d\xa2\xa6\x10\x43\x2e\x09\xab\x3d\xf4\xe8\x58\x7b\x1d\xef\x48\x65\xf6\x27\x9f\x9d\xde\xd5\xc0\x6e\xc8\x06\xb2\xba\xd1\x83\x1b\x83\x58\x74\x1c\x38\x29\x95\x88\x5a\x34\xf8\x52\x5c\x6f\xdc\x7d\x4b\x8f\x5a\x81\x3d\x08\x8c\xd8\x20\x5f\xb8\xb0\x06\xba\xe8\x6f\xa7\xaf\x9e\x3f\x7b\xfe\xa7\x63\xdb\xb5\xc3\x29\xe2\x5a\x81\x9b\xe1\x3f\x6f\x70\x0d\x49\x4b\xe1\xf9\x8b\x37\x89\xb1\x62\xf8\x26\x46\x6a\x31\xb1\x29\x61\x55\x6a\x5e\xd6\x54\x04\x45\xbb\x87\xd3\x87\xd3\xff\x80\x6c\x21\xc4\xea\x78\x36\x33\xab\x4b\x56\x55\xc7\xf1\x46\xf0\xbf\x56\x0d\xab\xc5\xbd\xaf\x1e\x8c\x83\x41\x1a\x6e\xab\x5e\x36\x6e\xed\xda\x19\xb2\x52\xa2\x9e\xb1\xd0\xb4\xf8\x26\x42\xa8\x14\x81\x96\xe4\x92\x0f\xd9\xc3\x71\x1e\xb6\xbf\x5b\x4a\x94\x0c\xbc\x3b\x1b\x6c\x85\x9a\x39\x35\xe8\xd8\x15\x60\x20\x57\x7c\xbe\x60\xa8\x72\x88\xe3\x10\xe2\x77\xab\x36\xc6\x40\x9e\xea\xcf\x93\x84\x06\x1c\x17\x3c\xc3\x26\x13\x5b\x31\x34\xc3\x58\xfd\x0b\x1f\x13\xc1\x39\xf1\xf0\xb7\x38\xe2\x9f\x2d\xb2\xb0\xcb\x52\x9c\x42\xff\xef\xc7\x36\x39\xf1\x89\x6e\x51\x36\xed\x92\x0c\xe9\xa0\x1f\x3e\x48\xc7\x18\xee\x6a\x45\xc7\xc5\x2b\x63\x0d\x96\xd2\xf0\x55\x8d\xb2\x96\x75\xf9\x03\xec\xf7\x67\x75\xd9\xf4\x3f\xe7\xa4\x7a\xd2\xd4\xbc\x31\xd1\x76\x9d\xb1\x57\xae\x3e\xc7\xc9\x86\xbd\xe0\x24\xa7\x15\x23\xdc\xd6\x13\x0d\xf2\x5d\x79\x52\xa9\x9c\xa1\x98\xda\x02\xba\xcb\x8a\x95\x9b\x43\x0e\x45\xdb\xac\xce\x4d\x65\x95\x05\x1d\xb9\xaa\x81\x86\x49\x10\x24\x5f\xd4\x75\xa6\x55\x73\x39\x53\xa6\x75\xf0\x17\x33\x79\x67\x0b\xc7\xa1\x54\x91\x37\xb4\x99\x38\x27\xca\x58\x5d\x25\x43\x15\xf4\xb2\x69\x37\xf2\x20\xeb\xea\x9c\x74\x92\xd4\xe8\x3a\xa7\xd8\xab\x76\x3d\xbf\xe8\x24\x4f\x11\x4d\x53\x71\x7d\xcd\xaf\x0f\x05\x70\x56\xd1\x3a\xc7\xc3\x72\x89\xbc\x70\xe4\xe3\x08\xe6\x66\x74\x27\xba\xcc\xa2\x5b\x63\xcd\xaf\x3d\x55\xf6\xf0\x11\x02\x0f\xb4\x55\x97\xb3\x9c\x42\x92\xec\x37\xcc\xe8\xf8\x04\x74\xec\xb9\xe3\xad\xd5\xab\xe6\x52\x55\xd6\xb7\x56\xb7\xda\xa9\x51\x31\x59\xf4\x09\x83\x92\xed\x3e\x69\x4c\x56\x11\x66\xce\x86\xa6\x7e\xe9\xf4\x56\x7f\xe9\x11\x76\xb8\xdf\xf4\x47\x43\x77\xb4\xc6\x44\x2c\x99\x0a\xe9\x31\x71\x04\x11\x88\xf8\x7b\xf6\xf4\x9d\xa6\xaa\x7d\x3a\x34\x51\x44\x76\x77\x89\x8e\x0d\x1f\x37\x1b\x34\x0e\x61\x3e\xec\xa9\x6f\xbb\xe7\xa2\x7d\x0b\xc2\xaf\xbc\xf0\x8d\x4a\xab\xaf\xd2\x65\x44\x5f\xbb\x5a\x67\xfe\x51\x56\x0d\x07\xa1\x3b\x3f\xc6\x43\xf1\x4d\x3c\xbf\x68\xa7\x1a\x3b\x9e\x62\x43\x01\x56\xe1\xcf\xcc\x51\x69\x89\x3e\x3b\xf4\x70\xeb\xf8\x93\xe7\x4e\x72\x76\x08\x77\xa1\x9d\xb2\x02\xee\xc2\xe1\x5b\x0c\x18\xa8\x78\xdf\x54\xfd\xa3\xc0\x18\xff\xd7\x50\xad\x11\x29\x9b\xe2\x11\x9b\xfc\x40\x76\x8c\x18\x1d\xe1\x45\x69\x87\xc9\xca\x8c\xc1\xa3\x30\x9e\x8c\xae\xca\x57\xf2\x60\xca\xd8\xc4\x46\x5b\x34\x3b\x26\x3b\x34\x14\x61\x45\xc8\xfd\x67\xa3\xd2\x1b\xec\x33\x1d\xb3\xea\xa5\xa7\x22\xc3\x85\x55\x98\x2e\x9d\x81\x2b\x2b\x33\xbb\x90\xda\x40\xc5\xcd\xc7\xae\xb0\xcd\x7e\x5f\x56\x1d\x5f\xb8\x30\x93\xa9\xbe\xb1\x8a\x7b\x8a\x8c\xa8\x44\x7e\x53\x49\xb6\xd4\x78\x6c\xcc\x06\x87\x46\x55\xc0\x17\xac\x14\xd9\x38\x0b\x7e\xf5\xbb\xdd\x69\x33\xa5\x09\xdf\x5a\xef\x2a\x2b\x29\xda\xb7\xc2\xf1\x73\xf6\xfc\x5a\x45\xb0\x40\x02\xfb\x2d\xb7\xc3\x67\x8b\xaf\xe0\x71\x93\x63\xf0\x7e\x4c\x5c\xa1\xda\x9c\xa6\x54\xfd\xc2\x62\xd1\x6e\x5e\x63\x0e\x17\x56\x6e\x8e\xc1\xff\x65\x89\xd5\x26\x8d\xf9\x56\x09\x6e\xd6\xd3\x0d\x85\x0f\xa2\xf3\x51\x29\x53\x62\x65\x2d\x5a\x2b\xdb\x35\x94\x33\x16\x04\x6d\x2c\xd1\x4b\x6d\xd5\x36\x2b\xda\x8a\xcd\x44\xc1\x43\x03\x65\x73\x03\x9b\x02\xbc\x30\xce\x47\x13\x05\x47\x0d\x56\xb2\x76\x15\x9b\x30\x18\xbc\x8e\x56\x76\xa0\x6f\xc6\xda\x4e\xba\xc0\xd8\x86\x17\x4d\x27\x80\xea\xe0\xdc\xca\x7e\x5a\x75\xad\x73\xc0\x1c\xc4\x56\xc8\x26\x71\x8d\xbd\xf5\xbd\xd6\x79\x6d\xdc\x10\xd4\x2c\x27\xc0\x3b\x26\x88\x09\xe4\xdc\x74\x62\xd5\x09\x29\xfb\x15\xf4\x9a\x56\xb2\x0b\xde\xcf\x78\xe3\x73\x7b\xea\xc7\x66\x70\x12\x0a\x0d\xcd\xf5\xee\xdc\x01\x6a\x4d\xf2\x70\x33\xd2\xa9\x42\xe1\x87\x0f\x40\xa7\x36\x69\xce\x63\x48\x7d\x87\x70\x9d\x8d\x2b\x8c\xf1\xb2\xe9\xd9\x18\xc2\x63\xe0\x70\x0c\x1c\xe3\xdc\x66\x56\x0b\x50\x37\xf5\x3d\x55\xde\x71\x5a\x8c\x0f\x2d\x53\x4a\x10\x44\xa3\x17\xa5\xa0\x42\x1e\x17\xf5\x25\x7c\xb9\xaa\x08\xab\xbf\x34\xe9\xdc\x54\xb8\x23\xcd\x6e\xa5\x74\x89\xac\xaf\xbb\x5c\x28\x48\x7f\x7e\xfd\xe2\xf9\x94\x1b\xd2\x03\x56\x82\x09\x98\x1d\x2d\xd6\x0b\x7d\xed\x6f\xe2\x15\xd3\x99\x88\x86\xb0\xaf\x51\xd1\x44\xe8\x57\xeb\x9c\x69\xc3\x2c\x56\x66\x2a\x36\xea\xe1\x99\xce\x4d\xaa\x9a\xbd\xc5\x15\xd1\x4b\x25\x87\x3a\x74\x2b\xe0\x2a\x52\x80\xdd\x43\x59\x33\x01\xee\x9c\xa7\x6d\xc4\x8d\x3e\x2a\xdf\xb4\x1b\x1d\x6d\x52\xe9\x74\xfd\x67\xac\x10\x39\xd9\x7a\xac\xf6\x1a\x3e\x21\x96\x84\x55\x7c\xe2\x94\x4e\x70\x14\x9b\xd4\x87\x94\xbe\xee\x7d\x49\x54\x8f\xb6\xc1\x87\xa3\xdb\xfe\x18\x24\x7f\xec\x35\x9d\x45\xee\xeb\x0e\x11\xeb\x09\x24\xcc\xed\x7d\x87\x75\x9c\x78\xaf\x9b\x21\x07\xf5\xb4\xe9\xfd\xaf\xdd\x43\x3d\x38\x21\x7f\x8b\x40\xf4\x49\x27\x24\x24\x94\x14\x4b\x72\x45\x5d\x96\xa1\xa4\xde\xe1\x77\x36\x09\xd2\xeb\x7c\x41\x25\x96\x87\x54\x1a\x0f\xbf\x72\xf9\x92\xf8\xa6\xce\x87\x35\x1f\x84\x93\x55\x1c\x9f\xc4\x44\x73\x44\x42\xe6\xa6\xab\x63\xb4\x99\xb1\x3d\x67\x08\x78\x7c\x60\x9e\x62\xff\x89\xe9\x79\x3c\x44\xd0\x3d\x7a\xfe\xfb\xc7\xc4\x01\x5d\x0c\x7f\x3d\x7d\x05\xcf\x9e\xff\xf9\xe9\x93\x37\xcf\x5e\x3c\x87\xa3\x99\x23\x30\x9d\x4b\x71\x0c\xef\xff\x45\xc9\x7f\xe8\x29\xc7\xa7\x3d\x95\x8f\xbe\x5e\xd2\x5a\xf8\xda\x33\x73\xb9\xf6\x8a\xa7\x96\x42\xed\xcd\x9a\x2e\x99\xf0\x6f\xf7\xac\x66\xe2\xa9\xff\xcd\x58\x60\x63\xe8\x06\x3c\x3f\x9f\xa0\x97\x70\x9c\x02\x0f\x3e\x7c\x08\x8c\x0c\x32\xd4\x99\xdb\x8b\x96\x1d\xf9\x93\x05\xab\x0a\x75\xf7\xc1\x02\xfc\x1d\x64\xd6\xc3\xbf\x4f\x02\x73\x04\xb9\x9d\x74\x43\xeb\x07\x1c\xbe\x5d\xe9\x41\xc5\x2f\x34\xa5\xfc\xc8\x38\x4a\x32\xed\x12\xb7\x06\xba\xe2\xb9\x60\xe9\xfd\x0c\x87\xdb\x03\xd4\x9a\x0a\x98\xa7\xf0\x65\xcf\x8b\xcd\xce\xd3\xac\x4e\x9c\xd8\x26\x1d\x14\x01\xe6\x5e\xb6\x8b\xf9\x5c\x87\xbb\x90\xb2\x9c\xa9\x70\x8c\x4b\x63\xc1\x0d\x78\x1f\x76\x75\xfc\xf8\x16\xce\x54\x09\x0a\xf1\x57\x37\x59\x15\x2c\x2c\x19\xc8\x3c\xec\xde\x0f\x89\x6b\xa7\x20\x97\x49\x83\x70\x86\xfb\x56\x28\xb0\x81\x68\x4c\xb4\x43\x1d\x09\xc7\x1a\xc8\xbf\xd2\x6e\xac\xfa\xe7\xf3\x20\x7b\x80\x4b\x61\x6f\xc0\x05\xad\xb2\x74\x6c\x80\x30\x69\x88\x46\x94\x0e\x16\x5a\x73\x66\xf5\xb6\xb0\x6a\xe9\x3d\x1c\x5f\x87\xdf\x54\x7c\x34\xd1\x48\xc1\x55\xf4\x0a\x26\xa0\x32\x1b\xe8\x68\xca\xf8\x34\x58\x55\x18\x91\x5e\x25\xbc\xd5\xd6\x4a\xc9\x48\x25\xb1\x0f\x74\x2c\xd2\x81\xd7\x9b\x75\x10\x34\xab\x11\xf8\xbc\x7a\x38\x04\xcf\xb6\xcf\x39\x20\xd8\x4c\x42\x4e\x93\xe1\xe3\x40\x07\xfd\x0f\x1c\xe4\xf4\x0b\xaa\x8a\x9c\xa2\x82\x98\xfb\x2e\xa6\x70\x4d\xdb\x0b\x22\xd8\x32\x1e\x39\x5e\x2d\xa4\x68\xa9\xda\x26\xc2\xb0\x70\xd1\x36\xf5\x65\xb5\x01\xde\x5d\x5e\x52\xae\x8d\x34\x94\x5f\xa1\xf2\x22\xb7\x37\x4d\xc9\x08\x76\xcc\x1a\x47\x9e\x29\xd8\x89\x99\x2b\xe5\x95\x2a\x0d\xe8\xc2\x9b\x7e\x64\x2e\x22\x3f\x3d\xe3\xbc\xa3\xbe\xb1\x08\x3e\x01\x78\xcb\x6d\xc2\x95\xab\x52\xbb\xe0\xc9\x75\x0c\x81\xc0\x8a\x6c\xaa\x86\x14\x48\x54\x04\xf3\x7b\x84\x44\xb3\x75\xc2\x6a\x2f\xa4\x56\x59\x0d\x2d\x5c\xe4\x5b\x93\xda\x10\xb9\xa2\xa4\xb3\x83\x20\x5b\xa0\x31\x9c\xf6\x43\xf7\x84\xd1\x7a\xb0\xd0\x86\xed\x31\x65\x2a\xd0\xf7\x5c\x05\xfc\x0e\x15\xc5\x2a\xdc\x19\xcc\x01\xff\x0d\x5a\x79\x3c\xee\x92\x8a\xef\xfc\x1d\x99\xb2\x3d\x10\x6d\xc7\xbd\x70\x05\x53\x79\x39\x5a\xa3\x22\xa2\x6a\x29\x29\x36\xfd\x2a\x18\x71\xc7\x7a\x3a\x1b\x15\xc4\x04\x5c\xf8\x93\xd6\x42\x97\x2c\xca\x34\x7f\x69\x8f\x0a\x49\xe6\x65\x53\x55\xcd\x0d\x87\x75\x64\x97\x69\x2f\x5a\x69\x1b\xc5\xbe\x23\xb3\xa7\x98\x36\x1b\x30\xf2\x95\xe0\xe6\x70\x58\xcb\x4b\xff\xda\xbc\x40\x20\xfb\xd4\x25\xdf\x79\xf6\x72\x70\x2a\xe5\xc7\xcc\x21\x2f\x5b\x8f\x07\x62\x20\xbf\x0a\xa3\x3e\x84\xdb\x7a\x0d\x84\x7b\xce\xbb\x90\x21\x5a\x83\x6d\x1d\x67\x9d\xea\x4f\xdd\x3f\x12\xe3\xd0\x12\x69\x24\xe0\x5e\x8c\x71\xb0\x63\xae\x98\xe2\x47\x43\xdf\x63\xb6\x91\x6f\xfb\x92\xb0\x9a\xdb\x8c\x7d\x65\xd3\xd2\xe4\x61\x67\xa6\xa1\x2b\xd8\x8c\x65\xa1\xf5\x40\x38\x1d\x24\xfd\xd8\xf9\x45\x03\xd0\x47\x9f\xd1\x0f\xc3\x6c\x06\xaf\x95\xc9\xed\x05\x95\xa7\xcc\xcf\xb4\x4e\xcd\x42\x89\x2e\xa8\x68\x63\xb5\xa0\xad\x14\x4a\xdf\x5b\xd2\x36\x87\xe6\x2d\xac\x08\x73\xe7\x78\xcb\xae\x53\x81\x5f\xb6\x65\x22\xd1\x01\x09\xf7\x5c\x07\x7b\x8e\x07\xa8\x9f\xa9\x83\x53\x69\x61\x54\x36\xc6\x02\x63\x85\x61\x84\xe8\xb6\xa9\xfa\x31\xb9\x55\xed\xe0\x94\x49\x45\x32\x98\x04\x01\x12\xbc\x61\x69\x48\x26\xf2\xb5\x30\x10\x95\x74\xd3\x55\xc2\xe8\x4f\xa8\xb3\x86\xb1\x59\xc8\xfd\xa4\x6e\x71\x8c\x25\x16\x9a\x0d\x29\x2d\x8d\x0e\xc7\xe2\x8c\xed\xe0\x68\x49\x36\x47\xb1\xd5\x53\xb7\x2a\x54\x08\x1f\x4c\xd2\x74\xd0\x0f\x1c\x13\x4e\x71\xc8\xd4\x7b\x1e\xa7\x49\x75\x48\xd9\x1e\xfc\x67\x7e\xeb\x87\x55\x72\x87\xed\x1e\xad\xec\xc4\x7c\xfb\xfd\xd8\x3a\x72\x90\xdd\xed\x19\xbb\x01\x4d\x18\x07\xdc\xd9\xfd\xa5\x08\xcc\x1a\x7d\xf3\x19\x82\xd6\xed\xc6\x86\xa6\x97\xaf\xd3\x04\xc2\x55\xf5\xa6\xef\x1a\x56\x67\x63\x17\x0e\xf7\x60\xa4\xc3\x5a\xb9\x18\x54\x0e\xcb\x61\xc0\x17\x79\x55\xb6\xd1\x70\xc7\xe6\x16\x33\xda\x19\xbc\xca\xb5\xfb\x1a\xee\xbb\x44\x5a\x6a\xcf\xb7\x02\x72\xd6\xe6\x1d\x13\xc7\x7e\x9c\x0e\x49\x94\x18\x6f\x80\x62\x40\xfa\x95\x14\x86\x16\xa4\xa5\x3e\xd6\x83\x9d\x89\xb3\xf7\x6e\x27\x6e\x8b\xaa\x89\xf7\xc3\x68\x7e\xa4\xdd\x11\x16\x6a\x24\x06\x26\x45\xfa\x9b\x1f\x97\x6d\xf7\x02\x26\xa3\x89\xc6\x27\x3d\xee\x55\x4f\xe2\x4c\x6c\x56\x28\x3a\x14\xbe\xcd\xdb\x84\x8a\x5f\xea\xaf\x85\xb5\xfb\xf2\x7c\x13\xb4\x79\x45\x22\x2e\x87\xd5\x8b\x04\x71\xbf\x06\x36\xc9\xe3\xdb\xc1\x70\x6c\xfb\xda\x8f\xb9\x98\x6c\x5b\xa2\xae\x0d\x1a\xfc\xc6\x11\xd5\x06\xee\xba\x5a\x9a\x99\x40\x74\x6c\x99\xcb\x07\x46\x6a\x51\xb1\xf1\x78\xda\xd0\x79\xff\x33\xa4\xbf\xbf\x15\x79\x6d\x71\x08\xc5\xf2\x6f\xdb\x66\x19\x46\xfa\x9b\xf4\x68\x3a\x1d\xab\xc8\x35\x57\x94\x38\x81\xd0\x6a\x35\xa0\x68\xff\xbc\xea\x11\x6e\xc8\x22\xe4\x31\xe5\x7c\x24\xb6\x1d\x82\x08\x3c\x3a\xfc\x4e\xb7\xe7\x07\xc7\xd8\xc2\x44\x3f\x3d\x5b\x81\x9a\xa8\xb4\xdd\x24\x4a\xda\x6d\x53\x33\xe1\x2b\x83\xfa\x33\x2d\x15\xef\xce\x6b\x1a\x24\x51\x0a\x0c\x44\xfd\x4c\xcf\x61\x76\xa5\x74\x9a\x53\x97\x3a\xfa\x20\xb0\x30\x35\xb6\x03\xbb\x72\xab\xf5\xf3\x81\x0d\xcb\x5d\xc9\x94\x3f\x43\xb9\x48\xa3\x24\xd0\x7e\xe6\xab\x68\x43\x69\x5c\xa2\xa9\x33\xaf\x8b\x09\x3e\xbb\xed\xca\xaa\x86\x2b\xfb\xb5\x1e\xda\xd7\xff\xf3\xe8\x11\xdc\x7b\x64\x68\xe2\x6b\x55\x58\x66\xff\x33\x7e\xf4\x68\x60\xf7\xec\x70\xa7\x44\x0f\x35\xf9\x87\x9f\xef\xee\x90\x87\x11\x80\xf6\xcd\xb0\xb6\x1f\x46\x7d\x41\x69\x18\x91\xc9\xbc\x73\x5b\x10\x6a\xa2\x18\x3f\x9c\xc0\x40\xa6\xba\x1e\x68\xd3\xee\x07\xb2\x0a\x1b\x25\x75\x48\xfa\xdc\x2d\xa3\xc0\x26\xf0\x18\x96\x64\x75\x2a\xe0\x58\x67\x66\x3a\x15\x61\x26\x58\x93\x29\x36\xd2\x41\x8d\x7a\xe9\xbb\xe3\x1c\xbc\x8f\x1e\x3d\xf2\x33\xbe\x7a\x39\x0f\x6d\x34\x6e\xdd\x78\x1c\xe7\xf8\xc6\xec\xde\x13\x58\xab\x04\xdf\x31\xe0\x3b\x77\xe0\x8b\x38\x72\x73\xb1\x23\x71\xa7\xfa\x2c\x25\x97\xcf\x9f\x06\xdc\xac\xc7\xa9\x9f\xf5\xc4\xb2\x65\x36\x51\xbe\xb8\xbe\x7a\x71\xff\x14\xdb\x3a\x43\xb8\x44\x99\x15\x13\x6c\x22\xcc\xa4\x66\x2e\xc9\x73\xbd\xee\x0f\x46\x51\x16\xc5\x53\x91\x45\x63\xf4\x72\xb5\xf5\x11\xed\x45\xf6\x48\xcd\xdb\x10\x11\x4e\x5c\x11\x27\x9a\x2a\x4d\x80\x8d\x7b\x68\x18\xc8\xe1\x69\x60\x0c\x8d\x4b\xcf\xff\xcc\x0f\x1f\xbe\x35\x37\xf6\x47\xa1\xb3\x9f\x6d\xb3\xb7\xf3\xf6\x5a\x69\x2f\x08\x6c\x1c\x8b\xc8\x8e\xcc\x64\x3e\x73\x2a\x88\x1f\xa2\xaa\x27\xae\xa2\xdc\x3b\x8b\x48\x16\x47\xf0\x3c\x9e\xef\x42\x45\x65\xf1\x47\x66\x84\xa0\xde\x0a\x98\x5c\xbc\x12\x4c\x90\xa5\xde\xba\x28\x4e\x60\x31\xb5\x57\xc9\x64\xeb\x21\x3c\xbb\x4c\xf5\xc3\xf9\xec\xef\x3e\xf0\x32\xda\x6b\xd4\x07\x50\xbd\x71\xa4\x36\x52\xcf\x6e\x34\xca\x9d\x0f\x73\x08\x3f\x9c\x04\x4b\x3a\x38\x30\x74\xae\xed\x3d\x2e\xb8\x0c\x87\x58\x7e\x02\xec\xeb\x88\x3d\x85\x8c\x68\x49\xda\xab\x53\xae\xed\x05\x7d\x4d\x93\x9f\xd2\xd0\xf5\x32\x6c\x91\x17\x02\x5a\xf4\x06\xc6\xca\x6c\x81\x64\x10\x7d\x0f\x32\xd6\x7a\xf7\x99\x88\x98\x46\xbe\x5d\x87\x23\x82\x85\x0e\x2a\xbd\xf0\xc2\xfe\xbb\x54\x79\xbd\x74\xce\x3c\x48\x59\x90\x48\xaa\x97\x4c\x61\xab\x77\xe2\x3d\x2d\x2e\xc5\xa9\xe8\xa7\xdb\xa4\x35\xc5\x2a\x8c\x9e\xc0\x19\x79\xeb\x2b\x24\xe1\x61\x4a\xf6\x20\x05\x23\x06\x6c\xc5\xf6\x03\x0e\x3e\x6f\x16\x14\x9e\xbe\xfe\xbd\xd5\x67\xf2\x15\xcd\x41\x3f\xb8\xea\xa0\xb8\x72\x80\xd9\x58\xb9\x14\x01\x5d\xae\xc4\x46\x89\x15\x1a\xd4\xd2\x4b\xa7\x1a\x0d\x9f\xf5\x14\x69\x98\x11\x92\x61\x1a\xfc\x8a\x4a\x39\x8d\x08\x17\xce\xd5\x69\x5a\x39\xab\x2f\x2b\x2a\x9a\x7a\x48\xbf\x36\xf1\xb0\x60\xeb\xea\x3e\x0f\x22\x2f\xb0\x8b\x0d\x04\x4a\xe8\x6c\x3c\x51\x0e\x53\x39\x51\x2e\x57\x0b\x9a\x5f\x19\xe5\xcc\x7c\x3e\x3f\x48\x39\x19\xed\x14\x55\xd1\x66\x87\xe4\x5b\x42\x57\xb2\x52\xaf\x0d\x46\x5b\xac\xef\x21\x2a\x27\x1f\xb7\xe4\x26\xeb\xe6\xbe\x8b\x2e\x3b\xc5\x7e\x0e\xac\xde\x4a\x77\xdb\xf6\x1c\xf6\x5c\xf7\x4a\x57\x1f\xd0\x4d\xa4\x98\x25\x79\x3f\x59\xa6\xf3\x98\xb0\x38\xf9\x22\x8a\x3c\x67\x0b\xfa\x36\xbc\xc6\x77\xdc\x66\x69\xf7\x82\x03\x4a\x6c\x61\x14\x86\x8b\x8a\xe2\x03\x08\xde\xe2\x35\x61\x1e\x8e\xfb\x29\xd3\xd9\xe5\x62\xa2\x8a\xcf\xde\x8e\x51\x51\x5d\x0b\xca\x95\xb5\x5e\x57\x63\x90\xe1\x1b\xa3\xd9\x87\x23\xde\x2c\x29\x7a\x6a\x1c\x19\x00\x86\x7a\x5b\x9a\x37\x97\x35\xfb\x19\x1b\xda\xa8\x8f\xda\x13\x50\xdd\xbc\xc7\x80\xb1\x35\xa6\xbe\x7c\x12\x4b\x73\x26\xa3\x92\x26\x3f\x35\x63\x0c\x32\xd8\xaf\xf7\x00\x1e\x5b\xe5\xbf\x65\xa0\xf7\xdf\xba\x46\x6d\x57\xbf\x0a\xd0\x9f\x92\x9f\x7b\x95\xc2\x68\xbc\x3b\x04\x5e\x75\x0c\xe9\x2c\x33\x5e\xea\xf8\xad\xc7\xc0\x50\x22\xf9\x8f\x11\x47\x07\xa4\xcf\x50\x7c\x08\x92\xad\xbb\x9c\xa9\x5f\x6c\x97\x87\x3e\xfa\x9c\x1e\x5d\xb4\x94\x5c\xa5\x85\x80\x45\x2f\x91\x7d\x2c\x43\x06\x5f\x24\x4d\x27\x24\xaf\x7d\xc5\x59\x5f\x8b\x60\xf8\xb4\xd1\xf6\x73\xfd\xfd\x8f\xb4\x6a\x6e\x74\x74\x39\x49\x65\x2a\x17\xa3\xa4\x61\x7b\xdb\x0c\x4f\xa4\x3f\x51\x34\xd7\x24\xab\x55\xdb\xac\x5a\x26\x4f\x12\xdf\xbb\x7d\xed\x47\x39\xa5\xf9\x95\xe6\xe1\x90\x6f\xf2\xaa\x97\x9c\x3b\xf9\xd2\x63\xdc\x32\xb7\xc4\x8c\x0f\xd6\xd4\x71\x11\xff\x8d\x2b\x66\x10\x6b\xe7\xc6\xa8\xb4\x32\x27\x7d\x7c\xf6\xc2\x62\x3e\xf6\x7a\xfa\x4b\xad\x9f\xf0\x64\x81\x7a\x37\x73\x62\xf2\x40\xb4\x1a\xc4\x55\xe4\xfc\xaf\xa0\xbb\x17\xbf\xe7\x2f\xde\x3c\x3d\x86\xff\xb7\xe9\xd4\x81\x88\xf1\xfc\x55\xd0\x1e\x3c\xef\xca\xfe\xa8\xe6\xf3\x54\x50\x25\x85\xb6\x0f\x06\x47\x5e\x4c\xa1\x5f\x86\xe1\x58\xe8\xde\xfe\xac\x18\x63\x19\x8e\x07\x50\xb8\x27\xbe\x56\x81\x83\x8c\x79\x44\x75\x58\xfc\xec\x04\x15\x2c\xb3\x36\x9a\x71\xd6\x24\x92\xc9\xd9\x61\xbc\x51\xcf\x0d\x6b\xe4\xe7\xa1\xed\x90\x3e\xcf\xa2\xaa\x81\x72\x41\x73\x84\xc7\x2a\xa0\xad\xc1\x6f\xd0\x62\x02\x6b\x97\x94\x20\x49\x70\x7d\xbb\x56\x9f\x37\xd8\xc7\x4c\xba\x4d\xc4\xfc\xce\x43\xf7\x4e\x39\xec\x60\xc8\x7a\x29\xc4\xa7\xd9\x9d\xda\xdd\x64\x34\xd2\x1f\x7c\xa7\xe6\x85\x7a\x99\x1c\x59\xc3\x23\xaf\x50\xf1\xde\xc1\x62\x65\x7f\x00\xb3\x19\x44\xe6\x14\xa9\xca\x25\x51\x91\x97\x92\x85\x56\x0a\x1f\xae\x11\x94\x2b\xe7\xcf\xf4\x8c\xce\xcd\x03\xd1\xfd\xa1\x1a\xa6\xc2\x90\xfe\x5a\x69\xad\xb1\xd6\x40\xbc\x69\x9a\x77\x2d\x57\x21\xa5\xf2\xa6\xaa\xc8\xca\x45\x04\x50\xfe\xf8\x18\xeb\x8b\xd5\x85\xca\xfc\x13\x3c\xac\xd5\x94\xb4\x52\xe6\x33\x89\x6b\x3b\xb9\xa9\x8c\xea\x22\x0a\x3a\x3d\xb4\x79\x1c\x90\x01\x08\x1e\x35\xf4\xe7\x2f\x79\x42\x6a\xfa\xe6\xaa\xef\x12\x1f\x28\x17\xaa\xc5\xd4\x4f\x98\xa0\x04\x01\x77\x85\xc2\x5b\x5a\xf0\x4a\x17\x70\xf3\x85\x8f\xc2\xfe\x58\x14\xb6\xbc\xc1\x88\xc6\x39\xb5\x4f\x7c\x95\x75\x6b\x9f\x9d\x56\xd1\xab\x21\xae\x97\x24\xe4\x2c\xd2\x4d\x1d\x83\x68\x26\xe6\x93\x02\x79\xec\x80\xab\x02\x2f\x6f\xa9\xeb\xcc\xb4\x31\x29\x4b\x6d\xdf\xaa\xc0\x0c\xe0\xd8\x0e\x45\xcd\x7b\xbc\x7d\xae\x28\x74\xa4\xa2\x07\x7c\xcc\x3c\xd5\x53\x9d\xdc\x4d\xcf\x4a\xf7\x12\xb7\x2f\xa4\xed\x03\x4c\xc5\xe9\xc5\x84\x7a\xce\x9a\xd3\xe1\x1a\x39\xa1\xce\x26\x6c\x6b\x0d\x3c\x5b\x19\xe6\xa6\xd8\x59\x7d\xdd\x5c\x51\x8e\x1e\x0f\x4a\xfe\x26\xf5\xc6\x52\x36\x13\xa0\xd8\x0e\xdf\x93\xc9\x7d\x1b\xa0\xc2\xf1\x3a\x56\x2f\x68\xcb\x84\x13\xc9\xc2\x8a\x5a\x3d\x15\x7e\xec\xf1\xbe\x20\x9d\x88\xc1\xc1\x62\xaa\x86\x1e\xfb\xb4\x86\x8b\xa2\xe5\xf3\x78\x78\x5b\x51\xb3\x24\x35\xb9\xc4\xe7\x3d\x74\xac\x04\xed\xbe\xde\x2d\x31\xd2\x08\x61\xe8\x90\xd3\xe0\x45\x3d\xbc\x50\xef\x89\x2b\x73\x59\x70\xe4\xa2\xb1\x44\x8b\x27\xfa\x75\x4c\xcf\xd1\x5c\xb9\x75\x5e\x20\x55\xa8\xe3\x22\xf7\xda\xf8\x81\x9a\xdd\x78\x0d\xab\xf0\x62\x58\x6c\x8f\x70\xe1\x5e\x02\x12\x0d\x35\x77\x9b\x43\x49\x2a\xee\xa7\xed\xec\xad\xf3\xcb\x40\x65\xaf\x7f\x6d\x39\x20\xfa\x35\x9c\x99\x5c\x3f\x7e\x22\x0e\x47\x5f\x4a\x42\xb3\xac\xc0\x89\x3a\x01\xf3\x5d\x14\x46\xd7\x97\x99\x83\x49\x6e\x53\x8c\xf9\xdd\xc7\x96\x52\xdb\x07\x30\xc4\xf5\xe5\x15\xef\x8b\x6d\xfd\xf7\x13\xe1\x84\x07\x85\x3b\x29\xe0\xa3\x8f\x0a\xec\x5d\xdd\x9c\x31\x5a\x70\x1c\x56\x2e\xa2\x0b\xbc\xbe\x64\x49\xd5\x7c\xea\xb8\x49\xac\x42\x37\x78\xf2\xfd\x64\xcc\x27\x2c\x05\xbb\x1b\xb5\xf7\x46\xe5\x0d\x28\x49\xba\xfe\xcf\xe0\x8e\x33\xb8\x3b\x0e\x46\xbd\x87\x25\xf5\xaa\xf4\x53\xf2\xa2\x6e\x60\x23\x13\xfe\xe9\xcc\xe5\x6e\xdf\x3a\xf1\x04\x3b\xeb\x67\x47\xfa\x28\x22\xf4\xb6\xa4\xbc\x07\x25\x91\x11\x20\xca\xf4\xe0\x70\x90\xa0\x11\xe5\x87\xed\xc2\x09\x98\xdc\x15\x7e\x6e\x39\x0d\x44\xb2\x9e\x24\x99\x69\x04\x69\x91\x31\xa8\xbf\x17\xae\x6e\x22\x03\x26\xad\xd6\x20\x7e\xc0\x83\x41\x74\x85\x13\x40\xef\x05\xaf\xf9\x1b\xc2\xaf\x02\x78\x93\x80\x60\xc6\xa1\xbe\xda\x3d\x72\xc5\xc4\xd3\x9f\x75\x9f\xbe\xce\xfc\x7e\xde\xa6\x35\x21\x61\x23\xe5\xb6\x1f\x4c\x37\xf1\xe0\xb4\x25\x2a\xb2\x77\xe6\xf4\xd1\xaa\xaf\x0b\x03\x1c\x70\x80\x05\xf5\xd1\x69\x4c\x8e\x10\x95\x3a\x24\xff\x78\xaf\x75\x95\xe7\x73\xbc\xae\xde\x91\x87\x66\x25\xee\x19\xda\x50\xd8\x3c\xf4\x10\x85\xc7\x10\x10\xe0\xb1\xa9\x98\x3a\xad\xee\xdc\x49\xf1\x03\x25\x3e\xe4\x3b\xf8\xb5\x26\xdf\x2d\x03\xde\xab\x2f\xb3\x0b\x82\x0d\x30\xdc\xa9\xb9\x88\xa5\xb8\xe4\x7e\xfd\x45\x0f\x2a\xc9\xe4\x8a\x40\x6a\xb4\xd0\xb6\x8c\x15\x6d\x49\x9b\x36\xa7\x68\xcf\xad\xdc\xd1\xcb\x4e\x74\x2d\x55\x1e\xe7\x07\xe9\x98\x61\x91\xc9\xe2\x0e\xe9\x47\xd9\x17\xa7\x7c\x71\xd2\x1c\x6b\x40\xbe\x40\x30\x5a\xba\xc0\xbf\x3f\x92\x75\x7c\x12\x87\x08\x4f\xf7\xb8\xdb\x3d\x69\x65\x0f\x92\xe8\x41\xde\x49\x10\xfb\xae\x7b\x20\xe8\xde\x60\x86\x4d\x52\xa7\xb4\x49\x3a\x69\x2f\x5b\xb2\x0a\x6d\xdd\x90\x22\xb6\xd3\x83\xb3\xbd\x11\x5a\x9f\xe1\x15\xbe\x97\xdf\x5c\x90\x9f\xdb\x5b\xdb\xd5\x9e\x74\x63\xd5\x42\x02\xb5\x41\xa6\xb5\x15\x95\xf5\x2e\xb2\x99\x43\xcc\x81\xdf\x5b\xe7\x53\x3b\x2b\x5c\xe5\x10\x5c\xb8\xce\x01\xe9\xe9\x1e\x26\x76\x24\x83\xb7\x08\xa5\x3d\x72\xd6\x94\xe9\x00\xa7\xe8\xa3\xd2\xb3\xb6\xda\xf7\xbe\xe5\x69\xbf\x76\x5e\x16\x7c\xd9\x47\x59\xc3\x1a\x73\x88\xa1\x4b\x9a\x81\x6e\xee\x67\xe6\x77\x4a\x80\x7f\x30\x5c\x67\x8f\xab\x6c\xdb\xd5\xfe\xc6\xfb\x9d\xae\xa3\x93\xc8\xba\x2c\x2f\xb7\xc3\xbd\xa4\xb6\xfb\x00\xf8\x07\x58\x38\xf5\xae\xe7\xba\xa3\x26\x30\x59\xd4\x3f\x83\xc7\x03\x77\xc3\x44\x3b\xd7\x67\x85\xbb\xbb\x0c\x51\x40\xda\x3d\x23\x76\x36\x0b\xfd\xb4\xf6\x5c\x7f\xef\xc6\xb1\xcf\xf2\xbb\xf5\x67\x72\xdc\x77\xef\xea\x39\x0c\x12\x86\xcf\x91\xc3\xfb\x9e\x39\x80\x6c\x98\x28\x5d\xe4\xca\xce\x43\x16\x94\x26\xb1\x48\x03\x90\xb8\xfb\x5b\x02\xbb\xf7\x60\xb0\xce\x3e\xba\x92\xc6\xdc\xd4\x7a\x39\xd8\x12\x00\xb7\xd1\x52\x10\xcd\x4e\x4c\xed\xea\xc6\x19\xc0\x8c\xd0\x84\xb8\x48\x5a\x36\x0c\x90\xa5\x53\x15\x7d\x24\x55\xa6\xb0\xb7\xfb\x30\x42\xce\x48\x4a\x41\xdb\xff\x63\x99\xe3\x2b\x6c\xa5\x19\xa3\x19\x83\x6c\xb4\xb3\xbf\x6d\x47\x94\x91\x9d\xfb\x31\xc1\xfc\x5b\x4d\x82\xec\xbc\x3b\x4d\x6a\xb4\x7f\xd1\x7d\xda\xf1\xee\x1c\xe6\x0e\xe9\x33\xa6\x6d\xd7\x7f\xe0\xa7\x9d\x1d\xf6\x03\x28\x1e\xea\xa3\xe3\x24\xd8\x8d\x71\xfc\xb6\x10\xab\xfe\x9b\xee\x90\x44\x9b\x36\xcf\xf6\xd6\xc9\x72\x10\xb7\x58\xe1\x6c\x9c\x73\xb9\xfd\x3b\xbc\x0c\xab\xa1\x04\x22\xf4\xad\x46\xa0\xe9\x65\xf7\xed\xdd\xbb\x3d\x98\xa0\x73\x66\x1d\xef\xdc\x81\xb8\xc8\xe0\x38\xdc\x2d\xfd\xf2\x60\x0d\xf6\x5e\x84\xa9\x17\x1a\xcf\x38\x94\xec\x1b\xc5\x2f\x0b\x01\x4c\x60\xc7\xcd\xd5\x2e\x49\x40\x8c\xbd\xd8\x7c\x3b\xd6\x42\xe1\xdb\x07\xb1\x17\xc6\x77\x61\x35\x42\x58\x1b\x85\x2a\xfc\x0c\xe8\x32\x96\x66\x11\x9c\x3e\x9e\x66\xb3\x54\xe0\x4d\x58\x34\xcd\x95\x7d\x7f\xdf\x98\x18\x34\xf1\xfb\x3b\xc1\xc7\xa6\xc0\x7c\x2f\x38\xe7\xb0\x37\x17\x2e\x98\xd6\x82\xb6\x03\x45\x6b\x26\xd2\x25\x3b\x26\xfa\x71\xb5\x35\x5a\x7a\x8d\x42\x6e\xa0\x8b\xdd\x43\xda\x6c\xa6\x3c\xb0\x55\x80\x27\x6b\x95\xc5\x9d\x76\x3b\xf0\x74\xfc\x2e\xf0\xfc\xb7\x0f\x8d\x27\xe9\xda\x2e\x64\x4b\xd2\x58\x22\x09\x7a\x1c\x11\xb9\xd6\xfd\xf5\x7d\x18\xad\x40\x12\x99\x1d\x99\x4e\xb1\xe1\x61\xcf\x99\x91\xf0\x2b\x8c\x63\x45\xb5\x2b\x47\x18\x4a\xc1\x18\xb1\x59\xfd\xfb\x9e\xd2\xd1\x8e\xab\x5c\xea\xf2\xe9\xd7\xd0\xbc\xd0\xfc\xdc\xa9\x54\x53\xd3\x89\x3b\xdd\xbd\x81\x53\x37\x77\x54\x28\xf6\x46\x34\x9c\x72\xd7\x7f\xa5\x88\x9d\x08\xf7\x7d\xbc\x09\x94\x39\xda\x82\x77\xff\x0b\x7a\x28\x3e\x5e\x7b\xd1\xa3\xf4\x76\xb5\xb0\x3f\x52\x05\x6c\x43\x6d\x87\xaa\x60\x56\x66\x3f\xa5\x74\x6f\x09\x15\xa9\xd5\xe7\xe6\x93\xdd\x2a\xdd\x1c\xe6\xf0\x93\x33\xba\x6a\xbb\x5a\x39\xfd\x67\xb9\xcd\x20\xa1\xd9\xa5\x46\x91\x3f\xc8\x09\xe4\xbe\xa4\x36\x4d\x9a\x1f\xc7\xcb\xe7\x6e\xa2\x40\xbc\x1b\x28\xd7\xaf\x4a\x18\xd0\x4f\xe1\x15\x63\x99\xa5\x22\x89\x6c\xbf\x74\x47\x76\x30\xfd\x3b\x77\x2f\xfa\xfb\x8e\xb8\x2c\xb1\x2a\x67\xeb\x4d\x3a\xb6\x70\x57\x02\xb1\x76\x4c\x75\x76\x22\xd6\x01\x0f\xf5\x0e\x73\x0b\xa0\xaf\xca\xf3\xa3\xb4\x78\x24\x16\x0e\x63\x3f\x22\x33\x0f\x27\xd3\x00\xde\x48\xb4\x1b\x07\x2d\x73\x03\x9e\x40\x30\xca\x09\x9c\x5b\x13\xb5\x73\x93\xfc\xff\xbc\x36\xf1\x52\x14\xed\x19\x2c\x9d\xfb\x61\x08\x60\xe1\x87\x05\xd1\xc1\x8f\xfd\xaa\xc6\x59\x5f\x57\xd5\x3f\xfb\x35\x6d\xd8\x09\x55\xd3\x45\xa1\x80\xa4\x70\x12\x4f\x2c\xb9\x52\xe6\xb1\xda\xc4\xdb\x48\x18\xfd\xc8\x36\x46\xc7\xb2\xab\x75\x60\x95\x03\x81\x59\x4e\x14\x31\x26\x65\xec\x2d\x6f\x76\xce\xfe\xc9\x38\xf1\x8a\x05\xfc\xbc\x27\x75\xf6\x9e\xc5\x7d\x32\x2c\x25\x61\x9c\xa8\x55\xfd\x19\xe6\xf0\xb3\xfe\x5b\x32\x81\x5c\xff\x2d\x30\xe6\x75\x93\xa6\xc3\xf0\x99\x39\xfd\xba\x6a\x9f\xec\xd4\xe4\xe4\x80\xfc\xab\x88\xd5\x0f\x0d\xbe\x70\x7a\x89\x70\xa7\xb9\xa6\xc1\x9f\x6d\x0a\xdc\x69\xac\x1b\x09\xe1\xbb\xfb\xe9\x10\x78\x4c\xb9\x6b\x28\x6c\x18\x50\x2a\x7f\x4e\x0f\x50\x18\x06\xc5\xc9\x7c\x2f\x94\x86\x99\x56\xab\xfe\x11\xbf\xd5\x52\xed\xa2\x69\x2a\x4a\x24\xcf\x6a\x3b\x0a\xac\x34\x41\x48\xe2\xe8\x21\xa9\xa5\x0f\x2c\xf1\x02\x51\x65\xed\x87\xeb\xf4\x02\x09\xf7\xe8\xef\x0d\xe5\x02\xde\x75\x5c\x00\xad\x9b\xee\x72\x81\x2c\xb8\xab\xd0\x7a\x1c\x56\x2d\x5b\xa2\xe3\x01\xbe\xc3\x43\xd3\x16\xb4\x45\x53\x22\x72\x45\xa1\x24\x5c\x58\x16\xba\x22\x62\x81\x1e\xa1\xbc\x59\x4a\x31\xa6\x48\x29\x81\x86\xe7\x8e\xba\x15\x37\xf9\xcb\x8e\xb4\xa4\x16\x94\x16\x70\x54\x37\xe2\xc8\xc4\xed\x89\xf8\x7a\x88\x8c\x74\x82\xf3\xcf\x99\xe1\x3c\x61\x38\x1d\x6a\x37\xca\x09\x2c\x7c\xf3\x98\xda\xbb\xa4\x3a\xad\x4a\x19\x79\xf8\xf7\xcd\xf8\xd6\x22\xb6\x44\xd6\x07\x7d\x4a\xf0\xb7\x75\x8c\xcb\xa4\x0e\x54\x55\x06\x7e\x4a\xc1\x90\xc2\xbb\xbb\x77\x55\xc8\x86\x0c\xc4\x7b\xba\xcb\xf5\x3f\xd1\x54\xed\x80\x7e\xd1\x74\x77\xbd\x31\xfa\xe8\xd0\x12\xd3\xe7\xc5\x43\x2f\xc2\xd2\xc7\xe0\x41\x82\xd1\xe3\xf9\x65\x8b\x6d\x1d\x6f\x25\x34\x32\x81\x8b\xc4\xe9\x68\xc2\xd1\x64\x58\xbe\xc3\x2a\x75\x9f\x53\x50\x7b\x34\x79\xe7\xc0\x69\x7b\x39\x81\xf5\x18\x9d\xc7\x59\x09\x4c\xa8\xa0\xe7\xdc\x79\x0f\xc5\x5a\x67\x79\xb1\x3b\x30\x01\x52\xa8\xaa\x5e\xbb\x04\x16\xa9\x95\xec\xef\x18\x7d\xe4\x60\xef\xfe\x52\x7a\x93\xf7\x69\xd6\xb3\xc9\xe9\x8f\x7d\x3c\x88\x19\x1f\x44\x64\xb4\xbb\x0d\x4b\xaf\x89\xf2\xe6\x21\x17\x8d\x14\x43\x2e\x3a\x01\xac\xce\xab\xae\xa0\xda\xc3\x67\x2d\x5a\x62\x13\x4b\x01\x72\x5e\x2a\x68\x9b\x74\xcb\x49\x6f\xa1\xcd\xee\xf9\xf7\x26\x8a\xad\x3c\x52\xfb\x6c\xf3\x4d\xe5\xd9\xdb\x97\x4e\x26\x70\xa4\x28\xe5\x48\xa3\x66\x2f\x32\xf0\x76\xd1\x5e\x64\xa0\xb7\x6c\x62\xed\xb7\xa2\x42\x37\x4b\x6c\x09\x2f\x0a\xa2\x7e\x8d\xd3\x51\x29\x30\x2a\xa5\x81\xd2\x8f\x65\xe9\x47\xcc\xd4\x6d\x5c\xb9\xee\x26\x6a\xe5\xc7\xc6\x80\xb9\xea\x20\xc5\x10\x78\x5d\x64\x72\x8d\xa3\x03\x75\x93\xaa\xeb\xe7\x1b\x88\x42\x3a\x46\xc1\x3e\x35\xb0\xd9\xd1\x65\xd5\x5c\x10\x8c\x2a\x91\xe3\xcd\x93\xd3\xaa\x9c\xc0\x93\x8e\x8b\x66\xf9\xf4\x9a\xd6\x42\x47\xaa\x0b\x3c\xc6\x64\xd5\x38\x9a\xb6\x3c\xaf\xfd\x22\x79\x6a\x2b\x9c\xbb\x28\xdc\xba\x7c\x4a\x97\x4c\x0c\xbd\x67\xcc\x66\x9a\xcc\xd0\x04\x9e\x54\x7c\x03\x0b\xda\x52\x58\x52\x52\xa3\xe7\x9e\xf6\xd4\xa0\x46\x89\x67\x9b\xed\xca\xd0\x72\xfa\xf2\x99\xf5\x69\x54\x29\xd8\x30\x64\x1f\xb0\xda\x82\xb8\x90\xb4\x4b\x5b\x56\x6e\x80\xb3\x3a\xa7\xe1\x88\x49\x75\x43\x36\xdc\xba\xe3\xa9\xc1\xb1\xda\x6b\x75\x6c\x21\x2d\x84\x58\xf1\xe3\xd9\xcc\xcb\x96\x5c\x50\x9c\xed\xcf\xcd\xf2\x82\xd1\x59\xdd\x14\xf4\x9e\x06\x3f\xbb\xa8\x9a\x8b\xd9\x12\x25\xba\x99\x86\x36\x7d\xc7\xff\xd7\xf7\x5f\xdd\xbf\xf7\xfd\x57\xbf\x0f\xb9\xbe\x35\x9e\xde\xac\xa8\x9f\xd7\xa5\x67\x4e\x87\xa4\xa9\x16\xa9\xa7\xc0\xd6\x55\x47\x8f\x83\x19\xc6\x30\xdd\x81\x6e\x3a\x31\xed\x8e\xb7\xb6\xb3\x96\x44\x81\x85\x93\x23\x21\x49\x64\x29\xfa\xd1\xc5\x1e\xf5\x0d\x51\x89\x11\x2b\x2d\x36\x24\xe9\x27\xa8\xd7\x61\x45\x99\xf6\xf1\x00\xb6\xff\xde\x18\x70\x17\xfd\x02\x7b\xad\x95\x98\x5e\xa3\xe4\x73\x80\xf5\x43\x1b\xf5\x7a\xa0\xd7\xfe\x55\xc0\x2b\x33\x4d\x82\x8b\xab\xf1\xa2\x33\xf3\xfb\x22\x82\xf7\x18\xb7\x38\x1c\xef\x41\x05\xc3\x33\x50\x4d\x6c\xbd\x51\x41\x05\x61\xd5\xb1\xf7\x65\xa4\x1e\x89\x8f\x7b\x94\xe0\x6a\x5c\xd1\xcd\x71\x14\xe0\x14\x67\xe3\xaa\x5c\x74\x17\x17\x15\xe5\xc7\x0a\xc9\xee\x7b\x2e\x71\x51\xc9\x5b\xc2\xb1\x75\xaa\x1a\x8d\xbc\xfc\xc5\xde\xf4\xe5\x7a\x4e\x0b\xc6\x57\x12\x45\x6a\xf4\xf4\xda\x62\xfb\xd6\x90\xd9\xe0\xea\xa7\x43\x52\x98\x6c\x62\x5b\xd2\xbd\xfc\x33\x07\xef\xde\x16\x8c\x7e\xb4\x25\x9e\xf6\x1e\x53\xca\xfe\x30\x1e\x8f\xa3\x08\xe0\x5f\xfd\x16\xd1\xfe\x97\x84\xf4\x56\xe1\x59\x0b\x86\x4e\x40\x6f\x6e\x18\x6f\x2a\x95\x3f\x33\x3a\x1d\x54\xd1\x18\x6d\x3a\x74\xe8\x5c\x15\x77\x18\x7d\x9c\x19\x57\xfc\xbc\x29\xa5\x98\x49\x6b\xcc\xb2\xa1\x55\xf2\x77\x41\xb4\x64\xb9\x6a\x2a\x56\x53\xe5\x24\x4a\x30\xce\x69\x8b\xb2\xd3\x3d\xc1\xf2\x2b\xc8\x9b\xba\xac\xf0\xfa\x38\x3d\xf0\x33\x58\xa0\x09\x18\xc6\x10\x07\x1b\x34\xfc\x60\x40\xf3\xab\xe2\xe6\xfb\xe1\x8e\x4c\x13\xf7\x82\x12\xd6\x39\x48\x69\xd0\xa2\x84\x13\x71\xf8\x7c\xc5\x86\x94\x4e\xd4\x44\xea\xc7\x7f\x4f\xdc\x77\x97\x01\xca\xb3\x0a\x51\x45\x0a\x25\x9e\x52\xcc\xfb\xfc\x3d\xaa\x84\xef\x7b\x9f\xdd\x43\x3f\xcc\xe1\xfd\x6d\xb2\xc4\xb6\x3a\x30\xb1\x2a\xe4\xe9\x15\xf7\x50\xb4\x24\x6d\x72\x8f\x2c\xec\x1c\x8b\x9d\xb5\x5c\x9c\x48\xe4\xa9\x32\x1c\x03\x82\x4b\x11\x2e\xc0\x7b\x79\xe3\x3d\xb6\xf8\xba\xbd\x75\x75\x24\x22\x2d\xfe\x3c\xd1\x52\xdb\xa1\x05\xae\x56\x84\x5f\x05\xb8\xc5\x1a\x67\x21\x76\xee\xde\x7d\x2b\x27\x46\xf8\x95\x9b\x58\xdb\xe9\x71\x47\x79\x85\xc2\x21\x2b\xbd\x55\x0d\x88\x36\x94\xce\x96\xe8\x19\x27\x8b\xb0\xde\x2f\x9e\x53\xb0\x54\xc3\xd3\x72\xd5\xce\x12\x0b\xb9\xc7\x04\x53\x7d\xa7\x35\xfc\xce\x99\xc2\x10\x64\xf8\x04\xe1\xa8\x34\xb2\x99\x57\x74\x9d\x39\xba\x71\xc9\x66\x22\x24\x7f\x83\x54\xe5\xf9\x15\xea\x2d\x2f\xa5\xdc\x96\x56\x1b\x95\x15\x12\xdf\x3a\x64\x25\x85\x7d\x87\xef\x21\x5c\x9e\x0f\x51\xab\x73\x4a\x38\x30\xef\x5a\xea\x2d\x2b\xa4\x93\xe0\x45\xcb\x27\x27\xf6\xd6\xa1\x33\x2e\x09\x5d\x7d\x6e\xe3\x3d\xdb\xdf\x9c\xc9\x5d\x8e\x63\xf2\x1e\xd9\x12\x8b\x9c\x18\x9d\x47\x15\xa9\x21\x06\xc5\xc3\xe3\x4c\xf0\x04\xb3\x62\x5a\x88\x78\xed\x12\x2f\xfc\x6a\x45\x08\x73\xfa\xe3\xbf\xf8\xe7\xdb\xf1\xc9\xff\x1f\x00\x00\xff\xff\xa6\x61\xb1\xb6\x4a\x39\x01\x00") 72 | 73 | func distBundleJsBytes() ([]byte, error) { 74 | return bindataRead( 75 | _distBundleJs, 76 | "dist/bundle.js", 77 | ) 78 | } 79 | 80 | func distBundleJs() (*asset, error) { 81 | bytes, err := distBundleJsBytes() 82 | if err != nil { 83 | return nil, err 84 | } 85 | 86 | info := bindataFileInfo{name: "dist/bundle.js", size: 80202, mode: os.FileMode(420), modTime: time.Unix(1488173227, 0)} 87 | a := &asset{bytes: bytes, info: info} 88 | return a, nil 89 | } 90 | 91 | // Asset loads and returns the asset for the given name. 92 | // It returns an error if the asset could not be found or 93 | // could not be loaded. 94 | func Asset(name string) ([]byte, error) { 95 | cannonicalName := strings.Replace(name, "\\", "/", -1) 96 | if f, ok := _bindata[cannonicalName]; ok { 97 | a, err := f() 98 | if err != nil { 99 | return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) 100 | } 101 | return a.bytes, nil 102 | } 103 | return nil, fmt.Errorf("Asset %s not found", name) 104 | } 105 | 106 | // MustAsset is like Asset but panics when Asset would return an error. 107 | // It simplifies safe initialization of global variables. 108 | func MustAsset(name string) []byte { 109 | a, err := Asset(name) 110 | if err != nil { 111 | panic("asset: Asset(" + name + "): " + err.Error()) 112 | } 113 | 114 | return a 115 | } 116 | 117 | // AssetInfo loads and returns the asset info for the given name. 118 | // It returns an error if the asset could not be found or 119 | // could not be loaded. 120 | func AssetInfo(name string) (os.FileInfo, error) { 121 | cannonicalName := strings.Replace(name, "\\", "/", -1) 122 | if f, ok := _bindata[cannonicalName]; ok { 123 | a, err := f() 124 | if err != nil { 125 | return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) 126 | } 127 | return a.info, nil 128 | } 129 | return nil, fmt.Errorf("AssetInfo %s not found", name) 130 | } 131 | 132 | // AssetNames returns the names of the assets. 133 | func AssetNames() []string { 134 | names := make([]string, 0, len(_bindata)) 135 | for name := range _bindata { 136 | names = append(names, name) 137 | } 138 | return names 139 | } 140 | 141 | // _bindata is a table, holding each asset generator, mapped to its name. 142 | var _bindata = map[string]func() (*asset, error){ 143 | "dist/bundle.js": distBundleJs, 144 | } 145 | 146 | // AssetDir returns the file names below a certain 147 | // directory embedded in the file by go-bindata. 148 | // For example if you run go-bindata on data/... and data contains the 149 | // following hierarchy: 150 | // data/ 151 | // foo.txt 152 | // img/ 153 | // a.png 154 | // b.png 155 | // then AssetDir("data") would return []string{"foo.txt", "img"} 156 | // AssetDir("data/img") would return []string{"a.png", "b.png"} 157 | // AssetDir("foo.txt") and AssetDir("notexist") would return an error 158 | // AssetDir("") will return []string{"data"}. 159 | func AssetDir(name string) ([]string, error) { 160 | node := _bintree 161 | if len(name) != 0 { 162 | cannonicalName := strings.Replace(name, "\\", "/", -1) 163 | pathList := strings.Split(cannonicalName, "/") 164 | for _, p := range pathList { 165 | node = node.Children[p] 166 | if node == nil { 167 | return nil, fmt.Errorf("Asset %s not found", name) 168 | } 169 | } 170 | } 171 | if node.Func != nil { 172 | return nil, fmt.Errorf("Asset %s not found", name) 173 | } 174 | rv := make([]string, 0, len(node.Children)) 175 | for childName := range node.Children { 176 | rv = append(rv, childName) 177 | } 178 | return rv, nil 179 | } 180 | 181 | type bintree struct { 182 | Func func() (*asset, error) 183 | Children map[string]*bintree 184 | } 185 | var _bintree = &bintree{nil, map[string]*bintree{ 186 | "dist": &bintree{nil, map[string]*bintree{ 187 | "bundle.js": &bintree{distBundleJs, map[string]*bintree{}}, 188 | }}, 189 | }} 190 | 191 | // RestoreAsset restores an asset under the given directory 192 | func RestoreAsset(dir, name string) error { 193 | data, err := Asset(name) 194 | if err != nil { 195 | return err 196 | } 197 | info, err := AssetInfo(name) 198 | if err != nil { 199 | return err 200 | } 201 | err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) 202 | if err != nil { 203 | return err 204 | } 205 | err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) 206 | if err != nil { 207 | return err 208 | } 209 | err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) 210 | if err != nil { 211 | return err 212 | } 213 | return nil 214 | } 215 | 216 | // RestoreAssets restores an asset under the given directory recursively 217 | func RestoreAssets(dir, name string) error { 218 | children, err := AssetDir(name) 219 | // File 220 | if err != nil { 221 | return RestoreAsset(dir, name) 222 | } 223 | // Dir 224 | for _, child := range children { 225 | err = RestoreAssets(dir, filepath.Join(name, child)) 226 | if err != nil { 227 | return err 228 | } 229 | } 230 | return nil 231 | } 232 | 233 | func _filePath(dir, name string) string { 234 | cannonicalName := strings.Replace(name, "\\", "/", -1) 235 | return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) 236 | } 237 | 238 | --------------------------------------------------------------------------------