From 05669255d1ee6d92ba8ab69cc8f2d130cedf9558 Mon Sep 17 00:00:00 2001 From: "Tim St. Clair" Date: Tue, 18 Oct 2016 19:03:10 -0700 Subject: [PATCH] Add ExecSync method --- pkg/kubelet/api/v1alpha1/runtime/api.pb.go | 557 +++++++++++++-------- pkg/kubelet/api/v1alpha1/runtime/api.proto | 20 + 2 files changed, 356 insertions(+), 221 deletions(-) diff --git a/pkg/kubelet/api/v1alpha1/runtime/api.pb.go b/pkg/kubelet/api/v1alpha1/runtime/api.pb.go index bc0bbdf91ad..e5128ca6a8a 100644 --- a/pkg/kubelet/api/v1alpha1/runtime/api.pb.go +++ b/pkg/kubelet/api/v1alpha1/runtime/api.pb.go @@ -76,6 +76,8 @@ It has these top-level messages: ContainerStatusResponse ExecRequest ExecResponse + ExecSyncRequest + ExecSyncResponse AttachRequest AttachResponse PortForwardRequest @@ -2026,7 +2028,7 @@ type ExecRequest struct { // Whether use tty Tty *bool `protobuf:"varint,3,opt,name=tty" json:"tty,omitempty"` // Streaming stdin - Stdin []byte `protobuf:"bytes,4,opt,name=stdin" json:"stdin,omitempty"` + Stdin *bool `protobuf:"varint,4,opt,name=stdin" json:"stdin,omitempty"` XXX_unrecognized []byte `json:"-"` } @@ -2056,11 +2058,11 @@ func (m *ExecRequest) GetTty() bool { return false } -func (m *ExecRequest) GetStdin() []byte { - if m != nil { - return m.Stdin +func (m *ExecRequest) GetStdin() bool { + if m != nil && m.Stdin != nil { + return *m.Stdin } - return nil + return false } type ExecResponse struct { @@ -2081,18 +2083,90 @@ func (m *ExecResponse) GetUrl() string { return "" } +type ExecSyncRequest struct { + // The id of the container + ContainerId *string `protobuf:"bytes,1,opt,name=container_id,json=containerId" json:"container_id,omitempty"` + // The cmd to execute + Cmd []string `protobuf:"bytes,2,rep,name=cmd" json:"cmd,omitempty"` + // Timeout in seconds to stop the command. Default: run forever. + Timeout *int64 `protobuf:"varint,3,opt,name=timeout" json:"timeout,omitempty"` + XXX_unrecognized []byte `json:"-"` +} + +func (m *ExecSyncRequest) Reset() { *m = ExecSyncRequest{} } +func (m *ExecSyncRequest) String() string { return proto.CompactTextString(m) } +func (*ExecSyncRequest) ProtoMessage() {} +func (*ExecSyncRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{51} } + +func (m *ExecSyncRequest) GetContainerId() string { + if m != nil && m.ContainerId != nil { + return *m.ContainerId + } + return "" +} + +func (m *ExecSyncRequest) GetCmd() []string { + if m != nil { + return m.Cmd + } + return nil +} + +func (m *ExecSyncRequest) GetTimeout() int64 { + if m != nil && m.Timeout != nil { + return *m.Timeout + } + return 0 +} + +type ExecSyncResponse struct { + // The captured command stdout output. + Stdout []byte `protobuf:"bytes,1,opt,name=stdout" json:"stdout,omitempty"` + // The captured command stderr output. + Stderr []byte `protobuf:"bytes,2,opt,name=stderr" json:"stderr,omitempty"` + // The exit code the command finished with. + ExitCode *int32 `protobuf:"varint,3,opt,name=exit_code,json=exitCode" json:"exit_code,omitempty"` + XXX_unrecognized []byte `json:"-"` +} + +func (m *ExecSyncResponse) Reset() { *m = ExecSyncResponse{} } +func (m *ExecSyncResponse) String() string { return proto.CompactTextString(m) } +func (*ExecSyncResponse) ProtoMessage() {} +func (*ExecSyncResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{52} } + +func (m *ExecSyncResponse) GetStdout() []byte { + if m != nil { + return m.Stdout + } + return nil +} + +func (m *ExecSyncResponse) GetStderr() []byte { + if m != nil { + return m.Stderr + } + return nil +} + +func (m *ExecSyncResponse) GetExitCode() int32 { + if m != nil && m.ExitCode != nil { + return *m.ExitCode + } + return 0 +} + type AttachRequest struct { // The id of the container ContainerId *string `protobuf:"bytes,1,opt,name=container_id,json=containerId" json:"container_id,omitempty"` // Streaming stdin - Stdin []byte `protobuf:"bytes,2,opt,name=stdin" json:"stdin,omitempty"` - XXX_unrecognized []byte `json:"-"` + Stdin *string `protobuf:"bytes,2,opt,name=stdin" json:"stdin,omitempty"` + XXX_unrecognized []byte `json:"-"` } func (m *AttachRequest) Reset() { *m = AttachRequest{} } func (m *AttachRequest) String() string { return proto.CompactTextString(m) } func (*AttachRequest) ProtoMessage() {} -func (*AttachRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{51} } +func (*AttachRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{53} } func (m *AttachRequest) GetContainerId() string { if m != nil && m.ContainerId != nil { @@ -2101,11 +2175,11 @@ func (m *AttachRequest) GetContainerId() string { return "" } -func (m *AttachRequest) GetStdin() []byte { - if m != nil { - return m.Stdin +func (m *AttachRequest) GetStdin() string { + if m != nil && m.Stdin != nil { + return *m.Stdin } - return nil + return "" } type AttachResponse struct { @@ -2117,7 +2191,7 @@ type AttachResponse struct { func (m *AttachResponse) Reset() { *m = AttachResponse{} } func (m *AttachResponse) String() string { return proto.CompactTextString(m) } func (*AttachResponse) ProtoMessage() {} -func (*AttachResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{52} } +func (*AttachResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{54} } func (m *AttachResponse) GetUrl() string { if m != nil && m.Url != nil { @@ -2137,7 +2211,7 @@ type PortForwardRequest struct { func (m *PortForwardRequest) Reset() { *m = PortForwardRequest{} } func (m *PortForwardRequest) String() string { return proto.CompactTextString(m) } func (*PortForwardRequest) ProtoMessage() {} -func (*PortForwardRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{53} } +func (*PortForwardRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{55} } func (m *PortForwardRequest) GetPodSandboxId() string { if m != nil && m.PodSandboxId != nil { @@ -2162,7 +2236,7 @@ type PortForwardResponse struct { func (m *PortForwardResponse) Reset() { *m = PortForwardResponse{} } func (m *PortForwardResponse) String() string { return proto.CompactTextString(m) } func (*PortForwardResponse) ProtoMessage() {} -func (*PortForwardResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{54} } +func (*PortForwardResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{56} } func (m *PortForwardResponse) GetUrl() string { if m != nil && m.Url != nil { @@ -2180,7 +2254,7 @@ type ImageFilter struct { func (m *ImageFilter) Reset() { *m = ImageFilter{} } func (m *ImageFilter) String() string { return proto.CompactTextString(m) } func (*ImageFilter) ProtoMessage() {} -func (*ImageFilter) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{55} } +func (*ImageFilter) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{57} } func (m *ImageFilter) GetImage() *ImageSpec { if m != nil { @@ -2198,7 +2272,7 @@ type ListImagesRequest struct { func (m *ListImagesRequest) Reset() { *m = ListImagesRequest{} } func (m *ListImagesRequest) String() string { return proto.CompactTextString(m) } func (*ListImagesRequest) ProtoMessage() {} -func (*ListImagesRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{56} } +func (*ListImagesRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{58} } func (m *ListImagesRequest) GetFilter() *ImageFilter { if m != nil { @@ -2223,7 +2297,7 @@ type Image struct { func (m *Image) Reset() { *m = Image{} } func (m *Image) String() string { return proto.CompactTextString(m) } func (*Image) ProtoMessage() {} -func (*Image) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{57} } +func (*Image) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{59} } func (m *Image) GetId() string { if m != nil && m.Id != nil { @@ -2262,7 +2336,7 @@ type ListImagesResponse struct { func (m *ListImagesResponse) Reset() { *m = ListImagesResponse{} } func (m *ListImagesResponse) String() string { return proto.CompactTextString(m) } func (*ListImagesResponse) ProtoMessage() {} -func (*ListImagesResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{58} } +func (*ListImagesResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{60} } func (m *ListImagesResponse) GetImages() []*Image { if m != nil { @@ -2280,7 +2354,7 @@ type ImageStatusRequest struct { func (m *ImageStatusRequest) Reset() { *m = ImageStatusRequest{} } func (m *ImageStatusRequest) String() string { return proto.CompactTextString(m) } func (*ImageStatusRequest) ProtoMessage() {} -func (*ImageStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{59} } +func (*ImageStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{61} } func (m *ImageStatusRequest) GetImage() *ImageSpec { if m != nil { @@ -2298,7 +2372,7 @@ type ImageStatusResponse struct { func (m *ImageStatusResponse) Reset() { *m = ImageStatusResponse{} } func (m *ImageStatusResponse) String() string { return proto.CompactTextString(m) } func (*ImageStatusResponse) ProtoMessage() {} -func (*ImageStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{60} } +func (*ImageStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{62} } func (m *ImageStatusResponse) GetImage() *Image { if m != nil { @@ -2324,7 +2398,7 @@ type AuthConfig struct { func (m *AuthConfig) Reset() { *m = AuthConfig{} } func (m *AuthConfig) String() string { return proto.CompactTextString(m) } func (*AuthConfig) ProtoMessage() {} -func (*AuthConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{61} } +func (*AuthConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{63} } func (m *AuthConfig) GetUsername() string { if m != nil && m.Username != nil { @@ -2381,7 +2455,7 @@ type PullImageRequest struct { func (m *PullImageRequest) Reset() { *m = PullImageRequest{} } func (m *PullImageRequest) String() string { return proto.CompactTextString(m) } func (*PullImageRequest) ProtoMessage() {} -func (*PullImageRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{62} } +func (*PullImageRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{64} } func (m *PullImageRequest) GetImage() *ImageSpec { if m != nil { @@ -2411,7 +2485,7 @@ type PullImageResponse struct { func (m *PullImageResponse) Reset() { *m = PullImageResponse{} } func (m *PullImageResponse) String() string { return proto.CompactTextString(m) } func (*PullImageResponse) ProtoMessage() {} -func (*PullImageResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{63} } +func (*PullImageResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{65} } type RemoveImageRequest struct { // The spec of the image @@ -2422,7 +2496,7 @@ type RemoveImageRequest struct { func (m *RemoveImageRequest) Reset() { *m = RemoveImageRequest{} } func (m *RemoveImageRequest) String() string { return proto.CompactTextString(m) } func (*RemoveImageRequest) ProtoMessage() {} -func (*RemoveImageRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{64} } +func (*RemoveImageRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{66} } func (m *RemoveImageRequest) GetImage() *ImageSpec { if m != nil { @@ -2438,7 +2512,7 @@ type RemoveImageResponse struct { func (m *RemoveImageResponse) Reset() { *m = RemoveImageResponse{} } func (m *RemoveImageResponse) String() string { return proto.CompactTextString(m) } func (*RemoveImageResponse) ProtoMessage() {} -func (*RemoveImageResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{65} } +func (*RemoveImageResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{67} } type NetworkConfig struct { // The CIDR to use for pod IP addresses @@ -2449,7 +2523,7 @@ type NetworkConfig struct { func (m *NetworkConfig) Reset() { *m = NetworkConfig{} } func (m *NetworkConfig) String() string { return proto.CompactTextString(m) } func (*NetworkConfig) ProtoMessage() {} -func (*NetworkConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{66} } +func (*NetworkConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{68} } func (m *NetworkConfig) GetPodCidr() string { if m != nil && m.PodCidr != nil { @@ -2466,7 +2540,7 @@ type RuntimeConfig struct { func (m *RuntimeConfig) Reset() { *m = RuntimeConfig{} } func (m *RuntimeConfig) String() string { return proto.CompactTextString(m) } func (*RuntimeConfig) ProtoMessage() {} -func (*RuntimeConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{67} } +func (*RuntimeConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{69} } func (m *RuntimeConfig) GetNetworkConfig() *NetworkConfig { if m != nil { @@ -2483,7 +2557,7 @@ type UpdateRuntimeConfigRequest struct { func (m *UpdateRuntimeConfigRequest) Reset() { *m = UpdateRuntimeConfigRequest{} } func (m *UpdateRuntimeConfigRequest) String() string { return proto.CompactTextString(m) } func (*UpdateRuntimeConfigRequest) ProtoMessage() {} -func (*UpdateRuntimeConfigRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{68} } +func (*UpdateRuntimeConfigRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{70} } func (m *UpdateRuntimeConfigRequest) GetRuntimeConfig() *RuntimeConfig { if m != nil { @@ -2499,7 +2573,7 @@ type UpdateRuntimeConfigResponse struct { func (m *UpdateRuntimeConfigResponse) Reset() { *m = UpdateRuntimeConfigResponse{} } func (m *UpdateRuntimeConfigResponse) String() string { return proto.CompactTextString(m) } func (*UpdateRuntimeConfigResponse) ProtoMessage() {} -func (*UpdateRuntimeConfigResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{69} } +func (*UpdateRuntimeConfigResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{71} } func init() { proto.RegisterType((*VersionRequest)(nil), "runtime.VersionRequest") @@ -2553,6 +2627,8 @@ func init() { proto.RegisterType((*ContainerStatusResponse)(nil), "runtime.ContainerStatusResponse") proto.RegisterType((*ExecRequest)(nil), "runtime.ExecRequest") proto.RegisterType((*ExecResponse)(nil), "runtime.ExecResponse") + proto.RegisterType((*ExecSyncRequest)(nil), "runtime.ExecSyncRequest") + proto.RegisterType((*ExecSyncResponse)(nil), "runtime.ExecSyncResponse") proto.RegisterType((*AttachRequest)(nil), "runtime.AttachRequest") proto.RegisterType((*AttachResponse)(nil), "runtime.AttachResponse") proto.RegisterType((*PortForwardRequest)(nil), "runtime.PortForwardRequest") @@ -2620,6 +2696,8 @@ type RuntimeServiceClient interface { ContainerStatus(ctx context.Context, in *ContainerStatusRequest, opts ...grpc.CallOption) (*ContainerStatusResponse, error) // Exec prepares a streaming endpoint to execute a command in the container. Exec(ctx context.Context, in *ExecRequest, opts ...grpc.CallOption) (*ExecResponse, error) + // ExecSync runs a command in a container synchonously. + ExecSync(ctx context.Context, in *ExecSyncRequest, opts ...grpc.CallOption) (*ExecSyncResponse, error) // Attach prepares a streaming endpoint to attach to a running container. Attach(ctx context.Context, in *AttachRequest, opts ...grpc.CallOption) (*AttachResponse, error) // PortForward prepares a streaming endpoint to forward ports from a PodSandbox. @@ -2753,6 +2831,15 @@ func (c *runtimeServiceClient) Exec(ctx context.Context, in *ExecRequest, opts . return out, nil } +func (c *runtimeServiceClient) ExecSync(ctx context.Context, in *ExecSyncRequest, opts ...grpc.CallOption) (*ExecSyncResponse, error) { + out := new(ExecSyncResponse) + err := grpc.Invoke(ctx, "/runtime.RuntimeService/ExecSync", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *runtimeServiceClient) Attach(ctx context.Context, in *AttachRequest, opts ...grpc.CallOption) (*AttachResponse, error) { out := new(AttachResponse) err := grpc.Invoke(ctx, "/runtime.RuntimeService/Attach", in, out, c.cc, opts...) @@ -2815,6 +2902,8 @@ type RuntimeServiceServer interface { ContainerStatus(context.Context, *ContainerStatusRequest) (*ContainerStatusResponse, error) // Exec prepares a streaming endpoint to execute a command in the container. Exec(context.Context, *ExecRequest) (*ExecResponse, error) + // ExecSync runs a command in a container synchonously. + ExecSync(context.Context, *ExecSyncRequest) (*ExecSyncResponse, error) // Attach prepares a streaming endpoint to attach to a running container. Attach(context.Context, *AttachRequest) (*AttachResponse, error) // PortForward prepares a streaming endpoint to forward ports from a PodSandbox. @@ -3061,6 +3150,24 @@ func _RuntimeService_Exec_Handler(srv interface{}, ctx context.Context, dec func return interceptor(ctx, in, info, handler) } +func _RuntimeService_ExecSync_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ExecSyncRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RuntimeServiceServer).ExecSync(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/runtime.RuntimeService/ExecSync", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RuntimeServiceServer).ExecSync(ctx, req.(*ExecSyncRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _RuntimeService_Attach_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(AttachRequest) if err := dec(in); err != nil { @@ -3171,6 +3278,10 @@ var _RuntimeService_serviceDesc = grpc.ServiceDesc{ MethodName: "Exec", Handler: _RuntimeService_Exec_Handler, }, + { + MethodName: "ExecSync", + Handler: _RuntimeService_ExecSync_Handler, + }, { MethodName: "Attach", Handler: _RuntimeService_Attach_Handler, @@ -3364,195 +3475,199 @@ var _ImageService_serviceDesc = grpc.ServiceDesc{ } var fileDescriptorApi = []byte{ - // 3038 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xcc, 0x1a, 0x4d, 0x73, 0xdb, 0xc6, - 0x35, 0x24, 0x45, 0x8a, 0x7c, 0x14, 0x29, 0x7a, 0x25, 0x4b, 0x0c, 0x15, 0xdb, 0x32, 0x92, 0x34, - 0x89, 0x92, 0x68, 0x12, 0xb6, 0x4d, 0x9a, 0x2f, 0x27, 0x8a, 0xa4, 0xa4, 0x8a, 0x6d, 0x5a, 0x05, - 0xed, 0x34, 0x99, 0x1c, 0x30, 0x30, 0x01, 0x49, 0xb0, 0x49, 0x00, 0x01, 0x40, 0xc5, 0xea, 0xb5, - 0x97, 0x1e, 0x7a, 0xe8, 0xb5, 0xb7, 0x1e, 0x3a, 0xd3, 0x99, 0xf6, 0xd6, 0x99, 0xce, 0xf4, 0x3f, - 0x74, 0xfa, 0x43, 0xfa, 0x0b, 0xda, 0x63, 0xdf, 0x7e, 0x60, 0xb1, 0xf8, 0x52, 0x24, 0x77, 0xa6, - 0xf1, 0x0d, 0xfb, 0xf6, 0xed, 0xdb, 0xb7, 0xef, 0x6b, 0xdf, 0x7b, 0x0b, 0x68, 0x99, 0xbe, 0xb3, - 0xed, 0x07, 0x5e, 0xe4, 0x91, 0xc5, 0x60, 0xee, 0x46, 0xce, 0xcc, 0xd6, 0xb6, 0xa0, 0xfb, 0xa5, - 0x1d, 0x84, 0x8e, 0xe7, 0xea, 0xf6, 0xb7, 0x73, 0x3b, 0x8c, 0x48, 0x1f, 0x16, 0x4f, 0x39, 0xa4, - 0x5f, 0xd9, 0xac, 0xbc, 0xda, 0xd2, 0xe3, 0xa1, 0xf6, 0xa7, 0x0a, 0x2c, 0x4b, 0xe4, 0xd0, 0xf7, - 0xdc, 0xd0, 0x2e, 0xc7, 0x26, 0x37, 0x61, 0x49, 0x6c, 0x62, 0xb8, 0xe6, 0xcc, 0xee, 0x57, 0xd9, - 0x74, 0x5b, 0xc0, 0x46, 0x08, 0x22, 0xaf, 0xc0, 0x72, 0x8c, 0x12, 0x13, 0xa9, 0x31, 0xac, 0xae, - 0x00, 0x8b, 0xdd, 0xc8, 0x36, 0xac, 0xc4, 0x88, 0x78, 0x06, 0x89, 0xbc, 0xc0, 0x90, 0xaf, 0x88, - 0xa9, 0x1d, 0xdf, 0x11, 0xf8, 0xda, 0x37, 0xd0, 0xda, 0x1b, 0x8d, 0x77, 0x3d, 0xf7, 0xc8, 0x39, - 0xa6, 0x2c, 0x86, 0x76, 0x40, 0xd7, 0x20, 0x8b, 0x35, 0xca, 0xa2, 0x18, 0x92, 0x01, 0x34, 0x43, - 0xdb, 0x0c, 0x26, 0x27, 0x76, 0x88, 0xec, 0xd1, 0x29, 0x39, 0xa6, 0xab, 0x3c, 0x3f, 0x42, 0x62, - 0x21, 0xf2, 0xc4, 0x56, 0x89, 0xa1, 0xf6, 0xfb, 0x0a, 0xb4, 0x0f, 0xbd, 0x20, 0xba, 0x6b, 0xfa, - 0xbe, 0xe3, 0x1e, 0x93, 0x37, 0xa1, 0xc9, 0x84, 0x3a, 0xf1, 0xa6, 0x4c, 0x06, 0xdd, 0xe1, 0x95, - 0x6d, 0xc1, 0xd2, 0xf6, 0xa1, 0x98, 0xd0, 0x25, 0x0a, 0x79, 0x19, 0xba, 0x13, 0xcf, 0x8d, 0x4c, - 0xc7, 0xb5, 0x03, 0xc3, 0x47, 0x3a, 0x4c, 0x32, 0x75, 0xbd, 0x23, 0xa1, 0x94, 0x38, 0xd9, 0x80, - 0xd6, 0x89, 0x17, 0x46, 0x1c, 0xa3, 0xc6, 0x30, 0x9a, 0x14, 0xc0, 0x26, 0xd7, 0x61, 0x91, 0x4d, - 0x3a, 0xbe, 0x90, 0x41, 0x83, 0x0e, 0x0f, 0x7c, 0xed, 0x77, 0x15, 0xa8, 0xdf, 0xf5, 0x70, 0xf3, - 0xcc, 0x36, 0x66, 0x74, 0x22, 0xf4, 0xa3, 0x6c, 0x83, 0xc0, 0x64, 0x1b, 0x8a, 0xc1, 0x55, 0xc4, - 0xb7, 0xa1, 0x93, 0x28, 0x9f, 0xc0, 0x36, 0x2d, 0xcf, 0x9d, 0x9e, 0x31, 0x16, 0x9a, 0xba, 0x1c, - 0x53, 0xdd, 0x85, 0xf6, 0xd4, 0x71, 0xe7, 0x4f, 0x8c, 0xc0, 0x9e, 0x9a, 0x0f, 0xed, 0x29, 0x63, - 0xa5, 0xa9, 0x77, 0x05, 0x58, 0xe7, 0x50, 0xed, 0x11, 0x2c, 0x53, 0x65, 0x87, 0xbe, 0x39, 0xb1, - 0xef, 0x31, 0x11, 0x52, 0xd3, 0x60, 0x9b, 0xba, 0x76, 0xf4, 0x9d, 0x17, 0x3c, 0x66, 0x9c, 0x35, - 0xf5, 0x36, 0x85, 0x8d, 0x38, 0x88, 0x3c, 0x0f, 0x4d, 0xce, 0x97, 0x63, 0x31, 0xb6, 0x9a, 0x3a, - 0x3b, 0xf1, 0xa1, 0x63, 0xc9, 0x29, 0xc7, 0x9f, 0x08, 0xae, 0x16, 0xf9, 0xe9, 0x27, 0xda, 0xaf, - 0x2b, 0x70, 0xf5, 0x0e, 0xdd, 0xfc, 0xd0, 0xb3, 0xc6, 0xa6, 0x6b, 0x3d, 0xf4, 0x9e, 0x08, 0x23, - 0x78, 0x11, 0x3a, 0x93, 0xe3, 0xc0, 0x9b, 0xfb, 0x78, 0xd2, 0xc0, 0x76, 0x23, 0x21, 0x8d, 0x25, - 0x0e, 0x3c, 0x64, 0x30, 0xb2, 0x0f, 0x57, 0xdc, 0x98, 0x55, 0x23, 0xd6, 0x3e, 0xdd, 0xbd, 0x3d, - 0xec, 0x4b, 0x95, 0x66, 0x0e, 0xa3, 0xf7, 0xdc, 0x34, 0x20, 0xd4, 0x02, 0x20, 0xc9, 0xfe, 0x77, - 0xed, 0xc8, 0xb4, 0xcc, 0xc8, 0x24, 0x04, 0x16, 0x98, 0x1f, 0xf0, 0x8d, 0xd9, 0x37, 0xe9, 0x41, - 0x6d, 0x2e, 0x0e, 0xd8, 0xd2, 0xe9, 0x27, 0x79, 0x01, 0x5a, 0x92, 0x9e, 0x70, 0x86, 0x04, 0x40, - 0x8d, 0xd2, 0x8c, 0x22, 0x7b, 0xe6, 0x47, 0x4c, 0xd8, 0x1d, 0x3d, 0x1e, 0x6a, 0x7f, 0x5f, 0x80, - 0x5e, 0xee, 0xd0, 0xef, 0x42, 0x73, 0x26, 0xb6, 0x67, 0xdb, 0xb6, 0x87, 0x1b, 0x89, 0x65, 0xe6, - 0x38, 0xd4, 0x25, 0x32, 0x55, 0x3c, 0x15, 0xa9, 0xe2, 0xb7, 0x72, 0x4c, 0x25, 0x39, 0xf5, 0x8e, - 0x0d, 0xcb, 0x09, 0xec, 0x49, 0xe4, 0x05, 0x67, 0x82, 0xcb, 0x25, 0x04, 0xee, 0xc5, 0x30, 0xf2, - 0x36, 0x80, 0xe5, 0x86, 0xc6, 0x84, 0xf1, 0xc1, 0x78, 0x6d, 0x0f, 0x89, 0xdc, 0x5b, 0xfa, 0xa6, - 0xde, 0x42, 0x2c, 0xc1, 0xec, 0x7b, 0xd0, 0xa1, 0xb6, 0x6e, 0xcc, 0xb8, 0x5b, 0x85, 0xfd, 0x3a, - 0xba, 0x5d, 0x7b, 0xb8, 0xaa, 0x70, 0x2c, 0x7d, 0x4e, 0x5f, 0xf2, 0x93, 0x41, 0x48, 0x3e, 0x82, - 0x06, 0xb3, 0xb5, 0xb0, 0xdf, 0x60, 0x6b, 0x5e, 0x2e, 0x38, 0x25, 0xdf, 0x65, 0xfb, 0x0e, 0xc3, - 0xdb, 0x77, 0xa3, 0xe0, 0x4c, 0x17, 0x8b, 0xc8, 0x1d, 0x68, 0x9b, 0xae, 0xeb, 0x45, 0x26, 0x57, - 0xf8, 0x22, 0xa3, 0xb1, 0x55, 0x4e, 0x63, 0x27, 0x41, 0xe6, 0x84, 0xd4, 0xe5, 0xe4, 0x27, 0x50, - 0x67, 0xf6, 0xdf, 0x6f, 0xb2, 0x53, 0x5f, 0x97, 0x74, 0x0a, 0x0d, 0x53, 0xe7, 0xc8, 0x83, 0xf7, - 0xa0, 0xad, 0xb0, 0x46, 0x0d, 0xe3, 0xb1, 0x7d, 0x26, 0x6c, 0x85, 0x7e, 0x92, 0x55, 0xa8, 0x9f, - 0x9a, 0xd3, 0x79, 0xac, 0x0f, 0x3e, 0x78, 0xbf, 0xfa, 0xb3, 0xca, 0xe0, 0x16, 0xf4, 0xb2, 0x1c, - 0x5d, 0x66, 0xbd, 0x76, 0x00, 0xab, 0xfa, 0xdc, 0x4d, 0x18, 0x8b, 0x2f, 0x82, 0xb7, 0xa1, 0x21, - 0xf4, 0xc7, 0x6d, 0xe7, 0xf9, 0x52, 0x89, 0xe8, 0x02, 0x51, 0xfb, 0x08, 0xae, 0x66, 0x48, 0x89, - 0x6b, 0xe2, 0x25, 0xe8, 0xfa, 0x9e, 0x65, 0x84, 0x1c, 0x6c, 0xa0, 0xcd, 0x0b, 0xff, 0xf3, 0x25, - 0xee, 0x81, 0x45, 0x97, 0x8f, 0x23, 0xcf, 0xcf, 0xb3, 0x72, 0xb1, 0xe5, 0x7d, 0x58, 0xcb, 0x2e, - 0xe7, 0xdb, 0x6b, 0x1f, 0xc3, 0xba, 0x6e, 0xcf, 0xbc, 0x53, 0xfb, 0x69, 0x49, 0x0f, 0xa0, 0x9f, - 0x27, 0x90, 0x10, 0x4f, 0xa0, 0x63, 0x54, 0xc3, 0x3c, 0xbc, 0x1c, 0xf1, 0xd7, 0x54, 0x02, 0x22, - 0x00, 0x72, 0x3a, 0xa4, 0x0b, 0x55, 0x8c, 0xf1, 0x7c, 0x11, 0x7e, 0x69, 0x5f, 0x43, 0x6b, 0xa4, - 0x46, 0x03, 0x35, 0x82, 0xe2, 0x15, 0x25, 0x86, 0x64, 0x98, 0x5c, 0x5e, 0xdf, 0x17, 0xbe, 0xe4, - 0xb5, 0x76, 0x3b, 0x17, 0x3a, 0x05, 0x0f, 0x43, 0x00, 0x19, 0x81, 0x42, 0x61, 0x0b, 0x24, 0x4f, - 0x4f, 0x57, 0xb0, 0xb4, 0x3f, 0xa6, 0xc2, 0x91, 0x72, 0x18, 0x4b, 0x1e, 0xc6, 0x4a, 0x85, 0xa7, - 0xea, 0x65, 0xc2, 0xd3, 0x36, 0xd4, 0x43, 0x24, 0xc9, 0x03, 0x64, 0x57, 0x39, 0x9c, 0x58, 0xf5, - 0x29, 0xdf, 0xd2, 0xd6, 0x39, 0x1a, 0xb9, 0x06, 0x30, 0xc1, 0x8b, 0x2b, 0xb2, 0x2d, 0xc3, 0xe4, - 0x91, 0xb3, 0xa6, 0xb7, 0x04, 0x64, 0x27, 0x22, 0xef, 0x27, 0x72, 0xac, 0x33, 0x36, 0x36, 0x0b, - 0xd8, 0x48, 0xe9, 0x25, 0x91, 0xb4, 0xf4, 0xf6, 0xc6, 0xf9, 0xde, 0x2e, 0xd6, 0x71, 0x64, 0x25, - 0x60, 0x2d, 0x96, 0x06, 0x2c, 0xbe, 0xe2, 0x22, 0x01, 0xab, 0x59, 0x1a, 0xb0, 0x04, 0x8d, 0x73, - 0x03, 0xd6, 0x0f, 0x19, 0x7a, 0xee, 0x42, 0x3f, 0xef, 0x3a, 0x22, 0x64, 0x60, 0xf8, 0x09, 0x19, - 0xe4, 0x9c, 0xf0, 0x23, 0x96, 0x08, 0x44, 0xed, 0x5f, 0x15, 0xd5, 0xea, 0x3e, 0x73, 0xa6, 0x91, - 0x1d, 0xe4, 0xac, 0x4e, 0x1a, 0x4f, 0xf5, 0x62, 0xc6, 0x33, 0x86, 0x2e, 0x13, 0xbb, 0x81, 0x79, - 0x0d, 0xbb, 0xdd, 0x58, 0x3e, 0xd8, 0x1e, 0xbe, 0x51, 0xc0, 0x0f, 0xdf, 0x92, 0xeb, 0x6c, 0x2c, - 0xd0, 0xb9, 0xc4, 0x3b, 0x53, 0x15, 0x36, 0xf8, 0x04, 0x48, 0x1e, 0xe9, 0x52, 0xa2, 0xfb, 0x82, - 0xba, 0x2b, 0x4d, 0x07, 0x0b, 0xc2, 0xf6, 0x11, 0x63, 0xe3, 0x1c, 0xb9, 0x71, 0x3e, 0x75, 0x81, - 0xa8, 0xfd, 0xa1, 0x06, 0x90, 0x4c, 0x3e, 0xb3, 0x7e, 0xfa, 0xae, 0xf4, 0x1a, 0x9e, 0x1a, 0xdc, - 0x28, 0xe0, 0xa2, 0xd0, 0x5f, 0x3e, 0x4b, 0xfb, 0x0b, 0x4f, 0x12, 0x5e, 0x2a, 0x5a, 0xfd, 0xcc, - 0x7a, 0xca, 0x2e, 0xac, 0x65, 0xd5, 0x2d, 0xfc, 0xe4, 0x35, 0xa8, 0x3b, 0x98, 0x03, 0xf2, 0xe2, - 0xa6, 0x3d, 0x5c, 0x29, 0x38, 0x96, 0xce, 0x31, 0xb4, 0x9b, 0xd0, 0x3a, 0x98, 0x99, 0xc7, 0xf6, - 0xd8, 0xb7, 0x27, 0x74, 0x2f, 0x87, 0x0e, 0xc4, 0xfe, 0x7c, 0xa0, 0x0d, 0xa1, 0x79, 0xdb, 0x3e, - 0xfb, 0x92, 0xee, 0x7b, 0x51, 0xfe, 0xb4, 0x7f, 0x54, 0x60, 0x9d, 0x85, 0xbb, 0xdd, 0xb8, 0xb4, - 0x40, 0xe6, 0xbc, 0x79, 0x80, 0x17, 0x01, 0x53, 0xa9, 0x3f, 0x37, 0x7c, 0x3b, 0x70, 0x3c, 0x6e, - 0x53, 0x54, 0xa5, 0xfe, 0xfc, 0x90, 0x01, 0x68, 0xf9, 0x41, 0xa7, 0xbf, 0x9d, 0x7b, 0xc2, 0xb6, - 0x6a, 0x7a, 0x13, 0x01, 0xbf, 0xa0, 0xe3, 0x78, 0x6d, 0x78, 0x82, 0xd9, 0x79, 0xc8, 0x6c, 0x88, - 0xaf, 0x1d, 0x33, 0x00, 0x1a, 0xfa, 0xd5, 0x19, 0xde, 0xc9, 0xc1, 0x99, 0x31, 0x75, 0x66, 0x0e, - 0xd6, 0x03, 0xae, 0xf1, 0xf0, 0x2c, 0x42, 0x4c, 0x6e, 0x38, 0x84, 0x4f, 0xde, 0xa1, 0x73, 0x07, - 0xee, 0xa7, 0x74, 0x86, 0x68, 0xd0, 0xf1, 0xbc, 0x99, 0x11, 0x4e, 0xbc, 0x00, 0x2b, 0x49, 0xeb, - 0x11, 0x8b, 0xf7, 0x35, 0xbd, 0x8d, 0xc0, 0x31, 0x85, 0xed, 0x58, 0x8f, 0x34, 0x13, 0x3a, 0xe3, - 0x7d, 0x76, 0x1c, 0x51, 0xad, 0x60, 0xe2, 0x3e, 0x0f, 0x85, 0x3b, 0x61, 0xe2, 0x4e, 0xbf, 0x29, - 0x2c, 0xf0, 0xa6, 0xb1, 0x1c, 0xd8, 0x37, 0x85, 0x45, 0x67, 0x7e, 0x9c, 0xb5, 0xb3, 0x6f, 0x2a, - 0xb0, 0xa9, 0x7d, 0x2a, 0x6a, 0x23, 0x14, 0x18, 0x1b, 0x68, 0x16, 0xc0, 0xae, 0xe9, 0x9b, 0x0f, - 0x9d, 0xa9, 0x13, 0x9d, 0xa1, 0x02, 0x7b, 0xa6, 0x65, 0x19, 0x93, 0x18, 0xe2, 0xd8, 0x71, 0xa1, - 0xba, 0x8c, 0xf0, 0x5d, 0x05, 0x4c, 0x5e, 0x87, 0x2b, 0x56, 0xe0, 0xf9, 0x69, 0x5c, 0x5e, 0xb9, - 0xf6, 0xe8, 0x84, 0x8a, 0xac, 0xfd, 0xa7, 0x02, 0xab, 0x69, 0xb5, 0x88, 0x4c, 0xfb, 0x16, 0xb4, - 0x82, 0x58, 0x41, 0x22, 0x48, 0x6c, 0xa6, 0xef, 0xad, 0xbc, 0x22, 0xf5, 0x64, 0x09, 0xfa, 0xe1, - 0x52, 0x86, 0x81, 0x4a, 0xca, 0xf0, 0x92, 0xb3, 0xe9, 0x29, 0x44, 0xf2, 0x71, 0x52, 0x33, 0x26, - 0xb5, 0x35, 0x5d, 0xbb, 0x26, 0xd7, 0xa6, 0x44, 0x2f, 0x6b, 0x49, 0x51, 0x59, 0x91, 0x1f, 0x09, - 0x55, 0x64, 0x0b, 0x0a, 0xb6, 0xe6, 0x01, 0xce, 0x70, 0xf5, 0x68, 0x5f, 0x41, 0x4b, 0x82, 0xe2, - 0x22, 0x8b, 0xdb, 0x1e, 0x2b, 0xb2, 0x10, 0x72, 0x2c, 0xca, 0x2e, 0x84, 0xe0, 0x27, 0xad, 0x66, - 0x51, 0xd6, 0x0e, 0xdd, 0xc5, 0x9c, 0x1a, 0x08, 0xe1, 0x55, 0x7f, 0x4d, 0xef, 0x26, 0xe0, 0xcf, - 0x11, 0xaa, 0xed, 0xc0, 0x15, 0x29, 0x9c, 0x73, 0x4b, 0x3b, 0xa5, 0x54, 0xab, 0xa6, 0x4b, 0xb5, - 0x7f, 0xd7, 0x61, 0x39, 0xab, 0x92, 0x77, 0x72, 0x95, 0xda, 0x20, 0x11, 0x67, 0x76, 0x3f, 0x25, - 0xc2, 0xbe, 0x1a, 0x3b, 0x71, 0x35, 0x23, 0x11, 0xe9, 0xe7, 0xc2, 0xb1, 0x29, 0x3f, 0x13, 0x6f, - 0x36, 0xc3, 0x80, 0x10, 0xf7, 0x33, 0xc4, 0x90, 0x72, 0x6f, 0x06, 0xc7, 0xd4, 0x6d, 0x28, 0x98, - 0x7d, 0x93, 0x1b, 0xd0, 0xa6, 0xe9, 0x0d, 0x56, 0x57, 0xb4, 0xd0, 0x63, 0x6e, 0xd2, 0xd2, 0x41, - 0x80, 0xb0, 0xcc, 0x23, 0x2f, 0xc3, 0x82, 0xed, 0x9e, 0xc6, 0xb1, 0x34, 0x69, 0x78, 0xc4, 0xc1, - 0x43, 0x67, 0xd3, 0xa8, 0xb0, 0xc6, 0x8c, 0xb6, 0x23, 0xe2, 0x44, 0xa7, 0x2b, 0x11, 0x59, 0x97, - 0x42, 0x17, 0xb3, 0xe4, 0x43, 0x19, 0xda, 0x9b, 0x99, 0xe0, 0x9c, 0x91, 0x54, 0x61, 0x7c, 0xbf, - 0x9d, 0x8e, 0xef, 0x2d, 0x46, 0xe2, 0xb5, 0x52, 0x12, 0xe7, 0xd7, 0x6f, 0xd7, 0x01, 0xfc, 0xc0, - 0x39, 0x75, 0xa6, 0xf6, 0xb1, 0x6d, 0xf5, 0x81, 0x35, 0x18, 0x14, 0x08, 0x6b, 0x5a, 0x89, 0x26, - 0x88, 0x11, 0x78, 0x5e, 0x74, 0x14, 0xf6, 0xdb, 0xbc, 0xf1, 0x11, 0x83, 0x75, 0x06, 0xa5, 0x7d, - 0x0a, 0x5a, 0x28, 0xb3, 0xce, 0xca, 0x12, 0xcf, 0xcf, 0x71, 0xcc, 0x1a, 0x2b, 0xab, 0xf4, 0x62, - 0xb4, 0x1c, 0xb7, 0xdf, 0x61, 0x2b, 0xf9, 0x80, 0xc6, 0x3b, 0xf6, 0x61, 0x78, 0x2e, 0x16, 0xff, - 0x5d, 0x36, 0xd5, 0x62, 0x90, 0x7b, 0x08, 0xa0, 0x56, 0x1b, 0x45, 0x67, 0xfd, 0x65, 0x06, 0xa7, - 0x9f, 0xe4, 0xc7, 0x71, 0xf2, 0xd9, 0x63, 0xda, 0xbf, 0x56, 0xe2, 0xc4, 0xcf, 0x4c, 0xa5, 0xf9, - 0xd7, 0x0a, 0xac, 0xed, 0xb2, 0xeb, 0x5c, 0x09, 0x30, 0x97, 0xa8, 0x94, 0xc8, 0x5b, 0xb2, 0x24, - 0xcd, 0x96, 0x35, 0xd9, 0xc3, 0x0a, 0x3c, 0xf2, 0x09, 0x74, 0x63, 0x9a, 0x62, 0x65, 0xed, 0xfb, - 0x8a, 0xd9, 0x4e, 0xa8, 0x0e, 0xb5, 0x0f, 0x61, 0x3d, 0xc7, 0xb3, 0xb8, 0x7a, 0x6f, 0x62, 0x20, - 0x94, 0x3d, 0x36, 0xc9, 0x72, 0x5b, 0xc2, 0xb0, 0xb6, 0x7b, 0x9f, 0x96, 0xb4, 0x66, 0x10, 0xe5, - 0x0e, 0x7c, 0x81, 0xb5, 0xac, 0x9e, 0x4d, 0xaf, 0x15, 0x25, 0xe7, 0x18, 0x56, 0x69, 0xa5, 0xfb, - 0x14, 0x44, 0x69, 0x1c, 0xa0, 0xc7, 0xf6, 0xe6, 0x91, 0x88, 0x7f, 0xf1, 0x50, 0x5b, 0xe7, 0xd5, - 0x77, 0x7e, 0xb7, 0x0f, 0x60, 0x8d, 0x17, 0xbf, 0x4f, 0x73, 0x88, 0xe7, 0xe3, 0xd2, 0x3b, 0x4f, - 0xf7, 0xb7, 0x55, 0x25, 0x10, 0x96, 0x64, 0xeb, 0x6f, 0xa6, 0xb3, 0xf5, 0xf5, 0xbc, 0xc2, 0x53, - 0x19, 0x64, 0xde, 0x8c, 0x6a, 0x05, 0x66, 0xa4, 0xe7, 0x52, 0xfa, 0x05, 0x16, 0x32, 0x5e, 0xcf, - 0x53, 0xff, 0x3f, 0x66, 0xf4, 0x07, 0x3c, 0xa3, 0x97, 0x5b, 0xcb, 0x2e, 0xc2, 0x5b, 0x99, 0x8c, - 0xbe, 0x5f, 0xc6, 0xa6, 0x4c, 0xe8, 0x7f, 0xb3, 0x00, 0x2d, 0x39, 0x97, 0x93, 0x69, 0x5e, 0x48, - 0xd5, 0x02, 0x21, 0xa9, 0x57, 0x52, 0xed, 0x69, 0xae, 0xa4, 0x85, 0xef, 0xbb, 0x92, 0x30, 0xf9, - 0x63, 0x1f, 0x46, 0x60, 0x1f, 0x89, 0x2b, 0xa6, 0xc9, 0x00, 0xba, 0x7d, 0x94, 0x28, 0xbe, 0x71, - 0x21, 0xc5, 0xa7, 0x4b, 0x87, 0xc5, 0x6c, 0xe9, 0xf0, 0x4e, 0xe6, 0x7e, 0xb9, 0x9e, 0x27, 0x57, - 0x78, 0xb3, 0xec, 0x17, 0xdd, 0x2c, 0x2f, 0x16, 0x2c, 0x7e, 0x66, 0x0b, 0x87, 0x3b, 0xbc, 0x70, - 0x50, 0xad, 0x4a, 0x44, 0xaf, 0x21, 0x8a, 0x4c, 0x42, 0x45, 0xf5, 0x40, 0xf2, 0x47, 0xd3, 0x15, - 0x2c, 0x1a, 0x0a, 0x52, 0xf2, 0x4f, 0x5a, 0x5d, 0x17, 0x08, 0x05, 0x7f, 0x51, 0x13, 0x9f, 0x92, - 0x9e, 0xd0, 0x3b, 0xb9, 0x5a, 0xf3, 0x62, 0x56, 0xf7, 0x66, 0xba, 0xd4, 0xbc, 0x9c, 0xb9, 0xe4, - 0x2a, 0x4d, 0x76, 0x13, 0x63, 0xe4, 0xe5, 0xd3, 0xbc, 0x48, 0x68, 0x09, 0x08, 0x4e, 0x63, 0x76, - 0x74, 0xe4, 0xb8, 0x4e, 0x78, 0xc2, 0xe7, 0x1b, 0x6c, 0x1e, 0x62, 0xd0, 0x0e, 0x7b, 0xbc, 0xb1, - 0x9f, 0x60, 0x49, 0x32, 0xf1, 0x2c, 0x9b, 0x19, 0x63, 0x5d, 0x6f, 0x52, 0xc0, 0x2e, 0x8e, 0x13, - 0x07, 0x69, 0x5e, 0xca, 0x41, 0x5a, 0x19, 0x07, 0x59, 0x83, 0x06, 0xf2, 0x1b, 0x7a, 0x2e, 0xcb, - 0x51, 0x5a, 0xba, 0x18, 0xd1, 0x00, 0x3f, 0xb3, 0xc3, 0x90, 0x6e, 0xd0, 0xe6, 0x59, 0x87, 0x18, - 0x2a, 0x49, 0xd6, 0x52, 0x59, 0x92, 0x75, 0x4e, 0xd3, 0x29, 0x93, 0x64, 0x75, 0xca, 0x92, 0xac, - 0x8b, 0xf4, 0x9c, 0x94, 0xbc, 0xb0, 0x7b, 0x5e, 0x5e, 0xf8, 0x43, 0x3a, 0xce, 0x6d, 0xbc, 0xf7, - 0xb3, 0xa6, 0x2e, 0x3c, 0xe7, 0xad, 0x4c, 0x6b, 0xaa, 0x5f, 0x26, 0x05, 0xd9, 0x99, 0x7a, 0x04, - 0xed, 0xfd, 0x27, 0xa8, 0xd8, 0x8b, 0xdf, 0xd3, 0xc8, 0xea, 0x64, 0x66, 0x89, 0xe2, 0x8e, 0x7e, - 0xc6, 0xf9, 0x5f, 0x2d, 0xc9, 0xff, 0x64, 0x1a, 0x49, 0x0d, 0x78, 0x49, 0xa4, 0x91, 0xda, 0x26, - 0x2c, 0xf1, 0xbd, 0x04, 0xb7, 0xb4, 0xfe, 0x09, 0xa6, 0xf1, 0xa1, 0xf1, 0x53, 0xfb, 0x39, 0x74, - 0x76, 0xa2, 0xc8, 0x9c, 0x9c, 0x5c, 0x82, 0x1f, 0xb9, 0x57, 0x55, 0xdd, 0x4b, 0x83, 0x6e, 0x4c, - 0xa9, 0x74, 0xb7, 0x11, 0x7d, 0x0e, 0x0b, 0xa2, 0xcf, 0xbc, 0xe0, 0x3b, 0x33, 0xb0, 0x2e, 0x97, - 0xf0, 0x61, 0x6d, 0x22, 0x9e, 0x48, 0x6b, 0xe8, 0x43, 0xec, 0x5b, 0x7b, 0x05, 0x56, 0x52, 0xf4, - 0x4a, 0x37, 0x7e, 0x17, 0xda, 0xcc, 0xa5, 0x44, 0x6a, 0xf1, 0xaa, 0xda, 0xf0, 0x38, 0xcf, 0xef, - 0x68, 0x91, 0x47, 0x63, 0x26, 0x83, 0xcb, 0x00, 0xf7, 0x46, 0xe6, 0x16, 0x5e, 0x4d, 0xaf, 0xcf, - 0xdc, 0xc0, 0x8f, 0xa1, 0xce, 0xc0, 0xb9, 0x00, 0xb7, 0x41, 0x8b, 0x6f, 0xdf, 0x33, 0x22, 0xf3, - 0x58, 0x3e, 0x3a, 0x53, 0xc0, 0x7d, 0x1c, 0xb3, 0x37, 0x73, 0x3a, 0x69, 0x39, 0xb8, 0x71, 0x14, - 0xbf, 0x3c, 0xb7, 0x29, 0x6c, 0x8f, 0x83, 0xa8, 0x44, 0x42, 0xe7, 0x57, 0xfc, 0x76, 0x5d, 0xd0, - 0xd9, 0x37, 0xa6, 0xa8, 0x44, 0xe5, 0x57, 0x08, 0x04, 0x7d, 0x8c, 0x1d, 0x27, 0x8e, 0xed, 0xdd, - 0x34, 0xc3, 0xba, 0x98, 0xd5, 0x6e, 0x01, 0xe1, 0x12, 0x48, 0xc5, 0xf3, 0x8b, 0x4b, 0xeb, 0x03, - 0x58, 0x49, 0xad, 0x97, 0x4f, 0x3e, 0x29, 0x02, 0xd9, 0xdd, 0xc5, 0xe2, 0x7f, 0x56, 0x00, 0x76, - 0xe6, 0xd1, 0x89, 0xa8, 0x83, 0x07, 0xd0, 0xa4, 0x05, 0xbc, 0x52, 0x4d, 0xcb, 0x31, 0x9d, 0xf3, - 0xcd, 0x30, 0xc4, 0x22, 0x34, 0x4e, 0x58, 0xe4, 0x98, 0xd5, 0xb0, 0x48, 0x25, 0xee, 0xbd, 0xd0, - 0x6f, 0xfa, 0x02, 0xce, 0x1f, 0xfa, 0x0d, 0xac, 0xe1, 0x03, 0x8c, 0x81, 0xa2, 0x09, 0xd3, 0xe1, - 0xd0, 0x1d, 0x0e, 0xa4, 0x68, 0x8e, 0x65, 0x23, 0x6b, 0xd1, 0x99, 0x11, 0x79, 0x8f, 0x6d, 0x57, - 0xa4, 0x22, 0x9d, 0x18, 0x7a, 0x9f, 0x02, 0x29, 0x5a, 0x60, 0x1f, 0xa3, 0x94, 0x83, 0x18, 0xad, - 0xc1, 0xd1, 0x62, 0x28, 0x43, 0xa3, 0xff, 0x48, 0xf4, 0x0e, 0xe7, 0xd3, 0x29, 0x3f, 0xe4, 0x65, - 0x65, 0x89, 0xc5, 0x25, 0x3f, 0x47, 0xb6, 0xa5, 0x92, 0x88, 0x48, 0x1c, 0xee, 0x7f, 0xaf, 0x6b, - 0x56, 0xe0, 0x8a, 0xc2, 0xa8, 0x48, 0xc9, 0xd1, 0x16, 0x78, 0xb6, 0xfe, 0x74, 0xfc, 0x6b, 0x57, - 0x61, 0x25, 0xb5, 0x5e, 0x90, 0xdd, 0x82, 0x8e, 0x78, 0x3f, 0x11, 0x7a, 0xc6, 0xda, 0x98, 0x7a, - 0xff, 0xc4, 0xb1, 0xe2, 0xbe, 0xda, 0x22, 0x8e, 0x77, 0x71, 0x88, 0xe1, 0xa2, 0xa3, 0x73, 0xf2, - 0x02, 0xf7, 0x23, 0xe8, 0x8a, 0xd7, 0x16, 0x23, 0xf5, 0x1e, 0x99, 0x34, 0x8d, 0x52, 0xb4, 0xf5, - 0x8e, 0xab, 0x0e, 0xb5, 0x6f, 0x60, 0xf0, 0xc0, 0xb7, 0xe8, 0xdd, 0xaf, 0x52, 0x8d, 0x8f, 0x86, - 0xc4, 0xe3, 0x3f, 0x4b, 0x4a, 0x88, 0xa7, 0x97, 0x75, 0x02, 0x75, 0xa8, 0x5d, 0x83, 0x8d, 0x42, - 0xe2, 0xfc, 0xdc, 0x5b, 0x2f, 0x40, 0x33, 0xfe, 0x03, 0x84, 0x2c, 0x42, 0xed, 0xfe, 0xee, 0x61, - 0xef, 0x39, 0xfa, 0xf1, 0x60, 0xef, 0xb0, 0x57, 0xd9, 0xda, 0x82, 0xe5, 0x4c, 0x23, 0x9c, 0xb4, - 0xa0, 0xae, 0xef, 0xef, 0xec, 0x7d, 0x8d, 0x68, 0x4b, 0xd0, 0x1c, 0xdd, 0xbb, 0xcf, 0x47, 0x95, - 0xad, 0x5d, 0xe8, 0xa6, 0x33, 0x19, 0xd2, 0x86, 0xc5, 0x5d, 0x9c, 0xbd, 0xbf, 0xbf, 0x87, 0xc8, - 0x38, 0xd0, 0x1f, 0x8c, 0x46, 0x07, 0xa3, 0xcf, 0x7b, 0x15, 0x02, 0xd0, 0xd8, 0xff, 0xea, 0x80, - 0x4e, 0x54, 0xe9, 0xc4, 0x83, 0xd1, 0xed, 0xd1, 0xbd, 0x5f, 0x8e, 0x7a, 0xb5, 0xe1, 0x9f, 0x01, - 0xba, 0x82, 0xd1, 0x31, 0xfa, 0x80, 0x33, 0xb1, 0xc9, 0x2d, 0x58, 0x8c, 0x7f, 0xb2, 0x49, 0x72, - 0xa6, 0xf4, 0x1f, 0x41, 0x83, 0x7e, 0x7e, 0x42, 0xe8, 0xf5, 0x39, 0x72, 0xc8, 0xb4, 0xa5, 0x3c, - 0x1e, 0x5c, 0x53, 0x05, 0x97, 0x7b, 0x9d, 0x18, 0x5c, 0x2f, 0x9b, 0x96, 0x14, 0xc7, 0xd0, 0x4d, - 0xbf, 0xe2, 0x92, 0x64, 0x4d, 0xe1, 0xeb, 0xf0, 0xe0, 0x46, 0xe9, 0xbc, 0x24, 0xfa, 0x35, 0xf4, - 0xb2, 0xef, 0xb7, 0x24, 0xe9, 0x79, 0x96, 0xbc, 0x0d, 0x0f, 0x6e, 0x9e, 0x83, 0xa1, 0x92, 0xce, - 0xbd, 0x74, 0x6e, 0x96, 0xbf, 0x55, 0xe5, 0x48, 0x97, 0x3d, 0x80, 0x71, 0x51, 0xa4, 0x9b, 0xfe, - 0x44, 0x7d, 0x5f, 0x2c, 0x78, 0xfc, 0x51, 0x44, 0x51, 0xfc, 0x5a, 0x80, 0x44, 0xbf, 0xc4, 0x24, - 0x3c, 0xdd, 0xcf, 0x20, 0xc9, 0xaa, 0xe2, 0xee, 0xcc, 0x60, 0xb3, 0x1c, 0x21, 0xad, 0x37, 0xb5, - 0x5b, 0x91, 0xd2, 0x5b, 0x41, 0x0b, 0x24, 0xa5, 0xb7, 0xc2, 0x36, 0x07, 0x33, 0xaf, 0x54, 0x4f, - 0x42, 0x31, 0xaf, 0xa2, 0x06, 0xc8, 0xe0, 0x7a, 0xd9, 0xb4, 0x7a, 0xfc, 0x4c, 0x3f, 0x42, 0x39, - 0x7e, 0x71, 0x9b, 0x63, 0xb0, 0x59, 0x8e, 0x90, 0xd5, 0x55, 0x52, 0x67, 0x65, 0x74, 0x95, 0x2b, - 0xeb, 0x33, 0xba, 0xca, 0x17, 0x68, 0x42, 0x57, 0x99, 0x82, 0xe9, 0x46, 0x69, 0xae, 0x99, 0xd7, - 0x55, 0x71, 0xfa, 0x8a, 0x74, 0x7f, 0x0a, 0x0b, 0x34, 0x45, 0x24, 0x49, 0x0e, 0xa3, 0x64, 0xa7, - 0x83, 0xab, 0x19, 0xa8, 0x5c, 0xf6, 0x01, 0x34, 0x78, 0xb6, 0x47, 0x92, 0xf0, 0x98, 0x4a, 0x24, - 0x07, 0xeb, 0x39, 0xb8, 0x5c, 0xfc, 0x05, 0xff, 0x6b, 0x4e, 0xa4, 0x6d, 0x64, 0x23, 0xf5, 0x5f, - 0x4f, 0x3a, 0x39, 0x1c, 0xbc, 0x50, 0x3c, 0x29, 0x69, 0x3d, 0x84, 0x95, 0x82, 0xb0, 0x4b, 0x92, - 0xc2, 0xbc, 0x3c, 0xe2, 0x0f, 0x5e, 0x3a, 0x1f, 0x29, 0xde, 0x63, 0xf8, 0xb7, 0x2a, 0x2c, 0xf1, - 0xfb, 0x4d, 0x84, 0xca, 0xcf, 0x01, 0x92, 0x2c, 0x8b, 0x0c, 0x52, 0xda, 0x4b, 0xa5, 0x8a, 0x83, - 0x8d, 0xc2, 0x39, 0x55, 0x12, 0x4a, 0xc2, 0xa4, 0x48, 0x22, 0x9f, 0x86, 0x29, 0x92, 0x28, 0xc8, - 0xb1, 0x90, 0xd6, 0x1e, 0xb4, 0xe4, 0x2d, 0x4e, 0x94, 0xcb, 0x3f, 0x93, 0x82, 0x0c, 0x06, 0x45, - 0x53, 0x2a, 0x47, 0xca, 0xb5, 0xad, 0x70, 0x94, 0x4f, 0x06, 0x14, 0x8e, 0x8a, 0x6e, 0xfa, 0xe7, - 0xfe, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x31, 0x26, 0x89, 0xeb, 0x66, 0x2a, 0x00, 0x00, + // 3104 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xcc, 0x1a, 0x4d, 0x77, 0xdb, 0xc6, + 0x31, 0x14, 0x25, 0x8a, 0x1c, 0x8a, 0x14, 0xbd, 0x92, 0x25, 0x1a, 0x8e, 0x6d, 0x19, 0x49, 0x9a, + 0x44, 0x49, 0xfc, 0x12, 0xb6, 0x4d, 0x9a, 0x2f, 0x27, 0x8a, 0xa4, 0xa4, 0x8a, 0x6d, 0x5a, 0x05, + 0xed, 0x34, 0x79, 0x39, 0xa0, 0x30, 0x01, 0x4b, 0xb0, 0x49, 0x00, 0x01, 0x40, 0xc5, 0xec, 0xb5, + 0x97, 0x1e, 0x7a, 0xe8, 0xb5, 0xb7, 0x1e, 0xfa, 0x5e, 0x0f, 0xbd, 0xf5, 0xbd, 0xbe, 0xd7, 0xff, + 0xd0, 0xd7, 0x1f, 0xd2, 0x43, 0xcf, 0xed, 0xb1, 0xb3, 0x1f, 0x58, 0x2c, 0xbe, 0x14, 0xc9, 0x79, + 0xaf, 0xf1, 0x0d, 0x3b, 0x33, 0x3b, 0x3b, 0x3b, 0x33, 0x3b, 0x3b, 0x33, 0x0b, 0x68, 0x59, 0x81, + 0x7b, 0x23, 0x08, 0xfd, 0xd8, 0x27, 0xcb, 0xe1, 0xcc, 0x8b, 0xdd, 0xa9, 0xa3, 0x6f, 0x43, 0xf7, + 0x0b, 0x27, 0x8c, 0x5c, 0xdf, 0x33, 0x9c, 0x6f, 0x66, 0x4e, 0x14, 0x93, 0x3e, 0x2c, 0x9f, 0x70, + 0x48, 0xbf, 0xb6, 0x55, 0x7b, 0xa5, 0x65, 0x24, 0x43, 0xfd, 0xcf, 0x35, 0x58, 0x95, 0xc4, 0x51, + 0xe0, 0x7b, 0x91, 0x53, 0x4d, 0x4d, 0xae, 0xc3, 0x8a, 0x58, 0xc4, 0xf4, 0xac, 0xa9, 0xd3, 0x5f, + 0x60, 0xe8, 0xb6, 0x80, 0x0d, 0x11, 0x44, 0x5e, 0x86, 0xd5, 0x84, 0x24, 0x61, 0x52, 0x67, 0x54, + 0x5d, 0x01, 0x16, 0xab, 0x91, 0x1b, 0xb0, 0x96, 0x10, 0xe2, 0x1e, 0x24, 0xf1, 0x22, 0x23, 0xbe, + 0x20, 0x50, 0x3b, 0x81, 0x2b, 0xe8, 0xf5, 0xaf, 0xa1, 0xb5, 0x37, 0x1c, 0xed, 0xfa, 0xde, 0x43, + 0xf7, 0x88, 0x8a, 0x18, 0x39, 0x21, 0x9d, 0x83, 0x22, 0xd6, 0xa9, 0x88, 0x62, 0x48, 0x34, 0x68, + 0x46, 0x8e, 0x15, 0x8e, 0x8f, 0x9d, 0x08, 0xc5, 0xa3, 0x28, 0x39, 0xa6, 0xb3, 0xfc, 0x20, 0x46, + 0x66, 0x11, 0xca, 0xc4, 0x66, 0x89, 0xa1, 0xfe, 0x87, 0x1a, 0xb4, 0x0f, 0xfd, 0x30, 0xbe, 0x63, + 0x05, 0x81, 0xeb, 0x1d, 0x91, 0x37, 0xa0, 0xc9, 0x94, 0x3a, 0xf6, 0x27, 0x4c, 0x07, 0xdd, 0xc1, + 0x85, 0x1b, 0x42, 0xa4, 0x1b, 0x87, 0x02, 0x61, 0x48, 0x12, 0xf2, 0x12, 0x74, 0xc7, 0xbe, 0x17, + 0x5b, 0xae, 0xe7, 0x84, 0x66, 0x80, 0x7c, 0x98, 0x66, 0x96, 0x8c, 0x8e, 0x84, 0x52, 0xe6, 0xe4, + 0x32, 0xb4, 0x8e, 0xfd, 0x28, 0xe6, 0x14, 0x75, 0x46, 0xd1, 0xa4, 0x00, 0x86, 0xdc, 0x84, 0x65, + 0x86, 0x74, 0x03, 0xa1, 0x83, 0x06, 0x1d, 0x1e, 0x04, 0xfa, 0xef, 0x6b, 0xb0, 0x74, 0xc7, 0xc7, + 0xc5, 0x73, 0xcb, 0x58, 0xf1, 0xb1, 0xb0, 0x8f, 0xb2, 0x0c, 0x02, 0xd3, 0x65, 0x28, 0x05, 0x37, + 0x11, 0x5f, 0x86, 0x22, 0x51, 0x3f, 0xa1, 0x63, 0xd9, 0xbe, 0x37, 0x99, 0x33, 0x11, 0x9a, 0x86, + 0x1c, 0x53, 0xdb, 0x45, 0xce, 0xc4, 0xf5, 0x66, 0x4f, 0xcc, 0xd0, 0x99, 0x58, 0x0f, 0x9c, 0x09, + 0x13, 0xa5, 0x69, 0x74, 0x05, 0xd8, 0xe0, 0x50, 0xfd, 0x11, 0xac, 0x52, 0x63, 0x47, 0x81, 0x35, + 0x76, 0xee, 0x32, 0x15, 0x52, 0xd7, 0x60, 0x8b, 0x7a, 0x4e, 0xfc, 0xad, 0x1f, 0x3e, 0x66, 0x92, + 0x35, 0x8d, 0x36, 0x85, 0x0d, 0x39, 0x88, 0x5c, 0x82, 0x26, 0x97, 0xcb, 0xb5, 0x99, 0x58, 0x4d, + 0x83, 0xed, 0xf8, 0xd0, 0xb5, 0x25, 0xca, 0x0d, 0xc6, 0x42, 0xaa, 0x65, 0xbe, 0xfb, 0xb1, 0xfe, + 0x9b, 0x1a, 0x5c, 0xbc, 0x4d, 0x17, 0x3f, 0xf4, 0xed, 0x91, 0xe5, 0xd9, 0x0f, 0xfc, 0x27, 0xc2, + 0x09, 0x5e, 0x80, 0xce, 0xf8, 0x28, 0xf4, 0x67, 0x01, 0xee, 0x34, 0x74, 0xbc, 0x58, 0x68, 0x63, + 0x85, 0x03, 0x0f, 0x19, 0x8c, 0xec, 0xc3, 0x05, 0x2f, 0x11, 0xd5, 0x4c, 0xac, 0x4f, 0x57, 0x6f, + 0x0f, 0xfa, 0xd2, 0xa4, 0xb9, 0xcd, 0x18, 0x3d, 0x2f, 0x0b, 0x88, 0xf4, 0x10, 0x48, 0xba, 0xfe, + 0x1d, 0x27, 0xb6, 0x6c, 0x2b, 0xb6, 0x08, 0x81, 0x45, 0x76, 0x0e, 0xf8, 0xc2, 0xec, 0x9b, 0xf4, + 0xa0, 0x3e, 0x13, 0x1b, 0x6c, 0x19, 0xf4, 0x93, 0x3c, 0x0f, 0x2d, 0xc9, 0x4f, 0x1c, 0x86, 0x14, + 0x40, 0x9d, 0xd2, 0x8a, 0x63, 0x67, 0x1a, 0xc4, 0x4c, 0xd9, 0x1d, 0x23, 0x19, 0xea, 0x7f, 0x5f, + 0x84, 0x5e, 0x61, 0xd3, 0xef, 0x40, 0x73, 0x2a, 0x96, 0x67, 0xcb, 0xb6, 0x07, 0x97, 0x53, 0xcf, + 0x2c, 0x48, 0x68, 0x48, 0x62, 0x6a, 0x78, 0xaa, 0x52, 0xe5, 0xdc, 0xca, 0x31, 0xd5, 0xe4, 0xc4, + 0x3f, 0x32, 0x6d, 0x37, 0x74, 0xc6, 0xb1, 0x1f, 0xce, 0x85, 0x94, 0x2b, 0x08, 0xdc, 0x4b, 0x60, + 0xe4, 0x2d, 0x00, 0xdb, 0x8b, 0xcc, 0x31, 0x93, 0x83, 0xc9, 0xda, 0x1e, 0x10, 0xb9, 0xb6, 0x3c, + 0x9b, 0x46, 0x0b, 0xa9, 0x84, 0xb0, 0xef, 0x42, 0x87, 0xfa, 0xba, 0x39, 0xe5, 0xc7, 0x2a, 0xea, + 0x2f, 0xe1, 0xb1, 0x6b, 0x0f, 0xd6, 0x15, 0x89, 0xe5, 0x99, 0x33, 0x56, 0x82, 0x74, 0x10, 0x91, + 0x0f, 0xa1, 0xc1, 0x7c, 0x2d, 0xea, 0x37, 0xd8, 0x9c, 0x97, 0x4a, 0x76, 0xc9, 0x57, 0xb9, 0x71, + 0x9b, 0xd1, 0xed, 0x7b, 0x71, 0x38, 0x37, 0xc4, 0x24, 0x72, 0x1b, 0xda, 0x96, 0xe7, 0xf9, 0xb1, + 0xc5, 0x0d, 0xbe, 0xcc, 0x78, 0x6c, 0x57, 0xf3, 0xd8, 0x49, 0x89, 0x39, 0x23, 0x75, 0x3a, 0xf9, + 0x09, 0x2c, 0x31, 0xff, 0xef, 0x37, 0xd9, 0xae, 0xaf, 0x4a, 0x3e, 0xa5, 0x8e, 0x69, 0x70, 0x62, + 0xed, 0x5d, 0x68, 0x2b, 0xa2, 0x51, 0xc7, 0x78, 0xec, 0xcc, 0x85, 0xaf, 0xd0, 0x4f, 0xb2, 0x0e, + 0x4b, 0x27, 0xd6, 0x64, 0x96, 0xd8, 0x83, 0x0f, 0xde, 0x5b, 0xf8, 0x59, 0x4d, 0xbb, 0x09, 0xbd, + 0xbc, 0x44, 0xe7, 0x99, 0xaf, 0x1f, 0xc0, 0xba, 0x31, 0xf3, 0x52, 0xc1, 0x92, 0x8b, 0xe0, 0x2d, + 0x68, 0x08, 0xfb, 0x71, 0xdf, 0xb9, 0x54, 0xa9, 0x11, 0x43, 0x10, 0xea, 0x1f, 0xc2, 0xc5, 0x1c, + 0x2b, 0x71, 0x4d, 0xbc, 0x08, 0xdd, 0xc0, 0xb7, 0xcd, 0x88, 0x83, 0x4d, 0xf4, 0x79, 0x71, 0xfe, + 0x02, 0x49, 0x7b, 0x60, 0xd3, 0xe9, 0xa3, 0xd8, 0x0f, 0x8a, 0xa2, 0x9c, 0x6d, 0x7a, 0x1f, 0x36, + 0xf2, 0xd3, 0xf9, 0xf2, 0xfa, 0x47, 0xb0, 0x69, 0x38, 0x53, 0xff, 0xc4, 0x79, 0x5a, 0xd6, 0x1a, + 0xf4, 0x8b, 0x0c, 0x52, 0xe6, 0x29, 0x74, 0x84, 0x66, 0x98, 0x45, 0xe7, 0x63, 0xfe, 0xaa, 0xca, + 0x40, 0x04, 0x40, 0xce, 0x87, 0x74, 0x61, 0x01, 0x63, 0x3c, 0x9f, 0x84, 0x5f, 0xfa, 0x57, 0xd0, + 0x1a, 0xaa, 0xd1, 0x40, 0x8d, 0xa0, 0x78, 0x45, 0x89, 0x21, 0x19, 0xa4, 0x97, 0xd7, 0x77, 0x85, + 0x2f, 0x79, 0xad, 0xdd, 0x2a, 0x84, 0x4e, 0x21, 0xc3, 0x00, 0x40, 0x46, 0xa0, 0x48, 0xf8, 0x02, + 0x29, 0xf2, 0x33, 0x14, 0x2a, 0xfd, 0x4f, 0x99, 0x70, 0xa4, 0x6c, 0xc6, 0x96, 0x9b, 0xb1, 0x33, + 0xe1, 0x69, 0xe1, 0x3c, 0xe1, 0xe9, 0x06, 0x2c, 0x45, 0xc8, 0x92, 0x07, 0xc8, 0xae, 0xb2, 0x39, + 0x31, 0xeb, 0x13, 0xbe, 0xa4, 0x63, 0x70, 0x32, 0x72, 0x05, 0x60, 0x8c, 0x17, 0x57, 0xec, 0xd8, + 0xa6, 0xc5, 0x23, 0x67, 0xdd, 0x68, 0x09, 0xc8, 0x4e, 0x4c, 0xde, 0x4b, 0xf5, 0xb8, 0xc4, 0xc4, + 0xd8, 0x2a, 0x11, 0x23, 0x63, 0x97, 0x54, 0xd3, 0xf2, 0xb4, 0x37, 0x4e, 0x3f, 0xed, 0x62, 0x1e, + 0x27, 0x56, 0x02, 0xd6, 0x72, 0x65, 0xc0, 0xe2, 0x33, 0xce, 0x12, 0xb0, 0x9a, 0x95, 0x01, 0x4b, + 0xf0, 0x38, 0x35, 0x60, 0xfd, 0x90, 0xa1, 0xe7, 0x0e, 0xf4, 0x8b, 0x47, 0x47, 0x84, 0x0c, 0x0c, + 0x3f, 0x11, 0x83, 0x9c, 0x12, 0x7e, 0xc4, 0x14, 0x41, 0xa8, 0xff, 0xab, 0xa6, 0x7a, 0xdd, 0xa7, + 0xee, 0x24, 0x76, 0xc2, 0x82, 0xd7, 0x49, 0xe7, 0x59, 0x38, 0x9b, 0xf3, 0x8c, 0xa0, 0xcb, 0xd4, + 0x6e, 0x62, 0x5e, 0xc3, 0x6e, 0x37, 0x96, 0x0f, 0xb6, 0x07, 0xaf, 0x97, 0xc8, 0xc3, 0x97, 0xe4, + 0x36, 0x1b, 0x09, 0x72, 0xae, 0xf1, 0xce, 0x44, 0x85, 0x69, 0x1f, 0x03, 0x29, 0x12, 0x9d, 0x4b, + 0x75, 0x9f, 0xd3, 0xe3, 0x4a, 0xd3, 0xc1, 0x92, 0xb0, 0xfd, 0x90, 0x89, 0x71, 0x8a, 0xde, 0xb8, + 0x9c, 0x86, 0x20, 0xd4, 0xff, 0x58, 0x07, 0x48, 0x91, 0xcf, 0xec, 0x39, 0x7d, 0x47, 0x9e, 0x1a, + 0x9e, 0x1a, 0x5c, 0x2b, 0x91, 0xa2, 0xf4, 0xbc, 0x7c, 0x9a, 0x3d, 0x2f, 0x3c, 0x49, 0x78, 0xb1, + 0x6c, 0xf6, 0x33, 0x7b, 0x52, 0x76, 0x61, 0x23, 0x6f, 0x6e, 0x71, 0x4e, 0x5e, 0x85, 0x25, 0x17, + 0x73, 0x40, 0x5e, 0xdc, 0xb4, 0x07, 0x6b, 0x25, 0xdb, 0x32, 0x38, 0x85, 0x7e, 0x1d, 0x5a, 0x07, + 0x53, 0xeb, 0xc8, 0x19, 0x05, 0xce, 0x98, 0xae, 0xe5, 0xd2, 0x81, 0x58, 0x9f, 0x0f, 0xf4, 0x01, + 0x34, 0x6f, 0x39, 0xf3, 0x2f, 0xe8, 0xba, 0x67, 0x95, 0x4f, 0xff, 0x47, 0x0d, 0x36, 0x59, 0xb8, + 0xdb, 0x4d, 0x4a, 0x0b, 0x14, 0xce, 0x9f, 0x85, 0x78, 0x11, 0x30, 0x93, 0x06, 0x33, 0x33, 0x70, + 0x42, 0xd7, 0xe7, 0x3e, 0x45, 0x4d, 0x1a, 0xcc, 0x0e, 0x19, 0x80, 0x96, 0x1f, 0x14, 0xfd, 0xcd, + 0xcc, 0x17, 0xbe, 0x55, 0x37, 0x9a, 0x08, 0xf8, 0x05, 0x1d, 0x27, 0x73, 0xa3, 0x63, 0xcc, 0xce, + 0x23, 0xe6, 0x43, 0x7c, 0xee, 0x88, 0x01, 0xd0, 0xd1, 0x2f, 0x4e, 0xf1, 0x4e, 0x0e, 0xe7, 0xe6, + 0xc4, 0x9d, 0xba, 0x58, 0x0f, 0x78, 0xe6, 0x83, 0x79, 0x8c, 0x94, 0xdc, 0x71, 0x08, 0x47, 0xde, + 0xa6, 0xb8, 0x03, 0xef, 0x13, 0x8a, 0x21, 0x3a, 0x74, 0x7c, 0x7f, 0x6a, 0x46, 0x63, 0x3f, 0xc4, + 0x4a, 0xd2, 0x7e, 0xc4, 0xe2, 0x7d, 0xdd, 0x68, 0x23, 0x70, 0x44, 0x61, 0x3b, 0xf6, 0x23, 0xdd, + 0x82, 0xce, 0x68, 0x9f, 0x6d, 0x47, 0x54, 0x2b, 0x98, 0xb8, 0xcf, 0x22, 0x71, 0x9c, 0x30, 0x71, + 0xa7, 0xdf, 0x14, 0x16, 0xfa, 0x93, 0x44, 0x0f, 0xec, 0x9b, 0xc2, 0xe2, 0x79, 0x90, 0x64, 0xed, + 0xec, 0x9b, 0x2a, 0x6c, 0xe2, 0x9c, 0x88, 0xda, 0x08, 0x15, 0xc6, 0x06, 0xba, 0x0d, 0xb0, 0x6b, + 0x05, 0xd6, 0x03, 0x77, 0xe2, 0xc6, 0x73, 0x34, 0x60, 0xcf, 0xb2, 0x6d, 0x73, 0x9c, 0x40, 0x5c, + 0x27, 0x29, 0x54, 0x57, 0x11, 0xbe, 0xab, 0x80, 0xc9, 0x6b, 0x70, 0xc1, 0x0e, 0xfd, 0x20, 0x4b, + 0xcb, 0x2b, 0xd7, 0x1e, 0x45, 0xa8, 0xc4, 0xfa, 0x7f, 0x6b, 0xb0, 0x9e, 0x35, 0x8b, 0xc8, 0xb4, + 0x6f, 0x42, 0x2b, 0x4c, 0x0c, 0x24, 0x82, 0xc4, 0x56, 0xf6, 0xde, 0x2a, 0x1a, 0xd2, 0x48, 0xa7, + 0xe0, 0x39, 0x5c, 0xc9, 0x09, 0x50, 0xcb, 0x38, 0x5e, 0xba, 0x37, 0x23, 0x43, 0x48, 0x3e, 0x4a, + 0x6b, 0xc6, 0xb4, 0xb6, 0xa6, 0x73, 0x37, 0xe4, 0xdc, 0x8c, 0xea, 0x65, 0x2d, 0x29, 0x2a, 0x2b, + 0xf2, 0x23, 0x61, 0x8a, 0x7c, 0x41, 0xc1, 0xe6, 0xdc, 0x47, 0x0c, 0x37, 0x8f, 0xfe, 0x25, 0xb4, + 0x24, 0x28, 0x29, 0xb2, 0xb8, 0xef, 0xb1, 0x22, 0x0b, 0x21, 0x47, 0xa2, 0xec, 0x42, 0x08, 0x7e, + 0xd2, 0x6a, 0x16, 0x75, 0xed, 0xd2, 0x55, 0xac, 0x89, 0x89, 0x10, 0x5e, 0xf5, 0xd7, 0x8d, 0x6e, + 0x0a, 0xfe, 0x0c, 0xa1, 0xfa, 0x0e, 0x5c, 0x90, 0xca, 0x39, 0xb5, 0xb4, 0x53, 0x4a, 0xb5, 0x85, + 0x6c, 0xa9, 0xf6, 0x9f, 0x25, 0x58, 0xcd, 0x9b, 0xe4, 0xed, 0x42, 0xa5, 0xa6, 0xa5, 0xea, 0xcc, + 0xaf, 0xa7, 0x44, 0xd8, 0x57, 0x92, 0x43, 0xbc, 0x90, 0xd3, 0x88, 0x3c, 0xe7, 0xe2, 0x60, 0x53, + 0x79, 0xc6, 0xfe, 0x74, 0x8a, 0x01, 0x21, 0xe9, 0x67, 0x88, 0x21, 0x95, 0xde, 0x0a, 0x8f, 0xe8, + 0xb1, 0xa1, 0x60, 0xf6, 0x4d, 0xae, 0x41, 0x9b, 0xa6, 0x37, 0x58, 0x5d, 0xd1, 0x42, 0x8f, 0x1d, + 0x93, 0x96, 0x01, 0x02, 0x84, 0x65, 0x1e, 0x79, 0x09, 0x16, 0x1d, 0xef, 0x24, 0x89, 0xa5, 0x69, + 0xc3, 0x23, 0x09, 0x1e, 0x06, 0x43, 0xa3, 0xc1, 0x1a, 0x53, 0xda, 0x8e, 0x48, 0x12, 0x9d, 0xae, + 0x24, 0x64, 0x5d, 0x0a, 0x43, 0x60, 0xc9, 0x07, 0x32, 0xb4, 0x37, 0x73, 0xc1, 0x39, 0xa7, 0xa9, + 0xd2, 0xf8, 0x7e, 0x2b, 0x1b, 0xdf, 0x5b, 0x8c, 0xc5, 0xab, 0x95, 0x2c, 0x4e, 0xaf, 0xdf, 0xae, + 0x02, 0x04, 0xa1, 0x7b, 0xe2, 0x4e, 0x9c, 0x23, 0xc7, 0xee, 0x03, 0x6b, 0x30, 0x28, 0x10, 0xd6, + 0xb4, 0x12, 0x4d, 0x10, 0x33, 0xf4, 0xfd, 0xf8, 0x61, 0xd4, 0x6f, 0xf3, 0xc6, 0x47, 0x02, 0x36, + 0x18, 0x94, 0xf6, 0x29, 0x68, 0xa1, 0xcc, 0x3a, 0x2b, 0x2b, 0x3c, 0x3f, 0xc7, 0x31, 0x6b, 0xac, + 0xac, 0xd3, 0x8b, 0xd1, 0x76, 0xbd, 0x7e, 0x87, 0xcd, 0xe4, 0x03, 0x1a, 0xef, 0xd8, 0x87, 0xe9, + 0x7b, 0x58, 0xfc, 0x77, 0x19, 0xaa, 0xc5, 0x20, 0x77, 0x11, 0x40, 0xbd, 0x36, 0x8e, 0xe7, 0xfd, + 0x55, 0x06, 0xa7, 0x9f, 0xe4, 0xc7, 0x49, 0xf2, 0xd9, 0x63, 0xd6, 0xbf, 0x52, 0x71, 0x88, 0x9f, + 0x99, 0x4a, 0xf3, 0xaf, 0x35, 0xd8, 0xd8, 0x65, 0xd7, 0xb9, 0x12, 0x60, 0xce, 0x51, 0x29, 0x91, + 0x37, 0x65, 0x49, 0x9a, 0x2f, 0x6b, 0xf2, 0x9b, 0x15, 0x74, 0xe4, 0x63, 0xe8, 0x26, 0x3c, 0xc5, + 0xcc, 0xfa, 0x77, 0x15, 0xb3, 0x9d, 0x48, 0x1d, 0xea, 0x1f, 0xc0, 0x66, 0x41, 0x66, 0x71, 0xf5, + 0x5e, 0xc7, 0x40, 0x28, 0x7b, 0x6c, 0x52, 0xe4, 0xb6, 0x84, 0x61, 0x6d, 0xf7, 0x1e, 0x2d, 0x69, + 0xad, 0x30, 0x2e, 0x6c, 0xf8, 0x0c, 0x73, 0x59, 0x3d, 0x9b, 0x9d, 0x2b, 0x4a, 0xce, 0x11, 0xac, + 0xd3, 0x4a, 0xf7, 0x29, 0x98, 0xd2, 0x38, 0x40, 0xb7, 0xed, 0xcf, 0x62, 0x11, 0xff, 0x92, 0xa1, + 0xbe, 0xc9, 0xab, 0xef, 0xe2, 0x6a, 0xef, 0xc3, 0x06, 0x2f, 0x7e, 0x9f, 0x66, 0x13, 0x97, 0x92, + 0xd2, 0xbb, 0xc8, 0xf7, 0x77, 0x0b, 0x4a, 0x20, 0xac, 0xc8, 0xd6, 0xdf, 0xc8, 0x66, 0xeb, 0x9b, + 0x45, 0x83, 0x67, 0x32, 0xc8, 0xa2, 0x1b, 0xd5, 0x4b, 0xdc, 0xc8, 0x28, 0xa4, 0xf4, 0x8b, 0x2c, + 0x64, 0xbc, 0x56, 0xe4, 0xfe, 0x7f, 0xcc, 0xe8, 0x0f, 0x78, 0x46, 0x2f, 0x97, 0x96, 0x5d, 0x84, + 0x37, 0x73, 0x19, 0x7d, 0xbf, 0x4a, 0x4c, 0x99, 0xd0, 0xff, 0x76, 0x11, 0x5a, 0x12, 0x57, 0xd0, + 0x69, 0x51, 0x49, 0x0b, 0x25, 0x4a, 0x52, 0xaf, 0xa4, 0xfa, 0xd3, 0x5c, 0x49, 0x8b, 0xdf, 0x75, + 0x25, 0x61, 0xf2, 0xc7, 0x3e, 0xcc, 0xd0, 0x79, 0x28, 0xae, 0x98, 0x26, 0x03, 0x18, 0xce, 0xc3, + 0xd4, 0xf0, 0x8d, 0x33, 0x19, 0x3e, 0x5b, 0x3a, 0x2c, 0xe7, 0x4b, 0x87, 0xb7, 0x73, 0xf7, 0xcb, + 0xd5, 0x22, 0xbb, 0xd2, 0x9b, 0x65, 0xbf, 0xec, 0x66, 0x79, 0xa1, 0x64, 0xf2, 0x33, 0x5b, 0x38, + 0xdc, 0xe6, 0x85, 0x83, 0xea, 0x55, 0x22, 0x7a, 0x0d, 0x50, 0x65, 0x12, 0x2a, 0xaa, 0x07, 0x52, + 0xdc, 0x9a, 0xa1, 0x50, 0xd1, 0x50, 0x90, 0xd1, 0x7f, 0xda, 0xea, 0x3a, 0x43, 0x28, 0xf8, 0x8b, + 0x9a, 0xf8, 0x54, 0xf4, 0x84, 0xde, 0x2e, 0xd4, 0x9a, 0x67, 0xf3, 0xba, 0x37, 0xb2, 0xa5, 0xe6, + 0xf9, 0xdc, 0xa5, 0x50, 0x69, 0xb2, 0x9b, 0x18, 0x23, 0x2f, 0x47, 0xf3, 0x22, 0xa1, 0x25, 0x20, + 0x88, 0xc6, 0xec, 0xe8, 0xa1, 0xeb, 0xb9, 0xd1, 0x31, 0xc7, 0x37, 0x18, 0x1e, 0x12, 0xd0, 0x0e, + 0x7b, 0xbc, 0x71, 0x9e, 0x60, 0x49, 0x32, 0xf6, 0x6d, 0x87, 0x39, 0xe3, 0x92, 0xd1, 0xa4, 0x80, + 0x5d, 0x1c, 0xa7, 0x07, 0xa4, 0x79, 0xae, 0x03, 0xd2, 0xca, 0x1d, 0x90, 0x0d, 0x68, 0xa0, 0xbc, + 0x91, 0xef, 0xb1, 0x1c, 0xa5, 0x65, 0x88, 0x11, 0x0d, 0xf0, 0x53, 0x27, 0x8a, 0xe8, 0x02, 0x6d, + 0x9e, 0x75, 0x88, 0xa1, 0x92, 0x64, 0xad, 0x54, 0x25, 0x59, 0xa7, 0x34, 0x9d, 0x72, 0x49, 0x56, + 0xa7, 0x2a, 0xc9, 0x3a, 0x4b, 0xcf, 0x49, 0xc9, 0x0b, 0xbb, 0xa7, 0xe5, 0x85, 0x3f, 0xe4, 0xc1, + 0xb9, 0x85, 0xf7, 0x7e, 0xde, 0xd5, 0xc5, 0xc9, 0x79, 0x33, 0xd7, 0x9a, 0xea, 0x57, 0x69, 0x41, + 0x76, 0xa6, 0x1e, 0x41, 0x7b, 0xff, 0x09, 0x1a, 0xf6, 0xec, 0xf7, 0x34, 0x8a, 0x3a, 0x9e, 0xda, + 0xa2, 0xb8, 0xa3, 0x9f, 0x49, 0xfe, 0x57, 0x4f, 0xf3, 0x3f, 0x99, 0x46, 0x2e, 0x2a, 0x69, 0xa4, + 0xbe, 0x05, 0x2b, 0x7c, 0x2d, 0x21, 0x2d, 0xad, 0x7f, 0xc2, 0x49, 0xb2, 0x69, 0xfc, 0xd4, 0x7f, + 0x05, 0xab, 0x94, 0x62, 0x34, 0xf7, 0xbe, 0x9f, 0x44, 0x4a, 0x2e, 0x51, 0xcf, 0xe6, 0x12, 0x26, + 0xf4, 0xd2, 0x15, 0x84, 0x1c, 0x1b, 0x54, 0x6b, 0x36, 0x25, 0xa6, 0xcc, 0x57, 0x0c, 0x31, 0x12, + 0x70, 0x27, 0x0c, 0x99, 0x0d, 0x38, 0x1c, 0x47, 0xd9, 0x43, 0x54, 0xcf, 0x1e, 0x22, 0xfd, 0xe7, + 0xd0, 0xd9, 0x89, 0x63, 0x6b, 0x7c, 0x7c, 0x8e, 0x0d, 0x48, 0x75, 0x09, 0x5b, 0x73, 0x75, 0xe9, + 0xd0, 0x4d, 0x38, 0x55, 0x2a, 0x6c, 0x48, 0x5f, 0xf4, 0xc2, 0xf8, 0x53, 0x3f, 0xfc, 0xd6, 0x0a, + 0xed, 0xf3, 0xe5, 0xac, 0x58, 0x5e, 0x89, 0x57, 0xde, 0x3a, 0xee, 0x80, 0x7d, 0xeb, 0x2f, 0xc3, + 0x5a, 0x86, 0x5f, 0xe5, 0xc2, 0xef, 0x40, 0x9b, 0x45, 0x05, 0x91, 0x1d, 0xbd, 0xa2, 0xf6, 0x6c, + 0x4e, 0x0b, 0x1d, 0xb4, 0x4e, 0xa5, 0x61, 0x9f, 0xc1, 0x65, 0x8c, 0x7e, 0x3d, 0x97, 0x48, 0xac, + 0x67, 0xe7, 0xe7, 0x92, 0x88, 0xc7, 0xb0, 0xc4, 0xc0, 0x85, 0x18, 0x7d, 0x99, 0xf6, 0x0f, 0x02, + 0xdf, 0x8c, 0xad, 0x23, 0xf9, 0x6e, 0x4e, 0x01, 0xf7, 0x70, 0xcc, 0x9e, 0xfd, 0x29, 0xd2, 0x76, + 0x71, 0xe1, 0x38, 0x79, 0x3c, 0x6f, 0x53, 0xd8, 0x1e, 0x07, 0x51, 0x8d, 0x44, 0xee, 0xaf, 0x79, + 0x82, 0xb0, 0x68, 0xb0, 0x6f, 0xcc, 0xb2, 0x89, 0x2a, 0xaf, 0x50, 0x08, 0x86, 0x09, 0xb6, 0x9d, + 0xe4, 0x7a, 0xea, 0x66, 0x05, 0x36, 0x04, 0x56, 0xbf, 0x09, 0x84, 0x6b, 0x20, 0x73, 0x25, 0x9d, + 0x5d, 0x5b, 0xef, 0xc3, 0x5a, 0x66, 0xbe, 0x7c, 0xb5, 0xca, 0x30, 0xc8, 0xaf, 0x2e, 0x26, 0xff, + 0xb3, 0x06, 0xb0, 0x33, 0x8b, 0x8f, 0x45, 0x29, 0xaf, 0x41, 0x93, 0xf6, 0x20, 0x94, 0x86, 0x80, + 0x1c, 0x53, 0x5c, 0x60, 0x45, 0x11, 0xd6, 0xd1, 0x49, 0xce, 0x25, 0xc7, 0xac, 0x0c, 0x47, 0x2e, + 0x49, 0xfb, 0x88, 0x7e, 0xd3, 0x47, 0x7c, 0xfe, 0xaf, 0x82, 0x69, 0xd9, 0x76, 0x88, 0x61, 0x5c, + 0xf4, 0x91, 0x3a, 0x1c, 0xba, 0xc3, 0x81, 0x94, 0xcc, 0xb5, 0x1d, 0x14, 0x2d, 0x9e, 0x9b, 0xb1, + 0xff, 0xd8, 0xf1, 0x44, 0x36, 0xd5, 0x49, 0xa0, 0xf7, 0x28, 0x90, 0x92, 0x85, 0xce, 0x11, 0x6a, + 0x39, 0x4c, 0xc8, 0x1a, 0x9c, 0x2c, 0x81, 0x32, 0x32, 0xfa, 0x9b, 0x47, 0xef, 0x70, 0x36, 0x99, + 0xf0, 0x4d, 0x9e, 0x57, 0x97, 0x58, 0x1f, 0xf3, 0x7d, 0xe4, 0xbb, 0x42, 0xa9, 0x8a, 0xc4, 0xe6, + 0xbe, 0x7f, 0x69, 0xb6, 0x06, 0x17, 0x14, 0x41, 0x45, 0x55, 0x81, 0xbe, 0xc0, 0x0b, 0x8e, 0xa7, + 0x93, 0x5f, 0xbf, 0x08, 0x6b, 0x99, 0xf9, 0x82, 0xed, 0x36, 0x74, 0xc4, 0x13, 0x90, 0xb0, 0x33, + 0x96, 0xf7, 0xf4, 0xf4, 0x8f, 0x5d, 0x3b, 0x69, 0x0d, 0x2e, 0xe3, 0x78, 0x17, 0x87, 0x18, 0x2e, + 0x3a, 0x06, 0x67, 0x2f, 0x68, 0x3f, 0x84, 0xae, 0x78, 0x30, 0x32, 0x33, 0x4f, 0xaa, 0x69, 0xdf, + 0x2b, 0xc3, 0xdb, 0xe8, 0x78, 0xea, 0x50, 0xff, 0x1a, 0xb4, 0xfb, 0x81, 0x4d, 0xd3, 0x17, 0x95, + 0x6b, 0xb2, 0x35, 0x64, 0x9e, 0xfc, 0x1c, 0x53, 0xc1, 0x3c, 0x3b, 0xad, 0x13, 0xaa, 0x43, 0xfd, + 0x0a, 0x5c, 0x2e, 0x65, 0xce, 0xf7, 0xbd, 0xfd, 0x3c, 0x34, 0x93, 0x9f, 0x58, 0xc8, 0x32, 0xd4, + 0xef, 0xed, 0x1e, 0xf6, 0x9e, 0xa3, 0x1f, 0xf7, 0xf7, 0x0e, 0x7b, 0xb5, 0xed, 0x6d, 0x58, 0xcd, + 0xf5, 0xf2, 0x49, 0x0b, 0x96, 0x8c, 0xfd, 0x9d, 0xbd, 0xaf, 0x90, 0x6c, 0x05, 0x9a, 0xc3, 0xbb, + 0xf7, 0xf8, 0xa8, 0xb6, 0xbd, 0x0b, 0xdd, 0x6c, 0x32, 0x46, 0xda, 0xb0, 0xbc, 0x8b, 0xd8, 0x7b, + 0xfb, 0x7b, 0x48, 0x8c, 0x03, 0xe3, 0xfe, 0x70, 0x78, 0x30, 0xfc, 0xac, 0x57, 0x23, 0x00, 0x8d, + 0xfd, 0x2f, 0x0f, 0x28, 0x62, 0x81, 0x22, 0xee, 0x0f, 0x6f, 0x0d, 0xef, 0xfe, 0x72, 0xd8, 0xab, + 0x0f, 0xfe, 0x0d, 0xd0, 0x15, 0x82, 0x8e, 0xf0, 0x0c, 0xb8, 0x63, 0x87, 0xdc, 0x84, 0xe5, 0xe4, + 0x3f, 0xa1, 0x34, 0xed, 0xcb, 0xfe, 0xd4, 0xa4, 0xf5, 0x8b, 0x08, 0x61, 0xd7, 0xe7, 0xc8, 0x21, + 0xb3, 0x96, 0xf2, 0xfe, 0x71, 0x45, 0x55, 0x5c, 0xe1, 0x81, 0x45, 0xbb, 0x5a, 0x85, 0x96, 0x1c, + 0x47, 0xd0, 0xcd, 0x3e, 0x44, 0x93, 0x74, 0x4e, 0xe9, 0x03, 0xb7, 0x76, 0xad, 0x12, 0x2f, 0x99, + 0x7e, 0x05, 0xbd, 0xfc, 0x13, 0x34, 0x49, 0xdb, 0xb6, 0x15, 0xcf, 0xdb, 0xda, 0xf5, 0x53, 0x28, + 0x54, 0xd6, 0x85, 0xc7, 0xda, 0xad, 0xea, 0xe7, 0xb6, 0x02, 0xeb, 0xaa, 0x37, 0x3c, 0xae, 0x8a, + 0xec, 0xbb, 0x05, 0x51, 0x9f, 0x48, 0x4b, 0xde, 0xaf, 0x14, 0x55, 0x94, 0x3f, 0x78, 0x20, 0xd3, + 0x2f, 0xb0, 0x8e, 0xc8, 0xb6, 0x64, 0x48, 0x3a, 0xab, 0xbc, 0xc1, 0xa4, 0x6d, 0x55, 0x13, 0x64, + 0xed, 0xa6, 0x36, 0x5c, 0x32, 0x76, 0x2b, 0xe9, 0xe2, 0x64, 0xec, 0x56, 0xda, 0xa9, 0x61, 0xee, + 0x95, 0x69, 0xab, 0x28, 0xee, 0x55, 0xd6, 0xc3, 0xd1, 0xae, 0x56, 0xa1, 0xd5, 0xed, 0xe7, 0x5a, + 0x2a, 0xca, 0xf6, 0xcb, 0x3b, 0x35, 0xda, 0x56, 0x35, 0x41, 0xde, 0x56, 0x69, 0xa9, 0x98, 0xb3, + 0x55, 0xa1, 0x33, 0x91, 0xb3, 0x55, 0xb1, 0xc6, 0x14, 0xb6, 0xca, 0xd5, 0x7c, 0xd7, 0x2a, 0xd3, + 0xe5, 0xa2, 0xad, 0xca, 0x33, 0x70, 0xe4, 0xfb, 0x53, 0x58, 0xa4, 0x19, 0x26, 0x49, 0x73, 0x18, + 0x25, 0xc1, 0xd6, 0x2e, 0xe6, 0xa0, 0x72, 0xda, 0x0e, 0x34, 0x93, 0xc4, 0x94, 0xf4, 0x33, 0x44, + 0x4a, 0x36, 0xac, 0x5d, 0x2a, 0xc1, 0x48, 0x16, 0xef, 0x43, 0x83, 0x27, 0x8c, 0x24, 0x8d, 0xb0, + 0x99, 0x5c, 0x54, 0xdb, 0x2c, 0xc0, 0xe5, 0xe4, 0xcf, 0xf9, 0xbf, 0x83, 0x22, 0xf3, 0x23, 0x97, + 0x33, 0x7f, 0x37, 0x65, 0xf3, 0x4b, 0xed, 0xf9, 0x72, 0xa4, 0xe4, 0xf5, 0x00, 0xd6, 0x4a, 0x22, + 0x37, 0x49, 0xdb, 0x13, 0xd5, 0x97, 0x86, 0xf6, 0xe2, 0xe9, 0x44, 0xc9, 0x1a, 0x83, 0xbf, 0x2d, + 0xc0, 0x0a, 0xbf, 0x22, 0x45, 0xb4, 0xfd, 0x0c, 0x20, 0x4d, 0xd4, 0x88, 0x96, 0x71, 0x80, 0x4c, + 0xb6, 0xa9, 0x5d, 0x2e, 0xc5, 0xa9, 0x9a, 0x50, 0x72, 0x2e, 0x45, 0x13, 0xc5, 0x4c, 0x4e, 0xd1, + 0x44, 0x49, 0x9a, 0x86, 0xbc, 0xf6, 0xa0, 0x25, 0x13, 0x01, 0xa2, 0xe4, 0x0f, 0xb9, 0x2c, 0x46, + 0xd3, 0xca, 0x50, 0xaa, 0x44, 0xca, 0xcd, 0xaf, 0x48, 0x54, 0xcc, 0x27, 0x14, 0x89, 0xca, 0x92, + 0x85, 0xe7, 0xfe, 0x17, 0x00, 0x00, 0xff, 0xff, 0x4a, 0xc3, 0x57, 0x0d, 0x6c, 0x2b, 0x00, 0x00, } diff --git a/pkg/kubelet/api/v1alpha1/runtime/api.proto b/pkg/kubelet/api/v1alpha1/runtime/api.proto index 2caa1d5b740..175cf56bd16 100644 --- a/pkg/kubelet/api/v1alpha1/runtime/api.proto +++ b/pkg/kubelet/api/v1alpha1/runtime/api.proto @@ -40,6 +40,8 @@ service RuntimeService { // Exec prepares a streaming endpoint to execute a command in the container. rpc Exec(ExecRequest) returns (ExecResponse) {} + // ExecSync runs a command in a container synchonously. + rpc ExecSync(ExecSyncRequest) returns (ExecSyncResponse) {} // Attach prepares a streaming endpoint to attach to a running container. rpc Attach(AttachRequest) returns (AttachResponse) {} // PortForward prepares a streaming endpoint to forward ports from a PodSandbox. @@ -615,6 +617,24 @@ message ExecResponse { optional string url = 1; } +message ExecSyncRequest { + // The id of the container + optional string container_id = 1; + // The cmd to execute + repeated string cmd = 2; + // Timeout in seconds to stop the command. Default: run forever. + optional int64 timeout = 3; +} + +message ExecSyncResponse { + // The captured command stdout output. + optional bytes stdout = 1; + // The captured command stderr output. + optional bytes stderr = 2; + // The exit code the command finished with. + optional int32 exit_code = 3; +} + message AttachRequest { // The id of the container optional string container_id = 1;