diff --git a/docs/schema.md b/docs/schema.md index 6bed72557..c48750e8d 100644 --- a/docs/schema.md +++ b/docs/schema.md @@ -21,6 +21,7 @@ Schemas might also have any of the following optional properties. - metadata -- application specific schema metadata (object) - type -- can be an abstract or empty string (see more in schema inheritance) - extends -- list of base schemas +- order_properties_before -- to order properties before properties of extended schemas. ## Schema Inheritance @@ -357,6 +358,9 @@ eg. type: object unique: false ``` +- order_properties_before + + when resource is extended using 'extends' by default all properties of extended schema gets ordered before the current schema properties. Use this field to order current resource properties before extended resource properties. ## Indexes diff --git a/etc/schema/gohan.json b/etc/schema/gohan.json index 4fbd78f07..d689eba5d 100644 --- a/etc/schema/gohan.json +++ b/etc/schema/gohan.json @@ -60,6 +60,17 @@ "type": "string" } }, + "order_properties_before": { + "description": "properties will be ordered before extended properties", + "permission": [ + "create" + ], + "title": "Order Properties Before", + "type": "array", + "items": { + "type": "string" + } + }, "metadata": { "default": {}, "description": "metadata for application developer", diff --git a/schema/schema.go b/schema/schema.go index 991866407..ce834569f 100644 --- a/schema/schema.go +++ b/schema/schema.go @@ -50,6 +50,7 @@ type Schema struct { RawData interface{} IsolationLevel map[string]interface{} OnParentDeleteCascade bool + OrderPropertiesBefore []string } const ( @@ -86,12 +87,13 @@ func (e *typeAssertionError) Error() string { //NewSchema is a constructor for a schema func NewSchema(id, plural, title, description, singular string) *Schema { schema := &Schema{ - ID: id, - Title: title, - Plural: plural, - Description: description, - Singular: singular, - Extends: []string{}, + ID: id, + Title: title, + Plural: plural, + Description: description, + Singular: singular, + Extends: []string{}, + OrderPropertiesBefore: []string{}, } return schema } @@ -150,6 +152,7 @@ func newSchemaFromObj(rawTypeData interface{}, metaschema *Schema) (*Schema, err schema.Metadata = util.MaybeMap(typeData["metadata"]) schema.Extends = util.MaybeStringList(typeData["extends"]) + schema.OrderPropertiesBefore = util.MaybeStringList(typeData["order_properties_before"]) actions := util.MaybeMap(typeData["actions"]) schema.Actions = []Action{} @@ -591,9 +594,15 @@ func (schema *Schema) Extend(fromSchema *Schema) error { util.MaybeMap(schema.JSONSchema["properties"]), util.MaybeMap(fromSchema.JSONSchema["properties"])) - schema.JSONSchema["propertiesOrder"] = util.ExtendStringList( - util.MaybeStringList(fromSchema.JSONSchema["propertiesOrder"]), - util.MaybeStringList(schema.JSONSchema["propertiesOrder"])) + if util.ContainsString(util.MaybeStringList(schema.OrderPropertiesBefore), fromSchema.ID) { + schema.JSONSchema["propertiesOrder"] = util.ExtendStringList( + util.MaybeStringList(schema.JSONSchema["propertiesOrder"]), + util.MaybeStringList(fromSchema.JSONSchema["propertiesOrder"])) + } else { + schema.JSONSchema["propertiesOrder"] = util.ExtendStringList( + util.MaybeStringList(fromSchema.JSONSchema["propertiesOrder"]), + util.MaybeStringList(schema.JSONSchema["propertiesOrder"])) + } schema.JSONSchema["required"] = util.ExtendStringList( util.MaybeStringList(fromSchema.JSONSchema["required"]), diff --git a/schema/schema_test.go b/schema/schema_test.go index a562ffab1..ddf4f9ac1 100644 --- a/schema/schema_test.go +++ b/schema/schema_test.go @@ -16,6 +16,7 @@ package schema import ( + "encoding/json" "fmt" "github.com/cloudwan/gohan/util" @@ -158,6 +159,63 @@ var _ = Describe("Schema", func() { Expect(patronIdx).ToNot(Equal(-1)) Expect(bestInTownIdx).Should(BeNumerically("<", patronIdx)) }) + + AfterEach(func() { + ClearManager() + }) + }) + + Describe("Order properties before", func() { + var manager *Manager + type JSONSchema struct { + PropertiesOrder []string `json:"propertiesOrder"` + } + var jsonSchema *JSONSchema + + index := func(properties []string, id string) int { + for i, property := range properties { + if property == id { + return i + } + } + return -1 + } + + BeforeEach(func() { + manager = GetManager() + Expect(manager.LoadSchemaFromFile( + "../tests/test_schema_order_properties_before.yaml")).To(Succeed()) + jsonSchema = &JSONSchema{} + s, ok := manager.Schema("school") + Expect(ok).To(BeTrue()) + js, _ := json.Marshal(s.JSONSchema) + json.Unmarshal(js, jsonSchema) + }) + + It("should list all extends properties in PropertiesOrder", func() { + idIdx := index(jsonSchema.PropertiesOrder, "id") + nameIdx := index(jsonSchema.PropertiesOrder, "name") + fundingIdx := index(jsonSchema.PropertiesOrder, "funding") + fmt.Println(jsonSchema.PropertiesOrder, idIdx, nameIdx, fundingIdx) + Expect(idIdx).ToNot(Equal(-1)) + Expect(nameIdx).ToNot(Equal(-1)) + Expect(fundingIdx).ToNot(Equal(-1)) + }) + + It("should order properties before order_properties_before in PropertiesOrder", func() { + nameIdx := index(jsonSchema.PropertiesOrder, "name") + bestInTownIdx := index(jsonSchema.PropertiesOrder, "best_in_town") + fundingIdx := index(jsonSchema.PropertiesOrder, "funding") + Expect(nameIdx).ToNot(Equal(-1)) + Expect(bestInTownIdx).ToNot(Equal(-1)) + Expect(fundingIdx).ToNot(Equal(-1)) + Expect(nameIdx).Should(BeNumerically("<", bestInTownIdx)) + Expect(bestInTownIdx).Should(BeNumerically("<", fundingIdx)) + }) + + AfterEach(func() { + ClearManager() + }) }) Describe("Indexes", func() { diff --git a/tests/test_schema_order_properties_before.yaml b/tests/test_schema_order_properties_before.yaml new file mode 100644 index 000000000..0fbd61087 --- /dev/null +++ b/tests/test_schema_order_properties_before.yaml @@ -0,0 +1,112 @@ +schemas: + +- id: base_resource + type: abstract + description: Resource Base + singular: base_resource + plural: base_resource + prefix: /v1.0 + schema: + properties: + id: + description: ID + permission: + - create + title: ID + type: string + view: + - detail + name: + description: Name + permission: + - create + - update + title: Name + type: string + propertiesOrder: + - id + - name + type: object + title: Base + +- id: affiliation + type: abstract + description: School Affiliation + singular: affiliation + plural: affiliation + prefix: /v1.0 + schema: + properties: + funding: + description: Funding + enum: + - public + - private + nullable: false + permission: + - create + - update + title: Funding + type: string + view: + - detail + propertiesOrder: + - funding + type: object + title: Affiliation + +- id: city + description: City + singular: city + plural: cities + title: City + prefix: /v1.0 + schema: + properties: + id: + description: The ID of City + title: ID + type: string + permission: + - create + name: + description: Name + title: Name + type: string + permission: + - create + propertiesOrder: + - id + - name + type: object + +- id: school + description: School + singular: school + extends: + - base_resource + - affiliation + order_properties_before: + - affiliation + plural: schools + title: School + prefix: /v1.0 + schema: + properties: + city_id: + description: City + title: City + type: string + relation: city + relation_property: city + permission: + - create + patron: + type: string + best_in_town: + type: bool + propertiesOrder: + - city_id + - patron + - best_in_town + type: object diff --git a/util/bindata.go b/util/bindata.go index 10bdab329..8954f447d 100644 --- a/util/bindata.go +++ b/util/bindata.go @@ -104,12 +104,12 @@ func etcSchemaCoreJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "etc/schema/core.json", size: 4424, mode: os.FileMode(420), modTime: time.Unix(1485368500, 0)} + info := bindataFileInfo{name: "etc/schema/core.json", size: 4424, mode: os.FileMode(420), modTime: time.Unix(1488503999, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _etcSchemaGohanJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5d\x41\x8f\x9c\x3a\x12\xbe\xe7\x57\x94\x5a\x7b\xd8\x8d\x9e\xf2\xf6\x5d\x73\x5b\xbd\x8c\x56\x59\xcd\x66\x66\x67\x92\x77\x89\xb2\x2d\x0f\xed\xee\xf6\x5b\x30\x04\x4c\x27\xad\x28\xff\x7d\x05\x06\x1a\x18\x6c\x97\x6d\xa0\x21\x0a\xa7\x9e\xa1\x5c\x76\x7d\xb6\xcb\x55\x65\xbb\xf8\xf6\x02\x00\x60\x93\xc4\x21\x0b\x18\xcd\x36\xaf\xe1\x63\xf9\x9f\xe2\xf9\xd6\xfc\x2a\x69\x48\x20\x58\xcc\x37\xaf\x61\xf3\x72\xf3\x4b\xf7\x15\xdd\xef\x69\x20\x8a\x57\x24\x0c\xe3\x2f\xfd\xd7\x6c\x57\xbe\xda\x45\x8c\x6f\x33\x41\x04\x8d\x28\x17\x7d\xa2\x24\x65\x3c\x60\x09\x09\x1b\xda\x3e\x45\x4a\xb3\x38\x4f\x03\xba\x79\xdd\x6b\x9a\x2c\x4f\xc4\xb1\x28\xfa\xea\xe5\xa6\xf3\xf2\xfb\x8b\xee\xaf\x4f\x92\xeb\x26\x0b\x8e\x34\x22\x5a\x89\x77\x34\x0b\x52\x96\xd4\x62\xbf\x3f\x52\x88\x08\xe3\x10\x51\x41\x64\xf1\x61\x49\x87\xdf\x15\xa5\x76\x44\x90\xe1\xe6\x8b\x73\x52\x08\xb6\x69\xf1\xee\x8a\xd1\x87\x2b\xcc\x53\x89\x55\x2d\xc8\x33\x3c\xe9\x9e\x7d\x2d\x08\x7e\x3d\xc4\x47\xc2\x7f\x3d\xfd\xfd\xd5\x6f\x7d\xa2\xaa\xa6\xc1\x16\x91\xdd\x8e\x15\xa2\x93\xf0\x3e\x8d\x13\x9a\x0a\x39\x3e\xf6\x24\xcc\xe8\x2f\x03\xf8\xb7\x89\x9e\xb3\x1b\x00\x74\x98\xa8\x22\xdc\x93\x3c\x2c\x47\xd4\xe6\x79\x5d\x0a\x7e\x9b\x37\xad\x3f\x35\xa5\x12\x9a\x46\x2c\xcb\x64\xa1\x8f\x4a\xba\x92\x36\x48\x29\x11\x54\xc3\xad\xa4\xca\x93\x5d\x41\xa5\x24\xfa\xa4\x69\x8d\x60\x22\xa4\x16\xad\xaf\x07\x4a\x26\x52\xc6\x0f\xc3\x75\x7e\x1f\x2e\x2f\x87\xa7\x16\xf6\x0e\x9e\x8f\xe5\xe8\x80\xb7\x6f\x46\x46\xd3\x0f\x27\x7d\x73\x7a\xf0\x68\x28\x73\xce\x3e\xe7\x05\xad\x48\x73\x6a\x05\x63\x55\x87\x35\x90\xef\x8b\x72\x4b\x82\xd2\xd4\x20\x9f\xb1\x46\xbf\x0a\xca\x77\x6a\x65\x00\x03\x38\xdd\x54\x65\x96\x84\x11\xa2\x4d\x35\x4c\x24\x4d\xc9\x59\x47\xc8\x04\x8d\xf4\x88\x00\x16\x76\xe8\x2c\x6d\x9d\xff\x2a\x3a\x44\xbb\xfe\x34\x54\x17\xcd\xfb\x4d\xc1\x08\x06\x3a\xae\xe6\x0d\xfb\x38\x05\x92\x24\x21\x0b\x48\xf1\x0e\x76\xf4\x44\xc3\x62\x61\xd0\xc1\xb2\x8f\xd3\x88\x94\xca\xfe\x4c\xa2\x70\x85\xaa\xfb\xdf\x35\xb4\x88\x41\x12\x3f\xfd\x59\xd8\x4a\x56\x5d\xc7\x49\x44\xb3\x84\x28\x4c\x9f\x86\xcc\x6d\xd5\x7c\x57\x33\x07\x71\xa4\x20\x2d\x02\x78\xa2\x61\xcc\x0f\x19\x88\x78\x51\x93\xb1\x69\xeb\x54\x5a\x2b\x21\x69\x61\x9b\x4e\x00\xf3\x7d\xc9\x19\xe2\x3d\x88\x23\xcb\x60\xd0\x46\xec\x36\x65\x99\x63\x5d\xca\x31\x15\xfe\x31\xdf\xca\x2e\xd8\xee\x68\x48\x05\xdd\x06\x24\x0b\xc8\x0e\x3d\xf0\x15\xd6\x69\x8b\xb2\xd3\x29\xbf\x4b\xee\x20\x2b\x83\x98\x43\x42\x52\xd9\x51\xb5\xb7\x21\xdf\xad\xd3\xa4\xbc\xe3\x50\x0d\xbb\x37\x52\xc0\x4a\x5e\x44\xef\x19\x84\x78\x8a\xe3\x90\x12\x1d\x26\x25\x19\xcf\xc3\x50\x23\x83\xdd\xd4\xac\x3d\x1e\xbc\x3d\x71\x5f\x16\xf9\x01\xe6\x9c\x14\x7d\x2a\x9d\x57\x7b\x8a\xa3\xeb\xbc\x8a\xf3\x0a\x01\x37\x36\xdc\x07\x70\x8d\xd7\xdd\xd0\xb4\xec\x30\xbd\xbc\x08\xbf\xbb\x43\x6f\xf0\x01\xbb\xbc\xf1\xbd\xd3\x29\x67\x5a\xeb\xdb\x8f\xa6\x3f\x3a\x3c\xb1\x46\x71\xfd\x0c\x1b\xc7\xcd\x5b\xc3\x28\xc2\x58\x6b\x06\x3e\x43\xe1\x23\xc6\x39\x4d\xd5\xf1\xa3\x5e\x71\x41\x58\xb8\x3d\x31\xfa\xa5\x72\x52\x57\x33\x8f\x2c\xc6\xa4\x2a\xcc\x84\x18\xc9\x75\x1f\xd5\x6b\x91\x57\x87\xdb\x4e\xa3\x84\x08\x41\x53\x6e\xd9\xe6\xb2\xe8\x7f\x5f\xbd\xfc\x0b\x9a\xda\xa5\x71\x9d\xb2\x58\x45\x32\x58\x98\xf0\xf3\xdd\xde\x6a\xee\xb7\x1f\xfb\x0a\x9b\x8a\xbb\x2e\xb5\x13\x1f\x43\x8f\xab\x9e\x11\x1a\x8d\x1a\x90\xaa\xe7\x7a\xcd\x66\x5c\xd0\x03\x4d\xd7\xd6\x6c\x9e\x47\x4f\xeb\x6b\xb5\x69\x61\xd1\x3d\xd7\x6b\x35\x76\xf1\x1d\x7a\xf4\x0b\xf2\xd0\x83\x34\x0d\xda\x4f\x3b\x9c\x2e\xf5\x9e\x15\x0b\x4b\x64\xd1\x1b\x1a\x98\xe6\x62\xa2\xff\x6a\x3e\x1e\x1d\x64\x2f\x74\xdb\x30\xf1\x13\xba\xe0\x04\x7f\x30\xfa\x05\xee\x78\xa8\x8b\x9d\xaa\x99\xf9\x28\x5d\x5b\xd1\x29\xcf\x23\x37\x99\x23\xc6\xdf\x56\xd1\xdf\xdf\x7c\x86\xf5\x4d\xd1\x02\x0f\x98\x4c\x31\x6a\x25\x03\xb9\x5d\x52\xcb\xa0\xdc\x33\x51\x3d\xb6\x48\x37\x31\x61\x9f\xf1\x55\x31\x59\xf8\x7c\xb2\xf0\xc8\xba\x6d\x44\xed\x88\xa9\x8b\xcf\x29\x22\x6a\xe3\x63\xb0\x28\x7a\x73\x40\xc9\xe1\x82\x53\xd9\x0a\x0f\xa8\x5c\x16\x6d\x5b\xa8\x2a\xc7\xc2\x17\xac\x94\x1e\xa8\x2e\x80\xa1\x64\xd1\x0a\xf4\xca\x86\x2c\x7c\x68\x75\x3c\x5f\x07\xc8\xdc\x87\x26\xb4\x56\x04\x37\x07\x09\xd0\xee\xb8\x96\x83\xc9\x55\xd7\x3d\x0e\x36\x16\x8c\x61\x11\x3a\xd8\xb0\xad\xa1\x79\xe9\x73\xef\xa5\x70\xda\xc1\xe9\xee\xb8\xc3\xc8\xca\xaf\x15\xa9\x58\x87\x06\x74\x08\xad\x74\xd8\x8c\x89\x9d\x6c\x11\xac\x07\xc3\x94\x86\x64\x04\xaf\xe4\xa1\x66\xb3\xf0\x45\xa0\x16\x77\x5b\x4d\xb8\xf3\x48\x72\xd7\x3d\xee\xe5\x99\xcc\x03\xc0\xe7\x9c\xa5\xd4\xd1\x92\xf4\x5c\x03\xaf\xba\x16\x3c\x54\x92\xc3\x9e\xd1\x50\x7b\x4e\x47\xcd\x6b\x65\xbe\x51\xf6\x59\xbf\x0d\xaa\x2c\xd8\x80\xf6\xf8\x9f\x5b\x10\xfa\xc3\x5f\x6a\x26\x33\x0e\xeb\xba\xc1\x3e\xb2\xbe\x2f\x7f\x2c\x5d\x50\xd3\x91\x42\x65\xc9\x98\xd3\xeb\x84\xe8\xbd\x2d\xdf\x92\x8b\xeb\x9c\xeb\x30\xc1\x9d\x46\x30\xb2\xa9\x03\xe0\x9e\x6c\xca\x43\x0f\xde\x3c\xca\xa0\xb6\x27\x97\xca\xd2\xf0\xe4\xe2\x13\xf4\x05\x77\x17\x03\xc0\xe2\xa8\xaa\x99\xd1\x18\x11\xec\xd9\xe3\xee\x7e\x0b\x73\xc3\x66\x94\xa9\x0a\x63\x4d\x57\x18\x6f\xca\xc2\x78\xd3\x16\x46\x9a\xba\x30\xda\xf4\x85\xd1\xa6\x30\x8c\x31\x8d\x41\x79\x62\x0b\xf3\x38\xce\x1d\x98\x44\x09\xf8\x8e\x62\x5f\x83\xaf\x7e\x1c\xb6\xc4\x26\xb5\x42\x9a\x2b\x11\x3e\xf6\xd6\x07\xc9\x64\xe9\x5b\x39\x31\xb7\x39\x62\xaa\x6e\xf3\xca\xc4\xee\x8e\x5c\x7f\x81\x81\xf9\x06\xd5\x67\x11\x7b\x84\xcd\xca\x82\x05\x04\x31\xdf\xb3\x43\x9e\x12\x16\x73\x88\x39\x7c\x78\x3b\x77\x04\x12\x4d\x6d\x01\x51\x2b\x4e\x79\x97\xee\x68\x6a\x6d\x2b\x6c\xd8\xce\x12\x87\x0a\x57\x17\x37\xc9\x6d\x27\xd1\x7a\x93\x5b\x1e\x1f\x70\xdf\x8d\x70\xd3\xbd\xee\x01\x66\xef\x28\xab\xd3\x9e\x9e\x87\xfa\x71\xdc\x18\x73\xd9\xb2\x77\x8d\x9e\x7a\x9c\x8c\x70\x88\xe9\xb8\xc6\xfc\x66\x98\x44\xf5\x6d\x3e\x74\x29\x0b\xa7\xaf\x1d\xbc\xb4\x54\x3b\x3b\xe7\x53\x33\x4e\x28\x48\x9d\x35\x09\x06\x2e\x9b\x03\xe6\xb5\x00\xb1\x06\x38\xee\x10\x59\x35\x18\x7f\xf8\xb6\x5e\x7e\x30\x07\xd9\xad\x6c\x18\xfb\xf3\xe3\x6e\xd0\x81\x94\xc0\x02\x40\xac\x33\x62\xeb\x74\x98\x40\xb7\xda\x32\x58\x14\xda\x4d\xc8\xdf\x6a\xf5\xbb\x3a\xe0\xe8\x18\xaf\xb5\xc3\x6b\x05\xb7\x5a\x6b\xe8\x2e\x33\x34\x4d\xfa\xd7\xe3\xdd\x3b\xc4\x4d\x2a\x9f\xeb\xae\x19\xe3\x87\x3c\x24\x7a\x3d\xf0\xec\x8e\x7d\x55\x08\x38\x89\xe8\xfa\xaf\x7c\xd5\xe2\x4c\x75\x07\xc9\xbc\xb3\xd2\x07\xf8\x96\x3c\xd1\x1f\xe0\x2e\x9d\x69\x3b\xc8\x0b\x55\x99\x23\xc7\x98\xf4\xc0\xe5\x8a\xfd\x43\x7d\x1f\xb5\xae\x63\x35\xd0\xdb\x9f\xe7\xd8\xbc\x7a\x89\xbc\x85\xe3\x70\xfd\x86\xf1\x24\xb7\x3b\x58\xea\x66\x9c\xe1\x8c\xbf\x4d\x9c\x8b\x79\xda\x33\xce\x1a\x6c\x63\xf5\xf9\x2d\x34\xff\x30\x8f\x73\xdc\x5d\x65\x54\x08\x7d\xd4\xab\xca\x2c\x8b\xab\xf3\x28\x21\x3d\x51\xe3\x9d\x65\x17\x75\xf0\xb6\xae\x02\x6e\xcb\x2a\x7e\x6a\x83\x59\xad\xa0\x06\x7e\x23\xfa\x57\x1f\xa3\xcf\xfe\x3b\x20\x20\x3a\x00\xa8\x0e\xf4\x5d\xac\x36\xc5\xfb\x44\x77\x89\x5d\x1b\x0e\xd4\xdf\x23\x1f\x4e\xb7\xd6\xbc\x35\x87\x08\xea\xa4\x1f\x8a\xb7\xdc\x90\x73\xe4\x92\x58\xc7\x60\x14\x20\x95\x85\x82\x4c\x99\x19\xe3\x19\xf9\xc0\xec\x33\x87\x58\x26\xeb\x58\x7d\xef\x28\x22\x2a\x43\x22\x5c\x4c\x63\x99\xa2\xe6\x0d\xdd\x33\xce\x14\xfd\xaa\x5d\xa8\xfa\xb9\xf4\x5a\xfe\x86\x22\x77\x5f\x53\xf7\x3f\xe3\x23\xe1\xf0\xd8\x4b\xd0\xd7\x62\x68\x4e\x21\x58\xe6\x5a\x3c\x1b\x93\x08\x4a\xb2\xfe\xbb\xa9\x92\x08\x36\x09\x20\xfb\x14\xbe\x59\x04\x31\x69\x01\x9b\xcc\x92\x78\x67\xa4\x2a\xb2\x9a\x55\xaf\x67\xd5\x4c\xe5\x7f\x04\x31\x97\xb7\xe9\xb1\x26\xc7\x47\x5d\xa3\x7b\x98\x5f\x98\x6b\xca\xd4\x71\x22\x3d\xe2\x63\x2f\xe6\xfa\x9e\xb3\xa8\xcd\xcf\xae\xd5\xda\x3d\xcb\x1c\x8f\xbf\x63\x3a\x15\xb1\x5f\xa9\x4c\x03\x58\xa7\x86\xc5\xcf\xed\xaa\x88\xa6\x3d\xa8\xf3\x4c\x83\xb9\x68\x07\xea\xe6\x9a\x1d\xd8\x15\x76\xe8\x8d\x11\xbd\x19\x33\x88\x6a\xb7\x85\x17\x9e\x3a\xd4\x0a\x97\x76\xf6\x62\x3c\x3c\x97\x52\xeb\x1b\x67\xf7\x98\xb6\xfb\x40\xaa\x4d\xf7\xdc\x50\xf5\x10\x6d\x0a\xad\x06\x50\x9b\x5c\x39\x55\x8e\x6b\x9b\x1d\x84\xfb\xa2\xc8\xd8\x3b\x08\xe8\xed\xbc\xf5\xed\x2d\xb9\x6d\x82\x22\x0e\xf2\x78\x06\x1c\x1e\x10\x03\x1b\xb5\xe7\x32\x57\x38\xc0\xa4\xdb\x4c\x53\x55\x6f\xe2\xeb\x8d\x84\x96\xa9\x8a\x73\x2d\x1d\x9d\xc5\x61\x1f\xad\xe7\x2c\xde\x4b\x22\x37\x67\xb1\x3c\x77\x51\xa8\x2a\xa3\xbf\xd8\x50\xce\xe5\x32\x36\x15\x5e\xc7\x69\x0c\x62\x7c\x56\x50\x9b\x9c\x85\x25\x5f\x0d\xf9\xe5\x5a\xe9\x9f\xe4\x44\x64\xd1\xf5\xac\x36\x2d\xbb\x1f\x95\x06\xd4\xd1\x0b\xdd\xd1\x2d\x26\x49\x7a\xd3\x3f\x38\x28\x07\x7a\xca\x74\x8b\x6d\xc9\xf0\x1b\xf3\xc1\xff\x34\xd4\x15\x64\x5e\x09\x9e\x0d\x26\xd4\x33\x1b\x5d\x6f\x40\x2d\x75\x80\x19\xec\x3e\x2f\x0c\xf3\x14\xbd\xa5\x65\xa3\x79\x3f\x3c\xdc\xe2\x14\x6f\x51\xff\xfa\x7a\xc4\x20\x1e\xaa\x43\xe6\x32\xde\x2e\x1a\x5c\x33\x04\x74\x33\x4c\xc3\x77\x5a\x93\x4c\x69\x06\xf5\xac\xb2\x9b\x86\xce\xd1\x30\x3b\x51\x2e\xcc\x46\xd9\x69\xe0\x4b\x47\x7a\x83\x8c\xc7\xd9\x99\x07\xca\x8c\xaf\x3e\x06\x5b\xd1\x98\xeb\x18\x6b\x4f\xf1\x4e\x9f\x92\xa1\x0f\x71\x59\x00\xa5\x0c\x56\xfa\xc9\x88\x9b\x72\xfc\x98\xc4\xec\xcd\x02\x0d\xa5\xcc\x09\xb0\x09\x63\x7e\x10\xf4\xab\xed\x81\xbb\x33\x0f\xb6\x49\x48\x98\xdd\x26\x4c\xab\xd8\x92\x8c\x87\xc7\x33\x0f\xe0\x0b\x13\xc7\x38\x17\x20\x67\x7b\x79\x68\x31\x22\x69\x76\x24\xa1\xe1\xb3\x40\xa8\x6b\x49\x7a\x20\x31\x39\x48\x86\xb1\x34\x67\x1b\x99\x1f\xce\x3a\x05\x8a\x3c\x58\x29\x62\x28\xf5\xd3\x44\xa6\xc5\x89\xa6\xc6\x54\x5e\x43\xea\xb8\x2a\x27\x8f\x27\xd2\xea\x9a\x96\x3c\xa9\x28\x35\xb5\x84\x62\x6c\x2b\x77\xa6\x1d\x9a\x42\x96\x1a\x19\x04\xf0\xda\x44\xbe\x3f\x94\xc3\x50\x69\xbd\x4a\x60\x48\x52\x16\x91\xf4\x0c\xff\xa3\x67\x20\xb9\x88\xb7\x8c\x07\x69\xf9\xb5\x41\xd0\xe2\x66\xe7\x76\x38\xc1\x8b\xf1\x3b\x5c\x8c\x66\xb9\x8e\xfc\x74\x52\x06\x2a\x89\x68\x26\x48\x94\x4c\x87\x7a\x53\x05\xfc\x35\xe7\xec\x6b\xf1\xe7\xdf\x56\xd8\x0b\xef\x1b\xa4\xa6\x1a\xfc\x56\xb1\x20\xfb\x6e\x58\x67\x08\x68\x94\xe8\xcf\x5c\x0e\xa1\xd1\xd4\x43\x19\x30\xba\x4b\x77\x5a\xbf\x51\x18\x86\xe8\x46\xbf\x3a\x4a\x77\x62\x5a\xbf\x73\xc8\xd3\xeb\xfb\x9c\xe5\x70\xbd\x8d\x0f\x8e\x3e\x67\x73\x12\x71\xf8\xf6\x45\xe5\x73\xaa\xce\x2b\xb6\x3c\xc1\x86\xc4\xcd\x1b\x9c\xd7\x81\xf5\xf5\x3d\x27\xfe\xe8\x2c\xee\x0a\xea\x52\x95\xd0\xf2\x3e\x3a\xbb\x0c\xc3\x72\x86\x48\xf4\x1c\xdf\xe3\xfc\xa1\x43\x28\x73\x7c\x75\x73\x0a\x8d\x51\xf2\x5d\x1f\xdc\xef\x0c\xcd\x5e\xc5\x67\x37\x4d\x87\xf9\xe1\x2a\x4a\x46\x7b\x01\x01\xbc\xc1\x5d\xd7\xf7\xfd\x3c\xa1\x9c\xf4\xcb\x7d\xc8\xf0\x94\x0b\x96\x88\xf8\xce\x42\x15\xc3\x1f\xf8\xc8\xd4\x22\x7c\x19\x8d\xfe\x45\xdd\x16\xd2\x5e\x46\xd2\xdf\x25\x32\xb8\x29\xcd\xb2\x3d\xa9\xab\xa2\x74\x10\x7a\xee\xca\xe5\x63\xcb\x17\x77\xa5\xfc\xf5\xe9\xc5\xf7\x17\xff\x0f\x00\x00\xff\xff\x11\xda\x01\x32\x39\x84\x00\x00") +var _etcSchemaGohanJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5d\x5f\x6f\x9c\x3a\x16\x7f\xef\xa7\x38\x1a\xed\xc3\x6e\x75\xd5\xbb\xf7\xb5\x6f\xbb\xb7\xd1\xaa\xab\x6c\x93\x4d\xda\xfb\x52\x75\x47\x0e\x78\x12\x77\xc1\x50\x30\x49\x47\x55\xbf\xfb\x15\x18\x18\x20\xd8\x3e\xb6\x81\x81\xaa\x3c\x4d\xc2\xf1\xb1\xcf\xcf\xff\xce\x1f\xfb\xf0\xed\x05\x00\xc0\x2e\x4d\x22\x16\x30\x9a\xef\x5e\xc3\xc7\xea\x3f\xe5\xf3\xad\xfd\x55\xd1\x90\x40\xb0\x84\xef\x5e\xc3\xee\xe5\xee\x97\xfe\x2b\x7a\x38\xd0\x40\x94\xaf\x48\x14\x25\x4f\xc3\xd7\x2c\xac\x5e\x85\x31\xe3\xfb\x5c\x10\x41\x63\xca\xc5\x90\x28\xcd\x18\x0f\x58\x4a\xa2\x96\x76\x48\x91\xd1\x3c\x29\xb2\x80\xee\x5e\x0f\x9a\x26\xcb\x13\xf1\x50\x16\x7d\xf5\x72\xd7\x7b\xf9\xfd\x45\xff\xd7\x27\xc9\x75\x97\x07\x0f\x34\x26\x5a\x89\x43\x9a\x07\x19\x4b\x1b\xb1\xdf\x3f\x50\x88\x09\xe3\x10\x53\x41\x64\xf1\x71\x49\xc7\xdf\x95\xa5\x42\x22\xc8\x78\xf3\xc5\x31\x2d\x05\xdb\x75\x78\xf7\xc5\x18\xc2\x15\x15\x99\xc4\xaa\x11\xe4\x19\x9e\xf4\xc0\xbe\x96\x04\xbf\xde\x27\x0f\x84\xff\xfa\xf8\xf7\x57\xbf\x0d\x89\xea\x9a\x46\x5b\x44\xc2\x90\x95\xa2\x93\xe8\x3a\x4b\x52\x9a\x09\x39\x3e\x0e\x24\xca\xe9\x2f\x23\xf8\x77\x89\x9e\xb3\x1b\x01\x74\x9c\xa8\x26\x3c\x90\x22\xaa\x46\xd4\xee\x79\x5d\x0a\x7e\xbb\x37\x9d\x3f\x35\xa5\x52\x9a\xc5\x2c\xcf\x65\xa1\x8f\x4a\xba\x8a\x36\xc8\x28\x11\x54\xc3\xad\xa2\x2a\xd2\xb0\xa4\x52\x12\x7d\xd2\xb4\x46\x30\x11\x51\x8b\xd6\x37\x03\x25\x17\x19\xe3\xf7\xe3\x75\x7e\x1f\x2f\x2f\x87\xa7\x16\xf6\x1e\x9e\xb7\xd5\xe8\x80\xb7\x6f\x26\x46\xd3\x0f\x27\x7d\x73\x06\xf0\x68\x28\x0b\xce\xbe\x14\x25\xad\xc8\x0a\x6a\x05\x63\x5d\x87\x35\x90\xef\xcb\x72\x6b\x82\xd2\xd4\x20\x9f\xb1\x46\xbf\x0a\xca\x43\xf5\x62\x00\x23\x38\x5d\xd4\x65\xd6\x84\x11\xa2\x4d\x0d\x4c\x24\xcb\xc8\x51\x47\xc8\x04\x8d\xf5\x88\x00\x16\x76\xe8\x6d\x6d\xbd\xff\x2a\x3a\x24\xc9\x42\x9a\xed\x4f\xcb\xf4\xfe\x8e\x1e\x92\xcc\x6e\x20\x9f\x4a\xc3\x13\x8b\x22\xb8\xa3\x50\xb1\xa5\x21\x48\x6e\x20\xbb\x9d\x86\xd0\xd9\x0f\xd6\xd4\x9d\x57\x65\x73\xe1\xb4\xa3\xc1\x3f\x25\x0a\x9b\xef\x5e\xad\x7a\xd1\x52\x9d\x36\xd6\x6f\x0a\x46\x30\xd2\xed\x0d\x6f\x38\x24\x19\x90\x34\x8d\x58\x40\xca\x77\x10\xd2\x47\x1a\x95\x50\xea\x60\x39\x24\x59\x4c\xaa\xbd\xfc\x48\xe2\x68\x83\x3b\xf3\x7f\x1a\x68\x11\x83\x24\xb9\xfb\x5c\xaa\xc2\x56\x5d\xc7\x49\x4c\xf3\x94\x28\x34\xdb\x96\xcc\x4d\x29\x7a\xd7\x30\x07\xf1\x40\x41\x2a\x7c\x70\x47\xa3\x84\xdf\xe7\x20\x92\x55\x4d\xce\xb6\xad\x73\x6d\x4a\x29\xc9\x4a\xd3\x63\x06\x98\xaf\x2b\xce\x90\x1c\x40\x3c\xb0\x1c\x46\x4d\x80\x7e\x53\xd6\x39\xd6\xa5\x1c\x73\xe1\x9f\xf0\xbd\xec\x82\x7d\x48\x23\x2a\xe8\x3e\x20\x79\x40\x42\xf4\xc0\x57\x18\x1f\x1d\xca\x5e\xa7\xfc\x2e\xb9\x83\xac\x0c\x12\x0e\x29\xc9\x64\x47\x35\xc6\xa4\x7c\xb7\x4d\x8b\xe1\x8a\x43\x3d\xec\xde\x48\x01\x6b\x79\x11\xbd\x67\x10\xe2\x2e\x49\x22\x4a\x74\x98\x54\x64\xbc\x88\x22\x8d\x0c\x76\x53\xb3\x31\x68\xf1\xda\xc8\x75\x55\xe4\x07\x98\x73\x52\xf4\xb9\xd6\xbc\xc6\x11\x30\xf9\x9a\x57\x73\xde\x20\xe0\xc6\x86\xfb\x00\xae\x71\xaa\xb4\x34\x1d\x3d\x4c\x2f\x2f\xc2\xad\xd2\xa3\x37\x98\xf8\x7d\xde\xf8\xde\xe9\x95\x33\xed\xf5\xdd\x47\xd3\x1f\x3d\x9e\x58\xa5\xb8\x79\xc6\x95\xe3\xf6\xad\x61\x14\x61\xb4\x35\x03\x9f\x31\xef\x20\xe3\x9c\x66\x6a\xf7\xe0\xa0\xb8\x20\x2c\xda\x3f\x32\xfa\x54\xfb\x20\x36\x33\x8f\x2c\xc6\xa4\xca\x8b\x88\x18\xc9\x4d\x1f\x35\x7b\x91\x57\x87\xdb\x4e\xa3\x94\x08\x41\x33\x6e\xd9\xe6\xaa\xe8\xff\x5e\xbd\xfc\x0b\x9a\xda\xa5\x71\xbd\xb2\xd8\x85\x64\xb4\x30\xe1\xc7\xab\x83\xd5\xdc\xef\x3e\xf6\x15\xb6\x15\xf7\x4d\x6a\x27\x3e\x86\x1e\x57\x3d\x13\x34\x1a\x35\x20\x55\xcf\xf9\x9a\xcd\xb8\xa0\xf7\x34\xdb\x5a\xb3\x79\x11\xdf\x6d\xaf\xd5\xa6\x8d\x45\xf7\x9c\xaf\xd5\xd8\xcd\x77\xec\xd1\x6f\xc8\x63\x0f\x52\x35\xe8\x3e\xdd\x68\x89\x5c\xf7\xac\x58\x58\x22\x8b\x8e\x57\x61\x9a\x8b\x09\xee\xa8\xf9\x78\x74\x90\xbd\xd0\x5d\xc5\xc4\x4f\xe8\x92\x13\xfc\xc1\xe8\x13\x5c\xf1\x48\xe7\x3b\x55\x33\xf3\x59\x74\x6d\x45\xa7\xbc\x88\xdd\x64\x8e\x19\x7f\x5b\x7b\x7f\x7f\xf3\x19\xd6\x17\x65\x0b\x3c\x60\x32\xf9\xa8\x95\x0c\x64\x34\xac\x91\x41\x19\x12\x53\x3d\xb6\x48\xb7\x3e\x61\x9f\xf1\x55\x33\x59\xf9\x7c\xb2\xb0\xc8\xfa\x6d\x44\x05\x3c\xd5\xc5\x97\x14\x11\x15\xf8\x18\x2d\x8a\x0e\x0e\x28\x39\x9c\x70\xaa\x5a\xe1\x01\x95\xcb\xa6\x6d\x0b\x55\x6d\x58\xf8\x82\x95\xd1\x7b\xaa\x73\x60\x28\x59\x74\x1c\xbd\xb2\x21\x2b\x1f\x5a\x3d\xcb\xd7\x01\x32\xf7\xa1\x09\x9d\x1d\xc1\xcd\x40\x02\xb4\x39\xae\xe5\x60\x32\xd5\x75\x8f\x83\x8e\x05\x53\x68\x84\x0e\x3a\x6c\x67\x68\x9e\xfa\xdc\x7b\x2b\x9c\x77\x70\xba\x1b\xee\x30\xf1\xe2\x77\x8d\x09\xb7\xab\xd9\x2c\xbf\x02\x3a\xb8\x56\x7a\x6c\xa6\xc4\x4e\xb6\x08\xb6\x83\x61\x46\x23\x32\x81\x55\x72\xd3\xb0\x59\xf9\x26\xd0\x88\xdb\x9c\x5e\x39\x4e\x24\x77\xd3\xe3\x5e\x96\xc9\x32\x00\x7c\x29\x58\x46\x1d\x35\x49\xcf\x3d\xf0\xac\x7b\xc1\x4d\x2d\x39\x1c\x18\x8d\xb4\xc7\xb0\xd4\xbc\x36\x66\x1b\xe5\x5f\xf4\x61\x50\x65\xc1\x16\xb4\xdb\xff\x5e\x82\xd0\x9f\xed\x53\x33\x59\x70\x58\x37\x0d\xf6\x91\xf5\x7d\xf5\x63\xed\x82\x9a\x4e\x8c\x2a\x4b\x26\x9c\x9e\xc7\x45\xef\xad\xf9\x56\x5c\x5c\xe7\x5c\x8f\x09\xee\x34\x82\x91\x4d\xe3\x00\xf7\x64\x53\x1d\x7a\xf0\xe6\x51\x39\xb5\x3d\xb9\xd4\x9a\x86\x27\x17\x1f\xa7\x2f\xb8\x9b\x18\x00\x16\x27\x91\xcd\x8c\xa6\xf0\x60\x2f\xee\x77\xf7\xdb\x98\x5b\x36\x93\x4c\x55\x98\x6a\xba\xc2\x74\x53\x16\xa6\x9b\xb6\x30\xd1\xd4\x85\xc9\xa6\x2f\x4c\x36\x85\x61\x8a\x69\x0c\xca\x13\x5b\x98\xc7\x71\xee\xc0\x2c\x8b\x80\xef\x28\xf6\x55\xf8\x9a\xc7\x21\x24\x36\xab\x16\xd2\xde\x78\xf1\xd1\xb7\x3e\x48\x26\x6b\x0f\xe5\x24\xdc\xe6\x88\xa9\xba\xcd\x1b\x13\xbb\x3f\x72\xfd\x05\x06\xe6\xeb\x54\x5f\x44\xec\x09\x82\x95\x25\x0b\x08\x12\x7e\x60\xf7\x45\x26\xbd\x03\x09\x87\x0f\x6f\x97\x76\x41\xa2\xa9\x2d\x30\xea\x38\x2a\xab\xfb\x2f\xd6\xca\xc2\x8e\x85\x96\x38\xd4\xc0\xba\xd8\x49\x6e\xa1\x44\xeb\x28\xb7\x3c\x3f\xe0\x1e\x8e\x70\x5b\x7c\xdd\x3d\xcc\xde\x6e\x56\xa7\xa0\x9e\xc7\xfa\xe3\x18\x19\x73\x89\xd9\xbb\xba\x4f\x3d\x8e\x46\x38\x38\x75\x5c\x9d\x7e\x0b\x4c\xa2\xe6\xb6\x26\xba\x94\x85\xd5\xd7\xf5\x5e\x5a\x2e\x3b\xa1\xf3\xb1\x19\x27\x14\xe4\x9a\x35\x0b\x06\x2e\xd1\x01\xf3\x5e\x80\xd8\x03\x1c\x43\x44\x56\x0d\xc6\x9f\xbe\x6d\xb6\x1f\xcc\x49\x76\x2b\x25\xc6\xfe\x00\xb9\x1b\x74\x20\x25\xb0\x00\x10\x6b\x8d\xd8\x5a\x1d\x26\xd0\xad\x62\x06\xab\x42\xbb\xf5\xf9\x5b\xed\x7e\x67\x07\x1c\xed\xe4\xb5\xb6\x78\xad\xe0\x56\xaf\x1a\xba\xdb\x0c\x6d\x93\xfe\x7d\x7b\xf5\x0e\x71\x95\xca\xe7\xbe\x6b\xce\xf8\x7d\x11\x11\xfd\x3a\xf0\x2c\x87\x42\x5d\x08\x38\x89\xe9\xf6\xef\x7c\x35\xe2\xcc\x75\x09\xc9\x1c\x5a\x19\x02\x7c\x49\xee\xe8\x0f\x70\x99\xce\x14\x0f\xf2\x42\x55\xe6\x40\x32\x26\xb5\x70\xb9\x63\x7f\xd3\x5c\x48\x6d\xea\xd8\x0c\xf4\xf6\x07\x3a\x76\xaf\x5e\x22\xaf\xe1\x38\xdc\xbf\x61\x3c\x2d\xec\x4e\x96\xba\x29\x67\x38\xe5\x6f\x97\x14\x62\x99\xf6\x4c\xb3\x07\xdb\x68\x7d\x7e\x1b\xcd\x3f\xcc\xe3\x1c\x77\x59\x19\xe5\x43\x9f\xf4\xae\x32\xcb\x93\xfa\x40\x4a\x44\x1f\xa9\xf1\xd2\xb2\xcb\x72\xf0\xb6\xa9\x02\x2e\xab\x2a\x7e\xae\x06\x8b\x6a\x41\x2d\xfc\x46\xf4\xcf\x3e\x46\x9f\xfd\x77\x44\x40\xb4\x03\x50\xed\xe8\x3b\x69\x6d\x8a\xf7\xa9\xee\x16\xbb\xd6\x1d\xa8\xbf\x48\x3e\x9e\x4e\xaf\x7d\x6b\x76\x11\x34\x59\x3f\x14\x6f\xb9\x21\xe9\xc8\x29\xb3\x8e\x41\x29\x40\x2e\x16\x0a\x32\x65\x6a\x8c\x67\xe4\x23\xb3\xcf\xec\x62\x99\xad\x63\xf5\xbd\xa3\xf0\xa8\x8c\x89\x70\x52\x8d\x65\x8e\x9a\x37\xf4\xc0\x38\x53\xf4\xab\x76\xa3\x1a\xe6\x4a\xec\xd8\x1b\x8a\xdc\x8c\x6d\xdd\xff\x4a\x1e\x08\x87\xdb\x41\x02\xc6\x0e\x43\x73\x8a\xc8\x2a\x97\xe6\xd1\x98\x24\x52\x92\x0d\xdf\xcd\x95\x24\xb2\x4d\xf0\x39\xa4\xf0\xcd\x12\x89\x49\xfb\xd8\x66\x0e\xc5\x1b\x23\x75\x91\xcd\xec\x7a\x03\xad\x66\x2e\xfb\x23\x48\xb8\xbc\x4e\x8f\x55\x39\x3e\xea\x1a\x3d\xc0\xfc\xc4\x5c\x53\xa6\xf1\x13\xe9\x11\x9f\x7a\x33\xd7\xf7\x9c\x45\x6d\x7e\x7a\xad\x56\xef\x59\xe7\x78\xfc\x1d\xd3\xa9\x88\x78\xa5\x32\xcd\x63\x93\xfa\x17\x3f\xb7\xeb\x22\x9a\xf6\xa0\x0e\x34\x8d\xe6\x1a\x1e\xa9\x9b\x6b\x22\xb0\x1b\xec\xd0\x0b\x23\x7a\x0b\x66\x88\xd5\x86\x85\x57\x9e\x1a\xd6\x0a\x97\x6e\x76\x6a\x9b\x74\x99\x4d\xa9\xed\x8d\xb3\x6b\x4c\xdb\x7d\x20\xd5\xa6\xf3\x6e\xa9\x06\x88\xb6\x85\x36\x03\xa8\x4d\xb2\x9c\x3a\x87\xb9\x4d\x04\xe1\xba\x2c\x32\x75\x04\x01\x1d\xce\xdb\x5e\x6c\xc9\x2d\x08\x8a\x38\xc8\xe3\xe9\x70\xb8\x41\x0c\x6c\x54\xcc\x65\x29\x77\x80\x69\x6d\x33\x4d\x55\xbd\x8a\xaf\x57\x12\x3a\xaa\x2a\xce\xb4\x74\x34\x16\xc7\x6d\xb4\x81\xb1\x78\x2d\x89\xdc\x8c\xc5\xea\xdc\x45\xb9\x54\x19\xed\xc5\x96\x72\x29\x93\xb1\xad\xf0\x3c\x46\x63\x90\xe0\xd3\x82\xda\x24\x2d\xac\xf8\x6a\xc8\x4f\xf7\x4a\x3f\x93\x47\x22\x8b\x6e\x67\xb7\xe9\xe8\xfd\xa8\x3c\xa0\x8e\x56\x68\x48\xf7\x98\x24\xf8\x6d\xff\xe0\xa0\x1c\xe9\x29\xd3\x35\xb6\x35\xc3\x6f\xcc\xf7\xff\x53\x51\x57\x90\x79\x65\x78\x36\xa8\x50\xcf\x74\x74\xbd\x02\xb5\xd6\x01\x66\xd0\xfb\xbc\x30\x2c\x32\x74\x48\xcb\x66\xe5\xfd\x70\x73\x89\x5b\x78\xcb\xfa\xb7\xd7\x23\x06\xf1\x50\x1d\xb2\x94\xf2\x76\x5a\xc1\x35\x43\x40\x37\xc3\x34\x7c\xe7\x55\xc9\x94\x6a\xd0\x40\x2b\xbb\x68\xe9\x1c\x15\xb3\x47\xca\x85\x59\x29\x7b\x1c\xf9\x92\x95\x5e\x21\xe3\x49\x7e\xe4\x81\x32\xe5\xab\x8f\xc2\x56\x36\xe6\x3c\xca\xda\x5d\x12\xea\x73\x32\x0c\x21\xae\x0a\xa0\x16\x83\x8d\x7e\x33\xe2\xa2\x1a\x3f\x26\x31\x07\xb3\x40\x43\x29\x93\x02\xec\xa2\x84\xdf\x0b\xfa\xd5\xf6\xc0\xdd\x91\x07\xfb\x34\x22\xcc\x2e\x08\xd3\x29\xb6\x26\xe5\xe1\xf6\xc8\x03\x78\x62\xe2\x21\x29\x04\xc8\xd9\x5e\x1d\x5a\x8c\x49\x96\x3f\x90\xc8\xf0\xd9\x27\xd4\xbd\x24\x3d\x90\x98\x24\x24\xe3\x58\x9a\xd3\x8d\x2c\x0f\x67\x93\x03\x45\x1e\xac\x14\x09\x54\xeb\xd3\x4c\xaa\xc5\x23\xcd\x8c\xb9\xbc\xc6\x96\xe3\xba\x9c\x3c\x9e\x48\xeb\x7b\x5a\xf2\xa4\xa2\x5c\xa9\x25\x14\x53\x6b\xb9\x0b\x45\x68\x4a\x59\x1a\x64\x10\xc0\x6b\x33\xf9\xfe\x50\x06\x43\xbd\xea\xd5\x02\x43\x9a\xb1\x98\x64\x47\xf8\x3f\x3d\x02\x29\x44\xb2\x67\x3c\xc8\xaa\xaf\x49\x82\x16\x37\x3b\xb3\xc3\x09\x5e\x8c\xdd\xe1\xa2\x34\xcb\x7d\xe4\xa7\x91\x32\x52\x49\x4c\x73\x41\xe2\x74\x3e\xd4\xdb\x2a\xe0\xaf\x05\x67\x5f\xcb\x3f\xff\xb6\xc1\x5e\x78\xdf\x22\x35\xd7\xe0\xb7\xf2\x05\xd9\x77\xc3\x36\x5d\x40\x93\x78\x7f\x96\x32\x08\x8d\xaa\x1e\x4a\x81\xd1\x5d\xba\xd3\xda\x8d\xc2\x30\x44\x77\xfa\xdd\x51\x9a\x13\xf3\xda\x9d\x63\x96\xde\xd0\xe6\xac\x86\xeb\x65\x72\xef\x68\x73\xb6\x27\x11\xc7\x6f\x5f\xd4\x36\xa7\xea\xbc\x62\xc7\x12\x6c\x49\xdc\xac\xc1\x65\x0d\x58\x5f\xdb\x73\xe6\x8f\x0a\xe3\xae\xa0\xae\x75\x11\x5a\xdf\x47\x85\xd7\xa1\x58\x2e\xe0\x89\x5e\xe2\x83\x9c\x3f\xb4\x0b\x65\x89\xcf\x6e\xce\xb1\x62\x54\x7c\xb7\x07\xf7\x3b\x43\xb3\x37\xf1\xdd\x4d\xd3\x61\x7e\x38\xcb\x22\xa3\xbd\x80\x00\xde\xe0\x6e\xeb\x03\x7f\x9e\x50\xce\xfa\xe9\x3e\xa4\x7b\xca\x05\x4b\x84\x7f\x67\xa5\x0b\xc3\x1f\x78\xcf\xd4\x2a\x6c\x19\xcd\xfa\x8b\xba\x2d\xa4\xbd\x8c\xa4\xbf\x4b\x64\x30\x53\xda\x6d\x7b\x56\x53\x45\x69\x20\x0c\xcc\x95\xd3\xd7\x96\x4f\xe6\x4a\xf5\xeb\xd3\x8b\xef\x2f\xfe\x0c\x00\x00\xff\xff\x27\xf3\x33\x5f\x19\x86\x00\x00") func etcSchemaGohanJsonBytes() ([]byte, error) { return bindataRead( @@ -124,7 +124,7 @@ func etcSchemaGohanJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "etc/schema/gohan.json", size: 33849, mode: os.FileMode(420), modTime: time.Unix(1500489719, 0)} + info := bindataFileInfo{name: "etc/schema/gohan.json", size: 34329, mode: os.FileMode(420), modTime: time.Unix(1508171375, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -144,7 +144,7 @@ func etcExtensionsGohan_extensionYaml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "etc/extensions/gohan_extension.yaml", size: 106, mode: os.FileMode(420), modTime: time.Unix(1485368500, 0)} + info := bindataFileInfo{name: "etc/extensions/gohan_extension.yaml", size: 106, mode: os.FileMode(420), modTime: time.Unix(1488503999, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -164,7 +164,7 @@ func etcTemplatesDotTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "etc/templates/dot.tmpl", size: 505, mode: os.FileMode(420), modTime: time.Unix(1502223911, 0)} + info := bindataFileInfo{name: "etc/templates/dot.tmpl", size: 505, mode: os.FileMode(420), modTime: time.Unix(1502990518, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -184,12 +184,12 @@ func etcTemplatesMarkdownTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "etc/templates/markdown.tmpl", size: 4002, mode: os.FileMode(420), modTime: time.Unix(1502217506, 0)} + info := bindataFileInfo{name: "etc/templates/markdown.tmpl", size: 4002, mode: os.FileMode(420), modTime: time.Unix(1502990518, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _etcTemplatesOpenapiTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x5d\x6f\xdb\x36\x17\xbe\xcf\xaf\x38\xaf\xde\xb9\x68\x81\xc0\xc9\x8a\x5d\x19\xf0\xc5\xb0\x00\x45\x86\x76\x0d\x9a\xf5\x6a\x28\x0c\x46\x3a\xb2\xd9\x29\xa2\x4a\x52\xcd\x02\x55\xff\x7d\xe0\x87\x6c\x4a\x24\x6d\xd9\x69\x8a\x04\x73\xae\x62\xf1\xf0\xe1\xf9\x7c\x78\x28\xaa\x99\x00\xa9\x25\x43\x91\x92\x0a\x81\xe5\x39\x4c\xda\xe6\x04\x00\x20\x11\x77\x64\xb9\x44\x9e\xcc\x20\x79\x3d\x3d\x4f\x4e\xcd\x53\x5a\xe6\x2c\x99\x81\x91\xd1\x4f\xbe\x22\x17\x94\x95\x4a\xae\x69\xc0\xfe\x82\xb6\xb5\x33\xd4\x5f\x33\x01\x9a\x43\x86\x22\xe5\xb4\x92\x6a\xf8\x1b\x14\x58\x2e\xe5\x0a\xfe\x37\x87\x73\x98\xb4\x89\x33\x68\x91\x5c\x71\x85\xd6\x4c\x00\xcb\x8c\x2a\x0d\x37\x8b\x4b\x2a\x0b\xb4\x13\xf4\xff\x4a\x54\x0f\xb7\x56\xe1\x1b\x22\xf0\x8a\xc8\x95\x12\x3a\xeb\xac\x10\xe9\x0a\x6f\x51\x24\x33\xf8\xcb\x62\x25\x2b\x29\x2b\x33\xf3\x93\x15\x4a\x59\x29\xea\xbe\x14\x40\x42\xaa\xaa\xa0\x29\x51\x6a\x9d\x7d\x16\xac\xec\xcf\xa9\x38\xcb\xea\x74\xcf\x39\x44\xae\xd4\x84\x46\xf9\x29\x67\x1c\xb4\x76\xe4\x8a\x15\x34\xbd\x07\x5a\xda\xdf\x42\x85\x66\x02\x77\x54\xae\xec\x93\xb9\x2b\x38\xbd\xd6\x3f\xa0\x52\xbf\x28\x8a\xfe\xe0\x95\x7d\x6a\x30\x68\x6e\x11\xa6\xef\x50\x92\x8c\x48\x32\x95\xf7\x15\xaa\x60\x24\xb7\x28\x89\x19\x4c\xe0\xc5\x8b\x4e\xee\xcf\x6e\x98\xdc\x08\xc9\x49\x2a\x93\x5e\x18\x9a\xa6\x13\x7c\x83\xf2\xaa\xa8\x39\x29\x3e\x7e\x78\xfb\xf2\x95\x8a\x86\x9b\x2c\x9b\x64\x48\x38\x92\x2c\x51\xd6\x55\x1b\xd5\x92\x25\x4a\x4f\x5e\x2f\xe0\xa6\x07\xcc\x20\x79\x83\x12\x0a\x2a\x24\xb0\x1c\x36\x8b\x5f\x5e\xb4\x2d\x70\x14\xac\xe6\x2a\x06\xa7\x3e\x4e\x30\x3e\x3d\x89\x70\xac\xdc\xbf\x4f\xa7\x61\x17\x76\x0b\x2f\x96\x9c\xd5\x95\x97\xe2\xbe\x32\x92\x2c\xb7\x28\xb2\x31\x2b\xb6\x42\x97\xea\x9e\x72\x5e\x9d\xac\x41\x39\x8a\x8a\x95\x42\x3b\xc0\x77\xb3\x16\x79\x7d\x7e\x1e\x1d\x84\x61\x2c\x66\xae\x9e\xc3\x8a\x8d\x43\xd8\x04\xdb\xb6\x8c\xf1\xd0\x7d\xa5\xab\x9b\x70\x4e\xee\xb7\x00\x6a\x61\x2a\xf1\x36\x6e\x57\x4f\xf4\x27\x8e\xb9\xc2\xfd\xff\x59\x86\x39\x2d\xa9\x52\x59\x9c\xb9\x89\x14\x74\xae\xfb\xe7\x3b\x77\xfb\x48\x1b\xd6\x3e\xc9\x30\x27\x75\x11\x4e\x7b\x47\xa8\xe7\xf2\xba\xc4\x7f\x2a\x4c\x25\x66\x80\x9c\x33\xfe\x40\x57\x47\xdc\xa1\xa1\xdf\xb1\x0c\x8b\xb8\x27\x22\xb6\x7a\x4f\xfb\x4f\x2c\x07\x25\x29\x47\x22\x71\xc8\x02\x6e\x06\xf7\xff\x8d\xcf\xe9\xc1\x27\x15\x13\x23\x79\xe4\x37\x8d\x06\x25\xde\xc1\x20\xfa\x6b\x1e\x39\xd2\x48\xc0\x7e\xc2\xc9\x2d\x4a\xe4\xe1\x85\x23\xcc\x52\x92\x5b\xec\x33\x86\xa9\xb3\x48\x65\x50\x9d\xeb\x37\x2c\x8b\x55\x7e\x9c\x89\xfa\x11\x04\x5a\x56\xb5\x8c\x81\x70\xfc\x52\x53\x8e\x59\x32\x03\xc9\x6b\x8c\x48\xed\x28\xa3\x71\x8c\x72\xa9\xf5\x18\x5b\x32\x9f\x02\x89\x37\x8a\xbf\x7f\x3e\x90\xbf\x8d\xd7\x4c\x81\x65\xdf\x83\xbe\x1f\x48\xb3\x47\x22\x1d\x43\xa4\x5e\x95\x3a\x0e\x72\x82\xfb\xf1\xc3\x5b\x68\xdb\xb3\x86\x66\x8f\xd4\x92\x5d\xaf\xd8\x1d\x90\x63\x37\xe6\x29\xf7\x58\x34\x4a\x63\x35\x6a\x99\x53\x9d\x2b\x46\x32\xe7\xe5\xc5\xb0\x91\x56\x4c\x20\x19\xe4\x28\xd3\x28\xc8\x38\xe6\xec\x7a\x38\x21\x39\x2d\x97\xbe\x8f\x7c\xbf\x1c\x4c\x7c\x4f\xa7\x71\x3d\x32\xdf\x0f\x6a\x21\xeb\x2a\xf3\xda\x41\xc6\x95\xb9\x05\x8e\x6e\x2d\x43\x64\x18\x02\x9e\xb4\x89\xda\xc0\x47\xd1\xe1\x47\x3d\xff\xd8\x55\x7a\xca\x3d\x67\x3a\xb4\x49\xf1\xb8\x7c\xe8\xcf\x7b\x32\xfd\x34\x13\x4f\xaa\x9f\x36\x35\xf6\xf8\x0d\xf5\xa1\xfb\xca\xb1\xa1\x7e\xae\xdb\xca\x83\xb7\x8f\x30\x40\xf7\x78\xd4\x0e\x72\xa1\x65\x07\x2d\x35\x1c\x7b\xea\xe7\xbe\x89\x3c\xaf\x9e\xfa\x97\x07\x71\xdf\x12\x25\x98\x9c\x3f\xf2\xdf\x01\x46\x3f\x91\x17\x0a\xf6\x5e\x8a\xa4\xfa\x84\xb4\xbe\x91\x9a\xfe\xaa\x1f\x68\x66\x0c\xbd\x72\xf0\xee\x82\x9a\xc6\x62\x4c\xaf\x88\x5c\xc1\x37\xb0\x77\x8c\x0b\x55\x56\xa1\xbb\xa2\x64\x33\xe3\x1d\xca\x15\xcb\xbe\x15\xec\x0e\xb9\x12\x85\x9d\x1c\xaa\xd2\x51\xd3\x98\x45\xb8\x08\xdd\x3f\xce\x0d\x75\x19\x4b\x60\xb3\xdc\xe5\x45\xab\x7d\x51\x08\x54\x64\xdf\x84\x40\x5a\xd7\x5b\x47\x2e\xf6\xb9\xd6\xde\x56\xae\x88\x58\xd0\x6c\x1e\x0e\xbd\x19\x5c\x68\xda\x86\xaa\x96\x0b\xc6\x17\x15\x13\x72\xde\x8b\xbb\xb2\x4f\x47\x7e\x3e\xb7\xaf\xf7\x61\x9d\x90\x41\x91\xba\x7f\x43\x19\x52\x49\x2f\x29\x16\xb4\x5c\x2c\x71\xdb\x72\x4b\x94\x09\x90\x32\xdb\xe4\x6e\xb7\xc3\x8c\xf0\x7a\x7f\x3b\xb2\xdd\x81\xb1\x39\xa8\xdf\x7f\x63\x7b\xf2\xae\x75\xac\x47\x94\x97\x5f\x7a\xb1\x51\xa1\x76\x32\xe3\x95\xe2\x1b\x70\x20\x1c\xaf\xf6\xe7\x85\x13\x40\x51\xd9\xdf\x78\x7f\x0a\x5f\x49\x51\xab\xc3\x4c\x20\xb0\xfb\x87\xa6\x69\x14\xe8\xce\xe3\xd7\x97\x1a\x79\xf4\xfc\xd5\xf9\xad\x69\x8c\x6e\xe6\x56\x3e\x0e\xe9\x44\x63\x3d\xa5\x7b\xb6\x4e\xe1\x36\xbe\xbf\x0d\xb7\x6e\x83\x30\x78\x1b\x16\x8c\x1e\xcd\xa1\x64\x52\xb9\xb2\x60\xac\x9a\xbe\x25\x42\x06\xfb\x63\xe5\xeb\xe1\x2d\x1e\x96\x99\xae\xc1\x2d\x81\x53\x79\xe0\x44\x7c\x18\x70\x33\xad\x2f\x70\x40\xbc\xd6\x54\x6f\x9a\xea\x2f\x35\x0a\x09\xec\xe6\x33\xa6\xd1\xc3\xed\x21\x67\xe8\x03\x96\xd9\xef\x0c\x1d\x1c\x1d\x7c\x2a\x12\xe2\x2e\x4b\xc1\x33\x48\x82\xf0\x21\xa7\xc2\xfa\x84\x63\x70\x35\x41\x96\x75\x51\xc4\xa5\x75\x94\xed\x3e\x0a\x4d\x63\xe6\xb5\x2d\xc4\x92\x62\x2b\x5b\xc0\x76\xd1\x1f\x74\xc2\x27\xeb\x6e\x61\x78\x2e\xd3\x2b\x8d\x69\xfa\xa2\x12\x9b\x84\x79\x5f\xcb\xaa\x96\xf6\xb3\x9e\x5d\xd1\xd2\xe0\xed\xb1\xc1\xdd\xd9\xe0\xf6\xba\x5a\x97\xa1\x76\x53\xda\x49\x2c\x65\x5d\x24\x8d\xdf\x7d\x7c\xe6\xd8\xf4\xdd\x3e\xf0\xda\xeb\x0b\x2e\xa7\x46\x3a\x68\xd5\x66\x5e\xbb\xf0\xd3\xdf\xaf\xdf\xff\xb1\x25\xcd\x86\x28\x34\x77\x30\xf4\x8a\x86\x00\x22\x5f\x84\x99\x33\x19\x6c\x32\xbe\x69\xdc\xf9\xad\xbf\x97\x07\x0a\xdc\x57\x5e\xdf\xa5\xfb\x16\xbc\x2f\xed\x27\x1d\x7b\x5b\xa2\x01\x1d\x73\xb6\x58\x63\xee\xf1\x63\x26\x19\xa0\xd6\xdb\xb2\x46\x99\x65\x5e\x69\x86\xec\xb2\x17\x0a\x7b\xdb\x65\xe7\x8d\x8b\x93\x7d\xa3\x1a\x33\xcd\x62\x8d\xb5\x6d\x5c\xb1\x68\x3d\x9c\x8a\xf7\x0e\x81\x5d\x5b\x14\xdc\x33\xd5\x21\xab\x42\x2e\x69\x84\xe0\x0d\x72\x9c\xfb\x07\xfc\xa6\xa5\xe1\x16\x85\x20\xcb\xe8\x8b\xfe\xf5\x57\xa7\xdb\x28\x70\xcf\x97\x34\x0e\x31\x19\x0a\x39\xe9\xf8\xc6\xf9\x40\x77\xd2\x9e\xfc\x1b\x00\x00\xff\xff\xff\x95\x96\x70\xb2\x2b\x00\x00") +var _etcTemplatesOpenapiTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x5d\x6f\xdb\x36\x17\xbe\xcf\xaf\x38\xaf\xde\xb9\x68\x81\xc0\xc9\x8a\x5d\x19\xf0\xc5\xb0\x00\x45\x86\x76\x0d\x9a\xf5\x6a\x28\x0c\x46\x3a\xb2\xd9\x29\xa2\x4a\x52\xcd\x02\x45\xff\x7d\xe0\x87\x6c\x4a\x24\x6d\xd9\x69\x8a\x06\x73\xae\x62\xf1\xf0\xe1\xf9\x7c\x78\x28\xaa\x99\x00\xa9\x25\x43\x91\x92\x0a\x81\xe5\x39\x4c\xda\xe6\x04\x00\x20\x11\x77\x64\xb9\x44\x9e\xcc\x20\x79\x3d\x3d\x4f\x4e\xcd\x53\x5a\xe6\x2c\x99\x81\x91\xd1\x4f\xbe\x22\x17\x94\x95\x4a\xae\x69\xc0\xfe\x82\xb6\xb5\x33\xd4\x5f\x33\x01\x9a\x43\x86\x22\xe5\xb4\x92\x6a\xf8\x01\x0a\x2c\x97\x72\x05\xff\x9b\xc3\x39\x4c\xda\xc4\x19\xb4\x48\xae\xb8\x42\x6b\x26\x80\x65\x46\x95\x86\x9b\xc5\x25\x95\x05\xda\x09\xfa\x7f\x25\xaa\x87\x5b\xab\xf0\x0d\x11\x78\x45\xe4\x4a\x09\x9d\x75\x56\x88\x74\x85\xb7\x28\x92\x19\xfc\x65\xb1\x92\x95\x94\x95\x99\xf9\xc9\x0a\xa5\xac\x14\x75\x5f\x0a\x20\x21\x55\x55\xd0\x94\x28\xb5\xce\x3e\x0b\x56\xf6\xe7\x54\x9c\x65\x75\xba\xe7\x1c\x22\x57\x6a\x42\xa3\xfc\x94\x33\x0e\x5a\x3b\x72\xc5\x0a\x9a\xde\x03\x2d\xed\x6f\xa1\x42\x33\x81\x3b\x2a\x57\xf6\xc9\xdc\x15\x9c\x5e\xeb\x1f\x50\xa9\x5f\x14\x45\x7f\xf0\xca\x3e\x35\x18\x34\xb7\x08\xd3\x77\x28\x49\x46\x24\x99\xca\xfb\x0a\x55\x30\x92\x5b\x94\xc4\x0c\x26\xf0\xe2\x45\x27\xf7\x67\x37\x4c\x6e\x84\xe4\x24\x95\x49\x2f\x0c\x4d\xd3\x09\xbe\x41\x79\x55\xd4\x9c\x14\x1f\x3f\xbc\x7d\xf9\x4a\x45\xc3\x4d\x96\x4d\x32\x24\x1c\x49\x96\x28\xeb\xaa\x8d\x6a\xc9\x12\xa5\x27\xaf\x17\x70\xd3\x03\x66\x90\xbc\x41\x09\x05\x15\x12\x58\x0e\x9b\xc5\x2f\x2f\xda\x16\x38\x0a\x56\x73\x15\x83\x53\x1f\x27\x18\x9f\x9e\x44\x38\x56\xee\xdf\xa7\xd3\xb0\x0b\xbb\x85\x17\x4b\xce\xea\xca\x4b\x71\x5f\x19\x49\x96\x5b\x14\xd9\x98\x15\x5b\xa1\x4b\x75\x4f\x39\xaf\x4e\xd6\xa0\x1c\x45\xc5\x4a\xa1\x1d\xe0\xbb\x59\x8b\xbc\x3e\x3f\x8f\x0e\xc2\x30\x16\x33\x57\xcf\x61\xc5\xc6\x21\x6c\x82\x6d\x5b\xc6\x78\xe8\xbe\xd2\xd5\x4d\x38\x27\xf7\x5b\x00\xb5\x30\x95\x78\x1b\xb7\xab\x27\xfa\x13\xc7\x5c\xe1\xfe\xff\x2c\xc3\x9c\x96\x54\xa9\x2c\xce\xdc\x44\x0a\x3a\xd7\xfd\xf3\x9d\xbb\x7d\xa4\x0d\x6b\x9f\x64\x98\x93\xba\x08\xa7\xbd\x23\xd4\x73\x79\x5d\xe2\x3f\x15\xa6\x12\x33\x40\xce\x19\x7f\xa4\xab\x23\xee\xd0\xd0\xef\x58\x86\x45\xdc\x13\x11\x5b\xbd\xa7\xfd\x27\x96\x83\x92\x94\x23\x91\x38\x64\x01\x37\x83\xfb\xff\xc6\xe7\xf4\xe0\x93\x8a\x89\x91\x3c\xf2\x9b\x46\x83\x12\xef\x60\x10\xfd\x35\x8f\x1c\x69\x24\x60\x3f\xe1\xe4\x16\x25\xf2\xf0\xc2\x11\x66\x29\xc9\x2d\xf6\x19\xc3\xd4\x59\xa4\x32\xa8\xce\xf5\x1b\x96\xc5\x2a\x3f\xce\x44\xfd\x08\x02\x2d\xab\x5a\xc6\x40\x38\x7e\xa9\x29\xc7\x2c\x99\x81\xe4\x35\x46\xa4\x76\x94\xd1\x38\x46\xb9\xd4\x7a\x8c\x2d\x99\x4f\x81\xc4\x1b\xc5\xdf\x3f\x1f\xc8\xdf\xc6\x6b\xa6\xc0\xb2\x6f\x41\xdf\x8f\xa4\xd9\x23\x91\x8e\x21\x52\xaf\x4a\x1d\x07\x39\xc1\xfd\xf8\xe1\x2d\xb4\xed\x59\x43\xb3\x27\x6a\xc9\xae\x57\xec\x0e\xc8\xb1\x1b\xf3\x94\x7b\x2a\x1a\xa5\xb1\x1a\xb5\xcc\xa9\xce\x15\x23\x99\xf3\xf2\x62\xd8\x48\x2b\x26\x90\x0c\x72\x94\x69\x14\x64\x1c\x73\x76\x3d\x9c\x90\x9c\x96\x4b\xdf\x47\xbe\x5f\x0e\x26\xbe\x1f\xa7\x71\x3d\x32\xdf\x77\x6a\x21\xeb\x2a\xf3\xda\x41\xc6\x95\xb9\x05\x8e\x6e\x2d\x43\x64\x18\x02\x9e\xb4\x89\xda\xc0\x47\xd1\xe1\x47\x3d\xff\xd8\x55\x7a\xca\x3d\x67\x3a\xb4\x49\xf1\xb4\x7c\xe8\xcf\x3b\xf6\xd3\x61\x02\x35\x35\xf6\xf4\x0d\xf5\xa1\xfb\xca\xb1\xa1\x7e\xae\xdb\xca\xa3\xb7\x8f\x30\x40\xf7\x78\xd4\x0e\x72\xa1\x65\x07\x2d\x35\x1c\x7b\xea\xe7\xbe\x89\x3c\xaf\x9e\xfa\x97\x47\x71\xdf\x12\x25\x98\x9c\x3f\xf2\xdf\x01\x46\xff\x20\x2f\x14\xec\xbd\x14\x49\xf5\x09\x69\x7d\x23\x35\xfd\x55\x3f\xd0\xcc\x18\x7a\xe5\xe0\xdd\x05\x35\x8d\xc5\x98\x5e\x11\xb9\x82\x07\xb0\x77\x8c\x0b\x55\x56\xa1\xbb\xa2\x64\x33\xe3\x1d\xca\x15\xcb\x1e\x0a\x76\x87\x5c\x89\xc2\x4e\x0e\x55\xe9\xa8\x69\xcc\x22\x5c\x84\xee\x1f\xe7\x86\xba\x8c\x25\xb0\x59\xee\xf2\xa2\xd5\xbe\x28\x04\x2a\xb2\x6f\x42\x20\xad\xeb\xad\x23\x17\xfb\x5c\x6b\x6f\x2b\x57\x44\x2c\x68\x36\x0f\x87\xde\x0c\x2e\x34\x6d\x43\x55\xcb\x05\xe3\x8b\x8a\x09\x39\xef\xc5\x5d\xd9\xa7\x23\x3f\x9f\xdb\xd7\xfb\xb0\x4e\xc8\xa0\x48\xdd\xbf\xa1\x0c\xa9\xa4\x97\x14\x0b\x5a\x2e\x96\xb8\x6d\xb9\x25\xca\x04\x48\x99\x6d\x72\xb7\xdb\x61\x46\x78\xbd\xbf\x1d\xd9\xee\xc0\xd8\x1c\xd4\xef\xbf\xb1\x3d\x79\xd7\x3a\xd6\x23\xca\xcb\x2f\xbd\xd8\xa8\x50\x3b\x99\xf1\x4a\xf1\x0d\x38\x10\x8e\x57\xfb\xf3\xc2\x09\xa0\xa8\xec\x6f\xbc\x3f\x85\xaf\xa4\xa8\xd5\x61\x26\x10\xd8\xfd\x43\xd3\x34\x0a\x74\xe7\xf1\xeb\x4b\x8d\x3c\x7a\xfe\xea\xfc\xd6\x34\x46\x37\x73\x2b\x1f\x87\x74\xa2\xb1\x9e\xd2\x3d\x5b\xa7\x70\x1b\xdf\xdf\x86\x5b\xb7\x41\x18\xbc\x0d\x0b\x46\x8f\xe6\x50\x32\xa9\x5c\x59\x30\x56\x4d\xdf\x12\x21\x83\xfd\xb1\xf2\xf5\xf0\x16\x0f\xcb\x4c\xd7\xe0\x96\xc0\xa9\x3c\x70\x22\x3e\x0c\xb8\x99\xd6\x17\x38\x20\x5e\x6b\xaa\x37\x4d\xf5\x97\x1a\x85\x04\x76\xf3\x19\xd3\xe8\xe1\xf6\x90\x33\xf4\x01\xcb\xec\x77\x86\x0e\x8e\x0e\x3e\x15\x09\x71\x97\xa5\xe0\x19\x24\x41\xf8\x90\x53\x61\x7d\xc2\x31\xb8\x9a\x20\xcb\xba\x28\xe2\xd2\x3a\xca\x76\x1f\x85\xa6\x31\xf3\xda\x16\x62\x49\xb1\x95\x2d\x60\xbb\xe8\x77\x3a\xe1\x93\x75\xb7\x30\x3c\x97\xe9\x95\xc6\x34\x7d\x51\x89\x4d\xc2\xbc\xaf\x65\x55\x4b\xfb\x59\xcf\xae\x68\x69\xf0\xf6\xd8\xe0\xee\x6c\x70\x7b\x5d\xad\xcb\x50\xbb\x29\xed\x24\x96\xb2\x2e\x92\xc6\xef\x3e\x3e\x73\x6c\xfa\x66\x1f\x78\xed\xf5\x05\x97\x53\x23\x1d\xb4\x6a\x33\xaf\x5d\xf8\xe9\xef\xd7\xef\xff\xd8\x92\x66\x43\x14\x9a\x3b\x18\x7a\x45\x43\x00\x91\x2f\xc2\xcc\x99\x0c\x36\x19\xdf\x34\xee\xfc\xd6\xdf\xcb\x03\x05\xee\x2b\xaf\xef\xd2\x7d\x0b\xde\x97\xf6\x93\x8e\xbd\x2d\xd1\x80\x8e\x39\x5b\xac\x31\xf7\xf8\x31\x93\x0c\x50\xeb\x6d\x59\xa3\xcc\x32\xaf\x34\x43\x76\xd9\x0b\x85\xbd\xed\xb2\xf3\xc6\xc5\xc9\xbe\x51\x8d\x99\x66\xb1\xc6\xda\x36\xae\x58\xb4\x1e\x4e\xc5\x7b\x87\xc0\xae\x2d\x0a\xee\x99\xea\x90\x55\x21\x97\x34\x42\xf0\x06\x39\xce\xfd\x03\x7e\xd3\xd2\x70\x8b\x42\x90\x65\xf4\x45\xff\xfa\xab\xd3\x6d\x14\xb8\xe7\x4b\x1a\x87\x98\x0c\x85\x9c\x74\x7c\xe3\x7c\xa0\x3b\x69\x4f\xfe\x0d\x00\x00\xff\xff\xa0\xfd\x0e\xb6\xb2\x2b\x00\x00") func etcTemplatesOpenapiTmplBytes() ([]byte, error) { return bindataRead( @@ -204,12 +204,12 @@ func etcTemplatesOpenapiTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "etc/templates/openapi.tmpl", size: 11186, mode: os.FileMode(420), modTime: time.Unix(1493398104, 0)} + info := bindataFileInfo{name: "etc/templates/openapi.tmpl", size: 11186, mode: os.FileMode(420), modTime: time.Unix(1502990518, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _etcTemplatesServerTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x3c\xfd\x6f\xdb\x38\x96\x3f\xdb\x7f\x05\x47\x40\x33\x52\xd7\x23\x77\x70\x7b\x0b\x6c\xba\xbe\x43\x12\xa7\xdd\xee\x36\x4d\x2e\x49\x77\x0e\x28\x8a\x0e\x2d\xd1\x36\x1b\x99\x74\x29\x2a\x1f\xf0\xf8\x7f\x3f\x3c\x7e\x48\xd4\x97\x25\x27\x99\x99\x9b\x1d\x0c\xd0\x58\xe4\x7b\x7c\xdf\xef\x91\x7c\xd2\x78\x7c\x94\x49\x8e\x16\x84\x11\x81\x25\x89\x51\xc4\x63\x12\xa2\xe9\x39\xfa\x70\x7e\x8d\x4e\xa7\xef\xae\x87\x6b\x1c\xdd\xe0\x05\x81\x39\x68\x38\xa4\xab\x35\x17\x12\xf9\xc3\x81\xc7\x53\x6f\x38\xf0\x24\x5d\x11\xf8\x77\xbe\x92\xf0\x4f\xc2\x17\xf0\x4f\x2a\x45\xc4\xd9\xad\xf9\x93\xb2\x85\x9a\x2b\xc8\x82\xdc\xaf\xe1\x2f\xc2\x22\x1e\x53\xb6\x18\x7f\x4d\x39\x83\x07\x31\x96\x78\x86\x53\x32\x4e\xbf\x25\xf0\x9b\x11\x39\x5e\x4a\x09\x93\x59\x96\x24\xc8\x5b\xf0\xf5\xcd\x22\xa4\x6c\x0c\x3f\x67\x94\xab\x7f\xc3\xdb\xbf\x78\xc3\xe1\xc0\x5b\x50\xb9\xcc\x66\x61\xc4\x57\xe3\x14\x4b\x2e\xe8\x78\xc1\xc3\x2c\xa3\xb1\x57\x1e\xbc\xc5\x52\x26\x6a\x8d\x19\xa7\x09\x11\x63\xf9\xb0\x26\x69\xd7\xa4\x6f\x19\x11\x94\xa4\xe3\x6f\xab\xea\x62\x51\xc2\xb3\xf8\x0e\xb3\xf1\x82\x2f\x31\x1b\x67\x92\x26\x15\x64\x09\x9e\xa5\x12\x47\x37\x63\x12\x2d\xf9\xae\xb1\xf1\x8a\xc6\x71\x42\xee\xb0\x20\x5d\xf4\xc0\x3f\x40\xc9\x7c\x9e\xd0\x19\x72\xa7\xae\x81\x54\x86\xc7\xf3\x39\xc8\x75\xac\x26\x8c\x6f\x7f\xf4\x86\xc1\x70\x38\x1e\x7f\xe0\xf2\x0d\xcf\x58\x8c\x68\x8a\x30\x5a\x62\x16\x27\x44\xa0\x39\x17\x88\x08\xc1\x05\x5a\x91\x34\xc5\x0b\x32\x9c\x67\x2c\x42\x76\xb2\x1f\x21\x20\x2f\x3c\xe1\x4c\x92\x7b\x19\x98\xb9\x9b\xe1\x40\x10\x99\x09\x86\xa2\xf0\x1f\x57\xe7\x1f\x7c\x50\x56\x78\x25\xb1\xcc\x52\x0b\x3a\x42\x2b\xbc\xfe\xa4\xf5\xff\x99\x32\x49\xc4\x1c\x47\x64\xb3\xdd\x78\x66\x25\xef\x10\x79\x1f\xb8\x44\x6a\xb6\xb7\x0d\x86\x5b\x20\xf3\x84\xb3\x79\x42\x23\x59\x27\x53\x90\x94\x67\x22\x22\x28\xb2\x53\x14\x31\x9a\x60\x0b\xf6\x08\x82\x2d\x68\x2f\x82\xa7\x58\xe2\x9c\x80\x9c\xe8\x77\x30\x9b\xe1\xe4\x8a\x88\x5b\x22\x4e\xd5\x92\x35\xfa\xa9\x99\x84\x52\x35\xcb\xa5\xbe\x01\xbe\xc2\xc8\x08\xa6\x6b\x10\x87\xa7\x28\x7c\xcf\x17\x0b\x22\xfc\x20\xbc\x10\x94\x49\x9f\x08\x11\xec\x60\xb5\x61\x9d\x5e\x5c\x5b\x38\xa4\x01\x91\x82\xcc\xb9\x3f\xc6\xf1\x25\xf9\x96\x91\xb4\x41\x69\x33\x1c\x0b\x3d\xa6\x39\x2d\xe6\xf6\x62\xb0\x95\x93\x02\x4f\x1f\x06\x88\x10\xa1\x96\x6a\x60\x89\x3e\x8a\xe3\x0b\xbc\x20\x0c\x4b\xca\xd9\xff\x64\x44\x3c\x74\x13\x5f\x87\xa9\x31\xb1\xe2\x71\x8a\x3e\x7d\xfe\xb6\x0a\xd5\xf8\x19\x8f\x83\xf2\x4f\xe0\x8a\xce\x51\x42\x57\x54\xa2\xc3\x09\x8a\xf4\xc8\x05\x16\x78\xe5\x7b\xea\xb1\x17\xbc\x36\xe3\xdf\x4d\x90\xe7\x01\x84\x02\xd1\x22\x3a\x9c\x20\x13\x5f\xc3\x23\xc9\xa9\xaf\x66\x06\xaf\xd5\xd8\x64\x82\x18\x4d\x14\xc0\x40\x51\x32\x41\x78\xbd\x26\x2c\xf6\xe1\xd7\x08\x7d\x5b\x85\xef\x61\xba\x9f\x04\xc1\x70\x30\xd8\x0e\xe1\x7f\x3a\x47\x7c\x3e\x4f\x49\x03\x39\xfa\x39\xd0\x63\x66\x94\x08\xe2\xcd\x04\xe9\xa9\xfd\x29\x3a\x57\xf3\x7d\x5e\x26\x29\xe5\x42\xfe\x93\x3c\xd4\x69\x82\x81\x2f\x37\xe4\x01\xa8\xb2\x93\x0a\xb2\xe0\xc9\xb9\x88\x89\x68\x01\xe4\x30\xe6\x05\xa5\x99\x8a\x7e\xc8\x52\xe1\x35\xff\xb8\x5e\x13\xe1\xe7\x63\x81\xe6\xb4\x98\x0b\x2b\x4d\x4f\xaf\x4e\xf4\x6a\x25\x24\xde\xd1\xd5\x89\xa7\x59\x68\x65\x15\xa6\x1e\x3f\xf8\xf3\x95\x0c\xaf\xd6\xe0\xb1\x73\xdf\x7b\x91\xa2\x17\xa9\x37\xb2\xcc\x8c\x8a\xd5\x02\x10\xc9\x36\xf7\x02\x40\x03\xc6\xab\x6c\x71\x8e\x25\x4e\xb4\x4d\x3b\x8e\xa3\x8d\x0b\x1e\x7c\x57\x08\x3e\xe1\x8b\xf0\x0d\x4c\x37\xe1\x61\x9b\x23\xb9\xc3\x82\xf5\xc7\xa1\x42\x4c\xc2\x5c\x2c\x11\x67\xa9\x44\x82\x48\xf1\x30\x3d\x46\x13\xf4\x9f\xaf\xca\x8f\x7e\xc2\x54\xa2\x09\xfa\xd1\x3e\x8e\xc9\x1c\x67\x89\x3c\xc3\xf7\xe7\x6b\xc2\x4e\x38\x63\x6a\xf4\x15\x78\xe4\x65\xc6\x4c\x78\x11\x19\xfb\x3e\x05\xe1\x25\x34\x52\xbe\xa6\xa9\xcd\x27\xf8\x10\x80\xe9\xe2\x0d\x4d\x88\x51\xdd\x08\x62\xb2\x14\x3c\x01\xd7\x3d\xc9\xff\x7c\x67\xc3\x81\xe2\x4a\x43\x81\x61\x40\xaa\x0e\xdf\x12\x79\xa2\x9e\xf8\x81\x1d\x0b\x2f\x09\x8e\xcd\xc3\x62\x8d\x40\x09\xc4\x59\xc0\x31\x6a\xf7\x29\x3a\xc3\x37\xa4\x58\xdc\xd7\xca\x53\x15\xd3\xe1\x04\xf1\x14\x56\x24\xec\xd6\xf7\x2e\xce\x2f\xaf\xbd\x60\xa8\xd0\xaa\xe1\x49\x6e\xbf\xfa\x27\xf2\xfe\xfa\xea\xaf\x3f\x7a\x0a\x1e\xc7\xb1\x20\x69\xaa\xec\x59\x13\xf9\x96\xc8\x2b\xc5\xb5\xef\x99\x41\x6f\x84\xbc\x43\xef\x4f\x00\x0c\x68\x09\x4c\x56\x71\xe9\x03\xb9\xf3\xd5\x93\xf0\x63\x4a\xfc\xa2\xc8\x08\x2f\x49\xc4\x41\x92\x60\x61\xb5\x41\x9b\x54\x94\x5c\x44\xcb\xd2\x30\x02\xeb\x5a\x46\xd4\xcc\xc2\x11\x73\x83\x99\xfb\xde\x29\xc3\xb3\x84\xb2\x05\x3a\x39\xbf\xbc\x52\x91\x55\x19\x3c\x40\x18\x07\x53\xc0\x20\x85\x97\xc6\xb1\x5c\x70\x35\x08\x50\x2f\xd1\x12\xdf\x12\x94\x92\x28\x13\x54\x42\xc0\x4e\x33\xe2\x99\xb0\x51\x67\x03\x56\xfb\x89\xca\xa5\x51\x68\x65\x44\x3f\x55\x8b\x1d\x25\x09\xbf\x3b\x17\x74\x41\x59\x7a\x88\xd0\xa7\xcf\xda\xa8\x36\xb0\xf0\x76\x94\xcf\x38\x23\x72\xc9\xe3\xd2\x0c\x25\xe4\xb7\xa7\xd7\x23\x2d\xee\x8b\x8f\xf9\x5f\xe7\x57\xf6\xcf\xe9\xe9\xfb\xd3\xeb\x53\x07\xcf\xdf\x09\x8e\x89\x28\xe1\xf1\xfe\xf7\x87\xa3\x4c\x2e\x7f\xb8\xe6\x37\x84\x81\x54\x55\x42\x61\xf2\x87\xeb\x87\x35\xf1\x34\xec\xe9\xfd\x9a\xa7\x24\x07\x76\x61\xaf\xb9\xc4\xc9\x0f\x27\x3c\x63\x52\x4f\xde\xea\xc8\x31\x1c\xd8\xca\x1a\xf0\x34\xeb\x31\xaf\xbd\xa1\x1a\x86\xa5\xd3\x6f\x09\x95\xe4\x3f\x40\xae\x76\x0c\x1c\x95\x44\xe0\x89\x1d\x38\xa2\x7c\xa2\x31\x8d\xc1\x0a\xdf\x2b\x37\x2f\xc1\xbd\x63\xd2\x01\x5a\xe1\xfb\x2f\x7c\x4d\xd8\x17\x80\xf6\x46\x0d\x41\x42\x7b\x60\x03\x35\x85\xe3\x38\xf1\x10\x84\x05\x11\x56\xfd\x9a\xfb\x1e\xe3\x39\x28\x2a\x08\x44\xe9\x9a\x44\x74\x4e\x49\x8c\x28\x43\x72\x49\x0c\x7d\x99\xc0\x30\x3a\xa7\x09\xf1\x4c\xfc\x8d\x67\x45\xa6\xfb\x96\x84\x40\x95\xef\x0a\x76\xd4\x40\x5a\x30\x1c\x94\x43\x34\x88\x93\xcc\x89\x40\xf1\x2c\x3c\x49\x78\x4a\x20\x3e\xc4\xb3\xf0\x8a\xb8\x9c\xa6\xbe\x11\x98\x3b\xf8\x2e\x4e\x48\x65\xb0\x24\x10\xa5\x5c\x10\x85\x55\x9d\x92\x48\x3c\x0b\x4f\xef\x49\xe4\x7b\x17\x97\x47\x6f\xcf\x8e\xc0\x83\x08\x5d\x30\xc8\x9d\x90\x9b\xce\x3f\xbc\xf6\x34\x7b\xaa\x38\x05\xe6\x5e\xbd\x46\x14\xfd\xcd\xc6\xee\xd7\x88\xfe\xe9\x4f\x0a\x93\x4a\xe4\x40\xf7\x05\x68\xdb\xb8\x6c\x35\xbb\xcf\x04\xc1\x37\xc6\x15\x61\x5b\x18\x5e\x25\x84\xac\x7d\x37\x11\xbc\x44\x7a\x80\x44\x9c\xc5\x41\x25\x48\x5c\xc2\x44\x08\x12\xf1\xcc\xd1\x52\x18\x86\xc8\x7f\x91\x06\x9e\xd2\x80\x31\x6a\xd8\x02\x85\x53\x32\xcb\x16\x67\x3c\x26\x68\x82\xa4\xc8\xc8\x70\x30\x1e\xa3\x2b\x22\xb3\x35\xba\xe4\x99\x24\x29\x04\x36\x28\x16\x69\xe4\x7b\x63\x30\xc7\x75\x36\x4b\x68\x34\xbe\x23\xb3\x8c\x7a\x3a\xe6\x9b\x50\x0d\x72\x9e\x1e\xfb\xf1\x0c\x8a\x67\x05\x6c\xec\xd5\x8e\x6b\x8c\x26\x94\xbe\x3d\xbd\xf6\x3d\xb3\xe9\xbb\x7d\x15\xfe\x38\x4e\xa3\x25\x59\x61\x08\x69\x90\xa7\xda\xb7\x20\x83\xd9\x08\x7d\x01\xcc\x47\x29\x54\x3c\x1e\x91\x91\x81\x0d\xd5\x4e\x18\x44\x52\xaa\x78\x8f\x13\x3e\x73\xab\xde\xf3\x7f\x8e\x10\xd0\xb8\x05\x42\x40\x6d\x6b\x2c\x97\xa3\xbc\x66\x3d\x9c\x20\x81\xd9\x82\x20\xc3\x83\xa9\xd3\xcc\xb0\x8a\x49\x6e\x4e\x1f\x10\xf5\xc8\x2f\x21\x51\x8f\x6c\x48\x75\x80\xdf\x9e\x56\x61\x41\x0c\x65\xd0\xb7\xa7\x4d\x90\x17\x1f\x6b\xab\x7e\xac\x2d\xfa\xb1\x09\x52\x47\xce\x0a\xb0\x7e\x58\x81\xd7\x0f\x8b\x02\x52\x26\xa9\x4a\x3a\x24\x2e\x07\x9e\x63\xce\x13\xdf\x93\x49\x3a\x26\x7a\x18\x74\x86\x93\x14\x72\xfc\x2d\x16\xe8\x86\x3c\x40\xc6\x1f\xa1\x88\x08\xe9\xd4\x17\xca\xdd\x1c\xa4\x40\x8b\x99\x8b\x9a\x02\x22\xac\x70\x43\x1e\xbe\xa8\x28\x32\x42\x5e\x38\x06\x5d\xdf\x90\x87\x70\x4d\x56\x4a\xcf\xf9\x02\x6d\xe0\x30\xa1\x02\x0f\x8f\x72\x04\x36\x4d\xdb\xd2\x0e\x4c\x44\xc8\xeb\xf7\x57\xbe\x29\x0a\x0a\x26\x46\x96\x2f\x15\xcf\x10\x49\x52\xa2\xfd\xba\x11\x85\x85\x0f\x6c\x91\x07\x89\xa1\xa9\xa8\x42\xf9\x6e\x0b\xb0\x59\x17\x42\x2f\x21\x46\x4e\x8f\x83\xe1\xc0\x7a\x8d\xbb\x43\x7b\xf9\x77\xad\xb2\x1c\xf1\xb1\x0e\x9b\xb6\x8a\x4a\xa5\xc8\x22\x09\x08\xa7\xc7\x16\x95\xd9\x66\x52\x16\x7f\x5c\xc7\x58\x12\x34\xa3\x2c\x4e\x51\xa6\x7f\x7c\x83\x1a\x5f\x57\x88\xbe\x53\x8e\xbd\x2c\x23\x0e\x50\x01\x5f\xf3\x50\xbf\x79\x0b\x39\xca\x4b\xe2\xc1\x10\x4a\x7a\x92\x98\xf5\x0f\x27\x6d\x9b\xce\x6d\x5e\x3c\xab\xfd\x07\xac\xe9\x1f\x38\xa0\x66\x5b\xe4\x98\xb4\x71\x78\x46\x93\x51\x69\x77\x5c\x04\x3c\xa7\xfe\xb7\x68\x46\x30\x3f\x2f\xe3\x17\x44\xea\x3d\x4e\x75\x37\xba\x16\x7c\x4d\x84\xa4\x24\x75\xe9\x9d\x71\x9e\xe8\x94\xe5\x3e\xb5\x85\xb4\x3d\x66\x51\x46\x63\xcc\x3f\x30\xff\x9a\xbd\x81\x83\xd6\x30\x72\x70\xe0\x3c\xfc\x74\x43\x1e\x3e\xc3\x08\x84\x65\x97\x47\xcf\xb3\xbb\xbb\x5b\x9c\x64\x64\x84\xf8\x0d\x88\x09\x28\x51\x30\xaf\xe1\x81\x33\x5f\xcd\x2a\x81\xd4\x76\x75\x37\xe4\x21\x78\x6d\xc6\x8a\xe2\xb3\x06\x5f\x10\x60\xcd\xee\x82\x27\x34\x7a\xb8\xcc\xb4\x8b\x67\x91\xdc\x0c\x07\xe7\xb7\x44\xdc\x09\x2a\x49\x8b\x76\x87\x83\x37\x34\x91\x44\x20\x84\xea\x92\x1b\x0e\x2e\x5a\xa5\x5d\x59\xb5\xe4\x0f\x05\x21\x46\x9b\xfe\x5a\x4f\xd2\x03\x01\x7a\x4b\xa4\xef\xaa\xc2\x81\x50\x47\x24\x59\x92\x4b\x52\x43\x2a\x59\x2a\x99\x7d\x57\x96\xe7\x41\x01\xa9\x82\x69\xce\xef\x61\xab\x39\xab\xca\x53\x73\x7d\x58\xe7\xd9\x8c\x17\x8c\x1f\x56\x39\xd7\x33\xb6\xae\x12\x80\x60\x10\xc8\xe6\x85\x2a\xea\x75\x02\x84\x1a\xcc\xa4\x51\xf4\x62\xbb\x79\x81\x60\xd7\xad\x53\xe3\x19\x91\x18\x4c\x24\x54\x12\x04\x25\xaf\x88\xc4\x7a\xd0\x03\xcb\x33\xf3\xae\xed\x30\x9e\xa5\x52\xe0\x48\x7a\xe8\x85\x0a\x1c\x67\x58\xa4\x4b\x9c\x40\x42\x45\x2b\xfd\x37\xda\x6c\x2c\xd8\xbb\x29\xfa\x05\xa5\x0c\xdf\x90\x2f\x92\x7f\x89\xf0\x8a\x24\x68\xbb\x45\x92\x23\x05\x30\x7b\x80\x52\x42\x2b\x66\xf5\x15\xbd\xec\x02\x0c\x90\xb3\x9c\x1f\x20\xff\xd3\x67\x40\x31\x72\x76\xd7\x90\x68\x66\xd9\x1c\xa9\x03\xda\xf0\x38\x9b\xcf\x89\x50\xea\x5a\x7d\x75\x2b\xaa\x59\x36\x0f\x7f\x02\xed\xd8\xac\xc0\xb2\x24\x71\x6b\x04\x98\x70\xfc\xa0\x22\xac\x8e\x07\x20\x64\x13\x7a\x56\x5f\x43\x87\x8e\xe3\x6c\xee\x1f\xcc\xb2\x79\xd0\xb4\xb5\x77\x03\x10\x11\xc2\x55\x55\x6d\x85\xaa\x3c\x8f\xb3\x39\x52\x16\x94\x22\xa8\x60\x00\x00\x98\x79\xa4\xb8\x80\xcc\x42\x30\xa7\xe6\x96\x40\x0b\xc8\x29\xa3\xf6\x97\x94\x15\x0e\x48\x3e\x3f\xe9\xd0\x3f\xf9\xec\x2b\xd2\x2a\x1a\x0e\xbe\xa0\x09\xfc\xd6\x7f\x28\x51\x18\x1b\x35\xb1\xed\xa1\xb0\xd2\xd0\x71\xf6\x17\x50\xb6\x68\x93\x9d\x73\x91\x70\xbe\x0e\xdf\x50\x91\x4a\x3d\x50\xa3\xee\xe7\x8d\xb7\xd9\xe4\x28\x41\x2e\xdb\xad\x77\xf8\x73\xa0\x91\xa8\xe4\xdc\x02\x38\xda\x09\xc8\x62\x3a\x77\x69\x71\x27\x82\x5b\xd0\xd8\x43\x98\xc5\xc5\xf3\x0f\x59\x92\x40\x39\x63\x96\xe3\xb3\xaf\x7a\x9b\xa3\xac\xa7\xb2\x52\x83\xea\xc2\x92\xa1\x03\x86\xba\x6d\xe5\x1a\x50\xd2\xd4\x05\x9e\xbe\xb9\xd0\x9c\xfd\x23\xe5\xcc\x70\x37\xcb\xe6\x23\x13\xe3\x7c\x3e\xfb\x1a\xe4\xf2\x70\x59\x29\x76\x3a\x6a\xa2\x67\x48\xef\xc6\xd8\x8b\x23\xb5\x66\x55\x7a\x97\x24\x51\x67\x50\x26\xbd\x94\x24\x68\xc7\x2e\xac\x7d\xa8\x39\x9a\xa6\x1d\x16\xd1\x69\x13\x35\xbc\xb9\xa2\xab\x36\xd2\x69\x25\x5d\xa8\x0a\xab\x19\x0c\x56\x5f\xc3\xcb\xb0\x09\xb8\x4b\xfd\xc6\x71\xad\xf8\x72\xa4\xc8\xfc\xd7\xae\x47\x48\x36\x0b\x22\x3c\xe4\x78\x59\x31\xca\xb2\xd5\xac\x75\x10\xd2\x0b\xc1\xcc\x6b\xf1\x96\xbd\x15\xdf\xe4\x43\x56\x7b\xef\x71\xdd\x9d\x21\x30\xfa\xdf\x6f\xbf\xaf\xc1\xea\x1f\xea\x98\xab\x08\xa5\x2d\xd1\xf3\x27\x2a\x97\x4e\x28\x79\xd6\x58\xaa\x70\xab\x8c\xdf\x1a\x55\x47\xa8\x52\x6c\xfc\x1e\x41\x76\xae\x5c\xe3\x70\xa2\x77\x62\xba\xa2\x29\xaa\x19\xd8\x17\xf9\x5e\x89\xf7\xed\x16\xd6\x75\x03\xb3\x2d\x80\xcc\xf6\x37\x4b\x88\x1b\xa0\xcd\x3e\xd8\x56\x43\x6a\xe3\x4f\x19\x94\x86\x76\xc7\xa9\x49\xd8\xb4\x84\x6b\xed\x2e\xd5\x01\xbb\x76\xe3\xe0\xcf\xd6\xc9\x34\xe6\x9c\xb7\xc1\x16\x9c\xb7\x79\xa1\xd1\x53\x16\x02\x46\xd2\x3b\x2a\xa3\x65\x31\x7f\xa3\x2d\xb3\x67\x06\x8b\x70\x4a\x50\x53\x86\x69\x08\x8a\x3d\x53\xca\x33\xe4\x94\xc6\xa4\x52\xc9\x2a\x3a\xad\xec\x91\x57\x7a\x27\x96\xe7\xcd\x2c\xcf\x96\x5a\x76\xe6\x96\xa7\x24\x97\x5a\x76\x79\x4a\x7a\xa9\xe5\x97\x27\x25\x98\x72\x34\xb3\x81\xab\x31\x91\xfd\x16\xe9\xe6\xe9\xf9\xa6\x9e\x70\x9c\xac\x61\xb6\x4c\x4d\xc9\xa6\x25\xa1\x74\xee\x68\x9e\xb2\xf5\xe9\xb9\x86\xaf\x8e\x28\xba\x33\x55\x25\xed\xa0\xc0\x64\x87\xf6\xdd\x91\xdd\xd6\x00\xfe\x76\xc3\x38\x28\x5b\x46\xeb\x5e\x47\xaf\xe6\x7b\x9f\x3e\x7b\x41\xcb\x7e\x67\x2f\xd9\xbe\xa7\xa9\xfc\x2d\xe4\x0b\xeb\xf8\x09\x2c\xf6\xe9\xf3\xaf\x20\xe4\x8a\xb5\x7d\xfa\xde\x64\x59\x1a\xdf\x9b\xf3\xa2\x3c\xc5\x2a\x22\x4c\x5e\xa5\xf1\x3d\x78\xc8\xab\x4a\xfe\xd4\x48\x46\xdf\xe7\xf7\x73\x5a\x85\x6a\x2b\xdf\x57\x83\x4d\xd1\xbf\x51\x87\xcd\xfe\xf2\xd9\xf1\x97\x9a\x6e\x8f\x33\x9a\xc4\x3d\xbc\xe6\x86\xa4\x68\xae\xcf\x7d\x7a\x1f\x35\xf6\x41\xad\x4f\x55\x6a\x67\x91\xb5\x6e\x11\xd5\x4b\x70\x38\x29\x0f\x6c\xd4\xcd\x32\x48\xc9\x5c\x29\x44\xba\x4e\xd2\xcf\xbc\x20\xf4\x2f\xac\x0c\x41\xd7\xed\x07\x81\x7a\xdc\xf0\xd7\x70\xa8\xa5\xae\xa8\x95\xfd\xb8\x6e\xd4\xaf\x42\x1b\x38\xcb\x4e\xaa\x55\xd9\x10\x6a\x23\xb5\xaa\x19\xd2\xf2\x50\x6a\xdc\x77\xdb\xdd\x95\xc6\x55\x85\x07\xd8\xbb\x43\x33\xb0\x55\x9c\xa7\xba\x47\xa8\x23\x83\x63\x04\x45\x52\xce\xea\x76\xeb\x8d\x9a\xaa\xa6\xe0\x75\xff\x25\x8b\x83\xcb\xd6\xce\x91\x9f\x96\x44\x10\xbf\xba\x4e\x13\xb2\x09\xfa\x6f\x6f\xd4\x7b\x6d\x9d\x89\xb6\xdd\xfb\x5e\xbb\x45\x6c\xe9\x2a\xe2\x38\xf6\x1b\x0b\x83\xa6\x45\xbd\xf6\xfc\xd7\xb8\x85\x2a\x1d\x07\x5e\x60\x41\x98\xae\x76\x72\xb5\x9a\x67\xca\x0d\x4c\xb7\x4f\x61\x8e\x66\xd0\xd5\x89\x79\x54\xc8\xbd\x53\xea\x55\x5c\x5f\x68\x5c\x92\xb4\x1e\x30\xf7\xc5\x25\x56\x2a\xcd\x3b\xe3\x31\x04\xf1\xae\xd8\x30\x3d\x56\x11\x36\xed\x4e\x26\xf6\xb8\x3e\x45\x73\xc1\x57\x68\x7a\xdc\x23\x3c\xf5\xa3\xa0\x7e\x4b\xd2\x27\xe9\x14\xc7\x9c\xf2\x3e\xbf\x35\x77\x6e\x52\xa7\xc7\xe1\x31\x59\x50\xe6\x77\x9e\x45\x36\x36\x45\x3a\xb7\x22\x36\x2e\x3a\xc8\xf7\x8a\xbb\xea\x06\x38\x63\xd2\x04\xd0\x2e\xb0\xd4\x07\x86\x60\xd1\x30\x0c\x83\x50\x35\x5b\xa8\xce\xa1\xf0\x92\xa4\x6b\xce\x52\xe2\x07\xa1\xee\xce\xf0\x83\xf0\x28\x8e\xfd\x4a\x63\xc6\x28\x6f\x93\x7b\xc3\xc5\x0a\xab\x26\x08\x43\xc0\x8f\xaf\x02\xdb\x64\x94\x31\x59\x24\xd3\x3c\xd5\x75\xca\x7d\xb3\x2d\x8e\x80\x8d\x31\x37\x75\x2b\x6a\x06\x02\x73\x9b\x95\xe6\x0a\xda\x93\xf9\xa3\x24\xe9\xd6\x9f\x3d\x4b\x96\xf7\xe1\x09\x5f\xad\xa8\x92\x96\x7b\x95\x95\x3a\x67\xca\x7d\x4c\x72\x6f\x97\x78\x26\x57\x68\xbf\xd0\xaf\x48\xd1\xb1\xc4\xbe\x2e\xb6\x4b\x8a\x56\x80\x3d\xf3\x7c\x73\xa6\xee\x6a\x27\xd8\xa7\xf2\xb4\xec\x9a\xf2\xac\x54\x3a\xd7\x5b\x74\x01\xbb\x86\x30\x05\xd7\xd5\x92\xdf\xf5\x08\x7c\x0b\x22\x11\xee\xd4\x72\xde\x0d\xde\x3f\xec\xf5\x5b\xbf\x1e\xf6\x7a\x54\xda\x4e\xeb\x64\x5c\x4a\x43\x34\x86\x42\xe8\x57\x0e\x85\xea\x3e\x12\x24\x9d\xaf\xf2\x86\xb2\xce\x38\xa8\x5c\x9a\xc6\x8d\x8b\xcb\xfb\xf0\x92\x27\xc9\x0c\x47\x37\x7e\x50\x21\xa6\x78\x37\x20\xd8\xed\xdf\x8e\x7b\xf7\x11\xfd\x9e\x8a\x7f\x26\x85\x77\x38\x77\x93\xde\xfa\xda\xd1\x1f\xc5\xb7\x7d\xc3\xe9\x9e\x6e\x1d\x14\x6d\x19\x9d\xaa\x9d\x51\x16\xf7\xd0\xad\x76\x66\x8c\x4a\x5d\xf7\x9d\x4d\x1d\x7b\xab\x78\x3f\x8f\xd6\x67\x1a\x65\x13\x38\xc3\x37\xa4\x0b\xc7\x19\xc0\x39\xbe\x5d\x34\x84\x68\xf1\x3d\xa6\x13\x64\x47\x25\xbc\x56\xbf\xde\x4d\xfb\x54\xc1\xf9\xdc\x52\x05\x4c\x92\xb0\x36\xbf\x81\xaf\x77\x53\x34\xc9\x31\xd4\xeb\x5d\x87\xdb\x42\x5e\xff\xc2\x09\x8d\xb1\xec\x94\xd9\x13\x44\xb3\xdb\x93\x5e\x76\xb8\x52\xcf\x0d\xad\xc3\x92\x6e\xc4\xe9\x62\xc8\x9e\x8b\x5a\x1f\x53\x3b\xdd\xbc\xef\xa2\xde\xde\xe3\xc4\xcc\x13\x41\x7a\x2c\x30\x3d\x46\x91\x9a\x98\xf6\xf1\xaf\x3c\x6b\x52\xd6\x2f\x67\xf6\x25\xa2\xe9\x45\x98\x3e\x27\x81\x4e\xbc\x7d\x42\x92\xec\xda\x2a\xd0\xb9\x39\x39\x04\xdb\xad\x98\xbc\x32\xe7\x2c\xa3\x71\xf8\x81\xdc\xfd\xeb\xcf\x7e\x10\x9a\x03\x5d\x0d\x4a\xee\x69\x2a\x29\x53\x9d\xa6\x89\xb1\xae\xde\xd9\xd5\xae\x10\xa8\x14\x0d\xe4\xbb\xd8\xda\x13\xae\xbd\x37\x35\xec\x15\x2f\xb7\xe9\x21\xd3\xe6\x61\x8f\x43\xdf\xb1\x94\x08\xe9\xcb\xfb\x7d\x52\x79\x97\xc8\x9a\xb2\xfa\x9e\xa6\xf9\x18\xc3\x7c\x36\x93\x7c\x44\x5e\xef\x97\x4b\xfa\x64\x75\xad\x1d\x07\x75\x7f\x37\xca\x93\xeb\xbf\x63\xed\xa0\xc5\x10\x97\x0b\x88\xbe\xb9\x01\xdd\x9a\x89\x3d\xb6\x80\x0a\x7f\x0f\x5b\xda\x2f\x2f\xed\x15\xce\xcc\x19\x26\x8d\x47\x4d\xe7\x98\x20\x99\x2b\xfd\xe7\x7a\xf7\x91\xa6\x6c\x3e\xd2\xac\xcc\x5a\x51\xf6\x9e\xb0\x85\x5c\xda\x83\x3a\x3a\x47\x09\x61\x7e\x9e\xd6\x69\xdc\x4c\xef\xdf\x90\x7b\x6a\x57\xa0\xd9\x6e\x2b\x77\xad\xee\x1b\x15\x48\x23\x04\x41\x67\xa9\x44\x33\x82\x12\xce\x16\x44\x20\xb9\xc4\xac\x15\xa1\x17\x14\x97\xb5\xf5\x1b\xbb\x12\x37\xf8\xfe\x71\xdc\xfc\x57\x79\xf1\x1c\xcd\x9e\xdc\xa4\x4b\x2e\x64\x23\x3b\x0e\xc6\xfe\xec\xac\xb1\x84\x60\x6b\x99\x11\x64\xd1\xca\xc2\x85\x99\x7a\x38\x41\xfa\x7d\xf9\xf0\x2c\x4b\xe5\x09\x5f\xad\x69\x42\xfc\x9f\x5d\x5a\x2c\xd6\xed\xf6\xe7\xfc\xa6\x1c\x7d\xd7\x03\x79\x78\x86\x65\xb4\x34\x59\xae\x53\xa4\xfb\xc8\x6d\x05\x88\xd1\x1d\x95\x4b\xd4\x4c\x69\x7f\x99\x11\x96\xad\x1c\xed\x1b\x6f\x52\x85\x4b\x75\x0e\xea\xe0\x41\x55\xb9\x9b\x0d\x22\x40\x00\xd2\xeb\x30\x2e\xab\xcd\x3d\xe8\xe0\x00\x59\x9a\x54\x0b\x6a\x7e\x02\xbd\x43\x06\xb9\x08\x72\x1f\xb7\xb2\xd8\x45\x71\x9d\x06\x7b\x85\xdf\xd8\x76\x84\x20\xa2\xe4\x17\xf3\xa3\x1a\x95\xea\x2f\xcd\x9f\x4b\x76\xbb\xb0\x77\xb6\x0b\xca\x9d\x97\xe5\xb2\x7a\x59\xde\xe6\xc0\x74\x55\x52\x60\x97\x8e\x6a\x9e\xab\xe0\xf7\x8d\x42\x24\x4d\xb5\xd3\x82\xe4\xbf\x65\x38\x49\x91\xe4\x6d\x98\xf7\x30\xc6\xfb\x28\xc9\x52\x7a\x4b\xce\xf6\xe7\x6b\x52\x5a\xbe\x86\xe9\xd1\x1c\x76\x61\xdd\x23\xda\x52\xb6\x27\x53\xb5\xa4\xf1\x18\x56\x16\xaa\x18\x10\x5d\xfa\x2a\x90\x3f\x46\x5f\xfb\xb3\xd6\xa6\xaf\x67\x60\xb2\x0b\x71\x4f\x87\xed\xea\x2f\xbc\x21\xe6\xd6\x1a\xdb\x57\x29\x7b\xd7\x43\x7b\x9c\x6b\x74\x17\x43\xa5\xc3\x93\x83\xce\x1b\x8c\x27\x5c\xfb\x4e\x0d\x9b\xa6\xc0\x6d\xb4\x89\xb6\x0e\xaf\xca\xb4\x6a\x07\xdb\xa0\xfb\x0e\xf5\x10\xa9\xaf\xd1\x7c\x20\x77\xb6\x35\xd2\x85\xb1\xb4\xa9\x8b\x62\x29\x32\x12\x8c\x1a\xfb\x78\xfb\xac\xd3\x8a\xb8\xad\x0b\xaa\xdd\x45\xea\x2d\x51\xbf\x82\x3c\xde\x31\xe9\x37\x93\xfc\x64\x51\xb4\xa0\x7d\x82\x20\xca\x09\xed\xf9\xe4\xf0\x26\xe1\x58\xfe\xe5\xcf\x7f\x1c\x41\x54\x3b\xdd\x9e\xd3\x22\xd4\x0b\x98\xbf\x96\x24\x9a\x83\xc2\x8b\x2d\xe0\x2d\x10\xaa\x4e\x5c\x47\x14\x3d\x44\xb5\xb3\x5e\xca\xe5\xc6\x67\x5f\x49\x24\x3d\xf4\xcb\x2f\x0d\x83\x58\x08\xfc\x90\x57\x4b\x3d\x25\x06\xbb\xc4\xd1\xee\xf0\x5f\x39\x3f\xd4\x39\x60\xbf\xb3\x49\xf3\x22\x25\xe4\x0b\x1d\xae\x67\xea\x0d\xb5\x1e\xe9\xe2\x31\x67\xa0\x7d\xba\x03\xcd\x9b\x9d\xcd\x2f\xa5\x05\xa8\x7f\xaa\xd0\xaa\xf2\x34\x3e\xcf\x9d\x45\xc4\x8a\xa6\xa9\x6a\x50\xf9\x05\xf9\xf5\xa7\x93\x89\xd2\x80\xf3\x66\xa3\xdb\xf5\x1c\xd8\xa3\xee\xd2\x8b\x8c\x7a\x99\x4f\x0d\xdd\x40\xf9\xab\x8d\x7d\x92\xd2\x4e\x7f\xcb\xeb\x97\xee\x3e\xa0\x4a\x56\x52\xa4\x86\xa6\x4f\x35\x30\xde\x36\x2c\x7b\xda\x1e\xd8\xcb\xe8\x86\x4d\x36\x5a\xfc\xe8\xce\x3c\xcf\xcd\x34\xa4\x1e\x43\x22\x65\xf2\xd9\xd8\x05\x5c\x8f\xe1\xd5\x4d\x2e\xcf\xca\xaa\xcd\x2e\x86\xbe\xb9\xfe\xf9\x6c\xfc\x5a\x7c\x8f\xe1\xb9\x94\x47\x9e\x5b\xbf\x2a\x91\x18\x22\x61\xa1\x67\xe3\x58\x21\x7b\x0c\xbb\x4e\xf8\xef\x88\xff\x74\x8e\x8a\x2f\x8a\x7c\x4d\x39\xb3\xfd\xb0\x9a\xa1\xe6\x4f\x67\xf5\x65\x43\x7d\xd4\x50\x9f\xbc\xce\x4c\x63\x6c\x89\xfc\xf2\xef\x52\x32\xd9\x23\x77\x4c\x8f\x9d\xac\xf1\xfc\xd7\x4e\x7d\x89\xa8\x5d\x3b\xd1\x38\xff\x22\x94\xfb\xc2\x7e\x5b\x26\xd9\xe7\x26\x78\xf0\x9b\xb4\xb4\xfd\x3e\x4d\x1c\x08\x21\xf4\xe4\xbb\x4d\xf7\x33\x07\xc3\x3f\xf0\x85\xec\xef\x77\x87\xed\xde\xea\x99\x4f\x55\xec\x77\xab\xd7\xcb\xca\xfa\x34\xec\xf4\x13\xe6\x63\x62\xc0\xb3\x79\x7f\xdb\x0d\xdf\xa0\xa5\x09\xab\xf4\xf9\x8c\xe6\xdb\x3f\xfb\x79\x90\x3e\xb7\x6f\xad\xd7\x88\xfd\x63\xd7\x48\xdd\x0e\x95\xdc\xe6\xdf\xf1\xd6\xaf\xda\x31\x34\x25\x09\xe9\x95\x61\x62\x35\xb1\xc7\x75\x5f\xdf\xb4\xd2\x77\xe5\xff\x2f\x3d\x80\x4f\xf1\xf2\xdf\x2e\x97\xf4\xed\xbe\x70\x2b\x9a\x7d\x1a\x0c\xdd\xa8\xa8\x35\xf8\x7b\x45\xc5\x7e\xf6\x93\xdb\xed\x3e\x95\x51\xff\x36\xd6\x7e\x44\xb4\xf7\x3f\x7c\x69\xb4\xc3\xde\x9e\xd1\x27\x46\xed\xf8\x38\xb4\xf9\xb0\xa1\x12\x6a\x60\x3e\x03\xd3\x58\x8c\x9a\xa3\x6c\xe7\xd3\x50\xfa\x50\xbb\x78\x60\x5f\x9d\x2b\x7f\x74\xb3\x2a\x30\xe7\x33\xc2\x07\xe5\x91\x4d\xf1\x21\xd4\xdd\x6d\xa4\xd5\x2f\x5b\x6d\x4a\xdf\x8e\x53\x1f\x3e\x8d\x67\xf9\x37\x7e\xcc\x07\xae\x9c\x2f\x59\xbd\x3d\xbd\xd6\xca\x30\x43\x6f\x32\x16\x0d\x07\xea\x73\x6c\x0d\x8f\x3f\x36\x3d\x35\x9f\x42\xab\x0d\x18\xb3\x54\x27\x5d\xfa\x73\x5b\xf9\xe7\xdc\x53\xfb\x19\x38\x10\xa8\xbd\x08\x48\xf8\x82\x46\x3d\x78\xde\xf5\xe9\x2e\x47\xa2\x0d\xa3\x9b\xdf\xe8\xc3\x3e\x83\x41\xf1\x1a\xd6\x5b\x22\x2f\x92\x4c\xe0\xe4\xe3\xe5\x7b\x3f\x50\xef\x20\xa3\x83\x9c\x9e\xc1\x00\x34\x70\xb8\x6f\x7b\xbe\xfe\xb4\xd1\xf9\x55\x19\xb2\x5f\x27\x8f\xfa\xe8\xd1\xa8\x4a\xe3\x15\x65\x8b\x84\xf4\xa5\xb1\x4f\x9b\xb1\xa6\xf1\x63\x19\xb0\x5f\x01\xa2\x40\xb5\x59\x1d\xee\x1f\x09\x72\x06\x9b\x3a\x52\x9d\x37\xc6\x9a\x75\xa4\x5e\xf8\x54\x73\xd3\x3f\x82\xba\xf6\x25\xf7\x0f\xa3\xb9\xfc\x54\xa0\x2d\x08\x0f\xb6\xc3\xed\xff\x05\x00\x00\xff\xff\x44\x3e\xc6\x31\x26\x62\x00\x00") +var _etcTemplatesServerTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x3c\xfd\x6f\xdb\x38\x96\x3f\xdb\x7f\x05\x47\x40\x33\x52\xd7\x23\x77\x70\x7b\x0b\x6c\xba\xbe\x43\x12\xa7\xdd\xee\x36\x4d\x2e\x49\x77\x0e\x28\x8a\x0e\x2d\xd1\x36\x1b\x99\x74\x29\x2a\x1f\xf0\xf8\x7f\x3f\x3c\x7e\x48\xd4\x97\x25\x27\x99\x99\x9b\x1d\x0c\xd0\x58\xe4\x7b\x7c\xdf\xef\x91\x7c\xd2\x78\x7c\x94\x49\x8e\x16\x84\x11\x81\x25\x89\x51\xc4\x63\x12\xa2\xe9\x39\xfa\x70\x7e\x8d\x4e\xa7\xef\xae\x87\x6b\x1c\xdd\xe0\x05\x81\x39\x68\x38\xa4\xab\x35\x17\x12\xf9\xc3\x81\xc7\x53\x6f\x38\xf0\x24\x5d\x11\xf8\x77\xbe\x92\xf0\x4f\xc2\x17\xf0\x4f\x2a\x45\xc4\xd9\xad\xf9\x93\xb2\x85\x9a\x2b\xc8\x82\xdc\xaf\xe1\x2f\xc2\x22\x1e\x53\xb6\x18\x7f\x4d\x39\x83\x07\x31\x96\x78\x86\x53\x32\x4e\xbf\x25\xf0\x9b\x11\x39\x5e\x4a\x09\x93\x59\x96\x24\xc8\x5b\xf0\xf5\xcd\x22\xa4\x6c\x0c\x3f\x67\x94\xab\x7f\xc3\xdb\xbf\x78\xc3\xe1\xc0\x5b\x50\xb9\xcc\x66\x61\xc4\x57\xe3\x14\x4b\x2e\xe8\x78\xc1\xc3\x2c\xa3\xb1\x57\x1e\xbc\xc5\x52\x26\x6a\x8d\x19\xa7\x09\x11\x63\xf9\xb0\x26\x69\xd7\xa4\x6f\x19\x11\x94\xa4\xe3\x6f\xab\xea\x62\x51\xc2\xb3\xf8\x0e\xb3\xf1\x82\x2f\x31\x1b\x67\x92\x26\x15\x64\x09\x9e\xa5\x12\x47\x37\x63\x12\x2d\xf9\xae\xb1\xf1\x8a\xc6\x71\x42\xee\xb0\x20\x5d\xf4\xc0\x3f\x40\xc9\x7c\x9e\xd0\x19\x72\xa7\xae\x81\x54\x86\xc7\xf3\x39\xc8\x75\xac\x26\x8c\x6f\x7f\xf4\x86\xc1\x70\x38\x1e\x7f\xe0\xf2\x0d\xcf\x58\x8c\x68\x8a\x30\x5a\x62\x16\x27\x44\xa0\x39\x17\x88\x08\xc1\x05\x5a\x91\x34\xc5\x0b\x32\x9c\x67\x2c\x42\x76\xb2\x1f\x21\x20\x2f\x3c\xe1\x4c\x92\x7b\x19\x98\xb9\x9b\xe1\x40\x10\x99\x09\x86\xa2\xf0\x1f\x57\xe7\x1f\x7c\x50\x56\x78\x25\xb1\xcc\x52\x0b\x3a\x42\x2b\xbc\xfe\xa4\xf5\xff\x99\x32\x49\xc4\x1c\x47\x64\xb3\xdd\x78\x66\x25\xef\x10\x79\x1f\xb8\x44\x6a\xb6\xb7\x0d\x86\x5b\x20\xf3\x84\xb3\x79\x42\x23\x59\x27\x53\x90\x94\x67\x22\x22\x28\xb2\x53\x14\x31\x9a\x60\x0b\xf6\x08\x82\x2d\x68\x2f\x82\xa7\x58\xe2\x9c\x80\x9c\xe8\x77\x30\x9b\xe1\xe4\x8a\x88\x5b\x22\x4e\xd5\x92\x35\xfa\xa9\x99\x84\x52\x35\xcb\xa5\xbe\x01\xbe\xc2\xc8\x08\xa6\x6b\x10\x87\xa7\x28\x7c\xcf\x17\x0b\x22\xfc\x20\xbc\x10\x94\x49\x9f\x08\x11\xec\x60\xb5\x61\x9d\x5e\x5c\x5b\x38\xa4\x01\x91\x82\xcc\xb9\x3f\xc6\xf1\x25\xf9\x96\x91\xb4\x41\x69\x33\x1c\x0b\x3d\xa6\x39\x2d\xe6\xf6\x62\xb0\x95\x93\x02\x4f\x1f\x06\x88\x10\xa1\x96\x6a\x60\x89\x3e\x8a\xe3\x0b\xbc\x20\x0c\x4b\xca\xd9\xff\x64\x44\x3c\x74\x13\x5f\x87\xa9\x31\xb1\xe2\x71\x8a\x3e\x7d\xfe\xb6\x0a\xd5\xf8\x19\x8f\x83\xf2\x4f\xe0\x8a\xce\x51\x42\x57\x54\xa2\xc3\x09\x8a\xf4\xc8\x05\x16\x78\xe5\x7b\xea\xb1\x17\xbc\x36\xe3\xdf\x4d\x90\xe7\x01\x84\x02\xd1\x22\x3a\x9c\x20\x13\x5f\xc3\x23\xc9\xa9\xaf\x66\x06\xaf\xd5\xd8\x64\x82\x18\x4d\x14\xc0\x40\x51\x32\x41\x78\xbd\x26\x2c\xf6\xe1\xd7\x08\x7d\x5b\x85\xef\x61\xba\x9f\x04\xc1\x70\x30\xd8\x0e\xe1\x7f\x3a\x47\x7c\x3e\x4f\x49\x03\x39\xfa\x39\xd0\x63\x66\x94\x08\xe2\xcd\x04\xe9\xa9\xfd\x29\x3a\x57\xf3\x7d\x5e\x26\x29\xe5\x42\xfe\x93\x3c\xd4\x69\x82\x81\x2f\x37\xe4\x01\xa8\xb2\x93\x0a\xb2\xe0\xc9\xb9\x88\x89\x68\x01\xe4\x30\xe6\x05\xa5\x99\x8a\x7e\xc8\x52\xe1\x35\xff\xb8\x5e\x13\xe1\xe7\x63\x81\xe6\xb4\x98\x0b\x2b\x4d\x4f\xaf\x4e\xf4\x6a\x25\x24\xde\xd1\xd5\x89\xa7\x59\x68\x65\x15\xa6\x1e\x3f\xf8\xf3\x95\x0c\xaf\xd6\xe0\xb1\x73\xdf\x7b\x91\xa2\x17\xa9\x37\xb2\xcc\x8c\x8a\xd5\x02\x10\xc9\x36\xf7\x02\x40\x03\xc6\xab\x6c\x71\x8e\x25\x4e\xb4\x4d\x3b\x8e\xa3\x8d\x0b\x1e\x7c\x57\x08\x3e\xe1\x8b\xf0\x0d\x4c\x37\xe1\x61\x9b\x23\xb9\xc3\x82\xf5\xc7\xa1\x42\x4c\xc2\x5c\x2c\x11\x67\xa9\x44\x82\x48\xf1\x30\x3d\x46\x13\xf4\x9f\xaf\xca\x8f\x7e\xc2\x54\xa2\x09\xfa\xd1\x3e\x8e\xc9\x1c\x67\x89\x3c\xc3\xf7\xe7\x6b\xc2\x4e\x38\x63\x6a\xf4\x15\x78\xe4\x65\xc6\x4c\x78\x11\x19\xfb\x3e\x05\xe1\x25\x34\x52\xbe\xa6\xa9\xcd\x27\xf8\x10\x80\xe9\xe2\x0d\x4d\x88\x51\xdd\x08\x62\xb2\x14\x3c\x01\xd7\x3d\xc9\xff\x7c\x67\xc3\x81\xe2\x4a\x43\x81\x61\x40\xaa\x0e\xdf\x12\x79\xa2\x9e\xf8\x81\x1d\x0b\x2f\x09\x8e\xcd\xc3\x62\x8d\x40\x09\xc4\x59\xc0\x31\x6a\xf7\x29\x3a\xc3\x37\xa4\x58\xdc\xd7\xca\x53\x15\xd3\xe1\x04\xf1\x14\x56\x24\xec\xd6\xf7\x2e\xce\x2f\xaf\xbd\x60\xa8\xd0\xaa\xe1\x49\x6e\xbf\xfa\x27\xf2\xfe\xfa\xea\xaf\x3f\x7a\x0a\x1e\xc7\xb1\x20\x69\xaa\xec\x59\x13\xf9\x96\xc8\x2b\xc5\xb5\xef\x99\x41\x6f\x84\xbc\x43\xef\x4f\x00\x0c\x68\x09\x4c\x56\x71\xe9\x03\xb9\xf3\xd5\x93\xf0\x63\x4a\xfc\xa2\xc8\x08\x2f\x49\xc4\x41\x92\x60\x61\xb5\x41\x9b\x54\x94\x5c\x44\xcb\xd2\x30\x02\xeb\x5a\x46\xd4\xcc\xc2\x11\x73\x83\x99\xfb\xde\x29\xc3\xb3\x84\xb2\x05\x3a\x39\xbf\xbc\x52\x91\x55\x19\x3c\x40\x18\x07\x53\xc0\x20\x85\x97\xc6\xb1\x5c\x70\x35\x08\x50\x2f\xd1\x12\xdf\x12\x94\x92\x28\x13\x54\x42\xc0\x4e\x33\xe2\x99\xb0\x51\x67\x03\x56\xfb\x89\xca\xa5\x51\x68\x65\x44\x3f\x55\x8b\x1d\x25\x09\xbf\x3b\x17\x74\x41\x59\x7a\x88\xd0\xa7\xcf\xda\xa8\x36\xb0\xf0\x76\x94\xcf\x38\x23\x72\xc9\xe3\xd2\x0c\x25\xe4\xb7\xa7\xd7\x23\x2d\xee\x8b\x8f\xf9\x5f\xe7\x57\xf6\xcf\xe9\xe9\xfb\xd3\xeb\x53\x07\xcf\xdf\x09\x8e\x89\x28\xe1\xf1\xfe\xf7\x87\xa3\x4c\x2e\x7f\xb8\xe6\x37\x84\x81\x54\x55\x42\x61\xf2\x87\xeb\x87\x35\xf1\x34\xec\xe9\xfd\x9a\xa7\x24\x07\x76\x61\xaf\xb9\xc4\xc9\x0f\x27\x3c\x63\x52\x4f\xde\xea\xc8\x31\x1c\xd8\xca\x1a\xf0\x34\xeb\x31\xaf\xbd\xa1\x1a\x86\xa5\xd3\x6f\x09\x95\xe4\x3f\x40\xae\x76\x0c\x1c\x95\x44\xe0\x89\x1d\x38\xa2\x7c\xa2\x31\x8d\xc1\x0a\xdf\x2b\x37\x2f\xc1\xbd\x63\xd2\x01\x5a\xe1\xfb\x2f\x7c\x4d\xd8\x17\x80\xf6\x46\x0d\x41\x42\x7b\x60\x03\x35\x85\xe3\x38\xf1\x10\x84\x05\x11\x56\xfd\x9a\xfb\x1e\xe3\x39\x28\x2a\x08\x44\xe9\x9a\x44\x74\x4e\x49\x8c\x28\x43\x72\x49\x0c\x7d\x99\x50\x21\x07\xcd\x69\x42\x3c\x13\x80\xe3\x59\x91\xea\xbe\x25\x21\x90\xe5\xbb\x92\x1d\x35\xd0\x16\x0c\x07\xe5\x18\x0d\xf2\x24\x73\x22\x50\x3c\x0b\x4f\x12\x9e\x12\x08\x10\xf1\x2c\xbc\x22\x2e\xab\xa9\x6f\x24\xe6\x0e\xbe\x8b\x13\x52\x19\x2c\x49\x44\x69\x17\x64\x61\x75\xa7\x44\x12\xcf\xc2\xd3\x7b\x12\xf9\xde\xc5\xe5\xd1\xdb\xb3\x23\x70\x21\x42\x17\x0c\x92\x27\x24\xa7\xf3\x0f\xaf\x3d\xcd\x9e\xaa\x4e\x81\xb9\x57\xaf\x11\x45\x7f\xb3\xc1\xfb\x35\xa2\x7f\xfa\x93\xc2\xa4\x32\x39\xd0\x7d\x01\xea\x36\x3e\x5b\x4d\xef\x33\x41\xf0\x8d\xf1\x45\xd8\x17\x86\x57\x09\x21\x6b\xdf\xcd\x04\x2f\x91\x1e\x20\x11\x67\x71\x50\x89\x12\x97\x30\x11\xa2\x44\x3c\x73\xd4\x14\x86\x21\xf2\x5f\xa4\x81\xa7\x34\x60\xac\x1a\xf6\x40\xe1\x94\xcc\xb2\xc5\x19\x8f\x09\x9a\x20\x29\x32\x32\x1c\x8c\xc7\xe8\x8a\xc8\x6c\x8d\x2e\x79\x26\x49\x0a\x91\x0d\xaa\x45\x1a\xf9\xde\x18\xec\x71\x9d\xcd\x12\x1a\x8d\xef\xc8\x2c\xa3\x9e\x0e\xfa\x26\x56\x83\x9c\xa7\xc7\x7e\x3c\x83\xea\x59\x01\x1b\x83\xb5\xe3\x1a\xa3\x89\xa5\x6f\x4f\xaf\x7d\xcf\xec\xfa\x6e\x5f\x85\x3f\x8e\xd3\x68\x49\x56\x18\x62\x1a\x24\xaa\xf6\x3d\xc8\x60\x36\x42\x5f\x00\xf3\x51\x0a\x25\x8f\x47\x64\x64\x60\x43\xb5\x15\x06\x91\x94\x4a\xde\xe3\x84\xcf\xdc\xb2\xf7\xfc\x9f\x23\x04\x34\x6e\x81\x10\x50\xdb\x1a\xcb\xe5\x28\x2f\x5a\x0f\x27\x48\x60\xb6\x20\xc8\xf0\x60\x0a\x35\x33\xac\x82\x92\x9b\xd4\x07\x44\x3d\xf2\x4b\x48\xd4\x23\x1b\x53\x1d\xe0\xb7\xa7\x55\x58\x10\x43\x19\xf4\xed\x69\x13\xe4\xc5\xc7\xda\xaa\x1f\x6b\x8b\x7e\x6c\x82\xd4\xa1\xb3\x02\xac\x1f\x56\xe0\xf5\xc3\xa2\x82\x94\x49\xaa\xb2\x0e\x89\xcb\x91\xe7\x98\xf3\xc4\xf7\x64\x92\x8e\x89\x1e\x06\x9d\xe1\x24\x85\x24\x7f\x8b\x05\xba\x21\x0f\x90\xf2\x47\x28\x22\x42\x3a\x05\x86\x72\x37\x07\x29\xd0\x62\xe6\xa2\xa6\x88\x08\x2b\xdc\x90\x87\x2f\x2a\x8a\x8c\x90\x17\x8e\x41\xd7\x37\xe4\x21\x5c\x93\x95\xd2\x73\xbe\x40\x1b\x38\x4c\xa8\xc0\xc3\xa3\x1c\x81\xcd\xd3\xb6\xb6\x03\x13\x11\xf2\xfa\xfd\x95\x6f\xaa\x82\x82\x89\x91\xe5\x4b\xc5\x33\x44\x92\x94\x68\xbf\x6e\x44\x61\xe1\x03\x5b\xe5\x41\x66\x68\xaa\xaa\x50\xbe\xdd\x02\x6c\xd6\x85\xd0\x4b\x88\x91\xd3\xe3\x60\x38\xb0\x5e\xe3\x6e\xd1\x5e\xfe\x5d\xab\x2c\x47\x7c\xac\xc3\xa6\x2d\xa3\x52\x29\xb2\x48\x02\xc2\xe9\xb1\x45\x65\xf6\x99\x94\xc5\x1f\xd7\x31\x96\x04\xcd\x28\x8b\x53\x94\xe9\x1f\xdf\xa0\xc8\xd7\x25\xa2\xef\xd4\x63\x2f\xcb\x88\x03\x54\xc0\xd7\x3c\xd4\x6f\xde\x43\x8e\xf2\x9a\x78\x30\x84\x9a\x9e\x24\x66\xfd\xc3\x49\xdb\xae\x73\x9b\x57\xcf\x6a\x03\x02\x6b\xfa\x07\x0e\xa8\xd9\x17\x39\x26\x6d\x1c\x9e\xd1\x64\x54\xda\x1e\x17\x01\xcf\xd9\x00\x58\x34\x23\x98\x9f\xd7\xf1\x0b\x22\xf5\x26\xa7\xba\x1d\x5d\x0b\xbe\x26\x42\x52\x92\xba\xf4\xce\x38\x4f\x74\xca\x72\x9f\xda\x4a\xda\x9e\xb3\x28\xa3\x31\xe6\x1f\x98\x7f\xcd\xe6\xc0\x41\x6b\x18\x39\x38\x70\x1e\x7e\xba\x21\x0f\x9f\x61\x04\xc2\xb2\xcb\xa3\xe7\xd9\xed\xdd\x2d\x4e\x32\x32\x42\xfc\x06\xc4\x04\x94\x28\x98\xd7\xf0\xc0\x99\xaf\x66\x95\x40\x6a\xdb\xba\x1b\xf2\x10\xbc\x36\x63\x45\xf5\x59\x83\x2f\x08\xb0\x66\x77\xc1\x13\x1a\x3d\x5c\x66\xda\xc5\xb3\x48\x6e\x86\x83\xf3\x5b\x22\xee\x04\x95\xa4\x45\xbb\xc3\xc1\x1b\x9a\x48\x22\x10\x42\x75\xc9\x0d\x07\x17\xad\xd2\xae\xac\x5a\xf2\x87\x82\x10\xa3\x4d\x7f\xad\x27\xe9\x81\x00\xbd\x25\xd2\x77\x55\xe1\x40\xa8\x33\x92\x2c\xc9\x25\xa9\x21\x95\x2c\x95\xcc\xbe\x2b\xcb\xf3\xa0\x80\x54\xc1\x34\xe7\xf7\xb0\xd5\x9c\x55\xe9\xa9\xb9\x3e\xac\xf3\x6c\xc6\x0b\xc6\x0f\xab\x9c\xeb\x19\x5b\x57\x09\x40\x30\x08\x64\xf3\x42\x55\xf5\x3a\x01\x42\x11\x66\xd2\x28\x7a\xb1\xdd\xbc\x40\xb0\xed\xd6\xa9\xf1\x8c\x48\x0c\x26\x12\x2a\x09\x82\x92\x57\x44\x62\x3d\xe8\x81\xe5\x99\x79\xd7\x76\x18\xcf\x52\x29\x70\x24\x3d\xf4\x42\x05\x8e\x33\x2c\xd2\x25\x4e\x20\xa1\xa2\x95\xfe\x1b\x6d\x36\x16\xec\xdd\x14\xfd\x82\x52\x86\x6f\xc8\x17\xc9\xbf\x44\x78\x45\x12\xb4\xdd\x22\xc9\x91\x02\x98\x3d\x40\x29\xa1\x15\xb3\xfa\x8a\x5e\x76\x01\x06\xc8\x59\xce\x0f\x90\xff\xe9\x33\xa0\x18\x39\xdb\x6b\x48\x34\xb3\x6c\x8e\xd4\x09\x6d\x78\x9c\xcd\xe7\x44\x28\x75\xad\xbe\xba\x15\xd5\x2c\x9b\x87\x3f\x81\x76\x6c\x56\x60\x59\x92\xb8\x35\x02\x4c\x38\x7e\x50\x11\x56\xc7\x03\x10\xb2\x09\x3d\xab\xaf\xa1\x43\xc7\x71\x36\xf7\x0f\x66\xd9\x3c\x68\xda\xdb\xbb\x01\x88\x08\xe1\xaa\xaa\xb6\x42\x55\x9e\xc7\xd9\x1c\x29\x0b\x4a\x11\x54\x30\x00\x00\xcc\x3c\x52\x5c\x40\x66\x21\x98\x53\x73\x4d\xa0\x05\xe4\x94\x51\xfb\x4b\xca\x0a\x07\x24\x9f\x1f\x75\xe8\x9f\x7c\xf6\x15\x69\x15\x0d\x07\x5f\xd0\x04\x7e\xeb\x3f\x94\x28\x8c\x8d\x9a\xd8\xf6\x50\x58\x69\xe8\x38\xfb\x0b\x28\x5b\xb4\xc9\xce\xb9\x48\x38\x5f\x87\x6f\xa8\x48\xa5\x1e\xa8\x51\xf7\xf3\xc6\xdb\x6c\x72\x94\x20\x97\xed\xd6\x3b\xfc\x39\xd0\x48\x54\x72\x6e\x01\x1c\xed\x04\x64\x31\x9d\xbb\xb4\xb8\x13\xc1\x2d\x68\xec\x21\xcc\xe2\xe2\xf9\x87\x2c\x49\xa0\x9c\x31\xcb\xf1\xd9\x57\xbd\xcd\x51\xd6\x53\x59\xa9\x41\x75\x61\xc9\xd0\x01\x43\xdd\xb6\x72\x0d\x28\x69\xea\x02\x4f\x5f\x5d\x68\xce\xfe\x91\x72\x66\xb8\x9b\x65\xf3\x91\x89\x71\x3e\x9f\x7d\x0d\x72\x79\xb8\xac\x14\x3b\x1d\x35\xd1\x33\xa4\x77\x63\xec\xc5\x91\x5a\xb3\x2a\xbd\x4b\x92\xe8\x1d\xa1\x4e\x2f\x25\x09\xda\xb1\x0b\x6b\x1f\x6a\x8e\xa6\x69\x87\x45\x74\xda\x44\x0d\x6f\xae\xe8\xaa\x8d\x74\x5a\x49\x17\xaa\xc2\x6a\x06\x83\xd5\xd7\xf0\x32\x6c\x02\xee\x52\xbf\x71\x5c\x2b\xbe\x1c\x29\x32\xff\xb5\xeb\x11\x92\xcd\x82\x08\x0f\x39\x5e\x56\x8c\xb2\x6c\x35\x6b\x1d\x84\xf4\x42\x30\xf3\x5a\xbc\x65\x6f\xc5\x37\xf9\x90\xd5\xde\x7b\x5c\x77\x67\x08\x8c\xfe\xf7\xdb\xef\x6b\xb0\xfa\x87\x3a\xe7\x2a\x42\x69\x4b\xf4\xfc\x89\xca\xa5\x13\x4a\x9e\x35\x96\x2a\xdc\x2a\xe3\xb7\x46\xd5\x11\xaa\x14\x1b\xbf\x47\x90\x9d\x2b\xd7\x38\x9c\xe8\x9d\x98\xae\x68\x8a\x6a\x06\xf6\x45\xbe\x57\xe2\x7d\xbb\x85\x75\xdd\xc0\x6c\x0b\x20\xb3\xfd\xcd\x12\xe2\x06\x68\xb3\x0f\xb6\xd5\x90\xda\xf8\x53\x06\xa5\xa1\xdd\x71\x6a\x12\x36\x2d\xe1\x5a\xbb\x4b\x75\xc0\xae\xdd\x38\xf8\xb3\x75\x32\x8d\x39\xe7\x6d\xb0\x05\xe7\x6d\x5e\x68\xf4\x94\x85\x80\x91\xf4\x8e\xca\x68\x59\xcc\xdf\x68\xcb\xec\x99\xc1\x22\x9c\x12\xd4\x94\x61\x1a\x82\x62\xcf\x94\xf2\x0c\x39\xa5\x31\xa9\x54\xb2\x8a\x4e\x2b\x7b\xe4\x95\xde\x89\xe5\x79\x33\xcb\xb3\xa5\x96\x9d\xb9\xe5\x29\xc9\xa5\x96\x5d\x9e\x92\x5e\x6a\xf9\xe5\x49\x09\xa6\x1c\xcd\x6c\xe0\x6a\x4c\x64\xbf\x45\xba\x79\x7a\xbe\xa9\x27\x1c\x27\x6b\x98\x2d\x53\x53\xb2\x69\x49\x28\x9d\x3b\x9a\xa7\x6c\x7d\x7a\xae\xe1\xab\x23\x8a\xee\x4c\x55\x49\x3b\x28\x30\xd9\xa1\x7d\x77\x64\xb7\x35\x80\xbf\xdd\x30\x0e\xca\x96\xd1\xba\xd7\xd1\xab\xf9\xde\xa7\xcf\x5e\xd0\xb2\xdf\xd9\x4b\xb6\xef\x69\x2a\x7f\x0b\xf9\xc2\x3a\x7e\x02\x8b\x7d\xfa\xfc\x2b\x08\xb9\x62\x6d\x9f\xbe\x37\x59\x96\xc6\xf7\xe6\xbc\x28\x4f\xb1\x8a\x08\x93\x57\x69\x7c\x0f\x1e\xf2\xaa\x92\x3f\x35\x92\xd1\xf7\xf9\x05\x9d\x56\xa1\xda\xca\xf7\xd5\x60\x53\xf4\x6f\xd4\x61\xb3\xbf\x7c\x76\xfc\xa5\xa6\xdb\xe3\x8c\x26\x71\x0f\xaf\xb9\x21\x29\x9a\xeb\x73\x9f\xde\x47\x8d\x7d\x50\xeb\x53\x95\xda\x59\x64\xad\x5d\x44\x35\x13\x1c\x4e\xca\x03\x1b\x75\xb5\x0c\x52\x32\x57\x0a\x91\xae\x93\xf4\x33\x2f\x08\xfd\x0b\x2b\x43\xd0\x75\xfb\x41\xa0\x1e\x37\xfc\x35\x1c\x6a\xa9\x3b\x6a\x65\x3f\xae\x1b\xf5\xab\xd0\x06\xce\xb2\x93\x6a\x55\x36\x84\xda\x48\xad\x6a\x86\xb4\x3c\x94\x1a\xf7\xdd\x76\x77\xa5\x71\x55\xe1\x01\xf6\xee\xd0\x0c\x6c\x15\xe7\xa9\xee\x11\xea\xc8\xe0\x18\x41\x91\x94\xb3\xba\xdd\x7a\xa3\xa6\xaa\x29\x78\xdd\x7f\xc9\xe2\xe0\xb2\xb5\x75\xe4\xa7\x25\x11\xc4\xaf\xae\xd3\x84\x6c\x82\xfe\xdb\x1b\xf5\x5e\x5b\x67\xa2\x6d\xf7\xbe\xd7\x6e\x11\x5b\xda\x8a\x38\x8e\xfd\xc6\xc2\xa0\x69\x51\xaf\x3d\xff\x35\x6e\xa1\x4a\xc7\x81\x17\x58\x10\xa6\xab\x9d\x5c\xad\xe6\x99\x72\x03\xd3\xee\x53\x98\xa3\x19\x74\x75\x62\x1e\x15\x72\xef\x94\x7a\x15\xd7\x17\x1a\x97\x24\xad\x07\xcc\x7d\x71\x89\x95\x4a\xf7\xce\x78\x0c\x41\xbc\x2b\x36\x4c\x8f\x55\x84\x4d\xbb\x93\x89\x3d\xae\x4f\xd1\x5c\xf0\x15\x9a\x1e\xf7\x08\x4f\xfd\x28\xa8\xdf\x92\xf4\x49\x3a\xc5\x31\xa7\xbc\xcf\x6f\xcd\x9d\x9b\xd4\xe9\x71\x78\x4c\x16\x94\xf9\x9d\x67\x91\x8d\x5d\x91\xce\xad\x88\x8d\x8b\x0e\xf2\xbd\xe2\xae\xba\x01\xce\x98\x34\x01\xb4\x0b\x2c\xf5\x81\x21\x58\x34\x0c\xc3\x20\x54\xdd\x16\xaa\x75\x28\xbc\x24\xe9\x9a\xb3\x94\xf8\x41\xa8\xdb\x33\xfc\x20\x3c\x8a\x63\xbf\xd2\x99\x31\xca\xfb\xe4\xde\x70\xb1\xc2\xaa\x0b\xc2\x10\xf0\xe3\xab\xc0\x76\x19\x65\x4c\x16\xc9\x34\x4f\x75\x9d\x72\xdf\x6c\x8b\x23\x60\x63\xcc\x4d\xed\x8a\x9a\x81\xc0\xdc\x66\xa5\xb9\x82\xf6\x64\xfe\x28\x49\xba\xf5\x67\xcf\x92\xe5\x7d\x78\xc2\x57\x2b\xaa\xa4\xe5\x5e\x65\xa5\xce\x99\x72\x1f\x93\xdc\xdb\x25\x9e\xc9\x15\xda\x2f\xf4\x2b\x52\x74\x2c\xb1\xaf\x8b\xed\x92\xa2\x15\x60\xcf\x3c\xdf\x9c\xa9\xbb\xda\x09\xf6\xa9\x3c\x2d\xbb\xa6\x3c\x2b\x95\xce\xf5\x1e\x5d\xc0\xae\x21\x4c\xc1\x75\xb5\xe4\x77\x3d\x02\xdf\x82\x48\x84\x3b\xb5\x9c\xb7\x83\xf7\x0f\x7b\xfd\xd6\xaf\x87\xbd\x1e\x95\xb6\xd3\x3b\x19\x97\xd2\x10\x8d\xa1\x10\xfa\x95\x43\xa1\xba\x8f\x04\x49\xe7\xab\xbc\xa1\xac\x33\x0e\x2a\x97\xa6\x71\xe3\xe2\xf2\x3e\xbc\xe4\x49\x32\xc3\xd1\x8d\x1f\x54\x88\x29\x5e\x0e\x08\x76\xfb\xb7\xe3\xde\x7d\x44\xbf\xa7\xe2\x9f\x49\xe1\x1d\xce\xdd\xa4\xb7\xbe\x76\xf4\x47\xf1\x6d\xdf\x70\xba\xa7\x5b\x07\x45\x5b\x46\xa7\x6a\x67\x94\xc5\x3d\x74\xab\x9d\x19\xa3\x52\xdb\x7d\x67\x53\xc7\xde\x2a\xde\xcf\xa3\xf5\x99\x46\xd9\x04\xce\xf0\x0d\xe9\xc2\x71\x06\x70\x8e\x6f\x17\x0d\x21\x5a\x7c\x8f\xe9\x04\xd9\x51\x09\xaf\xd5\xaf\x77\xd3\x3e\x55\x70\x3e\xb7\x54\x01\x93\x24\xac\xcd\x6f\xe0\xeb\xdd\x14\x4d\x72\x0c\xf5\x7a\xd7\xe1\xb6\x90\xd7\xbf\x70\x42\x63\x2c\x3b\x65\xf6\x04\xd1\xec\xf6\xa4\x97\x1d\xae\xd4\x73\x43\xeb\xb0\xa4\x1b\x71\xba\x18\xb2\xe7\xa2\xd6\xc7\xd4\x4e\x37\xef\xbb\xa8\xb7\xf7\x38\x31\xf3\x44\x90\x1e\x0b\x4c\x8f\x51\xa4\x26\xa6\x7d\xfc\x2b\xcf\x9a\x94\xf5\xcb\x99\x7d\x89\x68\x7a\x13\xa6\xcf\x49\xa0\x13\x6f\x9f\x90\x24\xbb\xb6\x0a\x74\x6e\x4e\x0e\xc1\x76\x2b\x26\xaf\xcc\x39\xcb\x68\x1c\x7e\x20\x77\xff\xfa\xb3\x1f\x84\xe6\x40\x57\x83\x92\x7b\x9a\x4a\xca\x54\xa7\x69\x62\xac\xab\x77\x76\xb5\x2b\x04\x2a\x45\x03\xf9\x2e\xb6\xf6\x84\x6b\xef\x4d\x0d\x7b\xc5\xdb\x6d\x7a\xc8\xb4\x79\xd8\xe3\xd0\x77\x2c\x25\x42\xfa\xf2\x7e\x9f\x54\xde\x25\xb2\xa6\xac\xbe\xa7\x69\x3e\xc6\x30\x9f\xcd\x24\x1f\x91\xd7\xfb\xe5\x92\x3e\x59\x5d\x6b\xc7\x41\xdd\xdf\x8d\xf2\xe4\xfa\xef\x58\x3b\x68\x31\xc4\xe5\x02\xa2\x6f\x6e\x40\xb7\x66\x62\x8f\x2d\xa0\xc2\xdf\xc3\x96\xf6\xcb\x4b\x7b\x85\x33\x73\x86\x49\xe3\x51\xd3\x39\x26\x48\xe6\x4a\xff\xb9\xde\x7d\xa4\x29\x9b\x8f\x34\x2b\xb3\x56\x94\xbd\x27\x6c\x21\x97\xf6\xa0\x8e\xce\x51\x42\x98\x9f\xa7\x75\x1a\x37\xd3\xfb\x37\xe4\x9e\xda\x15\x68\xb6\xdb\xca\x5d\xab\xfb\x4a\x05\xd2\x08\x41\xd0\x59\x2a\xd1\x8c\xa0\x84\xb3\x05\x11\x48\x2e\x31\x6b\x45\xe8\x05\xc5\x65\x6d\xfd\xc6\xae\xc4\x0d\xbe\x7f\x1c\x37\xff\x55\x5e\x3c\x47\xb3\x27\x37\xe9\x92\x0b\xd9\xc8\x8e\x83\xb1\x3f\x3b\x6b\x2c\x21\xd8\x5a\x66\x04\x59\xb4\xb2\x70\x61\xa6\x1e\x4e\x90\x7e\x61\x3e\x3c\xcb\x52\x79\xc2\x57\x6b\x9a\x10\xff\x67\x97\x16\x8b\x75\xbb\xfd\x39\xbf\x29\x47\xdf\xf5\x40\x1e\x9e\x61\x19\x2d\x4d\x96\xeb\x14\xe9\x3e\x72\x5b\x01\x62\x74\x47\xe5\x12\x35\x53\xda\x5f\x66\x84\x65\x2b\x47\xfb\xc6\x9b\x54\xe1\x52\x9d\x83\x3a\x78\x50\x55\xee\x66\x83\x08\x10\x80\xf4\x3a\x8c\xcb\x6a\x73\x0f\x3a\x38\x40\x96\x26\xd5\x82\x9a\x9f\x40\xef\x90\x41\x2e\x82\xdc\xc7\xad\x2c\x76\x51\x5c\xa7\xc1\x5e\xe1\x37\xb6\x1d\x21\x88\x28\xf9\xc5\xfc\xa8\x46\xa5\xfa\x4b\xf3\xe7\x92\xdd\x2e\xec\x9d\xed\x82\x72\xe7\x65\xb9\xac\x5e\x96\xb7\x39\x30\x5d\x95\x14\xd8\xa5\xa3\x9a\xe7\x2a\xf8\x7d\xa3\x10\x49\x53\xed\xb4\x20\xf9\x6f\x19\x4e\x52\x24\x79\x1b\xe6\x3d\x8c\xf1\x3e\x4a\xb2\x94\xde\x92\xb3\xfd\xf9\x9a\x94\x96\xaf\x61\x7a\x34\x87\x5d\x58\xf7\x88\xb6\x94\xed\xc9\x54\x2d\x69\x3c\x86\x95\x85\x2a\x06\x44\x97\xbe\x0a\xe4\x8f\xd1\xd7\xfe\xac\xb5\xe9\xeb\x19\x98\xec\x42\xdc\xd3\x61\xbb\xfa\x0b\x6f\x88\xb9\xb5\xc6\xf6\x5d\xca\xde\xf5\xd0\x1e\xe7\x1a\xdd\xc5\x50\xe9\xf0\xe4\xa0\xf3\x06\xe3\x09\xd7\xbe\x53\xc3\xa6\x29\x70\x1b\x6d\xa2\xad\xc3\xab\x32\xad\xda\xc1\x36\xe8\xbe\x43\x3d\x44\xea\x73\x34\x1f\xc8\x9d\x6d\x8d\x74\x61\x2c\x6d\xea\xa2\x58\x8a\x8c\x04\xa3\xc6\x3e\xde\x3e\xeb\xb4\x22\x6e\xeb\x82\x6a\x77\x91\x7a\x4b\xd4\xaf\x20\x8f\x77\x4c\xfa\xcd\x24\x3f\x59\x14\x2d\x68\x9f\x20\x88\x72\x42\x7b\x3e\x39\xbc\x49\x38\x96\x7f\xf9\xf3\x1f\x47\x10\xd5\x4e\xb7\xe7\xb4\x08\xf5\x02\xe6\xaf\x25\x89\xe6\xa0\xf0\x62\x0b\x78\x0b\x84\xaa\x13\xd7\x11\x45\x0f\x51\xed\xac\x97\x72\xb9\xf1\xd9\x57\x12\x49\x0f\xfd\xf2\x4b\xc3\x20\x16\x02\x3f\xe4\xd5\x52\x4f\x89\xc1\x2e\x71\xb4\x3b\xfc\x57\xce\x0f\x75\x0e\xd8\xef\x6c\xd2\xbc\x48\x09\xf9\x42\x87\xeb\x99\x7a\x43\xad\x47\xba\x78\xcc\x19\x68\x9f\xee\x40\xf3\x66\x67\xf3\x4b\x69\x01\xea\x9f\x2a\xb4\xaa\x3c\x8d\xcf\x73\x67\x11\xb1\xa2\x69\xaa\x1a\x54\x7e\x41\x7e\xfd\xe9\x64\xa2\x34\xe0\xbc\xd9\xe8\x76\x3d\x07\xf6\xa8\xbb\xf4\x22\xa3\x5e\xe6\x53\x43\x37\x50\xfe\x6a\x63\x9f\xa4\xb4\xd3\xdf\xf2\xfa\xa5\xbb\x0f\xa8\x92\x95\x14\xa9\xa1\xe9\x53\x0d\x8c\xb7\x0d\xcb\x9e\xb6\x07\xf6\x32\xba\x61\x93\x8d\x16\x3f\xba\x33\xcf\x73\x33\x0d\xa9\xc7\x90\x48\x99\x7c\x36\x76\x01\xd7\x63\x78\x75\x93\xcb\xb3\xb2\x6a\xb3\x8b\xa1\x6f\xae\x7f\x3e\x1b\xbf\x16\xdf\x63\x78\x2e\xe5\x91\xe7\xd6\xaf\x4a\x24\x86\x48\x58\xe8\xd9\x38\x56\xc8\x1e\xc3\xae\x13\xfe\x3b\xe2\x3f\x9d\xa3\xe2\x8b\x22\x5f\x53\xce\x6c\x3f\xac\x66\xa8\xf9\xdb\x59\x7d\xd9\x50\x5f\x35\xd4\x27\xaf\x33\xd3\x18\x5b\x22\xbf\xfc\xbb\x94\x4c\xf6\xc8\x1d\xd3\x63\x27\x6b\x3c\xff\xb5\x53\x5f\x22\x6a\xd7\x4e\x34\xce\x3f\x09\xe5\xbe\xb0\xdf\x96\x49\xf6\xb9\x09\x1e\xfc\x26\x2d\x6d\xbf\x4f\x13\x07\x42\x08\x3d\xf9\x6e\xd3\xfd\xcc\xc1\xf0\x0f\x7c\x21\xfb\xfb\xdd\x61\xbb\xb7\x7a\xe6\x53\x15\xfb\xdd\xea\xf5\xb2\xb2\x3e\x0d\x3b\xfd\x84\xf9\x98\x18\xf0\x6c\xde\xdf\x76\xc3\x37\x68\x69\xc2\x2a\x7d\x3e\xa3\xf9\xf6\xcf\x7e\x1e\xa4\xcf\xed\x5b\xeb\x35\x62\xff\xd8\x35\x52\xb7\x43\x25\xb7\xf9\x77\xbc\xf5\xab\x76\x0c\x4d\x49\x42\x7a\x65\x98\x58\x4d\xec\x71\xdd\xd7\x37\xad\xf4\x5d\xf9\xff\x4b\x0f\xe0\x53\xbc\xfc\xb7\xcb\x25\x7d\xbb\x2f\xdc\x8a\x66\x9f\x06\x43\x37\x2a\x6a\x0d\xfe\x5e\x51\xb1\x9f\xfd\xe4\x76\xbb\x4f\x65\xd4\xbf\x8d\xb5\x1f\x11\xed\xfd\x0f\x5f\x1a\xed\xb0\xb7\x67\xf4\x89\x51\x3b\xbe\x0e\x6d\xbe\x6c\xa8\x84\x1a\x98\xcf\xc0\x34\x16\xa3\xe6\x28\xdb\xf9\x34\x94\x3e\xd4\x2e\x1e\xd8\x57\xe7\xca\x5f\xdd\xac\x0a\xcc\xf9\x8e\xf0\x41\x79\x64\x53\x7c\x09\x75\x77\x1b\x69\xf5\xcb\x56\x9b\xd2\xb7\xe3\xd4\x97\x4f\xe3\x59\xfe\x8d\x1f\xf3\x81\x2b\xe7\x4b\x56\x6f\x4f\xaf\xb5\x32\xcc\xd0\x9b\x8c\x45\xc3\x81\xfa\x1c\x5b\xc3\xe3\x8f\x4d\x4f\xcd\xa7\xd0\x6a\x03\xc6\x2c\xd5\x49\x97\xfe\xdc\x56\xfe\x3d\xf7\xd4\x7e\x06\x0e\x04\x6a\x2f\x02\x12\xbe\xa0\x51\x0f\x9e\x77\x7d\xba\xcb\x91\x68\xc3\xe8\xe6\x37\xfa\xb0\xcf\x60\x50\xbc\x86\xf5\x96\xc8\x8b\x24\x13\x38\xf9\x78\xf9\xde\x0f\xd4\x3b\xc8\xe8\x20\xa7\x67\x30\x00\x0d\x1c\xee\xdb\x9e\xaf\x3f\x6d\x74\x7e\x55\x86\xec\xd7\xc9\xa3\x3e\x7a\x34\xaa\xd2\x78\x45\xd9\x22\x21\x7d\x69\xec\xd3\x66\xac\x69\xfc\x58\x06\xec\x57\x80\x28\x50\x6d\x56\x87\xfb\x47\x82\x9c\xc1\xa6\x8e\x54\xe7\x8d\xb1\x66\x1d\xa9\x17\x3e\xd5\xdc\xf4\x8f\xa0\xae\x7d\xc9\xfd\xc3\x68\x2e\x3f\x15\x68\x0b\xc2\x83\xed\x70\xfb\x7f\x01\x00\x00\xff\xff\x53\x72\x35\x29\x27\x62\x00\x00") func etcTemplatesServerTmplBytes() ([]byte, error) { return bindataRead( @@ -224,7 +224,7 @@ func etcTemplatesServerTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "etc/templates/server.tmpl", size: 25126, mode: os.FileMode(420), modTime: time.Unix(1493398102, 0)} + info := bindataFileInfo{name: "etc/templates/server.tmpl", size: 25127, mode: os.FileMode(420), modTime: time.Unix(1507676077, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -244,7 +244,7 @@ func publicWebui1e9113c2ec73d227dbe2194e81747f50Png() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/1e9113c2ec73d227dbe2194e81747f50.png", size: 1867, mode: os.FileMode(420), modTime: time.Unix(1493398104, 0)} + info := bindataFileInfo{name: "public/webui/1e9113c2ec73d227dbe2194e81747f50.png", size: 1867, mode: os.FileMode(420), modTime: time.Unix(1500502329, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -264,7 +264,7 @@ func publicWebui46661d6d65debc63884004fed6e37e5cSvg() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/46661d6d65debc63884004fed6e37e5c.svg", size: 41, mode: os.FileMode(420), modTime: time.Unix(1485368500, 0)} + info := bindataFileInfo{name: "public/webui/46661d6d65debc63884004fed6e37e5c.svg", size: 41, mode: os.FileMode(420), modTime: time.Unix(1488503999, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -284,7 +284,7 @@ func publicWebuiBundleB8f2a39a475c1e3bc35cJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/bundle.b8f2a39a475c1e3bc35c.js", size: 1759614, mode: os.FileMode(420), modTime: time.Unix(1493398104, 0)} + info := bindataFileInfo{name: "public/webui/bundle.b8f2a39a475c1e3bc35c.js", size: 1759614, mode: os.FileMode(420), modTime: time.Unix(1500502329, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -304,7 +304,7 @@ func publicWebuiFontawesomeWebfontEot() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/fontawesome-webfont.eot", size: 165742, mode: os.FileMode(420), modTime: time.Unix(1485368500, 0)} + info := bindataFileInfo{name: "public/webui/fontawesome-webfont.eot", size: 165742, mode: os.FileMode(420), modTime: time.Unix(1488503999, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -324,7 +324,7 @@ func publicWebuiFontawesomeWebfontSvg() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/fontawesome-webfont.svg", size: 444379, mode: os.FileMode(420), modTime: time.Unix(1485368500, 0)} + info := bindataFileInfo{name: "public/webui/fontawesome-webfont.svg", size: 444379, mode: os.FileMode(420), modTime: time.Unix(1488503999, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -344,7 +344,7 @@ func publicWebuiFontawesomeWebfontTtf() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/fontawesome-webfont.ttf", size: 165548, mode: os.FileMode(420), modTime: time.Unix(1485368500, 0)} + info := bindataFileInfo{name: "public/webui/fontawesome-webfont.ttf", size: 165548, mode: os.FileMode(420), modTime: time.Unix(1488503999, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -364,7 +364,7 @@ func publicWebuiFontawesomeWebfontWoff() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/fontawesome-webfont.woff", size: 98024, mode: os.FileMode(420), modTime: time.Unix(1485368500, 0)} + info := bindataFileInfo{name: "public/webui/fontawesome-webfont.woff", size: 98024, mode: os.FileMode(420), modTime: time.Unix(1488503999, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -384,7 +384,7 @@ func publicWebuiFontawesomeWebfontWoff2() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/fontawesome-webfont.woff2", size: 77160, mode: os.FileMode(420), modTime: time.Unix(1485368500, 0)} + info := bindataFileInfo{name: "public/webui/fontawesome-webfont.woff2", size: 77160, mode: os.FileMode(420), modTime: time.Unix(1488503999, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -404,7 +404,7 @@ func publicWebuiGlyphiconsHalflingsRegularEot() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1485368500, 0)} + info := bindataFileInfo{name: "public/webui/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1488503999, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -424,7 +424,7 @@ func publicWebuiGlyphiconsHalflingsRegularSvg() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/glyphicons-halflings-regular.svg", size: 82, mode: os.FileMode(420), modTime: time.Unix(1485368500, 0)} + info := bindataFileInfo{name: "public/webui/glyphicons-halflings-regular.svg", size: 82, mode: os.FileMode(420), modTime: time.Unix(1488503999, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -444,7 +444,7 @@ func publicWebuiGlyphiconsHalflingsRegularTtf() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1485368500, 0)} + info := bindataFileInfo{name: "public/webui/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1488503999, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -464,7 +464,7 @@ func publicWebuiGlyphiconsHalflingsRegularWoff() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1485368500, 0)} + info := bindataFileInfo{name: "public/webui/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1488503999, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -484,7 +484,7 @@ func publicWebuiGlyphiconsHalflingsRegularWoff2() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1485368500, 0)} + info := bindataFileInfo{name: "public/webui/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1488503999, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -504,7 +504,7 @@ func publicWebuiIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/index.html", size: 460, mode: os.FileMode(420), modTime: time.Unix(1493398104, 0)} + info := bindataFileInfo{name: "public/webui/index.html", size: 460, mode: os.FileMode(420), modTime: time.Unix(1500502329, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -524,7 +524,7 @@ func publicWebuiStylesCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "public/webui/styles.css", size: 206041, mode: os.FileMode(420), modTime: time.Unix(1493398104, 0)} + info := bindataFileInfo{name: "public/webui/styles.css", size: 206041, mode: os.FileMode(420), modTime: time.Unix(1500502329, 0)} a := &asset{bytes: bytes, info: info} return a, nil }