From 28de60c0f95899f7acd1acba5ceb1c94abce13f3 Mon Sep 17 00:00:00 2001 From: wayblink Date: Mon, 28 Nov 2022 14:38:01 +0800 Subject: [PATCH 1/3] Support return simple response --- configs/backup.yaml | 5 ++- core/backup_meta.go | 79 +++++++++++++++++++++++++++++++++++++++ core/backup_server.go | 19 +++++++++- core/paramtable/params.go | 14 +++++-- 4 files changed, 110 insertions(+), 7 deletions(-) diff --git a/configs/backup.yaml b/configs/backup.yaml index 140a7ffd..302a9200 100644 --- a/configs/backup.yaml +++ b/configs/backup.yaml @@ -5,6 +5,9 @@ log: file: rootPath: "logs/backup.log" +http: + simpleResponse: true + # milvus proxy address, compatible to milvus.yaml milvus: address: localhost @@ -32,5 +35,3 @@ minio: backupBucketName: "a-bucket" backupRootPath: "backup" -backup: - storageType: minio # backup data storage engine: minio/S3/GCP diff --git a/core/backup_meta.go b/core/backup_meta.go index b3e91967..eb665f2b 100644 --- a/core/backup_meta.go +++ b/core/backup_meta.go @@ -211,3 +211,82 @@ func SegmentMetaPath(backupRootPath, backupName string) string { func BackupBinlogDirPath(backupRootPath, backupName string) string { return backupRootPath + SEPERATOR + backupName + SEPERATOR + BINGLOG_DIR } + +func SimpleListBackupsResponse(input *backuppb.ListBackupsResponse) *backuppb.ListBackupsResponse { + simpleBackupInfos := make([]*backuppb.BackupInfo, 0) + for _, backup := range input.GetData() { + simpleBackupInfos = append(simpleBackupInfos, &backuppb.BackupInfo{ + Id: backup.GetId(), + Name: backup.GetName(), + StateCode: backup.GetStateCode(), + ErrorMessage: backup.GetErrorMessage(), + BackupTimestamp: backup.GetBackupTimestamp(), + }) + } + return &backuppb.ListBackupsResponse{ + RequestId: input.GetRequestId(), + Code: input.GetCode(), + Msg: input.GetMsg(), + Data: simpleBackupInfos, + } +} + +func SimpleBackupResponse(input *backuppb.BackupInfoResponse) *backuppb.BackupInfoResponse { + backup := input.GetData() + + collections := make([]*backuppb.CollectionBackupInfo, 0) + for _, coll := range backup.GetCollectionBackups() { + collections = append(collections, &backuppb.CollectionBackupInfo{ + StateCode: coll.GetStateCode(), + ErrorMessage: coll.GetErrorMessage(), + CollectionName: coll.GetCollectionName(), + BackupTimestamp: coll.GetBackupTimestamp(), + }) + } + simpleBackupInfo := &backuppb.BackupInfo{ + Id: backup.GetId(), + Name: backup.GetName(), + StateCode: backup.GetStateCode(), + ErrorMessage: backup.GetErrorMessage(), + BackupTimestamp: backup.GetBackupTimestamp(), + CollectionBackups: collections, + } + return &backuppb.BackupInfoResponse{ + RequestId: input.GetRequestId(), + Code: input.GetCode(), + Msg: input.GetMsg(), + Data: simpleBackupInfo, + } +} + +func SimpleRestoreResponse(input *backuppb.RestoreBackupResponse) *backuppb.RestoreBackupResponse { + restore := input.GetData() + + collectionRestores := make([]*backuppb.RestoreCollectionTask, 0) + for _, coll := range restore.GetCollectionRestoreTasks() { + collectionRestores = append(collectionRestores, &backuppb.RestoreCollectionTask{ + StateCode: coll.GetStateCode(), + ErrorMessage: coll.GetErrorMessage(), + StartTime: coll.GetStartTime(), + EndTime: coll.GetEndTime(), + Progress: coll.GetProgress(), + TargetCollectionName: coll.GetTargetCollectionName(), + }) + } + + simpleRestore := &backuppb.RestoreBackupTask{ + Id: restore.GetId(), + StateCode: restore.GetStateCode(), + ErrorMessage: restore.GetErrorMessage(), + StartTime: restore.GetStartTime(), + EndTime: restore.GetEndTime(), + Progress: restore.GetProgress(), + } + + return &backuppb.RestoreBackupResponse{ + RequestId: input.GetRequestId(), + Code: input.GetCode(), + Msg: input.GetMsg(), + Data: simpleRestore, + } +} diff --git a/core/backup_server.go b/core/backup_server.go index efce3b95..3ffe4c2b 100644 --- a/core/backup_server.go +++ b/core/backup_server.go @@ -22,6 +22,8 @@ const ( GET_RESTORE_API = "/get_restore" API_V1_PREFIX = "/api/v1" + + DOCS_API = "/docs/*any" ) // Server is the Backup Server @@ -97,7 +99,7 @@ func (h *Handlers) RegisterRoutesTo(router gin.IRouter) { router.DELETE(DELETE_BACKUP_API, wrapHandler(h.handleDeleteBackup)) router.POST(RESTORE_BACKUP_API, wrapHandler(h.handleRestoreBackup)) router.GET(GET_RESTORE_API, wrapHandler(h.handleGetRestore)) - router.GET("/docs/*any", ginSwagger.WrapHandler(swaggerFiles.Handler)) + router.GET(DOCS_API, ginSwagger.WrapHandler(swaggerFiles.Handler)) } // handlerFunc handles http request with gin context @@ -128,6 +130,9 @@ func (h *Handlers) handleCreateBackup(c *gin.Context) (interface{}, error) { json := backuppb.CreateBackupRequest{} c.BindJSON(&json) resp := h.backupContext.CreateBackup(h.backupContext.ctx, &json) + if h.backupContext.params.HTTPCfg.SimpleResponse { + resp = SimpleBackupResponse(resp) + } c.JSON(http.StatusOK, resp) return nil, nil } @@ -146,6 +151,9 @@ func (h *Handlers) handleListBackups(c *gin.Context) (interface{}, error) { CollectionName: c.Query("collection_name"), } resp := h.backupContext.ListBackups(h.backupContext.ctx, &req) + if h.backupContext.params.HTTPCfg.SimpleResponse { + resp = SimpleListBackupsResponse(resp) + } c.JSON(http.StatusOK, resp) return nil, nil } @@ -165,6 +173,9 @@ func (h *Handlers) handleGetBackup(c *gin.Context) (interface{}, error) { BackupId: c.Query("backup_id"), } resp := h.backupContext.GetBackup(h.backupContext.ctx, &req) + if h.backupContext.params.HTTPCfg.SimpleResponse { + resp = SimpleBackupResponse(resp) + } c.JSON(http.StatusOK, resp) return nil, nil } @@ -200,6 +211,9 @@ func (h *Handlers) handleRestoreBackup(c *gin.Context) (interface{}, error) { json := backuppb.RestoreBackupRequest{} c.BindJSON(&json) resp := h.backupContext.RestoreBackup(h.backupContext.ctx, &json) + if h.backupContext.params.HTTPCfg.SimpleResponse { + resp = SimpleRestoreResponse(resp) + } c.JSON(http.StatusOK, resp) return nil, nil } @@ -219,6 +233,9 @@ func (h *Handlers) handleGetRestore(c *gin.Context) (interface{}, error) { Id: id, } resp := h.backupContext.GetRestore(h.backupContext.ctx, &req) + if h.backupContext.params.HTTPCfg.SimpleResponse { + resp = SimpleRestoreResponse(resp) + } c.JSON(http.StatusOK, resp) return nil, nil } diff --git a/core/paramtable/params.go b/core/paramtable/params.go index 17a3e5e9..9768d889 100644 --- a/core/paramtable/params.go +++ b/core/paramtable/params.go @@ -209,8 +209,9 @@ func (p *MinioConfig) initBackupRootPath() { type HTTPConfig struct { Base *BaseTable - Enabled bool - DebugMode bool + Enabled bool + DebugMode bool + SimpleResponse bool } func (p *HTTPConfig) init(base *BaseTable) { @@ -218,12 +219,17 @@ func (p *HTTPConfig) init(base *BaseTable) { p.initHTTPEnabled() p.initHTTPDebugMode() + p.initHTTPSimpleResponse() } func (p *HTTPConfig) initHTTPEnabled() { - p.Enabled = p.Base.ParseBool("proxy.http.enabled", true) + p.Enabled = p.Base.ParseBool("http.enabled", true) } func (p *HTTPConfig) initHTTPDebugMode() { - p.DebugMode = p.Base.ParseBool("proxy.http.debug_mode", false) + p.DebugMode = p.Base.ParseBool("http.debug_mode", false) +} + +func (p *HTTPConfig) initHTTPSimpleResponse() { + p.SimpleResponse = p.Base.ParseBool("http.simpleResponse", false) } From 504ff03d7fa8b5461833454851ea62689c9c4ac8 Mon Sep 17 00:00:00 2001 From: wayblink Date: Mon, 28 Nov 2022 15:37:39 +0800 Subject: [PATCH 2/3] Rename response code --- core/backup_context.go | 34 ++-- core/backup_context_test.go | 10 +- core/proto/backup.proto | 2 +- core/proto/backuppb/backup.pb.go | 258 +++++++++++++++---------------- docs/docs.go | 2 +- docs/swagger.json | 2 +- docs/swagger.yaml | 2 +- 7 files changed, 155 insertions(+), 155 deletions(-) diff --git a/core/backup_context.go b/core/backup_context.go index ea675f89..3d604b9c 100644 --- a/core/backup_context.go +++ b/core/backup_context.go @@ -160,7 +160,7 @@ func (b BackupContext) CreateBackup(ctx context.Context, request *backuppb.Creat if !b.started { err := b.Start() if err != nil { - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = err.Error() return resp } @@ -173,7 +173,7 @@ func (b BackupContext) CreateBackup(ctx context.Context, request *backuppb.Creat }) if getResp.GetCode() != backuppb.ResponseCode_Success { log.Error("fail in GetBackup", zap.String("msg", getResp.GetMsg())) - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = getResp.GetMsg() return resp } @@ -223,7 +223,7 @@ func (b BackupContext) CreateBackup(ctx context.Context, request *backuppb.Creat task, err := b.executeCreateBackup(ctx, request, backup) resp.Data = task if err != nil { - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = err.Error() } else { resp.Code = backuppb.ResponseCode_Success @@ -560,7 +560,7 @@ func (b BackupContext) GetBackup(ctx context.Context, request *backuppb.GetBacku if !b.started { err := b.Start() if err != nil { - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = err.Error() return resp } @@ -591,7 +591,7 @@ func (b BackupContext) GetBackup(ctx context.Context, request *backuppb.GetBacku backup, err := b.readBackup(ctx, request.GetBackupName()) if err != nil { log.Warn("Fail to read backup", zap.String("backupName", request.GetBackupName()), zap.Error(err)) - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = err.Error() return resp } @@ -619,7 +619,7 @@ func (b BackupContext) ListBackups(ctx context.Context, request *backuppb.ListBa if !b.started { err := b.Start() if err != nil { - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = err.Error() return resp } @@ -629,7 +629,7 @@ func (b BackupContext) ListBackups(ctx context.Context, request *backuppb.ListBa backupPaths, _, err := b.storageClient.ListWithPrefix(ctx, b.backupBucketName, b.backupRootPath+SEPERATOR, false) if err != nil { log.Error("Fail to list backup directory", zap.Error(err)) - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = err.Error() return resp } @@ -645,7 +645,7 @@ func (b BackupContext) ListBackups(ctx context.Context, request *backuppb.ListBa log.Warn("Fail to read backup", zap.String("path", backupPath), zap.String("error", backupResp.GetMsg())) - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = backupResp.Msg return resp } @@ -694,7 +694,7 @@ func (b BackupContext) DeleteBackup(ctx context.Context, request *backuppb.Delet if !b.started { err := b.Start() if err != nil { - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = err.Error() return resp } @@ -740,7 +740,7 @@ func (b BackupContext) RestoreBackup(ctx context.Context, request *backuppb.Rest if !b.started { err := b.Start() if err != nil { - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = err.Error() return resp } @@ -764,7 +764,7 @@ func (b BackupContext) RestoreBackup(ctx context.Context, request *backuppb.Rest log.Error("fail to get backup", zap.String("backupName", request.GetBackupName()), zap.String("msg", getResp.GetMsg())) - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = getResp.GetMsg() return resp } @@ -820,14 +820,14 @@ func (b BackupContext) RestoreBackup(ctx context.Context, request *backuppb.Rest if err != nil { errorMsg := fmt.Sprintf("fail to check whether the collection is exist, collection_name: %s, err: %s", targetCollectionName, err) log.Error(errorMsg) - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = errorMsg return resp } if exist { errorMsg := fmt.Sprintf("The collection to restore already exists, backupCollectName: %s, targetCollectionName: %s", backupCollectionName, targetCollectionName) log.Error(errorMsg) - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = errorMsg return resp } @@ -858,7 +858,7 @@ func (b BackupContext) RestoreBackup(ctx context.Context, request *backuppb.Rest endTask, err := b.executeRestoreBackupTask(ctx, backup, task) resp.Data = endTask if err != nil { - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = err.Error() } else { resp.Code = backuppb.ResponseCode_Success @@ -1192,14 +1192,14 @@ func (b *BackupContext) GetRestore(ctx context.Context, request *backuppb.GetRes if !b.started { err := b.Start() if err != nil { - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = err.Error() return resp } } if request.GetId() == "" { - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = "empty restore id" return resp } @@ -1210,7 +1210,7 @@ func (b *BackupContext) GetRestore(ctx context.Context, request *backuppb.GetRes resp.Data = value return resp } else { - resp.Code = backuppb.ResponseCode_Bad_Request + resp.Code = backuppb.ResponseCode_Fail resp.Msg = "restore id not exist in context" return resp } diff --git a/core/backup_context_test.go b/core/backup_context_test.go index 27f9cf58..9d409327 100644 --- a/core/backup_context_test.go +++ b/core/backup_context_test.go @@ -94,7 +94,7 @@ func TestCreateBackupWithUnexistCollection(t *testing.T) { CollectionNames: []string{"not_exist"}, } resp := backup.CreateBackup(context, req) - assert.Equal(t, backuppb.ResponseCode_Bad_Request, resp.GetCode()) + assert.Equal(t, backuppb.ResponseCode_Fail, resp.GetCode()) assert.Equal(t, "request backup collection does not exist: not_exist", resp.GetMsg()) // clean @@ -121,7 +121,7 @@ func TestCreateBackupWithDuplicateName(t *testing.T) { BackupName: randBackupName, } resp2 := backup.CreateBackup(context, req2) - assert.Equal(t, backuppb.ResponseCode_Bad_Request, resp2.GetCode()) + assert.Equal(t, backuppb.ResponseCode_Fail, resp2.GetCode()) assert.Equal(t, fmt.Sprintf("backup already exist with the name: %s", req2.GetBackupName()), resp2.GetMsg()) // clean @@ -142,7 +142,7 @@ func TestCreateBackupWithIllegalName(t *testing.T) { BackupName: randBackupName, } resp := backup.CreateBackup(context, req) - assert.Equal(t, backuppb.ResponseCode_Bad_Request, resp.GetCode()) + assert.Equal(t, backuppb.ResponseCode_Fail, resp.GetCode()) // clean backup.DeleteBackup(context, &backuppb.DeleteBackupRequest{ @@ -199,7 +199,7 @@ func TestGetBackupFaultBackup(t *testing.T) { backup := backupContext.GetBackup(context, &backuppb.GetBackupRequest{ BackupName: randBackupName, }) - assert.Equal(t, backuppb.ResponseCode_Bad_Request, backup.GetCode()) + assert.Equal(t, backuppb.ResponseCode_Fail, backup.GetCode()) // clean backupContext.DeleteBackup(context, &backuppb.DeleteBackupRequest{ @@ -217,7 +217,7 @@ func TestGetBackupUnexistBackupName(t *testing.T) { backup := backupContext.GetBackup(context, &backuppb.GetBackupRequest{ BackupName: "un_exist", }) - assert.Equal(t, backuppb.ResponseCode_Bad_Request, backup.GetCode()) + assert.Equal(t, backuppb.ResponseCode_Fail, backup.GetCode()) } func TestRestoreBackup(t *testing.T) { diff --git a/core/proto/backup.proto b/core/proto/backup.proto index d746c94c..63e1e843 100644 --- a/core/proto/backup.proto +++ b/core/proto/backup.proto @@ -22,7 +22,7 @@ enum ResponseCode { Success = 0; Not_Support = 1; No_Permission = 2; - Bad_Request = 3; + Fail = 3; Parameter_Error = 400; Request_Object_Not_Found = 404; } diff --git a/core/proto/backuppb/backup.pb.go b/core/proto/backuppb/backup.pb.go index 98b2b85b..58e6d314 100644 --- a/core/proto/backuppb/backup.pb.go +++ b/core/proto/backuppb/backup.pb.go @@ -30,7 +30,7 @@ const ( ResponseCode_Success ResponseCode = 0 ResponseCode_Not_Support ResponseCode = 1 ResponseCode_No_Permission ResponseCode = 2 - ResponseCode_Bad_Request ResponseCode = 3 + ResponseCode_Fail ResponseCode = 3 ResponseCode_Parameter_Error ResponseCode = 400 ResponseCode_Request_Object_Not_Found ResponseCode = 404 ) @@ -39,7 +39,7 @@ var ResponseCode_name = map[int32]string{ 0: "Success", 1: "Not_Support", 2: "No_Permission", - 3: "Bad_Request", + 3: "Fail", 400: "Parameter_Error", 404: "Request_Object_Not_Found", } @@ -48,7 +48,7 @@ var ResponseCode_value = map[string]int32{ "Success": 0, "Not_Support": 1, "No_Permission": 2, - "Bad_Request": 3, + "Fail": 3, "Parameter_Error": 400, "Request_Object_Not_Found": 404, } @@ -2053,132 +2053,132 @@ func init() { func init() { proto.RegisterFile("backup.proto", fileDescriptor_65240d19de191688) } var fileDescriptor_65240d19de191688 = []byte{ - // 1993 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x58, 0xcd, 0x6f, 0x23, 0x49, - 0x15, 0x4f, 0xbb, 0x1d, 0x7f, 0xbc, 0x76, 0x9c, 0x4e, 0x25, 0x9b, 0xf5, 0x66, 0x19, 0xc6, 0xdb, - 0xb0, 0xbb, 0x9e, 0xac, 0x98, 0x88, 0xcc, 0xce, 0x30, 0x8c, 0x60, 0x61, 0xe2, 0x24, 0x83, 0x99, - 0x99, 0x4c, 0xd4, 0x76, 0xa2, 0xd1, 0xf2, 0xd1, 0x6a, 0x77, 0x57, 0x9c, 0x66, 0xba, 0xbb, 0x4c, - 0x57, 0x39, 0x3b, 0x8e, 0xc4, 0x0d, 0xee, 0x1c, 0x40, 0x42, 0x88, 0x7f, 0x80, 0x1b, 0x1c, 0xb8, - 0xf0, 0x3f, 0x20, 0x71, 0x81, 0x7f, 0x05, 0xc4, 0x09, 0x55, 0x55, 0xbb, 0xbb, 0xed, 0x74, 0x12, - 0x47, 0x5a, 0x31, 0x68, 0x6e, 0x55, 0xaf, 0xde, 0x47, 0xd5, 0xef, 0x7d, 0x54, 0xbd, 0x82, 0x5a, - 0xdf, 0x76, 0x5e, 0x8d, 0x86, 0x77, 0x87, 0x11, 0x61, 0x04, 0xad, 0x06, 0x9e, 0x7f, 0x36, 0xa2, - 0x72, 0x76, 0x57, 0x2e, 0x19, 0xbf, 0x5c, 0x84, 0xb5, 0x36, 0xf1, 0x7d, 0xec, 0x30, 0x8f, 0x84, - 0x3b, 0x82, 0xd8, 0x09, 0x4f, 0x08, 0xaa, 0x43, 0xc1, 0x73, 0x1b, 0x4a, 0x53, 0x69, 0x55, 0xcd, - 0x82, 0xe7, 0xa2, 0x27, 0x00, 0x94, 0xd9, 0x0c, 0x5b, 0x0e, 0x71, 0x71, 0xa3, 0xd0, 0x54, 0x5a, - 0xf5, 0xed, 0xd6, 0xdd, 0x1c, 0x95, 0x77, 0xa5, 0x92, 0x9e, 0x4d, 0x5f, 0x75, 0xb9, 0x40, 0x9b, - 0xb8, 0xd8, 0xac, 0xd2, 0xc9, 0x10, 0x19, 0x50, 0xc3, 0x51, 0x44, 0xa2, 0xe7, 0x98, 0x52, 0x7b, - 0x80, 0x1b, 0xaa, 0x30, 0x31, 0x45, 0x43, 0xb7, 0x84, 0xb1, 0x88, 0x59, 0xcc, 0x0b, 0x70, 0xa3, - 0xd8, 0x54, 0x5a, 0xaa, 0x50, 0x11, 0xb1, 0x9e, 0x17, 0x60, 0xf4, 0x1e, 0x54, 0x70, 0xe8, 0xca, - 0xc5, 0x45, 0xb1, 0x58, 0xc6, 0xa1, 0x2b, 0x96, 0x36, 0xa0, 0x32, 0x8c, 0xc8, 0x20, 0xc2, 0x94, - 0x36, 0x4a, 0x4d, 0xa5, 0xb5, 0x68, 0x26, 0x73, 0xf4, 0x35, 0x58, 0x72, 0x92, 0xa3, 0x5a, 0x9e, - 0xdb, 0x28, 0x0b, 0xd9, 0x5a, 0x4a, 0xec, 0xb8, 0xe8, 0x5d, 0x28, 0xbb, 0x7d, 0x2b, 0xb4, 0x03, - 0xdc, 0xa8, 0x88, 0x9d, 0x95, 0xdc, 0xfe, 0x81, 0x1d, 0x60, 0xf4, 0x31, 0x2c, 0x67, 0xa4, 0x05, - 0x43, 0x55, 0x30, 0xd4, 0x53, 0xb2, 0x60, 0xfc, 0x2e, 0x94, 0xa8, 0x73, 0x8a, 0x03, 0xbb, 0x01, - 0x4d, 0xa5, 0xa5, 0x6d, 0x7f, 0x98, 0x8b, 0x52, 0x0a, 0x7a, 0x57, 0x30, 0x9b, 0xb1, 0x90, 0x38, - 0xfb, 0xa9, 0x1d, 0xb9, 0xd4, 0x0a, 0x47, 0x41, 0x43, 0x13, 0x67, 0xa8, 0x4a, 0xca, 0xc1, 0x28, - 0x40, 0x26, 0xac, 0x38, 0x24, 0xa4, 0x1e, 0x65, 0x38, 0x74, 0xc6, 0x96, 0x8f, 0xcf, 0xb0, 0xdf, - 0xa8, 0x09, 0x77, 0x5c, 0x66, 0x28, 0xe1, 0x7e, 0xc6, 0x99, 0x4d, 0xdd, 0x99, 0xa1, 0xa0, 0x23, - 0x58, 0x19, 0xda, 0x11, 0xf3, 0xc4, 0xc9, 0xa4, 0x18, 0x6d, 0x2c, 0x35, 0xd5, 0x96, 0x76, 0x89, - 0x8b, 0x0f, 0x27, 0xdc, 0x69, 0xc0, 0x98, 0xfa, 0x70, 0x9a, 0x48, 0xd1, 0x1d, 0xd0, 0x25, 0xbf, - 0xf0, 0x14, 0x65, 0x76, 0x30, 0x6c, 0xd4, 0x9b, 0x4a, 0xab, 0x68, 0x2e, 0x4b, 0x7a, 0x6f, 0x42, - 0x36, 0xfe, 0xa1, 0xc0, 0x6a, 0x8e, 0x52, 0xf4, 0x01, 0xd4, 0xd2, 0x9d, 0xc5, 0xf1, 0xa8, 0x9a, - 0x5a, 0x42, 0xeb, 0xb8, 0xe8, 0x43, 0xa8, 0xa7, 0x2c, 0xc2, 0x2d, 0x05, 0xe1, 0x96, 0xa5, 0x84, - 0x2a, 0xbc, 0x72, 0xc1, 0xf9, 0x6a, 0x8e, 0xf3, 0x5f, 0xc0, 0x32, 0xc5, 0x83, 0x00, 0x87, 0x2c, - 0x81, 0xa1, 0x2c, 0x60, 0xf8, 0x28, 0x17, 0x86, 0xae, 0xe4, 0xcd, 0x80, 0x50, 0xa7, 0x59, 0x12, - 0x35, 0xfe, 0x59, 0x80, 0x95, 0x0b, 0x5c, 0xc2, 0xc5, 0xb1, 0x99, 0xe4, 0x4c, 0xd5, 0x98, 0xd2, - 0x71, 0x2f, 0x6e, 0xb5, 0x90, 0xb3, 0xd5, 0x59, 0x64, 0xd4, 0x8b, 0xc8, 0x7c, 0x15, 0xb4, 0x70, - 0x14, 0x58, 0xe4, 0xc4, 0x8a, 0xc8, 0x17, 0x74, 0x92, 0x46, 0xe1, 0x28, 0x78, 0x71, 0x62, 0x92, - 0x2f, 0x28, 0x7a, 0x04, 0xe5, 0xbe, 0x17, 0xfa, 0x64, 0x40, 0x1b, 0x8b, 0xe2, 0x94, 0xcd, 0xdc, - 0x53, 0xee, 0x7b, 0xd8, 0x77, 0x77, 0x04, 0xa3, 0x39, 0x11, 0x40, 0x9f, 0x81, 0x48, 0x69, 0x2a, - 0xa4, 0x4b, 0x73, 0x4a, 0xa7, 0x22, 0x5c, 0xde, 0xc5, 0x3e, 0xb3, 0x85, 0x7c, 0x79, 0x5e, 0xf9, - 0x44, 0xc4, 0xf8, 0x77, 0x01, 0xe0, 0xed, 0xae, 0x56, 0x08, 0x8a, 0x22, 0x9a, 0xcb, 0xc2, 0xa2, - 0x18, 0xe7, 0x66, 0x54, 0x25, 0x37, 0xa3, 0xd0, 0x4b, 0x40, 0x99, 0x20, 0x9a, 0x44, 0x73, 0x55, - 0x20, 0x7d, 0xe7, 0x9a, 0x8a, 0x94, 0x09, 0xe8, 0x15, 0x67, 0x86, 0x4a, 0x8d, 0x1f, 0xc3, 0x7b, - 0x29, 0xab, 0x28, 0x20, 0x19, 0x47, 0x7c, 0x0f, 0x16, 0xbd, 0xf0, 0x84, 0xd0, 0x86, 0x72, 0x53, - 0x4b, 0x52, 0xce, 0xf8, 0x1c, 0x1a, 0x49, 0x21, 0x98, 0x55, 0xfe, 0xd9, 0xb4, 0xf2, 0xf9, 0x6b, - 0x53, 0xac, 0xfb, 0x18, 0xd6, 0xe3, 0x64, 0x9c, 0xd5, 0xfc, 0x9d, 0x69, 0xcd, 0xf3, 0xa6, 0x7b, - 0xac, 0xf7, 0xb7, 0x0a, 0xac, 0xb6, 0x23, 0x6c, 0x33, 0x2c, 0xd7, 0x4c, 0xfc, 0xf3, 0x11, 0xa6, - 0x0c, 0x7d, 0x05, 0xaa, 0x91, 0x1c, 0x76, 0x26, 0xc1, 0x99, 0x12, 0xd0, 0x6d, 0xd0, 0x62, 0x67, - 0x66, 0xaa, 0x16, 0x48, 0xd2, 0x41, 0xec, 0xed, 0x99, 0x1b, 0x87, 0x36, 0xd4, 0xa6, 0xda, 0xaa, - 0x9a, 0xcb, 0xd3, 0x57, 0x0e, 0x45, 0x6b, 0xb0, 0x68, 0xd3, 0x71, 0xe8, 0x88, 0xe8, 0xab, 0x98, - 0x72, 0x62, 0xfc, 0x49, 0x01, 0x94, 0xd9, 0x2d, 0xa6, 0x43, 0x12, 0x52, 0x7c, 0xcd, 0xb6, 0xee, - 0x43, 0x31, 0x93, 0x34, 0x1f, 0xe4, 0x22, 0x31, 0x51, 0x25, 0xb2, 0x45, 0xb0, 0x23, 0x1d, 0xd4, - 0x80, 0x0e, 0xe2, 0xfc, 0xe0, 0x43, 0x74, 0x0f, 0x8a, 0xae, 0xcd, 0x6c, 0xb1, 0x25, 0x6d, 0xfb, - 0xf6, 0x15, 0xd9, 0x27, 0x76, 0x27, 0x98, 0x8d, 0x10, 0xf4, 0x27, 0x98, 0x7d, 0xa9, 0x30, 0xbe, - 0x0f, 0xd5, 0x98, 0x21, 0x2e, 0x93, 0x55, 0xb3, 0x22, 0x09, 0x1d, 0xd7, 0xf8, 0x11, 0xa0, 0x67, - 0x1e, 0x9d, 0xd4, 0xeb, 0xf9, 0x2c, 0xe6, 0xbc, 0x04, 0x0a, 0x79, 0x2f, 0x01, 0xe3, 0xcf, 0x0a, - 0xac, 0x4e, 0x69, 0x7f, 0x53, 0x0e, 0x50, 0xe7, 0x77, 0x40, 0x0f, 0x56, 0x77, 0xb1, 0x8f, 0xbf, - 0xdc, 0x50, 0x36, 0x7e, 0x01, 0x6b, 0xd3, 0x5a, 0xff, 0xa7, 0x48, 0x18, 0xff, 0x29, 0xc0, 0x9a, - 0x89, 0x29, 0x23, 0xd1, 0x1b, 0xcb, 0xd0, 0x4f, 0x20, 0x53, 0x4a, 0x2d, 0x3a, 0x3a, 0x39, 0xf1, - 0x5e, 0x8b, 0xd4, 0xa8, 0x9a, 0x19, 0x1d, 0x5d, 0x41, 0x47, 0x64, 0xaa, 0x78, 0x47, 0x58, 0x6a, - 0x96, 0x97, 0xf4, 0xf7, 0x2f, 0x83, 0xe1, 0xc2, 0xe9, 0x32, 0x75, 0xd6, 0x94, 0x2a, 0xf6, 0x42, - 0x16, 0x8d, 0xb3, 0x35, 0x3d, 0xa6, 0xa7, 0xf5, 0xa3, 0x94, 0xa9, 0x1f, 0x1b, 0xbb, 0xb0, 0x9e, - 0xaf, 0x82, 0x43, 0xfc, 0x0a, 0x8f, 0x63, 0xc4, 0xf8, 0x90, 0x6b, 0x38, 0xb3, 0xfd, 0xd1, 0x04, - 0x25, 0x39, 0x79, 0x54, 0x78, 0xa8, 0x18, 0x7f, 0x49, 0xc1, 0x4f, 0x6a, 0x33, 0xbf, 0x6f, 0x2f, - 0x5c, 0xda, 0x3f, 0xc8, 0xb9, 0xb4, 0xef, 0x5c, 0x75, 0xda, 0xff, 0xc3, 0x5b, 0xbb, 0x03, 0xe2, - 0x09, 0x16, 0x5f, 0xb8, 0xe2, 0xf2, 0xbe, 0xc9, 0x45, 0x05, 0x5c, 0x58, 0xce, 0x8d, 0xbf, 0xab, - 0xf0, 0x4e, 0x7c, 0xd0, 0xd4, 0x0b, 0x6f, 0x2d, 0x70, 0x3f, 0x04, 0x8d, 0x87, 0xe5, 0x34, 0x70, - 0x37, 0x78, 0x3e, 0x00, 0x97, 0x96, 0x73, 0xf4, 0x29, 0xac, 0x33, 0x3b, 0x1a, 0x60, 0x66, 0xcd, - 0xd6, 0x69, 0xd9, 0xd2, 0xad, 0xc9, 0xd5, 0xf6, 0x74, 0xdf, 0x66, 0xc3, 0xbb, 0xe9, 0x8b, 0x3a, - 0x92, 0x40, 0x59, 0xcc, 0xa6, 0xaf, 0xae, 0x7e, 0x36, 0xe5, 0x85, 0xb6, 0xf9, 0x4e, 0xa2, 0x29, - 0x83, 0x38, 0x35, 0xfe, 0x56, 0x80, 0x95, 0xa9, 0x4c, 0x7d, 0x6b, 0xdd, 0xe9, 0x42, 0x63, 0xaa, - 0x82, 0x65, 0xd1, 0x94, 0xcf, 0xfd, 0xcd, 0xab, 0x4e, 0x34, 0x1d, 0xf0, 0xe6, 0x7a, 0xb6, 0x62, - 0x65, 0xf0, 0xfc, 0xab, 0x92, 0xa4, 0xc8, 0x1b, 0xb9, 0x58, 0xd0, 0xa3, 0xa9, 0x37, 0xce, 0x47, - 0xd7, 0x97, 0x66, 0x71, 0x1c, 0x79, 0xd3, 0xee, 0xc3, 0xfa, 0x13, 0xcc, 0xe2, 0x55, 0xe1, 0xbe, - 0xf9, 0x6e, 0x25, 0x19, 0x2e, 0x85, 0x49, 0xb8, 0x18, 0x3f, 0x05, 0x2d, 0xd3, 0x24, 0xa1, 0x06, - 0x94, 0x4f, 0xf8, 0xb4, 0xb3, 0x1b, 0x77, 0x96, 0x93, 0x29, 0xba, 0x9f, 0xf6, 0x7b, 0x05, 0xe1, - 0x82, 0xf7, 0xf3, 0x9f, 0x04, 0xd3, 0xad, 0x9e, 0xf1, 0x47, 0x05, 0x4a, 0xb1, 0xee, 0xdb, 0xa0, - 0xe1, 0x90, 0x45, 0x1e, 0x96, 0x9f, 0x13, 0x52, 0x3f, 0xc4, 0xa4, 0x83, 0x51, 0xc0, 0x9b, 0xf1, - 0xa4, 0x33, 0xb1, 0x4e, 0x22, 0x12, 0x88, 0x7d, 0x16, 0xcd, 0xa5, 0x84, 0xba, 0x1f, 0x91, 0x80, - 0x37, 0xaf, 0x29, 0x1b, 0x23, 0x02, 0xd1, 0xa2, 0xa9, 0x25, 0xb4, 0x1e, 0xe1, 0x71, 0xe7, 0x93, - 0x81, 0x35, 0xb4, 0xd9, 0x69, 0x7c, 0x4d, 0x96, 0x7d, 0x32, 0x38, 0xb4, 0xd9, 0xe9, 0x64, 0x89, - 0x7a, 0xe7, 0x49, 0x48, 0xfa, 0x64, 0xd0, 0xf5, 0xce, 0xb1, 0xf1, 0x00, 0x6a, 0x4f, 0xf1, 0xf8, - 0x98, 0xdf, 0x3d, 0x87, 0xb6, 0x17, 0xcd, 0x7b, 0x4f, 0x19, 0xbf, 0x53, 0x63, 0x10, 0xe5, 0x67, - 0xcc, 0x15, 0x20, 0x4e, 0xda, 0xb2, 0x42, 0xa6, 0x2d, 0xfb, 0x3a, 0xd4, 0x3d, 0x6a, 0x0d, 0x23, - 0x2f, 0xb0, 0xa3, 0xb1, 0xc5, 0x0d, 0xaa, 0xe2, 0x1a, 0xad, 0x79, 0xf4, 0x50, 0x12, 0x9f, 0xe2, - 0x31, 0x6a, 0x82, 0xe6, 0x62, 0xea, 0x44, 0xde, 0x90, 0xc7, 0x71, 0x7c, 0xa8, 0x2c, 0x09, 0x3d, - 0x82, 0x2a, 0x8f, 0x0c, 0x8b, 0x8d, 0x87, 0xf2, 0x64, 0xf5, 0xed, 0x5b, 0xb9, 0x2e, 0xda, 0xb5, - 0x99, 0xdd, 0x1b, 0x0f, 0xb1, 0x59, 0x71, 0xe3, 0x11, 0xda, 0x01, 0x8d, 0x8b, 0x59, 0x43, 0x3b, - 0xb2, 0x83, 0x49, 0x4b, 0x9e, 0x1f, 0xd9, 0x59, 0x84, 0x4c, 0xe0, 0x52, 0x87, 0x42, 0x08, 0xed, - 0x42, 0xcd, 0x0b, 0x5d, 0xfc, 0x7a, 0xa2, 0xa4, 0x3c, 0xaf, 0x12, 0x4d, 0x88, 0xc5, 0x5a, 0xd6, - 0xa1, 0x64, 0x8f, 0x18, 0xe9, 0xec, 0x8a, 0x6a, 0x5b, 0x31, 0xe3, 0x19, 0xba, 0x0f, 0x8b, 0xa2, - 0x32, 0x89, 0x6f, 0xb3, 0xfa, 0x25, 0xef, 0x51, 0xe9, 0x04, 0x91, 0x0c, 0x92, 0xdb, 0xf8, 0xbd, - 0x02, 0xfa, 0xec, 0x67, 0x59, 0xe2, 0x05, 0x25, 0xe3, 0x85, 0x19, 0x7c, 0x0b, 0x17, 0xf1, 0x4d, - 0x77, 0xa6, 0x4e, 0xed, 0xec, 0x21, 0x94, 0x84, 0x7b, 0x69, 0xfc, 0x54, 0xbe, 0xe2, 0x27, 0x62, - 0xf2, 0x59, 0x27, 0xf9, 0x37, 0x7f, 0xa5, 0x40, 0x2d, 0x5b, 0x28, 0x90, 0x06, 0xe5, 0xee, 0xc8, - 0x71, 0x30, 0xa5, 0xfa, 0x02, 0x5a, 0x06, 0xed, 0x80, 0x30, 0xab, 0x3b, 0x1a, 0x0e, 0x49, 0xc4, - 0x74, 0x05, 0xad, 0xc0, 0xd2, 0x01, 0xb1, 0x0e, 0x71, 0x14, 0x78, 0x94, 0x7a, 0x24, 0xd4, 0x0b, - 0x9c, 0x67, 0xc7, 0x76, 0xad, 0x38, 0xf5, 0x75, 0x15, 0xad, 0xc1, 0xb2, 0x00, 0x12, 0x33, 0x1c, - 0x59, 0x7b, 0xbc, 0x52, 0xeb, 0xbf, 0x56, 0xd1, 0x2d, 0x68, 0xc4, 0x2c, 0xd6, 0x8b, 0xfe, 0xcf, - 0xb0, 0xc3, 0x2c, 0xae, 0x79, 0x9f, 0x8c, 0x42, 0x57, 0xff, 0x8d, 0xba, 0xf9, 0x1a, 0x56, 0x73, - 0x3e, 0x32, 0x10, 0x82, 0xfa, 0xce, 0xe3, 0xf6, 0xd3, 0xa3, 0x43, 0xab, 0x73, 0xd0, 0xe9, 0x75, - 0x1e, 0x3f, 0xd3, 0x17, 0xd0, 0x1a, 0xe8, 0x31, 0x6d, 0xef, 0xe5, 0x5e, 0xfb, 0xa8, 0xd7, 0x39, - 0x78, 0xa2, 0x2b, 0x19, 0xce, 0xee, 0x51, 0xbb, 0xbd, 0xd7, 0xed, 0xc6, 0x5b, 0x93, 0xb4, 0xfd, - 0xc7, 0x9d, 0x67, 0xba, 0x9a, 0x61, 0xea, 0x75, 0x9e, 0xef, 0xbd, 0x38, 0xea, 0xe9, 0xc5, 0xcd, - 0xe3, 0xe4, 0x71, 0x37, 0x6d, 0x5a, 0x83, 0x72, 0x6a, 0x73, 0x09, 0xaa, 0x59, 0x63, 0x1c, 0xa4, - 0xc4, 0x4a, 0x05, 0x8a, 0xb1, 0x7a, 0x0d, 0xca, 0xa9, 0xde, 0x97, 0xdc, 0xeb, 0x33, 0xff, 0x94, - 0x00, 0xa5, 0x2e, 0x8b, 0x48, 0x38, 0xd0, 0x17, 0x84, 0x0e, 0x2c, 0x41, 0x14, 0x0a, 0x77, 0x38, - 0x14, 0xd8, 0xd5, 0x0b, 0xa8, 0x0e, 0xb0, 0x77, 0x86, 0x43, 0x36, 0xb2, 0x7d, 0x7f, 0xac, 0xab, - 0x7c, 0xde, 0x1e, 0x51, 0x46, 0x02, 0xef, 0x1c, 0xbb, 0x7a, 0x71, 0xf3, 0x0f, 0x0a, 0x54, 0x26, - 0x09, 0xc4, 0xad, 0x1f, 0x90, 0x10, 0xeb, 0x0b, 0x7c, 0xb4, 0x43, 0x88, 0xaf, 0x2b, 0x7c, 0xd4, - 0x09, 0xd9, 0x43, 0xbd, 0x80, 0xaa, 0xb0, 0xd8, 0x09, 0xd9, 0x37, 0x1f, 0xe8, 0x6a, 0x3c, 0xbc, - 0xb7, 0xad, 0x17, 0xe3, 0xe1, 0x83, 0x4f, 0xf5, 0x45, 0x3e, 0xdc, 0xf7, 0x89, 0xcd, 0x74, 0xe0, - 0x9b, 0xdb, 0x25, 0xa3, 0xbe, 0x8f, 0x75, 0x2d, 0xde, 0xa8, 0x17, 0x0e, 0xf4, 0x35, 0xbe, 0xb7, - 0x63, 0x3b, 0x6a, 0x9f, 0xda, 0x91, 0xfe, 0x0e, 0xd2, 0xa1, 0xb6, 0xe3, 0x85, 0x76, 0x34, 0x3e, - 0xc6, 0x0e, 0x23, 0x91, 0xee, 0x72, 0x90, 0x85, 0x86, 0x98, 0x80, 0x37, 0x8f, 0x01, 0xd2, 0x24, - 0xe0, 0x02, 0x62, 0x26, 0xbf, 0x17, 0x5c, 0x7d, 0x81, 0xc7, 0x50, 0x4a, 0xe1, 0x26, 0x94, 0x84, - 0xb4, 0x1b, 0x91, 0xe1, 0x90, 0x93, 0x0a, 0x89, 0x9c, 0x20, 0x61, 0x57, 0x57, 0xb7, 0xff, 0x55, - 0x84, 0xd5, 0xe7, 0x22, 0xac, 0x65, 0xa4, 0x74, 0x71, 0x74, 0xe6, 0x39, 0x18, 0x39, 0x50, 0xcb, - 0xfe, 0x5d, 0xa0, 0xfc, 0xc7, 0x6a, 0xce, 0xf7, 0xc6, 0xc6, 0xc7, 0xd7, 0x75, 0x94, 0x71, 0x62, - 0x18, 0x0b, 0xe8, 0x27, 0x50, 0x4d, 0xda, 0x7a, 0x94, 0xff, 0x4f, 0x3d, 0xdb, 0xf6, 0xdf, 0x44, - 0x7d, 0x1f, 0xb4, 0x4c, 0x9f, 0x8d, 0xf2, 0x25, 0x2f, 0xf6, 0xf9, 0x1b, 0xad, 0xeb, 0x19, 0x13, - 0x1b, 0x18, 0x6a, 0xd9, 0x16, 0xf6, 0x12, 0x9c, 0x72, 0x7a, 0xe7, 0x8d, 0x3b, 0x73, 0x70, 0x26, - 0x66, 0x4e, 0x61, 0x69, 0xea, 0xc1, 0x80, 0xee, 0xcc, 0xdd, 0xef, 0x6d, 0x6c, 0xce, 0xc3, 0x9a, - 0x58, 0x1a, 0x00, 0xa4, 0xef, 0x0f, 0xf4, 0xc9, 0x65, 0x4e, 0xc9, 0x79, 0xa0, 0xdc, 0xcc, 0xd0, - 0xce, 0xb7, 0x3f, 0xff, 0xd6, 0xc0, 0x63, 0xa7, 0xa3, 0xfe, 0x5d, 0x87, 0x04, 0x5b, 0xe7, 0x9e, - 0xef, 0x7b, 0xe7, 0x0c, 0x3b, 0xa7, 0x5b, 0x52, 0xc9, 0x37, 0xa4, 0xf8, 0x96, 0x43, 0x22, 0xbc, - 0x25, 0x14, 0x6e, 0x49, 0xca, 0xb0, 0xdf, 0x2f, 0x89, 0xf9, 0xbd, 0xff, 0x06, 0x00, 0x00, 0xff, - 0xff, 0x42, 0x46, 0x42, 0xd7, 0xca, 0x1a, 0x00, 0x00, + // 1995 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x58, 0x4f, 0x73, 0xdc, 0x48, + 0x15, 0xb7, 0xa4, 0xf1, 0xfc, 0x79, 0x1a, 0x8f, 0xe5, 0xb6, 0xd7, 0x3b, 0xeb, 0x25, 0x64, 0x56, + 0xb0, 0xbb, 0x13, 0x6f, 0x91, 0x14, 0xce, 0x26, 0x84, 0x14, 0x2c, 0xc4, 0x63, 0x3b, 0x0c, 0x49, + 0x1c, 0x97, 0x66, 0xe2, 0x4a, 0x2d, 0x7f, 0x54, 0x1a, 0xa9, 0x3d, 0x16, 0x91, 0xd4, 0x83, 0xba, + 0x27, 0x9b, 0x49, 0x15, 0x9c, 0xf8, 0x00, 0x1c, 0xa0, 0x8a, 0xa2, 0xf8, 0x02, 0xdc, 0xe0, 0xc0, + 0x85, 0xef, 0x40, 0x15, 0x17, 0xf8, 0x2a, 0x50, 0x9c, 0xa8, 0xee, 0xd6, 0x48, 0x9a, 0xb1, 0x6c, + 0x8f, 0xab, 0xb6, 0x08, 0x95, 0x5b, 0xf7, 0xeb, 0xf7, 0xa7, 0xfb, 0xf7, 0x5e, 0xbf, 0xd7, 0xaf, + 0xa1, 0x3e, 0x70, 0xdc, 0x17, 0xe3, 0xd1, 0xcd, 0x51, 0x4c, 0x18, 0x41, 0xeb, 0xa1, 0x1f, 0xbc, + 0x1c, 0x53, 0x39, 0xbb, 0x29, 0x97, 0xcc, 0x5f, 0x2d, 0xc3, 0x46, 0x87, 0x04, 0x01, 0x76, 0x99, + 0x4f, 0xa2, 0x5d, 0x41, 0xec, 0x46, 0x27, 0x04, 0x35, 0x40, 0xf5, 0xbd, 0xa6, 0xd2, 0x52, 0xda, + 0x35, 0x4b, 0xf5, 0x3d, 0xf4, 0x10, 0x80, 0x32, 0x87, 0x61, 0xdb, 0x25, 0x1e, 0x6e, 0xaa, 0x2d, + 0xa5, 0xdd, 0xd8, 0x69, 0xdf, 0x2c, 0x50, 0x79, 0x53, 0x2a, 0xe9, 0x3b, 0xf4, 0x45, 0x8f, 0x0b, + 0x74, 0x88, 0x87, 0xad, 0x1a, 0x9d, 0x0e, 0x91, 0x09, 0x75, 0x1c, 0xc7, 0x24, 0x7e, 0x82, 0x29, + 0x75, 0x86, 0xb8, 0xa9, 0x09, 0x13, 0x33, 0x34, 0x74, 0x4d, 0x18, 0x8b, 0x99, 0xcd, 0xfc, 0x10, + 0x37, 0x4b, 0x2d, 0xa5, 0xad, 0x09, 0x15, 0x31, 0xeb, 0xfb, 0x21, 0x46, 0xef, 0x41, 0x15, 0x47, + 0x9e, 0x5c, 0x5c, 0x16, 0x8b, 0x15, 0x1c, 0x79, 0x62, 0x69, 0x0b, 0xaa, 0xa3, 0x98, 0x0c, 0x63, + 0x4c, 0x69, 0xb3, 0xdc, 0x52, 0xda, 0xcb, 0x56, 0x3a, 0x47, 0x5f, 0x83, 0x15, 0x37, 0x3d, 0xaa, + 0xed, 0x7b, 0xcd, 0x8a, 0x90, 0xad, 0x67, 0xc4, 0xae, 0x87, 0xde, 0x85, 0x8a, 0x37, 0xb0, 0x23, + 0x27, 0xc4, 0xcd, 0xaa, 0xd8, 0x59, 0xd9, 0x1b, 0x1c, 0x3a, 0x21, 0x46, 0x1f, 0xc3, 0x6a, 0x4e, + 0x5a, 0x30, 0xd4, 0x04, 0x43, 0x23, 0x23, 0x0b, 0xc6, 0xef, 0x42, 0x99, 0xba, 0xa7, 0x38, 0x74, + 0x9a, 0xd0, 0x52, 0xda, 0xfa, 0xce, 0x87, 0x85, 0x28, 0x65, 0xa0, 0xf7, 0x04, 0xb3, 0x95, 0x08, + 0x89, 0xb3, 0x9f, 0x3a, 0xb1, 0x47, 0xed, 0x68, 0x1c, 0x36, 0x75, 0x71, 0x86, 0x9a, 0xa4, 0x1c, + 0x8e, 0x43, 0x64, 0xc1, 0x9a, 0x4b, 0x22, 0xea, 0x53, 0x86, 0x23, 0x77, 0x62, 0x07, 0xf8, 0x25, + 0x0e, 0x9a, 0x75, 0xe1, 0x8e, 0xf3, 0x0c, 0xa5, 0xdc, 0x8f, 0x39, 0xb3, 0x65, 0xb8, 0x73, 0x14, + 0xf4, 0x0c, 0xd6, 0x46, 0x4e, 0xcc, 0x7c, 0x71, 0x32, 0x29, 0x46, 0x9b, 0x2b, 0x2d, 0xad, 0xad, + 0x9f, 0xe3, 0xe2, 0xa3, 0x29, 0x77, 0x16, 0x30, 0x96, 0x31, 0x9a, 0x25, 0x52, 0x74, 0x03, 0x0c, + 0xc9, 0x2f, 0x3c, 0x45, 0x99, 0x13, 0x8e, 0x9a, 0x8d, 0x96, 0xd2, 0x2e, 0x59, 0xab, 0x92, 0xde, + 0x9f, 0x92, 0xcd, 0x7f, 0x28, 0xb0, 0x5e, 0xa0, 0x14, 0x7d, 0x00, 0xf5, 0x6c, 0x67, 0x49, 0x3c, + 0x6a, 0x96, 0x9e, 0xd2, 0xba, 0x1e, 0xfa, 0x10, 0x1a, 0x19, 0x8b, 0x70, 0x8b, 0x2a, 0xdc, 0xb2, + 0x92, 0x52, 0x85, 0x57, 0xce, 0x38, 0x5f, 0x2b, 0x70, 0xfe, 0x53, 0x58, 0xa5, 0x78, 0x18, 0xe2, + 0x88, 0xa5, 0x30, 0x54, 0x04, 0x0c, 0x1f, 0x15, 0xc2, 0xd0, 0x93, 0xbc, 0x39, 0x10, 0x1a, 0x34, + 0x4f, 0xa2, 0xe6, 0x3f, 0x55, 0x58, 0x3b, 0xc3, 0x25, 0x5c, 0x9c, 0x98, 0x49, 0xcf, 0x54, 0x4b, + 0x28, 0x5d, 0xef, 0xec, 0x56, 0xd5, 0x82, 0xad, 0xce, 0x23, 0xa3, 0x9d, 0x45, 0xe6, 0xab, 0xa0, + 0x47, 0xe3, 0xd0, 0x26, 0x27, 0x76, 0x4c, 0xbe, 0xa0, 0xd3, 0x6b, 0x14, 0x8d, 0xc3, 0xa7, 0x27, + 0x16, 0xf9, 0x82, 0xa2, 0xfb, 0x50, 0x19, 0xf8, 0x51, 0x40, 0x86, 0xb4, 0xb9, 0x2c, 0x4e, 0xd9, + 0x2a, 0x3c, 0xe5, 0x81, 0x8f, 0x03, 0x6f, 0x57, 0x30, 0x5a, 0x53, 0x01, 0xf4, 0x19, 0x88, 0x2b, + 0x4d, 0x85, 0x74, 0x79, 0x41, 0xe9, 0x4c, 0x84, 0xcb, 0x7b, 0x38, 0x60, 0x8e, 0x90, 0xaf, 0x2c, + 0x2a, 0x9f, 0x8a, 0x98, 0xff, 0x56, 0x01, 0xde, 0xee, 0x6c, 0x85, 0xa0, 0x24, 0xa2, 0xb9, 0x22, + 0x2c, 0x8a, 0x71, 0xe1, 0x8d, 0xaa, 0x16, 0xde, 0x28, 0xf4, 0x1c, 0x50, 0x2e, 0x88, 0xa6, 0xd1, + 0x5c, 0x13, 0x48, 0xdf, 0xb8, 0x24, 0x23, 0xe5, 0x02, 0x7a, 0xcd, 0x9d, 0xa3, 0x52, 0xf3, 0xc7, + 0xf0, 0x5e, 0xc6, 0x2a, 0x12, 0x48, 0xce, 0x11, 0xdf, 0x83, 0x65, 0x3f, 0x3a, 0x21, 0xb4, 0xa9, + 0x5c, 0xd5, 0x92, 0x94, 0x33, 0x3f, 0x87, 0x66, 0x9a, 0x08, 0xe6, 0x95, 0x7f, 0x36, 0xab, 0x7c, + 0xf1, 0xdc, 0x94, 0xe8, 0x3e, 0x86, 0xcd, 0xe4, 0x32, 0xce, 0x6b, 0xfe, 0xce, 0xac, 0xe6, 0x45, + 0xaf, 0x7b, 0xa2, 0xf7, 0xb7, 0x0a, 0xac, 0x77, 0x62, 0xec, 0x30, 0x2c, 0xd7, 0x2c, 0xfc, 0xf3, + 0x31, 0xa6, 0x0c, 0x7d, 0x05, 0x6a, 0xb1, 0x1c, 0x76, 0xa7, 0xc1, 0x99, 0x11, 0xd0, 0x75, 0xd0, + 0x13, 0x67, 0xe6, 0xb2, 0x16, 0x48, 0xd2, 0x61, 0xe2, 0xed, 0xb9, 0x8a, 0x43, 0x9b, 0x5a, 0x4b, + 0x6b, 0xd7, 0xac, 0xd5, 0xd9, 0x92, 0x43, 0xd1, 0x06, 0x2c, 0x3b, 0x74, 0x12, 0xb9, 0x22, 0xfa, + 0xaa, 0x96, 0x9c, 0x98, 0x7f, 0x52, 0x00, 0xe5, 0x76, 0x8b, 0xe9, 0x88, 0x44, 0x14, 0x5f, 0xb2, + 0xad, 0x3b, 0x50, 0xca, 0x5d, 0x9a, 0x0f, 0x0a, 0x91, 0x98, 0xaa, 0x12, 0xb7, 0x45, 0xb0, 0x23, + 0x03, 0xb4, 0x90, 0x0e, 0x93, 0xfb, 0xc1, 0x87, 0xe8, 0x36, 0x94, 0x3c, 0x87, 0x39, 0x62, 0x4b, + 0xfa, 0xce, 0xf5, 0x0b, 0x6e, 0x9f, 0xd8, 0x9d, 0x60, 0x36, 0x23, 0x30, 0x1e, 0x62, 0xf6, 0xa5, + 0xc2, 0xf8, 0x3e, 0xd4, 0x12, 0x86, 0x24, 0x4d, 0xd6, 0xac, 0xaa, 0x24, 0x74, 0x3d, 0xf3, 0x47, + 0x80, 0x1e, 0xfb, 0x74, 0x9a, 0xaf, 0x17, 0xb3, 0x58, 0xf0, 0x12, 0x50, 0x8b, 0x5e, 0x02, 0xe6, + 0x9f, 0x15, 0x58, 0x9f, 0xd1, 0xfe, 0xa6, 0x1c, 0xa0, 0x2d, 0xee, 0x80, 0x3e, 0xac, 0xef, 0xe1, + 0x00, 0x7f, 0xb9, 0xa1, 0x6c, 0xfe, 0x02, 0x36, 0x66, 0xb5, 0xfe, 0x4f, 0x91, 0x30, 0xff, 0xa3, + 0xc2, 0x86, 0x85, 0x29, 0x23, 0xf1, 0x1b, 0xbb, 0xa1, 0x9f, 0x40, 0x2e, 0x95, 0xda, 0x74, 0x7c, + 0x72, 0xe2, 0xbf, 0x12, 0x57, 0xa3, 0x66, 0xe5, 0x74, 0xf4, 0x04, 0x1d, 0x91, 0x99, 0xe4, 0x1d, + 0x63, 0xa9, 0x59, 0x16, 0xe9, 0xef, 0x9f, 0x07, 0xc3, 0x99, 0xd3, 0xe5, 0xf2, 0xac, 0x25, 0x55, + 0xec, 0x47, 0x2c, 0x9e, 0xe4, 0x73, 0x7a, 0x42, 0xcf, 0xf2, 0x47, 0x39, 0x97, 0x3f, 0xb6, 0xf6, + 0x60, 0xb3, 0x58, 0x05, 0x87, 0xf8, 0x05, 0x9e, 0x24, 0x88, 0xf1, 0x21, 0xd7, 0xf0, 0xd2, 0x09, + 0xc6, 0x53, 0x94, 0xe4, 0xe4, 0xbe, 0x7a, 0x4f, 0x31, 0xff, 0x92, 0x81, 0x9f, 0xe6, 0x66, 0x5e, + 0x6f, 0xcf, 0x14, 0xed, 0x1f, 0x14, 0x14, 0xed, 0x1b, 0x17, 0x9d, 0xf6, 0xff, 0xb0, 0x6a, 0x77, + 0x41, 0x3c, 0xc1, 0x92, 0x82, 0x2b, 0x8a, 0xf7, 0x55, 0x0a, 0x15, 0x70, 0x61, 0x39, 0x37, 0xff, + 0xae, 0xc1, 0x3b, 0xc9, 0x41, 0x33, 0x2f, 0xbc, 0xb5, 0xc0, 0xfd, 0x10, 0x74, 0x1e, 0x96, 0xb3, + 0xc0, 0x5d, 0xe1, 0xf9, 0x00, 0x5c, 0x5a, 0xce, 0xd1, 0xa7, 0xb0, 0xc9, 0x9c, 0x78, 0x88, 0x99, + 0x3d, 0x9f, 0xa7, 0x65, 0x4b, 0xb7, 0x21, 0x57, 0x3b, 0xb3, 0x7d, 0x9b, 0x03, 0xef, 0x66, 0x2f, + 0xea, 0x58, 0x02, 0x65, 0x33, 0x87, 0xbe, 0xb8, 0xf8, 0xd9, 0x54, 0x14, 0xda, 0xd6, 0x3b, 0xa9, + 0xa6, 0x1c, 0xe2, 0xd4, 0xfc, 0x9b, 0x0a, 0x6b, 0x33, 0x37, 0xf5, 0xad, 0x75, 0xa7, 0x07, 0xcd, + 0x99, 0x0c, 0x96, 0x47, 0x53, 0x3e, 0xf7, 0xb7, 0x2f, 0x3a, 0xd1, 0x6c, 0xc0, 0x5b, 0x9b, 0xf9, + 0x8c, 0x95, 0xc3, 0xf3, 0xaf, 0x4a, 0x7a, 0x45, 0xde, 0x48, 0x61, 0x41, 0xf7, 0x67, 0xde, 0x38, + 0x1f, 0x5d, 0x9e, 0x9a, 0xc5, 0x71, 0x64, 0xa5, 0x3d, 0x80, 0xcd, 0x87, 0x98, 0x25, 0xab, 0xc2, + 0x7d, 0x8b, 0x55, 0x25, 0x19, 0x2e, 0xea, 0x34, 0x5c, 0xcc, 0x9f, 0x82, 0x9e, 0x6b, 0x92, 0x50, + 0x13, 0x2a, 0x27, 0x7c, 0xda, 0xdd, 0x4b, 0x3a, 0xcb, 0xe9, 0x14, 0xdd, 0xc9, 0xfa, 0x3d, 0x55, + 0xb8, 0xe0, 0xfd, 0xe2, 0x27, 0xc1, 0x6c, 0xab, 0x67, 0xfe, 0x51, 0x81, 0x72, 0xa2, 0xfb, 0x3a, + 0xe8, 0x38, 0x62, 0xb1, 0x8f, 0xe5, 0xe7, 0x84, 0xd4, 0x0f, 0x09, 0xe9, 0x70, 0x1c, 0xf2, 0x66, + 0x3c, 0xed, 0x4c, 0xec, 0x93, 0x98, 0x84, 0x62, 0x9f, 0x25, 0x6b, 0x25, 0xa5, 0x1e, 0xc4, 0x24, + 0xe4, 0xcd, 0x6b, 0xc6, 0xc6, 0x88, 0x40, 0xb4, 0x64, 0xe9, 0x29, 0xad, 0x4f, 0x78, 0xdc, 0x05, + 0x64, 0x68, 0x8f, 0x1c, 0x76, 0x9a, 0x94, 0xc9, 0x4a, 0x40, 0x86, 0x47, 0x0e, 0x3b, 0x9d, 0x2e, + 0x51, 0xff, 0x75, 0x1a, 0x92, 0x01, 0x19, 0xf6, 0xfc, 0xd7, 0xd8, 0xbc, 0x0b, 0xf5, 0x47, 0x78, + 0x72, 0xcc, 0x6b, 0xcf, 0x91, 0xe3, 0xc7, 0x8b, 0xd6, 0x29, 0xf3, 0x77, 0x5a, 0x02, 0xa2, 0xfc, + 0x8c, 0xb9, 0x00, 0xc4, 0x69, 0x5b, 0xa6, 0xe6, 0xda, 0xb2, 0xaf, 0x43, 0xc3, 0xa7, 0xf6, 0x28, + 0xf6, 0x43, 0x27, 0x9e, 0xd8, 0xdc, 0xa0, 0x26, 0xca, 0x68, 0xdd, 0xa7, 0x47, 0x92, 0xf8, 0x08, + 0x4f, 0x50, 0x0b, 0x74, 0x0f, 0x53, 0x37, 0xf6, 0x47, 0x3c, 0x8e, 0x93, 0x43, 0xe5, 0x49, 0xe8, + 0x3e, 0xd4, 0x78, 0x64, 0xd8, 0x6c, 0x32, 0x92, 0x27, 0x6b, 0xec, 0x5c, 0x2b, 0x74, 0xd1, 0x9e, + 0xc3, 0x9c, 0xfe, 0x64, 0x84, 0xad, 0xaa, 0x97, 0x8c, 0xd0, 0x2e, 0xe8, 0x5c, 0xcc, 0x1e, 0x39, + 0xb1, 0x13, 0x4e, 0x5b, 0xf2, 0xe2, 0xc8, 0xce, 0x23, 0x64, 0x01, 0x97, 0x3a, 0x12, 0x42, 0x68, + 0x0f, 0xea, 0x7e, 0xe4, 0xe1, 0x57, 0x53, 0x25, 0x95, 0x45, 0x95, 0xe8, 0x42, 0x2c, 0xd1, 0xb2, + 0x09, 0x65, 0x67, 0xcc, 0x48, 0x77, 0x4f, 0x64, 0xdb, 0xaa, 0x95, 0xcc, 0xd0, 0x1d, 0x58, 0x16, + 0x99, 0x49, 0x7c, 0x9b, 0x35, 0xce, 0x79, 0x8f, 0x4a, 0x27, 0x88, 0xcb, 0x20, 0xb9, 0xcd, 0xdf, + 0x2b, 0x60, 0xcc, 0x7f, 0x96, 0xa5, 0x5e, 0x50, 0x72, 0x5e, 0x98, 0xc3, 0x57, 0x3d, 0x8b, 0x6f, + 0xb6, 0x33, 0x6d, 0x66, 0x67, 0xf7, 0xa0, 0x2c, 0xdc, 0x4b, 0x93, 0xa7, 0xf2, 0x05, 0x3f, 0x11, + 0xd3, 0xcf, 0x3a, 0xc9, 0xbf, 0xfd, 0x4b, 0xa8, 0xe7, 0xf3, 0x04, 0xd2, 0xa1, 0xd2, 0x1b, 0xbb, + 0x2e, 0xa6, 0xd4, 0x58, 0x42, 0xab, 0xa0, 0x1f, 0x12, 0x66, 0xf7, 0xc6, 0xa3, 0x11, 0x89, 0x99, + 0xa1, 0xa0, 0x35, 0x58, 0x39, 0x24, 0xf6, 0x11, 0x8e, 0x43, 0x9f, 0x52, 0x9f, 0x44, 0x86, 0x8a, + 0xaa, 0x50, 0x3a, 0x70, 0xfc, 0xc0, 0xd0, 0xd0, 0x06, 0xac, 0x0a, 0x00, 0x31, 0xc3, 0xb1, 0xbd, + 0xcf, 0x33, 0xb4, 0xf1, 0x6b, 0x0d, 0x5d, 0x83, 0x66, 0x92, 0x15, 0xec, 0xa7, 0x83, 0x9f, 0x61, + 0x97, 0xd9, 0x5c, 0xe5, 0x01, 0x19, 0x47, 0x9e, 0xf1, 0x1b, 0x6d, 0xfb, 0x15, 0xac, 0x17, 0x7c, + 0x60, 0x20, 0x04, 0x8d, 0xdd, 0x07, 0x9d, 0x47, 0xcf, 0x8e, 0xec, 0xee, 0x61, 0xb7, 0xdf, 0x7d, + 0xf0, 0xd8, 0x58, 0x42, 0x1b, 0x60, 0x24, 0xb4, 0xfd, 0xe7, 0xfb, 0x9d, 0x67, 0xfd, 0xee, 0xe1, + 0x43, 0x43, 0xc9, 0x71, 0xf6, 0x9e, 0x75, 0x3a, 0xfb, 0xbd, 0x9e, 0xa1, 0xf2, 0x7d, 0x27, 0xb4, + 0x83, 0x07, 0xdd, 0xc7, 0x86, 0x96, 0x63, 0xea, 0x77, 0x9f, 0xec, 0x3f, 0x7d, 0xd6, 0x37, 0x4a, + 0xdb, 0xc7, 0xe9, 0xa3, 0x6e, 0xd6, 0xb4, 0x0e, 0x95, 0xcc, 0xe6, 0x0a, 0xd4, 0xf2, 0xc6, 0x38, + 0x3a, 0xa9, 0x15, 0x7e, 0x72, 0xa9, 0x5e, 0x87, 0x4a, 0xa6, 0xf7, 0x39, 0xf7, 0xf6, 0xdc, 0xff, + 0x24, 0x40, 0xb9, 0xc7, 0x62, 0x12, 0x0d, 0x8d, 0x25, 0xa1, 0x03, 0x4b, 0xf4, 0x84, 0xc2, 0x5d, + 0x0e, 0x05, 0xf6, 0x0c, 0x15, 0x35, 0x00, 0xf6, 0x5f, 0xe2, 0x88, 0x8d, 0x9d, 0x20, 0x98, 0x18, + 0x1a, 0x9f, 0x77, 0xc6, 0x94, 0x91, 0xd0, 0x7f, 0x8d, 0x3d, 0xa3, 0xb4, 0xfd, 0x07, 0x05, 0xaa, + 0xd3, 0x8b, 0xc3, 0xad, 0x1f, 0x92, 0x08, 0x1b, 0x4b, 0x7c, 0xb4, 0x4b, 0x48, 0x60, 0x28, 0x7c, + 0xd4, 0x8d, 0xd8, 0x3d, 0x43, 0x45, 0x35, 0x58, 0xee, 0x46, 0xec, 0x9b, 0x77, 0x0d, 0x2d, 0x19, + 0xde, 0xde, 0x31, 0x4a, 0xc9, 0xf0, 0xee, 0xa7, 0xc6, 0x32, 0x1f, 0x1e, 0x04, 0xc4, 0x61, 0x06, + 0xf0, 0xcd, 0xed, 0x91, 0xf1, 0x20, 0xc0, 0x86, 0x9e, 0x6c, 0xd4, 0x8f, 0x86, 0xc6, 0x06, 0xdf, + 0xdb, 0xb1, 0x13, 0x77, 0x4e, 0x9d, 0xd8, 0x78, 0x07, 0x19, 0x50, 0xdf, 0xf5, 0x23, 0x27, 0x9e, + 0x1c, 0x63, 0x97, 0x91, 0xd8, 0xf0, 0x38, 0xc8, 0x42, 0x43, 0x42, 0xc0, 0xdb, 0xc7, 0x00, 0x59, + 0xf0, 0x73, 0x01, 0x31, 0x93, 0xdf, 0x0a, 0x9e, 0xb1, 0xc4, 0x83, 0x27, 0xa3, 0x70, 0x13, 0x4a, + 0x4a, 0xda, 0x8b, 0xc9, 0x68, 0xc4, 0x49, 0x6a, 0x2a, 0x27, 0x48, 0xd8, 0x33, 0xb4, 0x9d, 0x7f, + 0x95, 0x60, 0xfd, 0x89, 0x08, 0x67, 0x19, 0x29, 0x3d, 0x1c, 0xbf, 0xf4, 0x5d, 0x8c, 0x5c, 0xa8, + 0xe7, 0xff, 0x2c, 0x50, 0xf1, 0x23, 0xb5, 0xe0, 0x5b, 0x63, 0xeb, 0xe3, 0xcb, 0x3a, 0xc9, 0xe4, + 0x46, 0x98, 0x4b, 0xe8, 0x27, 0x50, 0x4b, 0xdb, 0x79, 0x54, 0xfc, 0x3f, 0x3d, 0xdf, 0xee, 0x5f, + 0x45, 0xfd, 0x00, 0xf4, 0x5c, 0x7f, 0x8d, 0x8a, 0x25, 0xcf, 0xf6, 0xf7, 0x5b, 0xed, 0xcb, 0x19, + 0x53, 0x1b, 0x18, 0xea, 0xf9, 0xd6, 0xf5, 0x1c, 0x9c, 0x0a, 0x7a, 0xe6, 0xad, 0x1b, 0x0b, 0x70, + 0xa6, 0x66, 0x4e, 0x61, 0x65, 0xe6, 0xa1, 0x80, 0x6e, 0x2c, 0xdc, 0xe7, 0x6d, 0x6d, 0x2f, 0xc2, + 0x9a, 0x5a, 0x1a, 0x02, 0x64, 0xef, 0x0e, 0xf4, 0xc9, 0x79, 0x4e, 0x29, 0x78, 0x98, 0x5c, 0xcd, + 0xd0, 0xee, 0xb7, 0x3f, 0xff, 0xd6, 0xd0, 0x67, 0xa7, 0xe3, 0xc1, 0x4d, 0x97, 0x84, 0xb7, 0x5e, + 0xfb, 0x41, 0xe0, 0xbf, 0x66, 0xd8, 0x3d, 0xbd, 0x25, 0x95, 0x7c, 0x43, 0x8a, 0xdf, 0x72, 0x49, + 0x8c, 0x6f, 0x09, 0x85, 0xb7, 0x24, 0x65, 0x34, 0x18, 0x94, 0xc5, 0xfc, 0xf6, 0x7f, 0x03, 0x00, + 0x00, 0xff, 0xff, 0x7d, 0xb4, 0xb8, 0x1c, 0xc2, 0x1a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/docs/docs.go b/docs/docs.go index 255fefa0..fa53c34d 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -692,7 +692,7 @@ const docTemplate = `{ "ResponseCode_Success", "ResponseCode_Not_Support", "ResponseCode_No_Permission", - "ResponseCode_Bad_Request", + "ResponseCode_Fail", "ResponseCode_Parameter_Error", "ResponseCode_Request_Object_Not_Found" ] diff --git a/docs/swagger.json b/docs/swagger.json index f616d8f1..46aa5b39 100644 --- a/docs/swagger.json +++ b/docs/swagger.json @@ -685,7 +685,7 @@ "ResponseCode_Success", "ResponseCode_Not_Support", "ResponseCode_No_Permission", - "ResponseCode_Bad_Request", + "ResponseCode_Fail", "ResponseCode_Parameter_Error", "ResponseCode_Request_Object_Not_Found" ] diff --git a/docs/swagger.yaml b/docs/swagger.yaml index ff4fe662..a441010b 100644 --- a/docs/swagger.yaml +++ b/docs/swagger.yaml @@ -325,7 +325,7 @@ definitions: - ResponseCode_Success - ResponseCode_Not_Support - ResponseCode_No_Permission - - ResponseCode_Bad_Request + - ResponseCode_Fail - ResponseCode_Parameter_Error - ResponseCode_Request_Object_Not_Found backuppb.RestoreBackupRequest: From 7d62e8e18df4b9d3932dbc998d326a62c765a906 Mon Sep 17 00:00:00 2001 From: wayblink Date: Mon, 28 Nov 2022 16:46:08 +0800 Subject: [PATCH 3/3] fix create backup bug --- core/backup_context.go | 2 +- core/backup_context_test.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/core/backup_context.go b/core/backup_context.go index 3d604b9c..246bf681 100644 --- a/core/backup_context.go +++ b/core/backup_context.go @@ -273,7 +273,7 @@ func (b BackupContext) executeCreateBackup(ctx context.Context, request *backupp log.Debug(fmt.Sprintf("List %v collections", len(collections))) toBackupCollections = collections } else { - toBackupCollections := make([]*entity.Collection, 0) + //toBackupCollections := make([]*entity.Collection, 0) for _, collectionName := range request.GetCollectionNames() { exist, err := b.milvusClient.HasCollection(b.ctx, collectionName) if err != nil { diff --git a/core/backup_context_test.go b/core/backup_context_test.go index 9d409327..88044275 100644 --- a/core/backup_context_test.go +++ b/core/backup_context_test.go @@ -19,7 +19,8 @@ func TestCreateBackup(t *testing.T) { backup := CreateBackupContext(context, params) req := &backuppb.CreateBackupRequest{ - BackupName: "test_21", + BackupName: "test_21", + CollectionNames: []string{"hello_milvus", "hello_milvus2"}, } backup.CreateBackup(context, req) }