diff --git a/CHANGELOG.md b/CHANGELOG.md index cb6dbf46d..9a12e4505 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,13 @@ **checkout** * Introducing Flamingo events on final states of the place order process +* API + * In case of an invalid cart during place order process we now expose the cart validation result, affected endpoints: + ``` + GET /api/v1/checkout/placeorder + POST /api/v1/checkout/placeorder/refresh + POST /api/v1/checkout/placeorder/refresh-blocking + ``` **customer** * Add mockery mocks for both `Customer` / `CustomerIdentityService` for easier testing diff --git a/cart/domain/validation/cartValidator.go b/cart/domain/validation/cartValidator.go index 4a00cd76f..4474761e4 100644 --- a/cart/domain/validation/cartValidator.go +++ b/cart/domain/validation/cartValidator.go @@ -2,13 +2,14 @@ package validation import ( "context" + "flamingo.me/flamingo-commerce/v3/cart/domain/decorator" "flamingo.me/flamingo/v3/framework/web" ) type ( - //Result groups the validation result + // Result groups the validation result Result struct { HasCommonError bool CommonErrorMessageKey string diff --git a/checkout/interfaces/controller/apicontroller.go b/checkout/interfaces/controller/apicontroller.go index 94e4e1004..6a416b9e1 100644 --- a/checkout/interfaces/controller/apicontroller.go +++ b/checkout/interfaces/controller/apicontroller.go @@ -7,6 +7,7 @@ import ( "flamingo.me/flamingo-commerce/v3/cart/domain/cart" placeorderDomain "flamingo.me/flamingo-commerce/v3/cart/domain/placeorder" + "flamingo.me/flamingo-commerce/v3/cart/domain/validation" "flamingo.me/flamingo-commerce/v3/checkout/application" "flamingo.me/flamingo-commerce/v3/checkout/domain/placeorder/process" @@ -35,12 +36,13 @@ type ( // placeOrderContext infos placeOrderContext struct { - Cart *cart.Cart - OrderInfos *placedOrderInfos - State string - StateData process.StateData - UUID string - FailedReason string + Cart *cart.Cart + OrderInfos *placedOrderInfos + State string + StateData process.StateData + UUID string + FailedReason string + CartValidationResult *validation.Result } // placedOrderInfos infos @@ -181,17 +183,24 @@ func (c *APIController) getPlaceOrderContext(ctx context.Context, pctx *process. PlacedDecoratedCart: decoratedCart, } } + + var validationResult *validation.Result var failedReason string if pctx.FailedReason != nil { failedReason = pctx.FailedReason.Reason() + if reason, ok := pctx.FailedReason.(process.CartValidationErrorReason); ok { + validationResult = &reason.ValidationResult + } } + return placeOrderContext{ - Cart: &pctx.Cart, - OrderInfos: orderInfos, - State: pctx.CurrentStateName, - StateData: pctx.CurrentStateData, - FailedReason: failedReason, - UUID: pctx.UUID, + Cart: &pctx.Cart, + OrderInfos: orderInfos, + State: pctx.CurrentStateName, + StateData: pctx.CurrentStateData, + FailedReason: failedReason, + CartValidationResult: validationResult, + UUID: pctx.UUID, } } diff --git a/docs/openapi/docs.go b/docs/openapi/docs.go index 7c282ee64..ca0a52473 100644 --- a/docs/openapi/docs.go +++ b/docs/openapi/docs.go @@ -1710,6 +1710,9 @@ var doc = `{ "Cart": { "$ref": "#/definitions/cart.Cart" }, + "CartValidationResult": { + "$ref": "#/definitions/validation.Result" + }, "FailedReason": { "type": "string" }, diff --git a/docs/openapi/swagger.json b/docs/openapi/swagger.json index 4818ec46b..6af42a7c5 100644 --- a/docs/openapi/swagger.json +++ b/docs/openapi/swagger.json @@ -1693,6 +1693,9 @@ "Cart": { "$ref": "#/definitions/cart.Cart" }, + "CartValidationResult": { + "$ref": "#/definitions/validation.Result" + }, "FailedReason": { "type": "string" }, diff --git a/docs/openapi/swagger.yaml b/docs/openapi/swagger.yaml index 6c28b6480..91fe6cf10 100644 --- a/docs/openapi/swagger.yaml +++ b/docs/openapi/swagger.yaml @@ -427,6 +427,8 @@ definitions: properties: Cart: $ref: '#/definitions/cart.Cart' + CartValidationResult: + $ref: '#/definitions/validation.Result' FailedReason: type: string OrderInfos: diff --git a/docs/swagger.go b/docs/swagger.go index 871888812..7965d3064 100644 --- a/docs/swagger.go +++ b/docs/swagger.go @@ -78,7 +78,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _docsOpenapiSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x73\x1b\xb9\xb1\xf0\x7b\x7e\x05\x4a\xf9\xaa\x22\x57\xe9\xb2\xbb\xc9\x57\x75\xce\x3e\x1d\x59\xb2\x1d\x55\x2c\x5b\x47\x97\xcd\x43\x9c\x72\x41\x33\x4d\x12\xd1\x0c\x30\x06\x30\xa4\x99\xd4\xfe\xf7\x53\xb8\x0d\x87\x73\xc5\x0c\x67\x24\x92\xa6\x1f\xb6\xb4\x24\xd0\x44\x37\xba\x1b\x8d\xee\x46\xf7\x7f\xfe\x80\x10\x42\x47\x62\x81\xa7\x53\xe0\x47\xbf\xa2\xa3\x5f\xce\x7e\x3a\x3a\x31\x9f\x12\x3a\x61\x47\xbf\x22\x33\x46\x7f\x12\x82\x08\x38\x49\x24\x61\x54\x8d\xbd\x37\xd3\xd0\xf1\xe7\x04\xe8\xc5\xed\xf5\x1b\x74\x9f\x40\x80\xd8\x04\xe1\x28\x42\xef\x23\x1c\x13\x3a\x65\xe8\x92\xc5\x31\xf0\x00\x50\xcc\xc2\x34\x02\x61\xe1\x6b\x88\x92\xc8\x08\x14\xac\xf2\xe8\x8b\xdb\x6b\x0d\x2f\x3f\x3c\x60\x54\xe2\x40\xae\xad\x4a\x7f\x41\x71\xbc\x06\x26\x37\x49\x7f\x9f\xf2\x48\x7d\x3d\x93\x32\x11\xbf\x9e\x9f\x4f\x89\x94\xc0\xcf\x48\x7c\x4e\x4e\x23\x36\x87\xd3\x89\x9d\x77\x1e\xb0\x38\x4e\x29\x91\xcb\x3f\x16\x41\x40\x8c\x89\x06\xe2\xc6\xfe\x0f\x66\x70\x16\xb0\xf8\x28\x1b\xf7\x7b\x6e\xa9\x11\x09\x80\x0a\xa8\x5f\xea\xcd\xf5\x43\xf5\xcc\x39\x70\x61\x29\xfc\xf3\xd9\x4f\x66\x8c\xfd\xfe\x28\xc1\x72\x26\xd6\x37\xe5\x1c\x27\xe4\x7c\xfe\xf3\x79\x80\x79\x05\x61\xa6\x50\xfe\xd0\x40\xe2\x2c\x4c\x03\x50\xc0\xfe\x51\xfa\x56\x8f\xc0\x49\x12\x91\x00\xab\xdd\x3e\xff\x97\x60\xf4\xa8\x34\xec\x9f\x27\x65\xb8\x12\x4f\x1b\x60\x5e\xaa\x45\x7a\xc1\x11\x69\x1c\x63\xbe\x54\x54\xf8\x00\x12\xc9\x19\xa0\x20\xe5\x1c\xa8\x44\x1a\xd3\x8a\x29\x1c\x44\xc2\xa8\x00\x51\x89\xb1\x1e\xf2\xcb\x4f\x3f\xd5\x7e\x89\x2a\x58\xfc\xf3\xdf\x2a\x7e\x68\xb5\xc6\x60\x06\x31\x6e\x04\xa8\xc7\xfd\x3f\x0e\x13\x05\xed\x8f\xe7\x21\x4c\x08\x25\x0a\xba\x38\x57\xcc\xcc\x59\x14\x01\x3f\x9b\x82\x54\x94\xb9\x03\x91\x46\x15\xf4\x71\xff\x7e\xaf\xfc\xe6\xf7\xea\x15\x1e\xfd\xff\x8e\xb8\x5e\x53\x09\x9c\xe2\x08\xdd\x03\x9f\x03\x47\xef\x38\x67\xfc\x45\xd0\x57\xb8\x5f\xdc\x5e\xf7\x44\xbf\xf4\xe9\xfa\x27\x05\xf2\x1c\x85\x10\x81\x2c\xcb\x25\xda\x31\xa1\xb8\x83\x98\xcd\x41\x6b\x5a\x21\x19\x87\x50\x8b\x05\x52\x4a\x9b\xc7\x7a\x7d\x08\xce\xa6\x67\x88\x48\x88\xc5\x09\x0a\x21\x22\x73\xe0\x04\xc4\x09\x7a\x22\x51\x44\xe8\x14\xe1\x30\xe4\x20\x04\xc2\x34\x44\x1c\x64\xca\xa9\xd0\x72\x06\x71\x22\x97\x1a\xdc\xd9\x7e\x89\xd9\x66\x7c\x76\x10\xb3\xa6\x4f\x7e\xaf\x3c\xcb\xf2\x87\xd3\xb9\xe5\xbb\xf2\x21\x95\xa4\x35\x87\x54\xc0\xa8\x48\x63\x5f\x79\xfc\x7e\xba\x58\x2c\x4e\x15\xff\x9f\xa6\x3c\x02\x1a\xb0\x10\x42\x3f\xc1\xda\x21\xc1\xbf\x08\x43\x91\x89\xb0\x12\x77\x81\x24\xf3\x3a\x1f\x13\xcc\x71\x0c\x12\x78\xfd\x92\x1a\xd8\x58\x2e\x13\x6d\xb7\x08\xc9\xd5\x26\x36\x30\x6c\x81\xe1\xe7\xb8\x6a\x35\xd9\x68\x67\x0f\xb5\x0c\x23\x1a\x96\xda\xdc\x2b\x2c\x71\x35\xf7\xd6\x88\xe8\x18\x48\x4d\x08\x17\x52\x2f\xdd\x03\x35\xaf\xc1\x05\x04\x1b\x46\x72\xf8\x96\x12\x0e\xe1\xd1\xaf\x48\xf2\x14\x5e\x9b\x14\x11\xf6\xa7\x84\xcf\xd8\x9d\x25\x44\x4c\xc2\x30\x02\x5f\x52\xf8\x8d\xde\x32\xb6\x37\xf7\x35\x0f\xec\x5a\x07\x6e\x19\x62\x02\x47\xa9\xd4\xda\xdd\x07\x3b\xbf\xd1\xdb\x86\xa2\xe4\x00\x5e\xaa\xb8\x7d\xe4\x56\xa2\xf6\xa9\xd1\x8c\x5a\x47\xae\x79\xec\x96\xa1\x67\x0d\xf5\x8f\x84\xc2\xcf\x3e\x28\xfa\x8e\xdf\x5e\x34\x7f\xe9\x88\x66\xe3\xf8\x2d\x43\x33\x60\x71\x82\xe9\xd2\x07\x43\x8f\xa1\x5b\x86\x5c\xc2\x84\xbc\x64\xa1\xd7\x19\xe1\x33\x76\xcb\xd0\x0b\x88\xf4\xdb\xb8\x96\x71\x5b\x86\x96\x90\x58\x7a\x6d\x59\xeb\xc0\x2d\x43\x8c\xc3\x94\x30\xea\xcb\x90\x7e\xa3\xb7\x0c\xc5\x80\xa5\x54\x72\x4f\x75\xd2\x3a\x74\x3b\x91\xf3\xdd\x40\xcf\xe1\x5b\x86\x64\x32\x63\x14\x2e\x38\x60\x6f\xc5\xe9\x3b\x61\x1b\x11\xbd\xec\xb6\xa5\x5d\xe6\x6c\x23\xba\x9f\xd2\xf8\x09\xbc\x0c\x53\xcf\xe1\x5b\x86\xa4\x09\x8b\x79\xa0\xd7\x3a\x70\xe0\x7b\x7f\xe9\xd3\x2a\xbf\xda\xc1\x97\xbd\xf6\xab\x07\x5f\x76\xe1\xff\x6a\x7d\xd9\xab\x78\xca\xb9\x8e\xb0\x94\x9d\xda\xfb\x17\x67\x32\x01\x26\x85\x2d\x9a\x70\x16\xeb\xcf\x56\x74\xc8\x85\x91\x8c\x37\x1a\x73\x79\x82\x9e\x01\x12\x13\x55\xb2\x23\x97\xda\x67\x8d\x52\x2a\x59\x1a\xcc\x20\x3c\x84\x98\x72\x9f\x1e\xc4\xb2\xe9\x13\x7f\xb1\x5c\x9e\xff\xc7\xfd\xa5\x6c\x86\xdf\x0f\x21\x27\xf7\x6d\xff\x90\xd3\x9a\xfc\x8a\x13\x24\xd2\x60\x86\xb0\x40\x62\x46\x92\x24\x1f\x4e\xb6\xd1\xa8\x6c\xfc\x84\xf1\x4c\x21\x6c\x51\x58\x4a\x2d\x89\x84\x40\x25\x99\x10\xe0\xd9\x2a\x73\x68\x36\xad\x3a\x83\xea\xcc\x9b\x3c\xbf\xb5\x5b\x39\x09\x96\xb3\x1d\x8a\x6c\x78\x86\xf0\x1c\x0d\x2e\x0c\x27\x9c\xed\x71\x48\xaf\x88\xea\x21\xc4\x57\x47\x99\x43\xc8\xaf\x96\x34\xfb\x1d\x02\x2c\x62\xbb\xdf\x21\xc1\x22\xb6\x7b\x1e\x22\x2c\xa1\xbb\xcf\x21\xc3\x6a\x64\xf7\x3a\x84\x58\x44\xf9\x07\x09\x29\x36\xa0\xbd\xa7\x21\xc6\x22\xc6\xfb\x1d\x72\x2c\x62\xbb\xc7\x21\xc8\xd2\xc6\xee\x69\x48\xb2\xac\x9c\xf7\x39\x44\x59\xc4\x76\xdf\x43\x96\x65\xf5\xb4\xe7\x21\xcc\x1a\x84\x77\x6c\x87\x3b\x87\x34\x4b\x8a\xf9\x07\x0a\x71\x56\xe2\xfe\x43\x84\x3c\x2b\x31\xdf\xdf\x10\x68\x11\xdd\x97\x0e\x89\xf6\x26\xc9\x13\x63\x11\xe0\xc6\x9b\x6c\x81\x26\xa9\x80\xb7\xe6\x8d\x82\x45\xd6\x87\x3e\x9d\x26\x6d\x19\x13\x38\x37\xf8\x0d\xc8\x19\x0b\xbd\x72\xa9\xbc\x67\x6c\x29\xaa\x97\x98\x73\xe2\x27\xe8\x1d\xa6\x6c\x19\xb2\x11\x33\x11\x18\x5f\x65\xee\x3b\xfe\xb5\xd1\x34\xcf\x04\xb5\x56\xc2\x12\x4e\x25\x69\x76\x42\x16\xa8\x12\x82\x50\xda\x06\xa9\xb9\xe7\x6a\x2e\x22\x14\xdd\xbd\xbf\xfc\xf3\x9f\xff\xfc\xdf\x7e\x9a\x50\xcf\x7f\x68\xf9\x55\x2f\x22\x95\x3e\x3d\x24\x7a\xac\x3e\x3d\x44\x94\x9b\x3e\xd9\xd3\xb7\xc1\x97\xea\xb0\x36\x59\x17\x53\x32\x07\x9a\x8b\xc5\x72\x16\x1f\x82\xb1\xd9\xf8\x01\x83\xb1\x07\x2d\x84\x0e\x5a\xe8\xa5\xf3\x5a\x74\xee\x59\x87\xe4\x96\x1d\xd2\x61\x8f\x89\xb2\x2d\x74\xba\x59\x8b\xf4\x1f\x74\x56\xc5\xa8\x2d\x8b\x93\x6b\x5a\xa9\xad\x94\x33\x2c\x91\x98\xb1\x34\x0a\xd1\x13\xa0\x54\xef\xb2\xd7\x75\x49\x4d\xbf\xbe\x6a\xa7\xcc\xb7\x14\x9a\xfd\x83\xe3\x92\x86\x50\x09\xd3\xe6\x1b\x4e\x05\x6d\x28\x2c\xd0\x37\x3f\xbf\x7e\xcb\xb0\x21\x89\x70\x38\xd3\xd0\xe1\x4c\x1b\xc6\xb2\x4e\x98\xd8\xfd\x33\xe9\x22\x0c\xd1\xb5\xd6\x62\xec\x70\x18\xa1\x9d\x3e\x8c\x0c\xd7\xc9\x3c\xcd\x0a\x47\x13\x0e\x43\xbf\x83\x29\xc6\xfc\x19\x64\x12\xe1\x00\xfc\xc8\xf5\xca\x27\x54\x67\x7a\x31\xfd\x17\x8e\x50\x0d\xe1\xd8\x44\x7f\x33\xc7\x9c\x60\x2a\xd1\xb1\x62\xbe\x80\xd1\x09\x99\xa6\x1c\x3f\x45\xd9\x1c\xf1\xa6\x37\x8d\x2d\xec\x9b\x7e\xa4\x7e\xf5\x23\x7e\x8d\x82\xdf\xe4\xb2\x37\x1d\x3a\x1c\xfe\x87\x23\xfd\x70\xa4\x77\x43\xbf\xe3\x91\xbe\x27\xce\xb2\x2b\x8d\x86\xb9\x9d\x68\xf7\xd8\xe1\x64\xdf\xe9\x93\xbd\xea\x9a\x69\x58\x75\x0b\xaf\x99\x07\x75\x8c\x0e\xea\x78\x34\xaf\xe1\x94\x4c\xe4\x69\x80\x79\x58\xe1\x22\xdc\x8b\xfb\x58\x92\x44\x4b\xf4\x81\x4c\x24\xba\x54\x58\x6e\x97\xd2\x56\xd4\x57\x6a\x39\x44\x81\x7f\xf9\x8a\xc4\x37\x72\x7c\xd0\x3f\x07\xfd\x73\x30\x07\x47\x7b\xef\xbe\xad\x4a\x65\xa5\x22\x6a\x6c\x1c\x84\xc5\x4a\xf3\x1c\x94\xce\x41\xe9\xec\x97\xd2\x69\x37\x7a\x12\xbc\x8c\x81\xca\x53\x01\x11\x04\x96\x1c\x7b\x1b\x1f\x3d\x17\xb6\x37\xc2\xad\xc1\xfa\xde\x21\xbd\x7a\x75\xbf\x9d\x45\xa1\x95\xf6\x71\x8e\x43\xbb\x63\x68\x8a\x25\x2c\xf0\x12\x9d\x9a\xca\xf5\x7f\x62\x93\x49\x44\x28\xfc\xc9\x47\x8b\xd9\xb9\xfb\xe7\x7c\xad\x22\x54\xac\x33\x46\x8b\x74\xb2\xdf\x7e\x0d\xb0\x98\x31\xea\xee\xf9\x5e\xd4\x8b\x3d\x53\x50\x0f\xfa\xff\xa0\xff\xb7\x5d\xff\xcf\x75\x5d\x21\xbe\xd7\x57\xde\xdf\x0c\x8e\xa8\xc6\x6a\xdb\x4e\x03\x55\xd3\xd0\xcf\x09\x77\xb0\x49\xcd\xe0\x2d\x11\xca\x83\x4e\x6a\xfa\x64\xbf\x2f\xc2\x07\x55\x73\x50\x35\xf9\x71\x07\x55\xb3\x13\xe6\xcf\x69\x2f\xdf\x7f\x81\x8a\x8f\x42\x49\x16\x11\x88\x4c\xd0\x92\xa5\x68\x86\xe7\x80\x18\x05\x94\x0a\xe0\x88\xd0\x24\x95\xba\xea\xa3\x96\x3e\xf3\xbf\x01\xa6\x3a\xaf\x53\x40\x88\x24\x43\x40\xa4\x52\x1e\xa0\xb6\x03\x61\x64\x17\x87\x98\xfa\x9f\x26\x2f\xd5\x2e\x29\xca\x42\x14\x42\x21\xe7\x94\xe6\x31\x4e\x25\x43\x21\x48\x08\x24\x84\x6f\x76\x4d\x7f\xae\xf9\x12\x15\x5e\xce\xb6\x3e\xe8\xd5\x83\x5e\xfd\x81\xf4\xea\x0c\x82\x67\x96\xca\x73\x9d\x78\xc6\x78\x58\x75\xbb\xdc\xb6\x46\xab\x76\xcd\x3d\xcc\xbe\x55\x23\xc8\x08\x0b\x89\x04\x9e\x43\x88\xd4\x4e\xc0\xf7\x3d\x6b\xbb\xaa\xf7\xf3\xb3\xda\xcf\x4b\x8b\xde\x0f\x22\x56\x96\x39\xcc\xcf\x8c\x7c\x1d\xda\x36\x67\x7b\x5f\xc1\xb8\x97\x98\x4b\x23\x17\x9a\x6f\x90\x56\x04\x28\xe1\x2c\x00\x21\x4e\xd0\x62\x46\x82\x19\x22\x02\x61\xf4\x84\x83\xe7\x29\x67\x29\x0d\xdd\xd7\x68\x86\x69\xa8\x3b\x36\x3a\x1f\xae\xae\x96\xcd\xa2\x48\x8d\xd5\x06\x96\x3b\xe3\x2a\x0b\x62\xbf\xa2\x95\x60\x4a\x7a\x3f\xde\x7d\x2c\xbd\xdd\x51\x36\x1e\x9e\x68\xcb\x8e\x22\xf8\x6e\x59\xd8\x21\x38\x89\xd8\xc2\xc7\x50\xc8\xe0\xef\x9e\x9d\xf0\x73\x27\x21\xff\xe5\xa7\x9f\xd5\x3e\x53\x58\x64\x5c\xb1\xc0\x02\x09\xc5\x57\xcd\x77\xd5\xc1\x14\x9e\xfe\xad\xdb\x4c\xeb\x0d\x6b\x4b\xfc\xa5\xa3\xd2\x7b\x8b\x43\x74\x07\xdf\x52\x10\x8d\x89\x8b\xaf\xa9\xea\x0e\xea\x7d\x17\xbd\x5d\x7d\x35\xfc\x65\x04\x98\xe7\x2c\x1f\xad\xe6\x43\xab\xe7\xc9\x04\x11\x8a\x26\x44\x6d\x63\x5d\x89\xb9\xed\x35\x85\x8a\x85\x7c\x0e\x82\xd0\x8e\xf3\xd0\x77\x86\xf3\x00\xd3\x00\xa2\x1d\x08\x4c\xf5\x16\x20\x8d\xa0\xb2\x80\x78\x4a\xa9\xb6\x76\xca\x96\xd2\x41\x6e\x0e\x72\x63\xff\xf2\x94\x1b\x0e\x13\x0e\x62\xb6\xc7\x82\x93\xbf\x74\xbb\x84\x9d\xbc\xe8\xd8\xdb\xb7\xbe\x34\x68\x31\x82\x50\xb8\xd7\x78\xda\x90\x24\x14\x61\x44\x19\x45\x4f\x11\x0b\x9e\x95\xe4\x55\x27\xc3\x6c\xaf\xa4\x1d\x2e\xeb\x3b\x25\x8c\xa7\x8e\xd1\x36\x08\x2f\x3c\xe8\xd0\x82\x50\x17\xc9\x49\x1a\x21\xc9\xd0\xd4\x66\xb3\xc5\x4c\x48\xc4\x21\xa8\x91\x83\x13\x9d\xdd\x06\xdf\x71\x9c\x44\x60\xaf\xa0\xe6\x1a\xa9\x38\xdf\xf4\xa6\xaa\xb8\x91\x26\x9c\xcd\x49\x58\xe9\xbe\xde\x35\x85\x71\x5b\xa5\x04\x56\x0d\xb8\xca\x6e\x8a\x4c\x83\x28\x62\x2d\x30\x0f\x05\x3a\x76\x5b\x58\x19\x97\x38\x28\x8a\xd2\x2f\x1f\x14\x05\xaa\x51\x14\x56\xc2\xce\xd5\xc5\x28\xad\xe8\x85\xb7\x65\xce\x71\x9b\x2c\xdb\x59\xea\x3e\x58\xf5\xe4\x14\x8a\x41\x17\xb1\xc9\x5a\x96\x2d\x3a\x66\x7c\xed\x02\xa9\x3e\xdc\x2d\x19\xc3\x51\xf4\x79\x52\x4b\xbf\xfc\xbf\x66\x40\x19\xc0\x6a\x8e\x0d\x59\x8c\x09\x3d\x7b\x1f\xb1\xc5\xbd\xe1\x9c\x56\x68\x35\xb2\xd9\x63\x49\xce\xb4\x67\x4f\xff\x82\xa0\xc9\x03\xb5\x36\x2b\xe1\x2c\x01\x2e\x49\xc3\x9e\x55\xce\x0b\xb1\x6c\xa7\x7b\x69\x56\x8d\xa0\x63\x2e\xcf\xaa\x43\xd5\x75\xff\xaa\x85\xbe\xfb\xa8\xe6\x11\xff\xfc\x31\x14\xad\x15\x7f\xe3\x3d\x7d\x0d\x6d\x6b\xcb\x69\x9c\xff\x27\x57\x7a\x24\xa8\xee\x73\xb8\x6d\x9a\xd7\x2c\xbd\x8f\xe6\x35\x36\x0d\x37\x0e\x63\x08\x5d\x51\x91\x2d\x8b\x96\xe4\x76\x44\x3f\xfb\x44\xc7\x24\x04\x1a\xea\xb7\xfb\x6f\xb2\x47\x19\xf5\x6b\xcf\x60\x57\x54\x97\x69\x7b\x46\x7a\xa8\x66\x69\xc7\xbd\xd0\xf1\x95\xb3\x39\x3d\x32\x13\xdc\xbf\x5d\x3d\xc1\x1c\xcf\x0e\x74\x88\xd9\xb3\xff\x9e\xa8\x3b\x5c\xad\x5a\xa8\xfb\xb7\x5b\xe7\xd9\x5f\x7e\xfa\x4b\x27\x29\xf8\xc4\x24\x7a\xcf\x52\xfa\x32\x41\xc1\x1f\x38\xa9\xe8\x25\x12\x8a\xf4\x5f\x96\x54\x47\xb9\x75\xac\x2d\xdf\x1d\x8c\x17\x52\x72\xf2\x94\x56\x04\xd4\x9a\xa5\xbd\x4d\xaa\x8f\x74\x22\x5e\xad\x9a\x2e\x6c\x88\x4e\x09\x24\xe6\xc0\x25\x6e\x73\xb0\x5b\x5a\xae\x1a\x4d\xcd\x26\x15\x8f\xd0\x32\xb1\x2a\x4e\x13\xf5\xa3\x1f\xf1\x53\x45\x80\xa4\x69\x99\x7a\x86\x5b\xeb\x2c\x8d\x31\x45\x1c\x70\xa8\xcb\x8e\x1d\x27\xc0\x67\x38\x11\x28\x62\x01\x8e\xc8\xbf\x21\x7c\x93\xc3\xa2\xa1\xed\x66\xaf\xf5\x77\x5b\x7b\xff\x75\xcf\x71\x94\x0e\xba\xf0\x3b\xbc\xf8\x4d\xc3\xf4\x5d\xbb\x9b\xe0\x96\x9f\xf5\x72\x47\x8c\x93\xa9\x8e\x90\xea\x45\xba\x67\x8b\xd9\xda\xdb\x56\x6d\x59\xdb\x6b\xd5\x8f\x94\xc8\x4e\x4c\xed\x26\x94\x18\x5b\x9b\x69\xc5\xa5\x1a\x0c\x04\x8a\x01\x8b\x54\xd1\x12\xa5\x94\xd4\x9d\xb1\xed\x64\xf7\xb0\xee\x8b\x1a\xa0\xc2\x8d\xd2\xac\x02\x70\x18\x12\x53\x66\xee\xb6\x45\x19\x54\xeb\xc5\x92\x0a\xf2\x5f\xf4\x0d\x84\xa4\xac\x8f\x37\x54\x59\x37\x24\x86\x07\x03\xa1\x66\x87\x7b\x71\x3b\x4c\x80\x03\x0d\x06\x06\xfb\xa0\x9b\xdb\x0e\x0b\x72\x70\xdc\x1f\x05\x9e\x6e\x02\xd2\x83\x21\x72\x97\xc6\xb3\x55\xa2\x91\x75\xb8\x5d\xd3\x09\x1b\x9a\x4b\x2e\x62\x96\xd2\x7a\xab\xb4\xd9\xfa\xbc\xe5\x24\x00\xcf\xe3\x89\x43\x48\xe4\x25\xe6\x61\x25\x16\x2d\xbf\xb7\x0a\xa0\x9c\x15\x00\x79\xfd\xf8\x07\xfb\xba\x7d\x50\x6e\xb0\x7d\x87\x06\x85\x69\x37\xfa\xd6\x45\x5a\xb6\x4a\xc6\x3c\xd8\x57\xbb\xd6\x2e\x32\x45\x7a\x55\xe5\xb5\xdb\xd4\x12\x4b\x85\x64\x71\x83\x9a\xcf\x46\x16\xcd\x9d\xc2\x44\x14\x11\x21\xd5\xc1\xf5\x0c\x4b\x7b\x5c\x79\x1e\xb0\x35\xa3\xbc\x0f\x90\x12\xdc\x3a\x92\xa3\x6a\x53\xb9\x52\x2d\x0b\x65\xfc\x87\x5a\x5d\x5c\x5f\xf9\xdb\x22\xeb\xf3\x74\xfe\x2d\x45\xd7\x57\x08\x47\xca\x9e\x5a\xa2\x67\xca\x16\x14\x3d\x2d\xf5\xf1\x7e\x89\xb9\x74\x47\xfd\x24\x95\x29\x77\xe1\xb1\xda\x8a\x7f\x83\x72\x95\x6e\x69\x36\xb4\xfe\xcb\x36\xed\x62\xd5\xab\xb8\x81\xa9\xdc\xaf\x61\xce\x6b\xcb\x65\xe8\x22\x88\x2f\xb6\xf5\x97\x44\x0e\xac\xd9\x2e\x6d\x0f\xe3\x81\x81\x9a\xce\xa3\x63\x00\x6d\x36\x64\xfb\x00\x7e\xa7\x5b\x0b\x0e\x0a\xf2\x3d\xe1\x42\x5a\xb7\xe4\x80\x60\x3f\xe2\x31\xa0\xde\x90\x30\x8c\xe0\xd3\xe0\x70\x6f\x5d\xc3\xe8\x81\x8d\xd2\xac\x8b\xef\xa0\x70\xef\x71\x94\x4a\x5c\x59\x04\x69\x33\xb8\x3a\x01\x76\x60\x90\x1c\x6a\x62\x15\x1b\xc2\xfc\x34\xb4\x19\x02\x11\xe8\x46\xa5\xdb\x65\xdd\x54\x80\xfc\x0d\x6f\x42\x50\xef\x83\xcd\x3c\x16\xbd\x22\x22\xa8\x34\xc5\x37\x3d\xe0\xec\x5b\x7e\x5f\x8b\x60\xc6\x16\x28\x4e\x83\x99\x3b\xe7\x43\xbb\x2e\x34\xc3\x02\x3d\x01\x50\x24\xd2\x27\xc9\x71\x20\x21\x5c\x15\x7c\x46\x89\xba\x0a\x9c\xa0\xeb\x9b\xdb\xcf\x77\x0f\x17\x9f\x1e\x7e\x45\x38\x5a\xe0\xa5\x40\x14\xa6\x58\x92\x79\xad\xf3\x62\xb0\x0b\x06\x8e\x13\x4c\xa6\x2d\x5a\xa0\xd8\x66\x95\x92\x6f\x29\xac\xb9\x30\x52\x1a\x02\x8f\x96\x84\x4e\x51\x60\x41\x22\xc6\x11\x4f\x23\x30\xf5\xa2\xbe\xe8\xc0\x1a\xf0\x53\xf7\xf5\xe9\x2f\x3f\xfd\xfc\x5f\x5f\x8e\x86\x75\xe6\x65\xaf\x7f\x7d\x51\x71\x38\x64\xfb\xa5\x17\x6b\x73\xb6\x42\x65\xc1\xe9\x57\xe7\x6e\xf5\xc3\xaf\xf9\x5a\x5c\x4b\x88\xef\x20\xd2\x1d\x89\x7c\x97\x3d\x89\xf0\x14\x11\x1a\xea\x4b\x2f\x9d\x22\x52\xe0\x3a\x65\x90\xda\xd7\xd4\x61\x0a\x48\xb2\xac\xa5\x55\x43\xc5\xee\xf6\xbc\xe3\xcd\x3d\x90\x99\xbb\xd1\x55\x18\xcb\x96\xfc\xe5\xe8\x3e\x4d\x80\xa3\x7b\x4d\x68\x74\x8f\x23\x40\xc3\x93\xfb\x9e\x71\xf9\xb9\xf2\x2d\x6d\xdd\x8a\x2d\x95\x41\xa7\xbb\x9a\xe7\x76\xc6\x7a\xcf\x89\xf8\x1c\x8c\x8c\x5b\x9a\x9f\xa0\x88\x2d\xac\x37\x32\x93\x7f\xb7\x1f\x4f\x30\x61\x1c\xd0\x8c\x4c\x67\x7e\x5e\x55\xd7\xf8\xc1\x4f\x9f\x37\xba\x6f\x8a\xa1\x63\xa6\x90\x50\x0c\x94\x12\x31\x43\x4f\x20\x17\x6a\xa5\x0e\xb1\xd6\x8b\xdd\x50\x4a\xfc\x03\x99\x68\xd7\xc4\xb6\x29\xf1\x55\x15\x02\x0f\x2d\x3e\xba\xa6\x1e\xdc\x4e\xeb\xed\x13\x58\x5d\xd9\x51\xa0\x61\xac\x3c\xd8\xe3\x38\x03\x2a\x53\x06\xaa\x4d\x5a\x45\xd6\xaa\x04\xe1\x3a\x5c\xea\xf7\x9c\x08\x24\x24\x89\x22\x84\xe7\x98\x44\x4a\x69\x0d\xba\xc5\xbe\x32\xa2\x53\xae\x46\xbb\xbe\x57\xfa\x9a\xea\x68\xb5\x3e\x6d\xad\xea\xca\x84\x71\x74\xe9\xcb\x0b\x0d\x09\x66\x85\x95\x79\x6d\xba\x15\xf3\xd5\xe9\xef\xcf\xc9\xe5\xa9\x68\xc6\xa2\x10\xad\x0a\x95\x08\x65\xc6\x64\xaa\x3e\xd0\x43\xf4\x93\x64\xcc\x57\x15\x4b\x24\x6b\xeb\x86\x31\x98\x07\xa4\x29\x39\x6f\x65\xfe\x6c\xe0\x18\x29\xe8\xe4\xce\xb4\xcc\x26\x9a\x57\xe9\xce\x5d\xe8\x48\x95\xc9\x57\xab\xa6\x18\x91\x52\xc5\x73\x67\x13\x72\xa5\x72\x06\x54\x6a\x13\x21\x7c\x14\x9d\xdc\x88\x15\x73\x35\xfb\xd9\x44\x7a\x26\xd5\x97\x99\x92\xdd\xcc\x61\x58\xb1\xf4\xb7\x10\x31\x3a\x15\x0f\xac\xb4\x0e\x6f\x0c\xea\x41\x28\x99\x49\x22\x75\x95\xb1\xb6\xa9\x3e\x29\x89\x40\xd3\x14\x84\x4b\x59\x9e\xe0\x48\xc0\x1b\x25\x61\xee\xf9\x04\xce\xc3\x31\xb6\xf7\xb1\xd2\xfe\x55\x99\xcc\xa8\xb7\xcd\xfa\x96\x44\x11\xa1\xd3\x3a\xe7\x68\x2d\xb6\x6b\xd3\x5c\x48\x57\x69\x79\xf4\x64\xbe\x42\xd8\x7e\x77\xcc\x21\x82\x39\xa6\x52\x6b\x46\x1c\x65\xef\x41\xc4\x39\xa1\x73\x46\x02\x10\xb5\x28\x35\xab\x47\xbd\x62\x2f\x2c\xaf\x60\x82\xd3\x48\x5e\xea\x2c\xf1\x60\x60\x1f\xe2\x95\xa9\xf4\xdb\xe4\xac\x2f\x92\x6f\x35\x45\x3f\x0c\xc1\x84\xe6\x15\x84\x6b\xee\x9f\x1b\x75\xcc\x38\xba\x9f\x91\x44\xd3\xed\x0d\x52\x84\x8b\xe6\x10\x9a\xe6\x43\x44\xbc\xb6\xbe\xb5\x2b\xf5\x6e\x7a\x56\xe9\x31\xa5\x92\xc8\x65\x07\x9d\xe1\x26\x18\xed\x2a\x20\x60\x34\x2c\xf5\x13\x8c\xf1\x32\x3b\x99\x9f\x96\x48\xb0\x18\x74\x79\x10\xa0\xed\x6a\xb7\xd3\xe5\xd5\x7f\xdd\x66\xc5\x99\xbc\x94\x1b\xf9\xf9\x6c\x66\x8f\xa0\xe0\x7d\x6d\x41\xf6\xba\x95\x96\x8a\x9a\x9b\xc7\x62\xfa\x94\x17\x52\xdd\xdd\x08\x9d\x30\x1e\x6b\x0f\x27\x62\x14\x7d\x51\x46\xe4\x97\x23\xfb\x8e\xd2\xaa\xea\x05\xa6\x52\xa8\x29\x49\x3d\xfb\x35\xf0\x56\x69\xf5\x7e\x38\xa7\x3c\x98\xe1\x2e\x0a\x3c\x9b\x61\xec\x9e\x9c\x65\xaf\x90\x14\x59\xee\x70\x04\x53\x9d\xb4\x42\x25\x0e\x24\x4a\x80\x0b\x45\x18\x2b\x87\xa6\x38\x55\x0f\x24\x35\x18\xcf\x8b\x2d\x93\x38\x6a\x96\xd7\x7a\x73\x55\x3f\x52\x95\xf8\xbb\xf6\x3c\x48\x05\xe9\x35\xad\x8f\x0c\x15\x6f\xc5\xe1\x7d\x57\xa8\x77\x80\x8d\x9a\xc9\xf7\xa2\xb7\xcf\x52\x44\x5a\xdd\x43\x8a\xdc\x1b\xaa\x0b\x8a\x69\x09\xaa\x48\x62\x7c\x95\xa7\xe8\x19\x96\xe6\xc5\xa2\x4d\xb4\x52\x46\x7c\xc2\x99\xa2\x08\x12\x09\x04\x64\x42\x82\x17\xbc\xc1\xfa\xee\x6b\x76\xd2\x0c\xbd\xab\x98\xcb\x6e\x32\x95\xcd\x70\xda\xdc\x1d\xdf\xe6\xc3\x27\x6d\x0f\x2a\x43\x48\x5f\x89\x88\xc8\x3a\x06\xbe\xa2\xbc\x5d\x77\x11\xb5\x7a\x53\x67\xd9\x9c\x82\x53\x6d\xec\xe8\x49\x2b\x73\x27\x04\x89\x49\xe4\xd4\x6a\x8e\x3c\xc6\xef\x3c\x63\x0b\xcd\x9d\x8b\x19\x70\x58\x6f\xb8\xb8\xd6\x72\x47\x7d\xa4\x0f\xa4\x1e\x4a\x77\x0d\x1b\x3f\x9f\xe9\x8c\x24\x09\xa1\x53\x4d\x47\x5f\xfc\xf3\x93\xbe\x48\x0e\x09\x07\x01\xd4\xbc\x64\x14\xf6\x3b\x14\x30\x21\xd7\x2c\x96\x92\x89\xd7\xc6\x3e\x0d\x88\xae\x2d\x7b\x73\xd9\x1b\x25\x8d\x6c\x70\x3f\x4c\x66\xa3\x14\xb5\x5a\xd1\x68\xc9\x33\xd7\xee\x26\xf0\x5c\x62\xce\x49\x07\x73\xc7\x8e\x47\x59\x6b\xe4\x7c\xa3\x13\xf7\x65\xa1\xe2\x9c\x7d\x70\x44\x94\xed\x60\x2a\x00\x40\x90\xea\xa8\x4b\x17\x1a\x76\x4d\x4a\xef\x9c\x36\x8f\x2b\xb6\xbc\xdc\xc0\xd5\x71\x33\x3a\xd5\xb5\x95\x29\x28\x59\x93\xd9\xd7\x17\x61\xf8\xc0\x74\xbe\x92\xad\x91\x96\xaf\x79\xf0\x85\x1a\xb7\x58\x08\x9a\xe5\x26\x2c\x8a\xd8\xc2\xba\xca\xe8\x5c\xfd\x94\xb3\x09\x01\xdd\x01\x0e\x63\xf8\x15\x3d\x2c\x13\xf8\x6a\x72\xfe\xbe\x7e\x64\x26\x45\x53\x7f\xe6\xfe\xa7\xa1\x56\xef\x26\xf7\xd2\xa5\x83\xdf\x59\x61\xbb\x89\xee\x80\x93\x98\x4f\x41\xea\xac\x78\x99\x6f\x71\xb4\x81\x66\x2a\xad\xd1\x13\x33\x7d\x41\x7e\x20\x4d\xd9\x25\x25\xa4\xb2\x39\x36\x49\x2d\xe3\x7c\x77\xdf\x96\xea\x3b\x5f\xa4\xc6\xc8\xf8\x2c\x2c\xd9\x0c\x77\xd4\xcf\x8e\x0a\xdb\x7d\x48\x5d\x65\xe5\xcc\x08\x1f\xd6\xfe\xa4\x12\xd7\x67\xb5\xc1\x15\x93\xc6\x80\x29\x0a\xc9\x44\xa7\x5f\xcb\xd5\x71\xfa\x2d\x55\x26\x38\x01\x81\x16\x44\xce\xaa\x46\xa8\xb3\x69\xd0\xcb\xf2\xdf\x19\x7f\xd6\xe5\x29\x7d\x29\xe1\x26\x38\xfd\x74\xb5\x66\x2b\x64\x0b\x65\x1c\x25\x24\x78\x4e\x93\x13\x24\x60\x35\xca\xcd\xbe\xb5\xdf\x15\x3f\xbf\xca\xcd\x2f\x7e\xf7\x48\x2d\x35\x6b\x2b\x44\x0e\x17\x03\x6c\x15\xd8\xcd\xcf\xd8\x4e\x4e\x3e\xe7\xdd\xcb\x6c\x36\xfd\x42\xc3\x7e\xe8\xb2\x3b\x1c\xed\x9c\x56\x38\x51\x06\xcc\x13\x20\xca\x24\xca\x3c\x7f\xd6\xf1\xa9\x96\xaf\x18\x55\x7d\x67\xe1\x8c\xed\xf9\xeb\x77\x80\xe4\x94\x43\xd1\x3d\x43\x44\x86\xea\x79\x08\x42\x12\x6a\xf6\x6a\x40\xf1\xe8\x14\xb9\x7e\xb0\x34\xcd\xe8\x5b\xdc\x98\x53\x65\x0e\x19\xc7\x97\xf3\x2f\x31\x2a\x24\xd6\x12\x3e\x21\xd4\x99\x98\x80\x12\x1c\x3c\xe3\xa9\xba\xc8\x3c\xaf\x84\x27\xca\x1d\x55\x17\xcd\x7b\xd6\xef\x49\x04\xf4\x74\x41\x97\x66\x3a\x2e\x73\x1c\xba\xb2\x5b\x24\x7e\x06\x6a\x1c\xeb\xce\x3b\x7d\xcc\x68\xb4\x44\x6b\xae\x69\x4d\x3d\x3b\x79\x03\x27\xbb\xaf\xb4\xbf\xfb\x6e\x12\x0e\x2e\xad\x9f\x6c\x8c\x5c\xf7\x6e\x5e\x49\xc7\x1e\x76\x41\xa3\xeb\xbb\xca\x5b\xd4\x0b\xdd\x23\xb6\xdf\xa0\x2f\xa4\xf5\x75\x8e\x3e\x66\x13\xd7\xf5\xb7\xbb\x77\xe3\x27\x96\xca\xb5\x54\x29\xb1\x1e\xc4\x25\xc2\x64\x4a\x9d\xaa\x41\x4b\x77\xb5\xfa\xa2\x3d\x10\xdc\x24\x69\x7d\x39\x52\x47\x26\x65\xaf\x19\x7a\x28\x66\x3f\x6e\x40\xf1\x77\xb6\x60\x99\xc7\x13\xb5\x62\x28\xa2\x38\x73\xed\x26\xfa\xb4\x34\x41\x3e\x01\x7c\x4e\x02\x40\xfa\xc9\x7d\x0c\xd4\x64\x06\x6b\xd7\xb8\x80\x04\x73\x2c\xc1\xd6\xd8\xb0\x2e\x02\xec\xee\x11\xb9\x6a\x6a\x5f\xe8\x1a\x2c\xad\xd4\x4c\xda\xa1\xce\x44\xd4\x5b\x36\x6c\x70\xb4\x97\x12\xb1\xac\x43\x4d\x91\x34\xa6\x69\x61\x56\xc8\xe6\x60\x2c\xec\xc5\x8c\x45\xc3\x07\x3b\x6e\x56\xf5\x3a\x86\xf7\xd4\xda\xe7\x96\xc3\xa7\xb5\xff\xaf\xcf\x13\x8c\x4e\xe9\x6f\x77\x6c\xa1\xf3\x6d\x3e\x70\xd6\xe1\x50\x5d\x9f\x35\x72\x1e\x97\xfb\xb1\x4f\x4d\x79\xe7\x35\x0b\x54\x73\xc6\x5f\xde\x03\xfe\xde\xc1\x1d\xef\x45\xbc\x97\x88\xaa\xe0\xef\x9b\xa8\xc1\x7b\x42\xa7\x11\xf4\x60\x9e\xe2\x44\x34\xd5\xff\xd5\x39\x81\xe8\x98\xd0\x20\x3a\x43\x52\x51\xd4\x14\xe2\xc1\x48\xe8\x09\x2d\xd5\x78\x06\xdb\xcf\xdc\xf2\xba\x70\xdc\xfa\x34\x44\x41\x3a\x8c\xe0\xfb\x6b\x63\xc4\x52\x1e\x40\x07\xfd\x6c\x26\xa0\xeb\x50\xa9\xe9\x95\x6b\xdd\x44\x2c\x56\xf6\xb2\x5e\x12\x8e\xf4\x65\x1a\x42\x74\x8a\x5c\xa5\x50\x01\xd2\x3d\xe5\xd3\xa0\x08\x9d\x7e\x64\xd3\xf6\x40\x51\xb7\x47\x13\x9c\x60\x2a\x8d\x1e\xbf\x6d\xd7\xe3\x05\x14\xab\xa7\x67\x91\x6b\x9d\x9d\xc7\xe8\x84\x4c\x53\xae\x63\xa0\xae\x98\xd7\xe8\xd6\x6e\x6b\x14\xbe\xb6\x0c\x43\x19\x94\x89\x16\xbf\xb4\x7b\x60\xa8\x3b\xb9\xd7\xcd\x27\x1b\x5d\x32\xb5\xca\x93\xb3\xc4\x2a\x57\xba\x39\x0b\xe5\x9b\xcb\x3c\xd8\x39\xab\x9c\x84\x53\x9b\x36\xe3\x2c\x63\x13\xe2\x37\x36\x71\x69\x74\x0f\x1f\x45\x25\x8a\x7e\x26\x86\xde\x5b\x1c\x5d\x19\x3b\xbd\xd7\x6e\x14\x61\x6c\xc0\xb4\x2d\xab\xd9\x90\xe5\xae\xb0\x84\xcf\x93\xb7\x84\xcb\x72\x75\xf1\xd2\x4f\x74\x51\x22\x9f\xb0\xb9\xb6\x0d\xfe\xb4\xf5\x16\x0b\x91\x30\x2e\x47\x79\x8d\xea\x80\x7f\x4a\xe3\xa7\x8d\x1e\xef\xfb\x6e\x6f\x63\x3c\x73\x98\x27\x07\x1e\xf7\xd7\xdd\xba\x25\xb6\x1b\x10\x43\x1d\xef\x0f\xf8\xfb\x4b\x55\xd7\x78\xa9\xd2\x0e\xca\x34\x1d\x9a\xcf\x5e\x88\x44\x77\x83\x3f\xb9\xdd\xb0\xc0\x8c\x37\xcd\xa1\x32\x0f\x6e\x53\xd5\x6d\xfd\xc3\x2d\xaf\x0c\xb6\xaf\xdc\x81\xd2\x75\x97\xcd\x2c\xd3\xeb\xc2\x6d\x7d\x03\x1b\x83\xf6\xde\xd6\x2c\x77\x6e\xeb\x13\xdc\x8c\x94\x6d\xbd\x12\x7b\x35\x11\xcd\x57\x32\xde\xfa\xcd\xbc\x01\x31\x7e\x19\xab\xf5\x5a\xfa\x07\x9a\x68\x9a\x54\xd5\xcd\x1c\x98\x34\xd5\xf4\xce\xbe\xae\x29\xae\x65\x34\x5f\x63\x3d\xee\x06\x8d\xd9\x53\x31\xbc\xc5\x82\x04\xb5\x85\x6b\x2b\xdd\x25\x69\x10\x34\x5e\x70\x87\x09\xee\xd5\xf5\x4c\x1e\x21\x63\xb5\xe6\x68\x6f\x21\x60\xde\x2a\xf0\x22\x9c\xfa\xa9\xdf\x70\x44\x42\x7d\xab\xaa\x41\xa7\xe5\x47\xe7\xd9\xfc\xb3\xba\x92\xaf\x95\xa9\x3e\x5d\xa2\x78\xde\x10\x57\xc8\x34\x67\xb2\xf6\x81\xdf\x22\x42\xa5\x94\x83\x42\x3e\x2c\x99\x20\x61\xf8\x14\x11\x81\xf4\xb3\xb0\xee\xfe\x87\xce\xa2\xf8\xe2\xa2\x31\x05\x79\x99\x2d\x74\x0c\xd1\xe8\x25\x14\xd5\x4d\x1d\x5e\x53\x24\xba\x51\xb5\xdc\x7a\x67\xf7\x28\xfb\x1e\x93\x08\xc2\x3b\xc0\x55\x2e\xce\x12\x1a\x5d\x4e\x69\x53\xa3\x8e\x4e\x58\x77\xaf\x5a\x81\xc4\x61\x0e\x94\x9f\x7c\x8d\x51\xb0\x09\x4b\x68\x56\x8f\xb5\xc7\xb5\x92\xf5\xb3\x15\x00\xaf\xdf\x7b\x7c\x6c\x0a\x34\x0c\x6c\xe0\x94\xa8\x3c\xb4\x9d\x33\x7c\x79\xb6\x5c\x8d\xd5\x57\xf3\x75\xb5\x57\x7f\xad\x84\xe8\xe9\xf8\xd2\x7b\x72\x05\x01\xe3\x58\x42\xd8\x47\x15\x84\x66\x32\xe3\x67\xeb\x60\x3a\xfc\xbe\x8f\x10\x8f\x4b\xe4\x5c\x2d\xd9\xc2\x92\x06\x7d\xc5\xd6\xd6\x35\x7c\x60\x89\x18\x5f\xbc\xeb\x36\x7f\xf7\x8e\xa8\x6c\xfd\x3e\x4f\xbf\xc7\x65\xc6\x0a\xa2\x76\x7e\x8c\xdd\x7f\xef\xc6\x88\x1b\x34\xbf\xad\xea\xfc\xb8\xed\xc5\x2f\x9e\xfd\xa8\x39\xd6\xbb\xc6\xec\x07\xae\x9b\x1f\x37\xbe\x38\x97\x66\xec\xb3\xc1\x89\x54\x4b\xb4\x96\xe5\xb4\xd4\x2c\xf0\xda\x42\xc7\x0b\x61\x85\xdb\x67\xeb\xfc\x53\x2d\x95\xe9\x06\xd1\xee\x15\xc2\xd1\x2b\xc3\xc1\x02\xba\xc4\x12\xa6\x8c\x2f\xc7\x89\x5e\x74\x7f\x16\xa0\xf3\x64\x4a\xa5\x1a\xdc\x2a\x87\x4c\x80\x69\xce\x2e\x2c\xb6\x2a\xc2\x71\x96\xfe\x2f\x12\xc0\xba\xf7\x74\xfe\x29\x5f\x30\xc2\x0a\x6f\x71\x53\xbc\xbe\xd4\x65\x18\x90\x9a\x80\x8e\x39\x63\x12\x49\x86\x22\xc0\x93\x37\xab\x87\xbf\x8e\x86\xe8\x34\x4b\x83\xd5\x39\xb3\x5f\x8e\xce\x37\xa8\x78\xe8\xcf\xb2\xa3\xf8\x98\x35\xd0\x11\xca\x4a\x2b\xb0\x2f\xe2\x6d\xce\xf5\x06\xbd\xd0\xf9\x4a\x63\xbc\x4f\xb8\x32\x95\x91\x3a\x25\x00\xe5\xe6\xd8\x12\x51\x21\x96\xf8\x04\x51\xc6\x63\x1c\x45\x4b\xf4\xd7\x87\x9b\x8f\x36\xe5\xd8\x56\x5e\x5a\xd5\x25\x4b\xc5\xb0\x4d\x93\xde\x33\x1e\xdf\xba\x6e\x87\x2f\xff\xda\xa0\xb9\xad\x2b\xe3\xf1\x7b\x02\xd1\x46\x45\xbd\x1e\xef\x3e\x7a\xef\xcc\xe3\xdd\xc7\x7c\x85\x98\x04\x0b\x81\xd4\x67\xba\x02\x45\x6e\x03\x8a\xe9\x5a\x42\x62\x09\x36\x55\x5c\xb0\x61\xbb\x42\xfd\x1d\x47\x11\xc8\x9e\xc9\x54\x96\x90\xeb\x30\x36\x95\xa6\xfb\x9a\x1e\xcd\x1b\x66\x41\x74\xab\xec\x63\x86\xeb\x5d\x02\x3e\x61\x3c\xd6\x7f\x9a\xa6\xe6\xab\xe7\x60\xa6\xcb\xf2\x24\x62\x8b\x33\x74\x3d\x71\xed\x96\x89\x40\x5f\x8e\xec\x97\x5f\x17\x98\x48\x42\xa7\x5f\x27\x8c\x7f\x75\xf9\x72\xba\x00\x10\x11\x68\xa2\x98\x6f\x3d\xc7\xce\x3d\xbb\x37\x99\x76\x8b\x19\xd6\x07\x42\xc8\xd0\xa9\xab\x8d\xcc\x21\x24\x1c\x02\x69\xde\x96\x7c\x39\x12\x33\xb6\xf8\x4a\x26\x4a\xc4\x86\xad\x7f\xdb\xa0\xd5\xb2\x31\xad\x6d\x93\x73\x40\xfc\x2c\xd6\x4e\x9a\x4e\x97\x34\xc8\xea\x83\xad\x17\x24\x72\x94\xb4\x4f\x71\x9c\x7c\x61\xb3\xb1\xe7\x7a\xd7\x86\xec\xf7\xd5\x2d\xac\xa1\x47\xb7\xae\x5d\x17\x61\x16\xda\x54\xc1\x14\x81\x9e\x73\x6c\xca\x4e\x3b\xde\xd3\xce\xe0\x8e\xf5\xe1\xd6\xce\x75\x2f\xe4\x6a\x64\xb2\x0e\xbb\xfb\xac\xef\x78\x59\x4e\xde\x19\x36\x76\xf2\x11\xb0\x38\x89\x40\xbf\x95\x3a\x69\x17\x1b\xcd\xf1\x6e\x8c\xc1\xfd\x45\x4c\xa0\xd5\x51\x31\xb0\x5a\x6a\x69\x6c\xf7\xca\xd9\x41\xfe\x04\xfa\xc8\x96\x38\x92\xcb\x77\x98\x53\x42\xa7\x63\x14\x40\xb1\x25\x0a\x5f\x20\x4b\x66\xf4\x94\x96\x75\x9a\xe9\xa5\x8d\x41\xb1\xba\x10\x57\x07\x8a\x39\x10\x9e\xde\x86\x17\xda\x21\x97\xa5\xfa\xd0\x88\x5d\xaf\x92\x20\x16\x72\x53\x25\xf0\xa1\xb0\xb8\x16\x3e\xbf\xd6\xab\x68\xe9\x0d\xfe\x7e\xcb\x08\x95\xe2\x81\xdd\x27\xe0\x93\x6e\xd7\xad\x75\x0d\x1d\x11\x7a\xf7\xc7\xfd\x8c\xa3\x4f\xb9\x0b\xbd\x15\x2b\x65\xad\x4d\x39\x8e\x5f\xe0\x74\xb8\x75\xfd\xf6\x75\x1d\x9c\x8b\xdb\xeb\xe1\x25\xd9\x1c\x92\x8d\x97\x8d\x7e\x25\x70\x5a\xec\xfe\x7e\xc9\x5e\x3c\x98\x61\x9a\x0b\xff\x0f\xbe\x6e\x53\xf9\x65\xe0\x75\x7f\xd6\x6c\xb5\x09\xd0\x0e\x2c\x53\x99\xf1\xd9\xc5\xff\xb7\xa6\x9f\x87\xe6\xb7\x19\xa6\x14\xa2\xb1\x2a\x39\x02\xff\xc0\x59\x9a\x0c\xec\xc2\x65\x01\x1e\x3b\x45\x3f\x4f\xfa\x51\x8a\xbc\x05\x92\xcc\xe1\x2d\x16\x03\x93\x7d\x05\xb7\xed\x31\xc0\x66\xd0\x1f\x29\x19\x18\xb6\x6b\x3a\x74\x97\x46\xbb\x95\x45\xbf\xbf\xc6\x17\xd0\xe5\x0d\xe3\xd0\xe1\xdd\x52\x27\xdb\xe5\x60\xdc\xb5\x80\x7e\xc0\xdf\x2f\x23\xec\x93\x8b\x38\x80\xaa\xbb\xd7\xb5\x38\x7c\xe3\x55\xbd\xd4\xdd\xc6\x8f\x1f\xfc\xcb\x93\xfa\x94\x10\xf6\xeb\x3d\xee\x99\xd6\x76\xe1\xfa\xc1\xe8\x85\xbe\x5e\x78\xb9\x95\x5a\xc8\x5b\xb1\xe9\x88\xee\x6b\x63\x62\xc2\xca\x9b\xa8\x67\x13\x53\x7b\xcd\xc4\x94\xca\x30\xee\xe6\x28\x2d\x1f\x98\xb2\xdb\x6e\xb0\x7e\xb8\xba\x53\x47\x26\x07\x2c\x21\xbc\x18\x5a\xed\xaf\x5d\x19\x07\x04\x7c\x9d\x45\xbb\x07\x86\x2b\x3e\x41\x43\xe9\xc7\x5e\x87\xc6\xb5\xb8\xc7\x11\xe8\xce\x54\xc3\x02\xfe\x1b\x2c\x17\xac\xb1\xf7\xcf\xf6\x31\xda\xba\xb3\xd2\xdf\xad\x5d\x98\x87\xfe\xa5\xa3\xab\xab\x4a\x88\xb9\x1a\x09\xab\x8e\x3c\x91\x75\x47\x80\xfb\xb5\x16\x7f\xc4\xa8\xda\xa6\xc2\x4d\xbb\x39\x1d\xdb\xce\xb6\x6a\x2a\x9a\x59\x36\x42\x5d\xa0\xe1\x84\xf1\xac\xee\xc8\xaa\x40\xeb\x13\xa0\x04\x13\x1d\x7e\xc3\x19\x59\x3d\xbd\x3c\x2f\x41\xd5\x41\x8e\xd7\x1b\x4c\x68\x96\x34\xd3\xcf\x28\x6a\x3b\x52\xea\xab\x82\x79\x54\x93\xe9\xe7\xad\x09\x89\xc7\x23\xa5\x71\xf6\xc8\x5a\x6e\x66\x0d\x1b\x6c\xcc\x9d\x76\x95\xc1\x08\x39\x2b\x0e\xf2\xf0\x55\xd3\x1c\xe4\xfb\xe7\x74\x58\xc0\xee\x30\x79\xcf\x59\x43\x2e\xea\x26\x90\x1f\x3c\x5e\x9d\x75\x82\x3b\x63\x5c\x8e\x66\x0a\xdc\x4b\x16\x3c\x7f\x84\xf9\x46\x49\x84\x55\x77\xbd\x5e\xef\x17\xad\x1e\x30\x93\xfd\x63\xef\x23\x3c\x0f\x7f\x4c\xc2\x31\x4c\xba\xdf\x88\xae\xb1\x3f\x3c\xf7\x59\xc0\x1b\x31\x9f\xff\xe5\x3a\xb7\x41\x03\xdf\xac\xdb\x2e\x69\xc5\x6e\x75\x7a\xf8\xea\x14\x16\x11\x09\x74\x3c\xe5\xc9\x7c\x21\x19\x92\x7a\xad\xa6\x75\x40\x53\xe9\xb6\xdd\xb8\xfe\xf5\x2d\x9e\xf6\x30\x03\x24\x9e\xd3\x62\xdf\x07\x97\xd1\x15\x11\xfa\x6c\x2a\x8e\x9a\xad\x1d\xb4\x12\x74\xcb\x29\x5a\xaa\x8d\xaf\x46\xbf\xca\x26\x0d\x75\xe2\xde\x72\x30\xc5\xe0\x20\xb4\x45\xeb\x1a\xcf\xb1\x62\xbb\xb2\xaa\xd9\x28\x26\xd3\x99\x54\x5b\x26\x40\xda\xa6\x4f\xab\x5a\x77\x9a\xd1\xa7\x64\x0e\x08\xa3\x19\xa1\x32\xdb\x52\xc9\x10\x46\x73\x03\x45\x27\xe3\xac\x4d\x43\xc7\x0f\xba\x2f\x8d\x03\x6d\xb2\x8a\x05\x20\xa2\x46\xea\x84\xbe\x09\x89\x24\x70\x63\xd8\x62\xba\xea\x7b\xab\x3b\x10\xd8\x74\x32\x2b\x61\xea\x4f\xf7\x53\xba\xe1\x80\x69\x21\x9b\xcd\x20\xba\x10\xe1\x82\xb6\x56\xe0\xde\xa2\xd3\x51\x41\x1f\xa3\xf8\x88\xa6\xd8\x1e\xfa\xd8\x0c\x62\x1e\x39\x35\xd9\x8c\xa2\x9e\xaa\x00\x90\x15\xc1\x37\x7c\x96\xb5\xeb\x5b\xbf\x9f\x1a\x5d\x46\x28\x9a\x72\x12\xa2\x73\xd3\xb4\x6b\x4e\xa0\x36\x57\x6e\xe3\xfb\x66\x2b\x01\xea\xc3\x6d\x5e\xe8\x67\xd3\xb3\x3e\x64\xd9\xd5\x51\x9d\x72\xf9\xeb\x65\x56\x01\xd3\xd2\xc8\xe4\xda\x31\xaa\xa9\xa0\x88\xa3\x08\xd1\xb5\x1b\xab\xf7\x25\xb1\x9e\x10\x2d\x2e\xf2\x4a\xec\xf5\x1c\x87\x72\x0e\xd5\xd5\xa9\xa5\xd5\x88\xd6\x3e\xe6\xb0\x42\xc7\x0a\x4d\x85\x62\x3f\x0c\xfb\xa3\x76\x2d\x94\x29\xd7\x1b\xcb\xdc\x74\x57\x84\x55\x59\x2c\x3c\x05\x97\x41\x29\x6c\x31\xd7\xcc\x7c\xb1\xda\x7a\x86\xe7\x90\xeb\xe8\x92\x18\x9f\x84\xd9\xf6\xbc\x8a\x1f\xb6\xa7\xf0\xe3\xdd\xc7\xfb\x28\xf5\xf0\xcd\x0e\x60\x63\x36\xe7\x77\x6f\x68\x66\xb6\x27\xbe\x64\x43\x9b\x39\xa7\x04\xc7\x8f\x8e\x02\x42\x3b\xb5\xad\x73\xd0\x10\x14\x4d\xdc\x2a\x0f\xc5\xa8\x0a\x84\x59\x3d\xf8\xbe\xe4\x10\x12\xdd\x29\x7d\x94\xfc\x08\xca\xe8\x32\x26\xff\xd6\xaf\x23\xc3\x8d\xab\x80\x56\x06\x51\x78\xf8\x57\x16\x85\x43\xc3\x7d\xf7\x3d\x21\x7c\x68\xf3\x67\xf4\x44\xd5\x86\x97\xfc\x83\x67\xf7\xae\xaa\x25\x0e\x9c\xd5\xa5\x96\xfc\x12\x05\x63\xcb\x65\x43\x7a\xa5\x77\x55\x14\x0b\x3b\x68\x19\x05\x23\x57\x0d\xe8\x5a\x42\xbc\xca\x2e\x1c\xef\x7d\xa2\xc5\xeb\x6f\x30\x70\x1d\x63\xb5\xfe\xb1\xab\x49\x94\x8b\x27\x0d\x9f\x94\x1a\x5b\xe2\x8f\x45\xa7\xbf\x62\x91\xfb\x95\xa1\x43\xa2\x12\x62\x43\x99\x57\xbb\x33\xb6\xb0\xb4\xef\x0d\xb2\x8e\x1b\xfe\x90\x43\xfd\x48\x62\x1d\xe9\xfc\x47\xf6\x75\x81\x19\x8a\x0f\xe0\xa2\x08\xe9\xee\x9e\xee\xfd\xd4\xc5\xed\xb5\x40\x40\xc3\x44\xa7\x7e\x9f\xa0\x98\x09\x89\x44\x4a\xa4\xed\x94\xae\x6e\x14\x81\x32\x36\x43\xe3\x01\xc3\xe8\x89\xb3\x85\x00\x7e\x82\x9e\x20\xc0\xa9\x00\xd3\x27\x89\x43\xb4\x74\x5d\x65\x05\x08\xa1\x5f\xbb\xd1\x10\x05\x8c\x3d\x13\x40\x33\xc0\x21\x70\x71\x56\xe4\x46\x6a\x82\x23\x47\xeb\x45\x48\x72\xfb\xda\x8e\x8e\x35\x15\xb7\x0d\x23\xbb\xac\xbe\x48\xd9\xfb\x4c\x35\x52\xf5\x3f\x5a\x2c\xcf\xd1\xe9\x47\x2f\x6d\xf5\xd1\x6d\x23\xa5\x5b\xd7\x51\x41\x06\xfe\xf9\x87\xdf\xff\x2f\x00\x00\xff\xff\x59\x11\x4a\xa4\x4a\x42\x01\x00") +var _docsOpenapiSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x73\x1b\xb9\xb1\xf0\x7b\x7e\x05\x4a\xf9\xaa\x22\x57\xe9\xb2\xbb\xc9\x57\x75\xce\x3e\x1d\x59\xb2\x1d\x55\x2c\x5b\x47\x97\xcd\x43\x9c\x72\x41\x33\x4d\x12\xd1\x0c\x30\x06\x30\xa4\x99\xd4\xfe\xf7\x53\xb8\x0d\x87\x73\xc5\x0c\x67\x24\x92\xa6\x1f\xb6\xb4\x24\xd0\x44\x37\xba\x1b\x8d\xee\x46\xf7\x7f\xfe\x80\x10\x42\x47\x62\x81\xa7\x53\xe0\x47\xbf\xa2\xa3\x5f\xce\x7e\x3a\x3a\x31\x9f\x12\x3a\x61\x47\xbf\x22\x33\x46\x7f\x12\x82\x08\x38\x49\x24\x61\x54\x8d\xbd\x37\xd3\xd0\xf1\xe7\x04\xe8\xc5\xed\xf5\x1b\x74\x9f\x40\x80\xd8\x04\xe1\x28\x42\xef\x23\x1c\x13\x3a\x65\xe8\x92\xc5\x31\xf0\x00\x50\xcc\xc2\x34\x02\x61\xe1\x6b\x88\x92\xc8\x08\x14\xac\xf2\xe8\x8b\xdb\x6b\x0d\x2f\x3f\x3c\x60\x54\xe2\x40\xae\xad\x4a\x7f\x41\x71\xbc\x06\x26\x37\x49\x7f\x9f\xf2\x48\x7d\x3d\x93\x32\x11\xbf\x9e\x9f\x4f\x89\x94\xc0\xcf\x48\x7c\x4e\x4e\x23\x36\x87\xd3\x89\x9d\x77\x1e\xb0\x38\x4e\x29\x91\xcb\x3f\x16\x41\x40\x8c\x89\x06\xe2\xc6\xfe\x0f\x66\x70\x16\xb0\xf8\x28\x1b\xf7\x7b\x6e\xa9\x11\x09\x80\x0a\xa8\x5f\xea\xcd\xf5\x43\xf5\xcc\x39\x70\x61\x29\xfc\xf3\xd9\x4f\x66\x8c\xfd\xfe\x28\xc1\x72\x26\xd6\x37\xe5\x1c\x27\xe4\x7c\xfe\xf3\x79\x80\x79\x05\x61\xa6\x50\xfe\xd0\x40\xe2\x2c\x4c\x03\x50\xc0\xfe\x51\xfa\x56\x8f\xc0\x49\x12\x91\x00\xab\xdd\x3e\xff\x97\x60\xf4\xa8\x34\xec\x9f\x27\x65\xb8\x12\x4f\x1b\x60\x5e\xaa\x45\x7a\xc1\x11\x69\x1c\x63\xbe\x54\x54\xf8\x00\x12\xc9\x19\xa0\x20\xe5\x1c\xa8\x44\x1a\xd3\x8a\x29\x1c\x44\xc2\xa8\x00\x51\x89\xb1\x1e\xf2\xcb\x4f\x3f\xd5\x7e\x89\x2a\x58\xfc\xf3\xdf\x2a\x7e\x68\xb5\xc6\x60\x06\x31\x6e\x04\xa8\xc7\xfd\x3f\x0e\x13\x05\xed\x8f\xe7\x21\x4c\x08\x25\x0a\xba\x38\x57\xcc\xcc\x59\x14\x01\x3f\x9b\x82\x54\x94\xb9\x03\x91\x46\x15\xf4\x71\xff\x7e\xaf\xfc\xe6\xf7\xea\x15\x1e\xfd\xff\x8e\xb8\x5e\x53\x09\x9c\xe2\x08\xdd\x03\x9f\x03\x47\xef\x38\x67\xfc\x45\xd0\x57\xb8\x5f\xdc\x5e\xf7\x44\xbf\xf4\xe9\xfa\x27\x05\xf2\x1c\x85\x10\x81\x2c\xcb\x25\xda\x31\xa1\xb8\x83\x98\xcd\x41\x6b\x5a\x21\x19\x87\x50\x8b\x05\x52\x4a\x9b\xc7\x7a\x7d\x08\xce\xa6\x67\x88\x48\x88\xc5\x09\x0a\x21\x22\x73\xe0\x04\xc4\x09\x7a\x22\x51\x44\xe8\x14\xe1\x30\xe4\x20\x04\xc2\x34\x44\x1c\x64\xca\xa9\xd0\x72\x06\x71\x22\x97\x1a\xdc\xd9\x7e\x89\xd9\x66\x7c\x76\x10\xb3\xa6\x4f\x7e\xaf\x3c\xcb\xf2\x87\xd3\xb9\xe5\xbb\xf2\x21\x95\xa4\x35\x87\x54\xc0\xa8\x48\x63\x5f\x79\xfc\x7e\xba\x58\x2c\x4e\x15\xff\x9f\xa6\x3c\x02\x1a\xb0\x10\x42\x3f\xc1\xda\x21\xc1\xbf\x08\x43\x91\x89\xb0\x12\x77\x81\x24\xf3\x3a\x1f\x13\xcc\x71\x0c\x12\x78\xfd\x92\x1a\xd8\x58\x2e\x13\x6d\xb7\x08\xc9\xd5\x26\x36\x30\x6c\x81\xe1\xe7\xb8\x6a\x35\xd9\x68\x67\x0f\xb5\x0c\x23\x1a\x96\xda\xdc\x2b\x2c\x71\x35\xf7\xd6\x88\xe8\x18\x48\x4d\x08\x17\x52\x2f\xdd\x03\x35\xaf\xc1\x05\x04\x1b\x46\x72\xf8\x96\x12\x0e\xe1\xd1\xaf\x48\xf2\x14\x5e\x9b\x14\x11\xf6\xa7\x84\xcf\xd8\x9d\x25\x44\x4c\xc2\x30\x02\x5f\x52\xf8\x8d\xde\x32\xb6\x37\xf7\x35\x0f\xec\x5a\x07\x6e\x19\x62\x02\x47\xa9\xd4\xda\xdd\x07\x3b\xbf\xd1\xdb\x86\xa2\xe4\x00\x5e\xaa\xb8\x7d\xe4\x56\xa2\xf6\xa9\xd1\x8c\x5a\x47\xae\x79\xec\x96\xa1\x67\x0d\xf5\x8f\x84\xc2\xcf\x3e\x28\xfa\x8e\xdf\x5e\x34\x7f\xe9\x88\x66\xe3\xf8\x2d\x43\x33\x60\x71\x82\xe9\xd2\x07\x43\x8f\xa1\x5b\x86\x5c\xc2\x84\xbc\x64\xa1\xd7\x19\xe1\x33\x76\xcb\xd0\x0b\x88\xf4\xdb\xb8\x96\x71\x5b\x86\x96\x90\x58\x7a\x6d\x59\xeb\xc0\x2d\x43\x8c\xc3\x94\x30\xea\xcb\x90\x7e\xa3\xb7\x0c\xc5\x80\xa5\x54\x72\x4f\x75\xd2\x3a\x74\x3b\x91\xf3\xdd\x40\xcf\xe1\x5b\x86\x64\x32\x63\x14\x2e\x38\x60\x6f\xc5\xe9\x3b\x61\x1b\x11\xbd\xec\xb6\xa5\x5d\xe6\x6c\x23\xba\x9f\xd2\xf8\x09\xbc\x0c\x53\xcf\xe1\x5b\x86\xa4\x09\x8b\x79\xa0\xd7\x3a\x70\xe0\x7b\x7f\xe9\xd3\x2a\xbf\xda\xc1\x97\xbd\xf6\xab\x07\x5f\x76\xe1\xff\x6a\x7d\xd9\xab\x78\xca\xb9\x8e\xb0\x94\x9d\xda\xfb\x17\x67\x32\x01\x26\x85\x2d\x9a\x70\x16\xeb\xcf\x56\x74\xc8\x85\x91\x8c\x37\x1a\x73\x79\x82\x9e\x01\x12\x13\x55\xb2\x23\x97\xda\x67\x8d\x52\x2a\x59\x1a\xcc\x20\x3c\x84\x98\x72\x9f\x1e\xc4\xb2\xe9\x13\x7f\xb1\x5c\x9e\xff\xc7\xfd\xa5\x6c\x86\xdf\x0f\x21\x27\xf7\x6d\xff\x90\xd3\x9a\xfc\x8a\x13\x24\xd2\x60\x86\xb0\x40\x62\x46\x92\x24\x1f\x4e\xb6\xd1\xa8\x6c\xfc\x84\xf1\x4c\x21\x6c\x51\x58\x4a\x2d\x89\x84\x40\x25\x99\x10\xe0\xd9\x2a\x73\x68\x36\xad\x3a\x83\xea\xcc\x9b\x3c\xbf\xb5\x5b\x39\x09\x96\xb3\x1d\x8a\x6c\x78\x86\xf0\x1c\x0d\x2e\x0c\x27\x9c\xed\x71\x48\xaf\x88\xea\x21\xc4\x57\x47\x99\x43\xc8\xaf\x96\x34\xfb\x1d\x02\x2c\x62\xbb\xdf\x21\xc1\x22\xb6\x7b\x1e\x22\x2c\xa1\xbb\xcf\x21\xc3\x6a\x64\xf7\x3a\x84\x58\x44\xf9\x07\x09\x29\x36\xa0\xbd\xa7\x21\xc6\x22\xc6\xfb\x1d\x72\x2c\x62\xbb\xc7\x21\xc8\xd2\xc6\xee\x69\x48\xb2\xac\x9c\xf7\x39\x44\x59\xc4\x76\xdf\x43\x96\x65\xf5\xb4\xe7\x21\xcc\x1a\x84\x77\x6c\x87\x3b\x87\x34\x4b\x8a\xf9\x07\x0a\x71\x56\xe2\xfe\x43\x84\x3c\x2b\x31\xdf\xdf\x10\x68\x11\xdd\x97\x0e\x89\xf6\x26\xc9\x13\x63\x11\xe0\xc6\x9b\x6c\x81\x26\xa9\x80\xb7\xe6\x8d\x82\x45\xd6\x87\x3e\x9d\x26\x6d\x19\x13\x38\x37\xf8\x0d\xc8\x19\x0b\xbd\x72\xa9\xbc\x67\x6c\x29\xaa\x97\x98\x73\xe2\x27\xe8\x1d\xa6\x6c\x19\xb2\x11\x33\x11\x18\x5f\x65\xee\x3b\xfe\xb5\xd1\x34\xcf\x04\xb5\x56\xc2\x12\x4e\x25\x69\x76\x42\x16\xa8\x12\x82\x50\xda\x06\xa9\xb9\xe7\x6a\x2e\x22\x14\xdd\xbd\xbf\xfc\xf3\x9f\xff\xfc\xdf\x7e\x9a\x50\xcf\x7f\x68\xf9\x55\x2f\x22\x95\x3e\x3d\x24\x7a\xac\x3e\x3d\x44\x94\x9b\x3e\xd9\xd3\xb7\xc1\x97\xea\xb0\x36\x59\x17\x53\x32\x07\x9a\x8b\xc5\x72\x16\x1f\x82\xb1\xd9\xf8\x01\x83\xb1\x07\x2d\x84\x0e\x5a\xe8\xa5\xf3\x5a\x74\xee\x59\x87\xe4\x96\x1d\xd2\x61\x8f\x89\xb2\x2d\x74\xba\x59\x8b\xf4\x1f\x74\x56\xc5\xa8\x2d\x8b\x93\x6b\x5a\xa9\xad\x94\x33\x2c\x91\x98\xb1\x34\x0a\xd1\x13\xa0\x54\xef\xb2\xd7\x75\x49\x4d\xbf\xbe\x6a\xa7\xcc\xb7\x14\x9a\xfd\x83\xe3\x92\x86\x50\x09\xd3\xe6\x1b\x4e\x05\x6d\x28\x2c\xd0\x37\x3f\xbf\x7e\xcb\xb0\x21\x89\x70\x38\xd3\xd0\xe1\x4c\x1b\xc6\xb2\x4e\x98\xd8\xfd\x33\xe9\x22\x0c\xd1\xb5\xd6\x62\xec\x70\x18\xa1\x9d\x3e\x8c\x0c\xd7\xc9\x3c\xcd\x0a\x47\x13\x0e\x43\xbf\x83\x29\xc6\xfc\x19\x64\x12\xe1\x00\xfc\xc8\xf5\xca\x27\x54\x67\x7a\x31\xfd\x17\x8e\x50\x0d\xe1\xd8\x44\x7f\x33\xc7\x9c\x60\x2a\xd1\xb1\x62\xbe\x80\xd1\x09\x99\xa6\x1c\x3f\x45\xd9\x1c\xf1\xa6\x37\x8d\x2d\xec\x9b\x7e\xa4\x7e\xf5\x23\x7e\x8d\x82\xdf\xe4\xb2\x37\x1d\x3a\x1c\xfe\x87\x23\xfd\x70\xa4\x77\x43\xbf\xe3\x91\xbe\x27\xce\xb2\x2b\x8d\x86\xb9\x9d\x68\xf7\xd8\xe1\x64\xdf\xe9\x93\xbd\xea\x9a\x69\x58\x75\x0b\xaf\x99\x07\x75\x8c\x0e\xea\x78\x34\xaf\xe1\x94\x4c\xe4\x69\x80\x79\x58\xe1\x22\xdc\x8b\xfb\x58\x92\x44\x4b\xf4\x81\x4c\x24\xba\x54\x58\x6e\x97\xd2\x56\xd4\x57\x6a\x39\x44\x81\x7f\xf9\x8a\xc4\x37\x72\x7c\xd0\x3f\x07\xfd\x73\x30\x07\x47\x7b\xef\xbe\xad\x4a\x65\xa5\x22\x6a\x6c\x1c\x84\xc5\x4a\xf3\x1c\x94\xce\x41\xe9\xec\x97\xd2\x69\x37\x7a\x12\xbc\x8c\x81\xca\x53\x01\x11\x04\x96\x1c\x7b\x1b\x1f\x3d\x17\xb6\x37\xc2\xad\xc1\xfa\xde\x21\xbd\x7a\x75\xbf\x9d\x45\xa1\x95\xf6\x71\x8e\x43\xbb\x63\x68\x8a\x25\x2c\xf0\x12\x9d\x9a\xca\xf5\x7f\x62\x93\x49\x44\x28\xfc\xc9\x47\x8b\xd9\xb9\xfb\xe7\x7c\xad\x22\x54\xac\x33\x46\x8b\x74\xb2\xdf\x7e\x0d\xb0\x98\x31\xea\xee\xf9\x5e\xd4\x8b\x3d\x53\x50\x0f\xfa\xff\xa0\xff\xb7\x5d\xff\xcf\x75\x5d\x21\xbe\xd7\x57\xde\xdf\x0c\x8e\xa8\xc6\x6a\xdb\x4e\x03\x55\xd3\xd0\xcf\x09\x77\xb0\x49\xcd\xe0\x2d\x11\xca\x83\x4e\x6a\xfa\x64\xbf\x2f\xc2\x07\x55\x73\x50\x35\xf9\x71\x07\x55\xb3\x13\xe6\xcf\x69\x2f\xdf\x7f\x81\x8a\x8f\x42\x49\x16\x11\x88\x4c\xd0\x92\xa5\x68\x86\xe7\x80\x18\x05\x94\x0a\xe0\x88\xd0\x24\x95\xba\xea\xa3\x96\x3e\xf3\xbf\x01\xa6\x3a\xaf\x53\x40\x88\x24\x43\x40\xa4\x52\x1e\xa0\xb6\x03\x61\x64\x17\x87\x98\xfa\x9f\x26\x2f\xd5\x2e\x29\xca\x42\x14\x42\x21\xe7\x94\xe6\x31\x4e\x25\x43\x21\x48\x08\x24\x84\x6f\x76\x4d\x7f\xae\xf9\x12\x15\x5e\xce\xb6\x3e\xe8\xd5\x83\x5e\xfd\x81\xf4\xea\x0c\x82\x67\x96\xca\x73\x9d\x78\xc6\x78\x58\x75\xbb\xdc\xb6\x46\xab\x76\xcd\x3d\xcc\xbe\x55\x23\xc8\x08\x0b\x89\x04\x9e\x43\x88\xd4\x4e\xc0\xf7\x3d\x6b\xbb\xaa\xf7\xf3\xb3\xda\xcf\x4b\x8b\xde\x0f\x22\x56\x96\x39\xcc\xcf\x8c\x7c\x1d\xda\x36\x67\x7b\x5f\xc1\xb8\x97\x98\x4b\x23\x17\x9a\x6f\x90\x56\x04\x28\xe1\x2c\x00\x21\x4e\xd0\x62\x46\x82\x19\x22\x02\x61\xf4\x84\x83\xe7\x29\x67\x29\x0d\xdd\xd7\x68\x86\x69\xa8\x3b\x36\x3a\x1f\xae\xae\x96\xcd\xa2\x48\x8d\xd5\x06\x96\x3b\xe3\x2a\x0b\x62\xbf\xa2\x95\x60\x4a\x7a\x3f\xde\x7d\x2c\xbd\xdd\x51\x36\x1e\x9e\x68\xcb\x8e\x22\xf8\x6e\x59\xd8\x21\x38\x89\xd8\xc2\xc7\x50\xc8\xe0\xef\x9e\x9d\xf0\x73\x27\x21\xff\xe5\xa7\x9f\xd5\x3e\x53\x58\x64\x5c\xb1\xc0\x02\x09\xc5\x57\xcd\x77\xd5\xc1\x14\x9e\xfe\xad\xdb\x4c\xeb\x0d\x6b\x4b\xfc\xa5\xa3\xd2\x7b\x8b\x43\x74\x07\xdf\x52\x10\x8d\x89\x8b\xaf\xa9\xea\x0e\xea\x7d\x17\xbd\x5d\x7d\x35\xfc\x65\x04\x98\xe7\x2c\x1f\xad\xe6\x43\xab\xe7\xc9\x04\x11\x8a\x26\x44\x6d\x63\x5d\x89\xb9\xed\x35\x85\x8a\x85\x7c\x0e\x82\xd0\x8e\xf3\xd0\x77\x86\xf3\x00\xd3\x00\xa2\x1d\x08\x4c\xf5\x16\x20\x8d\xa0\xb2\x80\x78\x4a\xa9\xb6\x76\xca\x96\xd2\x41\x6e\x0e\x72\x63\xff\xf2\x94\x1b\x0e\x13\x0e\x62\xb6\xc7\x82\x93\xbf\x74\xbb\x84\x9d\xbc\xe8\xd8\xdb\xb7\xbe\x34\x68\x31\x82\x50\xb8\xd7\x78\xda\x90\x24\x14\x61\x44\x19\x45\x4f\x11\x0b\x9e\x95\xe4\x55\x27\xc3\x6c\xaf\xa4\x1d\x2e\xeb\x3b\x25\x8c\xa7\x8e\xd1\x36\x08\x2f\x3c\xe8\xd0\x82\x50\x17\xc9\x49\x1a\x21\xc9\xd0\xd4\x66\xb3\xc5\x4c\x48\xc4\x21\xa8\x91\x83\x13\x9d\xdd\x06\xdf\x71\x9c\x44\x60\xaf\xa0\xe6\x1a\xa9\x38\xdf\xf4\xa6\xaa\xb8\x91\x26\x9c\xcd\x49\x58\xe9\xbe\xde\x35\x85\x71\x5b\xa5\x04\x56\x0d\xb8\xca\x6e\x8a\x4c\x83\x28\x62\x2d\x30\x0f\x05\x3a\x76\x5b\x58\x19\x97\x38\x28\x8a\xd2\x2f\x1f\x14\x05\xaa\x51\x14\x56\xc2\xce\xd5\xc5\x28\xad\xe8\x85\xb7\x65\xce\x71\x9b\x2c\xdb\x59\xea\x3e\x58\xf5\xe4\x14\x8a\x41\x17\xb1\xc9\x5a\x96\x2d\x3a\x66\x7c\xed\x02\xa9\x3e\xdc\x2d\x19\xc3\x51\xf4\x79\x52\x4b\xbf\xfc\xbf\x66\x40\x19\xc0\x6a\x8e\x0d\x59\x8c\x09\x3d\x7b\x1f\xb1\xc5\xbd\xe1\x9c\x56\x68\x35\xb2\xd9\x63\x49\xce\xb4\x67\x4f\xff\x82\xa0\xc9\x03\xb5\x36\x2b\xe1\x2c\x01\x2e\x49\xc3\x9e\x55\xce\x0b\xb1\x6c\xa7\x7b\x69\x56\x8d\xa0\x63\x2e\xcf\xaa\x43\xd5\x75\xff\xaa\x85\xbe\xfb\xa8\xe6\x11\xff\xfc\x31\x14\xad\x15\x7f\xe3\x3d\x7d\x0d\x6d\x6b\xcb\x69\x9c\xff\x27\x57\x7a\x24\xa8\xee\x73\xb8\x6d\x9a\xd7\x2c\xbd\x8f\xe6\x35\x36\x0d\x37\x0e\x63\x08\x5d\x51\x91\x2d\x8b\x96\xe4\x76\x44\x3f\xfb\x44\xc7\x24\x04\x1a\xea\xb7\xfb\x6f\xb2\x47\x19\xf5\x6b\xcf\x60\x57\x54\x97\x69\x7b\x46\x7a\xa8\x66\x69\xc7\xbd\xd0\xf1\x95\xb3\x39\x3d\x32\x13\xdc\xbf\x5d\x3d\xc1\x1c\xcf\x0e\x74\x88\xd9\xb3\xff\x9e\xa8\x3b\x5c\xad\x5a\xa8\xfb\xb7\x5b\xe7\xd9\x5f\x7e\xfa\x4b\x27\x29\xf8\xc4\x24\x7a\xcf\x52\xfa\x32\x41\xc1\x1f\x38\xa9\xe8\x25\x12\x8a\xf4\x5f\x96\x54\x47\xb9\x75\xac\x2d\xdf\x1d\x8c\x17\x52\x72\xf2\x94\x56\x04\xd4\x9a\xa5\xbd\x4d\xaa\x8f\x74\x22\x5e\xad\x9a\x2e\x6c\x88\x4e\x09\x24\xe6\xc0\x25\x6e\x73\xb0\x5b\x5a\xae\x1a\x4d\xcd\x26\x15\x8f\xd0\x32\xb1\x2a\x4e\x13\xf5\xa3\x1f\xf1\x53\x45\x80\xa4\x69\x99\x7a\x86\x5b\xeb\x2c\x8d\x31\x45\x1c\x70\xa8\xcb\x8e\x1d\x27\xc0\x67\x38\x11\x28\x62\x01\x8e\xc8\xbf\x21\x7c\x93\xc3\xa2\xa1\xed\x66\xaf\xf5\x77\x5b\x7b\xff\x75\xcf\x71\x94\x0e\xba\xf0\x3b\xbc\xf8\x4d\xc3\xf4\x5d\xbb\x9b\xe0\x96\x9f\xf5\x72\x47\x8c\x93\xa9\x8e\x90\xea\x45\xba\x67\x8b\xd9\xda\xdb\x56\x6d\x59\xdb\x6b\xd5\x8f\x94\xc8\x4e\x4c\xed\x26\x94\x18\x5b\x9b\x69\xc5\xa5\x1a\x0c\x04\x8a\x01\x8b\x54\xd1\x12\xa5\x94\xd4\x9d\xb1\xed\x64\xf7\xb0\xee\x8b\x1a\xa0\xc2\x8d\xd2\xac\x02\x70\x18\x12\x53\x66\xee\xb6\x45\x19\x54\xeb\xc5\x92\x0a\xf2\x5f\xf4\x0d\x84\xa4\xac\x8f\x37\x54\x59\x37\x24\x86\x07\x03\xa1\x66\x87\x7b\x71\x3b\x4c\x80\x03\x0d\x06\x06\xfb\xa0\x9b\xdb\x0e\x0b\x72\x70\xdc\x1f\x05\x9e\x6e\x02\xd2\x83\x21\x72\x97\xc6\xb3\x55\xa2\x91\x75\xb8\x5d\xd3\x09\x1b\x9a\x4b\x2e\x62\x96\xd2\x7a\xab\xb4\xd9\xfa\xbc\xe5\x24\x00\xcf\xe3\x89\x43\x48\xe4\x25\xe6\x61\x25\x16\x2d\xbf\xb7\x0a\xa0\x9c\x15\x00\x79\xfd\xf8\x07\xfb\xba\x7d\x50\x6e\xb0\x7d\x87\x06\x85\x69\x37\xfa\xd6\x45\x5a\xb6\x4a\xc6\x3c\xd8\x57\xbb\xd6\x2e\x32\x45\x7a\x55\xe5\xb5\xdb\xd4\x12\x4b\x85\x64\x71\x83\x9a\xcf\x46\x16\xcd\x9d\xc2\x44\x14\x11\x21\xd5\xc1\xf5\x0c\x4b\x7b\x5c\x79\x1e\xb0\x35\xa3\xbc\x0f\x90\x12\xdc\x3a\x92\xa3\x6a\x53\xb9\x52\x2d\x0b\x65\xfc\x87\x5a\x5d\x5c\x5f\xf9\xdb\x22\xeb\xf3\x74\xfe\x2d\x45\xd7\x57\x08\x47\xca\x9e\x5a\xa2\x67\xca\x16\x14\x3d\x2d\xf5\xf1\x7e\x89\xb9\x74\x47\xfd\x24\x95\x29\x77\xe1\xb1\xda\x8a\x7f\x83\x72\x95\x6e\x69\x36\xb4\xfe\xcb\x36\xed\x62\xd5\xab\xb8\x81\xa9\xdc\xaf\x61\xce\x6b\xcb\x65\xe8\x22\x88\x2f\xb6\xf5\x97\x44\x0e\xac\xd9\x2e\x6d\x0f\xe3\x81\x81\x9a\xce\xa3\x63\x00\x6d\x36\x64\xfb\x00\x7e\xa7\x5b\x0b\x0e\x0a\xf2\x3d\xe1\x42\x5a\xb7\xe4\x80\x60\x3f\xe2\x31\xa0\xde\x90\x30\x8c\xe0\xd3\xe0\x70\x6f\x5d\xc3\xe8\x81\x8d\xd2\xac\x8b\xef\xa0\x70\xef\x71\x94\x4a\x5c\x59\x04\x69\x33\xb8\x3a\x01\x76\x60\x90\x1c\x6a\x62\x15\x1b\xc2\xfc\x34\xb4\x19\x02\x11\xe8\x46\xa5\xdb\x65\xdd\x54\x80\xfc\x0d\x6f\x42\x50\xef\x83\xcd\x3c\x16\xbd\x22\x22\xa8\x34\xc5\x37\x3d\xe0\xec\x5b\x7e\x5f\x8b\x60\xc6\x16\x28\x4e\x83\x99\x3b\xe7\x43\xbb\x2e\x34\xc3\x02\x3d\x01\x50\x24\xd2\x27\xc9\x71\x20\x21\x5c\x15\x7c\x46\x89\xba\x0a\x9c\xa0\xeb\x9b\xdb\xcf\x77\x0f\x17\x9f\x1e\x7e\x45\x38\x5a\xe0\xa5\x40\x14\xa6\x58\x92\x79\xad\xf3\x62\xb0\x0b\x06\x8e\x13\x4c\xa6\x2d\x5a\xa0\xd8\x66\x95\x92\x6f\x29\xac\xb9\x30\x52\x1a\x02\x8f\x96\x84\x4e\x51\x60\x41\x22\xc6\x11\x4f\x23\x30\xf5\xa2\xbe\xe8\xc0\x1a\xf0\x53\xf7\xf5\xe9\x2f\x3f\xfd\xfc\x5f\x5f\x8e\x86\x75\xe6\x65\xaf\x7f\x7d\x51\x71\x38\x64\xfb\xa5\x17\x6b\x73\xb6\x42\x65\xc1\xe9\x57\xe7\x6e\xf5\xc3\xaf\xf9\x5a\x5c\x4b\x88\xef\x20\xd2\x1d\x89\x7c\x97\x3d\x89\xf0\x14\x11\x1a\xea\x4b\x2f\x9d\x22\x52\xe0\x3a\x65\x90\xda\xd7\xd4\x61\x0a\x48\xb2\xac\xa5\x55\x43\xc5\xee\xf6\xbc\xe3\xcd\x3d\x90\x99\xbb\xd1\x55\x18\xcb\x96\xfc\xe5\xe8\x3e\x4d\x80\xa3\x7b\x4d\x68\x74\x8f\x23\x40\xc3\x93\xfb\x9e\x71\xf9\xb9\xf2\x2d\x6d\xdd\x8a\x2d\x95\x41\xa7\xbb\x9a\xe7\x76\xc6\x7a\xcf\x89\xf8\x1c\x8c\x8c\x5b\x9a\x9f\xa0\x88\x2d\xac\x37\x32\x93\x7f\xb7\x1f\x4f\x30\x61\x1c\xd0\x8c\x4c\x67\x7e\x5e\x55\xd7\xf8\xc1\x4f\x9f\x37\xba\x6f\x8a\xa1\x63\xa6\x90\x50\x0c\x94\x12\x31\x43\x4f\x20\x17\x6a\xa5\x0e\xb1\xd6\x8b\xdd\x50\x4a\xfc\x03\x99\x68\xd7\xc4\xb6\x29\xf1\x55\x15\x02\x0f\x2d\x3e\xba\xa6\x1e\xdc\x4e\xeb\xed\x13\x58\x5d\xd9\x51\xa0\x61\xac\x3c\xd8\xe3\x38\x03\x2a\x53\x06\xaa\x4d\x5a\x45\xd6\xaa\x04\xe1\x3a\x5c\xea\xf7\x9c\x08\x24\x24\x89\x22\x84\xe7\x98\x44\x4a\x69\x0d\xba\xc5\xbe\x32\xa2\x53\xae\x46\xbb\xbe\x57\xfa\x9a\xea\x68\xb5\x3e\x6d\xad\xea\xca\x84\x71\x74\xe9\xcb\x0b\x0d\x09\x66\x85\x95\x79\x6d\xba\x15\xf3\xd5\xe9\xef\xcf\xc9\xe5\xa9\x68\xc6\xa2\x10\xad\x0a\x95\x08\x65\xc6\x64\xaa\x3e\xd0\x43\xf4\x93\x64\xcc\x57\x15\x4b\x24\x6b\xeb\x86\x31\x98\x07\xa4\x29\x39\x6f\x65\xfe\x6c\xe0\x18\x29\xe8\xe4\xce\xb4\xcc\x26\x9a\x57\xe9\xce\x5d\xe8\x48\x95\xc9\x57\xab\xa6\x18\x91\x52\xc5\x73\x67\x13\x72\xa5\x72\x06\x54\x6a\x13\x21\x7c\x14\x9d\xdc\x88\x15\x73\x35\xfb\xd9\x44\x7a\x26\xd5\x97\x99\x92\xdd\xcc\x61\x58\xb1\xf4\xb7\x10\x31\x3a\x15\x0f\xac\xb4\x0e\x6f\x0c\xea\x41\x28\x99\x49\x22\x75\x95\xb1\xb6\xa9\x3e\x29\x89\x40\xd3\x14\x84\x4b\x59\x9e\xe0\x48\xc0\x1b\x25\x61\xee\xf9\x04\xce\xc3\x31\xb6\xf7\xb1\xd2\xfe\x55\x99\xcc\xa8\xb7\xcd\xfa\x96\x44\x11\xa1\xd3\x3a\xe7\x68\x2d\xb6\x6b\xd3\x5c\x48\x57\x69\x79\xf4\x64\xbe\x42\xd8\x7e\x77\xcc\x21\x82\x39\xa6\x52\x6b\x46\x1c\x65\xef\x41\xc4\x39\xa1\x73\x46\x02\x10\xb5\x28\x35\xab\x47\xbd\x62\x2f\x2c\xaf\x60\x82\xd3\x48\x5e\xea\x2c\xf1\x60\x60\x1f\xe2\x95\xa9\xf4\xdb\xe4\xac\x2f\x92\x6f\x35\x45\x3f\x0c\xc1\x84\xe6\x15\x84\x6b\xee\x9f\x1b\x75\xcc\x38\xba\x9f\x91\x44\xd3\xed\x0d\x52\x84\x8b\xe6\x10\x9a\xe6\x43\x44\xbc\xb6\xbe\xb5\x2b\xf5\x6e\x7a\x56\xe9\x31\xa5\x92\xc8\x65\x07\x9d\xe1\x26\x18\xed\x2a\x20\x60\x34\x2c\xf5\x13\x8c\xf1\x32\x3b\x99\x9f\x96\x48\xb0\x18\x74\x79\x10\xa0\xed\x6a\xb7\xd3\xe5\xd5\x7f\xdd\x66\xc5\x99\xbc\x94\x1b\xf9\xf9\x6c\x66\x8f\xa0\xe0\x7d\x6d\x41\xf6\xba\x95\x96\x8a\x9a\x9b\xc7\x62\xfa\x94\x17\x52\xdd\xdd\x08\x9d\x30\x1e\x6b\x0f\x27\x62\x14\x7d\x51\x46\xe4\x97\x23\xfb\x8e\xd2\xaa\xea\x05\xa6\x52\xa8\x29\x49\x3d\xfb\x35\xf0\x56\x69\xf5\x7e\x38\xa7\x3c\x98\xe1\x2e\x0a\x3c\x9b\x61\xec\x9e\x9c\x65\xaf\x90\x14\x59\xee\x70\x04\x53\x9d\xb4\x42\x25\x0e\x24\x4a\x80\x0b\x45\x18\x2b\x87\xa6\x38\x55\x0f\x24\x35\x18\xcf\x8b\x2d\x93\x38\x6a\x96\xd7\x7a\x73\x55\x3f\x52\x95\xf8\xbb\xf6\x3c\x48\x05\xe9\x35\xad\x8f\x0c\x15\x6f\xc5\xe1\x7d\x57\xa8\x77\x80\x8d\x9a\xc9\xf7\xa2\xb7\xcf\x52\x44\x5a\xdd\x43\x8a\xdc\x1b\xaa\x0b\x8a\x69\x09\xaa\x48\x62\x7c\x95\xa7\xe8\x19\x96\xe6\xc5\xa2\x4d\xb4\x52\x46\x7c\xc2\x99\xa2\x08\x12\x09\x04\x64\x42\x82\x17\xbc\xc1\xfa\xee\x6b\x76\xd2\x0c\xbd\xab\x98\xcb\x6e\x32\x95\xcd\x70\xda\xdc\x1d\xdf\xe6\xc3\x27\x6d\x0f\x2a\x43\x48\x5f\x89\x88\xc8\x3a\x06\xbe\xa2\xbc\x5d\x77\x11\xb5\x7a\x53\x67\xd9\x9c\x82\x53\x6d\xec\xe8\x49\x2b\x73\x27\x04\x89\x49\xe4\xd4\x6a\x8e\x3c\xc6\xef\x3c\x63\x0b\xcd\x9d\x8b\x19\x70\x58\x6f\xb8\xb8\xd6\x72\x47\x7d\xa4\x0f\xa4\x1e\x4a\x77\x0d\x1b\x3f\x9f\xe9\x8c\x24\x09\xa1\x53\x4d\x47\x5f\xfc\xf3\x93\xbe\x48\x0e\x09\x07\x01\xd4\xbc\x64\x14\xf6\x3b\x14\x30\x21\xd7\x2c\x96\x92\x89\xd7\xc6\x3e\x0d\x88\xae\x2d\x7b\x73\xd9\x1b\x25\x8d\x6c\x70\x3f\x4c\x66\xa3\x14\xb5\x5a\xd1\x68\xc9\x33\xd7\xee\x26\xf0\x5c\x62\xce\x49\x07\x73\xc7\x8e\x47\x59\x6b\xe4\x7c\xa3\x13\xf7\x65\xa1\xe2\x9c\x7d\x70\x44\x94\xed\x60\x2a\x00\x40\x90\xea\xa8\x4b\x17\x1a\x76\x4d\x4a\xef\x9c\x36\x8f\x2b\xb6\xbc\xdc\xc0\xd5\x71\x33\x3a\xd5\xb5\x95\x29\x28\x59\x93\xd9\xd7\x17\x61\xf8\xc0\x74\xbe\x92\xad\x91\x96\xaf\x79\xf0\x85\x1a\xb7\x58\x08\x9a\xe5\x26\x2c\x8a\xd8\xc2\xba\xca\xe8\x5c\xfd\x94\xb3\x09\x01\xdd\x01\x0e\x63\xf8\x15\x3d\x2c\x13\xf8\x6a\x72\xfe\xbe\x7e\x64\x26\x45\x53\x7f\xe6\xfe\xa7\xa1\x56\xef\x26\xf7\xd2\xa5\x83\xdf\x59\x61\xbb\x89\xee\x80\x93\x98\x4f\x41\xea\xac\x78\x99\x6f\x71\xb4\x81\x66\x2a\xad\xd1\x13\x33\x7d\x41\x7e\x20\x4d\xd9\x25\x25\xa4\xb2\x39\x36\x49\x2d\xe3\x7c\x77\xdf\x96\xea\x3b\x5f\xa4\xc6\xc8\xf8\x2c\x2c\xd9\x0c\x77\xd4\xcf\x8e\x0a\xdb\x7d\x48\x5d\x65\xe5\xcc\x08\x1f\xd6\xfe\xa4\x12\xd7\x67\xb5\xc1\x15\x93\xc6\x80\x29\x0a\xc9\x44\xa7\x5f\xcb\xd5\x71\xfa\x2d\x55\x26\x38\x01\x81\x16\x44\xce\xaa\x46\xa8\xb3\x69\xd0\xcb\xf2\xdf\x19\x7f\xd6\xe5\x29\x7d\x29\xe1\x26\x38\xfd\x74\xb5\x66\x2b\x64\x0b\x65\x1c\x25\x24\x78\x4e\x93\x13\x24\x60\x35\xca\xcd\xbe\xb5\xdf\x15\x3f\xbf\xca\xcd\x2f\x7e\xf7\x48\x2d\x35\x6b\x2b\x44\x0e\x17\x03\x6c\x15\xd8\xcd\xcf\xd8\x4e\x4e\x3e\xe7\xdd\xcb\x6c\x36\xfd\x42\xc3\x7e\xe8\xb2\x3b\x1c\xed\x9c\x56\x38\x51\x06\xcc\x13\x20\xca\x24\xca\x3c\x7f\xd6\xf1\xa9\x96\xaf\x18\x55\x7d\x67\xe1\x8c\xed\xf9\xeb\x77\x80\xe4\x94\x43\xd1\x3d\x43\x44\x86\xea\x79\x08\x42\x12\x6a\xf6\x6a\x40\xf1\xe8\x14\xb9\x7e\xb0\x34\xcd\xe8\x5b\xdc\x98\x53\x65\x0e\x19\xc7\x97\xf3\x2f\x31\x2a\x24\xd6\x12\x3e\x21\xd4\x99\x98\x80\x12\x1c\x3c\xe3\xa9\xba\xc8\x3c\xaf\x84\x27\xca\x1d\x55\x17\xcd\x7b\xd6\xef\x49\x04\xf4\x74\x41\x97\x66\x3a\x2e\x73\x1c\xba\xb2\x5b\x24\x7e\x06\x6a\x1c\xeb\xce\x3b\x7d\xcc\x68\xb4\x44\x6b\xae\x69\x4d\x3d\x3b\x79\x03\x27\xbb\xaf\xb4\xbf\xfb\x6e\x12\x0e\x2e\xad\x9f\x6c\x8c\x5c\xf7\x6e\x5e\x49\xc7\x1e\x76\x41\xa3\xeb\xbb\xca\x5b\xd4\x0b\xdd\x23\xb6\xdf\xa0\x2f\xa4\xf5\x75\x8e\x3e\x66\x13\xd7\xf5\xb7\xbb\x77\xe3\x27\x96\xca\xb5\x54\x29\xb1\x1e\xc4\x25\xc2\x64\x4a\x9d\xaa\x41\x4b\x77\xb5\xfa\xa2\x3d\x10\xdc\x24\x69\x7d\x39\x52\x47\x26\x65\xaf\x19\x7a\x28\x66\x3f\x6e\x40\xf1\x77\xb6\x60\x99\xc7\x13\xb5\x62\x28\xa2\x38\x73\xed\x26\xfa\xb4\x34\x41\x3e\x01\x7c\x4e\x02\x40\xfa\xc9\x7d\x0c\xd4\x64\x06\x6b\xd7\xb8\x80\x04\x73\x2c\xc1\xd6\xd8\xb0\x2e\x02\xec\xee\x11\xb9\x6a\x6a\x5f\xe8\x1a\x2c\xad\xd4\x4c\xda\xa1\xce\x44\xd4\x5b\x36\x6c\x70\xb4\x97\x12\xb1\xac\x43\x4d\x91\x34\xa6\x69\x61\x56\xc8\xe6\x60\x2c\xec\xc5\x8c\x45\xc3\x07\x3b\x6e\x56\xf5\x3a\x86\xf7\xd4\xda\xe7\x96\xc3\xa7\xb5\xff\xaf\xcf\x13\x8c\x4e\xe9\x6f\x77\x6c\xa1\xf3\x6d\x3e\x70\xd6\xe1\x50\x5d\x9f\x35\x72\x1e\x97\xfb\xb1\x4f\x4d\x79\xe7\x35\x0b\x54\x73\xc6\x5f\xde\x03\xfe\xde\xc1\x1d\xef\x45\xbc\x97\x88\xaa\xe0\xef\x9b\xa8\xc1\x7b\x42\xa7\x11\xf4\x60\x9e\xe2\x44\x34\xd5\xff\xd5\x39\x81\xe8\x98\xd0\x20\x3a\x43\x52\x51\xd4\x14\xe2\xc1\x48\xe8\x09\x2d\xd5\x78\x06\xdb\xcf\xdc\xf2\xba\x70\xdc\xfa\x34\x44\x41\x3a\x8c\xe0\xfb\x6b\x63\xc4\x52\x1e\x40\x07\xfd\x6c\x26\xa0\xeb\x50\xa9\xe9\x95\x6b\xdd\x44\x2c\x56\xf6\xb2\x5e\x12\x8e\xf4\x65\x1a\x42\x74\x8a\x5c\xa5\x50\x01\xd2\x3d\xe5\xd3\xa0\x08\x9d\x7e\x64\xd3\xf6\x40\x51\xb7\x47\x13\x9c\x60\x2a\x8d\x1e\xbf\x6d\xd7\xe3\x05\x14\xab\xa7\x67\x91\x6b\x9d\x9d\xc7\xe8\x84\x4c\x53\xae\x63\xa0\xae\x98\xd7\xe8\xd6\x6e\x6b\x14\xbe\xb6\x0c\x43\x19\x94\x89\x16\xbf\xb4\x7b\x60\xa8\x3b\xb9\xd7\xcd\x27\x1b\x5d\x32\xb5\xca\x93\xb3\xc4\x2a\x57\xba\x39\x0b\xe5\x9b\xcb\x3c\xd8\x39\xab\x9c\x84\x53\x9b\x36\xe3\x2c\x63\x13\xe2\x37\x36\x71\x69\x74\x0f\x1f\x45\x25\x8a\x7e\x26\x86\xde\x5b\x1c\x5d\x19\x3b\xbd\xd7\x6e\x14\x61\x6c\xc0\xb4\x2d\xab\xd9\x90\xe5\xae\xb0\x84\xcf\x93\xb7\x84\xcb\x72\x75\xf1\xd2\x4f\x74\x51\x22\x9f\xb0\xb9\xb6\x0d\xfe\xb4\xf5\x16\x0b\x91\x30\x2e\x47\x79\x8d\xea\x80\x7f\x4a\xe3\xa7\x8d\x1e\xef\xfb\x6e\x6f\x63\x3c\x73\x98\x27\x07\x1e\xf7\xd7\xdd\xba\x25\xb6\x1b\x10\x43\x1d\xef\x0f\xf8\xfb\x4b\x55\xd7\x78\xa9\xd2\x0e\xca\x34\x1d\x9a\xcf\x5e\x88\x44\x77\x83\x3f\xb9\xdd\xb0\xc0\x8c\x37\xcd\xa1\x32\x0f\x6e\x53\xd5\x6d\xfd\xc3\x2d\xaf\x0c\xb6\xaf\xdc\x81\xd2\x75\x97\xcd\x2c\xd3\xeb\xc2\x6d\x7d\x03\x1b\x83\xf6\xde\xd6\x2c\x77\x6e\xeb\x13\xdc\x8c\x94\x6d\xbd\x12\x7b\x35\x11\xcd\x57\x32\xde\xfa\xcd\xbc\x01\x31\x7e\x19\xab\xf5\x5a\xfa\x07\x9a\x68\x9a\x54\xd5\xcd\x1c\x98\x34\xd5\xf4\xce\xbe\xae\x29\xae\x65\x34\x5f\x63\x3d\xee\x06\x8d\xd9\x53\x31\xbc\xc5\x82\x04\xb5\x85\x6b\x2b\xdd\x25\x69\x10\x34\x5e\x70\x87\x09\xee\xd5\xf5\x4c\x1e\x21\x63\xb5\xe6\x68\x6f\x21\x60\xde\x2a\xf0\x22\x9c\xfa\xa9\xdf\x70\x44\x42\x7d\xab\xaa\x41\xa7\xe5\x47\xe7\xd9\xfc\xb3\xba\x92\xaf\x95\xa9\x3e\x5d\xa2\x78\xde\x10\x57\xc8\x34\x67\xb2\xf6\x81\xdf\x22\x42\xa5\x94\x83\x42\x3e\x2c\x99\x20\x61\xf8\x14\x11\x81\xf4\xb3\xb0\xee\xfe\x87\xce\xa2\xf8\xe2\xa2\x31\x05\x79\x99\x2d\x74\x0c\xd1\xe8\x25\x14\xd5\x4d\x1d\x5e\x53\x24\xba\x51\xb5\xdc\x7a\xe7\x40\xd9\x0e\xca\xe6\x3d\x26\x11\x84\x77\x80\xab\xbc\xab\x25\x0a\x76\x31\x10\x4c\x79\x3c\x3a\x61\xdd\x1d\x7a\x85\xdd\x0d\x73\xa0\xfc\x44\x7b\x8c\x5a\x51\x58\x42\xb3\x66\xae\xb5\x14\x94\x9a\x39\x5b\x01\xf0\xfa\xbd\xc7\xc7\xa6\x18\xc7\xc0\xb6\x55\x89\xca\x43\x9b\x58\xc3\x57\x86\xcb\x95\x77\x7d\x35\x37\x5b\x7b\xe1\xd9\x4a\x88\x9e\x3e\x37\xbd\x27\x57\x10\x30\x8e\x25\x84\x7d\xb4\x50\x68\x26\x33\x7e\xb6\x0e\xa6\xc3\xef\xfb\x08\xf1\xb8\x44\xce\x95\xb1\x2d\x2c\x69\xd0\x07\x74\x6d\x0d\xcb\x07\x96\x88\xf1\xc5\xbb\x6e\xf3\x77\xef\x74\xcc\xd6\xef\xf3\xea\x7c\x5c\x66\xac\x20\x6a\xe7\x77\xe0\xfd\xf7\x6e\x8c\x90\x45\xf3\xb3\xae\xce\xef\xea\x5e\xfc\xce\xdb\x8f\x9a\x63\x3d\xa9\xcc\x7e\xe0\xba\xf9\x5d\xe5\x8b\x73\x69\xc6\x3e\x1b\x9c\x48\xb5\x44\x6b\x59\x4e\x4b\xb9\x04\xaf\x2d\x74\xbc\x10\x56\x78\x9c\xb6\xce\x35\xd6\x52\x14\x6f\x10\xed\x5e\x21\x1c\xbd\x92\x2b\x2c\xa0\x4b\x2c\x61\xca\xf8\x72\x9c\xc0\x49\xf7\x17\x09\x3a\x45\xa7\x54\x25\xc2\xad\x72\xc8\xdc\x9b\xe6\xc4\xc6\x62\x97\x24\x1c\x67\x2f\x0f\x44\x02\x58\xb7\xbd\xce\xbf\x22\x0c\x46\x58\xe1\x2d\x6e\x4a\x15\x28\x35\x38\x06\xa4\x26\xa0\x63\xce\x98\x44\x92\xa1\x08\xf0\xe4\xcd\xea\xcd\xb1\xa3\x21\x3a\xcd\x32\x70\x75\xba\xee\x97\xa3\xf3\x0d\x8a\x2d\xfa\xb3\xec\x28\xee\x6d\x0d\x74\x84\x8a\xd6\x0a\xec\x8b\x38\xba\x73\x6d\x49\x2f\x74\xaa\xd4\x18\x4f\x23\xae\x4c\x51\xa6\x4e\xb9\x47\xb9\x39\xb6\x3a\x55\x88\x25\x3e\x41\x94\xf1\x18\x47\xd1\x12\xfd\xf5\xe1\xe6\xa3\xcd\x76\xb6\x45\x9f\x56\x25\xd1\x52\x31\x6c\xbf\xa6\xf7\x8c\xc7\xb7\xae\xd1\xa2\xb7\x0b\x73\xb0\x87\x0e\xcd\x1d\x65\x19\x8f\xdf\x13\x88\x36\xaa\x27\xf6\x78\xf7\xd1\x7b\x67\x1e\xef\x3e\xe6\x8b\xd3\x24\x58\x08\xa4\x3e\xd3\xc5\x2f\x72\x1b\x50\xcc\x14\x13\x12\x4b\xb0\x59\xea\x82\x0d\xdb\x90\xea\xef\x38\x8a\x40\xf6\xcc\xe3\xb2\x84\x5c\x87\xb1\xa9\x34\xdd\xd7\xb4\x87\xde\x30\x01\xa3\x5b\x51\x21\x33\x5c\xef\x12\xf0\x09\xe3\xb1\xfe\xd3\xf4\x53\x5f\xbd\x44\x33\x0d\x9e\x27\x11\x5b\x9c\xa1\xeb\x89\xeb\xf4\x4c\x04\xfa\x72\x64\xbf\xfc\xba\xc0\x44\x12\x3a\xfd\x3a\x61\xfc\xab\x4b\xd5\xd3\xb5\x87\x88\x40\x13\xc5\x7c\xeb\xe9\x7d\xee\xc5\xbf\x49\xf2\x5b\xcc\xb0\x3e\x10\x42\x86\x4e\x5d\x59\x66\x0e\x21\xe1\x10\x48\xf3\xac\xe5\xcb\x91\x98\xb1\xc5\x57\x32\x51\x22\x36\x6c\xe9\xdd\x06\xad\x96\x8d\x69\xed\xd8\x9c\x03\xe2\x67\xb1\x76\xd2\x74\xba\x9a\x42\x56\x9a\x6c\xbd\x16\x92\xa3\xa4\x7d\x05\xe4\xe4\x0b\x9b\x8d\x3d\xd7\xbb\x36\x64\xab\xb1\x6e\x11\x15\x3d\xba\x75\xed\xba\xfe\xb3\xd0\xa6\x0a\xa6\x08\xf4\x9c\x63\x53\xf1\xda\xf1\x9e\x76\x06\x77\x2c\x4d\xb7\x76\xae\x7b\x21\x57\x23\x93\x75\xd8\xdd\x67\x2d\xcf\xcb\x72\xf2\xce\xb0\xb1\x93\x8f\x80\xc5\x49\x04\xfa\x99\xd6\x49\xbb\xd8\x68\x8e\x77\x63\x0c\xee\x2f\x62\x02\xad\x8e\x8a\x81\xd5\x52\x4b\x4f\xbd\x57\x4e\x4c\xf2\x27\xd0\x47\xb6\xc4\x91\x5c\xbe\xc3\x9c\x12\x3a\x1d\xa3\xf6\x8a\xad\x8e\xf8\x02\x09\x3a\xa3\x67\xd3\xac\xd3\x4c\x2f\x6d\x0c\x8a\xd5\x45\xd7\x3a\x50\xcc\x81\xf0\xf4\x36\xbc\xd0\x0e\xb9\x04\xd9\x87\x46\xec\x7a\x55\x23\xb1\x90\x9b\x8a\x90\x0f\x85\xc5\xb5\xf0\xf9\xb5\x5e\xf5\x52\x6f\xf0\xf7\x5b\x46\xa8\x14\x0f\xec\x3e\x01\x9f\x4c\xbf\x6e\x5d\x73\xe8\x88\xd0\xbb\xd7\x15\x60\x1c\x7d\xca\x5d\xe8\xad\x58\x29\x6b\x6d\xca\x71\xfc\x02\xa7\xc3\xad\x6b\xf5\xaf\x4b\xf0\x5c\xdc\x5e\x0f\x2f\xc9\xe6\x90\x6c\xbc\x6c\xf4\xab\xbe\xd3\x62\xf7\xf7\xcb\x33\xe3\xc1\x0c\xd3\x5c\x7c\x7c\xf0\x75\x9b\xa2\x33\x03\xaf\xfb\xb3\x66\xab\x4d\x80\x76\x60\x99\xca\x64\xd3\x2e\xfe\xbf\x35\xfd\x3c\x34\xbf\xcd\x30\xa5\x10\x8d\x55\x44\x12\xf8\x07\xce\xd2\x64\x60\x17\x2e\x0b\xf0\xd8\xaf\x03\xf2\xa4\x1f\xa5\xbe\x5c\x20\xc9\x1c\xde\x62\x31\x30\xd9\x57\x70\xdb\xde\x21\x6c\x06\xfd\x91\x92\x81\x61\xbb\x7e\x47\x77\x69\xb4\x5b\x09\xfc\xfb\x6b\x7c\x01\x5d\xde\x30\x0e\x1d\x9e\x4c\x75\xb2\x5d\x0e\xc6\x5d\x0b\xe8\x07\xfc\xfd\x32\xc2\x3e\x69\x90\x03\xa8\xba\x7b\x5d\x06\xc4\x37\x5e\xd5\x4b\xdd\x6d\xfc\xee\xc2\xbf\x32\xaa\x4f\xf5\x62\xbf\xb6\xe7\x9e\x69\x6d\x17\xae\x15\x8d\x5e\xe8\xeb\x85\x97\x5b\xa9\x85\xbc\x15\x9b\x8e\xe8\xbe\x36\x26\x26\xac\xbc\x89\x7a\x36\x31\xb5\xd7\x4c\x4c\xa9\x0c\xe3\x6e\x8e\xd2\xf2\x81\x29\xbb\xed\x06\xeb\x37\xb3\x3b\x75\x64\x72\xc0\x12\xc2\x8b\xa1\xd5\xfe\xda\x95\x71\x40\xc0\xd7\x59\xb4\x7b\x60\xb8\xe2\x13\x34\x54\x9d\xec\x75\x68\x5c\x8b\x7b\x1c\x81\x6e\x8a\x35\x2c\xe0\xbf\xc1\x72\xc1\x1a\xdb\x0e\x6d\x1f\xa3\xad\x3b\x2b\xfd\xdd\xda\x85\x79\xe8\x5f\x3a\xba\xba\x2a\xc2\x98\x2b\xcf\xb0\x6a\x06\x14\x59\x77\x04\xb8\x5f\x6b\xf1\x47\x8c\xaa\x6d\x2a\xdc\xb4\x9b\xd3\xb1\xed\x6c\xab\xa6\xa2\x99\x65\x23\xd4\x05\x1a\x4e\x18\xcf\x4a\x9e\xac\x6a\xc3\x3e\x01\x4a\x30\xd1\xe1\x37\x9c\x91\xd5\xd3\xcb\xf3\x12\x54\x1d\xe4\x78\xbd\xc1\x84\x66\x49\x33\xfd\x8c\xa2\xb6\x23\xa5\xbe\x20\x99\x47\x21\x9b\x7e\xde\x9a\x90\x78\xbc\x8f\x1a\x67\x8f\xac\xe5\x66\xd6\xb0\xc1\xc6\xdc\x69\x57\x19\x8c\x90\xb3\xe2\x20\x0f\x5f\xb0\xcd\x41\xbe\x7f\x4e\x87\x05\xec\x0e\x93\xf7\x9c\x35\xe4\xa2\x6e\x02\xf9\xc1\xe3\xc1\x5b\x27\xb8\x33\xc6\xe5\x68\xa6\xc0\xbd\x64\xc1\xf3\x47\x98\x6f\x94\x44\x58\x75\xd7\xeb\xf5\x74\xd2\xea\x01\x33\xd9\x3f\xf6\x3e\xc2\xcb\xf4\xc7\x24\x1c\xc3\xa4\xfb\x8d\xe8\xf2\xfe\xc3\x73\x9f\x05\xbc\x11\xf3\xf9\x5f\xae\x73\x1b\x34\xf0\xcd\xba\xed\x92\x56\x6c\x94\xa7\x87\xaf\x4e\x61\x11\x91\x40\xc7\x53\x9e\xcc\x17\x92\x21\xa9\xd7\x6a\xba\x16\x34\x55\x8d\xdb\x8d\xeb\x5f\xdf\xba\x6d\x0f\x33\x40\xe2\x39\x2d\xb6\x9c\x70\x19\x5d\x11\xa1\xcf\xa6\xd8\xa9\xd9\xda\x41\x8b\x50\xb7\x9c\xa2\xa5\xb2\xfc\x6a\xf4\xab\x6c\xd2\x50\x27\xee\x2d\x07\x53\x87\x0e\x42\x5b\x2f\xaf\xf1\x1c\x2b\x76\x4a\xab\x9a\x8d\x62\x32\x9d\x49\xb5\x65\x02\xa4\xed\x37\xb5\x2a\xb3\xa7\x19\x7d\x4a\xe6\x80\x30\x9a\x11\x2a\xb3\x2d\x95\x0c\x61\x34\x37\x50\x74\x32\xce\xda\x34\x74\xfc\xa0\x5b\xe2\x38\xd0\x26\xab\x58\x00\x22\x6a\xa4\x4e\xe8\x9b\x90\x48\x02\x37\x86\x2d\xa6\xab\x96\xbb\xba\xf9\x81\x4d\x27\xb3\x12\xa6\xfe\x74\x3f\xa5\x7b\x1d\x98\xee\xb5\xd9\x0c\xa2\x6b\x20\x2e\x68\x6b\xf1\xef\x2d\x3a\x1d\x15\xf4\x31\xea\x9e\x68\x8a\xed\xa1\x8f\xcd\x20\xe6\x91\x53\x93\xcd\x28\xea\xa9\x0a\x00\x59\xfd\x7d\xc3\x67\x59\xa7\xc0\xf5\xfb\xa9\xd1\x65\x84\xa2\x29\x27\x21\x3a\x37\xfd\xc2\xe6\x04\x6a\x73\xe5\x36\xbe\x6f\xb6\x12\xa0\x3e\xdc\xe6\x85\x7e\x36\x3d\x6b\x81\x96\x5d\x1d\xd5\x29\x97\xbf\x5e\x66\xc5\x37\x2d\x8d\x4c\xae\x1d\xa3\x9a\x0a\x8a\x38\x8a\x10\x5d\x1b\xc1\x7a\x5f\x12\xeb\x09\xd1\xe2\x22\xaf\xc4\x5e\xcf\x71\x28\xe7\x50\x5d\x9d\x5a\x5a\x8d\x68\xed\x63\x0e\x2b\x74\xac\xd0\x54\x28\xf6\xc3\xb0\x3f\x6a\xd7\x42\x99\x72\xbd\xb1\xcc\x4d\x77\xf5\x5f\x95\xc5\xc2\x53\x70\x19\x94\xc2\xd6\x91\xcd\xcc\x17\xab\xad\x67\x78\x0e\xb9\x66\x32\x89\xf1\x49\x98\x6d\xcf\xab\xf8\x61\xdb\x19\x3f\xde\x7d\xbc\x8f\x52\x0f\xdf\xec\x00\x36\x66\x73\x7e\xf7\x86\x66\x66\x7b\xe2\x4b\x36\xb4\x99\x73\x4a\x70\xfc\xe8\x28\x20\xb4\x53\xdb\x9a\x16\x0d\x41\xd1\xc4\xad\xf2\x50\x07\xab\x40\x98\xd5\x83\xef\x4b\x0e\x21\xd1\x4d\xda\x47\xc9\x8f\xa0\x8c\x2e\x63\xf2\x6f\xfd\x3a\x32\xdc\xb8\x00\x69\x65\x10\x85\x87\x7f\x65\x51\x38\x34\xdc\x77\xdf\x13\xc2\x87\x36\x7f\x46\x4f\x54\x6d\x78\xc9\x3f\x78\x76\xef\xaa\x50\xe3\xc0\x59\x5d\x6a\xc9\x2f\x51\xab\xb6\x5c\x36\xa4\x57\x7a\x57\x45\x9d\xb2\x83\x96\x51\x30\x72\xe5\x72\xae\x25\xc4\xab\xec\xc2\xf1\xde\x27\x5a\xbc\xfe\x06\x03\x97\x50\x56\xeb\x1f\xbb\x9a\x44\xb9\xba\xd0\xf0\x49\xa9\xb1\x25\xfe\x58\x74\xfa\x2b\x16\xb9\x5f\x19\x3a\x24\x2a\x21\x36\x94\x79\xb5\x3b\x63\x0b\x4b\xfb\xde\x20\xeb\xb8\xe1\x0f\x39\xd4\x8f\x24\xd6\x91\xce\x7f\x64\x5f\x17\x98\xa1\xf8\x00\x2e\x8a\x90\x6e\x2c\xea\xde\x4f\x5d\xdc\x5e\x0b\x04\x34\x4c\x74\xea\xf7\x09\x8a\x99\x90\x48\xa4\x44\xda\x26\xed\xea\x46\x11\x28\x63\x33\x34\x1e\x30\x8c\x9e\x38\x5b\x08\xe0\x27\xe8\x09\x02\x9c\x0a\x30\x2d\x9a\x38\x44\x4b\xd7\xd0\x56\x80\x10\xfa\xb5\x1b\x0d\x51\xc0\xd8\x33\x01\x34\x03\x1c\x02\x17\x67\x45\x6e\xa4\x26\x38\x72\xb4\x5e\x84\x24\xb7\xaf\xed\xe8\x58\x53\x71\xdb\x30\xb2\xcb\xea\x8b\x94\xbd\xcf\x54\x23\x55\xff\xa3\xc5\xf2\x1c\x9d\x7e\xf4\xd2\x16\x3e\xdd\x36\x52\xba\x75\x1d\x15\x64\xe0\x9f\x7f\xf8\xfd\xff\x02\x00\x00\xff\xff\x64\x08\x83\x7f\xc5\x42\x01\x00") func docsOpenapiSwaggerJsonBytes() ([]byte, error) { return bindataRead(