From 3ef8e81ee4b2b4afe7d82168e9378a3770233acc Mon Sep 17 00:00:00 2001 From: wayblink Date: Mon, 5 Feb 2024 20:51:19 +0800 Subject: [PATCH] Support gc pause during backup (#291) Signed-off-by: wayblink --- configs/backup.yaml | 9 +- core/backup_impl_create_backup.go | 58 +++++ core/paramtable/params.go | 32 ++- core/proto/backup.proto | 4 + core/proto/backuppb/backup.pb.go | 374 ++++++++++++++++-------------- docs/docs.go | 23 +- docs/swagger.json | 23 +- docs/swagger.yaml | 12 +- 8 files changed, 331 insertions(+), 204 deletions(-) diff --git a/configs/backup.yaml b/configs/backup.yaml index 1a6fb7b..d0a0ad9 100644 --- a/configs/backup.yaml +++ b/configs/backup.yaml @@ -18,6 +18,9 @@ milvus: tlsMode: 0 user: "root" password: "Milvus" + + useSSL: false # Optional, http API protocol, used to pause/resume GC of the Milvus cluster + httpPort: 9091 # Optional, http API port, used to pause/resume GC of the Milvus cluster # Related configuration of minio, which is responsible for data persistence for Milvus. minio: @@ -54,4 +57,8 @@ backup: restoreCollection: 2 # keep temporary files during restore, only use to debug - keepTempFiles: false \ No newline at end of file + keepTempFiles: false + + # Pause GC during backup through Milvus Http API. + pauseGcWhenBackup: true + pauseGcSeconds: 7200 \ No newline at end of file diff --git a/core/backup_impl_create_backup.go b/core/backup_impl_create_backup.go index 80f9c2b..255719b 100644 --- a/core/backup_impl_create_backup.go +++ b/core/backup_impl_create_backup.go @@ -4,6 +4,9 @@ import ( "context" "errors" "fmt" + "io/ioutil" + "net/http" + "net/url" "sort" "strconv" "strings" @@ -536,10 +539,65 @@ func (b *BackupContext) backupCollectionExecute(ctx context.Context, backupInfo return nil } +func (b *BackupContext) pauseMilvusGC(ctx context.Context) { + httpAddress := b.params.MilvusCfg.Address + ":" + b.params.MilvusCfg.HttpPort + if b.params.MilvusCfg.EnableSSL { + httpAddress = "https://" + httpAddress + } else { + httpAddress = "http://" + httpAddress + } + pauseAPI := "/management/datacoord/garbage_collection/pause" + params := url.Values{} + params.Add("pause_seconds", strconv.Itoa(b.params.BackupCfg.PauseGcSeconds)) + fullURL := fmt.Sprintf("%s?%s", httpAddress+pauseAPI, params.Encode()) + response, err := http.Get(fullURL) + if err != nil { + log.Error("Pause Milvus GC Error:", zap.Error(err)) + return + } + defer response.Body.Close() + // Read the response body + body, err := ioutil.ReadAll(response.Body) + if err != nil { + log.Error("Read response Error:", zap.Error(err)) + return + } + log.Info("Pause Milvus GC response", zap.String("response", string(body))) +} + +func (b *BackupContext) resumeMilvusGC(ctx context.Context) { + httpAddress := b.params.MilvusCfg.Address + ":" + b.params.MilvusCfg.HttpPort + if b.params.MilvusCfg.EnableSSL { + httpAddress = "https://" + httpAddress + } else { + httpAddress = "http://" + httpAddress + } + pauseAPI := "/management/datacoord/garbage_collection/resume" + fullURL := httpAddress + pauseAPI + response, err := http.Get(fullURL) + if err != nil { + log.Error("Resume Milvus GC Error:", zap.Error(err)) + return + } + // Read the response body + body, err := ioutil.ReadAll(response.Body) + if err != nil { + log.Error("Read response Error:", zap.Error(err)) + return + } + log.Info("Resume Milvus GC response", zap.String("response", string(body))) +} + func (b *BackupContext) executeCreateBackup(ctx context.Context, request *backuppb.CreateBackupRequest, backupInfo *backuppb.BackupInfo) (*backuppb.BackupInfo, error) { b.mu.Lock() defer b.mu.Unlock() + // pause GC + if b.params.BackupCfg.PauseGcWhenBackup { + b.pauseMilvusGC(ctx) + defer b.resumeMilvusGC(ctx) + } + backupInfo.BackupTimestamp = uint64(time.Now().UnixNano() / int64(time.Millisecond)) backupInfo.StateCode = backuppb.BackupTaskStateCode_BACKUP_EXECUTING diff --git a/core/paramtable/params.go b/core/paramtable/params.go index f067baf..96e2803 100644 --- a/core/paramtable/params.go +++ b/core/paramtable/params.go @@ -38,7 +38,9 @@ type BackupConfig struct { BackupCopyDataParallelism int RestoreParallelism int - KeepTempFiles bool + KeepTempFiles bool + PauseGcWhenBackup bool + PauseGcSeconds int } func (p *BackupConfig) init(base *BaseTable) { @@ -49,6 +51,8 @@ func (p *BackupConfig) init(base *BaseTable) { p.initRestoreParallelism() p.initBackupCopyDataParallelism() p.initKeepTempFiles() + p.initPauseGcWhenBackup() + p.initPauseGcSeconds() } func (p *BackupConfig) initMaxSegmentGroupSize() { @@ -79,6 +83,16 @@ func (p *BackupConfig) initKeepTempFiles() { p.KeepTempFiles, _ = strconv.ParseBool(keepTempFiles) } +func (p *BackupConfig) initPauseGcWhenBackup() { + pauseGcWhenBackup := p.Base.LoadWithDefault("backup.pauseGcWhenBackup", "false") + p.PauseGcWhenBackup, _ = strconv.ParseBool(pauseGcWhenBackup) +} + +func (p *BackupConfig) initPauseGcSeconds() { + size := p.Base.ParseIntWithDefault("backup.pauseGcSeconds", 7200) + p.PauseGcSeconds = size +} + type MilvusConfig struct { Base *BaseTable @@ -88,6 +102,8 @@ type MilvusConfig struct { Password string AuthorizationEnabled bool TLSMode int + HttpPort string + EnableSSL bool } func (p *MilvusConfig) init(base *BaseTable) { @@ -99,6 +115,8 @@ func (p *MilvusConfig) init(base *BaseTable) { p.initPassword() p.initAuthorizationEnabled() p.initTLSMode() + p.initHttpPort() + p.initSSLEnabled() } func (p *MilvusConfig) initAddress() { @@ -141,6 +159,18 @@ func (p *MilvusConfig) initTLSMode() { p.TLSMode = p.Base.ParseIntWithDefault("milvus.tlsMode", 0) } +func (p *MilvusConfig) initHttpPort() { + port, err := p.Base.Load("milvus.httpPort") + if err != nil { + panic(err) + } + p.HttpPort = port +} + +func (p *MilvusConfig) initSSLEnabled() { + p.EnableSSL = p.Base.ParseBool("milvus.useSSL", false) +} + // ///////////////////////////////////////////////////////////////////////////// // --- minio --- const ( diff --git a/core/proto/backup.proto b/core/proto/backup.proto index 9f063f9..5943438 100644 --- a/core/proto/backup.proto +++ b/core/proto/backup.proto @@ -151,6 +151,10 @@ message CreateBackupRequest { bool force = 6; // only backup meta, including collection schema and index info bool meta_only = 7; + // if true, stop GC to avoid the data compacted and GCed during backup, use it when the data to backup is very large. + bool stop_gc = 8; + // gc pause seconds, set it larger than the time cost of backup + int64 gc_pause = 9; } /** diff --git a/core/proto/backuppb/backup.pb.go b/core/proto/backuppb/backup.pb.go index da7f514..bb0149a 100644 --- a/core/proto/backuppb/backup.pb.go +++ b/core/proto/backuppb/backup.pb.go @@ -958,7 +958,11 @@ type CreateBackupRequest struct { // force backup skip flush, Should make sure data has been stored into disk when using it Force bool `protobuf:"varint,6,opt,name=force,proto3" json:"force,omitempty"` // only backup meta, including collection schema and index info - MetaOnly bool `protobuf:"varint,7,opt,name=meta_only,json=metaOnly,proto3" json:"meta_only,omitempty"` + MetaOnly bool `protobuf:"varint,7,opt,name=meta_only,json=metaOnly,proto3" json:"meta_only,omitempty"` + // if true, stop GC to avoid the data compacted and GCed during backup, use it when the data to backup is very large. + StopGc bool `protobuf:"varint,8,opt,name=stop_gc,json=stopGc,proto3" json:"stop_gc,omitempty"` + // gc pause seconds, set it larger than the time cost of backup + GcPause int64 `protobuf:"varint,9,opt,name=gc_pause,json=gcPause,proto3" json:"gc_pause,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1038,6 +1042,20 @@ func (m *CreateBackupRequest) GetMetaOnly() bool { return false } +func (m *CreateBackupRequest) GetStopGc() bool { + if m != nil { + return m.StopGc + } + return false +} + +func (m *CreateBackupRequest) GetGcPause() int64 { + if m != nil { + return m.GcPause + } + return 0 +} + //* // BackupInfoResponse type BackupInfoResponse struct { @@ -2725,182 +2743,184 @@ func init() { func init() { proto.RegisterFile("backup.proto", fileDescriptor_65240d19de191688) } var fileDescriptor_65240d19de191688 = []byte{ - // 2787 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x5a, 0x4b, 0x73, 0x1b, 0xc7, - 0x11, 0x26, 0xde, 0x40, 0xe3, 0xc1, 0xe5, 0x90, 0xa6, 0x20, 0xca, 0xb2, 0xa8, 0x8d, 0x2d, 0x53, - 0x74, 0x85, 0x72, 0xe8, 0x47, 0x6c, 0x55, 0xfc, 0x10, 0x5f, 0x12, 0x2c, 0x99, 0x62, 0x2d, 0x29, - 0x96, 0xca, 0x79, 0x6c, 0x2d, 0xb0, 0x43, 0x70, 0xc3, 0xc5, 0x0e, 0xb2, 0x33, 0x90, 0x05, 0x55, - 0x25, 0xb7, 0x54, 0x72, 0xcc, 0x21, 0xa7, 0xfc, 0x83, 0xdc, 0xe2, 0x4a, 0xf9, 0x92, 0x7f, 0x90, - 0x54, 0x2e, 0xf9, 0x07, 0xb9, 0xa5, 0xf2, 0x0b, 0x72, 0x4d, 0x4d, 0xcf, 0xec, 0x62, 0x01, 0x2e, - 0x49, 0x30, 0xe5, 0x8a, 0xe2, 0xdc, 0x66, 0xbe, 0xe9, 0xee, 0x99, 0xe9, 0xd7, 0xf4, 0x36, 0x00, - 0xb5, 0xb6, 0xd3, 0x39, 0x19, 0xf4, 0xd7, 0xfa, 0x21, 0x13, 0x8c, 0xcc, 0xf7, 0x3c, 0xff, 0xd9, - 0x80, 0xab, 0xd9, 0x9a, 0x5a, 0x5a, 0x7a, 0xb5, 0xcb, 0x58, 0xd7, 0xa7, 0x77, 0x10, 0x6c, 0x0f, - 0x8e, 0xee, 0x70, 0x11, 0x0e, 0x3a, 0x42, 0x11, 0x99, 0xff, 0xc8, 0x40, 0xa5, 0x15, 0xb8, 0xf4, - 0x79, 0x2b, 0x38, 0x62, 0xe4, 0x3a, 0xc0, 0x91, 0x47, 0x7d, 0xd7, 0x0e, 0x9c, 0x1e, 0x6d, 0x66, - 0x96, 0x33, 0x2b, 0x15, 0xab, 0x82, 0xc8, 0xae, 0xd3, 0xa3, 0x72, 0xd9, 0x93, 0xb4, 0x6a, 0x39, - 0xab, 0x96, 0x11, 0x19, 0x5f, 0x16, 0xc3, 0x3e, 0x6d, 0xe6, 0x12, 0xcb, 0x07, 0xc3, 0x3e, 0x25, - 0x1b, 0x50, 0xec, 0x3b, 0xa1, 0xd3, 0xe3, 0xcd, 0xfc, 0x72, 0x6e, 0xa5, 0xba, 0xbe, 0xba, 0x96, - 0x72, 0xdc, 0xb5, 0xf8, 0x30, 0x6b, 0x7b, 0x48, 0xbc, 0x1d, 0x88, 0x70, 0x68, 0x69, 0xce, 0xa5, - 0x0f, 0xa1, 0x9a, 0x80, 0x89, 0x01, 0xb9, 0x13, 0x3a, 0xd4, 0x07, 0x95, 0x43, 0xb2, 0x00, 0x85, - 0x67, 0x8e, 0x3f, 0x88, 0x4e, 0xa7, 0x26, 0x77, 0xb3, 0x1f, 0x64, 0xcc, 0xbf, 0x15, 0x61, 0x61, - 0x93, 0xf9, 0x3e, 0xed, 0x08, 0x8f, 0x05, 0x1b, 0xb8, 0x1b, 0x5e, 0xba, 0x01, 0x59, 0xcf, 0xd5, - 0x32, 0xb2, 0x9e, 0x4b, 0xee, 0x03, 0x70, 0xe1, 0x08, 0x6a, 0x77, 0x98, 0xab, 0xe4, 0x34, 0xd6, - 0x57, 0x52, 0xcf, 0xaa, 0x84, 0x1c, 0x38, 0xfc, 0x64, 0x5f, 0x32, 0x6c, 0x32, 0x97, 0x5a, 0x15, - 0x1e, 0x0d, 0x89, 0x09, 0x35, 0x1a, 0x86, 0x2c, 0xfc, 0x9c, 0x72, 0xee, 0x74, 0x23, 0x8d, 0x8c, - 0x61, 0x52, 0x67, 0x5c, 0x38, 0xa1, 0xb0, 0x85, 0xd7, 0xa3, 0xcd, 0xfc, 0x72, 0x66, 0x25, 0x87, - 0x22, 0x42, 0x71, 0xe0, 0xf5, 0x28, 0xb9, 0x0a, 0x65, 0x1a, 0xb8, 0x6a, 0xb1, 0x80, 0x8b, 0x25, - 0x1a, 0xb8, 0xb8, 0xb4, 0x04, 0xe5, 0x7e, 0xc8, 0xba, 0x21, 0xe5, 0xbc, 0x59, 0x5c, 0xce, 0xac, - 0x14, 0xac, 0x78, 0x4e, 0xbe, 0x03, 0xf5, 0x4e, 0x7c, 0x55, 0xdb, 0x73, 0x9b, 0x25, 0xe4, 0xad, - 0x8d, 0xc0, 0x96, 0x4b, 0xae, 0x40, 0xc9, 0x6d, 0x2b, 0x53, 0x96, 0xf1, 0x64, 0x45, 0xb7, 0x8d, - 0x76, 0x7c, 0x13, 0x66, 0x13, 0xdc, 0x48, 0x50, 0x41, 0x82, 0xc6, 0x08, 0x46, 0xc2, 0x8f, 0xa0, - 0xc8, 0x3b, 0xc7, 0xb4, 0xe7, 0x34, 0x61, 0x39, 0xb3, 0x52, 0x5d, 0x7f, 0x23, 0x55, 0x4b, 0x23, - 0xa5, 0xef, 0x23, 0xb1, 0xa5, 0x99, 0xf0, 0xee, 0xc7, 0x4e, 0xe8, 0x72, 0x3b, 0x18, 0xf4, 0x9a, - 0x55, 0xbc, 0x43, 0x45, 0x21, 0xbb, 0x83, 0x1e, 0xb1, 0x60, 0xae, 0xc3, 0x02, 0xee, 0x71, 0x41, - 0x83, 0xce, 0xd0, 0xf6, 0xe9, 0x33, 0xea, 0x37, 0x6b, 0x68, 0x8e, 0xb3, 0x36, 0x8a, 0xa9, 0x1f, - 0x49, 0x62, 0xcb, 0xe8, 0x4c, 0x20, 0xe4, 0x09, 0xcc, 0xf5, 0x9d, 0x50, 0x78, 0x78, 0x33, 0xc5, - 0xc6, 0x9b, 0x75, 0x74, 0xc7, 0x74, 0x13, 0xef, 0x45, 0xd4, 0x23, 0x87, 0xb1, 0x8c, 0xfe, 0x38, - 0xc8, 0xc9, 0x6d, 0x30, 0x14, 0x3d, 0x5a, 0x8a, 0x0b, 0xa7, 0xd7, 0x6f, 0x36, 0x96, 0x33, 0x2b, - 0x79, 0x6b, 0x56, 0xe1, 0x07, 0x11, 0x4c, 0x08, 0xe4, 0xb9, 0xf7, 0x82, 0x36, 0x67, 0xd1, 0x22, - 0x38, 0x26, 0xd7, 0xa0, 0x72, 0xec, 0x70, 0x1b, 0x43, 0xa5, 0x69, 0x2c, 0x67, 0x56, 0xca, 0x56, - 0xf9, 0xd8, 0xe1, 0x18, 0x0a, 0xe4, 0x13, 0xa8, 0xaa, 0xa8, 0xf2, 0x82, 0x23, 0xc6, 0x9b, 0x73, - 0x78, 0xd8, 0xd7, 0xce, 0x8f, 0x1d, 0x4b, 0x05, 0xa2, 0x1c, 0x72, 0xa9, 0x66, 0x9f, 0x39, 0xae, - 0x8d, 0x8e, 0xd9, 0x24, 0x2a, 0x2c, 0x25, 0x82, 0x4e, 0x4b, 0xee, 0xc2, 0x55, 0x7d, 0xf6, 0xfe, - 0xf1, 0x90, 0x7b, 0x1d, 0xc7, 0x4f, 0x5c, 0x62, 0x1e, 0x2f, 0x71, 0x45, 0x11, 0xec, 0xe9, 0xf5, - 0xf8, 0x32, 0xe6, 0xaf, 0xb3, 0x30, 0x9f, 0xa2, 0x21, 0x72, 0x13, 0x6a, 0x23, 0x35, 0xeb, 0xe0, - 0xca, 0x59, 0xd5, 0x18, 0x6b, 0xb9, 0xe4, 0x0d, 0x68, 0x8c, 0x48, 0x12, 0xf9, 0xa4, 0x1e, 0xa3, - 0xe8, 0x62, 0xa7, 0x3c, 0x39, 0x97, 0xe2, 0xc9, 0x8f, 0x61, 0x96, 0xd3, 0x6e, 0x8f, 0x06, 0x22, - 0xb6, 0xa9, 0x4a, 0x31, 0xb7, 0x52, 0xd5, 0xb4, 0xaf, 0x68, 0x13, 0x16, 0x6d, 0xf0, 0x24, 0xc4, - 0x63, 0x23, 0x15, 0x12, 0x46, 0x1a, 0x57, 0x63, 0x71, 0x42, 0x8d, 0xe6, 0x2f, 0x73, 0x30, 0x77, - 0x4a, 0x30, 0xba, 0xb8, 0x3e, 0x59, 0xac, 0x86, 0x8a, 0x46, 0x5a, 0xee, 0xe9, 0xdb, 0x65, 0x53, - 0x6e, 0x37, 0xa9, 0xcc, 0xdc, 0x69, 0x65, 0xbe, 0x06, 0xd5, 0x60, 0xd0, 0xb3, 0xd9, 0x91, 0x1d, - 0xb2, 0x2f, 0x79, 0x94, 0x46, 0x82, 0x41, 0xef, 0xf1, 0x91, 0xc5, 0xbe, 0xe4, 0xe4, 0x2e, 0x94, - 0xda, 0x5e, 0xe0, 0xb3, 0x2e, 0x6f, 0x16, 0x50, 0x31, 0xcb, 0xa9, 0x8a, 0xd9, 0x91, 0x99, 0x7e, - 0x03, 0x09, 0xad, 0x88, 0x81, 0x7c, 0x0c, 0x98, 0xd2, 0x38, 0x72, 0x17, 0xa7, 0xe4, 0x1e, 0xb1, - 0x48, 0x7e, 0x97, 0xfa, 0xc2, 0x41, 0xfe, 0xd2, 0xb4, 0xfc, 0x31, 0x4b, 0x6c, 0x8b, 0x72, 0xc2, - 0x16, 0x57, 0xa1, 0xdc, 0x0d, 0xd9, 0xa0, 0x2f, 0xd5, 0x51, 0x51, 0x69, 0x11, 0xe7, 0x2d, 0xd7, - 0xfc, 0x63, 0x0e, 0xe0, 0xff, 0x3b, 0xb9, 0x13, 0xc8, 0x63, 0xbc, 0x94, 0x70, 0x47, 0x1c, 0xa7, - 0x26, 0xa0, 0x72, 0x7a, 0x02, 0x7a, 0x0a, 0x24, 0xe1, 0x73, 0x51, 0xbc, 0x54, 0xd0, 0x30, 0xb7, - 0x2f, 0x48, 0xe0, 0x89, 0x90, 0x99, 0xeb, 0x4c, 0xa0, 0x23, 0x4b, 0x41, 0xc2, 0x52, 0x6f, 0x40, - 0x43, 0x89, 0xb4, 0x9f, 0xd1, 0x90, 0x7b, 0x2c, 0xc0, 0x3c, 0x5f, 0xb1, 0xea, 0x0a, 0x3d, 0x54, - 0xa0, 0xf9, 0x23, 0xb8, 0x3a, 0xda, 0x05, 0x53, 0x75, 0xc2, 0x86, 0x9f, 0x40, 0x41, 0xe5, 0xbe, - 0xcc, 0x65, 0x0f, 0xa9, 0xf8, 0xcc, 0x2f, 0xa0, 0x19, 0x67, 0xa9, 0x49, 0xe1, 0x1f, 0x8f, 0x0b, - 0x9f, 0xfe, 0x15, 0xd0, 0xb2, 0x0f, 0x61, 0x51, 0x87, 0xfd, 0xa4, 0xe4, 0x1f, 0x8c, 0x4b, 0x9e, - 0x36, 0x17, 0x69, 0xb9, 0xbf, 0xca, 0xc2, 0xfc, 0x66, 0x48, 0x1d, 0x41, 0xd5, 0x9a, 0x45, 0x7f, - 0x36, 0xa0, 0x5c, 0x90, 0x57, 0xa1, 0x12, 0xaa, 0x61, 0x2b, 0xf2, 0xeb, 0x11, 0x40, 0x6e, 0x40, - 0x55, 0xfb, 0x41, 0x22, 0xa5, 0x82, 0x82, 0x76, 0xb5, 0xa3, 0x4c, 0xbc, 0xed, 0xbc, 0x99, 0x5b, - 0xce, 0xad, 0x54, 0xac, 0xd9, 0xf1, 0xc7, 0x9d, 0xcb, 0x52, 0xca, 0xe1, 0xc3, 0xa0, 0x83, 0x8e, - 0x5b, 0xb6, 0xd4, 0x84, 0x7c, 0x04, 0x0d, 0xb7, 0x6d, 0x8f, 0x68, 0x39, 0xba, 0x6e, 0x75, 0x7d, - 0x71, 0x4d, 0xd5, 0x99, 0x6b, 0x51, 0x9d, 0xb9, 0x76, 0x28, 0x4b, 0x2f, 0xab, 0xee, 0xb6, 0x47, - 0xa6, 0x41, 0xa1, 0x47, 0x2c, 0xec, 0xa8, 0x04, 0x5a, 0xb6, 0xd4, 0x44, 0x3e, 0x80, 0x3d, 0x2a, - 0x1c, 0x9b, 0x05, 0xfe, 0x10, 0xfd, 0xba, 0x6c, 0x95, 0x25, 0xf0, 0x38, 0xf0, 0x87, 0xe6, 0x1f, - 0x32, 0x40, 0x12, 0xfa, 0xa1, 0xbc, 0xcf, 0x02, 0x4e, 0x2f, 0x50, 0xc4, 0x7b, 0x90, 0x4f, 0x44, - 0xf8, 0xcd, 0x54, 0xdd, 0x47, 0xa2, 0x30, 0xb4, 0x91, 0x5c, 0x16, 0x94, 0x3d, 0xde, 0xd5, 0xc1, - 0x2c, 0x87, 0xe4, 0x1d, 0xc8, 0xbb, 0x8e, 0x70, 0x50, 0x09, 0xd5, 0xf5, 0x1b, 0xe7, 0xa4, 0x0a, - 0x3c, 0x1d, 0x12, 0x9b, 0x7f, 0xc9, 0x80, 0x71, 0x9f, 0x8a, 0x6f, 0xd4, 0x72, 0xd7, 0xa0, 0xa2, - 0x09, 0xf4, 0x1b, 0x50, 0xb1, 0xca, 0x0a, 0xd0, 0xdc, 0x83, 0xce, 0x09, 0x15, 0x8a, 0x3b, 0xaf, - 0xb9, 0x11, 0x42, 0x6e, 0x02, 0xf9, 0xbe, 0x23, 0x8e, 0xd1, 0x58, 0x15, 0x0b, 0xc7, 0x32, 0x36, - 0xbf, 0xf4, 0xc4, 0x31, 0x1b, 0x08, 0xdb, 0xa5, 0xc2, 0xf1, 0x7c, 0x6d, 0x94, 0xba, 0x46, 0xb7, - 0x10, 0x34, 0x7f, 0x08, 0xe4, 0x91, 0xc7, 0xa3, 0xb7, 0x71, 0xba, 0xdb, 0xa4, 0x94, 0x90, 0xd9, - 0xb4, 0x12, 0xd2, 0xfc, 0x2a, 0x03, 0xf3, 0x63, 0xd2, 0x5f, 0x96, 0x75, 0x73, 0xd3, 0x5b, 0xf7, - 0x00, 0xe6, 0xb7, 0xa8, 0x4f, 0xbf, 0xd9, 0xc8, 0x34, 0x7f, 0x0e, 0x0b, 0xe3, 0x52, 0xff, 0xab, - 0x9a, 0x30, 0xff, 0x5e, 0x80, 0x05, 0x8b, 0x72, 0xc1, 0xc2, 0x97, 0x96, 0x70, 0xde, 0x82, 0xc4, - 0xa3, 0x62, 0xf3, 0xc1, 0xd1, 0x91, 0xf7, 0x5c, 0xbb, 0x72, 0x42, 0xc6, 0x3e, 0xe2, 0x84, 0x8d, - 0x3d, 0x63, 0x21, 0x55, 0x92, 0x55, 0x75, 0xf3, 0xe9, 0x59, 0x6a, 0x38, 0x75, 0xbb, 0xc4, 0xb3, - 0x61, 0x29, 0x11, 0xea, 0x7b, 0x33, 0x71, 0x10, 0x8d, 0x8f, 0xd2, 0x61, 0x31, 0x99, 0x0e, 0x27, - 0x02, 0xaf, 0x74, 0x66, 0xe0, 0x95, 0x13, 0x81, 0x77, 0x3a, 0x87, 0x56, 0x2e, 0x93, 0x43, 0x97, - 0x20, 0x4e, 0x8e, 0xf8, 0xd6, 0x26, 0x92, 0xa5, 0x2c, 0x4b, 0x42, 0x75, 0x4f, 0xfc, 0x18, 0xc0, - 0xd7, 0xb6, 0x6c, 0x8d, 0x61, 0x92, 0x66, 0xc0, 0xe9, 0xbd, 0x81, 0x60, 0x8a, 0xa6, 0xa6, 0x68, - 0x92, 0x18, 0x79, 0x1b, 0xe6, 0xdd, 0x90, 0xf5, 0xb7, 0x9f, 0x7b, 0x5c, 0x8c, 0xf6, 0x6e, 0xd6, - 0x91, 0x34, 0x6d, 0x89, 0xdc, 0x82, 0x46, 0x0c, 0x2b, 0xb9, 0x0d, 0x24, 0x9e, 0x40, 0xc9, 0x3a, - 0x2c, 0xf0, 0x13, 0xaf, 0xaf, 0xde, 0xb6, 0x84, 0xe8, 0x59, 0xa4, 0x4e, 0x5d, 0x5b, 0xda, 0x82, - 0xc5, 0x74, 0x43, 0x5d, 0xaa, 0x03, 0xf0, 0x75, 0x36, 0x76, 0xf1, 0xf8, 0x41, 0x97, 0xf5, 0xdd, - 0xa9, 0x22, 0xf1, 0x41, 0x4a, 0x91, 0x78, 0xfb, 0x3c, 0x9f, 0xfa, 0x1f, 0xac, 0x12, 0x5b, 0x80, - 0x5f, 0x08, 0xba, 0xc0, 0x43, 0xc7, 0xbc, 0x4c, 0x75, 0x03, 0x92, 0x59, 0xcd, 0xcd, 0xaf, 0x8b, - 0xf0, 0x8a, 0xbe, 0xe8, 0xc8, 0x0a, 0xdf, 0x6a, 0xc5, 0x7d, 0x06, 0x55, 0x19, 0x7d, 0x91, 0x72, - 0x8a, 0xa8, 0x9c, 0x4b, 0xd4, 0x95, 0x20, 0xb9, 0xd5, 0x9c, 0xbc, 0x0b, 0x8b, 0xc2, 0x09, 0xbb, - 0x54, 0xd8, 0x93, 0x2f, 0x9e, 0x4a, 0x06, 0x0b, 0x6a, 0x75, 0x73, 0xbc, 0x75, 0xe2, 0xc0, 0x95, - 0xd1, 0x47, 0x9d, 0x8e, 0x4e, 0x5b, 0x38, 0xfc, 0x84, 0x37, 0xcb, 0xe7, 0x54, 0xb9, 0x69, 0xee, - 0x6b, 0xbd, 0x12, 0x4b, 0x4a, 0x68, 0x15, 0x9b, 0x40, 0x5a, 0xb0, 0x6b, 0x63, 0x5d, 0xae, 0xbe, - 0x94, 0xa2, 0x5c, 0xe0, 0xee, 0xcb, 0xfa, 0xfc, 0x16, 0xcc, 0x0a, 0x16, 0x1f, 0x20, 0x51, 0xbe, - 0xd7, 0x05, 0xd3, 0xd2, 0x90, 0x2e, 0xe9, 0x6a, 0xd5, 0x09, 0x57, 0x7b, 0x1d, 0x1a, 0x5a, 0x03, - 0x51, 0x3f, 0xa9, 0xa6, 0xac, 0xa5, 0xd0, 0x2d, 0xd5, 0x55, 0x4a, 0x66, 0xad, 0xfa, 0x05, 0x59, - 0xab, 0x31, 0x45, 0xd6, 0x9a, 0x9d, 0x3e, 0x6b, 0x19, 0x97, 0xc9, 0x5a, 0x73, 0x97, 0xca, 0x5a, - 0xe4, 0xec, 0xac, 0x65, 0xfe, 0x2e, 0x07, 0x73, 0x63, 0x8f, 0xce, 0xb7, 0x3a, 0x66, 0x5c, 0x68, - 0x8e, 0x3d, 0xb8, 0x49, 0x97, 0x2d, 0x9e, 0xd3, 0xd0, 0x4d, 0xcd, 0x1c, 0xd6, 0x62, 0xf2, 0x81, - 0x3d, 0xcf, 0x69, 0x4b, 0xd3, 0x39, 0x6d, 0xf9, 0x22, 0xa7, 0xad, 0x8c, 0x3b, 0xad, 0xf9, 0xa7, - 0x4c, 0x9c, 0xd4, 0x5e, 0x4a, 0xc1, 0x45, 0xee, 0x8e, 0x7d, 0x58, 0xdc, 0xba, 0xb8, 0x64, 0x41, - 0xbd, 0xa9, 0x0a, 0x74, 0x07, 0x16, 0xef, 0x53, 0x11, 0x5d, 0x55, 0x3a, 0xc0, 0x74, 0xd5, 0x9a, - 0xf2, 0xbd, 0x6c, 0xe4, 0x7b, 0xe6, 0x4f, 0xa0, 0x9a, 0xe8, 0xba, 0x90, 0x26, 0x94, 0xb0, 0xd9, - 0xdf, 0xda, 0xd2, 0xad, 0xaa, 0x68, 0x4a, 0xde, 0x1b, 0x35, 0x90, 0xb2, 0x68, 0xeb, 0x6b, 0xe9, - 0xa5, 0xf2, 0x78, 0xef, 0xc8, 0xfc, 0x7d, 0x06, 0x8a, 0x5a, 0xf6, 0x0d, 0xa8, 0xd2, 0x40, 0x84, - 0x1e, 0x55, 0xdd, 0x5e, 0x25, 0x1f, 0x34, 0xb4, 0x3b, 0xe8, 0xc9, 0xaf, 0x91, 0xb8, 0x77, 0x61, - 0x1f, 0x85, 0xac, 0x87, 0xe7, 0xcc, 0x5b, 0xf5, 0x18, 0xdd, 0x09, 0x59, 0x8f, 0xdc, 0x84, 0xda, - 0x88, 0x4c, 0x30, 0xd4, 0x68, 0xde, 0xaa, 0xc6, 0xd8, 0x01, 0x93, 0x4e, 0xec, 0xb3, 0xae, 0x8d, - 0x65, 0x97, 0x2a, 0x1f, 0x4b, 0x3e, 0xeb, 0xee, 0xc9, 0xca, 0x4b, 0x2f, 0x25, 0x9a, 0x7b, 0x72, - 0x49, 0x3a, 0x8b, 0xf9, 0x3e, 0xd4, 0x1e, 0xd2, 0x21, 0x16, 0x5c, 0x7b, 0x8e, 0x17, 0x4e, 0x5b, - 0x59, 0x98, 0xff, 0xca, 0x00, 0x20, 0x17, 0x6a, 0x92, 0x5c, 0x87, 0x4a, 0x9b, 0x31, 0xdf, 0x46, - 0xdb, 0x4a, 0xe6, 0xf2, 0x83, 0x19, 0xab, 0x2c, 0xa1, 0x2d, 0x47, 0x38, 0xe4, 0x1a, 0x94, 0xbd, - 0x40, 0xa8, 0x55, 0x29, 0xa6, 0xf0, 0x60, 0xc6, 0x2a, 0x79, 0x81, 0xc0, 0xc5, 0xeb, 0x50, 0xf1, - 0x59, 0xd0, 0x55, 0xab, 0xd8, 0xe6, 0x93, 0xbc, 0x12, 0xc2, 0xe5, 0x1b, 0x00, 0x47, 0x3e, 0x73, - 0x34, 0xb7, 0xbc, 0x59, 0xf6, 0xc1, 0x8c, 0x55, 0x41, 0x0c, 0x09, 0x6e, 0x42, 0xd5, 0x65, 0x83, - 0xb6, 0x4f, 0x15, 0x85, 0xbc, 0x60, 0xe6, 0xc1, 0x8c, 0x05, 0x0a, 0x8c, 0x48, 0xb8, 0x08, 0xbd, - 0x68, 0x13, 0x6c, 0x63, 0x4a, 0x12, 0x05, 0x46, 0xdb, 0xb4, 0x87, 0x82, 0x72, 0x45, 0x21, 0xe3, - 0xaf, 0x26, 0xb7, 0x41, 0x4c, 0x12, 0x6c, 0x14, 0x95, 0xe7, 0x9a, 0xff, 0xcc, 0x6b, 0xf7, 0x51, - 0x7d, 0xfd, 0x73, 0xdc, 0x27, 0x6a, 0x59, 0x65, 0x13, 0x2d, 0xab, 0xd7, 0xa1, 0xe1, 0x71, 0xbb, - 0x1f, 0x7a, 0x3d, 0x27, 0x1c, 0xda, 0x52, 0xd5, 0x39, 0x95, 0xd1, 0x3d, 0xbe, 0xa7, 0xc0, 0x87, - 0x74, 0x48, 0x96, 0xa1, 0xea, 0x52, 0xde, 0x09, 0xbd, 0x3e, 0xa6, 0x5b, 0x65, 0xce, 0x24, 0x44, - 0xee, 0x42, 0x45, 0x9e, 0x46, 0xfd, 0xe8, 0x54, 0xc0, 0xa8, 0xbc, 0x9e, 0xea, 0x9c, 0xf2, 0xec, - 0x07, 0xc3, 0x3e, 0xb5, 0xca, 0xae, 0x1e, 0x91, 0x0d, 0xa8, 0x4a, 0x36, 0x5b, 0xff, 0x2e, 0xa5, - 0xd2, 0x58, 0x7a, 0x4c, 0x27, 0x7d, 0xc3, 0x02, 0xc9, 0xa5, 0x7e, 0x88, 0x22, 0x5b, 0x50, 0x53, - 0xfd, 0x79, 0x2d, 0xa4, 0x34, 0xad, 0x10, 0xd5, 0xd6, 0xd7, 0x52, 0x16, 0xa1, 0xe8, 0xc8, 0x67, - 0x6c, 0x0b, 0x33, 0x59, 0xd9, 0xd2, 0x33, 0xf2, 0x1e, 0x14, 0x54, 0xc3, 0xb9, 0x82, 0x37, 0xbb, - 0x71, 0x76, 0xe7, 0x54, 0xa5, 0x01, 0x45, 0x4d, 0x3e, 0x85, 0x1a, 0xf5, 0x29, 0xf6, 0x9d, 0x51, - 0x2f, 0x30, 0x8d, 0x5e, 0xaa, 0x9a, 0x05, 0x55, 0xb3, 0x05, 0x75, 0x97, 0x1e, 0x39, 0x03, 0x5f, - 0xd8, 0xca, 0xe9, 0xab, 0xe7, 0x34, 0x40, 0x46, 0xfe, 0x6f, 0xd5, 0x34, 0x17, 0x42, 0xf8, 0x93, - 0x20, 0xb7, 0xdd, 0x61, 0xe0, 0xf4, 0xbc, 0x8e, 0xfe, 0xd0, 0xa8, 0x78, 0x7c, 0x4b, 0x01, 0x64, - 0x05, 0x0c, 0xe9, 0x03, 0x71, 0x21, 0x24, 0xbd, 0x40, 0xd5, 0x06, 0x0d, 0x8f, 0xc7, 0x45, 0xce, - 0x43, 0x3a, 0x34, 0xff, 0x9a, 0x01, 0x63, 0xf2, 0x87, 0xa4, 0xd8, 0xad, 0x32, 0x09, 0xb7, 0x9a, - 0x70, 0x98, 0xec, 0x69, 0x87, 0x19, 0xa9, 0x3a, 0x37, 0xa6, 0xea, 0x0f, 0xa0, 0x88, 0xfe, 0x1a, - 0xfd, 0x78, 0x70, 0x4e, 0x97, 0x3a, 0xfa, 0x21, 0x4b, 0xd1, 0x93, 0xb7, 0x61, 0x81, 0x06, 0x0e, - 0xc6, 0x9d, 0xba, 0x98, 0x8d, 0x0b, 0xe8, 0x8d, 0x65, 0x8b, 0xa8, 0x35, 0x7d, 0x67, 0xe4, 0x37, - 0x1b, 0x50, 0xdb, 0x3c, 0xa6, 0x9d, 0x13, 0x9d, 0xb6, 0xcd, 0xa7, 0x50, 0xd7, 0x73, 0xfd, 0x08, - 0x45, 0xcf, 0x4c, 0xe6, 0x3f, 0x7a, 0x66, 0xb2, 0xf1, 0x33, 0xb3, 0xfa, 0x0b, 0xa8, 0x25, 0xe9, - 0x48, 0x15, 0x4a, 0xfb, 0x83, 0x4e, 0x87, 0x72, 0x6e, 0xcc, 0x90, 0x59, 0xa8, 0xee, 0x32, 0x61, - 0xef, 0x0f, 0xfa, 0x7d, 0x16, 0x0a, 0x23, 0x43, 0xe6, 0xa0, 0xbe, 0xcb, 0xec, 0x3d, 0x1a, 0xf6, - 0x3c, 0xce, 0x3d, 0x16, 0x18, 0x59, 0x52, 0x86, 0xfc, 0x8e, 0xe3, 0xf9, 0x46, 0x8e, 0x2c, 0xc0, - 0x2c, 0x7a, 0x2b, 0x15, 0x34, 0xb4, 0xb7, 0x65, 0x55, 0x61, 0xfc, 0x26, 0x47, 0xae, 0x43, 0x53, - 0xdf, 0xc2, 0x7e, 0xdc, 0xfe, 0x29, 0xed, 0x08, 0x5b, 0x8a, 0xdc, 0x61, 0x83, 0xc0, 0x35, 0x7e, - 0x9b, 0x5b, 0x7d, 0x0e, 0xf3, 0x29, 0x9d, 0x74, 0x42, 0xa0, 0xb1, 0x71, 0x6f, 0xf3, 0xe1, 0x93, - 0x3d, 0xbb, 0xb5, 0xdb, 0x3a, 0x68, 0xdd, 0x7b, 0x64, 0xcc, 0x90, 0x05, 0x30, 0x34, 0xb6, 0xfd, - 0x74, 0x7b, 0xf3, 0xc9, 0x41, 0x6b, 0xf7, 0xbe, 0x91, 0x49, 0x50, 0xee, 0x3f, 0xd9, 0xdc, 0xdc, - 0xde, 0xdf, 0x37, 0xb2, 0xf2, 0xdc, 0x1a, 0xdb, 0xb9, 0xd7, 0x7a, 0x64, 0xe4, 0x12, 0x44, 0x07, - 0xad, 0xcf, 0xb7, 0x1f, 0x3f, 0x39, 0x30, 0xf2, 0xab, 0x87, 0xf1, 0xd7, 0xde, 0xf8, 0xd6, 0x55, - 0x28, 0x8d, 0xf6, 0xac, 0x43, 0x25, 0xb9, 0x99, 0xd4, 0x4e, 0xbc, 0x8b, 0xbc, 0xb9, 0x12, 0x5f, - 0x85, 0xd2, 0x48, 0xee, 0x53, 0xe9, 0x89, 0x13, 0xbf, 0x2b, 0x02, 0x14, 0xf7, 0x45, 0xc8, 0x82, - 0xae, 0x31, 0x83, 0x32, 0xa8, 0xd2, 0x1e, 0x0a, 0xdc, 0x90, 0xaa, 0xa0, 0xae, 0x91, 0x25, 0x0d, - 0x80, 0xed, 0x67, 0x34, 0x10, 0x03, 0xc7, 0xf7, 0x87, 0x46, 0x4e, 0xce, 0x37, 0x07, 0x5c, 0xb0, - 0x9e, 0xf7, 0x82, 0xba, 0x46, 0x7e, 0xf5, 0xab, 0x0c, 0x94, 0xa3, 0x68, 0x94, 0xbb, 0xef, 0xb2, - 0x80, 0x1a, 0x33, 0x72, 0xb4, 0xc1, 0x98, 0x6f, 0x64, 0xe4, 0xa8, 0x15, 0x88, 0x0f, 0x8c, 0x2c, - 0xa9, 0x40, 0xa1, 0x15, 0x88, 0xef, 0xbd, 0x6f, 0xe4, 0xf4, 0xf0, 0x9d, 0x75, 0x23, 0xaf, 0x87, - 0xef, 0xbf, 0x6b, 0x14, 0xe4, 0x70, 0x47, 0x3e, 0x0c, 0x06, 0xc8, 0xc3, 0x6d, 0xe1, 0x0b, 0x60, - 0x54, 0xf5, 0x41, 0xbd, 0xa0, 0x6b, 0x2c, 0xc8, 0xb3, 0x1d, 0x3a, 0xe1, 0xe6, 0xb1, 0x13, 0x1a, - 0xaf, 0x48, 0xfa, 0x7b, 0x61, 0xe8, 0x0c, 0x8d, 0x45, 0xb9, 0xcb, 0x67, 0x9c, 0x05, 0xc6, 0x15, - 0x62, 0x40, 0x6d, 0xc3, 0x0b, 0x9c, 0x70, 0x78, 0x48, 0x3b, 0x82, 0x85, 0x86, 0x2b, 0x35, 0x8f, - 0x62, 0x35, 0x40, 0x57, 0x0f, 0x01, 0x46, 0xe9, 0x47, 0x32, 0xe0, 0x4c, 0xd5, 0xc2, 0xae, 0x31, - 0x23, 0x3d, 0x6a, 0x84, 0xc8, 0x7d, 0x33, 0x31, 0xb4, 0x15, 0xb2, 0x7e, 0x5f, 0x42, 0xd9, 0x98, - 0x0f, 0x21, 0xea, 0x1a, 0xb9, 0xf5, 0x3f, 0x17, 0x60, 0xfe, 0x73, 0x74, 0x7a, 0xe5, 0x3e, 0xfb, - 0x34, 0x7c, 0xe6, 0x75, 0x28, 0xe9, 0x40, 0x2d, 0xd9, 0x16, 0x27, 0xe9, 0x9f, 0xb4, 0x29, 0x9d, - 0xf3, 0xa5, 0x37, 0x2f, 0xea, 0xee, 0xe9, 0x30, 0x31, 0x67, 0xc8, 0x8f, 0xa1, 0x12, 0xb7, 0x6f, - 0x49, 0xfa, 0x8f, 0xcd, 0x93, 0xed, 0xdd, 0xcb, 0x88, 0x6f, 0x43, 0x35, 0xd1, 0xf3, 0x24, 0xe9, - 0x9c, 0xa7, 0x7b, 0xae, 0x4b, 0x2b, 0x17, 0x13, 0xc6, 0x7b, 0x50, 0xa8, 0x25, 0xdb, 0x89, 0x67, - 0xe8, 0x29, 0xa5, 0x8f, 0xb9, 0x74, 0x7b, 0x0a, 0xca, 0x78, 0x9b, 0x63, 0xa8, 0x8f, 0x15, 0xa9, - 0xe4, 0xf6, 0xd4, 0xbd, 0xb7, 0xa5, 0xd5, 0x69, 0x48, 0xe3, 0x9d, 0xba, 0x00, 0xa3, 0x9a, 0x97, - 0xbc, 0x75, 0x96, 0x51, 0x52, 0x8a, 0xe2, 0x4b, 0x6e, 0xb4, 0x07, 0x05, 0xcc, 0xc5, 0x24, 0x3d, - 0xeb, 0x26, 0xf3, 0xf6, 0x92, 0x79, 0x1e, 0x49, 0x24, 0x71, 0xe3, 0xc3, 0x2f, 0xbe, 0xdf, 0xf5, - 0xc4, 0xf1, 0xa0, 0xbd, 0xd6, 0x61, 0xbd, 0x3b, 0x2f, 0x3c, 0xdf, 0xf7, 0x5e, 0x08, 0xda, 0x39, - 0xbe, 0xa3, 0x98, 0xbf, 0xab, 0xd8, 0xee, 0x74, 0x58, 0xa8, 0xff, 0xa6, 0x73, 0x47, 0x21, 0xfd, - 0x76, 0xbb, 0x88, 0xf3, 0x77, 0xfe, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x8d, 0x3c, 0x62, 0xdc, 0xe9, - 0x23, 0x00, 0x00, + // 2818 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x5a, 0xcb, 0x72, 0x1b, 0xc7, + 0xd5, 0x26, 0xee, 0xc0, 0xc1, 0x85, 0xc3, 0x26, 0x4d, 0x41, 0x94, 0x65, 0x51, 0xf3, 0xdb, 0x32, + 0x25, 0xd7, 0x4f, 0xf9, 0xa7, 0x2f, 0xbf, 0xad, 0x8a, 0x2f, 0xe2, 0x45, 0x12, 0x2c, 0x99, 0x62, + 0x0d, 0x29, 0x95, 0xca, 0xb9, 0x4c, 0x0d, 0x66, 0x9a, 0xe0, 0x84, 0x83, 0x69, 0x64, 0xba, 0x21, + 0x0b, 0xaa, 0x4a, 0x76, 0xa9, 0xca, 0x32, 0x8b, 0xac, 0xf2, 0x06, 0xd9, 0xc5, 0x95, 0xf2, 0x26, + 0x79, 0x82, 0xa4, 0xb2, 0xc9, 0x1b, 0x64, 0x97, 0xca, 0x13, 0x64, 0x9b, 0xea, 0xd3, 0x3d, 0x83, + 0x01, 0x38, 0x24, 0xc1, 0x94, 0x2b, 0x8e, 0xb3, 0xeb, 0xfe, 0xfa, 0x9c, 0xd3, 0xdd, 0xe7, 0xd6, + 0x07, 0x67, 0x00, 0x8d, 0xae, 0xe3, 0x1e, 0x0f, 0x07, 0xeb, 0x83, 0x88, 0x09, 0x46, 0x16, 0xfb, + 0x7e, 0xf0, 0x7c, 0xc8, 0xd5, 0x6c, 0x5d, 0x2d, 0xad, 0xbc, 0xda, 0x63, 0xac, 0x17, 0xd0, 0xdb, + 0x08, 0x76, 0x87, 0x87, 0xb7, 0xb9, 0x88, 0x86, 0xae, 0x50, 0x44, 0xe6, 0xdf, 0x72, 0x50, 0xeb, + 0x84, 0x1e, 0x7d, 0xd1, 0x09, 0x0f, 0x19, 0xb9, 0x0a, 0x70, 0xe8, 0xd3, 0xc0, 0xb3, 0x43, 0xa7, + 0x4f, 0xdb, 0xb9, 0xd5, 0xdc, 0x5a, 0xcd, 0xaa, 0x21, 0xb2, 0xeb, 0xf4, 0xa9, 0x5c, 0xf6, 0x25, + 0xad, 0x5a, 0xce, 0xab, 0x65, 0x44, 0x26, 0x97, 0xc5, 0x68, 0x40, 0xdb, 0x85, 0xd4, 0xf2, 0xc1, + 0x68, 0x40, 0xc9, 0x26, 0x94, 0x07, 0x4e, 0xe4, 0xf4, 0x79, 0xbb, 0xb8, 0x5a, 0x58, 0xab, 0x6f, + 0xdc, 0x5a, 0xcf, 0x38, 0xee, 0x7a, 0x72, 0x98, 0xf5, 0x3d, 0x24, 0xde, 0x09, 0x45, 0x34, 0xb2, + 0x34, 0xe7, 0xca, 0x87, 0x50, 0x4f, 0xc1, 0xc4, 0x80, 0xc2, 0x31, 0x1d, 0xe9, 0x83, 0xca, 0x21, + 0x59, 0x82, 0xd2, 0x73, 0x27, 0x18, 0xc6, 0xa7, 0x53, 0x93, 0x3b, 0xf9, 0x0f, 0x72, 0xe6, 0x5f, + 0xca, 0xb0, 0xb4, 0xc5, 0x82, 0x80, 0xba, 0xc2, 0x67, 0xe1, 0x26, 0xee, 0x86, 0x97, 0x6e, 0x41, + 0xde, 0xf7, 0xb4, 0x8c, 0xbc, 0xef, 0x91, 0xfb, 0x00, 0x5c, 0x38, 0x82, 0xda, 0x2e, 0xf3, 0x94, + 0x9c, 0xd6, 0xc6, 0x5a, 0xe6, 0x59, 0x95, 0x90, 0x03, 0x87, 0x1f, 0xef, 0x4b, 0x86, 0x2d, 0xe6, + 0x51, 0xab, 0xc6, 0xe3, 0x21, 0x31, 0xa1, 0x41, 0xa3, 0x88, 0x45, 0x9f, 0x53, 0xce, 0x9d, 0x5e, + 0xac, 0x91, 0x09, 0x4c, 0xea, 0x8c, 0x0b, 0x27, 0x12, 0xb6, 0xf0, 0xfb, 0xb4, 0x5d, 0x5c, 0xcd, + 0xad, 0x15, 0x50, 0x44, 0x24, 0x0e, 0xfc, 0x3e, 0x25, 0x97, 0xa1, 0x4a, 0x43, 0x4f, 0x2d, 0x96, + 0x70, 0xb1, 0x42, 0x43, 0x0f, 0x97, 0x56, 0xa0, 0x3a, 0x88, 0x58, 0x2f, 0xa2, 0x9c, 0xb7, 0xcb, + 0xab, 0xb9, 0xb5, 0x92, 0x95, 0xcc, 0xc9, 0xff, 0x40, 0xd3, 0x4d, 0xae, 0x6a, 0xfb, 0x5e, 0xbb, + 0x82, 0xbc, 0x8d, 0x31, 0xd8, 0xf1, 0xc8, 0x25, 0xa8, 0x78, 0x5d, 0x65, 0xca, 0x2a, 0x9e, 0xac, + 0xec, 0x75, 0xd1, 0x8e, 0x6f, 0xc2, 0x7c, 0x8a, 0x1b, 0x09, 0x6a, 0x48, 0xd0, 0x1a, 0xc3, 0x48, + 0xf8, 0x11, 0x94, 0xb9, 0x7b, 0x44, 0xfb, 0x4e, 0x1b, 0x56, 0x73, 0x6b, 0xf5, 0x8d, 0x37, 0x32, + 0xb5, 0x34, 0x56, 0xfa, 0x3e, 0x12, 0x5b, 0x9a, 0x09, 0xef, 0x7e, 0xe4, 0x44, 0x1e, 0xb7, 0xc3, + 0x61, 0xbf, 0x5d, 0xc7, 0x3b, 0xd4, 0x14, 0xb2, 0x3b, 0xec, 0x13, 0x0b, 0x16, 0x5c, 0x16, 0x72, + 0x9f, 0x0b, 0x1a, 0xba, 0x23, 0x3b, 0xa0, 0xcf, 0x69, 0xd0, 0x6e, 0xa0, 0x39, 0x4e, 0xdb, 0x28, + 0xa1, 0x7e, 0x24, 0x89, 0x2d, 0xc3, 0x9d, 0x42, 0xc8, 0x13, 0x58, 0x18, 0x38, 0x91, 0xf0, 0xf1, + 0x66, 0x8a, 0x8d, 0xb7, 0x9b, 0xe8, 0x8e, 0xd9, 0x26, 0xde, 0x8b, 0xa9, 0xc7, 0x0e, 0x63, 0x19, + 0x83, 0x49, 0x90, 0x93, 0x9b, 0x60, 0x28, 0x7a, 0xb4, 0x14, 0x17, 0x4e, 0x7f, 0xd0, 0x6e, 0xad, + 0xe6, 0xd6, 0x8a, 0xd6, 0xbc, 0xc2, 0x0f, 0x62, 0x98, 0x10, 0x28, 0x72, 0xff, 0x25, 0x6d, 0xcf, + 0xa3, 0x45, 0x70, 0x4c, 0xae, 0x40, 0xed, 0xc8, 0xe1, 0x36, 0x86, 0x4a, 0xdb, 0x58, 0xcd, 0xad, + 0x55, 0xad, 0xea, 0x91, 0xc3, 0x31, 0x14, 0xc8, 0x27, 0x50, 0x57, 0x51, 0xe5, 0x87, 0x87, 0x8c, + 0xb7, 0x17, 0xf0, 0xb0, 0xaf, 0x9d, 0x1d, 0x3b, 0x96, 0x0a, 0x44, 0x39, 0xe4, 0x52, 0xcd, 0x01, + 0x73, 0x3c, 0x1b, 0x1d, 0xb3, 0x4d, 0x54, 0x58, 0x4a, 0x04, 0x9d, 0x96, 0xdc, 0x81, 0xcb, 0xfa, + 0xec, 0x83, 0xa3, 0x11, 0xf7, 0x5d, 0x27, 0x48, 0x5d, 0x62, 0x11, 0x2f, 0x71, 0x49, 0x11, 0xec, + 0xe9, 0xf5, 0xe4, 0x32, 0xe6, 0x2f, 0xf2, 0xb0, 0x98, 0xa1, 0x21, 0x72, 0x1d, 0x1a, 0x63, 0x35, + 0xeb, 0xe0, 0x2a, 0x58, 0xf5, 0x04, 0xeb, 0x78, 0xe4, 0x0d, 0x68, 0x8d, 0x49, 0x52, 0xf9, 0xa4, + 0x99, 0xa0, 0xe8, 0x62, 0x27, 0x3c, 0xb9, 0x90, 0xe1, 0xc9, 0x8f, 0x61, 0x9e, 0xd3, 0x5e, 0x9f, + 0x86, 0x22, 0xb1, 0xa9, 0x4a, 0x31, 0x37, 0x32, 0xd5, 0xb4, 0xaf, 0x68, 0x53, 0x16, 0x6d, 0xf1, + 0x34, 0xc4, 0x13, 0x23, 0x95, 0x52, 0x46, 0x9a, 0x54, 0x63, 0x79, 0x4a, 0x8d, 0xe6, 0xcf, 0x0b, + 0xb0, 0x70, 0x42, 0x30, 0xba, 0xb8, 0x3e, 0x59, 0xa2, 0x86, 0x9a, 0x46, 0x3a, 0xde, 0xc9, 0xdb, + 0xe5, 0x33, 0x6e, 0x37, 0xad, 0xcc, 0xc2, 0x49, 0x65, 0xbe, 0x06, 0xf5, 0x70, 0xd8, 0xb7, 0xd9, + 0xa1, 0x1d, 0xb1, 0x2f, 0x79, 0x9c, 0x46, 0xc2, 0x61, 0xff, 0xf1, 0xa1, 0xc5, 0xbe, 0xe4, 0xe4, + 0x0e, 0x54, 0xba, 0x7e, 0x18, 0xb0, 0x1e, 0x6f, 0x97, 0x50, 0x31, 0xab, 0x99, 0x8a, 0xb9, 0x27, + 0x33, 0xfd, 0x26, 0x12, 0x5a, 0x31, 0x03, 0xf9, 0x18, 0x30, 0xa5, 0x71, 0xe4, 0x2e, 0xcf, 0xc8, + 0x3d, 0x66, 0x91, 0xfc, 0x1e, 0x0d, 0x84, 0x83, 0xfc, 0x95, 0x59, 0xf9, 0x13, 0x96, 0xc4, 0x16, + 0xd5, 0x94, 0x2d, 0x2e, 0x43, 0xb5, 0x17, 0xb1, 0xe1, 0x40, 0xaa, 0xa3, 0xa6, 0xd2, 0x22, 0xce, + 0x3b, 0x9e, 0xf9, 0xbb, 0x02, 0xc0, 0x7f, 0x77, 0x72, 0x27, 0x50, 0xc4, 0x78, 0xa9, 0xe0, 0x8e, + 0x38, 0xce, 0x4c, 0x40, 0xd5, 0xec, 0x04, 0xf4, 0x0c, 0x48, 0xca, 0xe7, 0xe2, 0x78, 0xa9, 0xa1, + 0x61, 0x6e, 0x9e, 0x93, 0xc0, 0x53, 0x21, 0xb3, 0xe0, 0x4e, 0xa1, 0x63, 0x4b, 0x41, 0xca, 0x52, + 0x6f, 0x40, 0x4b, 0x89, 0xb4, 0x9f, 0xd3, 0x88, 0xfb, 0x2c, 0xc4, 0x3c, 0x5f, 0xb3, 0x9a, 0x0a, + 0x7d, 0xaa, 0x40, 0xf3, 0x07, 0x70, 0x79, 0xbc, 0x0b, 0xa6, 0xea, 0x94, 0x0d, 0x3f, 0x81, 0x92, + 0xca, 0x7d, 0xb9, 0x8b, 0x1e, 0x52, 0xf1, 0x99, 0x5f, 0x40, 0x3b, 0xc9, 0x52, 0xd3, 0xc2, 0x3f, + 0x9e, 0x14, 0x3e, 0xfb, 0x2b, 0xa0, 0x65, 0x3f, 0x85, 0x65, 0x1d, 0xf6, 0xd3, 0x92, 0xbf, 0x37, + 0x29, 0x79, 0xd6, 0x5c, 0xa4, 0xe5, 0xfe, 0x21, 0x0f, 0x8b, 0x5b, 0x11, 0x75, 0x04, 0x55, 0x6b, + 0x16, 0xfd, 0xc9, 0x90, 0x72, 0x41, 0x5e, 0x85, 0x5a, 0xa4, 0x86, 0x9d, 0xd8, 0xaf, 0xc7, 0x00, + 0xb9, 0x06, 0x75, 0xed, 0x07, 0xa9, 0x94, 0x0a, 0x0a, 0xda, 0xd5, 0x8e, 0x32, 0xf5, 0xb6, 0xf3, + 0x76, 0x61, 0xb5, 0xb0, 0x56, 0xb3, 0xe6, 0x27, 0x1f, 0x77, 0x2e, 0x4b, 0x29, 0x87, 0x8f, 0x42, + 0x17, 0x1d, 0xb7, 0x6a, 0xa9, 0x09, 0xf9, 0x08, 0x5a, 0x5e, 0xd7, 0x1e, 0xd3, 0x72, 0x74, 0xdd, + 0xfa, 0xc6, 0xf2, 0xba, 0xaa, 0x33, 0xd7, 0xe3, 0x3a, 0x73, 0xfd, 0xa9, 0x2c, 0xbd, 0xac, 0xa6, + 0xd7, 0x1d, 0x9b, 0x06, 0x85, 0x1e, 0xb2, 0xc8, 0x55, 0x09, 0xb4, 0x6a, 0xa9, 0x89, 0x7c, 0x00, + 0xfb, 0x54, 0x38, 0x36, 0x0b, 0x83, 0x11, 0xfa, 0x75, 0xd5, 0xaa, 0x4a, 0xe0, 0x71, 0x18, 0x8c, + 0x64, 0x9d, 0xc2, 0x05, 0x1b, 0xd8, 0x3d, 0x17, 0x5d, 0xba, 0x6a, 0x95, 0xe5, 0xf4, 0xbe, 0x8b, + 0x59, 0xc0, 0xb5, 0x07, 0xce, 0x90, 0xd3, 0x24, 0x0b, 0xb8, 0x7b, 0x72, 0x6a, 0xfe, 0x36, 0x07, + 0x24, 0xa5, 0x53, 0xca, 0x07, 0x2c, 0xe4, 0xf4, 0x1c, 0xe5, 0xbd, 0x07, 0xc5, 0x54, 0x56, 0xb8, + 0x9e, 0x69, 0xaf, 0x58, 0x14, 0xa6, 0x03, 0x24, 0x97, 0x45, 0x68, 0x9f, 0xf7, 0x74, 0x02, 0x90, + 0x43, 0xf2, 0x0e, 0x14, 0x3d, 0x47, 0x38, 0xa8, 0xb8, 0xfa, 0xc6, 0xb5, 0x33, 0xd2, 0x0b, 0x9e, + 0x0e, 0x89, 0xcd, 0x3f, 0xe5, 0xc0, 0xb8, 0x4f, 0xc5, 0x37, 0x6a, 0xed, 0x2b, 0x50, 0xd3, 0x04, + 0xfa, 0xdd, 0xa8, 0x59, 0x55, 0x05, 0x68, 0xee, 0xa1, 0x7b, 0x4c, 0x85, 0xe2, 0x2e, 0x6a, 0x6e, + 0x84, 0x90, 0x9b, 0x40, 0x71, 0xe0, 0x88, 0x23, 0x34, 0x70, 0xcd, 0xc2, 0xb1, 0x8c, 0xe7, 0x2f, + 0x7d, 0x71, 0xc4, 0x86, 0xc2, 0xf6, 0xa8, 0x70, 0xfc, 0x40, 0x1b, 0xb2, 0xa9, 0xd1, 0x6d, 0x04, + 0xcd, 0xef, 0x03, 0x79, 0xe4, 0xf3, 0xf8, 0x3d, 0x9d, 0xed, 0x36, 0x19, 0x65, 0x67, 0x3e, 0xab, + 0xec, 0x34, 0xbf, 0xca, 0xc1, 0xe2, 0x84, 0xf4, 0x6f, 0xcb, 0xba, 0x85, 0xd9, 0xad, 0x7b, 0x00, + 0x8b, 0xdb, 0x34, 0xa0, 0xdf, 0x6c, 0x34, 0x9b, 0x3f, 0x85, 0xa5, 0x49, 0xa9, 0xff, 0x56, 0x4d, + 0x98, 0x7f, 0x2d, 0xc1, 0x92, 0x45, 0xb9, 0x60, 0xd1, 0xb7, 0x96, 0xa4, 0xde, 0x82, 0xd4, 0x43, + 0x64, 0xf3, 0xe1, 0xe1, 0xa1, 0xff, 0x42, 0xbb, 0x72, 0x4a, 0xc6, 0x3e, 0xe2, 0x84, 0x4d, 0x3c, + 0x7d, 0x11, 0x55, 0x92, 0x55, 0x45, 0xf4, 0xe9, 0x69, 0x6a, 0x38, 0x71, 0xbb, 0xd4, 0x53, 0x63, + 0x29, 0x11, 0xea, 0x37, 0x6a, 0xea, 0x20, 0x1a, 0x1f, 0xa7, 0xd0, 0x72, 0x3a, 0x85, 0x4e, 0x05, + 0x5e, 0xe5, 0xd4, 0xc0, 0xab, 0xa6, 0x02, 0xef, 0x64, 0xde, 0xad, 0x5d, 0x24, 0xef, 0xae, 0x40, + 0x92, 0x50, 0xf1, 0x7d, 0x4e, 0x27, 0x58, 0x13, 0x1a, 0x91, 0xba, 0x27, 0xfe, 0x80, 0xc0, 0x17, + 0xba, 0x6a, 0x4d, 0x60, 0x92, 0x66, 0xc8, 0xe9, 0xdd, 0xa1, 0x60, 0x8a, 0xa6, 0xa1, 0x68, 0xd2, + 0x18, 0x79, 0x1b, 0x16, 0xbd, 0x88, 0x0d, 0x76, 0x5e, 0xf8, 0x5c, 0x8c, 0xf7, 0x6e, 0x37, 0x91, + 0x34, 0x6b, 0x89, 0xdc, 0x80, 0x56, 0x02, 0x2b, 0xb9, 0x2d, 0x24, 0x9e, 0x42, 0xc9, 0x06, 0x2c, + 0xf1, 0x63, 0x7f, 0xa0, 0xde, 0xc3, 0x94, 0xe8, 0x79, 0xa4, 0xce, 0x5c, 0x5b, 0xd9, 0x86, 0xe5, + 0x6c, 0x43, 0x5d, 0xa8, 0x6b, 0xf0, 0x75, 0x3e, 0x71, 0xf1, 0xa4, 0x08, 0x90, 0x35, 0xe1, 0x89, + 0xc2, 0xf2, 0x41, 0x46, 0x61, 0x79, 0xf3, 0x2c, 0x9f, 0xfa, 0x0f, 0xac, 0x2c, 0x3b, 0x80, 0xbf, + 0x2a, 0x74, 0x51, 0x88, 0x8e, 0x79, 0x91, 0x8a, 0x08, 0x24, 0xb3, 0x9a, 0x9b, 0x5f, 0x97, 0xe1, + 0x15, 0x7d, 0xd1, 0xb1, 0x15, 0xbe, 0xd3, 0x8a, 0xfb, 0x0c, 0xea, 0x32, 0xfa, 0x62, 0xe5, 0x94, + 0x51, 0x39, 0x17, 0xa8, 0x45, 0x41, 0x72, 0xab, 0x39, 0x79, 0x17, 0x96, 0x85, 0x13, 0xf5, 0xa8, + 0xb0, 0xa7, 0x5f, 0x3c, 0x95, 0x0c, 0x96, 0xd4, 0xea, 0xd6, 0x64, 0xbb, 0xc5, 0x81, 0x4b, 0xe3, + 0x1f, 0x82, 0x3a, 0x3a, 0x6d, 0xe1, 0xf0, 0x63, 0xde, 0xae, 0x9e, 0x51, 0x19, 0x67, 0xb9, 0xaf, + 0xf5, 0x4a, 0x22, 0x29, 0xa5, 0x55, 0x6c, 0x1c, 0x69, 0xc1, 0x9e, 0x8d, 0xb5, 0xbc, 0xaa, 0xab, + 0xe2, 0x5c, 0xe0, 0xed, 0xcb, 0x9a, 0xfe, 0x06, 0xcc, 0x0b, 0x96, 0x1c, 0x20, 0x55, 0xf2, 0x37, + 0x05, 0xd3, 0xd2, 0x90, 0x2e, 0xed, 0x6a, 0xf5, 0x29, 0x57, 0x7b, 0x1d, 0x5a, 0x5a, 0x03, 0x71, + 0x0f, 0xaa, 0xa1, 0xac, 0xa5, 0xd0, 0x6d, 0xd5, 0x89, 0x4a, 0x67, 0xad, 0xe6, 0x39, 0x59, 0xab, + 0x35, 0x43, 0xd6, 0x9a, 0x9f, 0x3d, 0x6b, 0x19, 0x17, 0xc9, 0x5a, 0x0b, 0x17, 0xca, 0x5a, 0xe4, + 0xf4, 0xac, 0x65, 0xfe, 0xba, 0x00, 0x0b, 0x13, 0x8f, 0xce, 0x77, 0x3a, 0x66, 0x3c, 0x68, 0x4f, + 0x3c, 0xb8, 0x69, 0x97, 0x2d, 0x9f, 0xd1, 0x04, 0xce, 0xcc, 0x1c, 0xd6, 0x72, 0xfa, 0x81, 0x3d, + 0xcb, 0x69, 0x2b, 0xb3, 0x39, 0x6d, 0xf5, 0x3c, 0xa7, 0xad, 0x4d, 0x3a, 0xad, 0xf9, 0xfb, 0x5c, + 0x92, 0xd4, 0xbe, 0x95, 0x82, 0x8b, 0xdc, 0x99, 0xf8, 0x61, 0x71, 0xe3, 0xfc, 0x92, 0x05, 0xf5, + 0xa6, 0x2a, 0xd0, 0x7b, 0xb0, 0x7c, 0x9f, 0x8a, 0xf8, 0xaa, 0xd2, 0x01, 0x66, 0xab, 0xd6, 0x94, + 0xef, 0xe5, 0x63, 0xdf, 0x33, 0x7f, 0x04, 0xf5, 0x54, 0xa7, 0x86, 0xb4, 0xa1, 0x82, 0x1f, 0x08, + 0x3a, 0xdb, 0xba, 0xbd, 0x15, 0x4f, 0xc9, 0x7b, 0xe3, 0xa6, 0x53, 0x1e, 0x6d, 0x7d, 0x25, 0xbb, + 0x54, 0x9e, 0xec, 0x37, 0x99, 0xbf, 0xc9, 0x41, 0x59, 0xcb, 0xbe, 0x06, 0x75, 0x1a, 0x8a, 0xc8, + 0xa7, 0xaa, 0x43, 0xac, 0xe4, 0x83, 0x86, 0x76, 0x87, 0x7d, 0xf9, 0x6b, 0x24, 0xe9, 0x77, 0xd8, + 0x87, 0x11, 0xeb, 0xe3, 0x39, 0x8b, 0x56, 0x33, 0x41, 0xef, 0x45, 0xac, 0x4f, 0xae, 0x43, 0x63, + 0x4c, 0x26, 0x18, 0x6a, 0xb4, 0x68, 0xd5, 0x13, 0xec, 0x80, 0x49, 0x27, 0x0e, 0x58, 0xcf, 0xc6, + 0xb2, 0x4b, 0x95, 0x8f, 0x95, 0x80, 0xf5, 0xf6, 0x64, 0xe5, 0xa5, 0x97, 0x52, 0x0d, 0x41, 0xb9, + 0x24, 0x9d, 0xc5, 0x7c, 0x1f, 0x1a, 0x0f, 0xe9, 0x08, 0x0b, 0xae, 0x3d, 0xc7, 0x8f, 0x66, 0xad, + 0x2c, 0xcc, 0x7f, 0xe4, 0x00, 0x90, 0x0b, 0x35, 0x49, 0xae, 0x42, 0xad, 0xcb, 0x58, 0x60, 0xa3, + 0x6d, 0x25, 0x73, 0xf5, 0xc1, 0x9c, 0x55, 0x95, 0xd0, 0xb6, 0x23, 0x1c, 0x72, 0x05, 0xaa, 0x7e, + 0x28, 0xd4, 0xaa, 0x14, 0x53, 0x7a, 0x30, 0x67, 0x55, 0xfc, 0x50, 0xe0, 0xe2, 0x55, 0xa8, 0x05, + 0x2c, 0xec, 0xa9, 0x55, 0x6c, 0x0d, 0x4a, 0x5e, 0x09, 0xe1, 0xf2, 0x35, 0x80, 0xc3, 0x80, 0x39, + 0x9a, 0x5b, 0xde, 0x2c, 0xff, 0x60, 0xce, 0xaa, 0x21, 0x86, 0x04, 0xd7, 0xa1, 0xee, 0xb1, 0x61, + 0x37, 0xa0, 0x8a, 0x42, 0x5e, 0x30, 0xf7, 0x60, 0xce, 0x02, 0x05, 0xc6, 0x24, 0x5c, 0x44, 0x7e, + 0xbc, 0x09, 0xb6, 0x3e, 0x25, 0x89, 0x02, 0xe3, 0x6d, 0xba, 0x23, 0x41, 0xb9, 0xa2, 0x90, 0xf1, + 0xd7, 0x90, 0xdb, 0x20, 0x26, 0x09, 0x36, 0xcb, 0xca, 0x73, 0xcd, 0xbf, 0x17, 0xb5, 0xfb, 0xa8, + 0x6f, 0x01, 0x67, 0xb8, 0x4f, 0xdc, 0xe6, 0xca, 0xa7, 0xda, 0x5c, 0xaf, 0x43, 0xcb, 0xe7, 0xf6, + 0x20, 0xf2, 0xfb, 0x4e, 0x34, 0xb2, 0xa5, 0xaa, 0x0b, 0x2a, 0xa3, 0xfb, 0x7c, 0x4f, 0x81, 0x0f, + 0xe9, 0x88, 0xac, 0x42, 0xdd, 0xa3, 0xdc, 0x8d, 0xfc, 0x01, 0xa6, 0x5b, 0x65, 0xce, 0x34, 0x44, + 0xee, 0x40, 0x4d, 0x9e, 0x46, 0x7d, 0xa8, 0x2a, 0x61, 0x54, 0x5e, 0xcd, 0x74, 0x4e, 0x79, 0xf6, + 0x83, 0xd1, 0x80, 0x5a, 0x55, 0x4f, 0x8f, 0xc8, 0x26, 0xd4, 0x25, 0x9b, 0xad, 0xbf, 0x65, 0xa9, + 0x34, 0x96, 0x1d, 0xd3, 0x69, 0xdf, 0xb0, 0x40, 0x72, 0xa9, 0x8f, 0x57, 0x64, 0x1b, 0x1a, 0xaa, + 0xa7, 0xaf, 0x85, 0x54, 0x66, 0x15, 0xa2, 0x3e, 0x05, 0x68, 0x29, 0xcb, 0x50, 0x76, 0xe4, 0x33, + 0xb6, 0x1d, 0xf7, 0x45, 0xd4, 0x8c, 0xbc, 0x07, 0x25, 0xd5, 0xa4, 0xae, 0xe1, 0xcd, 0xae, 0x9d, + 0xde, 0x6d, 0x55, 0x69, 0x40, 0x51, 0x93, 0x4f, 0xa1, 0x41, 0x03, 0x8a, 0xbd, 0x6a, 0xd4, 0x0b, + 0xcc, 0xa2, 0x97, 0xba, 0x66, 0x41, 0xd5, 0x6c, 0x43, 0xd3, 0xa3, 0x87, 0xce, 0x30, 0x10, 0xb6, + 0x72, 0xfa, 0xfa, 0x19, 0x0d, 0x90, 0xb1, 0xff, 0x5b, 0x0d, 0xcd, 0x85, 0x10, 0x7e, 0x46, 0xe4, + 0xb6, 0x37, 0x0a, 0x9d, 0xbe, 0xef, 0xea, 0x1f, 0x1a, 0x35, 0x9f, 0x6f, 0x2b, 0x80, 0xac, 0x81, + 0x21, 0x7d, 0x20, 0x29, 0x84, 0xa4, 0x17, 0xa8, 0xda, 0xa0, 0xe5, 0xf3, 0xa4, 0xc8, 0x79, 0x48, + 0x47, 0xe6, 0x9f, 0x73, 0x60, 0x4c, 0x7f, 0x7c, 0x4a, 0xdc, 0x2a, 0x97, 0x72, 0xab, 0x29, 0x87, + 0xc9, 0x9f, 0x74, 0x98, 0xb1, 0xaa, 0x0b, 0x13, 0xaa, 0xfe, 0x00, 0xca, 0xe8, 0xaf, 0xf1, 0x07, + 0x87, 0x33, 0x3a, 0xdb, 0xf1, 0xc7, 0x2f, 0x45, 0x4f, 0xde, 0x86, 0x25, 0x1a, 0x3a, 0x18, 0x77, + 0xea, 0x62, 0x36, 0x2e, 0xa0, 0x37, 0x56, 0x2d, 0xa2, 0xd6, 0xf4, 0x9d, 0x91, 0xdf, 0x6c, 0x41, + 0x63, 0xeb, 0x88, 0xba, 0xc7, 0x3a, 0x6d, 0x9b, 0xcf, 0xa0, 0xa9, 0xe7, 0xfa, 0x11, 0x8a, 0x9f, + 0x99, 0xdc, 0xbf, 0xf4, 0xcc, 0xe4, 0x93, 0x67, 0xe6, 0xd6, 0xcf, 0xa0, 0x91, 0xa6, 0x23, 0x75, + 0xa8, 0xec, 0x0f, 0x5d, 0x97, 0x72, 0x6e, 0xcc, 0x91, 0x79, 0xa8, 0xef, 0x32, 0x61, 0xef, 0x0f, + 0x07, 0x03, 0x16, 0x09, 0x23, 0x47, 0x16, 0xa0, 0xb9, 0xcb, 0xec, 0x3d, 0x1a, 0xf5, 0x7d, 0xce, + 0x7d, 0x16, 0x1a, 0x79, 0x52, 0x85, 0xe2, 0x3d, 0xc7, 0x0f, 0x8c, 0x02, 0x59, 0x82, 0x79, 0xf4, + 0x56, 0x2a, 0x68, 0x64, 0xef, 0xc8, 0xaa, 0xc2, 0xf8, 0x65, 0x81, 0x5c, 0x85, 0xb6, 0xbe, 0x85, + 0xfd, 0xb8, 0xfb, 0x63, 0xea, 0x0a, 0x5b, 0x8a, 0xbc, 0xc7, 0x86, 0xa1, 0x67, 0xfc, 0xaa, 0x70, + 0xeb, 0x05, 0x2c, 0x66, 0x74, 0xdf, 0x09, 0x81, 0xd6, 0xe6, 0xdd, 0xad, 0x87, 0x4f, 0xf6, 0xec, + 0xce, 0x6e, 0xe7, 0xa0, 0x73, 0xf7, 0x91, 0x31, 0x47, 0x96, 0xc0, 0xd0, 0xd8, 0xce, 0xb3, 0x9d, + 0xad, 0x27, 0x07, 0x9d, 0xdd, 0xfb, 0x46, 0x2e, 0x45, 0xb9, 0xff, 0x64, 0x6b, 0x6b, 0x67, 0x7f, + 0xdf, 0xc8, 0xcb, 0x73, 0x6b, 0xec, 0xde, 0xdd, 0xce, 0x23, 0xa3, 0x90, 0x22, 0x3a, 0xe8, 0x7c, + 0xbe, 0xf3, 0xf8, 0xc9, 0x81, 0x51, 0xbc, 0xf5, 0x34, 0xf9, 0xb5, 0x37, 0xb9, 0x75, 0x1d, 0x2a, + 0xe3, 0x3d, 0x9b, 0x50, 0x4b, 0x6f, 0x26, 0xb5, 0x93, 0xec, 0x22, 0x6f, 0xae, 0xc4, 0xd7, 0xa1, + 0x32, 0x96, 0xfb, 0x4c, 0x7a, 0xe2, 0xd4, 0xb7, 0x48, 0x80, 0xf2, 0xbe, 0x88, 0x58, 0xd8, 0x33, + 0xe6, 0x50, 0x06, 0x55, 0xda, 0x43, 0x81, 0x9b, 0x52, 0x15, 0xd4, 0x33, 0xf2, 0xa4, 0x05, 0xb0, + 0xf3, 0x9c, 0x86, 0x62, 0xe8, 0x04, 0xc1, 0xc8, 0x28, 0xc8, 0xf9, 0xd6, 0x90, 0x0b, 0xd6, 0xf7, + 0x5f, 0x52, 0xcf, 0x28, 0xde, 0xfa, 0x2a, 0x07, 0xd5, 0x38, 0x1a, 0xe5, 0xee, 0xbb, 0x2c, 0xa4, + 0xc6, 0x9c, 0x1c, 0x6d, 0x32, 0x16, 0x18, 0x39, 0x39, 0xea, 0x84, 0xe2, 0x03, 0x23, 0x4f, 0x6a, + 0x50, 0xea, 0x84, 0xe2, 0xff, 0xde, 0x37, 0x0a, 0x7a, 0xf8, 0xce, 0x86, 0x51, 0xd4, 0xc3, 0xf7, + 0xdf, 0x35, 0x4a, 0x72, 0x78, 0x4f, 0x3e, 0x0c, 0x06, 0xc8, 0xc3, 0x6d, 0xe3, 0x0b, 0x60, 0xd4, + 0xf5, 0x41, 0xfd, 0xb0, 0x67, 0x2c, 0xc9, 0xb3, 0x3d, 0x75, 0xa2, 0xad, 0x23, 0x27, 0x32, 0x5e, + 0x91, 0xf4, 0x77, 0xa3, 0xc8, 0x19, 0x19, 0xcb, 0x72, 0x97, 0xcf, 0x38, 0x0b, 0x8d, 0x4b, 0xc4, + 0x80, 0xc6, 0xa6, 0x1f, 0x3a, 0xd1, 0xe8, 0x29, 0x75, 0x05, 0x8b, 0x0c, 0x4f, 0x6a, 0x1e, 0xc5, + 0x6a, 0x80, 0xde, 0x7a, 0x0a, 0x30, 0x4e, 0x3f, 0x92, 0x01, 0x67, 0xaa, 0x16, 0xf6, 0x8c, 0x39, + 0xe9, 0x51, 0x63, 0x44, 0xee, 0x9b, 0x4b, 0xa0, 0xed, 0x88, 0x0d, 0x06, 0x12, 0xca, 0x27, 0x7c, + 0x08, 0x51, 0xcf, 0x28, 0x6c, 0xfc, 0xb1, 0x04, 0x8b, 0x9f, 0xa3, 0xd3, 0x2b, 0xf7, 0xd9, 0xa7, + 0xd1, 0x73, 0xdf, 0xa5, 0xc4, 0x85, 0x46, 0xba, 0x95, 0x4e, 0xb2, 0x7f, 0xd2, 0x66, 0x74, 0xdb, + 0x57, 0xde, 0x3c, 0xaf, 0xbb, 0xa7, 0xc3, 0xc4, 0x9c, 0x23, 0x3f, 0x84, 0x5a, 0xd2, 0xbe, 0x25, + 0xd9, 0x1f, 0xa8, 0xa7, 0xdb, 0xbb, 0x17, 0x11, 0xdf, 0x85, 0x7a, 0xaa, 0xe7, 0x49, 0xb2, 0x39, + 0x4f, 0xf6, 0x5c, 0x57, 0xd6, 0xce, 0x27, 0x4c, 0xf6, 0xa0, 0xd0, 0x48, 0xb7, 0x13, 0x4f, 0xd1, + 0x53, 0x46, 0x1f, 0x73, 0xe5, 0xe6, 0x0c, 0x94, 0xc9, 0x36, 0x47, 0xd0, 0x9c, 0x28, 0x52, 0xc9, + 0xcd, 0x99, 0x7b, 0x6f, 0x2b, 0xb7, 0x66, 0x21, 0x4d, 0x76, 0xea, 0x01, 0x8c, 0x6b, 0x5e, 0xf2, + 0xd6, 0x69, 0x46, 0xc9, 0x28, 0x8a, 0x2f, 0xb8, 0xd1, 0x1e, 0x94, 0x30, 0x17, 0x93, 0xec, 0xac, + 0x9b, 0xce, 0xdb, 0x2b, 0xe6, 0x59, 0x24, 0xb1, 0xc4, 0xcd, 0x0f, 0xbf, 0xf8, 0xff, 0x9e, 0x2f, + 0x8e, 0x86, 0xdd, 0x75, 0x97, 0xf5, 0x6f, 0xbf, 0xf4, 0x83, 0xc0, 0x7f, 0x29, 0xa8, 0x7b, 0x74, + 0x5b, 0x31, 0xff, 0xaf, 0x62, 0xbb, 0xed, 0xb2, 0x48, 0xff, 0xb5, 0xe7, 0xb6, 0x42, 0x06, 0xdd, + 0x6e, 0x19, 0xe7, 0xef, 0xfc, 0x33, 0x00, 0x00, 0xff, 0xff, 0xb2, 0x79, 0xb0, 0xd9, 0x1d, 0x24, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/docs/docs.go b/docs/docs.go index cd2eb4f..b6172f5 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -41,8 +41,7 @@ const docTemplate = `{ "type": "string", "description": "request_id", "name": "request_id", - "in": "header", - "required": true + "in": "header" }, { "description": "CreateBackupRequest JSON", @@ -79,8 +78,7 @@ const docTemplate = `{ "type": "string", "description": "request_id", "name": "request_id", - "in": "header", - "required": true + "in": "header" }, { "type": "string", @@ -115,8 +113,7 @@ const docTemplate = `{ "type": "string", "description": "request_id", "name": "request_id", - "in": "header", - "required": true + "in": "header" }, { "type": "string", @@ -158,8 +155,7 @@ const docTemplate = `{ "type": "string", "description": "request_id", "name": "request_id", - "in": "header", - "required": true + "in": "header" }, { "type": "string", @@ -194,8 +190,7 @@ const docTemplate = `{ "type": "string", "description": "request_id", "name": "request_id", - "in": "header", - "required": true + "in": "header" }, { "type": "string", @@ -502,6 +497,10 @@ const docTemplate = `{ "description": "force backup skip flush, Should make sure data has been stored into disk when using it", "type": "boolean" }, + "gc_pause": { + "description": "gc pause seconds, set it larger than the time cost of backup", + "type": "integer" + }, "meta_only": { "description": "only backup meta, including collection schema and index info", "type": "boolean" @@ -509,6 +508,10 @@ const docTemplate = `{ "requestId": { "description": "uuid of request, will generate one if not set", "type": "string" + }, + "stop_gc": { + "description": "if true, stop GC to avoid the data compacted and GCed during backup, use it when the data to backup is very large.", + "type": "boolean" } } }, diff --git a/docs/swagger.json b/docs/swagger.json index c11e85c..cc0ad9e 100644 --- a/docs/swagger.json +++ b/docs/swagger.json @@ -33,8 +33,7 @@ "type": "string", "description": "request_id", "name": "request_id", - "in": "header", - "required": true + "in": "header" }, { "description": "CreateBackupRequest JSON", @@ -71,8 +70,7 @@ "type": "string", "description": "request_id", "name": "request_id", - "in": "header", - "required": true + "in": "header" }, { "type": "string", @@ -107,8 +105,7 @@ "type": "string", "description": "request_id", "name": "request_id", - "in": "header", - "required": true + "in": "header" }, { "type": "string", @@ -150,8 +147,7 @@ "type": "string", "description": "request_id", "name": "request_id", - "in": "header", - "required": true + "in": "header" }, { "type": "string", @@ -186,8 +182,7 @@ "type": "string", "description": "request_id", "name": "request_id", - "in": "header", - "required": true + "in": "header" }, { "type": "string", @@ -494,6 +489,10 @@ "description": "force backup skip flush, Should make sure data has been stored into disk when using it", "type": "boolean" }, + "gc_pause": { + "description": "gc pause seconds, set it larger than the time cost of backup", + "type": "integer" + }, "meta_only": { "description": "only backup meta, including collection schema and index info", "type": "boolean" @@ -501,6 +500,10 @@ "requestId": { "description": "uuid of request, will generate one if not set", "type": "string" + }, + "stop_gc": { + "description": "if true, stop GC to avoid the data compacted and GCed during backup, use it when the data to backup is very large.", + "type": "boolean" } } }, diff --git a/docs/swagger.yaml b/docs/swagger.yaml index fbab539..8428707 100644 --- a/docs/swagger.yaml +++ b/docs/swagger.yaml @@ -170,12 +170,19 @@ definitions: description: force backup skip flush, Should make sure data has been stored into disk when using it type: boolean + gc_pause: + description: gc pause seconds, set it larger than the time cost of backup + type: integer meta_only: description: only backup meta, including collection schema and index info type: boolean requestId: description: uuid of request, will generate one if not set type: string + stop_gc: + description: if true, stop GC to avoid the data compacted and GCed during + backup, use it when the data to backup is very large. + type: boolean type: object backuppb.DataType: enum: @@ -582,7 +589,6 @@ paths: - description: request_id in: header name: request_id - required: true type: string - description: CreateBackupRequest JSON in: body @@ -607,7 +613,6 @@ paths: - description: request_id in: header name: request_id - required: true type: string - description: backup_name in: query @@ -631,7 +636,6 @@ paths: - description: request_id in: header name: request_id - required: true type: string - description: backup_name in: query @@ -660,7 +664,6 @@ paths: - description: request_id in: header name: request_id - required: true type: string - description: id in: query @@ -684,7 +687,6 @@ paths: - description: request_id in: header name: request_id - required: true type: string - description: collection_name in: query