diff --git a/.run/Server.run.xml b/.run/Server.run.xml deleted file mode 100644 index 1f6327d2bdc..00000000000 --- a/.run/Server.run.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/internal/common/eventutil/eventutil.go b/internal/common/eventutil/eventutil.go index eb1a656e1a4..27fc7ef6f55 100644 --- a/internal/common/eventutil/eventutil.go +++ b/internal/common/eventutil/eventutil.go @@ -161,9 +161,9 @@ func ApiJobFromLogSubmitJob(ownerId string, groups []string, queueName string, j } var priceInfo *api.ExperimentalPriceInfo - if e.PriceInfo != nil { + if e.ExperimentalPriceInfo != nil { priceInfo = &api.ExperimentalPriceInfo{ - BidPrice: e.PriceInfo.BidPrice, + BidPrice: e.ExperimentalPriceInfo.BidPrice, } } @@ -177,10 +177,10 @@ func ApiJobFromLogSubmitJob(ownerId string, groups []string, queueName string, j Labels: e.ObjectMeta.Labels, Annotations: e.ObjectMeta.Annotations, - K8SIngress: k8sIngresses, - K8SService: k8sServices, - PriceInfo: priceInfo, - Priority: float64(e.Priority), + K8SIngress: k8sIngresses, + K8SService: k8sServices, + ExperimentalPriceInfo: priceInfo, + Priority: float64(e.Priority), PodSpec: podSpec, PodSpecs: podSpecs, diff --git a/internal/scheduler/jobdb/comparison.go b/internal/scheduler/jobdb/comparison.go index 955eb8eddc4..31b2b5dc815 100644 --- a/internal/scheduler/jobdb/comparison.go +++ b/internal/scheduler/jobdb/comparison.go @@ -117,8 +117,8 @@ func MarketSchedulingOrderCompare(job, other *Job) int { return 1 } - // Next we sort on price - if job.price < other.price { + // Next we sort on bidPrice + if job.bidPrice < other.bidPrice { return -1 } else if job.priority > other.priority { return 1 diff --git a/internal/scheduler/jobdb/job.go b/internal/scheduler/jobdb/job.go index 6e870620914..36693a599e0 100644 --- a/internal/scheduler/jobdb/job.go +++ b/internal/scheduler/jobdb/job.go @@ -32,8 +32,8 @@ type Job struct { jobSet string // Per-queue priority of this job. priority uint32 - // Price the user us willing to pay to have this job scheduled - price float64 + // BidPrice the user is willing to pay to have this job scheduled + bidPrice float64 // Requested per queue priority of this job. // This is used when syncing the postgres database with the scheduler-internal database. requestedPriority uint32 @@ -302,7 +302,7 @@ func (job *Job) Equal(other *Job) bool { if job.priority != other.priority { return false } - if job.price != other.price { + if job.bidPrice != other.bidPrice { return false } if job.requestedPriority != other.requestedPriority { @@ -383,9 +383,9 @@ func (job *Job) Priority() uint32 { return job.priority } -// Price returns the price of the job. -func (job *Job) Price() float64 { - return job.price +// BidPrice returns the bidPrice of the job. +func (job *Job) BidPrice() float64 { + return job.bidPrice } // PriorityClass returns the priority class of the job. @@ -423,10 +423,10 @@ func (job *Job) WithPriority(priority uint32) *Job { return j } -// WithPrice returns a copy of the job with the price updated. +// WithPrice returns a copy of the job with the bidPrice updated. func (job *Job) WithPrice(price float64) *Job { j := copyJob(*job) - j.price = price + j.bidPrice = price return j } diff --git a/internal/scheduler/jobdb/jobdb.go b/internal/scheduler/jobdb/jobdb.go index fc3bb6ebbf8..fe19a1b6294 100644 --- a/internal/scheduler/jobdb/jobdb.go +++ b/internal/scheduler/jobdb/jobdb.go @@ -49,6 +49,7 @@ func (jq jobQueue) delete(j *Job) jobQueue { marketQueue: jq.marketQueue.Delete(j), } } + func (jq jobQueue) has(j *Job) bool { return jq.fairShareQueue.Has(j) } @@ -199,7 +200,7 @@ func (jobDb *JobDb) NewJob( queue: jobDb.stringInterner.Intern(queue), jobSet: jobDb.stringInterner.Intern(jobSet), priority: priority, - price: price, + bidPrice: price, queued: queued, queuedVersion: queuedVersion, requestedPriority: priority, diff --git a/internal/scheduler/scheduler_test.go b/internal/scheduler/scheduler_test.go index 4c2932db079..f369680d24c 100644 --- a/internal/scheduler/scheduler_test.go +++ b/internal/scheduler/scheduler_test.go @@ -1790,7 +1790,7 @@ func jobDbJobFromDbJob(resourceListFactory *internaltypes.ResourceListFactory, j job.JobSet, job.Queue, uint32(job.Priority), - job.Price, + job.BidPrice, &schedulingInfo, job.Queued, job.QueuedVersion, diff --git a/internal/scheduler/scheduling/marketPriorityQueue.go b/internal/scheduler/scheduling/marketPriorityQueue.go index d1856c74c98..759c6cc799a 100644 --- a/internal/scheduler/scheduling/marketPriorityQueue.go +++ b/internal/scheduler/scheduling/marketPriorityQueue.go @@ -2,10 +2,11 @@ package scheduling import ( "container/heap" + "time" + "github.com/armadaproject/armada/internal/scheduler/internaltypes" schedulercontext "github.com/armadaproject/armada/internal/scheduler/scheduling/context" "github.com/armadaproject/armada/internal/scheduler/scheduling/fairness" - "time" ) type MarketIteratorPQ struct { @@ -54,7 +55,7 @@ func (it *MarketBasedCandidateGangIterator) newPQItem(queue string, queueIt *Que } func (it *MarketBasedCandidateGangIterator) GetAllocationForQueue(queue string) (internaltypes.ResourceList, bool) { - //TODO implement me + // TODO implement me panic("implement me") } @@ -130,7 +131,7 @@ func (it *MarketBasedCandidateGangIterator) updatePQItem(item *MarketIteratorPQI job := gctx.JobSchedulingContexts[0].Job item.gctx = gctx - item.price = job.Price() + item.price = job.BidPrice() if !job.Queued() && job.LatestRun() != nil { item.runtime = time.Now().UnixNano() - job.LatestRun().Created() } else { @@ -167,7 +168,6 @@ type MarketIteratorPQItem struct { func (pq *MarketIteratorPQ) Len() int { return len(pq.items) } func (pq *MarketIteratorPQ) Less(i, j int) bool { - // First by price if pq.items[i].price != pq.items[j].price { return pq.items[i].price < pq.items[j].price diff --git a/internal/scheduleringester/instructions.go b/internal/scheduleringester/instructions.go index c4053c863c2..2c971a95df8 100644 --- a/internal/scheduleringester/instructions.go +++ b/internal/scheduleringester/instructions.go @@ -165,8 +165,8 @@ func (c *JobSetEventsInstructionConverter) handleSubmitJob(job *armadaevents.Sub } bidPrice := 0.0 - if job.PriceInfo != nil { - bidPrice = job.PriceInfo.BidPrice + if job.ExperimentalPriceInfo != nil { + bidPrice = job.ExperimentalPriceInfo.BidPrice } return []DbOperation{InsertJobs{jobId: &schedulerdb.Job{ diff --git a/internal/server/submit/conversion/conversions.go b/internal/server/submit/conversion/conversions.go index 3844978cd98..8368fb3c65c 100644 --- a/internal/server/submit/conversion/conversions.go +++ b/internal/server/submit/conversion/conversions.go @@ -32,7 +32,6 @@ func SubmitJobFromApiRequest( JobId: jobId, DeduplicationId: jobReq.GetClientId(), Priority: priority, - Price: jobReq.GetPrice(), ObjectMeta: &armadaevents.ObjectMeta{ Namespace: jobReq.GetNamespace(), Annotations: jobReq.GetAnnotations(), @@ -48,6 +47,13 @@ func SubmitJobFromApiRequest( Objects: ingressesAndServices, Scheduler: jobReq.Scheduler, } + + if jobReq.ExperimentalPriceInfo != nil { + msg.ExperimentalPriceInfo = &armadaevents.ExperimentalPriceInfo{ + BidPrice: jobReq.ExperimentalPriceInfo.BidPrice, + } + } + postProcess(msg, config) return msg } diff --git a/internal/server/submit/validation/submit_request.go b/internal/server/submit/validation/submit_request.go index 5251bd5577f..b9cb762814b 100644 --- a/internal/server/submit/validation/submit_request.go +++ b/internal/server/submit/validation/submit_request.go @@ -227,10 +227,13 @@ func validatePriorityClasses(j *api.JobSubmitRequestItem, config configuration.S return nil } -// Ensures that if a request specifies a Price, that the price is noon-negative +// Ensures that if a request specifies a BidPrice, that the price is non-negative func validatePrice(j *api.JobSubmitRequestItem, _ configuration.SubmissionConfig) error { - if j.Price < 0 { - return fmt.Errorf("price %.2f is invalid Prices must be greater than zero", j.Price) + if j.ExperimentalPriceInfo == nil { + return nil + } + if j.ExperimentalPriceInfo.BidPrice < 0 { + return fmt.Errorf("price %.2f is invalid Prices must be greater than zero", j.ExperimentalPriceInfo.BidPrice) } return nil } diff --git a/internal/server/submit/validation/submit_request_test.go b/internal/server/submit/validation/submit_request_test.go index d9edf400727..8840e1cc275 100644 --- a/internal/server/submit/validation/submit_request_test.go +++ b/internal/server/submit/validation/submit_request_test.go @@ -841,16 +841,30 @@ func TestValidatePrice(t *testing.T) { item *api.JobSubmitRequestItem expectSuccess bool }{ - "zero price is ok": { + "nil ExperimentalPriceInfo is ok": { item: &api.JobSubmitRequestItem{}, expectSuccess: true, }, + "zero price is ok": { + item: &api.JobSubmitRequestItem{ + ExperimentalPriceInfo: &api.ExperimentalPriceInfo{}, + }, + expectSuccess: true, + }, "positive price is ok": { - item: &api.JobSubmitRequestItem{Price: 1.0}, + item: &api.JobSubmitRequestItem{ + ExperimentalPriceInfo: &api.ExperimentalPriceInfo{ + BidPrice: 1.0, + }, + }, expectSuccess: true, }, "negative price is rejected": { - item: &api.JobSubmitRequestItem{Price: -1.0}, + item: &api.JobSubmitRequestItem{ + ExperimentalPriceInfo: &api.ExperimentalPriceInfo{ + BidPrice: -1.0, + }, + }, expectSuccess: false, }, } diff --git a/pkg/api/api.swagger.go b/pkg/api/api.swagger.go index 9c0e5708a0c..43ad4e68d03 100644 --- a/pkg/api/api.swagger.go +++ b/pkg/api/api.swagger.go @@ -1741,6 +1741,9 @@ func SwaggerJsonTemplate() string { " \"clientId\": {\n" + " \"type\": \"string\"\n" + " },\n" + + " \"experimentalPriceInfo\": {\n" + + " \"$ref\": \"#/definitions/apiExperimentalPriceInfo\"\n" + + " },\n" + " \"ingress\": {\n" + " \"type\": \"array\",\n" + " \"items\": {\n" + @@ -1765,10 +1768,6 @@ func SwaggerJsonTemplate() string { " \"$ref\": \"#/definitions/v1PodSpec\"\n" + " }\n" + " },\n" + - " \"price\": {\n" + - " \"type\": \"number\",\n" + - " \"format\": \"double\"\n" + - " },\n" + " \"priority\": {\n" + " \"type\": \"number\",\n" + " \"format\": \"double\"\n" + diff --git a/pkg/api/api.swagger.json b/pkg/api/api.swagger.json index 13cd24ff52b..a4fc33ff558 100644 --- a/pkg/api/api.swagger.json +++ b/pkg/api/api.swagger.json @@ -1730,6 +1730,9 @@ "clientId": { "type": "string" }, + "experimentalPriceInfo": { + "$ref": "#/definitions/apiExperimentalPriceInfo" + }, "ingress": { "type": "array", "items": { @@ -1754,10 +1757,6 @@ "$ref": "#/definitions/v1PodSpec" } }, - "price": { - "type": "number", - "format": "double" - }, "priority": { "type": "number", "format": "double" diff --git a/pkg/api/submit.pb.go b/pkg/api/submit.pb.go index 5b03c9ccb81..bb1e7e82503 100644 --- a/pkg/api/submit.pb.go +++ b/pkg/api/submit.pb.go @@ -146,8 +146,8 @@ type JobSubmitRequestItem struct { Services []*ServiceConfig `protobuf:"bytes,10,rep,name=services,proto3" json:"services,omitempty"` // Indicates which scheduler should manage this job. // If empty, the default scheduler is used. - Scheduler string `protobuf:"bytes,11,opt,name=scheduler,proto3" json:"scheduler,omitempty"` - Price float64 `protobuf:"fixed64,13,opt,name=price,proto3" json:"price,omitempty"` + Scheduler string `protobuf:"bytes,11,opt,name=scheduler,proto3" json:"scheduler,omitempty"` + ExperimentalPriceInfo *ExperimentalPriceInfo `protobuf:"bytes,13,opt,name=experimentalPriceInfo,proto3" json:"experimentalPriceInfo,omitempty"` } func (m *JobSubmitRequestItem) Reset() { *m = JobSubmitRequestItem{} } @@ -262,11 +262,11 @@ func (m *JobSubmitRequestItem) GetScheduler() string { return "" } -func (m *JobSubmitRequestItem) GetPrice() float64 { +func (m *JobSubmitRequestItem) GetExperimentalPriceInfo() *ExperimentalPriceInfo { if m != nil { - return m.Price + return m.ExperimentalPriceInfo } - return 0 + return nil } type IngressConfig struct { @@ -2402,207 +2402,207 @@ func init() { func init() { proto.RegisterFile("pkg/api/submit.proto", fileDescriptor_e998bacb27df16c1) } var fileDescriptor_e998bacb27df16c1 = []byte{ - // 3199 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0xcd, 0x73, 0x1b, 0xc7, - 0xb1, 0xe7, 0xf2, 0x1b, 0x0d, 0x82, 0x02, 0x47, 0x24, 0xb5, 0x84, 0x64, 0x82, 0x5a, 0xd9, 0x32, - 0x25, 0xeb, 0x81, 0x16, 0xfd, 0x5c, 0x4f, 0xd2, 0xf3, 0x7b, 0x8a, 0x00, 0x42, 0x12, 0x29, 0x89, - 0xa2, 0x49, 0xd1, 0x1f, 0xa9, 0x54, 0x90, 0x05, 0x76, 0x08, 0x2e, 0x09, 0xec, 0xc2, 0xbb, 0x0b, - 0xca, 0x4c, 0xca, 0x97, 0x54, 0x2a, 0x3e, 0xe4, 0xe2, 0x4a, 0x4e, 0xa9, 0x54, 0x25, 0x39, 0xe4, - 0xe4, 0x9c, 0x73, 0x49, 0xe5, 0x0f, 0x48, 0x25, 0x17, 0xa7, 0x72, 0x49, 0x2e, 0xa8, 0x94, 0x9d, - 0x8f, 0x2a, 0xdc, 0x72, 0xcf, 0x21, 0x35, 0x3d, 0xb3, 0xbb, 0xb3, 0xf8, 0x22, 0x20, 0x89, 0xf6, - 0x25, 0x37, 0xcc, 0x6f, 0xfa, 0x73, 0xa6, 0xa7, 0xa7, 0x7b, 0x16, 0x30, 0x5b, 0x3b, 0x2c, 0xaf, - 0xe8, 0x35, 0x73, 0xc5, 0xad, 0x17, 0xab, 0xa6, 0x97, 0xa9, 0x39, 0xb6, 0x67, 0x93, 0x11, 0xbd, - 0x66, 0xa6, 0xce, 0x97, 0x6d, 0xbb, 0x5c, 0xa1, 0x2b, 0x08, 0x15, 0xeb, 0x7b, 0x2b, 0xb4, 0x5a, - 0xf3, 0x8e, 0x39, 0x45, 0x2a, 0xdd, 0x3a, 0xe9, 0x99, 0x55, 0xea, 0x7a, 0x7a, 0xb5, 0x26, 0x08, - 0xb4, 0xc3, 0x1b, 0x6e, 0xc6, 0xb4, 0x51, 0x76, 0xc9, 0x76, 0xe8, 0xca, 0xd1, 0xf5, 0x95, 0x32, - 0xb5, 0xa8, 0xa3, 0x7b, 0xd4, 0x10, 0x34, 0xcb, 0x12, 0x8d, 0x45, 0xbd, 0xa7, 0xb6, 0x73, 0x68, - 0x5a, 0xe5, 0x4e, 0x94, 0x17, 0x84, 0x3a, 0x46, 0xa9, 0x5b, 0x96, 0xed, 0xe9, 0x9e, 0x69, 0x5b, - 0xae, 0x98, 0x0d, 0x9c, 0xd8, 0xa7, 0x7a, 0xc5, 0xdb, 0xe7, 0xa8, 0xf6, 0x59, 0x0c, 0x66, 0x37, - 0xec, 0xe2, 0x0e, 0x3a, 0xb6, 0x4d, 0x3f, 0xa8, 0x53, 0xd7, 0x5b, 0xf7, 0x68, 0x95, 0xac, 0xc2, - 0x64, 0xcd, 0x31, 0x6d, 0xc7, 0xf4, 0x8e, 0x55, 0x65, 0x49, 0x59, 0x56, 0xb2, 0xf3, 0xcd, 0x46, - 0x9a, 0xf8, 0xd8, 0x35, 0xbb, 0x6a, 0x7a, 0xe8, 0xeb, 0x76, 0x40, 0x47, 0xde, 0x84, 0x98, 0xa5, - 0x57, 0xa9, 0x5b, 0xd3, 0x4b, 0x54, 0x1d, 0x59, 0x52, 0x96, 0x63, 0xd9, 0x73, 0xcd, 0x46, 0xfa, - 0x6c, 0x00, 0x4a, 0x5c, 0x21, 0x25, 0x79, 0x03, 0x62, 0xa5, 0x8a, 0x49, 0x2d, 0xaf, 0x60, 0x1a, - 0xea, 0x24, 0xb2, 0xa1, 0x2e, 0x0e, 0xae, 0x1b, 0xb2, 0x2e, 0x1f, 0x23, 0x3b, 0x30, 0x5e, 0xd1, - 0x8b, 0xb4, 0xe2, 0xaa, 0xa3, 0x4b, 0x23, 0xcb, 0xf1, 0xd5, 0x57, 0x32, 0x7a, 0xcd, 0xcc, 0x74, - 0x72, 0x25, 0xf3, 0x10, 0xe9, 0xf2, 0x96, 0xe7, 0x1c, 0x67, 0x67, 0x9b, 0x8d, 0x74, 0x92, 0x33, - 0x4a, 0x62, 0x85, 0x28, 0x52, 0x86, 0xb8, 0xb4, 0x70, 0xea, 0x18, 0x4a, 0xbe, 0xda, 0x5d, 0xf2, - 0x9d, 0x90, 0x98, 0x8b, 0x5f, 0x68, 0x36, 0xd2, 0x73, 0x92, 0x08, 0x49, 0x87, 0x2c, 0x99, 0x7c, - 0xac, 0xc0, 0xac, 0x43, 0x3f, 0xa8, 0x9b, 0x0e, 0x35, 0x0a, 0x96, 0x6d, 0xd0, 0x82, 0x70, 0x66, - 0x1c, 0x55, 0x5e, 0xef, 0xae, 0x72, 0x5b, 0x70, 0x6d, 0xda, 0x06, 0x95, 0x1d, 0xd3, 0x9a, 0x8d, - 0xf4, 0x05, 0xa7, 0x6d, 0x32, 0x34, 0x40, 0x55, 0xb6, 0x49, 0xfb, 0x3c, 0x79, 0x0c, 0x93, 0x35, - 0xdb, 0x28, 0xb8, 0x35, 0x5a, 0x52, 0x87, 0x97, 0x94, 0xe5, 0xf8, 0xea, 0xf9, 0x0c, 0x8f, 0x38, - 0xb4, 0x81, 0x45, 0x65, 0xe6, 0xe8, 0x7a, 0x66, 0xcb, 0x36, 0x76, 0x6a, 0xb4, 0x84, 0xfb, 0x39, - 0x53, 0xe3, 0x83, 0x88, 0xec, 0x09, 0x01, 0x92, 0x2d, 0x88, 0xf9, 0x02, 0x5d, 0x75, 0x02, 0xdd, - 0xe9, 0x29, 0x91, 0x87, 0x15, 0x1f, 0xb8, 0x91, 0xb0, 0x12, 0x18, 0xc9, 0xc1, 0x84, 0x69, 0x95, - 0x1d, 0xea, 0xba, 0x6a, 0x0c, 0xe5, 0x11, 0x14, 0xb4, 0xce, 0xb1, 0x9c, 0x6d, 0xed, 0x99, 0xe5, - 0xec, 0x1c, 0x33, 0x4c, 0x90, 0x49, 0x52, 0x7c, 0x4e, 0x72, 0x17, 0x26, 0x5d, 0xea, 0x1c, 0x99, - 0x25, 0xea, 0xaa, 0x20, 0x49, 0xd9, 0xe1, 0xa0, 0x90, 0x82, 0xc6, 0xf8, 0x74, 0xb2, 0x31, 0x3e, - 0xc6, 0x62, 0xdc, 0x2d, 0xed, 0x53, 0xa3, 0x5e, 0xa1, 0x8e, 0x1a, 0x0f, 0x63, 0x3c, 0x00, 0xe5, - 0x18, 0x0f, 0x40, 0x72, 0x05, 0xc6, 0x6a, 0x8e, 0x59, 0xa2, 0x6a, 0x02, 0xcf, 0xd2, 0xd9, 0x66, - 0x23, 0x7d, 0x06, 0x01, 0x89, 0x9c, 0x53, 0xa4, 0x74, 0x88, 0x4b, 0x1b, 0x4b, 0x2e, 0xc1, 0xc8, - 0x21, 0xe5, 0x67, 0x30, 0x96, 0x9d, 0x69, 0x36, 0xd2, 0x89, 0x43, 0x2a, 0x1f, 0x3f, 0x36, 0xcb, - 0xc4, 0x1f, 0xe9, 0x95, 0x3a, 0xc5, 0x2d, 0x8c, 0x71, 0xf1, 0x08, 0xc8, 0xe2, 0x11, 0xb8, 0x35, - 0x7c, 0x43, 0x49, 0xed, 0x41, 0xb2, 0x35, 0x74, 0x4f, 0x45, 0x4f, 0x15, 0xce, 0x75, 0x89, 0xd7, - 0xd3, 0x50, 0xb7, 0x31, 0x3a, 0x39, 0x95, 0x4c, 0x68, 0xff, 0x1c, 0x81, 0x44, 0x24, 0x36, 0xc8, - 0x2d, 0x18, 0xf5, 0x8e, 0x6b, 0x14, 0x95, 0x4d, 0xaf, 0x26, 0xe5, 0xe8, 0x79, 0x72, 0x5c, 0xa3, - 0x98, 0x14, 0xa6, 0x19, 0x45, 0x24, 0xa2, 0x91, 0x07, 0x37, 0xce, 0x76, 0x3c, 0x57, 0x1d, 0x5e, - 0x1a, 0x59, 0x4e, 0x88, 0x8d, 0x63, 0x40, 0x64, 0xe3, 0x18, 0x40, 0xbe, 0x15, 0xcd, 0x1e, 0x23, - 0x18, 0x65, 0x97, 0xda, 0x63, 0xf5, 0xd9, 0xd3, 0xc6, 0x4d, 0x88, 0x7b, 0x15, 0xb7, 0x40, 0x2d, - 0xbd, 0x58, 0xa1, 0x86, 0x3a, 0xba, 0xa4, 0x2c, 0x4f, 0x66, 0xd5, 0x66, 0x23, 0x3d, 0xeb, 0xb1, - 0x75, 0x45, 0x54, 0xe2, 0x85, 0x10, 0xc5, 0x24, 0x4b, 0x1d, 0xaf, 0xc0, 0xd2, 0xae, 0x3a, 0x26, - 0x25, 0x59, 0xea, 0x78, 0x9b, 0x7a, 0x95, 0x46, 0x92, 0xac, 0xc0, 0xc8, 0x6d, 0x48, 0xd4, 0x5d, - 0x5a, 0x28, 0x55, 0xea, 0xae, 0x47, 0x9d, 0xf5, 0x2d, 0x75, 0x1c, 0x35, 0xa6, 0x9a, 0x8d, 0xf4, - 0x7c, 0xdd, 0xa5, 0x39, 0x1f, 0x97, 0x98, 0xa7, 0x64, 0xfc, 0xcb, 0x0a, 0x34, 0xcd, 0x83, 0x44, - 0xe4, 0x20, 0x93, 0x1b, 0x1d, 0xb6, 0x5c, 0x50, 0xe0, 0x96, 0x93, 0xf6, 0x2d, 0x1f, 0x78, 0xc3, - 0xb5, 0x3f, 0x2b, 0x90, 0x6c, 0x4d, 0xd2, 0x8c, 0xff, 0x83, 0x3a, 0xad, 0x53, 0xe1, 0x20, 0xf2, - 0x23, 0x20, 0xf3, 0x23, 0x40, 0xfe, 0x1b, 0xe0, 0xc0, 0x2e, 0x16, 0x5c, 0x8a, 0x37, 0xdf, 0x70, - 0xb8, 0x29, 0x07, 0x76, 0x71, 0x87, 0xb6, 0xdc, 0x7c, 0x3e, 0x46, 0x0c, 0x98, 0x61, 0x5c, 0x0e, - 0xd7, 0x57, 0x60, 0x04, 0x7e, 0xb0, 0x2d, 0x74, 0xbd, 0x37, 0xb2, 0x2f, 0x35, 0x1b, 0xe9, 0x85, - 0x03, 0xbb, 0x28, 0x61, 0xb2, 0x47, 0x67, 0x5a, 0xa6, 0xb4, 0x3f, 0x28, 0x30, 0xb3, 0x61, 0x17, - 0xb7, 0x1c, 0xca, 0x08, 0xbe, 0x34, 0xe7, 0xfe, 0x0b, 0x26, 0x18, 0x97, 0x69, 0x70, 0x97, 0x62, - 0xfc, 0xc2, 0x3e, 0xb0, 0x8b, 0xeb, 0x46, 0xe4, 0xc2, 0xe6, 0x08, 0xb9, 0x06, 0xe3, 0x0e, 0xd5, - 0x5d, 0xdb, 0xc2, 0xb3, 0x20, 0xa8, 0x39, 0x22, 0x53, 0x73, 0x44, 0xfb, 0x17, 0xdf, 0xaf, 0x9c, - 0x6e, 0x95, 0x68, 0xc5, 0x77, 0xe9, 0x2a, 0x8c, 0x73, 0x8d, 0xb2, 0x4f, 0x28, 0x5e, 0xf6, 0x09, - 0x81, 0x67, 0xf4, 0x29, 0x58, 0xb4, 0x91, 0x13, 0x17, 0x4d, 0x72, 0x7f, 0x74, 0x20, 0xf7, 0xc7, - 0xfa, 0x70, 0xff, 0x6f, 0x0a, 0x9c, 0xdd, 0x40, 0xa3, 0xa2, 0x2b, 0x10, 0xf5, 0x4a, 0x19, 0xd4, - 0xab, 0xe1, 0x13, 0xbd, 0xba, 0x0d, 0xe3, 0x7b, 0x66, 0xc5, 0xa3, 0x0e, 0xae, 0x40, 0x7c, 0x75, - 0x26, 0x08, 0x53, 0xea, 0xdd, 0xc5, 0x09, 0x6e, 0x39, 0x27, 0x92, 0x2d, 0xe7, 0xc8, 0x80, 0xdb, - 0xfc, 0x00, 0xa6, 0x64, 0xd9, 0xe4, 0x7f, 0x61, 0xdc, 0xf5, 0x74, 0x8f, 0xba, 0xaa, 0xb2, 0x34, - 0xb2, 0x3c, 0xbd, 0x9a, 0x08, 0xd4, 0x33, 0x94, 0x0b, 0xe3, 0x04, 0xb2, 0x30, 0x8e, 0x68, 0x3f, - 0x4e, 0xc2, 0xc8, 0x86, 0x5d, 0x24, 0x4b, 0x30, 0x1c, 0x2c, 0x4e, 0xb2, 0xd9, 0x48, 0x4f, 0x99, - 0xf2, 0xb2, 0x0c, 0x9b, 0x46, 0xb4, 0x8c, 0x4d, 0xf4, 0x59, 0xc6, 0x9e, 0x7a, 0x44, 0x45, 0x6a, - 0xf2, 0x89, 0xbe, 0x6b, 0xf2, 0x6c, 0x50, 0x5e, 0xf3, 0x92, 0x6b, 0xd6, 0x5f, 0xb3, 0x01, 0xaa, - 0xe9, 0x77, 0xa2, 0xf7, 0x21, 0x44, 0x53, 0xd4, 0xb3, 0xdf, 0x82, 0x47, 0x5d, 0x6a, 0xe7, 0x38, - 0x2a, 0x58, 0x0a, 0x14, 0xbc, 0xe8, 0x52, 0xf9, 0x0a, 0x8c, 0xd9, 0x4f, 0x2d, 0xea, 0x88, 0x1e, - 0x05, 0x57, 0x1d, 0x01, 0x79, 0xd5, 0x11, 0x20, 0x14, 0xce, 0xe3, 0xf2, 0x17, 0x70, 0xe8, 0xee, - 0x9b, 0xb5, 0x42, 0xdd, 0xa5, 0x4e, 0xa1, 0xec, 0xd8, 0xf5, 0x9a, 0xab, 0x9e, 0xc1, 0xb3, 0x7d, - 0xb9, 0xd9, 0x48, 0x6b, 0x48, 0xf6, 0xd8, 0xa7, 0xda, 0x75, 0xa9, 0x73, 0x0f, 0x69, 0x24, 0x99, - 0x6a, 0x37, 0x1a, 0xf2, 0x3d, 0x05, 0x2e, 0x97, 0xec, 0x6a, 0x8d, 0xd5, 0x16, 0xd4, 0x28, 0xf4, - 0x52, 0x79, 0x76, 0x49, 0x59, 0x9e, 0xca, 0xbe, 0xde, 0x6c, 0xa4, 0xaf, 0x85, 0x1c, 0x6f, 0x9f, - 0xac, 0x5c, 0x3b, 0x99, 0x3a, 0xd2, 0x2b, 0x8e, 0xf6, 0xd9, 0x2b, 0xca, 0x7d, 0xc7, 0xd8, 0x0b, - 0xef, 0x3b, 0xa6, 0x5e, 0x44, 0xdf, 0xf1, 0x73, 0x05, 0x96, 0x44, 0x05, 0x6f, 0x5a, 0xe5, 0x82, - 0x43, 0x5d, 0xbb, 0xee, 0x94, 0x68, 0x41, 0x84, 0x46, 0x95, 0x5a, 0x9e, 0xab, 0xce, 0xa1, 0xed, - 0xcb, 0x9d, 0x34, 0x6d, 0x0b, 0x86, 0x6d, 0x89, 0x3e, 0x7b, 0xad, 0xd9, 0x48, 0x2f, 0x87, 0x52, - 0x3b, 0xd1, 0x48, 0xc6, 0x2c, 0xf6, 0xa6, 0x24, 0x0f, 0x60, 0xa2, 0xe4, 0x50, 0xdd, 0xa3, 0x06, - 0x96, 0x66, 0xf1, 0xd5, 0x54, 0x86, 0x3f, 0x02, 0x64, 0xfc, 0x37, 0x87, 0xcc, 0x13, 0xff, 0xcd, - 0x81, 0xb7, 0x48, 0x82, 0x5c, 0x6e, 0x91, 0x04, 0x24, 0xf7, 0x59, 0xd3, 0x2f, 0xa4, 0xcf, 0x4a, - 0x3e, 0x47, 0x9f, 0xf5, 0x0d, 0x88, 0x1f, 0xde, 0x70, 0x0b, 0xbe, 0x41, 0x33, 0x28, 0xea, 0xa2, - 0xbc, 0xcc, 0xe1, 0x63, 0x08, 0x5b, 0x6c, 0x61, 0x25, 0xaf, 0x86, 0x0f, 0x6f, 0xb8, 0xeb, 0x6d, - 0x26, 0x42, 0x88, 0xb2, 0xd4, 0xc4, 0xa4, 0x0b, 0x6d, 0x2a, 0xe9, 0x1e, 0x2e, 0xc2, 0xee, 0x40, - 0xae, 0x18, 0xb7, 0xc8, 0x15, 0x68, 0xb4, 0x3b, 0x9c, 0xed, 0xbb, 0x3b, 0xac, 0xc3, 0x1c, 0xfd, - 0xb0, 0x46, 0x1d, 0x93, 0xed, 0xaa, 0x5e, 0xd9, 0x62, 0x7d, 0xe0, 0xba, 0xb5, 0x67, 0xab, 0x8b, - 0x62, 0x53, 0x99, 0x45, 0xf9, 0x4e, 0x14, 0xd9, 0x4b, 0xcd, 0x46, 0x3a, 0xdd, 0x91, 0x59, 0x52, - 0xd5, 0x59, 0xfa, 0x7f, 0x3a, 0xcd, 0xe7, 0xe8, 0x34, 0xe7, 0x93, 0xe7, 0xb4, 0x07, 0x30, 0xd7, - 0x71, 0x53, 0x58, 0x42, 0x2c, 0x9a, 0x06, 0x8e, 0xe5, 0xc7, 0x33, 0x1f, 0x93, 0x03, 0xde, 0xc7, - 0xb4, 0xbf, 0x2b, 0x30, 0xbf, 0xc1, 0x8a, 0x70, 0x91, 0x22, 0xcd, 0x6f, 0x53, 0xbf, 0x40, 0x93, - 0xaa, 0x42, 0xa5, 0x8f, 0xaa, 0xf0, 0xd4, 0x6b, 0x8a, 0xb7, 0x60, 0xca, 0xa2, 0x4f, 0x0b, 0x2d, - 0x39, 0x1f, 0xaf, 0x6f, 0x8b, 0x3e, 0xdd, 0x6a, 0x4f, 0xfb, 0x71, 0x09, 0xd6, 0x7e, 0x39, 0x0c, - 0xe7, 0xda, 0x1c, 0x75, 0x6b, 0xb6, 0xe5, 0x52, 0xf2, 0x13, 0x05, 0x54, 0x27, 0x9c, 0xc0, 0xa8, - 0x61, 0x89, 0xb7, 0x5e, 0xf1, 0xb8, 0xef, 0xf1, 0xd5, 0x9b, 0xfe, 0xfd, 0xde, 0x49, 0x40, 0x66, - 0xbb, 0x85, 0x79, 0x9b, 0xf3, 0xf2, 0x8b, 0xff, 0x95, 0x66, 0x23, 0x7d, 0xd1, 0xe9, 0x4c, 0x21, - 0x59, 0x7b, 0xae, 0x0b, 0x49, 0xca, 0x81, 0x0b, 0xbd, 0xe4, 0x9f, 0x4a, 0x67, 0x6b, 0xc1, 0x9c, - 0xd4, 0xcf, 0x71, 0x2f, 0xf1, 0x81, 0x76, 0x90, 0xbe, 0xe5, 0x0a, 0x8c, 0x51, 0xc7, 0xb1, 0x1d, - 0x59, 0x27, 0x02, 0x32, 0x29, 0x02, 0xda, 0x47, 0xd8, 0xf6, 0x45, 0xf5, 0x91, 0x7d, 0x20, 0xbc, - 0xe5, 0xe4, 0x63, 0xd1, 0x73, 0xf2, 0xfd, 0x48, 0xb5, 0xf6, 0x9c, 0xa1, 0x8d, 0xd9, 0xc5, 0x66, - 0x23, 0x9d, 0xc2, 0xce, 0x32, 0x04, 0xe5, 0x95, 0x4e, 0xb6, 0xce, 0x69, 0x1f, 0xc7, 0x61, 0x0c, - 0xeb, 0x0c, 0x72, 0x19, 0x46, 0xf1, 0xad, 0x82, 0x7b, 0x87, 0xfd, 0xba, 0x15, 0x7d, 0xa7, 0xc0, - 0x79, 0x92, 0x87, 0x33, 0x7e, 0x20, 0x16, 0xf6, 0xf4, 0x92, 0x27, 0xbc, 0x54, 0xb2, 0x17, 0x9a, - 0x8d, 0xb4, 0xea, 0x4f, 0xdd, 0xc5, 0x19, 0x89, 0x79, 0x3a, 0x3a, 0x43, 0x6e, 0x42, 0x1c, 0xcb, - 0x25, 0x5e, 0x3d, 0x89, 0xe6, 0x13, 0x93, 0x3e, 0x83, 0x79, 0xd5, 0x23, 0x27, 0xfd, 0x10, 0x65, - 0xc7, 0x01, 0x8b, 0x2c, 0x9f, 0x97, 0x77, 0x6e, 0x78, 0x1c, 0x10, 0x6f, 0x63, 0x8e, 0x4b, 0x30, - 0x29, 0xc3, 0x99, 0xa0, 0xb2, 0xa8, 0x98, 0x55, 0xd3, 0xf3, 0xdf, 0x9d, 0x17, 0x71, 0x61, 0x71, - 0x31, 0x82, 0x52, 0xe2, 0x21, 0x12, 0xf0, 0x68, 0x66, 0x8b, 0xab, 0x3a, 0x91, 0x89, 0x48, 0x65, - 0x34, 0x1d, 0x9d, 0x23, 0xbf, 0x52, 0xe0, 0x72, 0x8b, 0xa6, 0x42, 0xf1, 0x38, 0x38, 0xc5, 0x85, - 0x52, 0x45, 0x77, 0x5d, 0xfe, 0x3e, 0x34, 0x21, 0xbd, 0x42, 0x77, 0x32, 0x20, 0x7b, 0xec, 0x9f, - 0xe6, 0x1c, 0x63, 0xda, 0xd4, 0xab, 0x94, 0xdb, 0xb4, 0xd2, 0x6c, 0xa4, 0x5f, 0x73, 0x4e, 0xa2, - 0x95, 0x96, 0xe2, 0xe2, 0x89, 0xc4, 0x64, 0x07, 0xe2, 0x35, 0xea, 0x54, 0x4d, 0xd7, 0xc5, 0x36, - 0x82, 0xbf, 0x90, 0xcf, 0x4b, 0xb6, 0x6d, 0x85, 0xb3, 0x7c, 0xd5, 0x25, 0x72, 0x79, 0xd5, 0x25, - 0x98, 0x65, 0xe8, 0x92, 0xed, 0x18, 0xb6, 0x45, 0xf9, 0x27, 0x87, 0x49, 0xd1, 0xab, 0x09, 0x2c, - 0xd2, 0xab, 0x09, 0x8c, 0x3c, 0x82, 0x19, 0xde, 0x69, 0x14, 0x0c, 0x5a, 0x73, 0x68, 0x09, 0xcb, - 0xae, 0x18, 0x6e, 0xf6, 0x12, 0x0b, 0x74, 0x3e, 0xb9, 0x16, 0xcc, 0x45, 0x76, 0x23, 0xd9, 0x3a, - 0x4b, 0xd6, 0x82, 0x16, 0x0b, 0xda, 0x5c, 0xea, 0xbb, 0xc9, 0x4a, 0xfd, 0x43, 0x81, 0xb8, 0xb4, - 0x00, 0x64, 0x1b, 0x26, 0xdd, 0x7a, 0xf1, 0x80, 0x96, 0x82, 0x84, 0xb9, 0xd8, 0x79, 0xa9, 0x32, - 0x3b, 0x9c, 0x4c, 0xd4, 0x62, 0x82, 0x27, 0x52, 0x8b, 0x09, 0x0c, 0x53, 0x16, 0x75, 0x8a, 0xfc, - 0x49, 0xcc, 0x4f, 0x59, 0x0c, 0x88, 0xa4, 0x2c, 0x06, 0xa4, 0xde, 0x87, 0x09, 0x21, 0x97, 0x1d, - 0xe0, 0x43, 0xd3, 0x32, 0xe4, 0x03, 0xcc, 0xc6, 0xf2, 0x01, 0x66, 0xe3, 0xe0, 0xa0, 0x0f, 0xf7, - 0x3e, 0xe8, 0x29, 0x13, 0xce, 0x76, 0x38, 0x06, 0xcf, 0x90, 0x74, 0x95, 0x13, 0xab, 0x89, 0x9f, - 0x2a, 0x70, 0xb9, 0xbf, 0x88, 0xef, 0x4f, 0xfd, 0x03, 0x59, 0xbd, 0xdf, 0xa2, 0x46, 0x04, 0xb6, - 0x68, 0x3b, 0xc9, 0xc0, 0xd3, 0xaf, 0xdc, 0xb4, 0x1f, 0x8e, 0xc1, 0xf9, 0x1e, 0x26, 0xb2, 0xee, - 0x68, 0xa1, 0xaa, 0x7f, 0x68, 0x56, 0xeb, 0xd5, 0xb0, 0x35, 0xda, 0x73, 0xf4, 0x12, 0xbb, 0x16, - 0x45, 0xe8, 0xfd, 0xdf, 0x49, 0x8e, 0x66, 0x1e, 0x71, 0x09, 0x3e, 0x7a, 0x57, 0xf0, 0x4b, 0xf7, - 0x75, 0xb5, 0x33, 0x85, 0x7c, 0x5f, 0x77, 0x21, 0x21, 0xbf, 0x56, 0xe0, 0x62, 0x57, 0x13, 0x31, - 0xf7, 0xd9, 0x76, 0x05, 0x83, 0x3a, 0xbe, 0x9a, 0x7b, 0x56, 0x53, 0xb3, 0xc7, 0x5b, 0xb6, 0x5d, - 0xe1, 0x06, 0xbf, 0xd6, 0x6c, 0xa4, 0x5f, 0xad, 0xf6, 0xa2, 0x93, 0xcc, 0x7e, 0xa9, 0x27, 0x21, - 0x2b, 0x36, 0x7a, 0x2d, 0xce, 0x69, 0xc5, 0xbd, 0x76, 0xb2, 0x9b, 0xfd, 0xa9, 0x7e, 0x1c, 0x8d, - 0xf9, 0x97, 0xdb, 0xd7, 0x97, 0x09, 0x1c, 0x2c, 0xee, 0xb5, 0xdf, 0x0c, 0x43, 0xfa, 0x04, 0x19, - 0xe4, 0x17, 0x7d, 0x04, 0xe6, 0x9d, 0x7e, 0xac, 0x39, 0xd5, 0xe0, 0xfc, 0x2a, 0xf6, 0x57, 0xcb, - 0x43, 0x0c, 0xef, 0x81, 0x87, 0xa6, 0xeb, 0x91, 0x1b, 0x30, 0x8e, 0xe5, 0xbc, 0x7f, 0x4f, 0x40, - 0x78, 0x4f, 0xf0, 0x3b, 0x87, 0xcf, 0xca, 0x77, 0x0e, 0x47, 0xb4, 0x5d, 0x20, 0xfc, 0x05, 0xb9, - 0x22, 0xd5, 0xc0, 0xe4, 0x36, 0x24, 0x4a, 0x1c, 0xa5, 0x86, 0xd4, 0xab, 0xe0, 0xc7, 0xa2, 0x60, - 0x22, 0xda, 0xb1, 0x4c, 0xc9, 0xb8, 0x76, 0x13, 0xce, 0xa0, 0xf6, 0x7b, 0x34, 0xf8, 0xde, 0xd0, - 0x67, 0x11, 0xa8, 0xbd, 0x05, 0x04, 0x59, 0x73, 0x78, 0x57, 0x0f, 0xca, 0xfd, 0xff, 0x30, 0x8b, - 0xdc, 0xbb, 0x56, 0xe9, 0x99, 0xf8, 0x6f, 0x83, 0xba, 0xe3, 0x39, 0x54, 0xaf, 0x9a, 0x56, 0xb9, - 0xd5, 0x83, 0x4b, 0x30, 0x62, 0xd5, 0xab, 0x28, 0x22, 0xc1, 0xb7, 0xd1, 0xaa, 0x57, 0xe5, 0x6d, - 0xb4, 0xea, 0xd5, 0xc0, 0xfc, 0x35, 0x5a, 0xa1, 0x1e, 0x1d, 0x54, 0xfd, 0xa7, 0x0a, 0x00, 0x7f, - 0xf0, 0xc6, 0xe6, 0xb3, 0xdf, 0xc2, 0xf9, 0x26, 0xc4, 0x71, 0x3f, 0x8d, 0xc2, 0x81, 0x8d, 0x77, - 0xbb, 0xb2, 0x3c, 0xc6, 0x2b, 0x5e, 0x0e, 0x6f, 0xd8, 0x91, 0x0b, 0x1e, 0x42, 0x94, 0xb1, 0x56, - 0xa8, 0xee, 0xfa, 0xac, 0x23, 0x21, 0x2b, 0x87, 0x5b, 0x59, 0x43, 0x54, 0x7b, 0x0a, 0x67, 0xf9, - 0x5a, 0xd7, 0x0c, 0xdd, 0x0b, 0x1b, 0xbf, 0x37, 0xe5, 0x0f, 0x4b, 0xd1, 0x58, 0xec, 0xd5, 0x89, - 0x0e, 0xd0, 0xd8, 0xd4, 0x41, 0xcd, 0xea, 0x5e, 0x69, 0xbf, 0x93, 0xf6, 0xf7, 0x21, 0xb1, 0xa7, - 0x9b, 0x15, 0xff, 0x09, 0xd5, 0x3f, 0x11, 0x6a, 0x68, 0x45, 0x94, 0x81, 0x07, 0x35, 0x67, 0x79, - 0xbb, 0xf5, 0x94, 0x4c, 0xc9, 0x78, 0xe0, 0x6f, 0x0e, 0x1f, 0xd9, 0xbe, 0x2a, 0x7f, 0x5b, 0xb4, - 0x9f, 0xec, 0x6f, 0x94, 0x61, 0x00, 0x7f, 0xe3, 0x10, 0xcb, 0x5b, 0xc6, 0x23, 0xdd, 0x39, 0xa4, - 0x8e, 0xf6, 0x89, 0x02, 0x73, 0xd1, 0x93, 0xf1, 0x88, 0xba, 0xae, 0x5e, 0xa6, 0xe4, 0x7f, 0x06, - 0xf3, 0xff, 0xfe, 0x50, 0xf8, 0x3d, 0x63, 0x84, 0x5a, 0x86, 0xb8, 0x54, 0xa6, 0xf9, 0xc3, 0x98, - 0xaf, 0x8f, 0x9f, 0x2f, 0x2a, 0xd7, 0x98, 0xf7, 0x87, 0xb6, 0x19, 0x7d, 0x76, 0x02, 0xc6, 0xe8, - 0x11, 0xb5, 0x3c, 0xed, 0xfb, 0x8a, 0xd8, 0x90, 0x96, 0x2f, 0x9b, 0xfd, 0x9e, 0x9a, 0x7b, 0x61, - 0xbb, 0x89, 0xd7, 0x06, 0xf5, 0xab, 0x62, 0xfc, 0xc0, 0xda, 0x32, 0x25, 0x7f, 0x60, 0x6d, 0x99, - 0xd2, 0x7e, 0xaf, 0xf8, 0x39, 0x2b, 0xf2, 0x31, 0xee, 0xcb, 0xb6, 0x83, 0xac, 0x41, 0xec, 0x40, - 0x7c, 0x0a, 0xe3, 0x6d, 0x6f, 0xdb, 0x07, 0x32, 0x7c, 0xc1, 0x0c, 0x68, 0xe4, 0x17, 0xcc, 0x00, - 0xbc, 0x9a, 0x82, 0xb8, 0xf4, 0x8f, 0x0a, 0x12, 0x87, 0x09, 0x31, 0x4c, 0x0e, 0x5d, 0xbd, 0x02, - 0x71, 0xe9, 0xd3, 0x3b, 0x99, 0x82, 0xc9, 0x4d, 0xdb, 0xa0, 0x5b, 0xb6, 0xe3, 0x25, 0x87, 0xd8, - 0xe8, 0x3e, 0xd5, 0x8d, 0x0a, 0x23, 0x55, 0xae, 0xfe, 0x4c, 0x81, 0x49, 0x5f, 0x2f, 0x01, 0x18, - 0x7f, 0x7b, 0x37, 0xbf, 0x9b, 0x5f, 0x4b, 0x0e, 0x31, 0x81, 0x5b, 0xf9, 0xcd, 0xb5, 0xf5, 0xcd, - 0x7b, 0x49, 0x85, 0x0d, 0xb6, 0x77, 0x37, 0x37, 0xd9, 0x60, 0x98, 0x24, 0x20, 0xb6, 0xb3, 0x9b, - 0xcb, 0xe5, 0xf3, 0x6b, 0xf9, 0xb5, 0xe4, 0x08, 0x63, 0xba, 0x7b, 0x67, 0xfd, 0x61, 0x7e, 0x2d, - 0x39, 0xca, 0xe8, 0x76, 0x37, 0x1f, 0x6c, 0x3e, 0x7e, 0x77, 0x33, 0x39, 0xc6, 0xe9, 0xb2, 0x8f, - 0xd6, 0x9f, 0x3c, 0xc9, 0xaf, 0x25, 0xc7, 0x19, 0xdd, 0xc3, 0xfc, 0x9d, 0x9d, 0xfc, 0x5a, 0x72, - 0x82, 0x4d, 0x6d, 0x6d, 0xe7, 0xf3, 0x8f, 0xb6, 0xd8, 0xd4, 0x24, 0x1b, 0xe6, 0xee, 0x6c, 0xe6, - 0xf2, 0x0f, 0x99, 0x94, 0x18, 0xb3, 0x70, 0x3b, 0xbf, 0x91, 0xcf, 0xb1, 0x49, 0x58, 0xfd, 0xdd, - 0x18, 0x4c, 0xe1, 0xb6, 0xf9, 0x4f, 0xbe, 0x6f, 0x40, 0x9c, 0x1f, 0x16, 0xfe, 0x6c, 0x21, 0x45, - 0x72, 0x6a, 0xbe, 0xed, 0x31, 0x3e, 0xcf, 0xd6, 0x4d, 0x1b, 0x22, 0xb7, 0x61, 0x4a, 0x62, 0x72, - 0xc9, 0x74, 0xc8, 0xc5, 0xee, 0xe6, 0xd4, 0x4b, 0x38, 0xee, 0x76, 0x7e, 0xb5, 0x21, 0xa6, 0x95, - 0xa7, 0xa4, 0x01, 0xb5, 0x4a, 0x4c, 0x27, 0x6b, 0x8d, 0x26, 0x3d, 0x6d, 0x88, 0x7c, 0x0d, 0xe2, - 0xfc, 0x8a, 0xe2, 0x5a, 0xcf, 0x85, 0xfc, 0x91, 0x9b, 0xab, 0x87, 0x09, 0x19, 0x98, 0xbc, 0x47, - 0x3d, 0xce, 0x3e, 0x1b, 0xb2, 0x87, 0x17, 0x66, 0x4a, 0x72, 0x45, 0x1b, 0x22, 0x1b, 0x10, 0xf3, - 0xe9, 0x5d, 0xc2, 0xed, 0xeb, 0x76, 0xd5, 0xa6, 0x52, 0x1d, 0xa6, 0x45, 0xbe, 0xd1, 0x86, 0x5e, - 0x57, 0x98, 0xf5, 0xbc, 0x3e, 0x68, 0xb3, 0x3e, 0x52, 0x36, 0xf4, 0xb0, 0x7e, 0x0d, 0x12, 0x7e, - 0x8d, 0xc0, 0x65, 0x2c, 0x48, 0x37, 0x44, 0xb4, 0x78, 0xe8, 0x29, 0x65, 0x5a, 0x24, 0x9f, 0xc7, - 0x42, 0x8c, 0x94, 0x78, 0xa3, 0x69, 0xa9, 0x87, 0x94, 0x2c, 0x24, 0x78, 0xe6, 0x78, 0xdc, 0xc1, - 0x1f, 0x39, 0xa5, 0x74, 0x97, 0xb1, 0xfa, 0x83, 0x18, 0x8c, 0xf3, 0x67, 0x3b, 0xf2, 0x0e, 0x00, - 0xff, 0x85, 0x17, 0xfc, 0x5c, 0xc7, 0x3f, 0x92, 0xa4, 0xe6, 0x3b, 0xbf, 0xf5, 0x69, 0x0b, 0xdf, - 0xfd, 0xe3, 0x5f, 0x7f, 0x34, 0x7c, 0x56, 0x9b, 0x5e, 0x39, 0xba, 0xbe, 0x72, 0x60, 0x17, 0xc5, - 0x1f, 0x65, 0x6f, 0x29, 0x57, 0xc9, 0xbb, 0x00, 0xdc, 0x9a, 0xa8, 0xdc, 0xa8, 0x85, 0xdc, 0xf4, - 0xf6, 0x9a, 0xb2, 0x5d, 0x30, 0x2f, 0x18, 0x99, 0xe0, 0x6f, 0xc2, 0x54, 0x20, 0x78, 0x87, 0x7a, - 0x62, 0x0d, 0x3b, 0xfc, 0xbf, 0xa1, 0xab, 0xff, 0x17, 0x50, 0xf8, 0xbc, 0x36, 0x23, 0x84, 0xbb, - 0xd4, 0x93, 0xe4, 0x5b, 0x90, 0x94, 0x5f, 0x98, 0xd1, 0xfc, 0xf3, 0x9d, 0xdf, 0x9e, 0xb9, 0x9a, - 0x0b, 0xbd, 0x1e, 0xa6, 0xb5, 0x34, 0x2a, 0x5b, 0xd0, 0x66, 0x7d, 0x4f, 0xa4, 0x47, 0x66, 0xca, - 0xf4, 0xbd, 0x0f, 0x71, 0xb1, 0xf7, 0xa8, 0x2a, 0x58, 0xea, 0x3e, 0x03, 0x22, 0x85, 0xf2, 0x67, - 0xb5, 0x33, 0xbe, 0xfc, 0x1a, 0xe7, 0x63, 0xa2, 0xef, 0x0d, 0x9e, 0xa2, 0x66, 0x51, 0xdc, 0xb4, - 0x16, 0x63, 0xe2, 0xf0, 0xe6, 0x65, 0x82, 0x4a, 0xcf, 0x97, 0xb6, 0x5e, 0x46, 0xa1, 0x8b, 0xda, - 0x02, 0x13, 0x5a, 0x64, 0x54, 0xd4, 0x58, 0xe1, 0x5f, 0x1f, 0x45, 0x21, 0xc2, 0x94, 0x6c, 0x0e, - 0x9e, 0xda, 0xce, 0xa3, 0xe0, 0xb9, 0x54, 0x32, 0xb0, 0x76, 0xe5, 0x3b, 0xec, 0x96, 0xfc, 0x48, - 0x18, 0xfd, 0x3c, 0x59, 0x4f, 0x18, 0x9d, 0x8a, 0x18, 0x5d, 0x47, 0x1a, 0xc9, 0xe8, 0xf7, 0x9e, - 0x33, 0x33, 0xaa, 0xa8, 0x85, 0x5c, 0x6d, 0xf3, 0x80, 0xdc, 0x1d, 0x28, 0x63, 0x0a, 0x39, 0xa4, - 0x5d, 0x8e, 0xf1, 0x82, 0x32, 0xa9, 0x08, 0x34, 0x42, 0xe4, 0xf5, 0xe0, 0x0b, 0xf1, 0xba, 0x42, - 0x6e, 0xc1, 0xf8, 0x7d, 0xfc, 0x7f, 0x39, 0xe9, 0xe2, 0x69, 0x8a, 0x9f, 0x53, 0x4e, 0x94, 0xdb, - 0xa7, 0xa5, 0xc3, 0xa0, 0xc8, 0x7c, 0xef, 0xb7, 0x9f, 0x2f, 0x2a, 0x9f, 0x7d, 0xbe, 0xa8, 0xfc, - 0xe5, 0xf3, 0x45, 0xe5, 0x93, 0x2f, 0x16, 0x87, 0x3e, 0xfb, 0x62, 0x71, 0xe8, 0x4f, 0x5f, 0x2c, - 0x0e, 0x7d, 0xfd, 0xd5, 0xb2, 0xe9, 0xed, 0xd7, 0x8b, 0x99, 0x92, 0x5d, 0x5d, 0xd1, 0x9d, 0xaa, - 0x6e, 0xe8, 0x35, 0xc7, 0x3e, 0xa0, 0x25, 0x4f, 0x8c, 0x56, 0xc4, 0x7f, 0xdb, 0x3f, 0x1d, 0x9e, - 0xbd, 0x83, 0xc0, 0x16, 0x9f, 0xce, 0xac, 0xdb, 0x99, 0x3b, 0x35, 0xb3, 0x38, 0x8e, 0x36, 0xbc, - 0xf1, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0xef, 0x1a, 0x17, 0xeb, 0xc9, 0x2f, 0x00, 0x00, + // 3186 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0xcf, 0x73, 0x1b, 0x49, + 0xf5, 0xf7, 0xf8, 0xb7, 0x9e, 0x2c, 0x47, 0xee, 0xd8, 0xce, 0x58, 0xc9, 0x5a, 0xce, 0x64, 0x37, + 0xeb, 0x64, 0xf3, 0x95, 0x37, 0xde, 0xef, 0x16, 0x49, 0x58, 0x08, 0x91, 0xac, 0x24, 0x76, 0x12, + 0xc7, 0x6b, 0xc7, 0xfb, 0x83, 0xa2, 0x10, 0x23, 0x4d, 0x5b, 0x1e, 0x5b, 0x9a, 0xd1, 0xce, 0x8c, + 0x92, 0x35, 0xd4, 0x5e, 0x28, 0x8a, 0x3d, 0x70, 0xd9, 0x82, 0x13, 0x05, 0x05, 0x1c, 0x38, 0x2d, + 0x67, 0x2e, 0x14, 0x7f, 0x00, 0x05, 0x97, 0xa5, 0xb8, 0xc0, 0x45, 0x45, 0xed, 0xf2, 0xa3, 0x4a, + 0x37, 0xee, 0x1c, 0xa8, 0x7e, 0xdd, 0x33, 0xd3, 0xa3, 0x5f, 0x96, 0x92, 0x78, 0x97, 0x03, 0x37, + 0xf5, 0xa7, 0xdf, 0xcf, 0xee, 0xd7, 0xaf, 0xdf, 0xeb, 0x11, 0xcc, 0xd6, 0x0e, 0xcb, 0x2b, 0x7a, + 0xcd, 0x5c, 0x71, 0xeb, 0xc5, 0xaa, 0xe9, 0x65, 0x6a, 0x8e, 0xed, 0xd9, 0x64, 0x44, 0xaf, 0x99, + 0xa9, 0xb3, 0x65, 0xdb, 0x2e, 0x57, 0xe8, 0x0a, 0x42, 0xc5, 0xfa, 0xde, 0x0a, 0xad, 0xd6, 0xbc, + 0x23, 0x4e, 0x91, 0x4a, 0xb7, 0x4e, 0x7a, 0x66, 0x95, 0xba, 0x9e, 0x5e, 0xad, 0x09, 0x02, 0xed, + 0xf0, 0x9a, 0x9b, 0x31, 0x6d, 0x94, 0x5d, 0xb2, 0x1d, 0xba, 0xf2, 0xf8, 0xea, 0x4a, 0x99, 0x5a, + 0xd4, 0xd1, 0x3d, 0x6a, 0x08, 0x9a, 0x65, 0x89, 0xc6, 0xa2, 0xde, 0x13, 0xdb, 0x39, 0x34, 0xad, + 0x72, 0x27, 0xca, 0x73, 0x42, 0x1d, 0xa3, 0xd4, 0x2d, 0xcb, 0xf6, 0x74, 0xcf, 0xb4, 0x2d, 0x57, + 0xcc, 0x06, 0x4e, 0xec, 0x53, 0xbd, 0xe2, 0xed, 0x73, 0x54, 0xfb, 0x29, 0xc0, 0xec, 0x86, 0x5d, + 0xdc, 0x41, 0xc7, 0xb6, 0xe9, 0x7b, 0x75, 0xea, 0x7a, 0xeb, 0x1e, 0xad, 0x92, 0x55, 0x98, 0xac, + 0x39, 0xa6, 0xed, 0x98, 0xde, 0x91, 0xaa, 0x2c, 0x29, 0xcb, 0x4a, 0x76, 0xbe, 0xd9, 0x48, 0x13, + 0x1f, 0xbb, 0x62, 0x57, 0x4d, 0x0f, 0x7d, 0xdd, 0x0e, 0xe8, 0xc8, 0xeb, 0x10, 0xb3, 0xf4, 0x2a, + 0x75, 0x6b, 0x7a, 0x89, 0xaa, 0x23, 0x4b, 0xca, 0x72, 0x2c, 0x7b, 0xa6, 0xd9, 0x48, 0x9f, 0x0e, + 0x40, 0x89, 0x2b, 0xa4, 0x24, 0xaf, 0x41, 0xac, 0x54, 0x31, 0xa9, 0xe5, 0x15, 0x4c, 0x43, 0x9d, + 0x44, 0x36, 0xd4, 0xc5, 0xc1, 0x75, 0x43, 0xd6, 0xe5, 0x63, 0x64, 0x07, 0xc6, 0x2b, 0x7a, 0x91, + 0x56, 0x5c, 0x75, 0x74, 0x69, 0x64, 0x39, 0xbe, 0xfa, 0x52, 0x46, 0xaf, 0x99, 0x99, 0x4e, 0xae, + 0x64, 0xee, 0x23, 0x5d, 0xde, 0xf2, 0x9c, 0xa3, 0xec, 0x6c, 0xb3, 0x91, 0x4e, 0x72, 0x46, 0x49, + 0xac, 0x10, 0x45, 0xca, 0x10, 0x97, 0x16, 0x4e, 0x1d, 0x43, 0xc9, 0x97, 0xbb, 0x4b, 0xbe, 0x15, + 0x12, 0x73, 0xf1, 0x0b, 0xcd, 0x46, 0x7a, 0x4e, 0x12, 0x21, 0xe9, 0x90, 0x25, 0x93, 0x0f, 0x15, + 0x98, 0x75, 0xe8, 0x7b, 0x75, 0xd3, 0xa1, 0x46, 0xc1, 0xb2, 0x0d, 0x5a, 0x10, 0xce, 0x8c, 0xa3, + 0xca, 0xab, 0xdd, 0x55, 0x6e, 0x0b, 0xae, 0x4d, 0xdb, 0xa0, 0xb2, 0x63, 0x5a, 0xb3, 0x91, 0x3e, + 0xe7, 0xb4, 0x4d, 0x86, 0x06, 0xa8, 0xca, 0x36, 0x69, 0x9f, 0x27, 0x0f, 0x61, 0xb2, 0x66, 0x1b, + 0x05, 0xb7, 0x46, 0x4b, 0xea, 0xf0, 0x92, 0xb2, 0x1c, 0x5f, 0x3d, 0x9b, 0xe1, 0x11, 0x87, 0x36, + 0xb0, 0xa8, 0xcc, 0x3c, 0xbe, 0x9a, 0xd9, 0xb2, 0x8d, 0x9d, 0x1a, 0x2d, 0xe1, 0x7e, 0xce, 0xd4, + 0xf8, 0x20, 0x22, 0x7b, 0x42, 0x80, 0x64, 0x0b, 0x62, 0xbe, 0x40, 0x57, 0x9d, 0x40, 0x77, 0x7a, + 0x4a, 0xe4, 0x61, 0xc5, 0x07, 0x6e, 0x24, 0xac, 0x04, 0x46, 0x72, 0x30, 0x61, 0x5a, 0x65, 0x87, + 0xba, 0xae, 0x1a, 0x43, 0x79, 0x04, 0x05, 0xad, 0x73, 0x2c, 0x67, 0x5b, 0x7b, 0x66, 0x39, 0x3b, + 0xc7, 0x0c, 0x13, 0x64, 0x92, 0x14, 0x9f, 0x93, 0xdc, 0x86, 0x49, 0x97, 0x3a, 0x8f, 0xcd, 0x12, + 0x75, 0x55, 0x90, 0xa4, 0xec, 0x70, 0x50, 0x48, 0x41, 0x63, 0x7c, 0x3a, 0xd9, 0x18, 0x1f, 0x63, + 0x31, 0xee, 0x96, 0xf6, 0xa9, 0x51, 0xaf, 0x50, 0x47, 0x8d, 0x87, 0x31, 0x1e, 0x80, 0x72, 0x8c, + 0x07, 0x20, 0xa9, 0xc3, 0x1c, 0x7d, 0xbf, 0x46, 0x1d, 0xb3, 0x4a, 0x2d, 0x4f, 0xaf, 0x6c, 0x39, + 0x66, 0x89, 0xae, 0x5b, 0x7b, 0xb6, 0x9a, 0xc0, 0x35, 0x4f, 0xa1, 0x2d, 0xf9, 0x4e, 0x14, 0xd9, + 0x0b, 0xcd, 0x46, 0x3a, 0xdd, 0x91, 0x59, 0x52, 0xd5, 0x59, 0x7a, 0x4a, 0x87, 0xb8, 0x14, 0x24, + 0xe4, 0x02, 0x8c, 0x1c, 0x52, 0x7e, 0x9e, 0x63, 0xd9, 0x99, 0x66, 0x23, 0x9d, 0x38, 0xa4, 0xf2, + 0x51, 0x66, 0xb3, 0xe4, 0x12, 0x8c, 0x3d, 0xd6, 0x2b, 0x75, 0x8a, 0xe1, 0x10, 0xcb, 0x9e, 0x6e, + 0x36, 0xd2, 0xa7, 0x10, 0x90, 0x08, 0x39, 0xc5, 0x8d, 0xe1, 0x6b, 0x4a, 0x6a, 0x0f, 0x92, 0xad, + 0xc7, 0xe0, 0x44, 0xf4, 0x54, 0xe1, 0x4c, 0x97, 0xd8, 0x3f, 0x09, 0x75, 0x1b, 0xa3, 0x93, 0x53, + 0xc9, 0x84, 0xf6, 0xaf, 0x11, 0x48, 0x44, 0xe2, 0x8c, 0xdc, 0x80, 0x51, 0xef, 0xa8, 0x46, 0x51, + 0xd9, 0xf4, 0x6a, 0x52, 0x8e, 0xc4, 0x47, 0x47, 0x35, 0x8a, 0x09, 0x66, 0x9a, 0x51, 0x44, 0x4e, + 0x07, 0xf2, 0x30, 0x13, 0x6a, 0xb6, 0xe3, 0xb9, 0xea, 0xf0, 0xd2, 0xc8, 0x72, 0x82, 0x9b, 0x80, + 0x80, 0x6c, 0x02, 0x02, 0xe4, 0x5b, 0xd1, 0x4c, 0x34, 0x82, 0x11, 0x7b, 0xa1, 0x3d, 0xee, 0x9f, + 0x3e, 0x05, 0x5d, 0x87, 0xb8, 0x57, 0x71, 0x0b, 0xd4, 0xd2, 0x8b, 0x15, 0x6a, 0xa8, 0xa3, 0x4b, + 0xca, 0xf2, 0x64, 0x56, 0x6d, 0x36, 0xd2, 0xb3, 0x1e, 0x5b, 0x57, 0x44, 0x25, 0x5e, 0x08, 0x51, + 0x4c, 0xd8, 0xd4, 0xf1, 0x0a, 0x2c, 0x85, 0xab, 0x63, 0x52, 0xc2, 0xa6, 0x8e, 0xb7, 0xa9, 0x57, + 0x69, 0x24, 0x61, 0x0b, 0x8c, 0xdc, 0x84, 0x44, 0xdd, 0xa5, 0x85, 0x52, 0xa5, 0xee, 0x7a, 0xd4, + 0x59, 0xdf, 0x52, 0xc7, 0x51, 0x63, 0xaa, 0xd9, 0x48, 0xcf, 0xd7, 0x5d, 0x9a, 0xf3, 0x71, 0x89, + 0x79, 0x4a, 0xc6, 0x3f, 0xaf, 0x40, 0xd3, 0x3c, 0x48, 0x44, 0x92, 0x02, 0xb9, 0xd6, 0x61, 0xcb, + 0x05, 0x05, 0x6e, 0x39, 0x69, 0xdf, 0xf2, 0x81, 0x37, 0x5c, 0xfb, 0x8b, 0x02, 0xc9, 0xd6, 0x84, + 0xcf, 0xf8, 0xdf, 0xab, 0xd3, 0x3a, 0x15, 0x0e, 0x22, 0x3f, 0x02, 0x32, 0x3f, 0x02, 0xe4, 0xff, + 0x01, 0x0e, 0xec, 0x62, 0xc1, 0xa5, 0x78, 0x8b, 0x0e, 0x87, 0x9b, 0x72, 0x60, 0x17, 0x77, 0x68, + 0xcb, 0x2d, 0xea, 0x63, 0xc4, 0x80, 0x19, 0xc6, 0xe5, 0x70, 0x7d, 0x05, 0x46, 0xe0, 0x07, 0xdb, + 0x42, 0xd7, 0x3b, 0x28, 0xfb, 0x42, 0xb3, 0x91, 0x5e, 0x38, 0xb0, 0x8b, 0x12, 0x26, 0x7b, 0x74, + 0xaa, 0x65, 0x4a, 0xfb, 0xa3, 0x02, 0x33, 0x1b, 0x76, 0x71, 0xcb, 0xa1, 0x8c, 0xe0, 0x73, 0x73, + 0xee, 0xff, 0x60, 0x82, 0x71, 0x99, 0x06, 0x77, 0x29, 0xc6, 0x2f, 0xff, 0x03, 0xbb, 0xb8, 0x6e, + 0x44, 0x2e, 0x7f, 0x8e, 0x90, 0x2b, 0x30, 0xee, 0x50, 0xdd, 0xb5, 0x2d, 0x3c, 0x0b, 0x82, 0x9a, + 0x23, 0x32, 0x35, 0x47, 0xb4, 0x7f, 0xf3, 0xfd, 0xca, 0xe9, 0x56, 0x89, 0x56, 0x7c, 0x97, 0x2e, + 0xc3, 0x38, 0xd7, 0x28, 0xfb, 0x84, 0xe2, 0x65, 0x9f, 0x10, 0x78, 0x4a, 0x9f, 0x82, 0x45, 0x1b, + 0x39, 0x76, 0xd1, 0x24, 0xf7, 0x47, 0x07, 0x72, 0x7f, 0xac, 0x0f, 0xf7, 0xff, 0xae, 0xc0, 0xe9, + 0x0d, 0x34, 0x2a, 0xba, 0x02, 0x51, 0xaf, 0x94, 0x41, 0xbd, 0x1a, 0x3e, 0xd6, 0xab, 0x9b, 0x30, + 0xbe, 0x67, 0x56, 0x3c, 0xea, 0xe0, 0x0a, 0xc4, 0x57, 0x67, 0x82, 0x30, 0xa5, 0xde, 0x6d, 0x9c, + 0xe0, 0x96, 0x73, 0x22, 0xd9, 0x72, 0x8e, 0x0c, 0xb8, 0xcd, 0xf7, 0x60, 0x4a, 0x96, 0x4d, 0xbe, + 0x0c, 0xe3, 0xae, 0xa7, 0x7b, 0xd4, 0x55, 0x95, 0xa5, 0x91, 0xe5, 0xe9, 0xd5, 0x44, 0xa0, 0x9e, + 0xa1, 0x5c, 0x18, 0x27, 0x90, 0x85, 0x71, 0x44, 0xfb, 0x71, 0x12, 0x46, 0x36, 0xec, 0x22, 0x59, + 0x82, 0xe1, 0x60, 0x71, 0x92, 0xcd, 0x46, 0x7a, 0xca, 0x94, 0x97, 0x65, 0xd8, 0x34, 0xa2, 0x25, + 0x71, 0xa2, 0xcf, 0x92, 0xf8, 0xc4, 0x23, 0x2a, 0x52, 0xdf, 0x4f, 0xf4, 0x5d, 0xdf, 0x67, 0x83, + 0x52, 0x9d, 0x97, 0x6f, 0xb3, 0xfe, 0x9a, 0x0d, 0x50, 0x99, 0xbf, 0x15, 0xbd, 0x0f, 0x21, 0x9a, + 0xa2, 0x9e, 0xfe, 0x16, 0x7c, 0xdc, 0xa5, 0x0e, 0x8f, 0xa3, 0x82, 0xa5, 0x40, 0xc1, 0xf3, 0x2e, + 0xbb, 0x2f, 0xc1, 0x98, 0xfd, 0xc4, 0xa2, 0x8e, 0xe8, 0x77, 0x70, 0xd5, 0x11, 0x90, 0x57, 0x1d, + 0x01, 0x42, 0xe1, 0x2c, 0x2e, 0x7f, 0x01, 0x87, 0xee, 0xbe, 0x59, 0x2b, 0xd4, 0x5d, 0xea, 0x14, + 0xca, 0x8e, 0x5d, 0xaf, 0xb9, 0xea, 0x29, 0x3c, 0xdb, 0x17, 0x9b, 0x8d, 0xb4, 0x86, 0x64, 0x0f, + 0x7d, 0xaa, 0x5d, 0x97, 0x3a, 0x77, 0x90, 0x46, 0x92, 0xa9, 0x76, 0xa3, 0x21, 0xdf, 0x53, 0xe0, + 0x62, 0xc9, 0xae, 0xd6, 0x58, 0x6d, 0x41, 0x8d, 0x42, 0x2f, 0x95, 0xa7, 0x97, 0x94, 0xe5, 0xa9, + 0xec, 0xab, 0xcd, 0x46, 0xfa, 0x4a, 0xc8, 0xf1, 0xe6, 0xf1, 0xca, 0xb5, 0xe3, 0xa9, 0x23, 0x7d, + 0xe7, 0x68, 0x9f, 0x7d, 0xa7, 0xdc, 0xc3, 0x8c, 0x3d, 0xf7, 0x1e, 0x66, 0xea, 0x79, 0xf4, 0x30, + 0xbf, 0x50, 0x60, 0x49, 0x74, 0x03, 0xa6, 0x55, 0x2e, 0x38, 0xd4, 0xb5, 0xeb, 0x4e, 0x89, 0x16, + 0x44, 0x68, 0xb0, 0xba, 0xdd, 0x55, 0xe7, 0xd0, 0xf6, 0xe5, 0x4e, 0x9a, 0xb6, 0x05, 0xc3, 0xb6, + 0x44, 0x9f, 0xbd, 0xd2, 0x6c, 0xa4, 0x97, 0x43, 0xa9, 0x9d, 0x68, 0x24, 0x63, 0x16, 0x7b, 0x53, + 0x92, 0x7b, 0x30, 0x51, 0x72, 0xa8, 0xee, 0x51, 0x03, 0x4b, 0x33, 0xd6, 0x94, 0xf0, 0x07, 0x85, + 0x8c, 0xff, 0x7e, 0x91, 0x79, 0xe4, 0xbf, 0x5f, 0xf0, 0x76, 0x4b, 0x90, 0xcb, 0xed, 0x96, 0x80, + 0xe4, 0x9e, 0x6d, 0xfa, 0xb9, 0xf4, 0x6c, 0xc9, 0x67, 0xe8, 0xd9, 0xbe, 0x01, 0xf1, 0xc3, 0x6b, + 0x6e, 0xc1, 0x37, 0x68, 0x06, 0x45, 0x9d, 0x97, 0x97, 0x39, 0x7c, 0x58, 0x61, 0x8b, 0x2d, 0xac, + 0xe4, 0xd5, 0xf0, 0xe1, 0x35, 0x77, 0xbd, 0xcd, 0x44, 0x08, 0x51, 0x96, 0x9a, 0x98, 0x74, 0xa1, + 0x4d, 0x25, 0xdd, 0xc3, 0x45, 0xd8, 0x1d, 0xc8, 0x15, 0xe3, 0x16, 0xb9, 0x02, 0x8d, 0x76, 0x9a, + 0xb3, 0xcf, 0xde, 0x69, 0x2e, 0xfe, 0xaf, 0xd3, 0xfc, 0x2f, 0xed, 0x34, 0xe7, 0x93, 0x67, 0xb4, + 0x7b, 0x30, 0xd7, 0x71, 0x53, 0x58, 0x42, 0x2c, 0x9a, 0x06, 0x8e, 0xe5, 0x87, 0x38, 0x1f, 0x93, + 0x03, 0xde, 0xc7, 0xb4, 0x7f, 0x28, 0x30, 0xbf, 0xc1, 0x8a, 0x70, 0x91, 0x22, 0xcd, 0x6f, 0x53, + 0xbf, 0x40, 0x93, 0xaa, 0x42, 0xa5, 0x8f, 0xaa, 0xf0, 0xc4, 0x6b, 0x8a, 0x37, 0x60, 0xca, 0xa2, + 0x4f, 0x0a, 0x2d, 0x39, 0x1f, 0xaf, 0x6f, 0x8b, 0x3e, 0xd9, 0x6a, 0x4f, 0xfb, 0x71, 0x09, 0xd6, + 0x7e, 0x35, 0x0c, 0x67, 0xda, 0x1c, 0x75, 0x6b, 0xb6, 0xe5, 0x52, 0xf2, 0x13, 0x05, 0x54, 0x27, + 0x9c, 0xc0, 0xa8, 0x61, 0x89, 0xb7, 0x5e, 0xf1, 0xb8, 0xef, 0xf1, 0xd5, 0xeb, 0xfe, 0xfd, 0xde, + 0x49, 0x40, 0x66, 0xbb, 0x85, 0x79, 0x9b, 0xf3, 0xf2, 0x8b, 0xff, 0xa5, 0x66, 0x23, 0x7d, 0xde, + 0xe9, 0x4c, 0x21, 0x59, 0x7b, 0xa6, 0x0b, 0x49, 0xca, 0x81, 0x73, 0xbd, 0xe4, 0x9f, 0x48, 0x67, + 0x6b, 0xc1, 0x9c, 0xd4, 0xcf, 0x71, 0x2f, 0xf1, 0xb1, 0x77, 0x90, 0xbe, 0xe5, 0x12, 0x8c, 0x51, + 0xc7, 0xb1, 0x1d, 0x59, 0x27, 0x02, 0x32, 0x29, 0x02, 0xda, 0x07, 0xd8, 0xf6, 0x45, 0xf5, 0x91, + 0x7d, 0x20, 0xbc, 0xe5, 0xe4, 0x63, 0xd1, 0x73, 0xf2, 0xfd, 0x48, 0xb5, 0xf6, 0x9c, 0xa1, 0x8d, + 0xd9, 0xc5, 0x66, 0x23, 0x9d, 0xc2, 0xce, 0x32, 0x04, 0xe5, 0x95, 0x4e, 0xb6, 0xce, 0x69, 0x1f, + 0xc6, 0x61, 0x0c, 0xeb, 0x0c, 0x72, 0x11, 0x46, 0xf1, 0xad, 0x82, 0x7b, 0x87, 0xfd, 0xba, 0x15, + 0x7d, 0xa7, 0xc0, 0x79, 0x92, 0x87, 0x53, 0x7e, 0x20, 0x16, 0xf6, 0xf4, 0x92, 0x27, 0xbc, 0x54, + 0xb2, 0xe7, 0x9a, 0x8d, 0xb4, 0xea, 0x4f, 0xdd, 0xc6, 0x19, 0x89, 0x79, 0x3a, 0x3a, 0x43, 0xae, + 0x43, 0x1c, 0xcb, 0x25, 0x5e, 0x3d, 0x89, 0xe6, 0x13, 0x93, 0x3e, 0x83, 0x79, 0xd5, 0x23, 0x27, + 0xfd, 0x10, 0x65, 0xc7, 0x01, 0x8b, 0x2c, 0x9f, 0x97, 0x77, 0x6e, 0x78, 0x1c, 0x10, 0x6f, 0x63, + 0x8e, 0x4b, 0x30, 0x29, 0xc3, 0xa9, 0xa0, 0xb2, 0xa8, 0x98, 0x55, 0xd3, 0xf3, 0xdf, 0xb0, 0x17, + 0x71, 0x61, 0x71, 0x31, 0x82, 0x52, 0xe2, 0x3e, 0x12, 0xf0, 0x68, 0x66, 0x8b, 0xab, 0x3a, 0x91, + 0x89, 0x48, 0x65, 0x34, 0x1d, 0x9d, 0x23, 0xbf, 0x56, 0xe0, 0x62, 0x8b, 0xa6, 0x42, 0xf1, 0x28, + 0x38, 0xc5, 0x85, 0x52, 0x45, 0x77, 0x5d, 0xfe, 0x3e, 0x34, 0x21, 0xbd, 0x68, 0x77, 0x32, 0x20, + 0x7b, 0xe4, 0x9f, 0xe6, 0x1c, 0x63, 0xda, 0xd4, 0xab, 0x94, 0xdb, 0xb4, 0xd2, 0x6c, 0xa4, 0x5f, + 0x71, 0x8e, 0xa3, 0x95, 0x96, 0xe2, 0xfc, 0xb1, 0xc4, 0x64, 0x07, 0xe2, 0x35, 0xea, 0x54, 0x4d, + 0xd7, 0xc5, 0x36, 0x82, 0xbf, 0xb6, 0xcf, 0x4b, 0xb6, 0x6d, 0x85, 0xb3, 0x7c, 0xd5, 0x25, 0x72, + 0x79, 0xd5, 0x25, 0x98, 0x65, 0xe8, 0x92, 0xed, 0x18, 0xb6, 0x45, 0xf9, 0xe7, 0x8b, 0x49, 0xd1, + 0xab, 0x09, 0x2c, 0xd2, 0xab, 0x09, 0x8c, 0x3c, 0x80, 0x19, 0xde, 0x69, 0x14, 0x0c, 0x5a, 0x73, + 0x68, 0x09, 0xcb, 0xae, 0x18, 0x6e, 0xf6, 0x12, 0x0b, 0x74, 0x3e, 0xb9, 0x16, 0xcc, 0x45, 0x76, + 0x23, 0xd9, 0x3a, 0x4b, 0xd6, 0x82, 0x16, 0x0b, 0xda, 0x5c, 0xea, 0xbb, 0xc9, 0x4a, 0xfd, 0x53, + 0x81, 0xb8, 0xb4, 0x00, 0x64, 0x1b, 0x26, 0xdd, 0x7a, 0xf1, 0x80, 0x96, 0x82, 0x84, 0xb9, 0xd8, + 0x79, 0xa9, 0x32, 0x3b, 0x9c, 0x4c, 0xd4, 0x62, 0x82, 0x27, 0x52, 0x8b, 0x09, 0x0c, 0x53, 0x16, + 0x75, 0x8a, 0xfc, 0x49, 0xcc, 0x4f, 0x59, 0x0c, 0x88, 0xa4, 0x2c, 0x06, 0xa4, 0xde, 0x85, 0x09, + 0x21, 0x97, 0x1d, 0xe0, 0x43, 0xd3, 0x32, 0xe4, 0x03, 0xcc, 0xc6, 0xf2, 0x01, 0x66, 0xe3, 0xe0, + 0xa0, 0x0f, 0xf7, 0x3e, 0xe8, 0x29, 0x13, 0x4e, 0x77, 0x38, 0x06, 0x4f, 0x91, 0x74, 0x95, 0x63, + 0xab, 0x89, 0x9f, 0x29, 0x70, 0xb1, 0xbf, 0x88, 0xef, 0x4f, 0xfd, 0x3d, 0x59, 0xbd, 0xdf, 0xa2, + 0x46, 0x04, 0xb6, 0x68, 0x3b, 0xce, 0xc0, 0x93, 0xaf, 0xdc, 0xb4, 0x1f, 0x8e, 0xc1, 0xd9, 0x1e, + 0x26, 0xb2, 0xee, 0x68, 0xa1, 0xaa, 0xbf, 0x6f, 0x56, 0xeb, 0xd5, 0xb0, 0x35, 0xda, 0x73, 0xf4, + 0x12, 0xbb, 0x16, 0x45, 0xe8, 0x7d, 0xe5, 0x38, 0x47, 0x33, 0x0f, 0xb8, 0x04, 0x1f, 0xbd, 0x2d, + 0xf8, 0xa5, 0xfb, 0xba, 0xda, 0x99, 0x42, 0xbe, 0xaf, 0xbb, 0x90, 0x90, 0xdf, 0x28, 0x70, 0xbe, + 0xab, 0x89, 0x98, 0xfb, 0x6c, 0xbb, 0x82, 0x41, 0x1d, 0x5f, 0xcd, 0x3d, 0xad, 0xa9, 0xd9, 0xa3, + 0x2d, 0xdb, 0xae, 0x70, 0x83, 0x5f, 0x69, 0x36, 0xd2, 0x2f, 0x57, 0x7b, 0xd1, 0x49, 0x66, 0xbf, + 0xd0, 0x93, 0x90, 0x15, 0x1b, 0xbd, 0x16, 0xe7, 0xa4, 0xe2, 0x5e, 0x3b, 0xde, 0xcd, 0xfe, 0x54, + 0x3f, 0x8c, 0xc6, 0xfc, 0x8b, 0xed, 0xeb, 0xcb, 0x04, 0x0e, 0x16, 0xf7, 0xda, 0x6f, 0x87, 0x21, + 0x7d, 0x8c, 0x0c, 0xf2, 0xcb, 0x3e, 0x02, 0xf3, 0x56, 0x3f, 0xd6, 0x9c, 0x68, 0x70, 0x7e, 0x11, + 0xfb, 0xab, 0xe5, 0x21, 0x86, 0xf7, 0xc0, 0x7d, 0xd3, 0xf5, 0xc8, 0x35, 0x18, 0xc7, 0x72, 0xde, + 0xbf, 0x27, 0x20, 0xbc, 0x27, 0xf8, 0x9d, 0xc3, 0x67, 0xe5, 0x3b, 0x87, 0x23, 0xda, 0x2e, 0x10, + 0xfe, 0x82, 0x5c, 0x91, 0x6a, 0x60, 0x72, 0x13, 0x12, 0x25, 0x8e, 0x52, 0x43, 0xea, 0x55, 0xf0, + 0x63, 0x51, 0x30, 0x11, 0xed, 0x58, 0xa6, 0x64, 0x5c, 0xbb, 0x0e, 0xa7, 0x50, 0xfb, 0x1d, 0x1a, + 0x7c, 0x6f, 0xe8, 0xb3, 0x08, 0xd4, 0xde, 0x00, 0x82, 0xac, 0x39, 0xbc, 0xab, 0x07, 0xe5, 0xfe, + 0x2a, 0xcc, 0x22, 0xf7, 0xae, 0x55, 0x7a, 0x2a, 0xfe, 0x9b, 0xa0, 0xee, 0x78, 0x0e, 0xd5, 0xab, + 0xa6, 0x55, 0x6e, 0xf5, 0xe0, 0x02, 0x8c, 0x58, 0xf5, 0x2a, 0x8a, 0x48, 0xf0, 0x6d, 0xb4, 0xea, + 0x55, 0x79, 0x1b, 0xad, 0x7a, 0x35, 0x30, 0x7f, 0x8d, 0x56, 0xa8, 0x47, 0x07, 0x55, 0xff, 0xb1, + 0x02, 0xc0, 0x1f, 0xbc, 0xb1, 0xf9, 0xec, 0xb7, 0x70, 0xbe, 0x0e, 0x71, 0xdc, 0x4f, 0xa3, 0x70, + 0x60, 0xe3, 0xdd, 0xae, 0x2c, 0x8f, 0xf1, 0x8a, 0x97, 0xc3, 0x1b, 0x76, 0xe4, 0x82, 0x87, 0x10, + 0x65, 0xac, 0x15, 0xaa, 0xbb, 0x3e, 0xeb, 0x48, 0xc8, 0xca, 0xe1, 0x56, 0xd6, 0x10, 0xd5, 0x9e, + 0xc0, 0x69, 0xbe, 0xd6, 0x35, 0x43, 0xf7, 0xc2, 0xc6, 0xef, 0x75, 0xf9, 0xc3, 0x52, 0x34, 0x16, + 0x7b, 0x75, 0xa2, 0x03, 0x34, 0x36, 0x75, 0x50, 0xb3, 0xba, 0x57, 0xda, 0xef, 0xa4, 0xfd, 0x5d, + 0x48, 0xec, 0xe9, 0x66, 0xc5, 0x7f, 0x42, 0xf5, 0x4f, 0x84, 0x1a, 0x5a, 0x11, 0x65, 0xe0, 0x41, + 0xcd, 0x59, 0xde, 0x6c, 0x3d, 0x25, 0x53, 0x32, 0x1e, 0xf8, 0x9b, 0xc3, 0x47, 0xb6, 0x2f, 0xca, + 0xdf, 0x16, 0xed, 0xc7, 0xfb, 0x1b, 0x65, 0x18, 0xc0, 0xdf, 0x38, 0xc4, 0xf2, 0x96, 0xf1, 0x40, + 0x77, 0x0e, 0xa9, 0xa3, 0x7d, 0xa4, 0xc0, 0x5c, 0xf4, 0x64, 0x3c, 0xa0, 0xae, 0xab, 0x97, 0x29, + 0xf9, 0xd2, 0x60, 0xfe, 0xdf, 0x1d, 0x0a, 0xbf, 0x67, 0x8c, 0x50, 0xcb, 0x10, 0x97, 0xca, 0x34, + 0x7f, 0x18, 0xf3, 0xf5, 0xf1, 0xf3, 0x45, 0xe5, 0x1a, 0xf3, 0xee, 0xd0, 0x36, 0xa3, 0xcf, 0x4e, + 0xc0, 0x18, 0x7d, 0x4c, 0x2d, 0x4f, 0xfb, 0xbe, 0x22, 0x36, 0xa4, 0xe5, 0xcb, 0x66, 0xbf, 0xa7, + 0xe6, 0x4e, 0xd8, 0x6e, 0xe2, 0xb5, 0x41, 0xfd, 0xaa, 0x18, 0x3f, 0xb0, 0xb6, 0x4c, 0xc9, 0x1f, + 0x58, 0x5b, 0xa6, 0xb4, 0x3f, 0x28, 0x7e, 0xce, 0x8a, 0x7c, 0x8c, 0xfb, 0xbc, 0xed, 0x20, 0x6b, + 0x10, 0x3b, 0x10, 0x9f, 0xc2, 0x78, 0xdb, 0xdb, 0xf6, 0x81, 0x0c, 0x5f, 0x30, 0x03, 0x1a, 0xf9, + 0x05, 0x33, 0x00, 0x2f, 0xa7, 0x20, 0x2e, 0xfd, 0xa3, 0x82, 0xc4, 0x61, 0x42, 0x0c, 0x93, 0x43, + 0x97, 0x2f, 0x41, 0x5c, 0xfa, 0xf4, 0x4e, 0xa6, 0x60, 0x72, 0xd3, 0x36, 0xe8, 0x96, 0xed, 0x78, + 0xc9, 0x21, 0x36, 0xba, 0x4b, 0x75, 0xa3, 0xc2, 0x48, 0x95, 0xcb, 0x3f, 0x57, 0x60, 0xd2, 0xd7, + 0x4b, 0x00, 0xc6, 0xdf, 0xdc, 0xcd, 0xef, 0xe6, 0xd7, 0x92, 0x43, 0x4c, 0xe0, 0x56, 0x7e, 0x73, + 0x6d, 0x7d, 0xf3, 0x4e, 0x52, 0x61, 0x83, 0xed, 0xdd, 0xcd, 0x4d, 0x36, 0x18, 0x26, 0x09, 0x88, + 0xed, 0xec, 0xe6, 0x72, 0xf9, 0xfc, 0x5a, 0x7e, 0x2d, 0x39, 0xc2, 0x98, 0x6e, 0xdf, 0x5a, 0xbf, + 0x9f, 0x5f, 0x4b, 0x8e, 0x32, 0xba, 0xdd, 0xcd, 0x7b, 0x9b, 0x0f, 0xdf, 0xde, 0x4c, 0x8e, 0x71, + 0xba, 0xec, 0x83, 0xf5, 0x47, 0x8f, 0xf2, 0x6b, 0xc9, 0x71, 0x46, 0x77, 0x3f, 0x7f, 0x6b, 0x27, + 0xbf, 0x96, 0x9c, 0x60, 0x53, 0x5b, 0xdb, 0xf9, 0xfc, 0x83, 0x2d, 0x36, 0x35, 0xc9, 0x86, 0xb9, + 0x5b, 0x9b, 0xb9, 0xfc, 0x7d, 0x26, 0x25, 0xc6, 0x2c, 0xdc, 0xce, 0x6f, 0xe4, 0x73, 0x6c, 0x12, + 0x56, 0x7f, 0x3f, 0x06, 0x53, 0xb8, 0x6d, 0xfe, 0x93, 0xef, 0x6b, 0x10, 0xe7, 0x87, 0x85, 0x3f, + 0x5b, 0x48, 0x91, 0x9c, 0x9a, 0x6f, 0x7b, 0x8c, 0xcf, 0xb3, 0x75, 0xd3, 0x86, 0xc8, 0x4d, 0x98, + 0x92, 0x98, 0x5c, 0x32, 0x1d, 0x72, 0xb1, 0xbb, 0x39, 0xf5, 0x02, 0x8e, 0xbb, 0x9d, 0x5f, 0x6d, + 0x88, 0x69, 0xe5, 0x29, 0x69, 0x40, 0xad, 0x12, 0xd3, 0xf1, 0x5a, 0xa3, 0x49, 0x4f, 0x1b, 0x22, + 0x5f, 0x83, 0x38, 0xbf, 0xa2, 0xb8, 0xd6, 0x33, 0x21, 0x7f, 0xe4, 0xe6, 0xea, 0x61, 0x42, 0x06, + 0x26, 0xef, 0x50, 0x8f, 0xb3, 0xcf, 0x86, 0xec, 0xe1, 0x85, 0x99, 0x92, 0x5c, 0xd1, 0x86, 0xc8, + 0x06, 0xc4, 0x7c, 0x7a, 0x97, 0x70, 0xfb, 0xba, 0x5d, 0xb5, 0xa9, 0x54, 0x87, 0x69, 0x91, 0x6f, + 0xb4, 0xa1, 0x57, 0x15, 0x66, 0x3d, 0xaf, 0x0f, 0xda, 0xac, 0x8f, 0x94, 0x0d, 0x3d, 0xac, 0x5f, + 0x83, 0x84, 0x5f, 0x23, 0x70, 0x19, 0x0b, 0xd2, 0x0d, 0x11, 0x2d, 0x1e, 0x7a, 0x4a, 0x99, 0x16, + 0xc9, 0xe7, 0xa1, 0x10, 0x23, 0x25, 0xde, 0x68, 0x5a, 0xea, 0x21, 0x25, 0x0b, 0x09, 0x9e, 0x39, + 0x1e, 0x76, 0xf0, 0x47, 0x4e, 0x29, 0xdd, 0x65, 0xac, 0xfe, 0x20, 0x06, 0xe3, 0xfc, 0xd9, 0x8e, + 0xbc, 0x05, 0xc0, 0x7f, 0xe1, 0x05, 0x3f, 0xd7, 0xf1, 0x8f, 0x24, 0xa9, 0xf9, 0xce, 0x6f, 0x7d, + 0xda, 0xc2, 0x77, 0xff, 0xf4, 0xb7, 0x1f, 0x0d, 0x9f, 0xd6, 0xa6, 0x57, 0x1e, 0x5f, 0x5d, 0x39, + 0xb0, 0x8b, 0xe2, 0x4f, 0xb7, 0x37, 0x94, 0xcb, 0xe4, 0x6d, 0x00, 0x6e, 0x4d, 0x54, 0x6e, 0xd4, + 0x42, 0x6e, 0x7a, 0x7b, 0x4d, 0xd9, 0x2e, 0x98, 0x17, 0x8c, 0x4c, 0xf0, 0x37, 0x61, 0x2a, 0x10, + 0xbc, 0x43, 0x3d, 0xb1, 0x86, 0x1d, 0xfe, 0xdf, 0xd0, 0xd5, 0xff, 0x73, 0x28, 0x7c, 0x5e, 0x9b, + 0x11, 0xc2, 0x5d, 0xea, 0x49, 0xf2, 0x2d, 0x48, 0xca, 0x2f, 0xcc, 0x68, 0xfe, 0xd9, 0xce, 0x6f, + 0xcf, 0x5c, 0xcd, 0xb9, 0x5e, 0x0f, 0xd3, 0x5a, 0x1a, 0x95, 0x2d, 0x68, 0xb3, 0xbe, 0x27, 0xd2, + 0x23, 0x33, 0x65, 0xfa, 0xde, 0x85, 0xb8, 0xd8, 0x7b, 0x54, 0x15, 0x2c, 0x75, 0x9f, 0x01, 0x91, + 0x42, 0xf9, 0xb3, 0xda, 0x29, 0x5f, 0x7e, 0x8d, 0xf3, 0x31, 0xd1, 0x77, 0x06, 0x4f, 0x51, 0xb3, + 0x28, 0x6e, 0x5a, 0x8b, 0x31, 0x71, 0x78, 0xf3, 0x32, 0x41, 0xa5, 0x67, 0x4b, 0x5b, 0x2f, 0xa2, + 0xd0, 0x45, 0x6d, 0x81, 0x09, 0x2d, 0x32, 0x2a, 0x6a, 0xac, 0xf0, 0xaf, 0x8f, 0xa2, 0x10, 0x61, + 0x4a, 0x36, 0x07, 0x4f, 0x6d, 0x67, 0x51, 0xf0, 0x5c, 0x2a, 0x19, 0x58, 0xbb, 0xf2, 0x1d, 0x76, + 0x4b, 0x7e, 0x20, 0x8c, 0x7e, 0x96, 0xac, 0x27, 0x8c, 0x4e, 0x45, 0x8c, 0xae, 0x23, 0x8d, 0x64, + 0xf4, 0x3b, 0xcf, 0x98, 0x19, 0x55, 0xd4, 0x42, 0x2e, 0xb7, 0x79, 0x40, 0x6e, 0x0f, 0x94, 0x31, + 0x85, 0x1c, 0xd2, 0x2e, 0xc7, 0x78, 0x4e, 0x99, 0x54, 0x04, 0x1a, 0x21, 0xf2, 0x7a, 0xf0, 0x85, + 0x78, 0x55, 0x21, 0x37, 0x60, 0xfc, 0x2e, 0xfe, 0x57, 0x9d, 0x74, 0xf1, 0x34, 0xc5, 0xcf, 0x29, + 0x27, 0xca, 0xed, 0xd3, 0xd2, 0x61, 0x50, 0x64, 0xbe, 0xf3, 0xbb, 0x4f, 0x17, 0x95, 0x4f, 0x3e, + 0x5d, 0x54, 0xfe, 0xfa, 0xe9, 0xa2, 0xf2, 0xd1, 0x67, 0x8b, 0x43, 0x9f, 0x7c, 0xb6, 0x38, 0xf4, + 0xe7, 0xcf, 0x16, 0x87, 0xbe, 0xfe, 0x72, 0xd9, 0xf4, 0xf6, 0xeb, 0xc5, 0x4c, 0xc9, 0xae, 0xae, + 0xe8, 0x4e, 0x55, 0x37, 0xf4, 0x9a, 0x63, 0x1f, 0xd0, 0x92, 0x27, 0x46, 0x2b, 0xe2, 0x7f, 0xf2, + 0x1f, 0x0f, 0xcf, 0xde, 0x42, 0x60, 0x8b, 0x4f, 0x67, 0xd6, 0xed, 0xcc, 0xad, 0x9a, 0x59, 0x1c, + 0x47, 0x1b, 0x5e, 0xfb, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x33, 0xb3, 0x1f, 0x9e, 0x15, 0x30, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3625,11 +3625,17 @@ func (m *JobSubmitRequestItem) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.Price != 0 { - i -= 8 - encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Price)))) + if m.ExperimentalPriceInfo != nil { + { + size, err := m.ExperimentalPriceInfo.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintSubmit(dAtA, i, uint64(size)) + } i-- - dAtA[i] = 0x69 + dAtA[i] = 0x6a } if len(m.Scheduler) > 0 { i -= len(m.Scheduler) @@ -3839,20 +3845,20 @@ func (m *IngressConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { } } if len(m.Ports) > 0 { - dAtA3 := make([]byte, len(m.Ports)*10) - var j2 int + dAtA4 := make([]byte, len(m.Ports)*10) + var j3 int for _, num := range m.Ports { for num >= 1<<7 { - dAtA3[j2] = uint8(uint64(num)&0x7f | 0x80) + dAtA4[j3] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j2++ + j3++ } - dAtA3[j2] = uint8(num) - j2++ + dAtA4[j3] = uint8(num) + j3++ } - i -= j2 - copy(dAtA[i:], dAtA3[:j2]) - i = encodeVarintSubmit(dAtA, i, uint64(j2)) + i -= j3 + copy(dAtA[i:], dAtA4[:j3]) + i = encodeVarintSubmit(dAtA, i, uint64(j3)) i-- dAtA[i] = 0x12 } @@ -3885,20 +3891,20 @@ func (m *ServiceConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { var l int _ = l if len(m.Ports) > 0 { - dAtA5 := make([]byte, len(m.Ports)*10) - var j4 int + dAtA6 := make([]byte, len(m.Ports)*10) + var j5 int for _, num := range m.Ports { for num >= 1<<7 { - dAtA5[j4] = uint8(uint64(num)&0x7f | 0x80) + dAtA6[j5] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j4++ + j5++ } - dAtA5[j4] = uint8(num) - j4++ + dAtA6[j5] = uint8(num) + j5++ } - i -= j4 - copy(dAtA[i:], dAtA5[:j4]) - i = encodeVarintSubmit(dAtA, i, uint64(j4)) + i -= j5 + copy(dAtA[i:], dAtA6[:j5]) + i = encodeVarintSubmit(dAtA, i, uint64(j5)) i-- dAtA[i] = 0x12 } @@ -4151,20 +4157,20 @@ func (m *JobSetFilter) MarshalToSizedBuffer(dAtA []byte) (int, error) { var l int _ = l if len(m.States) > 0 { - dAtA8 := make([]byte, len(m.States)*10) - var j7 int + dAtA9 := make([]byte, len(m.States)*10) + var j8 int for _, num := range m.States { for num >= 1<<7 { - dAtA8[j7] = uint8(uint64(num)&0x7f | 0x80) + dAtA9[j8] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j7++ + j8++ } - dAtA8[j7] = uint8(num) - j7++ + dAtA9[j8] = uint8(num) + j8++ } - i -= j7 - copy(dAtA[i:], dAtA8[:j7]) - i = encodeVarintSubmit(dAtA, i, uint64(j7)) + i -= j8 + copy(dAtA[i:], dAtA9[:j8]) + i = encodeVarintSubmit(dAtA, i, uint64(j8)) i-- dAtA[i] = 0xa } @@ -5564,20 +5570,20 @@ func (m *QueueCancelRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { var l int _ = l if len(m.JobStates) > 0 { - dAtA20 := make([]byte, len(m.JobStates)*10) - var j19 int + dAtA21 := make([]byte, len(m.JobStates)*10) + var j20 int for _, num := range m.JobStates { for num >= 1<<7 { - dAtA20[j19] = uint8(uint64(num)&0x7f | 0x80) + dAtA21[j20] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j19++ + j20++ } - dAtA20[j19] = uint8(num) - j19++ + dAtA21[j20] = uint8(num) + j20++ } - i -= j19 - copy(dAtA[i:], dAtA20[:j19]) - i = encodeVarintSubmit(dAtA, i, uint64(j19)) + i -= j20 + copy(dAtA[i:], dAtA21[:j20]) + i = encodeVarintSubmit(dAtA, i, uint64(j20)) i-- dAtA[i] = 0x1a } @@ -5678,8 +5684,9 @@ func (m *JobSubmitRequestItem) Size() (n int) { if l > 0 { n += 1 + l + sovSubmit(uint64(l)) } - if m.Price != 0 { - n += 9 + if m.ExperimentalPriceInfo != nil { + l = m.ExperimentalPriceInfo.Size() + n += 1 + l + sovSubmit(uint64(l)) } return n } @@ -7155,16 +7162,41 @@ func (m *JobSubmitRequestItem) Unmarshal(dAtA []byte) error { m.Scheduler = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 13: - if wireType != 1 { - return fmt.Errorf("proto: wrong wireType = %d for field Price", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ExperimentalPriceInfo", wireType) } - var v uint64 - if (iNdEx + 8) > l { + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSubmit + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthSubmit + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthSubmit + } + if postIndex > l { return io.ErrUnexpectedEOF } - v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) - iNdEx += 8 - m.Price = float64(math.Float64frombits(v)) + if m.ExperimentalPriceInfo == nil { + m.ExperimentalPriceInfo = &ExperimentalPriceInfo{} + } + if err := m.ExperimentalPriceInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipSubmit(dAtA[iNdEx:]) diff --git a/pkg/api/submit.proto b/pkg/api/submit.proto index 08f62f8bae8..0e2f92eb1d0 100644 --- a/pkg/api/submit.proto +++ b/pkg/api/submit.proto @@ -26,7 +26,7 @@ message JobSubmitRequestItem { // Indicates which scheduler should manage this job. // If empty, the default scheduler is used. string scheduler = 11; - double price = 13; + ExperimentalPriceInfo experimentalPriceInfo = 13; } message IngressConfig {