From 845cff8e516102b276be9a4633acd608384f3bc1 Mon Sep 17 00:00:00 2001 From: Starnop Date: Fri, 17 Aug 2018 14:21:58 +0800 Subject: [PATCH] extend cri apis for remove volume Signed-off-by: Starnop --- cri/apis/v1alpha2/api.pb.go | 986 ++++++++++++++++++++++++------------ cri/apis/v1alpha2/api.proto | 18 +- cri/criservice.go | 8 +- cri/v1alpha2/cri.go | 17 +- cri/v1alpha2/cri_wrapper.go | 13 + cri/v1alpha2/service/cri.go | 1 + daemon/daemon.go | 2 +- hack/protoc.sh | 1 - 8 files changed, 722 insertions(+), 324 deletions(-) diff --git a/cri/apis/v1alpha2/api.pb.go b/cri/apis/v1alpha2/api.pb.go index c6f4535f1..1445a7593 100644 --- a/cri/apis/v1alpha2/api.pb.go +++ b/cri/apis/v1alpha2/api.pb.go @@ -129,6 +129,8 @@ limitations under the License. MemoryUsage ReopenContainerLogRequest ReopenContainerLogResponse + RemoveVolumeRequest + RemoveVolumeResponse */ package v1alpha2 @@ -447,6 +449,8 @@ type Mount struct { SelinuxRelabel bool `protobuf:"varint,4,opt,name=selinux_relabel,json=selinuxRelabel,proto3" json:"selinux_relabel,omitempty"` // Requested propagation mode. Propagation MountPropagation `protobuf:"varint,5,opt,name=propagation,proto3,enum=runtime.v1alpha2.MountPropagation" json:"propagation,omitempty"` + // Name of volume + Name string `protobuf:"bytes,100,opt,name=name,proto3" json:"name,omitempty"` } func (m *Mount) Reset() { *m = Mount{} } @@ -488,6 +492,13 @@ func (m *Mount) GetPropagation() MountPropagation { return MountPropagation_PROPAGATION_PRIVATE } +func (m *Mount) GetName() string { + if m != nil { + return m.Name + } + return "" +} + // NamespaceOption provides options for Linux namespaces. type NamespaceOption struct { // Network namespace for this container/sandbox. @@ -3840,6 +3851,29 @@ func (m *ReopenContainerLogResponse) Reset() { *m = ReopenCon func (*ReopenContainerLogResponse) ProtoMessage() {} func (*ReopenContainerLogResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{104} } +type RemoveVolumeRequest struct { + // Name of the volume to remove + VolumeName string `protobuf:"bytes,1,opt,name=volume_name,json=volumeName,proto3" json:"volume_name,omitempty"` +} + +func (m *RemoveVolumeRequest) Reset() { *m = RemoveVolumeRequest{} } +func (*RemoveVolumeRequest) ProtoMessage() {} +func (*RemoveVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{105} } + +func (m *RemoveVolumeRequest) GetVolumeName() string { + if m != nil { + return m.VolumeName + } + return "" +} + +type RemoveVolumeResponse struct { +} + +func (m *RemoveVolumeResponse) Reset() { *m = RemoveVolumeResponse{} } +func (*RemoveVolumeResponse) ProtoMessage() {} +func (*RemoveVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{106} } + func init() { proto.RegisterType((*VersionRequest)(nil), "runtime.v1alpha2.VersionRequest") proto.RegisterType((*VersionResponse)(nil), "runtime.v1alpha2.VersionResponse") @@ -3946,6 +3980,8 @@ func init() { proto.RegisterType((*MemoryUsage)(nil), "runtime.v1alpha2.MemoryUsage") proto.RegisterType((*ReopenContainerLogRequest)(nil), "runtime.v1alpha2.ReopenContainerLogRequest") proto.RegisterType((*ReopenContainerLogResponse)(nil), "runtime.v1alpha2.ReopenContainerLogResponse") + proto.RegisterType((*RemoveVolumeRequest)(nil), "runtime.v1alpha2.RemoveVolumeRequest") + proto.RegisterType((*RemoveVolumeResponse)(nil), "runtime.v1alpha2.RemoveVolumeResponse") proto.RegisterEnum("runtime.v1alpha2.Protocol", Protocol_name, Protocol_value) proto.RegisterEnum("runtime.v1alpha2.MountPropagation", MountPropagation_name, MountPropagation_value) proto.RegisterEnum("runtime.v1alpha2.NamespaceMode", NamespaceMode_name, NamespaceMode_value) @@ -5026,6 +5062,72 @@ var _ImageService_serviceDesc = grpc.ServiceDesc{ Metadata: "api.proto", } +// Client API for VolumeService service + +type VolumeServiceClient interface { + // RemoveVolume removes the volume. + RemoveVolume(ctx context.Context, in *RemoveVolumeRequest, opts ...grpc.CallOption) (*RemoveVolumeResponse, error) +} + +type volumeServiceClient struct { + cc *grpc.ClientConn +} + +func NewVolumeServiceClient(cc *grpc.ClientConn) VolumeServiceClient { + return &volumeServiceClient{cc} +} + +func (c *volumeServiceClient) RemoveVolume(ctx context.Context, in *RemoveVolumeRequest, opts ...grpc.CallOption) (*RemoveVolumeResponse, error) { + out := new(RemoveVolumeResponse) + err := grpc.Invoke(ctx, "/runtime.v1alpha2.VolumeService/RemoveVolume", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// Server API for VolumeService service + +type VolumeServiceServer interface { + // RemoveVolume removes the volume. + RemoveVolume(context.Context, *RemoveVolumeRequest) (*RemoveVolumeResponse, error) +} + +func RegisterVolumeServiceServer(s *grpc.Server, srv VolumeServiceServer) { + s.RegisterService(&_VolumeService_serviceDesc, srv) +} + +func _VolumeService_RemoveVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RemoveVolumeRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(VolumeServiceServer).RemoveVolume(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/runtime.v1alpha2.VolumeService/RemoveVolume", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(VolumeServiceServer).RemoveVolume(ctx, req.(*RemoveVolumeRequest)) + } + return interceptor(ctx, in, info, handler) +} + +var _VolumeService_serviceDesc = grpc.ServiceDesc{ + ServiceName: "runtime.v1alpha2.VolumeService", + HandlerType: (*VolumeServiceServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "RemoveVolume", + Handler: _VolumeService_RemoveVolume_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "api.proto", +} + func (m *VersionRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -5246,6 +5348,14 @@ func (m *Mount) MarshalTo(dAtA []byte) (int, error) { i++ i = encodeVarintApi(dAtA, i, uint64(m.Propagation)) } + if len(m.Name) > 0 { + dAtA[i] = 0xa2 + i++ + dAtA[i] = 0x6 + i++ + i = encodeVarintApi(dAtA, i, uint64(len(m.Name))) + i += copy(dAtA[i:], m.Name) + } return i, nil } @@ -9498,6 +9608,48 @@ func (m *ReopenContainerLogResponse) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *RemoveVolumeRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RemoveVolumeRequest) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if len(m.VolumeName) > 0 { + dAtA[i] = 0xa + i++ + i = encodeVarintApi(dAtA, i, uint64(len(m.VolumeName))) + i += copy(dAtA[i:], m.VolumeName) + } + return i, nil +} + +func (m *RemoveVolumeResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RemoveVolumeResponse) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + return i, nil +} + func encodeFixed64Api(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) dAtA[offset+1] = uint8(v >> 8) @@ -9620,6 +9772,10 @@ func (m *Mount) Size() (n int) { if m.Propagation != 0 { n += 1 + sovApi(uint64(m.Propagation)) } + l = len(m.Name) + if l > 0 { + n += 2 + l + sovApi(uint64(l)) + } return n } @@ -11395,6 +11551,22 @@ func (m *ReopenContainerLogResponse) Size() (n int) { return n } +func (m *RemoveVolumeRequest) Size() (n int) { + var l int + _ = l + l = len(m.VolumeName) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + return n +} + +func (m *RemoveVolumeResponse) Size() (n int) { + var l int + _ = l + return n +} + func sovApi(x uint64) (n int) { for { n++ @@ -11466,6 +11638,7 @@ func (this *Mount) String() string { `Readonly:` + fmt.Sprintf("%v", this.Readonly) + `,`, `SelinuxRelabel:` + fmt.Sprintf("%v", this.SelinuxRelabel) + `,`, `Propagation:` + fmt.Sprintf("%v", this.Propagation) + `,`, + `Name:` + fmt.Sprintf("%v", this.Name) + `,`, `}`, }, "") return s @@ -12887,6 +13060,25 @@ func (this *ReopenContainerLogResponse) String() string { }, "") return s } +func (this *RemoveVolumeRequest) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&RemoveVolumeRequest{`, + `VolumeName:` + fmt.Sprintf("%v", this.VolumeName) + `,`, + `}`, + }, "") + return s +} +func (this *RemoveVolumeResponse) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&RemoveVolumeResponse{`, + `}`, + }, "") + return s +} func valueToStringApi(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { @@ -13559,6 +13751,35 @@ func (m *Mount) Unmarshal(dAtA []byte) error { break } } + case 100: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) @@ -28280,6 +28501,135 @@ func (m *ReopenContainerLogResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *RemoveVolumeRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RemoveVolumeRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RemoveVolumeRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field VolumeName", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.VolumeName = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *RemoveVolumeResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RemoveVolumeResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RemoveVolumeResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipApi(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 @@ -28388,320 +28738,324 @@ var ( func init() { proto.RegisterFile("api.proto", fileDescriptorApi) } var fileDescriptorApi = []byte{ - // 5037 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x5c, 0xcd, 0x73, 0x1b, 0x47, - 0x76, 0x27, 0x3e, 0x48, 0x02, 0x0f, 0x04, 0x09, 0xb6, 0x28, 0x11, 0x82, 0x2c, 0x5a, 0x1c, 0xc9, - 0xd6, 0xc7, 0x5a, 0x94, 0x45, 0xef, 0xca, 0xd6, 0xc7, 0xca, 0x86, 0x48, 0x4a, 0x42, 0x56, 0x02, - 0x99, 0x01, 0x29, 0xd9, 0xeb, 0xad, 0x9a, 0x1d, 0x62, 0x9a, 0xe0, 0x98, 0xc0, 0xf4, 0x78, 0x66, - 0x40, 0x8a, 0x39, 0xa4, 0x5c, 0x95, 0xca, 0x1e, 0x72, 0xca, 0x79, 0x8f, 0xbb, 0x87, 0x1c, 0x72, - 0x4b, 0x55, 0x4e, 0x39, 0x25, 0xb5, 0x95, 0xda, 0xcb, 0x56, 0xe5, 0xb4, 0x95, 0x8f, 0x4b, 0xec, - 0xdc, 0x72, 0x48, 0xe5, 0x4f, 0x48, 0xf5, 0xd7, 0x60, 0x3e, 0xf1, 0x21, 0xcb, 0xbb, 0xce, 0x09, - 0xd3, 0x6f, 0xde, 0x7b, 0xfd, 0xba, 0xfb, 0xcd, 0xeb, 0xd7, 0xbf, 0x37, 0x03, 0x28, 0xea, 0xb6, - 0xb9, 0x66, 0x3b, 0xc4, 0x23, 0xa8, 0xe2, 0xf4, 0x2d, 0xcf, 0xec, 0xe1, 0xb5, 0xe3, 0xdb, 0x7a, - 0xd7, 0x3e, 0xd4, 0xd7, 0x6b, 0x37, 0x3b, 0xa6, 0x77, 0xd8, 0xdf, 0x5f, 0x6b, 0x93, 0xde, 0xad, - 0x0e, 0xe9, 0x90, 0x5b, 0x8c, 0x71, 0xbf, 0x7f, 0xc0, 0x5a, 0xac, 0xc1, 0xae, 0xb8, 0x02, 0xe5, - 0x06, 0xcc, 0xbf, 0xc0, 0x8e, 0x6b, 0x12, 0x4b, 0xc5, 0x5f, 0xf6, 0xb1, 0xeb, 0xa1, 0x2a, 0xcc, - 0x1e, 0x73, 0x4a, 0x35, 0x73, 0x29, 0x73, 0xad, 0xa8, 0xca, 0xa6, 0xf2, 0x37, 0x19, 0x58, 0xf0, - 0x99, 0x5d, 0x9b, 0x58, 0x2e, 0x4e, 0xe7, 0x46, 0xab, 0x30, 0x27, 0x8c, 0xd3, 0x2c, 0xbd, 0x87, - 0xab, 0x59, 0x76, 0xbb, 0x24, 0x68, 0x4d, 0xbd, 0x87, 0xd1, 0x55, 0x58, 0x90, 0x2c, 0x52, 0x49, - 0x8e, 0x71, 0xcd, 0x0b, 0xb2, 0xe8, 0x0d, 0xad, 0xc1, 0x19, 0xc9, 0xa8, 0xdb, 0xa6, 0xcf, 0x9c, - 0x67, 0xcc, 0x8b, 0xe2, 0x56, 0xdd, 0x36, 0x05, 0xbf, 0xf2, 0x39, 0x14, 0x37, 0x9b, 0xad, 0x0d, - 0x62, 0x1d, 0x98, 0x1d, 0x6a, 0xa2, 0x8b, 0x1d, 0x2a, 0x53, 0xcd, 0x5c, 0xca, 0x51, 0x13, 0x45, - 0x13, 0xd5, 0xa0, 0xe0, 0x62, 0xdd, 0x69, 0x1f, 0x62, 0xb7, 0x9a, 0x65, 0xb7, 0xfc, 0x36, 0x95, - 0x22, 0xb6, 0x67, 0x12, 0xcb, 0xad, 0xe6, 0xb8, 0x94, 0x68, 0x2a, 0xbf, 0xca, 0x40, 0x69, 0x87, - 0x38, 0xde, 0x73, 0xdd, 0xb6, 0x4d, 0xab, 0x83, 0xee, 0x40, 0x81, 0xcd, 0x65, 0x9b, 0x74, 0xd9, - 0x1c, 0xcc, 0xaf, 0xd7, 0xd6, 0xa2, 0xcb, 0xb2, 0xb6, 0x23, 0x38, 0x54, 0x9f, 0x17, 0xbd, 0x03, - 0xf3, 0x6d, 0x62, 0x79, 0xba, 0x69, 0x61, 0x47, 0xb3, 0x89, 0xe3, 0xb1, 0x29, 0x9a, 0x56, 0xcb, - 0x3e, 0x95, 0xf6, 0x82, 0x2e, 0x40, 0xf1, 0x90, 0xb8, 0x1e, 0xe7, 0xc8, 0x31, 0x8e, 0x02, 0x25, - 0xb0, 0x9b, 0xcb, 0x30, 0xcb, 0x6e, 0x9a, 0xb6, 0x98, 0x8c, 0x19, 0xda, 0x6c, 0xd8, 0xca, 0xef, - 0x33, 0x30, 0xfd, 0x9c, 0xf4, 0x2d, 0x2f, 0xd2, 0x8d, 0xee, 0x1d, 0x8a, 0x85, 0x0a, 0x74, 0xa3, - 0x7b, 0x87, 0x83, 0x6e, 0x28, 0x07, 0x5f, 0x2b, 0xde, 0x0d, 0xbd, 0x59, 0x83, 0x82, 0x83, 0x75, - 0x83, 0x58, 0xdd, 0x53, 0x66, 0x42, 0x41, 0xf5, 0xdb, 0x74, 0x11, 0x5d, 0xdc, 0x35, 0xad, 0xfe, - 0x2b, 0xcd, 0xc1, 0x5d, 0x7d, 0x1f, 0x77, 0x99, 0x29, 0x05, 0x75, 0x5e, 0x90, 0x55, 0x4e, 0x45, - 0x9b, 0x50, 0xb2, 0x1d, 0x62, 0xeb, 0x1d, 0x9d, 0xce, 0x63, 0x75, 0x9a, 0x4d, 0x95, 0x12, 0x9f, - 0x2a, 0x66, 0xf6, 0xce, 0x80, 0x53, 0x0d, 0x8a, 0x29, 0x7f, 0x97, 0x81, 0x05, 0xea, 0x3c, 0xae, - 0xad, 0xb7, 0xf1, 0x36, 0x5b, 0x12, 0x74, 0x17, 0x66, 0x2d, 0xec, 0x9d, 0x10, 0xe7, 0x48, 0x2c, - 0xc0, 0xdb, 0x71, 0xad, 0xbe, 0xcc, 0x73, 0x62, 0x60, 0x55, 0xf2, 0xa3, 0xdb, 0x90, 0xb3, 0x4d, - 0x83, 0x0d, 0x78, 0x0c, 0x31, 0xca, 0x4b, 0x45, 0x4c, 0xbb, 0xcd, 0xe6, 0x61, 0x1c, 0x11, 0xd3, - 0x6e, 0x2b, 0x0a, 0x40, 0xc3, 0xf2, 0xee, 0xfc, 0xf0, 0x85, 0xde, 0xed, 0x63, 0xb4, 0x04, 0xd3, - 0xc7, 0xf4, 0x82, 0x19, 0x9b, 0x53, 0x79, 0x43, 0xf9, 0x3a, 0x07, 0x17, 0x9e, 0xd1, 0xf9, 0x6a, - 0xe9, 0x96, 0xb1, 0x4f, 0x5e, 0xb5, 0x70, 0xbb, 0xef, 0x98, 0xde, 0xe9, 0x06, 0xb1, 0x3c, 0xfc, - 0xca, 0x43, 0x4d, 0x58, 0xb4, 0xa4, 0x66, 0x4d, 0xba, 0x26, 0xd5, 0x50, 0x5a, 0x5f, 0x1d, 0x62, - 0x04, 0x9f, 0x22, 0xb5, 0x62, 0x85, 0x09, 0x2e, 0x7a, 0x3a, 0x58, 0x37, 0xa9, 0x2d, 0xcb, 0xb4, - 0x25, 0x0c, 0xa9, 0xb5, 0xc5, 0x2c, 0x13, 0xba, 0xe4, 0xc2, 0x4a, 0x4d, 0x0f, 0x80, 0x3e, 0xd5, - 0x9a, 0xee, 0x6a, 0x7d, 0x17, 0x3b, 0x6c, 0x62, 0x4a, 0xeb, 0x6f, 0xc5, 0xb5, 0x0c, 0xa6, 0x40, - 0x2d, 0x3a, 0x7d, 0xab, 0xee, 0xee, 0xb9, 0xd8, 0x61, 0x41, 0x40, 0xf8, 0x92, 0xe6, 0x10, 0xe2, - 0x1d, 0xb8, 0xd2, 0x7f, 0x24, 0x59, 0x65, 0x54, 0x74, 0x0b, 0xce, 0xb8, 0x7d, 0xdb, 0xee, 0xe2, - 0x1e, 0xb6, 0x3c, 0xbd, 0xab, 0x75, 0x1c, 0xd2, 0xb7, 0xdd, 0xea, 0xf4, 0xa5, 0xdc, 0xb5, 0x9c, - 0x8a, 0x82, 0xb7, 0x9e, 0xb0, 0x3b, 0x68, 0x05, 0xc0, 0x76, 0xcc, 0x63, 0xb3, 0x8b, 0x3b, 0xd8, - 0xa8, 0xce, 0x30, 0xa5, 0x01, 0x0a, 0x7a, 0x1f, 0x96, 0x5c, 0xdc, 0x6e, 0x93, 0x9e, 0xad, 0xd9, - 0x0e, 0x39, 0x30, 0xbb, 0x98, 0x7b, 0xff, 0x2c, 0xf3, 0x7e, 0x24, 0xee, 0xed, 0xf0, 0x5b, 0xec, - 0x39, 0x78, 0xc8, 0x62, 0x1a, 0x1d, 0x29, 0xeb, 0xbc, 0x5a, 0x18, 0x63, 0xa8, 0xc0, 0x86, 0xca, - 0x4c, 0x52, 0x7e, 0x95, 0x85, 0xb3, 0x6c, 0x26, 0x77, 0x88, 0x21, 0x96, 0x59, 0x04, 0xa9, 0xcb, - 0x50, 0x6e, 0x33, 0x9d, 0x9a, 0xad, 0x3b, 0xd8, 0xf2, 0xc4, 0x43, 0x3a, 0xc7, 0x89, 0x3b, 0x8c, - 0x86, 0x3e, 0x85, 0x8a, 0x2b, 0xbc, 0x42, 0x6b, 0x73, 0xb7, 0x10, 0x6b, 0x76, 0x33, 0x6e, 0xc2, - 0x10, 0x5f, 0x52, 0x17, 0xdc, 0x98, 0x73, 0xcd, 0xba, 0xa7, 0x6e, 0xdb, 0xeb, 0xf2, 0x68, 0x57, - 0x5a, 0xff, 0x61, 0x8a, 0xc2, 0xa8, 0xe1, 0x6b, 0x2d, 0x2e, 0xb6, 0x65, 0x79, 0xce, 0xa9, 0x2a, - 0x95, 0xd4, 0xee, 0xc1, 0x5c, 0xf0, 0x06, 0xaa, 0x40, 0xee, 0x08, 0x9f, 0x8a, 0x41, 0xd1, 0xcb, - 0xc1, 0x43, 0xc0, 0x63, 0x0d, 0x6f, 0xdc, 0xcb, 0x7e, 0x94, 0x51, 0x1c, 0x40, 0x83, 0x5e, 0x9e, - 0x63, 0x4f, 0x37, 0x74, 0x4f, 0x47, 0x08, 0xf2, 0x6c, 0x1b, 0xe1, 0x2a, 0xd8, 0x35, 0xd5, 0xda, - 0x17, 0x0f, 0x6f, 0x51, 0xa5, 0x97, 0xe8, 0x2d, 0x28, 0xfa, 0x8e, 0x2e, 0xf6, 0x92, 0x01, 0x81, - 0xc6, 0x74, 0xdd, 0xf3, 0x70, 0xcf, 0xf6, 0x98, 0x8b, 0x95, 0x55, 0xd9, 0x54, 0xfe, 0x27, 0x0f, - 0x95, 0xd8, 0x9a, 0x7c, 0x02, 0x85, 0x9e, 0xe8, 0x5e, 0x3c, 0x68, 0x57, 0x12, 0x02, 0x7b, 0xcc, - 0x54, 0xd5, 0x97, 0xa2, 0x71, 0x93, 0xc6, 0xd0, 0xc0, 0xfe, 0xe7, 0xb7, 0xe9, 0x8a, 0x77, 0x49, - 0x47, 0x33, 0x4c, 0x07, 0xb7, 0x3d, 0xe2, 0x9c, 0x0a, 0x73, 0xe7, 0xba, 0xa4, 0xb3, 0x29, 0x69, - 0xe8, 0x1e, 0x80, 0x61, 0xb9, 0x74, 0xb1, 0x0f, 0xcc, 0x0e, 0x33, 0xba, 0xb4, 0x7e, 0x21, 0x6e, - 0x84, 0xbf, 0xd9, 0xa9, 0x45, 0xc3, 0x72, 0x85, 0xf9, 0x8f, 0xa0, 0x4c, 0xf7, 0x0c, 0xad, 0xc7, - 0xf7, 0x29, 0xfe, 0xa4, 0x94, 0xd6, 0x2f, 0x26, 0x8d, 0xc1, 0xdf, 0xcd, 0xd4, 0x39, 0x7b, 0xd0, - 0x70, 0xd1, 0x63, 0x98, 0x61, 0xc1, 0xdb, 0xad, 0xce, 0x30, 0xe1, 0xb5, 0x61, 0x13, 0x20, 0x3c, - 0xe2, 0x19, 0x13, 0xe0, 0x0e, 0x21, 0xa4, 0xd1, 0x1e, 0x94, 0x74, 0xcb, 0x22, 0x9e, 0xce, 0x03, - 0xcd, 0x2c, 0x53, 0xf6, 0xc1, 0x18, 0xca, 0xea, 0x03, 0x29, 0xae, 0x31, 0xa8, 0x07, 0xfd, 0x18, - 0xa6, 0x59, 0x24, 0x12, 0x0f, 0xe2, 0xd5, 0x31, 0x9d, 0x56, 0xe5, 0x52, 0xb5, 0xbb, 0x50, 0x0a, - 0x18, 0x3b, 0x89, 0x93, 0xd6, 0x1e, 0x42, 0x25, 0x6a, 0xda, 0x44, 0x4e, 0xae, 0xc2, 0x92, 0xda, - 0xb7, 0x06, 0x86, 0xc9, 0xec, 0xeb, 0x1e, 0xcc, 0x88, 0xc5, 0xe6, 0x1e, 0xa7, 0x8c, 0x9e, 0x23, - 0x55, 0x48, 0x28, 0x3f, 0x86, 0xb3, 0x11, 0x9d, 0x22, 0x49, 0xbb, 0x02, 0xf3, 0x36, 0x31, 0x34, - 0x97, 0x93, 0x35, 0xd3, 0x90, 0xd1, 0xc5, 0xf6, 0x79, 0x1b, 0x06, 0x15, 0x6f, 0x79, 0xc4, 0x8e, - 0xdb, 0x34, 0x9e, 0x78, 0x15, 0xce, 0x45, 0xc5, 0x79, 0xf7, 0xca, 0xc7, 0xb0, 0xac, 0xe2, 0x1e, - 0x39, 0xc6, 0xaf, 0xab, 0xba, 0x06, 0xd5, 0xb8, 0x02, 0xa1, 0xfc, 0x33, 0x58, 0x1e, 0x50, 0x5b, - 0x9e, 0xee, 0xf5, 0xdd, 0x89, 0x94, 0x8b, 0x0c, 0x76, 0x9f, 0xb8, 0x7c, 0x95, 0x0a, 0xaa, 0x6c, - 0x2a, 0xd7, 0x83, 0xaa, 0x9b, 0x3c, 0x61, 0xe0, 0x3d, 0xa0, 0x79, 0xc8, 0x9a, 0xb6, 0x50, 0x97, - 0x35, 0x6d, 0xe5, 0x29, 0x14, 0xfd, 0x1d, 0x17, 0xdd, 0x1f, 0xa4, 0x8e, 0xd9, 0x71, 0xf7, 0x67, - 0x3f, 0xbb, 0xdc, 0x8d, 0xed, 0x10, 0xa2, 0xcb, 0xfb, 0x00, 0x7e, 0x24, 0x93, 0x1b, 0xff, 0x85, - 0x21, 0x8a, 0xd5, 0x00, 0xbb, 0xf2, 0xef, 0xa1, 0xf8, 0x16, 0x18, 0x84, 0xe1, 0x0f, 0xc2, 0x08, - 0xc5, 0xbb, 0xec, 0x6b, 0xc5, 0xbb, 0x0f, 0x61, 0xda, 0xf5, 0x74, 0x0f, 0x8b, 0xe4, 0x68, 0x75, - 0x98, 0x38, 0x35, 0x02, 0xab, 0x9c, 0x1f, 0x5d, 0x04, 0x68, 0x3b, 0x58, 0xf7, 0xb0, 0xa1, 0xe9, - 0x3c, 0x38, 0xe7, 0xd4, 0xa2, 0xa0, 0xd4, 0x3d, 0xb4, 0x31, 0x48, 0xf0, 0xa6, 0x99, 0x61, 0xd7, - 0x87, 0x69, 0x0e, 0x2d, 0xd5, 0x20, 0xd5, 0xf3, 0x83, 0xc5, 0xcc, 0x98, 0xc1, 0x42, 0x28, 0xe0, - 0x52, 0x81, 0x50, 0x38, 0x3b, 0x3a, 0x14, 0x72, 0xd1, 0x71, 0x42, 0x61, 0x61, 0x74, 0x28, 0x14, - 0xca, 0x86, 0x86, 0xc2, 0x3f, 0x66, 0x2c, 0xfb, 0xb7, 0x0c, 0x54, 0xe3, 0xcf, 0xa0, 0x88, 0x3d, - 0xf7, 0x60, 0xc6, 0x65, 0x94, 0x71, 0x02, 0x9a, 0x90, 0x15, 0x12, 0xe8, 0x29, 0xe4, 0x4d, 0xeb, - 0x80, 0xb0, 0xb3, 0x59, 0x62, 0x4a, 0x92, 0xd6, 0xeb, 0x5a, 0xc3, 0x3a, 0x20, 0x7c, 0x92, 0x98, - 0x86, 0xda, 0x87, 0x50, 0xf4, 0x49, 0x13, 0x8d, 0x6d, 0x1b, 0x96, 0x22, 0x2e, 0xcb, 0x73, 0x78, - 0xdf, 0xd3, 0x33, 0x93, 0x79, 0xba, 0xf2, 0x55, 0x36, 0xf8, 0x24, 0x3e, 0x36, 0xbb, 0x1e, 0x76, - 0x62, 0x4f, 0xe2, 0x03, 0xa9, 0x9d, 0x3f, 0x86, 0xef, 0x8e, 0xd4, 0xce, 0x53, 0x4d, 0xf1, 0x30, - 0xfd, 0x0c, 0xe6, 0x99, 0xaf, 0x69, 0x2e, 0xee, 0xb2, 0x3c, 0x42, 0xe4, 0x74, 0x3f, 0x1a, 0xa6, - 0x86, 0x5b, 0xc2, 0x3d, 0xb6, 0x25, 0xe4, 0xf8, 0x0c, 0x96, 0xbb, 0x41, 0x5a, 0xed, 0x13, 0x40, - 0x71, 0xa6, 0x89, 0xe6, 0xb4, 0x45, 0x43, 0x1c, 0x3d, 0xc0, 0x26, 0x6c, 0x7e, 0x07, 0xcc, 0x8c, - 0x71, 0x7c, 0x85, 0x1b, 0xac, 0x0a, 0x09, 0xe5, 0x37, 0x39, 0x80, 0xc1, 0xcd, 0xff, 0x47, 0xb1, - 0xed, 0x13, 0x3f, 0xae, 0xf0, 0xfc, 0xec, 0xda, 0x30, 0xc5, 0x89, 0x11, 0x65, 0x3b, 0x1c, 0x51, - 0x78, 0xa6, 0x76, 0x73, 0xa8, 0x9a, 0xef, 0x6d, 0x2c, 0x79, 0x06, 0xe7, 0xa2, 0xbe, 0x21, 0x02, - 0xc9, 0x3a, 0x4c, 0x9b, 0x1e, 0xee, 0x71, 0x10, 0x27, 0xf1, 0xd0, 0x15, 0x10, 0xe2, 0xac, 0xca, - 0x2a, 0x14, 0x1b, 0x3d, 0xbd, 0x83, 0x5b, 0x36, 0x6e, 0xd3, 0x4e, 0x4d, 0xda, 0x10, 0x86, 0xf0, - 0x86, 0xb2, 0x0e, 0x85, 0x9f, 0xe0, 0x53, 0xfe, 0x50, 0x8f, 0x69, 0xa8, 0xf2, 0xcf, 0x05, 0x58, - 0x66, 0x7b, 0xc5, 0x86, 0x84, 0x50, 0x54, 0xec, 0x92, 0xbe, 0xd3, 0xc6, 0x2e, 0x5b, 0x6d, 0xbb, - 0xaf, 0xd9, 0xd8, 0x31, 0x89, 0x21, 0x4e, 0xf8, 0xc5, 0xb6, 0xdd, 0xdf, 0x61, 0x04, 0x74, 0x01, - 0x68, 0x43, 0xfb, 0xb2, 0x4f, 0x84, 0x23, 0xe6, 0xd4, 0x42, 0xdb, 0xee, 0xff, 0x29, 0x6d, 0x4b, - 0x59, 0xf7, 0x50, 0x77, 0xb0, 0xcb, 0xfc, 0x8c, 0xcb, 0xb6, 0x18, 0x01, 0xdd, 0x86, 0xb3, 0x3d, - 0xdc, 0x23, 0xce, 0xa9, 0xd6, 0x35, 0x7b, 0xa6, 0xa7, 0x99, 0x96, 0xb6, 0x7f, 0xea, 0x61, 0x57, - 0xf8, 0x14, 0xe2, 0x37, 0x9f, 0xd1, 0x7b, 0x0d, 0xeb, 0x11, 0xbd, 0x83, 0x14, 0x28, 0x13, 0xd2, - 0xd3, 0xdc, 0x36, 0x71, 0xb0, 0xa6, 0x1b, 0x5f, 0xb0, 0xed, 0x33, 0xa7, 0x96, 0x08, 0xe9, 0xb5, - 0x28, 0xad, 0x6e, 0x7c, 0x81, 0xde, 0x86, 0x52, 0xdb, 0xee, 0xbb, 0xd8, 0xd3, 0xe8, 0x0f, 0xdb, - 0x1d, 0x8b, 0x2a, 0x70, 0xd2, 0x86, 0xdd, 0x77, 0x03, 0x0c, 0x3d, 0x3a, 0xff, 0xb3, 0x41, 0x86, - 0xe7, 0xb8, 0xe7, 0xa2, 0x97, 0x00, 0x86, 0xe9, 0x1e, 0x89, 0x51, 0x19, 0x6c, 0x7d, 0x3e, 0x4a, - 0xd9, 0x5e, 0xe3, 0x53, 0xb6, 0xb6, 0x69, 0xba, 0x47, 0x6c, 0x02, 0xb8, 0x2b, 0x16, 0x0d, 0xd9, - 0x46, 0xab, 0x30, 0xb7, 0xdf, 0x3d, 0x32, 0x89, 0x76, 0x82, 0xcd, 0xce, 0xa1, 0x57, 0xc5, 0xec, - 0xd4, 0x56, 0x62, 0xb4, 0x97, 0x8c, 0x84, 0x9a, 0x70, 0x26, 0xc8, 0xa2, 0x19, 0xf8, 0xd8, 0x6c, - 0xe3, 0xea, 0x01, 0x33, 0x62, 0x25, 0x6e, 0x04, 0x17, 0xdb, 0x64, 0x5c, 0xea, 0x62, 0x40, 0x13, - 0x27, 0xa1, 0x16, 0x9c, 0xe5, 0xfa, 0xb8, 0x22, 0xcd, 0xc1, 0xba, 0xa1, 0xed, 0xdb, 0x6e, 0xb5, - 0xc3, 0x34, 0x5e, 0x8a, 0x6b, 0xdc, 0x3d, 0x74, 0x88, 0xe7, 0x75, 0xb1, 0xd0, 0x89, 0x98, 0xb8, - 0x68, 0x60, 0xdd, 0x78, 0x64, 0xd3, 0x3d, 0xff, 0x5c, 0x48, 0xe9, 0x89, 0x63, 0x7a, 0x98, 0x69, - 0x3d, 0x1c, 0x53, 0xeb, 0x99, 0x80, 0xd6, 0x97, 0x54, 0x3a, 0x49, 0x2d, 0xb3, 0xb5, 0xb1, 0x6d, - 0xbb, 0x55, 0xf3, 0x35, 0xd4, 0x52, 0x63, 0xa9, 0x30, 0x7a, 0x09, 0xcb, 0x09, 0xd6, 0x32, 0xbd, - 0x5f, 0x8c, 0xa9, 0x77, 0x29, 0x6a, 0x2e, 0x53, 0x7c, 0x19, 0xca, 0x47, 0xd8, 0xb1, 0x70, 0x57, - 0xe3, 0xae, 0x5a, 0x3d, 0x62, 0xde, 0x38, 0xc7, 0x89, 0xcf, 0x19, 0x0d, 0xdd, 0x04, 0xe1, 0xc8, - 0x9a, 0x83, 0x5d, 0xec, 0x1c, 0x73, 0xb4, 0xb0, 0xcb, 0x38, 0x17, 0xf9, 0x1d, 0x75, 0x70, 0x03, - 0x35, 0x40, 0x10, 0x35, 0xf7, 0x84, 0x9d, 0x5a, 0xb1, 0xeb, 0x56, 0x7b, 0x63, 0xe0, 0x32, 0x15, - 0x2e, 0xd6, 0xf2, 0xa5, 0xd0, 0x3a, 0xcc, 0xf6, 0xd9, 0x93, 0xe5, 0x56, 0x2d, 0x36, 0xce, 0x6a, - 0x5c, 0xc1, 0x1e, 0x63, 0x50, 0x25, 0x63, 0xed, 0x01, 0xcc, 0x87, 0xdd, 0x77, 0xa2, 0x68, 0x77, - 0x0f, 0xe6, 0x42, 0xce, 0x87, 0x20, 0x1f, 0x40, 0x68, 0xd9, 0x35, 0x3a, 0x07, 0x33, 0x9c, 0x87, - 0x89, 0x97, 0x55, 0xd1, 0x52, 0x3e, 0x82, 0xf9, 0xf0, 0xa4, 0x27, 0x4a, 0x23, 0xc8, 0x3b, 0x32, - 0x91, 0xc8, 0xab, 0xec, 0x5a, 0xd9, 0x84, 0x19, 0x3e, 0x8c, 0x44, 0x50, 0x05, 0x41, 0xfe, 0x50, - 0x77, 0x0c, 0x11, 0x9c, 0xd8, 0x35, 0xa5, 0xb9, 0xe4, 0xc0, 0x13, 0x21, 0x89, 0x5d, 0x2b, 0x3a, - 0x94, 0x43, 0xb0, 0x20, 0x65, 0x62, 0xf8, 0x9f, 0x50, 0x46, 0xaf, 0x59, 0xf7, 0xa4, 0x2b, 0x47, - 0xce, 0xae, 0x29, 0xcd, 0x3b, 0xb5, 0x25, 0x3c, 0xc3, 0xae, 0xe9, 0x14, 0x75, 0xf1, 0xb1, 0x80, - 0x8e, 0x8b, 0x2a, 0x6f, 0x28, 0x06, 0xc0, 0x86, 0x6e, 0xeb, 0xfb, 0x66, 0xd7, 0xf4, 0x4e, 0xd1, - 0x75, 0xa8, 0xe8, 0x86, 0xa1, 0xb5, 0x25, 0xc5, 0xc4, 0x12, 0xd0, 0x5f, 0xd0, 0x0d, 0x63, 0x23, - 0x40, 0x46, 0x3f, 0x80, 0x45, 0xc3, 0x21, 0x76, 0x98, 0x97, 0x23, 0xfc, 0x15, 0x7a, 0x23, 0xc8, - 0xac, 0xfc, 0x72, 0x1a, 0x2e, 0x86, 0x43, 0x53, 0x14, 0x7a, 0xfd, 0x04, 0xe6, 0x22, 0xbd, 0xa6, - 0xb8, 0xd7, 0xc0, 0x5a, 0x35, 0x24, 0x11, 0x81, 0x22, 0xb3, 0x31, 0x28, 0x32, 0x11, 0xdc, 0xcd, - 0xbd, 0x51, 0x70, 0x37, 0xff, 0x46, 0xc0, 0xdd, 0xe9, 0xc9, 0xc0, 0xdd, 0x77, 0x59, 0x85, 0x47, - 0x4a, 0x33, 0x5f, 0xe3, 0xfb, 0x4b, 0xd9, 0xe7, 0xb1, 0x64, 0x25, 0x28, 0x02, 0x02, 0xcf, 0x4e, - 0x02, 0x02, 0x17, 0x52, 0x41, 0x60, 0xea, 0x35, 0xb6, 0xad, 0x3b, 0x3d, 0xe2, 0x48, 0x94, 0xb7, - 0x5a, 0x64, 0x26, 0x2c, 0x48, 0xba, 0x40, 0x78, 0x53, 0xf1, 0x60, 0x48, 0xc5, 0x83, 0x2f, 0xc1, - 0x9c, 0x45, 0x34, 0x0b, 0x9f, 0x68, 0x74, 0x2d, 0xdd, 0x6a, 0x89, 0x2f, 0xac, 0x45, 0x9a, 0xf8, - 0x64, 0x87, 0x52, 0x62, 0x88, 0xf1, 0xdc, 0x84, 0x88, 0xf1, 0x3f, 0x64, 0x60, 0x29, 0xec, 0x9c, - 0x02, 0xdd, 0x7b, 0x02, 0x45, 0x47, 0xee, 0xa0, 0xc2, 0x21, 0xaf, 0x8f, 0xbd, 0xe5, 0xaa, 0x03, - 0x59, 0xf4, 0xd3, 0x54, 0x50, 0xf9, 0xd6, 0x28, 0x7d, 0xa3, 0x60, 0x65, 0xa5, 0x0d, 0xe7, 0x5e, - 0x9a, 0x96, 0x41, 0x4e, 0xdc, 0xa8, 0xf9, 0x8d, 0xb8, 0xf9, 0x3f, 0x48, 0xd8, 0xac, 0x23, 0xc2, - 0x49, 0x03, 0x50, 0xfe, 0x36, 0x03, 0xe7, 0x53, 0x19, 0x23, 0x39, 0x55, 0x26, 0x9a, 0x53, 0x89, - 0x7c, 0xac, 0x4d, 0xfa, 0x96, 0x17, 0xc8, 0xc7, 0x36, 0x58, 0xe9, 0x8c, 0x27, 0x3e, 0x5a, 0x4f, - 0x7f, 0x65, 0xf6, 0xfa, 0x3d, 0x11, 0xfd, 0xa8, 0xba, 0xe7, 0x9c, 0xf2, 0x1a, 0x19, 0x99, 0x52, - 0x87, 0x45, 0xdf, 0xca, 0xa1, 0xe0, 0x76, 0x00, 0xac, 0xce, 0x86, 0xc1, 0x6a, 0x0b, 0x66, 0x44, - 0xc4, 0x7f, 0x13, 0xb5, 0xbd, 0x4b, 0x50, 0xb2, 0xb1, 0xd3, 0x33, 0x5d, 0xd7, 0x0f, 0x3a, 0x45, - 0x35, 0x48, 0x52, 0x7e, 0x3d, 0x0b, 0x0b, 0xd1, 0xf5, 0xfb, 0x38, 0x86, 0x8d, 0x5f, 0x4e, 0x08, - 0x87, 0xd1, 0x81, 0x06, 0x8e, 0x53, 0xb7, 0x65, 0x36, 0x9e, 0x4d, 0x43, 0xb2, 0xfc, 0xcc, 0x5d, - 0xa4, 0xea, 0x74, 0x46, 0xda, 0xa4, 0xd7, 0xd3, 0x2d, 0x43, 0x96, 0x64, 0x45, 0x93, 0xce, 0x9f, - 0xee, 0x74, 0xe8, 0xb4, 0x53, 0x32, 0xbb, 0xa6, 0x8b, 0x77, 0x42, 0x9c, 0x23, 0xd3, 0x62, 0x18, - 0x3b, 0x0b, 0x5c, 0x45, 0x15, 0x04, 0x69, 0xd3, 0x74, 0xd0, 0x1a, 0xe4, 0xb1, 0x75, 0x2c, 0xcf, - 0x4b, 0x09, 0x35, 0x5b, 0x79, 0x2e, 0x50, 0x19, 0x1f, 0xba, 0x05, 0x33, 0x3d, 0xea, 0x16, 0x12, - 0x00, 0x5a, 0x4e, 0x29, 0x5d, 0xaa, 0x82, 0x8d, 0xe6, 0x13, 0x3c, 0x83, 0x92, 0x28, 0x4f, 0x42, - 0x3e, 0x21, 0xf2, 0x25, 0xc9, 0x88, 0xb6, 0xfc, 0xd3, 0x60, 0x31, 0xed, 0x18, 0x17, 0x59, 0x8a, - 0xc4, 0x23, 0xe1, 0x6e, 0xf8, 0x48, 0x08, 0x4c, 0xd7, 0xfa, 0x68, 0x5d, 0xc3, 0xe1, 0xf6, 0xf3, - 0x50, 0xe8, 0x92, 0x0e, 0x77, 0xa3, 0x12, 0xaf, 0xf6, 0x77, 0x49, 0x87, 0x79, 0xd1, 0x12, 0x3d, - 0x1d, 0x1b, 0xa6, 0xc5, 0x02, 0x5c, 0x41, 0xe5, 0x0d, 0xfa, 0xf0, 0xb1, 0x0b, 0x8d, 0x58, 0x6d, - 0x5c, 0x2d, 0xb3, 0x5b, 0x45, 0x46, 0xd9, 0xb6, 0xda, 0xec, 0xbc, 0xe5, 0x79, 0xa7, 0xd5, 0x79, - 0x46, 0xa7, 0x97, 0xe8, 0x81, 0xc4, 0xe8, 0x16, 0xd2, 0x80, 0x8f, 0xa4, 0x60, 0x28, 0x21, 0xba, - 0x47, 0x30, 0x7b, 0xc2, 0x03, 0x41, 0xb5, 0xc2, 0xe4, 0xaf, 0x8d, 0x0e, 0x29, 0x42, 0x83, 0x14, - 0xa4, 0x47, 0x0e, 0x0b, 0x7b, 0x34, 0x9e, 0x13, 0x1a, 0xc9, 0xaa, 0x06, 0x3f, 0x30, 0x59, 0xd8, - 0xdb, 0x11, 0x24, 0x3a, 0x0d, 0xec, 0xa4, 0xa3, 0x99, 0x06, 0x3b, 0x91, 0x14, 0xd5, 0x59, 0xd6, - 0x6e, 0x18, 0x7f, 0xcc, 0x93, 0xf3, 0x6f, 0x32, 0x70, 0x6e, 0x83, 0xa1, 0x0a, 0x81, 0x28, 0x38, - 0x09, 0x10, 0x7e, 0xd7, 0x2f, 0x3d, 0xa4, 0xa2, 0xd6, 0xd1, 0x59, 0x13, 0x02, 0xa8, 0x01, 0xf3, - 0x52, 0xb9, 0x50, 0x91, 0x1b, 0xbb, 0x7a, 0x51, 0x76, 0x83, 0x4d, 0xe5, 0x01, 0x2c, 0xc7, 0x46, - 0x21, 0x10, 0x80, 0x55, 0x98, 0x1b, 0x44, 0x3b, 0x7f, 0x10, 0x25, 0x9f, 0xd6, 0x30, 0x94, 0x7b, - 0x70, 0xb6, 0xe5, 0xe9, 0x8e, 0x17, 0x9b, 0x82, 0x31, 0x64, 0x59, 0x01, 0x23, 0x2c, 0x2b, 0x6a, - 0x0c, 0x2d, 0x58, 0x6a, 0x79, 0xc4, 0x7e, 0x0d, 0xa5, 0x34, 0x66, 0xd1, 0xf1, 0x93, 0xbe, 0xdc, - 0x5d, 0x64, 0x53, 0x59, 0xe6, 0xe5, 0x96, 0x78, 0x6f, 0xf7, 0xe1, 0x1c, 0xaf, 0x76, 0xbc, 0xce, - 0x20, 0xce, 0xcb, 0x5a, 0x4b, 0x5c, 0xef, 0x73, 0x38, 0x33, 0xd8, 0xb9, 0x07, 0x48, 0xe6, 0x9d, - 0x30, 0x92, 0x79, 0x69, 0xc8, 0xaa, 0x87, 0x80, 0xcc, 0x5f, 0x67, 0x03, 0xbb, 0x42, 0x0a, 0x8e, - 0x79, 0x3f, 0x8c, 0x63, 0xbe, 0x33, 0x4a, 0x77, 0x08, 0xc6, 0x8c, 0x7b, 0x6d, 0x2e, 0xc1, 0x6b, - 0x3f, 0x8f, 0x81, 0x9d, 0xf9, 0x34, 0xb4, 0x38, 0x62, 0xed, 0x1f, 0x04, 0xeb, 0x54, 0x39, 0xd6, - 0xe9, 0x77, 0xed, 0x17, 0xa7, 0xee, 0x46, 0xb0, 0xce, 0xd5, 0x91, 0xf6, 0xfa, 0x50, 0xe7, 0xdf, - 0xe7, 0xa1, 0xe8, 0xdf, 0x8b, 0xcd, 0x79, 0x7c, 0xda, 0xb2, 0x09, 0xd3, 0x16, 0xdc, 0xbf, 0x73, - 0xdf, 0x6a, 0xff, 0xce, 0x8f, 0xbd, 0x7f, 0x5f, 0x80, 0x22, 0xbb, 0xd0, 0x1c, 0x7c, 0x20, 0xf6, - 0xe3, 0x02, 0x23, 0xa8, 0xf8, 0x60, 0xe0, 0x86, 0x33, 0x13, 0xb9, 0x61, 0x04, 0x5d, 0x9d, 0x8d, - 0xa2, 0xab, 0x1f, 0xfb, 0xfb, 0x29, 0xdf, 0x82, 0xaf, 0x0e, 0xd1, 0x9b, 0xb8, 0x93, 0x36, 0xc3, - 0x3b, 0x29, 0xdf, 0x95, 0xdf, 0x1b, 0xa6, 0xe5, 0x7b, 0x8b, 0xad, 0xee, 0x71, 0x6c, 0x35, 0xe8, - 0x8b, 0x22, 0xb2, 0xde, 0x07, 0xf0, 0x83, 0x88, 0x04, 0x58, 0x2f, 0x0c, 0x19, 0xa3, 0x1a, 0x60, - 0xa7, 0x6a, 0x43, 0x4b, 0x33, 0x28, 0xc0, 0x8e, 0x17, 0x1f, 0x53, 0xaa, 0xaf, 0x5f, 0x15, 0x02, - 0xf1, 0x25, 0xa5, 0x62, 0xf9, 0x71, 0x0c, 0xd5, 0x9f, 0xd0, 0x8b, 0xef, 0x84, 0x41, 0xfd, 0xd7, - 0xf4, 0xba, 0x18, 0xa6, 0xcf, 0xf2, 0x1e, 0xdd, 0x11, 0xb7, 0x39, 0xe6, 0x5a, 0x14, 0x94, 0x3a, - 0x3b, 0x57, 0x1c, 0x98, 0x96, 0xe9, 0x1e, 0xf2, 0xfb, 0x33, 0xfc, 0x5c, 0x21, 0x49, 0x75, 0xf6, - 0xce, 0x1f, 0x7e, 0x65, 0x7a, 0x5a, 0x9b, 0x18, 0x98, 0xf9, 0xf4, 0xb4, 0x5a, 0xa0, 0x84, 0x0d, - 0x62, 0xe0, 0xc1, 0x93, 0x57, 0x78, 0xbd, 0x27, 0xaf, 0x18, 0x79, 0xf2, 0xce, 0xc1, 0x8c, 0x83, - 0x75, 0x97, 0x58, 0xe2, 0xa0, 0x2b, 0x5a, 0x74, 0x69, 0x7a, 0xd8, 0x75, 0x69, 0x4f, 0x22, 0xd9, - 0x13, 0xcd, 0x40, 0x92, 0x3a, 0x37, 0x32, 0x49, 0x1d, 0x52, 0x09, 0x8d, 0x24, 0xa9, 0xe5, 0x91, - 0x49, 0xea, 0x38, 0x85, 0xd0, 0x40, 0x9a, 0x3e, 0x3f, 0x5e, 0x9a, 0x1e, 0xcc, 0x6a, 0x17, 0xc2, - 0x59, 0xed, 0x53, 0x98, 0x3d, 0x26, 0xdd, 0x7e, 0x0f, 0xbb, 0x02, 0xd5, 0x5e, 0x1b, 0x6d, 0xdd, - 0x0b, 0x2e, 0x20, 0x5e, 0x88, 0x12, 0xe2, 0xe1, 0xe3, 0x3a, 0xfe, 0x16, 0xc7, 0xf5, 0x60, 0xf2, - 0x79, 0xf0, 0x7d, 0x49, 0x3e, 0x6b, 0xbb, 0x30, 0x17, 0x1c, 0x77, 0x82, 0xec, 0x5a, 0x50, 0x36, - 0xf1, 0x28, 0xc4, 0x15, 0x04, 0x03, 0x56, 0x01, 0x66, 0x38, 0x51, 0xf9, 0x7d, 0x06, 0x96, 0x63, - 0x41, 0x46, 0x04, 0xaf, 0xbb, 0x91, 0x0a, 0xf3, 0xea, 0xc8, 0x35, 0xf2, 0x0b, 0xcc, 0x4f, 0x42, - 0x05, 0xe6, 0x0f, 0x46, 0x0b, 0xbe, 0xf1, 0xfa, 0xf2, 0x5f, 0x66, 0xe0, 0xed, 0x3d, 0xdb, 0x88, - 0xe4, 0xbb, 0x62, 0xd9, 0xc7, 0x0f, 0xa3, 0x1f, 0xcb, 0x73, 0x53, 0x76, 0x52, 0xd7, 0xe2, 0x72, - 0x8a, 0x02, 0x97, 0xd2, 0xcd, 0x10, 0x09, 0xe4, 0xcf, 0x61, 0x61, 0xeb, 0x15, 0x6e, 0xb7, 0x4e, - 0xad, 0xf6, 0x04, 0xa6, 0x55, 0x20, 0xd7, 0xee, 0x19, 0x02, 0x7d, 0xa5, 0x97, 0xc1, 0x9c, 0x38, - 0x17, 0xce, 0x89, 0x35, 0xa8, 0x0c, 0x7a, 0x10, 0xcb, 0x7b, 0x8e, 0x2e, 0xaf, 0x41, 0x99, 0xa9, - 0xf2, 0x39, 0x55, 0xb4, 0x04, 0x1d, 0x3b, 0x0e, 0x1b, 0x33, 0xa7, 0x63, 0xc7, 0x09, 0xc7, 0xce, - 0x5c, 0x38, 0x76, 0x2a, 0xbf, 0xcc, 0x40, 0x89, 0xf6, 0xf0, 0xad, 0xec, 0x17, 0xc7, 0xd6, 0xdc, - 0xe0, 0xd8, 0xea, 0x9f, 0x7e, 0xf3, 0xc1, 0xd3, 0xef, 0xc0, 0xf2, 0x69, 0x46, 0x8e, 0x5b, 0x3e, - 0xe3, 0xd3, 0xb1, 0xe3, 0x28, 0x97, 0x60, 0x8e, 0xdb, 0x26, 0x46, 0x5e, 0x81, 0x5c, 0xdf, 0xe9, - 0x4a, 0x3f, 0xea, 0x3b, 0x5d, 0xe5, 0xaf, 0x32, 0x50, 0xae, 0x7b, 0x9e, 0xde, 0x3e, 0x9c, 0x60, - 0x00, 0xbe, 0x71, 0xd9, 0xa0, 0x71, 0xf1, 0x41, 0x0c, 0xcc, 0xcd, 0xa7, 0x98, 0x3b, 0x1d, 0x32, - 0x57, 0x81, 0x79, 0x69, 0x4b, 0xaa, 0xc1, 0x4d, 0x40, 0x3b, 0xc4, 0xf1, 0x1e, 0x13, 0xe7, 0x44, - 0x77, 0x8c, 0xc9, 0xce, 0xa3, 0x08, 0xf2, 0xe2, 0xad, 0xf8, 0xdc, 0xb5, 0x69, 0x95, 0x5d, 0x2b, - 0x57, 0xe1, 0x4c, 0x48, 0x5f, 0x6a, 0xc7, 0x9f, 0x40, 0x89, 0xed, 0x82, 0xe2, 0x60, 0x72, 0x3b, - 0x58, 0xfb, 0x1d, 0x6b, 0xcf, 0x54, 0xfe, 0x04, 0x16, 0x69, 0xb6, 0xc4, 0xe8, 0xfe, 0xa3, 0xf8, - 0xa3, 0x48, 0xd6, 0x7e, 0x31, 0x45, 0x51, 0x24, 0x63, 0xff, 0x5d, 0x16, 0xa6, 0x19, 0x3d, 0x96, - 0xc1, 0x5c, 0xa0, 0xfb, 0x82, 0x4d, 0x34, 0x4f, 0xef, 0xf8, 0xdf, 0x20, 0x50, 0xc2, 0xae, 0xde, - 0x61, 0x58, 0x04, 0xbb, 0x69, 0x98, 0x1d, 0xec, 0x7a, 0xf2, 0x43, 0x84, 0x12, 0xa5, 0x6d, 0x72, - 0x12, 0xab, 0xcc, 0x98, 0x7f, 0xc6, 0xb3, 0xf0, 0xbc, 0xca, 0xae, 0xd1, 0x1a, 0x7f, 0x2d, 0x76, - 0x1c, 0xa8, 0x9e, 0xbd, 0x34, 0x5b, 0x83, 0x42, 0x04, 0x9d, 0xf7, 0xdb, 0xe8, 0x61, 0x74, 0x07, - 0xbc, 0x92, 0x32, 0xe2, 0xe4, 0x7d, 0xef, 0x3b, 0xda, 0x18, 0xb6, 0x00, 0x05, 0xd7, 0x46, 0x78, - 0xc1, 0x2d, 0x98, 0x61, 0x4b, 0x27, 0x33, 0xd8, 0xe5, 0x14, 0x53, 0x55, 0xc1, 0xa6, 0xe8, 0x80, - 0xf8, 0xb2, 0x87, 0xb2, 0xd6, 0xc9, 0x7d, 0x65, 0x48, 0x16, 0xfb, 0x4f, 0x19, 0x38, 0x13, 0xea, - 0x43, 0xd8, 0x7a, 0x33, 0xdc, 0x49, 0xaa, 0xa9, 0xa2, 0x83, 0x8d, 0xd0, 0x46, 0x75, 0x2b, 0xcd, - 0xa4, 0xef, 0x68, 0x93, 0xfa, 0x5d, 0x06, 0xa0, 0xde, 0xf7, 0x0e, 0x05, 0xf6, 0x1b, 0xf4, 0x97, - 0x4c, 0xc4, 0x5f, 0x6a, 0x50, 0xb0, 0x75, 0xd7, 0x3d, 0x21, 0x8e, 0x3c, 0x77, 0xfa, 0x6d, 0x86, - 0xd2, 0xf6, 0xbd, 0x43, 0x59, 0xf8, 0xa3, 0xd7, 0xe8, 0x1d, 0x98, 0xe7, 0x5f, 0xe3, 0x68, 0xba, - 0x61, 0x38, 0xd8, 0x75, 0x45, 0x05, 0xb0, 0xcc, 0xa9, 0x75, 0x4e, 0xa4, 0x6c, 0xa6, 0x81, 0x2d, - 0xcf, 0xf4, 0x4e, 0x35, 0x8f, 0x1c, 0x61, 0x4b, 0x9c, 0x1f, 0xcb, 0x92, 0xba, 0x4b, 0x89, 0x94, - 0xcd, 0xc1, 0x1d, 0xd3, 0xf5, 0x1c, 0xc9, 0x26, 0xab, 0x4d, 0x82, 0xca, 0xd8, 0xe8, 0xa2, 0x54, - 0x76, 0xfa, 0xdd, 0x2e, 0x9f, 0xe2, 0xd7, 0x5f, 0xf6, 0xf7, 0xc5, 0x80, 0xb2, 0x69, 0x4f, 0xda, - 0x60, 0xd2, 0xc4, 0x70, 0xdf, 0x20, 0x50, 0xf6, 0x3e, 0x2c, 0x06, 0xc6, 0x20, 0xdc, 0x2a, 0x94, - 0xe8, 0x67, 0xc2, 0x89, 0xbe, 0xf2, 0x04, 0x10, 0xc7, 0x86, 0xbe, 0xe5, 0xb8, 0x95, 0xb3, 0x70, - 0x26, 0xa4, 0x48, 0xe4, 0x07, 0x37, 0xa0, 0x2c, 0x5e, 0xbd, 0x14, 0x8e, 0x72, 0x1e, 0x0a, 0x34, - 0xce, 0xb7, 0x4d, 0x43, 0x56, 0x85, 0x67, 0x6d, 0x62, 0x6c, 0x98, 0x86, 0xa3, 0xbc, 0x84, 0xb2, - 0xca, 0xfb, 0x11, 0xbc, 0x8f, 0x61, 0x5e, 0xbc, 0xa8, 0xa9, 0x85, 0x5e, 0x80, 0x4e, 0xfa, 0xc0, - 0x26, 0xd8, 0x89, 0x5a, 0xb6, 0x82, 0x4d, 0xc5, 0x80, 0x1a, 0x4f, 0x64, 0x42, 0xea, 0xe5, 0x60, - 0x1f, 0x83, 0xfc, 0xb4, 0x6c, 0x64, 0x2f, 0x61, 0xf9, 0xb2, 0x13, 0x6c, 0x2a, 0x17, 0xe1, 0x42, - 0x62, 0x2f, 0x62, 0x26, 0x6c, 0xa8, 0x0c, 0x6e, 0x18, 0xa6, 0x2c, 0x8f, 0xb3, 0xb2, 0x77, 0x26, - 0x50, 0xf6, 0x3e, 0xe7, 0xa7, 0xae, 0x59, 0xb9, 0xb5, 0xb2, 0xbc, 0x74, 0x70, 0x24, 0xcb, 0xa5, - 0x1d, 0xc9, 0xf2, 0xa1, 0x23, 0x99, 0xd2, 0xf2, 0xe7, 0x53, 0x1c, 0x95, 0x1f, 0xb1, 0x23, 0x3d, - 0xef, 0x5b, 0x06, 0x44, 0x65, 0xd8, 0x28, 0x39, 0xab, 0x1a, 0x90, 0x52, 0xae, 0x43, 0x39, 0x1c, - 0x1a, 0x03, 0x71, 0x2e, 0x13, 0x8b, 0x73, 0xf3, 0x91, 0x10, 0xf7, 0x61, 0x24, 0x2f, 0x4f, 0x9f, - 0xe3, 0x48, 0x56, 0xfe, 0x30, 0x14, 0xec, 0x6e, 0x24, 0x54, 0xac, 0xbf, 0xa3, 0x38, 0xb7, 0x24, - 0xf6, 0x83, 0xc7, 0x2e, 0x95, 0x17, 0x83, 0x56, 0x2e, 0x43, 0x69, 0x2f, 0xed, 0xeb, 0xad, 0xbc, - 0x7c, 0x25, 0xec, 0x0e, 0x2c, 0x3d, 0x36, 0xbb, 0xd8, 0x3d, 0x75, 0x3d, 0xdc, 0x6b, 0xb0, 0xa0, - 0x74, 0x60, 0x62, 0x07, 0xad, 0x00, 0xb0, 0x63, 0xa6, 0x4d, 0x4c, 0xff, 0xa3, 0x9e, 0x00, 0x45, - 0xf9, 0xef, 0x0c, 0x2c, 0x0c, 0x04, 0xf7, 0xd8, 0xf1, 0xfa, 0x2d, 0x28, 0xd2, 0xf1, 0xba, 0x9e, - 0xde, 0xb3, 0x65, 0xc5, 0xd2, 0x27, 0xa0, 0xfb, 0x30, 0x7d, 0xe0, 0x4a, 0x58, 0x2f, 0xb1, 0x44, - 0x92, 0x64, 0x88, 0x9a, 0x3f, 0x70, 0x1b, 0x06, 0x7a, 0x00, 0xd0, 0x77, 0xb1, 0x21, 0xaa, 0x94, - 0xb9, 0xb4, 0x1c, 0x66, 0x2f, 0x58, 0xcd, 0xa7, 0x02, 0xfc, 0x6d, 0xb2, 0x87, 0x50, 0x32, 0x2d, - 0x62, 0x60, 0x56, 0xcd, 0x37, 0x04, 0xf2, 0x37, 0x42, 0x1c, 0xb8, 0xc4, 0x9e, 0x8b, 0x0d, 0x05, - 0x8b, 0xbd, 0x50, 0xce, 0xaf, 0x70, 0x94, 0x26, 0x2c, 0xf2, 0xa0, 0x75, 0xe0, 0x1b, 0x2e, 0x3d, - 0x76, 0x75, 0xd8, 0xe8, 0xd8, 0x6c, 0xa9, 0x15, 0x53, 0x24, 0x5c, 0x52, 0x54, 0xb9, 0x07, 0x67, - 0x43, 0xe7, 0xb6, 0x09, 0x0e, 0x52, 0xca, 0x4e, 0x04, 0xcc, 0x1a, 0xb8, 0xb3, 0x80, 0x8a, 0xa4, - 0x37, 0x8f, 0x82, 0x8a, 0x5c, 0x0e, 0x15, 0xb9, 0xca, 0xe7, 0x70, 0x3e, 0x84, 0xba, 0x85, 0x2c, - 0x7a, 0x18, 0xc9, 0x27, 0xdf, 0x1d, 0xa5, 0x35, 0x92, 0x58, 0xfe, 0x6f, 0x06, 0x96, 0x92, 0x18, - 0x5e, 0x13, 0x15, 0xfe, 0x79, 0xca, 0x9b, 0xc3, 0x77, 0xc7, 0x33, 0xeb, 0x0f, 0x82, 0xa8, 0xef, - 0x42, 0x2d, 0x69, 0x3e, 0xe3, 0xab, 0x94, 0x9b, 0x64, 0x95, 0x7e, 0x91, 0x0b, 0x54, 0x47, 0xea, - 0x9e, 0xe7, 0x98, 0xfb, 0x7d, 0xea, 0xf2, 0x6f, 0x1c, 0x71, 0x6c, 0xf8, 0xd8, 0x19, 0x9f, 0xda, - 0xdb, 0x43, 0xc4, 0x07, 0x76, 0x24, 0xe2, 0x67, 0x9f, 0x86, 0xf1, 0x33, 0x5e, 0xf7, 0xb8, 0x33, - 0x9e, 0xbe, 0xef, 0x2d, 0x48, 0xfd, 0x8b, 0x2c, 0xcc, 0x87, 0x97, 0x08, 0x6d, 0x01, 0xe8, 0xbe, - 0xe5, 0xe2, 0x41, 0x79, 0x67, 0xac, 0x61, 0xaa, 0x01, 0x41, 0xf4, 0x1e, 0xe4, 0xda, 0x76, 0x5f, - 0xac, 0x5a, 0x42, 0xb9, 0x7f, 0xc3, 0xee, 0xf3, 0x88, 0x42, 0xd9, 0xe8, 0x49, 0x4f, 0xbc, 0xa4, - 0x98, 0x1a, 0x25, 0xf9, 0x0b, 0x8b, 0x5c, 0x46, 0x30, 0xa3, 0xa7, 0x30, 0x7f, 0xe2, 0x98, 0x9e, - 0xbe, 0xdf, 0xc5, 0x5a, 0x57, 0x3f, 0xc5, 0x8e, 0x88, 0x92, 0x63, 0x04, 0xb2, 0xb2, 0x14, 0x7c, - 0x46, 0xe5, 0x94, 0x3f, 0x87, 0x82, 0xb4, 0x68, 0xc4, 0x8e, 0xb0, 0x0b, 0xcb, 0x7d, 0xca, 0xa6, - 0xb1, 0xb7, 0x7c, 0x2d, 0xdd, 0x22, 0x9a, 0x8b, 0xe9, 0x36, 0x2e, 0xbf, 0x3f, 0x1a, 0x11, 0xa2, - 0x97, 0x98, 0xf4, 0x06, 0x71, 0x70, 0x53, 0xb7, 0x48, 0x8b, 0x8b, 0x2a, 0xc7, 0x50, 0x0a, 0x0c, - 0x70, 0x84, 0x09, 0x0d, 0x58, 0x94, 0x2f, 0x5b, 0xb8, 0xd8, 0x13, 0xdb, 0xcb, 0x58, 0x9d, 0x2f, - 0x08, 0xb9, 0x16, 0xf6, 0xf8, 0x0b, 0x32, 0x0f, 0xe1, 0xbc, 0x8a, 0x89, 0x8d, 0x2d, 0x7f, 0x3d, - 0x9f, 0x91, 0xce, 0x04, 0x11, 0xfc, 0x2d, 0xa8, 0x25, 0xc9, 0xf3, 0xf8, 0x70, 0xe3, 0x2d, 0x28, - 0xc8, 0x4f, 0xf1, 0xd1, 0x2c, 0xe4, 0x76, 0x37, 0x76, 0x2a, 0x53, 0xf4, 0x62, 0x6f, 0x73, 0xa7, - 0x92, 0xb9, 0xd1, 0x83, 0x4a, 0xf4, 0xeb, 0x73, 0xb4, 0x0c, 0x67, 0x76, 0xd4, 0xed, 0x9d, 0xfa, - 0x93, 0xfa, 0x6e, 0x63, 0xbb, 0xa9, 0xed, 0xa8, 0x8d, 0x17, 0xf5, 0xdd, 0xad, 0xca, 0x14, 0x5a, - 0x85, 0x8b, 0xc1, 0x1b, 0x4f, 0xb7, 0x5b, 0xbb, 0xda, 0xee, 0xb6, 0xb6, 0xb1, 0xdd, 0xdc, 0xad, - 0x37, 0x9a, 0x5b, 0x6a, 0x25, 0x83, 0x2e, 0xc2, 0xf9, 0x20, 0xcb, 0xa3, 0xc6, 0x66, 0x43, 0xdd, - 0xda, 0xa0, 0xd7, 0xf5, 0x67, 0x95, 0xec, 0x8d, 0xdb, 0x50, 0x0e, 0x7d, 0x2c, 0x4e, 0x0d, 0xd9, - 0xd9, 0xde, 0xac, 0x4c, 0xa1, 0x32, 0x14, 0x83, 0x7a, 0x0a, 0x90, 0x6f, 0x6e, 0x6f, 0x6e, 0x55, - 0xb2, 0x37, 0xee, 0xc1, 0x42, 0xe4, 0x33, 0x03, 0xb4, 0x08, 0xe5, 0x56, 0xbd, 0xb9, 0xf9, 0x68, - 0xfb, 0x53, 0x4d, 0xdd, 0xaa, 0x6f, 0x7e, 0x56, 0x99, 0x42, 0x4b, 0x50, 0x91, 0xa4, 0xe6, 0xf6, - 0x2e, 0xa7, 0x66, 0x6e, 0x1c, 0x45, 0x9e, 0x2c, 0x8c, 0xce, 0xc2, 0xa2, 0xdf, 0x8d, 0xb6, 0xa1, - 0x6e, 0xd5, 0x77, 0xb7, 0x68, 0xef, 0x21, 0xb2, 0xba, 0xd7, 0x6c, 0x36, 0x9a, 0x4f, 0x2a, 0x19, - 0xaa, 0x75, 0x40, 0xde, 0xfa, 0xb4, 0x41, 0x99, 0xb3, 0x61, 0xe6, 0xbd, 0xe6, 0x4f, 0x9a, 0xdb, - 0x2f, 0x9b, 0x95, 0xdc, 0xfa, 0x3f, 0x2e, 0xc2, 0xbc, 0x4c, 0xef, 0xb0, 0xc3, 0xde, 0x56, 0xda, - 0x81, 0x59, 0xf9, 0x87, 0x0e, 0x09, 0x71, 0x39, 0xfc, 0x37, 0x14, 0xb5, 0xd5, 0x21, 0x1c, 0x22, - 0xcb, 0x9e, 0x42, 0xfb, 0x2c, 0xeb, 0x0d, 0x7c, 0xf6, 0xf1, 0x6e, 0x62, 0x8e, 0x19, 0xfb, 0xd2, - 0xa4, 0x76, 0x75, 0x24, 0x9f, 0xdf, 0x07, 0xa6, 0x89, 0x6d, 0xf0, 0xbb, 0x46, 0x74, 0x35, 0x29, - 0x23, 0x4d, 0xf8, 0x70, 0xb2, 0x76, 0x6d, 0x34, 0xa3, 0xdf, 0xcd, 0x11, 0x54, 0xa2, 0xdf, 0x38, - 0xa2, 0x04, 0x18, 0x37, 0xe5, 0x43, 0xca, 0xda, 0x8d, 0x71, 0x58, 0x83, 0x9d, 0xc5, 0xbe, 0x06, - 0xbc, 0x3e, 0xce, 0xe7, 0x55, 0xa9, 0x9d, 0xa5, 0x7d, 0x89, 0xc5, 0x27, 0x30, 0xfc, 0x49, 0x07, - 0x4a, 0xfc, 0xf4, 0x2e, 0xe1, 0x83, 0xa0, 0xa4, 0x09, 0x4c, 0xfe, 0x3a, 0x44, 0x99, 0x42, 0x87, - 0xb0, 0x10, 0x79, 0x71, 0x04, 0x25, 0x88, 0x27, 0xbf, 0x21, 0x53, 0xbb, 0x3e, 0x06, 0x67, 0xd8, - 0x23, 0x82, 0x2f, 0x8a, 0x24, 0x7b, 0x44, 0xc2, 0x6b, 0x28, 0xc9, 0x1e, 0x91, 0xf8, 0xce, 0x09, - 0x73, 0xee, 0xd0, 0x0b, 0x22, 0x49, 0xce, 0x9d, 0xf4, 0x5a, 0x4a, 0xed, 0xea, 0x48, 0xbe, 0xe0, - 0xa4, 0x45, 0x5e, 0x17, 0x49, 0x9a, 0xb4, 0xe4, 0xd7, 0x51, 0x6a, 0xd7, 0xc7, 0xe0, 0x8c, 0x7a, - 0xc1, 0xa0, 0xf8, 0x9c, 0xe6, 0x05, 0xb1, 0x57, 0x25, 0xd2, 0xbc, 0x20, 0x5e, 0xc7, 0x16, 0x5e, - 0x10, 0x29, 0x1a, 0x5f, 0x1b, 0xa3, 0xac, 0x93, 0xee, 0x05, 0xc9, 0x05, 0x20, 0x65, 0x0a, 0xfd, - 0x45, 0x06, 0xaa, 0x69, 0x25, 0x13, 0x94, 0x90, 0xd5, 0x8d, 0xa8, 0xf2, 0xd4, 0xd6, 0x27, 0x11, - 0xf1, 0xad, 0xf8, 0x12, 0x50, 0x7c, 0xb7, 0x43, 0x3f, 0x48, 0x5a, 0x99, 0x94, 0x3d, 0xb5, 0xf6, - 0xde, 0x78, 0xcc, 0x7e, 0x97, 0x2d, 0x28, 0xc8, 0x22, 0x0d, 0x4a, 0x88, 0xd2, 0x91, 0x12, 0x51, - 0x4d, 0x19, 0xc6, 0xe2, 0x2b, 0x7d, 0x02, 0x79, 0x4a, 0x45, 0x17, 0x93, 0xb9, 0xa5, 0xb2, 0x95, - 0xb4, 0xdb, 0xbe, 0xa2, 0xe7, 0x30, 0xc3, 0xab, 0x12, 0x28, 0x01, 0x6f, 0x08, 0xd5, 0x4e, 0x6a, - 0x97, 0xd2, 0x19, 0x7c, 0x75, 0x3f, 0xe3, 0xff, 0xf5, 0x23, 0x0a, 0x0e, 0xe8, 0x4a, 0xf2, 0x9f, - 0x27, 0x84, 0xeb, 0x1b, 0xb5, 0x77, 0x46, 0x70, 0x05, 0x1f, 0x8a, 0x48, 0xae, 0x7b, 0x75, 0xe4, - 0x81, 0x25, 0xfd, 0xa1, 0x48, 0x3e, 0x12, 0x71, 0x27, 0x89, 0x1f, 0x99, 0x92, 0x9c, 0x24, 0xf5, - 0xa0, 0x9a, 0xe4, 0x24, 0xe9, 0xa7, 0x30, 0x65, 0x0a, 0x79, 0x70, 0x26, 0x01, 0x20, 0x43, 0xef, - 0xa5, 0x39, 0x79, 0x12, 0x5a, 0x57, 0xbb, 0x39, 0x26, 0x77, 0x70, 0xf1, 0xc5, 0x43, 0xff, 0x76, - 0x3a, 0x6a, 0x94, 0xba, 0xf8, 0xd1, 0x47, 0x7c, 0xfd, 0x3f, 0x72, 0x30, 0xc7, 0xc1, 0x4f, 0x91, - 0xc1, 0x7c, 0x06, 0x30, 0xa8, 0x3b, 0xa0, 0xcb, 0xc9, 0x73, 0x12, 0xaa, 0x18, 0xd5, 0xae, 0x0c, - 0x67, 0x0a, 0x3a, 0x5a, 0x00, 0xc3, 0x47, 0x57, 0x46, 0x40, 0xfc, 0xa9, 0x8e, 0x96, 0x50, 0x08, - 0x50, 0xa6, 0xd0, 0x0b, 0x28, 0xfa, 0x60, 0x31, 0x4a, 0x02, 0x9b, 0x23, 0x68, 0x78, 0xed, 0xf2, - 0x50, 0x9e, 0xa0, 0xd5, 0x01, 0x24, 0x38, 0xc9, 0xea, 0x38, 0xe2, 0x9c, 0x64, 0x75, 0x12, 0x9c, - 0x3c, 0x98, 0x13, 0x8e, 0x17, 0xa5, 0xce, 0x49, 0x08, 0xae, 0x4b, 0x9d, 0x93, 0x30, 0xe8, 0xa4, - 0x4c, 0x3d, 0x7a, 0xf7, 0xb7, 0x5f, 0xaf, 0x64, 0xfe, 0xf5, 0xeb, 0x95, 0xa9, 0xaf, 0xbe, 0x59, - 0xc9, 0xfc, 0xf6, 0x9b, 0x95, 0xcc, 0xbf, 0x7c, 0xb3, 0x92, 0xf9, 0xcf, 0x6f, 0x56, 0x32, 0x7f, - 0xfd, 0x5f, 0x2b, 0x53, 0x3f, 0x2d, 0x48, 0xe9, 0xfd, 0x19, 0xf6, 0x8f, 0x5d, 0x1f, 0xfc, 0x5f, - 0x00, 0x00, 0x00, 0xff, 0xff, 0xf4, 0xc1, 0xcb, 0xea, 0x77, 0x4d, 0x00, 0x00, + // 5095 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x3c, 0x4d, 0x73, 0x1b, 0x47, + 0x76, 0xc4, 0x07, 0x49, 0xe0, 0x81, 0x20, 0xc1, 0x16, 0x45, 0x42, 0x90, 0x45, 0x8b, 0x23, 0x59, + 0x5f, 0x6b, 0x51, 0x16, 0xbd, 0x2b, 0x5b, 0x1f, 0x2b, 0x9b, 0x22, 0x29, 0x09, 0x59, 0x09, 0x64, + 0x06, 0xa4, 0x65, 0xaf, 0xb7, 0x6a, 0x76, 0x88, 0x69, 0x82, 0x63, 0x02, 0xd3, 0xe3, 0x99, 0x01, + 0x29, 0xe6, 0x90, 0x72, 0x55, 0x2a, 0x7b, 0xc8, 0x29, 0xe7, 0x3d, 0xee, 0x1e, 0x72, 0xc8, 0x2d, + 0x55, 0x39, 0xe5, 0x94, 0xd4, 0x56, 0x6a, 0x2f, 0x5b, 0x95, 0x53, 0x2a, 0x1f, 0x97, 0xd8, 0xb9, + 0xed, 0x21, 0x95, 0x9f, 0x90, 0xea, 0xaf, 0xc1, 0x7c, 0xe2, 0x83, 0x96, 0x77, 0x9d, 0x13, 0xa6, + 0xdf, 0xbc, 0xf7, 0xfa, 0x75, 0xf7, 0xeb, 0xd7, 0xef, 0xa3, 0x07, 0x50, 0xd4, 0x6d, 0x73, 0xd5, + 0x76, 0x88, 0x47, 0x50, 0xc5, 0xe9, 0x59, 0x9e, 0xd9, 0xc5, 0xab, 0xc7, 0x77, 0xf5, 0x8e, 0x7d, + 0xa8, 0xaf, 0xd5, 0x6e, 0xb7, 0x4d, 0xef, 0xb0, 0xb7, 0xbf, 0xda, 0x22, 0xdd, 0x3b, 0x6d, 0xd2, + 0x26, 0x77, 0x18, 0xe2, 0x7e, 0xef, 0x80, 0xb5, 0x58, 0x83, 0x3d, 0x71, 0x06, 0xca, 0x2d, 0x98, + 0xfd, 0x04, 0x3b, 0xae, 0x49, 0x2c, 0x15, 0x7f, 0xd9, 0xc3, 0xae, 0x87, 0xaa, 0x30, 0x7d, 0xcc, + 0x21, 0xd5, 0xcc, 0xe5, 0xcc, 0x8d, 0xa2, 0x2a, 0x9b, 0xca, 0xdf, 0x64, 0x60, 0xce, 0x47, 0x76, + 0x6d, 0x62, 0xb9, 0x38, 0x1d, 0x1b, 0xad, 0xc0, 0x8c, 0x10, 0x4e, 0xb3, 0xf4, 0x2e, 0xae, 0x66, + 0xd9, 0xeb, 0x92, 0x80, 0x35, 0xf4, 0x2e, 0x46, 0xd7, 0x61, 0x4e, 0xa2, 0x48, 0x26, 0x39, 0x86, + 0x35, 0x2b, 0xc0, 0xa2, 0x37, 0xb4, 0x0a, 0xe7, 0x24, 0xa2, 0x6e, 0x9b, 0x3e, 0x72, 0x9e, 0x21, + 0xcf, 0x8b, 0x57, 0xeb, 0xb6, 0x29, 0xf0, 0x95, 0xcf, 0xa1, 0xb8, 0xd9, 0x68, 0x6e, 0x10, 0xeb, + 0xc0, 0x6c, 0x53, 0x11, 0x5d, 0xec, 0x50, 0x9a, 0x6a, 0xe6, 0x72, 0x8e, 0x8a, 0x28, 0x9a, 0xa8, + 0x06, 0x05, 0x17, 0xeb, 0x4e, 0xeb, 0x10, 0xbb, 0xd5, 0x2c, 0x7b, 0xe5, 0xb7, 0x29, 0x15, 0xb1, + 0x3d, 0x93, 0x58, 0x6e, 0x35, 0xc7, 0xa9, 0x44, 0x53, 0xf9, 0x55, 0x06, 0x4a, 0x3b, 0xc4, 0xf1, + 0x5e, 0xea, 0xb6, 0x6d, 0x5a, 0x6d, 0x74, 0x0f, 0x0a, 0x6c, 0x2e, 0x5b, 0xa4, 0xc3, 0xe6, 0x60, + 0x76, 0xad, 0xb6, 0x1a, 0x5d, 0x96, 0xd5, 0x1d, 0x81, 0xa1, 0xfa, 0xb8, 0xe8, 0x1d, 0x98, 0x6d, + 0x11, 0xcb, 0xd3, 0x4d, 0x0b, 0x3b, 0x9a, 0x4d, 0x1c, 0x8f, 0x4d, 0xd1, 0xa4, 0x5a, 0xf6, 0xa1, + 0xb4, 0x17, 0x74, 0x11, 0x8a, 0x87, 0xc4, 0xf5, 0x38, 0x46, 0x8e, 0x61, 0x14, 0x28, 0x80, 0xbd, + 0x5c, 0x82, 0x69, 0xf6, 0xd2, 0xb4, 0xc5, 0x64, 0x4c, 0xd1, 0x66, 0xdd, 0x56, 0x7e, 0x9f, 0x81, + 0xc9, 0x97, 0xa4, 0x67, 0x79, 0x91, 0x6e, 0x74, 0xef, 0x50, 0x2c, 0x54, 0xa0, 0x1b, 0xdd, 0x3b, + 0xec, 0x77, 0x43, 0x31, 0xf8, 0x5a, 0xf1, 0x6e, 0xe8, 0xcb, 0x1a, 0x14, 0x1c, 0xac, 0x1b, 0xc4, + 0xea, 0x9c, 0x32, 0x11, 0x0a, 0xaa, 0xdf, 0xa6, 0x8b, 0xe8, 0xe2, 0x8e, 0x69, 0xf5, 0x5e, 0x6b, + 0x0e, 0xee, 0xe8, 0xfb, 0xb8, 0xc3, 0x44, 0x29, 0xa8, 0xb3, 0x02, 0xac, 0x72, 0x28, 0xda, 0x84, + 0x92, 0xed, 0x10, 0x5b, 0x6f, 0xeb, 0x74, 0x1e, 0xab, 0x93, 0x6c, 0xaa, 0x94, 0xf8, 0x54, 0x31, + 0xb1, 0x77, 0xfa, 0x98, 0x6a, 0x90, 0x0c, 0x21, 0xc8, 0x33, 0x75, 0x32, 0x98, 0x88, 0xec, 0x59, + 0xf9, 0xbb, 0x0c, 0xcc, 0x51, 0x85, 0x72, 0x6d, 0xbd, 0x85, 0xb7, 0xd9, 0x32, 0xa1, 0xfb, 0x30, + 0x6d, 0x61, 0xef, 0x84, 0x38, 0x47, 0x62, 0x51, 0xde, 0x8e, 0xf7, 0xe4, 0xd3, 0xbc, 0x24, 0x06, + 0x56, 0x25, 0x3e, 0xba, 0x0b, 0x39, 0xdb, 0x34, 0xd8, 0x24, 0x8c, 0x40, 0x46, 0x71, 0x29, 0x89, + 0x69, 0xb7, 0xd8, 0xdc, 0x8c, 0x42, 0x62, 0xda, 0x2d, 0x45, 0x01, 0xa8, 0x5b, 0xde, 0xbd, 0x1f, + 0x7e, 0xa2, 0x77, 0x7a, 0x18, 0x2d, 0xc0, 0xe4, 0x31, 0x7d, 0x60, 0xc2, 0xe6, 0x54, 0xde, 0x50, + 0xbe, 0xce, 0xc1, 0xc5, 0x17, 0x74, 0x0e, 0x9b, 0xba, 0x65, 0xec, 0x93, 0xd7, 0x4d, 0xdc, 0xea, + 0x39, 0xa6, 0x77, 0xba, 0x41, 0x2c, 0x0f, 0xbf, 0xf6, 0x50, 0x03, 0xe6, 0x2d, 0xc9, 0x59, 0x93, + 0xea, 0x4a, 0x39, 0x94, 0xd6, 0x56, 0x06, 0x08, 0xc1, 0xa7, 0x48, 0xad, 0x58, 0x61, 0x80, 0x8b, + 0x9e, 0xf7, 0xd7, 0x52, 0x72, 0xcb, 0x32, 0x6e, 0x09, 0x43, 0x6a, 0x6e, 0x31, 0xc9, 0x04, 0x2f, + 0xb9, 0xd8, 0x92, 0xd3, 0x23, 0xa0, 0x3b, 0x5d, 0xd3, 0x5d, 0xad, 0xe7, 0x62, 0x87, 0x4d, 0x4c, + 0x69, 0xed, 0xad, 0x38, 0x97, 0xfe, 0x14, 0xa8, 0x45, 0xa7, 0x67, 0xad, 0xbb, 0x7b, 0x2e, 0x76, + 0x98, 0x61, 0x10, 0xfa, 0xa5, 0x39, 0x84, 0x78, 0x07, 0xae, 0xd4, 0x29, 0x09, 0x56, 0x19, 0x14, + 0xdd, 0x81, 0x73, 0x6e, 0xcf, 0xb6, 0x3b, 0xb8, 0x8b, 0x2d, 0x4f, 0xef, 0x68, 0x6d, 0x87, 0xf4, + 0x6c, 0xb7, 0x3a, 0x79, 0x39, 0x77, 0x23, 0xa7, 0xa2, 0xe0, 0xab, 0x67, 0xec, 0x0d, 0x5a, 0x06, + 0xb0, 0x1d, 0xf3, 0xd8, 0xec, 0xe0, 0x36, 0x36, 0xaa, 0x53, 0x8c, 0x69, 0x00, 0x82, 0xde, 0x83, + 0x05, 0x17, 0xb7, 0x5a, 0xa4, 0x6b, 0x6b, 0xb6, 0x43, 0x0e, 0xcc, 0x0e, 0xe6, 0x3b, 0x62, 0x9a, + 0xa9, 0x1b, 0x12, 0xef, 0x76, 0xf8, 0x2b, 0xb6, 0x37, 0x1e, 0x33, 0x3b, 0x47, 0x47, 0xca, 0x3a, + 0xaf, 0x16, 0x46, 0x18, 0x2a, 0xb0, 0xa1, 0x32, 0x91, 0x94, 0x5f, 0x65, 0xe1, 0x3c, 0x9b, 0xc9, + 0x1d, 0x62, 0x88, 0x65, 0x16, 0x86, 0xeb, 0x0a, 0x94, 0x5b, 0x8c, 0xa7, 0x66, 0xeb, 0x0e, 0xb6, + 0x3c, 0xb1, 0x71, 0x67, 0x38, 0x70, 0x87, 0xc1, 0xd0, 0xa7, 0x50, 0x71, 0x85, 0x56, 0x68, 0x2d, + 0xae, 0x16, 0x62, 0xcd, 0x6e, 0xc7, 0x45, 0x18, 0xa0, 0x4b, 0xea, 0x9c, 0x1b, 0x53, 0xae, 0x69, + 0xf7, 0xd4, 0x6d, 0x79, 0x1d, 0x6e, 0x01, 0x4b, 0x6b, 0x3f, 0x4c, 0x61, 0x18, 0x15, 0x7c, 0xb5, + 0xc9, 0xc9, 0xb6, 0x2c, 0xcf, 0x39, 0x55, 0x25, 0x93, 0xda, 0x03, 0x98, 0x09, 0xbe, 0x40, 0x15, + 0xc8, 0x1d, 0xe1, 0x53, 0x31, 0x28, 0xfa, 0xd8, 0xdf, 0x04, 0xdc, 0xfe, 0xf0, 0xc6, 0x83, 0xec, + 0x87, 0x19, 0xc5, 0x01, 0xd4, 0xef, 0xe5, 0x25, 0xf6, 0x74, 0x43, 0xf7, 0x74, 0xdf, 0x16, 0x64, + 0xfa, 0xb6, 0x80, 0x72, 0xed, 0x89, 0xcd, 0x5b, 0x54, 0xe9, 0x23, 0x7a, 0x0b, 0x8a, 0xbe, 0xa2, + 0x8b, 0xf3, 0xa5, 0x0f, 0xa0, 0x76, 0x5e, 0xf7, 0x3c, 0xdc, 0xb5, 0x3d, 0xa6, 0x62, 0x65, 0x55, + 0x36, 0x95, 0xff, 0xc9, 0x43, 0x25, 0xb6, 0x26, 0x1f, 0x43, 0xa1, 0x2b, 0xba, 0x17, 0x1b, 0xed, + 0x6a, 0x82, 0xb1, 0x8f, 0x89, 0xaa, 0xfa, 0x54, 0xd4, 0x96, 0x52, 0xbb, 0x1a, 0x38, 0x13, 0xfd, + 0x36, 0x5d, 0xf1, 0x0e, 0x69, 0x6b, 0x86, 0xe9, 0xe0, 0x96, 0x47, 0x9c, 0x53, 0x21, 0xee, 0x4c, + 0x87, 0xb4, 0x37, 0x25, 0x0c, 0x3d, 0x00, 0x30, 0x2c, 0x97, 0x2e, 0xf6, 0x81, 0xd9, 0x66, 0x42, + 0x97, 0xd6, 0x2e, 0xc6, 0x85, 0xf0, 0x0f, 0x40, 0xb5, 0x68, 0x58, 0xae, 0x10, 0xff, 0x09, 0x94, + 0xe9, 0x39, 0xa2, 0x75, 0xf9, 0xd9, 0xc5, 0x77, 0x4a, 0x69, 0xed, 0x52, 0xd2, 0x18, 0xfc, 0x13, + 0x4e, 0x9d, 0xb1, 0xfb, 0x0d, 0x17, 0x3d, 0x85, 0x29, 0x66, 0xd0, 0xdd, 0xea, 0x14, 0x23, 0x5e, + 0x1d, 0x34, 0x01, 0x42, 0x23, 0x5e, 0x30, 0x02, 0xae, 0x10, 0x82, 0x1a, 0xed, 0x41, 0x49, 0xb7, + 0x2c, 0xe2, 0xe9, 0xdc, 0xd0, 0x4c, 0x33, 0x66, 0xef, 0x8f, 0xc0, 0x6c, 0xbd, 0x4f, 0xc5, 0x39, + 0x06, 0xf9, 0xa0, 0x1f, 0xc3, 0x24, 0xb3, 0x44, 0x62, 0x23, 0x5e, 0x1f, 0x51, 0x69, 0x55, 0x4e, + 0x55, 0xbb, 0x0f, 0xa5, 0x80, 0xb0, 0xe3, 0x28, 0x69, 0xed, 0x31, 0x54, 0xa2, 0xa2, 0x8d, 0xa5, + 0xe4, 0x2a, 0x2c, 0xa8, 0x3d, 0xab, 0x2f, 0x98, 0xf4, 0xc8, 0x1e, 0xc0, 0x94, 0x58, 0x6c, 0xae, + 0x71, 0xca, 0xf0, 0x39, 0x52, 0x05, 0x85, 0xf2, 0x63, 0x38, 0x1f, 0xe1, 0x29, 0x1c, 0xb7, 0xab, + 0x30, 0x6b, 0x13, 0x43, 0x73, 0x39, 0x58, 0x33, 0x0d, 0x69, 0x5d, 0x6c, 0x1f, 0xb7, 0x6e, 0x50, + 0xf2, 0xa6, 0x47, 0xec, 0xb8, 0x4c, 0xa3, 0x91, 0x57, 0x61, 0x31, 0x4a, 0xce, 0xbb, 0x57, 0x3e, + 0x82, 0x25, 0x15, 0x77, 0xc9, 0x31, 0x3e, 0x2b, 0xeb, 0x1a, 0x54, 0xe3, 0x0c, 0x04, 0xf3, 0xcf, + 0x60, 0xa9, 0x0f, 0x6d, 0x7a, 0xba, 0xd7, 0x73, 0xc7, 0x62, 0x2e, 0xbc, 0xda, 0x7d, 0xe2, 0xf2, + 0x55, 0x2a, 0xa8, 0xb2, 0xa9, 0xdc, 0x0c, 0xb2, 0x6e, 0x70, 0x87, 0x81, 0xf7, 0x80, 0x66, 0x21, + 0x6b, 0xda, 0x82, 0x5d, 0xd6, 0xb4, 0x95, 0xe7, 0x50, 0xf4, 0x4f, 0x5c, 0xf4, 0xb0, 0xef, 0x4e, + 0x66, 0x47, 0x3d, 0x9f, 0x7d, 0x8f, 0x73, 0x37, 0x76, 0x42, 0x88, 0x2e, 0x1f, 0x02, 0xf8, 0x96, + 0x4c, 0x1e, 0xfc, 0x17, 0x07, 0x30, 0x56, 0x03, 0xe8, 0xca, 0x7f, 0x84, 0xec, 0x5b, 0x60, 0x10, + 0x86, 0x3f, 0x08, 0x23, 0x64, 0xef, 0xb2, 0x67, 0xb2, 0x77, 0x1f, 0xc0, 0xa4, 0xeb, 0xe9, 0x1e, + 0x16, 0xce, 0xd1, 0xca, 0x20, 0x72, 0x2a, 0x04, 0x56, 0x39, 0x3e, 0xba, 0x04, 0xd0, 0x72, 0xb0, + 0xee, 0x61, 0x43, 0xd3, 0xb9, 0x71, 0xce, 0xa9, 0x45, 0x01, 0x59, 0xf7, 0xd0, 0x46, 0xdf, 0xc1, + 0x9b, 0x64, 0x82, 0xdd, 0x1c, 0xc4, 0x39, 0xb4, 0x54, 0x7d, 0x57, 0xcf, 0x37, 0x16, 0x53, 0x23, + 0x1a, 0x0b, 0xc1, 0x80, 0x53, 0x05, 0x4c, 0xe1, 0xf4, 0x70, 0x53, 0xc8, 0x49, 0x47, 0x31, 0x85, + 0x85, 0xe1, 0xa6, 0x50, 0x30, 0x1b, 0x68, 0x0a, 0xff, 0x98, 0xb6, 0xec, 0xdf, 0x33, 0x50, 0x8d, + 0xef, 0x41, 0x61, 0x7b, 0x1e, 0xc0, 0x94, 0xcb, 0x20, 0xa3, 0x18, 0x34, 0x41, 0x2b, 0x28, 0xd0, + 0x73, 0xc8, 0x9b, 0xd6, 0x01, 0x61, 0xf1, 0x5a, 0xa2, 0x4b, 0x92, 0xd6, 0xeb, 0x6a, 0xdd, 0x3a, + 0x20, 0x7c, 0x92, 0x18, 0x87, 0xda, 0x07, 0x50, 0xf4, 0x41, 0x63, 0x8d, 0x6d, 0x1b, 0x16, 0x22, + 0x2a, 0xcb, 0x7d, 0x78, 0x5f, 0xd3, 0x33, 0xe3, 0x69, 0xba, 0xf2, 0x55, 0x36, 0xb8, 0x13, 0x9f, + 0x9a, 0x1d, 0x0f, 0x3b, 0xb1, 0x9d, 0xf8, 0x48, 0x72, 0xe7, 0xdb, 0xf0, 0xda, 0x50, 0xee, 0xdc, + 0xd5, 0x14, 0x9b, 0xe9, 0x67, 0x30, 0xcb, 0x74, 0x4d, 0x73, 0x71, 0x87, 0xf9, 0x11, 0xc2, 0xa7, + 0xfb, 0xd1, 0x20, 0x36, 0x5c, 0x12, 0xae, 0xb1, 0x4d, 0x41, 0xc7, 0x67, 0xb0, 0xdc, 0x09, 0xc2, + 0x6a, 0x1f, 0x03, 0x8a, 0x23, 0x8d, 0x35, 0xa7, 0x4d, 0x6a, 0xe2, 0x68, 0x50, 0x9b, 0x70, 0xf8, + 0x1d, 0x30, 0x31, 0x46, 0xd1, 0x15, 0x2e, 0xb0, 0x2a, 0x28, 0x94, 0xdf, 0xe4, 0x00, 0xfa, 0x2f, + 0xff, 0x1f, 0xd9, 0xb6, 0x8f, 0x7d, 0xbb, 0xc2, 0xfd, 0xb3, 0x1b, 0x83, 0x18, 0x27, 0x5a, 0x94, + 0xed, 0xb0, 0x45, 0xe1, 0x9e, 0xda, 0xed, 0x81, 0x6c, 0xbe, 0xb7, 0xb6, 0xe4, 0x05, 0x2c, 0x46, + 0x75, 0x43, 0x18, 0x92, 0x35, 0x98, 0x34, 0x3d, 0xdc, 0xe5, 0x89, 0x9d, 0xc4, 0xa0, 0x2b, 0x40, + 0xc4, 0x51, 0x95, 0x15, 0x28, 0xd6, 0xbb, 0x7a, 0x1b, 0x37, 0x6d, 0xdc, 0xa2, 0x9d, 0x9a, 0xb4, + 0x21, 0x04, 0xe1, 0x0d, 0x65, 0x0d, 0x0a, 0x3f, 0xc1, 0xa7, 0x7c, 0x53, 0x8f, 0x28, 0xa8, 0xf2, + 0xcf, 0x05, 0x58, 0x62, 0x67, 0xc5, 0x86, 0x4c, 0xab, 0xa8, 0xd8, 0x25, 0x3d, 0xa7, 0x85, 0x5d, + 0xb6, 0xda, 0x76, 0x4f, 0xb3, 0xb1, 0x63, 0x12, 0x43, 0x44, 0xf8, 0xc5, 0x96, 0xdd, 0xdb, 0x61, + 0x00, 0x74, 0x11, 0x68, 0x43, 0xfb, 0xb2, 0x47, 0x84, 0x22, 0xe6, 0xd4, 0x42, 0xcb, 0xee, 0xfd, + 0x29, 0x6d, 0x4b, 0x5a, 0xf7, 0x50, 0x77, 0xb0, 0xcb, 0xf4, 0x8c, 0xd3, 0x36, 0x19, 0x00, 0xdd, + 0x85, 0xf3, 0x5d, 0xdc, 0x25, 0xce, 0xa9, 0xd6, 0x31, 0xbb, 0xa6, 0xa7, 0x99, 0x96, 0xb6, 0x7f, + 0xea, 0x61, 0x57, 0xe8, 0x14, 0xe2, 0x2f, 0x5f, 0xd0, 0x77, 0x75, 0xeb, 0x09, 0x7d, 0x83, 0x14, + 0x28, 0x13, 0xd2, 0xd5, 0xdc, 0x16, 0x71, 0xb0, 0xa6, 0x1b, 0x5f, 0xb0, 0xe3, 0x33, 0xa7, 0x96, + 0x08, 0xe9, 0x36, 0x29, 0x6c, 0xdd, 0xf8, 0x02, 0xbd, 0x0d, 0xa5, 0x96, 0xdd, 0x73, 0xb1, 0xa7, + 0xd1, 0x1f, 0x76, 0x3a, 0x16, 0x55, 0xe0, 0xa0, 0x0d, 0xbb, 0xe7, 0x06, 0x10, 0xba, 0x74, 0xfe, + 0xa7, 0x83, 0x08, 0x2f, 0x71, 0xd7, 0x45, 0xaf, 0x00, 0x0c, 0xd3, 0x3d, 0x12, 0xa3, 0x32, 0xd8, + 0xfa, 0x7c, 0x98, 0x72, 0xbc, 0xc6, 0xa7, 0x6c, 0x75, 0xd3, 0x74, 0x8f, 0xd8, 0x04, 0x70, 0x55, + 0x2c, 0x1a, 0xb2, 0x8d, 0x56, 0x60, 0x66, 0xbf, 0x73, 0x64, 0x12, 0xed, 0x04, 0x9b, 0xed, 0x43, + 0xaf, 0x8a, 0x59, 0xd4, 0x56, 0x62, 0xb0, 0x57, 0x0c, 0x84, 0x1a, 0x70, 0x2e, 0x88, 0xa2, 0x19, + 0xf8, 0xd8, 0x6c, 0xe1, 0xea, 0x01, 0x13, 0x62, 0x39, 0x2e, 0x04, 0x27, 0xdb, 0x64, 0x58, 0xea, + 0x7c, 0x80, 0x13, 0x07, 0xa1, 0x26, 0x9c, 0xe7, 0xfc, 0x38, 0x23, 0xcd, 0xc1, 0xba, 0xa1, 0xed, + 0xdb, 0x6e, 0xb5, 0xcd, 0x38, 0x5e, 0x8e, 0x73, 0xdc, 0x3d, 0x74, 0x88, 0xe7, 0x75, 0xb0, 0xe0, + 0x89, 0x18, 0xb9, 0x68, 0x60, 0xdd, 0x78, 0x62, 0xd3, 0x33, 0x7f, 0x31, 0xc4, 0xf4, 0xc4, 0x31, + 0x3d, 0xcc, 0xb8, 0x1e, 0x8e, 0xc8, 0xf5, 0x5c, 0x80, 0xeb, 0x2b, 0x4a, 0x9d, 0xc4, 0x96, 0xc9, + 0x5a, 0xdf, 0xb6, 0xdd, 0xaa, 0x79, 0x06, 0xb6, 0x54, 0x58, 0x4a, 0x8c, 0x5e, 0xc1, 0x52, 0x82, + 0xb4, 0x8c, 0xef, 0x17, 0x23, 0xf2, 0x5d, 0x88, 0x8a, 0xcb, 0x18, 0x5f, 0x81, 0xf2, 0x11, 0x76, + 0x2c, 0xdc, 0xd1, 0xb8, 0xaa, 0x56, 0x8f, 0x98, 0x36, 0xce, 0x70, 0xe0, 0x4b, 0x06, 0x43, 0xb7, + 0x41, 0x28, 0xb2, 0xe6, 0x60, 0x17, 0x3b, 0xc7, 0x3c, 0x83, 0xd8, 0x61, 0x98, 0xf3, 0xfc, 0x8d, + 0xda, 0x7f, 0x81, 0xea, 0x20, 0x80, 0x9a, 0x7b, 0xc2, 0xa2, 0x56, 0xec, 0xba, 0xd5, 0xee, 0x08, + 0x79, 0x99, 0x0a, 0x27, 0x6b, 0xfa, 0x54, 0x68, 0x0d, 0xa6, 0x7b, 0x6c, 0x67, 0xb9, 0x55, 0x8b, + 0x8d, 0xb3, 0x1a, 0x67, 0xb0, 0xc7, 0x10, 0x54, 0x89, 0x58, 0x7b, 0x04, 0xb3, 0x61, 0xf5, 0x1d, + 0xcb, 0xda, 0x3d, 0x80, 0x99, 0x90, 0xf2, 0x21, 0xc8, 0x07, 0xb2, 0xb6, 0xec, 0x19, 0x2d, 0xc2, + 0x14, 0xc7, 0x61, 0xe4, 0x65, 0x55, 0xb4, 0x94, 0x0f, 0x61, 0x36, 0x3c, 0xe9, 0x89, 0xd4, 0x08, + 0xf2, 0x8e, 0x74, 0x24, 0xf2, 0x2a, 0x7b, 0x56, 0x36, 0x61, 0x8a, 0x0f, 0x23, 0x31, 0xa9, 0x82, + 0x20, 0x7f, 0xa8, 0x3b, 0x86, 0x30, 0x4e, 0xec, 0x99, 0xc2, 0x5c, 0x72, 0xe0, 0x09, 0x93, 0xc4, + 0x9e, 0x15, 0x1d, 0xca, 0xa1, 0xb4, 0x20, 0x45, 0x62, 0xf9, 0x3f, 0xc1, 0x8c, 0x3e, 0xb3, 0xee, + 0x49, 0x47, 0x8e, 0x9c, 0x3d, 0x53, 0x98, 0x77, 0x6a, 0xcb, 0xf4, 0x0c, 0x7b, 0xa6, 0x53, 0xd4, + 0xc1, 0xc7, 0x22, 0x9d, 0x5c, 0x54, 0x79, 0x43, 0x31, 0x00, 0x36, 0x74, 0x5b, 0xdf, 0x37, 0x3b, + 0xa6, 0x77, 0x8a, 0x6e, 0x42, 0x45, 0x37, 0x0c, 0xad, 0x25, 0x21, 0x26, 0x96, 0x49, 0xfe, 0x39, + 0xdd, 0x30, 0x36, 0x02, 0x60, 0xf4, 0x03, 0x98, 0x37, 0x1c, 0x62, 0x87, 0x71, 0x79, 0xd6, 0xbf, + 0x42, 0x5f, 0x04, 0x91, 0x95, 0x5f, 0x4e, 0xc2, 0xa5, 0xb0, 0x69, 0x8a, 0xa6, 0x5e, 0x3f, 0x86, + 0x99, 0x48, 0xaf, 0x29, 0xea, 0xd5, 0x97, 0x56, 0x0d, 0x51, 0x44, 0x52, 0x91, 0xd9, 0x58, 0x2a, + 0x32, 0x31, 0xb9, 0x9b, 0x7b, 0xa3, 0xc9, 0xdd, 0xfc, 0x1b, 0x49, 0xee, 0x4e, 0x8e, 0x97, 0xdc, + 0xbd, 0xc6, 0xaa, 0x3e, 0x92, 0x9a, 0xe9, 0x1a, 0x3f, 0x5f, 0xca, 0x3e, 0x8e, 0x25, 0xab, 0x43, + 0x91, 0x24, 0xf0, 0xf4, 0x38, 0x49, 0xe0, 0x42, 0x6a, 0x12, 0x98, 0x6a, 0x8d, 0x6d, 0xeb, 0x4e, + 0x97, 0x38, 0x32, 0xcb, 0x5b, 0x2d, 0x32, 0x11, 0xe6, 0x24, 0x5c, 0x64, 0x78, 0x53, 0xf3, 0xc1, + 0x90, 0x9a, 0x0f, 0xbe, 0x0c, 0x33, 0x16, 0xd1, 0x2c, 0x7c, 0xa2, 0xd1, 0xb5, 0x74, 0xab, 0x25, + 0xbe, 0xb0, 0x16, 0x69, 0xe0, 0x93, 0x1d, 0x0a, 0x89, 0x65, 0x8c, 0x67, 0xc6, 0xcc, 0x18, 0xff, + 0x43, 0x06, 0x16, 0xc2, 0xca, 0x29, 0xb2, 0x7b, 0xcf, 0xa0, 0xe8, 0xc8, 0x13, 0x54, 0x28, 0xe4, + 0xcd, 0x91, 0x8f, 0x5c, 0xb5, 0x4f, 0x8b, 0x7e, 0x9a, 0x9a, 0x54, 0xbe, 0x33, 0x8c, 0xdf, 0xb0, + 0xb4, 0xb2, 0xd2, 0x82, 0xc5, 0x57, 0xa6, 0x65, 0x90, 0x13, 0x37, 0x2a, 0x7e, 0x3d, 0x2e, 0xfe, + 0x0f, 0x12, 0x0e, 0xeb, 0x08, 0x71, 0xd2, 0x00, 0x94, 0xbf, 0xcd, 0xc0, 0x85, 0x54, 0xc4, 0x88, + 0x4f, 0x95, 0x89, 0xfa, 0x54, 0xc2, 0x1f, 0x6b, 0x91, 0x9e, 0xe5, 0x05, 0xfc, 0xb1, 0x0d, 0x56, + 0x4e, 0xe3, 0x8e, 0x8f, 0xd6, 0xd5, 0x5f, 0x9b, 0xdd, 0x5e, 0x57, 0x58, 0x3f, 0xca, 0xee, 0x25, + 0x87, 0x9c, 0xc1, 0x23, 0x53, 0xd6, 0x61, 0xde, 0x97, 0x72, 0x60, 0x72, 0x3b, 0x90, 0xac, 0xce, + 0x86, 0x93, 0xd5, 0x16, 0x4c, 0x09, 0x8b, 0xff, 0x26, 0xea, 0x7d, 0x97, 0xa1, 0x64, 0x63, 0xa7, + 0x6b, 0xba, 0xae, 0x6f, 0x74, 0x8a, 0x6a, 0x10, 0xa4, 0xfc, 0x7a, 0x1a, 0xe6, 0xa2, 0xeb, 0xf7, + 0x51, 0x2c, 0x37, 0x7e, 0x25, 0xc1, 0x1c, 0x46, 0x07, 0x1a, 0x08, 0xa7, 0xee, 0x4a, 0x6f, 0x3c, + 0x9b, 0x96, 0xc9, 0xf2, 0x3d, 0x77, 0xe1, 0xaa, 0xd3, 0x19, 0x69, 0x91, 0x6e, 0x57, 0xb7, 0x0c, + 0x59, 0xa6, 0x15, 0x4d, 0x3a, 0x7f, 0xba, 0xd3, 0xa6, 0xd3, 0x4e, 0xc1, 0xec, 0x99, 0x2e, 0xde, + 0x09, 0x71, 0x8e, 0x4c, 0x8b, 0xe5, 0xd8, 0x99, 0xe1, 0x2a, 0xaa, 0x20, 0x40, 0x9b, 0xa6, 0x83, + 0x56, 0x21, 0x8f, 0xad, 0x63, 0x19, 0x2f, 0x25, 0xd4, 0x71, 0x65, 0x5c, 0xa0, 0x32, 0x3c, 0x74, + 0x07, 0xa6, 0xba, 0x54, 0x2d, 0x64, 0x02, 0x68, 0x29, 0xa5, 0x9c, 0xa9, 0x0a, 0x34, 0xea, 0x4f, + 0x70, 0x0f, 0x4a, 0x66, 0x79, 0x12, 0xfc, 0x09, 0xe1, 0x2f, 0x49, 0x44, 0xb4, 0xe5, 0x47, 0x83, + 0xc5, 0xb4, 0x30, 0x2e, 0xb2, 0x14, 0x89, 0x21, 0xe1, 0x6e, 0x38, 0x24, 0x04, 0xc6, 0x6b, 0x6d, + 0x38, 0xaf, 0xc1, 0xe9, 0xf6, 0x0b, 0x50, 0xe8, 0x90, 0x36, 0x57, 0xa3, 0x12, 0xbf, 0x01, 0xd0, + 0x21, 0x6d, 0xa6, 0x45, 0x0b, 0x34, 0x3a, 0x36, 0x4c, 0x8b, 0x19, 0xb8, 0x82, 0xca, 0x1b, 0x74, + 0xf3, 0xb1, 0x07, 0x8d, 0x58, 0x2d, 0x5c, 0x2d, 0xb3, 0x57, 0x45, 0x06, 0xd9, 0xb6, 0x5a, 0x2c, + 0xde, 0xf2, 0xbc, 0xd3, 0xea, 0x2c, 0x83, 0xd3, 0x47, 0xf4, 0x48, 0xe6, 0xe8, 0xe6, 0xd2, 0x12, + 0x1f, 0x49, 0xc6, 0x50, 0xa6, 0xe8, 0x9e, 0xc0, 0xf4, 0x09, 0x37, 0x04, 0xd5, 0x0a, 0xa3, 0xbf, + 0x31, 0xdc, 0xa4, 0x08, 0x0e, 0x92, 0x90, 0x86, 0x1c, 0x16, 0xf6, 0xa8, 0x3d, 0x27, 0xd4, 0x92, + 0xb1, 0xda, 0x73, 0x4e, 0x2d, 0x59, 0xd8, 0xdb, 0x11, 0x20, 0x3a, 0x0d, 0x2c, 0xd2, 0xd1, 0x4c, + 0x83, 0x45, 0x24, 0x45, 0x75, 0x9a, 0xb5, 0xeb, 0xc6, 0x1f, 0x33, 0x72, 0xfe, 0x4d, 0x06, 0x16, + 0x37, 0x58, 0x56, 0x21, 0x60, 0x05, 0xc7, 0x49, 0x84, 0xdf, 0xf7, 0x4b, 0x0f, 0xa9, 0x59, 0xeb, + 0xe8, 0xac, 0x09, 0x02, 0x54, 0x87, 0x59, 0xc9, 0x5c, 0xb0, 0xc8, 0x8d, 0x5c, 0xbd, 0x28, 0xbb, + 0xc1, 0xa6, 0xf2, 0x08, 0x96, 0x62, 0xa3, 0x10, 0x19, 0x80, 0x15, 0x98, 0xe9, 0x5b, 0x3b, 0x7f, + 0x10, 0x25, 0x1f, 0x56, 0x37, 0x94, 0x07, 0x70, 0xbe, 0xe9, 0xe9, 0x8e, 0x17, 0x9b, 0x82, 0x11, + 0x68, 0x59, 0x01, 0x23, 0x4c, 0x2b, 0x6a, 0x0c, 0x4d, 0x58, 0x68, 0x7a, 0xc4, 0x3e, 0x03, 0x53, + 0x6a, 0xb3, 0xe8, 0xf8, 0x49, 0x4f, 0x9e, 0x2e, 0xb2, 0xa9, 0x2c, 0xf1, 0x72, 0x4b, 0xbc, 0xb7, + 0x87, 0xb0, 0xc8, 0xab, 0x1d, 0x67, 0x19, 0xc4, 0x05, 0x59, 0x6b, 0x89, 0xf3, 0x7d, 0x09, 0xe7, + 0xfa, 0x27, 0x77, 0x3f, 0x93, 0x79, 0x2f, 0x9c, 0xc9, 0xbc, 0x3c, 0x60, 0xd5, 0x43, 0x89, 0xcc, + 0x5f, 0x67, 0x03, 0xa7, 0x42, 0x4a, 0x1e, 0xf3, 0x61, 0x38, 0x8f, 0xf9, 0xce, 0x30, 0xde, 0xa1, + 0x34, 0x66, 0x5c, 0x6b, 0x73, 0x09, 0x5a, 0xfb, 0x79, 0x2c, 0xd9, 0x99, 0x4f, 0xcb, 0x16, 0x47, + 0xa4, 0xfd, 0x83, 0xe4, 0x3a, 0x55, 0x9e, 0xeb, 0xf4, 0xbb, 0xf6, 0x8b, 0x53, 0xf7, 0x23, 0xb9, + 0xce, 0x95, 0xa1, 0xf2, 0xfa, 0xa9, 0xce, 0xbf, 0xcf, 0x43, 0xd1, 0x7f, 0x17, 0x9b, 0xf3, 0xf8, + 0xb4, 0x65, 0x13, 0xa6, 0x2d, 0x78, 0x7e, 0xe7, 0xbe, 0xd5, 0xf9, 0x9d, 0x1f, 0xf9, 0xfc, 0xbe, + 0x08, 0x45, 0xf6, 0xa0, 0x39, 0xf8, 0x40, 0x9c, 0xc7, 0x05, 0x06, 0x50, 0xf1, 0x41, 0x5f, 0x0d, + 0xa7, 0xc6, 0x52, 0xc3, 0x48, 0x76, 0x75, 0x3a, 0x9a, 0x5d, 0xfd, 0xc8, 0x3f, 0x4f, 0xf9, 0x11, + 0x7c, 0x7d, 0x00, 0xdf, 0xc4, 0x93, 0xb4, 0x11, 0x3e, 0x49, 0xf9, 0xa9, 0xfc, 0xee, 0x20, 0x2e, + 0xdf, 0xdb, 0xdc, 0xea, 0x1e, 0xcf, 0xad, 0x06, 0x75, 0x51, 0x58, 0xd6, 0x87, 0x00, 0xbe, 0x11, + 0x91, 0x09, 0xd6, 0x8b, 0x03, 0xc6, 0xa8, 0x06, 0xd0, 0x29, 0xdb, 0xd0, 0xd2, 0xf4, 0x0b, 0xb0, + 0xa3, 0xd9, 0xc7, 0x94, 0xea, 0xeb, 0x57, 0x85, 0x80, 0x7d, 0x49, 0xa9, 0x58, 0x7e, 0x14, 0xcb, + 0xea, 0x8f, 0xa9, 0xc5, 0xf7, 0xc2, 0x49, 0xfd, 0x33, 0x6a, 0x5d, 0x2c, 0xa7, 0xcf, 0xfc, 0x1e, + 0xdd, 0x11, 0xaf, 0x79, 0xce, 0xb5, 0x28, 0x20, 0xeb, 0x2c, 0xae, 0x38, 0x30, 0x2d, 0xd3, 0x3d, + 0xe4, 0xef, 0xa7, 0x78, 0x5c, 0x21, 0x41, 0xeb, 0xec, 0x1e, 0x20, 0x7e, 0x6d, 0x7a, 0x5a, 0x8b, + 0x18, 0x98, 0xe9, 0xf4, 0xa4, 0x5a, 0xa0, 0x80, 0x0d, 0x62, 0xe0, 0xfe, 0xce, 0x2b, 0x9c, 0x6d, + 0xe7, 0x15, 0x23, 0x3b, 0x6f, 0x11, 0xa6, 0x1c, 0xac, 0xbb, 0xc4, 0x12, 0x81, 0xae, 0x68, 0xd1, + 0xa5, 0xe9, 0x62, 0xd7, 0xa5, 0x3d, 0x09, 0x67, 0x4f, 0x34, 0x03, 0x4e, 0xea, 0xcc, 0x50, 0x27, + 0x75, 0x40, 0x25, 0x34, 0xe2, 0xa4, 0x96, 0x87, 0x3a, 0xa9, 0xa3, 0x14, 0x42, 0x03, 0x6e, 0xfa, + 0xec, 0x68, 0x6e, 0x7a, 0xd0, 0xab, 0x9d, 0x0b, 0x7b, 0xb5, 0xcf, 0x61, 0xfa, 0x98, 0x74, 0x7a, + 0x5d, 0xec, 0x8a, 0xac, 0xf6, 0xea, 0x70, 0xe9, 0x3e, 0xe1, 0x04, 0xe2, 0x42, 0x94, 0x20, 0x0f, + 0x87, 0xeb, 0xf8, 0x5b, 0x84, 0xeb, 0x41, 0xe7, 0xf3, 0xe0, 0xfb, 0xe2, 0x7c, 0xd6, 0x76, 0x61, + 0x26, 0x38, 0xee, 0x04, 0xda, 0xd5, 0x20, 0x6d, 0x62, 0x28, 0xc4, 0x19, 0x04, 0x0d, 0x56, 0x01, + 0xa6, 0x38, 0x50, 0xf9, 0xd7, 0x0c, 0x2c, 0xc5, 0x8c, 0x8c, 0x30, 0x5e, 0xf7, 0x23, 0x15, 0xe6, + 0x95, 0xa1, 0x6b, 0xe4, 0x17, 0x98, 0x9f, 0x85, 0x0a, 0xcc, 0xef, 0x0f, 0x27, 0x7c, 0xe3, 0xf5, + 0xe5, 0xbf, 0xcc, 0xc0, 0xdb, 0x7b, 0xb6, 0x11, 0xf1, 0x77, 0xc5, 0xb2, 0x8f, 0x6e, 0x46, 0x3f, + 0x92, 0x71, 0x53, 0x76, 0x5c, 0xd5, 0xe2, 0x74, 0x8a, 0x02, 0x97, 0xd3, 0xc5, 0x10, 0x0e, 0xe4, + 0xcf, 0x61, 0x6e, 0xeb, 0x35, 0x6e, 0x35, 0x4f, 0xad, 0xd6, 0x18, 0xa2, 0x55, 0x20, 0xd7, 0xea, + 0x1a, 0x22, 0xfb, 0x4a, 0x1f, 0x83, 0x3e, 0x71, 0x2e, 0xec, 0x13, 0x6b, 0x50, 0xe9, 0xf7, 0x20, + 0x96, 0x77, 0x91, 0x2e, 0xaf, 0x41, 0x91, 0x29, 0xf3, 0x19, 0x55, 0xb4, 0x04, 0x1c, 0x3b, 0x0e, + 0x1b, 0x33, 0x87, 0x63, 0xc7, 0x09, 0xdb, 0xce, 0x5c, 0xd8, 0x76, 0x2a, 0xbf, 0xcc, 0x40, 0x89, + 0xf6, 0xf0, 0xad, 0xe4, 0x17, 0x61, 0x6b, 0xae, 0x1f, 0xb6, 0xfa, 0xd1, 0x6f, 0x3e, 0x18, 0xfd, + 0xf6, 0x25, 0x9f, 0x64, 0xe0, 0xb8, 0xe4, 0x53, 0x3e, 0x1c, 0x3b, 0x8e, 0x72, 0x19, 0x66, 0xb8, + 0x6c, 0x62, 0xe4, 0x15, 0xc8, 0xf5, 0x9c, 0x8e, 0xd4, 0xa3, 0x9e, 0xd3, 0x51, 0xfe, 0x2a, 0x03, + 0xe5, 0x75, 0xcf, 0xd3, 0x5b, 0x87, 0x63, 0x0c, 0xc0, 0x17, 0x2e, 0x1b, 0x14, 0x2e, 0x3e, 0x88, + 0xbe, 0xb8, 0xf9, 0x14, 0x71, 0x27, 0x43, 0xe2, 0x2a, 0x30, 0x2b, 0x65, 0x49, 0x15, 0xb8, 0x01, + 0x68, 0x87, 0x38, 0xde, 0x53, 0xe2, 0x9c, 0xe8, 0x8e, 0x31, 0x5e, 0x3c, 0x8a, 0x20, 0x2f, 0x6e, + 0xca, 0xe7, 0x6e, 0x4c, 0xaa, 0xec, 0x59, 0xb9, 0x0e, 0xe7, 0x42, 0xfc, 0x52, 0x3b, 0xfe, 0x18, + 0x4a, 0xec, 0x14, 0x14, 0x81, 0xc9, 0xdd, 0x60, 0xed, 0x77, 0xa4, 0x33, 0x53, 0xf9, 0x13, 0x98, + 0xa7, 0xde, 0x12, 0x83, 0xfb, 0x5b, 0xf1, 0x47, 0x11, 0xaf, 0xfd, 0x52, 0x0a, 0xa3, 0x88, 0xc7, + 0xfe, 0xbb, 0x2c, 0x4c, 0x32, 0x78, 0xcc, 0x83, 0xb9, 0x48, 0xcf, 0x05, 0x9b, 0x68, 0x9e, 0xde, + 0xf6, 0xbf, 0x4b, 0xa0, 0x80, 0x5d, 0xbd, 0xcd, 0x72, 0x11, 0xec, 0xa5, 0x61, 0xb6, 0xb1, 0xeb, + 0xc9, 0x8f, 0x13, 0x4a, 0x14, 0xb6, 0xc9, 0x41, 0xac, 0x32, 0x63, 0xfe, 0x19, 0xf7, 0xc2, 0xf3, + 0x2a, 0x7b, 0x46, 0xab, 0xfc, 0x5a, 0xec, 0x28, 0xa9, 0x7a, 0x76, 0x69, 0xb6, 0x06, 0x85, 0x48, + 0x76, 0xde, 0x6f, 0xa3, 0xc7, 0xd1, 0x13, 0xf0, 0x6a, 0xca, 0x88, 0x93, 0xcf, 0xbd, 0xef, 0xe8, + 0x60, 0xd8, 0x02, 0x14, 0x5c, 0x1b, 0xa1, 0x05, 0x77, 0x60, 0x8a, 0x2d, 0x9d, 0xf4, 0x60, 0x97, + 0x52, 0x44, 0x55, 0x05, 0x9a, 0xa2, 0x03, 0xe2, 0xcb, 0x1e, 0xf2, 0x5a, 0xc7, 0xd7, 0x95, 0x01, + 0x5e, 0xec, 0x3f, 0x65, 0xe0, 0x5c, 0xa8, 0x0f, 0x21, 0xeb, 0xed, 0x70, 0x27, 0xa9, 0xa2, 0x8a, + 0x0e, 0x36, 0x42, 0x07, 0xd5, 0x9d, 0x34, 0x91, 0xbe, 0xa3, 0x43, 0xea, 0x77, 0x19, 0x80, 0xf5, + 0x9e, 0x77, 0x28, 0x72, 0xbf, 0x41, 0x7d, 0xc9, 0x44, 0xf4, 0xa5, 0x06, 0x05, 0x5b, 0x77, 0xdd, + 0x13, 0xe2, 0xc8, 0xb8, 0xd3, 0x6f, 0xb3, 0x2c, 0x6d, 0xcf, 0x3b, 0x94, 0x85, 0x3f, 0xfa, 0x8c, + 0xde, 0x81, 0x59, 0xfe, 0x85, 0x8e, 0xa6, 0x1b, 0x86, 0x83, 0x5d, 0x57, 0x54, 0x00, 0xcb, 0x1c, + 0xba, 0xce, 0x81, 0x14, 0xcd, 0x34, 0xb0, 0xe5, 0x99, 0xde, 0xa9, 0xe6, 0x91, 0x23, 0x6c, 0x89, + 0xf8, 0xb1, 0x2c, 0xa1, 0xbb, 0x14, 0x48, 0xd1, 0x1c, 0xdc, 0x36, 0x5d, 0xcf, 0x91, 0x68, 0xb2, + 0xda, 0x24, 0xa0, 0x0c, 0x8d, 0x2e, 0x4a, 0x65, 0xa7, 0xd7, 0xe9, 0xf0, 0x29, 0x3e, 0xfb, 0xb2, + 0xbf, 0x27, 0x06, 0x94, 0x4d, 0xdb, 0x69, 0xfd, 0x49, 0x13, 0xc3, 0x7d, 0x83, 0x89, 0xb2, 0xf7, + 0x60, 0x3e, 0x30, 0x06, 0xa1, 0x56, 0x21, 0x47, 0x3f, 0x13, 0x76, 0xf4, 0x95, 0x67, 0x80, 0x78, + 0x6e, 0xe8, 0x5b, 0x8e, 0x5b, 0x39, 0x0f, 0xe7, 0x42, 0x8c, 0x84, 0x7f, 0x70, 0x0b, 0xca, 0xe2, + 0xea, 0xa5, 0x50, 0x94, 0x0b, 0x50, 0xa0, 0x76, 0xbe, 0x65, 0x1a, 0xb2, 0x2a, 0x3c, 0x6d, 0x13, + 0x63, 0xc3, 0x34, 0x1c, 0xe5, 0x15, 0x94, 0x55, 0xde, 0x8f, 0xc0, 0x7d, 0x0a, 0xb3, 0xe2, 0xa2, + 0xa6, 0x16, 0xba, 0x00, 0x9d, 0xf4, 0x81, 0x4d, 0xb0, 0x13, 0xb5, 0x6c, 0x05, 0x9b, 0x8a, 0x01, + 0x35, 0xee, 0xc8, 0x84, 0xd8, 0xcb, 0xc1, 0x3e, 0x05, 0xf9, 0xb9, 0xd9, 0xd0, 0x5e, 0xc2, 0xf4, + 0x65, 0x27, 0xd8, 0x54, 0x2e, 0xc1, 0xc5, 0xc4, 0x5e, 0xc4, 0x4c, 0xd8, 0x50, 0xe9, 0xbf, 0x30, + 0x4c, 0x59, 0x1e, 0x67, 0x65, 0xef, 0x4c, 0xa0, 0xec, 0xbd, 0xe8, 0xbb, 0xae, 0x59, 0x79, 0xb4, + 0x32, 0xbf, 0xb4, 0x1f, 0x92, 0xe5, 0xd2, 0x42, 0xb2, 0x7c, 0x28, 0x24, 0x53, 0x9a, 0xfe, 0x7c, + 0x8a, 0x50, 0xf9, 0x09, 0x0b, 0xe9, 0x79, 0xdf, 0xd2, 0x20, 0x2a, 0x83, 0x46, 0xc9, 0x51, 0xd5, + 0x00, 0x95, 0x72, 0x13, 0xca, 0x61, 0xd3, 0x18, 0xb0, 0x73, 0x99, 0x98, 0x9d, 0x9b, 0x8d, 0x98, + 0xb8, 0x0f, 0x22, 0x7e, 0x79, 0xfa, 0x1c, 0x47, 0xbc, 0xf2, 0xc7, 0x21, 0x63, 0x77, 0x2b, 0xa1, + 0x62, 0xfd, 0x1d, 0xd9, 0xb9, 0x05, 0x71, 0x1e, 0x3c, 0x75, 0x29, 0xbd, 0x18, 0xb4, 0x72, 0x05, + 0x4a, 0x7b, 0x69, 0x5f, 0x6f, 0xe5, 0xe5, 0x95, 0xb0, 0x7b, 0xb0, 0xf0, 0xd4, 0xec, 0x60, 0xf7, + 0xd4, 0xf5, 0x70, 0xb7, 0xce, 0x8c, 0xd2, 0x81, 0x89, 0x1d, 0xb4, 0x0c, 0xc0, 0xc2, 0x4c, 0x9b, + 0x98, 0xfe, 0x47, 0x3d, 0x01, 0x88, 0xf2, 0xfb, 0x0c, 0xcc, 0xf5, 0x09, 0xf7, 0x58, 0x78, 0xfd, + 0x16, 0x14, 0xe9, 0x78, 0x5d, 0x4f, 0xef, 0xda, 0xb2, 0x62, 0xe9, 0x03, 0xd0, 0x43, 0x98, 0x3c, + 0x70, 0x65, 0x5a, 0x2f, 0xb1, 0x44, 0x92, 0x24, 0x88, 0x9a, 0x3f, 0x70, 0xeb, 0x06, 0x7a, 0x04, + 0xd0, 0x73, 0xb1, 0x21, 0xaa, 0x94, 0xb9, 0x34, 0x1f, 0x66, 0x2f, 0x58, 0xcd, 0xa7, 0x04, 0xfc, + 0x36, 0xd9, 0x63, 0x28, 0x99, 0x16, 0x31, 0x30, 0xab, 0xe6, 0x1b, 0x22, 0xf3, 0x37, 0x84, 0x1c, + 0x38, 0xc5, 0x9e, 0x8b, 0x0d, 0x05, 0x8b, 0xb3, 0x50, 0xce, 0xaf, 0x50, 0x94, 0x06, 0xcc, 0x73, + 0xa3, 0x75, 0xe0, 0x0b, 0x2e, 0x35, 0x76, 0x65, 0xd0, 0xe8, 0xd8, 0x6c, 0xa9, 0x15, 0x53, 0x38, + 0x5c, 0x92, 0x54, 0x79, 0x00, 0xe7, 0x43, 0x71, 0xdb, 0x18, 0x81, 0x94, 0xb2, 0x13, 0x49, 0x66, + 0xf5, 0xd5, 0x59, 0xa4, 0x8a, 0xa4, 0x36, 0x0f, 0x4b, 0x15, 0xb9, 0x3c, 0x55, 0xe4, 0x2a, 0x9f, + 0xc3, 0x85, 0x50, 0xd6, 0x2d, 0x24, 0xd1, 0xe3, 0x88, 0x3f, 0x79, 0x6d, 0x18, 0xd7, 0x88, 0x63, + 0xf9, 0xbf, 0x19, 0x58, 0x48, 0x42, 0x38, 0x63, 0x56, 0xf8, 0xe7, 0x29, 0x37, 0x87, 0xef, 0x8f, + 0x26, 0xd6, 0x1f, 0x24, 0xa3, 0xbe, 0x0b, 0xb5, 0xa4, 0xf9, 0x8c, 0xaf, 0x52, 0x6e, 0x9c, 0x55, + 0xfa, 0x45, 0x2e, 0x50, 0x1d, 0x59, 0xf7, 0x3c, 0xc7, 0xdc, 0xef, 0x51, 0x95, 0x7f, 0xe3, 0x19, + 0xc7, 0xba, 0x9f, 0x3b, 0xe3, 0x53, 0x7b, 0x77, 0x00, 0x79, 0x5f, 0x8e, 0xc4, 0xfc, 0xd9, 0xa7, + 0xe1, 0xfc, 0x19, 0xaf, 0x7b, 0xdc, 0x1b, 0x8d, 0xdf, 0xf7, 0x36, 0x49, 0xfd, 0x8b, 0x2c, 0xcc, + 0x86, 0x97, 0x08, 0x6d, 0x01, 0xe8, 0xbe, 0xe4, 0x62, 0xa3, 0xbc, 0x33, 0xd2, 0x30, 0xd5, 0x00, + 0x21, 0x7a, 0x17, 0x72, 0x2d, 0xbb, 0x27, 0x56, 0x2d, 0xa1, 0xdc, 0xbf, 0x61, 0xf7, 0xb8, 0x45, + 0xa1, 0x68, 0x34, 0xd2, 0x13, 0x97, 0x14, 0x53, 0xad, 0x24, 0xbf, 0xb0, 0xc8, 0x69, 0x04, 0x32, + 0x7a, 0x0e, 0xb3, 0x27, 0x8e, 0xe9, 0xe9, 0xfb, 0x1d, 0xac, 0x75, 0xf4, 0x53, 0xec, 0x08, 0x2b, + 0x39, 0x82, 0x21, 0x2b, 0x4b, 0xc2, 0x17, 0x94, 0x4e, 0xf9, 0x73, 0x28, 0x48, 0x89, 0x86, 0x9c, + 0x08, 0xbb, 0xb0, 0xd4, 0xa3, 0x68, 0x1a, 0xbb, 0xe5, 0x6b, 0xe9, 0x16, 0xd1, 0x5c, 0x4c, 0x8f, + 0x71, 0xf9, 0xfd, 0xd1, 0x10, 0x13, 0xbd, 0xc0, 0xa8, 0x37, 0x88, 0x83, 0x1b, 0xba, 0x45, 0x9a, + 0x9c, 0x54, 0x39, 0x86, 0x52, 0x60, 0x80, 0x43, 0x44, 0xa8, 0xc3, 0xbc, 0xbc, 0x6c, 0xe1, 0x62, + 0x4f, 0x1c, 0x2f, 0x23, 0x75, 0x3e, 0x27, 0xe8, 0x9a, 0xd8, 0xe3, 0x17, 0x64, 0x1e, 0xc3, 0x05, + 0x15, 0x13, 0x1b, 0x5b, 0xfe, 0x7a, 0xbe, 0x20, 0xed, 0x31, 0x2c, 0xf8, 0x5b, 0x50, 0x4b, 0xa2, + 0x17, 0x9e, 0xd9, 0x3d, 0xe9, 0xba, 0x8a, 0xa0, 0x52, 0xf0, 0x7d, 0x1b, 0x4a, 0x3c, 0x62, 0xd5, + 0x02, 0x51, 0x0d, 0x70, 0x50, 0x43, 0xef, 0x62, 0x65, 0x11, 0x16, 0xc2, 0x74, 0x9c, 0xdf, 0xad, + 0xb7, 0xa0, 0x20, 0x3f, 0xf7, 0x47, 0xd3, 0x90, 0xdb, 0xdd, 0xd8, 0xa9, 0x4c, 0xd0, 0x87, 0xbd, + 0xcd, 0x9d, 0x4a, 0xe6, 0x56, 0x17, 0x2a, 0xd1, 0x2f, 0xdc, 0xd1, 0x12, 0x9c, 0xdb, 0x51, 0xb7, + 0x77, 0xd6, 0x9f, 0xad, 0xef, 0xd6, 0xb7, 0x1b, 0xda, 0x8e, 0x5a, 0xff, 0x64, 0x7d, 0x77, 0xab, + 0x32, 0x81, 0x56, 0xe0, 0x52, 0xf0, 0xc5, 0xf3, 0xed, 0xe6, 0xae, 0xb6, 0xbb, 0xad, 0x6d, 0x6c, + 0x37, 0x76, 0xd7, 0xeb, 0x8d, 0x2d, 0xb5, 0x92, 0x41, 0x97, 0xe0, 0x42, 0x10, 0xe5, 0x49, 0x7d, + 0xb3, 0xae, 0x6e, 0x6d, 0xd0, 0xe7, 0xf5, 0x17, 0x95, 0xec, 0xad, 0xbb, 0x50, 0x0e, 0x7d, 0x7c, + 0x4e, 0x05, 0xd9, 0xd9, 0xde, 0xac, 0x4c, 0xa0, 0x32, 0x14, 0x83, 0x7c, 0x0a, 0x90, 0x6f, 0x6c, + 0x6f, 0x6e, 0x55, 0xb2, 0xb7, 0x1e, 0xc0, 0x5c, 0xe4, 0xb3, 0x05, 0x34, 0x0f, 0xe5, 0xe6, 0x7a, + 0x63, 0xf3, 0xc9, 0xf6, 0xa7, 0x9a, 0xba, 0xb5, 0xbe, 0xf9, 0x59, 0x65, 0x02, 0x2d, 0x40, 0x45, + 0x82, 0x1a, 0xdb, 0xbb, 0x1c, 0x9a, 0xb9, 0x75, 0x14, 0xd9, 0xa9, 0x18, 0x9d, 0x87, 0x79, 0xbf, + 0x1b, 0x6d, 0x43, 0xdd, 0x5a, 0xdf, 0xdd, 0xa2, 0xbd, 0x87, 0xc0, 0xea, 0x5e, 0xa3, 0x51, 0x6f, + 0x3c, 0xab, 0x64, 0x28, 0xd7, 0x3e, 0x78, 0xeb, 0xd3, 0x3a, 0x45, 0xce, 0x86, 0x91, 0xf7, 0x1a, + 0x3f, 0x69, 0x6c, 0xbf, 0x6a, 0x54, 0x72, 0x6b, 0xff, 0x38, 0x0f, 0xb3, 0xd2, 0x5d, 0xc4, 0x0e, + 0xbb, 0xfd, 0xb4, 0x03, 0xd3, 0xf2, 0x4f, 0x23, 0x12, 0xec, 0x7c, 0xf8, 0xaf, 0x2e, 0x6a, 0x2b, + 0x03, 0x30, 0x84, 0x6e, 0x4c, 0xa0, 0x7d, 0xe6, 0x45, 0x07, 0x3e, 0x23, 0xb9, 0x96, 0xe8, 0xb3, + 0xc6, 0xbe, 0x5c, 0xa9, 0x5d, 0x1f, 0x8a, 0xe7, 0xf7, 0x81, 0xa9, 0xa3, 0x1c, 0xfc, 0x4e, 0x12, + 0x5d, 0x4f, 0xf2, 0x70, 0x13, 0x3e, 0xc4, 0xac, 0xdd, 0x18, 0x8e, 0xe8, 0x77, 0x73, 0x04, 0x95, + 0xe8, 0x37, 0x93, 0x28, 0x21, 0x2d, 0x9c, 0xf2, 0x61, 0x66, 0xed, 0xd6, 0x28, 0xa8, 0xc1, 0xce, + 0x62, 0x5f, 0x17, 0xde, 0x1c, 0xe5, 0x73, 0xad, 0xd4, 0xce, 0xd2, 0xbe, 0xec, 0xe2, 0x13, 0x18, + 0xfe, 0x44, 0x04, 0x25, 0x7e, 0xca, 0x97, 0xf0, 0x81, 0x51, 0xd2, 0x04, 0x26, 0x7f, 0x6d, 0xa2, + 0x4c, 0xa0, 0x43, 0x98, 0x8b, 0x5c, 0x44, 0x41, 0x09, 0xe4, 0xc9, 0x37, 0x6e, 0x6a, 0x37, 0x47, + 0xc0, 0x0c, 0x6b, 0x44, 0xf0, 0xe2, 0x49, 0xb2, 0x46, 0x24, 0x5c, 0x6b, 0x49, 0xd6, 0x88, 0xc4, + 0x3b, 0x2c, 0x4c, 0xb9, 0x43, 0x17, 0x4e, 0x92, 0x94, 0x3b, 0xe9, 0x9a, 0x4b, 0xed, 0xfa, 0x50, + 0xbc, 0xe0, 0xa4, 0x45, 0xae, 0x9f, 0x24, 0x4d, 0x5a, 0xf2, 0xf5, 0x96, 0xda, 0xcd, 0x11, 0x30, + 0xa3, 0x5a, 0xd0, 0x2f, 0x66, 0xa7, 0x69, 0x41, 0xec, 0xea, 0x45, 0x9a, 0x16, 0xc4, 0xeb, 0xe2, + 0x42, 0x0b, 0x22, 0x45, 0xe8, 0x1b, 0x23, 0x94, 0x89, 0xd2, 0xb5, 0x20, 0xb9, 0xa0, 0xa4, 0x4c, + 0xa0, 0xbf, 0xc8, 0x40, 0x35, 0xad, 0x04, 0x83, 0x12, 0xbc, 0xc4, 0x21, 0x55, 0xa3, 0xda, 0xda, + 0x38, 0x24, 0xbe, 0x14, 0x5f, 0x02, 0x8a, 0x9f, 0x9e, 0xe8, 0x07, 0x49, 0x2b, 0x93, 0x72, 0x46, + 0xd7, 0xde, 0x1d, 0x0d, 0xd9, 0xef, 0xb2, 0x09, 0x05, 0x59, 0xf4, 0x41, 0x09, 0x56, 0x3a, 0x52, + 0x72, 0xaa, 0x29, 0x83, 0x50, 0x7c, 0xa6, 0xcf, 0x20, 0x4f, 0xa1, 0xe8, 0x52, 0x32, 0xb6, 0x64, + 0xb6, 0x9c, 0xf6, 0xda, 0x67, 0xf4, 0x12, 0xa6, 0x78, 0x95, 0x03, 0x25, 0xe4, 0x2f, 0x42, 0xb5, + 0x98, 0xda, 0xe5, 0x74, 0x04, 0x9f, 0xdd, 0xcf, 0xf8, 0xff, 0x09, 0x89, 0x02, 0x06, 0xba, 0x9a, + 0xfc, 0x67, 0x0c, 0xe1, 0x7a, 0x49, 0xed, 0x9d, 0x21, 0x58, 0xc1, 0x4d, 0x11, 0xf1, 0x9d, 0xaf, + 0x0f, 0x0d, 0x80, 0xd2, 0x37, 0x45, 0x72, 0x88, 0xc5, 0x95, 0x24, 0x1e, 0x82, 0x25, 0x29, 0x49, + 0x6a, 0xe0, 0x9b, 0xa4, 0x24, 0xe9, 0x51, 0x9d, 0x32, 0x81, 0x3c, 0x38, 0x97, 0x90, 0x70, 0x43, + 0xef, 0xa6, 0x29, 0x79, 0x52, 0xf6, 0xaf, 0x76, 0x7b, 0x44, 0xec, 0xe0, 0xe2, 0x8b, 0x4d, 0xff, + 0x76, 0x7a, 0x16, 0x2a, 0x75, 0xf1, 0xa3, 0x5b, 0x7c, 0xed, 0x3f, 0x73, 0x30, 0xc3, 0x93, 0xa9, + 0xc2, 0x83, 0xf9, 0x0c, 0xa0, 0x5f, 0xc7, 0x40, 0x57, 0x92, 0xe7, 0x24, 0x54, 0x81, 0xaa, 0x5d, + 0x1d, 0x8c, 0x14, 0x54, 0xb4, 0x40, 0x4d, 0x00, 0x5d, 0x1d, 0x52, 0x32, 0x48, 0x55, 0xb4, 0x84, + 0xc2, 0x82, 0x32, 0x81, 0x3e, 0x81, 0xa2, 0x9f, 0x7c, 0x46, 0x49, 0xc9, 0xeb, 0x48, 0x76, 0xbd, + 0x76, 0x65, 0x20, 0x4e, 0x50, 0xea, 0x40, 0x66, 0x39, 0x49, 0xea, 0x78, 0x06, 0x3b, 0x49, 0xea, + 0xa4, 0xf4, 0x74, 0x7f, 0x4e, 0x78, 0xfe, 0x29, 0x75, 0x4e, 0x42, 0xe9, 0xbf, 0xd4, 0x39, 0x09, + 0x27, 0xb1, 0x94, 0x89, 0x35, 0x1b, 0xca, 0x3c, 0x38, 0x90, 0xab, 0xab, 0xc1, 0x4c, 0x30, 0x66, + 0x40, 0xa9, 0x72, 0x86, 0x62, 0x91, 0xda, 0xb5, 0x61, 0x68, 0xb2, 0xc7, 0x27, 0xd7, 0x7e, 0xfb, + 0xf5, 0x72, 0xe6, 0xdf, 0xbe, 0x5e, 0x9e, 0xf8, 0xea, 0x9b, 0xe5, 0xcc, 0x6f, 0xbf, 0x59, 0xce, + 0xfc, 0xcb, 0x37, 0xcb, 0x99, 0xff, 0xfa, 0x66, 0x39, 0xf3, 0xd7, 0xff, 0xbd, 0x3c, 0xf1, 0xd3, + 0x82, 0x24, 0xdf, 0x9f, 0x62, 0xff, 0x43, 0xf6, 0xfe, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x07, + 0xa0, 0x26, 0x14, 0x4d, 0x4e, 0x00, 0x00, } diff --git a/cri/apis/v1alpha2/api.proto b/cri/apis/v1alpha2/api.proto index df9005f6a..a4ec2505b 100644 --- a/cri/apis/v1alpha2/api.proto +++ b/cri/apis/v1alpha2/api.proto @@ -111,6 +111,12 @@ service ImageService { rpc ImageFsInfo(ImageFsInfoRequest) returns (ImageFsInfoResponse) {} } +// VolumeService defines the public APIs for managing volumes. +service VolumeService { + // RemoveVolume removes the volume. + rpc RemoveVolume(RemoveVolumeRequest) returns (RemoveVolumeResponse) {} +} + message VersionRequest { // Version of the kubelet runtime API. string version = 1; @@ -181,6 +187,8 @@ message Mount { bool selinux_relabel = 4; // Requested propagation mode. MountPropagation propagation = 5; + // Name of volume + string name = 100; } // A NamespaceMode describes the intended namespace configuration for each @@ -1282,4 +1290,12 @@ message ReopenContainerLogRequest { } message ReopenContainerLogResponse{ -} \ No newline at end of file +} + +message RemoveVolumeRequest { + // Name of the volume to remove + string volume_name = 1; +} + +message RemoveVolumeResponse { +} diff --git a/cri/criservice.go b/cri/criservice.go index 63bba8298..ed9531c39 100644 --- a/cri/criservice.go +++ b/cri/criservice.go @@ -14,7 +14,7 @@ import ( ) // RunCriService start cri service if pouchd is specified with --enable-cri. -func RunCriService(daemonconfig *config.Config, containerMgr mgr.ContainerMgr, imageMgr mgr.ImageMgr, stopCh chan error, readyCh chan bool) { +func RunCriService(daemonconfig *config.Config, containerMgr mgr.ContainerMgr, imageMgr mgr.ImageMgr, volumeMgr mgr.VolumeMgr, stopCh chan error, readyCh chan bool) { var err error defer func() { @@ -30,7 +30,7 @@ func RunCriService(daemonconfig *config.Config, containerMgr mgr.ContainerMgr, i case "v1alpha1": err = runv1alpha1(daemonconfig, containerMgr, imageMgr, readyCh) case "v1alpha2": - err = runv1alpha2(daemonconfig, containerMgr, imageMgr, readyCh) + err = runv1alpha2(daemonconfig, containerMgr, imageMgr, volumeMgr, readyCh) default: readyCh <- false err = fmt.Errorf("invalid CRI version,failed to start CRI service") @@ -79,9 +79,9 @@ func runv1alpha1(daemonconfig *config.Config, containerMgr mgr.ContainerMgr, ima } // Start CRI service with CRI version: v1alpha2 -func runv1alpha2(daemonconfig *config.Config, containerMgr mgr.ContainerMgr, imageMgr mgr.ImageMgr, readyCh chan bool) error { +func runv1alpha2(daemonconfig *config.Config, containerMgr mgr.ContainerMgr, imageMgr mgr.ImageMgr, volumeMgr mgr.VolumeMgr, readyCh chan bool) error { logrus.Infof("Start CRI service with CRI version: v1alpha2") - criMgr, err := criv1alpha2.NewCriManager(daemonconfig, containerMgr, imageMgr) + criMgr, err := criv1alpha2.NewCriManager(daemonconfig, containerMgr, imageMgr, volumeMgr) if err != nil { readyCh <- false return fmt.Errorf("failed to get CriManager with error: %v", err) diff --git a/cri/v1alpha2/cri.go b/cri/v1alpha2/cri.go index 8463f089b..75b6eb852 100644 --- a/cri/v1alpha2/cri.go +++ b/cri/v1alpha2/cri.go @@ -91,6 +91,9 @@ type CriMgr interface { // ImageServiceServer is interface of CRI image service. runtime.ImageServiceServer + // VolumeServiceServer is interface of CRI volume service. + runtime.VolumeServiceServer + // StreamServerStart starts the stream server of CRI. StreamServerStart() error } @@ -99,6 +102,7 @@ type CriMgr interface { type CriManager struct { ContainerMgr mgr.ContainerMgr ImageMgr mgr.ImageMgr + VolumeMgr mgr.VolumeMgr CniMgr cni.CniMgr // StreamServer is the stream server of CRI serves container streaming request. @@ -121,7 +125,7 @@ type CriManager struct { } // NewCriManager creates a brand new cri manager. -func NewCriManager(config *config.Config, ctrMgr mgr.ContainerMgr, imgMgr mgr.ImageMgr) (CriMgr, error) { +func NewCriManager(config *config.Config, ctrMgr mgr.ContainerMgr, imgMgr mgr.ImageMgr, volumeMgr mgr.VolumeMgr) (CriMgr, error) { streamServer, err := newStreamServer(ctrMgr, streamServerAddress, streamServerPort) if err != nil { return nil, fmt.Errorf("failed to create stream server for cri manager: %v", err) @@ -130,6 +134,7 @@ func NewCriManager(config *config.Config, ctrMgr mgr.ContainerMgr, imgMgr mgr.Im c := &CriManager{ ContainerMgr: ctrMgr, ImageMgr: imgMgr, + VolumeMgr: volumeMgr, CniMgr: cni.NewCniManager(&config.CriConfig), StreamServer: streamServer, SandboxBaseDir: path.Join(config.HomeDir, "sandboxes"), @@ -671,6 +676,7 @@ func (c *CriManager) ContainerStatus(ctx context.Context, r *runtime.ContainerSt HostPath: m.Source, ContainerPath: m.Destination, Readonly: !m.RW, + Name: m.Name, // Note: can't set SeLinuxRelabel. }) } @@ -1104,3 +1110,12 @@ func (c *CriManager) ImageFsInfo(ctx context.Context, r *runtime.ImageFsInfoRequ }, }, nil } + +// RemoveVolume removes the volume. +func (c *CriManager) RemoveVolume(ctx context.Context, r *runtime.RemoveVolumeRequest) (*runtime.RemoveVolumeResponse, error) { + volumeName := r.GetVolumeName() + if err := c.VolumeMgr.Remove(ctx, volumeName); err != nil { + return nil, err + } + return &runtime.RemoveVolumeResponse{}, nil +} diff --git a/cri/v1alpha2/cri_wrapper.go b/cri/v1alpha2/cri_wrapper.go index be757448b..61142ee01 100644 --- a/cri/v1alpha2/cri_wrapper.go +++ b/cri/v1alpha2/cri_wrapper.go @@ -400,3 +400,16 @@ func (c *CriWrapper) ImageFsInfo(ctx context.Context, r *runtime.ImageFsInfoRequ }() return c.CriManager.ImageFsInfo(ctx, r) } + +// RemoveVolume removes the volume. +func (c *CriWrapper) RemoveVolume(ctx context.Context, r *runtime.RemoveVolumeRequest) (res *runtime.RemoveVolumeResponse, err error) { + logrus.Infof("RemoveVolume %q", r.GetVolumeName()) + defer func() { + if err != nil { + logrus.Errorf("RemoveVolume %q failed, error: %v", r.GetVolumeName(), err) + } else { + logrus.Infof("RemoveVolume %q returns successfully", r.GetVolumeName()) + } + }() + return c.CriManager.RemoveVolume(ctx, r) +} diff --git a/cri/v1alpha2/service/cri.go b/cri/v1alpha2/service/cri.go index 2a0367f45..1be998af9 100644 --- a/cri/v1alpha2/service/cri.go +++ b/cri/v1alpha2/service/cri.go @@ -26,6 +26,7 @@ func NewService(cfg *config.Config, criMgr cri.CriMgr) (*Service, error) { runtime.RegisterRuntimeServiceServer(s.server, s.criMgr) runtime.RegisterImageServiceServer(s.server, s.criMgr) + runtime.RegisterVolumeServiceServer(s.server, s.criMgr) return s, nil } diff --git a/daemon/daemon.go b/daemon/daemon.go index 2671361b5..66875d118 100644 --- a/daemon/daemon.go +++ b/daemon/daemon.go @@ -228,7 +228,7 @@ func (d *Daemon) Run() error { }() criStopCh := make(chan error) - go criservice.RunCriService(d.config, d.containerMgr, d.imageMgr, criStopCh, criReadyCh) + go criservice.RunCriService(d.config, d.containerMgr, d.imageMgr, d.volumeMgr, criStopCh, criReadyCh) httpReady := <-httpReadyCh criReady := <-criReadyCh diff --git a/hack/protoc.sh b/hack/protoc.sh index 4e36f0832..616b21554 100644 --- a/hack/protoc.sh +++ b/hack/protoc.sh @@ -39,7 +39,6 @@ generateproto(){ } main(){ - API_ROOT="${DIR}/cri/apis/v1alpha1" YEAR_TIME=" $(date '+%Y')" generateproto API_ROOT="${DIR}/cri/apis/v1alpha2" YEAR_TIME="" generateproto } main "$@"