From 3167d96cfc20af5dcbb7f44db4d2856a0b0912e8 Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Sun, 17 Jan 2016 15:00:33 -0600 Subject: [PATCH] use a different query to fetch materialized view structure --- pkg/api/api.go | 10 +++++- pkg/client/client.go | 4 +++ pkg/client/result.go | 8 ++--- pkg/data/bindata.go | 6 ++-- pkg/statements/sql.go | 17 +++++++++++ static/js/app.js | 71 +++++++++++++++++++++++-------------------- 6 files changed, 75 insertions(+), 41 deletions(-) diff --git a/pkg/api/api.go b/pkg/api/api.go index 314fc9d..c4222d6 100644 --- a/pkg/api/api.go +++ b/pkg/api/api.go @@ -151,7 +151,15 @@ func GetSchemas(c *gin.Context) { } func GetTable(c *gin.Context) { - res, err := DB(c).Table(c.Params.ByName("table")) + var res *client.Result + var err error + + if c.Request.FormValue("type") == "materialized_view" { + res, err = DB(c).MaterializedView(c.Params.ByName("table")) + } else { + res, err = DB(c).Table(c.Params.ByName("table")) + } + serveResult(res, err, c) } diff --git a/pkg/client/client.go b/pkg/client/client.go index d703be5..5147b49 100644 --- a/pkg/client/client.go +++ b/pkg/client/client.go @@ -107,6 +107,10 @@ func (client *Client) Table(table string) (*Result, error) { return client.query(statements.PG_TABLE_SCHEMA, schema, table) } +func (client *Client) MaterializedView(name string) (*Result, error) { + return client.query(statements.PG_MATERIALIZED_VIEW_SCHEMA, name) +} + func (client *Client) TableRows(table string, opts RowsOptions) (*Result, error) { schema, table := getSchemaAndTable(table) sql := fmt.Sprintf(`SELECT * FROM "%s"."%s"`, schema, table) diff --git a/pkg/client/result.go b/pkg/client/result.go index 4a40043..fe18bb6 100644 --- a/pkg/client/result.go +++ b/pkg/client/result.go @@ -25,10 +25,10 @@ type Result struct { } type Objects struct { - Tables []string `json:"tables"` - Views []string `json:"views"` - MaterializedViews []string `json:"materialized_views"` - Sequences []string `json:"sequences"` + Tables []string `json:"table"` + Views []string `json:"view"` + MaterializedViews []string `json:"materialized_view"` + Sequences []string `json:"sequence"` } // Due to big int number limitations in javascript, numbers should be encoded diff --git a/pkg/data/bindata.go b/pkg/data/bindata.go index 8876925..c202338 100644 --- a/pkg/data/bindata.go +++ b/pkg/data/bindata.go @@ -299,7 +299,7 @@ func staticIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/index.html", size: 9935, mode: os.FileMode(420), modTime: time.Unix(1452828257, 0)} + info := bindataFileInfo{name: "static/index.html", size: 9935, mode: os.FileMode(420), modTime: time.Unix(1452900930, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -344,7 +344,7 @@ func staticJsAceJs() (*asset, error) { return a, nil } -var _staticJsAppJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xdc\x7c\xff\x72\xe3\x46\x8e\xf0\xff\x7e\x8a\x1e\x26\x35\xa2\x76\x6c\xda\x9e\xdd\xfd\xbe\x2a\xc9\x56\xce\x71\x9c\xca\xdc\xce\xc4\xb9\xb1\xb3\x75\x55\x3e\x97\x8b\x22\x5b\x12\x63\x8a\x54\x48\xca\x1e\x27\xf1\x1b\xdc\x03\xdc\xf3\xdd\x93\x1c\xd0\xe8\x9f\x64\x53\xd2\xcc\x66\x93\xdc\x65\x6b\x3d\x22\x1b\x8d\x46\x03\x68\x34\xd0\x40\xf3\x21\xae\x18\x4f\xb3\xa6\xac\x98\xfd\xdf\x29\x2b\xd6\x79\x3e\xde\xc3\xe6\xa4\x2c\x0a\x9e\x34\x3c\xb5\x9b\x67\x71\x5e\x73\x6a\x9f\x96\xe5\xfd\x32\xae\xee\x6b\xbb\xfd\xe7\x67\x6a\x4c\xf9\x2c\x5e\xe7\xcd\x5d\x55\x3e\xd6\x77\x79\xb6\xcc\x1a\x68\x3c\x3e\x3a\x92\xa8\xd7\x55\xc5\x8b\xe6\x3a\x9e\xe6\xbc\x35\xb2\x68\x9f\x65\x79\xc3\xab\xcb\x55\x93\x95\x45\x8d\x58\xf7\x18\x0b\xf8\x8f\xeb\x38\x0f\x46\x04\x1e\x9c\xb2\xc1\x57\x67\xd7\x67\x83\x60\x1f\xdb\x8a\xb2\xb9\xd3\xed\xc1\x0b\xb7\x71\x5e\xf1\x18\xd0\x51\xd7\x60\xa2\xda\x98\xdd\x08\xbd\xa1\x3d\x98\xb8\x3d\x73\x5e\xd7\x6a\x44\x16\x9c\x74\xda\xa8\x97\x68\x6b\x75\xcc\xee\xb9\xe9\xf8\xf6\xcd\xdf\x2e\x9c\xe6\xcc\x6e\x0f\xde\x74\xda\x91\x15\xa6\xfb\x9b\x2b\xf6\xed\xf7\x6f\xdf\x9a\x99\xea\x66\xd1\x74\x79\x4d\xcd\x7b\xc0\xfa\xbd\xd9\xba\x48\x90\x6b\x6c\xbe\xce\xd2\x70\x28\x38\xa7\xdf\xd5\x7f\xc1\x37\xac\xe2\xcd\xba\x2a\xd8\xbb\xb8\x59\x44\xb3\xbc\x2c\xab\x30\x3c\x66\xaf\xe8\xb9\x8a\x8b\xb4\x5c\x86\xc3\x21\xfb\x13\x3b\xfa\x00\x02\x3b\x3a\x1a\x46\x4d\x79\xd5\x54\x59\x31\x0f\x8f\xff\xdf\x30\xaa\xd7\xd3\x5a\x3e\x0d\xc7\xec\x19\xf0\x4b\x7c\x37\x88\x7e\x9f\xd1\xdf\xe0\x20\xd8\xf9\xa7\xf9\x7b\x1b\xfd\x50\x66\x45\x18\x04\xc3\xf1\xde\xb3\x3d\x19\xde\x5c\x01\xbb\xe1\xe7\x1b\x35\x29\x54\x93\x2c\x05\xdd\xa8\xa9\xe1\x0a\x54\x39\x9e\xf3\x08\x40\xdf\x34\x7c\x19\x06\xf2\xfd\x5d\x96\x22\x36\xe8\x91\xcd\x58\xf8\x22\x4b\xa9\x3b\xa3\xce\xc4\xa5\xb1\x78\xd1\x42\x54\x7b\x10\xed\x43\x2f\x01\xfd\xbc\x67\xe6\x9d\xa5\x2e\xb1\xd0\xf1\x3d\x68\xfd\x5b\x54\xfa\xb0\x58\x2f\x69\xc0\xbc\x4c\xe2\xbc\x83\xdb\x2c\x0f\xc0\x8d\xb0\x9d\x79\x1b\x54\x84\x47\x0e\xba\x8a\xab\x9a\xbf\x29\x9a\xd0\xc1\x3b\xf7\xe0\x1d\xb2\x5f\x7e\xf1\x2c\xc7\xee\x48\xdf\xc5\xf3\xac\x88\xf1\xe9\x72\x36\x03\x0a\x2d\x46\xaf\x00\x39\x2e\xd1\xcf\xc3\x20\x92\x6b\xf7\x00\xdf\x05\xc3\x28\x8d\x9b\x38\x0c\xe8\x61\x2c\xc1\xd5\x7a\x77\xc9\x1f\x1b\xea\x43\x81\xf0\x80\x1d\xa3\x9a\x09\x68\x1f\x35\xbc\x3e\x2f\xd7\x30\x45\x24\x5a\xfc\x32\x04\xf5\x8f\x80\xad\xc0\x48\x68\xd3\x2c\xd2\xfd\xd9\x21\x53\x73\x97\xfa\x80\xf2\x51\x24\x0c\xd9\x09\x6b\x0d\xc5\x10\xd5\xab\x57\x6d\x89\xc3\x4b\x97\xde\x78\x95\x9d\xc7\x79\x1e\x2e\x79\xb3\x28\xd3\x7d\x18\xba\x59\xe0\xdf\x2a\x5e\xd6\xfb\x2c\x99\x12\xb6\xcf\xa3\xf8\x87\xf8\x43\x48\x88\xd7\x55\x0e\xf6\xe6\x10\x7a\x06\xb0\xf6\x44\x07\xf1\x9e\x50\x8c\xe4\xbf\xf4\x2e\x89\x93\x05\x1f\x91\xed\xa5\x37\xc8\xf5\x91\x1a\x40\xbc\x59\xf0\x38\xe5\x55\x3d\x92\x74\x83\x6d\xf8\x70\x20\x35\xf7\x00\x34\x77\xd4\x5a\x43\x02\xe8\x99\xba\xd6\xeb\x24\x81\x96\x91\x36\x14\x21\xa2\x1f\x6a\x4c\xc9\x94\x5e\x8c\xed\x4e\xbc\xaa\xca\xca\xea\xf2\x61\x51\xc1\x1a\x6e\xe2\x66\x0d\x33\xee\xf4\xff\xe1\xdf\xd6\xbc\x7a\x8a\x84\x48\xfe\xf5\xea\xf2\x5b\x04\x8f\x2a\x5e\xaf\xc0\xbe\xf3\x6b\xfe\xa1\x19\x2a\xec\xc8\xea\xae\x6e\x5e\x4e\x7f\x80\xad\xa8\x0e\x91\x95\xed\xff\x7e\xd6\xec\x0f\x00\x12\xd6\x51\x70\x58\x12\x38\xfc\xfe\xf9\x59\xf0\x1f\x0d\x95\x8d\x4f\xec\x3c\x7e\x74\x3e\x7c\x8d\x00\xdf\x82\x0e\x15\x31\x14\x90\xfb\xac\x5c\x35\x52\xf0\xfd\xe8\x0e\x51\xf0\xe2\x27\xfc\x1b\x1c\xa2\xea\x05\x56\x4f\xef\x18\x60\x87\xd7\x09\xe8\x20\x57\x03\xd1\x0c\x76\x18\x63\x33\xed\x6f\x8a\x94\x7f\xe0\xb5\x8b\x75\x77\xda\x33\xea\xbe\x85\x41\xe7\x20\xec\xa6\x8a\xb3\xa2\x71\x06\xda\x75\x90\xc4\x74\xef\x1f\xe8\x9b\xac\x06\x5b\xf8\xb4\xab\xa2\x2c\x08\xbc\x1f\xdf\x97\xca\xc9\xf1\x60\xf4\xe0\xd3\x3e\x51\x0f\x46\xe0\x52\xb2\x6e\xb8\x58\x0d\xe1\x8f\xf8\xd7\x30\xdb\xc5\xb8\x2a\x6b\x42\x29\xa0\x10\x1d\x13\xbf\x46\xf4\x0f\xf3\x22\x5f\xe5\xc0\x9e\x8f\x41\x2e\xbb\x6c\x42\x6f\xe1\x2f\x92\x32\xb5\x69\x77\x76\xa4\x47\x50\x82\xf2\x31\x9a\x36\x65\x2c\x5b\xdd\x55\x3c\x5d\x67\x79\x7a\x05\x86\x6c\x19\x5f\x71\xb2\x19\x45\xbc\xc4\xb5\x42\x8b\xd5\x18\xf7\x9a\x9a\xc1\x84\x07\x81\xb0\xd4\xf8\xb2\xc9\x1a\x50\x09\xe9\x0b\x82\x75\x93\x4b\x72\xe4\x48\x24\xb8\x96\x0b\x95\x60\x1e\x32\xfe\xd8\x06\x61\xc1\xdf\xc5\x5b\x09\xb2\x44\xe7\x2f\x8b\xf3\xec\x27\x9e\xde\x29\xf8\xe0\x9d\xf5\x96\x39\xf0\x35\x78\x99\xc0\x07\x77\xe4\xe0\x4a\xbf\x45\xf3\xa5\x69\xce\x12\xe3\xbe\xf6\x91\x3c\x38\xc9\x58\x92\xc7\x75\x7d\x1a\xcc\x62\x30\xf1\x07\x02\x2a\x98\x9c\x1c\x66\x93\xc1\xa6\x79\xec\xd2\xd1\x3b\xbb\x5d\x3a\x7a\xa7\xd9\xe9\x98\x64\x55\x92\xf3\x83\x52\xf6\x75\xe6\x7e\x8f\x80\x52\x84\xb4\xd7\xa2\xb4\xd9\x29\xbc\x59\xad\xa7\x79\x96\x80\x63\xa2\x61\x40\x0d\xc1\xef\xe4\x29\x89\x5b\xc9\xff\x15\xb4\x9c\xa4\xd9\x83\x1c\x74\x50\x0b\xe5\x61\x68\x15\xa8\x27\x58\x85\xc1\x44\xe0\xdf\xdc\xe5\x00\x87\x1e\x4c\x34\xf9\x03\x22\x7f\x56\xe6\xb0\x65\x1e\x94\x03\x41\x7e\x5f\xeb\x8a\x17\x0a\x44\x0c\x2d\xa6\x01\x23\x9f\x1c\xc2\x38\x3b\x8d\x0e\x5a\xd0\xc0\x22\xe3\x95\x20\x16\x1d\x72\x88\xba\xc2\x79\x55\xae\x57\xac\x9c\xb1\x9b\x40\x6f\x2f\x52\xd2\xfb\x5e\xc9\xed\xdb\x62\xb9\xd5\x6e\x2c\x70\x56\xae\xa0\x1b\x81\xf2\x36\xca\x79\x31\x6f\x16\xc8\xea\xa3\x21\x46\x71\x4d\x56\xac\xb9\x18\x98\x31\x01\x72\xe7\x0a\xc7\x2f\x1e\xf6\xf2\x25\x41\x8b\x97\x92\xc4\x61\x1b\x81\x2b\xb9\xad\xac\x20\x84\xc8\x46\x1b\x8f\x91\xe3\x6e\x08\x0e\x84\x31\xe8\x0a\x14\x40\x1e\x2a\xf0\x77\xaa\x6c\xbe\x68\xfc\x52\x55\x20\x60\xaa\x0a\x4b\xa8\x64\x5d\x24\x03\x91\x1e\x16\xe2\x6b\x3f\x63\xa1\x79\x68\x49\xbf\x45\xf3\x3a\x9f\x04\xc4\x0b\x21\xe6\x0c\xfc\x71\x94\xb2\x8b\xca\x38\x47\x3a\x8e\x51\x7a\x15\xe1\xc0\xd8\x6b\x2c\x21\x1c\xec\x79\xd6\x62\x88\xe6\xa5\xe0\xa2\xf0\xbc\x0e\x9a\xa7\x15\x3f\x1d\xf8\x5a\xb2\x94\xde\xc3\x88\xc4\x74\xfc\x8d\x56\xca\x9a\xfa\xcb\x62\x5a\xaf\xc6\x8a\x0a\x52\xf5\x3c\x53\x73\x7d\xee\xce\xf8\x10\xa6\x6c\xf1\xe3\xb9\xb3\x86\x45\x9b\x86\x30\x5b\x86\x04\x72\xf7\x89\xbc\x8c\xe5\x36\x51\xcb\x08\x04\xa2\x8e\xcf\x94\x47\x37\x8c\x16\xcd\x32\xa7\x08\x11\x9a\x2c\xd7\xd0\xeb\xbc\x0a\x11\x48\xbb\x91\x15\x2d\xbf\xf4\xf3\xd0\xb3\x27\x11\x30\xb9\xb0\x37\xf4\x70\x3b\x1c\x46\xf1\x0a\xec\x40\x7a\x5d\xda\xa4\x28\x86\xe8\x25\x44\xa4\x44\xf7\xfc\xa9\x26\x2a\xac\xa5\x78\x6c\x8f\x1b\x44\x84\x19\xa6\x13\xa7\xe9\x39\x0a\x34\x34\x4b\xc9\x45\x3c\x85\x7d\x15\x3c\xa7\x06\x9c\xe4\x77\xbc\x58\xd7\x14\xe6\xb4\x7d\x64\x5e\x27\xf1\x8a\x7f\x83\xbc\x01\x27\x89\xc6\x42\x92\xe0\x81\xbd\xa0\xb3\x15\x8c\x03\xe5\xe3\x1a\xc6\x99\x81\x45\xd2\xc1\xb0\x14\x08\xb9\xe9\xa1\x58\x78\x87\x13\xa0\x0e\x47\x15\x08\x89\xed\x9d\xd8\x37\x38\xa9\x81\x68\xa5\x92\x38\xca\x60\x82\x7f\x4f\x0e\xf1\x3d\x4a\xdb\x26\x72\x5d\xb4\xc8\x54\x3b\x3e\x18\x1e\x96\x96\xc9\x7a\x09\x81\x65\x94\x88\x13\x99\x8b\x9c\xe3\x53\x18\x00\x29\xc4\x11\x1e\x65\x05\x18\xd1\x6f\xae\xdf\xbd\xc5\xb0\xbf\xa9\xac\x80\x92\x47\xc9\x02\x44\xf9\x2d\xf8\x27\xb5\x61\x3a\x18\x40\xf6\x05\x18\x39\x36\x72\x00\x6e\x8e\x6e\xa3\x02\x7e\xfc\x3d\xce\xd1\x2e\xb6\x42\x8d\x73\xeb\x6c\xca\x8d\xb9\xed\x53\x2b\xb7\x1b\x44\x32\xdc\xe9\x81\x2a\x0b\x2f\x21\xe4\x46\x95\x15\x2c\x8e\x9b\xa6\x82\xd9\xe0\x2a\x5c\xc2\xe0\x68\xce\x55\x93\xe0\xb2\x7e\xaa\xf8\xb2\x7c\xe0\x4a\x29\x96\xab\xe6\xc9\xdb\x52\x94\x07\x49\x55\xae\xda\x47\x25\x2b\x5e\x81\xd2\x2f\x05\x31\x67\xa4\xd2\xd2\xd7\x8e\xc5\xd3\x3e\xe3\xb9\x51\x8f\x58\x7a\x5a\x68\xe1\x2b\x40\x01\x8c\x0f\x50\x4f\xac\xf7\x29\xcf\x39\xbc\x55\x9a\x82\xe2\x5a\x42\xb4\x88\x01\x3c\xb4\x9e\x55\x9c\x3d\x95\x6b\x88\x21\xe5\x8f\xc7\x18\xe2\xec\xa6\x14\x56\x55\x62\x41\x73\x4a\x6e\xbc\xe3\xd0\xb3\x2f\xac\xdd\xe7\x05\x18\xa1\x59\x56\x2d\x43\x89\x7b\x38\x94\x5c\x37\x16\xe5\x31\x6b\x92\x85\xa4\x58\x51\x93\xc4\x35\xb7\x48\x1f\xc9\x15\xe6\xb8\xd9\xc1\xf5\xfb\xef\xbf\x3d\x3f\xbb\xbe\x60\xd7\x67\x5f\xbe\xbd\x60\x56\x48\xd4\x13\xf0\x12\x49\xf8\x2e\x12\x61\xee\x90\xc5\x39\xaf\x1a\xfb\xcd\x58\x83\xda\xb2\x57\x6f\x9f\xf5\xaf\x29\x28\xf3\xfd\xd8\xa2\x55\xb2\xd3\x4f\xe9\x57\xef\x2f\xbf\xfb\xe7\x50\xe9\x58\xd5\x4f\x26\x1e\x4c\x54\x59\x35\x9a\x78\x71\x54\x0b\xca\x16\xe3\x51\x0c\xcf\xe5\x59\x10\xbd\x09\x34\x16\x79\xa0\xcb\xc9\xc1\x30\xf2\x17\x1b\x1d\x01\xdb\xa0\x14\x7f\x9c\xaa\x78\x82\x82\x8e\xef\xdf\xbf\x09\x83\xab\x8b\xb7\x17\xe7\xd7\xec\x4f\xec\xeb\xf7\x97\xef\x0c\x83\x9c\x81\xd6\x55\x8e\x6a\xb9\x68\x9a\xd5\xe8\x50\x04\x90\x12\x0f\x9e\x93\x21\x13\xa3\x05\xc4\x3e\x22\x9e\x84\x68\x88\x82\xab\x2f\x88\x88\x53\x43\x8f\xd8\x06\x15\xcd\xf4\x5e\x4d\x00\x5b\x44\x2f\xf1\x5a\xfc\xb2\xc7\x87\xd1\x98\x21\x1e\x9d\xc7\x10\x48\x82\xb5\x7e\x37\xcd\xe3\xe2\xde\x70\x05\x20\xa2\x19\x98\x3c\x4b\x1c\x9a\xdd\xcf\xee\x79\x22\xb0\xfc\x0c\xc4\xf9\x18\xa6\x59\xc5\x2d\xf5\xa7\x15\xc1\xda\xaf\x95\xb0\xce\xae\xce\xb5\xa4\x94\xb9\x7e\xf9\xd9\x87\xd7\x7f\xfd\xf2\xf5\x38\xb0\xa5\xfa\xd5\x45\x2f\xe4\xb9\x82\x94\x07\x88\x6d\xa8\xa0\x4b\xae\xd8\x53\x49\xa5\xa4\x05\xdc\x17\x53\x38\x2f\xf3\xf5\xb2\xa0\xdf\x97\x15\xb8\xd6\xca\xb6\xda\x1a\x28\xcd\x92\xec\xa8\xf4\x9a\x66\x05\x36\xf5\xa4\xa9\x26\x27\x4d\x3a\xb9\x78\xff\xfe\xf2\xfd\x48\xa8\x80\x03\x4a\xce\x0a\x02\xe1\x9f\xc0\xd9\xb6\xb5\x39\x1e\x2b\x6c\x96\x85\xb6\x76\x61\x32\xb8\x63\x6b\x5b\xd4\x26\x48\x18\x2a\x35\x20\x9e\xd7\x78\x48\xfb\xb6\x84\x5e\x49\x59\xa5\x35\xe8\x12\xec\xb3\xff\x44\x72\x28\x49\x93\x1b\x47\x1e\x5f\x20\x59\x26\x72\x56\xc4\x26\x82\xf9\x35\x68\x5c\x75\x11\x83\x15\xd5\x26\x05\x1a\xec\x48\x02\x1e\xc5\xbe\x69\x04\x66\x1d\xe3\xe1\x50\xc2\x9f\x83\xcd\x55\xee\xf8\x68\x8d\x1f\x38\x39\x97\xe4\x59\x22\x06\x74\x2d\xf1\x37\xed\x76\x88\xeb\xa0\x44\x89\x8b\x25\xa3\xe5\x8f\x00\x13\xab\x8b\xf1\x3b\x8d\xc6\x5b\xca\x42\xa2\x5d\xb8\x7e\x28\xcf\x41\x81\xbd\x04\x76\x29\xb2\xc7\x6a\x63\x7a\x1e\x3a\xec\x42\x26\x76\x79\x05\x6f\xed\x5d\xb0\xb2\x02\x28\x72\xf5\xd1\xc5\x24\x20\x68\x24\x42\xd2\xc9\x89\x70\x7b\x61\x50\xcb\xf7\x01\xa0\x9b\xec\x76\x68\xc2\x48\xa0\x27\x05\x7a\xe4\xac\x84\x0c\xa9\x7f\x25\xba\x1a\xc5\x0e\xc6\x86\x5a\xa1\x75\x78\xee\xab\x66\x56\xab\xa9\xe1\xbb\x93\x66\x5a\xa6\x4f\xd4\x5d\xe0\x13\x4d\xe5\x14\xdf\xf5\x69\x62\x2b\x8d\x61\x5c\xa1\x50\xe5\x4d\x50\x4f\x8b\xf8\x81\xad\x73\x96\x67\x51\x0d\x9b\x19\x66\x08\x01\xa1\xe3\x9b\x98\xf7\x63\xd9\x87\x82\x0e\x5b\xb3\x6d\x18\x67\xdc\x45\xf9\x28\xb6\x43\x75\x94\x47\x03\x5b\x67\x7b\xde\xfd\xd0\xd2\xfd\x9b\xdb\xb1\x0e\xc0\x48\x28\xee\xc6\x29\xa4\xbb\x2e\xea\x45\x36\x6b\xc2\x1b\x9d\x26\xc8\x50\x1e\xc7\xd2\xf3\xcf\x6e\x23\x79\x82\xa6\x1e\x9b\x0c\x5c\x93\x26\x5e\x42\xf0\xe6\xfa\xe7\xc6\xde\xfd\xcc\xe4\x3a\x1b\x41\x50\x2f\xd2\x45\x81\x3a\xbd\x0b\x74\xf7\xe0\x76\x5f\x50\x30\x22\x72\xa5\x2c\x59\x8b\xdf\x14\x70\xdf\xa9\xf3\x49\xcb\x4a\x64\xc5\x6a\xdd\x60\x1c\x94\xa5\x7a\xd3\xc6\xf7\x28\x6d\x78\xbd\x02\x9f\x30\x0c\xc4\xf2\xc4\x61\x67\x98\x2a\xdc\x62\x63\x2c\x4f\xb2\x1b\x58\xa0\x38\x9c\x23\x62\x73\x4e\x27\x37\xf4\x8e\xcf\xac\xcd\x38\x02\xb8\xa7\x11\x24\x02\xf2\x53\x82\xef\x72\x8e\xfb\x0f\x29\x02\x8b\x69\x37\x7f\xd1\x63\xec\xda\x27\xd5\x74\x76\xe8\x55\x05\x2f\x27\xd5\x11\xb5\xc4\x6e\x49\x4d\xe6\x36\x7e\x77\x06\xdb\xc7\xe3\xbf\x33\x93\x6d\x52\x3e\x96\xd1\xf6\x31\xfd\x1f\x97\xd9\x6f\x8a\x59\xf9\x7b\x71\x79\x53\xba\x43\xf9\x98\x87\x19\x10\x28\x93\x08\x5e\xde\xe3\x21\x82\xe8\x77\x80\x90\xe8\xb4\x8a\x08\x1b\xd8\x13\xe1\x24\x6d\x5e\x92\x5c\x9a\xb2\x89\xf3\xbb\x3a\xfb\x89\xab\xb8\x5e\x04\x0a\xe6\x75\xa7\x07\xb6\x77\x3b\xe8\xb7\x1d\x78\xb1\xc4\xba\x1d\xcc\xeb\x4e\x0f\x91\x8e\x4e\x30\xdf\xea\xf4\x30\xaf\x3b\x3d\x44\x38\x90\x15\x73\x05\x1f\x7c\x5f\xdc\x17\xe5\x63\x61\xc4\xbd\x67\xeb\xdb\xd7\xa2\x90\x84\x94\xb8\xa5\x0a\xeb\x15\x8c\xc5\x65\xd2\x1b\x36\x8a\x95\x4e\x7f\x9b\xf0\xf8\x45\xfb\x25\xdb\x92\x02\xdf\x67\xc7\xf6\x73\x2d\x5e\xe8\x39\x4c\xd7\x4d\x03\x11\x88\xec\x46\xf4\x1f\xe3\xe1\xe0\xb1\xa5\xd4\xa0\xf3\xfc\x41\xa0\xde\x67\x51\x01\x30\x6a\x18\x5a\x0b\x69\x56\xe3\xc4\xc4\xe6\xa2\x7f\xfb\xf5\xcc\x43\x2a\xf9\xf2\x36\xbd\x66\x86\x82\xae\x0e\x48\xdd\x85\x31\xb2\x91\x6c\x6a\xb5\xb3\x89\x39\xed\x72\x26\xe4\x9d\x84\x94\xdc\x9e\xe3\xcc\x6d\xef\xe6\xce\xfd\xb9\x87\x14\x49\x2a\x52\x84\xe7\xd9\x6d\x42\x4f\xfa\xa6\x66\x91\xb1\x59\x04\xbd\xd4\x7f\x8c\xe4\x94\xb4\x3e\xa3\xc5\x28\xe3\x07\xa5\x22\x16\x89\xad\x85\xb1\x61\xc2\x64\xa3\xfa\x1a\xd9\xb1\xf4\xcb\x3c\x1a\xd9\xe6\x11\x9e\xd4\x80\x8a\x52\x95\x42\x8f\x1e\xf4\xed\x67\x0d\x9e\xe0\x6d\x08\xfe\x7e\x73\xd3\x8b\x03\x62\x86\x5d\x27\xe5\x44\xe5\x87\xca\x71\xb9\xd5\x24\x94\x0a\x2b\x45\x2d\xcc\x48\x03\x74\xab\x64\x64\x11\x05\xcc\xec\x8e\xdc\xbf\x91\x1d\xef\x9a\x46\x11\x02\x8d\x98\xe1\xc1\x9e\x9d\x2f\xa3\x92\x37\x4d\x97\xc2\x84\xaa\x44\x4d\xb5\x9c\xa2\x8c\xe5\x40\x5c\x0f\x71\xae\xa9\x5c\x11\x85\x1e\x70\x7a\x74\xc1\xc5\xae\x3b\x72\xc1\xd5\x4e\x2c\xc0\x34\x69\x87\x87\xec\x6c\xb5\xca\x9f\x24\x7d\x60\x79\x59\x59\xc0\x23\x08\x86\xe8\x60\x99\x1a\x89\xa7\x52\x60\x04\x2a\xe9\xc4\x65\x27\x5f\x94\x2b\xdb\x59\x7f\x5c\xf0\x0a\x05\x7f\x23\xbd\x72\xa7\xd7\xbe\xf3\x52\x16\x02\xde\x68\x3c\xb7\x10\x6e\xac\xf2\x38\xe1\x61\x80\x55\x73\xb0\xa2\x64\x93\x98\x04\x15\xb7\xa8\x5a\x32\x16\x28\x7f\x03\x05\x7f\x13\x88\x71\x83\x5b\x3c\xa4\xc1\x5f\x1d\xdf\x47\x94\x71\xc8\xcc\xb4\xa8\xc5\xe8\xdb\x7e\x6d\xef\xa3\x7b\xb6\x3b\xc5\xb5\xca\x3f\xdd\x71\x7f\xcc\x9a\xc5\x81\x59\x70\x7a\x12\x2d\x5f\xaa\xef\x6c\x65\xbc\xd1\x41\xc3\x75\xa9\x48\x6b\xef\x83\x62\x07\xb6\xf6\xbd\x8d\x6e\x94\xa9\x47\xf9\x9d\x16\xb4\x77\x86\xb5\xa2\x8a\x3a\xed\xf5\xf1\x7f\xbb\xa3\x69\xe9\x85\x99\xea\x06\x8f\xb8\xeb\xe9\xfe\x43\xae\xaa\x88\x83\xbf\x8b\x0b\x9e\x4b\xfe\x7a\xa7\x4b\x31\x26\xe5\x48\x44\x49\xaf\x39\x58\x6c\x4d\xdd\x78\x86\xfd\x53\x0f\x86\x1d\x32\xce\xa9\x12\x18\x1e\xb7\xd2\x92\x68\x50\xc9\xbe\x8e\xb3\x6b\x41\x6c\x70\x6f\xfb\xc2\xf9\x7b\xfe\xd4\x13\xd0\xaf\xd6\xf5\x22\xbc\x81\x76\x19\xb2\xc3\xaf\xdb\x0d\xa1\xba\xec\x6a\x05\xec\xb8\x88\x33\xd8\x10\xc5\xf2\x7d\xc0\xdc\x10\x84\xea\xd6\x08\x14\xb0\x13\xbe\x8f\x08\x61\x8c\xb8\x4d\xf4\xe2\x93\x35\x26\x6b\x1e\xb2\x66\xbb\xb8\x63\x09\xd8\xc7\x60\xdd\xbe\x81\xbd\xfd\x7a\xfa\x2b\xcc\xa6\x5a\xcb\x1a\xa4\x5d\x74\x56\xea\x22\xf4\xd9\x67\x9f\xc9\x72\x24\xf8\x95\xd4\x0f\xf0\xf7\x87\x1a\x13\x56\x9f\x7d\x58\xe6\x3e\x2f\x0a\x16\x24\xd7\xca\x2c\x10\xde\x01\xcc\xbc\xc2\xa2\x6d\xa3\xeb\x7b\x6e\x5a\xe1\xf3\x08\xa4\xbc\x0c\xe5\x42\x11\x45\x91\xb4\x79\x61\x15\x62\x28\x8a\x65\x4d\x9b\xc8\x10\x86\x43\x63\xba\x04\x16\x9f\xed\xfa\xd4\x39\x88\x9a\x4e\x8b\xcd\x9d\x69\xd8\x72\x68\xd9\x3e\x5f\x31\xd9\x8e\xd2\xfe\xed\x68\xf6\x9b\x1f\x47\xa7\x9c\xa3\x43\xcb\xf2\xda\x2c\x6f\xca\xb7\xe5\x23\xaf\xce\x61\x67\x08\x87\x14\x52\x5e\xce\x44\xce\x5c\xd4\xaf\x0d\x31\xab\x7d\xe0\xe6\xd8\xb7\x9b\x5c\x6d\x18\x84\xb5\xc1\x4d\xeb\x30\xa4\xec\xf3\x2f\x69\x85\xde\x8a\xd0\xd5\xc3\x4c\x52\x03\xbe\xd0\x7b\x3e\x03\xac\x0b\x6a\xa8\xc1\x7b\xac\x1b\x24\x92\x72\x5a\x8f\x71\xcd\x60\x24\x9e\xb2\xb2\x92\xb9\xda\xb4\x35\x0d\x08\xd3\x93\x45\x58\x61\x7a\x53\x51\xea\xc9\xcc\xf9\x8a\x60\x41\x50\x17\x34\xd9\xff\x1d\xcb\xea\x8f\xbe\x74\xba\xa5\x92\xff\x67\x96\xce\x27\xbb\x1c\x94\xde\xbd\x2e\x43\x3a\x50\x32\x2e\xdd\xaf\x20\x65\x4f\x20\xf6\x2b\xe6\x6a\x4d\x46\xb6\x5b\xa4\x3a\xde\x33\xa9\x59\x4f\x66\x76\x40\x99\xd9\xc1\x70\xdc\xeb\x4f\x5a\x0e\x96\x93\xb6\xf5\xa7\x3d\x9d\x33\x27\x95\xbb\xd8\xdd\x85\xd4\x49\x7d\xe1\xd5\x78\x38\x49\xc2\x35\x1e\x3a\x53\x21\x5c\x4b\x7d\x9e\x8d\xaa\x5a\xc0\xed\x20\x92\xca\xa9\x4e\x4a\x11\x62\x31\xe1\xf6\x9c\x0e\x06\x3a\xa4\x9b\xd0\xf6\x28\xfd\xa4\x93\x43\x82\x9b\x68\x0b\x2d\x12\x5f\x40\x29\x1e\x11\x68\xaa\xdd\xea\x36\x9e\xd3\xcd\x11\x39\x86\xa8\x2b\xa2\x80\x89\x9c\x2c\x91\x0e\xb9\x39\xba\x95\xe7\x0f\xf2\x61\xec\x9f\x6b\x9b\x7c\xca\x63\x85\x3c\xdf\x60\x3a\xb3\x22\x6b\x2e\x84\xca\x5a\x51\xca\x63\x95\xc9\xad\xf3\x3a\x5b\xf2\x72\xdd\xe8\x1b\x68\xca\x8b\x86\x17\x10\x61\x46\xf8\x00\xee\xf1\xba\x6e\xca\xa5\x63\x5f\xe5\x2a\x00\x8d\xf9\x1a\x22\xaa\xab\xec\x27\x1e\x1e\xff\xd9\xf6\xc2\x31\xb1\x0d\x76\x1d\x82\x54\xc0\x83\x59\xb9\x25\xfc\x2d\x97\x25\x66\x36\x83\x16\xe0\x15\xac\xef\xef\x20\xbc\x6e\xde\xc5\x15\x4c\x36\x34\x86\xc2\xf6\x54\xc4\xf5\x0d\xd8\xff\xa0\xc3\x3b\xd0\x72\x42\x8c\x11\xe7\xe1\x6a\x5e\xff\x98\x07\x9b\x3a\x80\x06\x0a\x1a\x5f\x6f\x02\xfa\xbe\xe6\x57\xe5\x0c\x61\xeb\x50\xee\x03\x06\x38\x29\x97\xcb\xb8\x48\x6b\x61\x4e\xe4\xef\xf0\x86\x44\x8d\x0a\x3d\x62\x01\xd8\x44\xc9\x23\xf2\x9c\xb1\x78\xed\x6f\xfc\xc9\xdc\x4a\x81\xf5\x03\x60\xe7\x4d\x95\x1f\x5c\x14\x78\x2e\xa1\x3c\xec\x65\x9c\x60\x03\xa1\x95\x6d\x24\x51\x79\xdf\x04\x9c\x1d\xeb\xba\x09\x91\x64\x85\x00\xda\xe7\xb4\xf4\x60\x9f\x39\xc4\x49\x53\xbd\x3b\x81\x7d\xc4\x7d\x24\x61\x7a\xdf\xb6\x48\xbb\x75\x38\x0b\xfd\x82\x64\x11\x17\xe2\x44\x56\xa3\xb2\x2d\x42\x47\x5d\xad\xbc\x3c\xc4\xcb\x95\x7c\xeb\x81\x73\x8c\x81\x4f\xeb\x51\x37\x64\xef\xce\xd0\x7d\xf7\xd6\x56\xf3\x47\x3e\x55\x8c\xf4\x3a\xcc\xc4\x21\xbc\xf2\x79\x64\x1f\xcd\xdb\xbb\x89\xff\xea\x9a\x8d\x5a\x9f\x72\x52\x97\x97\x2f\x99\xb3\xbf\x4c\x8c\x51\x34\x2b\x89\x48\x30\xa6\xdf\xa8\x2f\xf2\x89\xcc\x99\x98\x22\xed\x45\xce\x35\xae\x34\x85\x75\x58\x35\xe0\x55\x5f\x97\x65\xde\x64\x2b\x95\x89\xa3\x63\x8b\x87\x6c\x8e\x47\x24\xd1\xba\xe6\xd5\xd9\x1c\x6b\x15\xb5\x23\x7a\x79\xc5\xfe\x1d\xbc\xd0\x49\xc7\xad\xd1\xc6\x4e\x94\x18\x63\x80\xa6\x86\x18\xb1\xff\xfe\xcf\xff\x7a\x45\x9a\x6e\xed\xda\xda\xa5\xdd\xd2\xaf\xef\xe4\x79\xdb\xa0\xa8\xda\x9f\x34\x2a\x75\x0c\x3c\x7c\x73\xcf\x08\xae\x78\xd3\x64\xc5\xbc\x36\x89\x7b\x73\x89\xc6\xbb\xe3\x81\x5f\xfd\x55\xc9\x8a\xb2\x41\x01\xb0\xb8\x78\xb2\xae\x16\x03\xe3\x1f\xf9\xe0\x81\xb3\x39\x36\x17\x74\xed\xcc\xdd\x27\x9d\x22\x21\xdb\xd1\xd8\xad\x36\x77\x62\xef\xac\x40\x0a\x90\x6f\x8f\x5f\xb0\x79\x5e\x4e\xe3\x1c\x35\x57\x02\x99\xd6\x53\xb1\xe7\xc9\xad\x50\x06\x08\xe8\x90\x31\x08\xc8\xc1\x30\x40\x74\x80\x07\xa6\x0a\x9e\xd1\x06\x58\x5b\x3b\x9b\x39\x0c\xb9\x33\x57\x87\x5a\x35\xce\x12\xf3\x19\xf0\x46\x78\x2a\x12\x8d\xc1\xd2\xde\xbc\x27\xd6\x36\x6d\x17\x7a\xf8\x07\x6b\x8f\x81\xa4\xc7\x0f\x71\x96\x8b\x98\x46\x03\x4a\x20\xb1\xdf\x7b\x0f\x61\x7c\xa4\x88\xab\x1a\x00\x8c\xe5\x37\x54\x7f\x23\x9f\x3e\x92\x42\xc2\xff\xbc\x67\xe6\x1c\xd9\xec\xb2\x9d\x63\x4f\x5d\x50\x1b\xdc\x75\x92\xec\x72\x1a\x9b\x00\x72\x14\x2d\xec\xed\x3a\x61\xa3\xf0\x74\x1d\xda\xf8\x16\xe8\xd8\x1a\x6f\xb9\x85\x17\x1a\xd5\x29\xbb\x76\x4d\x71\x0b\x57\xd7\x6b\x35\xa4\xbc\xeb\x20\xab\xfc\x64\xa6\x86\x0a\xae\x9c\x23\x67\x73\xef\xb6\xae\x73\x79\x4b\xd7\x1e\x10\xde\xaa\x01\xb5\x9b\x4e\x03\x82\xf3\x5d\x37\xb0\xa3\xc5\x55\xea\xd4\xf7\x0a\xb7\x9b\xf0\xac\xe6\x77\xf8\x64\x10\x28\x18\x8c\x14\x0c\x8c\x28\x0b\xed\xc0\xa0\x9d\x34\x30\xf8\xe4\xc1\x43\x17\x49\x74\x99\x27\x6c\xb2\xab\xb2\xc0\xbc\x91\x42\x0d\x00\x8f\x25\x52\x68\x31\x8d\xfa\xa6\x53\xc6\x0c\xfe\x74\xea\x4c\x53\xa6\xc7\x80\x30\xbf\x13\x2d\x27\x10\xfc\xf5\x2f\x7f\x7e\x1d\x38\xe6\x42\xc6\x25\x78\x49\x0e\xc3\x32\x19\x9b\x88\xc9\x80\xea\x8e\x28\x13\x46\xd7\x56\xfe\x05\x1f\x54\x94\x42\x2d\x88\x16\x43\x16\x7c\x00\x02\xe1\xe7\x17\x20\x01\x64\x38\x95\xbf\xd5\xb9\xc7\x6e\x8b\x3b\xcd\xb8\x1d\xc2\xc0\x30\xbc\xd9\x57\xc4\x4b\x92\x00\x1d\x71\xe0\x01\x95\x03\x71\xfc\xfa\xff\x47\x47\xf0\xbf\x63\x05\x61\xcd\x9e\x50\xc2\xb6\xe9\xf4\x90\xe4\x00\xfc\xa9\x7b\x68\x82\x13\xc7\xb2\x33\x1f\xc1\x72\xa9\x58\xb5\xff\x00\xdd\x0a\x81\x3a\x37\x15\x54\xc9\x58\xe4\x5c\xff\x11\x45\x0a\xdc\x29\xad\xcb\x52\x53\x97\x8e\x3d\xe0\x77\x94\x10\xaa\x25\xa0\xd2\xc7\xb5\x0d\x78\xc7\x98\x8d\x93\xe5\x00\xf5\x9d\x04\xba\x43\x28\xed\xae\xd5\x09\x84\x77\xf5\x08\x3f\xc3\xa0\x46\x6e\xec\x8b\x81\x8c\x95\x05\x3a\x1b\x96\xdb\x26\xf1\x00\x15\xb6\x45\x93\xe1\x8b\xf8\x0f\xf5\x8c\x47\x44\x80\x36\x49\xf2\x6e\xa2\xfc\x8e\x05\x82\x48\x44\x22\x9e\xa1\x2c\x7a\x96\x06\x2d\x78\x59\x17\x6f\x17\x4d\xc7\xfa\xcc\x5c\x01\xee\x54\xc8\x6f\x4c\xa3\xf8\x6b\x47\xf5\x9f\x87\xea\x46\x05\x1e\x13\xc4\xe9\x53\xdb\xbb\x33\x45\x15\x3a\x23\x44\x8e\x68\x9e\x25\xf7\xb0\xf5\x0b\x73\x6f\x75\xe9\x66\x76\x87\x63\x66\x86\x35\xe8\xac\xf4\x4b\x0b\xa1\x1f\x9d\x95\x44\x1a\x7b\xd0\xe9\xca\xad\x1d\xa9\xd3\x85\x6a\x7e\xea\x9c\xfa\x24\x07\x65\xef\x64\x4d\x59\xd6\xb8\x83\x4e\x57\xe8\x6d\xa7\xce\xad\x6a\xf4\x53\x27\xfd\xde\x0e\xb2\x3e\x74\x32\x5b\x30\x96\x40\x9e\xc9\xea\x74\x8c\x8b\xb3\x83\xae\x93\xe4\x19\x77\xd1\x99\xd4\x43\x9b\xc0\x0e\xba\x56\x3a\x63\xac\xa8\xdb\xb3\x9d\xd4\x3e\xee\x0b\x6d\x76\x43\x3a\xab\xaf\xf1\x55\xb7\xf5\x77\x22\x2f\x7b\x9b\xaf\x1f\xb6\xf5\xd6\x67\x61\x81\x00\x6e\x21\xc0\x53\xbe\xdd\x31\x10\x74\x0b\x05\x9d\x10\xee\x88\x41\x00\xb7\x10\x98\xe3\x3d\x1b\x49\xd0\x54\x3e\x54\x56\x07\xd6\x54\x7d\x85\xbb\x3a\x20\x68\x40\xad\xfb\x8a\x75\x1d\x22\xcc\xbd\x3c\x87\x88\xa8\x7b\x5d\xd3\xa6\x8a\x1b\xb2\x68\xa4\x55\x5c\x09\x83\x12\x35\xe5\x7c\x9e\x73\xef\x8d\xb8\xdd\x47\xc5\x78\xff\x37\x18\x2e\xcf\xbc\x83\x38\x1f\x37\x3a\xd5\x63\xda\x9b\x81\x16\x89\xc4\xcc\x00\x55\xeb\x30\x57\x39\x7a\x7d\x12\x69\xb7\x6f\xab\x4a\x33\x70\x6e\x7d\xc8\x3e\xf3\x56\x80\x98\xe0\xa3\x55\x32\x39\x76\x5f\x9a\xad\x60\x37\xe5\x5c\x78\x59\x26\x9c\x57\x5d\xc7\x80\x97\x84\x60\xb6\x91\x4e\xc8\xd6\x37\x03\x9c\xcd\xe0\x36\x7a\xa0\x2b\x7b\xaa\x8f\xdc\xb8\x80\x12\xc1\xe8\x81\xbb\x9f\x0d\xc0\xd5\x8f\x6b\xe2\xd7\x40\x69\xf0\xc0\xf6\x0e\x5f\x18\x04\x5b\x03\x48\x41\x12\x92\x51\xf3\x26\x32\x97\x18\xf0\xb6\x84\xb8\x6a\x63\x10\xf4\x41\xca\x9b\x36\x7d\x61\x4a\x7f\xb7\x33\xd3\xcb\xcf\x7d\xbb\x06\xc4\x8f\x66\xb3\x7c\xd2\x69\x6e\x44\x94\x42\x48\x8c\x97\x2e\x7b\x4e\xa2\x94\x2a\x02\x6b\xc3\x00\x5d\x1d\x58\x4b\x78\x91\xd5\x17\x4e\x7b\x58\x89\x62\x13\x52\x44\x4f\xd7\xbe\x0f\xaa\xf1\x8a\x8b\xa6\x52\xcf\x84\x90\x04\xb8\xf9\x70\xd5\xd8\x46\xa5\x08\x90\x47\xcc\xfa\x51\x9c\x32\x2b\xc6\xe2\xb1\x32\x21\x51\xaf\xac\x34\x36\xf8\x58\xe2\x86\x7e\x55\xe6\xa6\x4b\x82\x4d\x8f\x59\x2a\xf4\x55\x51\x66\xbd\x1c\xda\x5a\x24\x50\x47\xf5\x2a\xc7\x83\xe2\xff\x28\x2c\x5e\x9c\xb2\x3f\x5b\x6a\x21\x69\x23\x3c\x0b\x8e\x97\xd4\x91\xe1\xaf\x8f\x8e\x56\x1f\x82\xf6\xa1\xbd\xc5\x0c\xd5\x51\x52\xb0\x8c\x3f\x1c\x78\x7b\x3b\xe2\x15\x79\xca\x3b\x75\x6d\x7f\xf3\x3e\xd3\x49\x41\xda\x98\xb0\xe4\x50\xd7\x90\x21\x9a\x7a\x3d\xa5\xef\x55\x75\xd7\x31\x17\x45\x9b\xa0\x91\x5f\xd1\x75\xb1\xf0\x23\xcc\x93\xb5\xa8\xa5\x11\x50\x4c\x98\x81\x07\xa8\xb6\xa0\x56\xf5\x9b\x31\x05\xba\x7e\xce\xdb\xcb\x2d\x82\x33\xbd\xe8\x5c\xd1\x8e\xd5\xed\xce\x4e\x49\x9c\x2d\x71\x39\x98\x2e\x6d\x73\x0b\xd4\x6e\x4d\xa8\x25\xaa\xd3\xc4\xb1\xa0\x3e\xbc\x14\x61\xb7\x65\x2d\x5a\x55\x4f\x2b\x9e\x64\x33\x55\x6e\xc7\xac\x63\x50\xb3\x9e\x36\x9a\x82\x96\xfc\x22\x3a\x56\x3e\x90\xdf\x02\xdb\xac\x07\xf6\x97\xb5\x56\x15\x04\xe2\x5d\xba\x62\x56\xf0\x47\xaa\xcc\x51\x9f\x2d\x73\xab\x26\x6d\x36\x11\x2e\x98\x38\xfd\x98\x74\x6e\xc1\xef\xb2\x65\x31\xf7\x83\x6a\xea\x03\x5e\xb2\xc9\x3b\xfd\xf6\xb1\x4e\x5b\x09\xfc\xc7\xed\xce\x6e\xf4\x10\xe7\x96\x2e\xb5\x4f\x15\x6e\xe8\x0b\x7d\xfb\xd6\xe7\xf8\x8c\xd0\x01\x78\x88\x73\x75\x13\x76\x9d\x5d\x96\x4e\xa1\xcc\x66\xdb\xb3\x2b\xf8\xba\xb6\xcf\xbb\xcc\x4c\xe5\x29\x91\xb8\x54\x79\x60\xd2\x82\x1b\xa5\xfe\x71\x3e\xc1\x2e\x4a\xe7\x24\x27\xed\x42\xe8\xad\xda\x27\x15\x62\xb7\x4f\xcd\xc9\x1d\x00\x6b\xa6\xd9\xd6\xaf\xd3\xd5\x4e\x51\x09\x75\x9a\xa8\xf1\x76\xd7\x4a\x45\xe0\x2b\x5b\x3f\x3d\xec\x90\x4d\xe2\x4e\xa5\xe9\x82\x6b\x5f\x0c\xed\x1e\x9b\x4a\xa7\x74\x6b\x7d\xbf\x8e\xf3\xcd\x44\x14\xf2\x49\x7b\x69\xed\x52\x74\xdf\x39\xfe\xb4\xe5\x66\x23\xf8\x35\xe5\xb6\x9d\xf4\x5d\xf8\x7f\x60\xf1\x7f\xd7\x2a\xfd\xcd\x06\xa3\x43\x57\xfb\xa3\x1d\xbb\x4a\xa9\xc5\x53\xcc\x3e\xf5\xc7\xe1\x5e\x17\x4b\x7f\x79\xd5\x4d\xf9\x27\x79\x59\xdb\x21\x7d\xf7\x88\xba\xb5\x31\xf8\x72\x32\xed\x48\xb8\x17\xe7\x36\x9b\xe1\x3d\x2b\x37\x47\xeb\xfe\x43\x75\x3a\xfc\xde\x9e\xee\x74\x0c\xef\x86\xd3\xd0\x16\x83\x7c\x87\xde\x4a\x3e\x7d\x2a\xaf\x0f\xb8\x37\x53\x65\xfb\xad\x7d\xdb\x02\x39\x82\x9b\xcf\x6e\x5b\x30\x9d\xd3\xdb\x7f\x78\x46\x5b\x32\x08\xbb\xec\x06\x5b\x31\x7c\x62\xa4\x4a\x8a\x49\xdf\xf1\xd0\x70\x56\x1e\xc3\xca\x69\x8b\x0f\x13\x88\x70\xde\x7c\x2b\xa3\x43\x1c\xb5\x13\x8d\xad\x55\xe0\x83\x96\xa9\x0e\x0d\x6f\xe7\x81\xf0\x3f\x3b\x5a\xd1\x24\xa8\xfc\xc8\xae\x44\xb4\x91\x6e\x23\x62\x1b\xd1\xf5\xe2\xe3\xe8\xad\x17\x7f\x04\x52\xdb\xa0\x6e\x20\xd8\x67\x1d\xec\x24\xdd\x0e\x3e\x9a\xbc\x68\xd0\x72\xdd\x3b\xce\xba\xfe\xb0\x59\xb0\x39\xc6\xc7\x8f\x5d\x9d\x9a\x84\xe7\x0d\xf6\xbb\x35\xa5\x9f\xe7\x0b\x9e\xdc\x23\x42\x93\xce\xc5\x8b\x30\x10\x06\x8b\xbc\x09\x38\x5c\x7a\x44\x44\x15\xe1\xcb\x17\xee\xa8\xbd\x99\x40\xd5\xc1\xde\xd2\x9c\xb5\x4f\x0b\x01\x02\x40\x5c\xb6\x61\x2b\x1e\x70\xa6\x01\x94\x7e\x9d\xe5\x39\xe6\x67\x15\xa1\x3c\x65\x06\x17\x12\x2a\xb6\x02\x6d\xc7\xdd\x14\x9f\x20\x05\x9f\xad\xe2\x00\x37\xc1\x27\x20\xf0\xd9\x85\xb0\xd2\x7b\x34\x9d\x5a\x5f\x43\xf1\x67\xf2\x08\x8f\x7c\xe7\x42\xea\x54\x9e\x80\x41\xe3\x30\x8d\x9d\xba\x49\xaf\x5d\x14\xc0\xf0\xb8\x61\xff\xc1\x68\xff\xd3\xc2\x58\xad\x75\x64\x04\xad\x5d\x40\x7c\x58\x0a\x3c\x06\xe5\x7d\xdb\xce\x29\xa5\x12\xbd\xd9\x62\x4b\x43\x31\x3b\xe7\xcd\x51\x7a\xe4\xdb\x9a\x90\x28\x7e\x68\xad\x65\x75\xa9\xcf\x5b\xd8\x2b\xaf\x9d\xca\xb0\xee\x31\xce\x9a\x28\x8a\xb4\x71\xee\x7e\x21\x54\x8e\x25\xbe\x10\x2a\xbe\x59\x8c\x53\xb2\xaf\x15\xe0\x57\x7c\x0d\xc5\x7d\x63\x53\x3d\x9b\x1c\x5c\x32\x23\x70\xfd\x64\x44\xd4\x2e\xe6\x60\xd6\x57\xe8\xf5\xc7\xe7\x2d\xfb\xe3\x63\x05\x55\x11\x1a\x64\x2d\x63\xf4\x2c\xff\x75\xa2\x2c\x77\x1c\x64\x94\x19\xa6\x75\x3a\xd2\x37\xbc\xc7\x07\xb2\xe0\xc8\xa7\xbc\x53\xaa\xec\x90\xd9\x6e\x6c\xf5\x5d\x52\xae\xc3\x37\x8b\x67\x5b\xd5\xed\x32\x47\x7c\xed\xad\x66\xfa\xd8\x3b\x39\xb6\x74\xfb\x84\xd4\x2b\xa2\x4d\x3e\x68\xcf\x17\x5c\xfc\x42\xf0\x8b\xe0\xd3\x19\xdb\xc3\x56\x5d\x3c\x0a\xff\xff\x9f\x00\x00\x00\xff\xff\xee\x26\x46\xc3\x21\x61\x00\x00") +var _staticJsAppJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xdc\x7c\xfd\x72\xdc\xc6\x91\xf8\xff\x7c\x8a\x11\xec\x12\xb1\x11\x09\x92\x4a\xf2\xfb\x55\x71\x49\xfa\x18\x9a\x2e\xeb\x22\x59\x3e\x91\x4e\x5d\x15\x8f\xc5\xc2\x2e\x86\x5c\x58\x58\x60\x0d\x60\x49\xd1\x32\xdf\xe0\x1e\xe0\x9e\xef\x9e\xe4\xfa\x63\x3e\x81\xc1\xee\x4a\x71\x62\xdf\x29\x15\x7a\x81\xe9\xe9\xe9\x99\xee\xe9\xe9\xaf\xc1\x7d\x5a\x0b\x99\xe5\x6d\x55\x0b\xf7\xdf\xb1\x28\x97\x45\x31\xde\xc2\xe6\x69\x55\x96\x72\xda\xca\xcc\x6d\xbe\x4d\x8b\x46\x72\xfb\xa4\xaa\xde\xcf\xd3\xfa\x7d\xe3\xb6\x7f\x7c\xe2\xc6\x4c\xde\xa6\xcb\xa2\xbd\xa9\xab\x87\xe6\xa6\xc8\xe7\x79\x0b\x8d\x07\xfb\xfb\x0a\xf5\xb2\xae\x65\xd9\xbe\x9d\xfc\x08\x03\xf8\x23\x53\xfb\x6d\x5e\xb4\xb2\x7e\xbb\x68\xf3\xaa\x6c\x10\xeb\x96\x10\x91\xfc\x69\x99\x16\xd1\x21\x83\x47\xc7\x62\xfb\xeb\xd3\xcb\xd3\xed\x68\x07\xdb\xca\xaa\xbd\x31\xed\xd1\x33\xbf\xf1\xae\x96\x29\xa0\xe3\xae\xd1\x89\x6e\x13\x6e\x23\xf4\x86\xf6\xe8\xc4\xef\x59\xc8\xa6\xd1\x23\x8a\xe8\xa8\xd7\xc6\xbd\xa8\xad\xd3\x31\x7f\x2f\x6d\xc7\xd7\xaf\xfe\x7a\xee\x35\xe7\x6e\x7b\xf4\xaa\xd7\x8e\x4b\x61\xbb\xbf\xba\x10\xdf\xfd\xf0\xfa\xb5\x9d\xa9\x69\xa6\xa6\xb7\x97\xdc\xbc\x05\x4b\xbf\x75\xbb\x2c\xa7\xb8\x6a\xe2\x6e\x99\x67\xf1\x88\x56\xce\xbc\x6b\xfe\x84\x6f\x44\x2d\xdb\x65\x5d\x8a\x37\x69\x3b\x4b\x6e\x8b\xaa\xaa\xe3\xf8\x40\xbc\xe0\xe7\x3a\x2d\xb3\x6a\x1e\x8f\x46\xe2\x0f\x62\xff\x03\x30\x6c\x7f\x7f\x94\xb4\xd5\x45\x5b\xe7\xe5\x5d\x7c\xf0\xff\x46\x49\xb3\x9c\x34\xea\x69\x34\x16\x4f\x80\x5f\xe1\xbb\x42\xf4\x3b\x82\xff\x46\xbb\xd1\xc6\x3f\xed\xdf\xeb\xe4\xc7\x2a\x2f\xe3\x28\x1a\x8d\xb7\x9e\xdc\xc9\xc8\xf6\x02\x96\x1b\x7e\xbe\xd2\x93\x42\x31\xc9\x33\x90\x8d\x86\x1b\x2e\x40\x94\xd3\x3b\x99\x00\xe8\xab\x56\xce\xe3\x48\xbd\xbf\xc9\x33\xc4\x06\x3d\xf2\x5b\x11\x3f\xcb\x33\xee\x2e\xb8\x33\xaf\xd2\x98\x5e\x74\x10\x35\x01\x44\x3b\xd0\x8b\xa0\x9f\xb6\xec\xbc\xf3\xcc\x27\x16\x3a\xbe\x03\xa9\x7f\x8d\x42\x1f\x97\xcb\x39\x0f\x58\x54\xd3\xb4\xe8\xe1\xb6\xdb\x03\x70\x23\x6c\x6f\xde\x16\x15\xe3\x51\x83\x2e\xd2\xba\x91\xaf\xca\x36\xf6\xf0\xde\x05\xf0\x8e\xc4\x2f\xbf\x04\xb6\x63\x7f\xa4\xef\xd3\xbb\xbc\x4c\xf1\xe9\xed\xed\x2d\x50\xe8\x2c\xf4\x02\x90\xe3\x16\xfd\x32\x8e\x12\xb5\x77\x77\xf1\x5d\x34\x4a\xb2\xb4\x4d\xe3\x88\x1f\xc6\x0a\x5c\xef\x77\x9f\xfc\xb1\xa5\x3e\x26\x84\xbb\xe2\x00\xc5\x8c\xa0\x43\xd4\xc8\xe6\xac\x5a\xc2\x14\x91\x68\xfa\x65\x09\x1a\x1e\x01\x5b\x61\x21\xa1\xcd\x2c\x91\xe9\x2f\xf6\x84\x9e\xbb\x92\x07\xe4\x8f\x26\x61\x24\x8e\x44\x67\x28\x81\xa8\x5e\xbc\xe8\x72\x1c\x5e\xfa\xf4\xa6\x8b\xfc\x2c\x2d\x8a\x78\x2e\xdb\x59\x95\xed\xc0\xd0\xed\x0c\xff\xd6\xe9\xbc\xd9\x11\xd3\x09\x63\xfb\x32\x49\x7f\x4c\x3f\xc4\x8c\x78\x59\x17\xa0\x6f\xf6\xa0\x67\x04\x7b\x8f\x3a\xd0\x7b\x46\x71\xa8\xfe\xcb\xef\xa6\xe9\x74\x26\x0f\x59\xf7\xf2\x1b\x5c\xf5\x43\x3d\x00\xbd\x99\xc9\x34\x93\x75\x73\xa8\xe8\x06\xdd\xf0\x61\x57\x49\xee\x2e\x48\xee\x61\x67\x0f\x11\xd0\x13\x77\x6d\x96\xd3\x29\xb4\x1c\x1a\x45\x11\x23\xfa\x91\xc1\x34\x9d\xf0\x8b\xb1\xdb\x49\xd6\x75\x55\x3b\x5d\x3e\xcc\x6a\xd8\xc3\x6d\xda\x2e\x61\xc6\xbd\xfe\x3f\xfe\xdb\x52\xd6\x8f\x09\xb1\xe4\x5f\x2f\xde\x7e\x87\xe0\x49\x2d\x9b\x05\xe8\x77\x79\x29\x3f\xb4\x23\x8d\x1d\x97\xba\x2f\x9b\x7c\x52\x34\x31\x2e\x65\xe8\xdf\x47\xc3\x82\x08\xa0\x61\x2f\x45\x7b\x15\x77\x81\xdf\x1f\x9f\x88\x07\xa8\xac\x5c\x9c\x97\xe9\x04\x74\xf8\x20\xca\x10\xce\x96\xba\xac\x41\x89\x02\x19\x13\xe4\x8e\xa8\x16\xad\x12\x80\xd5\x28\xf7\x50\x08\xe8\x27\xfc\x37\xda\x43\x31\x8c\x9c\xde\xc1\x71\x40\x27\x2f\xa7\x20\x8f\xb2\x3f\xd8\x06\xe3\xac\xc3\xfe\xaa\xcc\xe4\x07\x69\x26\xe2\xae\xd2\xa6\xb3\xc8\x19\xc5\x9a\xe5\x3a\x03\x11\x68\xeb\x34\x2f\xdb\xde\x60\x9b\x0e\x34\xb5\x28\x86\x07\xfb\x36\x6f\x40\x4b\x3e\x7e\x8a\x08\xcd\xb8\xcb\x30\xce\xbf\x68\x13\x68\x00\x6b\x00\xa7\xb1\x9a\x06\xb0\xc2\x8a\x4d\x97\xad\xa4\xfd\x12\xff\x84\x7f\xfd\xc5\xf7\xb1\x2e\xaa\x86\xd1\x12\x24\xa2\x14\xf4\xeb\x90\xff\x23\x82\x03\x2c\x0a\x58\xaa\x4f\x1d\x40\x75\x5b\x35\x84\x33\x46\x39\xad\x32\x77\x0e\xde\xd9\xf5\x00\x82\x51\x3d\x24\x93\xb6\x4a\x55\xab\xbf\xdf\x27\xcb\xbc\xc8\x2e\x40\xe5\xcd\xd3\x0b\xc9\xda\xa5\x4c\xe7\x28\xb1\xbc\xa5\xed\x31\xd0\x70\x33\x28\xfb\x28\x22\x9d\x8e\x2f\xdb\xbc\x05\x11\x51\x56\x23\xe8\x41\x92\x13\x63\x4d\xf1\xbf\xe8\x52\xed\x64\x06\xb9\xcf\xe5\x43\x07\x42\x44\x7f\x83\x97\x06\x62\x8e\x46\x62\x9e\x16\xf9\xcf\x32\xbb\x51\xe0\xd1\x1b\xe7\xa5\xf0\xc0\x1b\x30\x46\x61\x11\xbc\x61\xa3\x0b\xf5\xb2\x89\x50\xc9\x19\x7a\xf3\xa9\x35\x72\x07\xc8\xdd\x3e\xca\xc5\xb4\x48\x9b\xe6\x38\xba\x4d\xe1\x1c\xd8\x65\xa0\x93\xa3\xbd\xfc\x64\x7b\xc5\x1c\x36\xe9\x17\x9a\xd9\x26\xfd\x42\x53\xec\xf5\x9b\xe6\xf5\xb4\x90\xbb\x95\xea\xea\xcd\xfb\x3d\x02\x2a\xd6\xf1\x69\x8c\x5c\x16\xc7\xf0\x66\xb1\x9c\x14\xf9\x14\x4c\x17\x03\x03\xe2\x07\x96\xa9\xcc\x98\xcd\x9a\xef\x2f\xa0\xe5\x28\xcb\xef\xd5\xa0\xdb\x0d\x09\x8d\x40\xed\xc0\x3d\x41\x3b\x6c\x9f\x10\xfe\xd5\x5d\x76\x71\xe8\xed\x13\x43\xfe\x36\x93\x7f\x5b\x15\x70\xa8\xee\x56\xdb\x44\xfe\x50\xeb\x42\x96\x1a\x84\x86\xa6\x69\xc0\xc8\x47\x7b\x30\xce\x46\xa3\x83\x04\xb4\xb0\xb9\x64\x4d\xc4\xa2\xc9\x0e\x7e\x59\x7c\x57\x57\xcb\x85\xa8\x6e\xc5\x95\x12\x8a\x1d\xc5\xe5\x9d\x10\xd7\x76\x1c\x96\x5c\x1b\x23\x17\x56\x55\xed\x9a\x2b\x42\x77\x9d\x14\xb2\xbc\x6b\x67\xb8\xcc\xfb\x23\xf4\xf1\xda\xbc\x5c\x4a\x1a\x54\x08\x02\xb9\xf1\x19\x13\x66\x8d\x78\xfe\x9c\xa1\xe9\x25\x93\x37\xea\xf6\xf7\x99\xb6\x76\x15\x18\x1f\xae\xa0\x8b\xc7\xb2\x70\x33\x04\xbb\xb4\xff\xfb\xbc\x04\x90\xfb\x1a\x8c\xa1\x3a\xbf\x9b\xb5\x61\x86\x6a\x10\xd0\x4e\xa5\xc3\x4f\x56\x28\x6a\xfd\x90\x1e\x11\xe3\xeb\xf0\xba\x42\xf3\xc8\x61\x7c\x87\xe6\x65\x71\x12\xf1\x5a\x10\x87\x73\x30\xd6\x91\xc1\x3e\x2a\x6b\x39\x19\x27\x47\x8b\x54\x82\x03\x63\xaf\xb1\x82\xf0\xb0\x17\x79\x67\x41\xcc\x5a\xd2\x2a\x92\x59\xb6\xdb\x3e\x2e\xe4\xf1\x76\xa8\x25\xcf\xf8\x3d\x8c\xc8\x8b\x8e\xbf\x51\x39\x39\x53\x7f\x5e\x4e\x9a\xc5\x58\x53\xc1\x52\x5e\xe4\x7a\xae\x4f\xfd\x19\xef\xc1\x94\x9d\xf5\x78\xea\x6d\x5f\x6a\x33\x10\xf6\x94\x50\x40\xfe\xd1\x50\x54\xa9\x3a\x19\x1a\xe5\x9e\x80\x4b\xf2\x85\x36\xf5\x46\xc9\xac\x9d\x17\xec\x3e\x42\x93\x63\x37\x06\x2d\x5b\x62\x81\x52\x19\x79\xd9\x31\x5a\xbf\x8c\x03\xc7\x10\x03\xb3\x7d\x7b\xc5\x0f\xd7\xa3\x51\x92\x2e\x40\x05\x64\x97\x95\x4b\x8a\x5e\x10\xb3\x83\x98\x94\xe4\xbd\x7c\x6c\x98\x0a\x67\x27\x1e\xb8\xe3\x46\x09\x63\x86\xe9\xa4\x59\x76\x86\x0c\x8d\xed\x56\xf2\x11\x4f\xe0\x28\x05\x03\xaa\x05\x0b\xfa\x8d\x2c\x97\x0d\xfb\x40\x5d\x03\x5a\x36\xd3\x74\x21\xbf\xc5\xb5\x01\x3b\x89\xc7\x42\x92\xe0\x41\x3c\xe3\xc0\x0b\x3a\x89\xea\x71\x09\xe3\xdc\x82\x32\x32\x9e\xb2\x62\x08\xdb\xf0\x31\x6d\xbc\xbd\x13\xa0\x0e\x47\x25\x84\xbc\xec\x3d\xc7\x38\x3a\x6a\x80\x68\x2d\x92\x38\xca\xf6\x09\xfe\x3d\xda\xc3\xf7\xc8\x6d\x97\xc8\x65\xd9\x21\x53\x1f\xf2\xa0\x77\x44\x56\x4d\x97\x73\xf0\x3a\x93\x29\x85\x6b\xce\x0b\x89\x4f\x71\x04\xa4\xf0\x8a\xc8\x24\x2f\x41\x7f\x7e\x7b\xf9\xe6\x35\xc6\x04\xda\xda\xf1\x36\x65\x32\x9d\x01\x2b\xbf\x03\x93\xa4\xb1\x8b\x0e\xfa\x4f\x7c\x05\x3a\x4e\x1c\x7a\x00\x57\xfb\xd7\x49\x09\x3f\xfe\x96\x16\xa8\x16\x3b\x7e\xc8\x99\x1b\xb8\xf2\x3d\x72\x3f\xa6\x05\xcb\xf9\x91\x76\x2d\x98\x09\xa0\x9a\x71\xd3\xe1\x2f\x3c\xfe\x5c\x94\xe0\x02\x29\x33\xd8\x11\x67\x78\x09\xbe\x3a\x8a\x33\x2d\x7f\xda\xb6\x35\xcc\x14\x77\xe8\x1c\x08\x43\x45\xaf\x9b\x88\x03\xe6\xa9\x96\xf3\xea\x5e\x6a\x81\x99\x2f\xda\xc7\x60\x4b\x59\xed\x4e\xeb\x6a\xd1\x8d\xb1\x2c\x64\x0d\x1b\x62\x4e\xc4\x9c\xb2\xb8\x2b\x73\x3c\xa5\xa7\x1d\x21\x0b\x2b\x3a\xa9\x32\xbc\x50\xf9\xd7\x80\x02\x98\x12\xe1\xa4\x9d\xf7\x99\x2c\x64\x8b\xa7\x02\x4b\x11\xb2\x72\x0e\x6e\x26\x7a\xfe\xd0\x7a\x5a\x4b\xf1\x58\x2d\xc1\xf9\x54\x3f\x1e\x52\x70\xd0\xdb\x8a\x34\xae\xc2\x82\xaa\x96\xad\x7c\xcf\xde\x17\x5f\x39\x07\xd3\x33\x50\x50\xb7\x79\x3d\x8f\x15\xee\xd1\x48\x31\xc4\x6a\x9b\x87\xbc\x9d\xce\x14\xc5\x9a\x9a\x69\xda\x48\x87\xf4\x43\xb5\xfb\x3c\xeb\x3b\xba\x7c\xf7\xc3\x77\x67\xa7\x97\xe7\xe2\xf2\xf4\x2f\xaf\xcf\x85\xe3\x3b\x0d\x78\xca\x4c\x12\xbe\x4b\xc8\x3f\x1e\x89\xb4\x90\x75\xeb\xbe\x19\x1b\x50\x97\xf7\xfa\xed\x93\xf9\x35\x01\x41\x7f\x3f\x76\x68\x55\xcb\x19\xa6\xf4\xeb\x77\x6f\xbf\xff\xc7\x50\xe9\x69\xdc\xcf\x26\x1e\xd4\x57\x55\xb7\x86\x78\x8a\xf1\x82\xb0\xa5\x18\xc3\x91\x85\x0a\x22\xf1\x9b\xc8\x60\x51\x91\x60\xc9\xb6\x87\xe5\x3f\x1d\x82\x0c\xec\x82\xb2\x3b\x72\xac\xdd\x0b\xf6\x41\x7e\x78\xf7\x2a\x8e\x2e\xce\x5f\x9f\x9f\x5d\x8a\x3f\x88\x6f\xde\xbd\x7d\x63\x17\xc8\x1b\x68\x59\x17\x28\x96\xb3\xb6\x5d\x1c\xee\x91\x7f\xa9\xf0\x60\x80\x0d\x17\x31\x99\x81\x2b\x44\xee\x26\x38\x47\xec\x6f\x7d\xc5\x44\x1c\x5b\x7a\xe8\x88\xd4\x34\xf3\x7b\x3d\x01\x6c\xa1\x5e\xf4\x9a\x7e\xb9\xe3\xc3\x68\xc2\x12\x8f\x36\x65\x0c\x24\xc1\x5e\xbf\x99\x14\x69\xf9\xde\xae\x0a\x40\x24\xb7\xa0\x0e\x1d\x76\x98\xe5\x7e\xf2\x03\x91\xb0\xe4\xa7\xc0\xce\x87\x38\xcb\x6b\xe9\x88\x3f\xef\x08\xd1\x7d\xad\x99\x75\x7a\x71\x66\x38\xa5\x55\xf9\xf3\x2f\x3e\xbc\xfc\xf3\x5f\x5e\x8e\x23\x97\xab\x5f\x9f\x0f\x42\x9e\x69\x48\x15\x79\xec\x42\x45\x7d\x72\xe9\xbc\x65\x91\x52\x1a\x70\x87\xa6\x70\x56\x15\xcb\x79\xc9\xbf\xdf\xd6\x60\x71\x6b\xb5\xeb\x4a\xa0\x52\x4b\xaa\xa3\x96\x6b\x9e\x15\xe8\xd4\xa3\xb6\x3e\x39\x6a\xb3\x93\xf3\x77\xef\xde\xbe\x3b\x24\x11\xf0\x40\xd9\x90\x41\x20\xfc\x13\x79\x47\xba\x51\xc7\x63\x8d\xcd\xd1\xd0\xce\x09\xcd\x0a\x77\xec\x1c\x99\x46\x05\x91\xa2\xd2\x03\x62\x70\x27\x40\xda\x77\x15\xf4\x9a\x56\x75\xd6\x80\x2c\xc1\x19\xfc\x0f\x24\x87\xb3\x3b\x85\xb5\xf1\xf1\x05\x92\x65\x1d\x69\x4d\xec\x94\x16\xbf\x01\x89\xab\xcf\x53\xd0\xa2\x46\xa5\x40\x83\xeb\x64\xc0\x23\x9d\xa9\x96\x61\x4e\xfc\x0f\x87\x22\x5b\x0f\x0e\x5e\x65\x0d\xa0\x36\xbe\x97\x6c\x78\xb2\xd5\x89\x18\xd0\xec\xc4\xdf\x7c\xda\x21\xae\xdd\x0a\x39\x4e\x5b\xc6\xf0\x1f\x01\x4e\x9c\x2e\xd6\x26\xb5\x12\xef\x08\x0b\xb3\x76\xe6\xdb\xa8\xb2\x00\x01\x0e\x12\xd8\xa7\xc8\x1d\xab\x8b\xe9\x69\xe4\x2d\x17\x2e\x62\x7f\xad\xe0\xad\x7b\x0a\xd6\x8e\x6f\xc5\x6e\x00\x9a\x9f\x0c\x04\x8d\x4c\x48\x76\x72\x44\x26\x31\x0c\xea\xd8\x45\x00\x74\x95\x5f\x8f\xac\x77\x09\xf4\x64\x40\x8f\x9a\x15\xf1\x90\xfb\xd7\xd4\xd5\x0a\x76\x34\xb6\xd4\x92\xd4\x61\xc0\x58\xcf\xac\xd1\x53\xc3\x77\x47\xed\xa4\xca\x1e\xb9\x3b\xe1\xa3\xa6\x6a\x82\xef\x86\x24\xb1\x93\xff\x50\x66\x12\xec\xce\x58\x27\x5c\x50\x4e\xcb\xf4\x5e\x2c\x0b\x51\xe4\x49\x03\x87\x19\xa6\x16\x01\xa1\x67\x9b\xd8\xf7\x63\xd5\x87\x1d\x12\x57\xb2\x5d\x18\x6f\xdc\x59\xf5\x40\xc7\xa1\x8e\xf4\xf1\xc0\x4e\xe8\x2f\x78\x1e\x3a\xb2\x7f\x75\x3d\x36\xce\x19\x33\xc5\x3f\x38\x89\xbb\xcb\xb2\x99\xe5\xb7\x6d\x7c\x65\xf2\x0b\x39\xf2\xe3\x40\x79\x05\xf9\x75\xa2\x82\x6a\xfa\xb1\xcd\xc1\x34\x69\xd3\x39\x38\x76\xbe\xed\x6e\xf5\xdd\x47\xa1\xf6\xd9\x21\xf8\xfa\x94\x67\x8a\x74\x40\x2f\x32\xdd\xa3\xeb\x1d\xa2\xe0\x90\xc9\x55\xbc\x14\x9d\xf5\x66\x5f\xfc\x46\x87\x2e\x1d\x2d\x91\x97\x8b\x65\x8b\x3e\x52\x9e\x99\x43\x1b\xdf\x23\xb7\xe1\xf5\x02\x6c\xc2\x38\xa2\xed\x89\xc3\xde\x62\x8e\x71\x8d\x8e\x71\x2c\xc9\xbe\xd3\x81\xec\xf0\x22\xc9\x36\x6c\xa7\x0e\xf4\xbe\x3d\x9d\x60\x8b\x51\xe6\xf8\xe0\x87\x2b\x98\x11\x6c\xad\x44\xdf\x17\x12\x4f\x21\x16\x07\x91\xf2\x99\xfe\x6c\x40\xe5\x75\xc3\xda\x1c\x50\x0c\x0a\x44\x70\x3d\x75\x2c\x5b\x61\x77\x78\xa7\x52\x23\xbf\xf9\x32\xbb\x71\xf4\xdf\xc5\x52\xbb\x04\x7d\xea\x72\xbb\x11\xfd\xdf\xef\x92\xbf\x2a\x6f\xab\xdf\x76\xad\x57\xe5\x47\xb4\xd5\xb9\x97\x03\x99\x2a\xdb\x10\xe4\x00\x86\x1c\xa8\xdf\x2e\x42\xa2\x19\x4b\xfe\x38\x2c\x52\x82\x53\x75\x57\x94\xb9\xd3\x56\x6d\x5a\xdc\x34\xf9\xcf\x52\x47\x01\xc8\x75\xb0\xaf\x7b\x3d\xb0\xbd\xdf\xc1\xbc\xed\xc1\xd3\x76\xeb\x77\xb0\xaf\x7b\x3d\x28\xb3\x3d\xc5\xd4\xad\xd7\xc3\xbe\xee\xf5\x20\x07\x21\x2f\xef\x34\x7c\xf4\x43\xf9\xbe\xac\x1e\x4a\xcb\xf4\x2d\x57\xea\xbe\xa1\x9a\x14\x2d\xca\x01\x26\xa3\x8f\xdf\x91\x94\xe5\x02\x88\x90\x2a\xb1\x0e\x67\xca\xc2\xa4\xd8\xad\x27\xfd\xac\xfb\x52\xac\x49\xb3\xef\x88\x03\xf7\xb9\xa1\x17\x66\x72\x93\x65\xdb\x82\xb3\xa2\xba\xf1\xc4\x0e\x30\xc6\x78\xe0\xc8\x3c\x6c\x09\x79\x4f\xa8\x77\x44\x52\x02\x8c\x1e\x86\xb7\x4a\x96\x37\x38\x63\x3a\x87\xcc\xef\xb0\x00\x06\x48\x65\xb3\xdf\xa5\xd7\xce\x90\xe8\xea\x81\x34\x7d\x18\xcb\x34\xb5\x4c\x9d\x76\x71\x62\x83\x66\xde\x84\x82\x93\x50\x2c\xdd\xf2\xec\xbe\xf5\xdd\xfc\xb9\x3f\x0d\x90\xa2\x48\x45\x8a\x30\x2a\xde\x25\xf4\x68\x68\x6a\x0e\x19\xab\x59\x30\x48\xfd\xa7\x70\x4e\x73\xeb\x0b\xde\xa5\xca\xd5\xd0\x22\xe2\x90\xd8\xd9\x31\x2b\x26\xcc\xca\x6b\xa8\x51\x1c\x28\x13\x2e\x20\x91\xdd\x35\xc2\xa0\x0e\x88\x28\x57\x42\x0c\xc8\xc1\xd0\xa1\xd7\x62\x20\x70\x85\x9f\xf8\x1b\x69\x66\x1c\x16\x33\xec\x26\xb1\x47\x35\x26\x3a\x57\xe6\xd7\xad\x70\x46\xad\xa2\xaa\x9b\x43\x03\xd0\xaf\xc7\x51\xe5\x1a\x30\xbf\x1b\xb6\x17\x0f\x5d\x07\xd9\x36\x92\xcf\x74\x28\xec\x4a\x6c\xb9\x79\x37\x2e\xae\x33\x74\x69\x4c\x28\x50\xdc\xd4\xa8\x29\x2a\xe7\x0f\x98\x76\x9f\x16\x86\xca\x05\x53\x18\x00\xe7\x47\x1f\x9c\x8e\xe6\x43\x1f\x5c\x1f\xd7\x04\x66\x48\xdb\xdb\x13\xa7\x8b\x45\xf1\xa8\xe8\x03\xc5\x2c\xaa\x12\x1e\x81\x31\x4c\x87\xc8\xf5\x48\x32\x53\x0c\x63\x50\x45\x27\x6e\x3e\xf5\xa2\x5a\xb8\xd6\xfd\xc3\x4c\xd6\xc8\xfe\x2b\x65\xc6\x7b\xbd\x76\xbc\x97\xaa\xe4\xf0\xca\xe0\xb9\x06\xff\x64\x51\xa4\x53\x19\x47\x58\x9f\x07\xfb\x4a\x35\xd1\x24\xb8\x8c\x46\x57\xad\x89\x48\x1b\x25\xc8\xf8\xab\x88\xc6\x8d\xae\x31\xaa\x83\xbf\x7a\x06\x12\x15\x8a\xa8\xcc\x36\xd5\x62\x0c\x9d\xce\xae\x89\xd2\x0f\x06\x4f\x70\xc7\xca\xcf\xb7\xf4\x1f\xf2\x76\xb6\x6b\xb7\x9d\x99\x44\xc7\xe0\x1a\x0a\xc6\x8c\x57\x5a\x71\xb8\x3b\x35\x69\xdd\xd3\x90\x0e\x68\xe7\xf4\x5b\x69\x6b\xd9\x6a\x97\xdf\x74\x5b\x07\xe7\xd9\x68\xda\xb8\xd3\xd6\x10\x17\xd6\xdb\xa4\x5b\xb8\x1f\xcb\xa6\x2a\x80\xe0\xea\x2e\xee\xcf\xcc\x64\xb6\x3a\x8b\xc2\x62\xf4\x51\x25\x1a\x06\xac\x13\x31\x64\x01\xf6\x6d\xeb\xbf\xcb\x38\x26\x2f\xfc\xfb\xb4\x94\x85\x62\x56\x70\xd5\xd8\xc3\xe5\xec\x0d\x55\x22\xdb\xb0\x66\x67\x05\xad\x15\x3a\xbc\x82\xd1\xa8\x47\xc6\x19\x17\x30\xc3\xe3\x5a\x5a\xa6\x06\x54\x71\xa1\x67\x58\x3b\x10\x2b\x4c\xe9\xa1\x60\xc2\x7b\xf9\x38\x10\x4e\x58\x2c\x9b\x59\x7c\x05\xed\x2a\x60\x00\xbf\xae\x57\x04\x0a\x54\x57\x27\x5c\x80\x1a\x21\x87\x33\x96\xcb\x03\x30\x6b\x15\x5d\xef\x38\x23\x70\xb8\x80\xf1\x7d\x82\xd3\x64\xd9\x6d\xfd\xa5\x10\xaf\x31\x55\x74\x9f\xb7\xeb\xd9\x9d\x2a\xc0\xa1\x05\x36\xed\x2b\x96\x77\x58\x4e\x7f\x85\xd9\xd4\x4b\x55\x14\xb5\x89\xcc\x2a\x59\x84\x3e\x3b\xe2\x0b\x55\x1b\x05\xbf\xa6\xcd\x3d\xfc\xfd\xb1\xc1\x74\xd9\x17\x1f\xe6\x45\xc8\x30\x83\x3d\x2b\x8d\x30\x13\xc2\x1b\x80\xb9\xab\xb1\xd6\xdc\xca\xfa\x96\x9f\xd4\xf8\x32\x01\x2e\xcf\x63\xb5\x51\xa8\x96\x93\x4f\x42\x2c\x9e\x8c\xa9\xc6\xd7\xb6\x51\xee\x52\xeb\x0a\xd4\x80\x84\x25\xa4\x02\x3f\x77\x0e\x54\x8a\xea\x2c\x73\x6f\x1a\x2e\x1f\x3a\x2a\x34\x54\xe1\xb6\x21\xb7\xff\x79\x34\x87\xd5\x8f\x27\x53\x5e\xe0\xd2\x51\xe0\xee\x92\xb7\xd5\xeb\xea\x41\xd6\x67\x70\xc0\x80\x0e\x26\xf7\xf5\xed\x2d\x65\xf3\xa9\x98\x6e\x84\xf9\xf6\x5d\x3f\xfb\xbf\x5e\xe5\x1a\xc5\x40\xda\x06\x4f\xc0\xbd\x98\xf3\xe2\xbf\x64\x35\x9a\x3e\x24\xab\x7b\xb9\xa2\x06\x0c\xab\x77\xf2\x16\xb0\xce\xb8\xa1\x01\x53\xb4\x69\x91\x48\xce\xa8\x3d\xa4\x8d\x80\x91\x64\x26\xaa\x5a\x65\x8a\xb3\xce\x34\xe6\x29\x66\x50\x6b\x4c\xae\x6a\x4a\x03\x79\xc1\x50\xed\x2e\x30\xea\x9c\x27\xfb\xbf\x63\x5b\xfd\xde\xb7\x4e\xbf\x76\xf3\xff\xcc\xd6\xf9\x6c\x93\x83\x93\xcb\x97\x55\xcc\xc1\x2b\x6b\x1f\xfe\x0a\x5c\x0e\x78\x75\xbf\x62\xa6\xd8\xe6\x83\xfb\x15\xb3\xe3\x2d\x9b\x18\x0e\xe4\x85\xb7\x39\x2f\xbc\x3d\x1a\x0f\x9a\xa5\x8e\x81\xe5\x25\x8d\xc3\x49\x57\x3f\xbe\x45\xc1\x2c\x9d\x3f\x59\x69\x6b\xae\x34\x2c\x4d\xa1\x01\xd9\x3a\x81\xf5\x65\x96\x5b\x27\x40\x68\x2f\xb1\x23\x54\x4f\x56\x80\x1d\xe0\xae\x9f\xca\xe5\x5f\x47\x15\x79\x71\x82\x8c\xa1\xe3\xed\x6d\xe3\x35\x9e\xf0\xa1\xa9\xac\xa7\xa3\x3d\x86\x3b\x31\x7a\x9b\x92\x71\x40\x29\xc6\x22\x0c\xd5\x7e\x35\x9e\x2c\xf8\x1a\x8c\x1a\x83\xea\xa0\xd8\x27\x63\xd3\x8b\x52\x34\x57\xfb\xd7\x2a\xd0\xa1\x1e\xc6\xe1\xb9\x76\xc9\xe7\xdc\x5a\x2c\x8b\x15\x0a\x35\x2f\xf3\xf6\x9c\x04\xd9\x71\x84\x1e\xea\x5c\x1d\xa8\x97\xf9\x5c\x56\xcb\xd6\x5c\xa7\xd3\xb6\x35\xbc\x00\x27\x36\xc1\x07\x30\x9a\x97\x4d\x5b\xcd\x3d\xad\xab\xf6\x06\xc8\xd1\x37\xe0\xb4\x5d\xe4\x3f\xcb\xf8\xe0\x8f\xae\x6d\x8e\xc9\x76\xd0\xf6\xe0\x07\x03\x1e\xcc\x14\xce\xe1\x6f\x35\xaf\x30\xdb\x1a\x75\x00\x2f\x60\xd7\x7f\x0f\x1e\x7c\xfb\x26\xad\x61\xb2\xb1\x55\x1f\xae\xfd\x42\x77\x51\xe0\x54\x84\x0e\x6f\x40\xf6\x19\x31\x3a\xb5\x7b\x8b\xbb\xe6\xa7\x22\x5a\xd5\x01\x24\x92\x68\x7c\xb9\x0a\xe8\x87\x46\x5e\x54\xb7\x08\xdb\xc4\xea\x74\xb0\xc0\xd3\x6a\x3e\x4f\xcb\xac\x21\x25\xa3\x7e\xc7\x57\xcc\x6a\x55\xb7\x05\x9a\x52\xad\x11\xdb\xd3\x58\x6c\xf7\x57\xf9\x68\xaf\xd8\xc0\xae\x02\xb0\xb3\xb6\x2e\x76\xcf\x4b\x0c\x7d\x68\xbb\x7b\x9e\x4e\xb1\x81\xd1\xaa\x36\xe6\xa8\xba\x3c\x03\x26\x90\x73\x77\x86\x49\x72\x1c\x03\x63\x89\x3a\x72\xb0\x23\x3c\xe2\x94\x02\xdf\x9c\xc0\x21\xe2\x3e\x91\x30\x73\x9a\x3b\xa4\x5d\x7b\x2b\x0b\xfd\xa2\xe9\x2c\x2d\x29\xf4\x6b\x50\xb9\x1a\xa1\x27\xae\x4e\xad\x00\x38\xe3\xb5\x7a\x1b\x80\xf3\x94\x41\x48\xea\x51\x36\x54\xef\xde\xd0\x43\x97\xf0\x16\x77\x0f\x72\xa2\x17\x32\x68\x46\xf3\x0a\xe1\xfd\xd5\x7d\x37\x39\xe0\x9e\x31\xe1\x7b\x78\x2e\x6a\x13\x4e\xe5\x2e\xcf\x9f\x0b\xef\xd4\x39\xb1\x4a\xd1\xee\x24\x26\xc1\x1e\x08\x56\x7c\x71\x9d\x58\x9d\xd1\x14\xf9\x84\xf2\xee\xa4\x65\x19\xec\xc3\xba\x05\x5b\xfb\xb2\xaa\x8a\x36\x5f\xe8\xbc\x20\xc7\x44\xee\xf3\x3b\x8c\xc2\x24\xcb\x46\xd6\xa7\x77\x58\x5b\x69\xcc\xd3\xb7\x17\xe2\xdf\xc1\x36\x3d\xe9\x19\x3b\x46\xd9\x51\x49\x34\xba\x6d\x7a\x88\x43\xf1\xdf\xff\xf9\x5f\x2f\x58\xd2\x9d\xb3\xdc\x18\xba\x6b\xfa\x0d\x85\xb8\xd7\x0d\x8a\xa2\xfd\x59\xa3\x72\xc7\x28\xb0\x6e\x7e\xe4\xe0\x42\xb6\x6d\x5e\xde\x35\xb6\x98\xc0\xde\xf9\x09\x9e\x78\x60\x6d\x7f\x5d\x89\xb2\x6a\x91\x01\x22\x2d\x1f\x9d\x7b\xd2\xb0\xf0\x0f\x72\xfb\x5e\x8a\x3b\x6c\x2e\xf9\x0e\x9d\x7f\x4e\x7a\x85\x4b\xae\xf9\xb1\x59\x2d\xf1\x89\x7b\xb2\x02\x29\x40\xbe\x3b\x7e\x29\xee\x8a\x6a\x92\x16\x28\xb9\x0a\xc8\xb6\x1e\xd3\x99\xa7\x8e\x42\xe5\x36\xa0\x99\x26\xc0\x4d\x07\xc5\x00\x3e\x03\xc6\x64\x35\xbc\xe0\x03\xb0\x71\x4e\x36\x1b\x22\xb9\xb1\xb7\x9c\x3a\x35\xd9\x0a\xf3\x29\xac\x0d\xd9\x2f\x0a\x8d\xc5\xd2\x3d\xbc\x4f\x9c\x63\xda\x2d\x3e\x09\x0f\xd6\x1d\x03\x49\x4f\xef\xd3\xbc\x20\x4f\xc7\x00\x2a\x20\x3a\xef\x83\xa1\x99\x10\x29\x74\xab\x04\x80\xb1\x24\x88\x6b\x82\xd4\xd3\x27\x52\xc8\xf8\x9f\xb6\xec\x9c\x13\x77\xb9\x5c\x93\x39\x50\xab\xd4\x05\xf7\x8d\x24\xb7\xc4\xc7\x25\x80\xcd\x47\x07\x7b\xb7\xae\xd9\x0a\x3c\xdf\xed\xb6\xb6\x05\x9a\xbb\xd6\x86\xee\xe0\x85\x46\x1d\xc8\x37\x06\x2b\x1e\xe1\xfa\xae\xb0\x81\x54\x77\x33\x54\xe5\xa1\x4a\x09\x71\x11\x98\x17\xd5\xb6\x97\x88\x9b\xa6\x50\x57\x8e\xdd\x01\xe1\xad\x1e\xd0\x18\xef\x3c\x20\x98\xe4\x4d\x0b\x27\x5a\x5a\x67\x5e\xcd\x31\x19\xe3\x8c\x67\x71\x77\x83\x4f\x16\x81\x86\x41\xff\xc1\xc2\x50\xa9\x6a\x0f\x06\xf5\xa4\x85\xc1\xa7\x00\x1e\xbe\xf8\x62\x4a\x4f\xe1\x90\x5d\x54\x25\x26\xa8\x34\x6a\x00\x78\xa8\x90\x42\x67\xd1\xb8\x6f\x36\x11\xc2\xe2\xcf\x26\xde\x34\x55\x1e\x0e\x08\x0b\x1b\xd1\x6a\x02\xd1\x9f\xff\xf4\xc7\x97\x91\xa7\x2e\x94\xb7\x82\xf7\xf8\xd0\x59\x53\x1e\x0b\x4d\x06\x44\xf7\x90\x53\x6e\x7c\xcd\xe6\x5f\xf0\x41\xfb\x2e\xdc\x82\x68\xd1\x91\xc1\x07\x20\x10\x7e\x7e\x05\x1c\xc0\x05\xe7\x92\xbc\xa6\x08\xe8\x6d\xba\xa0\x8d\xc7\x21\x0c\x0c\xc3\xdb\x73\x85\x5e\x32\x07\x38\xf0\x81\x61\x2b\x0f\xe2\xe0\xe5\xff\x4f\xf6\xe1\x7f\x07\x1a\xc2\x99\x3d\xa3\x84\x63\xd3\xeb\xa1\xc8\x01\xf8\x63\x3f\x94\x82\x13\xc7\x52\xb8\x10\xc1\x6a\xab\x38\x77\x15\x00\xba\xe3\x18\xf5\x6e\x56\xe8\x32\xb6\xc4\xbb\xae\x44\x65\x12\xd2\x2b\xf7\xcb\x33\x5b\x2b\x8f\x3d\xe0\x77\x32\x65\x54\x73\x40\x65\x82\xb8\x2d\x58\xc7\x98\xf0\x53\x05\x09\xcd\x8d\x02\xba\x41\x28\x63\xae\x35\x53\x70\xfa\x9a\x43\xfc\xa6\x84\x1e\xb9\x75\x2f\x2f\x0a\x51\x95\x68\x6c\x38\x66\x9b\xc2\x03\x54\xb8\x1a\x4d\xb9\x2f\xf4\x0f\xe5\x4c\x26\x4c\x80\x51\x49\xea\xfa\x24\xa9\x4a\x06\x51\x88\xc8\x9f\xe1\x74\x7d\x9e\x45\x1d\x78\x55\xab\xef\x16\x72\xa7\x26\x92\xae\x01\x37\xba\x5c\x60\x55\x23\xfd\x75\x7d\xfd\x2f\x63\x7d\x03\x04\x83\x07\x69\xf6\xd8\xb5\xee\x6c\x59\x87\x49\x3a\xb1\x21\x5a\xe4\xd3\xf7\x70\xf4\x93\xba\x77\xba\xf4\x53\xc8\xa3\xb1\xb0\xc3\x5a\x74\x4e\x6e\xa7\x83\x30\x8c\xce\xc9\x53\x8d\x03\xe8\x4c\x1d\xd9\x86\xd4\x99\xe2\xb9\x30\x75\x5e\x9d\x94\x87\x72\x70\xb2\xb6\x48\x6c\xdc\x43\x67\xaa\x06\xd7\x53\xe7\x57\x5a\x86\xa9\x53\x76\x6f\x0f\xd9\x10\x3a\x95\x43\x18\x2b\xa0\xc0\x64\x4d\x92\xc6\xc7\xd9\x43\xd7\x4b\xfd\x8c\xfb\xe8\x6c\x42\xa2\x4b\x60\x0f\x5d\x27\xc9\x31\xd6\xd4\x6d\xb9\x46\xea\xd0\xea\x93\x34\xfb\x2e\x9d\xd3\xd7\xda\xaa\xeb\xfa\x7b\x9e\x97\x7b\xcc\x37\xf7\xeb\x7a\x9b\x08\x59\x44\xc0\x1d\x04\x18\xfb\xdb\x1c\x03\x43\x77\x50\x70\xdc\x70\x43\x0c\x04\xdc\x41\x60\x83\x7e\x2e\x92\xa8\xad\x43\xa8\x9c\x0e\xa2\xad\x87\x8a\x89\x8d\x43\xd0\x82\x58\x0f\x15\x10\x7b\x44\xd8\x7b\x84\x1e\x11\x49\xff\x7a\xa9\x4b\x95\xb4\x64\xf1\x48\x8b\xb4\x26\x85\x92\xb4\xd5\xdd\x5d\x21\x83\x37\xf8\x36\x1f\x15\xfd\xfd\x7f\xc2\x70\x45\x1e\x1c\xc4\xbf\xd5\x76\x6c\x8e\x13\x8e\x42\x68\x12\xec\xd9\xa0\xcf\x24\x8e\x0d\xfa\xed\xf8\x2e\x52\x5f\x1e\x71\x02\xd2\x8a\x20\x01\x14\x74\x22\xc3\xda\x3e\x1c\x62\x64\xb7\x7d\x5d\xd5\x9c\x85\xf3\x2b\x57\x76\x44\xb0\x36\xc5\xfa\x2c\x9d\x8a\xcf\xb1\xff\xd2\x9e\x20\x9b\xc9\xf4\x2c\xb8\xd2\x64\xf3\x9a\x0a\x0b\xbc\xef\x04\xb3\x4d\x4c\x76\xb7\xb9\xda\xc6\xd9\x6c\x5f\x27\xf7\x7c\x33\x51\xf7\x51\xe7\x1d\x50\x42\x47\xf6\xb6\x7f\x0c\x6e\x83\x87\x90\x36\xbc\x5e\xdb\x5a\xf0\xb7\x5d\xa3\xf2\x99\x45\xb0\xd6\xef\x24\x92\x90\x8c\x46\xb6\x89\xbd\x8f\x81\x17\x3f\xe8\xd6\x90\x45\x30\x04\xa9\x2e\x0d\x0d\x79\x37\xc3\xdd\x4e\x6d\xaf\xf0\xea\xbb\xd5\x29\x61\x34\xab\xf9\x93\x4d\x0a\xcb\xa2\x0c\x3c\x69\xbc\x5b\x3a\x10\xc0\xd2\xa2\x08\x4b\x0b\x62\x0d\x16\x12\x6c\x41\xbc\xaf\x1b\xf2\xc2\x03\x4b\x89\x6c\x23\x2e\xa2\x81\xec\x5e\x7b\x35\x78\xe9\x3e\xad\x92\x33\x62\x12\x81\xdb\x8f\x77\x8d\x5d\x54\x9a\x00\x15\x99\x36\x8f\x14\x9c\xd6\x0b\x8b\xd1\x68\x46\xa2\x5f\x39\x39\x71\x30\xcd\xe8\x1b\x04\x75\x55\xd8\x2e\x53\x6c\x7a\xc8\x33\x92\x57\x4d\x99\xf3\x72\xe4\x4a\x11\xa1\x4e\x9a\x45\x81\xf1\xe5\xff\x28\x9d\xb5\x38\x16\x7f\x74\xc4\x42\xd1\xc6\x78\x66\x12\xef\xe2\xe3\x82\xbf\xdc\xdf\x5f\x7c\x88\xba\xb1\x7e\x67\x31\x74\x47\x45\xc1\x3c\xfd\xb0\x1b\xec\xed\xb1\x97\x92\x9e\x37\xca\x5a\x5e\x73\x3c\xf5\xf2\x99\x2e\x26\x2c\x89\x34\xd5\x6d\x88\xa6\x59\x4e\xf8\x9b\x5d\xfd\x7d\x2c\xa9\xa8\x14\x24\xf2\x6b\xbe\xf9\x16\x7f\x82\x7a\x72\x36\xb5\x52\x02\x7a\x11\x6e\xc1\x70\xd4\x27\x57\xa7\x2e\xcf\xaa\x02\x53\xd9\x17\xec\xe5\x97\xe7\xd9\x5e\x1c\x8e\x74\x5d\x7c\xb7\xb3\x57\xac\xe7\x72\x5c\x0d\x66\x8a\xee\xfc\xd2\xb9\x6b\xeb\xa1\x51\xdd\x1c\x45\x13\x4d\xcc\x93\xbc\x75\x47\x5b\x74\x2a\xb1\x16\x72\x9a\xdf\xea\x42\x40\xe1\x44\x4f\xed\x7e\x5a\xa9\x0a\x3a\xfc\x4b\x38\x1a\xbd\xab\xbe\x87\xb6\x5a\x0e\xdc\xaf\x8b\x2d\x6a\xf0\xdf\xfb\x74\xa5\xa2\x94\x0f\x5c\xe6\xa3\x3f\xdd\xe6\xd7\x73\xba\xcb\xc4\xb8\x60\xe2\xfc\xe3\xa4\x77\xd9\x7f\x93\x23\x4b\xf8\x1f\x95\xd3\x1f\x31\x53\x4d\xc1\xe9\x77\xa3\x41\x5d\x21\x08\x47\xe9\xbd\xd3\xe8\x3e\x2d\x1c\x59\xea\x06\x23\xae\xf8\x2b\x85\x3b\xce\x27\x09\x2d\xd3\x01\x78\x84\x73\xf5\xf3\x7c\xbd\x53\x96\x83\x57\xf6\xb0\x1d\x38\x15\x42\x5d\xbb\x61\x32\x3b\x53\x15\x5c\xa2\xfb\xa1\xbb\x36\x9b\xb8\x92\xeb\x9f\x66\x13\x6c\x22\x74\x5e\x4e\xd3\x2d\xd4\x5e\x2b\x7d\x4a\x20\x36\xfb\xdc\x9e\x3a\x01\xb0\xa6\x5b\xac\xfd\x42\x5f\xe3\x55\xa8\x70\xa7\x13\x3d\xde\xe6\x52\xa9\x09\x7c\xe1\xca\x67\x60\x39\x54\x13\x5d\x0f\xb5\x5d\x70\xef\xd3\xd0\x7e\xb4\x55\xd9\xb2\x6b\xef\x1f\x98\xf0\x80\x9d\x88\x46\x7e\xd2\xdd\x5a\x9b\x5c\x0a\xe8\x45\x4d\x5d\xbe\xb9\x08\x7e\x4d\xbe\xad\x27\x7d\x93\xf5\xdf\x75\xd6\x7f\xd3\x5b\x04\xab\x15\x46\x8f\xae\xee\xb7\x49\x36\xe5\x52\x67\x4d\x31\x69\x35\xec\xbe\x07\x4d\x2c\xf3\xf5\x59\xbf\x52\x60\x5a\x54\x8d\x1b\x09\xe8\x47\xb6\x3b\x07\x43\x28\x95\xd3\x75\xa0\x07\x71\xae\xd3\x19\xc1\x10\xbb\x8d\xc8\x87\x63\xf1\x1c\x33\x5f\x9f\x25\xf5\x14\xef\x8a\x20\x6a\x67\x81\x42\xb1\x72\xcd\x9f\x21\x91\x37\x71\xf1\xd5\x54\xb9\x76\xeb\xd0\xb1\xc0\x86\xe0\xea\x90\x6f\x07\xa6\x17\xf4\xfd\xbb\x67\xb4\x26\xf1\xb0\xc9\x69\xb0\x16\xc3\x67\x7a\xaa\x2c\x98\xfc\x49\x12\x03\xe7\xa4\x3f\x9c\x54\x38\x7d\x63\x81\xa2\x00\xf6\xb3\x1f\x3d\xe2\xb8\x9d\x69\xec\xec\x82\x10\xb4\xca\x90\x18\x78\x37\x7d\x84\xff\x5c\x6f\xc5\x90\xa0\xd3\x2a\x9b\x12\xd1\x45\xba\x8e\x88\x75\x44\x37\xb3\x4f\xa3\xb7\x99\xfd\x1e\x48\xed\x82\xfa\x8e\xe0\x90\x76\x70\x73\x7b\x1b\xd8\x68\xea\x0a\x44\xc7\x74\xef\x19\xeb\xe6\xf3\x6d\xd1\x6a\x1f\x1f\xbf\xe9\x75\x6c\xf3\xa4\x57\xd8\xef\xda\xd6\x91\x9e\xcd\xe4\xf4\x3d\x22\xb4\x59\x60\xbc\xa2\x03\x6e\x30\xa5\x5b\xc0\xe0\x32\x23\x22\xaa\x04\x5f\x3e\xf3\x47\x1d\x4c\x20\xea\x0e\xee\x91\xe6\xed\x7d\xde\x08\xe0\x00\xe2\xb6\x8d\x3b\xfe\x80\x37\x0d\xa0\xf4\x9b\xbc\x28\x30\xad\xab\x09\x95\x99\xb0\xb8\x90\x50\x3a\x0a\x8c\x1e\xf7\x33\x83\x44\x0a\x3e\x3b\x35\x05\x7e\x5e\x90\x20\xf0\xd9\x87\x70\xb2\x82\x3c\x9d\xc6\x5c\x90\x09\x27\x00\x19\x8f\x7a\xe7\x43\x9a\x0c\x20\xc1\xa0\x72\x98\xa4\x5e\x11\x66\x50\x2f\x12\x30\x3c\xae\x38\x7f\xd0\xdb\xff\x3c\x37\xd6\x48\x1d\x2b\x41\xe7\x14\xa0\xef\x67\x81\xc5\xa0\xad\x6f\xd7\x38\xe5\x0c\x64\x30\xc9\xec\x48\x28\x26\xf5\x82\xa9\xcd\x00\x7f\x3b\x13\xa2\x9a\x89\xce\x5e\xd6\x97\x0e\x83\x55\xc2\xea\x5a\xac\x72\xeb\x1e\xd2\xbc\x4d\x92\xc4\x28\xe7\xfe\xb7\x4f\xd5\x58\xf4\xed\x53\xfa\x6e\x33\x4e\xc9\x2d\x79\xc4\x2f\x19\x5b\x8a\x87\xc6\xe6\x32\x38\x35\xb8\x5a\x8c\xc8\xb7\x93\x11\x51\xb7\x06\x44\x38\x5f\xe2\x37\x1f\xe0\x77\xf4\x4f\x68\x29\xb8\xf8\xd0\x22\xeb\x28\xa3\x27\xf5\x5f\xcf\xcb\xf2\xc7\xc1\x85\xb2\xc3\x74\xa2\x23\x43\xc3\x07\x6c\x20\x07\x8e\x6d\xca\x1b\x2d\xca\x1e\x99\xdd\xc6\x4e\xdf\x39\xa7\x48\x42\xb3\x78\x72\x45\xdd\xad\x8e\xc4\xd7\xc1\x22\xa8\x4f\xbd\xe0\xe3\x72\x77\x88\x49\x83\x2c\x5a\x65\x83\x0e\x7c\x8c\x26\xcc\x84\x30\x0b\x3e\x7f\x61\x07\x96\xd5\xd4\x9c\xc2\xff\xff\x27\x00\x00\xff\xff\xe0\x14\x10\x38\x25\x62\x00\x00") func staticJsAppJsBytes() ([]byte, error) { return bindataRead( @@ -359,7 +359,7 @@ func staticJsAppJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/js/app.js", size: 24865, mode: os.FileMode(420), modTime: time.Unix(1452828566, 0)} + info := bindataFileInfo{name: "static/js/app.js", size: 25125, mode: os.FileMode(420), modTime: time.Unix(1453064310, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/pkg/statements/sql.go b/pkg/statements/sql.go index 6cef908..561a459 100644 --- a/pkg/statements/sql.go +++ b/pkg/statements/sql.go @@ -92,6 +92,23 @@ WHERE // --------------------------------------------------------------------------- + PG_MATERIALIZED_VIEW_SCHEMA = ` +SELECT + attname as column_name, + atttypid::regtype AS data_type, + (case when attnotnull IS TRUE then 'NO' else 'YES' end) as is_nullable, + null as character_maximum_length, + null as character_set_catalog, + null as column_default +FROM + pg_attribute +WHERE + attrelid = $1::regclass AND + attnum > 0 AND + NOT attisdropped` + + // --------------------------------------------------------------------------- + PG_ACTIVITY = ` SELECT datname, diff --git a/static/js/app.js b/static/js/app.js index 1b089c9..b3d5a16 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -2,7 +2,7 @@ var editor = null; var connected = false; var bookmarks = {}; var default_rows_limit = 100; -var currentTable = null; +var currentObject = null; var filterOptions = { "equal": "= 'DATA'", @@ -76,16 +76,16 @@ function apiCall(method, path, params, cb) { }); } -function getObjects(cb) { apiCall("get", "/objects", {}, cb); } -function getTables(cb) { apiCall("get", "/tables", {}, cb); } -function getTableRows(table, opts, cb) { apiCall("get", "/tables/" + table + "/rows", opts, cb); } -function getTableStructure(table, cb) { apiCall("get", "/tables/" + table, {}, cb); } -function getTableIndexes(table, cb) { apiCall("get", "/tables/" + table + "/indexes", {}, cb); } -function getTableConstraints(table, cb) { apiCall("get", "/tables/" + table + "/constraints", {}, cb); } -function getHistory(cb) { apiCall("get", "/history", {}, cb); } -function getBookmarks(cb) { apiCall("get", "/bookmarks", {}, cb); } -function executeQuery(query, cb) { apiCall("post", "/query", { query: query }, cb); } -function explainQuery(query, cb) { apiCall("post", "/explain", { query: query }, cb); } +function getObjects(cb) { apiCall("get", "/objects", {}, cb); } +function getTables(cb) { apiCall("get", "/tables", {}, cb); } +function getTableRows(table, opts, cb) { apiCall("get", "/tables/" + table + "/rows", opts, cb); } +function getTableStructure(table, opts, cb) { apiCall("get", "/tables/" + table, opts, cb); } +function getTableIndexes(table, cb) { apiCall("get", "/tables/" + table + "/indexes", {}, cb); } +function getTableConstraints(table, cb) { apiCall("get", "/tables/" + table + "/constraints", {}, cb); } +function getHistory(cb) { apiCall("get", "/history", {}, cb); } +function getBookmarks(cb) { apiCall("get", "/bookmarks", {}, cb); } +function executeQuery(query, cb) { apiCall("post", "/query", { query: query }, cb); } +function explainQuery(query, cb) { apiCall("post", "/explain", { query: query }, cb); } function encodeQuery(query) { return window.btoa(query); @@ -95,17 +95,17 @@ function buildSchemaSection(name, objects) { var section = ""; var titles = { - "tables": "Tables", - "views": "Views", - "materialized_views": "Materialized Views", - "sequences": "Sequences" + "table": "Tables", + "view": "Views", + "materialized_view": "Materialized Views", + "sequence": "Sequences" }; var icons = { - "tables": '', - "views": '', - "materialized_views": '', - "sequences": '' + "table": '', + "view": '', + "materialized_view": '', + "sequence": '' }; var klass = ""; @@ -115,11 +115,11 @@ function buildSchemaSection(name, objects) { section += "
" + name + "
"; section += "
"; - for (group of ["tables", "views", "materialized_views", "sequences"]) { + for (group of ["table", "view", "materialized_view", "sequence"]) { if (objects[group].length == 0) continue; group_klass = ""; - if (name == "public" && group == "tables") group_klass = "expanded"; + if (name == "public" && group == "table") group_klass = "expanded"; section += "
"; section += "
" + titles[group] + " (" + objects[group].length + ")
"; @@ -167,8 +167,8 @@ function unescapeHtml(str){ return e.childNodes.length === 0 ? "" : e.childNodes[0].nodeValue; } -function getCurrentTable() { - return currentTable; +function getCurrentObject() { + return currentObject || { name: "", type: "" }; } function resetTable() { @@ -280,7 +280,7 @@ function showQueryHistory() { } function showTableIndexes() { - var name = getCurrentTable(); + var name = getCurrentObject().name; if (name.length == 0) { alert("Please select a table!"); @@ -298,7 +298,7 @@ function showTableIndexes() { } function showTableConstraints() { - var name = getCurrentTable(); + var name = getCurrentObject().name; if (name.length == 0) { alert("Please select a table!"); @@ -316,7 +316,7 @@ function showTableConstraints() { } function showTableInfo() { - var name = getCurrentTable(); + var name = getCurrentObject().name; if (name.length == 0) { alert("Please select a table!"); @@ -332,7 +332,7 @@ function showTableInfo() { $("#table_encoding").text("Unknown"); }); - buildTableFilters(name); + buildTableFilters(name, getCurrentObject().type); } function updatePaginator(pagination) { @@ -367,7 +367,7 @@ function updatePaginator(pagination) { } function showTableContent(sortColumn, sortOrder) { - var name = getCurrentTable(); + var name = getCurrentObject().name; if (name.length == 0) { alert("Please select a table!"); @@ -409,7 +409,7 @@ function showTableContent(sortColumn, sortOrder) { } function showTableStructure() { - var name = getCurrentTable(); + var name = getCurrentObject().name; if (name.length == 0) { alert("Please select a table!"); @@ -421,7 +421,9 @@ function showTableStructure() { $("#input").hide(); $("#body").prop("class", "full"); - getTableStructure(name, function(data) { + console.log(getCurrentObject()); + + getTableStructure(name, { type: getCurrentObject().type }, function(data) { buildTable(data); $("#results").addClass("no-crop"); }); @@ -539,8 +541,8 @@ function exportTo(format) { win.focus(); } -function buildTableFilters(name) { - getTableStructure(name, function(data) { +function buildTableFilters(name, type) { + getTableStructure(name, { type: type }, function(data) { if (data.rows.length == 0) { $("#pagination .filters").hide(); } @@ -733,7 +735,10 @@ $(document).ready(function() { }); $("#objects").on("click", "li", function(e) { - currentTable = $(this).data("id"); + currentObject = { + name: $(this).data("id"), + type: $(this).data("type") + }; $("#objects li").removeClass("active"); $(this).addClass("active");