diff --git a/applicationset/generators/pull_request.go b/applicationset/generators/pull_request.go index 209e09950e581..6ab61b6f5564a 100644 --- a/applicationset/generators/pull_request.go +++ b/applicationset/generators/pull_request.go @@ -199,11 +199,19 @@ func (g *PullRequestGenerator) selectServiceProvider(ctx context.Context, genera } if generatorConfig.AzureDevOps != nil { providerConfig := generatorConfig.AzureDevOps + var caCerts []byte + var scmError error + if providerConfig.CARef != nil { + caCerts, scmError = utils.GetConfigMapData(ctx, g.client, providerConfig.CARef, applicationSetInfo.Namespace) + if scmError != nil { + return nil, fmt.Errorf("error fetching CA certificates from ConfigMap: %w", scmError) + } + } token, err := utils.GetSecretRef(ctx, g.client, providerConfig.TokenRef, applicationSetInfo.Namespace) if err != nil { return nil, fmt.Errorf("error fetching Secret token: %w", err) } - return pullrequest.NewAzureDevOpsService(ctx, token, providerConfig.API, providerConfig.Organization, providerConfig.Project, providerConfig.Repo, providerConfig.Labels) + return pullrequest.NewAzureDevOpsService(ctx, token, providerConfig.API, providerConfig.Organization, providerConfig.Project, providerConfig.Repo, providerConfig.Labels, g.scmRootCAPath, providerConfig.Insecure, caCerts) } return nil, fmt.Errorf("no Pull Request provider implementation configured") } diff --git a/applicationset/generators/scm_provider.go b/applicationset/generators/scm_provider.go index 85a2550ae21f9..2333aa3d770b2 100644 --- a/applicationset/generators/scm_provider.go +++ b/applicationset/generators/scm_provider.go @@ -200,11 +200,20 @@ func (g *SCMProviderGenerator) GenerateParams(appSetGenerator *argoprojiov1alpha return nil, fmt.Errorf("error initializing Bitbucket Server service: %w", scmError) } } else if providerConfig.AzureDevOps != nil { - token, err := utils.GetSecretRef(ctx, g.client, providerConfig.AzureDevOps.AccessTokenRef, applicationSetInfo.Namespace) + providerConfig := providerConfig.AzureDevOps + var caCerts []byte + var scmError error + if providerConfig.CARef != nil { + caCerts, scmError = utils.GetConfigMapData(ctx, g.client, providerConfig.CARef, applicationSetInfo.Namespace) + if scmError != nil { + return nil, fmt.Errorf("error fetching CA certificates from ConfigMap: %w", scmError) + } + } + token, err := utils.GetSecretRef(ctx, g.client, providerConfig.AccessTokenRef, applicationSetInfo.Namespace) if err != nil { return nil, fmt.Errorf("error fetching Azure Devops access token: %w", err) } - provider, err = scm_provider.NewAzureDevOpsProvider(ctx, token, providerConfig.AzureDevOps.Organization, providerConfig.AzureDevOps.API, providerConfig.AzureDevOps.TeamProject, providerConfig.AzureDevOps.AllBranches) + provider, err = scm_provider.NewAzureDevOpsProvider(ctx, token, providerConfig.Organization, providerConfig.API, providerConfig.TeamProject, providerConfig.AllBranches, g.scmRootCAPath, providerConfig.Insecure, caCerts) if err != nil { return nil, fmt.Errorf("error initializing Azure Devops service: %w", err) } diff --git a/applicationset/services/pull_request/azure_devops.go b/applicationset/services/pull_request/azure_devops.go index 1d263212cdea1..6b1866f2e2984 100644 --- a/applicationset/services/pull_request/azure_devops.go +++ b/applicationset/services/pull_request/azure_devops.go @@ -5,6 +5,7 @@ import ( "fmt" "strings" + "github.com/argoproj/argo-cd/v2/applicationset/utils" "github.com/microsoft/azure-devops-go-api/azuredevops" core "github.com/microsoft/azure-devops-go-api/azuredevops/core" git "github.com/microsoft/azure-devops-go-api/azuredevops/git" @@ -41,7 +42,7 @@ var ( _ AzureDevOpsClientFactory = &devopsFactoryImpl{} ) -func NewAzureDevOpsService(ctx context.Context, token, url, organization, project, repo string, labels []string) (PullRequestService, error) { +func NewAzureDevOpsService(ctx context.Context, token, url, organization, project, repo string, labels []string, scmRootCAPath string, insecure bool, caCerts []byte) (PullRequestService, error) { organizationUrl := buildURL(url, organization) var connection *azuredevops.Connection @@ -51,6 +52,9 @@ func NewAzureDevOpsService(ctx context.Context, token, url, organization, projec connection = azuredevops.NewPatConnection(organizationUrl, token) } + tlsConfig := utils.GetTlsConfig(scmRootCAPath, insecure, caCerts) + connection.TlsConfig = tlsConfig + return &AzureDevOpsService{ clientFactory: &devopsFactoryImpl{connection: connection}, project: project, diff --git a/applicationset/services/scm_provider/azure_devops.go b/applicationset/services/scm_provider/azure_devops.go index a4bb50a0232e3..adfef9a6ba7e7 100644 --- a/applicationset/services/scm_provider/azure_devops.go +++ b/applicationset/services/scm_provider/azure_devops.go @@ -7,6 +7,7 @@ import ( netUrl "net/url" "strings" + "github.com/argoproj/argo-cd/v2/applicationset/utils" "github.com/google/uuid" "github.com/microsoft/azure-devops-go-api/azuredevops" azureGit "github.com/microsoft/azure-devops-go-api/azuredevops/git" @@ -57,7 +58,7 @@ var ( _ AzureDevOpsClientFactory = &devopsFactoryImpl{} ) -func NewAzureDevOpsProvider(ctx context.Context, accessToken string, org string, url string, project string, allBranches bool) (*AzureDevOpsProvider, error) { +func NewAzureDevOpsProvider(ctx context.Context, accessToken string, org string, url string, project string, allBranches bool, scmRootCAPath string, insecure bool, caCerts []byte) (*AzureDevOpsProvider, error) { if accessToken == "" { return nil, fmt.Errorf("no access token provided") } @@ -68,6 +69,8 @@ func NewAzureDevOpsProvider(ctx context.Context, accessToken string, org string, } connection := azuredevops.NewPatConnection(devOpsURL, accessToken) + tlsConfig := utils.GetTlsConfig(scmRootCAPath, insecure, caCerts) + connection.TlsConfig = tlsConfig return &AzureDevOpsProvider{organization: org, teamProject: project, accessToken: accessToken, clientFactory: &devopsFactoryImpl{connection: connection}, allBranches: allBranches}, nil } diff --git a/assets/swagger.json b/assets/swagger.json index 1e8a981c51c66..fd1ec8b8e8f43 100644 --- a/assets/swagger.json +++ b/assets/swagger.json @@ -8053,6 +8053,13 @@ "description": "The Azure DevOps API URL to talk to. If blank, use https://dev.azure.com/.", "type": "string" }, + "caRef": { + "$ref": "#/definitions/v1alpha1ConfigMapKeyRef" + }, + "insecure": { + "type": "boolean", + "title": "Allow self-signed TLS / Certificates; default: false" + }, "labels": { "type": "array", "title": "Labels is used to filter the PRs that you want to target", @@ -8957,6 +8964,13 @@ "description": "The URL to Azure DevOps. If blank, use https://dev.azure.com.", "type": "string" }, + "caRef": { + "$ref": "#/definitions/v1alpha1ConfigMapKeyRef" + }, + "insecure": { + "type": "boolean", + "title": "Allow self-signed TLS / Certificates; default: false" + }, "organization": { "description": "Azure Devops organization. Required. E.g. \"my-organization\".", "type": "string" diff --git a/docs/operator-manual/applicationset/Generators-Pull-Request.md b/docs/operator-manual/applicationset/Generators-Pull-Request.md index 2e6dffaaf5f32..aaaadbab1ea64 100644 --- a/docs/operator-manual/applicationset/Generators-Pull-Request.md +++ b/docs/operator-manual/applicationset/Generators-Pull-Request.md @@ -322,6 +322,10 @@ spec: * `tokenRef`: A `Secret` name and key containing the Azure DevOps access token to use for requests. If not specified, will make anonymous requests which have a lower rate limit and can only see public repositories. (Optional) * `labels`: Filter the PRs to those containing **all** of the labels listed. (Optional) +In case self-signed Azure DevOps certificates, the following options can be usefully: +* `insecure`: By default (false) - Skip checking the validity of the SCM's certificate - useful for self-signed TLS certificates. +* `caRef`: Optional `ConfigMap` name and key containing the Azure DevOps certificates to trust - useful for self-signed TLS certificates. Possibly reference the ArgoCD CM holding the trusted certs. Will be concatenated with the ArgoCD trusted CM. + ## Filters Filters allow selecting which pull requests to generate for. Each filter can declare one or more conditions, all of which must pass. If multiple filters are present, any can match for a repository to be included. If no filters are specified, all pull requests will be processed. diff --git a/docs/operator-manual/applicationset/Generators-SCM-Provider.md b/docs/operator-manual/applicationset/Generators-SCM-Provider.md index d48c07403573a..47c28f3d56c1f 100644 --- a/docs/operator-manual/applicationset/Generators-SCM-Provider.md +++ b/docs/operator-manual/applicationset/Generators-SCM-Provider.md @@ -263,6 +263,10 @@ spec: * `api`: Optional. URL to Azure DevOps. If not set, `https://dev.azure.com` is used. * `allBranches`: Optional, default `false`. If `true`, scans every branch of eligible repositories. If `false`, check only the default branch of the eligible repositories. +In case self-signed Azure DevOps certificates, the following options can be usefully: +* `insecure`: By default (false) - Skip checking the validity of the SCM's certificate - useful for self-signed TLS certificates. +* `caRef`: Optional `ConfigMap` name and key containing the Azure DevOps certificates to trust - useful for self-signed TLS certificates. Possibly reference the ArgoCD CM holding the trusted certs. Will be concatenated with the ArgoCD trusted CM. + ## Bitbucket Cloud The Bitbucket mode uses the Bitbucket API V2 to scan a workspace in bitbucket.org. diff --git a/manifests/core-install.yaml b/manifests/core-install.yaml index f558902d4692d..53348580010e7 100644 --- a/manifests/core-install.yaml +++ b/manifests/core-install.yaml @@ -10952,6 +10952,18 @@ spec: properties: api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean labels: items: type: string @@ -11808,6 +11820,18 @@ spec: type: boolean api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean organization: type: string teamProject: @@ -16316,6 +16340,18 @@ spec: properties: api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean labels: items: type: string @@ -17172,6 +17208,18 @@ spec: type: boolean api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean organization: type: string teamProject: @@ -19205,6 +19253,18 @@ spec: properties: api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean labels: items: type: string @@ -20061,6 +20121,18 @@ spec: type: boolean api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean organization: type: string teamProject: diff --git a/manifests/crds/applicationset-crd.yaml b/manifests/crds/applicationset-crd.yaml index ddfa9b27be056..b0409dd514c72 100644 --- a/manifests/crds/applicationset-crd.yaml +++ b/manifests/crds/applicationset-crd.yaml @@ -5604,6 +5604,18 @@ spec: properties: api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean labels: items: type: string @@ -6460,6 +6472,18 @@ spec: type: boolean api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean organization: type: string teamProject: @@ -10968,6 +10992,18 @@ spec: properties: api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean labels: items: type: string @@ -11824,6 +11860,18 @@ spec: type: boolean api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean organization: type: string teamProject: @@ -13857,6 +13905,18 @@ spec: properties: api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean labels: items: type: string @@ -14713,6 +14773,18 @@ spec: type: boolean api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean organization: type: string teamProject: diff --git a/manifests/ha/install.yaml b/manifests/ha/install.yaml index ba37a63431b6b..c20476952125b 100644 --- a/manifests/ha/install.yaml +++ b/manifests/ha/install.yaml @@ -10952,6 +10952,18 @@ spec: properties: api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean labels: items: type: string @@ -11808,6 +11820,18 @@ spec: type: boolean api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean organization: type: string teamProject: @@ -16316,6 +16340,18 @@ spec: properties: api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean labels: items: type: string @@ -17172,6 +17208,18 @@ spec: type: boolean api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean organization: type: string teamProject: @@ -19205,6 +19253,18 @@ spec: properties: api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean labels: items: type: string @@ -20061,6 +20121,18 @@ spec: type: boolean api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean organization: type: string teamProject: diff --git a/manifests/install.yaml b/manifests/install.yaml index 6fd35145cb0ca..1257a99ddacb0 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -10952,6 +10952,18 @@ spec: properties: api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean labels: items: type: string @@ -11808,6 +11820,18 @@ spec: type: boolean api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean organization: type: string teamProject: @@ -16316,6 +16340,18 @@ spec: properties: api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean labels: items: type: string @@ -17172,6 +17208,18 @@ spec: type: boolean api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean organization: type: string teamProject: @@ -19205,6 +19253,18 @@ spec: properties: api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean labels: items: type: string @@ -20061,6 +20121,18 @@ spec: type: boolean api: type: string + caRef: + properties: + configMapName: + type: string + key: + type: string + required: + - configMapName + - key + type: object + insecure: + type: boolean organization: type: string teamProject: diff --git a/pkg/apis/application/v1alpha1/applicationset_types.go b/pkg/apis/application/v1alpha1/applicationset_types.go index d4446130c7026..97aacb869eba0 100644 --- a/pkg/apis/application/v1alpha1/applicationset_types.go +++ b/pkg/apis/application/v1alpha1/applicationset_types.go @@ -554,6 +554,10 @@ type SCMProviderGeneratorAzureDevOps struct { AccessTokenRef *SecretRef `json:"accessTokenRef" protobuf:"bytes,8,opt,name=accessTokenRef"` // Scan all branches instead of just the default branch. AllBranches bool `json:"allBranches,omitempty" protobuf:"varint,9,opt,name=allBranches"` + // Allow self-signed TLS / Certificates; default: false + Insecure bool `json:"insecure,omitempty" protobuf:"varint,10,opt,name=insecure"` + // ConfigMap key holding the trusted certificates + CARef *ConfigMapKeyRef `json:"caRef,omitempty" protobuf:"bytes,11,opt,name=caRef"` } type TagFilter struct { @@ -659,6 +663,10 @@ type PullRequestGeneratorAzureDevOps struct { TokenRef *SecretRef `json:"tokenRef,omitempty" protobuf:"bytes,5,opt,name=tokenRef"` // Labels is used to filter the PRs that you want to target Labels []string `json:"labels,omitempty" protobuf:"bytes,6,rep,name=labels"` + // Allow self-signed TLS / Certificates; default: false + Insecure bool `json:"insecure,omitempty" protobuf:"varint,7,opt,name=insecure"` + // ConfigMap key holding the trusted certificates + CARef *ConfigMapKeyRef `json:"caRef,omitempty" protobuf:"bytes,8,opt,name=caRef"` } // PullRequestGenerator defines connection info specific to GitHub. diff --git a/pkg/apis/application/v1alpha1/generated.pb.go b/pkg/apis/application/v1alpha1/generated.pb.go index 5fc96609621ca..820008a834164 100644 --- a/pkg/apis/application/v1alpha1/generated.pb.go +++ b/pkg/apis/application/v1alpha1/generated.pb.go @@ -4593,7 +4593,7 @@ func init() { } var fileDescriptor_030104ce3b95bcac = []byte{ - // 11357 bytes of a gzipped FileDescriptorProto + // 11373 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x70, 0x1c, 0xc9, 0x75, 0x98, 0x66, 0x17, 0x0b, 0xec, 0x3e, 0x7c, 0x11, 0x4d, 0xf2, 0x0e, 0xa4, 0xee, 0x0e, 0xf4, 0x9c, 0x7d, 0x3a, 0x45, 0x77, 0x80, 0x8f, 0xba, 0x93, 0x2f, 0x3a, 0x4b, 0x32, 0x3e, 0x48, 0x10, @@ -4601,7 +4601,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0xf6, 0x66, 0x66, 0x41, 0xe2, 0x2c, 0xc9, 0x92, 0x25, 0xd9, 0x72, 0xf4, 0x71, 0x8a, 0x94, 0xaa, 0x9c, 0x13, 0x4b, 0x91, 0x2d, 0x27, 0x95, 0x54, 0x4a, 0x15, 0x25, 0xf9, 0x11, 0x27, 0xb6, 0xcb, 0x15, 0x3b, 0xe5, 0x52, 0xe2, 0xa4, 0xec, 0x52, 0xa9, 0x2c, 0x25, 0xb1, 0x11, 0x89, 0x71, 0x2a, - 0xa9, 0xfc, 0x70, 0x55, 0x9c, 0xfc, 0x48, 0x31, 0xf9, 0x91, 0xea, 0xef, 0x9e, 0xd9, 0x59, 0x60, + 0xa9, 0xfc, 0x48, 0x55, 0x9c, 0xfc, 0x48, 0x31, 0xfe, 0x91, 0xea, 0xef, 0x9e, 0xd9, 0x59, 0x60, 0x41, 0x0c, 0x40, 0x4a, 0xb9, 0x7f, 0xbb, 0xfd, 0x5e, 0xf7, 0xeb, 0xe9, 0x8f, 0xf7, 0x5e, 0xbf, 0x7e, 0xef, 0x35, 0x2c, 0x36, 0xbc, 0x64, 0xb3, 0xbd, 0x3e, 0xe9, 0x86, 0xcd, 0x29, 0x27, 0x6a, 0x84, 0xad, 0x28, 0xbc, 0xc9, 0x7e, 0x3c, 0xed, 0xd6, 0xa7, 0xb6, 0xcf, 0x4f, 0xb5, 0xb6, 0x1a, @@ -4632,7 +4632,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0x5e, 0x9c, 0xa0, 0x9f, 0xed, 0x18, 0xdc, 0xc9, 0xde, 0x06, 0x97, 0xd6, 0x66, 0x43, 0x7b, 0x42, 0x10, 0xab, 0xca, 0x12, 0x63, 0x60, 0x9b, 0x50, 0xf1, 0x12, 0xd2, 0x8c, 0xc7, 0x4b, 0xe7, 0xca, 0x4f, 0x0e, 0x9e, 0xbf, 0x54, 0xd4, 0x77, 0xce, 0x0c, 0x0b, 0xa2, 0x95, 0x05, 0xda, 0x3c, 0xe6, - 0x54, 0xec, 0xbf, 0x1c, 0x36, 0xbf, 0x8f, 0x0e, 0x38, 0x7a, 0x06, 0x06, 0xe3, 0xb0, 0x1d, 0xb9, + 0x54, 0xec, 0xbf, 0x18, 0x36, 0xbf, 0x8f, 0x0e, 0x38, 0x7a, 0x06, 0x06, 0xe3, 0xb0, 0x1d, 0xb9, 0x04, 0x93, 0x56, 0x18, 0x8f, 0x5b, 0xe7, 0xca, 0x74, 0xe9, 0xd1, 0x45, 0xbd, 0xaa, 0x8b, 0xb1, 0x89, 0x83, 0xbe, 0x60, 0xc1, 0x50, 0x9d, 0xc4, 0x89, 0x17, 0x30, 0xfa, 0xb2, 0xf3, 0x6b, 0x87, 0xee, 0xbc, 0x2c, 0x9c, 0xd3, 0x8d, 0xcf, 0x9c, 0x12, 0x1f, 0x32, 0x64, 0x14, 0xc6, 0x38, 0x45, @@ -4765,7 +4765,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0x1e, 0x91, 0x77, 0x4c, 0xdf, 0x3e, 0x75, 0xbb, 0x61, 0x9c, 0x04, 0xd8, 0xf0, 0x02, 0xc7, 0xf7, 0x5e, 0xa3, 0xa7, 0xa3, 0x0a, 0x13, 0xf0, 0x4c, 0x63, 0xba, 0xa8, 0x4a, 0xb1, 0x81, 0x71, 0xf6, 0xaf, 0xc2, 0xa0, 0xf1, 0xe5, 0x39, 0x1e, 0x2f, 0xa7, 0x4c, 0x8f, 0x97, 0x9a, 0xe1, 0xa8, 0x72, - 0xf6, 0xbd, 0x70, 0x22, 0xdb, 0xc1, 0x83, 0xd4, 0xb7, 0xff, 0xf7, 0x40, 0xf6, 0x0e, 0x6e, 0x8d, + 0xf6, 0xbd, 0x70, 0x22, 0xdb, 0xc1, 0x83, 0xd4, 0xb7, 0xff, 0xcf, 0x40, 0xf6, 0x0e, 0x6e, 0x8d, 0x44, 0x4d, 0xda, 0xb5, 0x37, 0x0d, 0x5b, 0x6f, 0x1a, 0xb6, 0xde, 0x34, 0x6c, 0x99, 0x77, 0x13, 0xc2, 0x68, 0x33, 0x70, 0x4c, 0x46, 0x9b, 0x94, 0x19, 0xaa, 0x5a, 0xb8, 0x19, 0xca, 0xfe, 0x74, 0x87, 0xe5, 0x7e, 0x2d, 0x22, 0x04, 0x85, 0x50, 0x09, 0xc2, 0x3a, 0x91, 0x3a, 0xee, 0xe5, 0x62, @@ -4900,7 +4900,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0xb0, 0xae, 0xe2, 0x95, 0x32, 0x19, 0xde, 0x62, 0xdc, 0x51, 0xc3, 0xb4, 0x9f, 0x0c, 0xee, 0x63, 0x3f, 0xd9, 0x51, 0x5e, 0xa2, 0xdc, 0xe4, 0xfd, 0x62, 0x21, 0x03, 0xd0, 0x93, 0x4b, 0xe8, 0xe7, 0x33, 0x2e, 0xa1, 0xc3, 0xac, 0x03, 0xd7, 0x8b, 0xe9, 0xc0, 0xc1, 0xfd, 0x3f, 0xef, 0xa7, 0x3f, - 0xe7, 0xff, 0xb2, 0x40, 0xce, 0xeb, 0xac, 0xe3, 0x6e, 0x12, 0xba, 0x64, 0xd0, 0x7b, 0x61, 0x44, + 0xe7, 0xff, 0xb6, 0x40, 0xce, 0xeb, 0xac, 0xe3, 0x6e, 0x12, 0xba, 0x64, 0xd0, 0x7b, 0x61, 0x44, 0x59, 0x01, 0xb8, 0x4a, 0x64, 0xb1, 0x55, 0xa3, 0x2e, 0xf7, 0x71, 0x0a, 0x8a, 0x33, 0xd8, 0x68, 0x0a, 0x6a, 0x74, 0x9c, 0x78, 0x55, 0x2e, 0xf7, 0x95, 0xa5, 0x61, 0x7a, 0x65, 0x41, 0xd4, 0xd2, 0x38, 0x28, 0x84, 0x31, 0xdf, 0x89, 0x13, 0xd6, 0x83, 0xd5, 0x9d, 0xc0, 0xbd, 0xc7, 0x6c, 0x1e, @@ -4936,7 +4936,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0x67, 0xd6, 0x04, 0xe2, 0x34, 0xae, 0x4c, 0x06, 0x5a, 0xca, 0x4f, 0x06, 0x6a, 0xff, 0x9e, 0x05, 0x59, 0x01, 0x68, 0xa4, 0x3e, 0xb4, 0xf6, 0x4c, 0x7d, 0x78, 0x80, 0xe4, 0x81, 0x3f, 0x0b, 0x83, 0x4e, 0x42, 0x75, 0x16, 0x7e, 0xca, 0x2f, 0xdf, 0xdb, 0x45, 0xd0, 0x52, 0x58, 0xf7, 0x36, 0x3c, - 0x76, 0xba, 0x37, 0x9b, 0xb3, 0xff, 0xb2, 0x0f, 0xc6, 0x3a, 0x82, 0x99, 0xd0, 0xf3, 0x30, 0xa4, + 0x76, 0xba, 0x37, 0x9b, 0xb3, 0xff, 0xa2, 0x0f, 0xc6, 0x3a, 0x82, 0x99, 0xd0, 0xf3, 0x30, 0xa4, 0x86, 0x42, 0xda, 0xcf, 0x6a, 0xa6, 0xcb, 0xa2, 0x86, 0xe1, 0x14, 0x66, 0x0f, 0xfb, 0x61, 0x01, 0x4e, 0x46, 0xe4, 0xd5, 0x36, 0x69, 0x93, 0xe9, 0x8d, 0x84, 0x44, 0xab, 0xc4, 0x0d, 0x83, 0x3a, 0x4f, 0xd0, 0x59, 0x9e, 0x79, 0xf8, 0xce, 0xee, 0xc4, 0x49, 0xdc, 0x09, 0xc6, 0x79, 0x75, 0x50, @@ -5074,236 +5074,237 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0x54, 0x03, 0xf7, 0x49, 0x52, 0x7d, 0xc6, 0x82, 0x9a, 0x1a, 0x69, 0x11, 0x85, 0xfd, 0xc1, 0x23, 0x9c, 0x72, 0x6e, 0x39, 0x51, 0x7f, 0xb1, 0x26, 0x8e, 0xbe, 0x68, 0xc1, 0xa0, 0xf3, 0x5a, 0x3b, 0x22, 0x75, 0xb2, 0x1d, 0xb6, 0x62, 0xf1, 0x88, 0xe8, 0xcb, 0xc5, 0x77, 0x66, 0x9a, 0x12, 0x99, - 0x23, 0xdb, 0xcb, 0xad, 0x58, 0x44, 0x4b, 0xe9, 0x02, 0x6c, 0x76, 0xc1, 0xde, 0x2d, 0xc1, 0xc4, - 0x3e, 0x2d, 0xa0, 0xe7, 0x61, 0x28, 0x8c, 0x1a, 0x4e, 0xe0, 0xbd, 0x66, 0xa6, 0x03, 0x51, 0x5a, - 0xd6, 0xb2, 0x01, 0xc3, 0x29, 0x4c, 0x33, 0x4e, 0xbc, 0xb4, 0x4f, 0x9c, 0xf8, 0x39, 0xe8, 0x8b, - 0x48, 0x2b, 0xcc, 0x1e, 0x16, 0x58, 0xa4, 0x02, 0x83, 0xa0, 0x47, 0xa1, 0xec, 0xb4, 0x3c, 0xe1, - 0x88, 0xa6, 0xce, 0x40, 0xd3, 0x2b, 0x0b, 0x98, 0x96, 0xa7, 0xd2, 0x56, 0x54, 0x8e, 0x25, 0x6d, - 0x05, 0x15, 0x03, 0xe2, 0xee, 0xa2, 0x5f, 0x8b, 0x81, 0xf4, 0x9d, 0x82, 0xfd, 0x46, 0x19, 0x1e, - 0xdd, 0x73, 0xbd, 0x68, 0x3f, 0x3c, 0x6b, 0x0f, 0x3f, 0x3c, 0x39, 0x3c, 0xa5, 0xfd, 0x86, 0xa7, - 0xdc, 0x65, 0x78, 0x3e, 0x49, 0xb7, 0x81, 0x4c, 0xa3, 0x52, 0xcc, 0x33, 0x90, 0xdd, 0xb2, 0xb2, - 0x88, 0x1d, 0x20, 0xa1, 0x58, 0xd3, 0xa5, 0x67, 0x80, 0x54, 0x8c, 0x74, 0xa5, 0x08, 0x31, 0xd0, - 0x35, 0x95, 0x09, 0x5f, 0xfb, 0xdd, 0x02, 0xaf, 0xed, 0xdf, 0xe9, 0x83, 0xc7, 0x7b, 0xe0, 0xde, - 0xe6, 0x2a, 0xb6, 0x7a, 0x5c, 0xc5, 0x3f, 0xe4, 0xd3, 0xf4, 0xe9, 0xdc, 0x69, 0xc2, 0xc5, 0x4f, - 0xd3, 0xde, 0x33, 0x84, 0x9e, 0x82, 0xaa, 0x17, 0xc4, 0xc4, 0x6d, 0x47, 0xdc, 0x27, 0xd9, 0x08, - 0x63, 0x5a, 0x10, 0xe5, 0x58, 0x61, 0xd0, 0x33, 0x9d, 0xeb, 0xd0, 0xed, 0x3f, 0x50, 0x50, 0xec, - 0xae, 0x19, 0x11, 0xc5, 0x55, 0x8a, 0xd9, 0x69, 0xca, 0x01, 0x38, 0x19, 0xfb, 0x6f, 0x58, 0x70, - 0xb6, 0xbb, 0x88, 0x45, 0xcf, 0xc0, 0xe0, 0x7a, 0xe4, 0x04, 0xee, 0x26, 0x7b, 0x00, 0x58, 0x2e, - 0x1d, 0xf6, 0xbd, 0xba, 0x18, 0x9b, 0x38, 0x68, 0x16, 0xc6, 0xb8, 0xe7, 0x86, 0x81, 0x21, 0x23, - 0x7f, 0xef, 0xec, 0x4e, 0x8c, 0xad, 0x65, 0x81, 0xb8, 0x13, 0xdf, 0xfe, 0x41, 0x39, 0xbf, 0x5b, - 0x5c, 0x15, 0x3b, 0xc8, 0x6a, 0x16, 0x6b, 0xb5, 0xd4, 0x03, 0xc7, 0x2d, 0x1f, 0x37, 0xc7, 0xed, - 0xeb, 0xc6, 0x71, 0xd1, 0x1c, 0x9c, 0x30, 0x5e, 0x68, 0xe2, 0xd1, 0xdc, 0xdc, 0x2d, 0x59, 0xa5, - 0x38, 0x59, 0xc9, 0xc0, 0x71, 0x47, 0x8d, 0x07, 0x7c, 0xe9, 0xfd, 0x7a, 0x09, 0xce, 0x74, 0xd5, - 0x7e, 0x8f, 0x49, 0xa2, 0x98, 0xd3, 0xdf, 0x77, 0x3c, 0xd3, 0x6f, 0x4e, 0x4a, 0x65, 0xbf, 0x49, - 0xb1, 0xff, 0xa4, 0xd4, 0x75, 0x23, 0xd0, 0x93, 0xd0, 0x8f, 0xec, 0x28, 0xbd, 0x00, 0xc3, 0x4e, - 0xab, 0xc5, 0xf1, 0x98, 0x17, 0x6d, 0x26, 0xa5, 0xd2, 0xb4, 0x09, 0xc4, 0x69, 0xdc, 0x9e, 0x74, - 0x9a, 0x3f, 0xb5, 0xa0, 0x86, 0xc9, 0x06, 0xe7, 0x46, 0xe8, 0xa6, 0x18, 0x22, 0xab, 0x88, 0xfc, - 0xb1, 0x74, 0x60, 0x63, 0x8f, 0xe5, 0x55, 0xcd, 0x1b, 0xec, 0xce, 0x17, 0xbb, 0x4a, 0x07, 0x7a, - 0xb1, 0x4b, 0xbd, 0xd9, 0x54, 0xee, 0xfe, 0x66, 0x93, 0xfd, 0xbd, 0x01, 0xfa, 0x79, 0xad, 0x70, - 0x36, 0x22, 0xf5, 0x98, 0xce, 0x6f, 0x3b, 0xf2, 0xc5, 0x22, 0x51, 0xf3, 0x7b, 0x0d, 0x2f, 0x62, - 0x5a, 0x9e, 0xba, 0x20, 0x2b, 0x1d, 0x28, 0xa1, 0x4c, 0x79, 0xdf, 0x84, 0x32, 0x2f, 0xc0, 0x70, - 0x1c, 0x6f, 0xae, 0x44, 0xde, 0xb6, 0x93, 0x90, 0x2b, 0x64, 0x47, 0xe8, 0xbe, 0x3a, 0x09, 0xc4, - 0xea, 0x25, 0x0d, 0xc4, 0x69, 0x5c, 0x34, 0x0f, 0x63, 0x3a, 0xad, 0x0b, 0x89, 0x12, 0x16, 0x73, - 0xc1, 0x57, 0x82, 0x8a, 0xf8, 0xd6, 0x89, 0x60, 0x04, 0x02, 0xee, 0xac, 0x43, 0xf9, 0x69, 0xaa, - 0x90, 0x76, 0xa4, 0x3f, 0xcd, 0x4f, 0x53, 0xed, 0xd0, 0xbe, 0x74, 0xd4, 0x40, 0x4b, 0x70, 0x92, - 0x2f, 0x8c, 0xe9, 0x56, 0xcb, 0xf8, 0xa2, 0x81, 0x74, 0xde, 0xce, 0xf9, 0x4e, 0x14, 0x9c, 0x57, - 0x0f, 0x3d, 0x07, 0x83, 0xaa, 0x78, 0x61, 0x4e, 0xdc, 0xed, 0x28, 0xdb, 0x92, 0x6a, 0x66, 0xa1, - 0x8e, 0x4d, 0x3c, 0xf4, 0x01, 0x78, 0x58, 0xff, 0xe5, 0x81, 0x79, 0xfc, 0xc2, 0x73, 0x4e, 0x64, - 0xcc, 0x52, 0x2f, 0x04, 0xcd, 0xe7, 0xa2, 0xd5, 0x71, 0xb7, 0xfa, 0x68, 0x1d, 0xce, 0x2a, 0xd0, - 0x85, 0x20, 0x61, 0x51, 0x36, 0x31, 0x99, 0x71, 0x62, 0x72, 0x2d, 0xf2, 0xc5, 0x4b, 0xd3, 0xea, - 0x11, 0xd9, 0x79, 0x2f, 0xb9, 0x94, 0x87, 0x89, 0x17, 0xf1, 0x1e, 0xad, 0xa0, 0x29, 0xa8, 0x91, - 0xc0, 0x59, 0xf7, 0xc9, 0xf2, 0xec, 0x02, 0xcb, 0xbc, 0x65, 0xdc, 0xaf, 0x5e, 0x90, 0x00, 0xac, - 0x71, 0x94, 0xdf, 0xef, 0x50, 0xd7, 0x07, 0x8d, 0x57, 0xe0, 0x54, 0xc3, 0x6d, 0x51, 0x8d, 0xd0, - 0x73, 0xc9, 0xb4, 0xcb, 0xdc, 0x1c, 0xe9, 0xc4, 0xf0, 0x84, 0xaa, 0xca, 0xa9, 0x7d, 0x7e, 0x76, - 0xa5, 0x03, 0x07, 0xe7, 0xd6, 0x64, 0xee, 0xb0, 0x51, 0x78, 0x7b, 0x67, 0xfc, 0x64, 0xc6, 0x1d, - 0x96, 0x16, 0x62, 0x0e, 0x43, 0x97, 0x01, 0xb1, 0x08, 0x89, 0x4b, 0x49, 0xd2, 0x52, 0x2a, 0xe8, - 0xf8, 0x29, 0xf6, 0x49, 0xca, 0xb9, 0xef, 0x62, 0x07, 0x06, 0xce, 0xa9, 0x45, 0x35, 0x9a, 0x20, - 0x64, 0xad, 0x8f, 0x3f, 0x9c, 0xd6, 0x68, 0xae, 0xf2, 0x62, 0x2c, 0xe1, 0xf6, 0x7f, 0xb4, 0x60, - 0x58, 0x6d, 0xed, 0x63, 0x08, 0x27, 0xf2, 0xd3, 0xe1, 0x44, 0xf3, 0x87, 0x67, 0x8e, 0xac, 0xe7, - 0x5d, 0x7c, 0xd2, 0xbf, 0x39, 0x08, 0xa0, 0x19, 0xa8, 0x92, 0x5d, 0x56, 0x57, 0xd9, 0xf5, 0xc0, - 0x32, 0xaf, 0xbc, 0x8c, 0x3c, 0x95, 0xfb, 0x9b, 0x91, 0x67, 0x15, 0x4e, 0x4b, 0xcd, 0x82, 0x5f, - 0xf6, 0x5d, 0x0a, 0x63, 0xc5, 0x0b, 0xab, 0x33, 0x8f, 0x8a, 0x86, 0x4e, 0x2f, 0xe4, 0x21, 0xe1, - 0xfc, 0xba, 0x29, 0x85, 0x66, 0x60, 0x5f, 0x2d, 0x53, 0x6d, 0xff, 0xc5, 0x0d, 0xf9, 0x34, 0x4f, - 0x66, 0xfb, 0x2f, 0x5e, 0x5c, 0xc5, 0x1a, 0x27, 0x5f, 0x06, 0xd4, 0x0a, 0x92, 0x01, 0x70, 0x60, - 0x19, 0x20, 0xb9, 0xd1, 0x60, 0x57, 0x6e, 0x24, 0x2f, 0x15, 0x86, 0xba, 0x5e, 0x2a, 0xbc, 0x17, - 0x46, 0xbc, 0x60, 0x93, 0x44, 0x5e, 0x42, 0xea, 0x6c, 0x2f, 0x30, 0x4e, 0x55, 0xd5, 0x1a, 0xc0, - 0x42, 0x0a, 0x8a, 0x33, 0xd8, 0x69, 0x16, 0x3a, 0xd2, 0x03, 0x0b, 0xed, 0x22, 0xb8, 0x46, 0x8b, - 0x11, 0x5c, 0x27, 0x0e, 0x2f, 0xb8, 0xc6, 0x8e, 0x54, 0x70, 0xa1, 0x42, 0x04, 0x57, 0x4f, 0x32, - 0xc1, 0x38, 0x99, 0x9e, 0xda, 0xe7, 0x64, 0xda, 0x4d, 0x6a, 0x9d, 0xbe, 0x67, 0xa9, 0x95, 0x2f, - 0x90, 0x1e, 0x3a, 0x6a, 0x81, 0xf4, 0x99, 0x12, 0x9c, 0xd6, 0x2c, 0x9b, 0x6e, 0x14, 0x6f, 0x83, - 0x32, 0x2d, 0xf6, 0x10, 0x1c, 0xbf, 0xa3, 0x33, 0x02, 0xe1, 0x74, 0x4c, 0x9d, 0x82, 0x60, 0x03, - 0x8b, 0xc5, 0x93, 0x91, 0x88, 0x65, 0x95, 0xce, 0xf2, 0xf3, 0x59, 0x51, 0x8e, 0x15, 0x06, 0x5d, - 0x8a, 0xf4, 0xb7, 0x88, 0xd1, 0xcd, 0xe6, 0x2b, 0x9c, 0xd5, 0x20, 0x6c, 0xe2, 0xa1, 0x27, 0x39, - 0x11, 0xc6, 0x4b, 0x28, 0x4f, 0x1f, 0x12, 0x8f, 0x67, 0x4b, 0xf6, 0xa1, 0xa0, 0xb2, 0x3b, 0x2c, - 0x70, 0xb0, 0xd2, 0xd9, 0x1d, 0xe6, 0xee, 0xa6, 0x30, 0xec, 0xff, 0x69, 0xc1, 0x99, 0xdc, 0xa1, - 0x38, 0x06, 0x39, 0x7d, 0x3b, 0x2d, 0xa7, 0x57, 0x8b, 0x3a, 0xc4, 0x18, 0x5f, 0xd1, 0x45, 0x66, - 0xff, 0x7b, 0x0b, 0x46, 0x34, 0xfe, 0x31, 0x7c, 0xaa, 0x97, 0xfe, 0xd4, 0xe2, 0xce, 0x6b, 0xb5, - 0x8e, 0x6f, 0xfb, 0xfd, 0x12, 0xa8, 0x1c, 0xa2, 0xd3, 0xae, 0xcc, 0xd0, 0xbc, 0xcf, 0xad, 0xf1, - 0x0e, 0xf4, 0xb3, 0x4b, 0xef, 0xb8, 0x18, 0x87, 0x9e, 0x34, 0x7d, 0x76, 0x81, 0xae, 0x1d, 0x0a, - 0xd8, 0xdf, 0x18, 0x0b, 0x82, 0x2c, 0xe7, 0xb9, 0x17, 0x53, 0xc6, 0x5f, 0x17, 0x21, 0x78, 0x3a, - 0xe7, 0xb9, 0x28, 0xc7, 0x0a, 0x83, 0x4a, 0x12, 0xcf, 0x0d, 0x83, 0x59, 0xdf, 0x89, 0xe5, 0xc3, - 0xac, 0x4a, 0x92, 0x2c, 0x48, 0x00, 0xd6, 0x38, 0xec, 0x3e, 0xdc, 0x8b, 0x5b, 0xbe, 0xb3, 0x63, - 0x9c, 0xca, 0x8d, 0x5c, 0x14, 0x0a, 0x84, 0x4d, 0x3c, 0xbb, 0x09, 0xe3, 0xe9, 0x8f, 0x98, 0x23, - 0x1b, 0xcc, 0x19, 0xb5, 0xa7, 0xe1, 0x9c, 0x82, 0x9a, 0xc3, 0x6a, 0x2d, 0xb6, 0x1d, 0xc1, 0x13, - 0xb4, 0x4b, 0xa6, 0x04, 0x60, 0x8d, 0x63, 0xff, 0x03, 0x0b, 0x4e, 0xe6, 0x0c, 0x5a, 0x81, 0x21, - 0x8e, 0x89, 0xe6, 0x36, 0x79, 0x3a, 0xc0, 0xdb, 0x61, 0xa0, 0x4e, 0x36, 0x1c, 0xe9, 0xee, 0x68, - 0x70, 0xcf, 0x39, 0x5e, 0x8c, 0x25, 0xdc, 0xfe, 0xed, 0x12, 0x8c, 0xa6, 0xfb, 0x1a, 0xb3, 0xb0, - 0x21, 0x3e, 0x4c, 0x5e, 0xec, 0x86, 0xdb, 0x24, 0xda, 0xa1, 0x5f, 0x6e, 0x65, 0xc2, 0x86, 0x3a, - 0x30, 0x70, 0x4e, 0x2d, 0x96, 0x41, 0xb8, 0xae, 0x46, 0x5b, 0xae, 0xc8, 0xeb, 0x45, 0xae, 0x48, - 0x3d, 0x99, 0xa6, 0x6b, 0x84, 0x22, 0x89, 0x4d, 0xfa, 0x54, 0x17, 0x61, 0x7e, 0xd8, 0x33, 0x6d, - 0xcf, 0x4f, 0xbc, 0x40, 0x7c, 0xb2, 0x58, 0xab, 0x4a, 0x17, 0x59, 0xea, 0x44, 0xc1, 0x79, 0xf5, - 0xec, 0xef, 0xf7, 0x81, 0x0a, 0xa9, 0x66, 0xae, 0x6b, 0x05, 0x39, 0xfe, 0x1d, 0x34, 0xf8, 0x4c, - 0xad, 0xad, 0xbe, 0xbd, 0x7c, 0x49, 0xb8, 0x29, 0xc7, 0xb4, 0xe7, 0xaa, 0x01, 0x5b, 0xd3, 0x20, - 0x6c, 0xe2, 0xd1, 0x9e, 0xf8, 0xde, 0x36, 0xe1, 0x95, 0xfa, 0xd3, 0x3d, 0x59, 0x94, 0x00, 0xac, - 0x71, 0x68, 0x4f, 0xea, 0xde, 0xc6, 0x86, 0xb0, 0x4b, 0xa8, 0x9e, 0xd0, 0xd1, 0xc1, 0x0c, 0xc2, - 0x73, 0xcc, 0x87, 0x5b, 0x42, 0xff, 0x36, 0x72, 0xcc, 0x87, 0x5b, 0x98, 0x41, 0xe8, 0x2c, 0x05, - 0x61, 0xd4, 0x74, 0x7c, 0xef, 0x35, 0x52, 0x57, 0x54, 0x84, 0xde, 0xad, 0x66, 0xe9, 0x6a, 0x27, - 0x0a, 0xce, 0xab, 0x47, 0x17, 0x74, 0x2b, 0x22, 0x75, 0xcf, 0x4d, 0xcc, 0xd6, 0x20, 0xbd, 0xa0, - 0x57, 0x3a, 0x30, 0x70, 0x4e, 0x2d, 0x34, 0x0d, 0xa3, 0x32, 0x24, 0x5e, 0x26, 0x3c, 0x1a, 0x4c, - 0x27, 0x58, 0xc1, 0x69, 0x30, 0xce, 0xe2, 0x53, 0x26, 0xd9, 0x14, 0x39, 0xd1, 0x98, 0x9a, 0x6e, - 0x30, 0x49, 0x99, 0x2b, 0x0d, 0x2b, 0x0c, 0xfb, 0x13, 0x65, 0x2a, 0xd4, 0xbb, 0xa4, 0x1e, 0x3c, - 0x36, 0x47, 0xd3, 0xf4, 0x8a, 0xec, 0xeb, 0x61, 0x45, 0x3e, 0x0b, 0x43, 0x37, 0xe3, 0x30, 0x50, - 0x4e, 0x9c, 0x95, 0xae, 0x4e, 0x9c, 0x06, 0x56, 0xbe, 0x13, 0x67, 0x7f, 0x51, 0x4e, 0x9c, 0x03, - 0xf7, 0xe8, 0xc4, 0xf9, 0x87, 0x15, 0x50, 0xef, 0xf5, 0x5c, 0x25, 0xc9, 0xad, 0x30, 0xda, 0xf2, - 0x82, 0x06, 0x4b, 0x25, 0xf0, 0x35, 0x0b, 0x86, 0xf8, 0x7e, 0x59, 0x34, 0x83, 0xf0, 0x36, 0x0a, - 0x7a, 0x08, 0x26, 0x45, 0x6c, 0x72, 0xcd, 0x20, 0x94, 0x79, 0xcb, 0xd7, 0x04, 0xe1, 0x54, 0x8f, - 0xd0, 0x47, 0x01, 0xa4, 0x11, 0x77, 0x43, 0x72, 0xe0, 0x85, 0x62, 0xfa, 0x87, 0xc9, 0x86, 0x56, - 0xa9, 0xd7, 0x14, 0x11, 0x6c, 0x10, 0x44, 0x9f, 0xd1, 0x01, 0x8a, 0x3c, 0xda, 0xe3, 0xc3, 0x47, - 0x32, 0x36, 0xbd, 0x84, 0x27, 0x62, 0x18, 0xf0, 0x82, 0x06, 0x5d, 0x27, 0xc2, 0xd9, 0xed, 0x6d, - 0x79, 0x69, 0x38, 0x16, 0x43, 0xa7, 0x3e, 0xe3, 0xf8, 0x4e, 0xe0, 0x92, 0x68, 0x81, 0xa3, 0x9b, - 0x8f, 0xeb, 0xb3, 0x02, 0x2c, 0x1b, 0xea, 0x78, 0xe9, 0xa8, 0xd2, 0xcb, 0x4b, 0x47, 0x67, 0xdf, - 0x07, 0x63, 0x1d, 0x93, 0x79, 0xa0, 0x68, 0xc4, 0x7b, 0x0f, 0x64, 0xb4, 0x7f, 0xa7, 0x5f, 0x0b, - 0xad, 0xab, 0x61, 0x9d, 0x3f, 0x9c, 0x13, 0xe9, 0x19, 0x15, 0x2a, 0x73, 0x81, 0x4b, 0xc4, 0x78, - 0xa0, 0x5f, 0x15, 0x62, 0x93, 0x24, 0x5d, 0xa3, 0x2d, 0x27, 0x22, 0xc1, 0x51, 0xaf, 0xd1, 0x15, - 0x45, 0x04, 0x1b, 0x04, 0xd1, 0x66, 0x2a, 0x1c, 0xe9, 0xe2, 0xe1, 0xc3, 0x91, 0x58, 0x82, 0xb2, - 0xbc, 0xf7, 0x25, 0xbe, 0x68, 0xc1, 0x48, 0x90, 0x5a, 0xb9, 0xc5, 0x78, 0x20, 0xe7, 0xef, 0x0a, - 0xfe, 0xdc, 0x5b, 0xba, 0x0c, 0x67, 0xe8, 0xe7, 0x89, 0xb4, 0xca, 0x01, 0x45, 0x9a, 0x7e, 0xb8, - 0xab, 0xbf, 0xdb, 0xc3, 0x5d, 0x28, 0x50, 0x2f, 0x17, 0x0e, 0x14, 0xfe, 0x72, 0x21, 0xe4, 0xbc, - 0x5a, 0x78, 0x03, 0x6a, 0x6e, 0x44, 0x9c, 0xe4, 0x1e, 0x1f, 0xb1, 0x63, 0xbe, 0x1d, 0xb3, 0xb2, - 0x01, 0xac, 0xdb, 0xb2, 0xff, 0x4f, 0x1f, 0x9c, 0x90, 0x23, 0x22, 0xa3, 0x17, 0xa8, 0x7c, 0xe4, - 0x74, 0xb5, 0xae, 0xac, 0xe4, 0xe3, 0x25, 0x09, 0xc0, 0x1a, 0x87, 0xea, 0x63, 0xed, 0x98, 0x2c, - 0xb7, 0x48, 0xb0, 0xe8, 0xad, 0xc7, 0xe2, 0x32, 0x56, 0x6d, 0x94, 0x6b, 0x1a, 0x84, 0x4d, 0x3c, - 0xaa, 0xdb, 0x3b, 0x86, 0xd2, 0x6a, 0xe8, 0xf6, 0x52, 0x51, 0x95, 0x70, 0xf4, 0x2b, 0xb9, 0xb9, - 0x90, 0x8b, 0x89, 0xf9, 0xeb, 0x08, 0xda, 0x38, 0xe0, 0xbb, 0xa7, 0x7f, 0xd7, 0x82, 0xd3, 0xbc, - 0x54, 0x8e, 0xe4, 0xb5, 0x56, 0xdd, 0x49, 0x48, 0x5c, 0xcc, 0xdb, 0x04, 0x39, 0xfd, 0xd3, 0xe6, - 0xe5, 0x3c, 0xb2, 0x38, 0xbf, 0x37, 0xe8, 0x75, 0x0b, 0x46, 0xb7, 0x52, 0xe9, 0x62, 0xa4, 0xe8, - 0x38, 0x6c, 0x26, 0x87, 0x54, 0xa3, 0x7a, 0xab, 0xa5, 0xcb, 0x63, 0x9c, 0xa5, 0x6e, 0xff, 0x0f, - 0x0b, 0x4c, 0x36, 0x7a, 0xfc, 0x59, 0x66, 0x0e, 0xae, 0x0a, 0x4a, 0xed, 0xb2, 0xd2, 0x55, 0xbb, - 0x7c, 0x14, 0xca, 0x6d, 0xaf, 0x2e, 0xce, 0x17, 0xfa, 0x8a, 0x78, 0x61, 0x0e, 0xd3, 0x72, 0xfb, - 0x9f, 0x57, 0xb4, 0x19, 0x44, 0x84, 0xd4, 0xfd, 0x48, 0x7c, 0xf6, 0x86, 0xca, 0x53, 0xc7, 0xbf, - 0xfc, 0x6a, 0x47, 0x9e, 0xba, 0x9f, 0x3e, 0x78, 0xc4, 0x24, 0x1f, 0xa0, 0x6e, 0x69, 0xea, 0x06, - 0xf6, 0x09, 0x97, 0xbc, 0x09, 0x55, 0x7a, 0x04, 0x63, 0xf6, 0xcc, 0x6a, 0xaa, 0x53, 0xd5, 0x4b, - 0xa2, 0xfc, 0xee, 0xee, 0xc4, 0xbb, 0x0f, 0xde, 0x2d, 0x59, 0x1b, 0xab, 0xf6, 0x51, 0x0c, 0x35, - 0xfa, 0x9b, 0x45, 0x76, 0x8a, 0xc3, 0xdd, 0x35, 0xc5, 0x33, 0x25, 0xa0, 0x90, 0xb0, 0x51, 0x4d, - 0x07, 0x05, 0x50, 0x63, 0x4f, 0x44, 0x33, 0xa2, 0xfc, 0x0c, 0xb8, 0xa2, 0xe2, 0x2b, 0x25, 0xe0, - 0xee, 0xee, 0xc4, 0x0b, 0x07, 0x27, 0xaa, 0xaa, 0x63, 0x4d, 0xc2, 0xfe, 0x52, 0x9f, 0x5e, 0xbb, - 0x22, 0x3d, 0xe1, 0x8f, 0xc4, 0xda, 0x7d, 0x3e, 0xb3, 0x76, 0xcf, 0x75, 0xac, 0xdd, 0x11, 0xfd, - 0x94, 0x71, 0x6a, 0x35, 0x1e, 0xb7, 0x22, 0xb0, 0xbf, 0xbd, 0x81, 0x69, 0x40, 0xaf, 0xb6, 0xbd, - 0x88, 0xc4, 0x2b, 0x51, 0x3b, 0xf0, 0x82, 0x06, 0x5b, 0x8e, 0x55, 0x53, 0x03, 0x4a, 0x81, 0x71, - 0x16, 0x9f, 0x1e, 0xea, 0xe9, 0x9c, 0xdf, 0x70, 0xb6, 0xf9, 0xaa, 0x32, 0x32, 0xb6, 0xad, 0x8a, - 0x72, 0xac, 0x30, 0xec, 0x6f, 0xb0, 0x5b, 0x74, 0x23, 0xa4, 0x9c, 0xae, 0x09, 0x9f, 0xbd, 0xc9, - 0xcd, 0xd3, 0xbd, 0xa9, 0x35, 0xc1, 0x1f, 0xe2, 0xe6, 0x30, 0x74, 0x0b, 0x06, 0xd6, 0xf9, 0xeb, - 0x92, 0xc5, 0x64, 0xdc, 0x17, 0x4f, 0x55, 0xb2, 0x77, 0x7b, 0xe4, 0xbb, 0x95, 0x77, 0xf5, 0x4f, - 0x2c, 0xa9, 0xd9, 0xdf, 0xae, 0xc0, 0x68, 0xe6, 0xd5, 0xe6, 0x54, 0xa2, 0xdd, 0xd2, 0xbe, 0x89, - 0x76, 0x3f, 0x04, 0x50, 0x27, 0x2d, 0x3f, 0xdc, 0x61, 0xea, 0x58, 0xdf, 0x81, 0xd5, 0x31, 0xa5, - 0xc1, 0xcf, 0xa9, 0x56, 0xb0, 0xd1, 0xa2, 0xc8, 0x71, 0xc7, 0xf3, 0xf6, 0x66, 0x72, 0xdc, 0x19, - 0xef, 0x72, 0xf4, 0x1f, 0xef, 0xbb, 0x1c, 0x1e, 0x8c, 0xf2, 0x2e, 0xaa, 0xc0, 0xed, 0x7b, 0x88, - 0xcf, 0x66, 0xa1, 0x2f, 0x73, 0xe9, 0x66, 0x70, 0xb6, 0xdd, 0xfb, 0xf9, 0x28, 0x3b, 0x7a, 0x07, - 0xd4, 0xe4, 0x3c, 0xc7, 0xe3, 0x35, 0x9d, 0xfc, 0x42, 0x2e, 0x03, 0xf6, 0x58, 0xba, 0xf8, 0xd9, - 0x91, 0x83, 0x02, 0xee, 0x57, 0x0e, 0x0a, 0xfb, 0x0b, 0x25, 0xaa, 0xc7, 0xf3, 0x7e, 0xa9, 0x74, - 0x4a, 0x4f, 0x40, 0xbf, 0xd3, 0x4e, 0x36, 0xc3, 0x8e, 0xf7, 0x29, 0xa7, 0x59, 0x29, 0x16, 0x50, - 0xb4, 0x08, 0x7d, 0x75, 0x9d, 0x22, 0xe7, 0x20, 0xf3, 0xa9, 0x4d, 0xa2, 0x4e, 0x42, 0x30, 0x6b, - 0x05, 0x3d, 0x02, 0x7d, 0x89, 0xd3, 0x90, 0xd1, 0x7a, 0x2c, 0x42, 0x7b, 0xcd, 0x69, 0xc4, 0x98, - 0x95, 0x9a, 0xe2, 0xbb, 0x6f, 0x1f, 0xf1, 0xfd, 0x02, 0x0c, 0xc7, 0x5e, 0x23, 0x70, 0x92, 0x76, - 0x44, 0x8c, 0x5b, 0x43, 0xed, 0x33, 0x62, 0x02, 0x71, 0x1a, 0xd7, 0xfe, 0xdd, 0x21, 0x38, 0xb5, - 0x3a, 0xbb, 0x24, 0x13, 0xbf, 0x1f, 0x59, 0xc0, 0x5d, 0x1e, 0x8d, 0xe3, 0x0b, 0xb8, 0xeb, 0x42, - 0xdd, 0x37, 0x02, 0xee, 0x7c, 0x23, 0xe0, 0x2e, 0x1d, 0xfd, 0x54, 0x2e, 0x22, 0xfa, 0x29, 0xaf, - 0x07, 0xbd, 0x44, 0x3f, 0x1d, 0x59, 0x04, 0xde, 0x9e, 0x1d, 0x3a, 0x50, 0x04, 0x9e, 0x0a, 0x4f, - 0x2c, 0x24, 0x2e, 0xa5, 0xcb, 0x54, 0xe5, 0x86, 0x27, 0xaa, 0xd0, 0x30, 0x1e, 0x73, 0x25, 0x58, - 0xfd, 0xcb, 0xc5, 0x77, 0xa0, 0x87, 0xd0, 0x30, 0x11, 0xf6, 0x65, 0x86, 0x23, 0x0e, 0x14, 0x11, - 0x8e, 0x98, 0xd7, 0x9d, 0x7d, 0xc3, 0x11, 0x5f, 0x80, 0x61, 0xd7, 0x0f, 0x03, 0xb2, 0x12, 0x85, - 0x49, 0xe8, 0x86, 0xbe, 0x50, 0xeb, 0xf5, 0x43, 0x34, 0x26, 0x10, 0xa7, 0x71, 0xbb, 0xc5, 0x32, - 0xd6, 0x0e, 0x1b, 0xcb, 0x08, 0xf7, 0x29, 0x96, 0xf1, 0x17, 0x75, 0xd4, 0xfd, 0x20, 0x9b, 0x91, - 0x0f, 0x15, 0x3f, 0x23, 0xbd, 0x84, 0xde, 0xa3, 0x37, 0xf8, 0x03, 0x91, 0x54, 0x31, 0x9e, 0x0d, - 0x9b, 0x54, 0xf1, 0x1b, 0x62, 0x43, 0xf2, 0xca, 0x11, 0x2c, 0xd8, 0x1b, 0xab, 0x9a, 0x8c, 0x7a, - 0x34, 0x52, 0x17, 0xe1, 0x74, 0x47, 0x0e, 0x93, 0x15, 0xe0, 0x2b, 0x25, 0xf8, 0xb1, 0x7d, 0xbb, - 0x80, 0x6e, 0x01, 0x24, 0x4e, 0x43, 0x2c, 0x54, 0x71, 0x61, 0x72, 0x48, 0xc7, 0xce, 0x35, 0xd9, - 0x1e, 0x4f, 0x67, 0xa3, 0xfe, 0xb2, 0xab, 0x08, 0xf9, 0x9b, 0xf9, 0x73, 0x86, 0x7e, 0x47, 0xd6, - 0x4f, 0x1c, 0xfa, 0x04, 0x33, 0x08, 0x15, 0xff, 0x11, 0x69, 0xe8, 0xd7, 0xd5, 0xd5, 0xf4, 0x61, - 0x56, 0x8a, 0x05, 0x14, 0x3d, 0x07, 0x83, 0x8e, 0xef, 0xf3, 0xa0, 0x21, 0x12, 0x8b, 0x17, 0xa2, - 0x74, 0xfa, 0x41, 0x0d, 0xc2, 0x26, 0x9e, 0xfd, 0x17, 0x25, 0x98, 0xd8, 0x87, 0xa7, 0x74, 0x04, - 0x8b, 0x56, 0x7a, 0x0e, 0x16, 0x15, 0x81, 0x14, 0xfd, 0x5d, 0x02, 0x29, 0x9e, 0x83, 0xc1, 0x84, - 0x38, 0x4d, 0xe1, 0x0a, 0x26, 0x2c, 0x01, 0xfa, 0x06, 0x58, 0x83, 0xb0, 0x89, 0x47, 0xb9, 0xd8, - 0x88, 0xe3, 0xba, 0x24, 0x8e, 0x65, 0xa4, 0x84, 0xb0, 0xa6, 0x16, 0x16, 0x86, 0xc1, 0x8c, 0xd4, - 0xd3, 0x29, 0x12, 0x38, 0x43, 0x32, 0x3b, 0xe0, 0xb5, 0x1e, 0x07, 0xfc, 0xeb, 0x25, 0x78, 0x74, - 0x4f, 0xe9, 0xd6, 0x73, 0x10, 0x4b, 0x3b, 0x26, 0x51, 0x76, 0xe1, 0x5c, 0x8b, 0x49, 0x84, 0x19, - 0x84, 0x8f, 0x52, 0xab, 0x65, 0xbc, 0x5e, 0x5f, 0x74, 0x44, 0x17, 0x1f, 0xa5, 0x14, 0x09, 0x9c, - 0x21, 0x79, 0xaf, 0xcb, 0xf2, 0xdb, 0x7d, 0xf0, 0x78, 0x0f, 0x3a, 0x40, 0x81, 0x91, 0x6f, 0xe9, - 0x28, 0xcd, 0xf2, 0x7d, 0x8a, 0xd2, 0xbc, 0xb7, 0xe1, 0x7a, 0x33, 0xb8, 0xb3, 0xa7, 0x08, 0xbb, - 0x6f, 0x94, 0xe0, 0x6c, 0x77, 0x85, 0x05, 0xbd, 0x07, 0x46, 0x23, 0xe5, 0xfa, 0x66, 0x06, 0x78, - 0x9e, 0xe4, 0xf6, 0x96, 0x14, 0x08, 0x67, 0x71, 0xd1, 0x24, 0x40, 0xcb, 0x49, 0x36, 0xe3, 0x0b, - 0xb7, 0xbd, 0x38, 0x11, 0x69, 0x9e, 0x46, 0xf8, 0x0d, 0x9f, 0x2c, 0xc5, 0x06, 0x06, 0x25, 0xc7, - 0xfe, 0xcd, 0x85, 0x57, 0xc3, 0x84, 0x57, 0xe2, 0x87, 0xad, 0x93, 0xf2, 0x51, 0x1c, 0x03, 0x84, - 0xb3, 0xb8, 0x94, 0x1c, 0xbb, 0x43, 0xe6, 0x1d, 0xe5, 0xa7, 0x30, 0x46, 0x6e, 0x51, 0x95, 0x62, - 0x03, 0x23, 0x1b, 0xba, 0x5a, 0xd9, 0x3f, 0x74, 0xd5, 0xfe, 0x67, 0x25, 0x38, 0xd3, 0x55, 0xe1, - 0xed, 0x8d, 0x4d, 0x3d, 0x78, 0xe1, 0xa6, 0xf7, 0xb8, 0xc3, 0x0e, 0x16, 0xa6, 0xf8, 0xa7, 0x5d, - 0x56, 0x9a, 0x08, 0x53, 0xbc, 0xf7, 0xec, 0x0b, 0x0f, 0xde, 0x78, 0x76, 0x44, 0x26, 0xf6, 0x1d, - 0x20, 0x32, 0x31, 0x33, 0x19, 0x95, 0x1e, 0xa5, 0xc3, 0x9f, 0xf7, 0x75, 0x1d, 0x5e, 0x7a, 0x40, - 0xee, 0xc9, 0x9a, 0x3d, 0x07, 0x27, 0xbc, 0x80, 0x3d, 0x90, 0xb6, 0xda, 0x5e, 0x17, 0x99, 0x7f, - 0x78, 0x7a, 0x4b, 0x15, 0xfe, 0xb0, 0x90, 0x81, 0xe3, 0x8e, 0x1a, 0x0f, 0x60, 0xa4, 0xe8, 0xbd, + 0x23, 0xdb, 0xcb, 0xad, 0x58, 0x44, 0x4b, 0xe9, 0x02, 0x6c, 0x76, 0xc1, 0xfe, 0xcb, 0x32, 0x4c, + 0xec, 0xd3, 0x02, 0x7a, 0x1e, 0x86, 0xc2, 0xa8, 0xe1, 0x04, 0xde, 0x6b, 0x66, 0x3a, 0x10, 0xa5, + 0x65, 0x2d, 0x1b, 0x30, 0x9c, 0xc2, 0x34, 0xe3, 0xc4, 0x4b, 0xfb, 0xc4, 0x89, 0x9f, 0x83, 0xbe, + 0x88, 0xb4, 0xc2, 0xec, 0x61, 0x81, 0x45, 0x2a, 0x30, 0x08, 0x7a, 0x14, 0xca, 0x4e, 0xcb, 0x13, + 0x8e, 0x68, 0xea, 0x0c, 0x34, 0xbd, 0xb2, 0x80, 0x69, 0x79, 0x2a, 0x6d, 0x45, 0xe5, 0x58, 0xd2, + 0x56, 0x50, 0x31, 0x20, 0xee, 0x2e, 0xfa, 0xb5, 0x18, 0xc8, 0xdc, 0x29, 0x3c, 0x05, 0x55, 0x2f, + 0x88, 0x89, 0xdb, 0x8e, 0x88, 0xc8, 0xcd, 0xab, 0x7d, 0x21, 0x44, 0x39, 0x56, 0x18, 0x54, 0x2d, + 0x75, 0x1d, 0xfa, 0x05, 0xd5, 0x82, 0xc2, 0x0f, 0xcd, 0xa0, 0x0e, 0xce, 0x15, 0x67, 0xa7, 0xe9, + 0x47, 0x70, 0x32, 0xf6, 0x1b, 0x65, 0x78, 0x74, 0xcf, 0xd5, 0xac, 0xbd, 0x04, 0xad, 0x3d, 0xbc, + 0x04, 0xe5, 0xe4, 0x95, 0xf6, 0x9b, 0xbc, 0x72, 0x97, 0xc9, 0xfb, 0x24, 0xdd, 0xa4, 0x32, 0xc9, + 0x4b, 0x31, 0x8f, 0x54, 0x76, 0xcb, 0x19, 0x23, 0xf6, 0xa7, 0x84, 0x62, 0x4d, 0x97, 0x9e, 0x50, + 0x52, 0x11, 0xdc, 0x95, 0x22, 0x84, 0x54, 0xd7, 0x44, 0x2b, 0x7c, 0x67, 0x76, 0x0b, 0x0b, 0xb7, + 0x7f, 0xa7, 0x0f, 0x1e, 0xef, 0x41, 0xb6, 0x98, 0x7b, 0xcc, 0xea, 0x71, 0x8f, 0xfd, 0x90, 0x4f, + 0xd3, 0xa7, 0x73, 0xa7, 0x09, 0x17, 0x3f, 0x4d, 0x7b, 0xcf, 0x50, 0x6a, 0x6b, 0xf7, 0xf7, 0xbe, + 0xb5, 0x07, 0x8e, 0x67, 0x6b, 0xff, 0x0d, 0x0b, 0xce, 0x76, 0x57, 0x00, 0xd0, 0x33, 0x30, 0xb8, + 0x1e, 0x39, 0x81, 0xbb, 0xc9, 0x9e, 0x27, 0x96, 0x4b, 0x87, 0x7d, 0xaf, 0x2e, 0xc6, 0x26, 0x0e, + 0x9a, 0x85, 0x31, 0xee, 0x57, 0x62, 0x60, 0xc8, 0xb8, 0xe4, 0x3b, 0xbb, 0x13, 0x63, 0x6b, 0x59, + 0x20, 0xee, 0xc4, 0xb7, 0x7f, 0x50, 0xce, 0xef, 0x16, 0x57, 0x14, 0x0f, 0xb2, 0x9a, 0xc5, 0x5a, + 0x2d, 0xf5, 0x20, 0x0f, 0xca, 0xc7, 0x2d, 0x0f, 0xfa, 0xba, 0xca, 0x83, 0x39, 0x38, 0x61, 0xbc, + 0x1f, 0xc5, 0x63, 0xcd, 0xb9, 0xd3, 0xb4, 0x4a, 0xc0, 0xb2, 0x92, 0x81, 0xe3, 0x8e, 0x1a, 0x0f, + 0xf8, 0xd2, 0xfb, 0xf5, 0x12, 0x9c, 0xe9, 0xaa, 0x9b, 0x1f, 0x93, 0x44, 0x31, 0xa7, 0xbf, 0xef, + 0x78, 0xa6, 0xdf, 0x9c, 0x94, 0xca, 0x7e, 0x93, 0x62, 0xff, 0x49, 0xa9, 0xeb, 0x46, 0xa0, 0xe7, + 0xb4, 0x1f, 0xd9, 0x51, 0x7a, 0x01, 0x86, 0x9d, 0x56, 0x8b, 0xe3, 0x31, 0x1f, 0xdf, 0x4c, 0xc2, + 0xa7, 0x69, 0x13, 0x88, 0xd3, 0xb8, 0xbd, 0x68, 0x5c, 0xf6, 0x9f, 0x5a, 0x50, 0xc3, 0x64, 0x83, + 0x73, 0x23, 0x74, 0x53, 0x0c, 0x91, 0x55, 0x44, 0x76, 0x5b, 0x3a, 0xb0, 0xb1, 0xc7, 0xb2, 0xbe, + 0xe6, 0x0d, 0x76, 0xe7, 0x7b, 0x62, 0xa5, 0x03, 0xbd, 0x27, 0xa6, 0x5e, 0x94, 0x2a, 0x77, 0x7f, + 0x51, 0xca, 0xfe, 0xde, 0x00, 0xfd, 0xbc, 0x56, 0x38, 0x1b, 0x91, 0x7a, 0x4c, 0xe7, 0xb7, 0x1d, + 0xf9, 0x62, 0x91, 0xa8, 0xf9, 0xbd, 0x86, 0x17, 0x31, 0x2d, 0x4f, 0x5d, 0xdf, 0x95, 0x0e, 0x94, + 0xee, 0xa6, 0xbc, 0x6f, 0xba, 0x9b, 0x17, 0x60, 0x38, 0x8e, 0x37, 0x57, 0x22, 0x6f, 0xdb, 0x49, + 0xc8, 0x15, 0xb2, 0x23, 0x34, 0x73, 0x9d, 0xa2, 0x62, 0xf5, 0x92, 0x06, 0xe2, 0x34, 0x2e, 0x9a, + 0x87, 0x31, 0x9d, 0x74, 0x86, 0x44, 0x09, 0x8b, 0x08, 0xe1, 0x2b, 0x41, 0xc5, 0xa3, 0xeb, 0x34, + 0x35, 0x02, 0x01, 0x77, 0xd6, 0xa1, 0xfc, 0x34, 0x55, 0x48, 0x3b, 0xd2, 0x9f, 0xe6, 0xa7, 0xa9, + 0x76, 0x68, 0x5f, 0x3a, 0x6a, 0xa0, 0x25, 0x38, 0xc9, 0x17, 0xc6, 0x74, 0xab, 0x65, 0x7c, 0xd1, + 0x40, 0x3a, 0xab, 0xe8, 0x7c, 0x27, 0x0a, 0xce, 0xab, 0x87, 0x9e, 0x83, 0x41, 0x55, 0xbc, 0x30, + 0x27, 0x6e, 0x9e, 0x94, 0xe5, 0x4b, 0x35, 0xb3, 0x50, 0xc7, 0x26, 0x1e, 0xfa, 0x00, 0x3c, 0xac, + 0xff, 0xf2, 0xb0, 0x41, 0x7e, 0x1d, 0x3b, 0x27, 0xf2, 0x79, 0xa9, 0xf7, 0x8b, 0xe6, 0x73, 0xd1, + 0xea, 0xb8, 0x5b, 0x7d, 0xb4, 0x0e, 0x67, 0x15, 0xe8, 0x42, 0x90, 0xb0, 0x18, 0xa0, 0x98, 0xcc, + 0x38, 0x31, 0xb9, 0x16, 0xf9, 0xe2, 0x1d, 0x6c, 0xf5, 0xc4, 0xed, 0xbc, 0x97, 0x5c, 0xca, 0xc3, + 0xc4, 0x8b, 0x78, 0x8f, 0x56, 0xd0, 0x14, 0xd4, 0x48, 0xe0, 0xac, 0xfb, 0x64, 0x79, 0x76, 0x81, + 0xe5, 0x05, 0x33, 0x6e, 0x7f, 0x2f, 0x48, 0x00, 0xd6, 0x38, 0xca, 0x2b, 0x79, 0xa8, 0xeb, 0x73, + 0xcb, 0x2b, 0x70, 0xaa, 0xe1, 0xb6, 0xa8, 0x46, 0xe8, 0xb9, 0x64, 0xda, 0x65, 0x4e, 0x98, 0x74, + 0x62, 0x78, 0xba, 0x57, 0xe5, 0x72, 0x3f, 0x3f, 0xbb, 0xd2, 0x81, 0x83, 0x73, 0x6b, 0x32, 0x67, + 0xdd, 0x28, 0xbc, 0xbd, 0x33, 0x7e, 0x32, 0xe3, 0xac, 0x4b, 0x0b, 0x31, 0x87, 0xa1, 0xcb, 0x80, + 0x58, 0xfc, 0xc6, 0xa5, 0x24, 0x69, 0x29, 0x15, 0x74, 0xfc, 0x14, 0xfb, 0x24, 0xe5, 0x7a, 0x78, + 0xb1, 0x03, 0x03, 0xe7, 0xd4, 0xa2, 0x1a, 0x4d, 0x10, 0xb2, 0xd6, 0xc7, 0x1f, 0x4e, 0x6b, 0x34, + 0x57, 0x79, 0x31, 0x96, 0x70, 0xfb, 0x3f, 0x5a, 0x30, 0xac, 0xb6, 0xf6, 0x31, 0x04, 0x3b, 0xf9, + 0xe9, 0x60, 0xa7, 0xf9, 0xc3, 0x33, 0x47, 0xd6, 0xf3, 0x2e, 0x1e, 0xf3, 0xdf, 0x1c, 0x04, 0xd0, + 0x0c, 0x54, 0xc9, 0x2e, 0xab, 0xab, 0xec, 0x7a, 0x60, 0x99, 0x57, 0x5e, 0xbe, 0xa0, 0xca, 0xfd, + 0xcd, 0x17, 0xb4, 0x0a, 0xa7, 0xa5, 0x66, 0xc1, 0xaf, 0x22, 0x2f, 0x85, 0xb1, 0xe2, 0x85, 0xd5, + 0x99, 0x47, 0x45, 0x43, 0xa7, 0x17, 0xf2, 0x90, 0x70, 0x7e, 0xdd, 0x03, 0xda, 0x2e, 0xd4, 0xf6, + 0x5f, 0xdc, 0x90, 0x0f, 0x07, 0x65, 0xb6, 0xff, 0xe2, 0xc5, 0x55, 0xac, 0x71, 0xf2, 0x65, 0x40, + 0xad, 0x20, 0x19, 0x00, 0x07, 0x96, 0x01, 0x92, 0x1b, 0x0d, 0x76, 0xe5, 0x46, 0xf2, 0xca, 0x63, + 0xa8, 0xeb, 0x95, 0xc7, 0x7b, 0x61, 0xc4, 0x0b, 0x36, 0x49, 0xe4, 0x25, 0xa4, 0xce, 0xf6, 0x02, + 0xe3, 0x54, 0x55, 0xad, 0x01, 0x2c, 0xa4, 0xa0, 0x38, 0x83, 0x9d, 0x66, 0xa1, 0x23, 0x3d, 0xb0, + 0xd0, 0x2e, 0x82, 0x6b, 0xb4, 0x18, 0xc1, 0x75, 0xe2, 0xf0, 0x82, 0x6b, 0xec, 0x48, 0x05, 0x17, + 0x2a, 0x44, 0x70, 0xf5, 0x24, 0x13, 0x8c, 0x93, 0xe9, 0xa9, 0x7d, 0x4e, 0xa6, 0xdd, 0xa4, 0xd6, + 0xe9, 0x7b, 0x96, 0x5a, 0xf9, 0x02, 0xe9, 0xa1, 0xa3, 0x16, 0x48, 0x9f, 0x29, 0xc1, 0x69, 0xcd, + 0xb2, 0xe9, 0x46, 0xf1, 0x36, 0x28, 0xd3, 0x62, 0xcf, 0xd4, 0xf1, 0x1b, 0x44, 0x23, 0x4c, 0x4f, + 0x47, 0xfc, 0x29, 0x08, 0x36, 0xb0, 0x58, 0xb4, 0x1b, 0x89, 0x58, 0xce, 0xeb, 0x2c, 0x3f, 0x9f, + 0x15, 0xe5, 0x58, 0x61, 0xd0, 0xa5, 0x48, 0x7f, 0x8b, 0x08, 0xe2, 0x6c, 0x36, 0xc5, 0x59, 0x0d, + 0xc2, 0x26, 0x1e, 0x7a, 0x92, 0x13, 0x61, 0xbc, 0x84, 0xf2, 0xf4, 0x21, 0xf1, 0xb4, 0xb7, 0x64, + 0x1f, 0x0a, 0x2a, 0xbb, 0xc3, 0xc2, 0x1a, 0x2b, 0x9d, 0xdd, 0x61, 0xce, 0x78, 0x0a, 0xc3, 0xfe, + 0x5f, 0x16, 0x9c, 0xc9, 0x1d, 0x8a, 0x63, 0x90, 0xd3, 0xb7, 0xd3, 0x72, 0x7a, 0xb5, 0xa8, 0x43, + 0x8c, 0xf1, 0x15, 0x5d, 0x64, 0xf6, 0xbf, 0xb7, 0x60, 0x44, 0xe3, 0x1f, 0xc3, 0xa7, 0x7a, 0xe9, + 0x4f, 0x2d, 0xee, 0xbc, 0x56, 0xeb, 0xf8, 0xb6, 0xdf, 0x2f, 0x81, 0xca, 0x70, 0x3a, 0xed, 0xca, + 0xfc, 0xd1, 0xfb, 0xdc, 0x69, 0xef, 0x40, 0x3f, 0xbb, 0x92, 0x8f, 0x8b, 0x71, 0x37, 0x4a, 0xd3, + 0x67, 0xd7, 0xfb, 0xda, 0xdd, 0x81, 0xfd, 0x8d, 0xb1, 0x20, 0xc8, 0x32, 0xb2, 0x7b, 0x31, 0x65, + 0xfc, 0x75, 0x11, 0x20, 0xa8, 0x33, 0xb2, 0x8b, 0x72, 0xac, 0x30, 0xa8, 0x24, 0xf1, 0xdc, 0x30, + 0x98, 0xf5, 0x9d, 0x58, 0x3e, 0x1b, 0xab, 0x24, 0xc9, 0x82, 0x04, 0x60, 0x8d, 0xc3, 0x6e, 0xeb, + 0xbd, 0xb8, 0xe5, 0x3b, 0x3b, 0xc6, 0xa9, 0xdc, 0xc8, 0x94, 0xa1, 0x40, 0xd8, 0xc4, 0xb3, 0x9b, + 0x30, 0x9e, 0xfe, 0x88, 0x39, 0xb2, 0xc1, 0x5c, 0x65, 0x7b, 0x1a, 0xce, 0x29, 0xa8, 0x39, 0xac, + 0xd6, 0x62, 0xdb, 0x11, 0x3c, 0x41, 0x3b, 0x8c, 0x4a, 0x00, 0xd6, 0x38, 0xf6, 0x3f, 0xb0, 0xe0, + 0x64, 0xce, 0xa0, 0x15, 0x18, 0x80, 0x99, 0x68, 0x6e, 0x93, 0xa7, 0x03, 0xbc, 0x1d, 0x06, 0xea, + 0x64, 0xc3, 0x91, 0xce, 0x98, 0x06, 0xf7, 0x9c, 0xe3, 0xc5, 0x58, 0xc2, 0xed, 0xdf, 0x2e, 0xc1, + 0x68, 0xba, 0xaf, 0x31, 0x0b, 0x6a, 0xe2, 0xc3, 0xe4, 0xc5, 0x6e, 0xb8, 0x4d, 0xa2, 0x1d, 0xfa, + 0xe5, 0x56, 0x26, 0xa8, 0xa9, 0x03, 0x03, 0xe7, 0xd4, 0x62, 0xf9, 0x8d, 0xeb, 0x6a, 0xb4, 0xe5, + 0x8a, 0xbc, 0x5e, 0xe4, 0x8a, 0xd4, 0x93, 0x69, 0x3a, 0x6e, 0x28, 0x92, 0xd8, 0xa4, 0x4f, 0x75, + 0x11, 0xe6, 0x25, 0x3e, 0xd3, 0xf6, 0xfc, 0xc4, 0x0b, 0xc4, 0x27, 0x8b, 0xb5, 0xaa, 0x74, 0x91, + 0xa5, 0x4e, 0x14, 0x9c, 0x57, 0xcf, 0xfe, 0x7e, 0x1f, 0xa8, 0x80, 0x6f, 0xe6, 0x58, 0x57, 0x90, + 0x5b, 0xe2, 0x41, 0x43, 0xe3, 0xd4, 0xda, 0xea, 0xdb, 0xcb, 0xd3, 0x85, 0x9b, 0x72, 0x4c, 0x7b, + 0xae, 0x1a, 0xb0, 0x35, 0x0d, 0xc2, 0x26, 0x1e, 0xed, 0x89, 0xef, 0x6d, 0x13, 0x5e, 0xa9, 0x3f, + 0xdd, 0x93, 0x45, 0x09, 0xc0, 0x1a, 0x87, 0xf6, 0xa4, 0xee, 0x6d, 0x6c, 0x08, 0xbb, 0x84, 0xea, + 0x09, 0x1d, 0x1d, 0xcc, 0x20, 0x3c, 0x03, 0x7e, 0xb8, 0x25, 0xf4, 0x6f, 0x23, 0x03, 0x7e, 0xb8, + 0x85, 0x19, 0x84, 0xce, 0x52, 0x10, 0x46, 0x4d, 0xc7, 0xf7, 0x5e, 0x23, 0x75, 0x45, 0x45, 0xe8, + 0xdd, 0x6a, 0x96, 0xae, 0x76, 0xa2, 0xe0, 0xbc, 0x7a, 0x74, 0x41, 0xb7, 0x22, 0x52, 0xf7, 0xdc, + 0xc4, 0x6c, 0x0d, 0xd2, 0x0b, 0x7a, 0xa5, 0x03, 0x03, 0xe7, 0xd4, 0x42, 0xd3, 0x30, 0x2a, 0x03, + 0xf6, 0x65, 0x3a, 0xa6, 0xc1, 0x74, 0xfa, 0x17, 0x9c, 0x06, 0xe3, 0x2c, 0x3e, 0x65, 0x92, 0x4d, + 0x91, 0xb1, 0x8d, 0xa9, 0xe9, 0x06, 0x93, 0x94, 0x99, 0xdc, 0xb0, 0xc2, 0xb0, 0x3f, 0x51, 0xa6, + 0x42, 0xbd, 0x4b, 0x62, 0xc4, 0x63, 0x73, 0x83, 0x4d, 0xaf, 0xc8, 0xbe, 0x1e, 0x56, 0xe4, 0xb3, + 0x30, 0x74, 0x33, 0x0e, 0x03, 0xe5, 0x62, 0x5a, 0xe9, 0xea, 0x62, 0x6a, 0x60, 0xe5, 0xbb, 0x98, + 0xf6, 0x17, 0xe5, 0x62, 0x3a, 0x70, 0x8f, 0x2e, 0xa6, 0x7f, 0x58, 0x01, 0xf5, 0x9a, 0xd0, 0x55, + 0x92, 0xdc, 0x0a, 0xa3, 0x2d, 0x2f, 0x68, 0xb0, 0x44, 0x07, 0x5f, 0xb3, 0x60, 0x88, 0xef, 0x97, + 0x45, 0x33, 0x44, 0x70, 0xa3, 0xa0, 0x67, 0x6a, 0x52, 0xc4, 0x26, 0xd7, 0x0c, 0x42, 0x99, 0x97, + 0x86, 0x4d, 0x10, 0x4e, 0xf5, 0x08, 0x7d, 0x14, 0x40, 0x1a, 0x71, 0x37, 0x24, 0x07, 0x5e, 0x28, + 0xa6, 0x7f, 0x98, 0x6c, 0x68, 0x95, 0x7a, 0x4d, 0x11, 0xc1, 0x06, 0x41, 0xf4, 0x19, 0x1d, 0x3e, + 0xc9, 0x63, 0x51, 0x3e, 0x7c, 0x24, 0x63, 0xd3, 0x4b, 0xf0, 0x24, 0x86, 0x01, 0x2f, 0x68, 0xd0, + 0x75, 0x22, 0x5c, 0xf1, 0xde, 0x96, 0x97, 0x24, 0x64, 0x31, 0x74, 0xea, 0x33, 0x8e, 0xef, 0x04, + 0x2e, 0x89, 0x16, 0x38, 0xba, 0xf9, 0xf4, 0x3f, 0x2b, 0xc0, 0xb2, 0xa1, 0x8e, 0x77, 0x98, 0x2a, + 0xbd, 0xbc, 0xc3, 0x74, 0xf6, 0x7d, 0x30, 0xd6, 0x31, 0x99, 0x07, 0x8a, 0x95, 0xbc, 0xf7, 0x30, + 0x4b, 0xfb, 0x77, 0xfa, 0xb5, 0xd0, 0xba, 0x1a, 0xd6, 0xf9, 0xb3, 0x3e, 0x91, 0x9e, 0x51, 0xa1, + 0x32, 0x17, 0xb8, 0x44, 0x94, 0x98, 0x31, 0x0a, 0xb1, 0x49, 0x92, 0xae, 0xd1, 0x96, 0x13, 0x91, + 0xe0, 0xa8, 0xd7, 0xe8, 0x8a, 0x22, 0x82, 0x0d, 0x82, 0x68, 0x33, 0x15, 0x2c, 0x75, 0xf1, 0xf0, + 0xc1, 0x52, 0x2c, 0x7d, 0x5a, 0xde, 0xeb, 0x17, 0x5f, 0xb4, 0x60, 0x24, 0x48, 0xad, 0xdc, 0x62, + 0xfc, 0xa3, 0xf3, 0x77, 0x05, 0x7f, 0x8c, 0x2e, 0x5d, 0x86, 0x33, 0xf4, 0xf3, 0x44, 0x5a, 0xe5, + 0x80, 0x22, 0x4d, 0x3f, 0x2b, 0xd6, 0xdf, 0xed, 0x59, 0x31, 0x14, 0xa8, 0x77, 0x15, 0x07, 0x0a, + 0x7f, 0x57, 0x11, 0x72, 0xde, 0x54, 0xbc, 0x01, 0x35, 0x37, 0x22, 0x4e, 0x72, 0x8f, 0x4f, 0xec, + 0x31, 0xdf, 0x8e, 0x59, 0xd9, 0x00, 0xd6, 0x6d, 0xd9, 0xff, 0xb7, 0x0f, 0x4e, 0xc8, 0x11, 0x91, + 0xb1, 0x15, 0x54, 0x3e, 0x72, 0xba, 0x5a, 0x57, 0x56, 0xf2, 0xf1, 0x92, 0x04, 0x60, 0x8d, 0x43, + 0xf5, 0xb1, 0x76, 0x4c, 0x96, 0x5b, 0x24, 0x58, 0xf4, 0xd6, 0x63, 0x71, 0x19, 0xab, 0x36, 0xca, + 0x35, 0x0d, 0xc2, 0x26, 0x1e, 0xd5, 0xed, 0x1d, 0x43, 0x69, 0x35, 0x74, 0x7b, 0xa9, 0xa8, 0x4a, + 0x38, 0xfa, 0x95, 0xdc, 0x4c, 0xcd, 0xc5, 0x44, 0x24, 0x76, 0x84, 0x94, 0x1c, 0xf0, 0x55, 0xd6, + 0xbf, 0x6b, 0xc1, 0x69, 0x5e, 0x2a, 0x47, 0xf2, 0x5a, 0xab, 0xee, 0x24, 0x24, 0x2e, 0xe6, 0xe5, + 0x84, 0x9c, 0xfe, 0x69, 0xf3, 0x72, 0x1e, 0x59, 0x9c, 0xdf, 0x1b, 0xf4, 0xba, 0x05, 0xa3, 0x5b, + 0xa9, 0x64, 0x36, 0x52, 0x74, 0x1c, 0x36, 0xcf, 0x44, 0xaa, 0x51, 0xbd, 0xd5, 0xd2, 0xe5, 0x31, + 0xce, 0x52, 0xb7, 0xff, 0xa7, 0x05, 0x26, 0x1b, 0x3d, 0xfe, 0x1c, 0x38, 0x07, 0x57, 0x05, 0xa5, + 0x76, 0x59, 0xe9, 0xaa, 0x5d, 0x3e, 0x0a, 0xe5, 0xb6, 0x57, 0x17, 0xe7, 0x0b, 0x7d, 0x45, 0xbc, + 0x30, 0x87, 0x69, 0xb9, 0xfd, 0xcf, 0x2b, 0xda, 0x0c, 0x22, 0x02, 0xfe, 0x7e, 0x24, 0x3e, 0x7b, + 0x43, 0x65, 0xd1, 0xe3, 0x5f, 0x7e, 0xb5, 0x23, 0x8b, 0xde, 0x4f, 0x1f, 0x3c, 0x9e, 0x93, 0x0f, + 0x50, 0xb7, 0x24, 0x7a, 0x03, 0xfb, 0x04, 0x73, 0xde, 0x84, 0x2a, 0x3d, 0x82, 0x31, 0x7b, 0x66, + 0x35, 0xd5, 0xa9, 0xea, 0x25, 0x51, 0x7e, 0x77, 0x77, 0xe2, 0xdd, 0x07, 0xef, 0x96, 0xac, 0x8d, + 0x55, 0xfb, 0x28, 0x86, 0x1a, 0xfd, 0xcd, 0xe2, 0x4e, 0xc5, 0xe1, 0xee, 0x9a, 0xe2, 0x99, 0x12, + 0x50, 0x48, 0x50, 0xab, 0xa6, 0x83, 0x02, 0xa8, 0xb1, 0x07, 0xac, 0x19, 0x51, 0x7e, 0x06, 0x5c, + 0x51, 0xd1, 0x9f, 0x12, 0x70, 0x77, 0x77, 0xe2, 0x85, 0x83, 0x13, 0x55, 0xd5, 0xb1, 0x26, 0x61, + 0x7f, 0xa9, 0x4f, 0xaf, 0x5d, 0x91, 0x3c, 0xf1, 0x47, 0x62, 0xed, 0x3e, 0x9f, 0x59, 0xbb, 0xe7, + 0x3a, 0xd6, 0xee, 0x88, 0x7e, 0x68, 0x39, 0xb5, 0x1a, 0x8f, 0x5b, 0x11, 0xd8, 0xdf, 0xde, 0xc0, + 0x34, 0xa0, 0x57, 0xdb, 0x5e, 0x44, 0xe2, 0x95, 0xa8, 0x1d, 0x78, 0x41, 0x83, 0x2d, 0xc7, 0xaa, + 0xa9, 0x01, 0xa5, 0xc0, 0x38, 0x8b, 0x4f, 0x0f, 0xf5, 0x74, 0xce, 0x6f, 0x38, 0xdb, 0x7c, 0x55, + 0x19, 0xf9, 0xe4, 0x56, 0x45, 0x39, 0x56, 0x18, 0xf6, 0x37, 0xd8, 0x2d, 0xba, 0x11, 0xf0, 0x4e, + 0xd7, 0x84, 0xcf, 0x5e, 0x0c, 0xe7, 0xc9, 0xe8, 0xd4, 0x9a, 0xe0, 0xcf, 0x84, 0x73, 0x18, 0xba, + 0x05, 0x03, 0xeb, 0xfc, 0xed, 0xcb, 0x62, 0xde, 0x03, 0x10, 0x0f, 0x69, 0xb2, 0x57, 0x85, 0xe4, + 0xab, 0x9a, 0x77, 0xf5, 0x4f, 0x2c, 0xa9, 0xd9, 0xdf, 0xae, 0xc0, 0x68, 0xe6, 0x4d, 0xe9, 0x54, + 0x1a, 0xe0, 0xd2, 0xbe, 0x69, 0x80, 0x3f, 0x04, 0x50, 0x27, 0x2d, 0x3f, 0xdc, 0x61, 0xea, 0x58, + 0xdf, 0x81, 0xd5, 0x31, 0xa5, 0xc1, 0xcf, 0xa9, 0x56, 0xb0, 0xd1, 0xa2, 0xc8, 0xc0, 0xc7, 0xb3, + 0x0a, 0x67, 0x32, 0xf0, 0x19, 0xaf, 0x86, 0xf4, 0x1f, 0xef, 0xab, 0x21, 0x1e, 0x8c, 0xf2, 0x2e, + 0xaa, 0xb0, 0xf2, 0x7b, 0x88, 0x1e, 0x67, 0x81, 0x39, 0x73, 0xe9, 0x66, 0x70, 0xb6, 0xdd, 0xfb, + 0xf9, 0x64, 0x3c, 0x7a, 0x07, 0xd4, 0xe4, 0x3c, 0xc7, 0xe3, 0x35, 0x9d, 0x9a, 0x43, 0x2e, 0x03, + 0xf6, 0x94, 0xbb, 0xf8, 0xd9, 0x91, 0x21, 0x03, 0xee, 0x57, 0x86, 0x0c, 0xfb, 0x0b, 0x25, 0xaa, + 0xc7, 0xf3, 0x7e, 0xa9, 0x64, 0x4f, 0x4f, 0x40, 0xbf, 0xd3, 0x4e, 0x36, 0xc3, 0x8e, 0xd7, 0x33, + 0xa7, 0x59, 0x29, 0x16, 0x50, 0xb4, 0x08, 0x7d, 0x75, 0x9d, 0xc0, 0xe7, 0x20, 0xf3, 0xa9, 0x4d, + 0xa2, 0x4e, 0x42, 0x30, 0x6b, 0x05, 0x3d, 0x02, 0x7d, 0x89, 0xd3, 0x90, 0xb1, 0x84, 0x2c, 0x7e, + 0x7c, 0xcd, 0x69, 0xc4, 0x98, 0x95, 0x9a, 0xe2, 0xbb, 0x6f, 0x1f, 0xf1, 0xfd, 0x02, 0x0c, 0xc7, + 0x5e, 0x23, 0x70, 0x92, 0x76, 0x44, 0x8c, 0x5b, 0x43, 0xed, 0x33, 0x62, 0x02, 0x71, 0x1a, 0xd7, + 0xfe, 0xdd, 0x21, 0x38, 0xb5, 0x3a, 0xbb, 0x24, 0xd3, 0xd2, 0x1f, 0x59, 0x38, 0x60, 0x1e, 0x8d, + 0xe3, 0x0b, 0x07, 0xec, 0x42, 0xdd, 0x37, 0xc2, 0x01, 0x7d, 0x23, 0x1c, 0x30, 0x1d, 0x9b, 0x55, + 0x2e, 0x22, 0x36, 0x2b, 0xaf, 0x07, 0xbd, 0xc4, 0x66, 0x1d, 0x59, 0x7c, 0xe0, 0x9e, 0x1d, 0x3a, + 0x50, 0x7c, 0xa0, 0x0a, 0x9e, 0x2c, 0x24, 0x2e, 0xa5, 0xcb, 0x54, 0xe5, 0x06, 0x4f, 0xaa, 0xc0, + 0x35, 0x1e, 0x11, 0x26, 0x58, 0xfd, 0xcb, 0xc5, 0x77, 0xa0, 0x87, 0xc0, 0x35, 0x11, 0x94, 0x66, + 0x06, 0x4b, 0x0e, 0x14, 0x11, 0x2c, 0x99, 0xd7, 0x9d, 0x7d, 0x83, 0x25, 0x5f, 0x80, 0x61, 0xd7, + 0x0f, 0x03, 0xb2, 0x12, 0x85, 0x49, 0xe8, 0x86, 0xbe, 0x50, 0xeb, 0xf5, 0x33, 0x39, 0x26, 0x10, + 0xa7, 0x71, 0xbb, 0x45, 0x5a, 0xd6, 0x0e, 0x1b, 0x69, 0x09, 0xf7, 0x29, 0xd2, 0xf2, 0x17, 0x75, + 0x4e, 0x80, 0x41, 0x36, 0x23, 0x1f, 0x2a, 0x7e, 0x46, 0x7a, 0x49, 0x0c, 0x80, 0xde, 0xe0, 0xcf, + 0x57, 0x52, 0xc5, 0x78, 0x36, 0x6c, 0x52, 0xc5, 0x6f, 0x88, 0x0d, 0xc9, 0x2b, 0x47, 0xb0, 0x60, + 0x6f, 0xac, 0x6a, 0x32, 0xea, 0x49, 0x4b, 0x5d, 0x84, 0xd3, 0x1d, 0x39, 0x4c, 0xce, 0x82, 0xaf, + 0x94, 0xe0, 0xc7, 0xf6, 0xed, 0x02, 0xba, 0x05, 0x90, 0x38, 0x0d, 0xb1, 0x50, 0xc5, 0x85, 0xc9, + 0x21, 0x1d, 0x3b, 0xd7, 0x64, 0x7b, 0x3c, 0xd9, 0x8e, 0xfa, 0xcb, 0xae, 0x22, 0xe4, 0x6f, 0xe6, + 0xcf, 0x19, 0xfa, 0x1d, 0x39, 0x49, 0x71, 0xe8, 0x13, 0xcc, 0x20, 0x54, 0xfc, 0x47, 0xa4, 0xa1, + 0xdf, 0x7e, 0x57, 0xd3, 0x87, 0x59, 0x29, 0x16, 0x50, 0xf4, 0x1c, 0x0c, 0x3a, 0xbe, 0xcf, 0x83, + 0x86, 0x48, 0x2c, 0xde, 0xaf, 0xd2, 0xc9, 0x11, 0x35, 0x08, 0x9b, 0x78, 0xf6, 0xe7, 0xfa, 0x60, + 0x62, 0x1f, 0x9e, 0xd2, 0x11, 0xca, 0x5a, 0xe9, 0x39, 0x94, 0x55, 0x04, 0x52, 0xf4, 0x77, 0x09, + 0xa4, 0x78, 0x0e, 0x06, 0x13, 0xe2, 0x34, 0x85, 0x2b, 0x98, 0xb0, 0x04, 0xe8, 0x1b, 0x60, 0x0d, + 0xc2, 0x26, 0x1e, 0xe5, 0x62, 0x23, 0x8e, 0xeb, 0x92, 0x38, 0x96, 0x91, 0x12, 0xc2, 0x9a, 0x5a, + 0x58, 0x18, 0x06, 0x33, 0x52, 0x4f, 0xa7, 0x48, 0xe0, 0x0c, 0xc9, 0xec, 0x80, 0xd7, 0x7a, 0x1b, + 0xf0, 0x94, 0x7b, 0x28, 0xf4, 0x1e, 0x84, 0x34, 0x78, 0x3c, 0x41, 0x48, 0x5f, 0x2f, 0xc1, 0xa3, + 0x7b, 0xca, 0xde, 0x9e, 0x43, 0x6c, 0xda, 0x31, 0x89, 0xb2, 0xcb, 0xfa, 0x5a, 0x4c, 0x22, 0xcc, + 0x20, 0x7c, 0x0e, 0x5b, 0x2d, 0xe3, 0xe5, 0xff, 0xa2, 0xe3, 0xcd, 0xf8, 0x1c, 0xa6, 0x48, 0xe0, + 0x0c, 0xc9, 0x7b, 0xdd, 0x34, 0xdf, 0xee, 0x83, 0xc7, 0x7b, 0xd0, 0x50, 0x0a, 0x8c, 0xcb, 0x4b, + 0xc7, 0x90, 0x96, 0xef, 0x53, 0x0c, 0xe9, 0xbd, 0x0d, 0xd7, 0x9b, 0xa1, 0xa7, 0x3d, 0x6d, 0xbd, + 0x6f, 0x94, 0xe0, 0x6c, 0x77, 0x75, 0x0a, 0xbd, 0x07, 0x46, 0x23, 0xe5, 0x98, 0x67, 0x86, 0x9f, + 0x9e, 0xe4, 0xd6, 0xa0, 0x14, 0x08, 0x67, 0x71, 0xd1, 0x24, 0x40, 0xcb, 0x49, 0x36, 0xe3, 0x0b, + 0xb7, 0xbd, 0x38, 0x11, 0x29, 0xb2, 0x46, 0xf8, 0xfd, 0xa3, 0x2c, 0xc5, 0x06, 0x06, 0x25, 0xc7, + 0xfe, 0xcd, 0x85, 0x57, 0xc3, 0x84, 0x57, 0xe2, 0x47, 0xc1, 0x93, 0xf2, 0x41, 0x21, 0x03, 0x84, + 0xb3, 0xb8, 0x94, 0x1c, 0xbb, 0xe1, 0xe6, 0x1d, 0xe5, 0x67, 0x44, 0x46, 0x6e, 0x51, 0x95, 0x62, + 0x03, 0x23, 0x1b, 0x58, 0x5b, 0xd9, 0x3f, 0xb0, 0xd6, 0xfe, 0x67, 0x25, 0x38, 0xd3, 0x55, 0x1d, + 0xef, 0x8d, 0x4d, 0x3d, 0x78, 0xc1, 0xb0, 0xf7, 0xb8, 0xc3, 0x0e, 0x16, 0x44, 0xf9, 0xa7, 0x5d, + 0x56, 0x9a, 0x08, 0xa2, 0xbc, 0xf7, 0xcc, 0x15, 0x0f, 0xde, 0x78, 0x76, 0xc4, 0x4d, 0xf6, 0x1d, + 0x20, 0x6e, 0x32, 0x33, 0x19, 0x95, 0x1e, 0xa5, 0xc3, 0x9f, 0xf7, 0x75, 0x1d, 0x5e, 0x7a, 0x7c, + 0xef, 0xc9, 0xd6, 0x3e, 0x07, 0x27, 0xbc, 0x80, 0x3d, 0x2e, 0xb7, 0xda, 0x5e, 0x17, 0x59, 0x93, + 0x78, 0x6a, 0x50, 0x15, 0x9c, 0xb1, 0x90, 0x81, 0xe3, 0x8e, 0x1a, 0x0f, 0x60, 0x1c, 0xeb, 0xbd, 0x0d, 0xe9, 0x01, 0x39, 0xf7, 0x32, 0x9c, 0x96, 0x43, 0xb1, 0xe9, 0x44, 0xa4, 0x2e, 0x84, 0x6d, - 0x2c, 0x02, 0x5e, 0xce, 0xf0, 0xa0, 0x99, 0x1c, 0x04, 0x9c, 0x5f, 0x8f, 0xbd, 0x49, 0x15, 0xb6, - 0x3c, 0x57, 0x1c, 0x05, 0xf5, 0x9b, 0x54, 0xb4, 0x10, 0x73, 0x98, 0x96, 0x17, 0xb5, 0xe3, 0x91, - 0x17, 0x1f, 0x82, 0x9a, 0x1a, 0x6f, 0xee, 0xbb, 0xaf, 0x16, 0x79, 0x87, 0xef, 0xbe, 0x5a, 0xe1, - 0x06, 0xd6, 0x7e, 0x8f, 0xa6, 0xbe, 0x13, 0x86, 0x94, 0xf5, 0xab, 0xd7, 0x97, 0xc1, 0xec, 0x2f, - 0xf5, 0xc3, 0x70, 0x2a, 0xdb, 0x67, 0xca, 0xec, 0x6d, 0xed, 0x6b, 0xf6, 0x66, 0x61, 0x1b, 0xed, - 0x40, 0x3e, 0x1b, 0x68, 0x84, 0x6d, 0xb4, 0x03, 0x82, 0x39, 0x8c, 0x1e, 0x3a, 0xea, 0xd1, 0x0e, - 0x6e, 0x07, 0xc2, 0x0f, 0x55, 0x1d, 0x3a, 0xe6, 0x58, 0x29, 0x16, 0x50, 0xf4, 0x71, 0x0b, 0x86, - 0x62, 0x76, 0xa7, 0xc2, 0x2f, 0x0d, 0xc4, 0x22, 0xbf, 0x7c, 0xf8, 0x64, 0xa6, 0x2a, 0xb3, 0x2d, - 0xf3, 0x5b, 0x32, 0x4b, 0x70, 0x8a, 0x22, 0xfa, 0x94, 0x05, 0x35, 0xf5, 0xba, 0x91, 0x78, 0x03, - 0x74, 0xb5, 0xd8, 0x64, 0xaa, 0xdc, 0xda, 0xac, 0xae, 0xa7, 0x54, 0x56, 0x4b, 0xac, 0x09, 0xa3, - 0x58, 0x59, 0xf4, 0x07, 0x8e, 0xc6, 0xa2, 0x0f, 0x39, 0xd6, 0xfc, 0x77, 0x40, 0xad, 0xe9, 0x04, - 0xde, 0x06, 0x89, 0x13, 0x6e, 0x64, 0x97, 0x39, 0x9e, 0x65, 0x21, 0xd6, 0x70, 0xaa, 0x00, 0xc4, - 0xec, 0xc3, 0x12, 0xc3, 0x2a, 0xce, 0x14, 0x80, 0x55, 0x5d, 0x8c, 0x4d, 0x1c, 0xd3, 0x84, 0x0f, - 0xf7, 0xd5, 0x84, 0x3f, 0xb8, 0xb7, 0x09, 0xdf, 0xfe, 0xc7, 0x16, 0x9c, 0xce, 0x9d, 0xb5, 0x07, - 0xd7, 0x1d, 0xd5, 0xfe, 0x72, 0x05, 0x4e, 0xe6, 0xa4, 0xed, 0x45, 0x3b, 0xe6, 0x7a, 0xb6, 0x8a, - 0xf0, 0xec, 0x48, 0x3b, 0x2a, 0xc8, 0x61, 0xcc, 0x59, 0xc4, 0x07, 0xbb, 0x40, 0xd3, 0x97, 0x58, - 0xe5, 0xe3, 0xbd, 0xc4, 0x32, 0x96, 0x65, 0xdf, 0x7d, 0x5d, 0x96, 0x95, 0x7d, 0x6e, 0x96, 0xbe, - 0x69, 0xc1, 0x78, 0xb3, 0xcb, 0x5b, 0x11, 0xc2, 0x1c, 0x7c, 0xfd, 0x68, 0x5e, 0xa2, 0x98, 0x79, - 0xe4, 0xce, 0xee, 0x44, 0xd7, 0x27, 0x3a, 0x70, 0xd7, 0x5e, 0xd9, 0xdf, 0x2f, 0x03, 0xcb, 0x19, - 0xcd, 0x52, 0x33, 0xee, 0xa0, 0x8f, 0x99, 0xd9, 0xbf, 0xad, 0xa2, 0x32, 0x55, 0xf3, 0xc6, 0x55, - 0xf6, 0x70, 0x3e, 0x82, 0x79, 0xc9, 0xc4, 0xb3, 0x4c, 0xab, 0xd4, 0x03, 0xd3, 0xf2, 0x65, 0x9a, - 0xf5, 0x72, 0xf1, 0x69, 0xd6, 0x6b, 0xd9, 0x14, 0xeb, 0x7b, 0x4f, 0x71, 0xdf, 0x03, 0x39, 0xc5, - 0xbf, 0x6a, 0x71, 0xc6, 0x93, 0x99, 0x05, 0xad, 0x19, 0x58, 0x7b, 0x68, 0x06, 0x4f, 0x41, 0x35, - 0x26, 0xfe, 0xc6, 0x25, 0xe2, 0xf8, 0x42, 0x83, 0xd0, 0x5e, 0x05, 0xa2, 0x1c, 0x2b, 0x0c, 0xf6, - 0x0e, 0xb3, 0xef, 0x87, 0xb7, 0x2e, 0x34, 0x5b, 0xc9, 0x8e, 0xd0, 0x25, 0xf4, 0x3b, 0xcc, 0x0a, - 0x82, 0x0d, 0x2c, 0xfb, 0xef, 0x94, 0xf8, 0x0a, 0x14, 0xae, 0x29, 0xcf, 0x67, 0x5e, 0xce, 0xec, - 0xdd, 0xab, 0xe3, 0x23, 0x00, 0x6e, 0xd8, 0x6c, 0x51, 0x3d, 0x73, 0x2d, 0x14, 0x37, 0x75, 0x97, - 0x0e, 0xfd, 0x4e, 0xbf, 0x68, 0x4f, 0x7f, 0x86, 0x2e, 0xc3, 0x06, 0xbd, 0x14, 0x2f, 0x2d, 0xef, - 0xcb, 0x4b, 0x53, 0x6c, 0xa5, 0x6f, 0x1f, 0x69, 0xf7, 0x17, 0x16, 0xa4, 0x34, 0x22, 0xd4, 0x82, - 0x0a, 0xed, 0xee, 0x8e, 0xd8, 0xa1, 0xcb, 0xc5, 0xa9, 0x5f, 0x94, 0x35, 0x8a, 0x65, 0xcf, 0x7e, - 0x62, 0x4e, 0x08, 0xf9, 0xc2, 0x83, 0x85, 0x8f, 0xea, 0xd5, 0xe2, 0x08, 0x5e, 0x0a, 0xc3, 0x2d, - 0x7e, 0xdd, 0xac, 0xbd, 0x61, 0xec, 0xe7, 0x61, 0xac, 0xa3, 0x53, 0xec, 0x91, 0xbc, 0x90, 0x4a, - 0x9f, 0xcc, 0x72, 0x65, 0x01, 0xbd, 0x98, 0xc3, 0xec, 0x6f, 0x58, 0x70, 0x22, 0xdb, 0x3c, 0x7a, - 0xc3, 0x82, 0xb1, 0x38, 0xdb, 0xde, 0x51, 0x8d, 0x9d, 0xf2, 0x42, 0xed, 0x00, 0xe1, 0xce, 0x4e, - 0xd8, 0xff, 0x57, 0x2c, 0xfe, 0x1b, 0x5e, 0x50, 0x0f, 0x6f, 0x29, 0xc5, 0xc4, 0xea, 0xaa, 0x98, - 0xd0, 0xfd, 0xe8, 0x6e, 0x92, 0x7a, 0xdb, 0xef, 0x08, 0x0f, 0x5e, 0x15, 0xe5, 0x58, 0x61, 0xb0, - 0x68, 0xc8, 0xb6, 0x78, 0x87, 0x21, 0xb3, 0x28, 0xe7, 0x44, 0x39, 0x56, 0x18, 0xe8, 0x59, 0x18, - 0x32, 0x3e, 0x52, 0xae, 0x4b, 0xa6, 0x90, 0x1b, 0x22, 0x33, 0xc6, 0x29, 0x2c, 0x34, 0x09, 0xa0, - 0x94, 0x1c, 0x29, 0x22, 0x99, 0x61, 0x4a, 0x71, 0xa2, 0x18, 0x1b, 0x18, 0x2c, 0xf6, 0xd8, 0x6f, - 0xc7, 0xec, 0xe6, 0xa5, 0x5f, 0xe7, 0x06, 0x9e, 0x15, 0x65, 0x58, 0x41, 0x29, 0x37, 0x69, 0x3a, - 0x41, 0xdb, 0xf1, 0xe9, 0x08, 0x89, 0xa3, 0xa6, 0xda, 0x86, 0x4b, 0x0a, 0x82, 0x0d, 0x2c, 0xfa, - 0xc5, 0x89, 0xd7, 0x24, 0x2f, 0x85, 0x81, 0xf4, 0x1e, 0xd4, 0x97, 0x71, 0xa2, 0x1c, 0x2b, 0x0c, - 0xfb, 0xbf, 0x59, 0x30, 0xaa, 0x93, 0x1e, 0xf0, 0xe7, 0xf0, 0xcd, 0x93, 0xb1, 0xb5, 0xef, 0xc9, - 0x38, 0x1d, 0xe2, 0x5d, 0xea, 0x29, 0xc4, 0xdb, 0x8c, 0xbe, 0x2e, 0xef, 0x19, 0x7d, 0xfd, 0x13, - 0xfa, 0xa9, 0x65, 0x1e, 0xa6, 0x3d, 0x98, 0xf7, 0xcc, 0x32, 0xb2, 0xa1, 0xdf, 0x75, 0x54, 0x72, - 0xa0, 0x21, 0x7e, 0x76, 0x98, 0x9d, 0x66, 0x48, 0x02, 0x62, 0x2f, 0x43, 0x4d, 0xdd, 0x49, 0xc9, - 0x83, 0xaa, 0x95, 0x7f, 0x50, 0xed, 0x29, 0x0a, 0x74, 0x66, 0xfd, 0x5b, 0x3f, 0x78, 0xec, 0x2d, - 0x7f, 0xfc, 0x83, 0xc7, 0xde, 0xf2, 0xbd, 0x1f, 0x3c, 0xf6, 0x96, 0x8f, 0xdf, 0x79, 0xcc, 0xfa, - 0xd6, 0x9d, 0xc7, 0xac, 0x3f, 0xbe, 0xf3, 0x98, 0xf5, 0xbd, 0x3b, 0x8f, 0x59, 0xdf, 0xbf, 0xf3, - 0x98, 0xf5, 0xc5, 0xff, 0xfc, 0xd8, 0x5b, 0x5e, 0xca, 0x75, 0x1f, 0xa5, 0x3f, 0x9e, 0x76, 0xeb, - 0x53, 0xdb, 0xe7, 0x99, 0x07, 0x23, 0xdd, 0x5e, 0x53, 0xc6, 0x9a, 0x9a, 0x92, 0xdb, 0xeb, 0xff, - 0x05, 0x00, 0x00, 0xff, 0xff, 0xf9, 0x7b, 0xca, 0xa6, 0xc3, 0xea, 0x00, 0x00, + 0x2c, 0xc2, 0x71, 0xce, 0xf0, 0x90, 0x9e, 0x1c, 0x04, 0x9c, 0x5f, 0x8f, 0xbd, 0xe7, 0x15, 0xb6, + 0x3c, 0x57, 0x1c, 0x54, 0xf5, 0x7b, 0x5e, 0xb4, 0x10, 0x73, 0x98, 0x96, 0x17, 0xb5, 0xe3, 0x91, + 0x17, 0x1f, 0x82, 0x9a, 0x1a, 0x6f, 0x1e, 0x59, 0xa0, 0x16, 0x79, 0x47, 0x64, 0x81, 0x5a, 0xe1, + 0x06, 0xd6, 0x7e, 0x0f, 0xce, 0xbe, 0x13, 0x86, 0x94, 0x6d, 0xae, 0xd7, 0x57, 0xd5, 0xec, 0x2f, + 0xf5, 0xc3, 0x70, 0x2a, 0x53, 0x6a, 0xca, 0x28, 0x6f, 0xed, 0x6b, 0x94, 0x67, 0x41, 0x25, 0xed, + 0x40, 0x3e, 0xb9, 0x68, 0x04, 0x95, 0xb4, 0x03, 0x82, 0x39, 0x8c, 0x1e, 0x89, 0xea, 0xd1, 0x0e, + 0x6e, 0x07, 0xc2, 0x4b, 0x56, 0x1d, 0x89, 0xe6, 0x58, 0x29, 0x16, 0x50, 0xf4, 0x71, 0x0b, 0x86, + 0x62, 0x76, 0xe3, 0xc3, 0xaf, 0x34, 0xc4, 0x22, 0xbf, 0x7c, 0xf8, 0x44, 0xb0, 0x2a, 0x2b, 0x30, + 0xf3, 0xaa, 0x32, 0x4b, 0x70, 0x8a, 0x22, 0xfa, 0x94, 0x05, 0x35, 0xf5, 0x32, 0x94, 0x78, 0x3f, + 0x75, 0xb5, 0xd8, 0x44, 0xb4, 0xdc, 0x16, 0xae, 0x2e, 0xcf, 0x54, 0x46, 0x50, 0xac, 0x09, 0xa3, + 0x58, 0xdd, 0x37, 0x0c, 0x1c, 0xcd, 0x7d, 0x03, 0xe4, 0xdc, 0x35, 0xbc, 0x03, 0x6a, 0x4d, 0x27, + 0xf0, 0x36, 0x48, 0x9c, 0xf0, 0x2b, 0x00, 0x99, 0x1f, 0x5b, 0x16, 0x62, 0x0d, 0xa7, 0x0a, 0x40, + 0xcc, 0x3e, 0x2c, 0x31, 0x6c, 0xf6, 0x4c, 0x01, 0x58, 0xd5, 0xc5, 0xd8, 0xc4, 0x31, 0x2f, 0x18, + 0xe0, 0xbe, 0x5e, 0x30, 0x0c, 0xee, 0x7d, 0xc1, 0x60, 0xff, 0x63, 0x0b, 0x4e, 0xe7, 0xce, 0xda, + 0x83, 0xeb, 0x2c, 0x6b, 0x7f, 0xb9, 0x02, 0x27, 0x73, 0x52, 0x1e, 0xa3, 0x1d, 0x73, 0x3d, 0x5b, + 0x45, 0xf8, 0x9d, 0xa4, 0xdd, 0x28, 0xe4, 0x30, 0xe6, 0x2c, 0xe2, 0x83, 0x5d, 0xef, 0xe9, 0x2b, + 0xb6, 0xf2, 0xf1, 0x5e, 0xb1, 0x19, 0xcb, 0xb2, 0xef, 0xbe, 0x2e, 0xcb, 0xca, 0x3e, 0xf7, 0x5e, + 0xdf, 0xb4, 0x60, 0xbc, 0xd9, 0xe5, 0x9d, 0x0d, 0x61, 0xac, 0xbe, 0x7e, 0x34, 0xaf, 0x78, 0xcc, + 0x3c, 0x72, 0x67, 0x77, 0xa2, 0xeb, 0xf3, 0x26, 0xb8, 0x6b, 0xaf, 0xec, 0xef, 0x97, 0x81, 0xe5, + 0xdb, 0x66, 0x69, 0x2d, 0x77, 0xd0, 0xc7, 0xcc, 0xcc, 0xe9, 0x56, 0x51, 0x59, 0xbe, 0x79, 0xe3, + 0x2a, 0xf3, 0x3a, 0x1f, 0xc1, 0xbc, 0x44, 0xec, 0x59, 0xa6, 0x55, 0xea, 0x81, 0x69, 0xf9, 0x32, + 0x45, 0x7d, 0xb9, 0xf8, 0x14, 0xf5, 0xb5, 0x6c, 0x7a, 0xfa, 0xbd, 0xa7, 0xb8, 0xef, 0x81, 0x9c, + 0xe2, 0x5f, 0xb5, 0x38, 0xe3, 0xc9, 0xcc, 0x82, 0xd6, 0x0c, 0xac, 0x3d, 0x34, 0x83, 0xa7, 0xa0, + 0x1a, 0x13, 0x7f, 0xe3, 0x12, 0x71, 0x7c, 0xa1, 0x41, 0x68, 0x9f, 0x07, 0x51, 0x8e, 0x15, 0x06, + 0x7b, 0xc3, 0xda, 0xf7, 0xc3, 0x5b, 0x17, 0x9a, 0xad, 0x64, 0x47, 0xe8, 0x12, 0xfa, 0x0d, 0x6b, + 0x05, 0xc1, 0x06, 0x96, 0xfd, 0x77, 0x4a, 0x7c, 0x05, 0x0a, 0xc7, 0x99, 0xe7, 0x33, 0xaf, 0x8e, + 0xf6, 0xee, 0x73, 0xf2, 0x11, 0x00, 0x37, 0x6c, 0xb6, 0xa8, 0x9e, 0xb9, 0x16, 0x8a, 0x7b, 0xc4, + 0x4b, 0x87, 0xd5, 0x19, 0x65, 0x7b, 0xfa, 0x33, 0x74, 0x19, 0x36, 0xe8, 0xa5, 0x78, 0x69, 0x79, + 0x5f, 0x5e, 0x9a, 0x62, 0x2b, 0x7d, 0xfb, 0x48, 0xbb, 0xff, 0x61, 0x41, 0x4a, 0x23, 0x42, 0x2d, + 0xa8, 0xd0, 0xee, 0xee, 0x88, 0x1d, 0xba, 0x5c, 0x9c, 0xfa, 0x45, 0x59, 0xa3, 0x58, 0xf6, 0xec, + 0x27, 0xe6, 0x84, 0x90, 0x2f, 0xfc, 0x6b, 0xf8, 0xa8, 0x5e, 0x2d, 0x8e, 0xe0, 0xa5, 0x30, 0xdc, + 0xe2, 0x97, 0xe1, 0xda, 0x57, 0xc7, 0x7e, 0x1e, 0xc6, 0x3a, 0x3a, 0xc5, 0x1e, 0x18, 0x0c, 0xa9, + 0xf4, 0xc9, 0x2c, 0x57, 0x16, 0x6e, 0x8c, 0x39, 0xcc, 0xfe, 0x86, 0x05, 0x27, 0xb2, 0xcd, 0xa3, + 0x37, 0x2c, 0x18, 0x8b, 0xb3, 0xed, 0x1d, 0xd5, 0xd8, 0x29, 0x1f, 0xd9, 0x0e, 0x10, 0xee, 0xec, + 0x84, 0xfd, 0x97, 0x62, 0xf1, 0xdf, 0xf0, 0x82, 0x7a, 0x78, 0x4b, 0x29, 0x26, 0x56, 0x57, 0xc5, + 0x84, 0xee, 0x47, 0x77, 0x93, 0xd4, 0xdb, 0x7e, 0x47, 0xf0, 0xf2, 0xaa, 0x28, 0xc7, 0x0a, 0x83, + 0xc5, 0x6a, 0xb6, 0xc5, 0x1b, 0x16, 0x99, 0x45, 0x39, 0x27, 0xca, 0xb1, 0xc2, 0x40, 0xcf, 0xc2, + 0x90, 0xf1, 0x91, 0x72, 0x5d, 0x32, 0x85, 0xdc, 0x10, 0x99, 0x31, 0x4e, 0x61, 0xa1, 0x49, 0x00, + 0xa5, 0xe4, 0x48, 0x11, 0xc9, 0x0c, 0x53, 0x8a, 0x13, 0xc5, 0xd8, 0xc0, 0x60, 0x91, 0xd1, 0x7e, + 0x3b, 0x66, 0xf7, 0x42, 0xfd, 0x3a, 0xaf, 0xf2, 0xac, 0x28, 0xc3, 0x0a, 0x4a, 0xb9, 0x49, 0xd3, + 0x09, 0xda, 0x8e, 0x4f, 0x47, 0x48, 0x1c, 0x35, 0xd5, 0x36, 0x5c, 0x52, 0x10, 0x6c, 0x60, 0xd1, + 0x2f, 0x4e, 0xbc, 0x26, 0x79, 0x29, 0x0c, 0xa4, 0x6f, 0xa3, 0xbe, 0x2a, 0x14, 0xe5, 0x58, 0x61, + 0xd8, 0xff, 0xcd, 0x82, 0x51, 0x9d, 0x92, 0x81, 0x1d, 0x10, 0x53, 0x27, 0x63, 0x6b, 0xdf, 0x93, + 0x71, 0x3a, 0x00, 0xbd, 0xd4, 0x53, 0x00, 0xba, 0x19, 0x1b, 0x5e, 0xde, 0x33, 0x36, 0xfc, 0x27, + 0xf4, 0x33, 0xd5, 0x3c, 0x88, 0x7c, 0x30, 0xef, 0x89, 0x6a, 0x64, 0x43, 0xbf, 0xeb, 0xa8, 0xd4, + 0x45, 0x43, 0xfc, 0xec, 0x30, 0x3b, 0xcd, 0x90, 0x04, 0xc4, 0x5e, 0x86, 0x9a, 0xba, 0x31, 0x93, + 0x07, 0x55, 0x2b, 0xff, 0xa0, 0xda, 0x53, 0x8c, 0xea, 0xcc, 0xfa, 0xb7, 0x7e, 0xf0, 0xd8, 0x5b, + 0xfe, 0xf8, 0x07, 0x8f, 0xbd, 0xe5, 0x7b, 0x3f, 0x78, 0xec, 0x2d, 0x1f, 0xbf, 0xf3, 0x98, 0xf5, + 0xad, 0x3b, 0x8f, 0x59, 0x7f, 0x7c, 0xe7, 0x31, 0xeb, 0x7b, 0x77, 0x1e, 0xb3, 0xbe, 0x7f, 0xe7, + 0x31, 0xeb, 0x8b, 0xff, 0xf9, 0xb1, 0xb7, 0xbc, 0x94, 0xeb, 0xdc, 0x4a, 0x7f, 0x3c, 0xed, 0xd6, + 0xa7, 0xb6, 0xcf, 0x33, 0xff, 0x4a, 0xba, 0xbd, 0xa6, 0x8c, 0x35, 0x35, 0x25, 0xb7, 0xd7, 0xff, + 0x0b, 0x00, 0x00, 0xff, 0xff, 0x33, 0x97, 0xc4, 0xa1, 0xff, 0xeb, 0x00, 0x00, } func (m *AWSAuthConfig) Marshal() (dAtA []byte, err error) { @@ -11431,6 +11432,26 @@ func (m *PullRequestGeneratorAzureDevOps) MarshalToSizedBuffer(dAtA []byte) (int _ = i var l int _ = l + if m.CARef != nil { + { + size, err := m.CARef.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x42 + } + i-- + if m.Insecure { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x38 if len(m.Labels) > 0 { for iNdEx := len(m.Labels) - 1; iNdEx >= 0; iNdEx-- { i -= len(m.Labels[iNdEx]) @@ -13655,6 +13676,26 @@ func (m *SCMProviderGeneratorAzureDevOps) MarshalToSizedBuffer(dAtA []byte) (int _ = i var l int _ = l + if m.CARef != nil { + { + size, err := m.CARef.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x5a + } + i-- + if m.Insecure { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x50 i-- if m.AllBranches { dAtA[i] = 1 @@ -17205,6 +17246,11 @@ func (m *PullRequestGeneratorAzureDevOps) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } + n += 2 + if m.CARef != nil { + l = m.CARef.Size() + n += 1 + l + sovGenerated(uint64(l)) + } return n } @@ -18014,6 +18060,11 @@ func (m *SCMProviderGeneratorAzureDevOps) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } n += 2 + n += 2 + if m.CARef != nil { + l = m.CARef.Size() + n += 1 + l + sovGenerated(uint64(l)) + } return n } @@ -20247,6 +20298,8 @@ func (this *PullRequestGeneratorAzureDevOps) String() string { `API:` + fmt.Sprintf("%v", this.API) + `,`, `TokenRef:` + strings.Replace(this.TokenRef.String(), "SecretRef", "SecretRef", 1) + `,`, `Labels:` + fmt.Sprintf("%v", this.Labels) + `,`, + `Insecure:` + fmt.Sprintf("%v", this.Insecure) + `,`, + `CARef:` + strings.Replace(this.CARef.String(), "ConfigMapKeyRef", "ConfigMapKeyRef", 1) + `,`, `}`, }, "") return s @@ -20820,6 +20873,8 @@ func (this *SCMProviderGeneratorAzureDevOps) String() string { `TeamProject:` + fmt.Sprintf("%v", this.TeamProject) + `,`, `AccessTokenRef:` + strings.Replace(this.AccessTokenRef.String(), "SecretRef", "SecretRef", 1) + `,`, `AllBranches:` + fmt.Sprintf("%v", this.AllBranches) + `,`, + `Insecure:` + fmt.Sprintf("%v", this.Insecure) + `,`, + `CARef:` + strings.Replace(this.CARef.String(), "ConfigMapKeyRef", "ConfigMapKeyRef", 1) + `,`, `}`, }, "") return s @@ -40726,6 +40781,62 @@ func (m *PullRequestGeneratorAzureDevOps) Unmarshal(dAtA []byte) error { } m.Labels = append(m.Labels, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Insecure", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Insecure = bool(v != 0) + case 8: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CARef", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.CARef == nil { + m.CARef = &ConfigMapKeyRef{} + } + if err := m.CARef.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) @@ -48721,6 +48832,62 @@ func (m *SCMProviderGeneratorAzureDevOps) Unmarshal(dAtA []byte) error { } } m.AllBranches = bool(v != 0) + case 10: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Insecure", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Insecure = bool(v != 0) + case 11: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CARef", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.CARef == nil { + m.CARef = &ConfigMapKeyRef{} + } + if err := m.CARef.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/pkg/apis/application/v1alpha1/generated.proto b/pkg/apis/application/v1alpha1/generated.proto index 0b79d47202cb9..8d11e2a91ea12 100644 --- a/pkg/apis/application/v1alpha1/generated.proto +++ b/pkg/apis/application/v1alpha1/generated.proto @@ -1449,6 +1449,12 @@ message PullRequestGeneratorAzureDevOps { // Labels is used to filter the PRs that you want to target repeated string labels = 6; + + // Allow self-signed TLS / Certificates; default: false + optional bool insecure = 7; + + // ConfigMap key holding the trusted certificates + optional ConfigMapKeyRef caRef = 8; } // PullRequestGeneratorBitbucket defines connection info specific to Bitbucket. @@ -2081,6 +2087,12 @@ message SCMProviderGeneratorAzureDevOps { // Scan all branches instead of just the default branch. optional bool allBranches = 9; + + // Allow self-signed TLS / Certificates; default: false + optional bool insecure = 10; + + // ConfigMap key holding the trusted certificates + optional ConfigMapKeyRef caRef = 11; } // SCMProviderGeneratorBitbucket defines connection info specific to Bitbucket Cloud (API version 2).