From a0f170f0d86d608243f75266dcadbf7ce8a26f71 Mon Sep 17 00:00:00 2001 From: Eduard Heimbuch Date: Wed, 18 Jan 2023 19:56:24 +0100 Subject: [PATCH] Initial implementation of SCM-Manager as scm_provider and pullrequest_generator for applicationsets Signed-off-by: Eduard Heimbuch --- applicationset/generators/pull_request.go | 8 + applicationset/generators/scm_provider.go | 9 + .../services/pull_request/scm-manager.go | 71 + .../services/pull_request/scm-manager_test.go | 107 + .../services/scm_provider/scm-manager.go | 151 ++ .../services/scm_provider/scm-manager_test.go | 193 ++ assets/swagger.json | 52 + .../applicationset/Generators-Pull-Request.md | 39 + .../applicationset/Generators-SCM-Provider.md | 32 + go.mod | 1 + go.sum | 2 + manifests/core-install.yaml | 138 + manifests/crds/applicationset-crd.yaml | 138 + manifests/ha/install.yaml | 138 + manifests/install.yaml | 138 + .../v1alpha1/applicationset_types.go | 33 + pkg/apis/application/v1alpha1/generated.pb.go | 2358 +++++++++++------ pkg/apis/application/v1alpha1/generated.proto | 37 + .../application/v1alpha1/openapi_generated.go | 113 +- .../v1alpha1/zz_generated.deepcopy.go | 52 + 20 files changed, 2982 insertions(+), 828 deletions(-) create mode 100644 applicationset/services/pull_request/scm-manager.go create mode 100644 applicationset/services/pull_request/scm-manager_test.go create mode 100644 applicationset/services/scm_provider/scm-manager.go create mode 100644 applicationset/services/scm_provider/scm-manager_test.go diff --git a/applicationset/generators/pull_request.go b/applicationset/generators/pull_request.go index 209e09950e5813..dc2b5dae2279bd 100644 --- a/applicationset/generators/pull_request.go +++ b/applicationset/generators/pull_request.go @@ -205,6 +205,14 @@ func (g *PullRequestGenerator) selectServiceProvider(ctx context.Context, genera } return pullrequest.NewAzureDevOpsService(ctx, token, providerConfig.API, providerConfig.Organization, providerConfig.Project, providerConfig.Repo, providerConfig.Labels) } + if generatorConfig.ScmManager != nil { + providerConfig := generatorConfig.ScmManager + token, err := utils.GetSecretRef(ctx, g.client, providerConfig.TokenRef, applicationSetInfo.Namespace) + if err != nil { + return nil, fmt.Errorf("error fetching Secret token: %v", err) + } + return pullrequest.NewScmManagerService(ctx, token, providerConfig.API, providerConfig.Namespace, providerConfig.Name, providerConfig.Insecure) + } 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 85a2550ae21f9f..35f846f9a4e7ca 100644 --- a/applicationset/generators/scm_provider.go +++ b/applicationset/generators/scm_provider.go @@ -223,6 +223,15 @@ func (g *SCMProviderGenerator) GenerateParams(appSetGenerator *argoprojiov1alpha if awsErr != nil { return nil, fmt.Errorf("error initializing AWS codecommit service: %w", awsErr) } + } else if providerConfig.ScmManager != nil { + token, err := utils.GetSecretRef(ctx, g.client, providerConfig.ScmManager.TokenRef, applicationSetInfo.Namespace) + if err != nil { + return nil, fmt.Errorf("error fetching SCM-Manager token: %v", err) + } + provider, err = scm_provider.NewScmManagerProvider(ctx, token, providerConfig.ScmManager.API, providerConfig.ScmManager.AllBranches, providerConfig.ScmManager.Insecure) + if err != nil { + return nil, fmt.Errorf("error initializing SCM-Manager provider: %v", err) + } } else { return nil, fmt.Errorf("no SCM provider implementation configured") } diff --git a/applicationset/services/pull_request/scm-manager.go b/applicationset/services/pull_request/scm-manager.go new file mode 100644 index 00000000000000..a2f34fb4ed561a --- /dev/null +++ b/applicationset/services/pull_request/scm-manager.go @@ -0,0 +1,71 @@ +package pull_request + +import ( + "context" + "crypto/tls" + "net/http" + "net/http/cookiejar" + "os" + "strconv" + + scmm "github.com/scm-manager/goscm" +) + +type ScmManagerService struct { + client *scmm.Client + namespace string + name string +} + +var _ PullRequestService = (*ScmManagerService)(nil) + +func NewScmManagerService(ctx context.Context, token, url, namespace, name string, insecure bool) (PullRequestService, error) { + if token == "" { + token = os.Getenv("SCMM_TOKEN") + } + httpClient := &http.Client{} + if insecure { + cookieJar, _ := cookiejar.New(nil) + + httpClient = &http.Client{ + Jar: cookieJar, + Transport: &http.Transport{ + TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, + }} + } + client, err := scmm.NewClient(url, token) + if err != nil { + return nil, err + } + client.SetHttpClient(httpClient) + return &ScmManagerService{ + client: client, + namespace: namespace, + name: name, + }, nil +} + +func (g *ScmManagerService) List(ctx context.Context) ([]*PullRequest, error) { + prs, err := g.client.ListPullRequests(g.namespace, g.name, g.client.NewPullRequestListFilter()) + if err != nil { + return nil, err + } + list := []*PullRequest{} + for _, pr := range prs.Embedded.PullRequests { + changeset, err := g.client.GetHeadChangesetForBranch(g.namespace, g.name, pr.Source) + if err != nil { + return nil, err + } + prId, err := strconv.Atoi(pr.Id) + if err != nil { + return nil, err + } + list = append(list, &PullRequest{ + Number: prId, + Branch: pr.Source, + HeadSHA: changeset.Id, + Labels: make([]string, 0), + }) + } + return list, nil +} diff --git a/applicationset/services/pull_request/scm-manager_test.go b/applicationset/services/pull_request/scm-manager_test.go new file mode 100644 index 00000000000000..445fc08c0b9363 --- /dev/null +++ b/applicationset/services/pull_request/scm-manager_test.go @@ -0,0 +1,107 @@ +package pull_request + +import ( + "context" + "fmt" + "github.com/stretchr/testify/assert" + "io" + "net/http" + "net/http/httptest" + "testing" +) + +func scmmMockHandler(t *testing.T) func(http.ResponseWriter, *http.Request) { + return func(w http.ResponseWriter, r *http.Request) { + w.Header().Set("Content-Type", "application/json") + fmt.Println(r.RequestURI) + switch r.RequestURI { + case "/api/v2/pull-requests/test-argocd/pr-test?status=OPEN&pageSize=10": + _, err := io.WriteString(w, `{ + "page": 0, + "pageTotal": 1, + "_embedded": { + "pullRequests": [ + { + "id": "1", + "author": { + "id": "eheimbuch", + "displayName": "Eduard Heimbuch", + "mail": "eduard.heimbuch@cloudogu.com" + }, + "reviser": { + "id": null, + "displayName": null + }, + "closeDate": null, + "source": "test_pr", + "target": "main", + "title": "New feature xyz", + "description": "Awesome!", + "creationDate": "2023-01-23T12:58:56.770Z", + "lastModified": null, + "status": "OPEN", + "reviewer": [], + "tasks": { + "todo": 0, + "done": 0 + }, + "sourceRevision": null, + "targetRevision": null, + "markedAsReviewed": [], + "emergencyMerged": false, + "ignoredMergeObstacles": null + } + ] + } +}`) + if err != nil { + t.Fail() + } + case "/api/v2/repositories/test-argocd/pr-test/branches/test_pr/changesets?&pageSize=1": + _, err := io.WriteString(w, `{ + "page": 0, + "pageTotal": 1, + "_embedded": { + "changesets": [ + { + "id": "b4ed814b1afe810c4902bc5590c7b09531296679", + "author": { + "mail": "eduard.heimbuch@cloudogu.com", + "name": "Eduard Heimbuch" + }, + "date": "2023-07-03T08:53:15Z", + "description": "test url", + "contributors": [ + { + "type": "Pushed-by", + "person": { + "mail": "eduard.heimbuch@cloudogu.com", + "name": "Eduard Heimbuch" + } + } + ] + } + ] + } +}`) + if err != nil { + t.Fail() + } + } + } +} + +func TestScmManagerPrList(t *testing.T) { + ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + scmmMockHandler(t)(w, r) + })) + defer ts.Close() + host, err := NewScmManagerService(context.Background(), "", ts.URL, "test-argocd", "pr-test", false) + assert.Nil(t, err) + prs, err := host.List(context.Background()) + assert.Nil(t, err) + assert.Equal(t, len(prs), 1) + assert.Equal(t, prs[0].Number, 1) + assert.Equal(t, prs[0].Branch, "test_pr") + assert.Equal(t, prs[0].HeadSHA, "b4ed814b1afe810c4902bc5590c7b09531296679") +} diff --git a/applicationset/services/scm_provider/scm-manager.go b/applicationset/services/scm_provider/scm-manager.go new file mode 100644 index 00000000000000..f233175d23755e --- /dev/null +++ b/applicationset/services/scm_provider/scm-manager.go @@ -0,0 +1,151 @@ +package scm_provider + +import ( + "context" + "crypto/tls" + "errors" + "fmt" + "net/http" + "net/http/cookiejar" + "os" + + scmm "github.com/scm-manager/goscm" +) + +type ScmManagerProvider struct { + client *scmm.Client + allBranches bool +} + +var _ SCMProviderService = &ScmManagerProvider{} + +func NewScmManagerProvider(ctx context.Context, token, url string, allBranches, insecure bool) (*ScmManagerProvider, error) { + if token == "" { + token = os.Getenv("SCMM_TOKEN") + } + httpClient := &http.Client{} + if insecure { + cookieJar, _ := cookiejar.New(nil) + + httpClient = &http.Client{ + Jar: cookieJar, + Transport: &http.Transport{ + TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, + }} + } + client, err := scmm.NewClient(url, token) + if err != nil { + return nil, fmt.Errorf("error creating a new SCM-Manager client: %w", err) + } + client.SetHttpClient(httpClient) + return &ScmManagerProvider{ + client: client, + allBranches: allBranches, + }, nil +} + +func (g *ScmManagerProvider) GetBranches(ctx context.Context, repo *Repository) ([]*Repository, error) { + scmmRepo, err := g.client.GetRepo(repo.Organization, repo.Repository) + if err != nil { + return nil, err + } + + if !g.allBranches { + defaultBranch, err := g.client.GetDefaultBranch(repo.Organization, repo.Repository) + if err != nil { + return nil, err + } + + return []*Repository{ + { + Organization: repo.Organization, + Repository: repo.Repository, + Branch: defaultBranch.Name, + URL: repo.URL, + SHA: defaultBranch.Revision, + Labels: make([]string, 0), + RepositoryId: scmmRepo.Namespace + "/" + scmmRepo.Name, + }, + }, nil + } + repos := []*Repository{} + branches, err := g.client.ListRepoBranches(repo.Organization, repo.Repository) + if err != nil { + return nil, err + } + for _, branch := range branches.Embedded.Branches { + repos = append(repos, &Repository{ + Organization: scmmRepo.Namespace, + Repository: scmmRepo.Name, + Branch: branch.Name, + URL: scmmRepo.Links.ProtocolUrl[0].Href, + SHA: branch.Revision, + Labels: make([]string, 0), + RepositoryId: scmmRepo.Namespace + "/" + scmmRepo.Name, + }) + } + return repos, nil +} + +func (g *ScmManagerProvider) ListRepos(ctx context.Context, cloneProtocol string) ([]*Repository, error) { + repos := []*Repository{} + filter := g.client.NewRepoListFilter() + filter.Limit = 9999 + scmmRepos, err := g.client.ListRepos(filter) + if err != nil { + return nil, err + } + for _, scmmRepo := range scmmRepos.Embedded.Repositories { + var url string + switch cloneProtocol { + // Default to SSH if unspecified (i.e. if ""). SSH Plugin needs to be installed + case "", "ssh": + url = getProtocolUrlByName(scmmRepo.Links.ProtocolUrl, "ssh") + case "https": + url = getProtocolUrlByName(scmmRepo.Links.ProtocolUrl, "http") + default: + return nil, fmt.Errorf("unknown clone protocol %v", cloneProtocol) + } + + if url == "" { + return nil, errors.New("could not find valid repository protocol url") + } + + defaultBranch, err := g.client.GetDefaultBranch(scmmRepo.Namespace, scmmRepo.Name) + if err != nil { + return nil, err + } + + repos = append(repos, &Repository{ + Organization: scmmRepo.Namespace, + Repository: scmmRepo.Name, + Branch: defaultBranch.Name, + URL: url, + RepositoryId: scmmRepo.Namespace + "/" + scmmRepo.Name, + }) + } + return repos, nil +} + +func getProtocolUrlByName(urls []scmm.ProtocolUrl, name string) string { + for _, url := range urls { + if url.Name == name { + return url.Href + } + } + return "" +} + +func (g *ScmManagerProvider) RepoHasPath(ctx context.Context, repo *Repository, path string) (bool, error) { + _, resp, err := g.client.GetContent(repo.Organization, repo.Repository, repo.Branch, path) + if resp != nil && resp.StatusCode == 404 { + return false, nil + } + if fmt.Sprint(err) == "expect file, got directory" { + return true, nil + } + if err != nil { + return false, err + } + return true, nil +} diff --git a/applicationset/services/scm_provider/scm-manager_test.go b/applicationset/services/scm_provider/scm-manager_test.go new file mode 100644 index 00000000000000..a1af31f9f9710a --- /dev/null +++ b/applicationset/services/scm_provider/scm-manager_test.go @@ -0,0 +1,193 @@ +package scm_provider + +import ( + "context" + "github.com/argoproj/argo-cd/v2/applicationset/services/scm_provider/testdata" + "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + "io" + "net/http" + "net/http/httptest" + "testing" +) + +func scmManagerMockHandler(t *testing.T) func(http.ResponseWriter, *http.Request) { + return func(w http.ResponseWriter, r *http.Request) { + w.Header().Set("Content-Type", "application/json") + switch r.RequestURI { + case "/api/v2/repositories?pageSize=9999&archived=true": + _, err := io.WriteString(w, `{ + "page": 0, + "pageTotal": 1, + "_embedded": { + "repositories": [{ + "namespace": "test-argocd", + "name": "pr-test", + "type": "git", + "description": "test", + "contact": "eduard.heimbuch@cloudogu.com", + "archived": false, + "_links": { + "protocol": [ + { "name": "http", "href": "https://scm-manager.org/test-argocd/pr-test" }, + { "name": "ssh", "href": "git@scm-manager.org:test-argocd/pr-test.git" } + ] + } + }] + } +}`) + if err != nil { + t.Fail() + } + case "/api/v2/repositories/test-argocd/pr-test/branches/": + _, err := io.WriteString(w, `{ + "_embedded": { + "branches": [{ + "name": "main", + "defaultBranch": true, + "revision": "72687815ccba81ef014a96201cc2e846a68789d8", + "stale": false, + "lastCommitDate": "2022-04-05T14:29:51-04:00", + "lastCommitter": { + "name": "Eduard Heimbuch", + "mail": "eduard.heimbuch@cloudogu.com" + } + }] + } + }`) + if err != nil { + t.Fail() + } + case "/api/v2/repositories/test-argocd/pr-test": + _, err := io.WriteString(w, `{ + "namespace": "test-argocd", + "name": "pr-test", + "type": "git", + "description": "test", + "contact": "eduard.heimbuch@cloudogu.com", + "archived": false, + "_links": { + "protocol": [ + { "name": "ssh", "href": "git@scm-manager.org:test-argocd/pr-test.git" }, + { "name": "http", "href": "https://scm-manager.org/test-argocd/pr-test" } + ] + } + }`) + if err != nil { + t.Fail() + } + case "/api/v2/repositories/test-argocd/pr-test/content/master/README.md?ref=master": + _, err := io.WriteString(w, `"my readme test"`) + require.NoError(t, err) + case "/api/v2/repositories/test-argocd/pr-test/content/master/build": + _, err := io.WriteString(w, testdata.ReposGiteaGoSdkContentsGiteaResponse) + require.NoError(t, err) + case "/api/v2/repositories/test-argocd/pr-test/content/master/unknownFile": + w.WriteHeader(404) + default: + _, err := io.WriteString(w, `[]`) + if err != nil { + t.Fail() + } + } + } +} +func TestScmManagerListRepos(t *testing.T) { + cases := []struct { + name, proto, url string + hasError, allBranches, includeSubgroups bool + branches []string + filters []v1alpha1.SCMProviderGeneratorFilter + }{ + { + name: "blank protocol", + allBranches: false, + url: "git@scm-manager.org:test-argocd/pr-test.git", + branches: []string{"main"}, + }, + { + name: "ssh protocol", + allBranches: false, + proto: "ssh", + url: "git@scm-manager.org:test-argocd/pr-test.git", + }, + { + name: "https protocol", + allBranches: false, + proto: "https", + url: "https://scm-manager.org/test-argocd/pr-test", + }, + { + name: "other protocol", + allBranches: false, + proto: "other", + hasError: true, + }, + { + name: "all branches", + allBranches: true, + url: "git@scm-manager.org:test-argocd/pr-test.git", + branches: []string{"main"}, + }, + } + ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + scmManagerMockHandler(t)(w, r) + })) + defer ts.Close() + for _, c := range cases { + t.Run(c.name, func(t *testing.T) { + provider, _ := NewScmManagerProvider(context.Background(), "", ts.URL, c.allBranches, false) + rawRepos, err := ListRepos(context.Background(), provider, c.filters, c.proto) + if c.hasError { + assert.NotNil(t, err) + } else { + assert.Nil(t, err) + repos := []*Repository{} + branches := []string{} + for _, r := range rawRepos { + if r.Repository == "pr-test" { + repos = append(repos, r) + branches = append(branches, r.Branch) + } + } + assert.NotEmpty(t, repos) + assert.Equal(t, c.url, repos[0].URL) + for _, b := range c.branches { + assert.Contains(t, branches, b) + } + } + }) + } +} + +func TestScmManagerHasPath(t *testing.T) { + ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + scmManagerMockHandler(t)(w, r) + })) + defer ts.Close() + host, _ := NewScmManagerProvider(context.Background(), "", ts.URL, false, false) + repo := &Repository{ + Organization: "test-argocd", + Repository: "pr-test", + Branch: "master", + } + + t.Run("file exists", func(t *testing.T) { + ok, err := host.RepoHasPath(context.Background(), repo, "README.md") + assert.Nil(t, err) + assert.True(t, ok) + }) + + t.Run("directory exists", func(t *testing.T) { + ok, err := host.RepoHasPath(context.Background(), repo, "build") + assert.Nil(t, err) + assert.True(t, ok) + }) + + t.Run("does not exists", func(t *testing.T) { + ok, err := host.RepoHasPath(context.Background(), repo, "unknownFile") + assert.Nil(t, err) + assert.False(t, ok) + }) +} diff --git a/assets/swagger.json b/assets/swagger.json index 67fb03f80a83ad..d20e0a7b8311c3 100644 --- a/assets/swagger.json +++ b/assets/swagger.json @@ -7942,6 +7942,9 @@ "type": "integer", "format": "int64" }, + "scmManager": { + "$ref": "#/definitions/v1alpha1PullRequestGeneratorScmManager" + }, "template": { "$ref": "#/definitions/v1alpha1ApplicationSetTemplate" } @@ -8138,6 +8141,31 @@ } } }, + "v1alpha1PullRequestGeneratorScmManager": { + "description": "PullRequestGenerator defines connection info specific to SCM-Manager.", + "type": "object", + "properties": { + "api": { + "type": "string", + "title": "SCM-Manager Instance URL with context path. Required" + }, + "insecure": { + "description": "Allow insecure tls, for self-signed certificates; default: false.", + "type": "boolean" + }, + "name": { + "description": "SCM-Manager repo name to scan. Required.", + "type": "string" + }, + "namespace": { + "description": "SCM-Manager namespace. Required.", + "type": "string" + }, + "tokenRef": { + "$ref": "#/definitions/v1alpha1SecretRef" + } + } + }, "v1alpha1RepoCreds": { "type": "object", "title": "RepoCreds holds the definition for repository credentials", @@ -8836,6 +8864,9 @@ "type": "integer", "format": "int64" }, + "scmManager": { + "$ref": "#/definitions/v1alpha1SCMProviderGeneratorScmManager" + }, "template": { "$ref": "#/definitions/v1alpha1ApplicationSetTemplate" }, @@ -9072,6 +9103,27 @@ } } }, + "v1alpha1SCMProviderGeneratorScmManager": { + "description": "SCMProviderGeneratorScmManager defines a connection info specific to Scm-Manager.", + "type": "object", + "properties": { + "allBranches": { + "description": "Scan all branches instead of just the default branch.", + "type": "boolean" + }, + "api": { + "description": "The SCM-Manager URL to talk to. For example https://scm-manager.org/scm.", + "type": "string" + }, + "insecure": { + "type": "boolean", + "title": "Allow self-signed TLS / Certificates; default: false" + }, + "tokenRef": { + "$ref": "#/definitions/v1alpha1SecretRef" + } + } + }, "v1alpha1SecretRef": { "description": "Utility struct for a reference to a secret key.", "type": "object", diff --git a/docs/operator-manual/applicationset/Generators-Pull-Request.md b/docs/operator-manual/applicationset/Generators-Pull-Request.md index 2e6dffaaf5f327..97ba5a2a249a8c 100644 --- a/docs/operator-manual/applicationset/Generators-Pull-Request.md +++ b/docs/operator-manual/applicationset/Generators-Pull-Request.md @@ -322,6 +322,45 @@ 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) +## SCM-Manager + +Fetch pull requests from a repo hosted on a SCM-Manager Server. The Review plugin must be installed on your SCM-Manager to enable pull requests. + +```yaml +apiVersion: argoproj.io/v1alpha1 +kind: ApplicationSet +metadata: + name: myapps +spec: + generators: + - pullRequest: + scmManager: + # Repository Namespace. Required. + namespace: myproject + # Repository Name. Required. + repo: myrepository + # URL of the SCM-Manager server + api: https://scm-manager.org/scm + # Reference to a Secret containing an access token. (optional) + tokenRef: + secretName: scmm-token + key: token + # May be required for self-hosted and self-signed certificates + insecure: true + # Labels are not supported by SCM-Manager yet. + # Filter PRs using the source branch name. (optional) + filters: + - branchMatch: ".*-argocd" + template: + # ... +``` + +* `namespace`: Required namespace of the SCM-Manager repository. +* `name`: Required name of the SCM-Manager repository. +* `api`: Required URL to access the SCM-Manager REST API. For e.g. to fetch all pull requests of your repository. +* `tokenRef`: A `Secret` name and key containing the SCM-Manager access token to use for requests. If not specified, will make anonymous requests which can only see public repositories. (Optional) +* `insecure`: `Allow for self-signed certificates, primarily for testing.` + ## 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 d48c07403573a5..5d9ed6526cbfb7 100644 --- a/docs/operator-manual/applicationset/Generators-SCM-Provider.md +++ b/docs/operator-manual/applicationset/Generators-SCM-Provider.md @@ -380,6 +380,38 @@ All AWS roles must have repo discovery related permissions. * `codecommit:GetFolder` * `codecommit:ListBranches` +## SCM-Manager + +```yaml +apiVersion: argoproj.io/v1alpha1 +kind: ApplicationSet +metadata: + name: myapps +spec: + generators: + - scmProvider: + scmManager: + # The SCM-Manager server url + api: https://scm-manager.org/scm + # If true, scan every branch of every repository. If false, scan only the default branch. Defaults to false. + allBranches: true + # Reference to a Secret containing an access token. (optional) + tokenRef: + secretName: scmm-token + key: token + template: + # ... +``` + +* `api`: The URL of the SCM-Manager instance you are using. +* `allBranches`: By default (false) the template will only be evaluated for the default branch of each repo. If this is true, every branch of every repository will be passed to the filters. If using this flag, you likely want to use a `branchMatch` filter. +* `tokenRef`: A `Secret` name and key containing the Gitea 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. +* `insecure`: Allow for self-signed TLS certificates. + +This SCM provider does not yet support label filtering + +Available clone protocols are `ssh` and `https`. For SSH access the SSH plugin must be installed on your SCM-Manager server. + ## Filters Filters allow selecting which repositories 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 repositories will be processed. diff --git a/go.mod b/go.mod index 6a93cdb2d6dde2..50d32f59275b64 100644 --- a/go.mod +++ b/go.mod @@ -69,6 +69,7 @@ require ( github.com/r3labs/diff v1.1.0 github.com/redis/go-redis/v9 v9.6.1 github.com/robfig/cron/v3 v3.0.1 + github.com/scm-manager/goscm v0.0.2 github.com/sirupsen/logrus v1.9.3 github.com/skratchdot/open-golang v0.0.0-20160302144031-75fb7ed4208c github.com/soheilhy/cmux v0.1.5 diff --git a/go.sum b/go.sum index 519f985bfea90a..265312384dd671 100644 --- a/go.sum +++ b/go.sum @@ -1585,6 +1585,8 @@ github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfF github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZKsJ8yyVxGRWYNEm9oFB8ieLgKFnamEyDmSA0BRk= github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0XIa01GRL2eRQVjQkKGqKF3SF9vZR/HnPullcV2E= +github.com/scm-manager/goscm v0.0.2 h1:RuJA7bYcGtDy2oivF66Fv6n8z7gTECcdNtnqvxl1TrU= +github.com/scm-manager/goscm v0.0.2/go.mod h1:1pYGtYGb1pHUh5eQQ3bwUIdMh9ahcFrZh2ti4wV7rCc= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4= diff --git a/manifests/core-install.yaml b/manifests/core-install.yaml index 698d67d5901d09..1ca57c04c4d49c 100644 --- a/manifests/core-install.yaml +++ b/manifests/core-install.yaml @@ -11174,6 +11174,31 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + api: + type: string + insecure: + type: boolean + name: + type: string + namespace: + type: string + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + - name + - namespace + type: object template: properties: metadata: @@ -11999,6 +12024,27 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + allBranches: + type: boolean + api: + type: string + insecure: + type: boolean + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + type: object template: properties: metadata: @@ -16532,6 +16578,31 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + api: + type: string + insecure: + type: boolean + name: + type: string + namespace: + type: string + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + - name + - namespace + type: object template: properties: metadata: @@ -17357,6 +17428,27 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + allBranches: + type: boolean + api: + type: string + insecure: + type: boolean + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + type: object template: properties: metadata: @@ -19419,6 +19511,31 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + api: + type: string + insecure: + type: boolean + name: + type: string + namespace: + type: string + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + - name + - namespace + type: object template: properties: metadata: @@ -20244,6 +20361,27 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + allBranches: + type: boolean + api: + type: string + insecure: + type: boolean + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + type: object template: properties: metadata: diff --git a/manifests/crds/applicationset-crd.yaml b/manifests/crds/applicationset-crd.yaml index 6bc2dcc5777241..83387f6d52313a 100644 --- a/manifests/crds/applicationset-crd.yaml +++ b/manifests/crds/applicationset-crd.yaml @@ -5826,6 +5826,31 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + api: + type: string + insecure: + type: boolean + name: + type: string + namespace: + type: string + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + - name + - namespace + type: object template: properties: metadata: @@ -6651,6 +6676,27 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + allBranches: + type: boolean + api: + type: string + insecure: + type: boolean + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + type: object template: properties: metadata: @@ -11184,6 +11230,31 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + api: + type: string + insecure: + type: boolean + name: + type: string + namespace: + type: string + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + - name + - namespace + type: object template: properties: metadata: @@ -12009,6 +12080,27 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + allBranches: + type: boolean + api: + type: string + insecure: + type: boolean + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + type: object template: properties: metadata: @@ -14071,6 +14163,31 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + api: + type: string + insecure: + type: boolean + name: + type: string + namespace: + type: string + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + - name + - namespace + type: object template: properties: metadata: @@ -14896,6 +15013,27 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + allBranches: + type: boolean + api: + type: string + insecure: + type: boolean + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + type: object template: properties: metadata: diff --git a/manifests/ha/install.yaml b/manifests/ha/install.yaml index 8191c2a4292ffc..75a194add60ed1 100644 --- a/manifests/ha/install.yaml +++ b/manifests/ha/install.yaml @@ -11174,6 +11174,31 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + api: + type: string + insecure: + type: boolean + name: + type: string + namespace: + type: string + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + - name + - namespace + type: object template: properties: metadata: @@ -11999,6 +12024,27 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + allBranches: + type: boolean + api: + type: string + insecure: + type: boolean + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + type: object template: properties: metadata: @@ -16532,6 +16578,31 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + api: + type: string + insecure: + type: boolean + name: + type: string + namespace: + type: string + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + - name + - namespace + type: object template: properties: metadata: @@ -17357,6 +17428,27 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + allBranches: + type: boolean + api: + type: string + insecure: + type: boolean + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + type: object template: properties: metadata: @@ -19419,6 +19511,31 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + api: + type: string + insecure: + type: boolean + name: + type: string + namespace: + type: string + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + - name + - namespace + type: object template: properties: metadata: @@ -20244,6 +20361,27 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + allBranches: + type: boolean + api: + type: string + insecure: + type: boolean + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + type: object template: properties: metadata: diff --git a/manifests/install.yaml b/manifests/install.yaml index c82d23ea5d083b..03c607dd3b2a53 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -11174,6 +11174,31 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + api: + type: string + insecure: + type: boolean + name: + type: string + namespace: + type: string + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + - name + - namespace + type: object template: properties: metadata: @@ -11999,6 +12024,27 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + allBranches: + type: boolean + api: + type: string + insecure: + type: boolean + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + type: object template: properties: metadata: @@ -16532,6 +16578,31 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + api: + type: string + insecure: + type: boolean + name: + type: string + namespace: + type: string + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + - name + - namespace + type: object template: properties: metadata: @@ -17357,6 +17428,27 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + allBranches: + type: boolean + api: + type: string + insecure: + type: boolean + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + type: object template: properties: metadata: @@ -19419,6 +19511,31 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + api: + type: string + insecure: + type: boolean + name: + type: string + namespace: + type: string + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + - name + - namespace + type: object template: properties: metadata: @@ -20244,6 +20361,27 @@ spec: requeueAfterSeconds: format: int64 type: integer + scmManager: + properties: + allBranches: + type: boolean + api: + type: string + insecure: + type: boolean + tokenRef: + properties: + key: + type: string + secretName: + type: string + required: + - key + - secretName + type: object + required: + - api + type: object template: properties: metadata: diff --git a/pkg/apis/application/v1alpha1/applicationset_types.go b/pkg/apis/application/v1alpha1/applicationset_types.go index d4446130c70264..9758d5710c330f 100644 --- a/pkg/apis/application/v1alpha1/applicationset_types.go +++ b/pkg/apis/application/v1alpha1/applicationset_types.go @@ -440,6 +440,7 @@ type SCMProviderGenerator struct { // Values contains key/value pairs which are passed directly as parameters to the template Values map[string]string `json:"values,omitempty" protobuf:"bytes,11,name=values"` AWSCodeCommit *SCMProviderGeneratorAWSCodeCommit `json:"awsCodeCommit,omitempty" protobuf:"bytes,12,opt,name=awsCodeCommit"` + ScmManager *SCMProviderGeneratorScmManager `json:"scmManager,omitempty" protobuf:"bytes,13,opt,name=scmManager"` // If you add a new SCM provider, update CustomApiUrl below. } @@ -454,6 +455,8 @@ func (g *SCMProviderGenerator) CustomApiUrl() string { return g.BitbucketServer.API } else if g.AzureDevOps != nil { return g.AzureDevOps.API + } else if g.ScmManager != nil { + return g.ScmManager.API } return "" } @@ -472,6 +475,18 @@ type SCMProviderGeneratorGitea struct { Insecure bool `json:"insecure,omitempty" protobuf:"varint,5,opt,name=insecure"` } +// SCMProviderGeneratorScmManager defines a connection info specific to Scm-Manager. +type SCMProviderGeneratorScmManager struct { + // The SCM-Manager URL to talk to. For example https://scm-manager.org/scm. + API string `json:"api" protobuf:"bytes,1,opt,name=api"` + // Authentication token reference. + TokenRef *SecretRef `json:"tokenRef,omitempty" protobuf:"bytes,2,opt,name=tokenRef"` + // Scan all branches instead of just the default branch. + AllBranches bool `json:"allBranches,omitempty" protobuf:"varint,3,opt,name=allBranches"` + // Allow self-signed TLS / Certificates; default: false + Insecure bool `json:"insecure,omitempty" protobuf:"varint,4,opt,name=insecure"` +} + // SCMProviderGeneratorGithub defines connection info specific to GitHub. type SCMProviderGeneratorGithub struct { // GitHub org to scan. Required. @@ -606,6 +621,7 @@ type PullRequestGenerator struct { Bitbucket *PullRequestGeneratorBitbucket `json:"bitbucket,omitempty" protobuf:"bytes,8,opt,name=bitbucket"` // Additional provider to use and config for it. AzureDevOps *PullRequestGeneratorAzureDevOps `json:"azuredevops,omitempty" protobuf:"bytes,9,opt,name=azuredevops"` + ScmManager *PullRequestGeneratorScmManager `json:"scmManager,omitempty" protobuf:"bytes,10,opt,name=scmManager"` // If you add a new SCM provider, update CustomApiUrl below. } @@ -628,6 +644,9 @@ func (p *PullRequestGenerator) CustomApiUrl() string { if p.AzureDevOps != nil { return p.AzureDevOps.API } + if p.ScmManager != nil { + return p.ScmManager.API + } return "" } @@ -645,6 +664,20 @@ type PullRequestGeneratorGitea struct { Insecure bool `json:"insecure,omitempty" protobuf:"varint,5,opt,name=insecure"` } +// PullRequestGenerator defines connection info specific to SCM-Manager. +type PullRequestGeneratorScmManager struct { + // SCM-Manager namespace. Required. + Namespace string `json:"namespace" protobuf:"bytes,1,opt,name=namespace"` + // SCM-Manager repo name to scan. Required. + Name string `json:"name" protobuf:"bytes,2,opt,name=name"` + // SCM-Manager Instance URL with context path. Required + API string `json:"api" protobuf:"bytes,3,opt,name=api"` + // Authentication token reference. + TokenRef *SecretRef `json:"tokenRef,omitempty" protobuf:"bytes,4,opt,name=tokenRef"` + // Allow insecure tls, for self-signed certificates; default: false. + Insecure bool `json:"insecure,omitempty" protobuf:"varint,5,opt,name=insecure"` +} + // PullRequestGeneratorAzureDevOps defines connection info specific to AzureDevOps. type PullRequestGeneratorAzureDevOps struct { // Azure DevOps org to scan. Required. diff --git a/pkg/apis/application/v1alpha1/generated.pb.go b/pkg/apis/application/v1alpha1/generated.pb.go index a7029c6f3232cf..2574f884ba5077 100644 --- a/pkg/apis/application/v1alpha1/generated.pb.go +++ b/pkg/apis/application/v1alpha1/generated.pb.go @@ -3121,10 +3121,38 @@ func (m *PullRequestGeneratorGithub) XXX_DiscardUnknown() { var xxx_messageInfo_PullRequestGeneratorGithub proto.InternalMessageInfo +func (m *PullRequestGeneratorScmManager) Reset() { *m = PullRequestGeneratorScmManager{} } +func (*PullRequestGeneratorScmManager) ProtoMessage() {} +func (*PullRequestGeneratorScmManager) Descriptor() ([]byte, []int) { + return fileDescriptor_030104ce3b95bcac, []int{110} +} +func (m *PullRequestGeneratorScmManager) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *PullRequestGeneratorScmManager) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (m *PullRequestGeneratorScmManager) XXX_Merge(src proto.Message) { + xxx_messageInfo_PullRequestGeneratorScmManager.Merge(m, src) +} +func (m *PullRequestGeneratorScmManager) XXX_Size() int { + return m.Size() +} +func (m *PullRequestGeneratorScmManager) XXX_DiscardUnknown() { + xxx_messageInfo_PullRequestGeneratorScmManager.DiscardUnknown(m) +} + +var xxx_messageInfo_PullRequestGeneratorScmManager proto.InternalMessageInfo + func (m *RefTarget) Reset() { *m = RefTarget{} } func (*RefTarget) ProtoMessage() {} func (*RefTarget) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{110} + return fileDescriptor_030104ce3b95bcac, []int{111} } func (m *RefTarget) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3152,7 +3180,7 @@ var xxx_messageInfo_RefTarget proto.InternalMessageInfo func (m *RepoCreds) Reset() { *m = RepoCreds{} } func (*RepoCreds) ProtoMessage() {} func (*RepoCreds) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{111} + return fileDescriptor_030104ce3b95bcac, []int{112} } func (m *RepoCreds) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3180,7 +3208,7 @@ var xxx_messageInfo_RepoCreds proto.InternalMessageInfo func (m *RepoCredsList) Reset() { *m = RepoCredsList{} } func (*RepoCredsList) ProtoMessage() {} func (*RepoCredsList) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{112} + return fileDescriptor_030104ce3b95bcac, []int{113} } func (m *RepoCredsList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3208,7 +3236,7 @@ var xxx_messageInfo_RepoCredsList proto.InternalMessageInfo func (m *Repository) Reset() { *m = Repository{} } func (*Repository) ProtoMessage() {} func (*Repository) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{113} + return fileDescriptor_030104ce3b95bcac, []int{114} } func (m *Repository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3236,7 +3264,7 @@ var xxx_messageInfo_Repository proto.InternalMessageInfo func (m *RepositoryCertificate) Reset() { *m = RepositoryCertificate{} } func (*RepositoryCertificate) ProtoMessage() {} func (*RepositoryCertificate) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{114} + return fileDescriptor_030104ce3b95bcac, []int{115} } func (m *RepositoryCertificate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3264,7 +3292,7 @@ var xxx_messageInfo_RepositoryCertificate proto.InternalMessageInfo func (m *RepositoryCertificateList) Reset() { *m = RepositoryCertificateList{} } func (*RepositoryCertificateList) ProtoMessage() {} func (*RepositoryCertificateList) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{115} + return fileDescriptor_030104ce3b95bcac, []int{116} } func (m *RepositoryCertificateList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3292,7 +3320,7 @@ var xxx_messageInfo_RepositoryCertificateList proto.InternalMessageInfo func (m *RepositoryList) Reset() { *m = RepositoryList{} } func (*RepositoryList) ProtoMessage() {} func (*RepositoryList) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{116} + return fileDescriptor_030104ce3b95bcac, []int{117} } func (m *RepositoryList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3320,7 +3348,7 @@ var xxx_messageInfo_RepositoryList proto.InternalMessageInfo func (m *ResourceAction) Reset() { *m = ResourceAction{} } func (*ResourceAction) ProtoMessage() {} func (*ResourceAction) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{117} + return fileDescriptor_030104ce3b95bcac, []int{118} } func (m *ResourceAction) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3348,7 +3376,7 @@ var xxx_messageInfo_ResourceAction proto.InternalMessageInfo func (m *ResourceActionDefinition) Reset() { *m = ResourceActionDefinition{} } func (*ResourceActionDefinition) ProtoMessage() {} func (*ResourceActionDefinition) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{118} + return fileDescriptor_030104ce3b95bcac, []int{119} } func (m *ResourceActionDefinition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3376,7 +3404,7 @@ var xxx_messageInfo_ResourceActionDefinition proto.InternalMessageInfo func (m *ResourceActionParam) Reset() { *m = ResourceActionParam{} } func (*ResourceActionParam) ProtoMessage() {} func (*ResourceActionParam) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{119} + return fileDescriptor_030104ce3b95bcac, []int{120} } func (m *ResourceActionParam) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3404,7 +3432,7 @@ var xxx_messageInfo_ResourceActionParam proto.InternalMessageInfo func (m *ResourceActions) Reset() { *m = ResourceActions{} } func (*ResourceActions) ProtoMessage() {} func (*ResourceActions) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{120} + return fileDescriptor_030104ce3b95bcac, []int{121} } func (m *ResourceActions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3432,7 +3460,7 @@ var xxx_messageInfo_ResourceActions proto.InternalMessageInfo func (m *ResourceDiff) Reset() { *m = ResourceDiff{} } func (*ResourceDiff) ProtoMessage() {} func (*ResourceDiff) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{121} + return fileDescriptor_030104ce3b95bcac, []int{122} } func (m *ResourceDiff) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3460,7 +3488,7 @@ var xxx_messageInfo_ResourceDiff proto.InternalMessageInfo func (m *ResourceIgnoreDifferences) Reset() { *m = ResourceIgnoreDifferences{} } func (*ResourceIgnoreDifferences) ProtoMessage() {} func (*ResourceIgnoreDifferences) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{122} + return fileDescriptor_030104ce3b95bcac, []int{123} } func (m *ResourceIgnoreDifferences) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3488,7 +3516,7 @@ var xxx_messageInfo_ResourceIgnoreDifferences proto.InternalMessageInfo func (m *ResourceNetworkingInfo) Reset() { *m = ResourceNetworkingInfo{} } func (*ResourceNetworkingInfo) ProtoMessage() {} func (*ResourceNetworkingInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{123} + return fileDescriptor_030104ce3b95bcac, []int{124} } func (m *ResourceNetworkingInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3516,7 +3544,7 @@ var xxx_messageInfo_ResourceNetworkingInfo proto.InternalMessageInfo func (m *ResourceNode) Reset() { *m = ResourceNode{} } func (*ResourceNode) ProtoMessage() {} func (*ResourceNode) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{124} + return fileDescriptor_030104ce3b95bcac, []int{125} } func (m *ResourceNode) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3544,7 +3572,7 @@ var xxx_messageInfo_ResourceNode proto.InternalMessageInfo func (m *ResourceOverride) Reset() { *m = ResourceOverride{} } func (*ResourceOverride) ProtoMessage() {} func (*ResourceOverride) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{125} + return fileDescriptor_030104ce3b95bcac, []int{126} } func (m *ResourceOverride) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3572,7 +3600,7 @@ var xxx_messageInfo_ResourceOverride proto.InternalMessageInfo func (m *ResourceRef) Reset() { *m = ResourceRef{} } func (*ResourceRef) ProtoMessage() {} func (*ResourceRef) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{126} + return fileDescriptor_030104ce3b95bcac, []int{127} } func (m *ResourceRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3600,7 +3628,7 @@ var xxx_messageInfo_ResourceRef proto.InternalMessageInfo func (m *ResourceResult) Reset() { *m = ResourceResult{} } func (*ResourceResult) ProtoMessage() {} func (*ResourceResult) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{127} + return fileDescriptor_030104ce3b95bcac, []int{128} } func (m *ResourceResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3628,7 +3656,7 @@ var xxx_messageInfo_ResourceResult proto.InternalMessageInfo func (m *ResourceStatus) Reset() { *m = ResourceStatus{} } func (*ResourceStatus) ProtoMessage() {} func (*ResourceStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{128} + return fileDescriptor_030104ce3b95bcac, []int{129} } func (m *ResourceStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3656,7 +3684,7 @@ var xxx_messageInfo_ResourceStatus proto.InternalMessageInfo func (m *RetryStrategy) Reset() { *m = RetryStrategy{} } func (*RetryStrategy) ProtoMessage() {} func (*RetryStrategy) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{129} + return fileDescriptor_030104ce3b95bcac, []int{130} } func (m *RetryStrategy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3684,7 +3712,7 @@ var xxx_messageInfo_RetryStrategy proto.InternalMessageInfo func (m *RevisionHistory) Reset() { *m = RevisionHistory{} } func (*RevisionHistory) ProtoMessage() {} func (*RevisionHistory) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{130} + return fileDescriptor_030104ce3b95bcac, []int{131} } func (m *RevisionHistory) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3712,7 +3740,7 @@ var xxx_messageInfo_RevisionHistory proto.InternalMessageInfo func (m *RevisionMetadata) Reset() { *m = RevisionMetadata{} } func (*RevisionMetadata) ProtoMessage() {} func (*RevisionMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{131} + return fileDescriptor_030104ce3b95bcac, []int{132} } func (m *RevisionMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3740,7 +3768,7 @@ var xxx_messageInfo_RevisionMetadata proto.InternalMessageInfo func (m *SCMProviderGenerator) Reset() { *m = SCMProviderGenerator{} } func (*SCMProviderGenerator) ProtoMessage() {} func (*SCMProviderGenerator) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{132} + return fileDescriptor_030104ce3b95bcac, []int{133} } func (m *SCMProviderGenerator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3768,7 +3796,7 @@ var xxx_messageInfo_SCMProviderGenerator proto.InternalMessageInfo func (m *SCMProviderGeneratorAWSCodeCommit) Reset() { *m = SCMProviderGeneratorAWSCodeCommit{} } func (*SCMProviderGeneratorAWSCodeCommit) ProtoMessage() {} func (*SCMProviderGeneratorAWSCodeCommit) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{133} + return fileDescriptor_030104ce3b95bcac, []int{134} } func (m *SCMProviderGeneratorAWSCodeCommit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3796,7 +3824,7 @@ var xxx_messageInfo_SCMProviderGeneratorAWSCodeCommit proto.InternalMessageInfo func (m *SCMProviderGeneratorAzureDevOps) Reset() { *m = SCMProviderGeneratorAzureDevOps{} } func (*SCMProviderGeneratorAzureDevOps) ProtoMessage() {} func (*SCMProviderGeneratorAzureDevOps) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{134} + return fileDescriptor_030104ce3b95bcac, []int{135} } func (m *SCMProviderGeneratorAzureDevOps) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3824,7 +3852,7 @@ var xxx_messageInfo_SCMProviderGeneratorAzureDevOps proto.InternalMessageInfo func (m *SCMProviderGeneratorBitbucket) Reset() { *m = SCMProviderGeneratorBitbucket{} } func (*SCMProviderGeneratorBitbucket) ProtoMessage() {} func (*SCMProviderGeneratorBitbucket) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{135} + return fileDescriptor_030104ce3b95bcac, []int{136} } func (m *SCMProviderGeneratorBitbucket) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3852,7 +3880,7 @@ var xxx_messageInfo_SCMProviderGeneratorBitbucket proto.InternalMessageInfo func (m *SCMProviderGeneratorBitbucketServer) Reset() { *m = SCMProviderGeneratorBitbucketServer{} } func (*SCMProviderGeneratorBitbucketServer) ProtoMessage() {} func (*SCMProviderGeneratorBitbucketServer) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{136} + return fileDescriptor_030104ce3b95bcac, []int{137} } func (m *SCMProviderGeneratorBitbucketServer) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3880,7 +3908,7 @@ var xxx_messageInfo_SCMProviderGeneratorBitbucketServer proto.InternalMessageInf func (m *SCMProviderGeneratorFilter) Reset() { *m = SCMProviderGeneratorFilter{} } func (*SCMProviderGeneratorFilter) ProtoMessage() {} func (*SCMProviderGeneratorFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{137} + return fileDescriptor_030104ce3b95bcac, []int{138} } func (m *SCMProviderGeneratorFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3908,7 +3936,7 @@ var xxx_messageInfo_SCMProviderGeneratorFilter proto.InternalMessageInfo func (m *SCMProviderGeneratorGitea) Reset() { *m = SCMProviderGeneratorGitea{} } func (*SCMProviderGeneratorGitea) ProtoMessage() {} func (*SCMProviderGeneratorGitea) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{138} + return fileDescriptor_030104ce3b95bcac, []int{139} } func (m *SCMProviderGeneratorGitea) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3936,7 +3964,7 @@ var xxx_messageInfo_SCMProviderGeneratorGitea proto.InternalMessageInfo func (m *SCMProviderGeneratorGithub) Reset() { *m = SCMProviderGeneratorGithub{} } func (*SCMProviderGeneratorGithub) ProtoMessage() {} func (*SCMProviderGeneratorGithub) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{139} + return fileDescriptor_030104ce3b95bcac, []int{140} } func (m *SCMProviderGeneratorGithub) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3964,7 +3992,7 @@ var xxx_messageInfo_SCMProviderGeneratorGithub proto.InternalMessageInfo func (m *SCMProviderGeneratorGitlab) Reset() { *m = SCMProviderGeneratorGitlab{} } func (*SCMProviderGeneratorGitlab) ProtoMessage() {} func (*SCMProviderGeneratorGitlab) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{140} + return fileDescriptor_030104ce3b95bcac, []int{141} } func (m *SCMProviderGeneratorGitlab) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3989,10 +4017,38 @@ func (m *SCMProviderGeneratorGitlab) XXX_DiscardUnknown() { var xxx_messageInfo_SCMProviderGeneratorGitlab proto.InternalMessageInfo +func (m *SCMProviderGeneratorScmManager) Reset() { *m = SCMProviderGeneratorScmManager{} } +func (*SCMProviderGeneratorScmManager) ProtoMessage() {} +func (*SCMProviderGeneratorScmManager) Descriptor() ([]byte, []int) { + return fileDescriptor_030104ce3b95bcac, []int{142} +} +func (m *SCMProviderGeneratorScmManager) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SCMProviderGeneratorScmManager) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (m *SCMProviderGeneratorScmManager) XXX_Merge(src proto.Message) { + xxx_messageInfo_SCMProviderGeneratorScmManager.Merge(m, src) +} +func (m *SCMProviderGeneratorScmManager) XXX_Size() int { + return m.Size() +} +func (m *SCMProviderGeneratorScmManager) XXX_DiscardUnknown() { + xxx_messageInfo_SCMProviderGeneratorScmManager.DiscardUnknown(m) +} + +var xxx_messageInfo_SCMProviderGeneratorScmManager proto.InternalMessageInfo + func (m *SecretRef) Reset() { *m = SecretRef{} } func (*SecretRef) ProtoMessage() {} func (*SecretRef) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{141} + return fileDescriptor_030104ce3b95bcac, []int{143} } func (m *SecretRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4020,7 +4076,7 @@ var xxx_messageInfo_SecretRef proto.InternalMessageInfo func (m *SignatureKey) Reset() { *m = SignatureKey{} } func (*SignatureKey) ProtoMessage() {} func (*SignatureKey) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{142} + return fileDescriptor_030104ce3b95bcac, []int{144} } func (m *SignatureKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4048,7 +4104,7 @@ var xxx_messageInfo_SignatureKey proto.InternalMessageInfo func (m *SyncOperation) Reset() { *m = SyncOperation{} } func (*SyncOperation) ProtoMessage() {} func (*SyncOperation) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{143} + return fileDescriptor_030104ce3b95bcac, []int{145} } func (m *SyncOperation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4076,7 +4132,7 @@ var xxx_messageInfo_SyncOperation proto.InternalMessageInfo func (m *SyncOperationResource) Reset() { *m = SyncOperationResource{} } func (*SyncOperationResource) ProtoMessage() {} func (*SyncOperationResource) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{144} + return fileDescriptor_030104ce3b95bcac, []int{146} } func (m *SyncOperationResource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4104,7 +4160,7 @@ var xxx_messageInfo_SyncOperationResource proto.InternalMessageInfo func (m *SyncOperationResult) Reset() { *m = SyncOperationResult{} } func (*SyncOperationResult) ProtoMessage() {} func (*SyncOperationResult) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{145} + return fileDescriptor_030104ce3b95bcac, []int{147} } func (m *SyncOperationResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4132,7 +4188,7 @@ var xxx_messageInfo_SyncOperationResult proto.InternalMessageInfo func (m *SyncPolicy) Reset() { *m = SyncPolicy{} } func (*SyncPolicy) ProtoMessage() {} func (*SyncPolicy) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{146} + return fileDescriptor_030104ce3b95bcac, []int{148} } func (m *SyncPolicy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4160,7 +4216,7 @@ var xxx_messageInfo_SyncPolicy proto.InternalMessageInfo func (m *SyncPolicyAutomated) Reset() { *m = SyncPolicyAutomated{} } func (*SyncPolicyAutomated) ProtoMessage() {} func (*SyncPolicyAutomated) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{147} + return fileDescriptor_030104ce3b95bcac, []int{149} } func (m *SyncPolicyAutomated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4188,7 +4244,7 @@ var xxx_messageInfo_SyncPolicyAutomated proto.InternalMessageInfo func (m *SyncStatus) Reset() { *m = SyncStatus{} } func (*SyncStatus) ProtoMessage() {} func (*SyncStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{148} + return fileDescriptor_030104ce3b95bcac, []int{150} } func (m *SyncStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4216,7 +4272,7 @@ var xxx_messageInfo_SyncStatus proto.InternalMessageInfo func (m *SyncStrategy) Reset() { *m = SyncStrategy{} } func (*SyncStrategy) ProtoMessage() {} func (*SyncStrategy) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{149} + return fileDescriptor_030104ce3b95bcac, []int{151} } func (m *SyncStrategy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4244,7 +4300,7 @@ var xxx_messageInfo_SyncStrategy proto.InternalMessageInfo func (m *SyncStrategyApply) Reset() { *m = SyncStrategyApply{} } func (*SyncStrategyApply) ProtoMessage() {} func (*SyncStrategyApply) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{150} + return fileDescriptor_030104ce3b95bcac, []int{152} } func (m *SyncStrategyApply) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4272,7 +4328,7 @@ var xxx_messageInfo_SyncStrategyApply proto.InternalMessageInfo func (m *SyncStrategyHook) Reset() { *m = SyncStrategyHook{} } func (*SyncStrategyHook) ProtoMessage() {} func (*SyncStrategyHook) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{151} + return fileDescriptor_030104ce3b95bcac, []int{153} } func (m *SyncStrategyHook) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4300,7 +4356,7 @@ var xxx_messageInfo_SyncStrategyHook proto.InternalMessageInfo func (m *SyncWindow) Reset() { *m = SyncWindow{} } func (*SyncWindow) ProtoMessage() {} func (*SyncWindow) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{152} + return fileDescriptor_030104ce3b95bcac, []int{154} } func (m *SyncWindow) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4328,7 +4384,7 @@ var xxx_messageInfo_SyncWindow proto.InternalMessageInfo func (m *TLSClientConfig) Reset() { *m = TLSClientConfig{} } func (*TLSClientConfig) ProtoMessage() {} func (*TLSClientConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{153} + return fileDescriptor_030104ce3b95bcac, []int{155} } func (m *TLSClientConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4356,7 +4412,7 @@ var xxx_messageInfo_TLSClientConfig proto.InternalMessageInfo func (m *TagFilter) Reset() { *m = TagFilter{} } func (*TagFilter) ProtoMessage() {} func (*TagFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_030104ce3b95bcac, []int{154} + return fileDescriptor_030104ce3b95bcac, []int{156} } func (m *TagFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4509,6 +4565,7 @@ func init() { proto.RegisterType((*PullRequestGeneratorGitLab)(nil), "github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.PullRequestGeneratorGitLab") proto.RegisterType((*PullRequestGeneratorGitea)(nil), "github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.PullRequestGeneratorGitea") proto.RegisterType((*PullRequestGeneratorGithub)(nil), "github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.PullRequestGeneratorGithub") + proto.RegisterType((*PullRequestGeneratorScmManager)(nil), "github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.PullRequestGeneratorScmManager") proto.RegisterType((*RefTarget)(nil), "github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.RefTarget") proto.RegisterType((*RepoCreds)(nil), "github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.RepoCreds") proto.RegisterType((*RepoCredsList)(nil), "github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.RepoCredsList") @@ -4543,6 +4600,7 @@ func init() { proto.RegisterType((*SCMProviderGeneratorGitea)(nil), "github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.SCMProviderGeneratorGitea") proto.RegisterType((*SCMProviderGeneratorGithub)(nil), "github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.SCMProviderGeneratorGithub") proto.RegisterType((*SCMProviderGeneratorGitlab)(nil), "github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.SCMProviderGeneratorGitlab") + proto.RegisterType((*SCMProviderGeneratorScmManager)(nil), "github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.SCMProviderGeneratorScmManager") proto.RegisterType((*SecretRef)(nil), "github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.SecretRef") proto.RegisterType((*SignatureKey)(nil), "github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.SignatureKey") proto.RegisterType((*SyncOperation)(nil), "github.com.argoproj.argo_cd.v2.pkg.apis.application.v1alpha1.SyncOperation") @@ -4564,710 +4622,714 @@ func init() { } var fileDescriptor_030104ce3b95bcac = []byte{ - // 11234 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x70, 0x24, 0xc7, - 0x75, 0x98, 0x66, 0x3f, 0x80, 0xdd, 0x87, 0xaf, 0x43, 0xdf, 0x1d, 0x89, 0x3b, 0x91, 0xc4, 0x79, - 0x68, 0x53, 0x54, 0x44, 0x02, 0xe6, 0x89, 0x94, 0x19, 0xd1, 0x92, 0x8c, 0x8f, 0x3b, 0x1c, 0xee, - 0x80, 0x03, 0xd8, 0xc0, 0xdd, 0x49, 0x94, 0x29, 0x6a, 0xb0, 0xdb, 0x58, 0xcc, 0x61, 0x76, 0x66, - 0x39, 0x33, 0x8b, 0x03, 0x68, 0x49, 0x96, 0x2c, 0xc9, 0x96, 0xa3, 0x0f, 0x2a, 0x52, 0xaa, 0x42, - 0x27, 0x96, 0x22, 0x5b, 0x4e, 0x2a, 0xae, 0x14, 0x2b, 0x4a, 0xf2, 0x23, 0x4e, 0x1c, 0x97, 0x2b, - 0x76, 0x2a, 0xa5, 0xc4, 0x49, 0xd9, 0xa5, 0x72, 0x59, 0x4e, 0x62, 0x23, 0xd2, 0xc5, 0xa9, 0xa4, - 0x52, 0x15, 0x57, 0xe5, 0xe3, 0x47, 0x72, 0xc9, 0x8f, 0x54, 0x7f, 0xf7, 0xcc, 0xce, 0x02, 0x0b, - 0x60, 0x80, 0x3b, 0x29, 0xfc, 0xb7, 0xdb, 0xef, 0xcd, 0x7b, 0x3d, 0x3d, 0xdd, 0xef, 0xbd, 0x7e, - 0xfd, 0xde, 0x6b, 0x58, 0x68, 0xb8, 0xf1, 0x46, 0x7b, 0x6d, 0xa2, 0x16, 0x34, 0x27, 0x9d, 0xb0, - 0x11, 0xb4, 0xc2, 0xe0, 0x36, 0xfb, 0xf1, 0x74, 0xad, 0x3e, 0xb9, 0x75, 0x71, 0xb2, 0xb5, 0xd9, - 0x98, 0x74, 0x5a, 0x6e, 0x34, 0xe9, 0xb4, 0x5a, 0x9e, 0x5b, 0x73, 0x62, 0x37, 0xf0, 0x27, 0xb7, - 0x9e, 0x71, 0xbc, 0xd6, 0x86, 0xf3, 0xcc, 0x64, 0x83, 0xf8, 0x24, 0x74, 0x62, 0x52, 0x9f, 0x68, - 0x85, 0x41, 0x1c, 0xa0, 0x9f, 0xd4, 0xd4, 0x26, 0x24, 0x35, 0xf6, 0xe3, 0x95, 0x5a, 0x7d, 0x62, - 0xeb, 0xe2, 0x44, 0x6b, 0xb3, 0x31, 0x41, 0xa9, 0x4d, 0x18, 0xd4, 0x26, 0x24, 0xb5, 0xf3, 0x4f, - 0x1b, 0x7d, 0x69, 0x04, 0x8d, 0x60, 0x92, 0x11, 0x5d, 0x6b, 0xaf, 0xb3, 0x7f, 0xec, 0x0f, 0xfb, - 0xc5, 0x99, 0x9d, 0xb7, 0x37, 0x9f, 0x8f, 0x26, 0xdc, 0x80, 0x76, 0x6f, 0xb2, 0x16, 0x84, 0x64, - 0x72, 0xab, 0xa3, 0x43, 0xe7, 0xaf, 0x68, 0x1c, 0xb2, 0x1d, 0x13, 0x3f, 0x72, 0x03, 0x3f, 0x7a, - 0x9a, 0x76, 0x81, 0x84, 0x5b, 0x24, 0x34, 0x5f, 0xcf, 0x40, 0xc8, 0xa2, 0xf4, 0xac, 0xa6, 0xd4, - 0x74, 0x6a, 0x1b, 0xae, 0x4f, 0xc2, 0x1d, 0xfd, 0x78, 0x93, 0xc4, 0x4e, 0xd6, 0x53, 0x93, 0xdd, - 0x9e, 0x0a, 0xdb, 0x7e, 0xec, 0x36, 0x49, 0xc7, 0x03, 0xef, 0xd9, 0xef, 0x81, 0xa8, 0xb6, 0x41, - 0x9a, 0x4e, 0xc7, 0x73, 0xef, 0xee, 0xf6, 0x5c, 0x3b, 0x76, 0xbd, 0x49, 0xd7, 0x8f, 0xa3, 0x38, - 0x4c, 0x3f, 0x64, 0xff, 0xb2, 0x05, 0x43, 0x53, 0xb7, 0x56, 0xa6, 0xda, 0xf1, 0xc6, 0x4c, 0xe0, - 0xaf, 0xbb, 0x0d, 0xf4, 0x1c, 0x0c, 0xd4, 0xbc, 0x76, 0x14, 0x93, 0xf0, 0xba, 0xd3, 0x24, 0x63, - 0xd6, 0x05, 0xeb, 0xc9, 0xea, 0xf4, 0xe9, 0x6f, 0xef, 0x8e, 0xbf, 0xed, 0xee, 0xee, 0xf8, 0xc0, - 0x8c, 0x06, 0x61, 0x13, 0x0f, 0xbd, 0x13, 0xfa, 0xc3, 0xc0, 0x23, 0x53, 0xf8, 0xfa, 0x58, 0x81, - 0x3d, 0x32, 0x22, 0x1e, 0xe9, 0xc7, 0xbc, 0x19, 0x4b, 0x38, 0x45, 0x6d, 0x85, 0xc1, 0xba, 0xeb, - 0x91, 0xb1, 0x62, 0x12, 0x75, 0x99, 0x37, 0x63, 0x09, 0xb7, 0xff, 0xa8, 0x00, 0x30, 0xd5, 0x6a, - 0x2d, 0x87, 0xc1, 0x6d, 0x52, 0x8b, 0xd1, 0x47, 0xa1, 0x42, 0x87, 0xb9, 0xee, 0xc4, 0x0e, 0xeb, - 0xd8, 0xc0, 0xc5, 0x1f, 0x9f, 0xe0, 0x6f, 0x3d, 0x61, 0xbe, 0xb5, 0x9e, 0x64, 0x14, 0x7b, 0x62, - 0xeb, 0x99, 0x89, 0xa5, 0x35, 0xfa, 0xfc, 0x22, 0x89, 0x9d, 0x69, 0x24, 0x98, 0x81, 0x6e, 0xc3, - 0x8a, 0x2a, 0xf2, 0xa1, 0x14, 0xb5, 0x48, 0x8d, 0xbd, 0xc3, 0xc0, 0xc5, 0x85, 0x89, 0xa3, 0xcc, - 0xe6, 0x09, 0xdd, 0xf3, 0x95, 0x16, 0xa9, 0x4d, 0x0f, 0x0a, 0xce, 0x25, 0xfa, 0x0f, 0x33, 0x3e, - 0x68, 0x0b, 0xfa, 0xa2, 0xd8, 0x89, 0xdb, 0x11, 0x1b, 0x8a, 0x81, 0x8b, 0xd7, 0x73, 0xe3, 0xc8, - 0xa8, 0x4e, 0x0f, 0x0b, 0x9e, 0x7d, 0xfc, 0x3f, 0x16, 0xdc, 0xec, 0x3f, 0xb5, 0x60, 0x58, 0x23, - 0x2f, 0xb8, 0x51, 0x8c, 0x7e, 0xba, 0x63, 0x70, 0x27, 0x7a, 0x1b, 0x5c, 0xfa, 0x34, 0x1b, 0xda, - 0x53, 0x82, 0x59, 0x45, 0xb6, 0x18, 0x03, 0xdb, 0x84, 0xb2, 0x1b, 0x93, 0x66, 0x34, 0x56, 0xb8, - 0x50, 0x7c, 0x72, 0xe0, 0xe2, 0x95, 0xbc, 0xde, 0x73, 0x7a, 0x48, 0x30, 0x2d, 0xcf, 0x53, 0xf2, - 0x98, 0x73, 0xb1, 0x7f, 0x7d, 0xd0, 0x7c, 0x3f, 0x3a, 0xe0, 0xe8, 0x19, 0x18, 0x88, 0x82, 0x76, - 0x58, 0x23, 0x98, 0xb4, 0x82, 0x68, 0xcc, 0xba, 0x50, 0xa4, 0x53, 0x8f, 0x4e, 0xea, 0x15, 0xdd, - 0x8c, 0x4d, 0x1c, 0xf4, 0x25, 0x0b, 0x06, 0xeb, 0x24, 0x8a, 0x5d, 0x9f, 0xf1, 0x97, 0x9d, 0x5f, - 0x3d, 0x72, 0xe7, 0x65, 0xe3, 0xac, 0x26, 0x3e, 0x7d, 0x46, 0xbc, 0xc8, 0xa0, 0xd1, 0x18, 0xe1, - 0x04, 0x7f, 0xba, 0x38, 0xeb, 0x24, 0xaa, 0x85, 0x6e, 0x8b, 0xfe, 0x17, 0xcb, 0x47, 0x2d, 0xce, - 0x59, 0x0d, 0xc2, 0x26, 0x1e, 0xf2, 0xa1, 0x4c, 0x17, 0x5f, 0x34, 0x56, 0x62, 0xfd, 0x9f, 0x3f, - 0x5a, 0xff, 0xc5, 0xa0, 0xd2, 0x75, 0xad, 0x47, 0x9f, 0xfe, 0x8b, 0x30, 0x67, 0x83, 0xbe, 0x68, - 0xc1, 0x98, 0x10, 0x0e, 0x98, 0xf0, 0x01, 0xbd, 0xb5, 0xe1, 0xc6, 0xc4, 0x73, 0xa3, 0x78, 0xac, - 0xcc, 0xfa, 0x30, 0xd9, 0xdb, 0xdc, 0x9a, 0x0b, 0x83, 0x76, 0xeb, 0x9a, 0xeb, 0xd7, 0xa7, 0x2f, - 0x08, 0x4e, 0x63, 0x33, 0x5d, 0x08, 0xe3, 0xae, 0x2c, 0xd1, 0x57, 0x2d, 0x38, 0xef, 0x3b, 0x4d, - 0x12, 0xb5, 0x1c, 0xfa, 0x69, 0x39, 0x78, 0xda, 0x73, 0x6a, 0x9b, 0xac, 0x47, 0x7d, 0x87, 0xeb, - 0x91, 0x2d, 0x7a, 0x74, 0xfe, 0x7a, 0x57, 0xd2, 0x78, 0x0f, 0xb6, 0xe8, 0x9b, 0x16, 0x8c, 0x06, - 0x61, 0x6b, 0xc3, 0xf1, 0x49, 0x5d, 0x42, 0xa3, 0xb1, 0x7e, 0xb6, 0xf4, 0x3e, 0x72, 0xb4, 0x4f, - 0xb4, 0x94, 0x26, 0xbb, 0x18, 0xf8, 0x6e, 0x1c, 0x84, 0x2b, 0x24, 0x8e, 0x5d, 0xbf, 0x11, 0x4d, - 0x9f, 0xbd, 0xbb, 0x3b, 0x3e, 0xda, 0x81, 0x85, 0x3b, 0xfb, 0x83, 0x7e, 0x06, 0x06, 0xa2, 0x1d, - 0xbf, 0x76, 0xcb, 0xf5, 0xeb, 0xc1, 0x9d, 0x68, 0xac, 0x92, 0xc7, 0xf2, 0x5d, 0x51, 0x04, 0xc5, - 0x02, 0xd4, 0x0c, 0xb0, 0xc9, 0x2d, 0xfb, 0xc3, 0xe9, 0xa9, 0x54, 0xcd, 0xfb, 0xc3, 0xe9, 0xc9, - 0xb4, 0x07, 0x5b, 0xf4, 0x0b, 0x16, 0x0c, 0x45, 0x6e, 0xc3, 0x77, 0xe2, 0x76, 0x48, 0xae, 0x91, - 0x9d, 0x68, 0x0c, 0x58, 0x47, 0xae, 0x1e, 0x71, 0x54, 0x0c, 0x92, 0xd3, 0x67, 0x45, 0x1f, 0x87, - 0xcc, 0xd6, 0x08, 0x27, 0xf9, 0x66, 0x2d, 0x34, 0x3d, 0xad, 0x07, 0xf2, 0x5d, 0x68, 0x7a, 0x52, - 0x77, 0x65, 0x89, 0x7e, 0x0a, 0x4e, 0xf1, 0x26, 0x35, 0xb2, 0xd1, 0xd8, 0x20, 0x13, 0xb4, 0x67, - 0xee, 0xee, 0x8e, 0x9f, 0x5a, 0x49, 0xc1, 0x70, 0x07, 0x36, 0x7a, 0x15, 0xc6, 0x5b, 0x24, 0x6c, - 0xba, 0xf1, 0x92, 0xef, 0xed, 0x48, 0xf1, 0x5d, 0x0b, 0x5a, 0xa4, 0x2e, 0xba, 0x13, 0x8d, 0x0d, - 0x5d, 0xb0, 0x9e, 0xac, 0x4c, 0xbf, 0x43, 0x74, 0x73, 0x7c, 0x79, 0x6f, 0x74, 0xbc, 0x1f, 0x3d, - 0xfb, 0x5f, 0x14, 0xe0, 0x54, 0x5a, 0x71, 0xa2, 0xbf, 0x65, 0xc1, 0xc8, 0xed, 0x3b, 0xf1, 0x6a, - 0xb0, 0x49, 0xfc, 0x68, 0x7a, 0x87, 0x8a, 0x37, 0xa6, 0x32, 0x06, 0x2e, 0xd6, 0xf2, 0x55, 0xd1, - 0x13, 0x57, 0x93, 0x5c, 0x2e, 0xf9, 0x71, 0xb8, 0x33, 0xfd, 0xb0, 0x78, 0xbb, 0x91, 0xab, 0xb7, - 0x56, 0x4d, 0x28, 0x4e, 0x77, 0xea, 0xfc, 0xe7, 0x2d, 0x38, 0x93, 0x45, 0x02, 0x9d, 0x82, 0xe2, - 0x26, 0xd9, 0xe1, 0x06, 0x1c, 0xa6, 0x3f, 0xd1, 0xcb, 0x50, 0xde, 0x72, 0xbc, 0x36, 0x11, 0xd6, - 0xcd, 0xdc, 0xd1, 0x5e, 0x44, 0xf5, 0x0c, 0x73, 0xaa, 0xef, 0x2d, 0x3c, 0x6f, 0xd9, 0xbf, 0x5f, - 0x84, 0x01, 0x43, 0xbf, 0x9d, 0x80, 0xc5, 0x16, 0x24, 0x2c, 0xb6, 0xc5, 0xdc, 0x54, 0x73, 0x57, - 0x93, 0xed, 0x4e, 0xca, 0x64, 0x5b, 0xca, 0x8f, 0xe5, 0x9e, 0x36, 0x1b, 0x8a, 0xa1, 0x1a, 0xb4, - 0xa8, 0xf5, 0x4e, 0x55, 0x7f, 0x29, 0x8f, 0x4f, 0xb8, 0x24, 0xc9, 0x4d, 0x0f, 0xdd, 0xdd, 0x1d, - 0xaf, 0xaa, 0xbf, 0x58, 0x33, 0xb2, 0xbf, 0x6b, 0xc1, 0x19, 0xa3, 0x8f, 0x33, 0x81, 0x5f, 0x77, - 0xd9, 0xa7, 0xbd, 0x00, 0xa5, 0x78, 0xa7, 0x25, 0x77, 0x08, 0x6a, 0xa4, 0x56, 0x77, 0x5a, 0x04, - 0x33, 0x08, 0x35, 0xf4, 0x9b, 0x24, 0x8a, 0x9c, 0x06, 0x49, 0xef, 0x09, 0x16, 0x79, 0x33, 0x96, - 0x70, 0x14, 0x02, 0xf2, 0x9c, 0x28, 0x5e, 0x0d, 0x1d, 0x3f, 0x62, 0xe4, 0x57, 0xdd, 0x26, 0x11, - 0x03, 0xfc, 0x17, 0x7a, 0x9b, 0x31, 0xf4, 0x89, 0xe9, 0x87, 0xee, 0xee, 0x8e, 0xa3, 0x85, 0x0e, - 0x4a, 0x38, 0x83, 0xba, 0xfd, 0x55, 0x0b, 0x1e, 0xca, 0xb6, 0xc5, 0xd0, 0x13, 0xd0, 0xc7, 0xb7, - 0x87, 0xe2, 0xed, 0xf4, 0x27, 0x61, 0xad, 0x58, 0x40, 0xd1, 0x24, 0x54, 0x95, 0x9e, 0x10, 0xef, - 0x38, 0x2a, 0x50, 0xab, 0x5a, 0xb9, 0x68, 0x1c, 0x3a, 0x68, 0xf4, 0x8f, 0xb0, 0xdc, 0xd4, 0xa0, - 0xb1, 0xfd, 0x14, 0x83, 0xd8, 0xff, 0xde, 0x82, 0x11, 0xa3, 0x57, 0x27, 0x60, 0x9a, 0xfb, 0x49, - 0xd3, 0x7c, 0x3e, 0xb7, 0xf9, 0xdc, 0xc5, 0x36, 0xff, 0xa2, 0x05, 0xe7, 0x0d, 0xac, 0x45, 0x27, - 0xae, 0x6d, 0x5c, 0xda, 0x6e, 0x85, 0x24, 0xa2, 0x5b, 0x6f, 0xf4, 0xa8, 0x21, 0xb7, 0xa6, 0x07, - 0x04, 0x85, 0xe2, 0x35, 0xb2, 0xc3, 0x85, 0xd8, 0x53, 0x50, 0xe1, 0x93, 0x33, 0x08, 0xc5, 0x88, - 0xab, 0x77, 0x5b, 0x12, 0xed, 0x58, 0x61, 0x20, 0x1b, 0xfa, 0x98, 0x70, 0xa2, 0x8b, 0x95, 0xaa, - 0x21, 0xa0, 0x1f, 0xf1, 0x26, 0x6b, 0xc1, 0x02, 0x62, 0x47, 0x89, 0xee, 0x2c, 0x87, 0x84, 0x7d, - 0xdc, 0xfa, 0x65, 0x97, 0x78, 0xf5, 0x88, 0x6e, 0x1b, 0x1c, 0xdf, 0x0f, 0x62, 0xb1, 0x03, 0x30, - 0xb6, 0x0d, 0x53, 0xba, 0x19, 0x9b, 0x38, 0x94, 0xa9, 0xe7, 0xac, 0x11, 0x8f, 0x8f, 0xa8, 0x60, - 0xba, 0xc0, 0x5a, 0xb0, 0x80, 0xd8, 0x77, 0x0b, 0x6c, 0x83, 0xa2, 0x96, 0x3e, 0x39, 0x89, 0xdd, - 0x6d, 0x98, 0x90, 0x95, 0xcb, 0xf9, 0x09, 0x2e, 0xd2, 0x7d, 0x87, 0xfb, 0x5a, 0x4a, 0x5c, 0xe2, - 0x5c, 0xb9, 0xee, 0xbd, 0xcb, 0xfd, 0x64, 0x11, 0xc6, 0x93, 0x0f, 0x74, 0x48, 0x5b, 0xba, 0xa5, - 0x32, 0x18, 0xa5, 0xfd, 0x1d, 0x06, 0x3e, 0x36, 0xf1, 0xba, 0x08, 0xac, 0xc2, 0x71, 0x0a, 0x2c, - 0x53, 0x9e, 0x16, 0xf7, 0x91, 0xa7, 0x4f, 0xa8, 0x51, 0x2f, 0xa5, 0x04, 0x58, 0x52, 0xa7, 0x5c, - 0x80, 0x52, 0x14, 0x93, 0xd6, 0x58, 0x39, 0x29, 0x8f, 0x56, 0x62, 0xd2, 0xc2, 0x0c, 0x82, 0xde, - 0x07, 0x23, 0xb1, 0x13, 0x36, 0x48, 0x1c, 0x92, 0x2d, 0x97, 0xf9, 0xc6, 0xd8, 0x7e, 0xa9, 0x3a, - 0x7d, 0x9a, 0x9a, 0x27, 0xab, 0x0c, 0x84, 0x25, 0x08, 0xa7, 0x71, 0xed, 0xff, 0x52, 0x80, 0x87, - 0x93, 0x9f, 0x40, 0x6b, 0x90, 0x0f, 0x24, 0x34, 0xc8, 0xbb, 0x4c, 0x0d, 0x72, 0x6f, 0x77, 0xfc, - 0xed, 0x5d, 0x1e, 0xfb, 0x81, 0x51, 0x30, 0x68, 0x2e, 0xf5, 0x11, 0x26, 0x93, 0x1f, 0xe1, 0xde, - 0xee, 0xf8, 0xa3, 0x5d, 0xde, 0x31, 0xf5, 0x95, 0x9e, 0x80, 0xbe, 0x90, 0x38, 0x51, 0xe0, 0x8b, - 0xef, 0xa4, 0xbe, 0x26, 0x66, 0xad, 0x58, 0x40, 0xed, 0xef, 0x54, 0xd3, 0x83, 0x3d, 0xc7, 0xfd, - 0x7d, 0x41, 0x88, 0x5c, 0x28, 0xb1, 0x5d, 0x01, 0x97, 0x2c, 0xd7, 0x8e, 0xb6, 0x0a, 0xa9, 0x16, - 0x51, 0xa4, 0xa7, 0x2b, 0xf4, 0xab, 0xd1, 0x26, 0xcc, 0x58, 0xa0, 0x6d, 0xa8, 0xd4, 0xa4, 0xb1, - 0x5e, 0xc8, 0xc3, 0xad, 0x25, 0x4c, 0x75, 0xcd, 0x71, 0x90, 0x8a, 0x7b, 0x65, 0xe1, 0x2b, 0x6e, - 0x88, 0x40, 0xb1, 0xe1, 0xc6, 0xe2, 0xb3, 0x1e, 0x71, 0x3b, 0x36, 0xe7, 0x1a, 0xaf, 0xd8, 0x4f, - 0x75, 0xd0, 0x9c, 0x1b, 0x63, 0x4a, 0x1f, 0x7d, 0xd6, 0x82, 0x81, 0xa8, 0xd6, 0x5c, 0x0e, 0x83, - 0x2d, 0xb7, 0x4e, 0x42, 0x61, 0x8c, 0x1d, 0x51, 0xb2, 0xad, 0xcc, 0x2c, 0x4a, 0x82, 0x9a, 0x2f, - 0xdf, 0x1e, 0x6b, 0x08, 0x36, 0xf9, 0xd2, 0x4d, 0xca, 0xc3, 0xe2, 0xdd, 0x67, 0x49, 0x8d, 0xad, - 0x38, 0xb9, 0x27, 0x63, 0x33, 0xe5, 0xc8, 0xc6, 0xe9, 0x6c, 0xbb, 0xb6, 0x49, 0xd7, 0x9b, 0xee, - 0xd0, 0xdb, 0xef, 0xee, 0x8e, 0x3f, 0x3c, 0x93, 0xcd, 0x13, 0x77, 0xeb, 0x0c, 0x1b, 0xb0, 0x56, - 0xdb, 0xf3, 0x30, 0x79, 0xb5, 0x4d, 0x98, 0xc7, 0x25, 0x87, 0x01, 0x5b, 0xd6, 0x04, 0x53, 0x03, - 0x66, 0x40, 0xb0, 0xc9, 0x17, 0xbd, 0x0a, 0x7d, 0x4d, 0x27, 0x0e, 0xdd, 0x6d, 0xe1, 0x66, 0x39, - 0xe2, 0x76, 0x61, 0x91, 0xd1, 0xd2, 0xcc, 0x99, 0xa2, 0xe7, 0x8d, 0x58, 0x30, 0x42, 0x4d, 0x28, - 0x37, 0x49, 0xd8, 0x20, 0x63, 0x95, 0x3c, 0x5c, 0xca, 0x8b, 0x94, 0x94, 0x66, 0x58, 0xa5, 0xc6, - 0x15, 0x6b, 0xc3, 0x9c, 0x0b, 0x7a, 0x19, 0x2a, 0x11, 0xf1, 0x48, 0x8d, 0x9a, 0x47, 0x55, 0xc6, - 0xf1, 0xdd, 0x3d, 0x9a, 0x8a, 0xd4, 0x2e, 0x59, 0x11, 0x8f, 0xf2, 0x05, 0x26, 0xff, 0x61, 0x45, - 0x92, 0x0e, 0x60, 0xcb, 0x6b, 0x37, 0x5c, 0x7f, 0x0c, 0xf2, 0x18, 0xc0, 0x65, 0x46, 0x2b, 0x35, - 0x80, 0xbc, 0x11, 0x0b, 0x46, 0xf6, 0x7f, 0xb4, 0x00, 0x25, 0x85, 0xda, 0x09, 0xd8, 0xc4, 0xaf, - 0x26, 0x6d, 0xe2, 0x85, 0x3c, 0x8d, 0x96, 0x2e, 0x66, 0xf1, 0x6f, 0x56, 0x21, 0xa5, 0x0e, 0xae, - 0x93, 0x28, 0x26, 0xf5, 0xb7, 0x44, 0xf8, 0x5b, 0x22, 0xfc, 0x2d, 0x11, 0xae, 0x44, 0xf8, 0x5a, - 0x4a, 0x84, 0xbf, 0xdf, 0x58, 0xf5, 0xfa, 0xfc, 0xf6, 0x15, 0x75, 0xc0, 0x6b, 0xf6, 0xc0, 0x40, - 0xa0, 0x92, 0xe0, 0xea, 0xca, 0xd2, 0xf5, 0x4c, 0x99, 0xfd, 0x4a, 0x52, 0x66, 0x1f, 0x95, 0xc5, - 0xff, 0x0f, 0x52, 0xfa, 0x9f, 0x5b, 0xf0, 0x8e, 0xa4, 0xf4, 0x92, 0x33, 0x67, 0xbe, 0xe1, 0x07, - 0x21, 0x99, 0x75, 0xd7, 0xd7, 0x49, 0x48, 0xfc, 0x1a, 0x89, 0x94, 0x13, 0xc4, 0xea, 0xe6, 0x04, - 0x41, 0xcf, 0xc2, 0xe0, 0xed, 0x28, 0xf0, 0x97, 0x03, 0xd7, 0x17, 0x22, 0x88, 0xee, 0x38, 0x4e, - 0xdd, 0xdd, 0x1d, 0x1f, 0xa4, 0x23, 0x2a, 0xdb, 0x71, 0x02, 0x0b, 0xcd, 0xc0, 0xe8, 0xed, 0x57, - 0x97, 0x9d, 0xd8, 0xf0, 0x26, 0xc8, 0x7d, 0x3f, 0x3b, 0xef, 0xb8, 0xfa, 0x62, 0x0a, 0x88, 0x3b, - 0xf1, 0xed, 0xbf, 0x5e, 0x80, 0x73, 0xa9, 0x17, 0x09, 0x3c, 0x2f, 0x68, 0xc7, 0x74, 0x4f, 0x84, - 0xbe, 0x6e, 0xc1, 0xa9, 0x66, 0xd2, 0x61, 0x11, 0x09, 0xbf, 0xf0, 0x07, 0x73, 0xd3, 0x11, 0x29, - 0x8f, 0xc8, 0xf4, 0x98, 0x18, 0xa1, 0x53, 0x29, 0x40, 0x84, 0x3b, 0xfa, 0x82, 0x5e, 0x86, 0x6a, - 0xd3, 0xd9, 0xbe, 0xd1, 0xaa, 0x3b, 0xb1, 0xdc, 0x8e, 0x76, 0xf7, 0x22, 0xb4, 0x63, 0xd7, 0x9b, - 0xe0, 0x91, 0x01, 0x13, 0xf3, 0x7e, 0xbc, 0x14, 0xae, 0xc4, 0xa1, 0xeb, 0x37, 0xb8, 0x37, 0x70, - 0x51, 0x92, 0xc1, 0x9a, 0xa2, 0xfd, 0x35, 0x2b, 0xad, 0xa4, 0xd4, 0xe8, 0x84, 0x4e, 0x4c, 0x1a, - 0x3b, 0xe8, 0x63, 0x50, 0xa6, 0xfb, 0x46, 0x39, 0x2a, 0xb7, 0xf2, 0xd4, 0x9c, 0xc6, 0x97, 0xd0, - 0x4a, 0x94, 0xfe, 0x8b, 0x30, 0x67, 0x6a, 0x7f, 0xbd, 0x9a, 0x36, 0x16, 0xd8, 0xd9, 0xef, 0x45, - 0x80, 0x46, 0xb0, 0x4a, 0x9a, 0x2d, 0x8f, 0x0e, 0x8b, 0xc5, 0x0e, 0x10, 0x94, 0xab, 0x64, 0x4e, - 0x41, 0xb0, 0x81, 0x85, 0x7e, 0xd1, 0x02, 0x68, 0xc8, 0x39, 0x2f, 0x0d, 0x81, 0x1b, 0x79, 0xbe, - 0x8e, 0x5e, 0x51, 0xba, 0x2f, 0x8a, 0x21, 0x36, 0x98, 0xa3, 0x9f, 0xb3, 0xa0, 0x12, 0xcb, 0xee, - 0x73, 0xd5, 0xb8, 0x9a, 0x67, 0x4f, 0xe4, 0x4b, 0x6b, 0x9b, 0x48, 0x0d, 0x89, 0xe2, 0x8b, 0x7e, - 0xde, 0x02, 0x88, 0x76, 0xfc, 0xda, 0x72, 0xe0, 0xb9, 0xb5, 0x1d, 0xa1, 0x31, 0x6f, 0xe6, 0xea, - 0xce, 0x51, 0xd4, 0xa7, 0x87, 0xe9, 0x68, 0xe8, 0xff, 0xd8, 0xe0, 0x8c, 0x3e, 0x01, 0x95, 0x48, - 0x4c, 0x37, 0xa1, 0x23, 0x57, 0xf3, 0x75, 0x2a, 0x71, 0xda, 0x42, 0xbc, 0x8a, 0x7f, 0x58, 0xf1, - 0x44, 0x7f, 0xd5, 0x82, 0x91, 0x56, 0xd2, 0x4d, 0x28, 0xd4, 0x61, 0x7e, 0x32, 0x20, 0xe5, 0x86, - 0xe4, 0xde, 0x96, 0x54, 0x23, 0x4e, 0xf7, 0x82, 0x4a, 0x40, 0x3d, 0x83, 0x97, 0x5a, 0xdc, 0x65, - 0xd9, 0xaf, 0x25, 0xe0, 0x5c, 0x1a, 0x88, 0x3b, 0xf1, 0xd1, 0x32, 0x9c, 0xa1, 0xbd, 0xdb, 0xe1, - 0xe6, 0xa7, 0x54, 0x2f, 0x11, 0x53, 0x86, 0x95, 0xe9, 0x47, 0xc4, 0x0c, 0x61, 0x87, 0x02, 0x69, - 0x1c, 0x9c, 0xf9, 0x24, 0xfa, 0x7d, 0x0b, 0x1e, 0x71, 0x99, 0x1a, 0x30, 0xfd, 0xed, 0x5a, 0x23, - 0x88, 0x83, 0x5c, 0x92, 0xab, 0xac, 0xe8, 0xa6, 0x7e, 0xa6, 0x7f, 0x54, 0xbc, 0xc1, 0x23, 0xf3, - 0x7b, 0x74, 0x09, 0xef, 0xd9, 0x61, 0xf4, 0x13, 0x30, 0x24, 0xd7, 0xc5, 0x32, 0x15, 0xc1, 0x4c, - 0xd1, 0x56, 0xa7, 0x47, 0xef, 0xee, 0x8e, 0x0f, 0xad, 0x9a, 0x00, 0x9c, 0xc4, 0xb3, 0xff, 0x65, - 0x31, 0x71, 0x9c, 0xa2, 0x7c, 0x98, 0x4c, 0xdc, 0xd4, 0xa4, 0xff, 0x47, 0x4a, 0xcf, 0x5c, 0xc5, - 0x8d, 0xf2, 0x2e, 0x69, 0x71, 0xa3, 0x9a, 0x22, 0x6c, 0x30, 0xa7, 0x46, 0xe9, 0xa8, 0x93, 0xf6, - 0x94, 0x0a, 0x09, 0xf8, 0x72, 0x9e, 0x5d, 0xea, 0x3c, 0xfc, 0x3a, 0x27, 0xba, 0x36, 0xda, 0x01, - 0xc2, 0x9d, 0x5d, 0x42, 0x1f, 0x87, 0x6a, 0xa8, 0x22, 0x27, 0x8a, 0x79, 0x6c, 0xd5, 0xe4, 0xb4, - 0x11, 0xdd, 0x51, 0xa7, 0x39, 0x3a, 0x46, 0x42, 0x73, 0xb4, 0x7f, 0x2f, 0x79, 0x82, 0x64, 0xc8, - 0x8e, 0x1e, 0x4e, 0xc7, 0xbe, 0x64, 0xc1, 0x40, 0x18, 0x78, 0x9e, 0xeb, 0x37, 0xa8, 0x9c, 0x13, - 0xca, 0xfa, 0xc3, 0xc7, 0xa2, 0x2f, 0x85, 0x40, 0x63, 0x96, 0x35, 0xd6, 0x3c, 0xb1, 0xd9, 0x01, - 0xfb, 0x4f, 0x2d, 0x18, 0xeb, 0x26, 0x8f, 0x11, 0x81, 0xb7, 0x4b, 0x61, 0xa3, 0x86, 0x62, 0xc9, - 0x9f, 0x25, 0x1e, 0x51, 0x6e, 0xf3, 0xca, 0xf4, 0xe3, 0xe2, 0x35, 0xdf, 0xbe, 0xdc, 0x1d, 0x15, - 0xef, 0x45, 0x07, 0xbd, 0x04, 0xa7, 0x8c, 0xf7, 0x8a, 0xd4, 0xc0, 0x54, 0xa7, 0x27, 0xa8, 0x01, - 0x34, 0x95, 0x82, 0xdd, 0xdb, 0x1d, 0x7f, 0x28, 0xdd, 0x26, 0x14, 0x46, 0x07, 0x1d, 0xfb, 0xd7, - 0x0a, 0xe9, 0xaf, 0xa5, 0x74, 0xfd, 0x1b, 0x56, 0x87, 0x37, 0xe1, 0x83, 0xc7, 0xa1, 0x5f, 0x99, - 0xdf, 0x41, 0x85, 0x9f, 0x74, 0xc7, 0xb9, 0x8f, 0xe7, 0xdb, 0xf6, 0xbf, 0x2a, 0xc1, 0x1e, 0x3d, - 0xeb, 0xc1, 0x78, 0x3f, 0xf0, 0xa1, 0xe8, 0x17, 0x2c, 0x75, 0x60, 0xc6, 0xd7, 0x70, 0xfd, 0xb8, - 0xc6, 0x9e, 0xef, 0x9f, 0x22, 0x1e, 0x63, 0xa1, 0xbc, 0xe8, 0xc9, 0xa3, 0x39, 0xf4, 0x0d, 0x2b, - 0x79, 0xe4, 0xc7, 0x83, 0xe6, 0xdc, 0x63, 0xeb, 0x93, 0x71, 0x8e, 0xc8, 0x3b, 0xa6, 0x4f, 0x9f, - 0xba, 0x9d, 0x30, 0x4e, 0x00, 0xac, 0xbb, 0xbe, 0xe3, 0xb9, 0xaf, 0xd1, 0xdd, 0x51, 0x99, 0x29, - 0x78, 0x66, 0x31, 0x5d, 0x56, 0xad, 0xd8, 0xc0, 0x38, 0xff, 0x17, 0x61, 0xc0, 0x78, 0xf3, 0x8c, - 0xd0, 0x90, 0x33, 0x66, 0x68, 0x48, 0xd5, 0x88, 0xe8, 0x38, 0xff, 0x7e, 0x38, 0x95, 0xee, 0xe0, - 0x41, 0x9e, 0xb7, 0xff, 0x57, 0x7f, 0xfa, 0x0c, 0x6e, 0x95, 0x84, 0x4d, 0xda, 0xb5, 0xb7, 0x1c, - 0x5b, 0x6f, 0x39, 0xb6, 0xde, 0x72, 0x6c, 0x99, 0x67, 0x13, 0xc2, 0x69, 0xd3, 0x7f, 0x42, 0x4e, - 0x9b, 0x84, 0x1b, 0xaa, 0x92, 0xbb, 0x1b, 0xca, 0xfe, 0x6c, 0x87, 0xe7, 0x7e, 0x35, 0x24, 0x04, - 0x05, 0x50, 0xf6, 0x83, 0x3a, 0x91, 0x36, 0xee, 0xd5, 0x7c, 0x0c, 0xb6, 0xeb, 0x41, 0xdd, 0x08, - 0x47, 0xa6, 0xff, 0x22, 0xcc, 0xf9, 0xd8, 0x77, 0xcb, 0x90, 0x30, 0x27, 0xf9, 0x77, 0x7f, 0x27, - 0xf4, 0x87, 0xa4, 0x15, 0xdc, 0xc0, 0x0b, 0x42, 0x97, 0xe9, 0x8c, 0x05, 0xde, 0x8c, 0x25, 0x9c, - 0xea, 0xbc, 0x96, 0x13, 0x6f, 0x08, 0x65, 0xa6, 0x74, 0xde, 0xb2, 0x13, 0x6f, 0x60, 0x06, 0x41, - 0xef, 0x87, 0xe1, 0x38, 0x71, 0x14, 0x2e, 0x8e, 0x7c, 0x1f, 0x12, 0xb8, 0xc3, 0xc9, 0x83, 0x72, - 0x9c, 0xc2, 0x46, 0xaf, 0x42, 0x69, 0x83, 0x78, 0x4d, 0xf1, 0xe9, 0x57, 0xf2, 0xd3, 0x35, 0xec, - 0x5d, 0xaf, 0x10, 0xaf, 0xc9, 0x25, 0x21, 0xfd, 0x85, 0x19, 0x2b, 0x3a, 0xef, 0xab, 0x9b, 0xed, - 0x28, 0x0e, 0x9a, 0xee, 0x6b, 0xd2, 0xd3, 0xf9, 0xc1, 0x9c, 0x19, 0x5f, 0x93, 0xf4, 0xb9, 0x4b, - 0x49, 0xfd, 0xc5, 0x9a, 0x33, 0xeb, 0x47, 0xdd, 0x0d, 0xd9, 0x94, 0xd9, 0x11, 0x0e, 0xcb, 0xbc, - 0xfb, 0x31, 0x2b, 0xe9, 0xf3, 0x7e, 0xa8, 0xbf, 0x58, 0x73, 0x46, 0x3b, 0x6a, 0xfd, 0x0d, 0xb0, - 0x3e, 0xdc, 0xc8, 0xb9, 0x0f, 0x7c, 0xed, 0x65, 0xae, 0xc3, 0xc7, 0xa1, 0x5c, 0xdb, 0x70, 0xc2, - 0x78, 0x6c, 0x90, 0x4d, 0x1a, 0x35, 0x8b, 0x67, 0x68, 0x23, 0xe6, 0x30, 0xf4, 0x28, 0x14, 0x43, - 0xb2, 0xce, 0xa2, 0x5f, 0x8d, 0xb8, 0x28, 0x4c, 0xd6, 0x31, 0x6d, 0xb7, 0x7f, 0xa5, 0x90, 0x34, - 0xdb, 0x92, 0xef, 0xcd, 0x67, 0x7b, 0xad, 0x1d, 0x46, 0xd2, 0xfd, 0x65, 0xcc, 0x76, 0xd6, 0x8c, - 0x25, 0x1c, 0x7d, 0xca, 0x82, 0xfe, 0xdb, 0x51, 0xe0, 0xfb, 0x24, 0x16, 0x2a, 0xf2, 0x66, 0xce, - 0x43, 0x71, 0x95, 0x53, 0xd7, 0x7d, 0x10, 0x0d, 0x58, 0xf2, 0xa5, 0xdd, 0x25, 0xdb, 0x35, 0xaf, - 0x5d, 0xef, 0x08, 0x75, 0xb9, 0xc4, 0x9b, 0xb1, 0x84, 0x53, 0x54, 0xd7, 0xe7, 0xa8, 0xa5, 0x24, - 0xea, 0xbc, 0x2f, 0x50, 0x05, 0xdc, 0xfe, 0x56, 0x3f, 0x9c, 0xcd, 0x5c, 0x1c, 0xd4, 0xa0, 0x62, - 0x26, 0xcb, 0x65, 0xd7, 0x23, 0x32, 0xc8, 0x8b, 0x19, 0x54, 0x37, 0x55, 0x2b, 0x36, 0x30, 0xd0, - 0xcf, 0x02, 0xb4, 0x9c, 0xd0, 0x69, 0x12, 0xe5, 0x9e, 0x3e, 0xb2, 0xdd, 0x42, 0xfb, 0xb1, 0x2c, - 0x69, 0xea, 0x2d, 0xba, 0x6a, 0x8a, 0xb0, 0xc1, 0x12, 0x3d, 0x07, 0x03, 0x21, 0xf1, 0x88, 0x13, - 0xb1, 0xe0, 0xe9, 0x74, 0x26, 0x08, 0xd6, 0x20, 0x6c, 0xe2, 0xa1, 0x27, 0x54, 0x3c, 0x5c, 0x2a, - 0x2e, 0x28, 0x19, 0x13, 0x87, 0x5e, 0xb7, 0x60, 0x78, 0xdd, 0xf5, 0x88, 0xe6, 0x2e, 0xf2, 0x36, - 0x96, 0x8e, 0xfe, 0x92, 0x97, 0x4d, 0xba, 0x5a, 0x42, 0x26, 0x9a, 0x23, 0x9c, 0x62, 0x4f, 0x3f, - 0xf3, 0x16, 0x09, 0x99, 0x68, 0xed, 0x4b, 0x7e, 0xe6, 0x9b, 0xbc, 0x19, 0x4b, 0x38, 0x9a, 0x82, - 0x91, 0x96, 0x13, 0x45, 0x33, 0x21, 0xa9, 0x13, 0x3f, 0x76, 0x1d, 0x8f, 0x67, 0x55, 0x54, 0x74, - 0x54, 0xf5, 0x72, 0x12, 0x8c, 0xd3, 0xf8, 0xe8, 0x43, 0xf0, 0x30, 0xf7, 0xff, 0x2c, 0xba, 0x51, - 0xe4, 0xfa, 0x0d, 0x3d, 0x0d, 0x84, 0x1b, 0x6c, 0x5c, 0x90, 0x7a, 0x78, 0x3e, 0x1b, 0x0d, 0x77, - 0x7b, 0x1e, 0x3d, 0x05, 0x95, 0x68, 0xd3, 0x6d, 0xcd, 0x84, 0xf5, 0x88, 0x9d, 0xfd, 0x54, 0xb4, - 0xd3, 0x75, 0x45, 0xb4, 0x63, 0x85, 0x81, 0x6a, 0x30, 0xc8, 0x3f, 0x09, 0x0f, 0xe8, 0x13, 0xf2, - 0xf1, 0xe9, 0xae, 0x6a, 0x5a, 0x24, 0x09, 0x4e, 0x60, 0xe7, 0xce, 0x25, 0x79, 0x12, 0xc5, 0x0f, - 0x4e, 0x6e, 0x1a, 0x64, 0x70, 0x82, 0x68, 0x72, 0xc7, 0x36, 0xd0, 0xc3, 0x8e, 0xed, 0x39, 0x18, - 0xd8, 0x6c, 0xaf, 0x11, 0x31, 0xf2, 0x42, 0x6c, 0xa9, 0xd9, 0x77, 0x4d, 0x83, 0xb0, 0x89, 0xc7, - 0x62, 0x29, 0x5b, 0xae, 0xf8, 0x17, 0x8d, 0x0d, 0x19, 0xb1, 0x94, 0xcb, 0xf3, 0xb2, 0x19, 0x9b, - 0x38, 0xf6, 0x2f, 0x15, 0x92, 0x4e, 0x09, 0x53, 0x7e, 0xa0, 0x88, 0x4a, 0x89, 0xf8, 0xa6, 0x13, - 0x4a, 0x5b, 0xe2, 0x88, 0x79, 0x29, 0x82, 0xee, 0x4d, 0x27, 0x34, 0xe5, 0x0d, 0x63, 0x80, 0x25, - 0x27, 0x74, 0x1b, 0x4a, 0xb1, 0xe7, 0xe4, 0x94, 0xc8, 0x66, 0x70, 0xd4, 0x3e, 0xa2, 0x85, 0xa9, - 0x08, 0x33, 0x1e, 0xe8, 0x11, 0xba, 0x31, 0x5a, 0x93, 0x87, 0x58, 0x62, 0x2f, 0xb3, 0x16, 0x61, - 0xd6, 0x6a, 0xff, 0xd9, 0x40, 0x86, 0xc8, 0x57, 0x3a, 0x16, 0x5d, 0x04, 0xa0, 0x5f, 0x6c, 0x39, - 0x24, 0xeb, 0xee, 0xb6, 0xb0, 0x71, 0x94, 0x58, 0xb9, 0xae, 0x20, 0xd8, 0xc0, 0x92, 0xcf, 0xac, - 0xb4, 0xd7, 0xe9, 0x33, 0x85, 0xce, 0x67, 0x38, 0x04, 0x1b, 0x58, 0xe8, 0x59, 0xe8, 0x73, 0x9b, - 0x4e, 0x43, 0xc5, 0xd8, 0x3e, 0x42, 0xe5, 0xc9, 0x3c, 0x6b, 0xb9, 0xb7, 0x3b, 0x3e, 0xac, 0x3a, - 0xc4, 0x9a, 0xb0, 0xc0, 0x45, 0xbf, 0x66, 0xc1, 0x60, 0x2d, 0x68, 0x36, 0x03, 0x9f, 0xef, 0x4c, - 0xc5, 0x36, 0xfb, 0xf6, 0x71, 0x59, 0x20, 0x13, 0x33, 0x06, 0x33, 0xbe, 0xcf, 0x56, 0x19, 0x77, - 0x26, 0x08, 0x27, 0x7a, 0x65, 0x8a, 0x9d, 0xf2, 0x3e, 0x62, 0xe7, 0x37, 0x2c, 0x18, 0xe5, 0xcf, - 0x1a, 0x1b, 0x66, 0x91, 0x5c, 0x16, 0x1c, 0xf3, 0x6b, 0x75, 0xf8, 0x10, 0x94, 0x1f, 0xb5, 0x03, - 0x8e, 0x3b, 0x3b, 0x89, 0xe6, 0x60, 0x74, 0x3d, 0x08, 0x6b, 0xc4, 0x1c, 0x08, 0x21, 0x33, 0x15, - 0xa1, 0xcb, 0x69, 0x04, 0xdc, 0xf9, 0x0c, 0xba, 0x09, 0x0f, 0x19, 0x8d, 0xe6, 0x38, 0x70, 0xb1, - 0xf9, 0x98, 0xa0, 0xf6, 0xd0, 0xe5, 0x4c, 0x2c, 0xdc, 0xe5, 0xe9, 0xa4, 0x84, 0xaa, 0xf6, 0x20, - 0xa1, 0x5e, 0x81, 0x73, 0xb5, 0xce, 0x91, 0xd9, 0x8a, 0xda, 0x6b, 0x11, 0x17, 0xa2, 0x95, 0xe9, - 0x1f, 0x11, 0x04, 0xce, 0xcd, 0x74, 0x43, 0xc4, 0xdd, 0x69, 0xa0, 0x8f, 0x41, 0x25, 0x24, 0xec, - 0xab, 0x44, 0x22, 0xd3, 0xea, 0x88, 0x8e, 0x04, 0x6d, 0x1c, 0x73, 0xb2, 0x5a, 0x2d, 0x88, 0x86, - 0x08, 0x2b, 0x8e, 0xe8, 0x0e, 0xf4, 0xb7, 0x9c, 0xb8, 0xb6, 0x21, 0xf2, 0xab, 0x8e, 0xec, 0xf6, - 0x56, 0xcc, 0xd9, 0x29, 0x85, 0x91, 0x91, 0xcd, 0x99, 0x60, 0xc9, 0x8d, 0x1a, 0x4a, 0xb5, 0xa0, - 0xd9, 0x0a, 0x7c, 0xe2, 0xc7, 0x52, 0x82, 0x0f, 0xf3, 0xa3, 0x04, 0xd9, 0x8a, 0x0d, 0x0c, 0xb4, - 0x0c, 0x67, 0x98, 0x5b, 0xed, 0x96, 0x1b, 0x6f, 0x04, 0xed, 0x58, 0xee, 0x12, 0xc7, 0x86, 0x93, - 0x87, 0x49, 0x0b, 0x19, 0x38, 0x38, 0xf3, 0xc9, 0xb4, 0xee, 0x19, 0x39, 0x9c, 0xee, 0x39, 0xb5, - 0xbf, 0xee, 0x39, 0xff, 0x01, 0x18, 0xed, 0x10, 0x1a, 0x07, 0xf2, 0x9d, 0xcd, 0xc2, 0x43, 0xd9, - 0xcb, 0xf3, 0x40, 0x1e, 0xb4, 0x7f, 0x90, 0x0a, 0xa1, 0x36, 0x76, 0x13, 0x3d, 0x78, 0x63, 0x1d, - 0x28, 0x12, 0x7f, 0x4b, 0x68, 0xab, 0xcb, 0x47, 0x9b, 0x25, 0x97, 0xfc, 0x2d, 0x2e, 0x5d, 0x98, - 0xcb, 0xe9, 0x92, 0xbf, 0x85, 0x29, 0x6d, 0xf4, 0x15, 0x2b, 0x61, 0x0d, 0x73, 0x1f, 0xee, 0x47, - 0x8e, 0x65, 0xfb, 0xd4, 0xb3, 0x81, 0x6c, 0xff, 0xeb, 0x02, 0x5c, 0xd8, 0x8f, 0x48, 0x0f, 0xc3, - 0xf7, 0x38, 0xf4, 0x45, 0x2c, 0x28, 0x42, 0x88, 0xff, 0x01, 0xba, 0x2a, 0x78, 0x98, 0xc4, 0x2b, - 0x58, 0x80, 0x90, 0x07, 0xc5, 0xa6, 0xd3, 0x12, 0xae, 0xbd, 0xf9, 0xa3, 0xe6, 0x64, 0xd1, 0xff, - 0x8e, 0xb7, 0xe8, 0xb4, 0xf8, 0xf4, 0x34, 0x1a, 0x30, 0x65, 0x83, 0x62, 0x28, 0x3b, 0x61, 0xe8, - 0xc8, 0x13, 0xf8, 0x6b, 0xf9, 0xf0, 0x9b, 0xa2, 0x24, 0xf9, 0x01, 0x66, 0xa2, 0x09, 0x73, 0x66, - 0xf6, 0x17, 0xfa, 0x13, 0x79, 0x49, 0x2c, 0xac, 0x22, 0x82, 0x3e, 0xe1, 0xd1, 0xb3, 0xf2, 0x4e, - 0x85, 0xe3, 0x89, 0xa5, 0x6c, 0xb3, 0x2c, 0xd2, 0xf3, 0x05, 0x2b, 0xf4, 0x79, 0x8b, 0x25, 0xc1, - 0xcb, 0x5c, 0x2d, 0xb1, 0x45, 0x3d, 0x9e, 0x9c, 0x7c, 0x33, 0xb5, 0x5e, 0x36, 0x62, 0x93, 0xbb, - 0x28, 0x66, 0xc1, 0x4c, 0xf3, 0xce, 0x62, 0x16, 0xcc, 0xd4, 0x96, 0x70, 0xb4, 0x9d, 0x11, 0x3e, - 0x91, 0x43, 0x22, 0x75, 0x0f, 0x01, 0x13, 0xdf, 0xb0, 0x60, 0xd4, 0x4d, 0x9f, 0x83, 0x8b, 0x0d, - 0xdd, 0xad, 0x7c, 0xdc, 0x6f, 0x9d, 0xc7, 0xec, 0xca, 0x70, 0xe8, 0x00, 0xe1, 0xce, 0xce, 0xa0, - 0x3a, 0x94, 0x5c, 0x7f, 0x3d, 0x10, 0xe6, 0xd2, 0xf4, 0xd1, 0x3a, 0x35, 0xef, 0xaf, 0x07, 0x7a, - 0x35, 0xd3, 0x7f, 0x98, 0x51, 0x47, 0x0b, 0x70, 0x46, 0xa6, 0xa6, 0x5c, 0x71, 0xa3, 0x38, 0x08, - 0x77, 0x16, 0xdc, 0xa6, 0x1b, 0x33, 0x53, 0xa7, 0x38, 0x3d, 0x46, 0x35, 0x11, 0xce, 0x80, 0xe3, - 0xcc, 0xa7, 0xd0, 0x6b, 0xd0, 0x2f, 0xcf, 0x9e, 0x2b, 0x79, 0x6c, 0x8e, 0x3b, 0xe7, 0xbf, 0x9a, - 0x4c, 0x2b, 0xe2, 0xf0, 0x59, 0x32, 0xb4, 0x5f, 0x1f, 0x80, 0xce, 0x23, 0xf2, 0xe4, 0x79, 0xb8, - 0x75, 0xd2, 0xe7, 0xe1, 0x74, 0x6b, 0x14, 0xe9, 0xa3, 0xec, 0x1c, 0xe6, 0xb6, 0xe0, 0xaa, 0x8f, - 0x29, 0x77, 0xfc, 0x1a, 0x66, 0x3c, 0x50, 0x08, 0x7d, 0x1b, 0xc4, 0xf1, 0xe2, 0x8d, 0x7c, 0x4e, - 0x54, 0xae, 0x30, 0x5a, 0xe9, 0x7c, 0x32, 0xde, 0x8a, 0x05, 0x27, 0xb4, 0x0d, 0xfd, 0x1b, 0x7c, - 0x02, 0x88, 0xdd, 0xca, 0xe2, 0x51, 0x07, 0x37, 0x31, 0xab, 0xf4, 0xe7, 0x16, 0x0d, 0x58, 0xb2, - 0x63, 0xb1, 0x57, 0x46, 0x74, 0x08, 0x5f, 0xba, 0xf9, 0xa5, 0xd2, 0xf5, 0x1e, 0x1a, 0xf2, 0x51, - 0x18, 0x0c, 0x49, 0x2d, 0xf0, 0x6b, 0xae, 0x47, 0xea, 0x53, 0xf2, 0xb4, 0xe4, 0x20, 0x19, 0x54, - 0xcc, 0x19, 0x81, 0x0d, 0x1a, 0x38, 0x41, 0x11, 0x7d, 0xce, 0x82, 0x61, 0x95, 0x7e, 0x4c, 0x3f, - 0x08, 0x11, 0x5e, 0xf1, 0x85, 0x9c, 0x92, 0x9d, 0x19, 0xcd, 0x69, 0x74, 0x77, 0x77, 0x7c, 0x38, - 0xd9, 0x86, 0x53, 0x7c, 0xd1, 0x4b, 0x00, 0xc1, 0x1a, 0x0f, 0xb0, 0x9a, 0x8a, 0x85, 0x8b, 0xfc, - 0x20, 0xaf, 0x3a, 0xcc, 0x33, 0x31, 0x25, 0x05, 0x6c, 0x50, 0x43, 0xd7, 0x00, 0xf8, 0xb2, 0x59, - 0xdd, 0x69, 0xc9, 0x2d, 0x8d, 0x4c, 0x81, 0x83, 0x15, 0x05, 0xb9, 0xb7, 0x3b, 0xde, 0xe9, 0xb2, - 0x64, 0x51, 0x24, 0xc6, 0xe3, 0xe8, 0x67, 0xa0, 0x3f, 0x6a, 0x37, 0x9b, 0x8e, 0x72, 0xa0, 0xe7, - 0x98, 0xdb, 0xc9, 0xe9, 0x1a, 0xa2, 0x88, 0x37, 0x60, 0xc9, 0x11, 0xdd, 0xa6, 0x42, 0x35, 0x12, - 0xbe, 0x54, 0xb6, 0x8a, 0xb8, 0x4d, 0xc0, 0x1d, 0x49, 0xef, 0x91, 0x26, 0x3e, 0xce, 0xc0, 0xb9, - 0xb7, 0x3b, 0xfe, 0x50, 0xb2, 0x7d, 0x21, 0x10, 0xd9, 0x96, 0x99, 0x34, 0xd1, 0x55, 0x59, 0xc4, - 0x87, 0xbe, 0xb6, 0xac, 0x2d, 0xf1, 0xa4, 0x2e, 0xe2, 0xc3, 0x9a, 0xbb, 0x8f, 0x99, 0xf9, 0x30, - 0x5a, 0x84, 0xd3, 0xb5, 0xc0, 0x8f, 0xc3, 0xc0, 0xf3, 0x78, 0x11, 0x2b, 0xbe, 0xbb, 0xe4, 0x0e, - 0xf6, 0xb7, 0x8b, 0x6e, 0x9f, 0x9e, 0xe9, 0x44, 0xc1, 0x59, 0xcf, 0xd9, 0x7e, 0xf2, 0xb0, 0x4b, - 0x0c, 0xce, 0xb3, 0x30, 0x48, 0xb6, 0x63, 0x12, 0xfa, 0x8e, 0x77, 0x03, 0x2f, 0x48, 0xd7, 0x32, - 0x5b, 0x03, 0x97, 0x8c, 0x76, 0x9c, 0xc0, 0x42, 0xb6, 0x72, 0xa9, 0x18, 0x19, 0xc4, 0xdc, 0xa5, - 0x22, 0x1d, 0x28, 0xf6, 0xff, 0x2e, 0x24, 0x0c, 0xb2, 0xfb, 0x72, 0xb4, 0xc6, 0x4a, 0xa1, 0xc8, - 0x9a, 0x31, 0x0c, 0x20, 0x36, 0x1a, 0x79, 0x72, 0x56, 0xa5, 0x50, 0x96, 0x4c, 0x46, 0x38, 0xc9, - 0x17, 0x6d, 0x42, 0x79, 0x23, 0x88, 0x62, 0xb9, 0xfd, 0x38, 0xe2, 0x4e, 0xe7, 0x4a, 0x10, 0xc5, - 0xcc, 0x8a, 0x50, 0xaf, 0x4d, 0x5b, 0x22, 0xcc, 0x79, 0xd8, 0xff, 0xc9, 0x4a, 0x1c, 0x24, 0xdc, - 0x62, 0x51, 0xd8, 0x5b, 0xc4, 0xa7, 0xcb, 0xda, 0x8c, 0xfb, 0xfa, 0x89, 0x54, 0x4e, 0xeb, 0x3b, - 0xba, 0xd5, 0x68, 0xbb, 0x43, 0x29, 0x4c, 0x30, 0x12, 0x46, 0x88, 0xd8, 0x27, 0xad, 0x64, 0x72, - 0x72, 0x21, 0x8f, 0x0d, 0x86, 0x99, 0xa0, 0xbf, 0x6f, 0x9e, 0xb3, 0xfd, 0x15, 0x0b, 0xfa, 0xa7, - 0x9d, 0xda, 0x66, 0xb0, 0xbe, 0x8e, 0x9e, 0x82, 0x4a, 0xbd, 0x1d, 0x9a, 0x79, 0xd2, 0xca, 0x45, - 0x31, 0x2b, 0xda, 0xb1, 0xc2, 0xa0, 0x73, 0x78, 0xdd, 0xa9, 0xc9, 0x34, 0xfd, 0x22, 0x9f, 0xc3, - 0x97, 0x59, 0x0b, 0x16, 0x10, 0xba, 0x97, 0x6f, 0x3a, 0xdb, 0xf2, 0xe1, 0xf4, 0x29, 0xc6, 0xa2, - 0x06, 0x61, 0x13, 0xcf, 0xfe, 0x67, 0x16, 0x8c, 0x4d, 0x3b, 0x91, 0x5b, 0x9b, 0x6a, 0xc7, 0x1b, - 0xd3, 0x6e, 0xbc, 0xd6, 0xae, 0x6d, 0x92, 0x98, 0xd7, 0x66, 0xa0, 0xbd, 0x6c, 0x47, 0x74, 0x29, - 0xa9, 0x7d, 0x9d, 0xea, 0xe5, 0x0d, 0xd1, 0x8e, 0x15, 0x06, 0x7a, 0x0d, 0x06, 0x5a, 0x4e, 0x14, - 0xdd, 0x09, 0xc2, 0x3a, 0x26, 0xeb, 0xf9, 0x54, 0x46, 0x59, 0x21, 0xb5, 0x90, 0xc4, 0x98, 0xac, - 0x8b, 0x13, 0x7f, 0x4d, 0x1f, 0x9b, 0xcc, 0xec, 0x5f, 0xb4, 0xe0, 0xcc, 0x34, 0x71, 0x42, 0x12, - 0xb2, 0x42, 0x2a, 0xea, 0x45, 0xd0, 0xab, 0x50, 0x89, 0x69, 0x0b, 0xed, 0x91, 0x95, 0x6f, 0x8f, - 0xd8, 0x59, 0xfd, 0xaa, 0x20, 0x8e, 0x15, 0x1b, 0xfb, 0x4b, 0x16, 0x9c, 0xcb, 0xea, 0xcb, 0x8c, - 0x17, 0xb4, 0xeb, 0xf7, 0xa3, 0x43, 0x7f, 0xcd, 0x82, 0x41, 0x76, 0xfe, 0x39, 0x4b, 0x62, 0xc7, - 0xf5, 0x3a, 0x6a, 0x9f, 0x59, 0x3d, 0xd6, 0x3e, 0xbb, 0x00, 0xa5, 0x8d, 0xa0, 0x49, 0xd2, 0x67, - 0xf7, 0x57, 0x02, 0xba, 0xc5, 0xa7, 0x10, 0xf4, 0x0c, 0x9d, 0x84, 0xae, 0x1f, 0x3b, 0x74, 0x39, - 0x4a, 0x27, 0xf6, 0x08, 0x9f, 0x80, 0xaa, 0x19, 0x9b, 0x38, 0xf6, 0x3f, 0xad, 0x42, 0xbf, 0x08, - 0x34, 0xe9, 0xb9, 0x56, 0x88, 0xf4, 0x35, 0x14, 0xba, 0xfa, 0x1a, 0x22, 0xe8, 0xab, 0xb1, 0x22, - 0x8c, 0xc2, 0xa4, 0xbd, 0x96, 0x4b, 0x64, 0x12, 0xaf, 0xeb, 0xa8, 0xbb, 0xc5, 0xff, 0x63, 0xc1, - 0x0a, 0x7d, 0xd9, 0x82, 0x91, 0x5a, 0xe0, 0xfb, 0xa4, 0xa6, 0xed, 0xad, 0x52, 0x1e, 0x01, 0x28, - 0x33, 0x49, 0xa2, 0xfa, 0xf0, 0x2d, 0x05, 0xc0, 0x69, 0xf6, 0xe8, 0x05, 0x18, 0xe2, 0x63, 0x76, - 0x33, 0xe1, 0x79, 0xd7, 0x25, 0xb1, 0x4c, 0x20, 0x4e, 0xe2, 0xa2, 0x09, 0x7e, 0x82, 0x21, 0x8a, - 0x4f, 0xf5, 0x69, 0x07, 0xa5, 0x51, 0x76, 0xca, 0xc0, 0x40, 0x21, 0xa0, 0x90, 0xac, 0x87, 0x24, - 0xda, 0x10, 0x81, 0x38, 0xcc, 0xd6, 0xeb, 0x3f, 0x5c, 0x61, 0x00, 0xdc, 0x41, 0x09, 0x67, 0x50, - 0x47, 0x9b, 0x62, 0xb3, 0x5b, 0xc9, 0x43, 0x9e, 0x8b, 0xcf, 0xdc, 0x75, 0xcf, 0x3b, 0x0e, 0xe5, - 0x68, 0xc3, 0x09, 0xeb, 0xcc, 0xc6, 0x2c, 0xf2, 0x64, 0xb4, 0x15, 0xda, 0x80, 0x79, 0x3b, 0x9a, - 0x85, 0x53, 0xa9, 0x82, 0x5e, 0x91, 0xf0, 0x90, 0xab, 0xc4, 0xa3, 0x54, 0x29, 0xb0, 0x08, 0x77, - 0x3c, 0x61, 0x3a, 0x42, 0x06, 0xf6, 0x71, 0x84, 0xec, 0xa8, 0x70, 0x4f, 0xee, 0xbb, 0x7e, 0x31, - 0x97, 0x01, 0xe8, 0x29, 0xb6, 0xf3, 0x8b, 0xa9, 0xd8, 0xce, 0x21, 0xd6, 0x81, 0x9b, 0xf9, 0x74, - 0xe0, 0xe0, 0x81, 0x9c, 0xf7, 0x33, 0x30, 0xf3, 0x7f, 0x5a, 0x20, 0xbf, 0xeb, 0x8c, 0x53, 0xdb, - 0x20, 0x74, 0xca, 0xa0, 0xf7, 0xc3, 0xb0, 0xda, 0xce, 0xcf, 0x04, 0x6d, 0x9f, 0xc7, 0x64, 0x16, - 0xf5, 0x29, 0x3d, 0x4e, 0x40, 0x71, 0x0a, 0x1b, 0x4d, 0x42, 0x95, 0x8e, 0x13, 0x7f, 0x94, 0xeb, - 0x7d, 0xe5, 0x32, 0x98, 0x5a, 0x9e, 0x17, 0x4f, 0x69, 0x1c, 0x14, 0xc0, 0xa8, 0xe7, 0x44, 0x31, - 0xeb, 0x01, 0xdd, 0xdd, 0x1f, 0xb2, 0x2c, 0x07, 0xcb, 0x6e, 0x59, 0x48, 0x13, 0xc2, 0x9d, 0xb4, - 0xed, 0xef, 0x96, 0x60, 0x28, 0x21, 0x19, 0x0f, 0x68, 0x30, 0x3c, 0x05, 0x15, 0xa9, 0xc3, 0xd3, - 0xf5, 0x87, 0x94, 0xa2, 0x57, 0x18, 0x54, 0x69, 0xad, 0x69, 0xad, 0x9a, 0x36, 0x70, 0x0c, 0x85, - 0x8b, 0x4d, 0x3c, 0x26, 0x94, 0x63, 0x2f, 0x9a, 0xf1, 0x5c, 0xe2, 0xc7, 0xbc, 0x9b, 0xf9, 0x08, - 0xe5, 0xd5, 0x85, 0x15, 0x93, 0xa8, 0x16, 0xca, 0x29, 0x00, 0x4e, 0xb3, 0x47, 0x9f, 0xb1, 0x60, - 0xc8, 0xb9, 0x13, 0xe9, 0x4a, 0xc1, 0x22, 0x8a, 0xf3, 0x88, 0x4a, 0x2a, 0x51, 0x7c, 0x98, 0xbb, - 0x9f, 0x13, 0x4d, 0x38, 0xc9, 0x14, 0xbd, 0x61, 0x01, 0x22, 0xdb, 0xa4, 0x26, 0xe3, 0x4c, 0x45, - 0x5f, 0xfa, 0xf2, 0xd8, 0xf5, 0x5e, 0xea, 0xa0, 0xcb, 0xa5, 0x7a, 0x67, 0x3b, 0xce, 0xe8, 0x83, - 0xfd, 0x8f, 0x8b, 0x6a, 0x41, 0xe9, 0xd0, 0x66, 0xc7, 0x08, 0xb1, 0xb4, 0x0e, 0x1f, 0x62, 0xa9, - 0x43, 0x44, 0x3a, 0xb3, 0x7d, 0x13, 0xc9, 0x81, 0x85, 0xfb, 0x94, 0x1c, 0xf8, 0x73, 0x56, 0xa2, - 0xd2, 0xd6, 0xc0, 0xc5, 0x97, 0xf2, 0x0d, 0xab, 0x9e, 0xe0, 0xe1, 0x2b, 0x29, 0xe9, 0x9e, 0x8c, - 0x5a, 0xa2, 0xd2, 0xd4, 0x40, 0x3b, 0x90, 0x34, 0xfc, 0xb7, 0x45, 0x18, 0x30, 0x34, 0x69, 0xa6, - 0x59, 0x64, 0x3d, 0x60, 0x66, 0x51, 0xe1, 0x00, 0x66, 0xd1, 0xcf, 0x42, 0xb5, 0x26, 0xa5, 0x7c, - 0x3e, 0xb5, 0xa6, 0xd3, 0xba, 0x43, 0x0b, 0x7a, 0xd5, 0x84, 0x35, 0x4f, 0x34, 0x97, 0x48, 0x29, - 0x13, 0x1a, 0xa2, 0xc4, 0x34, 0x44, 0x56, 0xce, 0x97, 0xd0, 0x14, 0x9d, 0xcf, 0xa4, 0x0f, 0x72, - 0xcb, 0x3d, 0x04, 0x11, 0x7d, 0xd7, 0x52, 0x1f, 0xf7, 0x04, 0x6a, 0x87, 0xdc, 0x4e, 0xd6, 0x0e, - 0xb9, 0x94, 0xcb, 0x30, 0x77, 0x29, 0x1a, 0x72, 0x1d, 0xfa, 0x67, 0x82, 0x66, 0xd3, 0xf1, 0xeb, - 0xe8, 0xc7, 0xa0, 0xbf, 0xc6, 0x7f, 0x0a, 0x27, 0x13, 0x3b, 0xaa, 0x14, 0x50, 0x2c, 0x61, 0xe8, - 0x11, 0x28, 0x39, 0x61, 0x43, 0x3a, 0x96, 0x58, 0x48, 0xd1, 0x54, 0xd8, 0x88, 0x30, 0x6b, 0xb5, - 0xff, 0x7e, 0x09, 0xd8, 0x49, 0xbe, 0x13, 0x92, 0xfa, 0x6a, 0xc0, 0x6a, 0x5d, 0x1e, 0xeb, 0x01, - 0x9f, 0xde, 0x2c, 0x3d, 0xc8, 0x87, 0x7c, 0xc6, 0x41, 0x4f, 0xf1, 0x84, 0x0f, 0x7a, 0xba, 0x9c, - 0xdd, 0x95, 0x1e, 0xa0, 0xb3, 0x3b, 0xfb, 0x0b, 0x16, 0x20, 0x15, 0xfe, 0xa1, 0x0f, 0xd7, 0x27, - 0xa1, 0xaa, 0x02, 0x41, 0x84, 0x61, 0xa5, 0x45, 0x84, 0x04, 0x60, 0x8d, 0xd3, 0xc3, 0x0e, 0xf9, - 0x71, 0x29, 0xbf, 0x8b, 0xc9, 0x40, 0x69, 0x26, 0xf5, 0x85, 0x38, 0xb7, 0x7f, 0xa7, 0x00, 0x0f, - 0x71, 0x95, 0xbc, 0xe8, 0xf8, 0x4e, 0x83, 0x34, 0x69, 0xaf, 0x7a, 0x0d, 0x97, 0xa8, 0xd1, 0xad, - 0x99, 0x2b, 0x03, 0x9f, 0x8f, 0xba, 0x76, 0xf9, 0x9a, 0xe3, 0xab, 0x6c, 0xde, 0x77, 0x63, 0xcc, - 0x88, 0xa3, 0x08, 0x2a, 0xf2, 0x22, 0x06, 0x21, 0x8b, 0x73, 0x62, 0xa4, 0xc4, 0x92, 0xd0, 0x9b, - 0x04, 0x2b, 0x46, 0xd4, 0x70, 0xf5, 0x82, 0xda, 0x26, 0x26, 0xad, 0x80, 0xc9, 0x5d, 0x23, 0xee, - 0x74, 0x41, 0xb4, 0x63, 0x85, 0x61, 0x37, 0x61, 0x44, 0x8e, 0x61, 0xeb, 0x1a, 0xd9, 0xc1, 0x64, - 0x9d, 0xea, 0x9f, 0x9a, 0x6c, 0x32, 0xee, 0x86, 0x50, 0xfa, 0x67, 0xc6, 0x04, 0xe2, 0x24, 0xae, - 0xac, 0xea, 0x59, 0xc8, 0xae, 0xea, 0x69, 0xff, 0x8e, 0x05, 0x69, 0x05, 0x68, 0xd4, 0x30, 0xb4, - 0xf6, 0xac, 0x61, 0x78, 0x80, 0x2a, 0x80, 0x3f, 0x0d, 0x03, 0x4e, 0x4c, 0x6d, 0x16, 0xbe, 0xcb, - 0x2f, 0x1e, 0xee, 0x44, 0x67, 0x31, 0xa8, 0xbb, 0xeb, 0x2e, 0xdb, 0xdd, 0x9b, 0xe4, 0xec, 0xff, - 0x5e, 0x82, 0xd1, 0x8e, 0xac, 0x24, 0xf4, 0x3c, 0x0c, 0xaa, 0xa1, 0x90, 0xfe, 0xb3, 0xaa, 0x19, - 0x7b, 0xa8, 0x61, 0x38, 0x81, 0xd9, 0xc3, 0x7a, 0x98, 0x87, 0xd3, 0x21, 0x79, 0xb5, 0x4d, 0xda, - 0x64, 0x6a, 0x3d, 0x26, 0xe1, 0x0a, 0xa9, 0x05, 0x7e, 0x9d, 0x57, 0xda, 0x2c, 0x4e, 0x3f, 0x7c, - 0x77, 0x77, 0xfc, 0x34, 0xee, 0x04, 0xe3, 0xac, 0x67, 0x50, 0x0b, 0x86, 0x3c, 0xd3, 0xe4, 0x14, - 0xfb, 0x8d, 0x43, 0x59, 0xab, 0x6a, 0x4a, 0x24, 0x9a, 0x71, 0x92, 0x41, 0xd2, 0x6e, 0x2d, 0xdf, - 0x27, 0xbb, 0xf5, 0xd3, 0xda, 0x6e, 0xe5, 0xa1, 0x07, 0x1f, 0xce, 0x39, 0x2b, 0xed, 0xb8, 0x0d, - 0xd7, 0x17, 0xa1, 0x22, 0xc3, 0xb2, 0x7a, 0x0a, 0x67, 0x32, 0xe9, 0x74, 0x11, 0xa0, 0x4f, 0xc0, - 0x8f, 0x5e, 0x0a, 0x43, 0x63, 0x30, 0xaf, 0x07, 0xf1, 0x94, 0xe7, 0x05, 0x77, 0xa8, 0x4d, 0x70, - 0x23, 0x22, 0xc2, 0xa1, 0x63, 0xdf, 0x2b, 0x40, 0xc6, 0xde, 0x88, 0xae, 0x47, 0x6d, 0x88, 0x24, - 0xd6, 0xe3, 0xc1, 0x8c, 0x11, 0xb4, 0xcd, 0x43, 0xd7, 0xb8, 0xca, 0xfd, 0x50, 0xde, 0x7b, 0x3b, - 0x1d, 0xcd, 0xa6, 0xc4, 0x91, 0x8a, 0x68, 0xbb, 0x08, 0xa0, 0xed, 0x47, 0x91, 0x2a, 0xa1, 0x4e, - 0xc6, 0xb5, 0x99, 0x89, 0x0d, 0x2c, 0xba, 0xd5, 0x77, 0xfd, 0x28, 0x76, 0x3c, 0xef, 0x8a, 0xeb, - 0xc7, 0xc2, 0x67, 0xa9, 0x6c, 0x8b, 0x79, 0x0d, 0xc2, 0x26, 0xde, 0xf9, 0xf7, 0x18, 0xdf, 0xef, - 0x20, 0xdf, 0x7d, 0x03, 0xce, 0xcd, 0xb9, 0xb1, 0x4a, 0xf0, 0x51, 0xf3, 0x8d, 0x9a, 0x87, 0x2a, - 0x61, 0xcd, 0xea, 0x9a, 0xb0, 0x66, 0x24, 0xd8, 0x14, 0x92, 0xf9, 0x40, 0xe9, 0x04, 0x1b, 0xfb, - 0x79, 0x38, 0x33, 0xe7, 0xc6, 0x97, 0x5d, 0x8f, 0x1c, 0x90, 0x89, 0xfd, 0xdb, 0x7d, 0x30, 0x68, - 0xa6, 0xaa, 0x1e, 0x24, 0xe7, 0xee, 0x4b, 0xd4, 0x02, 0x14, 0x6f, 0xe7, 0xaa, 0x73, 0xc5, 0x5b, - 0x47, 0xce, 0x9b, 0xcd, 0x1e, 0x31, 0xc3, 0x08, 0xd4, 0x3c, 0xb1, 0xd9, 0x01, 0x74, 0x07, 0xca, - 0xeb, 0x2c, 0x01, 0xa4, 0x98, 0x47, 0xf0, 0x45, 0xd6, 0x88, 0xea, 0xe5, 0xc8, 0x53, 0x48, 0x38, - 0x3f, 0xaa, 0xb8, 0xc3, 0x64, 0x56, 0xa1, 0x11, 0x19, 0x2c, 0xf2, 0x09, 0x15, 0x46, 0x37, 0x95, - 0x50, 0x3e, 0x84, 0x4a, 0x48, 0x08, 0xe8, 0xbe, 0xfb, 0x24, 0xa0, 0x59, 0x32, 0x4f, 0xbc, 0xc1, - 0xcc, 0x4a, 0x91, 0xca, 0xd0, 0xcf, 0x06, 0xc1, 0x48, 0xe6, 0x49, 0x80, 0x71, 0x1a, 0x1f, 0x7d, - 0x42, 0x89, 0xf8, 0x4a, 0x1e, 0xee, 0x5e, 0x73, 0x46, 0x1f, 0xb7, 0x74, 0xff, 0x42, 0x01, 0x86, - 0xe7, 0xfc, 0xf6, 0xf2, 0xdc, 0x72, 0x7b, 0xcd, 0x73, 0x6b, 0xd7, 0xc8, 0x0e, 0x15, 0xe1, 0x9b, - 0x64, 0x67, 0x7e, 0x56, 0xac, 0x20, 0x35, 0x67, 0xae, 0xd1, 0x46, 0xcc, 0x61, 0x54, 0x18, 0xad, - 0xbb, 0x7e, 0x83, 0x84, 0xad, 0xd0, 0x15, 0x9e, 0x58, 0x43, 0x18, 0x5d, 0xd6, 0x20, 0x6c, 0xe2, - 0x51, 0xda, 0xc1, 0x1d, 0x9f, 0x84, 0x69, 0xfb, 0x7a, 0x89, 0x36, 0x62, 0x0e, 0xa3, 0x48, 0x71, - 0xd8, 0x8e, 0x62, 0x31, 0x19, 0x15, 0xd2, 0x2a, 0x6d, 0xc4, 0x1c, 0x46, 0x57, 0x7a, 0xd4, 0x5e, - 0x63, 0xb1, 0x2d, 0xa9, 0xbc, 0x89, 0x15, 0xde, 0x8c, 0x25, 0x9c, 0xa2, 0x6e, 0x92, 0x9d, 0x59, - 0xba, 0x19, 0x4f, 0x65, 0x76, 0x5d, 0xe3, 0xcd, 0x58, 0xc2, 0x59, 0x2d, 0xd0, 0xe4, 0x70, 0xfc, - 0xc0, 0xd5, 0x02, 0x4d, 0x76, 0xbf, 0xcb, 0xb6, 0xfe, 0x57, 0x2d, 0x18, 0x34, 0x23, 0xd2, 0x50, - 0x23, 0x65, 0x0b, 0x2f, 0x75, 0x94, 0x92, 0x7e, 0x5f, 0xd6, 0x35, 0x7e, 0x0d, 0x37, 0x0e, 0x5a, - 0xd1, 0xd3, 0xc4, 0x6f, 0xb8, 0x3e, 0x61, 0x81, 0x06, 0x3c, 0x92, 0x2d, 0x11, 0xee, 0x36, 0x13, - 0xd4, 0xc9, 0x21, 0x8c, 0x69, 0xfb, 0x16, 0x8c, 0x76, 0xa4, 0xf3, 0xf5, 0x60, 0x82, 0xec, 0x9b, - 0x4c, 0x6d, 0x63, 0x18, 0xa0, 0x84, 0x65, 0x3d, 0xaa, 0x19, 0x18, 0xe5, 0x0b, 0x89, 0x72, 0x5a, - 0xa9, 0x6d, 0x90, 0xa6, 0x4a, 0xd1, 0x64, 0x6e, 0xff, 0x9b, 0x69, 0x20, 0xee, 0xc4, 0xb7, 0xbf, - 0x68, 0xc1, 0x50, 0x22, 0xc3, 0x32, 0x27, 0x63, 0x89, 0xad, 0xb4, 0x80, 0x05, 0x48, 0xb2, 0x28, - 0xf1, 0x22, 0x53, 0xa6, 0x7a, 0xa5, 0x69, 0x10, 0x36, 0xf1, 0xec, 0xaf, 0x14, 0xa0, 0x22, 0x83, - 0x4c, 0x7a, 0xe8, 0xca, 0xe7, 0x2d, 0x18, 0x52, 0x47, 0x2d, 0xcc, 0x87, 0x57, 0xc8, 0x23, 0xe7, - 0x84, 0xf6, 0x40, 0x79, 0x01, 0xfc, 0xf5, 0x40, 0x5b, 0xee, 0xd8, 0x64, 0x86, 0x93, 0xbc, 0xd1, - 0x4d, 0x80, 0x68, 0x27, 0x8a, 0x49, 0xd3, 0xf0, 0x26, 0xda, 0xc6, 0x8a, 0x9b, 0xa8, 0x05, 0x21, - 0xa1, 0xeb, 0xeb, 0x7a, 0x50, 0x27, 0x2b, 0x0a, 0x53, 0x9b, 0x50, 0xba, 0x0d, 0x1b, 0x94, 0xec, - 0xbf, 0x5b, 0x80, 0x53, 0xe9, 0x2e, 0xa1, 0x0f, 0xc3, 0xa0, 0xe4, 0x6e, 0xec, 0x3a, 0x65, 0x64, - 0xcd, 0x20, 0x36, 0x60, 0xf7, 0x76, 0xc7, 0xc7, 0x3b, 0xaf, 0x84, 0x9c, 0x30, 0x51, 0x70, 0x82, - 0x18, 0x3f, 0xef, 0x12, 0x07, 0xb3, 0xd3, 0x3b, 0x53, 0xad, 0x96, 0x38, 0xb4, 0x32, 0xce, 0xbb, - 0x4c, 0x28, 0x4e, 0x61, 0xa3, 0x65, 0x38, 0x63, 0xb4, 0x5c, 0x27, 0x6e, 0x63, 0x63, 0x2d, 0x08, - 0xe5, 0x0e, 0xec, 0x11, 0x1d, 0xfb, 0xd6, 0x89, 0x83, 0x33, 0x9f, 0xa4, 0xda, 0xbe, 0xe6, 0xb4, - 0x9c, 0x9a, 0x1b, 0xef, 0x08, 0xf7, 0xa8, 0x92, 0x4d, 0x33, 0xa2, 0x1d, 0x2b, 0x0c, 0x7b, 0x11, - 0x4a, 0x3d, 0xce, 0xa0, 0x9e, 0x2c, 0xff, 0x17, 0xa1, 0x42, 0xc9, 0x49, 0xf3, 0x2e, 0x0f, 0x92, - 0x01, 0x54, 0xe4, 0x4d, 0x41, 0xc8, 0x86, 0xa2, 0xeb, 0xc8, 0x23, 0x45, 0xf5, 0x5a, 0xf3, 0x51, - 0xd4, 0x66, 0x9b, 0x69, 0x0a, 0x44, 0x8f, 0x43, 0x91, 0x6c, 0xb7, 0xd2, 0x67, 0x87, 0x97, 0xb6, - 0x5b, 0x6e, 0x48, 0x22, 0x8a, 0x44, 0xb6, 0x5b, 0xe8, 0x3c, 0x14, 0xdc, 0xba, 0x50, 0x52, 0x20, - 0x70, 0x0a, 0xf3, 0xb3, 0xb8, 0xe0, 0xd6, 0xed, 0x6d, 0xa8, 0xaa, 0xab, 0x89, 0xd0, 0xa6, 0x94, - 0xdd, 0x56, 0x1e, 0x51, 0x61, 0x92, 0x6e, 0x17, 0xa9, 0xdd, 0x06, 0xd0, 0xf9, 0x9c, 0x79, 0xc9, - 0x97, 0x0b, 0x50, 0xaa, 0x05, 0x22, 0x0d, 0xbe, 0xa2, 0xc9, 0x30, 0xa1, 0xcd, 0x20, 0xf6, 0x2d, - 0x18, 0xbe, 0xe6, 0x07, 0x77, 0xd8, 0xc5, 0x08, 0xac, 0x0e, 0x20, 0x25, 0xbc, 0x4e, 0x7f, 0xa4, - 0x4d, 0x04, 0x06, 0xc5, 0x1c, 0xa6, 0x2a, 0x94, 0x15, 0xba, 0x55, 0x28, 0xb3, 0x3f, 0x69, 0xc1, - 0xa0, 0x4a, 0x0c, 0x9b, 0xdb, 0xda, 0xa4, 0x74, 0x1b, 0x61, 0xd0, 0x6e, 0xa5, 0xe9, 0xb2, 0xcb, - 0xc3, 0x30, 0x87, 0x99, 0x19, 0x93, 0x85, 0x7d, 0x32, 0x26, 0x2f, 0x40, 0x69, 0xd3, 0xf5, 0xeb, - 0xe9, 0xdb, 0x70, 0xae, 0xb9, 0x7e, 0x1d, 0x33, 0x08, 0xed, 0xc2, 0x29, 0xd5, 0x05, 0xa9, 0x10, - 0x9e, 0x87, 0xc1, 0xb5, 0xb6, 0xeb, 0xd5, 0x65, 0x81, 0xc3, 0x94, 0x47, 0x65, 0xda, 0x80, 0xe1, - 0x04, 0x26, 0xdd, 0xd7, 0xad, 0xb9, 0xbe, 0x13, 0xee, 0x2c, 0x6b, 0x0d, 0xa4, 0x84, 0xd2, 0xb4, - 0x82, 0x60, 0x03, 0xcb, 0x7e, 0xbd, 0x08, 0xc3, 0xc9, 0xf4, 0xb8, 0x1e, 0xb6, 0x57, 0x8f, 0x43, - 0x99, 0x65, 0xcc, 0xa5, 0x3f, 0x2d, 0xaf, 0x09, 0xc8, 0x61, 0x28, 0x82, 0x3e, 0x5e, 0x06, 0x24, - 0x9f, 0x9b, 0xa4, 0x54, 0x27, 0x95, 0x1f, 0x86, 0x85, 0xdc, 0x89, 0xca, 0x23, 0x82, 0x15, 0xfa, - 0x8c, 0x05, 0xfd, 0x41, 0xcb, 0xac, 0x6c, 0xf5, 0xa1, 0x3c, 0x53, 0x07, 0x45, 0x3e, 0x91, 0xb0, - 0x88, 0xd5, 0xa7, 0x97, 0x9f, 0x43, 0xb2, 0x3e, 0xff, 0x5e, 0x18, 0x34, 0x31, 0xf7, 0x33, 0x8a, - 0x2b, 0xa6, 0x51, 0xfc, 0x79, 0x73, 0x52, 0x88, 0xe4, 0xc8, 0x1e, 0x96, 0xdb, 0x0d, 0x28, 0xd7, - 0x54, 0x5c, 0xc2, 0xa1, 0xca, 0xe2, 0xaa, 0xba, 0x1c, 0xec, 0x6c, 0x8a, 0x53, 0xb3, 0xbf, 0x6b, - 0x19, 0xf3, 0x03, 0x93, 0x68, 0xbe, 0x8e, 0x42, 0x28, 0x36, 0xb6, 0x36, 0x85, 0x29, 0x7a, 0x35, - 0xa7, 0xe1, 0x9d, 0xdb, 0xda, 0xd4, 0x73, 0xdc, 0x6c, 0xc5, 0x94, 0x59, 0x0f, 0xce, 0xc2, 0x44, - 0x0e, 0x6d, 0x71, 0xff, 0x1c, 0x5a, 0xfb, 0x8d, 0x02, 0x8c, 0x76, 0x4c, 0x2a, 0xf4, 0x1a, 0x94, - 0x43, 0xfa, 0x96, 0xe2, 0xf5, 0x16, 0x72, 0xcb, 0x7a, 0x8d, 0xe6, 0xeb, 0x5a, 0xef, 0x26, 0xdb, - 0x31, 0x67, 0x89, 0xae, 0x02, 0xd2, 0xd1, 0x33, 0xca, 0x53, 0xc9, 0x5f, 0xf9, 0xbc, 0x78, 0x14, - 0x4d, 0x75, 0x60, 0xe0, 0x8c, 0xa7, 0xd0, 0x0b, 0x69, 0x87, 0x67, 0x31, 0xe9, 0xce, 0xde, 0xcb, - 0x77, 0x69, 0xff, 0x93, 0x02, 0x0c, 0x25, 0x0a, 0x8d, 0x21, 0x0f, 0x2a, 0xc4, 0x63, 0x67, 0x0d, - 0x52, 0xd9, 0x1c, 0xb5, 0x6c, 0xb8, 0x52, 0x90, 0x97, 0x04, 0x5d, 0xac, 0x38, 0x3c, 0x18, 0x67, - 0xfe, 0xcf, 0xc3, 0xa0, 0xec, 0xd0, 0x87, 0x9c, 0xa6, 0x27, 0x06, 0x50, 0xcd, 0xd1, 0x4b, 0x06, - 0x0c, 0x27, 0x30, 0xed, 0xdf, 0x2d, 0xc2, 0x18, 0x3f, 0x9c, 0xa9, 0xab, 0x99, 0xb7, 0x28, 0xf7, - 0x5b, 0x7f, 0x49, 0x97, 0x03, 0xe4, 0x03, 0xb9, 0x76, 0xd4, 0x5b, 0x3a, 0xb2, 0x19, 0xf5, 0x14, - 0x30, 0xf6, 0xf5, 0x54, 0xc0, 0x18, 0x37, 0xbb, 0x1b, 0xc7, 0xd4, 0xa3, 0x1f, 0xac, 0x08, 0xb2, - 0xbf, 0x5d, 0x80, 0x91, 0xd4, 0x15, 0x28, 0xe8, 0xf5, 0x64, 0xd5, 0x6c, 0x2b, 0x0f, 0x9f, 0xfa, - 0x9e, 0xb7, 0x62, 0x1c, 0xac, 0x76, 0xf6, 0x7d, 0x5a, 0x2a, 0xf6, 0x1f, 0x16, 0x60, 0x38, 0x79, - 0x77, 0xcb, 0x03, 0x38, 0x52, 0xef, 0x82, 0x2a, 0xbb, 0x9e, 0x80, 0x5d, 0x69, 0xcb, 0x5d, 0xf2, - 0xbc, 0x12, 0xbc, 0x6c, 0xc4, 0x1a, 0xfe, 0x40, 0x94, 0x24, 0xb7, 0xff, 0x8e, 0x05, 0x67, 0xf9, - 0x5b, 0xa6, 0xe7, 0xe1, 0x5f, 0xce, 0x1a, 0xdd, 0x97, 0xf3, 0xed, 0x60, 0xaa, 0x8c, 0xe5, 0x7e, - 0xe3, 0xcb, 0xae, 0xd2, 0x14, 0xbd, 0x4d, 0x4e, 0x85, 0x07, 0xb0, 0xb3, 0x07, 0x9a, 0x0c, 0xf6, - 0x1f, 0x16, 0x41, 0xdf, 0x1e, 0x8a, 0x5c, 0x91, 0x06, 0x9a, 0x4b, 0x39, 0xcf, 0x95, 0x1d, 0xbf, - 0xa6, 0xef, 0x29, 0xad, 0xa4, 0xb2, 0x40, 0x7f, 0xc1, 0x82, 0x01, 0xd7, 0x77, 0x63, 0xd7, 0x61, - 0xdb, 0xe8, 0x7c, 0x6e, 0x36, 0x54, 0xec, 0xe6, 0x39, 0xe5, 0x20, 0x34, 0xcf, 0x71, 0x14, 0x33, - 0x6c, 0x72, 0x46, 0x1f, 0x15, 0x31, 0xdd, 0xc5, 0xdc, 0x12, 0x98, 0x2b, 0xa9, 0x40, 0xee, 0x16, - 0x35, 0xbc, 0xe2, 0x30, 0xa7, 0xbc, 0x7f, 0x4c, 0x49, 0xa9, 0xca, 0xd0, 0xfa, 0x1e, 0x77, 0xda, - 0x8c, 0x39, 0x23, 0x3b, 0x02, 0xd4, 0x39, 0x16, 0x07, 0x8c, 0x97, 0x9d, 0x84, 0xaa, 0xd3, 0x8e, - 0x83, 0x26, 0x1d, 0x26, 0x71, 0xd4, 0xa4, 0x23, 0x82, 0x25, 0x00, 0x6b, 0x1c, 0xfb, 0xf5, 0x32, - 0xa4, 0xf2, 0x32, 0xd1, 0xb6, 0x79, 0xf3, 0xad, 0x95, 0xef, 0xcd, 0xb7, 0xaa, 0x33, 0x59, 0xb7, - 0xdf, 0xa2, 0x06, 0x94, 0x5b, 0x1b, 0x4e, 0x24, 0xcd, 0xea, 0x17, 0xd5, 0x3e, 0x8e, 0x36, 0xde, - 0xdb, 0x1d, 0xff, 0xa9, 0xde, 0xbc, 0xae, 0x74, 0xae, 0x4e, 0xf2, 0x5a, 0x32, 0x9a, 0x35, 0xa3, - 0x81, 0x39, 0xfd, 0x83, 0xdc, 0xed, 0xf8, 0x29, 0x71, 0x0f, 0x03, 0x26, 0x51, 0xdb, 0x8b, 0xc5, - 0x6c, 0x78, 0x31, 0xc7, 0x55, 0xc6, 0x09, 0xeb, 0x8a, 0x02, 0xfc, 0x3f, 0x36, 0x98, 0xa2, 0x0f, - 0x43, 0x35, 0x8a, 0x9d, 0x30, 0x3e, 0x64, 0x0e, 0xb0, 0x1a, 0xf4, 0x15, 0x49, 0x04, 0x6b, 0x7a, - 0xe8, 0x25, 0x56, 0xdd, 0xd8, 0x8d, 0x36, 0x0e, 0x99, 0x8a, 0x21, 0x2b, 0x21, 0x0b, 0x0a, 0xd8, - 0xa0, 0x86, 0x2e, 0x02, 0xb0, 0xb9, 0xcd, 0xe3, 0x0f, 0x2b, 0xcc, 0xcb, 0xa4, 0x44, 0x21, 0x56, - 0x10, 0x6c, 0x60, 0xd9, 0x3f, 0x0e, 0xc9, 0x92, 0x18, 0x68, 0x5c, 0x56, 0xe0, 0xe0, 0x5e, 0x68, - 0x96, 0x52, 0x91, 0x28, 0x96, 0xf1, 0x1b, 0x16, 0x98, 0x75, 0x3b, 0xd0, 0xab, 0xbc, 0x40, 0x88, - 0x95, 0xc7, 0xc9, 0xa1, 0x41, 0x77, 0x62, 0xd1, 0x69, 0xa5, 0x8e, 0xb0, 0x65, 0x95, 0x90, 0xf3, - 0xef, 0x81, 0x8a, 0x84, 0x1e, 0xc8, 0xa8, 0xfb, 0x04, 0x9c, 0x96, 0x79, 0x96, 0xd2, 0x6f, 0x2a, - 0x4e, 0x9d, 0xf6, 0x77, 0xfd, 0x48, 0x7f, 0x4e, 0xa1, 0x9b, 0x3f, 0xa7, 0x87, 0xfb, 0x8f, 0x7f, - 0xd3, 0x82, 0x0b, 0xe9, 0x0e, 0x44, 0x8b, 0x81, 0xef, 0xc6, 0x41, 0xb8, 0x42, 0xe2, 0xd8, 0xf5, - 0x1b, 0xac, 0x2e, 0xda, 0x1d, 0x27, 0x94, 0x65, 0xe7, 0x99, 0xa0, 0xbc, 0xe5, 0x84, 0x3e, 0x66, - 0xad, 0x68, 0x07, 0xfa, 0x78, 0x90, 0x9a, 0xb0, 0xd6, 0x8f, 0xb8, 0x36, 0x32, 0x86, 0x43, 0x6f, - 0x17, 0x78, 0x80, 0x1c, 0x16, 0x0c, 0xed, 0xef, 0x59, 0x80, 0x96, 0xb6, 0x48, 0x18, 0xba, 0x75, - 0x23, 0xac, 0x8e, 0xdd, 0x67, 0x64, 0xdc, 0x5b, 0x64, 0x66, 0x01, 0xa7, 0xee, 0x33, 0x32, 0xfe, - 0x65, 0xdf, 0x67, 0x54, 0x38, 0xd8, 0x7d, 0x46, 0x68, 0x09, 0xce, 0x36, 0xf9, 0x76, 0x83, 0xdf, - 0x11, 0xc2, 0xf7, 0x1e, 0x2a, 0xcf, 0xed, 0xdc, 0xdd, 0xdd, 0xf1, 0xb3, 0x8b, 0x59, 0x08, 0x38, - 0xfb, 0x39, 0xfb, 0x3d, 0x80, 0x78, 0x34, 0xdd, 0x4c, 0x56, 0xac, 0x52, 0x57, 0xf7, 0x8b, 0xfd, - 0xb5, 0x32, 0x8c, 0xa4, 0x8a, 0x12, 0xd3, 0xad, 0x5e, 0x67, 0x70, 0xd4, 0x91, 0xf5, 0x77, 0x67, - 0xf7, 0x7a, 0x0a, 0xb7, 0xf2, 0xa1, 0xec, 0xfa, 0xad, 0x76, 0x9c, 0x4f, 0x9a, 0x2d, 0xef, 0xc4, - 0x3c, 0x25, 0x68, 0xb8, 0x8b, 0xe9, 0x5f, 0xcc, 0xd9, 0xe4, 0x19, 0xbc, 0x95, 0x30, 0xc6, 0x4b, - 0xf7, 0xc9, 0x1d, 0xf0, 0x29, 0x1d, 0x4a, 0x55, 0xce, 0xc3, 0xb1, 0x98, 0x9a, 0x2c, 0xc7, 0x7d, - 0xd4, 0xfe, 0xad, 0x02, 0x0c, 0x18, 0x1f, 0x0d, 0xfd, 0x4a, 0xb2, 0xaa, 0x95, 0x95, 0xdf, 0x2b, - 0x31, 0xfa, 0x13, 0xba, 0x6e, 0x15, 0x7f, 0xa5, 0x27, 0x3a, 0x0b, 0x5a, 0xdd, 0xdb, 0x1d, 0x3f, - 0x95, 0x2a, 0x59, 0x95, 0x28, 0x72, 0x75, 0xfe, 0xe3, 0x30, 0x92, 0x22, 0x93, 0xf1, 0xca, 0xab, - 0xe6, 0x2b, 0x1f, 0xd9, 0x2d, 0x65, 0x0e, 0xd9, 0x9b, 0x74, 0xc8, 0x44, 0x76, 0x5f, 0xe0, 0x91, - 0x1e, 0x7c, 0xb0, 0xa9, 0x24, 0xde, 0x42, 0x8f, 0x49, 0xbc, 0x4f, 0x42, 0xa5, 0x15, 0x78, 0x6e, - 0xcd, 0x55, 0x45, 0x26, 0x59, 0xda, 0xf0, 0xb2, 0x68, 0xc3, 0x0a, 0x8a, 0xee, 0x40, 0xf5, 0xf6, - 0x9d, 0x98, 0x9f, 0xfe, 0x08, 0xff, 0x76, 0x5e, 0x87, 0x3e, 0xca, 0x68, 0x51, 0xc7, 0x4b, 0x58, - 0xf3, 0x42, 0x36, 0xf4, 0x31, 0x25, 0x28, 0x33, 0x12, 0x98, 0xef, 0x9d, 0x69, 0xc7, 0x08, 0x0b, - 0x88, 0xfd, 0xcd, 0x2a, 0x9c, 0xc9, 0xaa, 0x0c, 0x8f, 0x3e, 0x06, 0x7d, 0xbc, 0x8f, 0xf9, 0x5c, - 0x3e, 0x92, 0xc5, 0x63, 0x8e, 0x11, 0x14, 0xdd, 0x62, 0xbf, 0xb1, 0xe0, 0x29, 0xb8, 0x7b, 0xce, - 0x9a, 0x98, 0x21, 0xc7, 0xc3, 0x7d, 0xc1, 0xd1, 0xdc, 0x17, 0x1c, 0xce, 0xdd, 0x73, 0xd6, 0xd0, - 0x36, 0x94, 0x1b, 0x6e, 0x4c, 0x1c, 0xe1, 0x44, 0xb8, 0x75, 0x2c, 0xcc, 0x89, 0xc3, 0xad, 0x34, - 0xf6, 0x13, 0x73, 0x86, 0xe8, 0x1b, 0x16, 0x8c, 0xac, 0x25, 0xab, 0x07, 0x08, 0xe1, 0xe9, 0x1c, - 0x43, 0xf5, 0xff, 0x24, 0x23, 0x7e, 0xa1, 0x57, 0xaa, 0x11, 0xa7, 0xbb, 0x83, 0x3e, 0x6d, 0x41, - 0xff, 0xba, 0xeb, 0x19, 0x05, 0x98, 0x8f, 0xe1, 0xe3, 0x5c, 0x66, 0x0c, 0xf4, 0x8e, 0x83, 0xff, - 0x8f, 0xb0, 0xe4, 0xdc, 0x4d, 0x53, 0xf5, 0x1d, 0x55, 0x53, 0xf5, 0xdf, 0x27, 0x4d, 0xf5, 0x39, - 0x0b, 0xaa, 0x6a, 0xa4, 0x45, 0x16, 0xf6, 0x87, 0x8f, 0xf1, 0x93, 0x73, 0xcf, 0x89, 0xfa, 0x8b, - 0x35, 0x73, 0xf4, 0x65, 0x0b, 0x06, 0x9c, 0xd7, 0xda, 0x21, 0xa9, 0x93, 0xad, 0xa0, 0x15, 0x89, - 0xdb, 0x40, 0x5f, 0xce, 0xbf, 0x33, 0x53, 0x94, 0xc9, 0x2c, 0xd9, 0x5a, 0x6a, 0x45, 0x22, 0x5b, - 0x4a, 0x37, 0x60, 0xb3, 0x0b, 0xf6, 0x6e, 0x01, 0xc6, 0xf7, 0xa1, 0x80, 0x9e, 0x87, 0xc1, 0x20, - 0x6c, 0x38, 0xbe, 0xfb, 0x9a, 0x59, 0x0e, 0x44, 0x59, 0x59, 0x4b, 0x06, 0x0c, 0x27, 0x30, 0xcd, - 0x3c, 0xf1, 0xc2, 0x3e, 0x79, 0xe2, 0x17, 0xa0, 0x14, 0x92, 0x56, 0x90, 0xde, 0x2c, 0xb0, 0x4c, - 0x05, 0x06, 0x41, 0x8f, 0x42, 0xd1, 0x69, 0xb9, 0x22, 0x10, 0x4d, 0xed, 0x81, 0xa6, 0x96, 0xe7, - 0x31, 0x6d, 0x4f, 0x94, 0xad, 0x28, 0x9f, 0x48, 0xd9, 0x0a, 0xaa, 0x06, 0xc4, 0xd9, 0x45, 0x9f, - 0x56, 0x03, 0xc9, 0x33, 0x05, 0xfb, 0x8d, 0x22, 0x3c, 0xba, 0xe7, 0x7c, 0xd1, 0x71, 0x78, 0xd6, - 0x1e, 0x71, 0x78, 0x72, 0x78, 0x0a, 0xfb, 0x0d, 0x4f, 0xb1, 0xcb, 0xf0, 0x7c, 0x9a, 0x2e, 0x03, - 0x59, 0x46, 0x25, 0x9f, 0xfb, 0x1c, 0xbb, 0x55, 0x65, 0x11, 0x2b, 0x40, 0x42, 0xb1, 0xe6, 0x4b, - 0xf7, 0x00, 0x89, 0x1c, 0xe9, 0x72, 0x1e, 0x6a, 0xa0, 0x6b, 0x29, 0x13, 0x3e, 0xf7, 0xbb, 0x25, - 0x5e, 0xdb, 0xbf, 0x55, 0x82, 0xc7, 0x7b, 0x90, 0xde, 0xe6, 0x2c, 0xb6, 0x7a, 0x9c, 0xc5, 0x3f, - 0xe0, 0x9f, 0xe9, 0xb3, 0x99, 0x9f, 0x09, 0xe7, 0xff, 0x99, 0xf6, 0xfe, 0x42, 0xe8, 0x29, 0xa8, - 0xb8, 0x7e, 0x44, 0x6a, 0xed, 0x90, 0xc7, 0x24, 0x1b, 0x69, 0x4c, 0xf3, 0xa2, 0x1d, 0x2b, 0x0c, - 0xba, 0xa7, 0xab, 0x39, 0x74, 0xf9, 0xf7, 0xe7, 0x94, 0xbb, 0x6b, 0x66, 0x44, 0x71, 0x93, 0x62, - 0x66, 0x8a, 0x4a, 0x00, 0xce, 0xc6, 0xfe, 0x2b, 0x16, 0x9c, 0xef, 0xae, 0x62, 0xd1, 0x33, 0x30, - 0xb0, 0x16, 0x3a, 0x7e, 0x6d, 0x83, 0xdd, 0xe4, 0x2b, 0xa7, 0x0e, 0x7b, 0x5f, 0xdd, 0x8c, 0x4d, - 0x1c, 0x34, 0x03, 0xa3, 0x3c, 0x72, 0xc3, 0xc0, 0x90, 0x99, 0xbf, 0x77, 0x77, 0xc7, 0x47, 0x57, - 0xd3, 0x40, 0xdc, 0x89, 0x6f, 0x7f, 0xbf, 0x98, 0xdd, 0x2d, 0x6e, 0x8a, 0x1d, 0x64, 0x36, 0x8b, - 0xb9, 0x5a, 0xe8, 0x41, 0xe2, 0x16, 0x4f, 0x5a, 0xe2, 0x96, 0xba, 0x49, 0x5c, 0x34, 0x0b, 0xa7, - 0x8c, 0xab, 0x96, 0x78, 0x36, 0x37, 0x0f, 0x4b, 0x56, 0x25, 0x4e, 0x96, 0x53, 0x70, 0xdc, 0xf1, - 0xc4, 0x03, 0x3e, 0xf5, 0x7e, 0xb5, 0x00, 0xe7, 0xba, 0x5a, 0xbf, 0x27, 0xa4, 0x51, 0xcc, 0xcf, - 0x5f, 0x3a, 0x99, 0xcf, 0x6f, 0x7e, 0x94, 0xf2, 0x7e, 0x1f, 0xc5, 0xfe, 0xa3, 0x42, 0xd7, 0x85, - 0x40, 0x77, 0x42, 0x3f, 0xb4, 0xa3, 0xf4, 0x02, 0x0c, 0x39, 0xad, 0x16, 0xc7, 0x63, 0x51, 0xb4, - 0xa9, 0x92, 0x4a, 0x53, 0x26, 0x10, 0x27, 0x71, 0x7b, 0xb2, 0x69, 0xfe, 0xc4, 0x82, 0x2a, 0x26, - 0xeb, 0x5c, 0x1a, 0xa1, 0xdb, 0x62, 0x88, 0xac, 0x3c, 0x0a, 0xc1, 0xd2, 0x81, 0x8d, 0x5c, 0x56, - 0x20, 0x35, 0x6b, 0xb0, 0x3b, 0xaf, 0xde, 0x2a, 0x1c, 0xe8, 0xea, 0x2d, 0x75, 0xf9, 0x52, 0xb1, - 0xfb, 0xe5, 0x4b, 0xf6, 0x9b, 0xfd, 0xf4, 0xf5, 0x5a, 0xc1, 0x4c, 0x48, 0xea, 0x11, 0xfd, 0xbe, - 0xed, 0xd0, 0x13, 0x93, 0x44, 0x7d, 0xdf, 0x1b, 0x78, 0x01, 0xd3, 0xf6, 0xc4, 0x01, 0x59, 0xe1, - 0x40, 0x05, 0x65, 0x8a, 0xfb, 0x16, 0x94, 0x79, 0x01, 0x86, 0xa2, 0x68, 0x63, 0x39, 0x74, 0xb7, - 0x9c, 0x98, 0x5c, 0x23, 0x3b, 0xc2, 0xf6, 0xd5, 0x45, 0x20, 0x56, 0xae, 0x68, 0x20, 0x4e, 0xe2, - 0xa2, 0x39, 0x18, 0xd5, 0x65, 0x5d, 0x48, 0x18, 0xb3, 0x9c, 0x0b, 0x3e, 0x13, 0x54, 0xc6, 0xb7, - 0x2e, 0x04, 0x23, 0x10, 0x70, 0xe7, 0x33, 0x54, 0x9e, 0x26, 0x1a, 0x69, 0x47, 0xfa, 0x92, 0xf2, - 0x34, 0x41, 0x87, 0xf6, 0xa5, 0xe3, 0x09, 0xb4, 0x08, 0xa7, 0xf9, 0xc4, 0x98, 0x6a, 0xb5, 0x8c, - 0x37, 0xea, 0x4f, 0x16, 0xe0, 0x9c, 0xeb, 0x44, 0xc1, 0x59, 0xcf, 0xa1, 0xe7, 0x60, 0x40, 0x35, - 0xcf, 0xcf, 0x8a, 0xb3, 0x1d, 0xe5, 0x5b, 0x52, 0x64, 0xe6, 0xeb, 0xd8, 0xc4, 0x43, 0x1f, 0x82, - 0x87, 0xf5, 0x5f, 0x9e, 0x98, 0xc7, 0x0f, 0x3c, 0x67, 0x45, 0xc5, 0x2c, 0x75, 0xd5, 0xcf, 0x5c, - 0x26, 0x5a, 0x1d, 0x77, 0x7b, 0x1e, 0xad, 0xc1, 0x79, 0x05, 0xba, 0xe4, 0xc7, 0x2c, 0xcb, 0x26, - 0x22, 0xd3, 0x4e, 0x44, 0x6e, 0x84, 0x9e, 0xb8, 0x32, 0x5a, 0xdd, 0x06, 0x3b, 0xe7, 0xc6, 0x57, - 0xb2, 0x30, 0xf1, 0x02, 0xde, 0x83, 0x0a, 0x9a, 0x84, 0x2a, 0xf1, 0x9d, 0x35, 0x8f, 0x2c, 0xcd, - 0xcc, 0xb3, 0xca, 0x5b, 0xc6, 0xf9, 0xea, 0x25, 0x09, 0xc0, 0x1a, 0x47, 0xc5, 0xfd, 0x0e, 0x76, - 0xbd, 0x99, 0x78, 0x19, 0xce, 0x34, 0x6a, 0x2d, 0x6a, 0x11, 0xba, 0x35, 0x32, 0x55, 0x63, 0x61, - 0x8e, 0xf4, 0xc3, 0xf0, 0xca, 0xa8, 0x2a, 0xa8, 0x7d, 0x6e, 0x66, 0xb9, 0x03, 0x07, 0x67, 0x3e, - 0xc9, 0xc2, 0x61, 0xc3, 0x60, 0x7b, 0x67, 0xec, 0x74, 0x2a, 0x1c, 0x96, 0x36, 0x62, 0x0e, 0x43, - 0x57, 0x01, 0xb1, 0x0c, 0x89, 0x2b, 0x71, 0xdc, 0x52, 0x26, 0xe8, 0xd8, 0x19, 0xf6, 0x4a, 0x2a, - 0xb8, 0xef, 0x72, 0x07, 0x06, 0xce, 0x78, 0xca, 0xfe, 0x77, 0x16, 0x0c, 0xa9, 0xf5, 0x7a, 0x02, - 0x39, 0x42, 0x5e, 0x32, 0x47, 0x68, 0xee, 0xe8, 0x12, 0x8f, 0xf5, 0xbc, 0x4b, 0xa0, 0xf9, 0x67, - 0x07, 0x00, 0xb4, 0x54, 0x54, 0x0a, 0xc9, 0xea, 0xaa, 0x90, 0x1e, 0x58, 0x89, 0x94, 0x55, 0x66, - 0xa7, 0x7c, 0x7f, 0xcb, 0xec, 0xac, 0xc0, 0x59, 0x69, 0x2e, 0xf0, 0x13, 0xbc, 0x2b, 0x41, 0xa4, - 0x04, 0x5c, 0x65, 0xfa, 0x51, 0x41, 0xe8, 0xec, 0x7c, 0x16, 0x12, 0xce, 0x7e, 0x36, 0x61, 0xa5, - 0xf4, 0xef, 0x6b, 0x3a, 0xaa, 0x35, 0xbd, 0xb0, 0x2e, 0x2f, 0xce, 0x49, 0xad, 0xe9, 0x85, 0xcb, - 0x2b, 0x58, 0xe3, 0x64, 0x0b, 0xf6, 0x6a, 0x4e, 0x82, 0x1d, 0x0e, 0x2c, 0xd8, 0xa5, 0x88, 0x19, - 0xe8, 0x2a, 0x62, 0xe4, 0x49, 0xc1, 0x60, 0xd7, 0x93, 0x82, 0xf7, 0xc3, 0xb0, 0xeb, 0x6f, 0x90, - 0xd0, 0x8d, 0x49, 0x9d, 0xad, 0x05, 0x26, 0x7e, 0x2a, 0x5a, 0xad, 0xcf, 0x27, 0xa0, 0x38, 0x85, - 0x9d, 0x94, 0x8b, 0xc3, 0x3d, 0xc8, 0xc5, 0x2e, 0xda, 0x68, 0x24, 0x1f, 0x6d, 0x74, 0xea, 0xe8, - 0xda, 0x68, 0xf4, 0x58, 0xb5, 0x11, 0xca, 0x45, 0x1b, 0xf5, 0x24, 0xe8, 0x8d, 0xed, 0xe6, 0x99, - 0x7d, 0xb6, 0x9b, 0xdd, 0x54, 0xd1, 0xd9, 0x43, 0xab, 0xa2, 0x6c, 0x2d, 0xf3, 0xd0, 0xa1, 0xb4, - 0xcc, 0xe7, 0x0a, 0x70, 0x56, 0xcb, 0x61, 0x3a, 0xfb, 0xdd, 0x75, 0x2a, 0x89, 0xd8, 0xdd, 0x6b, - 0xfc, 0x34, 0xcd, 0x48, 0x59, 0xd3, 0xd9, 0x6f, 0x0a, 0x82, 0x0d, 0x2c, 0x96, 0xf9, 0x45, 0x42, - 0x56, 0xff, 0x39, 0x2d, 0xa4, 0x67, 0x44, 0x3b, 0x56, 0x18, 0x74, 0x7e, 0xd1, 0xdf, 0x22, 0x9b, - 0x36, 0x5d, 0x59, 0x70, 0x46, 0x83, 0xb0, 0x89, 0x87, 0x9e, 0xe4, 0x4c, 0x98, 0x80, 0xa0, 0x82, - 0x7a, 0x50, 0xdc, 0x57, 0x2d, 0x65, 0x82, 0x82, 0xca, 0xee, 0xb0, 0x14, 0xbf, 0x72, 0x67, 0x77, - 0x58, 0x60, 0x9a, 0xc2, 0xb0, 0xff, 0x87, 0x05, 0xe7, 0x32, 0x87, 0xe2, 0x04, 0x94, 0xef, 0x76, - 0x52, 0xf9, 0xae, 0xe4, 0xb5, 0xdd, 0x30, 0xde, 0xa2, 0x8b, 0x22, 0xfe, 0x37, 0x16, 0x0c, 0x6b, - 0xfc, 0x13, 0x78, 0x55, 0x37, 0xf9, 0xaa, 0xf9, 0xed, 0xac, 0xaa, 0x1d, 0xef, 0xf6, 0xbb, 0x05, - 0x50, 0xd5, 0x3e, 0xa7, 0x6a, 0xb2, 0x96, 0xf2, 0x3e, 0xe7, 0xbb, 0x3b, 0xd0, 0xc7, 0x8e, 0xa7, - 0xa3, 0x7c, 0x42, 0x6f, 0x92, 0xfc, 0xd9, 0x51, 0xb7, 0x3e, 0xfa, 0x67, 0x7f, 0x23, 0x2c, 0x18, - 0xb2, 0xea, 0xe4, 0x6e, 0x44, 0xa5, 0x79, 0x5d, 0x24, 0xcb, 0xe9, 0xea, 0xe4, 0xa2, 0x1d, 0x2b, - 0x0c, 0xaa, 0x1e, 0xdc, 0x5a, 0xe0, 0xcf, 0x78, 0x4e, 0x24, 0xef, 0x42, 0x55, 0xea, 0x61, 0x5e, - 0x02, 0xb0, 0xc6, 0x61, 0x27, 0xd7, 0x6e, 0xd4, 0xf2, 0x9c, 0x1d, 0x63, 0xff, 0x6c, 0x54, 0x8d, - 0x50, 0x20, 0x6c, 0xe2, 0xd9, 0x4d, 0x18, 0x4b, 0xbe, 0xc4, 0x2c, 0x59, 0x67, 0x61, 0xa3, 0x3d, - 0x0d, 0xe7, 0x24, 0x54, 0x1d, 0xf6, 0xd4, 0x42, 0xdb, 0x11, 0x32, 0x41, 0x07, 0x4f, 0x4a, 0x00, - 0xd6, 0x38, 0xf6, 0xaf, 0x5b, 0x70, 0x3a, 0x63, 0xd0, 0x72, 0x4c, 0x46, 0x8c, 0xb5, 0xb4, 0xc9, - 0x52, 0xec, 0xef, 0x84, 0xfe, 0x3a, 0x59, 0x77, 0x64, 0x60, 0xa2, 0x21, 0xdb, 0x67, 0x79, 0x33, - 0x96, 0x70, 0xfb, 0xbf, 0x5a, 0x30, 0x92, 0xec, 0x6b, 0xc4, 0x12, 0x7c, 0xf8, 0x30, 0xb9, 0x51, - 0x2d, 0xd8, 0x22, 0xe1, 0x0e, 0x7d, 0x73, 0x2b, 0x95, 0xe0, 0xd3, 0x81, 0x81, 0x33, 0x9e, 0x62, - 0xb5, 0x7e, 0xeb, 0x6a, 0xb4, 0xe5, 0x8c, 0xbc, 0x99, 0xe7, 0x8c, 0xd4, 0x1f, 0xd3, 0x0c, 0x62, - 0x50, 0x2c, 0xb1, 0xc9, 0xdf, 0xfe, 0x5e, 0x09, 0x54, 0xb6, 0x32, 0x8b, 0x0a, 0xcb, 0x29, 0xa6, - 0xee, 0xa0, 0x79, 0x5d, 0x6a, 0x32, 0x94, 0xf6, 0x0a, 0xd3, 0xe0, 0x5e, 0x12, 0xd3, 0x55, 0xaa, - 0xde, 0x70, 0x55, 0x83, 0xb0, 0x89, 0x47, 0x7b, 0xe2, 0xb9, 0x5b, 0x84, 0x3f, 0xd4, 0x97, 0xec, - 0xc9, 0x82, 0x04, 0x60, 0x8d, 0x43, 0x7b, 0x52, 0x77, 0xd7, 0xd7, 0xc5, 0x96, 0x5f, 0xf5, 0x84, - 0x8e, 0x0e, 0x66, 0x10, 0x5e, 0xbe, 0x3d, 0xd8, 0x14, 0x56, 0xb0, 0x51, 0xbe, 0x3d, 0xd8, 0xc4, - 0x0c, 0x42, 0xed, 0x36, 0x3f, 0x08, 0x9b, 0x8e, 0xe7, 0xbe, 0x46, 0xea, 0x8a, 0x8b, 0xb0, 0x7e, - 0x95, 0xdd, 0x76, 0xbd, 0x13, 0x05, 0x67, 0x3d, 0x47, 0x67, 0x60, 0x2b, 0x24, 0x75, 0xb7, 0x16, - 0x9b, 0xd4, 0x20, 0x39, 0x03, 0x97, 0x3b, 0x30, 0x70, 0xc6, 0x53, 0x68, 0x0a, 0x46, 0x64, 0xb6, - 0xb9, 0xac, 0x25, 0x34, 0x90, 0xac, 0x5d, 0x82, 0x93, 0x60, 0x9c, 0xc6, 0xa7, 0x52, 0xad, 0x29, - 0xca, 0x8d, 0x31, 0x63, 0xd9, 0x90, 0x6a, 0xb2, 0x0c, 0x19, 0x56, 0x18, 0xf6, 0xa7, 0x8a, 0x54, - 0x0b, 0x77, 0xa9, 0xea, 0x77, 0x62, 0x31, 0x9c, 0xc9, 0x19, 0x59, 0xea, 0x61, 0x46, 0x3e, 0x0b, - 0x83, 0xb7, 0xa3, 0xc0, 0x57, 0xf1, 0x91, 0xe5, 0xae, 0xf1, 0x91, 0x06, 0x56, 0x76, 0x7c, 0x64, - 0x5f, 0x5e, 0xf1, 0x91, 0xfd, 0x87, 0x8c, 0x8f, 0xfc, 0xbd, 0x32, 0xa8, 0x3b, 0x6d, 0xae, 0x93, - 0xf8, 0x4e, 0x10, 0x6e, 0xba, 0x7e, 0x83, 0x65, 0xe9, 0x7f, 0xc3, 0x82, 0x41, 0xbe, 0x5e, 0x16, - 0xcc, 0xfc, 0xb6, 0xf5, 0x9c, 0x2e, 0x4b, 0x49, 0x30, 0x9b, 0x58, 0x35, 0x18, 0xa5, 0xee, 0xbb, - 0x35, 0x41, 0x38, 0xd1, 0x23, 0xf4, 0x71, 0x00, 0xe9, 0x1f, 0x5d, 0x97, 0x22, 0x73, 0x3e, 0x9f, - 0xfe, 0x61, 0xb2, 0xae, 0x6d, 0xe0, 0x55, 0xc5, 0x04, 0x1b, 0x0c, 0xd1, 0xe7, 0x74, 0xee, 0x1f, - 0x4f, 0xa4, 0xf8, 0xe8, 0xb1, 0x8c, 0x4d, 0x2f, 0x99, 0x7f, 0x18, 0xfa, 0x5d, 0xbf, 0x41, 0xe7, - 0x89, 0x88, 0x23, 0x7b, 0x47, 0x56, 0x85, 0x8b, 0x85, 0xc0, 0xa9, 0x4f, 0x3b, 0x9e, 0xe3, 0xd7, - 0x48, 0x38, 0xcf, 0xd1, 0xcd, 0x0b, 0xe8, 0x59, 0x03, 0x96, 0x84, 0x3a, 0x6e, 0x03, 0x2a, 0xf7, - 0x72, 0x1b, 0xd0, 0xf9, 0x0f, 0xc0, 0x68, 0xc7, 0xc7, 0x3c, 0x50, 0xa2, 0xdf, 0xe1, 0x73, 0x04, - 0xed, 0xdf, 0xea, 0xd3, 0x4a, 0xeb, 0x7a, 0x50, 0xe7, 0x77, 0xd2, 0x84, 0xfa, 0x8b, 0x0a, 0x1b, - 0x37, 0xc7, 0x29, 0x62, 0x5c, 0x62, 0xaf, 0x1a, 0xb1, 0xc9, 0x92, 0xce, 0xd1, 0x96, 0x13, 0x12, - 0xff, 0xb8, 0xe7, 0xe8, 0xb2, 0x62, 0x82, 0x0d, 0x86, 0x68, 0x23, 0x91, 0xe9, 0x73, 0xf9, 0xe8, - 0x99, 0x3e, 0xac, 0xf6, 0x57, 0xd6, 0xd5, 0x0d, 0x5f, 0xb6, 0x60, 0xd8, 0x4f, 0xcc, 0xdc, 0x7c, - 0x82, 0x7b, 0xb3, 0x57, 0x05, 0xbf, 0x12, 0x2d, 0xd9, 0x86, 0x53, 0xfc, 0xb3, 0x54, 0x5a, 0xf9, - 0x80, 0x2a, 0x4d, 0x5f, 0x6e, 0xd5, 0xd7, 0xed, 0x72, 0x2b, 0xe4, 0xab, 0xdb, 0xfd, 0xfa, 0x73, - 0xbf, 0xdd, 0x0f, 0x32, 0x6e, 0xf6, 0xbb, 0x05, 0xd5, 0x5a, 0x48, 0x9c, 0xf8, 0x90, 0x17, 0xbd, - 0xb1, 0xb0, 0x89, 0x19, 0x49, 0x00, 0x6b, 0x5a, 0xf6, 0xff, 0x29, 0xc1, 0x29, 0x39, 0x22, 0x32, - 0x31, 0x80, 0xea, 0x47, 0xce, 0x57, 0x1b, 0xb7, 0x4a, 0x3f, 0x5e, 0x91, 0x00, 0xac, 0x71, 0xa8, - 0x3d, 0xd6, 0x8e, 0xc8, 0x52, 0x8b, 0xf8, 0x0b, 0xee, 0x5a, 0x24, 0xce, 0x39, 0xd5, 0x42, 0xb9, - 0xa1, 0x41, 0xd8, 0xc4, 0xa3, 0xc6, 0x38, 0xb7, 0x8b, 0xa3, 0x74, 0x52, 0x91, 0xb0, 0xb7, 0xb1, - 0x84, 0xa3, 0x5f, 0xca, 0x2c, 0x33, 0x9c, 0x4f, 0x3a, 0x5d, 0x47, 0x3e, 0xc4, 0x01, 0xef, 0x06, - 0xfd, 0x9b, 0x16, 0x9c, 0xe5, 0xad, 0x72, 0x24, 0x6f, 0xb4, 0xea, 0x4e, 0x4c, 0xa2, 0x7c, 0xca, - 0xfe, 0x67, 0xf4, 0x4f, 0x3b, 0x79, 0xb3, 0xd8, 0xe2, 0xec, 0xde, 0xa0, 0xd7, 0x2d, 0x18, 0xd9, - 0x4c, 0x54, 0x62, 0x91, 0xaa, 0xe3, 0xa8, 0x45, 0x12, 0x12, 0x44, 0xf5, 0x52, 0x4b, 0xb6, 0x47, - 0x38, 0xcd, 0xdd, 0xfe, 0x6f, 0x16, 0x98, 0x62, 0xf4, 0xe4, 0x0b, 0xb8, 0x1c, 0xdc, 0x14, 0x94, - 0xd6, 0x65, 0xb9, 0xab, 0x75, 0xf9, 0x28, 0x14, 0xdb, 0x6e, 0x5d, 0xec, 0x2f, 0xf4, 0xe9, 0xeb, - 0xfc, 0x2c, 0xa6, 0xed, 0xf6, 0x3f, 0x2a, 0x6b, 0xbf, 0x85, 0xc8, 0x56, 0xfb, 0xa1, 0x78, 0xed, - 0x75, 0x55, 0x02, 0x8e, 0xbf, 0xf9, 0xf5, 0x8e, 0x12, 0x70, 0x3f, 0x79, 0xf0, 0x64, 0x44, 0x3e, - 0x40, 0xdd, 0x2a, 0xc0, 0xf5, 0xef, 0x93, 0x89, 0x78, 0x1b, 0x2a, 0x74, 0x0b, 0xc6, 0x1c, 0x90, - 0x95, 0x44, 0xa7, 0x2a, 0x57, 0x44, 0xfb, 0xbd, 0xdd, 0xf1, 0xf7, 0x1e, 0xbc, 0x5b, 0xf2, 0x69, - 0xac, 0xe8, 0xa3, 0x08, 0xaa, 0xf4, 0x37, 0x4b, 0x9a, 0x14, 0x9b, 0xbb, 0x1b, 0x4a, 0x66, 0x4a, - 0x40, 0x2e, 0x19, 0x99, 0x9a, 0x0f, 0xf2, 0xa1, 0xca, 0xae, 0x51, 0x66, 0x4c, 0xf9, 0x1e, 0x70, - 0x59, 0xa5, 0x2e, 0x4a, 0xc0, 0xbd, 0xdd, 0xf1, 0x17, 0x0e, 0xce, 0x54, 0x3d, 0x8e, 0x35, 0x0b, - 0xfb, 0x2b, 0x25, 0x3d, 0x77, 0x45, 0xe5, 0xbf, 0x1f, 0x8a, 0xb9, 0xfb, 0x7c, 0x6a, 0xee, 0x5e, - 0xe8, 0x98, 0xbb, 0xc3, 0xfa, 0xba, 0xdf, 0xc4, 0x6c, 0x3c, 0x69, 0x43, 0x60, 0x7f, 0x7f, 0x03, - 0xb3, 0x80, 0x5e, 0x6d, 0xbb, 0x21, 0x89, 0x96, 0xc3, 0xb6, 0xef, 0xfa, 0x0d, 0x36, 0x1d, 0x2b, - 0xa6, 0x05, 0x94, 0x00, 0xe3, 0x34, 0x3e, 0xdd, 0xd4, 0xd3, 0x6f, 0x7e, 0xcb, 0xd9, 0xe2, 0xb3, - 0xca, 0x28, 0x86, 0xb6, 0x22, 0xda, 0xb1, 0xc2, 0xb0, 0xdf, 0x64, 0x67, 0xd9, 0x46, 0xb6, 0x36, - 0x9d, 0x13, 0x1e, 0xbb, 0xb7, 0x9a, 0x57, 0x52, 0x53, 0x73, 0x82, 0x5f, 0x56, 0xcd, 0x61, 0xe8, - 0x0e, 0xf4, 0xaf, 0xf1, 0x8b, 0x1b, 0xf3, 0x29, 0x66, 0x2f, 0x6e, 0x81, 0x64, 0x57, 0xe2, 0xc8, - 0x2b, 0x21, 0xef, 0xe9, 0x9f, 0x58, 0x72, 0xb3, 0xbf, 0x53, 0x86, 0x91, 0xd4, 0xcd, 0xc6, 0x89, - 0x1a, 0xb6, 0x85, 0x7d, 0x6b, 0xd8, 0x7e, 0x04, 0xa0, 0x4e, 0x5a, 0x5e, 0xb0, 0xc3, 0xcc, 0xb1, - 0xd2, 0x81, 0xcd, 0x31, 0x65, 0xc1, 0xcf, 0x2a, 0x2a, 0xd8, 0xa0, 0x28, 0xca, 0xc7, 0xf1, 0x92, - 0xb8, 0xa9, 0xf2, 0x71, 0xc6, 0x95, 0x17, 0x7d, 0x27, 0x7b, 0xe5, 0x85, 0x0b, 0x23, 0xbc, 0x8b, - 0x2a, 0x27, 0xfa, 0x10, 0xa9, 0xcf, 0x2c, 0xab, 0x64, 0x36, 0x49, 0x06, 0xa7, 0xe9, 0xde, 0xcf, - 0x8b, 0xcb, 0xd1, 0xbb, 0xa0, 0x2a, 0xbf, 0x73, 0x34, 0x56, 0xd5, 0x75, 0x25, 0xe4, 0x34, 0x60, - 0x17, 0x8a, 0x8b, 0x9f, 0x1d, 0xe5, 0x1d, 0xe0, 0x7e, 0x95, 0x77, 0xb0, 0xbf, 0x54, 0xa0, 0x76, - 0x3c, 0xef, 0x97, 0xaa, 0x54, 0xf4, 0x04, 0xf4, 0x39, 0xed, 0x78, 0x23, 0xe8, 0xb8, 0xfa, 0x71, - 0x8a, 0xb5, 0x62, 0x01, 0x45, 0x0b, 0x50, 0xaa, 0xeb, 0xea, 0x33, 0x07, 0xf9, 0x9e, 0xda, 0x25, - 0xea, 0xc4, 0x04, 0x33, 0x2a, 0xe8, 0x11, 0x28, 0xc5, 0x4e, 0x43, 0x26, 0xc2, 0xb1, 0xe4, 0xe7, - 0x55, 0xa7, 0x11, 0x61, 0xd6, 0x6a, 0xaa, 0xef, 0xd2, 0x3e, 0xea, 0xfb, 0x05, 0x18, 0x8a, 0xdc, - 0x86, 0xef, 0xc4, 0xed, 0x90, 0x18, 0xc7, 0x7c, 0x3a, 0x72, 0xc3, 0x04, 0xe2, 0x24, 0xae, 0xfd, - 0xdb, 0x83, 0x70, 0x66, 0x65, 0x66, 0x51, 0xd6, 0x54, 0x3f, 0xb6, 0x5c, 0xb6, 0x2c, 0x1e, 0x27, - 0x97, 0xcb, 0xd6, 0x85, 0xbb, 0x67, 0xe4, 0xb2, 0x79, 0x46, 0x2e, 0x5b, 0x32, 0xb1, 0xa8, 0x98, - 0x47, 0x62, 0x51, 0x56, 0x0f, 0x7a, 0x49, 0x2c, 0x3a, 0xb6, 0xe4, 0xb6, 0x3d, 0x3b, 0x74, 0xa0, - 0xe4, 0x36, 0x95, 0xf9, 0x97, 0x4b, 0xca, 0x47, 0x97, 0x4f, 0x95, 0x99, 0xf9, 0xa7, 0xb2, 0xae, - 0x78, 0x3a, 0x93, 0x10, 0xf5, 0x2f, 0xe7, 0xdf, 0x81, 0x1e, 0xb2, 0xae, 0x44, 0x46, 0x95, 0x99, - 0xe9, 0xd7, 0x9f, 0x47, 0xa6, 0x5f, 0x56, 0x77, 0xf6, 0xcd, 0xf4, 0x7b, 0x01, 0x86, 0x6a, 0x5e, - 0xe0, 0x93, 0xe5, 0x30, 0x88, 0x83, 0x5a, 0xe0, 0x09, 0xb3, 0x5e, 0xdf, 0xf1, 0x62, 0x02, 0x71, - 0x12, 0xb7, 0x5b, 0x9a, 0x60, 0xf5, 0xa8, 0x69, 0x82, 0x70, 0x9f, 0xd2, 0x04, 0x7f, 0x5e, 0x27, - 0xb4, 0x0f, 0xb0, 0x2f, 0xf2, 0x91, 0xfc, 0xbf, 0x48, 0x2f, 0x59, 0xed, 0xe8, 0x0d, 0x7e, 0xf7, - 0x22, 0x35, 0x8c, 0x67, 0x82, 0x26, 0x35, 0xfc, 0x06, 0xd9, 0x90, 0xbc, 0x72, 0x0c, 0x13, 0xf6, - 0xd6, 0x8a, 0x66, 0xa3, 0xee, 0x63, 0xd4, 0x4d, 0x38, 0xd9, 0x91, 0xa3, 0x24, 0xdc, 0x7f, 0xad, - 0x00, 0x3f, 0xb2, 0x6f, 0x17, 0xd0, 0x1d, 0x80, 0xd8, 0x69, 0x88, 0x89, 0x2a, 0x0e, 0x4c, 0x8e, - 0x18, 0x5e, 0xb9, 0x2a, 0xe9, 0xf1, 0x4a, 0x31, 0xea, 0x2f, 0x3b, 0x8a, 0x90, 0xbf, 0x59, 0x54, - 0x65, 0xe0, 0x75, 0x14, 0xd4, 0xc4, 0x81, 0x47, 0x30, 0x83, 0x50, 0xf5, 0x1f, 0x92, 0x86, 0xbe, - 0xb8, 0x5c, 0x7d, 0x3e, 0xcc, 0x5a, 0xb1, 0x80, 0xa2, 0xe7, 0x60, 0xc0, 0xf1, 0x3c, 0x9e, 0x8f, - 0x43, 0x22, 0x71, 0xf9, 0x92, 0xae, 0xec, 0xa7, 0x41, 0xd8, 0xc4, 0xb3, 0xff, 0xbc, 0x00, 0xe3, - 0xfb, 0xc8, 0x94, 0x8e, 0x3c, 0xcc, 0x72, 0xcf, 0x79, 0x98, 0x22, 0x47, 0xa1, 0xaf, 0x4b, 0x8e, - 0xc2, 0x73, 0x30, 0x10, 0x13, 0xa7, 0x29, 0x02, 0xb2, 0x84, 0x27, 0x40, 0x9f, 0x00, 0x6b, 0x10, - 0x36, 0xf1, 0xa8, 0x14, 0x1b, 0x76, 0x6a, 0x35, 0x12, 0x45, 0x32, 0x09, 0x41, 0x78, 0x53, 0x73, - 0xcb, 0x70, 0x60, 0x4e, 0xea, 0xa9, 0x04, 0x0b, 0x9c, 0x62, 0x99, 0x1e, 0xf0, 0x6a, 0x8f, 0x03, - 0xfe, 0xcd, 0x02, 0x3c, 0xba, 0xa7, 0x76, 0xeb, 0x39, 0x3f, 0xa4, 0x1d, 0x91, 0x30, 0x3d, 0x71, - 0x6e, 0x44, 0x24, 0xc4, 0x0c, 0xc2, 0x47, 0xa9, 0xd5, 0x32, 0x2e, 0x86, 0xcf, 0x3b, 0x59, 0x8a, - 0x8f, 0x52, 0x82, 0x05, 0x4e, 0xb1, 0x3c, 0xec, 0xb4, 0xfc, 0x4e, 0x09, 0x1e, 0xef, 0xc1, 0x06, - 0xc8, 0x31, 0xa9, 0x2c, 0x99, 0x00, 0x59, 0xbc, 0x4f, 0x09, 0x90, 0x87, 0x1b, 0xae, 0xb7, 0xf2, - 0x26, 0x7b, 0x4a, 0x5e, 0x7b, 0xb3, 0x00, 0xe7, 0xbb, 0x1b, 0x2c, 0xe8, 0x7d, 0x30, 0x12, 0xaa, - 0x58, 0x35, 0x33, 0x77, 0xf2, 0x34, 0xf7, 0xb7, 0x24, 0x40, 0x38, 0x8d, 0x8b, 0x26, 0x00, 0x5a, - 0x4e, 0xbc, 0x11, 0x5d, 0xda, 0x76, 0xa3, 0x58, 0x54, 0x50, 0x1a, 0xe6, 0x27, 0x7c, 0xb2, 0x15, - 0x1b, 0x18, 0x94, 0x1d, 0xfb, 0x37, 0x1b, 0x5c, 0x0f, 0x62, 0xfe, 0x10, 0xdf, 0x6c, 0x9d, 0x96, - 0xf7, 0xcd, 0x18, 0x20, 0x9c, 0xc6, 0xa5, 0xec, 0xd8, 0x19, 0x32, 0xef, 0x28, 0xdf, 0x85, 0x31, - 0x76, 0x0b, 0xaa, 0x15, 0x1b, 0x18, 0xe9, 0xac, 0xd0, 0xf2, 0xfe, 0x59, 0xa1, 0xf6, 0x3f, 0x2c, - 0xc0, 0xb9, 0xae, 0x06, 0x6f, 0x6f, 0x62, 0xea, 0xc1, 0xcb, 0xe4, 0x3c, 0xe4, 0x0a, 0x3b, 0x58, - 0x06, 0xe0, 0x9f, 0x74, 0x99, 0x69, 0x22, 0x03, 0xf0, 0xf0, 0x85, 0x0d, 0x1e, 0xbc, 0xf1, 0xec, - 0x48, 0xfa, 0x2b, 0x1d, 0x20, 0xe9, 0x2f, 0xf5, 0x31, 0xca, 0x3d, 0x6a, 0x87, 0x3f, 0x2b, 0x75, - 0x1d, 0x5e, 0xba, 0x41, 0xee, 0xc9, 0x9b, 0x3d, 0x0b, 0xa7, 0x5c, 0x9f, 0xdd, 0x3d, 0xb6, 0xd2, - 0x5e, 0x13, 0x45, 0x75, 0x78, 0xe5, 0x48, 0x95, 0x84, 0x30, 0x9f, 0x82, 0xe3, 0x8e, 0x27, 0x1e, - 0xc0, 0x24, 0xcc, 0xc3, 0x0d, 0xe9, 0x01, 0x25, 0xf7, 0x12, 0x9c, 0x95, 0x43, 0xb1, 0xe1, 0x84, - 0xa4, 0x2e, 0x94, 0x6d, 0x24, 0xd2, 0x4e, 0xce, 0xf1, 0xd4, 0x95, 0x0c, 0x04, 0x9c, 0xfd, 0x1c, - 0xbb, 0xee, 0x29, 0x68, 0xb9, 0x35, 0xb1, 0x15, 0xd4, 0xd7, 0x3d, 0xd1, 0x46, 0xcc, 0x61, 0x5a, - 0x5f, 0x54, 0x4f, 0x46, 0x5f, 0x7c, 0x04, 0xaa, 0x6a, 0xbc, 0x79, 0xb0, 0xbd, 0x9a, 0xe4, 0x1d, - 0xc1, 0xf6, 0x6a, 0x86, 0x1b, 0x58, 0xfb, 0xdd, 0x47, 0xfa, 0x6e, 0x18, 0x54, 0xde, 0xaf, 0x5e, - 0x2f, 0xdd, 0xb2, 0xbf, 0xd2, 0x07, 0x43, 0x89, 0x42, 0x9a, 0x09, 0xb7, 0xb7, 0xb5, 0xaf, 0xdb, - 0x9b, 0x25, 0x4f, 0xb4, 0x7d, 0x79, 0x23, 0x9f, 0x91, 0x3c, 0xd1, 0xf6, 0x09, 0xe6, 0x30, 0xba, - 0xe9, 0xa8, 0x87, 0x3b, 0xb8, 0xed, 0x8b, 0x20, 0x67, 0xb5, 0xe9, 0x98, 0x65, 0xad, 0x58, 0x40, - 0xd1, 0x27, 0x2d, 0x18, 0x8c, 0xd8, 0x99, 0x0a, 0x3f, 0x34, 0x10, 0x93, 0xfc, 0xea, 0xd1, 0xeb, - 0x84, 0xaa, 0xa2, 0xb1, 0x2c, 0x6e, 0xc9, 0x6c, 0xc1, 0x09, 0x8e, 0xe8, 0x33, 0x16, 0x54, 0xd5, - 0xc5, 0x41, 0xe2, 0x7a, 0xcd, 0x95, 0x7c, 0xeb, 0x94, 0x72, 0x6f, 0xb3, 0x3a, 0x9e, 0x52, 0x05, - 0x23, 0xb1, 0x66, 0x8c, 0x22, 0xe5, 0xd1, 0xef, 0x3f, 0x1e, 0x8f, 0x3e, 0x64, 0x78, 0xf3, 0xdf, - 0x05, 0xd5, 0xa6, 0xe3, 0xbb, 0xeb, 0x24, 0x8a, 0xb9, 0x93, 0x5d, 0x96, 0x4f, 0x96, 0x8d, 0x58, - 0xc3, 0xa9, 0x01, 0x10, 0xb1, 0x17, 0x8b, 0x0d, 0xaf, 0x38, 0x33, 0x00, 0x56, 0x74, 0x33, 0x36, - 0x71, 0x4c, 0x17, 0x3e, 0xdc, 0x57, 0x17, 0xfe, 0xc0, 0xde, 0x2e, 0x7c, 0xfb, 0xef, 0x59, 0x70, - 0x36, 0xf3, 0xab, 0x3d, 0xb8, 0xe1, 0xa8, 0xf6, 0x57, 0xcb, 0x70, 0x3a, 0xa3, 0x22, 0x2e, 0xda, - 0x31, 0xe7, 0xb3, 0x95, 0x47, 0x64, 0x47, 0x32, 0x50, 0x41, 0x0e, 0x63, 0xc6, 0x24, 0x3e, 0xd8, - 0x01, 0x9a, 0x3e, 0xc4, 0x2a, 0x9e, 0xec, 0x21, 0x96, 0x31, 0x2d, 0x4b, 0xf7, 0x75, 0x5a, 0x96, - 0xf7, 0x39, 0x59, 0xfa, 0x96, 0x05, 0x63, 0xcd, 0x2e, 0xd7, 0x30, 0x08, 0x77, 0xf0, 0xcd, 0xe3, - 0xb9, 0xe4, 0x61, 0xfa, 0x91, 0xbb, 0xbb, 0xe3, 0x5d, 0x6f, 0xbf, 0xc0, 0x5d, 0x7b, 0x65, 0x7f, - 0xaf, 0x08, 0xac, 0x1c, 0x33, 0xab, 0x7a, 0xb8, 0x83, 0x3e, 0x61, 0x16, 0xd6, 0xb6, 0xf2, 0x2a, - 0x02, 0xcd, 0x89, 0xab, 0xc2, 0xdc, 0x7c, 0x04, 0xb3, 0xea, 0x74, 0xa7, 0x85, 0x56, 0xa1, 0x07, - 0xa1, 0xe5, 0xc9, 0x0a, 0xe6, 0xc5, 0xfc, 0x2b, 0x98, 0x57, 0xd3, 0xd5, 0xcb, 0xf7, 0xfe, 0xc4, - 0xa5, 0x07, 0xf2, 0x13, 0xff, 0xb2, 0xc5, 0x05, 0x4f, 0xea, 0x2b, 0x68, 0xcb, 0xc0, 0xda, 0xc3, - 0x32, 0x78, 0x0a, 0x2a, 0x11, 0xf1, 0xd6, 0xaf, 0x10, 0xc7, 0x13, 0x16, 0x84, 0x8e, 0x2a, 0x10, - 0xed, 0x58, 0x61, 0xb0, 0x2b, 0x8e, 0x3d, 0x2f, 0xb8, 0x73, 0xa9, 0xd9, 0x8a, 0x77, 0x84, 0x2d, - 0xa1, 0xaf, 0x38, 0x56, 0x10, 0x6c, 0x60, 0xd9, 0x7f, 0xa3, 0xc0, 0x67, 0xa0, 0x08, 0x4d, 0x79, - 0x3e, 0x75, 0x29, 0x65, 0xef, 0x51, 0x1d, 0x1f, 0x03, 0xa8, 0x05, 0xcd, 0x16, 0xb5, 0x33, 0x57, - 0x03, 0x71, 0x52, 0x77, 0xe5, 0xc8, 0x57, 0xe0, 0x0b, 0x7a, 0xfa, 0x35, 0x74, 0x1b, 0x36, 0xf8, - 0x25, 0x64, 0x69, 0x71, 0x5f, 0x59, 0x9a, 0x10, 0x2b, 0xa5, 0x7d, 0xb4, 0xdd, 0x9f, 0x5b, 0x90, - 0xb0, 0x88, 0x50, 0x0b, 0xca, 0xb4, 0xbb, 0x3b, 0x62, 0x85, 0x2e, 0xe5, 0x67, 0x7e, 0x51, 0xd1, - 0x28, 0xa6, 0x3d, 0xfb, 0x89, 0x39, 0x23, 0xe4, 0x89, 0x08, 0x16, 0x3e, 0xaa, 0xd7, 0xf3, 0x63, - 0x78, 0x25, 0x08, 0x36, 0xf9, 0x71, 0xb3, 0x8e, 0x86, 0xb1, 0x9f, 0x87, 0xd1, 0x8e, 0x4e, 0xb1, - 0xfb, 0xe7, 0x02, 0xaa, 0x7d, 0x52, 0xd3, 0x95, 0xa5, 0xd5, 0x62, 0x0e, 0xb3, 0xdf, 0xb4, 0xe0, - 0x54, 0x9a, 0x3c, 0x7a, 0xc3, 0x82, 0xd1, 0x28, 0x4d, 0xef, 0xb8, 0xc6, 0x4e, 0x45, 0xa1, 0x76, - 0x80, 0x70, 0x67, 0x27, 0xec, 0xff, 0x2b, 0x26, 0xff, 0x2d, 0xd7, 0xaf, 0x07, 0x77, 0x94, 0x61, - 0x62, 0x75, 0x35, 0x4c, 0xe8, 0x7a, 0xac, 0x6d, 0x90, 0x7a, 0xdb, 0xeb, 0xc8, 0xe7, 0x5d, 0x11, - 0xed, 0x58, 0x61, 0xb0, 0xf4, 0xc5, 0xb6, 0xb8, 0xe2, 0x20, 0x35, 0x29, 0x67, 0x45, 0x3b, 0x56, - 0x18, 0xe8, 0x59, 0x18, 0x34, 0x5e, 0x52, 0xce, 0x4b, 0x66, 0x90, 0x1b, 0x2a, 0x33, 0xc2, 0x09, - 0x2c, 0x34, 0x01, 0xa0, 0x8c, 0x1c, 0xa9, 0x22, 0x99, 0x63, 0x4a, 0x49, 0xa2, 0x08, 0x1b, 0x18, - 0x2c, 0x59, 0xd8, 0x6b, 0x47, 0xec, 0xe4, 0xa5, 0x4f, 0x97, 0xdd, 0x9d, 0x11, 0x6d, 0x58, 0x41, - 0xa9, 0x34, 0x69, 0x3a, 0x7e, 0xdb, 0xf1, 0xe8, 0x08, 0x89, 0xad, 0xa6, 0x5a, 0x86, 0x8b, 0x0a, - 0x82, 0x0d, 0x2c, 0xfa, 0xc6, 0xb1, 0xdb, 0x24, 0x2f, 0x05, 0xbe, 0x8c, 0x1e, 0xd4, 0x87, 0x71, - 0xa2, 0x1d, 0x2b, 0x0c, 0xfb, 0x3f, 0x5b, 0x30, 0xa2, 0x4b, 0x0f, 0xf0, 0x9b, 0xe6, 0xcd, 0x9d, - 0xb1, 0xb5, 0xef, 0xce, 0x38, 0x99, 0x93, 0x5d, 0xe8, 0x29, 0x27, 0xdb, 0x4c, 0x97, 0x2e, 0xee, - 0x99, 0x2e, 0xfd, 0x63, 0xfa, 0x16, 0x63, 0x9e, 0x57, 0x3d, 0x90, 0x75, 0x83, 0x31, 0xb2, 0xa1, - 0xaf, 0xe6, 0xa8, 0xba, 0x3b, 0x83, 0x7c, 0xef, 0x30, 0x33, 0xc5, 0x90, 0x04, 0xc4, 0x5e, 0x82, - 0xaa, 0x3a, 0x93, 0x92, 0x1b, 0x55, 0x2b, 0x7b, 0xa3, 0xda, 0x53, 0xda, 0xe6, 0xf4, 0xda, 0xb7, - 0xbf, 0xff, 0xd8, 0xdb, 0xfe, 0xe0, 0xfb, 0x8f, 0xbd, 0xed, 0x8f, 0xbf, 0xff, 0xd8, 0xdb, 0x3e, - 0x79, 0xf7, 0x31, 0xeb, 0xdb, 0x77, 0x1f, 0xb3, 0xfe, 0xe0, 0xee, 0x63, 0xd6, 0x1f, 0xdf, 0x7d, - 0xcc, 0xfa, 0xde, 0xdd, 0xc7, 0xac, 0x2f, 0xff, 0x87, 0xc7, 0xde, 0xf6, 0x52, 0x66, 0xf8, 0x28, - 0xfd, 0xf1, 0x74, 0xad, 0x3e, 0xb9, 0x75, 0x91, 0x45, 0x30, 0xd2, 0xe5, 0x35, 0x69, 0xcc, 0xa9, - 0x49, 0xb9, 0xbc, 0xfe, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x77, 0x2b, 0x4e, 0xfa, 0x47, 0xe8, - 0x00, 0x00, + // 11309 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6b, 0x70, 0x1c, 0xc9, + 0x79, 0x98, 0x66, 0x1f, 0xc0, 0xee, 0x87, 0x17, 0xd1, 0x24, 0xef, 0x40, 0xea, 0x8e, 0xa0, 0xe7, + 0xec, 0xd3, 0x39, 0xba, 0x03, 0x7c, 0xf4, 0x9d, 0x7c, 0xf1, 0x59, 0x92, 0xf1, 0x20, 0x41, 0x90, + 0x00, 0x81, 0x6b, 0x80, 0xa4, 0x74, 0xd2, 0xe9, 0x34, 0xd8, 0x6d, 0x2c, 0x86, 0x98, 0x9d, 0xd9, + 0x9b, 0x99, 0x05, 0x81, 0xb3, 0x24, 0x4b, 0x96, 0x64, 0xcb, 0xd1, 0xe3, 0x14, 0x29, 0x55, 0x3e, + 0x27, 0x96, 0x22, 0x3f, 0x92, 0x8a, 0x2b, 0xa5, 0x8a, 0x62, 0xff, 0x88, 0x13, 0xc7, 0x95, 0x8a, + 0x9d, 0x4a, 0x29, 0x71, 0x12, 0xbb, 0x54, 0x2e, 0xcb, 0x79, 0x18, 0x91, 0x18, 0xa7, 0x92, 0x4a, + 0x55, 0x5c, 0x95, 0xc7, 0x8f, 0x84, 0xc9, 0x8f, 0x54, 0xbf, 0x7b, 0x66, 0x67, 0x81, 0x05, 0x30, + 0x00, 0x29, 0xe5, 0xfe, 0xed, 0xf6, 0xf7, 0x4d, 0x7f, 0x3d, 0x3d, 0xdd, 0xdf, 0xf7, 0xf5, 0xf7, + 0x6a, 0x58, 0x68, 0xb8, 0xf1, 0x46, 0x7b, 0x6d, 0xa2, 0x16, 0x34, 0x27, 0x9d, 0xb0, 0x11, 0xb4, + 0xc2, 0xe0, 0x0e, 0xfb, 0xf1, 0x4c, 0xad, 0x3e, 0xb9, 0x75, 0x69, 0xb2, 0xb5, 0xd9, 0x98, 0x74, + 0x5a, 0x6e, 0x34, 0xe9, 0xb4, 0x5a, 0x9e, 0x5b, 0x73, 0x62, 0x37, 0xf0, 0x27, 0xb7, 0x9e, 0x75, + 0xbc, 0xd6, 0x86, 0xf3, 0xec, 0x64, 0x83, 0xf8, 0x24, 0x74, 0x62, 0x52, 0x9f, 0x68, 0x85, 0x41, + 0x1c, 0xa0, 0x9f, 0xd0, 0xbd, 0x4d, 0xc8, 0xde, 0xd8, 0x8f, 0x57, 0x6b, 0xf5, 0x89, 0xad, 0x4b, + 0x13, 0xad, 0xcd, 0xc6, 0x04, 0xed, 0x6d, 0xc2, 0xe8, 0x6d, 0x42, 0xf6, 0x76, 0xfe, 0x19, 0x63, + 0x2c, 0x8d, 0xa0, 0x11, 0x4c, 0xb2, 0x4e, 0xd7, 0xda, 0xeb, 0xec, 0x1f, 0xfb, 0xc3, 0x7e, 0x71, + 0x62, 0xe7, 0xed, 0xcd, 0x17, 0xa2, 0x09, 0x37, 0xa0, 0xc3, 0x9b, 0xac, 0x05, 0x21, 0x99, 0xdc, + 0xea, 0x18, 0xd0, 0xf9, 0xab, 0x1a, 0x87, 0x6c, 0xc7, 0xc4, 0x8f, 0xdc, 0xc0, 0x8f, 0x9e, 0xa1, + 0x43, 0x20, 0xe1, 0x16, 0x09, 0xcd, 0xd7, 0x33, 0x10, 0xb2, 0x7a, 0x7a, 0x4e, 0xf7, 0xd4, 0x74, + 0x6a, 0x1b, 0xae, 0x4f, 0xc2, 0x1d, 0xfd, 0x78, 0x93, 0xc4, 0x4e, 0xd6, 0x53, 0x93, 0xdd, 0x9e, + 0x0a, 0xdb, 0x7e, 0xec, 0x36, 0x49, 0xc7, 0x03, 0xef, 0xda, 0xef, 0x81, 0xa8, 0xb6, 0x41, 0x9a, + 0x4e, 0xc7, 0x73, 0x3f, 0xda, 0xed, 0xb9, 0x76, 0xec, 0x7a, 0x93, 0xae, 0x1f, 0x47, 0x71, 0x98, + 0x7e, 0xc8, 0xfe, 0x25, 0x0b, 0x86, 0xa6, 0x6e, 0xaf, 0x4c, 0xb5, 0xe3, 0x8d, 0x99, 0xc0, 0x5f, + 0x77, 0x1b, 0xe8, 0x79, 0x18, 0xa8, 0x79, 0xed, 0x28, 0x26, 0xe1, 0x0d, 0xa7, 0x49, 0xc6, 0xac, + 0x8b, 0xd6, 0x53, 0xd5, 0xe9, 0xd3, 0xdf, 0xdc, 0x1d, 0x7f, 0xdb, 0xbd, 0xdd, 0xf1, 0x81, 0x19, + 0x0d, 0xc2, 0x26, 0x1e, 0xfa, 0x61, 0xe8, 0x0f, 0x03, 0x8f, 0x4c, 0xe1, 0x1b, 0x63, 0x05, 0xf6, + 0xc8, 0x88, 0x78, 0xa4, 0x1f, 0xf3, 0x66, 0x2c, 0xe1, 0x14, 0xb5, 0x15, 0x06, 0xeb, 0xae, 0x47, + 0xc6, 0x8a, 0x49, 0xd4, 0x65, 0xde, 0x8c, 0x25, 0xdc, 0xfe, 0xe3, 0x02, 0xc0, 0x54, 0xab, 0xb5, + 0x1c, 0x06, 0x77, 0x48, 0x2d, 0x46, 0x1f, 0x86, 0x0a, 0x9d, 0xe6, 0xba, 0x13, 0x3b, 0x6c, 0x60, + 0x03, 0x97, 0x7e, 0x64, 0x82, 0xbf, 0xf5, 0x84, 0xf9, 0xd6, 0x7a, 0x91, 0x51, 0xec, 0x89, 0xad, + 0x67, 0x27, 0x96, 0xd6, 0xe8, 0xf3, 0x8b, 0x24, 0x76, 0xa6, 0x91, 0x20, 0x06, 0xba, 0x0d, 0xab, + 0x5e, 0x91, 0x0f, 0xa5, 0xa8, 0x45, 0x6a, 0xec, 0x1d, 0x06, 0x2e, 0x2d, 0x4c, 0x1c, 0x65, 0x35, + 0x4f, 0xe8, 0x91, 0xaf, 0xb4, 0x48, 0x6d, 0x7a, 0x50, 0x50, 0x2e, 0xd1, 0x7f, 0x98, 0xd1, 0x41, + 0x5b, 0xd0, 0x17, 0xc5, 0x4e, 0xdc, 0x8e, 0xd8, 0x54, 0x0c, 0x5c, 0xba, 0x91, 0x1b, 0x45, 0xd6, + 0xeb, 0xf4, 0xb0, 0xa0, 0xd9, 0xc7, 0xff, 0x63, 0x41, 0xcd, 0xfe, 0x53, 0x0b, 0x86, 0x35, 0xf2, + 0x82, 0x1b, 0xc5, 0xe8, 0x83, 0x1d, 0x93, 0x3b, 0xd1, 0xdb, 0xe4, 0xd2, 0xa7, 0xd9, 0xd4, 0x9e, + 0x12, 0xc4, 0x2a, 0xb2, 0xc5, 0x98, 0xd8, 0x26, 0x94, 0xdd, 0x98, 0x34, 0xa3, 0xb1, 0xc2, 0xc5, + 0xe2, 0x53, 0x03, 0x97, 0xae, 0xe6, 0xf5, 0x9e, 0xd3, 0x43, 0x82, 0x68, 0x79, 0x9e, 0x76, 0x8f, + 0x39, 0x15, 0xfb, 0xd7, 0x07, 0xcd, 0xf7, 0xa3, 0x13, 0x8e, 0x9e, 0x85, 0x81, 0x28, 0x68, 0x87, + 0x35, 0x82, 0x49, 0x2b, 0x88, 0xc6, 0xac, 0x8b, 0x45, 0xba, 0xf4, 0xe8, 0xa2, 0x5e, 0xd1, 0xcd, + 0xd8, 0xc4, 0x41, 0x5f, 0xb0, 0x60, 0xb0, 0x4e, 0xa2, 0xd8, 0xf5, 0x19, 0x7d, 0x39, 0xf8, 0xd5, + 0x23, 0x0f, 0x5e, 0x36, 0xce, 0xea, 0xce, 0xa7, 0xcf, 0x88, 0x17, 0x19, 0x34, 0x1a, 0x23, 0x9c, + 0xa0, 0x4f, 0x37, 0x67, 0x9d, 0x44, 0xb5, 0xd0, 0x6d, 0xd1, 0xff, 0x62, 0xfb, 0xa8, 0xcd, 0x39, + 0xab, 0x41, 0xd8, 0xc4, 0x43, 0x3e, 0x94, 0xe9, 0xe6, 0x8b, 0xc6, 0x4a, 0x6c, 0xfc, 0xf3, 0x47, + 0x1b, 0xbf, 0x98, 0x54, 0xba, 0xaf, 0xf5, 0xec, 0xd3, 0x7f, 0x11, 0xe6, 0x64, 0xd0, 0xe7, 0x2d, + 0x18, 0x13, 0xcc, 0x01, 0x13, 0x3e, 0xa1, 0xb7, 0x37, 0xdc, 0x98, 0x78, 0x6e, 0x14, 0x8f, 0x95, + 0xd9, 0x18, 0x26, 0x7b, 0x5b, 0x5b, 0x73, 0x61, 0xd0, 0x6e, 0x5d, 0x77, 0xfd, 0xfa, 0xf4, 0x45, + 0x41, 0x69, 0x6c, 0xa6, 0x4b, 0xc7, 0xb8, 0x2b, 0x49, 0xf4, 0x65, 0x0b, 0xce, 0xfb, 0x4e, 0x93, + 0x44, 0x2d, 0x87, 0x7e, 0x5a, 0x0e, 0x9e, 0xf6, 0x9c, 0xda, 0x26, 0x1b, 0x51, 0xdf, 0xe1, 0x46, + 0x64, 0x8b, 0x11, 0x9d, 0xbf, 0xd1, 0xb5, 0x6b, 0xbc, 0x07, 0x59, 0xf4, 0xab, 0x16, 0x8c, 0x06, + 0x61, 0x6b, 0xc3, 0xf1, 0x49, 0x5d, 0x42, 0xa3, 0xb1, 0x7e, 0xb6, 0xf5, 0x3e, 0x74, 0xb4, 0x4f, + 0xb4, 0x94, 0xee, 0x76, 0x31, 0xf0, 0xdd, 0x38, 0x08, 0x57, 0x48, 0x1c, 0xbb, 0x7e, 0x23, 0x9a, + 0x3e, 0x7b, 0x6f, 0x77, 0x7c, 0xb4, 0x03, 0x0b, 0x77, 0x8e, 0x07, 0xfd, 0x14, 0x0c, 0x44, 0x3b, + 0x7e, 0xed, 0xb6, 0xeb, 0xd7, 0x83, 0xbb, 0xd1, 0x58, 0x25, 0x8f, 0xed, 0xbb, 0xa2, 0x3a, 0x14, + 0x1b, 0x50, 0x13, 0xc0, 0x26, 0xb5, 0xec, 0x0f, 0xa7, 0x97, 0x52, 0x35, 0xef, 0x0f, 0xa7, 0x17, + 0xd3, 0x1e, 0x64, 0xd1, 0xcf, 0x59, 0x30, 0x14, 0xb9, 0x0d, 0xdf, 0x89, 0xdb, 0x21, 0xb9, 0x4e, + 0x76, 0xa2, 0x31, 0x60, 0x03, 0xb9, 0x76, 0xc4, 0x59, 0x31, 0xba, 0x9c, 0x3e, 0x2b, 0xc6, 0x38, + 0x64, 0xb6, 0x46, 0x38, 0x49, 0x37, 0x6b, 0xa3, 0xe9, 0x65, 0x3d, 0x90, 0xef, 0x46, 0xd3, 0x8b, + 0xba, 0x2b, 0x49, 0xf4, 0x93, 0x70, 0x8a, 0x37, 0xa9, 0x99, 0x8d, 0xc6, 0x06, 0x19, 0xa3, 0x3d, + 0x73, 0x6f, 0x77, 0xfc, 0xd4, 0x4a, 0x0a, 0x86, 0x3b, 0xb0, 0xd1, 0x6b, 0x30, 0xde, 0x22, 0x61, + 0xd3, 0x8d, 0x97, 0x7c, 0x6f, 0x47, 0xb2, 0xef, 0x5a, 0xd0, 0x22, 0x75, 0x31, 0x9c, 0x68, 0x6c, + 0xe8, 0xa2, 0xf5, 0x54, 0x65, 0xfa, 0x1d, 0x62, 0x98, 0xe3, 0xcb, 0x7b, 0xa3, 0xe3, 0xfd, 0xfa, + 0xb3, 0xff, 0x59, 0x01, 0x4e, 0xa5, 0x05, 0x27, 0xfa, 0x9b, 0x16, 0x8c, 0xdc, 0xb9, 0x1b, 0xaf, + 0x06, 0x9b, 0xc4, 0x8f, 0xa6, 0x77, 0x28, 0x7b, 0x63, 0x22, 0x63, 0xe0, 0x52, 0x2d, 0x5f, 0x11, + 0x3d, 0x71, 0x2d, 0x49, 0xe5, 0xb2, 0x1f, 0x87, 0x3b, 0xd3, 0x8f, 0x8a, 0xb7, 0x1b, 0xb9, 0x76, + 0x7b, 0xd5, 0x84, 0xe2, 0xf4, 0xa0, 0xce, 0x7f, 0xd6, 0x82, 0x33, 0x59, 0x5d, 0xa0, 0x53, 0x50, + 0xdc, 0x24, 0x3b, 0x5c, 0x81, 0xc3, 0xf4, 0x27, 0x7a, 0x05, 0xca, 0x5b, 0x8e, 0xd7, 0x26, 0x42, + 0xbb, 0x99, 0x3b, 0xda, 0x8b, 0xa8, 0x91, 0x61, 0xde, 0xeb, 0x8f, 0x17, 0x5e, 0xb0, 0xec, 0x3f, + 0x28, 0xc2, 0x80, 0x21, 0xdf, 0x4e, 0x40, 0x63, 0x0b, 0x12, 0x1a, 0xdb, 0x62, 0x6e, 0xa2, 0xb9, + 0xab, 0xca, 0x76, 0x37, 0xa5, 0xb2, 0x2d, 0xe5, 0x47, 0x72, 0x4f, 0x9d, 0x0d, 0xc5, 0x50, 0x0d, + 0x5a, 0x54, 0x7b, 0xa7, 0xa2, 0xbf, 0x94, 0xc7, 0x27, 0x5c, 0x92, 0xdd, 0x4d, 0x0f, 0xdd, 0xdb, + 0x1d, 0xaf, 0xaa, 0xbf, 0x58, 0x13, 0xb2, 0xbf, 0x6d, 0xc1, 0x19, 0x63, 0x8c, 0x33, 0x81, 0x5f, + 0x77, 0xd9, 0xa7, 0xbd, 0x08, 0xa5, 0x78, 0xa7, 0x25, 0x4f, 0x08, 0x6a, 0xa6, 0x56, 0x77, 0x5a, + 0x04, 0x33, 0x08, 0x55, 0xf4, 0x9b, 0x24, 0x8a, 0x9c, 0x06, 0x49, 0x9f, 0x09, 0x16, 0x79, 0x33, + 0x96, 0x70, 0x14, 0x02, 0xf2, 0x9c, 0x28, 0x5e, 0x0d, 0x1d, 0x3f, 0x62, 0xdd, 0xaf, 0xba, 0x4d, + 0x22, 0x26, 0xf8, 0x2f, 0xf4, 0xb6, 0x62, 0xe8, 0x13, 0xd3, 0x8f, 0xdc, 0xdb, 0x1d, 0x47, 0x0b, + 0x1d, 0x3d, 0xe1, 0x8c, 0xde, 0xed, 0x2f, 0x5b, 0xf0, 0x48, 0xb6, 0x2e, 0x86, 0x9e, 0x84, 0x3e, + 0x7e, 0x3c, 0x14, 0x6f, 0xa7, 0x3f, 0x09, 0x6b, 0xc5, 0x02, 0x8a, 0x26, 0xa1, 0xaa, 0xe4, 0x84, + 0x78, 0xc7, 0x51, 0x81, 0x5a, 0xd5, 0xc2, 0x45, 0xe3, 0xd0, 0x49, 0xa3, 0x7f, 0x84, 0xe6, 0xa6, + 0x26, 0x8d, 0x9d, 0xa7, 0x18, 0xc4, 0xfe, 0xf7, 0x16, 0x8c, 0x18, 0xa3, 0x3a, 0x01, 0xd5, 0xdc, + 0x4f, 0xaa, 0xe6, 0xf3, 0xb9, 0xad, 0xe7, 0x2e, 0xba, 0xf9, 0xe7, 0x2d, 0x38, 0x6f, 0x60, 0x2d, + 0x3a, 0x71, 0x6d, 0xe3, 0xf2, 0x76, 0x2b, 0x24, 0x11, 0x3d, 0x7a, 0xa3, 0xc7, 0x0d, 0xbe, 0x35, + 0x3d, 0x20, 0x7a, 0x28, 0x5e, 0x27, 0x3b, 0x9c, 0x89, 0x3d, 0x0d, 0x15, 0xbe, 0x38, 0x83, 0x50, + 0xcc, 0xb8, 0x7a, 0xb7, 0x25, 0xd1, 0x8e, 0x15, 0x06, 0xb2, 0xa1, 0x8f, 0x31, 0x27, 0xba, 0x59, + 0xa9, 0x18, 0x02, 0xfa, 0x11, 0x6f, 0xb1, 0x16, 0x2c, 0x20, 0x76, 0x94, 0x18, 0xce, 0x72, 0x48, + 0xd8, 0xc7, 0xad, 0x5f, 0x71, 0x89, 0x57, 0x8f, 0xe8, 0xb1, 0xc1, 0xf1, 0xfd, 0x20, 0x16, 0x27, + 0x00, 0xe3, 0xd8, 0x30, 0xa5, 0x9b, 0xb1, 0x89, 0x43, 0x89, 0x7a, 0xce, 0x1a, 0xf1, 0xf8, 0x8c, + 0x0a, 0xa2, 0x0b, 0xac, 0x05, 0x0b, 0x88, 0x7d, 0xaf, 0xc0, 0x0e, 0x28, 0x6a, 0xeb, 0x93, 0x93, + 0x38, 0xdd, 0x86, 0x09, 0x5e, 0xb9, 0x9c, 0x1f, 0xe3, 0x22, 0xdd, 0x4f, 0xb8, 0xaf, 0xa7, 0xd8, + 0x25, 0xce, 0x95, 0xea, 0xde, 0xa7, 0xdc, 0x8f, 0x17, 0x61, 0x3c, 0xf9, 0x40, 0x07, 0xb7, 0xa5, + 0x47, 0x2a, 0x83, 0x50, 0xda, 0xde, 0x61, 0xe0, 0x63, 0x13, 0xaf, 0x0b, 0xc3, 0x2a, 0x1c, 0x27, + 0xc3, 0x32, 0xf9, 0x69, 0x71, 0x1f, 0x7e, 0xfa, 0xa4, 0x9a, 0xf5, 0x52, 0x8a, 0x81, 0x25, 0x65, + 0xca, 0x45, 0x28, 0x45, 0x31, 0x69, 0x8d, 0x95, 0x93, 0xfc, 0x68, 0x25, 0x26, 0x2d, 0xcc, 0x20, + 0xe8, 0xdd, 0x30, 0x12, 0x3b, 0x61, 0x83, 0xc4, 0x21, 0xd9, 0x72, 0x99, 0x6d, 0x8c, 0x9d, 0x97, + 0xaa, 0xd3, 0xa7, 0xa9, 0x7a, 0xb2, 0xca, 0x40, 0x58, 0x82, 0x70, 0x1a, 0xd7, 0xfe, 0x2f, 0x05, + 0x78, 0x34, 0xf9, 0x09, 0xb4, 0x04, 0x79, 0x6f, 0x42, 0x82, 0xbc, 0xd3, 0x94, 0x20, 0xf7, 0x77, + 0xc7, 0xdf, 0xde, 0xe5, 0xb1, 0xef, 0x19, 0x01, 0x83, 0xe6, 0x52, 0x1f, 0x61, 0x32, 0xf9, 0x11, + 0xee, 0xef, 0x8e, 0x3f, 0xde, 0xe5, 0x1d, 0x53, 0x5f, 0xe9, 0x49, 0xe8, 0x0b, 0x89, 0x13, 0x05, + 0xbe, 0xf8, 0x4e, 0xea, 0x6b, 0x62, 0xd6, 0x8a, 0x05, 0xd4, 0xfe, 0x56, 0x35, 0x3d, 0xd9, 0x73, + 0xdc, 0xde, 0x17, 0x84, 0xc8, 0x85, 0x12, 0x3b, 0x15, 0x70, 0xce, 0x72, 0xfd, 0x68, 0xbb, 0x90, + 0x4a, 0x11, 0xd5, 0xf5, 0x74, 0x85, 0x7e, 0x35, 0xda, 0x84, 0x19, 0x09, 0xb4, 0x0d, 0x95, 0x9a, + 0x54, 0xd6, 0x0b, 0x79, 0x98, 0xb5, 0x84, 0xaa, 0xae, 0x29, 0x0e, 0x52, 0x76, 0xaf, 0x34, 0x7c, + 0x45, 0x0d, 0x11, 0x28, 0x36, 0xdc, 0x58, 0x7c, 0xd6, 0x23, 0x1e, 0xc7, 0xe6, 0x5c, 0xe3, 0x15, + 0xfb, 0xa9, 0x0c, 0x9a, 0x73, 0x63, 0x4c, 0xfb, 0x47, 0x9f, 0xb6, 0x60, 0x20, 0xaa, 0x35, 0x97, + 0xc3, 0x60, 0xcb, 0xad, 0x93, 0x50, 0x28, 0x63, 0x47, 0xe4, 0x6c, 0x2b, 0x33, 0x8b, 0xb2, 0x43, + 0x4d, 0x97, 0x1f, 0x8f, 0x35, 0x04, 0x9b, 0x74, 0xe9, 0x21, 0xe5, 0x51, 0xf1, 0xee, 0xb3, 0xa4, + 0xc6, 0x76, 0x9c, 0x3c, 0x93, 0xb1, 0x95, 0x72, 0x64, 0xe5, 0x74, 0xb6, 0x5d, 0xdb, 0xa4, 0xfb, + 0x4d, 0x0f, 0xe8, 0xed, 0xf7, 0x76, 0xc7, 0x1f, 0x9d, 0xc9, 0xa6, 0x89, 0xbb, 0x0d, 0x86, 0x4d, + 0x58, 0xab, 0xed, 0x79, 0x98, 0xbc, 0xd6, 0x26, 0xcc, 0xe2, 0x92, 0xc3, 0x84, 0x2d, 0xeb, 0x0e, + 0x53, 0x13, 0x66, 0x40, 0xb0, 0x49, 0x17, 0xbd, 0x06, 0x7d, 0x4d, 0x27, 0x0e, 0xdd, 0x6d, 0x61, + 0x66, 0x39, 0xe2, 0x71, 0x61, 0x91, 0xf5, 0xa5, 0x89, 0x33, 0x41, 0xcf, 0x1b, 0xb1, 0x20, 0x84, + 0x9a, 0x50, 0x6e, 0x92, 0xb0, 0x41, 0xc6, 0x2a, 0x79, 0x98, 0x94, 0x17, 0x69, 0x57, 0x9a, 0x60, + 0x95, 0x2a, 0x57, 0xac, 0x0d, 0x73, 0x2a, 0xe8, 0x15, 0xa8, 0x44, 0xc4, 0x23, 0x35, 0xaa, 0x1e, + 0x55, 0x19, 0xc5, 0x1f, 0xed, 0x51, 0x55, 0xa4, 0x7a, 0xc9, 0x8a, 0x78, 0x94, 0x6f, 0x30, 0xf9, + 0x0f, 0xab, 0x2e, 0xe9, 0x04, 0xb6, 0xbc, 0x76, 0xc3, 0xf5, 0xc7, 0x20, 0x8f, 0x09, 0x5c, 0x66, + 0x7d, 0xa5, 0x26, 0x90, 0x37, 0x62, 0x41, 0xc8, 0xfe, 0x8f, 0x16, 0xa0, 0x24, 0x53, 0x3b, 0x01, + 0x9d, 0xf8, 0xb5, 0xa4, 0x4e, 0xbc, 0x90, 0xa7, 0xd2, 0xd2, 0x45, 0x2d, 0xfe, 0xed, 0x2a, 0xa4, + 0xc4, 0xc1, 0x0d, 0x12, 0xc5, 0xa4, 0xfe, 0x16, 0x0b, 0x7f, 0x8b, 0x85, 0xbf, 0xc5, 0xc2, 0x15, + 0x0b, 0x5f, 0x4b, 0xb1, 0xf0, 0xf7, 0x18, 0xbb, 0x5e, 0xfb, 0x6f, 0x5f, 0x55, 0x0e, 0x5e, 0x73, + 0x04, 0x06, 0x02, 0xe5, 0x04, 0xd7, 0x56, 0x96, 0x6e, 0x64, 0xf2, 0xec, 0x57, 0x93, 0x3c, 0xfb, + 0xa8, 0x24, 0xfe, 0x7f, 0xe0, 0xd2, 0xff, 0xd4, 0x82, 0x77, 0x24, 0xb9, 0x97, 0x5c, 0x39, 0xf3, + 0x0d, 0x3f, 0x08, 0xc9, 0xac, 0xbb, 0xbe, 0x4e, 0x42, 0xe2, 0xd7, 0x48, 0xa4, 0x8c, 0x20, 0x56, + 0x37, 0x23, 0x08, 0x7a, 0x0e, 0x06, 0xef, 0x44, 0x81, 0xbf, 0x1c, 0xb8, 0xbe, 0x60, 0x41, 0xf4, + 0xc4, 0x71, 0xea, 0xde, 0xee, 0xf8, 0x20, 0x9d, 0x51, 0xd9, 0x8e, 0x13, 0x58, 0x68, 0x06, 0x46, + 0xef, 0xbc, 0xb6, 0xec, 0xc4, 0x86, 0x35, 0x41, 0x9e, 0xfb, 0x99, 0xbf, 0xe3, 0xda, 0x4b, 0x29, + 0x20, 0xee, 0xc4, 0xb7, 0xff, 0x5a, 0x01, 0xce, 0xa5, 0x5e, 0x24, 0xf0, 0xbc, 0xa0, 0x1d, 0xd3, + 0x33, 0x11, 0xfa, 0xaa, 0x05, 0xa7, 0x9a, 0x49, 0x83, 0x45, 0x24, 0xec, 0xc2, 0xef, 0xcb, 0x4d, + 0x46, 0xa4, 0x2c, 0x22, 0xd3, 0x63, 0x62, 0x86, 0x4e, 0xa5, 0x00, 0x11, 0xee, 0x18, 0x0b, 0x7a, + 0x05, 0xaa, 0x4d, 0x67, 0xfb, 0x66, 0xab, 0xee, 0xc4, 0xf2, 0x38, 0xda, 0xdd, 0x8a, 0xd0, 0x8e, + 0x5d, 0x6f, 0x82, 0x47, 0x06, 0x4c, 0xcc, 0xfb, 0xf1, 0x52, 0xb8, 0x12, 0x87, 0xae, 0xdf, 0xe0, + 0xd6, 0xc0, 0x45, 0xd9, 0x0d, 0xd6, 0x3d, 0xda, 0x5f, 0xb1, 0xd2, 0x42, 0x4a, 0xcd, 0x4e, 0xe8, + 0xc4, 0xa4, 0xb1, 0x83, 0x3e, 0x02, 0x65, 0x7a, 0x6e, 0x94, 0xb3, 0x72, 0x3b, 0x4f, 0xc9, 0x69, + 0x7c, 0x09, 0x2d, 0x44, 0xe9, 0xbf, 0x08, 0x73, 0xa2, 0xf6, 0x57, 0xab, 0x69, 0x65, 0x81, 0xf9, + 0x7e, 0x2f, 0x01, 0x34, 0x82, 0x55, 0xd2, 0x6c, 0x79, 0x74, 0x5a, 0x2c, 0xe6, 0x40, 0x50, 0xa6, + 0x92, 0x39, 0x05, 0xc1, 0x06, 0x16, 0xfa, 0x79, 0x0b, 0xa0, 0x21, 0xd7, 0xbc, 0x54, 0x04, 0x6e, + 0xe6, 0xf9, 0x3a, 0x7a, 0x47, 0xe9, 0xb1, 0x28, 0x82, 0xd8, 0x20, 0x8e, 0x7e, 0xc6, 0x82, 0x4a, + 0x2c, 0x87, 0xcf, 0x45, 0xe3, 0x6a, 0x9e, 0x23, 0x91, 0x2f, 0xad, 0x75, 0x22, 0x35, 0x25, 0x8a, + 0x2e, 0xfa, 0x59, 0x0b, 0x20, 0xda, 0xf1, 0x6b, 0xcb, 0x81, 0xe7, 0xd6, 0x76, 0x84, 0xc4, 0xbc, + 0x95, 0xab, 0x39, 0x47, 0xf5, 0x3e, 0x3d, 0x4c, 0x67, 0x43, 0xff, 0xc7, 0x06, 0x65, 0xf4, 0x31, + 0xa8, 0x44, 0x62, 0xb9, 0x09, 0x19, 0xb9, 0x9a, 0xaf, 0x51, 0x89, 0xf7, 0x2d, 0xd8, 0xab, 0xf8, + 0x87, 0x15, 0x4d, 0xf4, 0x0b, 0x16, 0x8c, 0xb4, 0x92, 0x66, 0x42, 0x21, 0x0e, 0xf3, 0xe3, 0x01, + 0x29, 0x33, 0x24, 0xb7, 0xb6, 0xa4, 0x1a, 0x71, 0x7a, 0x14, 0x94, 0x03, 0xea, 0x15, 0xbc, 0xd4, + 0xe2, 0x26, 0xcb, 0x7e, 0xcd, 0x01, 0xe7, 0xd2, 0x40, 0xdc, 0x89, 0x8f, 0x96, 0xe1, 0x0c, 0x1d, + 0xdd, 0x0e, 0x57, 0x3f, 0xa5, 0x78, 0x89, 0x98, 0x30, 0xac, 0x4c, 0x3f, 0x26, 0x56, 0x08, 0x73, + 0x0a, 0xa4, 0x71, 0x70, 0xe6, 0x93, 0xe8, 0x0f, 0x2c, 0x78, 0xcc, 0x65, 0x62, 0xc0, 0xb4, 0xb7, + 0x6b, 0x89, 0x20, 0x1c, 0xb9, 0x24, 0x57, 0x5e, 0xd1, 0x4d, 0xfc, 0x4c, 0xff, 0xa0, 0x78, 0x83, + 0xc7, 0xe6, 0xf7, 0x18, 0x12, 0xde, 0x73, 0xc0, 0xe8, 0xc7, 0x60, 0x48, 0xee, 0x8b, 0x65, 0xca, + 0x82, 0x99, 0xa0, 0xad, 0x4e, 0x8f, 0xde, 0xdb, 0x1d, 0x1f, 0x5a, 0x35, 0x01, 0x38, 0x89, 0x67, + 0xff, 0xf3, 0x62, 0xc2, 0x9d, 0xa2, 0x6c, 0x98, 0x8c, 0xdd, 0xd4, 0xa4, 0xfd, 0x47, 0x72, 0xcf, + 0x5c, 0xd9, 0x8d, 0xb2, 0x2e, 0x69, 0x76, 0xa3, 0x9a, 0x22, 0x6c, 0x10, 0xa7, 0x4a, 0xe9, 0xa8, + 0x93, 0xb6, 0x94, 0x0a, 0x0e, 0xf8, 0x4a, 0x9e, 0x43, 0xea, 0x74, 0x7e, 0x9d, 0x13, 0x43, 0x1b, + 0xed, 0x00, 0xe1, 0xce, 0x21, 0xa1, 0x8f, 0x42, 0x35, 0x54, 0x91, 0x13, 0xc5, 0x3c, 0x8e, 0x6a, + 0x72, 0xd9, 0x88, 0xe1, 0x28, 0x6f, 0x8e, 0x8e, 0x91, 0xd0, 0x14, 0xed, 0xdf, 0x4f, 0x7a, 0x90, + 0x0c, 0xde, 0xd1, 0x83, 0x77, 0xec, 0x0b, 0x16, 0x0c, 0x84, 0x81, 0xe7, 0xb9, 0x7e, 0x83, 0xf2, + 0x39, 0x21, 0xac, 0x3f, 0x70, 0x2c, 0xf2, 0x52, 0x30, 0x34, 0xa6, 0x59, 0x63, 0x4d, 0x13, 0x9b, + 0x03, 0xb0, 0xff, 0xd4, 0x82, 0xb1, 0x6e, 0xfc, 0x18, 0x11, 0x78, 0xbb, 0x64, 0x36, 0x6a, 0x2a, + 0x96, 0xfc, 0x59, 0xe2, 0x11, 0x65, 0x36, 0xaf, 0x4c, 0x3f, 0x21, 0x5e, 0xf3, 0xed, 0xcb, 0xdd, + 0x51, 0xf1, 0x5e, 0xfd, 0xa0, 0x97, 0xe1, 0x94, 0xf1, 0x5e, 0x91, 0x9a, 0x98, 0xea, 0xf4, 0x04, + 0x55, 0x80, 0xa6, 0x52, 0xb0, 0xfb, 0xbb, 0xe3, 0x8f, 0xa4, 0xdb, 0x84, 0xc0, 0xe8, 0xe8, 0xc7, + 0xfe, 0xb5, 0x42, 0xfa, 0x6b, 0x29, 0x59, 0xff, 0xa6, 0xd5, 0x61, 0x4d, 0x78, 0xdf, 0x71, 0xc8, + 0x57, 0x66, 0x77, 0x50, 0xe1, 0x27, 0xdd, 0x71, 0x1e, 0xa0, 0x7f, 0xdb, 0xfe, 0x17, 0x25, 0xd8, + 0x63, 0x64, 0x3d, 0x28, 0xef, 0x07, 0x76, 0x8a, 0x7e, 0xce, 0x52, 0x0e, 0x33, 0xbe, 0x87, 0xeb, + 0xc7, 0x35, 0xf7, 0xfc, 0xfc, 0x14, 0xf1, 0x18, 0x0b, 0x65, 0x45, 0x4f, 0xba, 0xe6, 0xd0, 0xd7, + 0xac, 0xa4, 0xcb, 0x8f, 0x07, 0xcd, 0xb9, 0xc7, 0x36, 0x26, 0xc3, 0x8f, 0xc8, 0x07, 0xa6, 0xbd, + 0x4f, 0xdd, 0x3c, 0x8c, 0x13, 0x00, 0xeb, 0xae, 0xef, 0x78, 0xee, 0xeb, 0xf4, 0x74, 0x54, 0x66, + 0x02, 0x9e, 0x69, 0x4c, 0x57, 0x54, 0x2b, 0x36, 0x30, 0xce, 0xff, 0x45, 0x18, 0x30, 0xde, 0x3c, + 0x23, 0x34, 0xe4, 0x8c, 0x19, 0x1a, 0x52, 0x35, 0x22, 0x3a, 0xce, 0xbf, 0x07, 0x4e, 0xa5, 0x07, + 0x78, 0x90, 0xe7, 0xed, 0xff, 0xd5, 0x9f, 0xf6, 0xc1, 0xad, 0x92, 0xb0, 0x49, 0x87, 0xf6, 0x96, + 0x61, 0xeb, 0x2d, 0xc3, 0xd6, 0x5b, 0x86, 0x2d, 0xd3, 0x37, 0x21, 0x8c, 0x36, 0xfd, 0x27, 0x64, + 0xb4, 0x49, 0x98, 0xa1, 0x2a, 0xb9, 0x9b, 0xa1, 0xec, 0x4f, 0x77, 0x58, 0xee, 0x57, 0x43, 0x42, + 0x50, 0x00, 0x65, 0x3f, 0xa8, 0x13, 0xa9, 0xe3, 0x5e, 0xcb, 0x47, 0x61, 0xbb, 0x11, 0xd4, 0x8d, + 0x70, 0x64, 0xfa, 0x2f, 0xc2, 0x9c, 0x8e, 0x7d, 0xaf, 0x0c, 0x09, 0x75, 0x92, 0x7f, 0xf7, 0x1f, + 0x86, 0xfe, 0x90, 0xb4, 0x82, 0x9b, 0x78, 0x41, 0xc8, 0x32, 0x9d, 0xb1, 0xc0, 0x9b, 0xb1, 0x84, + 0x53, 0x99, 0xd7, 0x72, 0xe2, 0x0d, 0x21, 0xcc, 0x94, 0xcc, 0x5b, 0x76, 0xe2, 0x0d, 0xcc, 0x20, + 0xe8, 0x3d, 0x30, 0x1c, 0x27, 0x5c, 0xe1, 0xc2, 0xe5, 0xfb, 0x88, 0xc0, 0x1d, 0x4e, 0x3a, 0xca, + 0x71, 0x0a, 0x1b, 0xbd, 0x06, 0xa5, 0x0d, 0xe2, 0x35, 0xc5, 0xa7, 0x5f, 0xc9, 0x4f, 0xd6, 0xb0, + 0x77, 0xbd, 0x4a, 0xbc, 0x26, 0xe7, 0x84, 0xf4, 0x17, 0x66, 0xa4, 0xe8, 0xba, 0xaf, 0x6e, 0xb6, + 0xa3, 0x38, 0x68, 0xba, 0xaf, 0x4b, 0x4b, 0xe7, 0xfb, 0x72, 0x26, 0x7c, 0x5d, 0xf6, 0xcf, 0x4d, + 0x4a, 0xea, 0x2f, 0xd6, 0x94, 0xd9, 0x38, 0xea, 0x6e, 0xc8, 0x96, 0xcc, 0x8e, 0x30, 0x58, 0xe6, + 0x3d, 0x8e, 0x59, 0xd9, 0x3f, 0x1f, 0x87, 0xfa, 0x8b, 0x35, 0x65, 0xb4, 0xa3, 0xf6, 0xdf, 0x00, + 0x1b, 0xc3, 0xcd, 0x9c, 0xc7, 0xc0, 0xf7, 0x5e, 0xe6, 0x3e, 0x7c, 0x02, 0xca, 0xb5, 0x0d, 0x27, + 0x8c, 0xc7, 0x06, 0xd9, 0xa2, 0x51, 0xab, 0x78, 0x86, 0x36, 0x62, 0x0e, 0x43, 0x8f, 0x43, 0x31, + 0x24, 0xeb, 0x2c, 0xfa, 0xd5, 0x88, 0x8b, 0xc2, 0x64, 0x1d, 0xd3, 0x76, 0xfb, 0x97, 0x0b, 0x49, + 0xb5, 0x2d, 0xf9, 0xde, 0x7c, 0xb5, 0xd7, 0xda, 0x61, 0x24, 0xcd, 0x5f, 0xc6, 0x6a, 0x67, 0xcd, + 0x58, 0xc2, 0xd1, 0x27, 0x2c, 0xe8, 0xbf, 0x13, 0x05, 0xbe, 0x4f, 0x62, 0x21, 0x22, 0x6f, 0xe5, + 0x3c, 0x15, 0xd7, 0x78, 0xef, 0x7a, 0x0c, 0xa2, 0x01, 0x4b, 0xba, 0x74, 0xb8, 0x64, 0xbb, 0xe6, + 0xb5, 0xeb, 0x1d, 0xa1, 0x2e, 0x97, 0x79, 0x33, 0x96, 0x70, 0x8a, 0xea, 0xfa, 0x1c, 0xb5, 0x94, + 0x44, 0x9d, 0xf7, 0x05, 0xaa, 0x80, 0xdb, 0xdf, 0xe8, 0x87, 0xb3, 0x99, 0x9b, 0x83, 0x2a, 0x54, + 0x4c, 0x65, 0xb9, 0xe2, 0x7a, 0x44, 0x06, 0x79, 0x31, 0x85, 0xea, 0x96, 0x6a, 0xc5, 0x06, 0x06, + 0xfa, 0x69, 0x80, 0x96, 0x13, 0x3a, 0x4d, 0xa2, 0xcc, 0xd3, 0x47, 0xd6, 0x5b, 0xe8, 0x38, 0x96, + 0x65, 0x9f, 0xfa, 0x88, 0xae, 0x9a, 0x22, 0x6c, 0x90, 0x44, 0xcf, 0xc3, 0x40, 0x48, 0x3c, 0xe2, + 0x44, 0x2c, 0x78, 0x3a, 0x9d, 0x09, 0x82, 0x35, 0x08, 0x9b, 0x78, 0xe8, 0x49, 0x15, 0x0f, 0x97, + 0x8a, 0x0b, 0x4a, 0xc6, 0xc4, 0xa1, 0x37, 0x2c, 0x18, 0x5e, 0x77, 0x3d, 0xa2, 0xa9, 0x8b, 0xbc, + 0x8d, 0xa5, 0xa3, 0xbf, 0xe4, 0x15, 0xb3, 0x5f, 0xcd, 0x21, 0x13, 0xcd, 0x11, 0x4e, 0x91, 0xa7, + 0x9f, 0x79, 0x8b, 0x84, 0x8c, 0xb5, 0xf6, 0x25, 0x3f, 0xf3, 0x2d, 0xde, 0x8c, 0x25, 0x1c, 0x4d, + 0xc1, 0x48, 0xcb, 0x89, 0xa2, 0x99, 0x90, 0xd4, 0x89, 0x1f, 0xbb, 0x8e, 0xc7, 0xb3, 0x2a, 0x2a, + 0x3a, 0xaa, 0x7a, 0x39, 0x09, 0xc6, 0x69, 0x7c, 0xf4, 0x7e, 0x78, 0x94, 0xdb, 0x7f, 0x16, 0xdd, + 0x28, 0x72, 0xfd, 0x86, 0x5e, 0x06, 0xc2, 0x0c, 0x36, 0x2e, 0xba, 0x7a, 0x74, 0x3e, 0x1b, 0x0d, + 0x77, 0x7b, 0x1e, 0x3d, 0x0d, 0x95, 0x68, 0xd3, 0x6d, 0xcd, 0x84, 0xf5, 0x88, 0xf9, 0x7e, 0x2a, + 0xda, 0xe8, 0xba, 0x22, 0xda, 0xb1, 0xc2, 0x40, 0x35, 0x18, 0xe4, 0x9f, 0x84, 0x07, 0xf4, 0x09, + 0xfe, 0xf8, 0x4c, 0x57, 0x31, 0x2d, 0x92, 0x04, 0x27, 0xb0, 0x73, 0xf7, 0xb2, 0xf4, 0x44, 0x71, + 0xc7, 0xc9, 0x2d, 0xa3, 0x1b, 0x9c, 0xe8, 0x34, 0x79, 0x62, 0x1b, 0xe8, 0xe1, 0xc4, 0xf6, 0x3c, + 0x0c, 0x6c, 0xb6, 0xd7, 0x88, 0x98, 0x79, 0xc1, 0xb6, 0xd4, 0xea, 0xbb, 0xae, 0x41, 0xd8, 0xc4, + 0x63, 0xb1, 0x94, 0x2d, 0x57, 0xfc, 0x8b, 0xc6, 0x86, 0x8c, 0x58, 0xca, 0xe5, 0x79, 0xd9, 0x8c, + 0x4d, 0x1c, 0xfb, 0x17, 0x0b, 0x49, 0xa3, 0x84, 0xc9, 0x3f, 0x50, 0x44, 0xb9, 0x44, 0x7c, 0xcb, + 0x09, 0xa5, 0x2e, 0x71, 0xc4, 0xbc, 0x14, 0xd1, 0xef, 0x2d, 0x27, 0x34, 0xf9, 0x0d, 0x23, 0x80, + 0x25, 0x25, 0x74, 0x07, 0x4a, 0xb1, 0xe7, 0xe4, 0x94, 0xc8, 0x66, 0x50, 0xd4, 0x36, 0xa2, 0x85, + 0xa9, 0x08, 0x33, 0x1a, 0xe8, 0x31, 0x7a, 0x30, 0x5a, 0x93, 0x4e, 0x2c, 0x71, 0x96, 0x59, 0x8b, + 0x30, 0x6b, 0xb5, 0xff, 0x6c, 0x20, 0x83, 0xe5, 0x2b, 0x19, 0x8b, 0x2e, 0x01, 0xd0, 0x2f, 0xb6, + 0x1c, 0x92, 0x75, 0x77, 0x5b, 0xe8, 0x38, 0x8a, 0xad, 0xdc, 0x50, 0x10, 0x6c, 0x60, 0xc9, 0x67, + 0x56, 0xda, 0xeb, 0xf4, 0x99, 0x42, 0xe7, 0x33, 0x1c, 0x82, 0x0d, 0x2c, 0xf4, 0x1c, 0xf4, 0xb9, + 0x4d, 0xa7, 0xa1, 0x62, 0x6c, 0x1f, 0xa3, 0xfc, 0x64, 0x9e, 0xb5, 0xdc, 0xdf, 0x1d, 0x1f, 0x56, + 0x03, 0x62, 0x4d, 0x58, 0xe0, 0xa2, 0x5f, 0xb3, 0x60, 0xb0, 0x16, 0x34, 0x9b, 0x81, 0xcf, 0x4f, + 0xa6, 0xe2, 0x98, 0x7d, 0xe7, 0xb8, 0x34, 0x90, 0x89, 0x19, 0x83, 0x18, 0x3f, 0x67, 0xab, 0x8c, + 0x3b, 0x13, 0x84, 0x13, 0xa3, 0x32, 0xd9, 0x4e, 0x79, 0x1f, 0xb6, 0xf3, 0x5b, 0x16, 0x8c, 0xf2, + 0x67, 0x8d, 0x03, 0xb3, 0x48, 0x2e, 0x0b, 0x8e, 0xf9, 0xb5, 0x3a, 0x6c, 0x08, 0xca, 0x8e, 0xda, + 0x01, 0xc7, 0x9d, 0x83, 0x44, 0x73, 0x30, 0xba, 0x1e, 0x84, 0x35, 0x62, 0x4e, 0x84, 0xe0, 0x99, + 0xaa, 0xa3, 0x2b, 0x69, 0x04, 0xdc, 0xf9, 0x0c, 0xba, 0x05, 0x8f, 0x18, 0x8d, 0xe6, 0x3c, 0x70, + 0xb6, 0x79, 0x41, 0xf4, 0xf6, 0xc8, 0x95, 0x4c, 0x2c, 0xdc, 0xe5, 0xe9, 0x24, 0x87, 0xaa, 0xf6, + 0xc0, 0xa1, 0x5e, 0x85, 0x73, 0xb5, 0xce, 0x99, 0xd9, 0x8a, 0xda, 0x6b, 0x11, 0x67, 0xa2, 0x95, + 0xe9, 0x1f, 0x10, 0x1d, 0x9c, 0x9b, 0xe9, 0x86, 0x88, 0xbb, 0xf7, 0x81, 0x3e, 0x02, 0x95, 0x90, + 0xb0, 0xaf, 0x12, 0x89, 0x4c, 0xab, 0x23, 0x1a, 0x12, 0xb4, 0x72, 0xcc, 0xbb, 0xd5, 0x62, 0x41, + 0x34, 0x44, 0x58, 0x51, 0x44, 0x77, 0xa1, 0xbf, 0xe5, 0xc4, 0xb5, 0x0d, 0x91, 0x5f, 0x75, 0x64, + 0xb3, 0xb7, 0x22, 0xce, 0xbc, 0x14, 0x46, 0x46, 0x36, 0x27, 0x82, 0x25, 0x35, 0xaa, 0x28, 0xd5, + 0x82, 0x66, 0x2b, 0xf0, 0x89, 0x1f, 0x4b, 0x0e, 0x3e, 0xcc, 0x5d, 0x09, 0xb2, 0x15, 0x1b, 0x18, + 0x68, 0x19, 0xce, 0x30, 0xb3, 0xda, 0x6d, 0x37, 0xde, 0x08, 0xda, 0xb1, 0x3c, 0x25, 0x8e, 0x0d, + 0x27, 0x9d, 0x49, 0x0b, 0x19, 0x38, 0x38, 0xf3, 0xc9, 0xb4, 0xec, 0x19, 0x39, 0x9c, 0xec, 0x39, + 0xb5, 0xbf, 0xec, 0x39, 0xff, 0x5e, 0x18, 0xed, 0x60, 0x1a, 0x07, 0xb2, 0x9d, 0xcd, 0xc2, 0x23, + 0xd9, 0xdb, 0xf3, 0x40, 0x16, 0xb4, 0xdf, 0x4c, 0x85, 0x50, 0x1b, 0xa7, 0x89, 0x1e, 0xac, 0xb1, + 0x0e, 0x14, 0x89, 0xbf, 0x25, 0xa4, 0xd5, 0x95, 0xa3, 0xad, 0x92, 0xcb, 0xfe, 0x16, 0xe7, 0x2e, + 0xcc, 0xe4, 0x74, 0xd9, 0xdf, 0xc2, 0xb4, 0x6f, 0xf4, 0x25, 0x2b, 0xa1, 0x0d, 0x73, 0x1b, 0xee, + 0x87, 0x8e, 0xe5, 0xf8, 0xd4, 0xb3, 0x82, 0x6c, 0xff, 0xcb, 0x02, 0x5c, 0xdc, 0xaf, 0x93, 0x1e, + 0xa6, 0xef, 0x09, 0xe8, 0x8b, 0x58, 0x50, 0x84, 0x60, 0xff, 0x03, 0x74, 0x57, 0xf0, 0x30, 0x89, + 0x57, 0xb1, 0x00, 0x21, 0x0f, 0x8a, 0x4d, 0xa7, 0x25, 0x4c, 0x7b, 0xf3, 0x47, 0xcd, 0xc9, 0xa2, + 0xff, 0x1d, 0x6f, 0xd1, 0x69, 0xf1, 0xe5, 0x69, 0x34, 0x60, 0x4a, 0x06, 0xc5, 0x50, 0x76, 0xc2, + 0xd0, 0x91, 0x1e, 0xf8, 0xeb, 0xf9, 0xd0, 0x9b, 0xa2, 0x5d, 0x72, 0x07, 0x66, 0xa2, 0x09, 0x73, + 0x62, 0xf6, 0xe7, 0xfa, 0x13, 0x79, 0x49, 0x2c, 0xac, 0x22, 0x82, 0x3e, 0x61, 0xd1, 0xb3, 0xf2, + 0x4e, 0x85, 0xe3, 0x89, 0xa5, 0xec, 0xb0, 0x2c, 0xd2, 0xf3, 0x05, 0x29, 0xf4, 0x59, 0x8b, 0x25, + 0xc1, 0xcb, 0x5c, 0x2d, 0x71, 0x44, 0x3d, 0x9e, 0x9c, 0x7c, 0x33, 0xb5, 0x5e, 0x36, 0x62, 0x93, + 0xba, 0x28, 0x66, 0xc1, 0x54, 0xf3, 0xce, 0x62, 0x16, 0x4c, 0xd5, 0x96, 0x70, 0xb4, 0x9d, 0x11, + 0x3e, 0x91, 0x43, 0x22, 0x75, 0x0f, 0x01, 0x13, 0x5f, 0xb3, 0x60, 0xd4, 0x4d, 0xfb, 0xc1, 0xc5, + 0x81, 0xee, 0x76, 0x3e, 0xe6, 0xb7, 0x4e, 0x37, 0xbb, 0x52, 0x1c, 0x3a, 0x40, 0xb8, 0x73, 0x30, + 0xa8, 0x0e, 0x25, 0xd7, 0x5f, 0x0f, 0x84, 0xba, 0x34, 0x7d, 0xb4, 0x41, 0xcd, 0xfb, 0xeb, 0x81, + 0xde, 0xcd, 0xf4, 0x1f, 0x66, 0xbd, 0xa3, 0x05, 0x38, 0x23, 0x53, 0x53, 0xae, 0xba, 0x51, 0x1c, + 0x84, 0x3b, 0x0b, 0x6e, 0xd3, 0x8d, 0x99, 0xaa, 0x53, 0x9c, 0x1e, 0xa3, 0x92, 0x08, 0x67, 0xc0, + 0x71, 0xe6, 0x53, 0xe8, 0x75, 0xe8, 0x97, 0xbe, 0xe7, 0x4a, 0x1e, 0x87, 0xe3, 0xce, 0xf5, 0xaf, + 0x16, 0xd3, 0x8a, 0x70, 0x3e, 0x4b, 0x82, 0xf6, 0x1b, 0x03, 0xd0, 0xe9, 0x22, 0x4f, 0xfa, 0xc3, + 0xad, 0x93, 0xf6, 0x87, 0xd3, 0xa3, 0x51, 0xa4, 0x5d, 0xd9, 0x39, 0xac, 0x6d, 0x41, 0x55, 0xbb, + 0x29, 0x77, 0xfc, 0x1a, 0x66, 0x34, 0x50, 0x08, 0x7d, 0x1b, 0xc4, 0xf1, 0xe2, 0x8d, 0x7c, 0x3c, + 0x2a, 0x57, 0x59, 0x5f, 0xe9, 0x7c, 0x32, 0xde, 0x8a, 0x05, 0x25, 0xb4, 0x0d, 0xfd, 0x1b, 0x7c, + 0x01, 0x88, 0xd3, 0xca, 0xe2, 0x51, 0x27, 0x37, 0xb1, 0xaa, 0xf4, 0xe7, 0x16, 0x0d, 0x58, 0x92, + 0x63, 0xb1, 0x57, 0x46, 0x74, 0x08, 0xdf, 0xba, 0xf9, 0xa5, 0xd2, 0xf5, 0x1e, 0x1a, 0xf2, 0x61, + 0x18, 0x0c, 0x49, 0x2d, 0xf0, 0x6b, 0xae, 0x47, 0xea, 0x53, 0xd2, 0x5b, 0x72, 0x90, 0x0c, 0x2a, + 0x66, 0x8c, 0xc0, 0x46, 0x1f, 0x38, 0xd1, 0x23, 0xfa, 0x8c, 0x05, 0xc3, 0x2a, 0xfd, 0x98, 0x7e, + 0x10, 0x22, 0xac, 0xe2, 0x0b, 0x39, 0x25, 0x3b, 0xb3, 0x3e, 0xa7, 0xd1, 0xbd, 0xdd, 0xf1, 0xe1, + 0x64, 0x1b, 0x4e, 0xd1, 0x45, 0x2f, 0x03, 0x04, 0x6b, 0x3c, 0xc0, 0x6a, 0x2a, 0x16, 0x26, 0xf2, + 0x83, 0xbc, 0xea, 0x30, 0xcf, 0xc4, 0x94, 0x3d, 0x60, 0xa3, 0x37, 0x74, 0x1d, 0x80, 0x6f, 0x9b, + 0xd5, 0x9d, 0x96, 0x3c, 0xd2, 0xc8, 0x14, 0x38, 0x58, 0x51, 0x90, 0xfb, 0xbb, 0xe3, 0x9d, 0x26, + 0x4b, 0x16, 0x45, 0x62, 0x3c, 0x8e, 0x7e, 0x0a, 0xfa, 0xa3, 0x76, 0xb3, 0xe9, 0x28, 0x03, 0x7a, + 0x8e, 0xb9, 0x9d, 0xbc, 0x5f, 0x83, 0x15, 0xf1, 0x06, 0x2c, 0x29, 0xa2, 0x3b, 0x94, 0xa9, 0x46, + 0xc2, 0x96, 0xca, 0x76, 0x11, 0xd7, 0x09, 0xb8, 0x21, 0xe9, 0x5d, 0x52, 0xc5, 0xc7, 0x19, 0x38, + 0xf7, 0x77, 0xc7, 0x1f, 0x49, 0xb6, 0x2f, 0x04, 0x22, 0xdb, 0x32, 0xb3, 0x4f, 0x74, 0x4d, 0x16, + 0xf1, 0xa1, 0xaf, 0x2d, 0x6b, 0x4b, 0x3c, 0xa5, 0x8b, 0xf8, 0xb0, 0xe6, 0xee, 0x73, 0x66, 0x3e, + 0x8c, 0x16, 0xe1, 0x74, 0x2d, 0xf0, 0xe3, 0x30, 0xf0, 0x3c, 0x5e, 0xc4, 0x8a, 0x9f, 0x2e, 0xb9, + 0x81, 0xfd, 0xed, 0x62, 0xd8, 0xa7, 0x67, 0x3a, 0x51, 0x70, 0xd6, 0x73, 0xb6, 0x9f, 0x74, 0x76, + 0x89, 0xc9, 0x79, 0x0e, 0x06, 0xc9, 0x76, 0x4c, 0x42, 0xdf, 0xf1, 0x6e, 0xe2, 0x05, 0x69, 0x5a, + 0x66, 0x7b, 0xe0, 0xb2, 0xd1, 0x8e, 0x13, 0x58, 0xc8, 0x56, 0x26, 0x15, 0x23, 0x83, 0x98, 0x9b, + 0x54, 0xa4, 0x01, 0xc5, 0xfe, 0xdf, 0x85, 0x84, 0x42, 0xf6, 0x40, 0x5c, 0x6b, 0xac, 0x14, 0x8a, + 0xac, 0x19, 0xc3, 0x00, 0xe2, 0xa0, 0x91, 0x27, 0x65, 0x55, 0x0a, 0x65, 0xc9, 0x24, 0x84, 0x93, + 0x74, 0xd1, 0x26, 0x94, 0x37, 0x82, 0x28, 0x96, 0xc7, 0x8f, 0x23, 0x9e, 0x74, 0xae, 0x06, 0x51, + 0xcc, 0xb4, 0x08, 0xf5, 0xda, 0xb4, 0x25, 0xc2, 0x9c, 0x86, 0xfd, 0x9f, 0xac, 0x84, 0x23, 0xe1, + 0x36, 0x8b, 0xc2, 0xde, 0x22, 0x3e, 0xdd, 0xd6, 0x66, 0xdc, 0xd7, 0x8f, 0xa5, 0x72, 0x5a, 0xdf, + 0xd1, 0xad, 0x46, 0xdb, 0x5d, 0xda, 0xc3, 0x04, 0xeb, 0xc2, 0x08, 0x11, 0xfb, 0xb8, 0x95, 0x4c, + 0x4e, 0x2e, 0xe4, 0x71, 0xc0, 0x30, 0x13, 0xf4, 0xf7, 0xcd, 0x73, 0xb6, 0xbf, 0x64, 0x41, 0xff, + 0xb4, 0x53, 0xdb, 0x0c, 0xd6, 0xd7, 0xd1, 0xd3, 0x50, 0xa9, 0xb7, 0x43, 0x33, 0x4f, 0x5a, 0x99, + 0x28, 0x66, 0x45, 0x3b, 0x56, 0x18, 0x74, 0x0d, 0xaf, 0x3b, 0x35, 0x99, 0xa6, 0x5f, 0xe4, 0x6b, + 0xf8, 0x0a, 0x6b, 0xc1, 0x02, 0x42, 0xcf, 0xf2, 0x4d, 0x67, 0x5b, 0x3e, 0x9c, 0xf6, 0x62, 0x2c, + 0x6a, 0x10, 0x36, 0xf1, 0xec, 0x7f, 0x62, 0xc1, 0xd8, 0xb4, 0x13, 0xb9, 0xb5, 0xa9, 0x76, 0xbc, + 0x31, 0xed, 0xc6, 0x6b, 0xed, 0xda, 0x26, 0x89, 0x79, 0x6d, 0x06, 0x3a, 0xca, 0x76, 0x44, 0xb7, + 0x92, 0x3a, 0xd7, 0xa9, 0x51, 0xde, 0x14, 0xed, 0x58, 0x61, 0xa0, 0xd7, 0x61, 0xa0, 0xe5, 0x44, + 0xd1, 0xdd, 0x20, 0xac, 0x63, 0xb2, 0x9e, 0x4f, 0x65, 0x94, 0x15, 0x52, 0x0b, 0x49, 0x8c, 0xc9, + 0xba, 0xf0, 0xf8, 0xeb, 0xfe, 0xb1, 0x49, 0xcc, 0xfe, 0x79, 0x0b, 0xce, 0x4c, 0x13, 0x27, 0x24, + 0x21, 0x2b, 0xa4, 0xa2, 0x5e, 0x04, 0xbd, 0x06, 0x95, 0x98, 0xb6, 0xd0, 0x11, 0x59, 0xf9, 0x8e, + 0x88, 0xf9, 0xea, 0x57, 0x45, 0xe7, 0x58, 0x91, 0xb1, 0xbf, 0x60, 0xc1, 0xb9, 0xac, 0xb1, 0xcc, + 0x78, 0x41, 0xbb, 0xfe, 0x20, 0x06, 0xf4, 0x57, 0x2d, 0x18, 0x64, 0xfe, 0xcf, 0x59, 0x12, 0x3b, + 0xae, 0xd7, 0x51, 0xfb, 0xcc, 0xea, 0xb1, 0xf6, 0xd9, 0x45, 0x28, 0x6d, 0x04, 0x4d, 0x92, 0xf6, + 0xdd, 0x5f, 0x0d, 0xe8, 0x11, 0x9f, 0x42, 0xd0, 0xb3, 0x74, 0x11, 0xba, 0x7e, 0xec, 0xd0, 0xed, + 0x28, 0x8d, 0xd8, 0x23, 0x7c, 0x01, 0xaa, 0x66, 0x6c, 0xe2, 0xd8, 0xff, 0xb8, 0x0a, 0xfd, 0x22, + 0xd0, 0xa4, 0xe7, 0x5a, 0x21, 0xd2, 0xd6, 0x50, 0xe8, 0x6a, 0x6b, 0x88, 0xa0, 0xaf, 0xc6, 0x8a, + 0x30, 0x0a, 0x95, 0xf6, 0x7a, 0x2e, 0x91, 0x49, 0xbc, 0xae, 0xa3, 0x1e, 0x16, 0xff, 0x8f, 0x05, + 0x29, 0xf4, 0x45, 0x0b, 0x46, 0x6a, 0x81, 0xef, 0x93, 0x9a, 0xd6, 0xb7, 0x4a, 0x79, 0x04, 0xa0, + 0xcc, 0x24, 0x3b, 0xd5, 0xce, 0xb7, 0x14, 0x00, 0xa7, 0xc9, 0xa3, 0x17, 0x61, 0x88, 0xcf, 0xd9, + 0xad, 0x84, 0xe5, 0x5d, 0x97, 0xc4, 0x32, 0x81, 0x38, 0x89, 0x8b, 0x26, 0xb8, 0x07, 0x43, 0x14, + 0x9f, 0xea, 0xd3, 0x06, 0x4a, 0xa3, 0xec, 0x94, 0x81, 0x81, 0x42, 0x40, 0x21, 0x59, 0x0f, 0x49, + 0xb4, 0x21, 0x02, 0x71, 0x98, 0xae, 0xd7, 0x7f, 0xb8, 0xc2, 0x00, 0xb8, 0xa3, 0x27, 0x9c, 0xd1, + 0x3b, 0xda, 0x14, 0x87, 0xdd, 0x4a, 0x1e, 0xfc, 0x5c, 0x7c, 0xe6, 0xae, 0x67, 0xde, 0x71, 0x28, + 0x47, 0x1b, 0x4e, 0x58, 0x67, 0x3a, 0x66, 0x91, 0x27, 0xa3, 0xad, 0xd0, 0x06, 0xcc, 0xdb, 0xd1, + 0x2c, 0x9c, 0x4a, 0x15, 0xf4, 0x8a, 0x84, 0x85, 0x5c, 0x25, 0x1e, 0xa5, 0x4a, 0x81, 0x45, 0xb8, + 0xe3, 0x09, 0xd3, 0x10, 0x32, 0xb0, 0x8f, 0x21, 0x64, 0x47, 0x85, 0x7b, 0x72, 0xdb, 0xf5, 0x4b, + 0xb9, 0x4c, 0x40, 0x4f, 0xb1, 0x9d, 0x9f, 0x4f, 0xc5, 0x76, 0x0e, 0xb1, 0x01, 0xdc, 0xca, 0x67, + 0x00, 0x07, 0x0f, 0xe4, 0x7c, 0x90, 0x81, 0x99, 0xff, 0xd3, 0x02, 0xf9, 0x5d, 0x67, 0x9c, 0xda, + 0x06, 0xa1, 0x4b, 0x06, 0xbd, 0x07, 0x86, 0xd5, 0x71, 0x7e, 0x26, 0x68, 0xfb, 0x3c, 0x26, 0xb3, + 0xa8, 0xbd, 0xf4, 0x38, 0x01, 0xc5, 0x29, 0x6c, 0x34, 0x09, 0x55, 0x3a, 0x4f, 0xfc, 0x51, 0x2e, + 0xf7, 0x95, 0xc9, 0x60, 0x6a, 0x79, 0x5e, 0x3c, 0xa5, 0x71, 0x50, 0x00, 0xa3, 0x9e, 0x13, 0xc5, + 0x6c, 0x04, 0xf4, 0x74, 0x7f, 0xc8, 0xb2, 0x1c, 0x2c, 0xbb, 0x65, 0x21, 0xdd, 0x11, 0xee, 0xec, + 0xdb, 0xfe, 0x76, 0x09, 0x86, 0x12, 0x9c, 0xf1, 0x80, 0x0a, 0xc3, 0xd3, 0x50, 0x91, 0x32, 0x3c, + 0x5d, 0x7f, 0x48, 0x09, 0x7a, 0x85, 0x41, 0x85, 0xd6, 0x9a, 0x96, 0xaa, 0x69, 0x05, 0xc7, 0x10, + 0xb8, 0xd8, 0xc4, 0x63, 0x4c, 0x39, 0xf6, 0xa2, 0x19, 0xcf, 0x25, 0x7e, 0xcc, 0x87, 0x99, 0x0f, + 0x53, 0x5e, 0x5d, 0x58, 0x31, 0x3b, 0xd5, 0x4c, 0x39, 0x05, 0xc0, 0x69, 0xf2, 0xe8, 0x53, 0x16, + 0x0c, 0x39, 0x77, 0x23, 0x5d, 0x29, 0x58, 0x44, 0x71, 0x1e, 0x51, 0x48, 0x25, 0x8a, 0x0f, 0x73, + 0xf3, 0x73, 0xa2, 0x09, 0x27, 0x89, 0xa2, 0x37, 0x2d, 0x40, 0x64, 0x9b, 0xd4, 0x64, 0x9c, 0xa9, + 0x18, 0x4b, 0x5f, 0x1e, 0xa7, 0xde, 0xcb, 0x1d, 0xfd, 0x72, 0xae, 0xde, 0xd9, 0x8e, 0x33, 0xc6, + 0x60, 0xff, 0x83, 0xa2, 0xda, 0x50, 0x3a, 0xb4, 0xd9, 0x31, 0x42, 0x2c, 0xad, 0xc3, 0x87, 0x58, + 0xea, 0x10, 0x91, 0xce, 0x6c, 0xdf, 0x44, 0x72, 0x60, 0xe1, 0x01, 0x25, 0x07, 0xfe, 0x8c, 0x95, + 0xa8, 0xb4, 0x35, 0x70, 0xe9, 0xe5, 0x7c, 0xc3, 0xaa, 0x27, 0x78, 0xf8, 0x4a, 0x8a, 0xbb, 0x27, + 0xa3, 0x96, 0x28, 0x37, 0x35, 0xd0, 0x0e, 0xc4, 0x0d, 0xff, 0x4d, 0x11, 0x06, 0x0c, 0x49, 0x9a, + 0xa9, 0x16, 0x59, 0x0f, 0x99, 0x5a, 0x54, 0x38, 0x80, 0x5a, 0xf4, 0xd3, 0x50, 0xad, 0x49, 0x2e, + 0x9f, 0x4f, 0xad, 0xe9, 0xb4, 0xec, 0xd0, 0x8c, 0x5e, 0x35, 0x61, 0x4d, 0x13, 0xcd, 0x25, 0x52, + 0xca, 0x84, 0x84, 0x28, 0x31, 0x09, 0x91, 0x95, 0xf3, 0x25, 0x24, 0x45, 0xe7, 0x33, 0x69, 0x47, + 0x6e, 0xb9, 0x87, 0x20, 0xa2, 0x6f, 0x5b, 0xea, 0xe3, 0x9e, 0x40, 0xed, 0x90, 0x3b, 0xc9, 0xda, + 0x21, 0x97, 0x73, 0x99, 0xe6, 0x2e, 0x45, 0x43, 0x6e, 0x40, 0xff, 0x4c, 0xd0, 0x6c, 0x3a, 0x7e, + 0x1d, 0xfd, 0x10, 0xf4, 0xd7, 0xf8, 0x4f, 0x61, 0x64, 0x62, 0xae, 0x4a, 0x01, 0xc5, 0x12, 0x86, + 0x1e, 0x83, 0x92, 0x13, 0x36, 0xa4, 0x61, 0x89, 0x85, 0x14, 0x4d, 0x85, 0x8d, 0x08, 0xb3, 0x56, + 0xfb, 0x37, 0x4a, 0xc0, 0x3c, 0xf9, 0x4e, 0x48, 0xea, 0xab, 0x01, 0xab, 0x75, 0x79, 0xac, 0x0e, + 0x3e, 0x7d, 0x58, 0x7a, 0x98, 0x9d, 0x7c, 0x86, 0xa3, 0xa7, 0x78, 0xc2, 0x8e, 0x9e, 0x2e, 0xbe, + 0xbb, 0xd2, 0x43, 0xe4, 0xbb, 0xb3, 0x3f, 0x67, 0x01, 0x52, 0xe1, 0x1f, 0xda, 0xb9, 0x3e, 0x09, + 0x55, 0x15, 0x08, 0x22, 0x14, 0x2b, 0xcd, 0x22, 0x24, 0x00, 0x6b, 0x9c, 0x1e, 0x4e, 0xc8, 0x4f, + 0x48, 0xfe, 0x5d, 0x4c, 0x06, 0x4a, 0x33, 0xae, 0x2f, 0xd8, 0xb9, 0xfd, 0xbb, 0x05, 0x78, 0x84, + 0x8b, 0xe4, 0x45, 0xc7, 0x77, 0x1a, 0xa4, 0x49, 0x47, 0xd5, 0x6b, 0xb8, 0x44, 0x8d, 0x1e, 0xcd, + 0x5c, 0x19, 0xf8, 0x7c, 0xd4, 0xbd, 0xcb, 0xf7, 0x1c, 0xdf, 0x65, 0xf3, 0xbe, 0x1b, 0x63, 0xd6, + 0x39, 0x8a, 0xa0, 0x22, 0x2f, 0x62, 0x10, 0xbc, 0x38, 0x27, 0x42, 0x8a, 0x2d, 0x09, 0xb9, 0x49, + 0xb0, 0x22, 0x44, 0x15, 0x57, 0x2f, 0xa8, 0x6d, 0x62, 0xd2, 0x0a, 0x18, 0xdf, 0x35, 0xe2, 0x4e, + 0x17, 0x44, 0x3b, 0x56, 0x18, 0x76, 0x13, 0x46, 0xe4, 0x1c, 0xb6, 0xae, 0x93, 0x1d, 0x4c, 0xd6, + 0xa9, 0xfc, 0xa9, 0xc9, 0x26, 0xe3, 0x6e, 0x08, 0x25, 0x7f, 0x66, 0x4c, 0x20, 0x4e, 0xe2, 0xca, + 0xaa, 0x9e, 0x85, 0xec, 0xaa, 0x9e, 0xf6, 0xef, 0x5a, 0x90, 0x16, 0x80, 0x46, 0x0d, 0x43, 0x6b, + 0xcf, 0x1a, 0x86, 0x07, 0xa8, 0x02, 0xf8, 0x41, 0x18, 0x70, 0x62, 0xaa, 0xb3, 0xf0, 0x53, 0x7e, + 0xf1, 0x70, 0x1e, 0x9d, 0xc5, 0xa0, 0xee, 0xae, 0xbb, 0xec, 0x74, 0x6f, 0x76, 0x67, 0xff, 0xf7, + 0x12, 0x8c, 0x76, 0x64, 0x25, 0xa1, 0x17, 0x60, 0x50, 0x4d, 0x85, 0xb4, 0x9f, 0x55, 0xcd, 0xd8, + 0x43, 0x0d, 0xc3, 0x09, 0xcc, 0x1e, 0xf6, 0xc3, 0x3c, 0x9c, 0x0e, 0xc9, 0x6b, 0x6d, 0xd2, 0x26, + 0x53, 0xeb, 0x31, 0x09, 0x57, 0x48, 0x2d, 0xf0, 0xeb, 0xbc, 0xd2, 0x66, 0x71, 0xfa, 0xd1, 0x7b, + 0xbb, 0xe3, 0xa7, 0x71, 0x27, 0x18, 0x67, 0x3d, 0x83, 0x5a, 0x30, 0xe4, 0x99, 0x2a, 0xa7, 0x38, + 0x6f, 0x1c, 0x4a, 0x5b, 0x55, 0x4b, 0x22, 0xd1, 0x8c, 0x93, 0x04, 0x92, 0x7a, 0x6b, 0xf9, 0x01, + 0xe9, 0xad, 0x9f, 0xd4, 0x7a, 0x2b, 0x0f, 0x3d, 0xf8, 0x40, 0xce, 0x59, 0x69, 0xc7, 0xad, 0xb8, + 0xbe, 0x04, 0x15, 0x19, 0x96, 0xd5, 0x53, 0x38, 0x93, 0xd9, 0x4f, 0x17, 0x06, 0xfa, 0x24, 0xfc, + 0xe0, 0xe5, 0x30, 0x34, 0x26, 0xf3, 0x46, 0x10, 0x4f, 0x79, 0x5e, 0x70, 0x97, 0xea, 0x04, 0x37, + 0x23, 0x22, 0x0c, 0x3a, 0xf6, 0xfd, 0x02, 0x64, 0x9c, 0x8d, 0xe8, 0x7e, 0xd4, 0x8a, 0x48, 0x62, + 0x3f, 0x1e, 0x4c, 0x19, 0x41, 0xdb, 0x3c, 0x74, 0x8d, 0x8b, 0xdc, 0xf7, 0xe7, 0x7d, 0xb6, 0xd3, + 0xd1, 0x6c, 0x8a, 0x1d, 0xa9, 0x88, 0xb6, 0x4b, 0x00, 0x5a, 0x7f, 0x14, 0xa9, 0x12, 0xca, 0x33, + 0xae, 0xd5, 0x4c, 0x6c, 0x60, 0xd1, 0xa3, 0xbe, 0xeb, 0x47, 0xb1, 0xe3, 0x79, 0x57, 0x5d, 0x3f, + 0x16, 0x36, 0x4b, 0xa5, 0x5b, 0xcc, 0x6b, 0x10, 0x36, 0xf1, 0xce, 0xbf, 0xcb, 0xf8, 0x7e, 0x07, + 0xf9, 0xee, 0x1b, 0x70, 0x6e, 0xce, 0x8d, 0x55, 0x82, 0x8f, 0x5a, 0x6f, 0x54, 0x3d, 0x54, 0x09, + 0x6b, 0x56, 0xd7, 0x84, 0x35, 0x23, 0xc1, 0xa6, 0x90, 0xcc, 0x07, 0x4a, 0x27, 0xd8, 0xd8, 0x2f, + 0xc0, 0x99, 0x39, 0x37, 0xbe, 0xe2, 0x7a, 0xe4, 0x80, 0x44, 0xec, 0x7f, 0xd4, 0x07, 0x83, 0x66, + 0xaa, 0xea, 0x41, 0x72, 0xee, 0xbe, 0x40, 0x35, 0x40, 0xf1, 0x76, 0xae, 0xf2, 0x2b, 0xde, 0x3e, + 0x72, 0xde, 0x6c, 0xf6, 0x8c, 0x19, 0x4a, 0xa0, 0xa6, 0x89, 0xcd, 0x01, 0xa0, 0xbb, 0x50, 0x5e, + 0x67, 0x09, 0x20, 0xc5, 0x3c, 0x82, 0x2f, 0xb2, 0x66, 0x54, 0x6f, 0x47, 0x9e, 0x42, 0xc2, 0xe9, + 0x51, 0xc1, 0x1d, 0x26, 0xb3, 0x0a, 0x8d, 0xc8, 0x60, 0x91, 0x4f, 0xa8, 0x30, 0xba, 0x89, 0x84, + 0xf2, 0x21, 0x44, 0x42, 0x82, 0x41, 0xf7, 0x3d, 0x20, 0x06, 0xcd, 0x92, 0x79, 0xe2, 0x0d, 0xa6, + 0x56, 0x8a, 0x54, 0x86, 0x7e, 0x36, 0x09, 0x46, 0x32, 0x4f, 0x02, 0x8c, 0xd3, 0xf8, 0xe8, 0x63, + 0x8a, 0xc5, 0x57, 0xf2, 0x30, 0xf7, 0x9a, 0x2b, 0xfa, 0xb8, 0xb9, 0xfb, 0xe7, 0x0a, 0x30, 0x3c, + 0xe7, 0xb7, 0x97, 0xe7, 0x96, 0xdb, 0x6b, 0x9e, 0x5b, 0xbb, 0x4e, 0x76, 0x28, 0x0b, 0xdf, 0x24, + 0x3b, 0xf3, 0xb3, 0x62, 0x07, 0xa9, 0x35, 0x73, 0x9d, 0x36, 0x62, 0x0e, 0xa3, 0xcc, 0x68, 0xdd, + 0xf5, 0x1b, 0x24, 0x6c, 0x85, 0xae, 0xb0, 0xc4, 0x1a, 0xcc, 0xe8, 0x8a, 0x06, 0x61, 0x13, 0x8f, + 0xf6, 0x1d, 0xdc, 0xf5, 0x49, 0x98, 0xd6, 0xaf, 0x97, 0x68, 0x23, 0xe6, 0x30, 0x8a, 0x14, 0x87, + 0xed, 0x28, 0x16, 0x8b, 0x51, 0x21, 0xad, 0xd2, 0x46, 0xcc, 0x61, 0x74, 0xa7, 0x47, 0xed, 0x35, + 0x16, 0xdb, 0x92, 0xca, 0x9b, 0x58, 0xe1, 0xcd, 0x58, 0xc2, 0x29, 0xea, 0x26, 0xd9, 0x99, 0xa5, + 0x87, 0xf1, 0x54, 0x66, 0xd7, 0x75, 0xde, 0x8c, 0x25, 0x9c, 0xd5, 0x02, 0x4d, 0x4e, 0xc7, 0xf7, + 0x5c, 0x2d, 0xd0, 0xe4, 0xf0, 0xbb, 0x1c, 0xeb, 0x7f, 0xc5, 0x82, 0x41, 0x33, 0x22, 0x0d, 0x35, + 0x52, 0xba, 0xf0, 0x52, 0x47, 0x29, 0xe9, 0x77, 0x67, 0x5d, 0xe3, 0xd7, 0x70, 0xe3, 0xa0, 0x15, + 0x3d, 0x43, 0xfc, 0x86, 0xeb, 0x13, 0x16, 0x68, 0xc0, 0x23, 0xd9, 0x12, 0xe1, 0x6e, 0x33, 0x41, + 0x9d, 0x1c, 0x42, 0x99, 0xb6, 0x6f, 0xc3, 0x68, 0x47, 0x3a, 0x5f, 0x0f, 0x2a, 0xc8, 0xbe, 0xc9, + 0xd4, 0x36, 0x86, 0x01, 0xda, 0xb1, 0xac, 0x47, 0x35, 0x03, 0xa3, 0x7c, 0x23, 0x51, 0x4a, 0x2b, + 0xb5, 0x0d, 0xd2, 0x54, 0x29, 0x9a, 0xcc, 0xec, 0x7f, 0x2b, 0x0d, 0xc4, 0x9d, 0xf8, 0xf6, 0xe7, + 0x2d, 0x18, 0x4a, 0x64, 0x58, 0xe6, 0xa4, 0x2c, 0xb1, 0x9d, 0x16, 0xb0, 0x00, 0x49, 0x16, 0x25, + 0x5e, 0x64, 0xc2, 0x54, 0xef, 0x34, 0x0d, 0xc2, 0x26, 0x9e, 0xfd, 0xa5, 0x02, 0x54, 0x64, 0x90, + 0x49, 0x0f, 0x43, 0xf9, 0xac, 0x05, 0x43, 0xca, 0xd5, 0xc2, 0x6c, 0x78, 0x85, 0x3c, 0x72, 0x4e, + 0xe8, 0x08, 0x94, 0x15, 0xc0, 0x5f, 0x0f, 0xb4, 0xe6, 0x8e, 0x4d, 0x62, 0x38, 0x49, 0x1b, 0xdd, + 0x02, 0x88, 0x76, 0xa2, 0x98, 0x34, 0x0d, 0x6b, 0xa2, 0x6d, 0xec, 0xb8, 0x89, 0x5a, 0x10, 0x12, + 0xba, 0xbf, 0x6e, 0x04, 0x75, 0xb2, 0xa2, 0x30, 0xb5, 0x0a, 0xa5, 0xdb, 0xb0, 0xd1, 0x93, 0xfd, + 0x77, 0x0a, 0x70, 0x2a, 0x3d, 0x24, 0xf4, 0x01, 0x18, 0x94, 0xd4, 0x8d, 0x53, 0xa7, 0x8c, 0xac, + 0x19, 0xc4, 0x06, 0xec, 0xfe, 0xee, 0xf8, 0x78, 0xe7, 0x95, 0x90, 0x13, 0x26, 0x0a, 0x4e, 0x74, + 0xc6, 0xfd, 0x5d, 0xc2, 0x31, 0x3b, 0xbd, 0x33, 0xd5, 0x6a, 0x09, 0xa7, 0x95, 0xe1, 0xef, 0x32, + 0xa1, 0x38, 0x85, 0x8d, 0x96, 0xe1, 0x8c, 0xd1, 0x72, 0x83, 0xb8, 0x8d, 0x8d, 0xb5, 0x20, 0x94, + 0x27, 0xb0, 0xc7, 0x74, 0xec, 0x5b, 0x27, 0x0e, 0xce, 0x7c, 0x92, 0x4a, 0xfb, 0x9a, 0xd3, 0x72, + 0x6a, 0x6e, 0xbc, 0x23, 0xcc, 0xa3, 0x8a, 0x37, 0xcd, 0x88, 0x76, 0xac, 0x30, 0xec, 0x45, 0x28, + 0xf5, 0xb8, 0x82, 0x7a, 0xd2, 0xfc, 0x5f, 0x82, 0x0a, 0xed, 0x4e, 0xaa, 0x77, 0x79, 0x74, 0x19, + 0x40, 0x45, 0xde, 0x14, 0x84, 0x6c, 0x28, 0xba, 0x8e, 0x74, 0x29, 0xaa, 0xd7, 0x9a, 0x8f, 0xa2, + 0x36, 0x3b, 0x4c, 0x53, 0x20, 0x7a, 0x02, 0x8a, 0x64, 0xbb, 0x95, 0xf6, 0x1d, 0x5e, 0xde, 0x6e, + 0xb9, 0x21, 0x89, 0x28, 0x12, 0xd9, 0x6e, 0xa1, 0xf3, 0x50, 0x70, 0xeb, 0x42, 0x48, 0x81, 0xc0, + 0x29, 0xcc, 0xcf, 0xe2, 0x82, 0x5b, 0xb7, 0xb7, 0xa1, 0xaa, 0xae, 0x26, 0x42, 0x9b, 0x92, 0x77, + 0x5b, 0x79, 0x44, 0x85, 0xc9, 0x7e, 0xbb, 0x70, 0xed, 0x36, 0x80, 0xce, 0xe7, 0xcc, 0x8b, 0xbf, + 0x5c, 0x84, 0x52, 0x2d, 0x10, 0x69, 0xf0, 0x15, 0xdd, 0x0d, 0x63, 0xda, 0x0c, 0x62, 0xdf, 0x86, + 0xe1, 0xeb, 0x7e, 0x70, 0x97, 0x5d, 0x8c, 0xc0, 0xea, 0x00, 0xd2, 0x8e, 0xd7, 0xe9, 0x8f, 0xb4, + 0x8a, 0xc0, 0xa0, 0x98, 0xc3, 0x54, 0x85, 0xb2, 0x42, 0xb7, 0x0a, 0x65, 0xf6, 0xc7, 0x2d, 0x18, + 0x54, 0x89, 0x61, 0x73, 0x5b, 0x9b, 0xb4, 0xdf, 0x46, 0x18, 0xb4, 0x5b, 0xe9, 0x7e, 0xd9, 0xe5, + 0x61, 0x98, 0xc3, 0xcc, 0x8c, 0xc9, 0xc2, 0x3e, 0x19, 0x93, 0x17, 0xa1, 0xb4, 0xe9, 0xfa, 0xf5, + 0xf4, 0x6d, 0x38, 0xd7, 0x5d, 0xbf, 0x8e, 0x19, 0x84, 0x0e, 0xe1, 0x94, 0x1a, 0x82, 0x14, 0x08, + 0x2f, 0xc0, 0xe0, 0x5a, 0xdb, 0xf5, 0xea, 0xb2, 0xc0, 0x61, 0xca, 0xa2, 0x32, 0x6d, 0xc0, 0x70, + 0x02, 0x93, 0x9e, 0xeb, 0xd6, 0x5c, 0xdf, 0x09, 0x77, 0x96, 0xb5, 0x04, 0x52, 0x4c, 0x69, 0x5a, + 0x41, 0xb0, 0x81, 0x65, 0xbf, 0x51, 0x84, 0xe1, 0x64, 0x7a, 0x5c, 0x0f, 0xc7, 0xab, 0x27, 0xa0, + 0xcc, 0x32, 0xe6, 0xd2, 0x9f, 0x96, 0xd7, 0x04, 0xe4, 0x30, 0x14, 0x41, 0x1f, 0x2f, 0x03, 0x92, + 0xcf, 0x4d, 0x52, 0x6a, 0x90, 0xca, 0x0e, 0xc3, 0x42, 0xee, 0x44, 0xe5, 0x11, 0x41, 0x0a, 0x7d, + 0xca, 0x82, 0xfe, 0xa0, 0x65, 0x56, 0xb6, 0x7a, 0x7f, 0x9e, 0xa9, 0x83, 0x22, 0x9f, 0x48, 0x68, + 0xc4, 0xea, 0xd3, 0xcb, 0xcf, 0x21, 0x49, 0x9f, 0xff, 0x71, 0x18, 0x34, 0x31, 0xf7, 0x53, 0x8a, + 0x2b, 0xa6, 0x52, 0xfc, 0x59, 0x73, 0x51, 0x88, 0xe4, 0xc8, 0x1e, 0xb6, 0xdb, 0x4d, 0x28, 0xd7, + 0x54, 0x5c, 0xc2, 0xa1, 0xca, 0xe2, 0xaa, 0xba, 0x1c, 0xcc, 0x37, 0xc5, 0x7b, 0xb3, 0xbf, 0x6d, + 0x19, 0xeb, 0x03, 0x93, 0x68, 0xbe, 0x8e, 0x42, 0x28, 0x36, 0xb6, 0x36, 0x85, 0x2a, 0x7a, 0x2d, + 0xa7, 0xe9, 0x9d, 0xdb, 0xda, 0xd4, 0x6b, 0xdc, 0x6c, 0xc5, 0x94, 0x58, 0x0f, 0xc6, 0xc2, 0x44, + 0x0e, 0x6d, 0x71, 0xff, 0x1c, 0x5a, 0xfb, 0xcd, 0x02, 0x8c, 0x76, 0x2c, 0x2a, 0xf4, 0x3a, 0x94, + 0x43, 0xfa, 0x96, 0xe2, 0xf5, 0x16, 0x72, 0xcb, 0x7a, 0x8d, 0xe6, 0xeb, 0x5a, 0xee, 0x26, 0xdb, + 0x31, 0x27, 0x89, 0xae, 0x01, 0xd2, 0xd1, 0x33, 0xca, 0x52, 0xc9, 0x5f, 0xf9, 0xbc, 0x78, 0x14, + 0x4d, 0x75, 0x60, 0xe0, 0x8c, 0xa7, 0xd0, 0x8b, 0x69, 0x83, 0x67, 0x31, 0x69, 0xce, 0xde, 0xcb, + 0x76, 0x69, 0xff, 0xc3, 0x02, 0x0c, 0x25, 0x0a, 0x8d, 0x21, 0x0f, 0x2a, 0xc4, 0x63, 0xbe, 0x06, + 0x29, 0x6c, 0x8e, 0x5a, 0x36, 0x5c, 0x09, 0xc8, 0xcb, 0xa2, 0x5f, 0xac, 0x28, 0x3c, 0x1c, 0x3e, + 0xff, 0x17, 0x60, 0x50, 0x0e, 0xe8, 0xfd, 0x4e, 0xd3, 0x13, 0x13, 0xa8, 0xd6, 0xe8, 0x65, 0x03, + 0x86, 0x13, 0x98, 0xf6, 0xef, 0x15, 0x61, 0x8c, 0x3b, 0x67, 0xea, 0x6a, 0xe5, 0x2d, 0xca, 0xf3, + 0xd6, 0x5f, 0xd2, 0xe5, 0x00, 0xf9, 0x44, 0xae, 0x1d, 0xf5, 0x96, 0x8e, 0x6c, 0x42, 0x3d, 0x05, + 0x8c, 0x7d, 0x35, 0x15, 0x30, 0xc6, 0xd5, 0xee, 0xc6, 0x31, 0x8d, 0xe8, 0x7b, 0x2b, 0x82, 0xec, + 0x6f, 0x15, 0x60, 0x24, 0x75, 0x05, 0x0a, 0x7a, 0x23, 0x59, 0x35, 0xdb, 0xca, 0xc3, 0xa6, 0xbe, + 0xe7, 0xad, 0x18, 0x07, 0xab, 0x9d, 0xfd, 0x80, 0xb6, 0x8a, 0xfd, 0x47, 0x05, 0x18, 0x4e, 0xde, + 0xdd, 0xf2, 0x10, 0xce, 0xd4, 0x3b, 0xa1, 0xca, 0xae, 0x27, 0x60, 0x57, 0xda, 0x72, 0x93, 0x3c, + 0xaf, 0x04, 0x2f, 0x1b, 0xb1, 0x86, 0x3f, 0x14, 0x25, 0xc9, 0xed, 0xbf, 0x6d, 0xc1, 0x59, 0xfe, + 0x96, 0xe9, 0x75, 0xf8, 0x97, 0xb3, 0x66, 0xf7, 0x95, 0x7c, 0x07, 0x98, 0x2a, 0x63, 0xb9, 0xdf, + 0xfc, 0xb2, 0xab, 0x34, 0xc5, 0x68, 0x93, 0x4b, 0xe1, 0x21, 0x1c, 0xec, 0x81, 0x16, 0x83, 0xfd, + 0x47, 0x45, 0xd0, 0xb7, 0x87, 0x22, 0x57, 0xa4, 0x81, 0xe6, 0x52, 0xce, 0x73, 0x65, 0xc7, 0xaf, + 0xe9, 0x7b, 0x4a, 0x2b, 0xa9, 0x2c, 0xd0, 0x9f, 0xb3, 0x60, 0xc0, 0xf5, 0xdd, 0xd8, 0x75, 0xd8, + 0x31, 0x3a, 0x9f, 0x9b, 0x0d, 0x15, 0xb9, 0x79, 0xde, 0x73, 0x10, 0x9a, 0x7e, 0x1c, 0x45, 0x0c, + 0x9b, 0x94, 0xd1, 0x87, 0x45, 0x4c, 0x77, 0x31, 0xb7, 0x04, 0xe6, 0x4a, 0x2a, 0x90, 0xbb, 0x45, + 0x15, 0xaf, 0x38, 0xcc, 0x29, 0xef, 0x1f, 0xd3, 0xae, 0x54, 0x65, 0x68, 0x7d, 0x8f, 0x3b, 0x6d, + 0xc6, 0x9c, 0x90, 0x1d, 0x01, 0xea, 0x9c, 0x8b, 0x03, 0xc6, 0xcb, 0x4e, 0x42, 0xd5, 0x69, 0xc7, + 0x41, 0x93, 0x4e, 0x93, 0x70, 0x35, 0xe9, 0x88, 0x60, 0x09, 0xc0, 0x1a, 0xc7, 0x7e, 0xa3, 0x0c, + 0xa9, 0xbc, 0x4c, 0xb4, 0x6d, 0xde, 0x7c, 0x6b, 0xe5, 0x7b, 0xf3, 0xad, 0x1a, 0x4c, 0xd6, 0xed, + 0xb7, 0xa8, 0x01, 0xe5, 0xd6, 0x86, 0x13, 0x49, 0xb5, 0xfa, 0x25, 0x75, 0x8e, 0xa3, 0x8d, 0xf7, + 0x77, 0xc7, 0x7f, 0xb2, 0x37, 0xab, 0x2b, 0x5d, 0xab, 0x93, 0xbc, 0x96, 0x8c, 0x26, 0xcd, 0xfa, + 0xc0, 0xbc, 0xff, 0x83, 0xdc, 0xed, 0xf8, 0x09, 0x71, 0x0f, 0x03, 0x26, 0x51, 0xdb, 0x8b, 0xc5, + 0x6a, 0x78, 0x29, 0xc7, 0x5d, 0xc6, 0x3b, 0xd6, 0x15, 0x05, 0xf8, 0x7f, 0x6c, 0x10, 0x45, 0x1f, + 0x80, 0x6a, 0x14, 0x3b, 0x61, 0x7c, 0xc8, 0x1c, 0x60, 0x35, 0xe9, 0x2b, 0xb2, 0x13, 0xac, 0xfb, + 0x43, 0x2f, 0xb3, 0xea, 0xc6, 0x6e, 0xb4, 0x71, 0xc8, 0x54, 0x0c, 0x59, 0x09, 0x59, 0xf4, 0x80, + 0x8d, 0xde, 0xd0, 0x25, 0x00, 0xb6, 0xb6, 0x79, 0xfc, 0x61, 0x85, 0x59, 0x99, 0x14, 0x2b, 0xc4, + 0x0a, 0x82, 0x0d, 0x2c, 0xfb, 0x47, 0x20, 0x59, 0x12, 0x03, 0x8d, 0xcb, 0x0a, 0x1c, 0xdc, 0x0a, + 0xcd, 0x52, 0x2a, 0x12, 0xc5, 0x32, 0x7e, 0xcb, 0x02, 0xb3, 0x6e, 0x07, 0x7a, 0x8d, 0x17, 0x08, + 0xb1, 0xf2, 0xf0, 0x1c, 0x1a, 0xfd, 0x4e, 0x2c, 0x3a, 0xad, 0x94, 0x0b, 0x5b, 0x56, 0x09, 0x39, + 0xff, 0x2e, 0xa8, 0x48, 0xe8, 0x81, 0x94, 0xba, 0x8f, 0xc1, 0x69, 0x99, 0x67, 0x29, 0xed, 0xa6, + 0xc2, 0xeb, 0xb4, 0xbf, 0xe9, 0x47, 0xda, 0x73, 0x0a, 0xdd, 0xec, 0x39, 0x3d, 0xdc, 0x7f, 0xfc, + 0xdb, 0x16, 0x5c, 0x4c, 0x0f, 0x20, 0x5a, 0x0c, 0x7c, 0x37, 0x0e, 0xc2, 0x15, 0x12, 0xc7, 0xae, + 0xdf, 0x60, 0x75, 0xd1, 0xee, 0x3a, 0xa1, 0x2c, 0x3b, 0xcf, 0x18, 0xe5, 0x6d, 0x27, 0xf4, 0x31, + 0x6b, 0x45, 0x3b, 0xd0, 0xc7, 0x83, 0xd4, 0x84, 0xb6, 0x7e, 0xc4, 0xbd, 0x91, 0x31, 0x1d, 0xfa, + 0xb8, 0xc0, 0x03, 0xe4, 0xb0, 0x20, 0x68, 0x7f, 0xc7, 0x02, 0xb4, 0xb4, 0x45, 0xc2, 0xd0, 0xad, + 0x1b, 0x61, 0x75, 0xec, 0x3e, 0x23, 0xe3, 0xde, 0x22, 0x33, 0x0b, 0x38, 0x75, 0x9f, 0x91, 0xf1, + 0x2f, 0xfb, 0x3e, 0xa3, 0xc2, 0xc1, 0xee, 0x33, 0x42, 0x4b, 0x70, 0xb6, 0xc9, 0x8f, 0x1b, 0xfc, + 0x8e, 0x10, 0x7e, 0xf6, 0x50, 0x79, 0x6e, 0xe7, 0xee, 0xed, 0x8e, 0x9f, 0x5d, 0xcc, 0x42, 0xc0, + 0xd9, 0xcf, 0xd9, 0xef, 0x02, 0xc4, 0xa3, 0xe9, 0x66, 0xb2, 0x62, 0x95, 0xba, 0x9a, 0x5f, 0xec, + 0xaf, 0x94, 0x61, 0x24, 0x55, 0x94, 0x98, 0x1e, 0xf5, 0x3a, 0x83, 0xa3, 0x8e, 0x2c, 0xbf, 0x3b, + 0x87, 0xd7, 0x53, 0xb8, 0x95, 0x0f, 0x65, 0xd7, 0x6f, 0xb5, 0xe3, 0x7c, 0xd2, 0x6c, 0xf9, 0x20, + 0xe6, 0x69, 0x87, 0x86, 0xb9, 0x98, 0xfe, 0xc5, 0x9c, 0x4c, 0x9e, 0xc1, 0x5b, 0x09, 0x65, 0xbc, + 0xf4, 0x80, 0xcc, 0x01, 0x9f, 0xd0, 0xa1, 0x54, 0xe5, 0x3c, 0x0c, 0x8b, 0xa9, 0xc5, 0x72, 0xdc, + 0xae, 0xf6, 0x6f, 0x14, 0x60, 0xc0, 0xf8, 0x68, 0xe8, 0x97, 0x93, 0x55, 0xad, 0xac, 0xfc, 0x5e, + 0x89, 0xf5, 0x3f, 0xa1, 0xeb, 0x56, 0xf1, 0x57, 0x7a, 0xb2, 0xb3, 0xa0, 0xd5, 0xfd, 0xdd, 0xf1, + 0x53, 0xa9, 0x92, 0x55, 0x89, 0x22, 0x57, 0xe7, 0x3f, 0x0a, 0x23, 0xa9, 0x6e, 0x32, 0x5e, 0x79, + 0xd5, 0x7c, 0xe5, 0x23, 0x9b, 0xa5, 0xcc, 0x29, 0xfb, 0x3a, 0x9d, 0x32, 0x91, 0xdd, 0x17, 0x78, + 0xa4, 0x07, 0x1b, 0x6c, 0x2a, 0x89, 0xb7, 0xd0, 0x63, 0x12, 0xef, 0x53, 0x50, 0x69, 0x05, 0x9e, + 0x5b, 0x73, 0x55, 0x91, 0x49, 0x96, 0x36, 0xbc, 0x2c, 0xda, 0xb0, 0x82, 0xa2, 0xbb, 0x50, 0xbd, + 0x73, 0x37, 0xe6, 0xde, 0x1f, 0x61, 0xdf, 0xce, 0xcb, 0xe9, 0xa3, 0x94, 0x16, 0xe5, 0x5e, 0xc2, + 0x9a, 0x16, 0xb2, 0xa1, 0x8f, 0x09, 0x41, 0x99, 0x91, 0xc0, 0x6c, 0xef, 0x4c, 0x3a, 0x46, 0x58, + 0x40, 0xec, 0xdf, 0x00, 0x38, 0x93, 0x55, 0x19, 0x1e, 0x7d, 0x04, 0xfa, 0xf8, 0x18, 0xf3, 0xb9, + 0x7c, 0x24, 0x8b, 0xc6, 0x1c, 0xeb, 0x50, 0x0c, 0x8b, 0xfd, 0xc6, 0x82, 0xa6, 0xa0, 0xee, 0x39, + 0x6b, 0x62, 0x85, 0x1c, 0x0f, 0xf5, 0x05, 0x47, 0x53, 0x5f, 0x70, 0x38, 0x75, 0xcf, 0x59, 0x43, + 0xdb, 0x50, 0x6e, 0xb8, 0x31, 0x71, 0x84, 0x11, 0xe1, 0xf6, 0xb1, 0x10, 0x27, 0x0e, 0xd7, 0xd2, + 0xd8, 0x4f, 0xcc, 0x09, 0xa2, 0xaf, 0x59, 0x30, 0xb2, 0x96, 0xac, 0x1e, 0x20, 0x98, 0xa7, 0x73, + 0x0c, 0xd5, 0xff, 0x93, 0x84, 0xf8, 0x85, 0x5e, 0xa9, 0x46, 0x9c, 0x1e, 0x0e, 0xfa, 0xa4, 0x05, + 0xfd, 0xeb, 0xae, 0x67, 0x14, 0x60, 0x3e, 0x86, 0x8f, 0x73, 0x85, 0x11, 0xd0, 0x27, 0x0e, 0xfe, + 0x3f, 0xc2, 0x92, 0x72, 0x37, 0x49, 0xd5, 0x77, 0x54, 0x49, 0xd5, 0xff, 0x80, 0x24, 0xd5, 0x67, + 0x2c, 0xa8, 0xaa, 0x99, 0x16, 0x59, 0xd8, 0x1f, 0x38, 0xc6, 0x4f, 0xce, 0x2d, 0x27, 0xea, 0x2f, + 0xd6, 0xc4, 0xd1, 0x17, 0x2d, 0x18, 0x70, 0x5e, 0x6f, 0x87, 0xa4, 0x4e, 0xb6, 0x82, 0x56, 0x24, + 0x6e, 0x03, 0x7d, 0x25, 0xff, 0xc1, 0x4c, 0x51, 0x22, 0xb3, 0x64, 0x6b, 0xa9, 0x15, 0x89, 0x6c, + 0x29, 0xdd, 0x80, 0xcd, 0x21, 0xa0, 0xcf, 0xd1, 0xf3, 0x65, 0xad, 0x29, 0x14, 0x3e, 0x51, 0x50, + 0xe8, 0x83, 0xf9, 0x8f, 0x68, 0x45, 0xd1, 0x10, 0x47, 0x4d, 0xf5, 0x1f, 0x1b, 0xf4, 0xed, 0xdd, + 0x02, 0x8c, 0xef, 0xf3, 0x42, 0xe8, 0x05, 0x18, 0x0c, 0xc2, 0x86, 0xe3, 0xbb, 0xaf, 0x9b, 0xd5, + 0x49, 0x94, 0xd2, 0xb7, 0x64, 0xc0, 0x70, 0x02, 0xd3, 0x4c, 0x5b, 0x2f, 0xec, 0x93, 0xb6, 0x7e, + 0x11, 0x4a, 0x21, 0x69, 0x05, 0xe9, 0xb3, 0x0b, 0x4b, 0x9c, 0x60, 0x10, 0xf4, 0x38, 0x14, 0x9d, + 0x96, 0x2b, 0xe2, 0xe2, 0xd4, 0x91, 0x6c, 0x6a, 0x79, 0x1e, 0xd3, 0xf6, 0x44, 0x15, 0x8d, 0xf2, + 0x89, 0x54, 0xd1, 0xa0, 0x52, 0x49, 0xb8, 0x52, 0xfa, 0xb4, 0x54, 0x4a, 0xba, 0x38, 0xec, 0x37, + 0x8b, 0xf0, 0xf8, 0x9e, 0xcb, 0x57, 0x87, 0x05, 0x5a, 0x7b, 0x84, 0x05, 0xca, 0xe9, 0x29, 0xec, + 0x37, 0x3d, 0xc5, 0x2e, 0xd3, 0xf3, 0x49, 0xba, 0x2b, 0x65, 0x55, 0x97, 0x7c, 0xae, 0x97, 0xec, + 0x56, 0x24, 0x46, 0x6c, 0x48, 0x09, 0xc5, 0x9a, 0x2e, 0x3d, 0x92, 0x24, 0x52, 0xb6, 0xcb, 0x79, + 0x48, 0xa5, 0xae, 0x95, 0x55, 0xf8, 0x56, 0xec, 0x96, 0x07, 0x6e, 0xff, 0x4e, 0x09, 0x9e, 0xe8, + 0x41, 0x98, 0x98, 0xab, 0xd8, 0xea, 0x71, 0x15, 0x7f, 0x8f, 0x7f, 0xa6, 0x4f, 0x67, 0x7e, 0x26, + 0x9c, 0xff, 0x67, 0xda, 0xfb, 0x0b, 0xa1, 0xa7, 0xa1, 0xe2, 0xfa, 0x11, 0xa9, 0xb5, 0x43, 0x1e, + 0x22, 0x6d, 0x64, 0x55, 0xcd, 0x8b, 0x76, 0xac, 0x30, 0xe8, 0x11, 0xb3, 0xe6, 0xd0, 0xed, 0xdf, + 0x9f, 0x53, 0x2a, 0xb1, 0x99, 0xa0, 0xc5, 0x35, 0x9c, 0x99, 0x29, 0xca, 0x01, 0x38, 0x19, 0xfb, + 0xaf, 0x58, 0x70, 0xbe, 0xbb, 0xc4, 0x47, 0xcf, 0xc2, 0xc0, 0x5a, 0xe8, 0xf8, 0xb5, 0x0d, 0x76, + 0xb1, 0xb0, 0x5c, 0x3a, 0xec, 0x7d, 0x75, 0x33, 0x36, 0x71, 0xd0, 0x0c, 0x8c, 0xf2, 0x40, 0x12, + 0x03, 0x43, 0x26, 0x22, 0xdf, 0xdb, 0x1d, 0x1f, 0x5d, 0x4d, 0x03, 0x71, 0x27, 0xbe, 0xfd, 0xdd, + 0x62, 0xf6, 0xb0, 0xb8, 0x66, 0x78, 0x90, 0xd5, 0x2c, 0xd6, 0x6a, 0xa1, 0x07, 0x8e, 0x5b, 0x3c, + 0x69, 0x8e, 0x5b, 0xea, 0xc6, 0x71, 0xd1, 0x2c, 0x9c, 0x32, 0x6e, 0x7e, 0xe2, 0xc9, 0xe5, 0x3c, + 0x4a, 0x5a, 0x55, 0x5c, 0x59, 0x4e, 0xc1, 0x71, 0xc7, 0x13, 0x0f, 0xf9, 0xd2, 0xfb, 0x95, 0x02, + 0x9c, 0xeb, 0xaa, 0x8c, 0x9f, 0x90, 0x44, 0x31, 0x3f, 0x7f, 0xe9, 0x64, 0x3e, 0xbf, 0xf9, 0x51, + 0xca, 0xfb, 0x7d, 0x14, 0xfb, 0x8f, 0x0b, 0x5d, 0x37, 0x02, 0x3d, 0x98, 0x7d, 0xdf, 0xce, 0xd2, + 0x8b, 0x30, 0xe4, 0xb4, 0x5a, 0x1c, 0x8f, 0x05, 0xf5, 0xa6, 0x2a, 0x3c, 0x4d, 0x99, 0x40, 0x9c, + 0xc4, 0xed, 0x49, 0xa7, 0xf9, 0xcd, 0x02, 0x5c, 0xd8, 0x5b, 0xe7, 0x4c, 0x86, 0x43, 0x59, 0x3d, + 0x5c, 0x29, 0xb0, 0x7f, 0x84, 0xd5, 0xf7, 0xfa, 0x72, 0xfc, 0x77, 0x16, 0x54, 0x31, 0x59, 0xe7, + 0x3c, 0x1c, 0xdd, 0x11, 0x0b, 0xcb, 0xca, 0xa3, 0x9a, 0x2f, 0x5d, 0x8e, 0x91, 0xcb, 0xaa, 0xdc, + 0x66, 0x2d, 0xd1, 0xce, 0xfb, 0xd3, 0x0a, 0x07, 0xba, 0x3f, 0x4d, 0xdd, 0xa0, 0x55, 0xec, 0x7e, + 0x83, 0x96, 0xfd, 0xf5, 0x7e, 0xfa, 0x7a, 0xad, 0x60, 0x26, 0x24, 0xf5, 0x88, 0x7e, 0xac, 0x76, + 0xe8, 0x89, 0x2f, 0xaf, 0x3e, 0xd6, 0x4d, 0xbc, 0x80, 0x69, 0x7b, 0xc2, 0xcb, 0x59, 0x38, 0x50, + 0x55, 0xa0, 0xe2, 0xbe, 0x55, 0x81, 0x5e, 0x84, 0xa1, 0x28, 0xda, 0x58, 0x0e, 0xdd, 0x2d, 0x27, + 0x26, 0xd7, 0xc9, 0x8e, 0x38, 0x31, 0xe8, 0x4a, 0x1e, 0x2b, 0x57, 0x35, 0x10, 0x27, 0x71, 0xd1, + 0x1c, 0x8c, 0xea, 0xda, 0x3c, 0x24, 0x8c, 0x59, 0xe2, 0x0c, 0xdf, 0x3f, 0x2a, 0x6d, 0x5f, 0x57, + 0xf3, 0x11, 0x08, 0xb8, 0xf3, 0x19, 0x2a, 0x85, 0x12, 0x8d, 0x74, 0x20, 0x7d, 0x49, 0x29, 0x94, + 0xe8, 0x87, 0x8e, 0xa5, 0xe3, 0x09, 0xb4, 0x08, 0xa7, 0xf9, 0xc2, 0x98, 0x6a, 0xb5, 0x8c, 0x37, + 0xea, 0x4f, 0x56, 0x51, 0x9d, 0xeb, 0x44, 0xc1, 0x59, 0xcf, 0xa1, 0xe7, 0x61, 0x40, 0x35, 0xcf, + 0xcf, 0x0a, 0x07, 0x9d, 0x32, 0x10, 0xaa, 0x6e, 0xe6, 0xeb, 0xd8, 0xc4, 0x43, 0xef, 0x87, 0x47, + 0xf5, 0x5f, 0x9e, 0x5d, 0xc9, 0xbd, 0xd6, 0xb3, 0xa2, 0xec, 0x99, 0xba, 0xaf, 0x69, 0x2e, 0x13, + 0xad, 0x8e, 0xbb, 0x3d, 0x8f, 0xd6, 0xe0, 0xbc, 0x02, 0x5d, 0xf6, 0x63, 0x96, 0x2a, 0x15, 0x91, + 0x69, 0x27, 0x22, 0x37, 0x43, 0x4f, 0xdc, 0xfb, 0xad, 0xae, 0xf4, 0x9d, 0x73, 0xe3, 0xab, 0x59, + 0x98, 0x78, 0x01, 0xef, 0xd1, 0x0b, 0xe5, 0x45, 0xc4, 0x77, 0xd6, 0x3c, 0xb2, 0x34, 0x33, 0xcf, + 0xca, 0xa7, 0x19, 0x4e, 0xf2, 0xcb, 0x12, 0x80, 0x35, 0x8e, 0x0a, 0xde, 0x1e, 0xec, 0x7a, 0xbd, + 0xf4, 0x32, 0x9c, 0x69, 0xd4, 0x5a, 0x54, 0x8f, 0x76, 0x6b, 0x64, 0xaa, 0xc6, 0x62, 0x55, 0xe9, + 0x87, 0xe1, 0xe5, 0x6d, 0x55, 0x66, 0xc2, 0xdc, 0xcc, 0x72, 0x07, 0x0e, 0xce, 0x7c, 0x92, 0xc5, + 0x34, 0x87, 0xc1, 0xf6, 0xce, 0xd8, 0xe9, 0x54, 0x4c, 0x33, 0x6d, 0xc4, 0x1c, 0x86, 0xae, 0x01, + 0x62, 0x69, 0x2e, 0x57, 0xe3, 0xb8, 0xa5, 0x14, 0xf7, 0xb1, 0x33, 0xec, 0x95, 0x54, 0x84, 0xe6, + 0x95, 0x0e, 0x0c, 0x9c, 0xf1, 0x94, 0xfd, 0x6f, 0x2d, 0x18, 0x52, 0xfb, 0xf5, 0x04, 0x12, 0xbd, + 0xbc, 0x64, 0xa2, 0xd7, 0xdc, 0xd1, 0x39, 0x1e, 0x1b, 0x79, 0x97, 0x6c, 0x81, 0x4f, 0x0f, 0x00, + 0x68, 0xae, 0xa8, 0xc4, 0xb8, 0xd5, 0x55, 0x8c, 0x3f, 0xb4, 0x1c, 0x29, 0xab, 0x56, 0x52, 0xf9, + 0xc1, 0xd6, 0x4a, 0x5a, 0x81, 0xb3, 0x52, 0xaa, 0x71, 0x37, 0xec, 0xd5, 0x20, 0x52, 0x0c, 0xae, + 0x32, 0xfd, 0xb8, 0xe8, 0xe8, 0xec, 0x7c, 0x16, 0x12, 0xce, 0x7e, 0x36, 0x21, 0x4c, 0xfb, 0xf7, + 0x55, 0xb8, 0xd5, 0x9e, 0x5e, 0x58, 0x97, 0xb7, 0x1f, 0xa5, 0xf6, 0xf4, 0xc2, 0x95, 0x15, 0xac, + 0x71, 0xb2, 0x19, 0x7b, 0x35, 0x27, 0xc6, 0x0e, 0x07, 0x66, 0xec, 0x92, 0xc5, 0x0c, 0x74, 0x65, + 0x31, 0x52, 0x21, 0x1a, 0xec, 0xaa, 0x10, 0xbd, 0x07, 0x86, 0x5d, 0x7f, 0x83, 0x84, 0x6e, 0x4c, + 0xea, 0x6c, 0x2f, 0x30, 0xf6, 0x53, 0xd1, 0x62, 0x7d, 0x3e, 0x01, 0xc5, 0x29, 0xec, 0x24, 0x5f, + 0x1c, 0xee, 0x81, 0x2f, 0x76, 0x91, 0x46, 0x23, 0xf9, 0x48, 0xa3, 0x53, 0x47, 0x97, 0x46, 0xa3, + 0xc7, 0x2a, 0x8d, 0x50, 0x2e, 0xd2, 0xa8, 0x27, 0x46, 0x6f, 0x1c, 0xd2, 0xcf, 0xec, 0x73, 0x48, + 0xef, 0x26, 0x8a, 0xce, 0x1e, 0x5a, 0x14, 0x65, 0x4b, 0x99, 0x47, 0x0e, 0x25, 0x65, 0x3e, 0x53, + 0x80, 0xb3, 0x9a, 0x0f, 0xd3, 0xd5, 0xef, 0xae, 0x53, 0x4e, 0xc4, 0x2e, 0xd0, 0xe3, 0x2e, 0x51, + 0x23, 0xef, 0x50, 0xa7, 0x30, 0x2a, 0x08, 0x36, 0xb0, 0x58, 0xfa, 0x1e, 0x09, 0x59, 0x11, 0xef, + 0x34, 0x93, 0x9e, 0x11, 0xed, 0x58, 0x61, 0xd0, 0xf5, 0x45, 0x7f, 0x8b, 0x94, 0xe8, 0x74, 0x79, + 0xc8, 0x19, 0x0d, 0xc2, 0x26, 0x1e, 0x7a, 0x8a, 0x13, 0x61, 0x0c, 0x82, 0x32, 0xea, 0x41, 0x71, + 0xe9, 0xb8, 0xe4, 0x09, 0x0a, 0x2a, 0x87, 0xc3, 0xf2, 0x34, 0xcb, 0x9d, 0xc3, 0x61, 0xd1, 0x85, + 0x0a, 0xc3, 0xfe, 0x1f, 0x16, 0x9c, 0xcb, 0x9c, 0x8a, 0x13, 0x10, 0xbe, 0xdb, 0x49, 0xe1, 0xbb, + 0x92, 0xd7, 0x71, 0xc3, 0x78, 0x8b, 0x2e, 0x82, 0xf8, 0x5f, 0x5b, 0x30, 0xac, 0xf1, 0x4f, 0xe0, + 0x55, 0xdd, 0xe4, 0xab, 0xe6, 0x77, 0xb2, 0xaa, 0x76, 0xbc, 0xdb, 0xef, 0x15, 0x40, 0x95, 0x6c, + 0x9d, 0xaa, 0xc9, 0x82, 0xd8, 0xfb, 0x38, 0xe9, 0x77, 0xa0, 0x8f, 0xc5, 0x18, 0x44, 0xf9, 0xc4, + 0x4f, 0x25, 0xe9, 0xb3, 0x78, 0x05, 0x1d, 0xbf, 0xc1, 0xfe, 0x46, 0x58, 0x10, 0x64, 0x25, 0xe6, + 0xdd, 0x88, 0x72, 0xf3, 0xba, 0xc8, 0x78, 0xd4, 0x25, 0xe6, 0x45, 0x3b, 0x56, 0x18, 0x54, 0x3c, + 0xb8, 0xb5, 0xc0, 0x9f, 0xf1, 0x9c, 0x48, 0x5e, 0x68, 0xab, 0xc4, 0xc3, 0xbc, 0x04, 0x60, 0x8d, + 0xc3, 0xc2, 0x0f, 0xdc, 0xa8, 0xe5, 0x39, 0x3b, 0x86, 0xd5, 0xc1, 0x28, 0xfd, 0xa1, 0x40, 0xd8, + 0xc4, 0xb3, 0x9b, 0x30, 0x96, 0x7c, 0x89, 0x59, 0xb2, 0xce, 0x62, 0x7f, 0x7b, 0x9a, 0xce, 0x49, + 0xa8, 0x3a, 0xec, 0xa9, 0x85, 0xb6, 0x23, 0x78, 0x82, 0x8e, 0x80, 0x95, 0x00, 0xac, 0x71, 0xec, + 0x5f, 0xb7, 0xe0, 0x74, 0xc6, 0xa4, 0xe5, 0x98, 0x51, 0x1a, 0x6b, 0x6e, 0x93, 0x25, 0xd8, 0x7f, + 0x18, 0xfa, 0xeb, 0x64, 0xdd, 0x91, 0xd1, 0xa5, 0x06, 0x6f, 0x9f, 0xe5, 0xcd, 0x58, 0xc2, 0xed, + 0xff, 0x6a, 0xc1, 0x48, 0x72, 0xac, 0x11, 0xcb, 0xd2, 0xe2, 0xd3, 0xe4, 0x46, 0xb5, 0x60, 0x8b, + 0x84, 0x3b, 0xf4, 0xcd, 0xad, 0x54, 0x96, 0x56, 0x07, 0x06, 0xce, 0x78, 0x8a, 0x15, 0x6c, 0xae, + 0xab, 0xd9, 0x96, 0x2b, 0xf2, 0x56, 0x9e, 0x2b, 0x52, 0x7f, 0x4c, 0x33, 0x12, 0x45, 0x91, 0xc4, + 0x26, 0x7d, 0xfb, 0x3b, 0x25, 0x50, 0x29, 0xe7, 0x2c, 0xb4, 0x2f, 0xa7, 0xc0, 0xc8, 0x83, 0x26, + 0xe7, 0xa9, 0xc5, 0x50, 0xda, 0x2b, 0xd6, 0x86, 0x5b, 0x49, 0x4c, 0x03, 0xb3, 0x7a, 0xc3, 0x55, + 0x0d, 0xc2, 0x26, 0x1e, 0x1d, 0x89, 0xe7, 0x6e, 0x11, 0xfe, 0x50, 0x5f, 0x72, 0x24, 0x0b, 0x12, + 0x80, 0x35, 0x0e, 0x1d, 0x49, 0xdd, 0x5d, 0x5f, 0x17, 0x47, 0x7e, 0x35, 0x12, 0x3a, 0x3b, 0x98, + 0x41, 0x78, 0x0d, 0xfe, 0x60, 0x53, 0x68, 0xc1, 0x46, 0x0d, 0xfe, 0x60, 0x13, 0x33, 0x08, 0xd5, + 0xdb, 0xfc, 0x20, 0x6c, 0x3a, 0x9e, 0xfb, 0x3a, 0xa9, 0x2b, 0x2a, 0x42, 0xfb, 0x55, 0x7a, 0xdb, + 0x8d, 0x4e, 0x14, 0x9c, 0xf5, 0x1c, 0x5d, 0x81, 0xad, 0x90, 0xd4, 0xdd, 0x5a, 0x6c, 0xf6, 0x06, + 0xc9, 0x15, 0xb8, 0xdc, 0x81, 0x81, 0x33, 0x9e, 0x42, 0x53, 0x30, 0x22, 0x4b, 0x06, 0xc8, 0x82, + 0x50, 0x03, 0xc9, 0x02, 0x34, 0x38, 0x09, 0xc6, 0x69, 0x7c, 0xca, 0xd5, 0x9a, 0xa2, 0x66, 0x1c, + 0x53, 0x96, 0x0d, 0xae, 0x26, 0x6b, 0xc9, 0x61, 0x85, 0x61, 0x7f, 0xa2, 0x48, 0xa5, 0x70, 0x97, + 0xd2, 0x8c, 0x27, 0x16, 0x88, 0x9b, 0x5c, 0x91, 0xa5, 0x1e, 0x56, 0xe4, 0x73, 0x30, 0x78, 0x27, + 0x0a, 0x7c, 0x15, 0xe4, 0x5a, 0xee, 0x1a, 0xe4, 0x6a, 0x60, 0x65, 0x07, 0xb9, 0xf6, 0xe5, 0x15, + 0xe4, 0xda, 0x7f, 0xc8, 0x20, 0xd7, 0xdf, 0x2f, 0x83, 0xba, 0x98, 0xe8, 0x06, 0x89, 0xef, 0x06, + 0xe1, 0xa6, 0xeb, 0x37, 0x58, 0xa9, 0x85, 0xaf, 0x59, 0x30, 0xc8, 0xf7, 0xcb, 0x82, 0x99, 0xa4, + 0xb8, 0x9e, 0xd3, 0x8d, 0x37, 0x09, 0x62, 0x13, 0xab, 0x06, 0xa1, 0xd4, 0xa5, 0xc5, 0x26, 0x08, + 0x27, 0x46, 0x84, 0x3e, 0x0a, 0x20, 0xed, 0xa3, 0xeb, 0x92, 0x65, 0xce, 0xe7, 0x33, 0x3e, 0x4c, + 0xd6, 0xb5, 0x0e, 0xbc, 0xaa, 0x88, 0x60, 0x83, 0x20, 0xfa, 0x8c, 0x4e, 0xe0, 0xe4, 0xd9, 0x30, + 0x1f, 0x3e, 0x96, 0xb9, 0xe9, 0x25, 0x7d, 0x13, 0x43, 0xbf, 0xeb, 0x37, 0xe8, 0x3a, 0x11, 0xc1, + 0x80, 0xef, 0xc8, 0x2a, 0x53, 0xb2, 0x10, 0x38, 0xf5, 0x69, 0xc7, 0x73, 0xfc, 0x1a, 0x09, 0xe7, + 0x39, 0xba, 0x16, 0x79, 0xa2, 0x01, 0xcb, 0x8e, 0x3a, 0xae, 0x74, 0x2a, 0xf7, 0x72, 0xa5, 0xd3, + 0xf9, 0xf7, 0xc2, 0x68, 0xc7, 0xc7, 0x3c, 0x50, 0xb6, 0xe6, 0xe1, 0x13, 0x3d, 0xed, 0xdf, 0xe9, + 0xd3, 0x42, 0xeb, 0x46, 0x50, 0xe7, 0x17, 0x0b, 0x85, 0xfa, 0x8b, 0x0a, 0x1d, 0x37, 0xc7, 0x25, + 0xa2, 0xc4, 0x8c, 0xd1, 0x88, 0x4d, 0x92, 0x74, 0x8d, 0xb6, 0x9c, 0x90, 0xf8, 0xc7, 0xbd, 0x46, + 0x97, 0x15, 0x11, 0x6c, 0x10, 0x44, 0x1b, 0x89, 0x74, 0xad, 0x2b, 0x47, 0x4f, 0xd7, 0x62, 0x05, + 0xdc, 0xb2, 0xee, 0xdf, 0xf8, 0xa2, 0x05, 0xc3, 0x7e, 0x62, 0xe5, 0xe6, 0x13, 0xa1, 0x9d, 0xbd, + 0x2b, 0xf8, 0xbd, 0x76, 0xc9, 0x36, 0x9c, 0xa2, 0x9f, 0x25, 0xd2, 0xca, 0x07, 0x14, 0x69, 0xfa, + 0x86, 0xb2, 0xbe, 0x6e, 0x37, 0x94, 0x21, 0x5f, 0x5d, 0xd1, 0xd8, 0x9f, 0xfb, 0x15, 0x8d, 0x90, + 0x71, 0x3d, 0xe3, 0x6d, 0xa8, 0xd6, 0x42, 0xe2, 0xc4, 0x87, 0xbc, 0xad, 0x8f, 0x05, 0x9b, 0xcc, + 0xc8, 0x0e, 0xb0, 0xee, 0xcb, 0xfe, 0x3f, 0x25, 0x38, 0x25, 0x67, 0x44, 0x66, 0x77, 0x50, 0xf9, + 0xc8, 0xe9, 0x6a, 0xe5, 0x56, 0xc9, 0xc7, 0xab, 0x12, 0x80, 0x35, 0x0e, 0xd5, 0xc7, 0xda, 0x11, + 0x59, 0x6a, 0x11, 0x7f, 0xc1, 0x5d, 0x8b, 0x84, 0x3b, 0x4e, 0x6d, 0x94, 0x9b, 0x1a, 0x84, 0x4d, + 0x3c, 0xaa, 0x8c, 0x73, 0xbd, 0x38, 0x4a, 0x67, 0x86, 0x09, 0x7d, 0x1b, 0x4b, 0x38, 0xfa, 0xc5, + 0xcc, 0x5a, 0xd1, 0xf9, 0xe4, 0x44, 0x76, 0x24, 0xb5, 0x1c, 0xf0, 0x82, 0xd7, 0xbf, 0x61, 0xc1, + 0x59, 0xde, 0x2a, 0x67, 0xf2, 0x66, 0xab, 0xee, 0xc4, 0x24, 0xca, 0xe7, 0xee, 0x86, 0x8c, 0xf1, + 0x69, 0x23, 0x6f, 0x16, 0x59, 0x9c, 0x3d, 0x1a, 0xf4, 0x86, 0x05, 0x23, 0x9b, 0x89, 0x72, 0x3a, + 0x52, 0x74, 0x1c, 0xb5, 0xd2, 0x45, 0xa2, 0x53, 0xbd, 0xd5, 0x92, 0xed, 0x11, 0x4e, 0x53, 0xb7, + 0xff, 0x9b, 0x05, 0x26, 0x1b, 0x3d, 0xf9, 0x2a, 0x3c, 0x07, 0x57, 0x05, 0xa5, 0x76, 0x59, 0xde, + 0xcb, 0x55, 0xde, 0x76, 0xeb, 0xe2, 0x7c, 0xa1, 0xbd, 0xaf, 0xf3, 0xb3, 0x98, 0xb6, 0xdb, 0x7f, + 0xbf, 0xac, 0xed, 0x16, 0x22, 0xe5, 0xf0, 0xfb, 0xe2, 0xb5, 0xd7, 0x55, 0x1d, 0x3f, 0xfe, 0xe6, + 0x37, 0x3a, 0xea, 0xf8, 0xfd, 0xc4, 0xc1, 0x33, 0x4a, 0xf9, 0x04, 0x75, 0x2b, 0xe3, 0xd7, 0xbf, + 0x4f, 0x3a, 0xe9, 0x1d, 0xa8, 0xd0, 0x23, 0x18, 0x33, 0x40, 0x56, 0x12, 0x83, 0xaa, 0x5c, 0x15, + 0xed, 0xf7, 0x77, 0xc7, 0x7f, 0xfc, 0xe0, 0xc3, 0x92, 0x4f, 0x63, 0xd5, 0x3f, 0x8a, 0xa0, 0x4a, + 0x7f, 0xb3, 0xcc, 0x57, 0x71, 0xb8, 0xbb, 0xa9, 0x78, 0xa6, 0x04, 0xe4, 0x92, 0x56, 0xab, 0xe9, + 0x20, 0x1f, 0xaa, 0xec, 0x2e, 0x6c, 0x46, 0x94, 0x9f, 0x01, 0x97, 0x55, 0xfe, 0xa9, 0x04, 0xdc, + 0xdf, 0x1d, 0x7f, 0xf1, 0xe0, 0x44, 0xd5, 0xe3, 0x58, 0x93, 0xb0, 0xbf, 0x54, 0xd2, 0x6b, 0x57, + 0x94, 0x6f, 0xfc, 0xbe, 0x58, 0xbb, 0x2f, 0xa4, 0xd6, 0xee, 0xc5, 0x8e, 0xb5, 0x3b, 0xac, 0xef, + 0x6c, 0x4e, 0xac, 0xc6, 0x93, 0x56, 0x04, 0xf6, 0xb7, 0x37, 0x30, 0x0d, 0xe8, 0xb5, 0xb6, 0x1b, + 0x92, 0x68, 0x39, 0x6c, 0xfb, 0xae, 0xdf, 0x60, 0xcb, 0xb1, 0x62, 0x6a, 0x40, 0x09, 0x30, 0x4e, + 0xe3, 0xd3, 0x43, 0x3d, 0xfd, 0xe6, 0xb7, 0x9d, 0x2d, 0xbe, 0xaa, 0x8c, 0x8a, 0x76, 0x2b, 0xa2, + 0x1d, 0x2b, 0x0c, 0xfb, 0xeb, 0xcc, 0x97, 0x6d, 0xa4, 0xdc, 0xd3, 0x35, 0xe1, 0xb1, 0xcb, 0xc7, + 0x79, 0x39, 0x3c, 0xb5, 0x26, 0xf8, 0x8d, 0xe3, 0x1c, 0x86, 0xee, 0x42, 0xff, 0x1a, 0xbf, 0x7d, + 0x33, 0x9f, 0x1b, 0x09, 0xc4, 0x55, 0x9e, 0xec, 0x5e, 0x23, 0x79, 0xaf, 0xe7, 0x7d, 0xfd, 0x13, + 0x4b, 0x6a, 0xf6, 0xb7, 0xca, 0x30, 0x92, 0xba, 0x9e, 0x3a, 0x51, 0x88, 0xb8, 0xb0, 0x6f, 0x21, + 0xe2, 0x0f, 0x01, 0xd4, 0x49, 0xcb, 0x0b, 0x76, 0x98, 0x3a, 0x56, 0x3a, 0xb0, 0x3a, 0xa6, 0x34, + 0xf8, 0x59, 0xd5, 0x0b, 0x36, 0x7a, 0x14, 0x35, 0x00, 0x79, 0x5d, 0xe3, 0x54, 0x0d, 0x40, 0xe3, + 0xde, 0x92, 0xbe, 0x93, 0xbd, 0xb7, 0xc4, 0x85, 0x11, 0x3e, 0x44, 0x95, 0xd8, 0x7e, 0x88, 0xfc, + 0x75, 0x96, 0x1a, 0x34, 0x9b, 0xec, 0x06, 0xa7, 0xfb, 0x7d, 0x90, 0xb7, 0xcf, 0xa3, 0x77, 0x42, + 0x55, 0x7e, 0xe7, 0x68, 0xac, 0xaa, 0x8b, 0x83, 0xc8, 0x65, 0xc0, 0x6e, 0x85, 0x17, 0x3f, 0x3b, + 0x6a, 0x74, 0xc0, 0x83, 0xaa, 0xd1, 0x61, 0x7f, 0xa1, 0x40, 0xf5, 0x78, 0x3e, 0x2e, 0x55, 0x6e, + 0xea, 0x49, 0xe8, 0x73, 0xda, 0xf1, 0x46, 0xd0, 0x71, 0x7f, 0xe7, 0x14, 0x6b, 0xc5, 0x02, 0x8a, + 0x16, 0xa0, 0x54, 0xd7, 0x25, 0x84, 0x0e, 0xf2, 0x3d, 0xb5, 0x49, 0xd4, 0x89, 0x09, 0x66, 0xbd, + 0xa0, 0xc7, 0xa0, 0x14, 0x3b, 0x0d, 0x99, 0xcd, 0xc8, 0x32, 0xd8, 0x57, 0x9d, 0x46, 0x84, 0x59, + 0xab, 0x29, 0xbe, 0x4b, 0xfb, 0x88, 0xef, 0x17, 0x61, 0x28, 0x72, 0x1b, 0xbe, 0x13, 0xb7, 0x43, + 0x62, 0xb8, 0xf9, 0x74, 0xe4, 0x86, 0x09, 0xc4, 0x49, 0x5c, 0xfb, 0x5f, 0x0d, 0xc1, 0x99, 0x95, + 0x99, 0x45, 0x59, 0x18, 0xff, 0xd8, 0x12, 0x12, 0xb3, 0x68, 0x9c, 0x5c, 0x42, 0x62, 0x17, 0xea, + 0x9e, 0x91, 0x90, 0xe8, 0x19, 0x09, 0x89, 0xc9, 0xec, 0xb0, 0x62, 0x1e, 0xd9, 0x61, 0x59, 0x23, + 0xe8, 0x25, 0x3b, 0xec, 0xd8, 0x32, 0x14, 0xf7, 0x1c, 0xd0, 0x81, 0x32, 0x14, 0x55, 0xfa, 0x66, + 0x2e, 0x89, 0x32, 0x5d, 0x3e, 0x55, 0x66, 0xfa, 0xa6, 0x4a, 0x9d, 0xe3, 0x49, 0x60, 0x82, 0xd5, + 0xbf, 0x92, 0xff, 0x00, 0x7a, 0x48, 0x9d, 0x13, 0x79, 0x68, 0x66, 0xba, 0x66, 0x7f, 0x1e, 0xe9, + 0x9a, 0x59, 0xc3, 0xd9, 0x37, 0x5d, 0xf3, 0x45, 0x18, 0xaa, 0x79, 0x81, 0x4f, 0x96, 0xc3, 0x20, + 0x0e, 0x6a, 0x81, 0x27, 0xd4, 0x7a, 0x7d, 0x51, 0x8f, 0x09, 0xc4, 0x49, 0xdc, 0x6e, 0xb9, 0x9e, + 0xd5, 0xa3, 0xe6, 0x7a, 0xc2, 0x03, 0xca, 0xf5, 0xfc, 0x59, 0x5d, 0x95, 0x60, 0x80, 0x7d, 0x91, + 0x0f, 0xe5, 0xff, 0x45, 0x7a, 0x29, 0x4d, 0x80, 0xde, 0xe4, 0x17, 0x68, 0x52, 0xc5, 0x78, 0x26, + 0x68, 0x52, 0xc5, 0x6f, 0x90, 0x4d, 0xc9, 0xab, 0xc7, 0xb0, 0x60, 0x6f, 0xaf, 0x68, 0x32, 0xea, + 0x52, 0x4d, 0xdd, 0x84, 0x93, 0x03, 0x49, 0x67, 0x7c, 0x0e, 0xe5, 0x91, 0xf1, 0x99, 0x35, 0xae, + 0xde, 0x32, 0x3e, 0x8f, 0x52, 0xc4, 0xe1, 0x2b, 0x05, 0xf8, 0x81, 0x7d, 0x67, 0x04, 0xdd, 0x05, + 0x88, 0x9d, 0x86, 0xd8, 0x37, 0xc2, 0x7f, 0x73, 0xc4, 0x68, 0xcf, 0x55, 0xd9, 0x1f, 0x7f, 0x33, + 0xf5, 0x97, 0x79, 0x46, 0xe4, 0x6f, 0x16, 0xe4, 0x19, 0x78, 0x1d, 0x29, 0x04, 0x38, 0xf0, 0x08, + 0x66, 0x10, 0xaa, 0x8d, 0x84, 0xa4, 0xa1, 0x2f, 0xc3, 0x57, 0xab, 0x09, 0xb3, 0x56, 0x2c, 0xa0, + 0xe8, 0x79, 0x18, 0x70, 0x3c, 0x8f, 0x27, 0x55, 0x91, 0x48, 0x5c, 0xe8, 0xa5, 0xab, 0x45, 0x6a, + 0x10, 0x36, 0xf1, 0xec, 0x3f, 0x2f, 0xc0, 0xf8, 0x3e, 0x2c, 0xae, 0x23, 0x99, 0xb6, 0xdc, 0x73, + 0x32, 0xad, 0xc8, 0x7f, 0xe8, 0xeb, 0x92, 0xff, 0xf0, 0x3c, 0x0c, 0xc4, 0xc4, 0x69, 0x8a, 0xf8, + 0x30, 0x61, 0x98, 0xd0, 0x0e, 0x69, 0x0d, 0xc2, 0x26, 0x1e, 0x65, 0xaa, 0xc3, 0x4e, 0xad, 0x46, + 0xa2, 0x48, 0x26, 0x38, 0x08, 0xe3, 0x6e, 0x6e, 0xd9, 0x13, 0xcc, 0x66, 0x3e, 0x95, 0x20, 0x81, + 0x53, 0x24, 0xd3, 0x13, 0x5e, 0xed, 0x71, 0xc2, 0x7f, 0xb5, 0x00, 0x8f, 0xef, 0x29, 0x6c, 0x7b, + 0x4e, 0xf2, 0x69, 0x47, 0x24, 0x4c, 0x2f, 0x9c, 0x9b, 0x11, 0x09, 0x31, 0x83, 0xf0, 0x59, 0x6a, + 0xb5, 0x54, 0x6c, 0x6f, 0xfe, 0x19, 0x6f, 0x7c, 0x96, 0x12, 0x24, 0x70, 0x8a, 0xe4, 0x61, 0x97, + 0xe5, 0xb7, 0x4a, 0xf0, 0x44, 0x0f, 0x2a, 0x49, 0x8e, 0x99, 0x81, 0xc9, 0x2c, 0xd6, 0xe2, 0x03, + 0xca, 0x62, 0x3d, 0xdc, 0x74, 0xbd, 0x95, 0xfc, 0xda, 0x53, 0x06, 0xe2, 0xd7, 0x0b, 0x70, 0xbe, + 0xbb, 0xfe, 0x84, 0xde, 0x0d, 0x23, 0xa1, 0x0a, 0x9d, 0x33, 0x13, 0x60, 0x4f, 0x73, 0xf3, 0x4f, + 0x02, 0x84, 0xd3, 0xb8, 0x68, 0x02, 0xa0, 0xe5, 0xc4, 0x1b, 0xd1, 0xe5, 0x6d, 0x37, 0x8a, 0x45, + 0x55, 0xae, 0x61, 0xee, 0x70, 0x94, 0xad, 0xd8, 0xc0, 0xa0, 0xe4, 0xd8, 0xbf, 0xd9, 0xe0, 0x46, + 0x10, 0xf3, 0x87, 0xf8, 0xd9, 0xef, 0xb4, 0xbc, 0xc3, 0xc8, 0x00, 0xe1, 0x34, 0x2e, 0x25, 0xc7, + 0x5c, 0xda, 0x7c, 0xa0, 0xfc, 0x50, 0xc8, 0xc8, 0x2d, 0xa8, 0x56, 0x6c, 0x60, 0xa4, 0x53, 0x7b, + 0xcb, 0xfb, 0xa7, 0xf6, 0xda, 0x7f, 0xaf, 0x00, 0xe7, 0xba, 0xea, 0xdf, 0xbd, 0xb1, 0xa9, 0x87, + 0x2f, 0x1d, 0xf7, 0x90, 0x3b, 0xec, 0x80, 0x79, 0x73, 0x5d, 0x56, 0x9a, 0x48, 0xe3, 0x3c, 0x7c, + 0x75, 0x8a, 0x87, 0x6f, 0x3e, 0x3b, 0x32, 0x37, 0x4b, 0x07, 0xc8, 0xdc, 0x4c, 0x7d, 0x8c, 0x72, + 0x8f, 0xd2, 0xe1, 0xcf, 0x4a, 0x5d, 0xa7, 0x97, 0x9e, 0xd7, 0x7b, 0x32, 0xae, 0xcf, 0xc2, 0x29, + 0xd7, 0x67, 0xf7, 0xd9, 0xad, 0xb4, 0xd7, 0x44, 0xa1, 0x26, 0x5e, 0x8d, 0x54, 0xe5, 0x44, 0xcc, + 0xa7, 0xe0, 0xb8, 0xe3, 0x89, 0x87, 0x30, 0xc1, 0xf3, 0x70, 0x53, 0x7a, 0x40, 0xce, 0xbd, 0x04, + 0x67, 0xe5, 0x54, 0x6c, 0x38, 0x21, 0xa9, 0x0b, 0x61, 0x1b, 0x89, 0x2c, 0x98, 0x73, 0x3c, 0x93, + 0x26, 0x03, 0x01, 0x67, 0x3f, 0xc7, 0xae, 0x10, 0x0b, 0x5a, 0x6e, 0x4d, 0x9c, 0x4c, 0xf5, 0x15, + 0x62, 0xb4, 0x11, 0x73, 0x98, 0x96, 0x17, 0xd5, 0x93, 0x91, 0x17, 0xbf, 0x50, 0x80, 0x0b, 0x7b, + 0x9f, 0x5a, 0xe4, 0xf7, 0xb7, 0x7a, 0xf8, 0xfe, 0x85, 0x07, 0xf2, 0xfd, 0x8b, 0x87, 0xf8, 0xfe, + 0xa5, 0x7d, 0xf9, 0xdb, 0x87, 0xa0, 0xaa, 0x46, 0xc2, 0xb3, 0x22, 0xd4, 0xf6, 0xef, 0xc8, 0x8a, + 0x50, 0x7b, 0xdf, 0xc0, 0xda, 0xef, 0xf6, 0xdf, 0x1f, 0x85, 0x41, 0x65, 0xa6, 0xec, 0xf5, 0x8a, + 0x3b, 0xfb, 0x4b, 0x7d, 0x30, 0x94, 0x28, 0x5b, 0x9b, 0xf0, 0x4f, 0x58, 0xfb, 0xfa, 0x27, 0x58, + 0x96, 0x4b, 0xdb, 0x97, 0xf7, 0x5f, 0x1a, 0x59, 0x2e, 0x6d, 0x9f, 0x60, 0x0e, 0xa3, 0xc7, 0xb1, + 0x7a, 0xb8, 0x83, 0xdb, 0xbe, 0x98, 0x59, 0x75, 0x1c, 0x9b, 0x65, 0xad, 0x58, 0x40, 0xd1, 0xc7, + 0x2d, 0x18, 0x8c, 0x98, 0xf3, 0x8b, 0x7b, 0x77, 0xc4, 0xf6, 0xbf, 0x76, 0xf4, 0xaa, 0xbc, 0xaa, + 0x44, 0x33, 0x0b, 0x30, 0x33, 0x5b, 0x70, 0x82, 0x22, 0xfa, 0x94, 0x05, 0x55, 0x75, 0x4d, 0x97, + 0xb8, 0xcc, 0x76, 0x25, 0xdf, 0xaa, 0xc0, 0xdc, 0x2d, 0xa0, 0xfc, 0x88, 0xaa, 0x3c, 0x2b, 0xd6, + 0x84, 0x51, 0xa4, 0x5c, 0x2f, 0xfd, 0xc7, 0xe3, 0x7a, 0x81, 0x0c, 0xb7, 0xcb, 0x3b, 0xa1, 0xda, + 0x74, 0x7c, 0x77, 0x9d, 0x44, 0x31, 0xf7, 0x86, 0xc8, 0x62, 0xe5, 0xb2, 0x11, 0x6b, 0x38, 0x55, + 0x8d, 0x22, 0xf6, 0x62, 0xb1, 0xe1, 0xbe, 0x60, 0xaa, 0xd1, 0x8a, 0x6e, 0xc6, 0x26, 0x8e, 0xe9, + 0x6b, 0x81, 0x07, 0xea, 0x6b, 0x19, 0xd8, 0xdb, 0xd7, 0x62, 0xff, 0x5d, 0x0b, 0xce, 0x66, 0x7e, + 0xb5, 0x87, 0x37, 0x6e, 0xd8, 0xfe, 0x72, 0x19, 0x4e, 0x67, 0xd4, 0x9f, 0x46, 0x3b, 0xe6, 0x7a, + 0xb6, 0xf2, 0x08, 0xc1, 0x49, 0x46, 0x94, 0xc8, 0x69, 0xcc, 0x58, 0xc4, 0x07, 0xf3, 0x74, 0x6a, + 0x6f, 0x63, 0xf1, 0x64, 0xbd, 0x8d, 0xc6, 0xb2, 0x2c, 0x3d, 0xd0, 0x65, 0x59, 0xde, 0xc7, 0x05, + 0xf8, 0x0d, 0x0b, 0xc6, 0x9a, 0x5d, 0x2e, 0x3d, 0x11, 0x76, 0xfb, 0x5b, 0xc7, 0x73, 0xa5, 0xca, + 0xf4, 0x63, 0xf7, 0x76, 0xc7, 0xbb, 0xde, 0x35, 0x83, 0xbb, 0x8e, 0xca, 0xfe, 0x4e, 0x11, 0x58, + 0xf1, 0x73, 0x56, 0x63, 0x74, 0x07, 0x7d, 0xcc, 0x2c, 0x63, 0x6f, 0xe5, 0x55, 0x72, 0x9d, 0x77, + 0xae, 0xca, 0xe0, 0xf3, 0x19, 0xcc, 0xaa, 0x8a, 0x9f, 0x66, 0x5a, 0x85, 0x1e, 0x98, 0x96, 0x27, + 0xef, 0x0b, 0x28, 0xe6, 0x7f, 0x5f, 0x40, 0x35, 0x7d, 0x57, 0xc0, 0xde, 0x9f, 0xb8, 0xf4, 0x50, + 0x7e, 0xe2, 0x5f, 0xb2, 0x38, 0xe3, 0x49, 0x7d, 0x05, 0xad, 0x19, 0x58, 0x7b, 0x68, 0x06, 0x4f, + 0x43, 0x25, 0x22, 0xde, 0xfa, 0x55, 0xe2, 0x78, 0x42, 0x83, 0xd0, 0xe1, 0x1f, 0xa2, 0x1d, 0x2b, + 0x0c, 0x76, 0xa1, 0xb8, 0xe7, 0x05, 0x77, 0x2f, 0x37, 0x5b, 0xf1, 0x8e, 0xd0, 0x25, 0xf4, 0x85, + 0xe2, 0x0a, 0x82, 0x0d, 0x2c, 0xfb, 0xaf, 0x17, 0xf8, 0x0a, 0x14, 0x31, 0x44, 0x2f, 0xa4, 0xae, + 0x80, 0xed, 0x3d, 0xfc, 0xe6, 0x23, 0x00, 0xb5, 0xa0, 0xd9, 0xa2, 0x1a, 0xf8, 0x6a, 0x20, 0x14, + 0xd3, 0xab, 0x47, 0xd5, 0xa6, 0x65, 0x7f, 0xfa, 0x35, 0x74, 0x1b, 0x36, 0xe8, 0x25, 0x78, 0x69, + 0x71, 0x5f, 0x5e, 0x9a, 0x60, 0x2b, 0xa5, 0x7d, 0xa4, 0xdd, 0x9f, 0x5b, 0x90, 0xd0, 0x88, 0x50, + 0x0b, 0xca, 0x74, 0xb8, 0x3b, 0x62, 0x87, 0x2e, 0xe5, 0xa7, 0x7e, 0x51, 0xd6, 0x28, 0x96, 0x3d, + 0xfb, 0x89, 0x39, 0x21, 0xe4, 0x89, 0x50, 0x23, 0x3e, 0xab, 0x37, 0xf2, 0x23, 0x78, 0x35, 0x08, + 0x36, 0x79, 0x5c, 0x80, 0x0e, 0x5b, 0xb2, 0x5f, 0x80, 0xd1, 0x8e, 0x41, 0xb1, 0xdb, 0x1e, 0x83, + 0xb0, 0xd6, 0xb1, 0x5c, 0x59, 0xfe, 0x33, 0xe6, 0x30, 0xfb, 0xeb, 0x16, 0x9c, 0x4a, 0x77, 0x8f, + 0xde, 0xb4, 0x60, 0x34, 0x4a, 0xf7, 0x77, 0x5c, 0x73, 0xa7, 0xc2, 0x85, 0x3b, 0x40, 0xb8, 0x73, + 0x10, 0xf6, 0xff, 0x15, 0x8b, 0xff, 0xb6, 0xeb, 0xd7, 0x83, 0xbb, 0x4a, 0x31, 0xb1, 0xba, 0x2a, + 0x26, 0x74, 0x3f, 0xd6, 0x36, 0x48, 0xbd, 0xed, 0x75, 0x24, 0x5e, 0xaf, 0x88, 0x76, 0xac, 0x30, + 0x58, 0x9e, 0x69, 0x5b, 0x5c, 0x28, 0x92, 0x5a, 0x94, 0xb3, 0xa2, 0x1d, 0x2b, 0x0c, 0xf4, 0x1c, + 0x0c, 0x1a, 0x2f, 0x29, 0xd7, 0x25, 0x53, 0xc8, 0x0d, 0x91, 0x19, 0xe1, 0x04, 0x16, 0x9a, 0x00, + 0x50, 0x4a, 0x8e, 0x14, 0x91, 0xcc, 0x64, 0xa7, 0x38, 0x51, 0x84, 0x0d, 0x0c, 0x96, 0xd5, 0xed, + 0xb5, 0x23, 0xe6, 0x93, 0xea, 0xd3, 0x45, 0xae, 0x67, 0x44, 0x1b, 0x56, 0x50, 0xca, 0x4d, 0x9a, + 0x8e, 0xdf, 0x76, 0x3c, 0x3a, 0x43, 0xe2, 0x10, 0xae, 0xb6, 0xe1, 0xa2, 0x82, 0x60, 0x03, 0x8b, + 0xbe, 0x71, 0xec, 0x36, 0xc9, 0xcb, 0x81, 0x2f, 0xc3, 0x3c, 0xb5, 0xd7, 0x54, 0xb4, 0x63, 0x85, + 0x61, 0xff, 0x67, 0x0b, 0x46, 0x74, 0x8d, 0x08, 0x76, 0x74, 0x4e, 0x9c, 0x19, 0xad, 0x7d, 0x6d, + 0x06, 0xc9, 0xe4, 0xf9, 0x42, 0x4f, 0xc9, 0xf3, 0x66, 0x5e, 0x7b, 0x71, 0xcf, 0xbc, 0xf6, 0x1f, + 0xd2, 0x77, 0x86, 0xf3, 0x04, 0xf8, 0x81, 0xac, 0xfb, 0xc2, 0x91, 0x0d, 0x7d, 0x35, 0x47, 0x15, + 0x48, 0x1a, 0xe4, 0x67, 0x87, 0x99, 0x29, 0x86, 0x24, 0x20, 0xf6, 0x12, 0x54, 0x95, 0xb7, 0x4e, + 0x1e, 0x54, 0xad, 0xec, 0x83, 0x6a, 0x4f, 0xf9, 0xb5, 0xd3, 0x6b, 0xdf, 0xfc, 0xee, 0x85, 0xb7, + 0xfd, 0xe1, 0x77, 0x2f, 0xbc, 0xed, 0x4f, 0xbe, 0x7b, 0xe1, 0x6d, 0x1f, 0xbf, 0x77, 0xc1, 0xfa, + 0xe6, 0xbd, 0x0b, 0xd6, 0x1f, 0xde, 0xbb, 0x60, 0xfd, 0xc9, 0xbd, 0x0b, 0xd6, 0x77, 0xee, 0x5d, + 0xb0, 0xbe, 0xf8, 0x1f, 0x2e, 0xbc, 0xed, 0xe5, 0xcc, 0x38, 0x5f, 0xfa, 0xe3, 0x99, 0x5a, 0x7d, + 0x72, 0xeb, 0x12, 0x0b, 0x35, 0xa5, 0xdb, 0x6b, 0xd2, 0x58, 0x53, 0x93, 0x72, 0x7b, 0xfd, 0xbf, + 0x00, 0x00, 0x00, 0xff, 0xff, 0xcb, 0x2d, 0xac, 0xa3, 0xb5, 0xeb, 0x00, 0x00, } func (m *AWSAuthConfig) Marshal() (dAtA []byte, err error) { @@ -11216,6 +11278,18 @@ func (m *PullRequestGenerator) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.ScmManager != nil { + { + size, err := m.ScmManager.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x52 + } if m.AzureDevOps != nil { { size, err := m.AzureDevOps.MarshalToSizedBuffer(dAtA[:i]) @@ -11766,6 +11840,64 @@ func (m *PullRequestGeneratorGithub) MarshalToSizedBuffer(dAtA []byte) (int, err return len(dAtA) - i, nil } +func (m *PullRequestGeneratorScmManager) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *PullRequestGeneratorScmManager) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *PullRequestGeneratorScmManager) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + i-- + if m.Insecure { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x28 + if m.TokenRef != nil { + { + size, err := m.TokenRef.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + i -= len(m.API) + copy(dAtA[i:], m.API) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.API))) + i-- + dAtA[i] = 0x1a + i -= len(m.Name) + copy(dAtA[i:], m.Name) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name))) + i-- + dAtA[i] = 0x12 + i -= len(m.Namespace) + copy(dAtA[i:], m.Namespace) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Namespace))) + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + func (m *RefTarget) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -13322,6 +13454,18 @@ func (m *SCMProviderGenerator) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.ScmManager != nil { + { + size, err := m.ScmManager.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x6a + } if m.AWSCodeCommit != nil { { size, err := m.AWSCodeCommit.MarshalToSizedBuffer(dAtA[:i]) @@ -13995,6 +14139,62 @@ func (m *SCMProviderGeneratorGitlab) MarshalToSizedBuffer(dAtA []byte) (int, err return len(dAtA) - i, nil } +func (m *SCMProviderGeneratorScmManager) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *SCMProviderGeneratorScmManager) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *SCMProviderGeneratorScmManager) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + i-- + if m.Insecure { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x20 + i-- + if m.AllBranches { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x18 + if m.TokenRef != nil { + { + size, err := m.TokenRef.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + i -= len(m.API) + copy(dAtA[i:], m.API) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.API))) + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + func (m *SecretRef) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -17043,6 +17243,10 @@ func (m *PullRequestGenerator) Size() (n int) { l = m.AzureDevOps.Size() n += 1 + l + sovGenerated(uint64(l)) } + if m.ScmManager != nil { + l = m.ScmManager.Size() + n += 1 + l + sovGenerated(uint64(l)) + } return n } @@ -17218,6 +17422,26 @@ func (m *PullRequestGeneratorGithub) Size() (n int) { return n } +func (m *PullRequestGeneratorScmManager) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Namespace) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Name) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.API) + n += 1 + l + sovGenerated(uint64(l)) + if m.TokenRef != nil { + l = m.TokenRef.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + n += 2 + return n +} + func (m *RefTarget) Size() (n int) { if m == nil { return 0 @@ -17834,6 +18058,10 @@ func (m *SCMProviderGenerator) Size() (n int) { l = m.AWSCodeCommit.Size() n += 1 + l + sovGenerated(uint64(l)) } + if m.ScmManager != nil { + l = m.ScmManager.Size() + n += 1 + l + sovGenerated(uint64(l)) + } return n } @@ -18023,6 +18251,23 @@ func (m *SCMProviderGeneratorGitlab) Size() (n int) { return n } +func (m *SCMProviderGeneratorScmManager) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.API) + n += 1 + l + sovGenerated(uint64(l)) + if m.TokenRef != nil { + l = m.TokenRef.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + n += 2 + n += 2 + return n +} + func (m *SecretRef) Size() (n int) { if m == nil { return 0 @@ -20073,6 +20318,7 @@ func (this *PullRequestGenerator) String() string { `Template:` + strings.Replace(strings.Replace(this.Template.String(), "ApplicationSetTemplate", "ApplicationSetTemplate", 1), `&`, ``, 1) + `,`, `Bitbucket:` + strings.Replace(this.Bitbucket.String(), "PullRequestGeneratorBitbucket", "PullRequestGeneratorBitbucket", 1) + `,`, `AzureDevOps:` + strings.Replace(this.AzureDevOps.String(), "PullRequestGeneratorAzureDevOps", "PullRequestGeneratorAzureDevOps", 1) + `,`, + `ScmManager:` + strings.Replace(this.ScmManager.String(), "PullRequestGeneratorScmManager", "PullRequestGeneratorScmManager", 1) + `,`, `}`, }, "") return s @@ -20178,6 +20424,20 @@ func (this *PullRequestGeneratorGithub) String() string { }, "") return s } +func (this *PullRequestGeneratorScmManager) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&PullRequestGeneratorScmManager{`, + `Namespace:` + fmt.Sprintf("%v", this.Namespace) + `,`, + `Name:` + fmt.Sprintf("%v", this.Name) + `,`, + `API:` + fmt.Sprintf("%v", this.API) + `,`, + `TokenRef:` + strings.Replace(this.TokenRef.String(), "SecretRef", "SecretRef", 1) + `,`, + `Insecure:` + fmt.Sprintf("%v", this.Insecure) + `,`, + `}`, + }, "") + return s +} func (this *RefTarget) String() string { if this == nil { return "nil" @@ -20626,6 +20886,7 @@ func (this *SCMProviderGenerator) String() string { `Template:` + strings.Replace(strings.Replace(this.Template.String(), "ApplicationSetTemplate", "ApplicationSetTemplate", 1), `&`, ``, 1) + `,`, `Values:` + mapStringForValues + `,`, `AWSCodeCommit:` + strings.Replace(this.AWSCodeCommit.String(), "SCMProviderGeneratorAWSCodeCommit", "SCMProviderGeneratorAWSCodeCommit", 1) + `,`, + `ScmManager:` + strings.Replace(this.ScmManager.String(), "SCMProviderGeneratorScmManager", "SCMProviderGeneratorScmManager", 1) + `,`, `}`, }, "") return s @@ -20751,6 +21012,19 @@ func (this *SCMProviderGeneratorGitlab) String() string { }, "") return s } +func (this *SCMProviderGeneratorScmManager) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&SCMProviderGeneratorScmManager{`, + `API:` + fmt.Sprintf("%v", this.API) + `,`, + `TokenRef:` + strings.Replace(this.TokenRef.String(), "SecretRef", "SecretRef", 1) + `,`, + `AllBranches:` + fmt.Sprintf("%v", this.AllBranches) + `,`, + `Insecure:` + fmt.Sprintf("%v", this.Insecure) + `,`, + `}`, + }, "") + return s +} func (this *SecretRef) String() string { if this == nil { return "nil" @@ -39989,34 +40263,67 @@ func (m *PullRequestGenerator) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Filters = append(m.Filters, PullRequestGeneratorFilter{}) - if err := m.Filters[len(m.Filters)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.Filters = append(m.Filters, PullRequestGeneratorFilter{}) + if err := m.Filters[len(m.Filters)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field RequeueAfterSeconds", wireType) + } + var v int64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.RequeueAfterSeconds = &v + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Template", 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 err := m.Template.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex - case 6: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field RequeueAfterSeconds", wireType) - } - var v int64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int64(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.RequeueAfterSeconds = &v - case 7: + case 8: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Template", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Bitbucket", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -40043,13 +40350,16 @@ func (m *PullRequestGenerator) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.Template.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if m.Bitbucket == nil { + m.Bitbucket = &PullRequestGeneratorBitbucket{} + } + if err := m.Bitbucket.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex - case 8: + case 9: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Bitbucket", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AzureDevOps", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -40076,16 +40386,16 @@ func (m *PullRequestGenerator) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.Bitbucket == nil { - m.Bitbucket = &PullRequestGeneratorBitbucket{} + if m.AzureDevOps == nil { + m.AzureDevOps = &PullRequestGeneratorAzureDevOps{} } - if err := m.Bitbucket.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.AzureDevOps.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex - case 9: + case 10: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AzureDevOps", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ScmManager", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -40112,10 +40422,10 @@ func (m *PullRequestGenerator) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.AzureDevOps == nil { - m.AzureDevOps = &PullRequestGeneratorAzureDevOps{} + if m.ScmManager == nil { + m.ScmManager = &PullRequestGeneratorScmManager{} } - if err := m.AzureDevOps.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.ScmManager.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -41557,11 +41867,225 @@ func (m *PullRequestGeneratorGithub) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Repo = string(dAtA[iNdEx:postIndex]) + m.Repo = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field API", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.API = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TokenRef", 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.TokenRef == nil { + m.TokenRef = &SecretRef{} + } + if err := m.TokenRef.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AppSecretName", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.AppSecretName = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Labels", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Labels = append(m.Labels, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *PullRequestGeneratorScmManager) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: PullRequestGeneratorScmManager: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: PullRequestGeneratorScmManager: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Namespace", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Namespace = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 3: + case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field API", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -41589,13 +42113,13 @@ func (m *PullRequestGeneratorGithub) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.API = string(dAtA[iNdEx:postIndex]) + m.Name = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 4: + case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TokenRef", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field API", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated @@ -41605,33 +42129,29 @@ func (m *PullRequestGeneratorGithub) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthGenerated } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthGenerated } if postIndex > l { return io.ErrUnexpectedEOF } - if m.TokenRef == nil { - m.TokenRef = &SecretRef{} - } - if err := m.TokenRef.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } + m.API = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 5: + case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AppSecretName", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TokenRef", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated @@ -41641,29 +42161,33 @@ func (m *PullRequestGeneratorGithub) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthGenerated } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthGenerated } if postIndex > l { return io.ErrUnexpectedEOF } - m.AppSecretName = string(dAtA[iNdEx:postIndex]) + if m.TokenRef == nil { + m.TokenRef = &SecretRef{} + } + if err := m.TokenRef.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } iNdEx = postIndex - case 6: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Labels", wireType) + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Insecure", wireType) } - var stringLen uint64 + var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated @@ -41673,24 +42197,12 @@ func (m *PullRequestGeneratorGithub) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + v |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Labels = append(m.Labels, string(dAtA[iNdEx:postIndex])) - iNdEx = postIndex + m.Insecure = bool(v != 0) default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) @@ -47906,6 +48418,42 @@ func (m *SCMProviderGenerator) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 13: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ScmManager", 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.ScmManager == nil { + m.ScmManager = &SCMProviderGeneratorScmManager{} + } + if err := m.ScmManager.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) @@ -49633,6 +50181,164 @@ func (m *SCMProviderGeneratorGitlab) Unmarshal(dAtA []byte) error { } return nil } +func (m *SCMProviderGeneratorScmManager) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: SCMProviderGeneratorScmManager: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SCMProviderGeneratorScmManager: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field API", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.API = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TokenRef", 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.TokenRef == nil { + m.TokenRef = &SecretRef{} + } + if err := m.TokenRef.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field AllBranches", 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.AllBranches = bool(v != 0) + case 4: + 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) + default: + iNdEx = preIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *SecretRef) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/pkg/apis/application/v1alpha1/generated.proto b/pkg/apis/application/v1alpha1/generated.proto index 345d290ce2f4d4..4e7d94b2f88695 100644 --- a/pkg/apis/application/v1alpha1/generated.proto +++ b/pkg/apis/application/v1alpha1/generated.proto @@ -1410,6 +1410,8 @@ message PullRequestGenerator { // Additional provider to use and config for it. optional PullRequestGeneratorAzureDevOps azuredevops = 9; + + optional PullRequestGeneratorScmManager scmManager = 10; } // PullRequestGeneratorAzureDevOps defines connection info specific to AzureDevOps. @@ -1547,6 +1549,24 @@ message PullRequestGeneratorGithub { repeated string labels = 6; } +// PullRequestGenerator defines connection info specific to SCM-Manager. +message PullRequestGeneratorScmManager { + // SCM-Manager namespace. Required. + optional string namespace = 1; + + // SCM-Manager repo name to scan. Required. + optional string name = 2; + + // SCM-Manager Instance URL with context path. Required + optional string api = 3; + + // Authentication token reference. + optional SecretRef tokenRef = 4; + + // Allow insecure tls, for self-signed certificates; default: false. + optional bool insecure = 5; +} + message RefTarget { optional Repository repo = 1; @@ -2020,6 +2040,8 @@ message SCMProviderGenerator { map values = 11; optional SCMProviderGeneratorAWSCodeCommit awsCodeCommit = 12; + + optional SCMProviderGeneratorScmManager scmManager = 13; } // SCMProviderGeneratorAWSCodeCommit defines connection info specific to AWS CodeCommit. @@ -2182,6 +2204,21 @@ message SCMProviderGeneratorGitlab { optional ConfigMapKeyRef caRef = 9; } +// SCMProviderGeneratorScmManager defines a connection info specific to Scm-Manager. +message SCMProviderGeneratorScmManager { + // The SCM-Manager URL to talk to. For example https://scm-manager.org/scm. + optional string api = 1; + + // Authentication token reference. + optional SecretRef tokenRef = 2; + + // Scan all branches instead of just the default branch. + optional bool allBranches = 3; + + // Allow self-signed TLS / Certificates; default: false + optional bool insecure = 4; +} + // Utility struct for a reference to a secret key. message SecretRef { optional string secretName = 1; diff --git a/pkg/apis/application/v1alpha1/openapi_generated.go b/pkg/apis/application/v1alpha1/openapi_generated.go index 183346db71a505..66d49ece84d4db 100644 --- a/pkg/apis/application/v1alpha1/openapi_generated.go +++ b/pkg/apis/application/v1alpha1/openapi_generated.go @@ -124,6 +124,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorGitLab": schema_pkg_apis_application_v1alpha1_PullRequestGeneratorGitLab(ref), "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorGitea": schema_pkg_apis_application_v1alpha1_PullRequestGeneratorGitea(ref), "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorGithub": schema_pkg_apis_application_v1alpha1_PullRequestGeneratorGithub(ref), + "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorScmManager": schema_pkg_apis_application_v1alpha1_PullRequestGeneratorScmManager(ref), "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.RefTarget": schema_pkg_apis_application_v1alpha1_RefTarget(ref), "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.RepoCreds": schema_pkg_apis_application_v1alpha1_RepoCreds(ref), "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.RepoCredsList": schema_pkg_apis_application_v1alpha1_RepoCredsList(ref), @@ -155,6 +156,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorGitea": schema_pkg_apis_application_v1alpha1_SCMProviderGeneratorGitea(ref), "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorGithub": schema_pkg_apis_application_v1alpha1_SCMProviderGeneratorGithub(ref), "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorGitlab": schema_pkg_apis_application_v1alpha1_SCMProviderGeneratorGitlab(ref), + "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorScmManager": schema_pkg_apis_application_v1alpha1_SCMProviderGeneratorScmManager(ref), "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SecretRef": schema_pkg_apis_application_v1alpha1_SecretRef(ref), "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SignatureKey": schema_pkg_apis_application_v1alpha1_SignatureKey(ref), "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SyncOperation": schema_pkg_apis_application_v1alpha1_SyncOperation(ref), @@ -5111,11 +5113,16 @@ func schema_pkg_apis_application_v1alpha1_PullRequestGenerator(ref common.Refere Ref: ref("github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorAzureDevOps"), }, }, + "scmManager": { + SchemaProps: spec.SchemaProps{ + Ref: ref("github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorScmManager"), + }, + }, }, }, }, Dependencies: []string{ - "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.ApplicationSetTemplate", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorAzureDevOps", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorBitbucket", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorBitbucketServer", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorFilter", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorGitLab", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorGitea", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorGithub"}, + "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.ApplicationSetTemplate", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorAzureDevOps", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorBitbucket", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorBitbucketServer", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorFilter", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorGitLab", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorGitea", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorGithub", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.PullRequestGeneratorScmManager"}, } } @@ -5520,6 +5527,59 @@ func schema_pkg_apis_application_v1alpha1_PullRequestGeneratorGithub(ref common. } } +func schema_pkg_apis_application_v1alpha1_PullRequestGeneratorScmManager(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PullRequestGenerator defines connection info specific to SCM-Manager.", + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "SCM-Manager namespace. Required.", + Default: "", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "SCM-Manager repo name to scan. Required.", + Default: "", + Type: []string{"string"}, + Format: "", + }, + }, + "api": { + SchemaProps: spec.SchemaProps{ + Description: "SCM-Manager Instance URL with context path. Required", + Default: "", + Type: []string{"string"}, + Format: "", + }, + }, + "tokenRef": { + SchemaProps: spec.SchemaProps{ + Description: "Authentication token reference.", + Ref: ref("github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SecretRef"), + }, + }, + "insecure": { + SchemaProps: spec.SchemaProps{ + Description: "Allow insecure tls, for self-signed certificates; default: false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"namespace", "name", "api"}, + }, + }, + Dependencies: []string{ + "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SecretRef"}, + } +} + func schema_pkg_apis_application_v1alpha1_RefTarget(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ @@ -7060,11 +7120,16 @@ func schema_pkg_apis_application_v1alpha1_SCMProviderGenerator(ref common.Refere Ref: ref("github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorAWSCodeCommit"), }, }, + "scmManager": { + SchemaProps: spec.SchemaProps{ + Ref: ref("github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorScmManager"), + }, + }, }, }, }, Dependencies: []string{ - "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.ApplicationSetTemplate", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorAWSCodeCommit", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorAzureDevOps", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorBitbucket", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorBitbucketServer", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorFilter", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorGitea", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorGithub", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorGitlab"}, + "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.ApplicationSetTemplate", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorAWSCodeCommit", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorAzureDevOps", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorBitbucket", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorBitbucketServer", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorFilter", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorGitea", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorGithub", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorGitlab", "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SCMProviderGeneratorScmManager"}, } } @@ -7523,6 +7588,50 @@ func schema_pkg_apis_application_v1alpha1_SCMProviderGeneratorGitlab(ref common. } } +func schema_pkg_apis_application_v1alpha1_SCMProviderGeneratorScmManager(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SCMProviderGeneratorScmManager defines a connection info specific to Scm-Manager.", + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "api": { + SchemaProps: spec.SchemaProps{ + Description: "The SCM-Manager URL to talk to. For example https://scm-manager.org/scm.", + Default: "", + Type: []string{"string"}, + Format: "", + }, + }, + "tokenRef": { + SchemaProps: spec.SchemaProps{ + Description: "Authentication token reference.", + Ref: ref("github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SecretRef"), + }, + }, + "allBranches": { + SchemaProps: spec.SchemaProps{ + Description: "Scan all branches instead of just the default branch.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "insecure": { + SchemaProps: spec.SchemaProps{ + Description: "Allow self-signed TLS / Certificates; default: false", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"api"}, + }, + }, + Dependencies: []string{ + "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.SecretRef"}, + } +} + func schema_pkg_apis_application_v1alpha1_SecretRef(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ diff --git a/pkg/apis/application/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/application/v1alpha1/zz_generated.deepcopy.go index a6de15dd7a2656..1fe2b3cae9ac2e 100644 --- a/pkg/apis/application/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/application/v1alpha1/zz_generated.deepcopy.go @@ -2974,6 +2974,11 @@ func (in *PullRequestGenerator) DeepCopyInto(out *PullRequestGenerator) { *out = new(PullRequestGeneratorAzureDevOps) (*in).DeepCopyInto(*out) } + if in.ScmManager != nil { + in, out := &in.ScmManager, &out.ScmManager + *out = new(PullRequestGeneratorScmManager) + (*in).DeepCopyInto(*out) + } return } @@ -3159,6 +3164,27 @@ func (in *PullRequestGeneratorGithub) DeepCopy() *PullRequestGeneratorGithub { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *PullRequestGeneratorScmManager) DeepCopyInto(out *PullRequestGeneratorScmManager) { + *out = *in + if in.TokenRef != nil { + in, out := &in.TokenRef, &out.TokenRef + *out = new(SecretRef) + **out = **in + } + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PullRequestGeneratorScmManager. +func (in *PullRequestGeneratorScmManager) DeepCopy() *PullRequestGeneratorScmManager { + if in == nil { + return nil + } + out := new(PullRequestGeneratorScmManager) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *RefTarget) DeepCopyInto(out *RefTarget) { *out = *in @@ -3834,6 +3860,11 @@ func (in *SCMProviderGenerator) DeepCopyInto(out *SCMProviderGenerator) { *out = new(SCMProviderGeneratorAWSCodeCommit) (*in).DeepCopyInto(*out) } + if in.ScmManager != nil { + in, out := &in.ScmManager, &out.ScmManager + *out = new(SCMProviderGeneratorScmManager) + (*in).DeepCopyInto(*out) + } return } @@ -4046,6 +4077,27 @@ func (in *SCMProviderGeneratorGitlab) DeepCopy() *SCMProviderGeneratorGitlab { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *SCMProviderGeneratorScmManager) DeepCopyInto(out *SCMProviderGeneratorScmManager) { + *out = *in + if in.TokenRef != nil { + in, out := &in.TokenRef, &out.TokenRef + *out = new(SecretRef) + **out = **in + } + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SCMProviderGeneratorScmManager. +func (in *SCMProviderGeneratorScmManager) DeepCopy() *SCMProviderGeneratorScmManager { + if in == nil { + return nil + } + out := new(SCMProviderGeneratorScmManager) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *SecretRef) DeepCopyInto(out *SecretRef) { *out = *in