From 9b85c5b76a453f6156fb814f3114c2677304d4c5 Mon Sep 17 00:00:00 2001 From: Noah Held <41909795+zuqq@users.noreply.github.com> Date: Wed, 7 Feb 2024 12:36:30 +0000 Subject: [PATCH] Propagate additional annotations to pods (#3379) --- .../executor/util/kubernetes_objects_test.go | 7 +- internal/scheduler/api.go | 16 + internal/scheduler/api_test.go | 30 +- internal/scheduler/scheduler.go | 6 +- internal/scheduler/scheduler_test.go | 3 - pkg/armadaevents/events.pb.go | 621 +++++++----------- pkg/armadaevents/events.proto | 4 +- 7 files changed, 268 insertions(+), 419 deletions(-) diff --git a/internal/executor/util/kubernetes_objects_test.go b/internal/executor/util/kubernetes_objects_test.go index b76313c84cd..ae5c3ff2137 100644 --- a/internal/executor/util/kubernetes_objects_test.go +++ b/internal/executor/util/kubernetes_objects_test.go @@ -494,7 +494,7 @@ func TestCreatePodFromExecutorApiJob(t *testing.T) { Job: &armadaevents.SubmitJob{ ObjectMeta: &armadaevents.ObjectMeta{ Labels: map[string]string{}, - Annotations: map[string]string{}, + Annotations: map[string]string{"runtime_gang_cardinality": "3"}, Namespace: "test-namespace", }, JobId: jobId, @@ -520,8 +520,9 @@ func TestCreatePodFromExecutorApiJob(t *testing.T) { domain.PodCount: "1", }, Annotations: map[string]string{ - domain.JobSetId: "job-set", - domain.Owner: "user", + domain.JobSetId: "job-set", + domain.Owner: "user", + "runtime_gang_cardinality": "3", }, }, Spec: v1.PodSpec{ diff --git a/internal/scheduler/api.go b/internal/scheduler/api.go index 7a5cfa28212..fa88b0f4b3a 100644 --- a/internal/scheduler/api.go +++ b/internal/scheduler/api.go @@ -144,6 +144,7 @@ func (srv *ExecutorApi) LeaseJobRuns(stream executorapi.ExecutorApi_LeaseJobRuns return err } addTolerations(submitMsg, PodRequirementsOverlay.Tolerations) + addAnnotations(submitMsg, PodRequirementsOverlay.Annotations) } var groups []string @@ -239,6 +240,21 @@ func addTolerations(job *armadaevents.SubmitJob, tolerations []v1.Toleration) { } } +func addAnnotations(job *armadaevents.SubmitJob, annotations map[string]string) { + if job == nil || len(annotations) == 0 { + return + } + if job.ObjectMeta == nil { + job.ObjectMeta = &armadaevents.ObjectMeta{} + } + if job.ObjectMeta.Annotations == nil { + job.ObjectMeta.Annotations = make(map[string]string, len(annotations)) + } + for k, v := range annotations { + job.ObjectMeta.Annotations[k] = v + } +} + // ReportEvents publishes all eventSequences to Pulsar. The eventSequences are compacted for more efficient publishing. func (srv *ExecutorApi) ReportEvents(grpcCtx context.Context, list *executorapi.EventList) (*types.Empty, error) { ctx := armadacontext.FromGrpcCtx(grpcCtx) diff --git a/internal/scheduler/api_test.go b/internal/scheduler/api_test.go index d0312b93e66..1e734aab4be 100644 --- a/internal/scheduler/api_test.go +++ b/internal/scheduler/api_test.go @@ -83,6 +83,7 @@ func TestExecutorApi_LeaseJobRuns(t *testing.T) { submit, compressedSubmit := submitMsg( t, + nil, &v1.PodSpec{ NodeSelector: map[string]string{nodeIdName: "node-id"}, }, @@ -97,7 +98,7 @@ func TestExecutorApi_LeaseJobRuns(t *testing.T) { SubmitMessage: compressedSubmit, } - submitWithoutNodeSelector, compressedSubmitNoNodeSelector := submitMsg(t, &v1.PodSpec{}) + submitWithoutNodeSelector, compressedSubmitNoNodeSelector := submitMsg(t, nil, nil) leaseWithoutNode := &database.JobRunLease{ RunID: uuid.New(), Queue: "test-queue", @@ -114,7 +115,7 @@ func TestExecutorApi_LeaseJobRuns(t *testing.T) { Effect: v1.TaintEffectNoSchedule, }, } - leaseWithTolerations := &database.JobRunLease{ + leaseWithOverlay := &database.JobRunLease{ RunID: uuid.New(), Queue: "test-queue", JobSet: "test-jobset", @@ -127,18 +128,22 @@ func TestExecutorApi_LeaseJobRuns(t *testing.T) { PodRequirementsOverlay: protoutil.MustMarshall( &schedulerobjects.PodRequirements{ Tolerations: tolerations, + Annotations: map[string]string{"runtime_gang_cardinality": "3"}, Priority: 1000, }, ), } - submitWithTolerations, _ := submitMsg( + submitWithOverlay, _ := submitMsg( t, + &armadaevents.ObjectMeta{ + Annotations: map[string]string{"runtime_gang_cardinality": "3"}, + }, &v1.PodSpec{ NodeSelector: map[string]string{nodeIdName: "node-id"}, Tolerations: tolerations, }, ) - submitWithTolerations.JobId = submit.JobId + submitWithOverlay.JobId = submit.JobId tests := map[string]struct { request *executorapi.LeaseRequest @@ -195,17 +200,17 @@ func TestExecutorApi_LeaseJobRuns(t *testing.T) { }, "run with PodRequirementsOverlay": { request: defaultRequest, - leases: []*database.JobRunLease{leaseWithTolerations}, + leases: []*database.JobRunLease{leaseWithOverlay}, expectedExecutor: defaultExpectedExecutor, expectedMsgs: []*executorapi.LeaseStreamMessage{ { Event: &executorapi.LeaseStreamMessage_Lease{Lease: &executorapi.JobRunLease{ - JobRunId: armadaevents.ProtoUuidFromUuid(leaseWithTolerations.RunID), - Queue: leaseWithTolerations.Queue, - Jobset: leaseWithTolerations.JobSet, - User: leaseWithTolerations.UserID, + JobRunId: armadaevents.ProtoUuidFromUuid(leaseWithOverlay.RunID), + Queue: leaseWithOverlay.Queue, + Jobset: leaseWithOverlay.JobSet, + User: leaseWithOverlay.UserID, Groups: groups, - Job: submitWithTolerations, + Job: submitWithOverlay, }}, }, { @@ -406,9 +411,10 @@ func TestExecutorApi_Publish(t *testing.T) { } } -func submitMsg(t *testing.T, podSpec *v1.PodSpec) (*armadaevents.SubmitJob, []byte) { +func submitMsg(t *testing.T, objectMeta *armadaevents.ObjectMeta, podSpec *v1.PodSpec) (*armadaevents.SubmitJob, []byte) { submitMsg := &armadaevents.SubmitJob{ - JobId: armadaevents.ProtoUuidFromUuid(uuid.New()), + JobId: armadaevents.ProtoUuidFromUuid(uuid.New()), + ObjectMeta: objectMeta, MainObject: &armadaevents.KubernetesMainObject{ Object: &armadaevents.KubernetesMainObject_PodSpec{ PodSpec: &armadaevents.PodSpecWithAvoidList{ diff --git a/internal/scheduler/scheduler.go b/internal/scheduler/scheduler.go index 00593cb80be..56a841328bd 100644 --- a/internal/scheduler/scheduler.go +++ b/internal/scheduler/scheduler.go @@ -542,10 +542,6 @@ func AppendEventSequencesFromScheduledJobs(eventSequences []*armadaevents.EventS if err != nil { return nil, err } - additionalAnnotations, found := additionalAnnotationsByJobId[job.Id()] - if !found { - additionalAnnotations = make(map[string]string) - } run := job.LatestRun() if run == nil { return nil, errors.Errorf("attempting to generate lease eventSequences for job %s with no associated runs", job.Id()) @@ -569,9 +565,9 @@ func AppendEventSequencesFromScheduledJobs(eventSequences []*armadaevents.EventS UpdateSequenceNumber: job.QueuedVersion(), HasScheduledAtPriority: hasScheduledAtPriority, ScheduledAtPriority: scheduledAtPriority, - AdditionalAnnotations: additionalAnnotations, PodRequirementsOverlay: &schedulerobjects.PodRequirements{ Tolerations: jctx.AdditionalTolerations, + Annotations: additionalAnnotationsByJobId[job.Id()], Priority: scheduledAtPriority, }, }, diff --git a/internal/scheduler/scheduler_test.go b/internal/scheduler/scheduler_test.go index 781b8a2fbfc..c17f7c5ddf2 100644 --- a/internal/scheduler/scheduler_test.go +++ b/internal/scheduler/scheduler_test.go @@ -1843,7 +1843,6 @@ func TestCycleConsistency(t *testing.T) { UpdateSequenceNumber: 1, HasScheduledAtPriority: true, ScheduledAtPriority: 10, - AdditionalAnnotations: make(map[string]string), PodRequirementsOverlay: &schedulerobjects.PodRequirements{Priority: 10}, }, }, @@ -1928,7 +1927,6 @@ func TestCycleConsistency(t *testing.T) { UpdateSequenceNumber: 1, HasScheduledAtPriority: true, ScheduledAtPriority: 10, - AdditionalAnnotations: make(map[string]string), PodRequirementsOverlay: &schedulerobjects.PodRequirements{Priority: 10}, }, }, @@ -1992,7 +1990,6 @@ func TestCycleConsistency(t *testing.T) { UpdateSequenceNumber: 1, HasScheduledAtPriority: true, ScheduledAtPriority: 10, - AdditionalAnnotations: make(map[string]string), PodRequirementsOverlay: &schedulerobjects.PodRequirements{Priority: 10}, }, }, diff --git a/pkg/armadaevents/events.pb.go b/pkg/armadaevents/events.pb.go index 9a784f8f3e7..a38940932b6 100644 --- a/pkg/armadaevents/events.pb.go +++ b/pkg/armadaevents/events.pb.go @@ -1668,8 +1668,6 @@ type JobRunLeased struct { // used to distinguish this case from the case where the job was scheduled // as a home job. ScheduledAtPriority int32 `protobuf:"varint,7,opt,name=scheduled_at_priority,json=scheduledAtPriority,proto3" json:"scheduledAtPriority,omitempty"` - // Additional annotations to be added to the PodSpec. - AdditionalAnnotations map[string]string `protobuf:"bytes,8,rep,name=additional_annotations,json=additionalAnnotations,proto3" json:"additionalAnnotations,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // The scheduler uses this field to modify the pod requirements of a job; // for example, it may add additional tolerations to runs that are scheduled // as away jobs. @@ -1758,13 +1756,6 @@ func (m *JobRunLeased) GetScheduledAtPriority() int32 { return 0 } -func (m *JobRunLeased) GetAdditionalAnnotations() map[string]string { - if m != nil { - return m.AdditionalAnnotations - } - return nil -} - func (m *JobRunLeased) GetPodRequirementsOverlay() *schedulerobjects.PodRequirements { if m != nil { return m.PodRequirementsOverlay @@ -3503,7 +3494,6 @@ func init() { proto.RegisterType((*CancelledJob)(nil), "armadaevents.CancelledJob") proto.RegisterType((*JobSucceeded)(nil), "armadaevents.JobSucceeded") proto.RegisterType((*JobRunLeased)(nil), "armadaevents.JobRunLeased") - proto.RegisterMapType((map[string]string)(nil), "armadaevents.JobRunLeased.AdditionalAnnotationsEntry") proto.RegisterType((*JobRunAssigned)(nil), "armadaevents.JobRunAssigned") proto.RegisterType((*JobRunRunning)(nil), "armadaevents.JobRunRunning") proto.RegisterType((*KubernetesResourceInfo)(nil), "armadaevents.KubernetesResourceInfo") @@ -3536,236 +3526,233 @@ func init() { func init() { proto.RegisterFile("pkg/armadaevents/events.proto", fileDescriptor_6aab92ca59e015f8) } var fileDescriptor_6aab92ca59e015f8 = []byte{ - // 3658 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5b, 0x4b, 0x70, 0x1b, 0x47, - 0x7a, 0xd6, 0x00, 0x24, 0x1e, 0x3f, 0xf8, 0x80, 0x5a, 0x24, 0x0d, 0xd1, 0x12, 0x41, 0x8d, 0x9c, - 0x58, 0x76, 0xd9, 0xa0, 0x4d, 0x3f, 0xca, 0x8f, 0x94, 0x5d, 0x84, 0x44, 0xeb, 0x61, 0x51, 0xa2, - 0x41, 0xd1, 0x51, 0x5c, 0x4e, 0xc1, 0x03, 0x4c, 0x13, 0x1c, 0x71, 0x30, 0x33, 0x9e, 0x19, 0x50, - 0x64, 0x95, 0x0f, 0x71, 0x2a, 0x71, 0x6e, 0x8e, 0x52, 0xf1, 0x21, 0x55, 0x39, 0x38, 0xd7, 0xb8, - 0x2a, 0xe7, 0x9c, 0x73, 0x8a, 0x0f, 0xa9, 0x94, 0x73, 0xcb, 0x09, 0x49, 0xd9, 0xb5, 0x87, 0xc5, - 0x61, 0xcf, 0xbb, 0x7b, 0xd9, 0xad, 0x7e, 0xcd, 0x74, 0xcf, 0x0c, 0x24, 0xea, 0xb5, 0xf2, 0x96, - 0x4e, 0xe4, 0x7c, 0xff, 0x73, 0xba, 0xff, 0xfe, 0xe7, 0xef, 0xbf, 0x1b, 0x70, 0xda, 0xdb, 0xeb, - 0xad, 0x18, 0x7e, 0xdf, 0x30, 0x0d, 0xbc, 0x8f, 0x9d, 0x30, 0x58, 0x61, 0x7f, 0x1a, 0x9e, 0xef, - 0x86, 0x2e, 0x9a, 0x92, 0x49, 0x8b, 0xfa, 0xde, 0x5b, 0x41, 0xc3, 0x72, 0x57, 0x0c, 0xcf, 0x5a, - 0xe9, 0xba, 0x3e, 0x5e, 0xd9, 0x7f, 0x75, 0xa5, 0x87, 0x1d, 0xec, 0x1b, 0x21, 0x36, 0x99, 0xc4, - 0xe2, 0x39, 0x89, 0xc7, 0xc1, 0xe1, 0x6d, 0xd7, 0xdf, 0xb3, 0x9c, 0x5e, 0x16, 0x67, 0xbd, 0xe7, - 0xba, 0x3d, 0x1b, 0xaf, 0xd0, 0xa7, 0xce, 0x60, 0x67, 0x25, 0xb4, 0xfa, 0x38, 0x08, 0x8d, 0xbe, - 0xc7, 0x19, 0x96, 0x92, 0x0c, 0xb7, 0x7d, 0xc3, 0xf3, 0xb0, 0xcf, 0x9d, 0x5b, 0x7c, 0x3d, 0x36, - 0xd5, 0x37, 0xba, 0xbb, 0x96, 0x83, 0xfd, 0xc3, 0x15, 0xfa, 0x3e, 0x9e, 0xb5, 0xe2, 0xe3, 0xc0, - 0x1d, 0xf8, 0x5d, 0x9c, 0x32, 0xfb, 0x72, 0xcf, 0x0a, 0x77, 0x07, 0x9d, 0x46, 0xd7, 0xed, 0xaf, - 0xf4, 0xdc, 0x9e, 0x1b, 0xab, 0x27, 0x4f, 0xf4, 0x81, 0xfe, 0xc7, 0xd9, 0xdf, 0xb1, 0x9c, 0x10, - 0xfb, 0x8e, 0x61, 0xaf, 0x04, 0xdd, 0x5d, 0x6c, 0x0e, 0x6c, 0xec, 0xc7, 0xff, 0xb9, 0x9d, 0x5b, - 0xb8, 0x1b, 0x06, 0x29, 0x80, 0xc9, 0xea, 0x77, 0xe6, 0x60, 0x7a, 0x9d, 0x0c, 0xdd, 0x16, 0xfe, - 0x7c, 0x80, 0x9d, 0x2e, 0x46, 0x2f, 0xc0, 0xe4, 0xe7, 0x03, 0x3c, 0xc0, 0x35, 0x6d, 0x59, 0x3b, - 0x57, 0x6e, 0x9e, 0x18, 0x0d, 0xeb, 0xb3, 0x14, 0x78, 0xc9, 0xed, 0x5b, 0x21, 0xee, 0x7b, 0xe1, - 0x61, 0x8b, 0x71, 0xa0, 0x77, 0x60, 0xea, 0x96, 0xdb, 0x69, 0x07, 0x38, 0x6c, 0x3b, 0x46, 0x1f, - 0xd7, 0x72, 0x54, 0xa2, 0x36, 0x1a, 0xd6, 0xe7, 0x6e, 0xb9, 0x9d, 0x2d, 0x1c, 0x5e, 0x33, 0xfa, - 0xb2, 0x18, 0xc4, 0x28, 0x7a, 0x19, 0x8a, 0x83, 0x00, 0xfb, 0x6d, 0xcb, 0xac, 0xe5, 0xa9, 0xd8, - 0xdc, 0x68, 0x58, 0xaf, 0x12, 0xe8, 0xb2, 0x29, 0x89, 0x14, 0x18, 0x82, 0x5e, 0x82, 0x42, 0xcf, - 0x77, 0x07, 0x5e, 0x50, 0x9b, 0x58, 0xce, 0x0b, 0x6e, 0x86, 0xc8, 0xdc, 0x0c, 0x41, 0xd7, 0xa1, - 0xc0, 0xe2, 0xa1, 0x36, 0xb9, 0x9c, 0x3f, 0x57, 0x59, 0x3d, 0xd3, 0x90, 0x83, 0xa4, 0xa1, 0xbc, - 0x30, 0x7b, 0x62, 0x0a, 0x19, 0x5d, 0x56, 0xc8, 0xc3, 0xea, 0x97, 0xc7, 0x61, 0x92, 0xf2, 0xa1, - 0xeb, 0x50, 0xec, 0xfa, 0x98, 0x4c, 0x56, 0x0d, 0x2d, 0x6b, 0xe7, 0x2a, 0xab, 0x8b, 0x0d, 0x16, - 0x03, 0x0d, 0x31, 0x49, 0x8d, 0x1b, 0x22, 0x48, 0x9a, 0x27, 0x47, 0xc3, 0xfa, 0x71, 0xce, 0x1e, - 0x6b, 0xbd, 0xf3, 0x7f, 0x75, 0xad, 0x25, 0xb4, 0xa0, 0x4d, 0x28, 0x07, 0x83, 0x4e, 0xdf, 0x0a, - 0xaf, 0xb8, 0x1d, 0x3a, 0xe6, 0x95, 0xd5, 0x67, 0x54, 0x77, 0xb7, 0x04, 0xb9, 0xf9, 0xcc, 0x68, - 0x58, 0x3f, 0x11, 0x71, 0xc7, 0x1a, 0x2f, 0x1d, 0x6b, 0xc5, 0x4a, 0xd0, 0x2e, 0xcc, 0xfa, 0xd8, - 0xf3, 0x2d, 0xd7, 0xb7, 0x42, 0x2b, 0xc0, 0x44, 0x6f, 0x8e, 0xea, 0x3d, 0xad, 0xea, 0x6d, 0xa9, - 0x4c, 0xcd, 0xd3, 0xa3, 0x61, 0xfd, 0x64, 0x42, 0x52, 0xb1, 0x91, 0x54, 0x8b, 0x42, 0x40, 0x09, - 0x68, 0x0b, 0x87, 0x74, 0x3e, 0x2b, 0xab, 0xcb, 0x77, 0x35, 0xb6, 0x85, 0xc3, 0xe6, 0xf2, 0x68, - 0x58, 0x3f, 0x95, 0x96, 0x57, 0x4c, 0x66, 0xe8, 0x47, 0x36, 0x54, 0x65, 0xd4, 0x24, 0x2f, 0x38, - 0x41, 0x6d, 0x2e, 0x8d, 0xb7, 0x49, 0xb8, 0x9a, 0x4b, 0xa3, 0x61, 0x7d, 0x31, 0x29, 0xab, 0xd8, - 0x4b, 0x69, 0x26, 0xf3, 0xd3, 0x35, 0x9c, 0x2e, 0xb6, 0x89, 0x99, 0xc9, 0xac, 0xf9, 0x39, 0x2f, - 0xc8, 0x6c, 0x7e, 0x22, 0x6e, 0x75, 0x7e, 0x22, 0x18, 0x7d, 0x0a, 0x53, 0xd1, 0x03, 0x19, 0xaf, - 0x02, 0x8f, 0xa3, 0x6c, 0xa5, 0x64, 0xa4, 0x16, 0x47, 0xc3, 0xfa, 0x82, 0x2c, 0xa3, 0xa8, 0x56, - 0xb4, 0xc5, 0xda, 0x6d, 0x36, 0x32, 0xc5, 0xf1, 0xda, 0x19, 0x87, 0xac, 0xdd, 0x4e, 0x8f, 0x88, - 0xa2, 0x8d, 0x68, 0x27, 0x8b, 0x78, 0xd0, 0xed, 0x62, 0x6c, 0x62, 0xb3, 0x56, 0xca, 0xd2, 0x7e, - 0x45, 0xe2, 0x60, 0xda, 0x65, 0x19, 0x55, 0xbb, 0x4c, 0x21, 0x63, 0x7d, 0xcb, 0xed, 0xac, 0xfb, - 0xbe, 0xeb, 0x07, 0xb5, 0x72, 0xd6, 0x58, 0x5f, 0x11, 0x64, 0x36, 0xd6, 0x11, 0xb7, 0x3a, 0xd6, - 0x11, 0xcc, 0xfd, 0x6d, 0x0d, 0x9c, 0xab, 0xd8, 0x08, 0xb0, 0x59, 0x83, 0x31, 0xfe, 0x46, 0x1c, - 0x91, 0xbf, 0x11, 0x92, 0xf2, 0x37, 0xa2, 0x20, 0x13, 0x66, 0xd8, 0xf3, 0x5a, 0x10, 0x58, 0x3d, - 0x07, 0x9b, 0xb5, 0x0a, 0xd5, 0x7f, 0x2a, 0x4b, 0xbf, 0xe0, 0x69, 0x9e, 0x1a, 0x0d, 0xeb, 0x35, - 0x55, 0x4e, 0xb1, 0x91, 0xd0, 0x89, 0x3e, 0x83, 0x69, 0x86, 0xb4, 0x06, 0x8e, 0x63, 0x39, 0xbd, - 0xda, 0x14, 0x35, 0xf2, 0x6c, 0x96, 0x11, 0xce, 0xd2, 0x7c, 0x76, 0x34, 0xac, 0x3f, 0xa3, 0x48, - 0x29, 0x26, 0x54, 0x85, 0x24, 0x63, 0x30, 0x20, 0x9e, 0xd8, 0xe9, 0xac, 0x8c, 0x71, 0x45, 0x65, - 0x62, 0x19, 0x23, 0x21, 0xa9, 0x66, 0x8c, 0x04, 0x31, 0x9e, 0x0f, 0x3e, 0xc9, 0x33, 0xe3, 0xe7, - 0x83, 0xcf, 0xb3, 0x34, 0x1f, 0x19, 0x53, 0xad, 0x68, 0x43, 0x5f, 0x00, 0xf9, 0xf0, 0x5c, 0x18, - 0x78, 0xb6, 0xd5, 0x35, 0x42, 0x7c, 0x01, 0x87, 0xb8, 0x4b, 0x32, 0xf5, 0x2c, 0xb5, 0xa2, 0xa7, - 0xac, 0xa4, 0x38, 0x9b, 0xfa, 0x68, 0x58, 0x5f, 0xca, 0xd2, 0xa1, 0x58, 0xcd, 0xb4, 0x82, 0xfe, - 0x4a, 0x83, 0xf9, 0x20, 0x34, 0x1c, 0xd3, 0xb0, 0x5d, 0x07, 0x5f, 0x76, 0x7a, 0x3e, 0x0e, 0x82, - 0xcb, 0xce, 0x8e, 0x5b, 0xab, 0x52, 0xfb, 0x67, 0x13, 0x69, 0x3d, 0x8b, 0xb5, 0x79, 0x76, 0x34, - 0xac, 0xd7, 0x33, 0xb5, 0x28, 0x1e, 0x64, 0x1b, 0x42, 0x07, 0x70, 0x42, 0x54, 0x15, 0xdb, 0xa1, - 0x65, 0x5b, 0x81, 0x11, 0x5a, 0xae, 0x53, 0x3b, 0x4e, 0xed, 0x9f, 0x49, 0x66, 0xc7, 0x14, 0x63, - 0xf3, 0xcc, 0x68, 0x58, 0x3f, 0x9d, 0xa1, 0x41, 0xb1, 0x9d, 0x65, 0x22, 0x0e, 0xa1, 0x4d, 0x1f, - 0x13, 0x46, 0x6c, 0xd6, 0x4e, 0x8c, 0x0f, 0xa1, 0x88, 0x49, 0x0e, 0xa1, 0x08, 0xcc, 0x0a, 0xa1, - 0x88, 0x48, 0x2c, 0x79, 0x86, 0x1f, 0x5a, 0xc4, 0xec, 0x86, 0xe1, 0xef, 0x61, 0xbf, 0x36, 0x97, - 0x65, 0x69, 0x53, 0x65, 0x62, 0x96, 0x12, 0x92, 0xaa, 0xa5, 0x04, 0x11, 0xdd, 0xd1, 0x40, 0x75, - 0xcd, 0x72, 0x9d, 0x16, 0x29, 0x1b, 0x02, 0xf2, 0x7a, 0xf3, 0xd4, 0xe8, 0xf3, 0x77, 0x79, 0x3d, - 0x99, 0xbd, 0xf9, 0xfc, 0x68, 0x58, 0x3f, 0x3b, 0x56, 0x9b, 0xe2, 0xc8, 0x78, 0xa3, 0xe8, 0x26, - 0x54, 0x08, 0x11, 0xd3, 0x02, 0xcc, 0xac, 0x2d, 0x50, 0x1f, 0x4e, 0xa6, 0x7d, 0xe0, 0x0c, 0xb4, - 0x02, 0x99, 0x97, 0x24, 0x14, 0x3b, 0xb2, 0xaa, 0x66, 0x11, 0x26, 0xa9, 0xbc, 0x3e, 0x2a, 0xc0, - 0x89, 0x8c, 0xd8, 0x40, 0xef, 0x41, 0xc1, 0x1f, 0x38, 0xa4, 0x60, 0x63, 0x55, 0x0a, 0x52, 0xad, - 0x6e, 0x0f, 0x2c, 0x93, 0x55, 0x8b, 0xfe, 0xc0, 0x51, 0x6a, 0xb8, 0x49, 0x0a, 0x10, 0x79, 0x52, - 0x2d, 0x5a, 0x26, 0xaf, 0x46, 0xc6, 0xca, 0xdf, 0x72, 0x3b, 0xaa, 0x3c, 0x05, 0x10, 0x86, 0x69, - 0x11, 0x78, 0x6d, 0x8b, 0xac, 0x2a, 0x56, 0x67, 0x3c, 0xa7, 0xaa, 0xf9, 0x70, 0xd0, 0xc1, 0xbe, - 0x83, 0x43, 0x1c, 0x88, 0x77, 0xa0, 0xcb, 0x8a, 0x66, 0x11, 0x5f, 0x42, 0x24, 0xfd, 0x53, 0x32, - 0x8e, 0xbe, 0xd1, 0xa0, 0xd6, 0x37, 0x0e, 0xda, 0x02, 0x0c, 0xda, 0x3b, 0xae, 0xdf, 0xf6, 0xb0, - 0x6f, 0xb9, 0x26, 0x2d, 0x3e, 0x2b, 0xab, 0x7f, 0x76, 0xcf, 0x85, 0xd4, 0xd8, 0x30, 0x0e, 0x04, - 0x1c, 0x7c, 0xe0, 0xfa, 0x9b, 0x54, 0x7c, 0xdd, 0x09, 0xfd, 0xc3, 0xe6, 0xe9, 0xef, 0x87, 0xf5, - 0x63, 0x64, 0x5a, 0xfa, 0x59, 0x3c, 0xad, 0x6c, 0x18, 0xfd, 0xbd, 0x06, 0x0b, 0xa1, 0x1b, 0x1a, - 0x76, 0xbb, 0x3b, 0xe8, 0x0f, 0x6c, 0x23, 0xb4, 0xf6, 0x71, 0x7b, 0x10, 0x18, 0x3d, 0xcc, 0x6b, - 0xdc, 0x77, 0xef, 0xed, 0xd4, 0x0d, 0x22, 0x7f, 0x3e, 0x12, 0xdf, 0x26, 0xd2, 0xcc, 0xa7, 0x53, - 0xdc, 0xa7, 0xb9, 0x30, 0x83, 0xa5, 0x95, 0x89, 0x2e, 0xfe, 0x8b, 0x06, 0x8b, 0xe3, 0x5f, 0x13, - 0x9d, 0x85, 0xfc, 0x1e, 0x3e, 0xe4, 0xbb, 0x88, 0xe3, 0xa3, 0x61, 0x7d, 0x7a, 0x0f, 0x1f, 0x4a, - 0xa3, 0x4e, 0xa8, 0xe8, 0x2f, 0x60, 0x72, 0xdf, 0xb0, 0x07, 0x98, 0x87, 0x44, 0xa3, 0xc1, 0xf6, - 0x4b, 0x0d, 0x79, 0xbf, 0xd4, 0xf0, 0xf6, 0x7a, 0x04, 0x68, 0x88, 0x19, 0x69, 0x7c, 0x34, 0x30, - 0x9c, 0xd0, 0x0a, 0x0f, 0x59, 0xb8, 0x50, 0x05, 0x72, 0xb8, 0x50, 0xe0, 0x9d, 0xdc, 0x5b, 0xda, - 0xe2, 0xb7, 0x1a, 0x9c, 0x1c, 0xfb, 0xd2, 0x3f, 0x07, 0x0f, 0xf5, 0x36, 0x4c, 0x90, 0xc0, 0x27, - 0xfb, 0x9b, 0x5d, 0xab, 0xb7, 0xfb, 0xe6, 0xeb, 0xd4, 0x9d, 0x02, 0xdb, 0x8e, 0x30, 0x44, 0xde, - 0x8e, 0x30, 0x84, 0xec, 0xd1, 0x6c, 0xf7, 0xf6, 0x9b, 0xaf, 0x53, 0xa7, 0x0a, 0xcc, 0x08, 0x05, - 0x64, 0x23, 0x14, 0xd0, 0x7f, 0x57, 0x80, 0x72, 0xb4, 0x81, 0x90, 0xd6, 0xa0, 0xf6, 0x40, 0x6b, - 0xf0, 0x12, 0x54, 0x4d, 0x6c, 0xf2, 0x2f, 0x9f, 0xe5, 0x3a, 0x62, 0x35, 0x97, 0x59, 0x76, 0x55, - 0x68, 0x8a, 0xfc, 0x6c, 0x82, 0x84, 0x56, 0xa1, 0xc4, 0x0b, 0xed, 0x43, 0xba, 0x90, 0xa7, 0x9b, - 0x0b, 0xa3, 0x61, 0x1d, 0x09, 0x4c, 0x12, 0x8d, 0xf8, 0x50, 0x0b, 0x80, 0xed, 0x5e, 0x37, 0x70, - 0x68, 0xf0, 0x92, 0xbf, 0xa6, 0xbe, 0xc1, 0xf5, 0x88, 0xce, 0xf6, 0xa1, 0x31, 0xbf, 0xbc, 0x0f, - 0x8d, 0x51, 0xf4, 0x29, 0x40, 0xdf, 0xb0, 0x1c, 0x26, 0xc7, 0xeb, 0x7b, 0x7d, 0x5c, 0x4a, 0xd9, - 0x88, 0x38, 0x99, 0xf6, 0x58, 0x52, 0xd6, 0x1e, 0xa3, 0x64, 0xb7, 0xc8, 0xf7, 0xdb, 0xb5, 0x02, - 0x5d, 0xa5, 0x4b, 0xe3, 0x54, 0x73, 0xb5, 0xf3, 0x64, 0xc7, 0xc8, 0x45, 0x24, 0x9d, 0x42, 0x0b, - 0x19, 0x36, 0xdb, 0xda, 0xc1, 0xa1, 0xd5, 0xc7, 0xb4, 0xb2, 0xe7, 0xc3, 0x26, 0x30, 0x79, 0xd8, - 0x04, 0x86, 0xde, 0x02, 0x30, 0xc2, 0x0d, 0x37, 0x08, 0xaf, 0x3b, 0x5d, 0x4c, 0x2b, 0xf6, 0x12, - 0x73, 0x3f, 0x46, 0x65, 0xf7, 0x63, 0x14, 0xbd, 0x0b, 0x15, 0x8f, 0x7f, 0x84, 0x3a, 0x36, 0xa6, - 0x15, 0x79, 0x89, 0x7d, 0x52, 0x24, 0x58, 0x92, 0x95, 0xb9, 0xd1, 0x45, 0x98, 0xed, 0xba, 0x4e, - 0x77, 0xe0, 0xfb, 0xd8, 0xe9, 0x1e, 0x6e, 0x19, 0x3b, 0x98, 0x56, 0xdf, 0x25, 0x16, 0x2a, 0x09, - 0x92, 0x1c, 0x2a, 0x09, 0x12, 0x7a, 0x03, 0xca, 0x51, 0xf7, 0x82, 0x16, 0xd8, 0x65, 0xbe, 0x11, - 0x16, 0xa0, 0x24, 0x1c, 0x73, 0x12, 0xe7, 0xad, 0x20, 0xaa, 0xd2, 0x68, 0xd1, 0xcc, 0x9d, 0x97, - 0x60, 0xd9, 0x79, 0x09, 0x46, 0x97, 0xe1, 0x38, 0xfd, 0x2e, 0xb6, 0xc3, 0xd0, 0x6e, 0x07, 0xb8, - 0xeb, 0x3a, 0x66, 0x40, 0x6b, 0xe2, 0x3c, 0x73, 0x9f, 0x12, 0x6f, 0x84, 0xf6, 0x16, 0x23, 0xc9, - 0xee, 0x27, 0x48, 0xfa, 0x7f, 0x69, 0x30, 0x97, 0x15, 0x42, 0x89, 0x70, 0xd6, 0x1e, 0x49, 0x38, - 0x7f, 0x0c, 0x25, 0xcf, 0x35, 0xdb, 0x81, 0x87, 0xbb, 0x3c, 0x63, 0x25, 0x82, 0x79, 0xd3, 0x35, - 0xb7, 0x3c, 0xdc, 0xfd, 0x73, 0x2b, 0xdc, 0x5d, 0xdb, 0x77, 0x2d, 0xf3, 0xaa, 0x15, 0xf0, 0xa8, - 0xf3, 0x18, 0x45, 0xa9, 0x10, 0x8a, 0x1c, 0x6c, 0x96, 0xa0, 0xc0, 0xac, 0xe8, 0xff, 0x9d, 0x87, - 0x6a, 0x32, 0x6c, 0xff, 0x98, 0x5e, 0x05, 0xdd, 0x84, 0xa2, 0xc5, 0x4a, 0x66, 0x5e, 0x41, 0xfc, - 0x89, 0x94, 0xd3, 0x1b, 0x71, 0x43, 0xb0, 0xb1, 0xff, 0x6a, 0x83, 0xd7, 0xd6, 0x74, 0x08, 0xa8, - 0x66, 0x2e, 0xa9, 0x6a, 0xe6, 0x20, 0x6a, 0x41, 0x31, 0xc0, 0xfe, 0xbe, 0xd5, 0xc5, 0x3c, 0x39, - 0xd5, 0x65, 0xcd, 0x5d, 0xd7, 0xc7, 0x44, 0xe7, 0x16, 0x63, 0x89, 0x75, 0x72, 0x19, 0x55, 0x27, - 0x07, 0xd1, 0xc7, 0x50, 0xee, 0xba, 0xce, 0x8e, 0xd5, 0xdb, 0x30, 0x3c, 0x9e, 0x9e, 0x4e, 0x67, - 0x69, 0x3d, 0x2f, 0x98, 0x78, 0x13, 0x42, 0x3c, 0x26, 0x9a, 0x10, 0x11, 0x57, 0x3c, 0xa1, 0xbf, - 0x9a, 0x00, 0x88, 0x27, 0x07, 0xbd, 0x0d, 0x15, 0x7c, 0x80, 0xbb, 0x83, 0xd0, 0xf5, 0xc5, 0x77, - 0x82, 0xf7, 0xf4, 0x04, 0xac, 0x24, 0x76, 0x88, 0x51, 0xb2, 0x50, 0x1d, 0xa3, 0x8f, 0x03, 0xcf, - 0xe8, 0x8a, 0x66, 0x20, 0x75, 0x26, 0x02, 0xe5, 0x85, 0x1a, 0x81, 0xe8, 0x4f, 0x61, 0x82, 0xb6, - 0x0f, 0x59, 0x1f, 0x10, 0x8d, 0x86, 0xf5, 0x19, 0x47, 0x6d, 0x1c, 0x52, 0x3a, 0x7a, 0x1f, 0xa6, - 0xf7, 0xa2, 0xc0, 0x23, 0xbe, 0x4d, 0x50, 0x01, 0x5a, 0xda, 0xc5, 0x04, 0xc5, 0xbb, 0x29, 0x19, - 0x47, 0x3b, 0x50, 0x31, 0x1c, 0xc7, 0x0d, 0xe9, 0x37, 0x48, 0xf4, 0x06, 0x5f, 0x18, 0x17, 0xa6, - 0x8d, 0xb5, 0x98, 0x97, 0x55, 0x49, 0x34, 0x79, 0x48, 0x1a, 0xe4, 0xe4, 0x21, 0xc1, 0xa8, 0x05, - 0x05, 0xdb, 0xe8, 0x60, 0x5b, 0x24, 0xfd, 0xe7, 0xc6, 0x9a, 0xb8, 0x4a, 0xd9, 0x98, 0x76, 0xfa, - 0xc9, 0x67, 0x72, 0xf2, 0x27, 0x9f, 0x21, 0x8b, 0x3b, 0x50, 0x4d, 0xfa, 0x73, 0xb4, 0x02, 0xe6, - 0x05, 0xb9, 0x80, 0x29, 0xdf, 0xb3, 0x64, 0x32, 0xa0, 0x22, 0x39, 0xf5, 0x38, 0x4c, 0xe8, 0xff, - 0xaa, 0xc1, 0x5c, 0xd6, 0xda, 0x45, 0x1b, 0xd2, 0x8a, 0xd7, 0x78, 0x8f, 0x23, 0x23, 0xd4, 0xb9, - 0xec, 0x98, 0xa5, 0x1e, 0x2f, 0xf4, 0x26, 0xcc, 0x38, 0xae, 0x89, 0xdb, 0x06, 0x31, 0x60, 0x5b, - 0x41, 0x58, 0xcb, 0xd1, 0xde, 0x31, 0xed, 0x8d, 0x10, 0xca, 0x9a, 0x20, 0x48, 0xd2, 0xd3, 0x0a, - 0x41, 0xff, 0x5b, 0x0d, 0x66, 0x13, 0xad, 0xcb, 0x87, 0x2e, 0xa2, 0xe4, 0xd2, 0x27, 0x77, 0xb4, - 0xd2, 0x47, 0xff, 0xc7, 0x1c, 0x54, 0xa4, 0x7d, 0xdd, 0x43, 0xfb, 0x70, 0x0b, 0x66, 0xf9, 0x97, - 0xd2, 0x72, 0x7a, 0x6c, 0x3b, 0x95, 0xe3, 0x4d, 0x8a, 0xd4, 0x49, 0xc1, 0x15, 0xb7, 0xb3, 0x15, - 0xf1, 0xd2, 0xdd, 0x14, 0xed, 0x60, 0x05, 0x0a, 0x26, 0x99, 0x98, 0x51, 0x29, 0xe8, 0x26, 0x2c, - 0x0c, 0x3c, 0xd3, 0x08, 0x71, 0x3b, 0xe0, 0x3d, 0xf7, 0xb6, 0x33, 0xe8, 0x77, 0xb0, 0x4f, 0x57, - 0xfc, 0x24, 0xeb, 0xb9, 0x30, 0x0e, 0xd1, 0x94, 0xbf, 0x46, 0xe9, 0x92, 0xce, 0xb9, 0x2c, 0xba, - 0x7e, 0x09, 0x50, 0xba, 0xaf, 0xac, 0x8c, 0xaf, 0x76, 0xc4, 0xf1, 0xfd, 0x4a, 0x83, 0x6a, 0xb2, - 0x5d, 0xfc, 0x44, 0x26, 0xfa, 0x10, 0xca, 0x51, 0xeb, 0xf7, 0xa1, 0x1d, 0x78, 0x09, 0x0a, 0x3e, - 0x36, 0x02, 0xd7, 0xe1, 0x2b, 0x93, 0xa6, 0x18, 0x86, 0xc8, 0x29, 0x86, 0x21, 0xfa, 0x0d, 0x98, - 0x62, 0x23, 0xf8, 0x81, 0x65, 0x87, 0xd8, 0x47, 0x17, 0xa0, 0x10, 0x84, 0x46, 0x88, 0x83, 0x9a, - 0xb6, 0x9c, 0x3f, 0x37, 0xb3, 0xba, 0x90, 0xee, 0xf2, 0x12, 0x32, 0xd3, 0xca, 0x38, 0x65, 0xad, - 0x0c, 0xd1, 0xff, 0x5a, 0x83, 0x29, 0xb9, 0x99, 0xfd, 0x68, 0xd4, 0xde, 0xe7, 0xab, 0x7d, 0x21, - 0x7c, 0xb0, 0x1f, 0xcd, 0xcc, 0xde, 0x9f, 0xf5, 0x7f, 0xd7, 0xd8, 0xc8, 0x46, 0x5d, 0xd0, 0x87, - 0x35, 0xdf, 0x8b, 0x5b, 0x21, 0x64, 0x85, 0x05, 0x34, 0xb1, 0x1d, 0xb5, 0x15, 0x42, 0xd3, 0x9f, - 0x22, 0x2e, 0xa7, 0x3f, 0x85, 0xa0, 0x7f, 0x53, 0xa4, 0x9e, 0xc7, 0x1d, 0xef, 0x27, 0xdd, 0x04, - 0x4a, 0x54, 0x27, 0xf9, 0xfb, 0xa8, 0x4e, 0x5e, 0x86, 0x22, 0xfd, 0x1c, 0x44, 0x85, 0x03, 0x9d, - 0x34, 0x02, 0xa9, 0x27, 0x8e, 0x0c, 0xb9, 0x4b, 0xd6, 0x9a, 0x7c, 0xb8, 0xac, 0x85, 0xda, 0x70, - 0x72, 0xd7, 0x08, 0xda, 0x22, 0xcf, 0x9a, 0x6d, 0x23, 0x6c, 0x47, 0x79, 0xa2, 0x40, 0xb7, 0x29, - 0xcf, 0x8d, 0x86, 0xf5, 0xe5, 0x5d, 0x23, 0xd8, 0x12, 0x3c, 0x6b, 0xe1, 0x66, 0x3a, 0x6b, 0x2c, - 0x64, 0x73, 0xa0, 0x6d, 0x98, 0xcf, 0x56, 0x5e, 0xa4, 0x9e, 0xd3, 0x26, 0x6f, 0x70, 0x57, 0xcd, - 0x27, 0x32, 0xc8, 0xe8, 0x1f, 0x34, 0x58, 0x30, 0x4c, 0x93, 0x76, 0x48, 0x0d, 0xbb, 0x2d, 0x97, - 0x52, 0x25, 0x1a, 0x7f, 0x6f, 0x8c, 0x3f, 0x56, 0x69, 0xac, 0x45, 0x82, 0xa9, 0xb2, 0x8a, 0xb6, - 0xbc, 0x8d, 0x2c, 0xba, 0xe4, 0xd1, 0x7c, 0x26, 0x03, 0xfa, 0x52, 0x83, 0x1a, 0xa9, 0x19, 0x7c, - 0xfc, 0xf9, 0xc0, 0xf2, 0x71, 0x9f, 0x18, 0x6e, 0xbb, 0xfb, 0xd8, 0xb7, 0x8d, 0x43, 0x7e, 0x82, - 0x74, 0x26, 0xfd, 0x45, 0xdb, 0x74, 0xcd, 0x96, 0x24, 0xc0, 0x86, 0xdb, 0x53, 0xc1, 0xeb, 0x4c, - 0x89, 0x3c, 0xdc, 0xd9, 0x1c, 0x8b, 0x1e, 0x2c, 0x8e, 0x7f, 0xbb, 0xc7, 0x52, 0x41, 0xfd, 0x46, - 0x83, 0x19, 0xf5, 0x50, 0xe9, 0x89, 0x2f, 0xcc, 0x54, 0x4a, 0xca, 0x3f, 0xa6, 0x94, 0xf4, 0x6b, - 0x0d, 0xa6, 0x95, 0xb3, 0xae, 0xa7, 0xe7, 0xd5, 0xff, 0x29, 0x07, 0x0b, 0xd9, 0x6a, 0x1e, 0xcb, - 0x06, 0xfc, 0x12, 0x90, 0x52, 0xfa, 0x72, 0x5c, 0x1b, 0xce, 0xa7, 0xf6, 0xdf, 0xf4, 0x15, 0x44, - 0x1d, 0x9e, 0x3a, 0xa4, 0x12, 0xe2, 0xe8, 0x26, 0x54, 0x2c, 0xe9, 0x38, 0x2c, 0x9f, 0x75, 0x6a, - 0x21, 0x1f, 0x82, 0xb1, 0x2e, 0xcd, 0x98, 0xa3, 0x2f, 0x59, 0x55, 0xb3, 0x00, 0x13, 0xa4, 0x78, - 0xd5, 0xf7, 0xa1, 0xc8, 0xdd, 0x41, 0xaf, 0x41, 0x99, 0xe6, 0x79, 0xba, 0xa7, 0x64, 0xcb, 0x8e, - 0x96, 0x5d, 0x04, 0x4c, 0x5c, 0x48, 0x29, 0x09, 0x0c, 0xbd, 0x09, 0x40, 0xd2, 0x08, 0xcf, 0xf0, - 0x39, 0x9a, 0x27, 0xe9, 0xde, 0xd5, 0x73, 0xcd, 0x54, 0x5a, 0x2f, 0x47, 0xa0, 0xfe, 0x6f, 0x39, - 0xa8, 0xc8, 0x07, 0x70, 0x0f, 0x64, 0xfc, 0x0b, 0x10, 0x7d, 0x85, 0xb6, 0x61, 0x9a, 0xe4, 0x2f, - 0x16, 0x9f, 0xf4, 0x95, 0xb1, 0x83, 0x24, 0xfe, 0x5f, 0x13, 0x12, 0x2c, 0x99, 0xd2, 0x2b, 0x0e, - 0x56, 0x82, 0x24, 0x59, 0xad, 0x26, 0x69, 0x8b, 0x7b, 0x30, 0x9f, 0xa9, 0x4a, 0xce, 0x5c, 0x93, - 0x8f, 0x2a, 0x73, 0xfd, 0xc7, 0x24, 0xcc, 0x67, 0x1e, 0x7c, 0x3e, 0xf1, 0x55, 0xac, 0xae, 0xa0, - 0xfc, 0x23, 0x59, 0x41, 0x5f, 0x69, 0x59, 0x33, 0xcb, 0x0e, 0x91, 0xde, 0x3e, 0xc2, 0x69, 0xf0, - 0xa3, 0x9a, 0x63, 0x35, 0x2c, 0x27, 0x1f, 0x68, 0x4d, 0x14, 0x8e, 0xba, 0x26, 0xd0, 0x2b, 0x6c, - 0x1b, 0x4f, 0x6d, 0x15, 0xa9, 0x2d, 0x91, 0x21, 0x12, 0xa6, 0x8a, 0x1c, 0x42, 0xef, 0xc3, 0xb4, - 0x90, 0x60, 0xcd, 0xa3, 0x52, 0xdc, 0xd9, 0xe1, 0x3c, 0xc9, 0xfe, 0xd1, 0x94, 0x8c, 0xff, 0x61, - 0x63, 0xf8, 0xb7, 0x1a, 0xcc, 0x26, 0x6e, 0x42, 0x3c, 0x3d, 0xdf, 0xa0, 0xaf, 0x35, 0x28, 0x47, - 0x97, 0x70, 0x1e, 0x7a, 0x23, 0xb3, 0x06, 0x05, 0xcc, 0x2e, 0x82, 0xb0, 0x74, 0x77, 0x22, 0x71, - 0x51, 0x8f, 0xd0, 0xf8, 0xd5, 0xbc, 0xc4, 0xdd, 0x8f, 0x16, 0x17, 0xd4, 0xff, 0x47, 0x13, 0x5b, - 0x94, 0xd8, 0xa7, 0x27, 0x3a, 0x15, 0xf1, 0x3b, 0xe5, 0x1f, 0xf4, 0x9d, 0xfe, 0xb3, 0x0c, 0x93, - 0x94, 0x0f, 0xad, 0x42, 0x29, 0xc4, 0x7e, 0xdf, 0x72, 0x0c, 0x9b, 0xbe, 0x4e, 0x89, 0xad, 0x5b, - 0x81, 0xc9, 0xeb, 0x56, 0x60, 0x68, 0x17, 0x66, 0xe3, 0xb6, 0x27, 0x55, 0x93, 0x7d, 0xff, 0xef, - 0x43, 0x95, 0x89, 0x1d, 0x6c, 0x24, 0x24, 0xd5, 0x0b, 0x12, 0x09, 0x22, 0x32, 0x61, 0xa6, 0xeb, - 0x3a, 0xa1, 0x61, 0x39, 0xd8, 0x67, 0x86, 0xf2, 0x59, 0xf7, 0x9f, 0xce, 0x2b, 0x3c, 0xac, 0x7b, - 0xa4, 0xca, 0xa9, 0xf7, 0x9f, 0x54, 0x1a, 0xfa, 0x0c, 0xa6, 0xc5, 0x36, 0x8e, 0x19, 0x99, 0xc8, - 0xba, 0xff, 0xb4, 0x2e, 0xb3, 0xb0, 0x90, 0x56, 0xa4, 0xd4, 0xfb, 0x4f, 0x0a, 0x09, 0xd9, 0x50, - 0xf5, 0x5c, 0x73, 0xdb, 0xe1, 0x1b, 0x05, 0xa3, 0x63, 0x63, 0xde, 0x6b, 0x5f, 0x4a, 0x95, 0x3c, - 0x0a, 0x17, 0x4b, 0xc5, 0x49, 0x59, 0xf5, 0x46, 0x61, 0x92, 0x8a, 0x3e, 0x85, 0x29, 0x9b, 0x6c, - 0x8a, 0xd6, 0x0f, 0x3c, 0xcb, 0xc7, 0x66, 0xf6, 0xfd, 0xbf, 0xab, 0x12, 0x07, 0x4b, 0x84, 0xb2, - 0x8c, 0x7a, 0x07, 0x4a, 0xa6, 0x90, 0xd9, 0xef, 0x1b, 0x07, 0xad, 0x81, 0x13, 0xac, 0x1f, 0xf0, - 0xbb, 0x5c, 0xc5, 0xac, 0xd9, 0xdf, 0x50, 0x99, 0xd8, 0xec, 0x27, 0x24, 0xd5, 0xd9, 0x4f, 0x10, - 0xd1, 0x55, 0x9a, 0xe7, 0xd9, 0x94, 0xb0, 0x7b, 0x80, 0x0b, 0xa9, 0xd1, 0x62, 0xb3, 0xc1, 0xda, - 0x5e, 0xfc, 0x49, 0x51, 0x1a, 0x69, 0xe0, 0x73, 0x40, 0x5f, 0xbb, 0x85, 0xc3, 0x81, 0xef, 0x60, - 0x93, 0x6f, 0xe0, 0xd2, 0x73, 0xa0, 0x70, 0x45, 0x73, 0xa0, 0xa0, 0xa9, 0x39, 0x50, 0xa8, 0x24, - 0xa6, 0x3c, 0xd7, 0xbc, 0xc1, 0x96, 0x4c, 0x18, 0x5d, 0x0c, 0x7c, 0x36, 0x65, 0x2a, 0x66, 0x61, - 0x31, 0xa5, 0x48, 0xa9, 0x31, 0xa5, 0x90, 0xf8, 0x5d, 0x34, 0xf9, 0xe6, 0x12, 0x1b, 0xa9, 0xca, - 0x98, 0xbb, 0x68, 0x29, 0xce, 0xe8, 0x2e, 0x5a, 0x8a, 0x92, 0xba, 0x8b, 0x96, 0xe2, 0x20, 0xd6, - 0x7b, 0x86, 0xd3, 0xbb, 0xe2, 0x76, 0xd4, 0xa8, 0x9e, 0xca, 0xb2, 0x7e, 0x31, 0x83, 0x93, 0x59, - 0xcf, 0xd2, 0xa1, 0x5a, 0xcf, 0xe2, 0x68, 0x96, 0x44, 0x7b, 0x4c, 0xff, 0x56, 0x83, 0xd9, 0x44, - 0x9e, 0x41, 0xef, 0x41, 0x74, 0xe3, 0xe6, 0xc6, 0xa1, 0x27, 0xca, 0x64, 0xe5, 0x86, 0x0e, 0xc1, - 0xb3, 0x6e, 0xe8, 0x10, 0x1c, 0x5d, 0x05, 0x88, 0xbe, 0x49, 0x77, 0x4b, 0xd2, 0xb4, 0x46, 0x8b, - 0x39, 0xe5, 0x1a, 0x2d, 0x46, 0xf5, 0x1f, 0xf2, 0x50, 0x12, 0x81, 0xfa, 0x58, 0xb6, 0x51, 0x2b, - 0x50, 0xec, 0xe3, 0x80, 0xde, 0xd4, 0xc9, 0xc5, 0xd5, 0x10, 0x87, 0xe4, 0x6a, 0x88, 0x43, 0x6a, - 0xb1, 0x96, 0x7f, 0xa0, 0x62, 0x6d, 0xe2, 0xc8, 0xc5, 0x1a, 0xa6, 0xa7, 0xf4, 0x52, 0xba, 0x15, - 0xe7, 0x62, 0x77, 0xcf, 0xe1, 0xe2, 0x0c, 0x5f, 0x16, 0x4c, 0x9c, 0xe1, 0xcb, 0x24, 0xb4, 0x07, - 0xc7, 0xa5, 0xb3, 0x3b, 0xde, 0x3b, 0x25, 0x89, 0x6f, 0x66, 0xfc, 0x95, 0x88, 0x16, 0xe5, 0x62, - 0xcb, 0x7b, 0x2f, 0x81, 0xca, 0xd5, 0x6e, 0x92, 0xa6, 0xff, 0x22, 0x07, 0x33, 0xaa, 0xbf, 0x8f, - 0x65, 0x62, 0x5f, 0x83, 0x32, 0x3e, 0xb0, 0xc2, 0x76, 0xd7, 0x35, 0x31, 0xdf, 0x32, 0xd2, 0x79, - 0x22, 0xe0, 0x79, 0xd7, 0x54, 0xe6, 0x49, 0x60, 0x72, 0x34, 0xe4, 0x8f, 0x14, 0x0d, 0x71, 0xab, - 0x79, 0xe2, 0xde, 0xad, 0xe6, 0xec, 0x71, 0x2e, 0x3f, 0xa6, 0x71, 0xbe, 0x93, 0x83, 0x6a, 0x32, - 0x1b, 0xff, 0x3c, 0x96, 0x90, 0xba, 0x1a, 0xf2, 0x47, 0x5e, 0x0d, 0xef, 0xc3, 0x34, 0xa9, 0x1d, - 0x8d, 0x30, 0xe4, 0x77, 0x58, 0x27, 0x68, 0xcd, 0xc5, 0x72, 0xd3, 0xc0, 0x59, 0x13, 0xb8, 0x92, - 0x9b, 0x24, 0x5c, 0xff, 0x32, 0x07, 0xd3, 0xca, 0x57, 0xe3, 0xe9, 0x4b, 0x29, 0xfa, 0x2c, 0x4c, - 0x2b, 0xc5, 0x98, 0xfe, 0x37, 0x2c, 0x4e, 0xd4, 0x2a, 0xe8, 0xe9, 0x1b, 0x97, 0x19, 0x98, 0x92, - 0xab, 0x3a, 0xbd, 0x09, 0xb3, 0x89, 0x22, 0x4c, 0x7e, 0x01, 0xed, 0x28, 0x2f, 0xa0, 0x2f, 0xc0, - 0x5c, 0x56, 0xed, 0xa0, 0x5f, 0x84, 0xb9, 0xac, 0xaf, 0xfa, 0xfd, 0x1b, 0xf8, 0x4e, 0xa3, 0x16, - 0xd2, 0xb7, 0xdd, 0x2f, 0x01, 0x38, 0xf8, 0x76, 0xfb, 0x9e, 0xdb, 0x3f, 0x36, 0x9e, 0xf8, 0xf6, - 0x95, 0xc4, 0x6e, 0xa9, 0x24, 0x30, 0xa2, 0xc9, 0xb5, 0xcd, 0xf6, 0x3d, 0x37, 0x5d, 0x54, 0x93, - 0x6b, 0x9b, 0x29, 0x4d, 0x02, 0xd3, 0xff, 0x2e, 0x2f, 0x76, 0xe6, 0xf1, 0x75, 0xf1, 0x4f, 0xa0, - 0xea, 0x89, 0x87, 0x7b, 0x7b, 0x4b, 0xf7, 0x26, 0x11, 0x7f, 0xd2, 0xd2, 0x8c, 0x4a, 0x51, 0x75, - 0xf3, 0x4d, 0x67, 0xee, 0x88, 0xba, 0x5b, 0x89, 0xdd, 0xe7, 0x8c, 0x4a, 0x41, 0x7f, 0x09, 0xc7, - 0xc5, 0x6d, 0xba, 0x7d, 0x2c, 0x1c, 0xcf, 0x8f, 0x55, 0xce, 0x6e, 0xb7, 0x47, 0x02, 0x49, 0xcf, - 0x67, 0x13, 0xa4, 0x84, 0x7a, 0xee, 0xfb, 0xc4, 0x51, 0xd5, 0x27, 0x9d, 0x9f, 0x4d, 0x90, 0xf4, - 0xaf, 0x35, 0x98, 0x4d, 0x5c, 0xc0, 0x47, 0x17, 0xa0, 0x44, 0x7f, 0x9f, 0x77, 0xf7, 0x19, 0xa0, - 0x01, 0x49, 0xf9, 0x14, 0x0b, 0x45, 0x0e, 0xa1, 0x37, 0xa0, 0x1c, 0xdd, 0xd3, 0xe7, 0xa7, 0xea, - 0x6c, 0xf1, 0x09, 0x50, 0x59, 0x7c, 0x02, 0xd4, 0xff, 0x59, 0x83, 0x93, 0x63, 0x2f, 0xe7, 0x3f, - 0xe9, 0x9e, 0xc1, 0x8b, 0xaf, 0x40, 0x49, 0x9c, 0x7b, 0x23, 0x80, 0xc2, 0x47, 0xdb, 0xeb, 0xdb, - 0xeb, 0x17, 0xaa, 0xc7, 0x50, 0x05, 0x8a, 0x9b, 0xeb, 0xd7, 0x2e, 0x5c, 0xbe, 0x76, 0xb1, 0xaa, - 0x91, 0x87, 0xd6, 0xf6, 0xb5, 0x6b, 0xe4, 0x21, 0xf7, 0xe2, 0x55, 0xf9, 0x16, 0x1e, 0xfb, 0x1e, - 0xa3, 0x29, 0x28, 0xad, 0x79, 0x1e, 0x4d, 0x00, 0x4c, 0x76, 0x7d, 0xdf, 0x22, 0x6b, 0xb5, 0xaa, - 0xa1, 0x22, 0xe4, 0xaf, 0x5f, 0xdf, 0xa8, 0xe6, 0xd0, 0x1c, 0x54, 0x2f, 0x60, 0xc3, 0xb4, 0x2d, - 0x07, 0x8b, 0xac, 0x53, 0xcd, 0x37, 0x6f, 0x7d, 0xff, 0xe3, 0x92, 0xf6, 0xc3, 0x8f, 0x4b, 0xda, - 0xff, 0xff, 0xb8, 0xa4, 0xdd, 0xf9, 0x69, 0xe9, 0xd8, 0x0f, 0x3f, 0x2d, 0x1d, 0xfb, 0xdf, 0x9f, - 0x96, 0x8e, 0x7d, 0xf2, 0x8a, 0xf4, 0x5b, 0x54, 0xf6, 0x4e, 0x9e, 0xef, 0x92, 0x84, 0xcb, 0x9f, - 0x56, 0x92, 0xbf, 0xce, 0xfd, 0x2e, 0x77, 0x7a, 0x8d, 0x3e, 0x6e, 0x32, 0xbe, 0xc6, 0x65, 0xb7, - 0xc1, 0x00, 0xfa, 0x03, 0xca, 0xa0, 0x53, 0xa0, 0x3f, 0x94, 0x7c, 0xed, 0xf7, 0x01, 0x00, 0x00, - 0xff, 0xff, 0x48, 0xd9, 0xd7, 0xab, 0xd8, 0x3b, 0x00, 0x00, + // 3615 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5b, 0x4b, 0x6c, 0x1b, 0xd7, + 0x7a, 0xf6, 0x90, 0x12, 0x1f, 0x3f, 0xf5, 0xa0, 0x8f, 0x25, 0x85, 0x56, 0x6c, 0x51, 0x1e, 0xa7, + 0x8d, 0x13, 0x24, 0x54, 0xe2, 0x3c, 0x90, 0x47, 0x91, 0x40, 0xb4, 0x15, 0xdb, 0x8a, 0x65, 0x2b, + 0x94, 0x95, 0xba, 0x41, 0x0a, 0x66, 0xc8, 0x39, 0xa2, 0xc6, 0x1a, 0xce, 0x4c, 0xe6, 0x21, 0x4b, + 0x40, 0x16, 0x4d, 0xd1, 0xa6, 0xbb, 0xd4, 0x40, 0xb3, 0x28, 0xd0, 0x45, 0xba, 0x6d, 0x80, 0xae, + 0xbb, 0xee, 0xaa, 0x59, 0x14, 0x45, 0xba, 0xeb, 0x8a, 0xbd, 0x48, 0x70, 0x17, 0x97, 0x8b, 0xbb, + 0xbe, 0xf7, 0x6e, 0xee, 0xc5, 0x79, 0xcd, 0x9c, 0x33, 0x1c, 0xda, 0xf2, 0xeb, 0x3a, 0x17, 0x5e, + 0x49, 0xf3, 0xfd, 0xcf, 0xf3, 0xfa, 0xe7, 0xff, 0xff, 0x39, 0x84, 0xd3, 0xde, 0x5e, 0x6f, 0xc5, + 0xf0, 0xfb, 0x86, 0x69, 0xe0, 0x7d, 0xec, 0x84, 0xc1, 0x0a, 0xfb, 0xd3, 0xf0, 0x7c, 0x37, 0x74, + 0xd1, 0x94, 0x4c, 0x5a, 0xd4, 0xf7, 0xde, 0x0a, 0x1a, 0x96, 0xbb, 0x62, 0x78, 0xd6, 0x4a, 0xd7, + 0xf5, 0xf1, 0xca, 0xfe, 0xab, 0x2b, 0x3d, 0xec, 0x60, 0xdf, 0x08, 0xb1, 0xc9, 0x24, 0x16, 0xcf, + 0x49, 0x3c, 0x0e, 0x0e, 0x6f, 0xbb, 0xfe, 0x9e, 0xe5, 0xf4, 0xb2, 0x38, 0xeb, 0x3d, 0xd7, 0xed, + 0xd9, 0x78, 0x85, 0x3e, 0x75, 0xa2, 0x9d, 0x95, 0xd0, 0xea, 0xe3, 0x20, 0x34, 0xfa, 0x1e, 0x67, + 0x58, 0x4a, 0x33, 0xdc, 0xf6, 0x0d, 0xcf, 0xc3, 0x3e, 0x77, 0x6e, 0xf1, 0xf5, 0xc4, 0x54, 0xdf, + 0xe8, 0xee, 0x5a, 0x0e, 0xf6, 0x0f, 0x57, 0xe8, 0x78, 0x3c, 0x6b, 0xc5, 0xc7, 0x81, 0x1b, 0xf9, + 0x5d, 0x3c, 0x62, 0xf6, 0xe5, 0x9e, 0x15, 0xee, 0x46, 0x9d, 0x46, 0xd7, 0xed, 0xaf, 0xf4, 0xdc, + 0x9e, 0x9b, 0xa8, 0x27, 0x4f, 0xf4, 0x81, 0xfe, 0xc7, 0xd9, 0xdf, 0xb1, 0x9c, 0x10, 0xfb, 0x8e, + 0x61, 0xaf, 0x04, 0xdd, 0x5d, 0x6c, 0x46, 0x36, 0xf6, 0x93, 0xff, 0xdc, 0xce, 0x2d, 0xdc, 0x0d, + 0x83, 0x11, 0x80, 0xc9, 0xea, 0x77, 0xe6, 0x60, 0x7a, 0x8d, 0x4c, 0xdd, 0x16, 0xfe, 0x3c, 0xc2, + 0x4e, 0x17, 0xa3, 0x17, 0x60, 0xf2, 0xf3, 0x08, 0x47, 0xb8, 0xa6, 0x2d, 0x6b, 0xe7, 0xca, 0xcd, + 0x13, 0xc3, 0x41, 0x7d, 0x96, 0x02, 0x2f, 0xb9, 0x7d, 0x2b, 0xc4, 0x7d, 0x2f, 0x3c, 0x6c, 0x31, + 0x0e, 0xf4, 0x0e, 0x4c, 0xdd, 0x72, 0x3b, 0xed, 0x00, 0x87, 0x6d, 0xc7, 0xe8, 0xe3, 0x5a, 0x8e, + 0x4a, 0xd4, 0x86, 0x83, 0xfa, 0xdc, 0x2d, 0xb7, 0xb3, 0x85, 0xc3, 0x6b, 0x46, 0x5f, 0x16, 0x83, + 0x04, 0x45, 0x2f, 0x43, 0x31, 0x0a, 0xb0, 0xdf, 0xb6, 0xcc, 0x5a, 0x9e, 0x8a, 0xcd, 0x0d, 0x07, + 0xf5, 0x2a, 0x81, 0xae, 0x98, 0x92, 0x48, 0x81, 0x21, 0xe8, 0x25, 0x28, 0xf4, 0x7c, 0x37, 0xf2, + 0x82, 0xda, 0xc4, 0x72, 0x5e, 0x70, 0x33, 0x44, 0xe6, 0x66, 0x08, 0xba, 0x0e, 0x05, 0xb6, 0x1f, + 0x6a, 0x93, 0xcb, 0xf9, 0x73, 0x95, 0xf3, 0x67, 0x1a, 0xf2, 0x26, 0x69, 0x28, 0x03, 0x66, 0x4f, + 0x4c, 0x21, 0xa3, 0xcb, 0x0a, 0xf9, 0xb6, 0xfa, 0xd5, 0x71, 0x98, 0xa4, 0x7c, 0xe8, 0x3a, 0x14, + 0xbb, 0x3e, 0x26, 0x8b, 0x55, 0x43, 0xcb, 0xda, 0xb9, 0xca, 0xf9, 0xc5, 0x06, 0xdb, 0x03, 0x0d, + 0xb1, 0x48, 0x8d, 0x1b, 0x62, 0x93, 0x34, 0x4f, 0x0e, 0x07, 0xf5, 0xe3, 0x9c, 0x3d, 0xd1, 0x7a, + 0xe7, 0xff, 0xeb, 0x5a, 0x4b, 0x68, 0x41, 0x9b, 0x50, 0x0e, 0xa2, 0x4e, 0xdf, 0x0a, 0xd7, 0xdd, + 0x0e, 0x9d, 0xf3, 0xca, 0xf9, 0x67, 0x54, 0x77, 0xb7, 0x04, 0xb9, 0xf9, 0xcc, 0x70, 0x50, 0x3f, + 0x11, 0x73, 0x27, 0x1a, 0x2f, 0x1f, 0x6b, 0x25, 0x4a, 0xd0, 0x2e, 0xcc, 0xfa, 0xd8, 0xf3, 0x2d, + 0xd7, 0xb7, 0x42, 0x2b, 0xc0, 0x44, 0x6f, 0x8e, 0xea, 0x3d, 0xad, 0xea, 0x6d, 0xa9, 0x4c, 0xcd, + 0xd3, 0xc3, 0x41, 0xfd, 0x64, 0x4a, 0x52, 0xb1, 0x91, 0x56, 0x8b, 0x42, 0x40, 0x29, 0x68, 0x0b, + 0x87, 0x74, 0x3d, 0x2b, 0xe7, 0x97, 0xef, 0x6a, 0x6c, 0x0b, 0x87, 0xcd, 0xe5, 0xe1, 0xa0, 0x7e, + 0x6a, 0x54, 0x5e, 0x31, 0x99, 0xa1, 0x1f, 0xd9, 0x50, 0x95, 0x51, 0x93, 0x0c, 0x70, 0x82, 0xda, + 0x5c, 0x1a, 0x6f, 0x93, 0x70, 0x35, 0x97, 0x86, 0x83, 0xfa, 0x62, 0x5a, 0x56, 0xb1, 0x37, 0xa2, + 0x99, 0xac, 0x4f, 0xd7, 0x70, 0xba, 0xd8, 0x26, 0x66, 0x26, 0xb3, 0xd6, 0xe7, 0x82, 0x20, 0xb3, + 0xf5, 0x89, 0xb9, 0xd5, 0xf5, 0x89, 0x61, 0xf4, 0x29, 0x4c, 0xc5, 0x0f, 0x64, 0xbe, 0x0a, 0x7c, + 0x1f, 0x65, 0x2b, 0x25, 0x33, 0xb5, 0x38, 0x1c, 0xd4, 0x17, 0x64, 0x19, 0x45, 0xb5, 0xa2, 0x2d, + 0xd1, 0x6e, 0xb3, 0x99, 0x29, 0x8e, 0xd7, 0xce, 0x38, 0x64, 0xed, 0xf6, 0xe8, 0x8c, 0x28, 0xda, + 0x88, 0x76, 0x72, 0x88, 0xa3, 0x6e, 0x17, 0x63, 0x13, 0x9b, 0xb5, 0x52, 0x96, 0xf6, 0x75, 0x89, + 0x83, 0x69, 0x97, 0x65, 0x54, 0xed, 0x32, 0x85, 0xcc, 0xf5, 0x2d, 0xb7, 0xb3, 0xe6, 0xfb, 0xae, + 0x1f, 0xd4, 0xca, 0x59, 0x73, 0xbd, 0x2e, 0xc8, 0x6c, 0xae, 0x63, 0x6e, 0x75, 0xae, 0x63, 0x98, + 0xfb, 0xdb, 0x8a, 0x9c, 0xab, 0xd8, 0x08, 0xb0, 0x59, 0x83, 0x31, 0xfe, 0xc6, 0x1c, 0xb1, 0xbf, + 0x31, 0x32, 0xe2, 0x6f, 0x4c, 0x41, 0x26, 0xcc, 0xb0, 0xe7, 0xd5, 0x20, 0xb0, 0x7a, 0x0e, 0x36, + 0x6b, 0x15, 0xaa, 0xff, 0x54, 0x96, 0x7e, 0xc1, 0xd3, 0x3c, 0x35, 0x1c, 0xd4, 0x6b, 0xaa, 0x9c, + 0x62, 0x23, 0xa5, 0x13, 0x7d, 0x06, 0xd3, 0x0c, 0x69, 0x45, 0x8e, 0x63, 0x39, 0xbd, 0xda, 0x14, + 0x35, 0xf2, 0x6c, 0x96, 0x11, 0xce, 0xd2, 0x7c, 0x76, 0x38, 0xa8, 0x3f, 0xa3, 0x48, 0x29, 0x26, + 0x54, 0x85, 0x24, 0x62, 0x30, 0x20, 0x59, 0xd8, 0xe9, 0xac, 0x88, 0xb1, 0xae, 0x32, 0xb1, 0x88, + 0x91, 0x92, 0x54, 0x23, 0x46, 0x8a, 0x98, 0xac, 0x07, 0x5f, 0xe4, 0x99, 0xf1, 0xeb, 0xc1, 0xd7, + 0x59, 0x5a, 0x8f, 0x8c, 0xa5, 0x56, 0xb4, 0xa1, 0x2f, 0x80, 0xbc, 0x78, 0x2e, 0x46, 0x9e, 0x6d, + 0x75, 0x8d, 0x10, 0x5f, 0xc4, 0x21, 0xee, 0x92, 0x48, 0x3d, 0x4b, 0xad, 0xe8, 0x23, 0x56, 0x46, + 0x38, 0x9b, 0xfa, 0x70, 0x50, 0x5f, 0xca, 0xd2, 0xa1, 0x58, 0xcd, 0xb4, 0x82, 0xfe, 0x46, 0x83, + 0xf9, 0x20, 0x34, 0x1c, 0xd3, 0xb0, 0x5d, 0x07, 0x5f, 0x71, 0x7a, 0x3e, 0x0e, 0x82, 0x2b, 0xce, + 0x8e, 0x5b, 0xab, 0x52, 0xfb, 0x67, 0x53, 0x61, 0x3d, 0x8b, 0xb5, 0x79, 0x76, 0x38, 0xa8, 0xd7, + 0x33, 0xb5, 0x28, 0x1e, 0x64, 0x1b, 0x42, 0x07, 0x70, 0x42, 0x64, 0x15, 0xdb, 0xa1, 0x65, 0x5b, + 0x81, 0x11, 0x5a, 0xae, 0x53, 0x3b, 0x4e, 0xed, 0x9f, 0x49, 0x47, 0xc7, 0x11, 0xc6, 0xe6, 0x99, + 0xe1, 0xa0, 0x7e, 0x3a, 0x43, 0x83, 0x62, 0x3b, 0xcb, 0x44, 0xb2, 0x85, 0x36, 0x7d, 0x4c, 0x18, + 0xb1, 0x59, 0x3b, 0x31, 0x7e, 0x0b, 0xc5, 0x4c, 0xf2, 0x16, 0x8a, 0xc1, 0xac, 0x2d, 0x14, 0x13, + 0x89, 0x25, 0xcf, 0xf0, 0x43, 0x8b, 0x98, 0xdd, 0x30, 0xfc, 0x3d, 0xec, 0xd7, 0xe6, 0xb2, 0x2c, + 0x6d, 0xaa, 0x4c, 0xcc, 0x52, 0x4a, 0x52, 0xb5, 0x94, 0x22, 0xa2, 0x3b, 0x1a, 0xa8, 0xae, 0x59, + 0xae, 0xd3, 0x22, 0x69, 0x43, 0x40, 0x86, 0x37, 0x4f, 0x8d, 0x3e, 0x7f, 0x97, 0xe1, 0xc9, 0xec, + 0xcd, 0xe7, 0x87, 0x83, 0xfa, 0xd9, 0xb1, 0xda, 0x14, 0x47, 0xc6, 0x1b, 0x45, 0x37, 0xa1, 0x42, + 0x88, 0x98, 0x26, 0x60, 0x66, 0x6d, 0x81, 0xfa, 0x70, 0x72, 0xd4, 0x07, 0xce, 0x40, 0x33, 0x90, + 0x79, 0x49, 0x42, 0xb1, 0x23, 0xab, 0x6a, 0x16, 0x61, 0x92, 0xca, 0xeb, 0xc3, 0x02, 0x9c, 0xc8, + 0xd8, 0x1b, 0xe8, 0x3d, 0x28, 0xf8, 0x91, 0x43, 0x12, 0x36, 0x96, 0xa5, 0x20, 0xd5, 0xea, 0x76, + 0x64, 0x99, 0x2c, 0x5b, 0xf4, 0x23, 0x47, 0xc9, 0xe1, 0x26, 0x29, 0x40, 0xe4, 0x49, 0xb6, 0x68, + 0x99, 0x3c, 0x1b, 0x19, 0x2b, 0x7f, 0xcb, 0xed, 0xa8, 0xf2, 0x14, 0x40, 0x18, 0xa6, 0xc5, 0xc6, + 0x6b, 0x5b, 0xe4, 0x54, 0xb1, 0x3c, 0xe3, 0x39, 0x55, 0xcd, 0x87, 0x51, 0x07, 0xfb, 0x0e, 0x0e, + 0x71, 0x20, 0xc6, 0x40, 0x8f, 0x15, 0x8d, 0x22, 0xbe, 0x84, 0x48, 0xfa, 0xa7, 0x64, 0x1c, 0x7d, + 0xa3, 0x41, 0xad, 0x6f, 0x1c, 0xb4, 0x05, 0x18, 0xb4, 0x77, 0x5c, 0xbf, 0xed, 0x61, 0xdf, 0x72, + 0x4d, 0x9a, 0x7c, 0x56, 0xce, 0xff, 0xc5, 0x3d, 0x0f, 0x52, 0x63, 0xc3, 0x38, 0x10, 0x70, 0xf0, + 0x81, 0xeb, 0x6f, 0x52, 0xf1, 0x35, 0x27, 0xf4, 0x0f, 0x9b, 0xa7, 0xbf, 0x1f, 0xd4, 0x8f, 0x91, + 0x65, 0xe9, 0x67, 0xf1, 0xb4, 0xb2, 0x61, 0xf4, 0x8f, 0x1a, 0x2c, 0x84, 0x6e, 0x68, 0xd8, 0xed, + 0x6e, 0xd4, 0x8f, 0x6c, 0x23, 0xb4, 0xf6, 0x71, 0x3b, 0x0a, 0x8c, 0x1e, 0xe6, 0x39, 0xee, 0xbb, + 0xf7, 0x76, 0xea, 0x06, 0x91, 0xbf, 0x10, 0x8b, 0x6f, 0x13, 0x69, 0xe6, 0xd3, 0x29, 0xee, 0xd3, + 0x5c, 0x98, 0xc1, 0xd2, 0xca, 0x44, 0x17, 0xff, 0x55, 0x83, 0xc5, 0xf1, 0xc3, 0x44, 0x67, 0x21, + 0xbf, 0x87, 0x0f, 0x79, 0x15, 0x71, 0x7c, 0x38, 0xa8, 0x4f, 0xef, 0xe1, 0x43, 0x69, 0xd6, 0x09, + 0x15, 0xfd, 0x15, 0x4c, 0xee, 0x1b, 0x76, 0x84, 0xf9, 0x96, 0x68, 0x34, 0x58, 0xbd, 0xd4, 0x90, + 0xeb, 0xa5, 0x86, 0xb7, 0xd7, 0x23, 0x40, 0x43, 0xac, 0x48, 0xe3, 0xa3, 0xc8, 0x70, 0x42, 0x2b, + 0x3c, 0x64, 0xdb, 0x85, 0x2a, 0x90, 0xb7, 0x0b, 0x05, 0xde, 0xc9, 0xbd, 0xa5, 0x2d, 0x7e, 0xab, + 0xc1, 0xc9, 0xb1, 0x83, 0xfe, 0x39, 0x78, 0xa8, 0xb7, 0x61, 0x82, 0x6c, 0x7c, 0x52, 0xdf, 0xec, + 0x5a, 0xbd, 0xdd, 0x37, 0x5f, 0xa7, 0xee, 0x14, 0x58, 0x39, 0xc2, 0x10, 0xb9, 0x1c, 0x61, 0x08, + 0xa9, 0xd1, 0x6c, 0xf7, 0xf6, 0x9b, 0xaf, 0x53, 0xa7, 0x0a, 0xcc, 0x08, 0x05, 0x64, 0x23, 0x14, + 0xd0, 0x7f, 0x5f, 0x80, 0x72, 0x5c, 0x40, 0x48, 0x67, 0x50, 0x7b, 0xa0, 0x33, 0x78, 0x19, 0xaa, + 0x26, 0x36, 0xf9, 0x9b, 0xcf, 0x72, 0x1d, 0x71, 0x9a, 0xcb, 0x2c, 0xba, 0x2a, 0x34, 0x45, 0x7e, + 0x36, 0x45, 0x42, 0xe7, 0xa1, 0xc4, 0x13, 0xed, 0x43, 0x7a, 0x90, 0xa7, 0x9b, 0x0b, 0xc3, 0x41, + 0x1d, 0x09, 0x4c, 0x12, 0x8d, 0xf9, 0x50, 0x0b, 0x80, 0x55, 0xaf, 0x1b, 0x38, 0x34, 0x78, 0xca, + 0x5f, 0x53, 0x47, 0x70, 0x3d, 0xa6, 0xb3, 0x3a, 0x34, 0xe1, 0x97, 0xeb, 0xd0, 0x04, 0x45, 0x9f, + 0x02, 0xf4, 0x0d, 0xcb, 0x61, 0x72, 0x3c, 0xbf, 0xd7, 0xc7, 0x85, 0x94, 0x8d, 0x98, 0x93, 0x69, + 0x4f, 0x24, 0x65, 0xed, 0x09, 0x4a, 0xaa, 0x45, 0x5e, 0x6f, 0xd7, 0x0a, 0xf4, 0x94, 0x2e, 0x8d, + 0x53, 0xcd, 0xd5, 0xce, 0x93, 0x8a, 0x91, 0x8b, 0x48, 0x3a, 0x85, 0x16, 0x32, 0x6d, 0xb6, 0xb5, + 0x83, 0x43, 0xab, 0x8f, 0x69, 0x66, 0xcf, 0xa7, 0x4d, 0x60, 0xf2, 0xb4, 0x09, 0x0c, 0xbd, 0x05, + 0x60, 0x84, 0x1b, 0x6e, 0x10, 0x5e, 0x77, 0xba, 0x98, 0x66, 0xec, 0x25, 0xe6, 0x7e, 0x82, 0xca, + 0xee, 0x27, 0x28, 0x7a, 0x17, 0x2a, 0x1e, 0x7f, 0x09, 0x75, 0x6c, 0x4c, 0x33, 0xf2, 0x12, 0x7b, + 0xa5, 0x48, 0xb0, 0x24, 0x2b, 0x73, 0xa3, 0x4b, 0x30, 0xdb, 0x75, 0x9d, 0x6e, 0xe4, 0xfb, 0xd8, + 0xe9, 0x1e, 0x6e, 0x19, 0x3b, 0x98, 0x66, 0xdf, 0x25, 0xb6, 0x55, 0x52, 0x24, 0x79, 0xab, 0xa4, + 0x48, 0xe8, 0x0d, 0x28, 0xc7, 0xdd, 0x0b, 0x9a, 0x60, 0x97, 0x79, 0x21, 0x2c, 0x40, 0x49, 0x38, + 0xe1, 0x24, 0xce, 0x5b, 0x41, 0x9c, 0xa5, 0xd1, 0xa4, 0x99, 0x3b, 0x2f, 0xc1, 0xb2, 0xf3, 0x12, + 0x8c, 0xae, 0xc0, 0x71, 0xfa, 0x5e, 0x6c, 0x87, 0xa1, 0xdd, 0x0e, 0x70, 0xd7, 0x75, 0xcc, 0x80, + 0xe6, 0xc4, 0x79, 0xe6, 0x3e, 0x25, 0xde, 0x08, 0xed, 0x2d, 0x46, 0x92, 0xdd, 0x4f, 0x91, 0xf4, + 0xff, 0xd6, 0x60, 0x2e, 0x6b, 0x0b, 0xa5, 0xb6, 0xb3, 0xf6, 0x48, 0xb6, 0xf3, 0xc7, 0x50, 0xf2, + 0x5c, 0xb3, 0x1d, 0x78, 0xb8, 0xcb, 0x23, 0x56, 0x6a, 0x33, 0x6f, 0xba, 0xe6, 0x96, 0x87, 0xbb, + 0x7f, 0x69, 0x85, 0xbb, 0xab, 0xfb, 0xae, 0x65, 0x5e, 0xb5, 0x02, 0xbe, 0xeb, 0x3c, 0x46, 0x51, + 0x32, 0x84, 0x22, 0x07, 0x9b, 0x25, 0x28, 0x30, 0x2b, 0xfa, 0xff, 0xe4, 0xa1, 0x9a, 0xde, 0xb6, + 0x7f, 0x4a, 0x43, 0x41, 0x37, 0xa1, 0x68, 0xb1, 0x94, 0x99, 0x67, 0x10, 0x7f, 0x26, 0xc5, 0xf4, + 0x46, 0xd2, 0x10, 0x6c, 0xec, 0xbf, 0xda, 0xe0, 0xb9, 0x35, 0x9d, 0x02, 0xaa, 0x99, 0x4b, 0xaa, + 0x9a, 0x39, 0x88, 0x5a, 0x50, 0x0c, 0xb0, 0xbf, 0x6f, 0x75, 0x31, 0x0f, 0x4e, 0x75, 0x59, 0x73, + 0xd7, 0xf5, 0x31, 0xd1, 0xb9, 0xc5, 0x58, 0x12, 0x9d, 0x5c, 0x46, 0xd5, 0xc9, 0x41, 0xf4, 0x31, + 0x94, 0xbb, 0xae, 0xb3, 0x63, 0xf5, 0x36, 0x0c, 0x8f, 0x87, 0xa7, 0xd3, 0x59, 0x5a, 0x2f, 0x08, + 0x26, 0xde, 0x84, 0x10, 0x8f, 0xa9, 0x26, 0x44, 0xcc, 0x95, 0x2c, 0xe8, 0xaf, 0x27, 0x00, 0x92, + 0xc5, 0x41, 0x6f, 0x43, 0x05, 0x1f, 0xe0, 0x6e, 0x14, 0xba, 0xbe, 0x78, 0x4f, 0xf0, 0x9e, 0x9e, + 0x80, 0x95, 0xc0, 0x0e, 0x09, 0x4a, 0x0e, 0xaa, 0x63, 0xf4, 0x71, 0xe0, 0x19, 0x5d, 0xd1, 0x0c, + 0xa4, 0xce, 0xc4, 0xa0, 0x7c, 0x50, 0x63, 0x10, 0xfd, 0x39, 0x4c, 0xd0, 0xf6, 0x21, 0xeb, 0x03, + 0xa2, 0xe1, 0xa0, 0x3e, 0xe3, 0xa8, 0x8d, 0x43, 0x4a, 0x47, 0xef, 0xc3, 0xf4, 0x5e, 0xbc, 0xf1, + 0x88, 0x6f, 0x13, 0x54, 0x80, 0xa6, 0x76, 0x09, 0x41, 0xf1, 0x6e, 0x4a, 0xc6, 0xd1, 0x0e, 0x54, + 0x0c, 0xc7, 0x71, 0x43, 0xfa, 0x0e, 0x12, 0xbd, 0xc1, 0x17, 0xc6, 0x6d, 0xd3, 0xc6, 0x6a, 0xc2, + 0xcb, 0xb2, 0x24, 0x1a, 0x3c, 0x24, 0x0d, 0x72, 0xf0, 0x90, 0x60, 0xd4, 0x82, 0x82, 0x6d, 0x74, + 0xb0, 0x2d, 0x82, 0xfe, 0x73, 0x63, 0x4d, 0x5c, 0xa5, 0x6c, 0x4c, 0x3b, 0x7d, 0xe5, 0x33, 0x39, + 0xf9, 0x95, 0xcf, 0x90, 0xc5, 0x1d, 0xa8, 0xa6, 0xfd, 0x39, 0x5a, 0x02, 0xf3, 0x82, 0x9c, 0xc0, + 0x94, 0xef, 0x99, 0x32, 0x19, 0x50, 0x91, 0x9c, 0x7a, 0x1c, 0x26, 0xf4, 0x7f, 0xd3, 0x60, 0x2e, + 0xeb, 0xec, 0xa2, 0x0d, 0xe9, 0xc4, 0x6b, 0xbc, 0xc7, 0x91, 0xb1, 0xd5, 0xb9, 0xec, 0x98, 0xa3, + 0x9e, 0x1c, 0xf4, 0x26, 0xcc, 0x38, 0xae, 0x89, 0xdb, 0x06, 0x31, 0x60, 0x5b, 0x41, 0x58, 0xcb, + 0xd1, 0xde, 0x31, 0xed, 0x8d, 0x10, 0xca, 0xaa, 0x20, 0x48, 0xd2, 0xd3, 0x0a, 0x41, 0xff, 0x7b, + 0x0d, 0x66, 0x53, 0xad, 0xcb, 0x87, 0x4e, 0xa2, 0xe4, 0xd4, 0x27, 0x77, 0xb4, 0xd4, 0x47, 0xff, + 0xa7, 0x1c, 0x54, 0xa4, 0xba, 0xee, 0xa1, 0x7d, 0xb8, 0x05, 0xb3, 0xfc, 0x4d, 0x69, 0x39, 0x3d, + 0x56, 0x4e, 0xe5, 0x78, 0x93, 0x62, 0xe4, 0x4b, 0xc1, 0xba, 0xdb, 0xd9, 0x8a, 0x79, 0x69, 0x35, + 0x45, 0x3b, 0x58, 0x81, 0x82, 0x49, 0x26, 0x66, 0x54, 0x0a, 0xba, 0x09, 0x0b, 0x91, 0x67, 0x1a, + 0x21, 0x6e, 0x07, 0xbc, 0xe7, 0xde, 0x76, 0xa2, 0x7e, 0x07, 0xfb, 0xf4, 0xc4, 0x4f, 0xb2, 0x9e, + 0x0b, 0xe3, 0x10, 0x4d, 0xf9, 0x6b, 0x94, 0x2e, 0xe9, 0x9c, 0xcb, 0xa2, 0xeb, 0x97, 0x01, 0x8d, + 0xf6, 0x95, 0x95, 0xf9, 0xd5, 0x8e, 0x38, 0xbf, 0x5f, 0x69, 0x50, 0x4d, 0xb7, 0x8b, 0x9f, 0xc8, + 0x42, 0x1f, 0x42, 0x39, 0x6e, 0xfd, 0x3e, 0xb4, 0x03, 0x2f, 0x41, 0xc1, 0xc7, 0x46, 0xe0, 0x3a, + 0xfc, 0x64, 0xd2, 0x10, 0xc3, 0x10, 0x39, 0xc4, 0x30, 0x44, 0xbf, 0x01, 0x53, 0x6c, 0x06, 0x3f, + 0xb0, 0xec, 0x10, 0xfb, 0xe8, 0x22, 0x14, 0x82, 0xd0, 0x08, 0x71, 0x50, 0xd3, 0x96, 0xf3, 0xe7, + 0x66, 0xce, 0x2f, 0x8c, 0x76, 0x79, 0x09, 0x99, 0x69, 0x65, 0x9c, 0xb2, 0x56, 0x86, 0xe8, 0x7f, + 0xab, 0xc1, 0x94, 0xdc, 0xcc, 0x7e, 0x34, 0x6a, 0xef, 0x73, 0x68, 0x5f, 0x08, 0x1f, 0xec, 0x47, + 0xb3, 0xb2, 0xf7, 0x67, 0xfd, 0x3f, 0x34, 0x36, 0xb3, 0x71, 0x17, 0xf4, 0x61, 0xcd, 0xf7, 0x92, + 0x56, 0x08, 0x39, 0x61, 0x01, 0x0d, 0x6c, 0x47, 0x6d, 0x85, 0xd0, 0xf0, 0xa7, 0x88, 0xcb, 0xe1, + 0x4f, 0x21, 0xe8, 0xdf, 0x4c, 0x52, 0xcf, 0x93, 0x8e, 0xf7, 0x93, 0x6e, 0x02, 0xa5, 0xb2, 0x93, + 0xfc, 0x7d, 0x64, 0x27, 0x2f, 0x43, 0x91, 0xbe, 0x0e, 0xe2, 0xc4, 0x81, 0x2e, 0x1a, 0x81, 0xd4, + 0x2f, 0x8e, 0x0c, 0xb9, 0x4b, 0xd4, 0x9a, 0x7c, 0xb8, 0xa8, 0x85, 0xda, 0x70, 0x72, 0xd7, 0x08, + 0xda, 0x22, 0xce, 0x9a, 0x6d, 0x23, 0x6c, 0xc7, 0x71, 0xa2, 0x40, 0xcb, 0x94, 0xe7, 0x86, 0x83, + 0xfa, 0xf2, 0xae, 0x11, 0x6c, 0x09, 0x9e, 0xd5, 0x70, 0x73, 0x34, 0x6a, 0x2c, 0x64, 0x73, 0xa0, + 0x6d, 0x98, 0xcf, 0x56, 0x5e, 0xa4, 0x9e, 0xd3, 0x26, 0x6f, 0x70, 0x57, 0xcd, 0x27, 0x32, 0xc8, + 0xe8, 0x4b, 0x0d, 0x6a, 0xe4, 0xfd, 0xec, 0xe3, 0xcf, 0x23, 0xcb, 0xc7, 0x7d, 0xb2, 0x62, 0x6d, + 0x77, 0x1f, 0xfb, 0xb6, 0x71, 0xc8, 0xbf, 0xd6, 0x9c, 0x19, 0x7d, 0x7b, 0x6c, 0xba, 0x66, 0x4b, + 0x12, 0x60, 0x43, 0xf3, 0x54, 0xf0, 0x3a, 0x53, 0x22, 0x0f, 0x2d, 0x9b, 0x63, 0x7d, 0xa2, 0x54, + 0xaa, 0x96, 0xf5, 0xdf, 0x6a, 0x30, 0xa3, 0x7e, 0x54, 0x79, 0xe2, 0x1b, 0x73, 0xe4, 0x48, 0xe6, + 0x1f, 0xd3, 0x91, 0xfc, 0x8d, 0x06, 0xd3, 0xca, 0xb7, 0x9e, 0xa7, 0x67, 0xe8, 0xff, 0x9c, 0x83, + 0x85, 0x6c, 0x35, 0x8f, 0xa5, 0x00, 0xbd, 0x0c, 0x24, 0x95, 0xbc, 0x92, 0xe4, 0x46, 0xf3, 0x23, + 0xf5, 0x27, 0x1d, 0x82, 0xc8, 0x43, 0x47, 0x3e, 0xd2, 0x08, 0x71, 0x74, 0x13, 0x2a, 0x96, 0xf4, + 0x39, 0x28, 0x9f, 0xd5, 0xb5, 0x97, 0x3f, 0x02, 0xb1, 0x2e, 0xc5, 0x98, 0x4f, 0x3f, 0xb2, 0xaa, + 0x66, 0x01, 0x26, 0x48, 0xf2, 0xa6, 0xef, 0x43, 0x91, 0xbb, 0x83, 0x5e, 0x83, 0x32, 0x8d, 0x73, + 0xb4, 0xa6, 0x62, 0x89, 0x3b, 0x4d, 0x3b, 0x08, 0x98, 0xba, 0x90, 0x51, 0x12, 0x18, 0x7a, 0x13, + 0x80, 0x1c, 0x6d, 0x1e, 0xe1, 0x72, 0x34, 0x4e, 0xd0, 0xda, 0xcd, 0x73, 0xcd, 0x91, 0xb0, 0x56, + 0x8e, 0x41, 0xfd, 0xdf, 0x73, 0x50, 0x91, 0x3f, 0x40, 0x3d, 0x90, 0xf1, 0x2f, 0x40, 0xd4, 0xd5, + 0x6d, 0xc3, 0x34, 0xc9, 0x5f, 0x2c, 0x5e, 0x69, 0x2b, 0x63, 0x27, 0x49, 0xfc, 0xbf, 0x2a, 0x24, + 0x58, 0x15, 0x45, 0x3f, 0xf1, 0x5b, 0x29, 0x92, 0x64, 0xb5, 0x9a, 0xa6, 0x2d, 0xee, 0xc1, 0x7c, + 0xa6, 0x2a, 0xb9, 0xf6, 0x99, 0x7c, 0x54, 0xb5, 0xcf, 0x7f, 0x4e, 0xc2, 0x7c, 0xe6, 0x87, 0xbf, + 0x27, 0x7e, 0x8a, 0xd5, 0x13, 0x94, 0x7f, 0x24, 0x27, 0xe8, 0x2b, 0x2d, 0x6b, 0x65, 0xd9, 0x47, + 0x94, 0xb7, 0x8f, 0xf0, 0x35, 0xf4, 0x51, 0xad, 0xb1, 0xba, 0x2d, 0x27, 0x1f, 0xe8, 0x4c, 0x14, + 0x8e, 0x7a, 0x26, 0xd0, 0x2b, 0xac, 0x8c, 0xa5, 0xb6, 0x8a, 0xd4, 0x96, 0x88, 0x10, 0x29, 0x53, + 0x45, 0x0e, 0xa1, 0xf7, 0x61, 0x5a, 0x48, 0xb0, 0xe6, 0x49, 0x29, 0xe9, 0x6c, 0x70, 0x9e, 0x74, + 0xff, 0x64, 0x4a, 0xc6, 0xff, 0xb8, 0x7b, 0xf8, 0x77, 0x1a, 0xcc, 0xa6, 0x6e, 0x02, 0x3c, 0x3d, + 0xef, 0xa0, 0xaf, 0x35, 0x28, 0xc7, 0x97, 0x50, 0x1e, 0x3a, 0x91, 0x5f, 0x85, 0x02, 0x66, 0x17, + 0x21, 0x58, 0xb8, 0x3b, 0x91, 0xba, 0xa8, 0x46, 0x68, 0xfc, 0x6a, 0x5a, 0xea, 0xee, 0x43, 0x8b, + 0x0b, 0xea, 0xff, 0xab, 0x89, 0x14, 0x3d, 0xf1, 0xe9, 0x89, 0x2e, 0x45, 0x32, 0xa6, 0xfc, 0x83, + 0x8e, 0xe9, 0xbf, 0xca, 0x30, 0x49, 0xf9, 0x48, 0x09, 0x1d, 0x62, 0xbf, 0x6f, 0x39, 0x86, 0x4d, + 0x87, 0x53, 0x62, 0xe7, 0x56, 0x60, 0xf2, 0xb9, 0x15, 0x18, 0xda, 0x85, 0xd9, 0xa4, 0xed, 0x47, + 0xd5, 0x64, 0xdf, 0x7f, 0xfb, 0x50, 0x65, 0x62, 0x8d, 0xfd, 0x94, 0xa4, 0x7a, 0x41, 0x20, 0x45, + 0x44, 0x26, 0xcc, 0x74, 0x5d, 0x27, 0x34, 0x2c, 0x07, 0xfb, 0xcc, 0x50, 0x3e, 0xeb, 0xfe, 0xcf, + 0x05, 0x85, 0x87, 0x75, 0x4f, 0x54, 0x39, 0xf5, 0xfe, 0x8f, 0x4a, 0x43, 0x9f, 0xc1, 0xb4, 0x28, + 0x63, 0x98, 0x91, 0x89, 0xac, 0xfb, 0x3f, 0x6b, 0x32, 0x0b, 0xdb, 0xd2, 0x8a, 0x94, 0x7a, 0xff, + 0x47, 0x21, 0x21, 0x1b, 0xaa, 0x9e, 0x6b, 0x6e, 0x3b, 0x3c, 0x79, 0x37, 0x3a, 0x36, 0xe6, 0xbd, + 0xe6, 0xa5, 0x91, 0x94, 0x47, 0xe1, 0x62, 0xa1, 0x38, 0x2d, 0xab, 0xde, 0xa8, 0x4b, 0x53, 0xd1, + 0xa7, 0x30, 0x65, 0x93, 0x6a, 0x72, 0xed, 0xc0, 0xb3, 0x7c, 0x6c, 0x66, 0xdf, 0x7f, 0xbb, 0x2a, + 0x71, 0xb0, 0x40, 0x28, 0xcb, 0xa8, 0x77, 0x80, 0x64, 0x0a, 0x59, 0xfd, 0xbe, 0x71, 0xd0, 0x8a, + 0x9c, 0x60, 0xed, 0x80, 0xdf, 0x65, 0x2a, 0x66, 0xad, 0xfe, 0x86, 0xca, 0xc4, 0x56, 0x3f, 0x25, + 0xa9, 0xae, 0x7e, 0x8a, 0x88, 0xae, 0xd2, 0x38, 0xcf, 0x96, 0x84, 0xdd, 0x83, 0x5b, 0x18, 0x99, + 0x2d, 0xb6, 0x1a, 0xac, 0xed, 0xc3, 0x9f, 0x14, 0xa5, 0xb1, 0x06, 0xbe, 0x06, 0x74, 0xd8, 0x2d, + 0x1c, 0x46, 0xbe, 0x83, 0x4d, 0x5e, 0x54, 0x8d, 0xae, 0x81, 0xc2, 0x15, 0xaf, 0x81, 0x82, 0x8e, + 0xac, 0x81, 0x42, 0x25, 0x7b, 0xca, 0x73, 0xcd, 0x1b, 0xec, 0xc8, 0x84, 0xf1, 0xc5, 0xb8, 0x67, + 0x47, 0x4c, 0x25, 0x2c, 0x6c, 0x4f, 0x29, 0x52, 0xea, 0x9e, 0x52, 0x48, 0xfc, 0x2e, 0x96, 0x7c, + 0x73, 0x87, 0xcd, 0x54, 0x65, 0xcc, 0x5d, 0xac, 0x11, 0xce, 0xf8, 0x2e, 0xd6, 0x08, 0x65, 0xe4, + 0x2e, 0xd6, 0x08, 0x07, 0xb1, 0xde, 0x33, 0x9c, 0xde, 0xba, 0xdb, 0x51, 0x77, 0xf5, 0x54, 0x96, + 0xf5, 0x4b, 0x19, 0x9c, 0xcc, 0x7a, 0x96, 0x0e, 0xd5, 0x7a, 0x16, 0x47, 0xb3, 0x24, 0xda, 0x43, + 0xfa, 0xb7, 0x1a, 0xcc, 0xa6, 0xe2, 0x0c, 0x7a, 0x0f, 0xe2, 0x1b, 0x27, 0x37, 0x0e, 0x3d, 0x91, + 0x26, 0x2b, 0x37, 0x54, 0x08, 0x9e, 0x75, 0x43, 0x85, 0xe0, 0xe8, 0x2a, 0x40, 0xfc, 0x4e, 0xba, + 0x5b, 0x90, 0xa6, 0x39, 0x5a, 0xc2, 0x29, 0xe7, 0x68, 0x09, 0xaa, 0xff, 0x90, 0x87, 0x92, 0xd8, + 0xa8, 0x8f, 0xa5, 0x8c, 0x5a, 0x81, 0x62, 0x1f, 0x07, 0xf4, 0xa6, 0x4a, 0x2e, 0xc9, 0x86, 0x38, + 0x24, 0x67, 0x43, 0x1c, 0x52, 0x93, 0xb5, 0xfc, 0x03, 0x25, 0x6b, 0x13, 0x47, 0x4e, 0xd6, 0x30, + 0xfd, 0x4a, 0x2d, 0x85, 0x5b, 0xf1, 0x5d, 0xe8, 0xee, 0x31, 0x5c, 0x7c, 0xc3, 0x96, 0x05, 0x53, + 0xdf, 0xb0, 0x65, 0x12, 0xda, 0x83, 0xe3, 0xd2, 0xb7, 0x2b, 0xde, 0x3b, 0x24, 0x81, 0x6f, 0x66, + 0xfc, 0x95, 0x80, 0x16, 0xe5, 0x62, 0xc7, 0x7b, 0x2f, 0x85, 0xca, 0xd9, 0x6e, 0x9a, 0xa6, 0xff, + 0x32, 0x07, 0x33, 0xaa, 0xbf, 0x8f, 0x65, 0x61, 0x5f, 0x83, 0x32, 0x3e, 0xb0, 0xc2, 0x76, 0xd7, + 0x35, 0x31, 0x2f, 0x19, 0xe9, 0x3a, 0x11, 0xf0, 0x82, 0x6b, 0x2a, 0xeb, 0x24, 0x30, 0x79, 0x37, + 0xe4, 0x8f, 0xb4, 0x1b, 0x92, 0x56, 0xeb, 0xc4, 0xbd, 0x5b, 0xad, 0xd9, 0xf3, 0x5c, 0x7e, 0x4c, + 0xf3, 0x7c, 0x27, 0x07, 0xd5, 0x74, 0x34, 0xfe, 0x79, 0x1c, 0x21, 0xf5, 0x34, 0xe4, 0x8f, 0x7c, + 0x1a, 0xde, 0x87, 0x69, 0x92, 0x3b, 0x1a, 0x61, 0xc8, 0xef, 0x70, 0x4e, 0xd0, 0x9c, 0x8b, 0xc5, + 0xa6, 0xc8, 0x59, 0x15, 0xb8, 0x12, 0x9b, 0x24, 0x5c, 0xff, 0x32, 0x07, 0xd3, 0xca, 0x5b, 0xe3, + 0xe9, 0x0b, 0x29, 0xfa, 0x2c, 0x4c, 0x2b, 0xc9, 0x98, 0xfe, 0x77, 0x6c, 0x9f, 0xa8, 0x59, 0xd0, + 0xd3, 0x37, 0x2f, 0x33, 0x30, 0x25, 0x67, 0x75, 0x7a, 0x13, 0x66, 0x53, 0x49, 0x98, 0x3c, 0x00, + 0xed, 0x28, 0x03, 0xd0, 0x17, 0x60, 0x2e, 0x2b, 0x77, 0xd0, 0x2f, 0xc1, 0x5c, 0xd6, 0x5b, 0xfd, + 0xfe, 0x0d, 0x7c, 0xa7, 0x51, 0x0b, 0xa3, 0xb7, 0xbd, 0x2f, 0x03, 0x38, 0xf8, 0x76, 0xfb, 0x9e, + 0xe5, 0x1f, 0x9b, 0x4f, 0x7c, 0x7b, 0x3d, 0x55, 0x2d, 0x95, 0x04, 0x46, 0x34, 0xb9, 0xb6, 0xd9, + 0xbe, 0x67, 0xd1, 0x45, 0x35, 0xb9, 0xb6, 0x39, 0xa2, 0x49, 0x60, 0xfa, 0x3f, 0xe4, 0x45, 0x65, + 0x9e, 0x5c, 0x97, 0xfe, 0x04, 0xaa, 0x9e, 0x78, 0xb8, 0xb7, 0xb7, 0xb4, 0x36, 0x89, 0xf9, 0xd3, + 0x96, 0x66, 0x54, 0x8a, 0xaa, 0x9b, 0x17, 0x9d, 0xb9, 0x23, 0xea, 0x6e, 0xa5, 0xaa, 0xcf, 0x19, + 0x95, 0x82, 0xfe, 0x1a, 0x8e, 0x8b, 0xdb, 0x64, 0xfb, 0x58, 0x38, 0x9e, 0x1f, 0xab, 0x9c, 0xdd, + 0xee, 0x8e, 0x05, 0xd2, 0x9e, 0xcf, 0xa6, 0x48, 0x29, 0xf5, 0xdc, 0xf7, 0x89, 0xa3, 0xaa, 0x4f, + 0x3b, 0x3f, 0x9b, 0x22, 0xe9, 0x5f, 0x6b, 0x30, 0x9b, 0xba, 0x80, 0x8e, 0x2e, 0x42, 0x89, 0xfe, + 0x3e, 0xed, 0xee, 0x2b, 0x40, 0x37, 0x24, 0xe5, 0x53, 0x2c, 0x14, 0x39, 0x84, 0xde, 0x80, 0x72, + 0x7c, 0x4f, 0x9d, 0x7f, 0x55, 0x66, 0x87, 0x4f, 0x80, 0xca, 0xe1, 0x13, 0xa0, 0xfe, 0x2f, 0x1a, + 0x9c, 0x1c, 0x7b, 0x39, 0xfd, 0x49, 0xf7, 0x0c, 0x5e, 0x7c, 0x05, 0x4a, 0xe2, 0xbb, 0x2f, 0x02, + 0x28, 0x7c, 0xb4, 0xbd, 0xb6, 0xbd, 0x76, 0xb1, 0x7a, 0x0c, 0x55, 0xa0, 0xb8, 0xb9, 0x76, 0xed, + 0xe2, 0x95, 0x6b, 0x97, 0xaa, 0x1a, 0x79, 0x68, 0x6d, 0x5f, 0xbb, 0x46, 0x1e, 0x72, 0x2f, 0x5e, + 0x95, 0x6f, 0xa1, 0xb1, 0xf7, 0x31, 0x9a, 0x82, 0xd2, 0xaa, 0xe7, 0xd1, 0x00, 0xc0, 0x64, 0xd7, + 0xf6, 0x2d, 0x72, 0x56, 0xab, 0x1a, 0x2a, 0x42, 0xfe, 0xfa, 0xf5, 0x8d, 0x6a, 0x0e, 0xcd, 0x41, + 0xf5, 0x22, 0x36, 0x4c, 0xdb, 0x72, 0xb0, 0x88, 0x3a, 0xd5, 0x7c, 0xf3, 0xd6, 0xf7, 0x3f, 0x2e, + 0x69, 0x3f, 0xfc, 0xb8, 0xa4, 0xfd, 0xe2, 0xc7, 0x25, 0xed, 0xce, 0x4f, 0x4b, 0xc7, 0x7e, 0xf8, + 0x69, 0xe9, 0xd8, 0xff, 0xfd, 0xb4, 0x74, 0xec, 0x93, 0x57, 0xa4, 0xdf, 0x62, 0xb2, 0x31, 0x79, + 0xbe, 0x4b, 0x02, 0x2e, 0x7f, 0x5a, 0x49, 0xff, 0x3a, 0xf5, 0xbb, 0xdc, 0xe9, 0x55, 0xfa, 0xb8, + 0xc9, 0xf8, 0x1a, 0x57, 0xdc, 0x06, 0x03, 0xe8, 0x0f, 0x08, 0x83, 0x4e, 0x81, 0xfe, 0x50, 0xf0, + 0xb5, 0x3f, 0x04, 0x00, 0x00, 0xff, 0xff, 0xe4, 0xb3, 0x51, 0x43, 0xd8, 0x3a, 0x00, 0x00, } func (m *EventSequence) Marshal() (dAtA []byte, err error) { @@ -5356,25 +5343,6 @@ func (m *JobRunLeased) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x4a } - if len(m.AdditionalAnnotations) > 0 { - for k := range m.AdditionalAnnotations { - v := m.AdditionalAnnotations[k] - baseI := i - i -= len(v) - copy(dAtA[i:], v) - i = encodeVarintEvents(dAtA, i, uint64(len(v))) - i-- - dAtA[i] = 0x12 - i -= len(k) - copy(dAtA[i:], k) - i = encodeVarintEvents(dAtA, i, uint64(len(k))) - i-- - dAtA[i] = 0xa - i = encodeVarintEvents(dAtA, i, uint64(baseI-i)) - i-- - dAtA[i] = 0x42 - } - } if m.ScheduledAtPriority != 0 { i = encodeVarintEvents(dAtA, i, uint64(m.ScheduledAtPriority)) i-- @@ -7703,14 +7671,6 @@ func (m *JobRunLeased) Size() (n int) { if m.ScheduledAtPriority != 0 { n += 1 + sovEvents(uint64(m.ScheduledAtPriority)) } - if len(m.AdditionalAnnotations) > 0 { - for k, v := range m.AdditionalAnnotations { - _ = k - _ = v - mapEntrySize := 1 + len(k) + sovEvents(uint64(len(k))) + 1 + len(v) + sovEvents(uint64(len(v))) - n += mapEntrySize + 1 + sovEvents(uint64(mapEntrySize)) - } - } if m.PodRequirementsOverlay != nil { l = m.PodRequirementsOverlay.Size() n += 1 + l + sovEvents(uint64(l)) @@ -12457,133 +12417,6 @@ func (m *JobRunLeased) Unmarshal(dAtA []byte) error { break } } - case 8: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AdditionalAnnotations", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthEvents - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthEvents - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.AdditionalAnnotations == nil { - m.AdditionalAnnotations = make(map[string]string) - } - var mapkey string - var mapvalue string - for iNdEx < postIndex { - entryPreIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - if fieldNum == 1 { - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthEvents - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey < 0 { - return ErrInvalidLengthEvents - } - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey - } else if fieldNum == 2 { - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthEvents - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue < 0 { - return ErrInvalidLengthEvents - } - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - } else { - iNdEx = entryPreIndex - skippy, err := skipEvents(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthEvents - } - if (iNdEx + skippy) > postIndex { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - m.AdditionalAnnotations[mapkey] = mapvalue - iNdEx = postIndex case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field PodRequirementsOverlay", wireType) diff --git a/pkg/armadaevents/events.proto b/pkg/armadaevents/events.proto index 3707d6c95f6..f78e8bb5839 100644 --- a/pkg/armadaevents/events.proto +++ b/pkg/armadaevents/events.proto @@ -284,6 +284,8 @@ message JobSucceeded { // Indicates that a job has been leased to a cluster by the Armada scheduler. message JobRunLeased { + reserved 8; + Uuid run_id = 1; Uuid job_id = 2; // Each cluster is represented by an executor. @@ -302,8 +304,6 @@ message JobRunLeased { // used to distinguish this case from the case where the job was scheduled // as a home job. int32 scheduled_at_priority = 7; - // Additional annotations to be added to the PodSpec. - map additional_annotations = 8; // The scheduler uses this field to modify the pod requirements of a job; // for example, it may add additional tolerations to runs that are scheduled // as away jobs.