diff --git a/errors.go b/errors.go index 0aa2472..55ca55d 100644 --- a/errors.go +++ b/errors.go @@ -94,40 +94,40 @@ func getGRPCStatus(err error, grpcCode codes.Code, daCode pbda.ErrorCode) *statu // GRPCStatus returns the gRPC status with details for an ErrBlobNotFound error. func (e *ErrBlobNotFound) GRPCStatus() *status.Status { - return getGRPCStatus(e, codes.NotFound, pbda.ErrorCode_BlobNotFound) + return getGRPCStatus(e, codes.NotFound, pbda.ErrorCode_ERROR_CODE_BLOB_NOT_FOUND) } // GRPCStatus returns the gRPC status with details for an ErrBlobSizeOverLimit error. func (e *ErrBlobSizeOverLimit) GRPCStatus() *status.Status { - return getGRPCStatus(e, codes.ResourceExhausted, pbda.ErrorCode_BlobSizeOverLimit) + return getGRPCStatus(e, codes.ResourceExhausted, pbda.ErrorCode_ERROR_CODE_BLOB_SIZE_OVER_LIMIT) } // GRPCStatus returns the gRPC status with details for an ErrTxTimedOut error. func (e *ErrTxTimedOut) GRPCStatus() *status.Status { - return getGRPCStatus(e, codes.DeadlineExceeded, pbda.ErrorCode_TxTimedOut) + return getGRPCStatus(e, codes.DeadlineExceeded, pbda.ErrorCode_ERROR_CODE_TX_TIMED_OUT) } // GRPCStatus returns the gRPC status with details for an ErrTxAlreadyInMempool error. func (e *ErrTxAlreadyInMempool) GRPCStatus() *status.Status { - return getGRPCStatus(e, codes.AlreadyExists, pbda.ErrorCode_TxAlreadyInMempool) + return getGRPCStatus(e, codes.AlreadyExists, pbda.ErrorCode_ERROR_CODE_TX_ALREADY_IN_MEMPOOL) } // GRPCStatus returns the gRPC status with details for an ErrTxIncorrectAccountSequence error. func (e *ErrTxIncorrectAccountSequence) GRPCStatus() *status.Status { - return getGRPCStatus(e, codes.InvalidArgument, pbda.ErrorCode_TxIncorrectAccountSequence) + return getGRPCStatus(e, codes.InvalidArgument, pbda.ErrorCode_ERROR_CODE_TX_INCORRECT_ACCOUNT_SEQUENCE) } // GRPCStatus returns the gRPC status with details for an ErrTxTooLarge error. func (e *ErrTxTooLarge) GRPCStatus() *status.Status { - return getGRPCStatus(e, codes.ResourceExhausted, pbda.ErrorCode_TxTooLarge) + return getGRPCStatus(e, codes.ResourceExhausted, pbda.ErrorCode_ERROR_CODE_TX_TOO_LARGE) } // GRPCStatus returns the gRPC status with details for an ErrContextDeadline error. func (e *ErrContextDeadline) GRPCStatus() *status.Status { - return getGRPCStatus(e, codes.DeadlineExceeded, pbda.ErrorCode_ContextDeadline) + return getGRPCStatus(e, codes.DeadlineExceeded, pbda.ErrorCode_ERROR_CODE_CONTEXT_DEADLINE) } // GRPCStatus returns the gRPC status with details for an ErrFutureHeight error. func (e *ErrFutureHeight) GRPCStatus() *status.Status { - return getGRPCStatus(e, codes.OutOfRange, pbda.ErrorCode_FutureHeight) + return getGRPCStatus(e, codes.OutOfRange, pbda.ErrorCode_ERROR_CODE_FUTURE_HEIGHT) } diff --git a/proto/da/da.proto b/proto/da/da.proto index 4f5d3c1..3aa0d89 100644 --- a/proto/da/da.proto +++ b/proto/da/da.proto @@ -132,15 +132,15 @@ message ValidateResponse { } enum ErrorCode { - Unknown = 0; - BlobNotFound = 32001; - BlobSizeOverLimit = 32002; - TxTimedOut = 32003; - TxAlreadyInMempool = 32004; - TxIncorrectAccountSequence = 32005; - TxTooLarge = 32006; - ContextDeadline = 32007; - FutureHeight = 32008; + ERROR_CODE_UNKNOWN = 0; + ERROR_CODE_BLOB_NOT_FOUND = 32001; + ERROR_CODE_BLOB_SIZE_OVER_LIMIT = 32002; + ERROR_CODE_TX_TIMED_OUT = 32003; + ERROR_CODE_TX_ALREADY_IN_MEMPOOL = 32004; + ERROR_CODE_TX_INCORRECT_ACCOUNT_SEQUENCE = 32005; + ERROR_CODE_TX_TOO_LARGE = 32006; + ERROR_CODE_CONTEXT_DEADLINE = 32007; + ERROR_CODE_FUTURE_HEIGHT = 32008; } message ErrorDetails { diff --git a/proxy/grpc/errors.go b/proxy/grpc/errors.go index d6b8fd4..81fea40 100644 --- a/proxy/grpc/errors.go +++ b/proxy/grpc/errors.go @@ -31,21 +31,21 @@ func tryToMapError(err error) error { func errorForCode(code pbda.ErrorCode) error { switch code { - case pbda.ErrorCode_BlobNotFound: + case pbda.ErrorCode_ERROR_CODE_BLOB_NOT_FOUND: return &da.ErrBlobNotFound{} - case pbda.ErrorCode_BlobSizeOverLimit: + case pbda.ErrorCode_ERROR_CODE_BLOB_SIZE_OVER_LIMIT: return &da.ErrBlobSizeOverLimit{} - case pbda.ErrorCode_TxTimedOut: + case pbda.ErrorCode_ERROR_CODE_TX_TIMED_OUT: return &da.ErrTxTimedOut{} - case pbda.ErrorCode_TxAlreadyInMempool: + case pbda.ErrorCode_ERROR_CODE_TX_ALREADY_IN_MEMPOOL: return &da.ErrTxAlreadyInMempool{} - case pbda.ErrorCode_TxIncorrectAccountSequence: + case pbda.ErrorCode_ERROR_CODE_TX_INCORRECT_ACCOUNT_SEQUENCE: return &da.ErrTxIncorrectAccountSequence{} - case pbda.ErrorCode_TxTooLarge: + case pbda.ErrorCode_ERROR_CODE_TX_TOO_LARGE: return &da.ErrTxTooLarge{} - case pbda.ErrorCode_ContextDeadline: + case pbda.ErrorCode_ERROR_CODE_CONTEXT_DEADLINE: return &da.ErrContextDeadline{} - case pbda.ErrorCode_FutureHeight: + case pbda.ErrorCode_ERROR_CODE_FUTURE_HEIGHT: return &da.ErrFutureHeight{} default: return errors.New("unknown error code") diff --git a/types/pb/da/da.pb.go b/types/pb/da/da.pb.go index ac2eb8d..18093e3 100644 --- a/types/pb/da/da.pb.go +++ b/types/pb/da/da.pb.go @@ -32,39 +32,39 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package type ErrorCode int32 const ( - ErrorCode_Unknown ErrorCode = 0 - ErrorCode_BlobNotFound ErrorCode = 32001 - ErrorCode_BlobSizeOverLimit ErrorCode = 32002 - ErrorCode_TxTimedOut ErrorCode = 32003 - ErrorCode_TxAlreadyInMempool ErrorCode = 32004 - ErrorCode_TxIncorrectAccountSequence ErrorCode = 32005 - ErrorCode_TxTooLarge ErrorCode = 32006 - ErrorCode_ContextDeadline ErrorCode = 32007 - ErrorCode_FutureHeight ErrorCode = 32008 + ErrorCode_ERROR_CODE_UNKNOWN ErrorCode = 0 + ErrorCode_ERROR_CODE_BLOB_NOT_FOUND ErrorCode = 32001 + ErrorCode_ERROR_CODE_BLOB_SIZE_OVER_LIMIT ErrorCode = 32002 + ErrorCode_ERROR_CODE_TX_TIMED_OUT ErrorCode = 32003 + ErrorCode_ERROR_CODE_TX_ALREADY_IN_MEMPOOL ErrorCode = 32004 + ErrorCode_ERROR_CODE_TX_INCORRECT_ACCOUNT_SEQUENCE ErrorCode = 32005 + ErrorCode_ERROR_CODE_TX_TOO_LARGE ErrorCode = 32006 + ErrorCode_ERROR_CODE_CONTEXT_DEADLINE ErrorCode = 32007 + ErrorCode_ERROR_CODE_FUTURE_HEIGHT ErrorCode = 32008 ) var ErrorCode_name = map[int32]string{ - 0: "Unknown", - 32001: "BlobNotFound", - 32002: "BlobSizeOverLimit", - 32003: "TxTimedOut", - 32004: "TxAlreadyInMempool", - 32005: "TxIncorrectAccountSequence", - 32006: "TxTooLarge", - 32007: "ContextDeadline", - 32008: "FutureHeight", + 0: "ERROR_CODE_UNKNOWN", + 32001: "ERROR_CODE_BLOB_NOT_FOUND", + 32002: "ERROR_CODE_BLOB_SIZE_OVER_LIMIT", + 32003: "ERROR_CODE_TX_TIMED_OUT", + 32004: "ERROR_CODE_TX_ALREADY_IN_MEMPOOL", + 32005: "ERROR_CODE_TX_INCORRECT_ACCOUNT_SEQUENCE", + 32006: "ERROR_CODE_TX_TOO_LARGE", + 32007: "ERROR_CODE_CONTEXT_DEADLINE", + 32008: "ERROR_CODE_FUTURE_HEIGHT", } var ErrorCode_value = map[string]int32{ - "Unknown": 0, - "BlobNotFound": 32001, - "BlobSizeOverLimit": 32002, - "TxTimedOut": 32003, - "TxAlreadyInMempool": 32004, - "TxIncorrectAccountSequence": 32005, - "TxTooLarge": 32006, - "ContextDeadline": 32007, - "FutureHeight": 32008, + "ERROR_CODE_UNKNOWN": 0, + "ERROR_CODE_BLOB_NOT_FOUND": 32001, + "ERROR_CODE_BLOB_SIZE_OVER_LIMIT": 32002, + "ERROR_CODE_TX_TIMED_OUT": 32003, + "ERROR_CODE_TX_ALREADY_IN_MEMPOOL": 32004, + "ERROR_CODE_TX_INCORRECT_ACCOUNT_SEQUENCE": 32005, + "ERROR_CODE_TX_TOO_LARGE": 32006, + "ERROR_CODE_CONTEXT_DEADLINE": 32007, + "ERROR_CODE_FUTURE_HEIGHT": 32008, } func (x ErrorCode) String() string { @@ -1043,7 +1043,7 @@ func (m *ErrorDetails) GetCode() ErrorCode { if m != nil { return m.Code } - return ErrorCode_Unknown + return ErrorCode_ERROR_CODE_UNKNOWN } func init() { @@ -1073,59 +1073,63 @@ func init() { func init() { proto.RegisterFile("da/da.proto", fileDescriptor_feb508392bc12c0f) } var fileDescriptor_feb508392bc12c0f = []byte{ - // 832 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x5b, 0x6f, 0xe3, 0x44, - 0x14, 0xce, 0x34, 0x6d, 0x5a, 0x1f, 0x37, 0xa9, 0x3b, 0xdb, 0xdd, 0xb5, 0x0c, 0x84, 0xee, 0x3c, - 0x55, 0x0b, 0xa4, 0x6c, 0x91, 0xb8, 0x3d, 0xd1, 0x36, 0x6c, 0x88, 0xb4, 0x37, 0x39, 0x01, 0x09, - 0x09, 0xa9, 0x9a, 0xd8, 0xb3, 0x59, 0x0b, 0xdb, 0x63, 0xec, 0x71, 0x09, 0xcb, 0x13, 0x97, 0x05, - 0x1e, 0x91, 0xf8, 0x53, 0x3c, 0xf6, 0x91, 0x47, 0xd4, 0xfe, 0x8b, 0x3c, 0xa1, 0xf1, 0xf8, 0x12, - 0xef, 0x2a, 0x54, 0x91, 0xf6, 0x71, 0xce, 0xf5, 0x9b, 0x73, 0xbe, 0xf3, 0x81, 0xee, 0xd2, 0x43, - 0x97, 0xf6, 0xa2, 0x98, 0x0b, 0x8e, 0xd7, 0x5c, 0x6a, 0xbd, 0x3d, 0xe5, 0x7c, 0xea, 0xb3, 0xc3, - 0xcc, 0x32, 0x49, 0x9f, 0x1e, 0x0a, 0x2f, 0x60, 0x89, 0xa0, 0x41, 0xa4, 0x82, 0xc8, 0x1d, 0xd0, - 0x1e, 0xd1, 0x80, 0x25, 0x11, 0x75, 0x18, 0xde, 0x83, 0x8d, 0x73, 0xea, 0xa7, 0xcc, 0x44, 0xfb, - 0xe8, 0x60, 0xdb, 0x56, 0x0f, 0xf2, 0x26, 0xac, 0x9f, 0xf8, 0x7c, 0xb2, 0xc4, 0x6b, 0xc1, 0xda, - 0xb0, 0xbf, 0xc4, 0x47, 0x00, 0x4e, 0x79, 0x10, 0x78, 0x22, 0x60, 0xa1, 0x58, 0x12, 0xf3, 0x16, - 0x6c, 0x3c, 0x89, 0x39, 0x7f, 0xba, 0xc4, 0xbd, 0x07, 0xf8, 0x21, 0x9d, 0xc9, 0xfe, 0x23, 0xef, - 0x39, 0xb3, 0xd9, 0x77, 0x29, 0x4b, 0x04, 0xf9, 0x04, 0x6e, 0xd4, 0xac, 0x49, 0xc4, 0xc3, 0x84, - 0x61, 0x02, 0xed, 0x80, 0xce, 0xce, 0x26, 0x3e, 0x9f, 0x9c, 0x25, 0xde, 0x73, 0x55, 0x6a, 0xdd, - 0xd6, 0x83, 0x2a, 0x96, 0x8c, 0x00, 0x06, 0x4c, 0xe4, 0x85, 0xb0, 0x09, 0x4d, 0xcf, 0x4d, 0x4c, - 0xb4, 0xdf, 0x3c, 0xd0, 0x8f, 0x5a, 0x3d, 0x97, 0xf6, 0x86, 0x7d, 0x5b, 0x9a, 0xf0, 0x3b, 0xa0, - 0x85, 0xc5, 0x60, 0xcc, 0xb5, 0x7d, 0x74, 0xa0, 0x1f, 0xb5, 0xa5, 0xbf, 0x9c, 0x96, 0x5d, 0xf9, - 0xc9, 0x7b, 0xa0, 0x67, 0x45, 0x73, 0x1c, 0x5d, 0xd8, 0x90, 0x18, 0x8a, 0xba, 0x5b, 0x32, 0x4f, - 0x02, 0xb0, 0x95, 0x99, 0x8c, 0xa1, 0x3d, 0x60, 0x62, 0xe8, 0x26, 0x05, 0x8c, 0x5b, 0xd0, 0x7a, - 0xc6, 0xbc, 0xe9, 0x33, 0x91, 0x23, 0xce, 0x5f, 0xab, 0x81, 0x70, 0xa1, 0x53, 0x54, 0xcd, 0x71, - 0x2c, 0xff, 0xdd, 0xc7, 0xa0, 0x95, 0x4c, 0xc8, 0x0b, 0x5b, 0x3d, 0xc5, 0x95, 0x5e, 0xc1, 0x95, - 0xde, 0xb8, 0x88, 0xb0, 0xab, 0x60, 0xf2, 0x35, 0x18, 0x03, 0x26, 0xb2, 0x95, 0x25, 0xaf, 0x79, - 0x8a, 0x1f, 0xc2, 0xee, 0x42, 0xe9, 0xfc, 0x0f, 0x77, 0xa0, 0x15, 0x65, 0x96, 0xbc, 0xbc, 0x26, - 0xd3, 0xb3, 0x18, 0x3b, 0x77, 0x90, 0x6f, 0xa0, 0xad, 0x68, 0x56, 0xe0, 0xb9, 0x66, 0xfe, 0xab, - 0xa1, 0x3a, 0x81, 0x4e, 0x51, 0x3d, 0x87, 0xf4, 0x3e, 0xe8, 0x4e, 0x49, 0xeb, 0xa2, 0x49, 0x47, - 0x16, 0xa8, 0xd8, 0x6e, 0x2f, 0x86, 0x90, 0xbf, 0x10, 0xb4, 0x47, 0xe9, 0x64, 0x05, 0x88, 0x6f, - 0x80, 0x36, 0xa5, 0xc9, 0x59, 0x14, 0x7b, 0x39, 0x44, 0x64, 0x6f, 0x4d, 0x69, 0xf2, 0x44, 0xbe, - 0xeb, 0xf8, 0x9b, 0xff, 0x8f, 0x1f, 0x9b, 0xb0, 0xc9, 0x23, 0xe1, 0xf1, 0x30, 0x31, 0xd7, 0xb3, - 0xcb, 0x2a, 0x9e, 0xe4, 0x2e, 0x74, 0x0a, 0x50, 0xd7, 0x11, 0x86, 0xfc, 0x08, 0x3b, 0x5f, 0x51, - 0xdf, 0x73, 0xa9, 0x60, 0xd7, 0x6f, 0xbd, 0xda, 0xd9, 0xda, 0x92, 0x9d, 0xad, 0xf4, 0x05, 0xf2, - 0x2e, 0x18, 0x55, 0xf3, 0x12, 0xea, 0x66, 0xcc, 0x92, 0xd4, 0xcf, 0x17, 0xb0, 0x65, 0x17, 0x4f, - 0x72, 0x0f, 0xb6, 0x3f, 0x8f, 0x63, 0x1e, 0xf7, 0x99, 0xa0, 0x9e, 0x2f, 0xd1, 0xac, 0x3b, 0xdc, - 0x55, 0x62, 0xd0, 0x51, 0x5d, 0x32, 0xff, 0x29, 0x77, 0x99, 0x9d, 0xb9, 0xee, 0x5e, 0x20, 0xd0, - 0x4a, 0x1b, 0xd6, 0x61, 0xf3, 0xcb, 0xf0, 0xdb, 0x90, 0x7f, 0x1f, 0x1a, 0x0d, 0x8c, 0x61, 0x5b, - 0xee, 0xe5, 0x11, 0x17, 0xf7, 0x79, 0x1a, 0xba, 0xc6, 0x4f, 0x73, 0x84, 0x6f, 0xc3, 0x6e, 0xa1, - 0x27, 0x8f, 0xcf, 0x59, 0xfc, 0xc0, 0x0b, 0x3c, 0x61, 0xfc, 0x3c, 0x47, 0xd8, 0x00, 0x18, 0xcf, - 0xe4, 0xd9, 0xb8, 0x8f, 0x53, 0x61, 0xfc, 0x32, 0x47, 0xd8, 0x04, 0x3c, 0x9e, 0x1d, 0xfb, 0x31, - 0xa3, 0xee, 0x0f, 0xc3, 0xf0, 0x21, 0x0b, 0x22, 0xce, 0x7d, 0xe3, 0xd7, 0x39, 0xc2, 0xfb, 0x60, - 0x8d, 0x67, 0xc3, 0xd0, 0xe1, 0x71, 0xcc, 0x1c, 0x71, 0xec, 0x38, 0x3c, 0x0d, 0xc5, 0x48, 0xce, - 0x36, 0x74, 0x98, 0xf1, 0xa2, 0xac, 0xc6, 0xf9, 0x03, 0x1a, 0x4f, 0x99, 0xf1, 0xdb, 0x1c, 0xe1, - 0x9b, 0xb0, 0x73, 0xca, 0x43, 0xc1, 0x66, 0xa2, 0xcf, 0xa8, 0xeb, 0x7b, 0x21, 0x33, 0x7e, 0x9f, - 0x23, 0x89, 0xf1, 0x7e, 0x2a, 0xd2, 0x98, 0x7d, 0x91, 0xc9, 0x86, 0xf1, 0xc7, 0x1c, 0x1d, 0xbd, - 0x68, 0x82, 0xd6, 0x3f, 0x1e, 0xb1, 0xf8, 0x5c, 0x32, 0xe6, 0x33, 0xd0, 0x17, 0x04, 0x13, 0xdf, - 0x92, 0x43, 0x78, 0x55, 0x57, 0xad, 0xdb, 0xaf, 0xd8, 0xd5, 0xb4, 0x49, 0x03, 0x1f, 0x40, 0x73, - 0xc0, 0x04, 0xce, 0x68, 0x5e, 0x09, 0xa8, 0xb5, 0x53, 0xbe, 0xcb, 0xc8, 0x7b, 0xd0, 0x52, 0x3a, - 0x84, 0x77, 0x73, 0x67, 0xa5, 0x74, 0x16, 0x5e, 0x34, 0x95, 0x29, 0x9f, 0x82, 0x56, 0x5e, 0x3e, - 0xde, 0xcb, 0x43, 0x6a, 0x1a, 0x63, 0xdd, 0x7c, 0xc9, 0xba, 0xd8, 0x4e, 0x9d, 0x9d, 0x6a, 0x57, - 0x53, 0x02, 0xd5, 0xae, 0x7e, 0xbe, 0x2a, 0x45, 0x11, 0x5f, 0xa5, 0xd4, 0x2e, 0x53, 0xa5, 0xd4, - 0xef, 0x82, 0x34, 0xf0, 0x47, 0xb0, 0x55, 0x50, 0x10, 0xdf, 0x90, 0x11, 0x2f, 0x5d, 0x83, 0xb5, - 0x57, 0x37, 0x16, 0x89, 0x27, 0xe6, 0xdf, 0x97, 0x5d, 0x74, 0x71, 0xd9, 0x45, 0xff, 0x5e, 0x76, - 0xd1, 0x9f, 0x57, 0xdd, 0xc6, 0xc5, 0x55, 0xb7, 0xf1, 0xcf, 0x55, 0xb7, 0x31, 0x69, 0x65, 0x42, - 0xfb, 0xc1, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xcb, 0xf5, 0xc7, 0x84, 0xb5, 0x07, 0x00, 0x00, + // 887 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x4d, 0x6f, 0xdb, 0x46, + 0x10, 0x15, 0x25, 0x5b, 0xb1, 0x46, 0x91, 0xc2, 0x6c, 0x5c, 0x47, 0x55, 0x1a, 0xd9, 0x5e, 0xa0, + 0x85, 0x90, 0xb6, 0x72, 0xe3, 0x02, 0xfd, 0x3a, 0x55, 0x22, 0x37, 0x0a, 0x51, 0x89, 0x74, 0x57, + 0x54, 0x9a, 0x14, 0x05, 0x16, 0x94, 0xb9, 0x51, 0x08, 0x48, 0xa6, 0x2a, 0x52, 0x41, 0x90, 0x9e, + 0xfa, 0x91, 0xb6, 0xc7, 0x02, 0xfd, 0x4b, 0x3d, 0xf4, 0x98, 0x63, 0x8f, 0x85, 0xfd, 0x2f, 0x74, + 0x2a, 0xc8, 0x25, 0x29, 0xd2, 0xae, 0x6a, 0x18, 0xe8, 0x71, 0x66, 0xde, 0xcc, 0xbc, 0xdd, 0x99, + 0x79, 0x50, 0xb6, 0xad, 0x03, 0xdb, 0x6a, 0xcd, 0xe6, 0xae, 0xef, 0xa2, 0xbc, 0x6d, 0xd5, 0x77, + 0xc7, 0xae, 0x3b, 0x9e, 0xf0, 0x83, 0xd0, 0x33, 0x5a, 0x3c, 0x3d, 0xf0, 0x9d, 0x29, 0xf7, 0x7c, + 0x6b, 0x3a, 0x13, 0x20, 0xbc, 0x0f, 0x25, 0xdd, 0x9a, 0x72, 0x6f, 0x66, 0x1d, 0x73, 0xb4, 0x0d, + 0x9b, 0xcf, 0xad, 0xc9, 0x82, 0xd7, 0xa4, 0x3d, 0xa9, 0x79, 0x9d, 0x0a, 0x03, 0xbf, 0x05, 0x1b, + 0x9d, 0x89, 0x3b, 0x5a, 0x13, 0xad, 0x43, 0x5e, 0x53, 0xd7, 0xc4, 0x30, 0x80, 0xe2, 0x4e, 0xa7, + 0x8e, 0x3f, 0xe5, 0x27, 0xfe, 0x1a, 0xcc, 0x5d, 0xd8, 0x3c, 0x9a, 0xbb, 0xee, 0xd3, 0x35, 0xe1, + 0x6d, 0x40, 0x7d, 0xeb, 0x45, 0xd0, 0x7f, 0xe0, 0xbc, 0xe4, 0x94, 0x7f, 0xbb, 0xe0, 0x9e, 0x8f, + 0x3f, 0x85, 0x5b, 0x19, 0xaf, 0x37, 0x73, 0x4f, 0x3c, 0x8e, 0x30, 0x54, 0xa6, 0xd6, 0x0b, 0x36, + 0x9a, 0xb8, 0x23, 0xe6, 0x39, 0x2f, 0x45, 0xa9, 0x0d, 0x5a, 0x9e, 0xae, 0xb0, 0x78, 0x00, 0xd0, + 0xe5, 0x7e, 0x54, 0x08, 0xd5, 0xa0, 0xe0, 0xd8, 0x5e, 0x4d, 0xda, 0x2b, 0x34, 0xcb, 0x87, 0xc5, + 0x96, 0x6d, 0xb5, 0x34, 0x95, 0x06, 0x2e, 0xf4, 0x2e, 0x94, 0x4e, 0xe2, 0x8f, 0xa9, 0xe5, 0xf7, + 0xa4, 0x66, 0xf9, 0xb0, 0x12, 0xc4, 0x93, 0xdf, 0xa2, 0xab, 0x38, 0x7e, 0x1f, 0xca, 0x61, 0xd1, + 0x88, 0x47, 0x03, 0x36, 0x03, 0x0e, 0x71, 0xdd, 0xad, 0x20, 0x2f, 0x20, 0x40, 0x85, 0x1b, 0x9b, + 0x50, 0xe9, 0x72, 0x5f, 0xb3, 0xbd, 0x98, 0xc6, 0x0e, 0x14, 0x9f, 0x71, 0x67, 0xfc, 0xcc, 0x8f, + 0x18, 0x47, 0xd6, 0xd5, 0x48, 0xd8, 0x50, 0x8d, 0xab, 0x46, 0x3c, 0xd6, 0xbf, 0xee, 0x13, 0x28, + 0x25, 0x9b, 0x10, 0x15, 0xae, 0xb7, 0xc4, 0xae, 0xb4, 0xe2, 0x5d, 0x69, 0x99, 0x31, 0x82, 0xae, + 0xc0, 0xf8, 0x09, 0xc8, 0x5d, 0xee, 0x87, 0x23, 0xf3, 0xfe, 0xe7, 0x5f, 0xfc, 0x08, 0x6e, 0xa6, + 0x4a, 0x47, 0x6f, 0xd8, 0x87, 0xe2, 0x2c, 0xf4, 0x44, 0xe5, 0x4b, 0x41, 0x7a, 0x88, 0xa1, 0x51, + 0x00, 0x7f, 0x03, 0x15, 0xb1, 0x66, 0x31, 0x9f, 0x4b, 0xfe, 0xff, 0x6a, 0xac, 0x3a, 0x50, 0x8d, + 0xab, 0x47, 0x94, 0x3e, 0x80, 0xf2, 0x71, 0xb2, 0xd6, 0x71, 0x93, 0x6a, 0x50, 0x60, 0xb5, 0xed, + 0x34, 0x0d, 0xc1, 0xbf, 0x4b, 0x50, 0x19, 0x2c, 0x46, 0x57, 0xa0, 0x78, 0x07, 0x4a, 0x63, 0xcb, + 0x63, 0xb3, 0xb9, 0x13, 0x51, 0x94, 0xe8, 0xd6, 0xd8, 0xf2, 0x8e, 0x02, 0x3b, 0xcb, 0xbf, 0xf0, + 0xdf, 0xfc, 0x51, 0x0d, 0xae, 0xb9, 0x33, 0xdf, 0x71, 0x4f, 0xbc, 0xda, 0x46, 0x78, 0x59, 0xb1, + 0x89, 0xef, 0x41, 0x35, 0x26, 0x75, 0xd9, 0xc2, 0xe0, 0xef, 0xe0, 0xc6, 0x23, 0x6b, 0xe2, 0xd8, + 0x96, 0xcf, 0x2f, 0x9f, 0xfa, 0x6a, 0x66, 0xf9, 0x35, 0x33, 0xbb, 0xd2, 0x13, 0xf0, 0x7b, 0x20, + 0xaf, 0x9a, 0x27, 0x54, 0xaf, 0xcd, 0xb9, 0xb7, 0x98, 0x44, 0x03, 0xd8, 0xa2, 0xb1, 0x89, 0xef, + 0xc3, 0x75, 0x32, 0x9f, 0xbb, 0x73, 0x95, 0xfb, 0x96, 0x33, 0x09, 0xd8, 0x6c, 0x1c, 0xbb, 0xb6, + 0x10, 0x83, 0xaa, 0xe8, 0x12, 0xc6, 0x15, 0xd7, 0xe6, 0x34, 0x0c, 0xdd, 0xfb, 0x23, 0x0f, 0xa5, + 0xc4, 0x87, 0x76, 0x00, 0x11, 0x4a, 0x0d, 0xca, 0x14, 0x43, 0x25, 0x6c, 0xa8, 0x7f, 0xa1, 0x1b, + 0x5f, 0xe9, 0x72, 0x0e, 0xed, 0xc2, 0x9b, 0x29, 0x7f, 0xa7, 0x67, 0x74, 0x98, 0x6e, 0x98, 0xec, + 0x81, 0x31, 0xd4, 0x55, 0xf9, 0xfb, 0xa5, 0x84, 0xde, 0x86, 0xdd, 0xf3, 0x80, 0x81, 0xf6, 0x35, + 0x61, 0xc6, 0x23, 0x42, 0x59, 0x4f, 0xeb, 0x6b, 0xa6, 0xfc, 0xc3, 0x52, 0x42, 0x77, 0xe1, 0x76, + 0x0a, 0x66, 0x3e, 0x66, 0xa6, 0xd6, 0x27, 0x2a, 0x33, 0x86, 0xa6, 0xfc, 0xe3, 0x52, 0x42, 0xef, + 0xc0, 0x5e, 0x36, 0xdc, 0xee, 0x51, 0xd2, 0x56, 0x9f, 0x30, 0x4d, 0x67, 0x7d, 0xd2, 0x3f, 0x32, + 0x8c, 0x9e, 0xfc, 0xd3, 0x52, 0x42, 0x2d, 0x68, 0x66, 0x71, 0x9a, 0xae, 0x18, 0x94, 0x12, 0xc5, + 0x64, 0x6d, 0x45, 0x31, 0x86, 0xba, 0xc9, 0x06, 0xe4, 0xcb, 0x21, 0xd1, 0x15, 0x22, 0xbf, 0xfa, + 0xd7, 0xb6, 0x86, 0xc1, 0x7a, 0x6d, 0xda, 0x25, 0xf2, 0xcf, 0x4b, 0x09, 0xed, 0xc3, 0x9d, 0x54, + 0x58, 0x31, 0x74, 0x93, 0x3c, 0x36, 0x99, 0x4a, 0xda, 0x6a, 0x4f, 0xd3, 0x89, 0xfc, 0xcb, 0x52, + 0x42, 0x0d, 0xa8, 0xa5, 0x20, 0x0f, 0x86, 0xe6, 0x90, 0x12, 0xf6, 0x90, 0x68, 0xdd, 0x87, 0xa6, + 0xfc, 0xeb, 0x52, 0x3a, 0x7c, 0x55, 0x80, 0x92, 0xda, 0x1e, 0xf0, 0xf9, 0xf3, 0x60, 0x4b, 0x3f, + 0x87, 0x72, 0x4a, 0xa4, 0xd1, 0x4e, 0xf0, 0xf1, 0x17, 0xb5, 0xbc, 0x7e, 0xfb, 0x82, 0x5f, 0x4c, + 0x18, 0xe7, 0x50, 0x13, 0x0a, 0x5d, 0xee, 0xa3, 0xf0, 0xb4, 0x56, 0xa2, 0x5d, 0xbf, 0x91, 0xd8, + 0x09, 0xf2, 0x3e, 0x14, 0x85, 0xf6, 0xa1, 0x9b, 0x51, 0x70, 0xa5, 0xae, 0x75, 0x94, 0x76, 0x25, + 0x29, 0x9f, 0x41, 0x29, 0x51, 0x1b, 0xb4, 0x1d, 0x41, 0x32, 0xba, 0x56, 0x7f, 0xe3, 0x9c, 0x37, + 0xdd, 0x4e, 0x9c, 0xba, 0x68, 0x97, 0x51, 0x1f, 0xd1, 0x2e, 0x2b, 0x19, 0x22, 0x45, 0x1c, 0x9b, + 0x48, 0xc9, 0xa8, 0x81, 0x48, 0xc9, 0xde, 0x22, 0xce, 0xa1, 0x8f, 0x61, 0x2b, 0x5e, 0x7b, 0x74, + 0x2b, 0x40, 0x9c, 0xbb, 0xc0, 0xfa, 0x76, 0xd6, 0x19, 0x27, 0x76, 0x6a, 0x7f, 0x9e, 0x36, 0xa4, + 0xd7, 0xa7, 0x0d, 0xe9, 0xef, 0xd3, 0x86, 0xf4, 0xdb, 0x59, 0x23, 0xf7, 0xfa, 0xac, 0x91, 0xfb, + 0xeb, 0xac, 0x91, 0x1b, 0x15, 0x43, 0x71, 0xff, 0xf0, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd1, + 0x82, 0x34, 0xdc, 0x29, 0x08, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.