From 256d1bf47958573f2edac63194dc703f669ec523 Mon Sep 17 00:00:00 2001 From: Jonathan Ingram Date: Fri, 10 Jul 2020 12:43:39 +1000 Subject: [PATCH] protoc-gen-swagger: add example similar to AIP-133 This example illustrates that the `book_id` field is not converted into a query string parameter in the generated swagger.json file. --- examples/internal/clients/abe/BUILD.bazel | 2 + .../internal/clients/abe/api/swagger.yaml | 63 ++ .../abe/api_a_bit_of_everything_service.go | 148 ++++ .../clients/abe/model_examplepb_book.go | 24 + .../clients/abe/model_examplepb_collection.go | 24 + .../proto/examplepb/a_bit_of_everything.pb.go | 639 +++++++++++------- .../examplepb/a_bit_of_everything.pb.gw.go | 132 ++++ .../proto/examplepb/a_bit_of_everything.proto | 39 ++ .../a_bit_of_everything.swagger.json | 78 +++ .../internal/server/a_bit_of_everything.go | 4 + 10 files changed, 920 insertions(+), 233 deletions(-) create mode 100644 examples/internal/clients/abe/model_examplepb_book.go create mode 100644 examples/internal/clients/abe/model_examplepb_collection.go diff --git a/examples/internal/clients/abe/BUILD.bazel b/examples/internal/clients/abe/BUILD.bazel index 9c1bfc9ce2b..57df2c10110 100644 --- a/examples/internal/clients/abe/BUILD.bazel +++ b/examples/internal/clients/abe/BUILD.bazel @@ -15,6 +15,8 @@ go_library( "model_examplepb_a_bit_of_everything.go", "model_examplepb_a_bit_of_everything_repeated.go", "model_examplepb_body.go", + "model_examplepb_book.go", + "model_examplepb_collection.go", "model_examplepb_numeric_enum.go", "model_examplepb_update_v2_request.go", "model_message_path_enum_nested_path_enum.go", diff --git a/examples/internal/clients/abe/api/swagger.yaml b/examples/internal/clients/abe/api/swagger.yaml index 1f876e2452e..5db8488d136 100644 --- a/examples/internal/clients/abe/api/swagger.yaml +++ b/examples/internal/clients/abe/api/swagger.yaml @@ -1527,6 +1527,49 @@ paths: description: "An unexpected error response" schema: $ref: "#/definitions/runtimeError" + /v1/{parent=publishers/*}/books: + post: + tags: + - "ABitOfEverythingService" + summary: "Create a book." + operationId: "ABitOfEverythingService_CreateBook" + parameters: + - name: "parent" + in: "path" + description: "The publisher in which to create the book.\n\nFormat: `publishers/{publisher}`\n\ + \nExample: `publishers/1257894000000000000`" + required: true + type: "string" + x-exportParamName: "Parent" + - in: "body" + name: "body" + description: "The book to create." + required: true + schema: + $ref: "#/definitions/examplepbBook" + x-exportParamName: "Body" + responses: + 200: + description: "A successful response." + schema: + $ref: "#/definitions/examplepbBook" + 403: + description: "Returned when the user does not have permission to access\ + \ the resource." + schema: {} + 404: + description: "Returned when the resource does not exist." + schema: + type: "string" + format: "string" + 418: + description: "I'm a teapot." + schema: + $ref: "#/definitions/examplepbNumericEnum" + default: + description: "An unexpected error response" + schema: + $ref: "#/definitions/runtimeError" /v2/example/a_bit_of_everything/{abe.uuid}: put: tags: @@ -2240,6 +2283,26 @@ definitions: properties: name: type: "string" + examplepbBook: + type: "object" + properties: + name: + type: "string" + description: "The resource name of the book.\n\nFormat: `publishers/{publisher}/books/{book}`\n\ + \nExample: `publishers/1257894000000000000/books/my-book`" + id: + type: "string" + description: "Output only. The book's ID." + readOnly: true + create_time: + type: "string" + format: "date-time" + description: "Output only. Creation time of the book." + readOnly: true + example: + create_time: "2000-01-23T04:56:07.000+00:00" + name: "name" + id: "id" examplepbNumericEnum: type: "string" description: "NumericEnum is one or zero.\n\n - ZERO: ZERO means 0\n - ONE: ONE\ diff --git a/examples/internal/clients/abe/api_a_bit_of_everything_service.go b/examples/internal/clients/abe/api_a_bit_of_everything_service.go index 0281b8d591f..484e2d5f01e 100644 --- a/examples/internal/clients/abe/api_a_bit_of_everything_service.go +++ b/examples/internal/clients/abe/api_a_bit_of_everything_service.go @@ -1262,6 +1262,154 @@ func (a *ABitOfEverythingServiceApiService) ABitOfEverythingServiceCreateBody(ct return localVarReturnValue, localVarHttpResponse, nil } +/* +ABitOfEverythingServiceApiService Create a book. + * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + * @param parent The publisher in which to create the book. Format: `publishers/{publisher}` Example: `publishers/1257894000000000000` + * @param body The book to create. + +@return ExamplepbBook +*/ +func (a *ABitOfEverythingServiceApiService) ABitOfEverythingServiceCreateBook(ctx context.Context, parent string, body ExamplepbBook) (ExamplepbBook, *http.Response, error) { + var ( + localVarHttpMethod = strings.ToUpper("Post") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte + localVarReturnValue ExamplepbBook + ) + + // create path and map variables + localVarPath := a.client.cfg.BasePath + "/v1/{parent=publishers/*}/books" + localVarPath = strings.Replace(localVarPath, "{"+"parent"+"}", fmt.Sprintf("%v", parent), -1) + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := url.Values{} + localVarFormParams := url.Values{} + + // to determine the Content-Type header + localVarHttpContentTypes := []string{"application/json", "application/x-foo-mime"} + + // set Content-Type header + localVarHttpContentType := selectHeaderContentType(localVarHttpContentTypes) + if localVarHttpContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHttpContentType + } + + // to determine the Accept header + localVarHttpHeaderAccepts := []string{"application/json", "application/x-foo-mime"} + + // set Accept header + localVarHttpHeaderAccept := selectHeaderAccept(localVarHttpHeaderAccepts) + if localVarHttpHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHttpHeaderAccept + } + // body params + localVarPostBody = &body + if ctx != nil { + // API Key Authentication + if auth, ok := ctx.Value(ContextAPIKey).(APIKey); ok { + var key string + if auth.Prefix != "" { + key = auth.Prefix + " " + auth.Key + } else { + key = auth.Key + } + localVarHeaderParams["X-API-Key"] = key + + } + } + r, err := a.client.prepareRequest(ctx, localVarPath, localVarHttpMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFileName, localVarFileBytes) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHttpResponse, err := a.client.callAPI(r) + if err != nil || localVarHttpResponse == nil { + return localVarReturnValue, localVarHttpResponse, err + } + + localVarBody, err := ioutil.ReadAll(localVarHttpResponse.Body) + localVarHttpResponse.Body.Close() + if err != nil { + return localVarReturnValue, localVarHttpResponse, err + } + + if localVarHttpResponse.StatusCode < 300 { + // If we succeed, return the data, otherwise pass on to decode error. + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); + if err == nil { + return localVarReturnValue, localVarHttpResponse, err + } + } + + if localVarHttpResponse.StatusCode >= 300 { + newErr := GenericSwaggerError{ + body: localVarBody, + error: localVarHttpResponse.Status, + } + + if localVarHttpResponse.StatusCode == 200 { + var v ExamplepbBook + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr + } + + if localVarHttpResponse.StatusCode == 403 { + var v interface{} + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr + } + + if localVarHttpResponse.StatusCode == 404 { + var v string + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr + } + + if localVarHttpResponse.StatusCode == 418 { + var v ExamplepbNumericEnum + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr + } + + if localVarHttpResponse.StatusCode == 0 { + var v RuntimeError + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr + } + + return localVarReturnValue, localVarHttpResponse, newErr + } + + return localVarReturnValue, localVarHttpResponse, nil +} + /* ABitOfEverythingServiceApiService * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). diff --git a/examples/internal/clients/abe/model_examplepb_book.go b/examples/internal/clients/abe/model_examplepb_book.go new file mode 100644 index 00000000000..887c396751f --- /dev/null +++ b/examples/internal/clients/abe/model_examplepb_book.go @@ -0,0 +1,24 @@ +/* + * A Bit of Everything + * + * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + * + * API version: 1.0 + * Contact: none@example.com + * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) + */ + +package abe + +import ( + "time" +) + +type ExamplepbBook struct { + // The resource name of the book. Format: `publishers/{publisher}/books/{book}` Example: `publishers/1257894000000000000/books/my-book` + Name string `json:"name,omitempty"` + // Output only. The book's ID. + Id string `json:"id,omitempty"` + // Output only. Creation time of the book. + CreateTime time.Time `json:"create_time,omitempty"` +} diff --git a/examples/internal/clients/abe/model_examplepb_collection.go b/examples/internal/clients/abe/model_examplepb_collection.go new file mode 100644 index 00000000000..0a6e32a3eae --- /dev/null +++ b/examples/internal/clients/abe/model_examplepb_collection.go @@ -0,0 +1,24 @@ +/* + * A Bit of Everything + * + * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + * + * API version: 1.0 + * Contact: none@example.com + * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) + */ + +package abe + +import ( + "time" +) + +type ExamplepbCollection struct { + // The resource name of the collection. Format: `accounts/{account}/collections/{collection}` Example: `accounts/1257894000000000000/collections/my-collection` + Name string `json:"name,omitempty"` + // Output only. The collection's ID. + Id string `json:"id,omitempty"` + // Output only. Creation time of the collection. + CreateTime time.Time `json:"create_time,omitempty"` +} diff --git a/examples/internal/proto/examplepb/a_bit_of_everything.pb.go b/examples/internal/proto/examplepb/a_bit_of_everything.pb.go index fbbf60c135d..efbc4aa670a 100644 --- a/examples/internal/proto/examplepb/a_bit_of_everything.pb.go +++ b/examples/internal/proto/examplepb/a_bit_of_everything.pb.go @@ -802,6 +802,132 @@ func (m *UpdateV2Request) GetUpdateMask() *field_mask.FieldMask { return nil } +type Book struct { + // The resource name of the book. + // + // Format: `publishers/{publisher}/books/{book}` + // + // Example: `publishers/1257894000000000000/books/my-book` + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + // Output only. The book's ID. + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` + // Output only. Creation time of the book. + CreateTime *timestamp.Timestamp `protobuf:"bytes,3,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Book) Reset() { *m = Book{} } +func (m *Book) String() string { return proto.CompactTextString(m) } +func (*Book) ProtoMessage() {} +func (*Book) Descriptor() ([]byte, []int) { + return fileDescriptor_e6ccf6cab3ab66ab, []int{5} +} + +func (m *Book) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Book.Unmarshal(m, b) +} +func (m *Book) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Book.Marshal(b, m, deterministic) +} +func (m *Book) XXX_Merge(src proto.Message) { + xxx_messageInfo_Book.Merge(m, src) +} +func (m *Book) XXX_Size() int { + return xxx_messageInfo_Book.Size(m) +} +func (m *Book) XXX_DiscardUnknown() { + xxx_messageInfo_Book.DiscardUnknown(m) +} + +var xxx_messageInfo_Book proto.InternalMessageInfo + +func (m *Book) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *Book) GetId() string { + if m != nil { + return m.Id + } + return "" +} + +func (m *Book) GetCreateTime() *timestamp.Timestamp { + if m != nil { + return m.CreateTime + } + return nil +} + +type CreateBookRequest struct { + // The publisher in which to create the book. + // + // Format: `publishers/{publisher}` + // + // Example: `publishers/1257894000000000000` + Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` + // The book to create. + Book *Book `protobuf:"bytes,2,opt,name=book,proto3" json:"book,omitempty"` + // The ID to use for the book. + // + // This must start with an alphanumeric character. + BookId string `protobuf:"bytes,3,opt,name=book_id,json=bookId,proto3" json:"book_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CreateBookRequest) Reset() { *m = CreateBookRequest{} } +func (m *CreateBookRequest) String() string { return proto.CompactTextString(m) } +func (*CreateBookRequest) ProtoMessage() {} +func (*CreateBookRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_e6ccf6cab3ab66ab, []int{6} +} + +func (m *CreateBookRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CreateBookRequest.Unmarshal(m, b) +} +func (m *CreateBookRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CreateBookRequest.Marshal(b, m, deterministic) +} +func (m *CreateBookRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CreateBookRequest.Merge(m, src) +} +func (m *CreateBookRequest) XXX_Size() int { + return xxx_messageInfo_CreateBookRequest.Size(m) +} +func (m *CreateBookRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CreateBookRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_CreateBookRequest proto.InternalMessageInfo + +func (m *CreateBookRequest) GetParent() string { + if m != nil { + return m.Parent + } + return "" +} + +func (m *CreateBookRequest) GetBook() *Book { + if m != nil { + return m.Book + } + return nil +} + +func (m *CreateBookRequest) GetBookId() string { + if m != nil { + return m.BookId + } + return "" +} + func init() { proto.RegisterEnum("grpc.gateway.examples.internal.examplepb.NumericEnum", NumericEnum_name, NumericEnum_value) proto.RegisterEnum("grpc.gateway.examples.internal.examplepb.ABitOfEverything_Nested_DeepEnum", ABitOfEverything_Nested_DeepEnum_name, ABitOfEverything_Nested_DeepEnum_value) @@ -814,6 +940,8 @@ func init() { proto.RegisterType((*Body)(nil), "grpc.gateway.examples.internal.examplepb.Body") proto.RegisterType((*MessageWithBody)(nil), "grpc.gateway.examples.internal.examplepb.MessageWithBody") proto.RegisterType((*UpdateV2Request)(nil), "grpc.gateway.examples.internal.examplepb.UpdateV2Request") + proto.RegisterType((*Book)(nil), "grpc.gateway.examples.internal.examplepb.Book") + proto.RegisterType((*CreateBookRequest)(nil), "grpc.gateway.examples.internal.examplepb.CreateBookRequest") } func init() { @@ -821,239 +949,246 @@ func init() { } var fileDescriptor_e6ccf6cab3ab66ab = []byte{ - // 3698 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4b, 0x6c, 0x1b, 0x49, - 0x7a, 0x56, 0xb1, 0xa9, 0x57, 0xc9, 0x92, 0xa8, 0x92, 0x65, 0xcb, 0xb4, 0x66, 0x5c, 0xc3, 0xf1, - 0xce, 0xb6, 0xb9, 0x26, 0x5b, 0x6a, 0xc9, 0x33, 0x36, 0x67, 0x77, 0x67, 0x48, 0x49, 0xf6, 0xc8, - 0xf6, 0xc8, 0x76, 0x5b, 0xe3, 0x9d, 0xf1, 0x62, 0x56, 0x29, 0x92, 0x45, 0xb1, 0x2d, 0xf6, 0x63, - 0xbb, 0xab, 0x65, 0xd1, 0x0a, 0x91, 0x49, 0x90, 0x60, 0x83, 0x24, 0x40, 0x02, 0xe6, 0x85, 0x64, - 0x32, 0xb7, 0xe4, 0x12, 0xec, 0x21, 0x97, 0x9c, 0xf6, 0x90, 0x53, 0xb0, 0x87, 0xdc, 0x26, 0xc0, - 0x5e, 0x72, 0x0a, 0x12, 0xe4, 0x10, 0xe4, 0x16, 0x60, 0x80, 0x1c, 0x16, 0x08, 0xaa, 0xba, 0x9b, - 0xec, 0xe6, 0xc3, 0x92, 0x46, 0x5e, 0xcc, 0xfa, 0x60, 0x75, 0x55, 0xfd, 0x8f, 0xef, 0xaf, 0xfa, - 0xfb, 0x7f, 0x14, 0x1b, 0xbe, 0x4b, 0x0f, 0x89, 0x61, 0x37, 0xa8, 0xab, 0xe8, 0x26, 0xa3, 0x8e, - 0x49, 0x1a, 0x8a, 0xed, 0x58, 0xcc, 0x52, 0x82, 0x79, 0xbb, 0xac, 0x90, 0xdd, 0xb2, 0xce, 0x76, - 0xad, 0xda, 0x2e, 0x3d, 0xa0, 0x4e, 0x93, 0xd5, 0x75, 0x73, 0x2f, 0x2f, 0x68, 0x90, 0xbc, 0xe7, - 0xd8, 0x95, 0xfc, 0x1e, 0x61, 0xf4, 0x39, 0x69, 0xe6, 0x43, 0x49, 0xf9, 0x50, 0x52, 0xbe, 0x23, - 0x23, 0xbd, 0xb4, 0x67, 0x59, 0x7b, 0x0d, 0xaa, 0x10, 0x5b, 0x57, 0x88, 0x69, 0x5a, 0x8c, 0x30, - 0xdd, 0x32, 0x5d, 0x5f, 0x4e, 0x1a, 0x07, 0xab, 0x62, 0x54, 0xf6, 0x6a, 0x4a, 0x4d, 0xa7, 0x8d, - 0xea, 0xae, 0x41, 0xdc, 0xfd, 0x80, 0xe2, 0x72, 0x2f, 0x05, 0x35, 0x6c, 0xd6, 0x0c, 0x16, 0x5f, - 0xef, 0x5d, 0xac, 0x7a, 0x8e, 0x90, 0x3f, 0x6c, 0xfd, 0xb9, 0x43, 0x6c, 0x9b, 0x3a, 0xa1, 0xfa, - 0xe5, 0x61, 0x7b, 0x60, 0x13, 0x56, 0xa7, 0xa6, 0x67, 0x88, 0x87, 0x5d, 0xfe, 0x14, 0x70, 0x5c, - 0x1b, 0xc6, 0xe1, 0x7a, 0x65, 0xc5, 0xa0, 0xae, 0x4b, 0xf6, 0x68, 0x40, 0x9a, 0x7d, 0x09, 0xa9, - 0xda, 0x43, 0x7b, 0xa5, 0x17, 0x28, 0xd3, 0x0d, 0xea, 0x32, 0x62, 0xd8, 0x01, 0xc1, 0x75, 0xf1, - 0xa7, 0x92, 0xdb, 0xa3, 0x66, 0xce, 0x7d, 0x4e, 0xf6, 0xf6, 0xa8, 0xa3, 0x58, 0xb6, 0xd8, 0xca, - 0xfe, 0x6d, 0xcd, 0xfc, 0xc7, 0x12, 0x4c, 0x15, 0x4b, 0x3a, 0x7b, 0x50, 0xdb, 0xec, 0x9c, 0x1c, - 0xaa, 0xc1, 0x69, 0x57, 0x37, 0xf7, 0x1a, 0x74, 0xd7, 0xa4, 0x2e, 0xa3, 0xd5, 0xc5, 0x4b, 0x18, - 0xc8, 0x53, 0x6a, 0x31, 0x7f, 0xd2, 0xb3, 0xcc, 0xf7, 0x8a, 0xcc, 0x6f, 0x0b, 0x41, 0xda, 0x39, - 0x5f, 0xae, 0x3f, 0x42, 0x75, 0x98, 0xf4, 0x3c, 0xbd, 0xba, 0x08, 0x30, 0x90, 0x27, 0x4b, 0x3b, - 0xed, 0xe2, 0xa3, 0xcf, 0x00, 0xf8, 0x03, 0x70, 0xef, 0x87, 0x24, 0x57, 0x2b, 0xe6, 0x6e, 0x2f, - 0xe7, 0x6e, 0x7d, 0x7a, 0x74, 0xb3, 0x95, 0x8b, 0x0e, 0xd7, 0x4e, 0x33, 0x5c, 0x51, 0x5b, 0x9a, - 0xd0, 0x80, 0x3e, 0x81, 0x63, 0x81, 0x29, 0x09, 0x2c, 0xbd, 0x1a, 0x53, 0x02, 0x81, 0xe8, 0x2e, - 0x9c, 0xaa, 0x35, 0x2c, 0xc2, 0x76, 0x0f, 0x48, 0xc3, 0xa3, 0x8b, 0x12, 0x06, 0x72, 0xa2, 0x74, - 0xad, 0x5d, 0x7c, 0x4b, 0x9d, 0xbb, 0xcd, 0xe7, 0xb1, 0x98, 0xc7, 0xc2, 0x5d, 0x0b, 0xd2, 0x72, - 0x5e, 0xfd, 0x12, 0x44, 0x19, 0x34, 0x28, 0x06, 0x4f, 0xf8, 0x33, 0x7a, 0x03, 0x9e, 0xab, 0x5a, - 0x5e, 0xb9, 0x41, 0x03, 0x61, 0x49, 0x0c, 0x64, 0xa0, 0x4d, 0xf9, 0x73, 0x3e, 0xc9, 0x15, 0x38, - 0xa5, 0x9b, 0xec, 0xed, 0xb5, 0x80, 0x62, 0x14, 0x03, 0x59, 0xd2, 0xa0, 0x98, 0xea, 0xc8, 0xf0, - 0xa2, 0x14, 0x63, 0x18, 0xc8, 0x49, 0x6d, 0xca, 0x8b, 0x90, 0xf8, 0x32, 0x56, 0xd5, 0x80, 0x62, - 0x1c, 0x03, 0x79, 0x54, 0xc8, 0x58, 0x55, 0x7d, 0x82, 0x37, 0xe1, 0x74, 0x4d, 0x3f, 0xa4, 0xd5, - 0x8e, 0x90, 0x09, 0x0c, 0xe4, 0x31, 0xed, 0x5c, 0x30, 0x19, 0x27, 0xea, 0xc8, 0x99, 0xc4, 0x40, - 0x1e, 0x0f, 0x88, 0x42, 0x49, 0xaf, 0x41, 0x58, 0xb6, 0xac, 0x46, 0x40, 0x01, 0x31, 0x90, 0x27, - 0xb4, 0x49, 0x3e, 0xd3, 0x01, 0xeb, 0x32, 0x47, 0x37, 0xf7, 0x02, 0x82, 0x29, 0xee, 0x09, 0xda, - 0x94, 0x3f, 0xd7, 0x01, 0x5b, 0x6e, 0x32, 0xea, 0x06, 0x14, 0xaf, 0x61, 0x20, 0x9f, 0xd3, 0xa0, - 0x98, 0x8a, 0x19, 0xdc, 0x81, 0x31, 0x8d, 0x81, 0x3c, 0xed, 0x1b, 0x1c, 0xa2, 0xd8, 0x81, 0x90, - 0xbf, 0x99, 0x01, 0xc1, 0x0c, 0x06, 0xf2, 0x8c, 0x7a, 0xe3, 0xe4, 0x2e, 0xb0, 0xed, 0x19, 0xd4, - 0xd1, 0x2b, 0x9b, 0xa6, 0x67, 0x68, 0x93, 0x5c, 0x90, 0x2f, 0xf5, 0x13, 0x38, 0xdb, 0x79, 0xe9, - 0x03, 0xd1, 0xaf, 0x0b, 0xd1, 0x2b, 0xc7, 0x89, 0x0e, 0x83, 0x46, 0xfe, 0x21, 0x61, 0x75, 0x21, - 0x76, 0xda, 0x0e, 0x9e, 0x7c, 0xd1, 0xbf, 0x09, 0x2f, 0xf8, 0xee, 0xb5, 0xdb, 0xab, 0xe1, 0x8a, - 0xd0, 0x70, 0xe7, 0xc4, 0x1a, 0x3e, 0xf4, 0xa3, 0x47, 0xa8, 0x28, 0xf0, 0xde, 0x8e, 0xde, 0x79, - 0x33, 0x36, 0xf6, 0xb5, 0x7f, 0x0b, 0xce, 0xb8, 0xf1, 0xa3, 0x9d, 0xc5, 0x40, 0x9e, 0xd5, 0xa6, - 0xdd, 0xd8, 0xd9, 0x76, 0xc8, 0x3a, 0x6e, 0x92, 0xc2, 0x40, 0x4e, 0x85, 0x64, 0x11, 0x87, 0x74, - 0xa3, 0xe7, 0x33, 0x87, 0x81, 0x3c, 0xa7, 0x4d, 0xb9, 0x91, 0xf3, 0x09, 0x48, 0x3a, 0x72, 0x10, - 0x06, 0x32, 0xf2, 0x49, 0x42, 0x29, 0x2a, 0x5c, 0x70, 0xa8, 0x4d, 0x09, 0xdf, 0x93, 0x98, 0xcb, - 0xcc, 0x63, 0x49, 0x9e, 0xd4, 0xe6, 0xc3, 0xc5, 0xc7, 0x11, 0xd7, 0xb9, 0x05, 0xa7, 0x2c, 0x93, - 0xf2, 0xac, 0xc4, 0x33, 0xc1, 0xe2, 0x79, 0x11, 0xc5, 0x2e, 0xe4, 0xfd, 0x08, 0x9a, 0x0f, 0x23, - 0x68, 0x7e, 0x93, 0xaf, 0x7e, 0x30, 0xa2, 0x41, 0x41, 0x2c, 0x46, 0xe8, 0x4d, 0x78, 0xce, 0x67, - 0xf5, 0x75, 0x2d, 0x2e, 0x70, 0xc7, 0xfc, 0x60, 0x44, 0xf3, 0x05, 0xfa, 0x4a, 0x10, 0x85, 0x93, - 0x06, 0xb1, 0x03, 0x1c, 0x17, 0x44, 0x60, 0xf9, 0xe0, 0x0c, 0x81, 0xe5, 0x43, 0x62, 0x0b, 0xdc, - 0x9b, 0x26, 0x73, 0x9a, 0xda, 0x84, 0x11, 0x0c, 0xd1, 0x6f, 0x03, 0x38, 0x6f, 0xf0, 0x6c, 0xd4, - 0x63, 0xf9, 0x45, 0xa1, 0xf1, 0xd1, 0xd9, 0x34, 0xda, 0xb1, 0x2d, 0xf3, 0x55, 0xcf, 0x19, 0xbd, - 0xf3, 0x51, 0x0c, 0x81, 0x63, 0xfa, 0x18, 0x16, 0x5f, 0x11, 0x06, 0xdf, 0x2d, 0xfb, 0x31, 0x44, - 0xe6, 0x51, 0x01, 0x2e, 0x9a, 0x96, 0xb9, 0x6e, 0x99, 0x07, 0xd4, 0xe4, 0x39, 0x8c, 0x34, 0xb6, - 0x89, 0xe1, 0x87, 0xc5, 0xc5, 0xb4, 0x08, 0x1c, 0x43, 0xd7, 0xd1, 0x3a, 0x9c, 0xed, 0x24, 0xca, - 0x00, 0xfa, 0x65, 0xe1, 0x0e, 0xe9, 0x3e, 0x77, 0xd8, 0x09, 0xe9, 0xb4, 0x99, 0x0e, 0x8b, 0x2f, - 0x84, 0xc2, 0x8e, 0x9b, 0x45, 0x5f, 0xc9, 0x25, 0x2c, 0x7d, 0xfd, 0x78, 0x32, 0x17, 0x4a, 0xec, - 0xbe, 0x7e, 0xff, 0x08, 0xe0, 0x62, 0x5c, 0x4f, 0x37, 0x6f, 0x2f, 0xe2, 0x33, 0x28, 0x2b, 0x6d, - 0xb4, 0x8b, 0xc5, 0xec, 0x65, 0x2d, 0x90, 0x8d, 0x4d, 0x7f, 0x09, 0x73, 0x1d, 0x98, 0xe9, 0xac, - 0x41, 0xd5, 0xcc, 0xe0, 0xc5, 0x2a, 0x75, 0x2b, 0x8e, 0x2e, 0xaa, 0x88, 0xbc, 0x76, 0x21, 0x0a, - 0xb9, 0xd8, 0x81, 0x86, 0xbe, 0x00, 0x70, 0xa1, 0xbb, 0x2d, 0x51, 0xd0, 0x6f, 0x9c, 0x21, 0xe2, - 0x96, 0xd4, 0x76, 0x51, 0xc9, 0xa2, 0xed, 0x7e, 0xac, 0x97, 0xb6, 0x87, 0x42, 0x9c, 0xef, 0x44, - 0xe9, 0x08, 0xbe, 0x03, 0x98, 0xee, 0x0d, 0x21, 0x11, 0x8c, 0x19, 0x1e, 0x47, 0x4a, 0x37, 0xdb, - 0xc5, 0x1b, 0xd9, 0x85, 0xce, 0x26, 0xf8, 0x64, 0x81, 0xbe, 0xa5, 0xde, 0xe9, 0x98, 0xca, 0xc5, - 0x78, 0x04, 0x8a, 0xe8, 0xfd, 0x39, 0x88, 0x28, 0x0e, 0xde, 0x9e, 0x88, 0xe2, 0x37, 0x5f, 0x51, - 0x45, 0x52, 0xba, 0xdd, 0x2e, 0xae, 0x67, 0xbb, 0x20, 0x7d, 0x4d, 0xd8, 0x2a, 0x3f, 0xa3, 0x15, - 0x16, 0x98, 0xf0, 0xe6, 0x90, 0xd5, 0xc1, 0x96, 0xf8, 0x72, 0x23, 0x96, 0xfc, 0x2d, 0x80, 0x73, - 0xfd, 0x06, 0x5c, 0x7d, 0x45, 0xd5, 0x61, 0x69, 0xad, 0x5d, 0x5c, 0xc9, 0xce, 0x6f, 0x0f, 0xc0, - 0x9d, 0xde, 0x1e, 0x0e, 0x37, 0x65, 0xf6, 0xc2, 0x7c, 0x07, 0xce, 0xfb, 0xd9, 0xc4, 0x3a, 0xa0, - 0x8e, 0xa3, 0x57, 0xe9, 0x2e, 0x6b, 0xda, 0x74, 0xf1, 0x5b, 0xbc, 0x56, 0x2a, 0x8d, 0xb7, 0x8b, - 0xc9, 0xbf, 0x4e, 0x00, 0x49, 0x9b, 0x13, 0x34, 0x0f, 0x02, 0x92, 0x9d, 0xa6, 0x4d, 0xd3, 0xff, - 0x05, 0xe0, 0x58, 0x50, 0x9b, 0x22, 0x98, 0x34, 0x89, 0x41, 0xfd, 0xda, 0x54, 0x13, 0xcf, 0xe8, - 0x02, 0x1c, 0x23, 0x86, 0xe5, 0x99, 0x6c, 0x31, 0x21, 0x6a, 0x8c, 0x60, 0x84, 0x0e, 0x60, 0xc2, - 0xda, 0x17, 0x95, 0xdf, 0x8c, 0x7a, 0xf7, 0xcc, 0xdb, 0x90, 0xdf, 0xa0, 0xd4, 0x16, 0x9e, 0x9f, - 0x6e, 0x17, 0x2f, 0xaa, 0x0b, 0xe1, 0x30, 0x6e, 0x75, 0xc2, 0xda, 0xcf, 0x5c, 0x81, 0x13, 0xe1, - 0x22, 0x9a, 0x84, 0xa3, 0xb7, 0x8b, 0xf7, 0x1f, 0x6f, 0xa6, 0x46, 0xd0, 0x04, 0x4c, 0xee, 0x68, - 0x1f, 0x6d, 0xa6, 0x40, 0xe1, 0x62, 0xbb, 0x78, 0x5e, 0x45, 0x28, 0x75, 0x84, 0x33, 0xd6, 0x7e, - 0xa6, 0x80, 0x33, 0x7c, 0x3e, 0x83, 0x5b, 0x69, 0x07, 0x4e, 0xc7, 0xb2, 0x0d, 0x4a, 0x41, 0x69, - 0x9f, 0x36, 0x03, 0x6b, 0xf9, 0x23, 0xba, 0x07, 0x47, 0xfd, 0xf0, 0x96, 0x38, 0x4b, 0xb9, 0xe4, - 0xcb, 0x28, 0x24, 0x6e, 0x82, 0xf4, 0x06, 0xbc, 0x30, 0x38, 0xdf, 0x0c, 0x50, 0x7e, 0x3e, 0xaa, - 0x7c, 0x32, 0x2a, 0xe5, 0x27, 0x20, 0x14, 0xd3, 0x9b, 0x32, 0x06, 0x88, 0xf9, 0x41, 0x54, 0xcc, - 0x2b, 0xa9, 0xfa, 0xbb, 0x48, 0x0a, 0x7f, 0x95, 0x68, 0x17, 0xff, 0x3c, 0x01, 0x7f, 0x17, 0x64, - 0xe7, 0x8b, 0xb8, 0xac, 0x33, 0x6c, 0xd5, 0x70, 0xb7, 0xfd, 0x55, 0xb7, 0xb6, 0x4c, 0x16, 0xe6, - 0xa1, 0x26, 0xae, 0x58, 0x86, 0xdd, 0xd0, 0x2b, 0xe2, 0xd5, 0x0b, 0x1a, 0x3a, 0xcc, 0x9d, 0x12, - 0x33, 0x0b, 0x57, 0xb8, 0x9b, 0x62, 0x83, 0x98, 0x4d, 0x5c, 0xa3, 0x84, 0x79, 0x0e, 0x75, 0xb9, - 0xac, 0x87, 0x61, 0x42, 0xfa, 0x12, 0x88, 0x26, 0xe6, 0x4b, 0x10, 0xad, 0xfc, 0xbf, 0x04, 0xb1, - 0x56, 0x21, 0xfb, 0x04, 0x5e, 0xbd, 0xad, 0x9b, 0x55, 0x6c, 0x79, 0x0c, 0x1b, 0x96, 0x43, 0x31, - 0x29, 0xf3, 0xc7, 0xbe, 0xde, 0x2e, 0x5f, 0x67, 0xcc, 0x76, 0x0b, 0x8a, 0xb2, 0xa7, 0xb3, 0xba, - 0x57, 0xce, 0x57, 0x2c, 0x43, 0xe1, 0xbb, 0x92, 0xa3, 0x15, 0xcb, 0x6d, 0xba, 0x8c, 0x06, 0xc3, - 0x60, 0x93, 0xd4, 0x35, 0xa4, 0x1e, 0xe1, 0x0c, 0xd7, 0xcf, 0xfd, 0x67, 0xb9, 0x52, 0x5b, 0x7d, - 0x7b, 0x85, 0xae, 0xe4, 0xd6, 0xca, 0x6b, 0x6b, 0xb9, 0xb5, 0x9b, 0xab, 0xd5, 0x1c, 0x59, 0xb9, - 0x71, 0x2b, 0x77, 0x63, 0xad, 0x4a, 0xca, 0xd5, 0xda, 0x3b, 0xf4, 0xe6, 0xca, 0x5a, 0x06, 0xb7, - 0x4a, 0xd3, 0x61, 0xe5, 0x25, 0xc0, 0x65, 0x7e, 0x32, 0x09, 0x17, 0x7b, 0x91, 0x84, 0x91, 0x08, - 0xdd, 0x82, 0x97, 0x44, 0x91, 0xdb, 0x09, 0x91, 0xd1, 0x76, 0x0a, 0x60, 0x49, 0x4e, 0x68, 0x17, - 0x38, 0x41, 0xc8, 0x70, 0xbb, 0xdb, 0x2f, 0xbd, 0x0b, 0xd3, 0x71, 0xd6, 0x58, 0xf7, 0xc4, 0x5b, - 0x3d, 0xa0, 0x5d, 0x8c, 0xf2, 0x6e, 0x44, 0x3a, 0xa9, 0x3e, 0xbd, 0xd1, 0x0a, 0x54, 0xc2, 0x92, - 0x2c, 0xc5, 0xf5, 0x6e, 0x75, 0x8b, 0xd1, 0x3e, 0xbd, 0xb1, 0x8e, 0x2b, 0x89, 0x25, 0x39, 0x19, - 0xd7, 0xfb, 0x51, 0xa4, 0x92, 0x1d, 0xa4, 0xb7, 0x53, 0x1c, 0x8f, 0x62, 0x49, 0x1e, 0xed, 0xd3, - 0x1b, 0xd6, 0xc9, 0xdf, 0x83, 0x97, 0x7b, 0xb6, 0x2a, 0x56, 0x7e, 0x8f, 0x61, 0x49, 0x1e, 0xd3, - 0x16, 0x63, 0x9b, 0x15, 0xad, 0xc4, 0x07, 0xb3, 0x47, 0xfa, 0x40, 0x49, 0x1e, 0x1f, 0xc0, 0x1e, - 0x6a, 0x7f, 0x07, 0x2e, 0xc6, 0xd9, 0x23, 0x9d, 0xdd, 0x04, 0x96, 0xe4, 0x09, 0x6d, 0x21, 0xca, - 0x5b, 0xea, 0x74, 0x79, 0x7d, 0xdb, 0x15, 0x2b, 0x63, 0x27, 0x45, 0x01, 0x1f, 0xdb, 0xae, 0x78, - 0x11, 0xdf, 0xb3, 0x5d, 0xd1, 0x6e, 0x10, 0x62, 0x49, 0x3e, 0x17, 0xdf, 0xae, 0x52, 0xb7, 0x33, - 0x1c, 0x78, 0x4c, 0x1d, 0x73, 0xa7, 0xb0, 0x24, 0x4f, 0xf7, 0x1f, 0x53, 0x68, 0xad, 0xd9, 0x6b, - 0x6d, 0xa4, 0xe2, 0x3b, 0x77, 0x96, 0x8a, 0x2f, 0xb6, 0x49, 0xdd, 0xaa, 0xef, 0x3d, 0xb8, 0xd4, - 0xb3, 0x49, 0xf1, 0xd3, 0x99, 0xc6, 0x92, 0x3c, 0xab, 0x5d, 0x8a, 0x6d, 0x53, 0xac, 0x1d, 0x1b, - 0x22, 0xa0, 0xe3, 0x1d, 0x33, 0x58, 0x92, 0x53, 0x83, 0x04, 0x0c, 0xf5, 0xea, 0x58, 0xdb, 0x36, - 0x8b, 0x25, 0x79, 0xae, 0xe7, 0x98, 0x22, 0xdb, 0x35, 0x90, 0x39, 0xd2, 0x18, 0x4a, 0x32, 0xea, - 0x67, 0x0e, 0x34, 0x17, 0xea, 0xed, 0x22, 0x55, 0x2b, 0x88, 0x1c, 0xe1, 0xcc, 0x30, 0x0f, 0xcb, - 0x14, 0xf0, 0x0f, 0x99, 0xe3, 0xd1, 0xeb, 0xd8, 0xff, 0xbf, 0x46, 0x1a, 0x6e, 0x30, 0xf8, 0xf4, - 0x7a, 0x2f, 0x5b, 0x04, 0x37, 0xe7, 0x5b, 0xb9, 0x8e, 0xd5, 0xeb, 0x78, 0xf5, 0x53, 0xdc, 0xca, - 0xa4, 0x61, 0xb2, 0x64, 0x55, 0x9b, 0x83, 0xd2, 0x7b, 0x86, 0xc2, 0xd9, 0xa0, 0x5b, 0xfe, 0x81, - 0xce, 0xea, 0x82, 0x6c, 0x06, 0x26, 0xc2, 0xfb, 0x29, 0x2d, 0xa1, 0x57, 0x51, 0x09, 0x26, 0xab, - 0x84, 0x91, 0x20, 0x9f, 0xe4, 0x4f, 0xee, 0x00, 0x5c, 0x9a, 0x26, 0x78, 0x33, 0x7f, 0x03, 0xe0, - 0xec, 0x47, 0x76, 0x95, 0x30, 0xfa, 0x44, 0xd5, 0xe8, 0x8f, 0x3d, 0xea, 0x32, 0x74, 0x1f, 0x4a, - 0xa4, 0xec, 0xa3, 0x99, 0x52, 0x0b, 0x5f, 0x3f, 0x4d, 0x69, 0x5c, 0x0c, 0x7a, 0x17, 0x4e, 0x79, - 0x42, 0x81, 0xb8, 0x1e, 0x0d, 0xc0, 0xf6, 0x37, 0x3a, 0xb7, 0x75, 0xda, 0xa8, 0x7e, 0x48, 0xdc, - 0x7d, 0x0d, 0xfa, 0xe4, 0xfc, 0x39, 0x8b, 0xe1, 0x54, 0xc4, 0x5b, 0x79, 0x31, 0xf1, 0x74, 0x53, - 0x7b, 0x90, 0x1a, 0x41, 0xe3, 0x50, 0x7a, 0xb0, 0xbd, 0x99, 0x02, 0xea, 0xbf, 0xbd, 0x05, 0x2f, - 0xf6, 0x2a, 0x7e, 0x4c, 0x9d, 0x03, 0xbd, 0x42, 0xd1, 0x67, 0x49, 0x38, 0xb6, 0xee, 0xf0, 0x53, - 0x40, 0x67, 0x30, 0x23, 0x7d, 0x06, 0xde, 0xcc, 0x2f, 0x13, 0xbf, 0xf3, 0xaf, 0xff, 0xf9, 0xa7, - 0x89, 0xaf, 0x12, 0x99, 0xff, 0x4d, 0x28, 0x07, 0x2b, 0xe1, 0x2d, 0xf5, 0xa0, 0x3b, 0x6a, 0xe5, - 0x28, 0x92, 0x6b, 0x5a, 0xca, 0x51, 0x34, 0x7d, 0xb4, 0x94, 0xa3, 0x88, 0x07, 0xb7, 0x14, 0x97, - 0xda, 0xc4, 0x21, 0xcc, 0x72, 0x94, 0x23, 0x2f, 0xb6, 0x70, 0x14, 0xf1, 0xb6, 0x96, 0x72, 0x14, - 0x7b, 0xe9, 0xc2, 0x71, 0x64, 0xbd, 0xeb, 0xd2, 0x2d, 0xe5, 0x28, 0x1a, 0x08, 0xbf, 0xe7, 0x32, - 0xc7, 0x76, 0x68, 0x4d, 0x3f, 0x54, 0xb2, 0x2d, 0x5f, 0x49, 0x84, 0xcd, 0xed, 0x95, 0xe3, 0xf6, - 0x2a, 0x72, 0x7b, 0x18, 0xe2, 0x20, 0x87, 0x75, 0xc6, 0x2d, 0xe5, 0xa8, 0x1b, 0xd8, 0x5a, 0xca, - 0x51, 0xcf, 0x7d, 0x13, 0xe7, 0x1c, 0x78, 0x11, 0x15, 0xe3, 0x8b, 0x74, 0x03, 0x2d, 0xf4, 0x0f, - 0x00, 0x42, 0xdf, 0x05, 0xc4, 0x2b, 0xf4, 0x4d, 0xb9, 0x41, 0x56, 0x78, 0xc1, 0xd5, 0xcc, 0x95, - 0x63, 0x7c, 0xa0, 0x00, 0xb2, 0xe8, 0xf7, 0x00, 0x1c, 0xbb, 0x6f, 0x59, 0xfb, 0x9e, 0x8d, 0x66, - 0xf3, 0xae, 0x57, 0x56, 0xf3, 0x5b, 0xd5, 0x20, 0x14, 0x9c, 0x09, 0x43, 0x5e, 0x60, 0x90, 0xd1, - 0x5b, 0xc7, 0xfa, 0x21, 0x2f, 0xb0, 0x5a, 0xe8, 0x8f, 0x01, 0x1c, 0xf3, 0x43, 0xc3, 0x99, 0xb6, - 0x6d, 0xc8, 0x15, 0x57, 0x66, 0x45, 0xc0, 0xf9, 0x4e, 0xfa, 0x84, 0x70, 0xf8, 0xce, 0xfc, 0x12, - 0xc0, 0x89, 0x30, 0x58, 0xa1, 0x5b, 0x27, 0xc7, 0xd4, 0x13, 0xe0, 0x86, 0x42, 0xfa, 0x02, 0x08, - 0x4c, 0x7f, 0x01, 0xd2, 0x59, 0xe5, 0x40, 0x7d, 0x39, 0x28, 0x52, 0xa6, 0x79, 0x1f, 0x18, 0x8f, - 0x72, 0x4f, 0x57, 0xd4, 0x53, 0xb3, 0x2c, 0xab, 0xdf, 0x51, 0x0e, 0x54, 0x72, 0x52, 0x1e, 0x90, - 0x45, 0x7f, 0x07, 0xe0, 0xd8, 0x06, 0x6d, 0x50, 0x46, 0xfb, 0x3d, 0x63, 0x98, 0x4d, 0x4e, 0xbb, - 0x58, 0x2c, 0x5f, 0x83, 0x33, 0x10, 0x16, 0x6d, 0xfd, 0x1e, 0x6d, 0x16, 0x3d, 0x56, 0x47, 0x23, - 0xf0, 0x22, 0x1c, 0x7b, 0xc0, 0x1f, 0x55, 0x34, 0x0d, 0x93, 0x0e, 0x25, 0x55, 0x38, 0xfa, 0xdc, - 0xd1, 0x19, 0x7d, 0x76, 0x1e, 0xce, 0x1c, 0xe6, 0x74, 0xc7, 0xe1, 0x20, 0x5c, 0xbd, 0xdc, 0xa0, - 0x28, 0x81, 0xfd, 0x6d, 0x91, 0xb3, 0x27, 0xf5, 0x9c, 0xff, 0x01, 0x70, 0xe2, 0x0e, 0x65, 0x8f, - 0x3c, 0xea, 0x34, 0x7f, 0x25, 0xbe, 0xf3, 0x87, 0xa0, 0x5d, 0xdc, 0xc9, 0x6c, 0xc3, 0xa5, 0x41, - 0x5d, 0x46, 0x47, 0xf3, 0x29, 0xbb, 0x8b, 0x8f, 0x41, 0x79, 0x44, 0x18, 0x9a, 0x47, 0xd7, 0x8f, - 0x33, 0xf4, 0xc7, 0x5c, 0x41, 0x68, 0xee, 0x17, 0xa3, 0x30, 0x75, 0x87, 0xb2, 0xb0, 0x96, 0xf0, - 0x95, 0x97, 0xce, 0x90, 0x37, 0x03, 0x41, 0xe9, 0x57, 0x20, 0x23, 0xf3, 0x59, 0x52, 0xd8, 0xf4, - 0x7f, 0x12, 0xfa, 0x4a, 0x3a, 0xc6, 0xaa, 0x4e, 0xc9, 0x12, 0x04, 0xde, 0x41, 0x3d, 0x50, 0xab, - 0x77, 0xad, 0x27, 0x4b, 0x0d, 0x6d, 0x62, 0xfa, 0xd6, 0xbc, 0x97, 0x2d, 0xc6, 0xb3, 0xc7, 0x4b, - 0xda, 0x8c, 0xc1, 0xab, 0x43, 0x79, 0x63, 0xf9, 0x6e, 0x78, 0x1b, 0xd0, 0xcf, 0xd7, 0x2d, 0xf3, - 0x07, 0x1a, 0x32, 0x54, 0x61, 0x7f, 0x3a, 0x1b, 0x52, 0x52, 0x0f, 0x59, 0x1e, 0x6a, 0xa7, 0xfb, - 0x32, 0xad, 0xb1, 0x74, 0x8b, 0x3e, 0x4f, 0xc2, 0xe4, 0x66, 0xa5, 0x6e, 0xa1, 0x63, 0x7f, 0x0a, - 0x72, 0xbd, 0x72, 0xde, 0x6f, 0x77, 0xc2, 0xb0, 0x72, 0x7a, 0x96, 0xcc, 0x4f, 0xa5, 0x76, 0xf1, - 0x9f, 0x13, 0x70, 0x82, 0x56, 0xea, 0x16, 0x76, 0xec, 0x0a, 0x9a, 0x7b, 0xec, 0x19, 0x06, 0x71, - 0x9a, 0x05, 0xbc, 0x19, 0x4c, 0xa5, 0x53, 0x1b, 0xdd, 0xeb, 0x23, 0x31, 0x9b, 0xd9, 0x80, 0x28, - 0xfe, 0x32, 0x0b, 0xc4, 0xa7, 0x7c, 0x85, 0xef, 0xde, 0x82, 0x92, 0xba, 0xbc, 0x8c, 0xd4, 0xcc, - 0x32, 0x4c, 0x11, 0xdb, 0xbf, 0xe4, 0xd0, 0x2d, 0x53, 0x79, 0xe6, 0x5a, 0x26, 0x5a, 0x3a, 0xca, - 0x84, 0x55, 0x78, 0x86, 0xd5, 0x29, 0xd6, 0x4d, 0xdb, 0x0b, 0x7e, 0x11, 0xcd, 0xb4, 0xee, 0x3e, - 0x81, 0xd2, 0x8d, 0xe5, 0x55, 0xf4, 0x00, 0xbe, 0xad, 0x51, 0xe6, 0x39, 0x26, 0xad, 0xe2, 0xe7, - 0x75, 0x6a, 0x62, 0x4e, 0xe9, 0x50, 0xd7, 0xf2, 0x9c, 0x0a, 0xc5, 0xba, 0x8b, 0x19, 0x35, 0x6c, - 0xcb, 0x21, 0x8e, 0xde, 0x68, 0x62, 0xcf, 0x24, 0x07, 0x44, 0x6f, 0x90, 0x72, 0x83, 0xe6, 0xb3, - 0x0b, 0x70, 0xe2, 0x30, 0x67, 0x7a, 0x46, 0x99, 0x3a, 0x68, 0x72, 0x6e, 0x44, 0xfc, 0xfb, 0xe4, - 0xfd, 0xbb, 0xef, 0x42, 0x69, 0x6d, 0x79, 0x0d, 0xad, 0xc1, 0xec, 0x4b, 0xe4, 0x56, 0x2d, 0xea, - 0x62, 0xd3, 0x62, 0x98, 0x1e, 0xea, 0x2e, 0xcb, 0xa3, 0x31, 0x28, 0xae, 0x05, 0xc5, 0xab, 0xfb, - 0xe9, 0xf1, 0xe1, 0x88, 0x6f, 0xb5, 0x72, 0xe4, 0x1f, 0xf7, 0xd3, 0x4b, 0x99, 0x54, 0x34, 0x15, - 0xf1, 0xb5, 0x82, 0x7f, 0x53, 0xf4, 0x14, 0xa1, 0xbe, 0x25, 0xf4, 0x73, 0x00, 0xcf, 0x6d, 0x50, - 0x6a, 0x8b, 0x5f, 0xdd, 0xf8, 0xc4, 0x37, 0x55, 0x23, 0xbd, 0x27, 0xac, 0xbd, 0x95, 0x59, 0x3b, - 0x36, 0xcb, 0xc4, 0xbe, 0x07, 0xc8, 0xf3, 0x76, 0x49, 0xa4, 0xc7, 0x22, 0x84, 0xdb, 0x56, 0x49, - 0x37, 0xab, 0xba, 0xb9, 0xe7, 0xa2, 0x4b, 0x7d, 0xb9, 0x63, 0x23, 0xf8, 0xca, 0x62, 0x68, 0x5a, - 0x19, 0x41, 0x4f, 0xe0, 0xf8, 0x8e, 0x6e, 0x50, 0xcb, 0x63, 0x68, 0x08, 0xd1, 0x50, 0xe6, 0xcb, - 0x02, 0xfe, 0x02, 0x9a, 0x8f, 0xee, 0x30, 0x0b, 0x84, 0xd5, 0x61, 0x6a, 0xd3, 0x71, 0x2c, 0x87, - 0xf7, 0x72, 0x1b, 0x94, 0x11, 0xbd, 0xe1, 0x9e, 0x5a, 0xc1, 0x55, 0xa1, 0xe0, 0x75, 0xb4, 0x14, - 0x3b, 0x42, 0x2e, 0xf5, 0xb9, 0xce, 0xea, 0xd5, 0x40, 0xea, 0x9f, 0x00, 0x88, 0xee, 0x50, 0xd6, - 0xdb, 0x3b, 0x9e, 0xa2, 0x5a, 0xea, 0x61, 0x1d, 0x8a, 0xe7, 0xdb, 0x02, 0xcf, 0x1b, 0x99, 0x4b, - 0x51, 0x3c, 0x1c, 0x4a, 0xd9, 0xaa, 0x36, 0x95, 0x23, 0x5e, 0xb3, 0x88, 0x1e, 0x13, 0xfd, 0x11, - 0x80, 0x73, 0x0f, 0x2d, 0x97, 0x71, 0x89, 0x82, 0x55, 0x20, 0x3a, 0x65, 0xbf, 0x3a, 0x14, 0x86, - 0x22, 0x60, 0x5c, 0xcb, 0x5c, 0x8d, 0xc2, 0xb0, 0x2d, 0x97, 0x71, 0x28, 0xe2, 0xb7, 0x56, 0x1f, - 0x4f, 0xc7, 0x4d, 0x7e, 0x01, 0xe0, 0xfc, 0x7a, 0x9d, 0x56, 0xf6, 0xc3, 0x42, 0xe1, 0x21, 0x71, - 0x88, 0xe1, 0x7e, 0x63, 0x7e, 0x7f, 0x47, 0x18, 0x50, 0x44, 0xef, 0x1d, 0xe7, 0xf7, 0xb6, 0xc0, - 0xa9, 0xec, 0x51, 0x36, 0xf0, 0x15, 0x40, 0xff, 0x0d, 0xe0, 0x6b, 0xc2, 0x30, 0xff, 0x7a, 0x98, - 0x77, 0xcc, 0xbf, 0x26, 0x26, 0x3e, 0x12, 0x26, 0xde, 0x43, 0x5b, 0xa7, 0x30, 0x31, 0xe8, 0xf4, - 0xc4, 0xe7, 0x4c, 0x3d, 0xe6, 0x5a, 0xfb, 0x2d, 0xf4, 0xef, 0x00, 0x9e, 0x17, 0xc6, 0x72, 0xcf, - 0xfa, 0x35, 0xb2, 0x31, 0x53, 0x38, 0xa1, 0x8d, 0xdc, 0x45, 0xe3, 0x3d, 0x77, 0xab, 0x10, 0xff, - 0xd2, 0x09, 0x7d, 0x0e, 0xe0, 0xd2, 0x83, 0x03, 0xea, 0x88, 0xca, 0x5c, 0xa3, 0xae, 0x6d, 0x99, - 0x2e, 0x5d, 0xb7, 0xc4, 0x55, 0xfe, 0x4e, 0xd3, 0xa6, 0x43, 0x43, 0xc8, 0x52, 0xdf, 0x7c, 0xe4, - 0x12, 0x33, 0xb3, 0xd9, 0x2e, 0xa2, 0x42, 0x2c, 0x3d, 0x32, 0x7a, 0xc8, 0x04, 0xfc, 0x2c, 0x92, - 0xa3, 0xaf, 0x91, 0x15, 0x2a, 0x77, 0x02, 0xe5, 0x15, 0x5f, 0x39, 0xe3, 0xca, 0x7f, 0x1f, 0xc0, - 0x05, 0x71, 0x02, 0x9b, 0x87, 0xfe, 0xee, 0x84, 0xdf, 0x6d, 0xa0, 0xef, 0x9e, 0xf6, 0x83, 0x10, - 0x1e, 0x19, 0x42, 0xee, 0xa1, 0x2f, 0xfa, 0x25, 0x81, 0x70, 0x1e, 0xcd, 0x71, 0x84, 0x41, 0xb2, - 0x2b, 0x54, 0x38, 0x00, 0xf4, 0x67, 0x00, 0x5e, 0x8e, 0x41, 0x89, 0x7f, 0x58, 0x72, 0x7c, 0x31, - 0x3e, 0x08, 0x50, 0x5c, 0xc6, 0xd7, 0x80, 0x95, 0xfe, 0x27, 0xd0, 0x2e, 0xfe, 0x0c, 0xa0, 0xda, - 0x90, 0xfb, 0xa9, 0xe8, 0x6f, 0x68, 0x38, 0x97, 0xc3, 0xcf, 0xeb, 0x7a, 0xa5, 0x8e, 0xdd, 0xba, - 0xe5, 0x35, 0xaa, 0xa2, 0x18, 0x28, 0x53, 0xec, 0xb9, 0xb4, 0x8a, 0x75, 0x13, 0xdb, 0x0d, 0x52, - 0xa1, 0xd8, 0xaa, 0x89, 0xb2, 0xa1, 0x6a, 0x55, 0x3c, 0x83, 0x9a, 0xfe, 0x1d, 0x07, 0xae, 0x58, - 0x06, 0x1f, 0xbc, 0x91, 0x7e, 0x04, 0xaf, 0x0c, 0xea, 0x87, 0x78, 0x52, 0x0f, 0x6f, 0xc4, 0x4e, - 0xfb, 0x83, 0xcb, 0x33, 0x78, 0xbe, 0x42, 0x0c, 0xda, 0x58, 0x27, 0x2e, 0x0d, 0x64, 0x6c, 0x13, - 0x83, 0x22, 0x0d, 0x8e, 0xfa, 0x9f, 0xa6, 0x9c, 0x36, 0x89, 0xc5, 0x76, 0xab, 0x93, 0xc4, 0xf8, - 0x92, 0xfa, 0x23, 0xb8, 0x54, 0x34, 0x2d, 0x56, 0xa7, 0x4e, 0xa0, 0x49, 0x1c, 0x42, 0x37, 0xa1, - 0x7f, 0x3f, 0x96, 0xde, 0x4f, 0xab, 0x78, 0xa4, 0xf4, 0xb3, 0xc9, 0x76, 0xf1, 0xa7, 0x93, 0xe8, - 0x2b, 0x00, 0xe7, 0x8b, 0xb8, 0xe4, 0xff, 0x44, 0x16, 0x79, 0x7f, 0x3f, 0x86, 0xe7, 0xf7, 0xb4, - 0x87, 0xeb, 0xb9, 0x3b, 0xbe, 0xe9, 0xd8, 0x76, 0xac, 0x67, 0xb4, 0xc2, 0x4e, 0xbb, 0x65, 0xe9, - 0x94, 0x69, 0x99, 0xf4, 0xfd, 0xc0, 0x34, 0x4e, 0x9d, 0xfd, 0x11, 0x3c, 0x5f, 0x7a, 0xbc, 0x81, - 0x57, 0x73, 0xeb, 0x0d, 0xe2, 0xb9, 0x14, 0xdf, 0xd7, 0x2b, 0xd4, 0x74, 0x29, 0xba, 0x7d, 0x3a, - 0xc9, 0x4a, 0xb9, 0x61, 0x95, 0x15, 0x83, 0xb8, 0x8c, 0x3a, 0xca, 0xfd, 0xad, 0xf5, 0xcd, 0xed, - 0xc7, 0x9b, 0x79, 0x76, 0xc8, 0x54, 0x69, 0x25, 0xbf, 0x5c, 0xc0, 0x70, 0xe1, 0x30, 0xe7, 0x5a, - 0x06, 0x15, 0xd6, 0x74, 0x9f, 0xd0, 0x78, 0x7a, 0xb4, 0x49, 0xaa, 0x55, 0x92, 0x95, 0x40, 0x22, - 0xa9, 0xf6, 0x55, 0xc5, 0xea, 0x85, 0xe8, 0xcc, 0x61, 0xae, 0x66, 0x59, 0x39, 0x43, 0x37, 0x68, - 0xa1, 0x8f, 0xb2, 0x30, 0x84, 0x52, 0x7b, 0xc8, 0x2b, 0xdc, 0x55, 0xb4, 0x05, 0xef, 0xf4, 0x57, - 0xb8, 0x9e, 0x4b, 0x9d, 0x6e, 0x75, 0x5b, 0x27, 0x07, 0x14, 0xdb, 0xd4, 0x31, 0x74, 0xd7, 0xe5, - 0xae, 0xcb, 0x2c, 0x4c, 0x2a, 0x15, 0xea, 0xba, 0xb1, 0x6a, 0x38, 0xaf, 0x9d, 0xa1, 0x66, 0x1e, - 0xd7, 0x1e, 0x41, 0x69, 0x6d, 0xe5, 0x26, 0xba, 0x0b, 0xa7, 0xb7, 0xbe, 0x6d, 0x60, 0x82, 0x19, - 0x25, 0xb6, 0xc5, 0xf2, 0xe8, 0x16, 0x7c, 0x27, 0xfd, 0xf5, 0x7e, 0x25, 0x79, 0xfa, 0x97, 0x12, - 0x9c, 0x85, 0x93, 0x25, 0xe2, 0xea, 0x15, 0x71, 0x7f, 0x92, 0x98, 0x00, 0xf0, 0xef, 0x41, 0xec, - 0x4a, 0xe5, 0x73, 0x30, 0x91, 0x48, 0x4f, 0x7e, 0x9c, 0x2b, 0x3e, 0xdc, 0xca, 0xdd, 0xa3, 0x4d, - 0x9c, 0xb8, 0x2b, 0xc3, 0xa5, 0xc3, 0x1c, 0x31, 0xc8, 0x0b, 0xcb, 0xcc, 0x11, 0x5b, 0x0f, 0x74, - 0xe6, 0x88, 0xc7, 0xea, 0x22, 0x7e, 0x4e, 0xa4, 0xc7, 0x2c, 0x3e, 0x50, 0xef, 0xfe, 0x06, 0x7c, - 0x7d, 0x18, 0xa5, 0xe5, 0xe8, 0x2f, 0xa8, 0x83, 0xbe, 0x9f, 0xfd, 0x2e, 0x9c, 0x85, 0x49, 0xc1, - 0x37, 0x9e, 0x1e, 0x65, 0xd6, 0x3e, 0x35, 0xe1, 0x35, 0xb8, 0xd4, 0x25, 0xd1, 0xa8, 0xeb, 0x35, - 0xd8, 0x0e, 0x6b, 0x6c, 0x99, 0x8f, 0x79, 0x98, 0xae, 0xba, 0x9d, 0x26, 0x64, 0xfb, 0x7d, 0xf8, - 0x0b, 0xd0, 0xb9, 0xef, 0xf9, 0x17, 0x30, 0x21, 0xc9, 0x49, 0xf5, 0xcd, 0xd0, 0xf9, 0x22, 0x9e, - 0xaa, 0x08, 0x3c, 0x4a, 0x47, 0x68, 0xe1, 0xca, 0x70, 0x22, 0x01, 0xa1, 0xf4, 0x5b, 0x30, 0xed, - 0x5f, 0x1f, 0x21, 0x74, 0xc7, 0x21, 0x26, 0x73, 0x31, 0x1f, 0x04, 0x87, 0x0a, 0x97, 0x82, 0x4b, - 0x25, 0x34, 0x1f, 0x2c, 0x8a, 0x51, 0xb8, 0xba, 0x0e, 0x47, 0x49, 0xd5, 0xd0, 0x4d, 0x54, 0x88, - 0xb1, 0x9a, 0xd5, 0x18, 0x99, 0xf0, 0x11, 0x4e, 0xa6, 0xbb, 0x8c, 0x97, 0xef, 0x07, 0xbc, 0x6f, - 0xab, 0x59, 0x8e, 0x21, 0xdc, 0xb0, 0x7c, 0x05, 0x4e, 0x47, 0x0f, 0x66, 0xa4, 0xf7, 0xa2, 0xab, - 0x7c, 0x6d, 0xe8, 0x55, 0x57, 0x2f, 0xa9, 0xb3, 0x05, 0x2f, 0x7e, 0xd8, 0x0d, 0x9b, 0xd1, 0x60, - 0x70, 0xda, 0x20, 0xf0, 0xe2, 0x32, 0x44, 0x87, 0xb9, 0xe8, 0x0c, 0x7f, 0x5b, 0xd0, 0x68, 0x5a, - 0x2a, 0x13, 0xe7, 0x85, 0x0c, 0x2f, 0xf6, 0x2c, 0x96, 0xc9, 0x8b, 0x5c, 0x43, 0x77, 0x19, 0x9a, - 0x56, 0xa7, 0xe0, 0x68, 0x5a, 0xb2, 0x4c, 0x0a, 0x13, 0x18, 0x3c, 0x9d, 0xec, 0xb8, 0x63, 0x79, - 0x4c, 0xc4, 0xb3, 0xd5, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x52, 0x68, 0xc9, 0xfa, 0x00, 0x2f, - 0x00, 0x00, + // 3824 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4d, 0x6c, 0x1b, 0x49, + 0x76, 0x56, 0xb1, 0xf5, 0x5b, 0xb2, 0x2c, 0xa9, 0x64, 0xd9, 0x32, 0xad, 0x19, 0xd7, 0xb4, 0xbd, + 0x3b, 0x6d, 0xae, 0x49, 0x4a, 0x2d, 0x79, 0xc6, 0xa6, 0x77, 0x76, 0x86, 0x94, 0x64, 0x8f, 0x6c, + 0x8f, 0x6c, 0xb7, 0x3d, 0xde, 0x19, 0x2f, 0x66, 0x95, 0x22, 0x59, 0x12, 0xdb, 0x62, 0x77, 0xf5, + 0x76, 0x57, 0xcb, 0xa2, 0x15, 0x22, 0x93, 0x20, 0xc9, 0x2e, 0x92, 0x00, 0x09, 0x94, 0x3f, 0x24, + 0x93, 0xb9, 0x25, 0x40, 0x10, 0xec, 0x21, 0x97, 0x9c, 0xf6, 0x90, 0x53, 0xb0, 0x87, 0xdc, 0x26, + 0xc0, 0xde, 0x83, 0x04, 0x39, 0x04, 0xb9, 0x05, 0x18, 0x20, 0x87, 0x05, 0x82, 0xaa, 0xee, 0x26, + 0xbb, 0xf9, 0x63, 0x49, 0x96, 0x17, 0xb3, 0x3e, 0x58, 0xac, 0xaa, 0xf7, 0xf3, 0xbd, 0x57, 0xaf, + 0xea, 0xbd, 0x57, 0x24, 0xbc, 0x49, 0xf7, 0x88, 0xe5, 0xd4, 0xa9, 0x97, 0x37, 0x6d, 0x4e, 0x5d, + 0x9b, 0xd4, 0xf3, 0x8e, 0xcb, 0x38, 0xcb, 0x87, 0xf3, 0x4e, 0x39, 0x4f, 0x36, 0xcb, 0x26, 0xdf, + 0x64, 0x5b, 0x9b, 0x74, 0x97, 0xba, 0x0d, 0x5e, 0x33, 0xed, 0xed, 0x9c, 0xa4, 0x41, 0xda, 0xb6, + 0xeb, 0x54, 0x72, 0xdb, 0x84, 0xd3, 0xe7, 0xa4, 0x91, 0x8b, 0x24, 0xe5, 0x22, 0x49, 0xb9, 0x96, + 0x8c, 0xf4, 0xfc, 0x36, 0x63, 0xdb, 0x75, 0x9a, 0x27, 0x8e, 0x99, 0x27, 0xb6, 0xcd, 0x38, 0xe1, + 0x26, 0xb3, 0xbd, 0x40, 0x4e, 0x1a, 0x87, 0xab, 0x72, 0x54, 0xf6, 0xb7, 0xf2, 0x5b, 0x26, 0xad, + 0x57, 0x37, 0x2d, 0xe2, 0xed, 0x84, 0x14, 0x17, 0x3a, 0x29, 0xa8, 0xe5, 0xf0, 0x46, 0xb8, 0xf8, + 0x66, 0xe7, 0x62, 0xd5, 0x77, 0xa5, 0xfc, 0x7e, 0xeb, 0xcf, 0x5d, 0xe2, 0x38, 0xd4, 0x8d, 0xd4, + 0x2f, 0xf4, 0xf3, 0x81, 0x43, 0x78, 0x8d, 0xda, 0xbe, 0x25, 0x3f, 0x6c, 0x8a, 0x4f, 0x21, 0xc7, + 0x95, 0x7e, 0x1c, 0x9e, 0x5f, 0xce, 0x5b, 0xd4, 0xf3, 0xc8, 0x36, 0x0d, 0x49, 0x33, 0x2f, 0x21, + 0xd5, 0x3b, 0x68, 0x2f, 0x76, 0x02, 0xe5, 0xa6, 0x45, 0x3d, 0x4e, 0x2c, 0x27, 0x24, 0xb8, 0x2a, + 0xff, 0x54, 0xb2, 0xdb, 0xd4, 0xce, 0x7a, 0xcf, 0xc9, 0xf6, 0x36, 0x75, 0xf3, 0xcc, 0x91, 0xae, + 0xec, 0x76, 0xab, 0xfa, 0x1f, 0xf3, 0x70, 0xaa, 0x58, 0x32, 0xf9, 0xfd, 0xad, 0xb5, 0xd6, 0xce, + 0xa1, 0x2d, 0x38, 0xe1, 0x99, 0xf6, 0x76, 0x9d, 0x6e, 0xda, 0xd4, 0xe3, 0xb4, 0x3a, 0x77, 0x1e, + 0x03, 0x6d, 0x5c, 0x2f, 0xe6, 0x8e, 0xba, 0x97, 0xb9, 0x4e, 0x91, 0xb9, 0x0d, 0x29, 0xc8, 0x38, + 0x15, 0xc8, 0x0d, 0x46, 0xa8, 0x06, 0x07, 0x7d, 0xdf, 0xac, 0xce, 0x01, 0x0c, 0xb4, 0xb1, 0xd2, + 0xe3, 0x83, 0xe2, 0xc3, 0xcf, 0x01, 0xf8, 0x03, 0x70, 0xf7, 0x07, 0x24, 0xbb, 0x55, 0xcc, 0xde, + 0x5a, 0xc8, 0xde, 0xf8, 0x6c, 0xff, 0x7a, 0x33, 0x1b, 0x1f, 0x2e, 0x1f, 0x67, 0xb8, 0xa8, 0x37, + 0x0d, 0xa9, 0x01, 0x7d, 0x0a, 0x87, 0x43, 0x53, 0x52, 0x58, 0x79, 0x3d, 0xa6, 0x84, 0x02, 0xd1, + 0x1d, 0x38, 0xbe, 0x55, 0x67, 0x84, 0x6f, 0xee, 0x92, 0xba, 0x4f, 0xe7, 0x14, 0x0c, 0xb4, 0x54, + 0xe9, 0xca, 0x41, 0xf1, 0xdb, 0xfa, 0xf4, 0x2d, 0x31, 0x8f, 0xe5, 0x3c, 0x96, 0xe1, 0x5a, 0x50, + 0x16, 0x72, 0xfa, 0x57, 0x20, 0xce, 0x60, 0x40, 0x39, 0x78, 0x22, 0x3e, 0xa3, 0xb7, 0xe0, 0xa9, + 0x2a, 0xf3, 0xcb, 0x75, 0x1a, 0x0a, 0x1b, 0xc4, 0x40, 0x03, 0xc6, 0x78, 0x30, 0x17, 0x90, 0x5c, + 0x84, 0xe3, 0xa6, 0xcd, 0xdf, 0x59, 0x0e, 0x29, 0x86, 0x30, 0xd0, 0x14, 0x03, 0xca, 0xa9, 0x96, + 0x0c, 0x3f, 0x4e, 0x31, 0x8c, 0x81, 0x36, 0x68, 0x8c, 0xfb, 0x31, 0x92, 0x40, 0xc6, 0x92, 0x1e, + 0x52, 0x8c, 0x60, 0xa0, 0x0d, 0x49, 0x19, 0x4b, 0x7a, 0x40, 0x70, 0x09, 0x4e, 0x6c, 0x99, 0x7b, + 0xb4, 0xda, 0x12, 0x32, 0x8a, 0x81, 0x36, 0x6c, 0x9c, 0x0a, 0x27, 0x93, 0x44, 0x2d, 0x39, 0x63, + 0x18, 0x68, 0x23, 0x21, 0x51, 0x24, 0xe9, 0x0d, 0x08, 0xcb, 0x8c, 0xd5, 0x43, 0x0a, 0x88, 0x81, + 0x36, 0x6a, 0x8c, 0x89, 0x99, 0x16, 0x58, 0x8f, 0xbb, 0xa6, 0xbd, 0x1d, 0x12, 0x8c, 0x8b, 0x48, + 0x30, 0xc6, 0x83, 0xb9, 0x16, 0xd8, 0x72, 0x83, 0x53, 0x2f, 0xa4, 0x78, 0x03, 0x03, 0xed, 0x94, + 0x01, 0xe5, 0x54, 0xc2, 0xe0, 0x16, 0x8c, 0x09, 0x0c, 0xb4, 0x89, 0xc0, 0xe0, 0x08, 0xc5, 0x63, + 0x08, 0xc5, 0xc9, 0x0c, 0x09, 0x4e, 0x63, 0xa0, 0x9d, 0xd6, 0xaf, 0x1d, 0x3d, 0x04, 0x36, 0x7c, + 0x8b, 0xba, 0x66, 0x65, 0xcd, 0xf6, 0x2d, 0x63, 0x4c, 0x08, 0x0a, 0xa4, 0x7e, 0x0a, 0x27, 0x5b, + 0x87, 0x3e, 0x14, 0xfd, 0xa6, 0x14, 0xbd, 0x78, 0x98, 0xe8, 0xe8, 0xd2, 0xc8, 0x3d, 0x20, 0xbc, + 0x26, 0xc5, 0x4e, 0x38, 0xe1, 0xa7, 0x40, 0xf4, 0x6f, 0xc2, 0xb3, 0x41, 0x78, 0x6d, 0x76, 0x6a, + 0xb8, 0x28, 0x35, 0xdc, 0x3e, 0xb2, 0x86, 0x8f, 0x82, 0xdb, 0x23, 0x52, 0x14, 0x46, 0x6f, 0x4b, + 0xef, 0x8c, 0x9d, 0x18, 0x07, 0xda, 0xbf, 0x05, 0x4f, 0x7b, 0xc9, 0xad, 0x9d, 0xc4, 0x40, 0x9b, + 0x34, 0x26, 0xbc, 0xc4, 0xde, 0xb6, 0xc8, 0x5a, 0x61, 0x32, 0x85, 0x81, 0x36, 0x15, 0x91, 0xc5, + 0x02, 0xd2, 0x8b, 0xef, 0xcf, 0x34, 0x06, 0xda, 0xb4, 0x31, 0xee, 0xc5, 0xf6, 0x27, 0x24, 0x69, + 0xc9, 0x41, 0x18, 0x68, 0x28, 0x20, 0x89, 0xa4, 0xe8, 0x70, 0xd6, 0xa5, 0x0e, 0x25, 0xc2, 0x27, + 0x89, 0x90, 0x99, 0xc1, 0x8a, 0x36, 0x66, 0xcc, 0x44, 0x8b, 0x8f, 0x62, 0xa1, 0x73, 0x03, 0x8e, + 0x33, 0x9b, 0x8a, 0xac, 0x24, 0x32, 0xc1, 0xdc, 0x19, 0x79, 0x8b, 0x9d, 0xcd, 0x05, 0x37, 0x68, + 0x2e, 0xba, 0x41, 0x73, 0x6b, 0x62, 0xf5, 0xc3, 0x01, 0x03, 0x4a, 0x62, 0x39, 0x42, 0x97, 0xe0, + 0xa9, 0x80, 0x35, 0xd0, 0x35, 0x37, 0x2b, 0x02, 0xf3, 0xc3, 0x01, 0x23, 0x10, 0x18, 0x28, 0x41, + 0x14, 0x8e, 0x59, 0xc4, 0x09, 0x71, 0x9c, 0x95, 0x17, 0xcb, 0x87, 0x27, 0xb8, 0x58, 0x3e, 0x22, + 0x8e, 0xc4, 0xbd, 0x66, 0x73, 0xb7, 0x61, 0x8c, 0x5a, 0xe1, 0x10, 0xfd, 0x36, 0x80, 0x33, 0x96, + 0xc8, 0x46, 0x1d, 0x96, 0x9f, 0x93, 0x1a, 0x1f, 0x9e, 0x4c, 0xa3, 0x93, 0x70, 0x59, 0xa0, 0x7a, + 0xda, 0xea, 0x9c, 0x8f, 0x63, 0x08, 0x03, 0x33, 0xc0, 0x30, 0xf7, 0x9a, 0x30, 0x04, 0x61, 0xd9, + 0x8d, 0x21, 0x36, 0x8f, 0x0a, 0x70, 0xce, 0x66, 0xf6, 0x0a, 0xb3, 0x77, 0xa9, 0x2d, 0x72, 0x18, + 0xa9, 0x6f, 0x10, 0x2b, 0xb8, 0x16, 0xe7, 0xd2, 0xf2, 0xe2, 0xe8, 0xbb, 0x8e, 0x56, 0xe0, 0x64, + 0x2b, 0x51, 0x86, 0xd0, 0x2f, 0xc8, 0x70, 0x48, 0x77, 0x85, 0xc3, 0xe3, 0x88, 0xce, 0x38, 0xdd, + 0x62, 0x09, 0x84, 0x50, 0xd8, 0x0a, 0xb3, 0xf8, 0x91, 0x9c, 0xc7, 0xca, 0xab, 0xdf, 0x27, 0xd3, + 0x91, 0xc4, 0xf6, 0xf1, 0xfb, 0x27, 0x00, 0xe7, 0x92, 0x7a, 0xda, 0x79, 0x7b, 0x0e, 0x9f, 0x40, + 0x59, 0x69, 0xf5, 0xa0, 0x58, 0xcc, 0x5c, 0x30, 0x42, 0xd9, 0xd8, 0x0e, 0x96, 0xb0, 0xd0, 0x81, + 0xb9, 0xc9, 0xeb, 0x54, 0x57, 0x7b, 0x2f, 0x56, 0xa9, 0x57, 0x71, 0x4d, 0x59, 0x45, 0xe4, 0x8c, + 0xb3, 0x71, 0xc8, 0xc5, 0x16, 0x34, 0xf4, 0x25, 0x80, 0xb3, 0x6d, 0xb7, 0xc4, 0x41, 0xbf, 0x75, + 0x82, 0x1b, 0xb7, 0xa4, 0x1f, 0x14, 0xf3, 0x19, 0xb4, 0xd1, 0x8d, 0xf5, 0xfc, 0x46, 0x5f, 0x88, + 0x33, 0xad, 0x5b, 0x3a, 0x86, 0x6f, 0x17, 0xa6, 0x3b, 0xaf, 0x90, 0x18, 0x46, 0x55, 0xdc, 0x23, + 0xa5, 0xeb, 0x07, 0xc5, 0x6b, 0x99, 0xd9, 0x96, 0x13, 0x02, 0xb2, 0x50, 0xdf, 0x7c, 0xe7, 0x74, + 0x42, 0xe5, 0x5c, 0xf2, 0x06, 0x8a, 0xe9, 0xfd, 0x39, 0x88, 0x29, 0x0e, 0x4f, 0x4f, 0x4c, 0xf1, + 0xa5, 0xd7, 0x54, 0x91, 0x94, 0x6e, 0x1d, 0x14, 0x57, 0x32, 0x6d, 0x90, 0x81, 0x26, 0xcc, 0xca, + 0xcf, 0x68, 0x85, 0x87, 0x26, 0x5c, 0xea, 0xb3, 0xda, 0xdb, 0x92, 0x40, 0x6e, 0xcc, 0x92, 0xbf, + 0x05, 0x70, 0xba, 0xdb, 0x80, 0xcb, 0xaf, 0xa9, 0x3a, 0x2c, 0x2d, 0x1f, 0x14, 0x17, 0x33, 0x33, + 0x1b, 0x3d, 0x70, 0xa7, 0x37, 0xfa, 0xc3, 0x9d, 0xb2, 0x3b, 0x61, 0xbe, 0x0b, 0x67, 0x82, 0x6c, + 0xc2, 0x76, 0xa9, 0xeb, 0x9a, 0x55, 0xba, 0xc9, 0x1b, 0x0e, 0x9d, 0xfb, 0x96, 0xa8, 0x95, 0x4a, + 0x23, 0x07, 0xc5, 0xc1, 0xbf, 0x4e, 0x01, 0xc5, 0x98, 0x96, 0x34, 0xf7, 0x43, 0x92, 0xc7, 0x0d, + 0x87, 0xa6, 0xff, 0x0b, 0xc0, 0xe1, 0xb0, 0x36, 0x45, 0x70, 0xd0, 0x26, 0x16, 0x0d, 0x6a, 0x53, + 0x43, 0x7e, 0x46, 0x67, 0xe1, 0x30, 0xb1, 0x98, 0x6f, 0xf3, 0xb9, 0x94, 0xac, 0x31, 0xc2, 0x11, + 0xda, 0x85, 0x29, 0xb6, 0x23, 0x2b, 0xbf, 0xd3, 0xfa, 0x9d, 0x13, 0xbb, 0x21, 0xb7, 0x4a, 0xa9, + 0x23, 0x23, 0x3f, 0x7d, 0x50, 0x3c, 0xa7, 0xcf, 0x46, 0xc3, 0xa4, 0xd5, 0x29, 0xb6, 0xa3, 0x5e, + 0x84, 0xa3, 0xd1, 0x22, 0x1a, 0x83, 0x43, 0xb7, 0x8a, 0xf7, 0x1e, 0xad, 0x4d, 0x0d, 0xa0, 0x51, + 0x38, 0xf8, 0xd8, 0xf8, 0x78, 0x6d, 0x0a, 0x14, 0xce, 0x1d, 0x14, 0xcf, 0xe8, 0x08, 0x4d, 0xed, + 0x63, 0x95, 0xed, 0xa8, 0x05, 0xac, 0x8a, 0x79, 0x15, 0x37, 0xd3, 0x2e, 0x9c, 0x48, 0x64, 0x1b, + 0x34, 0x05, 0x95, 0x1d, 0xda, 0x08, 0xad, 0x15, 0x1f, 0xd1, 0x5d, 0x38, 0x14, 0x5c, 0x6f, 0xa9, + 0x93, 0x94, 0x4b, 0x81, 0x8c, 0x42, 0xea, 0x3a, 0x48, 0xaf, 0xc2, 0xb3, 0xbd, 0xf3, 0x4d, 0x0f, + 0xe5, 0x67, 0xe2, 0xca, 0xc7, 0xe2, 0x52, 0x7e, 0x0c, 0x22, 0x31, 0x9d, 0x29, 0xa3, 0x87, 0x98, + 0xef, 0xc7, 0xc5, 0xbc, 0x96, 0xaa, 0xbf, 0x8d, 0xa4, 0xf0, 0x57, 0xa9, 0x83, 0xe2, 0x9f, 0xa7, + 0xe0, 0xef, 0x82, 0xcc, 0x4c, 0x11, 0x97, 0x4d, 0x8e, 0xd9, 0x16, 0x6e, 0xb7, 0xbf, 0xfa, 0xfa, + 0xba, 0xcd, 0xa3, 0x3c, 0xd4, 0xc0, 0x15, 0x66, 0x39, 0x75, 0xb3, 0x22, 0x8f, 0x5e, 0xd8, 0xd0, + 0x61, 0x11, 0x94, 0x98, 0x33, 0x5c, 0x11, 0x61, 0x8a, 0x2d, 0x62, 0x37, 0xf0, 0x16, 0x25, 0xdc, + 0x77, 0xa9, 0x27, 0x64, 0x3d, 0x88, 0x12, 0xd2, 0x57, 0x40, 0x36, 0x31, 0x5f, 0x81, 0x78, 0xe5, + 0xff, 0x15, 0x48, 0xb4, 0x0a, 0x99, 0x27, 0xf0, 0xf2, 0x2d, 0xd3, 0xae, 0x62, 0xe6, 0x73, 0x6c, + 0x31, 0x97, 0x62, 0x52, 0x16, 0x1f, 0xbb, 0x7a, 0xbb, 0x5c, 0x8d, 0x73, 0xc7, 0x2b, 0xe4, 0xf3, + 0xdb, 0x26, 0xaf, 0xf9, 0xe5, 0x5c, 0x85, 0x59, 0x79, 0xe1, 0x95, 0x2c, 0xad, 0x30, 0xaf, 0xe1, + 0x71, 0x1a, 0x0e, 0x43, 0x27, 0xe9, 0xcb, 0x48, 0xdf, 0xc7, 0xaa, 0xd0, 0x2f, 0xe2, 0x67, 0xa1, + 0xb2, 0xb5, 0xf4, 0xce, 0x22, 0x5d, 0xcc, 0x2e, 0x97, 0x97, 0x97, 0xb3, 0xcb, 0xd7, 0x97, 0xaa, + 0x59, 0xb2, 0x78, 0xed, 0x46, 0xf6, 0xda, 0x72, 0x95, 0x94, 0xab, 0x5b, 0xef, 0xd2, 0xeb, 0x8b, + 0xcb, 0x2a, 0x6e, 0x96, 0x26, 0xa2, 0xca, 0x4b, 0x82, 0x53, 0x7f, 0x3c, 0x06, 0xe7, 0x3a, 0x91, + 0x44, 0x37, 0x11, 0xba, 0x01, 0xcf, 0xcb, 0x22, 0xb7, 0x75, 0x45, 0xc6, 0xdb, 0x29, 0x80, 0x15, + 0x2d, 0x65, 0x9c, 0x15, 0x04, 0x11, 0xc3, 0xad, 0x76, 0xbf, 0x74, 0x13, 0xa6, 0x93, 0xac, 0x89, + 0xee, 0x49, 0xb4, 0x7a, 0xc0, 0x38, 0x17, 0xe7, 0x5d, 0x8d, 0x75, 0x52, 0x5d, 0x7a, 0xe3, 0x15, + 0xa8, 0x82, 0x15, 0x4d, 0x49, 0xea, 0x5d, 0x6f, 0x17, 0xa3, 0x5d, 0x7a, 0x13, 0x1d, 0xd7, 0x20, + 0x56, 0xb4, 0xc1, 0xa4, 0xde, 0x8f, 0x63, 0x95, 0x6c, 0x2f, 0xbd, 0xad, 0xe2, 0x78, 0x08, 0x2b, + 0xda, 0x50, 0x97, 0xde, 0xa8, 0x4e, 0x7e, 0x0f, 0x5e, 0xe8, 0x70, 0x55, 0xa2, 0xfc, 0x1e, 0xc6, + 0x8a, 0x36, 0x6c, 0xcc, 0x25, 0x9c, 0x15, 0xaf, 0xc4, 0x7b, 0xb3, 0xc7, 0xfa, 0x40, 0x45, 0x1b, + 0xe9, 0xc1, 0x1e, 0x69, 0x7f, 0x17, 0xce, 0x25, 0xd9, 0x63, 0x9d, 0xdd, 0x28, 0x56, 0xb4, 0x51, + 0x63, 0x36, 0xce, 0x5b, 0x6a, 0x75, 0x79, 0x5d, 0xee, 0x4a, 0x94, 0xb1, 0x63, 0xb2, 0x80, 0x4f, + 0xb8, 0x2b, 0x59, 0xc4, 0x77, 0xb8, 0x2b, 0xde, 0x0d, 0x42, 0xac, 0x68, 0xa7, 0x92, 0xee, 0x2a, + 0xb5, 0x3b, 0xc3, 0x9e, 0xdb, 0xd4, 0x32, 0x77, 0x1c, 0x2b, 0xda, 0x44, 0xf7, 0x36, 0x45, 0xd6, + 0xda, 0x9d, 0xd6, 0xc6, 0x2a, 0xbe, 0x53, 0x27, 0xa9, 0xf8, 0x12, 0x4e, 0x6a, 0x57, 0x7d, 0xef, + 0xc3, 0xf9, 0x0e, 0x27, 0x25, 0x77, 0x67, 0x02, 0x2b, 0xda, 0xa4, 0x71, 0x3e, 0xe1, 0xa6, 0x44, + 0x3b, 0xd6, 0x47, 0x40, 0x2b, 0x3a, 0x4e, 0x63, 0x45, 0x9b, 0xea, 0x25, 0xa0, 0x6f, 0x54, 0x27, + 0xda, 0xb6, 0x49, 0xac, 0x68, 0xd3, 0x1d, 0xdb, 0x14, 0x73, 0x57, 0x4f, 0xe6, 0x58, 0x63, 0xa8, + 0x68, 0xa8, 0x9b, 0x39, 0xd4, 0x5c, 0xa8, 0x1d, 0x14, 0xa9, 0x5e, 0x41, 0x64, 0x1f, 0xab, 0xfd, + 0x22, 0x4c, 0x2d, 0xe0, 0x1f, 0x70, 0xd7, 0xa7, 0x57, 0x71, 0xf0, 0xff, 0x16, 0xa9, 0x7b, 0xe1, + 0xe0, 0xb3, 0xab, 0x9d, 0x6c, 0x31, 0xdc, 0x82, 0x6f, 0xf1, 0x2a, 0xd6, 0xaf, 0xe2, 0xa5, 0xcf, + 0x70, 0x53, 0x4d, 0xc3, 0xc1, 0x12, 0xab, 0x36, 0x7a, 0xa5, 0x77, 0x95, 0xc2, 0xc9, 0xb0, 0x5b, + 0xfe, 0xbe, 0xc9, 0x6b, 0x92, 0xec, 0x34, 0x4c, 0x45, 0xef, 0x53, 0x46, 0xca, 0xac, 0xa2, 0x12, + 0x1c, 0xac, 0x12, 0x4e, 0xc2, 0x7c, 0x92, 0x3b, 0x7a, 0x00, 0x08, 0x69, 0x86, 0xe4, 0x55, 0xff, + 0x06, 0xc0, 0xc9, 0x8f, 0x9d, 0x2a, 0xe1, 0xf4, 0x89, 0x6e, 0xd0, 0x1f, 0xf9, 0xd4, 0xe3, 0xe8, + 0x1e, 0x54, 0x48, 0x39, 0x40, 0x33, 0xae, 0x17, 0x5e, 0x3d, 0x4d, 0x19, 0x42, 0x0c, 0xba, 0x09, + 0xc7, 0x7d, 0xa9, 0x40, 0x3e, 0x8f, 0x86, 0x60, 0xbb, 0x1b, 0x9d, 0x5b, 0x26, 0xad, 0x57, 0x3f, + 0x22, 0xde, 0x8e, 0x01, 0x03, 0x72, 0xf1, 0x59, 0xdd, 0x16, 0x1e, 0x62, 0x3b, 0x3d, 0x0b, 0xa0, + 0xc0, 0x1d, 0xa9, 0x96, 0x3b, 0x6e, 0xc2, 0xf1, 0x8a, 0x2b, 0x5c, 0xbe, 0x29, 0x3a, 0x25, 0x59, + 0x01, 0xbd, 0xbc, 0xa3, 0x82, 0x01, 0xb9, 0x98, 0x50, 0x7f, 0x02, 0xe0, 0xf4, 0x8a, 0x1c, 0x0a, + 0x7d, 0x91, 0x27, 0xce, 0xc2, 0x61, 0x87, 0xb8, 0xd4, 0xe6, 0xa1, 0xe2, 0x70, 0x24, 0x3c, 0x5f, + 0x66, 0x6c, 0xe7, 0x55, 0x3c, 0xcf, 0x76, 0x0c, 0xc9, 0x8b, 0xce, 0xc1, 0x11, 0xf1, 0x77, 0xd3, + 0xac, 0x4a, 0xa8, 0x63, 0xc6, 0xb0, 0x18, 0xae, 0x57, 0x33, 0x18, 0x8e, 0xc7, 0x4e, 0xa8, 0x28, + 0xa0, 0x9e, 0xae, 0x19, 0xf7, 0xa7, 0x06, 0xd0, 0x08, 0x54, 0xee, 0x6f, 0xac, 0x4d, 0x01, 0xfd, + 0xf7, 0x35, 0x78, 0xae, 0xd3, 0xd9, 0x8f, 0xa8, 0xbb, 0x6b, 0x56, 0x28, 0xfa, 0x7c, 0x10, 0x0e, + 0x07, 0x86, 0xa0, 0x13, 0x6c, 0x5d, 0xfa, 0x04, 0xbc, 0xea, 0x2f, 0x53, 0xbf, 0xf3, 0x6f, 0xff, + 0xf9, 0xa7, 0xa9, 0xaf, 0x53, 0xea, 0xff, 0xa6, 0xf2, 0xbb, 0x8b, 0xd1, 0xcb, 0x7c, 0xaf, 0x77, + 0xf9, 0xfc, 0x7e, 0x2c, 0xbf, 0x36, 0xf3, 0xfb, 0xf1, 0x94, 0xd9, 0xcc, 0xef, 0xc7, 0x4e, 0x6d, + 0x33, 0xef, 0x51, 0x87, 0xb8, 0x84, 0x33, 0x37, 0xbf, 0xef, 0x27, 0x16, 0xf6, 0x63, 0x27, 0xac, + 0x99, 0xdf, 0x4f, 0x5c, 0x34, 0xd1, 0x38, 0xb6, 0xde, 0x3e, 0xc6, 0xcd, 0xfc, 0x7e, 0xfc, 0xf2, + 0x7f, 0xcf, 0xe3, 0xae, 0xe3, 0xd2, 0x2d, 0x73, 0x2f, 0x9f, 0x69, 0x06, 0x4a, 0x62, 0x6c, 0x5e, + 0xa7, 0x1c, 0xaf, 0x53, 0x91, 0xd7, 0xc1, 0x90, 0x04, 0xd9, 0xef, 0x35, 0xa0, 0x99, 0xdf, 0x6f, + 0x5f, 0xe6, 0xcd, 0xfc, 0x7e, 0xc7, 0x1b, 0x9b, 0xe0, 0xec, 0xf9, 0xf8, 0x96, 0xe0, 0x8b, 0x75, + 0x40, 0x4d, 0xf4, 0x8f, 0x00, 0xc2, 0x28, 0x96, 0xab, 0x8d, 0x6f, 0x2c, 0x0c, 0x32, 0x32, 0x0a, + 0x2e, 0xab, 0x17, 0x0f, 0x89, 0x81, 0x02, 0xc8, 0xa0, 0xbf, 0x8f, 0x41, 0x66, 0x3b, 0xe8, 0xe6, + 0xd1, 0xd5, 0x76, 0x1d, 0xda, 0xf4, 0x31, 0x8f, 0xa3, 0x9a, 0x95, 0x38, 0xdf, 0x0e, 0x70, 0xee, + 0x07, 0x27, 0xfc, 0x3d, 0xc7, 0x2f, 0xd7, 0x4d, 0xaf, 0x46, 0x5d, 0x4f, 0xc4, 0x82, 0x38, 0x99, + 0x5e, 0x21, 0x38, 0xb7, 0xbf, 0x07, 0xe0, 0xf0, 0x3d, 0xc6, 0x76, 0x7c, 0x07, 0x4d, 0xe6, 0x3c, + 0xbf, 0xac, 0xe7, 0xd6, 0xab, 0xe1, 0x4d, 0x7d, 0x22, 0x77, 0xe5, 0x24, 0x0c, 0x0d, 0x7d, 0xfb, + 0xd0, 0x23, 0x23, 0xea, 0xdf, 0x26, 0xfa, 0x63, 0x00, 0x87, 0x83, 0x9b, 0xfb, 0x44, 0x3b, 0xdc, + 0xe7, 0x05, 0x52, 0x5d, 0x94, 0x70, 0xbe, 0x93, 0x3e, 0x22, 0x1c, 0xb1, 0x89, 0xbf, 0x04, 0x70, + 0x34, 0xca, 0x25, 0xe8, 0xc6, 0xd1, 0x31, 0x75, 0xe4, 0x9f, 0xbe, 0x90, 0xbe, 0x04, 0x12, 0xd3, + 0x5f, 0x80, 0x74, 0x26, 0xbf, 0xab, 0xbf, 0x1c, 0x14, 0x29, 0xd3, 0x5c, 0x00, 0x4c, 0x24, 0xa1, + 0xa7, 0x8b, 0xfa, 0xb1, 0x59, 0x16, 0xf4, 0xef, 0xe4, 0x77, 0x75, 0x72, 0x54, 0x1e, 0x90, 0x41, + 0x7f, 0x07, 0xe0, 0xf0, 0x2a, 0xad, 0x53, 0x4e, 0xbb, 0x23, 0xa3, 0x9f, 0x4d, 0xee, 0x41, 0xb1, + 0x58, 0xbe, 0x02, 0x4f, 0x43, 0x58, 0x74, 0xcc, 0xbb, 0xb4, 0x51, 0xf4, 0x79, 0x0d, 0x0d, 0xc0, + 0x73, 0x70, 0xf8, 0xbe, 0xf8, 0xa8, 0xa3, 0x09, 0x38, 0xe8, 0x52, 0x52, 0x85, 0x43, 0xcf, 0x5d, + 0x93, 0xd3, 0x67, 0x67, 0xe0, 0xe9, 0xbd, 0xac, 0xe9, 0xba, 0x02, 0x84, 0x67, 0x96, 0xeb, 0x14, + 0xa5, 0x70, 0xe0, 0x16, 0x2d, 0x73, 0xd4, 0xc8, 0xf9, 0x1f, 0x00, 0x47, 0x6f, 0x53, 0xfe, 0xd0, + 0xa7, 0x6e, 0xe3, 0x57, 0x12, 0x3b, 0x7f, 0x08, 0x0e, 0x8a, 0x8f, 0xd5, 0x0d, 0x38, 0xdf, 0xab, + 0x09, 0x6c, 0x69, 0x3e, 0x66, 0xf3, 0xf7, 0x09, 0x28, 0x0f, 0x48, 0x43, 0x73, 0xe8, 0xea, 0x61, + 0x86, 0xfe, 0x48, 0x28, 0x88, 0xcc, 0xfd, 0x72, 0x08, 0x4e, 0xdd, 0xa6, 0x3c, 0x2a, 0xf5, 0x02, + 0xe5, 0xa5, 0x13, 0x94, 0x35, 0xa1, 0xa0, 0xf4, 0x6b, 0x90, 0xa1, 0x7e, 0x3e, 0x28, 0x6d, 0xfa, + 0x3f, 0x05, 0x7d, 0xad, 0x1c, 0x62, 0x55, 0xab, 0xa2, 0x0c, 0x73, 0x44, 0xaf, 0x16, 0xb5, 0xd9, + 0xb9, 0xd6, 0x91, 0x50, 0xfb, 0xf6, 0x98, 0x5d, 0x6b, 0xfe, 0xcb, 0x16, 0x93, 0x89, 0xee, 0x25, + 0x5d, 0x60, 0xef, 0xd5, 0xbe, 0xbc, 0x89, 0xd4, 0xdc, 0xbf, 0x4b, 0xeb, 0xe6, 0x6b, 0x77, 0x61, + 0x3d, 0x0d, 0xe9, 0xab, 0xb0, 0x3b, 0xf3, 0xf6, 0xe9, 0x78, 0xfa, 0x2c, 0xf7, 0xb5, 0xd3, 0x7b, + 0x99, 0xd6, 0x44, 0x65, 0x80, 0xbe, 0x18, 0x84, 0x83, 0x6b, 0x95, 0x1a, 0x43, 0x87, 0x7e, 0x53, + 0xe7, 0xf9, 0xe5, 0x5c, 0xd0, 0x8d, 0x46, 0xd7, 0xca, 0xf1, 0x59, 0xd4, 0x9f, 0x2a, 0x07, 0xc5, + 0x7f, 0x49, 0xc1, 0x51, 0x5a, 0xa9, 0x31, 0xec, 0x3a, 0x15, 0x34, 0xfd, 0xc8, 0xb7, 0x2c, 0xe2, + 0x36, 0x0a, 0x78, 0x2d, 0x9c, 0x4a, 0x4f, 0xad, 0xb6, 0x5f, 0xf7, 0xe4, 0xac, 0xba, 0x0a, 0x51, + 0xf2, 0x30, 0x4b, 0xc4, 0xc7, 0x3c, 0xc2, 0x77, 0x6e, 0x40, 0x45, 0x5f, 0x58, 0x40, 0xba, 0xba, + 0x00, 0xa7, 0x88, 0x13, 0xbc, 0x41, 0x99, 0xcc, 0xce, 0x3f, 0xf3, 0x98, 0x8d, 0xe6, 0xf7, 0xd5, + 0xa8, 0x49, 0x52, 0x79, 0x8d, 0x62, 0xd3, 0x76, 0xfc, 0xf0, 0x0b, 0x6b, 0xb5, 0x79, 0xe7, 0x09, + 0x54, 0xae, 0x2d, 0x2c, 0xa1, 0xfb, 0xf0, 0x1d, 0x83, 0x72, 0xdf, 0xb5, 0x69, 0x15, 0x3f, 0xaf, + 0x51, 0x1b, 0x0b, 0x4a, 0x97, 0x7a, 0xcc, 0x77, 0x2b, 0x14, 0x9b, 0x1e, 0xe6, 0xd4, 0x72, 0x98, + 0x4b, 0x5c, 0xb3, 0xde, 0xc0, 0xbe, 0x4d, 0x76, 0x89, 0x59, 0x27, 0xe5, 0x3a, 0xcd, 0x65, 0x66, + 0xe1, 0xe8, 0x5e, 0xd6, 0xf6, 0xad, 0x32, 0x75, 0xd1, 0xd8, 0xf4, 0x80, 0xfc, 0xf7, 0xe9, 0x07, + 0x77, 0x6e, 0x42, 0x65, 0x79, 0x61, 0x19, 0x2d, 0xc3, 0xcc, 0x4b, 0xe4, 0x56, 0x19, 0xf5, 0xb0, + 0xcd, 0x38, 0xa6, 0x7b, 0xa6, 0xc7, 0x73, 0x68, 0x18, 0xca, 0x57, 0x5b, 0x79, 0x74, 0x3f, 0x3b, + 0xfc, 0x3a, 0x12, 0xae, 0xce, 0xef, 0x07, 0xdb, 0xfd, 0xf4, 0xbc, 0x3a, 0x15, 0x4f, 0x45, 0x62, + 0xad, 0x10, 0x3c, 0xe4, 0x3d, 0x45, 0xa8, 0x6b, 0x09, 0xfd, 0x1c, 0xc0, 0x53, 0xab, 0x94, 0x3a, + 0xf2, 0x4b, 0x51, 0x31, 0xf1, 0x4d, 0x95, 0x73, 0xef, 0x4b, 0x6b, 0x6f, 0xa8, 0xcb, 0x87, 0x66, + 0x99, 0xc4, 0xcf, 0x35, 0x72, 0xa2, 0x57, 0x93, 0xe9, 0xb1, 0x08, 0xe1, 0x06, 0x2b, 0x99, 0x76, + 0xd5, 0xb4, 0xb7, 0x3d, 0x74, 0xbe, 0x2b, 0x77, 0xac, 0x86, 0x3f, 0x82, 0xe9, 0x9b, 0x56, 0x06, + 0xd0, 0x13, 0x38, 0x22, 0xba, 0x35, 0xe6, 0x73, 0xd4, 0x87, 0xa8, 0x2f, 0xf3, 0x05, 0x09, 0x7f, + 0x16, 0xcd, 0xc4, 0x3d, 0xcc, 0x43, 0x61, 0x35, 0x38, 0xb5, 0xe6, 0xba, 0xcc, 0x15, 0xad, 0xf6, + 0x2a, 0xe5, 0xc4, 0xac, 0x7b, 0xc7, 0x56, 0x70, 0x59, 0x2a, 0x78, 0x13, 0xcd, 0x27, 0xb6, 0x50, + 0x48, 0x7d, 0x6e, 0xf2, 0x5a, 0x35, 0x94, 0xfa, 0x27, 0x00, 0xa2, 0xdb, 0x94, 0x77, 0xb6, 0xf6, + 0xc7, 0xa8, 0x96, 0x3a, 0x58, 0xfb, 0xe2, 0x79, 0x5b, 0xe2, 0x79, 0x4b, 0x3d, 0x1f, 0xc7, 0x23, + 0xa0, 0x94, 0x59, 0xb5, 0x91, 0xdf, 0x17, 0x35, 0x8b, 0x7c, 0x02, 0x40, 0x7f, 0x04, 0xe0, 0xf4, + 0x03, 0xe6, 0x71, 0x21, 0x51, 0xb2, 0x4a, 0x44, 0xc7, 0x7c, 0x4e, 0xe8, 0x0b, 0x23, 0x2f, 0x61, + 0x5c, 0x51, 0x2f, 0xc7, 0x61, 0x38, 0xcc, 0xe3, 0x02, 0x8a, 0xfc, 0x2a, 0x3c, 0xc0, 0xd3, 0x0a, + 0x93, 0x5f, 0x00, 0x38, 0xb3, 0x52, 0xa3, 0x95, 0x9d, 0xa8, 0x50, 0x78, 0x40, 0x5c, 0x62, 0x79, + 0xdf, 0x58, 0xdc, 0xdf, 0x96, 0x06, 0x14, 0xd1, 0xfb, 0x87, 0xc5, 0xbd, 0x23, 0x71, 0xe6, 0xb7, + 0x29, 0xef, 0x79, 0x04, 0xd0, 0x7f, 0x03, 0xf8, 0x86, 0x34, 0x2c, 0x78, 0xbd, 0x17, 0xcd, 0xfd, + 0xaf, 0x89, 0x89, 0x0f, 0xa5, 0x89, 0x77, 0xd1, 0xfa, 0x31, 0x4c, 0x0c, 0x9b, 0x52, 0xf9, 0x6b, + 0xb3, 0x0e, 0x73, 0xd9, 0x4e, 0x13, 0xfd, 0x3b, 0x80, 0x67, 0xa4, 0xb1, 0x22, 0xb2, 0x7e, 0x8d, + 0x6c, 0x54, 0x0b, 0x47, 0xb4, 0x51, 0x84, 0x68, 0xf2, 0x79, 0xa0, 0x59, 0x48, 0xfe, 0x10, 0x0d, + 0x7d, 0x01, 0xe0, 0xfc, 0xfd, 0x5d, 0xea, 0xca, 0xca, 0xdc, 0xa0, 0x9e, 0xc3, 0x6c, 0x8f, 0xae, + 0x30, 0xf9, 0x4d, 0xcb, 0xe3, 0x86, 0x43, 0xfb, 0x5e, 0x21, 0xf3, 0x5d, 0xf3, 0xb1, 0x37, 0x66, + 0x75, 0xed, 0xa0, 0x88, 0x0a, 0x89, 0xf4, 0xc8, 0xe9, 0x1e, 0x97, 0xf0, 0x33, 0x48, 0x8b, 0x1f, + 0x23, 0x16, 0x29, 0x77, 0x43, 0xe5, 0x95, 0x40, 0x39, 0x17, 0xca, 0x7f, 0x02, 0xe0, 0xac, 0xdc, + 0x81, 0xb5, 0xbd, 0xc0, 0x3b, 0xd1, 0xcf, 0x6a, 0xd0, 0x77, 0x8f, 0xfb, 0x7b, 0x1d, 0x71, 0x33, + 0x44, 0xdc, 0x7d, 0x0f, 0xfa, 0x79, 0x89, 0x70, 0x06, 0x4d, 0x0b, 0x84, 0x61, 0xb2, 0x2b, 0x54, + 0x04, 0x00, 0xf4, 0x67, 0x00, 0x5e, 0x48, 0x40, 0x49, 0xfe, 0xee, 0xe7, 0xf0, 0x62, 0xbc, 0x17, + 0xa0, 0xa4, 0x8c, 0x57, 0x80, 0x95, 0xfe, 0x67, 0x70, 0x50, 0xfc, 0x19, 0x40, 0x5b, 0x7d, 0x9e, + 0xd2, 0xe2, 0x5f, 0x71, 0xe2, 0x6c, 0x16, 0x3f, 0xaf, 0x99, 0x95, 0x1a, 0xf6, 0x6a, 0xcc, 0xaf, + 0x57, 0x65, 0x31, 0x50, 0xa6, 0xd8, 0xf7, 0x68, 0x15, 0x9b, 0x36, 0x76, 0xea, 0xa4, 0x42, 0x31, + 0xdb, 0x92, 0x65, 0x43, 0x95, 0x55, 0x7c, 0x8b, 0xda, 0xc1, 0x73, 0x0c, 0xae, 0x30, 0x4b, 0x0c, + 0xde, 0x4a, 0x3f, 0x84, 0x17, 0x7b, 0xf5, 0x43, 0x22, 0xa9, 0x47, 0x8f, 0x77, 0xc7, 0xfd, 0x3e, + 0xec, 0x19, 0x3c, 0x53, 0x21, 0x16, 0xad, 0xaf, 0x10, 0x8f, 0x86, 0x32, 0x36, 0x88, 0x45, 0x91, + 0x01, 0x87, 0x82, 0x5f, 0x0e, 0x1d, 0x37, 0x89, 0x25, 0xbc, 0xd5, 0x4a, 0x62, 0x62, 0x49, 0xff, + 0x21, 0x9c, 0x2f, 0xda, 0x8c, 0xd7, 0xa8, 0x1b, 0x6a, 0x92, 0x9b, 0xd0, 0x4e, 0xe8, 0xdf, 0x4b, + 0xa4, 0xf7, 0xe3, 0x2a, 0x1e, 0x28, 0xfd, 0x6c, 0xec, 0xa0, 0xf8, 0xd3, 0x31, 0xf4, 0x35, 0x80, + 0x33, 0x45, 0x5c, 0x0a, 0xbe, 0xc1, 0x8c, 0x9d, 0xdf, 0x4f, 0xe0, 0x99, 0x6d, 0xe3, 0xc1, 0x4a, + 0xf6, 0x76, 0x60, 0x3a, 0x76, 0x5c, 0xf6, 0x8c, 0x56, 0xf8, 0x71, 0x5d, 0x96, 0x9e, 0xb2, 0x99, + 0x4d, 0x3f, 0x08, 0x4d, 0x13, 0xd4, 0x99, 0x1f, 0xc2, 0x33, 0xa5, 0x47, 0xab, 0x78, 0x29, 0xbb, + 0x52, 0x27, 0xbe, 0x47, 0xf1, 0x3d, 0xb3, 0x42, 0x6d, 0x8f, 0xa2, 0x5b, 0xc7, 0x93, 0x9c, 0x2f, + 0xd7, 0x59, 0x39, 0x6f, 0x11, 0x8f, 0x53, 0x37, 0x7f, 0x6f, 0x7d, 0x65, 0x6d, 0xe3, 0xd1, 0x5a, + 0x8e, 0xef, 0x71, 0x5d, 0x59, 0xcc, 0x2d, 0x14, 0x30, 0x9c, 0xdd, 0xcb, 0x7a, 0xcc, 0xa2, 0xd2, + 0x9a, 0xf6, 0x27, 0x34, 0x92, 0x1e, 0x6a, 0x90, 0x6a, 0x95, 0x64, 0x14, 0x90, 0x1a, 0xd4, 0xbb, + 0xaa, 0x62, 0xfd, 0x6c, 0x7c, 0x66, 0x2f, 0xbb, 0xc5, 0x58, 0xd6, 0x32, 0x2d, 0x5a, 0xe8, 0xa2, + 0x2c, 0xf4, 0xa1, 0x34, 0x1e, 0x88, 0x0a, 0x77, 0x09, 0xad, 0xc3, 0xdb, 0xdd, 0x15, 0xae, 0xef, + 0x51, 0xb7, 0x5d, 0xdd, 0xd6, 0xc8, 0x2e, 0xc5, 0x0e, 0x75, 0x2d, 0xd3, 0xf3, 0x44, 0xe8, 0x72, + 0x86, 0x49, 0xa5, 0x42, 0x3d, 0x2f, 0x51, 0x0d, 0xe7, 0x8c, 0x13, 0xd4, 0xcc, 0x23, 0xc6, 0x43, + 0xa8, 0x2c, 0x2f, 0x5e, 0x47, 0x77, 0xe0, 0xc4, 0xfa, 0xdb, 0x16, 0x26, 0x98, 0x53, 0xe2, 0x30, + 0x9e, 0x43, 0x37, 0xe0, 0xbb, 0xe9, 0x57, 0xfb, 0x12, 0xeb, 0xe9, 0x5f, 0x2a, 0x70, 0x12, 0x8e, + 0x95, 0x88, 0x67, 0x56, 0xe4, 0xfb, 0x49, 0x6a, 0x14, 0xc0, 0x7f, 0x00, 0x89, 0x27, 0x95, 0x2f, + 0xc0, 0x68, 0x2a, 0x3d, 0xf6, 0x49, 0xb6, 0xf8, 0x60, 0x3d, 0x7b, 0x97, 0x36, 0x70, 0xea, 0x8e, + 0x06, 0xe7, 0xf7, 0xb2, 0xc4, 0x22, 0x2f, 0x98, 0x9d, 0x25, 0x8e, 0x19, 0xea, 0xcc, 0x12, 0x9f, + 0xd7, 0xe4, 0xfd, 0x39, 0x9a, 0x1e, 0x66, 0x62, 0xa0, 0xdf, 0xf9, 0x0d, 0xf8, 0x66, 0x3f, 0x4a, + 0xe6, 0x9a, 0x2f, 0xa8, 0x8b, 0xbe, 0x97, 0xf9, 0x2e, 0x9c, 0x84, 0x83, 0x92, 0x6f, 0x24, 0x3d, + 0xc4, 0xd9, 0x0e, 0xb5, 0xe1, 0x15, 0x38, 0xdf, 0x26, 0x31, 0xa8, 0xe7, 0xd7, 0xf9, 0x63, 0x5e, + 0x5f, 0xb7, 0x1f, 0x89, 0x6b, 0xba, 0xea, 0xb5, 0x9a, 0x90, 0x8d, 0x0f, 0xe0, 0x2f, 0x40, 0xeb, + 0xbd, 0xe7, 0x5f, 0xc1, 0xa8, 0xa2, 0x0d, 0xea, 0x97, 0xa2, 0xe0, 0x8b, 0x45, 0x6a, 0x5e, 0xe2, + 0xc9, 0xb7, 0x84, 0x16, 0x2e, 0xf6, 0x27, 0x92, 0x10, 0x4a, 0xbf, 0x05, 0xd3, 0xc1, 0xf3, 0x11, + 0x42, 0xb7, 0x5d, 0x62, 0x73, 0x0f, 0x8b, 0x41, 0xb8, 0xa9, 0x70, 0x3e, 0x7c, 0x54, 0x42, 0x33, + 0xe1, 0xa2, 0x1c, 0x45, 0xab, 0x2b, 0x70, 0x88, 0x54, 0x2d, 0xd3, 0x46, 0x85, 0x04, 0xab, 0x5d, + 0x4d, 0x90, 0xc9, 0x18, 0x11, 0x64, 0xa6, 0xc7, 0x45, 0xf9, 0xbe, 0x2b, 0xfa, 0xb6, 0x2d, 0xe6, + 0x5a, 0x32, 0x0c, 0xcb, 0x17, 0xe1, 0x44, 0x7c, 0x63, 0x06, 0x3a, 0x1f, 0xba, 0xca, 0x57, 0xfa, + 0x3e, 0x75, 0x75, 0x92, 0xba, 0xeb, 0xf0, 0xdc, 0x47, 0xed, 0x6b, 0x33, 0x7e, 0x19, 0x1c, 0xf7, + 0x12, 0x78, 0x71, 0x01, 0xa2, 0xbd, 0x6c, 0x7c, 0x46, 0x9c, 0x16, 0x34, 0x94, 0x56, 0xca, 0xc4, + 0x7d, 0xa1, 0xc1, 0x73, 0x1d, 0x8b, 0x65, 0xf2, 0x22, 0x5b, 0x37, 0x3d, 0x8e, 0x26, 0xf4, 0x71, + 0x38, 0x94, 0x56, 0x98, 0x4d, 0x61, 0x0a, 0x83, 0xa7, 0x63, 0xad, 0x70, 0x2c, 0x0f, 0xcb, 0xfb, + 0x6c, 0xe9, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x32, 0x1a, 0x05, 0x73, 0x9f, 0x30, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1073,6 +1208,8 @@ type ABitOfEverythingServiceClient interface { // This API creates a new ABitOfEverything Create(ctx context.Context, in *ABitOfEverything, opts ...grpc.CallOption) (*ABitOfEverything, error) CreateBody(ctx context.Context, in *ABitOfEverything, opts ...grpc.CallOption) (*ABitOfEverything, error) + // Create a book. + CreateBook(ctx context.Context, in *CreateBookRequest, opts ...grpc.CallOption) (*Book, error) Lookup(ctx context.Context, in *sub2.IdMessage, opts ...grpc.CallOption) (*ABitOfEverything, error) Update(ctx context.Context, in *ABitOfEverything, opts ...grpc.CallOption) (*empty.Empty, error) UpdateV2(ctx context.Context, in *UpdateV2Request, opts ...grpc.CallOption) (*empty.Empty, error) @@ -1127,6 +1264,15 @@ func (c *aBitOfEverythingServiceClient) CreateBody(ctx context.Context, in *ABit return out, nil } +func (c *aBitOfEverythingServiceClient) CreateBook(ctx context.Context, in *CreateBookRequest, opts ...grpc.CallOption) (*Book, error) { + out := new(Book) + err := c.cc.Invoke(ctx, "/grpc.gateway.examples.internal.examplepb.ABitOfEverythingService/CreateBook", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *aBitOfEverythingServiceClient) Lookup(ctx context.Context, in *sub2.IdMessage, opts ...grpc.CallOption) (*ABitOfEverything, error) { out := new(ABitOfEverything) err := c.cc.Invoke(ctx, "/grpc.gateway.examples.internal.examplepb.ABitOfEverythingService/Lookup", in, out, opts...) @@ -1305,6 +1451,8 @@ type ABitOfEverythingServiceServer interface { // This API creates a new ABitOfEverything Create(context.Context, *ABitOfEverything) (*ABitOfEverything, error) CreateBody(context.Context, *ABitOfEverything) (*ABitOfEverything, error) + // Create a book. + CreateBook(context.Context, *CreateBookRequest) (*Book, error) Lookup(context.Context, *sub2.IdMessage) (*ABitOfEverything, error) Update(context.Context, *ABitOfEverything) (*empty.Empty, error) UpdateV2(context.Context, *UpdateV2Request) (*empty.Empty, error) @@ -1343,6 +1491,9 @@ func (*UnimplementedABitOfEverythingServiceServer) Create(ctx context.Context, r func (*UnimplementedABitOfEverythingServiceServer) CreateBody(ctx context.Context, req *ABitOfEverything) (*ABitOfEverything, error) { return nil, status.Errorf(codes.Unimplemented, "method CreateBody not implemented") } +func (*UnimplementedABitOfEverythingServiceServer) CreateBook(ctx context.Context, req *CreateBookRequest) (*Book, error) { + return nil, status.Errorf(codes.Unimplemented, "method CreateBook not implemented") +} func (*UnimplementedABitOfEverythingServiceServer) Lookup(ctx context.Context, req *sub2.IdMessage) (*ABitOfEverything, error) { return nil, status.Errorf(codes.Unimplemented, "method Lookup not implemented") } @@ -1441,6 +1592,24 @@ func _ABitOfEverythingService_CreateBody_Handler(srv interface{}, ctx context.Co return interceptor(ctx, in, info, handler) } +func _ABitOfEverythingService_CreateBook_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CreateBookRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ABitOfEverythingServiceServer).CreateBook(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/grpc.gateway.examples.internal.examplepb.ABitOfEverythingService/CreateBook", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ABitOfEverythingServiceServer).CreateBook(ctx, req.(*CreateBookRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _ABitOfEverythingService_Lookup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(sub2.IdMessage) if err := dec(in); err != nil { @@ -1795,6 +1964,10 @@ var _ABitOfEverythingService_serviceDesc = grpc.ServiceDesc{ MethodName: "CreateBody", Handler: _ABitOfEverythingService_CreateBody_Handler, }, + { + MethodName: "CreateBook", + Handler: _ABitOfEverythingService_CreateBook_Handler, + }, { MethodName: "Lookup", Handler: _ABitOfEverythingService_Lookup_Handler, diff --git a/examples/internal/proto/examplepb/a_bit_of_everything.pb.gw.go b/examples/internal/proto/examplepb/a_bit_of_everything.pb.gw.go index b601977c90a..cf6c7bcbe45 100644 --- a/examples/internal/proto/examplepb/a_bit_of_everything.pb.gw.go +++ b/examples/internal/proto/examplepb/a_bit_of_everything.pb.gw.go @@ -555,6 +555,94 @@ func local_request_ABitOfEverythingService_CreateBody_0(ctx context.Context, mar } +var ( + filter_ABitOfEverythingService_CreateBook_0 = &utilities.DoubleArray{Encoding: map[string]int{"book": 0, "parent": 1}, Base: []int{1, 1, 2, 0, 0}, Check: []int{0, 1, 1, 2, 3}} +) + +func request_ABitOfEverythingService_CreateBook_0(ctx context.Context, marshaler runtime.Marshaler, client ABitOfEverythingServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq CreateBookRequest + var metadata runtime.ServerMetadata + + newReader, berr := utilities.IOReaderFactory(req.Body) + if berr != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr) + } + if err := marshaler.NewDecoder(newReader()).Decode(&protoReq.Book); err != nil && err != io.EOF { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + var ( + val string + ok bool + err error + _ = err + ) + + val, ok = pathParams["parent"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "parent") + } + + protoReq.Parent, err = runtime.String(val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "parent", err) + } + + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_ABitOfEverythingService_CreateBook_0); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := client.CreateBook(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func local_request_ABitOfEverythingService_CreateBook_0(ctx context.Context, marshaler runtime.Marshaler, server ABitOfEverythingServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq CreateBookRequest + var metadata runtime.ServerMetadata + + newReader, berr := utilities.IOReaderFactory(req.Body) + if berr != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr) + } + if err := marshaler.NewDecoder(newReader()).Decode(&protoReq.Book); err != nil && err != io.EOF { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + var ( + val string + ok bool + err error + _ = err + ) + + val, ok = pathParams["parent"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "parent") + } + + protoReq.Parent, err = runtime.String(val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "parent", err) + } + + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_ABitOfEverythingService_CreateBook_0); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := server.CreateBook(ctx, &protoReq) + return msg, metadata, err + +} + func request_ABitOfEverythingService_Lookup_0(ctx context.Context, marshaler runtime.Marshaler, client ABitOfEverythingServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { var protoReq sub2.IdMessage var metadata runtime.ServerMetadata @@ -2279,6 +2367,26 @@ func RegisterABitOfEverythingServiceHandlerServer(ctx context.Context, mux *runt }) + mux.Handle("POST", pattern_ABitOfEverythingService_CreateBook_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := local_request_ABitOfEverythingService_CreateBook_0(rctx, inboundMarshaler, server, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_ABitOfEverythingService_CreateBook_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + mux.Handle("GET", pattern_ABitOfEverythingService_Lookup_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() @@ -2829,6 +2937,26 @@ func RegisterABitOfEverythingServiceHandlerClient(ctx context.Context, mux *runt }) + mux.Handle("POST", pattern_ABitOfEverythingService_CreateBook_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_ABitOfEverythingService_CreateBook_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_ABitOfEverythingService_CreateBook_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + mux.Handle("GET", pattern_ABitOfEverythingService_Lookup_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() @@ -3277,6 +3405,8 @@ var ( pattern_ABitOfEverythingService_CreateBody_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v1", "example", "a_bit_of_everything"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_ABitOfEverythingService_CreateBook_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 1, 0, 4, 2, 5, 2, 2, 3}, []string{"v1", "publishers", "parent", "books"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_ABitOfEverythingService_Lookup_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"v1", "example", "a_bit_of_everything", "uuid"}, "", runtime.AssumeColonVerbOpt(true))) pattern_ABitOfEverythingService_Update_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"v1", "example", "a_bit_of_everything", "uuid"}, "", runtime.AssumeColonVerbOpt(true))) @@ -3327,6 +3457,8 @@ var ( forward_ABitOfEverythingService_CreateBody_0 = runtime.ForwardResponseMessage + forward_ABitOfEverythingService_CreateBook_0 = runtime.ForwardResponseMessage + forward_ABitOfEverythingService_Lookup_0 = runtime.ForwardResponseMessage forward_ABitOfEverythingService_Update_0 = runtime.ForwardResponseMessage diff --git a/examples/internal/proto/examplepb/a_bit_of_everything.proto b/examples/internal/proto/examplepb/a_bit_of_everything.proto index d4684b63a87..5ad3f89c9cc 100644 --- a/examples/internal/proto/examplepb/a_bit_of_everything.proto +++ b/examples/internal/proto/examplepb/a_bit_of_everything.proto @@ -322,6 +322,38 @@ message UpdateV2Request { google.protobuf.FieldMask update_mask = 2; } +message Book { + // The resource name of the book. + // + // Format: `publishers/{publisher}/books/{book}` + // + // Example: `publishers/1257894000000000000/books/my-book` + string name = 1; + + // Output only. The book's ID. + string id = 2; + + // Output only. Creation time of the book. + google.protobuf.Timestamp create_time = 3; +} + +message CreateBookRequest { + // The publisher in which to create the book. + // + // Format: `publishers/{publisher}` + // + // Example: `publishers/1257894000000000000` + string parent = 1; + + // The book to create. + Book book = 2; + + // The ID to use for the book. + // + // This must start with an alphanumeric character. + string book_id = 3; +} + // ABitOfEverything service is used to validate that APIs with complicated // proto messages and URL templates are still processed correctly. service ABitOfEverythingService { @@ -348,6 +380,13 @@ service ABitOfEverythingService { body: "*" }; } + // Create a book. + rpc CreateBook(CreateBookRequest) returns (Book) { + option (google.api.http) = { + post: "/v1/{parent=publishers/*}/books" + body: "book" + }; + } rpc Lookup(sub2.IdMessage) returns (ABitOfEverything) { option (google.api.http) = { get: "/v1/example/a_bit_of_everything/{uuid}" diff --git a/examples/internal/proto/examplepb/a_bit_of_everything.swagger.json b/examples/internal/proto/examplepb/a_bit_of_everything.swagger.json index 2fdc89a5deb..dfea2540a1a 100644 --- a/examples/internal/proto/examplepb/a_bit_of_everything.swagger.json +++ b/examples/internal/proto/examplepb/a_bit_of_everything.swagger.json @@ -1801,6 +1801,64 @@ ] } }, + "/v1/{parent=publishers/*}/books": { + "post": { + "summary": "Create a book.", + "operationId": "ABitOfEverythingService_CreateBook", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/examplepbBook" + } + }, + "403": { + "description": "Returned when the user does not have permission to access the resource.", + "schema": {} + }, + "404": { + "description": "Returned when the resource does not exist.", + "schema": { + "type": "string", + "format": "string" + } + }, + "418": { + "description": "I'm a teapot.", + "schema": { + "$ref": "#/definitions/examplepbNumericEnum" + } + }, + "default": { + "description": "An unexpected error response", + "schema": { + "$ref": "#/definitions/runtimeError" + } + } + }, + "parameters": [ + { + "name": "parent", + "description": "The publisher in which to create the book.\n\nFormat: `publishers/{publisher}`\n\nExample: `publishers/1257894000000000000`", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "body", + "description": "The book to create.", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/examplepbBook" + } + } + ], + "tags": [ + "ABitOfEverythingService" + ] + } + }, "/v2/example/a_bit_of_everything/{abe.uuid}": { "put": { "operationId": "ABitOfEverythingService_UpdateV2", @@ -2776,6 +2834,26 @@ } } }, + "examplepbBook": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The resource name of the book.\n\nFormat: `publishers/{publisher}/books/{book}`\n\nExample: `publishers/1257894000000000000/books/my-book`" + }, + "id": { + "type": "string", + "description": "Output only. The book's ID.", + "readOnly": true + }, + "create_time": { + "type": "string", + "format": "date-time", + "description": "Output only. Creation time of the book.", + "readOnly": true + } + } + }, "examplepbNumericEnum": { "type": "string", "enum": [ diff --git a/examples/internal/server/a_bit_of_everything.go b/examples/internal/server/a_bit_of_everything.go index e20ebdea9a1..382c68479a2 100644 --- a/examples/internal/server/a_bit_of_everything.go +++ b/examples/internal/server/a_bit_of_everything.go @@ -65,6 +65,10 @@ func (s *_ABitOfEverythingServer) CreateBody(ctx context.Context, msg *examples. return s.Create(ctx, msg) } +func (s *_ABitOfEverythingServer) CreateBook(ctx context.Context, req *examples.CreateBookRequest) (*examples.Book, error) { + return &examples.Book{}, nil +} + func (s *_ABitOfEverythingServer) BulkCreate(stream examples.StreamService_BulkCreateServer) error { ctx := stream.Context()