Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Okstad <pokstad@gitlab.com>2020-11-02 19:59:41 +0300
committerPavlo Strokov <pstrokov@gitlab.com>2020-11-02 19:59:41 +0300
commit556f1bc9fcda288f90e9487b53dca7b781f4d2e6 (patch)
tree59baf4bdd19bde0ef49f30be82ecc07c746aebca
parent98fe9f19fcecf4b9d27ab60dfaf6d127447a0350 (diff)
Ensure reference hooks are used in valid commands
-rw-r--r--changelogs/unreleased/po-ref-hook-env-vars.yml5
-rw-r--r--internal/git/hooks.go20
-rw-r--r--internal/git/hooks_test.go2
-rw-r--r--internal/git/safecmd.go38
-rw-r--r--internal/git/subcommand.go50
-rw-r--r--internal/praefect/protoregistry/protoregistry_test.go2
-rw-r--r--proto/go/gitalypb/repository-service.pb.go391
-rw-r--r--proto/repository-service.proto2
8 files changed, 303 insertions, 207 deletions
diff --git a/changelogs/unreleased/po-ref-hook-env-vars.yml b/changelogs/unreleased/po-ref-hook-env-vars.yml
new file mode 100644
index 000000000..8ff0124cb
--- /dev/null
+++ b/changelogs/unreleased/po-ref-hook-env-vars.yml
@@ -0,0 +1,5 @@
+---
+title: Ensure reference hooks are used in valid commands
+merge_request: 2583
+author:
+type: other
diff --git a/internal/git/hooks.go b/internal/git/hooks.go
index fe4fe17bf..faf98281a 100644
--- a/internal/git/hooks.go
+++ b/internal/git/hooks.go
@@ -14,12 +14,18 @@ import (
// repository changes that may possibly update references
func WithRefTxHook(ctx context.Context, repo *gitalypb.Repository, cfg config.Cfg) CmdOpt {
return func(cc *cmdCfg) error {
+ if repo == nil {
+ return fmt.Errorf("missing repo: %w", ErrInvalidArg)
+ }
+
rfEnvs, err := refHookEnv(ctx, repo, cfg)
if err != nil {
return fmt.Errorf("ref hook env var: %w", err)
}
cc.env = append(cc.env, rfEnvs...)
+ cc.refHookConfigured = true
+
return nil
}
}
@@ -38,3 +44,17 @@ func refHookEnv(ctx context.Context, repo *gitalypb.Repository, cfg config.Cfg)
fmt.Sprintf("%s=true", featureflag.ReferenceTransactionHookEnvVar),
}, nil
}
+
+type refHookRequired struct{}
+
+// RequireRefHook updates the context to indicate a ref hook is required for
+// the current operation
+func RequireRefHook(ctx context.Context) context.Context {
+ return context.WithValue(ctx, refHookRequired{}, true)
+}
+
+// IsRefHookRequired returns true if the context has been marked to indicate a
+// ref hook may be required
+func IsRefHookRequired(ctx context.Context) bool {
+ return ctx.Value(refHookRequired{}) != nil
+}
diff --git a/internal/git/hooks_test.go b/internal/git/hooks_test.go
index a2a3726a3..edde977af 100644
--- a/internal/git/hooks_test.go
+++ b/internal/git/hooks_test.go
@@ -24,7 +24,7 @@ func TestWithRefHook(t *testing.T) {
config.Config.Auth.Token = token
opt := git.WithRefTxHook(ctx, testRepo, config.Config)
- subCmd := git.SubCmd{Name: "log", Flags: []git.Option{git.Flag{"-0"}}}
+ subCmd := git.SubCmd{Name: "update-ref", Args: []string{"master", "0000"}}
for _, tt := range []struct {
name string
diff --git a/internal/git/safecmd.go b/internal/git/safecmd.go
index 106ada62b..d88c29513 100644
--- a/internal/git/safecmd.go
+++ b/internal/git/safecmd.go
@@ -39,6 +39,7 @@ func incrInvalidArg(subcmdName string) {
type Cmd interface {
ValidateArgs() ([]string, error)
IsCmd()
+ Subcommand() string
}
// SubCmd represents a specific git command
@@ -60,6 +61,9 @@ var subCmdNameRegex = regexp.MustCompile(`^[[:alnum:]]+(-[[:alnum:]]+)*$`)
// IsCmd allows SubCmd to satisfy the Cmd interface
func (sc SubCmd) IsCmd() {}
+// Subcommand returns the subcommand name
+func (sc SubCmd) Subcommand() string { return sc.Name }
+
func (sc SubCmd) supportsEndOfOptions() bool {
switch sc.Name {
case "checkout", "linguist", "for-each-ref", "archive", "upload-archive", "grep", "clone", "config", "rev-parse", "remote", "blame", "ls-tree":
@@ -220,10 +224,11 @@ func ConvertGlobalOptions(options *gitalypb.GlobalOptions) []Option {
}
type cmdCfg struct {
- env []string
- stdin io.Reader
- stdout io.Writer
- stderr io.Writer
+ env []string
+ stdin io.Reader
+ stdout io.Writer
+ stderr io.Writer
+ refHookConfigured bool
}
// CmdOpt is an option for running a command
@@ -253,12 +258,29 @@ func WithStderr(w io.Writer) CmdOpt {
}
}
-func handleOpts(cc *cmdCfg, opts []CmdOpt) error {
+var (
+ // ErrRefHookRequired indicates a ref hook configuration is needed but
+ // absent from the command
+ ErrRefHookRequired = errors.New("ref hook is required but not configured")
+ // ErrRefHookNotRequired indicates an extraneous ref hook option was
+ // provided
+ ErrRefHookNotRequired = errors.New("ref hook is configured but not required")
+)
+
+func handleOpts(ctx context.Context, sc Cmd, cc *cmdCfg, opts []CmdOpt) error {
for _, opt := range opts {
if err := opt(cc); err != nil {
return err
}
}
+
+ if IsRefHookRequired(ctx) && !cc.refHookConfigured && mayUpdateRef(sc.Subcommand()) {
+ return fmt.Errorf("subcommand %q: %w", sc.Subcommand(), ErrRefHookRequired)
+ }
+ if cc.refHookConfigured && !mayUpdateRef(sc.Subcommand()) {
+ return fmt.Errorf("subcommand %q: %w", sc.Subcommand(), ErrRefHookNotRequired)
+ }
+
return nil
}
@@ -273,7 +295,7 @@ func SafeCmd(ctx context.Context, repo repository.GitRepo, globals []Option, sc
func SafeCmdWithEnv(ctx context.Context, env []string, repo repository.GitRepo, globals []Option, sc Cmd, opts ...CmdOpt) (*command.Command, error) {
cc := &cmdCfg{}
- if err := handleOpts(cc, opts); err != nil {
+ if err := handleOpts(ctx, sc, cc, opts); err != nil {
return nil, err
}
@@ -294,7 +316,7 @@ func SafeCmdWithEnv(ctx context.Context, env []string, repo repository.GitRepo,
func SafeBareCmd(ctx context.Context, stream CmdStream, env []string, globals []Option, sc Cmd, opts ...CmdOpt) (*command.Command, error) {
cc := &cmdCfg{}
- if err := handleOpts(cc, opts); err != nil {
+ if err := handleOpts(ctx, sc, cc, opts); err != nil {
return nil, err
}
@@ -326,7 +348,7 @@ func SafeBareCmdInDir(ctx context.Context, dir string, stream CmdStream, env []s
func SafeStdinCmd(ctx context.Context, repo repository.GitRepo, globals []Option, sc SubCmd, opts ...CmdOpt) (*command.Command, error) {
cc := &cmdCfg{}
- if err := handleOpts(cc, opts); err != nil {
+ if err := handleOpts(ctx, sc, cc, opts); err != nil {
return nil, err
}
diff --git a/internal/git/subcommand.go b/internal/git/subcommand.go
new file mode 100644
index 000000000..902bc7760
--- /dev/null
+++ b/internal/git/subcommand.go
@@ -0,0 +1,50 @@
+package git
+
+// Curated list of Git command names for special git.SafeCmd validation logic
+const (
+ scCatFile = "cat-file"
+ scLog = "log"
+ scForEachRef = "for-each-ref"
+ scRevParse = "rev-parse"
+ scCountObjects = "count-objects"
+ scConfig = "config"
+ scMultiPackIndex = "multi-pack-index"
+ scRepack = "repack"
+ scDiff = "diff"
+ scPackRefs = "pack-refs"
+ scMergeBase = "merge-base"
+)
+
+var knownReadOnlyCmds = map[string]struct{}{
+ scCatFile: struct{}{},
+ scLog: struct{}{},
+ scForEachRef: struct{}{},
+ scRevParse: struct{}{},
+ scCountObjects: struct{}{},
+ scDiff: struct{}{},
+ scMergeBase: struct{}{},
+}
+
+// knownNoRefUpdates indicates all repo mutating commands where it is known
+// whether references are never updated
+var knownNoRefUpdates = map[string]struct{}{
+ scConfig: struct{}{},
+ scMultiPackIndex: struct{}{},
+ scRepack: struct{}{},
+ scPackRefs: struct{}{},
+}
+
+// mayUpdateRef indicates if a subcommand is known to update references.
+// This is useful to determine if a command requires reference hook
+// configuration. A non-exhaustive list of commands is consulted to determine if
+// refs are updated. When unknown, true is returned to err on the side of
+// caution.
+func mayUpdateRef(subcmd string) bool {
+ if _, ok := knownReadOnlyCmds[subcmd]; ok {
+ return false
+ }
+ if _, ok := knownNoRefUpdates[subcmd]; ok {
+ return false
+ }
+ return true
+}
diff --git a/internal/praefect/protoregistry/protoregistry_test.go b/internal/praefect/protoregistry/protoregistry_test.go
index df7874404..00ecb31f7 100644
--- a/internal/praefect/protoregistry/protoregistry_test.go
+++ b/internal/praefect/protoregistry/protoregistry_test.go
@@ -124,7 +124,7 @@ func TestNewProtoRegistry(t *testing.T) {
"ApplyGitattributes": protoregistry.OpMutator,
"FetchRemote": protoregistry.OpMutator,
"CreateRepository": protoregistry.OpMutator,
- "GetArchive": protoregistry.OpMutator,
+ "GetArchive": protoregistry.OpAccessor,
"HasLocalBranches": protoregistry.OpAccessor,
"FetchSourceBranch": protoregistry.OpMutator,
"Fsck": protoregistry.OpMutator,
diff --git a/proto/go/gitalypb/repository-service.pb.go b/proto/go/gitalypb/repository-service.pb.go
index 33ee82d13..50ea46957 100644
--- a/proto/go/gitalypb/repository-service.pb.go
+++ b/proto/go/gitalypb/repository-service.pb.go
@@ -4097,202 +4097,201 @@ func init() {
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor_e9b1768cf174c79b) }
var fileDescriptor_e9b1768cf174c79b = []byte{
- // 3107 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5b, 0x6f, 0x1c, 0xc7,
- 0xb1, 0xd6, 0xf2, 0xb2, 0x97, 0xe2, 0x4a, 0x5a, 0x36, 0x29, 0x72, 0x39, 0x22, 0x45, 0x69, 0x24,
- 0xcb, 0xb2, 0x2c, 0x53, 0xb2, 0x74, 0x80, 0xe3, 0x73, 0x0e, 0x0e, 0x02, 0x2e, 0xef, 0x92, 0x78,
- 0xf1, 0x90, 0x8a, 0x61, 0x01, 0xc6, 0x78, 0x76, 0xb6, 0x97, 0x3b, 0xe1, 0xec, 0xcc, 0xaa, 0xa7,
- 0x57, 0x14, 0x0d, 0xe4, 0x21, 0x01, 0xf2, 0x16, 0x18, 0x08, 0x10, 0xc4, 0x79, 0xcc, 0x73, 0xfe,
- 0x40, 0xf2, 0x12, 0x04, 0x79, 0xc9, 0x7f, 0xf0, 0x5f, 0xc8, 0x4f, 0xc8, 0x53, 0xd0, 0x97, 0x99,
- 0x9e, 0xeb, 0x5a, 0x01, 0x17, 0xce, 0xdb, 0x74, 0x55, 0x77, 0x55, 0x75, 0x75, 0xf5, 0xa5, 0xbe,
- 0x1a, 0x68, 0x12, 0x3c, 0xf0, 0x03, 0x87, 0xfa, 0xe4, 0xe2, 0x93, 0x00, 0x93, 0xb7, 0x8e, 0x8d,
- 0xd7, 0x06, 0xc4, 0xa7, 0x3e, 0x2a, 0x9f, 0x3a, 0xd4, 0x72, 0x2f, 0x34, 0x70, 0x1d, 0x8f, 0x0a,
- 0x9a, 0x56, 0x0f, 0x7a, 0x16, 0xc1, 0x1d, 0xd1, 0xd2, 0x8f, 0x61, 0xd1, 0x88, 0x46, 0x6f, 0xbd,
- 0x73, 0x02, 0x1a, 0x18, 0xf8, 0xcd, 0x10, 0x07, 0x14, 0x7d, 0x06, 0xa0, 0x04, 0x37, 0x4b, 0xb7,
- 0x4b, 0x0f, 0x66, 0x9e, 0xa2, 0x35, 0x21, 0x71, 0x4d, 0x0d, 0x6a, 0x4d, 0xfd, 0xfe, 0xef, 0x8f,
- 0x4a, 0x46, 0xac, 0xaf, 0xfe, 0x14, 0x9a, 0x59, 0xa1, 0xc1, 0xc0, 0xf7, 0x02, 0x8c, 0x16, 0xa0,
- 0x8c, 0x39, 0x85, 0x4b, 0xac, 0x1a, 0xb2, 0xa5, 0x9f, 0xf0, 0x31, 0x96, 0x7d, 0xb6, 0xe7, 0xd9,
- 0x04, 0xf7, 0xb1, 0x47, 0x2d, 0xf7, 0xf2, 0x96, 0xdc, 0x84, 0xa5, 0x1c, 0xa9, 0xc2, 0x14, 0x9d,
- 0xc0, 0xac, 0x60, 0x6e, 0x0f, 0xdd, 0xcb, 0xeb, 0x42, 0x77, 0xe1, 0xaa, 0x4d, 0xb0, 0x45, 0xb1,
- 0xd9, 0x76, 0x68, 0xdf, 0x1a, 0x34, 0x27, 0xf8, 0x04, 0xeb, 0x82, 0xd8, 0xe2, 0x34, 0x7d, 0x1e,
- 0x50, 0x5c, 0xa7, 0xb4, 0x64, 0x1f, 0x66, 0xf7, 0x9d, 0xce, 0x3b, 0xc1, 0xb9, 0xfc, 0xac, 0xe7,
- 0x01, 0xc5, 0xc5, 0x49, 0x25, 0xbf, 0x2e, 0xc1, 0x8d, 0x1d, 0x8b, 0xb4, 0xad, 0x53, 0xbc, 0xe1,
- 0xbb, 0x2e, 0xb6, 0xe9, 0x8f, 0x33, 0x67, 0x34, 0x0f, 0xd3, 0x03, 0x32, 0xf4, 0x70, 0x73, 0x92,
- 0x33, 0x45, 0x43, 0x6f, 0xc2, 0x42, 0xda, 0x1a, 0x69, 0xe8, 0x31, 0x2c, 0x7e, 0x41, 0x1c, 0x8a,
- 0x37, 0xfc, 0x7e, 0xdf, 0xa1, 0x3b, 0xc4, 0x1a, 0xf4, 0x2e, 0xef, 0x13, 0x0d, 0x9a, 0x59, 0xa1,
- 0x52, 0xe1, 0x73, 0xb8, 0xb6, 0xe1, 0x62, 0xcb, 0x1b, 0x0e, 0x2e, 0xaf, 0x67, 0x16, 0xae, 0x47,
- 0xb2, 0xa4, 0xf8, 0xcf, 0xe1, 0x86, 0x1a, 0x72, 0xec, 0x7c, 0x83, 0x2f, 0xaf, 0xe5, 0x11, 0x2c,
- 0xa4, 0x45, 0xca, 0xfd, 0x85, 0x60, 0x2a, 0x70, 0xbe, 0xc1, 0x5c, 0xda, 0xa4, 0xc1, 0xbf, 0xf5,
- 0x37, 0xb0, 0xb4, 0x3e, 0x18, 0xb8, 0x17, 0x3b, 0x0e, 0xb5, 0x28, 0x25, 0x4e, 0x7b, 0x48, 0xf1,
- 0xe5, 0xb7, 0x39, 0xd2, 0xa0, 0x4a, 0xf0, 0x5b, 0x27, 0x70, 0x7c, 0x8f, 0xaf, 0x7b, 0xdd, 0x88,
- 0xda, 0xfa, 0x32, 0x68, 0x79, 0x2a, 0xa5, 0x47, 0xfe, 0x3a, 0x01, 0x68, 0x1b, 0x53, 0xbb, 0x67,
- 0xe0, 0xbe, 0x4f, 0x2f, 0xef, 0x0f, 0x76, 0xaa, 0x10, 0x2e, 0x8a, 0x1b, 0x52, 0x33, 0x64, 0x8b,
- 0x85, 0x5e, 0xd7, 0x27, 0x76, 0x14, 0x7a, 0xbc, 0x81, 0x16, 0xa1, 0xe2, 0xf9, 0x26, 0xb5, 0x4e,
- 0x83, 0xe6, 0x94, 0x38, 0x84, 0x3c, 0xff, 0xc4, 0x3a, 0x0d, 0x50, 0x13, 0x2a, 0xd4, 0xe9, 0x63,
- 0x7f, 0x48, 0x9b, 0xd3, 0xb7, 0x4b, 0x0f, 0xa6, 0x8d, 0xb0, 0xc9, 0x86, 0x04, 0x41, 0xcf, 0x3c,
- 0xc3, 0x17, 0xcd, 0xb2, 0xd0, 0x10, 0x04, 0xbd, 0x17, 0xf8, 0x02, 0xad, 0xc2, 0xcc, 0x99, 0xe7,
- 0x9f, 0x7b, 0x66, 0xcf, 0x67, 0x87, 0x5a, 0x85, 0x33, 0x81, 0x93, 0x76, 0x19, 0x05, 0x2d, 0x41,
- 0xd5, 0xf3, 0x4d, 0xb1, 0x01, 0x6a, 0x5c, 0x5b, 0xc5, 0xf3, 0x8f, 0x58, 0x13, 0x3d, 0x83, 0xab,
- 0xc2, 0x4e, 0x73, 0x60, 0x11, 0xab, 0x1f, 0x34, 0x81, 0x4f, 0xf9, 0x9a, 0x9a, 0x32, 0xf7, 0x4e,
- 0x5d, 0x74, 0x3a, 0xe2, 0x7d, 0x9e, 0x4f, 0x55, 0xab, 0x8d, 0x9a, 0x7e, 0x03, 0xe6, 0x12, 0x0e,
- 0x54, 0x5b, 0x67, 0x83, 0x6f, 0x3d, 0xe5, 0xad, 0xb1, 0x6c, 0x9d, 0xac, 0x50, 0xa9, 0xf0, 0x1f,
- 0x13, 0x30, 0xbb, 0x83, 0xe9, 0x3a, 0xb1, 0x7b, 0xce, 0xdb, 0x31, 0x2c, 0xe4, 0x4d, 0xa8, 0xd9,
- 0x7c, 0x87, 0x9a, 0x4e, 0x47, 0xae, 0x65, 0x55, 0x10, 0xf6, 0x3a, 0x6c, 0x95, 0x07, 0x04, 0x77,
- 0x9d, 0x77, 0x7c, 0x39, 0x6b, 0x86, 0x6c, 0xa1, 0xcf, 0xa0, 0xdc, 0xf5, 0x49, 0xdf, 0xa2, 0x7c,
- 0x39, 0xaf, 0x3d, 0xbd, 0x1d, 0xaa, 0xca, 0x58, 0xb6, 0xb6, 0xcd, 0xfb, 0x19, 0xb2, 0x3f, 0xdb,
- 0x2d, 0x03, 0x8b, 0xf6, 0xf8, 0x6a, 0xd7, 0x0d, 0xfe, 0xcd, 0x82, 0x00, 0xbf, 0xb3, 0xdd, 0x61,
- 0x07, 0x37, 0xcb, 0xb7, 0x27, 0x1f, 0xd4, 0x8d, 0xb0, 0x89, 0x56, 0x00, 0xb0, 0xeb, 0x74, 0xd8,
- 0x72, 0xd1, 0x1e, 0x5f, 0xea, 0xaa, 0x51, 0xe3, 0x94, 0x23, 0x36, 0xf0, 0x21, 0xcc, 0x3a, 0x1e,
- 0xef, 0x69, 0xba, 0xdd, 0xc0, 0x6c, 0xbb, 0x7e, 0x3b, 0x68, 0x56, 0x79, 0xaf, 0xeb, 0x92, 0xf1,
- 0xb2, 0x1b, 0xb4, 0x18, 0x59, 0x7f, 0x06, 0x65, 0x61, 0x0a, 0xaa, 0xc0, 0xe4, 0xeb, 0xbd, 0xa3,
- 0xc6, 0x15, 0xf6, 0x71, 0xb2, 0x6e, 0x34, 0x4a, 0x08, 0xa0, 0x7c, 0xb2, 0x6e, 0x98, 0x3b, 0xaf,
- 0x1b, 0x13, 0x68, 0x06, 0x2a, 0xec, 0xbb, 0xf5, 0xfa, 0x69, 0x63, 0x52, 0x7f, 0x00, 0x28, 0x3e,
- 0x23, 0xb5, 0xe3, 0x3b, 0x16, 0xb5, 0xb8, 0x9b, 0xeb, 0x06, 0xff, 0x66, 0x71, 0xb0, 0x6b, 0x05,
- 0x2f, 0x7d, 0xdb, 0x72, 0x5b, 0xc4, 0xf2, 0xec, 0xde, 0x18, 0xf6, 0xbb, 0xfe, 0x04, 0x9a, 0x59,
- 0xa1, 0xd2, 0x88, 0x79, 0x98, 0x7e, 0x6b, 0xb9, 0x43, 0x2c, 0x6f, 0x75, 0xd1, 0xd0, 0xbf, 0x2f,
- 0x41, 0x93, 0x87, 0xe9, 0xb1, 0x3f, 0x24, 0x36, 0x16, 0xa3, 0x2e, 0x1f, 0x24, 0x3f, 0x81, 0xd9,
- 0x80, 0x0b, 0x34, 0x63, 0x02, 0x26, 0x8a, 0x04, 0x18, 0x0d, 0xd1, 0xd9, 0x48, 0x5c, 0x5b, 0x52,
- 0x40, 0x9b, 0x9b, 0xc4, 0xe3, 0xa9, 0x6e, 0xd4, 0x83, 0x98, 0x99, 0x6c, 0xb5, 0xa9, 0x45, 0x4e,
- 0x31, 0x35, 0x09, 0xee, 0xf2, 0xc8, 0xaa, 0x1b, 0x35, 0x41, 0x31, 0x70, 0x57, 0x7f, 0x06, 0x4b,
- 0x39, 0x53, 0x53, 0xaf, 0x1c, 0x82, 0x83, 0xa1, 0x4b, 0xc3, 0x57, 0x8e, 0x68, 0xe9, 0x3b, 0x30,
- 0xb3, 0x1d, 0x8c, 0xe3, 0x8a, 0xbf, 0x07, 0x75, 0x21, 0x48, 0xf9, 0x1f, 0x13, 0xe2, 0x13, 0x19,
- 0x05, 0xa2, 0xa1, 0xff, 0xb9, 0x04, 0xd7, 0xf9, 0xad, 0x67, 0xe0, 0xee, 0xe5, 0xdd, 0xde, 0x80,
- 0x49, 0xe6, 0x09, 0x71, 0xd4, 0xb3, 0xcf, 0xc4, 0x0d, 0x30, 0x99, 0xbc, 0x01, 0xd0, 0x1d, 0xa8,
- 0xfb, 0x6e, 0xc7, 0x8c, 0xf8, 0xc2, 0x81, 0x33, 0xbe, 0xdb, 0x31, 0xc2, 0x2e, 0xd1, 0xe9, 0x3c,
- 0x1d, 0x3b, 0x9d, 0x9f, 0x4f, 0x55, 0xcb, 0x8d, 0x8a, 0xde, 0x84, 0x86, 0xb2, 0x5c, 0x4c, 0xf2,
- 0xf9, 0x54, 0xb5, 0xd4, 0x98, 0xd0, 0x3d, 0x98, 0xdf, 0x76, 0xbc, 0xce, 0x3e, 0x26, 0xa7, 0xb8,
- 0x65, 0x05, 0x63, 0x38, 0x74, 0x96, 0xa1, 0x16, 0x9a, 0x19, 0x34, 0x27, 0xf8, 0x9e, 0x57, 0x04,
- 0xfd, 0x63, 0xb8, 0x91, 0xd2, 0xa7, 0x36, 0x5e, 0xdb, 0x0a, 0x44, 0xc8, 0xd7, 0x0c, 0xfe, 0xad,
- 0x7f, 0x5b, 0x82, 0x59, 0x71, 0x58, 0x6e, 0xfb, 0xe4, 0xec, 0x3f, 0x1f, 0xea, 0xec, 0x2d, 0x18,
- 0xb7, 0x27, 0x7a, 0xfa, 0x2e, 0xed, 0x05, 0x06, 0x66, 0x26, 0xef, 0x79, 0x47, 0xc4, 0x3f, 0x25,
- 0x38, 0x08, 0xc6, 0x72, 0x7a, 0x13, 0x2e, 0x34, 0x76, 0x7a, 0x0b, 0xc2, 0x5e, 0x47, 0xff, 0x7f,
- 0xd0, 0xf2, 0x74, 0x4a, 0x67, 0xae, 0xc2, 0x8c, 0xe3, 0x99, 0x03, 0x49, 0x96, 0xdb, 0x06, 0x9c,
- 0xa8, 0xa3, 0x30, 0xf9, 0xf8, 0xcd, 0xd0, 0x0a, 0x7a, 0x63, 0x36, 0x39, 0xe0, 0x42, 0x63, 0x26,
- 0x0b, 0x42, 0x68, 0x72, 0x56, 0xe7, 0xfb, 0x9a, 0xec, 0xc2, 0xad, 0xf4, 0xc5, 0xb9, 0x4d, 0xfc,
- 0xfe, 0x2b, 0xe3, 0xe5, 0x58, 0x36, 0xe3, 0x90, 0xb8, 0xd2, 0x62, 0xf6, 0xa9, 0xdf, 0x81, 0xd5,
- 0x42, 0x6d, 0x72, 0xd9, 0x0f, 0x61, 0x4e, 0x74, 0x69, 0x0d, 0xbd, 0x8e, 0x3b, 0x86, 0x77, 0xe8,
- 0x43, 0x98, 0x4f, 0x0a, 0x1c, 0x71, 0x27, 0x7d, 0x3b, 0x01, 0x8d, 0x63, 0x4c, 0x37, 0x7c, 0xaf,
- 0xeb, 0x9c, 0x5e, 0xde, 0x01, 0x9f, 0x41, 0x05, 0x7b, 0x94, 0x38, 0x58, 0x6c, 0xd9, 0x99, 0xa7,
- 0xb7, 0xc2, 0x61, 0x69, 0x25, 0x6b, 0x5b, 0x1e, 0x25, 0x17, 0x46, 0xd8, 0x5d, 0xfb, 0x55, 0x09,
- 0xa6, 0x39, 0x89, 0x39, 0x91, 0xbd, 0xe8, 0xc4, 0x06, 0x66, 0x9f, 0x68, 0x05, 0x6a, 0xfc, 0xea,
- 0x32, 0x03, 0x4a, 0x84, 0x73, 0x77, 0xaf, 0x18, 0x55, 0x4e, 0x3a, 0xa6, 0x04, 0xdd, 0x81, 0x19,
- 0xc1, 0x76, 0x3c, 0xfa, 0xec, 0x29, 0x3f, 0xf3, 0xa6, 0x77, 0xaf, 0x18, 0xc0, 0x89, 0x7b, 0x8c,
- 0x86, 0x56, 0x41, 0xb4, 0xcc, 0xb6, 0xef, 0xbb, 0xe2, 0x7d, 0xb9, 0x7b, 0xc5, 0x10, 0x52, 0x5b,
- 0xbe, 0xef, 0xb6, 0x2a, 0xf2, 0xaa, 0xd4, 0xe7, 0x60, 0x36, 0x66, 0xaa, 0x5c, 0x22, 0x1b, 0xe6,
- 0x36, 0xb1, 0x8b, 0x59, 0xa2, 0x32, 0x1e, 0x3f, 0x21, 0x98, 0x3a, 0xc3, 0x17, 0xc2, 0x49, 0x35,
- 0x83, 0x7f, 0xeb, 0x0b, 0x30, 0x9f, 0x54, 0x22, 0x95, 0x3b, 0x2c, 0x5d, 0x0e, 0xa8, 0x4f, 0xf0,
- 0xc6, 0x30, 0xa0, 0x7e, 0x7f, 0xd7, 0xf7, 0xcf, 0x82, 0xb1, 0x98, 0xc0, 0xa3, 0x61, 0x22, 0x16,
- 0x0d, 0xcb, 0xa0, 0xe5, 0xa9, 0x92, 0x86, 0x9c, 0x40, 0xb3, 0x65, 0xd9, 0x67, 0xc3, 0xc1, 0x38,
- 0xed, 0xd0, 0x1f, 0xc3, 0x52, 0x8e, 0xd4, 0x11, 0x21, 0xfb, 0x06, 0xee, 0xe4, 0x6d, 0xa9, 0x31,
- 0xed, 0x9e, 0x5c, 0xbf, 0xdc, 0x03, 0x7d, 0x94, 0x4a, 0xe9, 0x9f, 0x03, 0x40, 0xec, 0x4e, 0x7a,
- 0xe9, 0xd8, 0xd8, 0x1b, 0xc3, 0x0d, 0xa8, 0x6f, 0xc0, 0x5c, 0x42, 0x9e, 0xf4, 0xc9, 0x23, 0x40,
- 0xae, 0x20, 0x99, 0x41, 0xcf, 0x27, 0xd4, 0xf4, 0xac, 0x7e, 0x78, 0xdf, 0x35, 0x24, 0xe7, 0x98,
- 0x31, 0x0e, 0xac, 0x3e, 0x5f, 0xb4, 0x1d, 0x4c, 0xf7, 0xbc, 0xae, 0xbf, 0x3e, 0xbe, 0x2c, 0x53,
- 0xff, 0x3f, 0x58, 0xca, 0x91, 0x2a, 0x0d, 0xbc, 0x05, 0xa0, 0xd2, 0x4b, 0xb9, 0x74, 0x31, 0x0a,
- 0x33, 0x69, 0xc3, 0x72, 0xed, 0xa1, 0x6b, 0x51, 0xbc, 0xd1, 0xc3, 0xf6, 0x59, 0x30, 0xec, 0x5f,
- 0xde, 0xa4, 0xff, 0x86, 0xa5, 0x1c, 0xa9, 0xd2, 0x24, 0x0d, 0xaa, 0xb6, 0xa4, 0x49, 0x4f, 0x45,
- 0x6d, 0xb6, 0x6c, 0x3b, 0x98, 0x1e, 0x7b, 0xd6, 0x20, 0xe8, 0xf9, 0x97, 0x87, 0x5f, 0xf4, 0x8f,
- 0x60, 0x2e, 0x21, 0x6f, 0x44, 0x28, 0x7f, 0x57, 0x82, 0xbb, 0x79, 0x81, 0x35, 0x36, 0x63, 0x58,
- 0xa2, 0xdb, 0xa3, 0x74, 0x60, 0xaa, 0x6b, 0xa9, 0xc2, 0xda, 0xaf, 0x88, 0xcb, 0x2e, 0x59, 0xce,
- 0xb2, 0x86, 0xb4, 0x27, 0x73, 0x37, 0xde, 0x77, 0x7d, 0x48, 0x7b, 0xfa, 0x7d, 0xb8, 0x37, 0xda,
- 0x30, 0x19, 0xf3, 0xbf, 0x2b, 0xc1, 0xfc, 0x0e, 0xa6, 0x86, 0x75, 0xbe, 0xd1, 0xb3, 0xbc, 0xd3,
- 0x71, 0x20, 0x18, 0x77, 0xe1, 0x6a, 0x97, 0xf8, 0x7d, 0x33, 0x01, 0x63, 0xd4, 0x8c, 0x3a, 0x23,
- 0x46, 0xaf, 0xd4, 0x55, 0x98, 0xa1, 0xbe, 0x99, 0x78, 0xe7, 0xd6, 0x0c, 0xa0, 0x7e, 0xd8, 0x41,
- 0xff, 0xcb, 0x14, 0xdc, 0x48, 0x19, 0x26, 0x17, 0x62, 0x17, 0x66, 0x88, 0x75, 0x6e, 0xda, 0x82,
- 0xdc, 0x2c, 0xf1, 0x7b, 0xea, 0xc3, 0x58, 0x76, 0x9a, 0x1d, 0xb3, 0x16, 0x91, 0x0c, 0x20, 0x11,
- 0x57, 0xfb, 0x7e, 0x12, 0x6a, 0x11, 0x07, 0x2d, 0x42, 0x85, 0x65, 0x97, 0xec, 0xc9, 0x22, 0x42,
- 0xac, 0xcc, 0x9a, 0x7b, 0x9d, 0x08, 0xfd, 0x99, 0x50, 0xe8, 0x0f, 0x5a, 0x81, 0xaa, 0x87, 0xcf,
- 0x45, 0xce, 0xca, 0x8d, 0x6f, 0x4d, 0x34, 0x4b, 0x46, 0xc5, 0xc3, 0xe7, 0x3c, 0x6b, 0x5d, 0x81,
- 0x2a, 0x7b, 0xa7, 0x73, 0xf6, 0x94, 0x62, 0xfb, 0x6e, 0x87, 0xb3, 0x0f, 0xa1, 0xe6, 0x0f, 0x30,
- 0xb1, 0x28, 0x9b, 0xfb, 0x34, 0x4f, 0xaf, 0x3f, 0x7d, 0xcf, 0x09, 0xac, 0x1d, 0x86, 0x03, 0x0d,
- 0x25, 0x83, 0xf9, 0x9c, 0xf9, 0x44, 0x09, 0x15, 0x78, 0x4a, 0x9d, 0x58, 0xe7, 0x51, 0x7f, 0x16,
- 0x4b, 0xcc, 0xa8, 0xbe, 0xdf, 0xc1, 0x3c, 0xcf, 0x9e, 0xe6, 0x06, 0xed, 0xfb, 0x1d, 0xcc, 0xf1,
- 0x14, 0x7c, 0x2e, 0x58, 0x55, 0xc1, 0xf2, 0xf0, 0x39, 0x67, 0xdd, 0x83, 0x6b, 0xe1, 0x4c, 0xcd,
- 0xf6, 0x05, 0x3b, 0x11, 0x6a, 0x22, 0xaf, 0x93, 0x73, 0x6d, 0x31, 0x1a, 0xeb, 0x15, 0x4e, 0x58,
- 0xf6, 0x02, 0xd1, 0x4b, 0x4e, 0x99, 0xf7, 0xd2, 0x1d, 0xa8, 0x29, 0x73, 0x66, 0xa0, 0xf2, 0xea,
- 0xe0, 0xc5, 0xc1, 0xe1, 0x17, 0x07, 0x8d, 0x2b, 0xa8, 0x06, 0xd3, 0xeb, 0x9b, 0x9b, 0x5b, 0x9b,
- 0x22, 0x53, 0xdf, 0x38, 0x3c, 0xda, 0xdb, 0xda, 0x14, 0x99, 0xfa, 0xe6, 0xd6, 0xcb, 0xad, 0x93,
- 0xad, 0xcd, 0xc6, 0x24, 0xaa, 0x43, 0x75, 0xff, 0x70, 0x73, 0x6f, 0x9b, 0xb1, 0xa6, 0x18, 0xcb,
- 0xd8, 0x3a, 0x58, 0xdf, 0xdf, 0xda, 0x6c, 0x4c, 0xa3, 0x06, 0xd4, 0x4f, 0xbe, 0x3c, 0xda, 0x32,
- 0x37, 0x76, 0xd7, 0x0f, 0x76, 0xb6, 0x36, 0x1b, 0x65, 0xfd, 0xb7, 0x25, 0x68, 0x1e, 0x63, 0x8b,
- 0xd8, 0xbd, 0x6d, 0xc7, 0xc5, 0x41, 0xeb, 0x82, 0x9d, 0xa6, 0x97, 0x0f, 0xee, 0x79, 0x98, 0x7e,
- 0x33, 0xc4, 0x32, 0x5d, 0xa8, 0x19, 0xa2, 0x11, 0x26, 0x71, 0x93, 0x2a, 0x89, 0x5b, 0x80, 0x72,
- 0xd7, 0x71, 0x29, 0x26, 0x62, 0xf9, 0x0d, 0xd9, 0xd2, 0x3f, 0x85, 0xa5, 0x1c, 0xab, 0x54, 0xbe,
- 0xd9, 0x65, 0x64, 0x1e, 0xd3, 0x75, 0x43, 0x34, 0xf4, 0x3f, 0x96, 0xe0, 0x66, 0x62, 0xcc, 0x86,
- 0xef, 0x51, 0xec, 0xd1, 0x1f, 0x6f, 0x32, 0x1f, 0x41, 0xc3, 0xee, 0x0d, 0xbd, 0x33, 0xcc, 0x32,
- 0x4f, 0x61, 0xab, 0xc4, 0xf8, 0xae, 0x4b, 0x7a, 0x74, 0x9e, 0x5c, 0xc0, 0x72, 0xbe, 0xad, 0x72,
- 0x8a, 0x4d, 0xa8, 0xf4, 0x2d, 0x6a, 0xf7, 0xa2, 0x49, 0x86, 0x4d, 0xb4, 0x02, 0xc0, 0x3f, 0xcd,
- 0xd8, 0xed, 0x5d, 0xe3, 0x94, 0x4d, 0x8b, 0x5a, 0xe8, 0x36, 0xd4, 0xb1, 0xd7, 0x31, 0xfd, 0xae,
- 0xc9, 0x69, 0x12, 0x7b, 0x04, 0xec, 0x75, 0x0e, 0xbb, 0xfb, 0x8c, 0xa2, 0xff, 0xa6, 0x04, 0x65,
- 0x81, 0xdc, 0x85, 0xef, 0xf8, 0x52, 0xf4, 0x8e, 0x67, 0x7b, 0x98, 0x5f, 0xb3, 0x62, 0xa6, 0xfc,
- 0x1b, 0xfd, 0x2f, 0x2c, 0x45, 0x07, 0xa8, 0x4f, 0x9c, 0x6f, 0x78, 0x58, 0x9a, 0x3d, 0x6c, 0x75,
- 0x30, 0x91, 0x27, 0xd2, 0x62, 0x78, 0xa0, 0x46, 0xfc, 0x5d, 0xce, 0x46, 0x1f, 0xc0, 0xb5, 0xbe,
- 0x43, 0x88, 0x4f, 0x4c, 0x82, 0xbb, 0x7d, 0x6b, 0x10, 0x34, 0xa7, 0xf8, 0x53, 0xf0, 0xaa, 0xa0,
- 0x1a, 0x82, 0xc8, 0xa2, 0x70, 0x81, 0x03, 0x1a, 0xbb, 0x27, 0x27, 0x47, 0xe3, 0xc2, 0x65, 0xef,
- 0x27, 0x70, 0xd9, 0x2c, 0xb4, 0x19, 0xe2, 0xb4, 0x31, 0xe0, 0x75, 0x32, 0x01, 0xbc, 0xea, 0x4b,
- 0xb0, 0x98, 0xb1, 0x4a, 0x2e, 0xe0, 0x97, 0xb0, 0xb2, 0x83, 0xe9, 0x61, 0xfb, 0x67, 0xd8, 0xa6,
- 0x9b, 0x0e, 0xc1, 0xf6, 0xf8, 0xf0, 0xf5, 0xff, 0x82, 0x5b, 0x45, 0xa2, 0x47, 0xe0, 0xec, 0x7f,
- 0x28, 0xc1, 0xfc, 0x86, 0xeb, 0x7b, 0x98, 0xdd, 0x5f, 0x47, 0xbe, 0xef, 0x8e, 0xc3, 0x81, 0x53,
- 0x03, 0x96, 0x47, 0xa4, 0x52, 0x7e, 0x61, 0x19, 0x57, 0xc1, 0xf9, 0x31, 0x47, 0x4f, 0x8e, 0x72,
- 0xb4, 0xbe, 0x08, 0x37, 0x52, 0x16, 0x4a, 0x67, 0xfe, 0xad, 0x04, 0xcb, 0x09, 0xce, 0x9e, 0x47,
- 0x31, 0xf1, 0xac, 0x1f, 0x71, 0x0e, 0xb9, 0x58, 0xc7, 0xe4, 0xbf, 0x81, 0x75, 0xac, 0xc2, 0x4a,
- 0xc1, 0x14, 0x14, 0x3c, 0xce, 0xfc, 0xf1, 0x76, 0xdc, 0xf0, 0x78, 0x56, 0xa8, 0x54, 0xf8, 0x8e,
- 0x29, 0xf4, 0xf8, 0xc1, 0x39, 0x36, 0x85, 0xfc, 0x06, 0xc5, 0xae, 0x45, 0x9d, 0xb7, 0x12, 0x89,
- 0x96, 0xaf, 0x96, 0x90, 0xc8, 0x2e, 0x31, 0x61, 0x55, 0x5a, 0xb3, 0xb4, 0xea, 0x97, 0x25, 0x96,
- 0x7c, 0x0d, 0x5c, 0xc7, 0x1e, 0x6f, 0xa5, 0x00, 0x3d, 0x84, 0xb2, 0x58, 0x94, 0x11, 0x10, 0x95,
- 0xec, 0xa1, 0xaf, 0xc0, 0xcd, 0x5c, 0x1b, 0xa4, 0x8d, 0xaf, 0x60, 0xe9, 0x70, 0x40, 0x9d, 0x3e,
- 0xdf, 0x73, 0xe3, 0x5b, 0xac, 0x65, 0xd0, 0xf2, 0xc4, 0x0a, 0xa5, 0x4f, 0xff, 0xb4, 0xca, 0x4b,
- 0xc2, 0x61, 0x5d, 0x4d, 0xd4, 0xd2, 0xd1, 0x57, 0xd0, 0x48, 0x97, 0xb3, 0xd1, 0x6a, 0x56, 0x5b,
- 0xa2, 0x7a, 0xae, 0xdd, 0x2e, 0xee, 0x20, 0x67, 0x58, 0xfe, 0xe7, 0x77, 0x0f, 0x26, 0xaa, 0x13,
- 0xe8, 0xeb, 0xb0, 0x0c, 0x1d, 0xab, 0x51, 0xa3, 0xf8, 0xf0, 0xdc, 0xa2, 0xb8, 0x76, 0x67, 0x44,
- 0x8f, 0x84, 0x86, 0x12, 0x7a, 0x01, 0xa0, 0x8a, 0xce, 0x68, 0x29, 0x39, 0x30, 0x56, 0xfc, 0xd6,
- 0xb4, 0x3c, 0x56, 0x56, 0x98, 0x2a, 0x2e, 0x2b, 0x61, 0x99, 0xfa, 0xb5, 0x12, 0x96, 0x53, 0x8b,
- 0x0e, 0x85, 0x7d, 0x01, 0xd7, 0x92, 0x45, 0x60, 0xb4, 0x12, 0x3d, 0x2e, 0xf3, 0x4a, 0xd5, 0xda,
- 0xad, 0x22, 0x76, 0x4a, 0xf0, 0x57, 0x12, 0x3e, 0x8e, 0x95, 0x7b, 0xd5, 0x9a, 0x15, 0x54, 0x97,
- 0xd5, 0x9a, 0x15, 0x56, 0x8a, 0x63, 0x76, 0x27, 0xeb, 0xaf, 0xca, 0xee, 0xdc, 0x52, 0xaf, 0xb2,
- 0x3b, 0xbf, 0x6c, 0x1b, 0x05, 0x83, 0x0d, 0x28, 0x5b, 0x37, 0x45, 0xd1, 0x5a, 0x17, 0x96, 0x71,
- 0x35, 0x7d, 0x54, 0x97, 0x94, 0xf5, 0x07, 0x30, 0x13, 0x2b, 0x1e, 0xa2, 0x68, 0xa1, 0xb2, 0x25,
- 0x59, 0xed, 0x66, 0x2e, 0x2f, 0xeb, 0xec, 0x74, 0x06, 0xa7, 0x9c, 0x5d, 0x50, 0x8f, 0x54, 0xce,
- 0x2e, 0xac, 0x2d, 0x86, 0xe2, 0xf7, 0x01, 0x54, 0xd9, 0x4b, 0x45, 0x5c, 0xa6, 0xb8, 0xa7, 0x22,
- 0x2e, 0x5b, 0x25, 0x0b, 0x85, 0x3d, 0xe1, 0xd6, 0xa6, 0xcb, 0x58, 0xca, 0xda, 0x82, 0xaa, 0x99,
- 0xb2, 0xb6, 0xa8, 0x02, 0x16, 0xdf, 0xce, 0x99, 0xba, 0x90, 0xda, 0xce, 0x45, 0xd5, 0x30, 0xb5,
- 0x9d, 0x0b, 0x8b, 0x4a, 0x91, 0x3f, 0xfe, 0x07, 0xa6, 0xb6, 0x03, 0xfb, 0x0c, 0xcd, 0x45, 0x43,
- 0x54, 0x49, 0x49, 0x9b, 0x4f, 0x12, 0x53, 0x43, 0xb7, 0xa0, 0x1a, 0x56, 0x55, 0xd0, 0x62, 0x22,
- 0xda, 0x55, 0x85, 0x48, 0x6b, 0x66, 0x19, 0x29, 0x31, 0x27, 0x70, 0x35, 0x51, 0x12, 0x41, 0xcb,
- 0x91, 0xd6, 0x9c, 0xca, 0x8c, 0xb6, 0x52, 0xc0, 0x4d, 0x79, 0xee, 0x05, 0x80, 0x2a, 0x55, 0xa8,
- 0x75, 0xce, 0x94, 0x53, 0xd4, 0x3a, 0xe7, 0x54, 0x36, 0x42, 0x13, 0x6d, 0x40, 0xd9, 0x6a, 0x83,
- 0xda, 0x48, 0x85, 0xd5, 0x0f, 0xb5, 0x91, 0x8a, 0x8b, 0x15, 0xf1, 0xdd, 0x9a, 0xad, 0x0f, 0xc4,
- 0x95, 0x14, 0xd4, 0x2b, 0xe2, 0x4a, 0x8a, 0xca, 0x0b, 0x91, 0x12, 0x92, 0xad, 0xe9, 0x4b, 0x5c,
- 0x1f, 0xdd, 0x2f, 0xda, 0x43, 0xc9, 0x32, 0x83, 0xf6, 0xe1, 0x0f, 0xf6, 0x4b, 0x79, 0xef, 0x18,
- 0xea, 0x71, 0x5c, 0x1f, 0xdd, 0x4c, 0x0a, 0x48, 0x00, 0xa0, 0xda, 0x72, 0x3e, 0x33, 0x39, 0x8d,
- 0x27, 0x25, 0xf4, 0x73, 0xd0, 0x8a, 0xa1, 0x4d, 0xf4, 0xd1, 0x28, 0x1b, 0x93, 0x0a, 0x1f, 0xbe,
- 0x4f, 0xd7, 0xe4, 0x8c, 0x1e, 0x94, 0xd0, 0x2e, 0xd4, 0x22, 0xb8, 0x1d, 0x35, 0x8b, 0x8a, 0x05,
- 0xda, 0x52, 0x0e, 0x27, 0xe5, 0x9d, 0xcf, 0xa1, 0x1e, 0x87, 0xcf, 0x95, 0x77, 0x72, 0x90, 0x7b,
- 0xe5, 0x9d, 0x5c, 0xc4, 0x3d, 0x7e, 0x24, 0x2b, 0x00, 0x36, 0x76, 0x24, 0x67, 0x50, 0xde, 0xd8,
- 0x91, 0x9c, 0x45, 0x6c, 0xa3, 0xa0, 0x69, 0xf3, 0xdf, 0x32, 0x92, 0xa8, 0x29, 0x8a, 0xff, 0x17,
- 0x91, 0x0b, 0xd3, 0xaa, 0x53, 0xa8, 0x10, 0x72, 0x8d, 0xad, 0xe7, 0xd7, 0x30, 0x9b, 0x81, 0x41,
- 0x95, 0x8e, 0x22, 0xdc, 0x55, 0xe9, 0x28, 0xc4, 0x50, 0xa3, 0x59, 0xb4, 0xa0, 0x22, 0x7f, 0xa6,
- 0x42, 0x0b, 0xd1, 0xa8, 0xc4, 0x9f, 0x5a, 0xda, 0x62, 0x86, 0x9e, 0xf2, 0xec, 0x11, 0xcc, 0xc4,
- 0x30, 0x52, 0x14, 0xbf, 0x23, 0x52, 0xd8, 0xa7, 0xf2, 0x6c, 0x0e, 0xa8, 0x1a, 0x9b, 0xf7, 0x2f,
- 0x58, 0xaa, 0x34, 0x02, 0xb1, 0x44, 0x1f, 0x8f, 0x8a, 0xcf, 0xb4, 0xd2, 0x47, 0xef, 0xd7, 0x39,
- 0x35, 0xab, 0x9f, 0xc2, 0xd5, 0x04, 0xfa, 0xa6, 0x4e, 0xe0, 0x3c, 0x88, 0x54, 0x9d, 0xc0, 0xb9,
- 0x90, 0x5d, 0x6c, 0x6e, 0x67, 0x30, 0x9f, 0x07, 0x8a, 0xa0, 0xbb, 0x6a, 0x57, 0x14, 0xc2, 0x3b,
- 0xda, 0xbd, 0xd1, 0x9d, 0x32, 0xca, 0xda, 0x30, 0x9b, 0x41, 0x98, 0x54, 0x00, 0x15, 0x41, 0x62,
- 0x2a, 0x80, 0x0a, 0xe1, 0xa9, 0x98, 0x0e, 0x0c, 0x28, 0x5b, 0x67, 0x42, 0xb1, 0xc7, 0x73, 0x41,
- 0xb9, 0x4b, 0x1d, 0xd1, 0x23, 0xca, 0x54, 0xea, 0x70, 0x69, 0xc3, 0x6c, 0xa6, 0xb4, 0xa4, 0xa6,
- 0x52, 0x54, 0xcb, 0x52, 0x53, 0x29, 0xac, 0x4b, 0xc5, 0xa6, 0xf2, 0x1a, 0xae, 0xa7, 0xa0, 0x10,
- 0x74, 0x2b, 0xf1, 0x6a, 0xc8, 0x20, 0x37, 0xda, 0x6a, 0x21, 0x3f, 0x15, 0x4f, 0x3e, 0x2c, 0xe4,
- 0x03, 0x1e, 0xe8, 0x83, 0x58, 0xe8, 0x14, 0x63, 0x2d, 0xda, 0xfd, 0x1f, 0xea, 0x96, 0xda, 0xda,
- 0x27, 0x70, 0x35, 0x91, 0xab, 0xab, 0x00, 0xce, 0x43, 0x50, 0x54, 0x00, 0xe7, 0xa3, 0x17, 0xe1,
- 0x34, 0xdc, 0x14, 0xbc, 0x11, 0x22, 0x00, 0xe8, 0x5e, 0xee, 0xf8, 0x14, 0xc6, 0xa1, 0x7d, 0xf0,
- 0x03, 0xbd, 0xb2, 0xef, 0xde, 0x74, 0xe6, 0x1f, 0x4f, 0x0c, 0x73, 0x81, 0x86, 0x78, 0x62, 0x58,
- 0x00, 0x1a, 0x24, 0xc4, 0x27, 0x53, 0xf8, 0xb8, 0xf8, 0x5c, 0x58, 0x21, 0x2e, 0xbe, 0x20, 0xfb,
- 0x0f, 0xc5, 0x77, 0x61, 0x2e, 0x27, 0x01, 0x47, 0xb1, 0xb8, 0x2f, 0x42, 0x08, 0xb4, 0xbb, 0x23,
- 0xfb, 0x64, 0x5f, 0x62, 0xd9, 0x94, 0x5b, 0xed, 0xc0, 0xc2, 0x2c, 0x5f, 0xed, 0xc0, 0xe2, 0x8c,
- 0x3d, 0x54, 0xd2, 0x7a, 0xf2, 0x9a, 0x75, 0x76, 0xad, 0xf6, 0x9a, 0xed, 0xf7, 0x1f, 0x8b, 0xcf,
- 0x4f, 0x7c, 0x72, 0xfa, 0x58, 0x88, 0x78, 0xcc, 0xff, 0x76, 0x7f, 0x7c, 0xea, 0xcb, 0xf6, 0xa0,
- 0xdd, 0x2e, 0x73, 0xd2, 0xb3, 0x7f, 0x05, 0x00, 0x00, 0xff, 0xff, 0x46, 0x8b, 0x63, 0xcf, 0x3e,
- 0x2f, 0x00, 0x00,
+ // 3104 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4b, 0x6f, 0x1c, 0xc7,
+ 0xf1, 0xd7, 0xf2, 0xb1, 0x8f, 0xe2, 0x4a, 0x5a, 0x36, 0x29, 0x72, 0x39, 0x22, 0x45, 0x69, 0x24,
+ 0xcb, 0xb2, 0x2c, 0x53, 0xb6, 0xf4, 0x07, 0xfe, 0x4e, 0x82, 0x20, 0xe0, 0xf2, 0x2d, 0x89, 0x0f,
+ 0x0f, 0xa9, 0x18, 0x16, 0x60, 0x8c, 0x67, 0x67, 0x7b, 0xb9, 0x13, 0xce, 0xce, 0xac, 0x7a, 0x7a,
+ 0x45, 0xd1, 0x40, 0x0e, 0x09, 0x90, 0x5b, 0x60, 0x20, 0x40, 0x10, 0xe7, 0x98, 0x73, 0xbe, 0x40,
+ 0x72, 0x09, 0x82, 0x5c, 0xf2, 0x1d, 0xfc, 0x15, 0xf2, 0x11, 0x72, 0x0a, 0xfa, 0x31, 0xd3, 0xf3,
+ 0x5c, 0x2b, 0xe0, 0xc2, 0xb9, 0x4d, 0x57, 0x77, 0x57, 0x55, 0x57, 0x57, 0x75, 0x77, 0xfd, 0x6a,
+ 0xa0, 0x49, 0xf0, 0xc0, 0x0f, 0x1c, 0xea, 0x93, 0x8b, 0x8f, 0x02, 0x4c, 0xde, 0x38, 0x36, 0x5e,
+ 0x1b, 0x10, 0x9f, 0xfa, 0xa8, 0x7c, 0xea, 0x50, 0xcb, 0xbd, 0xd0, 0xc0, 0x75, 0x3c, 0x2a, 0x68,
+ 0x5a, 0x3d, 0xe8, 0x59, 0x04, 0x77, 0x44, 0x4b, 0x3f, 0x86, 0x45, 0x23, 0x9a, 0xbd, 0xf5, 0xd6,
+ 0x09, 0x68, 0x60, 0xe0, 0xd7, 0x43, 0x1c, 0x50, 0xf4, 0x29, 0x80, 0x62, 0xdc, 0x2c, 0xdd, 0x2e,
+ 0x3d, 0x98, 0x79, 0x82, 0xd6, 0x04, 0xc7, 0x35, 0x35, 0xa9, 0x35, 0xf5, 0xc7, 0x7f, 0x3e, 0x2a,
+ 0x19, 0xb1, 0xb1, 0xfa, 0x13, 0x68, 0x66, 0x99, 0x06, 0x03, 0xdf, 0x0b, 0x30, 0x5a, 0x80, 0x32,
+ 0xe6, 0x14, 0xce, 0xb1, 0x6a, 0xc8, 0x96, 0x7e, 0xc2, 0xe7, 0x58, 0xf6, 0xd9, 0x9e, 0x67, 0x13,
+ 0xdc, 0xc7, 0x1e, 0xb5, 0xdc, 0xcb, 0x6b, 0x72, 0x13, 0x96, 0x72, 0xb8, 0x0a, 0x55, 0x74, 0x02,
+ 0xb3, 0xa2, 0x73, 0x7b, 0xe8, 0x5e, 0x5e, 0x16, 0xba, 0x0b, 0x57, 0x6d, 0x82, 0x2d, 0x8a, 0xcd,
+ 0xb6, 0x43, 0xfb, 0xd6, 0xa0, 0x39, 0xc1, 0x17, 0x58, 0x17, 0xc4, 0x16, 0xa7, 0xe9, 0xf3, 0x80,
+ 0xe2, 0x32, 0xa5, 0x26, 0xfb, 0x30, 0xbb, 0xef, 0x74, 0xde, 0x8a, 0x9e, 0xcb, 0xaf, 0x7a, 0x1e,
+ 0x50, 0x9c, 0x9d, 0x14, 0xf2, 0xdb, 0x12, 0xdc, 0xd8, 0xb1, 0x48, 0xdb, 0x3a, 0xc5, 0x1b, 0xbe,
+ 0xeb, 0x62, 0x9b, 0xfe, 0x30, 0x6b, 0x46, 0xf3, 0x30, 0x3d, 0x20, 0x43, 0x0f, 0x37, 0x27, 0x79,
+ 0xa7, 0x68, 0xe8, 0x4d, 0x58, 0x48, 0x6b, 0x23, 0x15, 0x3d, 0x86, 0xc5, 0xcf, 0x89, 0x43, 0xf1,
+ 0x86, 0xdf, 0xef, 0x3b, 0x74, 0x87, 0x58, 0x83, 0xde, 0xe5, 0x6d, 0xa2, 0x41, 0x33, 0xcb, 0x54,
+ 0x0a, 0x7c, 0x06, 0xd7, 0x36, 0x5c, 0x6c, 0x79, 0xc3, 0xc1, 0xe5, 0xe5, 0xcc, 0xc2, 0xf5, 0x88,
+ 0x97, 0x64, 0xff, 0x19, 0xdc, 0x50, 0x53, 0x8e, 0x9d, 0xaf, 0xf1, 0xe5, 0xa5, 0x3c, 0x82, 0x85,
+ 0x34, 0x4b, 0x19, 0x5f, 0x08, 0xa6, 0x02, 0xe7, 0x6b, 0xcc, 0xb9, 0x4d, 0x1a, 0xfc, 0x5b, 0x7f,
+ 0x0d, 0x4b, 0xeb, 0x83, 0x81, 0x7b, 0xb1, 0xe3, 0x50, 0x8b, 0x52, 0xe2, 0xb4, 0x87, 0x14, 0x5f,
+ 0x3e, 0xcc, 0x91, 0x06, 0x55, 0x82, 0xdf, 0x38, 0x81, 0xe3, 0x7b, 0x7c, 0xdf, 0xeb, 0x46, 0xd4,
+ 0xd6, 0x97, 0x41, 0xcb, 0x13, 0x29, 0x2d, 0xf2, 0xf7, 0x09, 0x40, 0xdb, 0x98, 0xda, 0x3d, 0x03,
+ 0xf7, 0x7d, 0x7a, 0x79, 0x7b, 0xb0, 0x53, 0x85, 0x70, 0x56, 0x5c, 0x91, 0x9a, 0x21, 0x5b, 0xcc,
+ 0xf5, 0xba, 0x3e, 0xb1, 0x23, 0xd7, 0xe3, 0x0d, 0xb4, 0x08, 0x15, 0xcf, 0x37, 0xa9, 0x75, 0x1a,
+ 0x34, 0xa7, 0xc4, 0x21, 0xe4, 0xf9, 0x27, 0xd6, 0x69, 0x80, 0x9a, 0x50, 0xa1, 0x4e, 0x1f, 0xfb,
+ 0x43, 0xda, 0x9c, 0xbe, 0x5d, 0x7a, 0x30, 0x6d, 0x84, 0x4d, 0x36, 0x25, 0x08, 0x7a, 0xe6, 0x19,
+ 0xbe, 0x68, 0x96, 0x85, 0x84, 0x20, 0xe8, 0x3d, 0xc7, 0x17, 0x68, 0x15, 0x66, 0xce, 0x3c, 0xff,
+ 0xdc, 0x33, 0x7b, 0x3e, 0x3b, 0xd4, 0x2a, 0xbc, 0x13, 0x38, 0x69, 0x97, 0x51, 0xd0, 0x12, 0x54,
+ 0x3d, 0xdf, 0x14, 0x01, 0x50, 0xe3, 0xd2, 0x2a, 0x9e, 0x7f, 0xc4, 0x9a, 0xe8, 0x29, 0x5c, 0x15,
+ 0x7a, 0x9a, 0x03, 0x8b, 0x58, 0xfd, 0xa0, 0x09, 0x7c, 0xc9, 0xd7, 0xd4, 0x92, 0xb9, 0x75, 0xea,
+ 0x62, 0xd0, 0x11, 0x1f, 0xf3, 0x6c, 0xaa, 0x5a, 0x6d, 0xd4, 0xf4, 0x1b, 0x30, 0x97, 0x30, 0xa0,
+ 0x0a, 0x9d, 0x0d, 0x1e, 0x7a, 0xca, 0x5a, 0x63, 0x09, 0x9d, 0x2c, 0x53, 0x29, 0xf0, 0x5f, 0x13,
+ 0x30, 0xbb, 0x83, 0xe9, 0x3a, 0xb1, 0x7b, 0xce, 0x9b, 0x31, 0x6c, 0xe4, 0x4d, 0xa8, 0xd9, 0x3c,
+ 0x42, 0x4d, 0xa7, 0x23, 0xf7, 0xb2, 0x2a, 0x08, 0x7b, 0x1d, 0xb6, 0xcb, 0x03, 0x82, 0xbb, 0xce,
+ 0x5b, 0xbe, 0x9d, 0x35, 0x43, 0xb6, 0xd0, 0xa7, 0x50, 0xee, 0xfa, 0xa4, 0x6f, 0x51, 0xbe, 0x9d,
+ 0xd7, 0x9e, 0xdc, 0x0e, 0x45, 0x65, 0x34, 0x5b, 0xdb, 0xe6, 0xe3, 0x0c, 0x39, 0x9e, 0x45, 0xcb,
+ 0xc0, 0xa2, 0x3d, 0xbe, 0xdb, 0x75, 0x83, 0x7f, 0x33, 0x27, 0xc0, 0x6f, 0x6d, 0x77, 0xd8, 0xc1,
+ 0xcd, 0xf2, 0xed, 0xc9, 0x07, 0x75, 0x23, 0x6c, 0xa2, 0x15, 0x00, 0xec, 0x3a, 0x1d, 0xb6, 0x5d,
+ 0xb4, 0xc7, 0xb7, 0xba, 0x6a, 0xd4, 0x38, 0xe5, 0x88, 0x4d, 0x7c, 0x08, 0xb3, 0x8e, 0xc7, 0x47,
+ 0x9a, 0x6e, 0x37, 0x30, 0xdb, 0xae, 0xdf, 0x0e, 0x9a, 0x55, 0x3e, 0xea, 0xba, 0xec, 0x78, 0xd1,
+ 0x0d, 0x5a, 0x8c, 0xac, 0x3f, 0x85, 0xb2, 0x50, 0x05, 0x55, 0x60, 0xf2, 0xd5, 0xde, 0x51, 0xe3,
+ 0x0a, 0xfb, 0x38, 0x59, 0x37, 0x1a, 0x25, 0x04, 0x50, 0x3e, 0x59, 0x37, 0xcc, 0x9d, 0x57, 0x8d,
+ 0x09, 0x34, 0x03, 0x15, 0xf6, 0xdd, 0x7a, 0xf5, 0xa4, 0x31, 0xa9, 0x3f, 0x00, 0x14, 0x5f, 0x91,
+ 0x8a, 0xf8, 0x8e, 0x45, 0x2d, 0x6e, 0xe6, 0xba, 0xc1, 0xbf, 0x99, 0x1f, 0xec, 0x5a, 0xc1, 0x0b,
+ 0xdf, 0xb6, 0xdc, 0x16, 0xb1, 0x3c, 0xbb, 0x37, 0x86, 0x78, 0xd7, 0x3f, 0x86, 0x66, 0x96, 0xa9,
+ 0x54, 0x62, 0x1e, 0xa6, 0xdf, 0x58, 0xee, 0x10, 0xcb, 0x5b, 0x5d, 0x34, 0xf4, 0xef, 0x4a, 0xd0,
+ 0xe4, 0x6e, 0x7a, 0xec, 0x0f, 0x89, 0x8d, 0xc5, 0xac, 0xcb, 0x3b, 0xc9, 0xcf, 0x60, 0x36, 0xe0,
+ 0x0c, 0xcd, 0x18, 0x83, 0x89, 0x22, 0x06, 0x46, 0x43, 0x0c, 0x36, 0x12, 0xd7, 0x96, 0x64, 0xd0,
+ 0xe6, 0x2a, 0x71, 0x7f, 0xaa, 0x1b, 0xf5, 0x20, 0xa6, 0x26, 0xdb, 0x6d, 0x6a, 0x91, 0x53, 0x4c,
+ 0x4d, 0x82, 0xbb, 0xdc, 0xb3, 0xea, 0x46, 0x4d, 0x50, 0x0c, 0xdc, 0xd5, 0x9f, 0xc2, 0x52, 0xce,
+ 0xd2, 0xd4, 0x2b, 0x87, 0xe0, 0x60, 0xe8, 0xd2, 0xf0, 0x95, 0x23, 0x5a, 0xfa, 0x0e, 0xcc, 0x6c,
+ 0x07, 0xe3, 0xb8, 0xe2, 0xef, 0x41, 0x5d, 0x30, 0x52, 0xf6, 0xc7, 0x84, 0xf8, 0x44, 0x7a, 0x81,
+ 0x68, 0xe8, 0x7f, 0x2d, 0xc1, 0x75, 0x7e, 0xeb, 0x19, 0xb8, 0x7b, 0x79, 0xb3, 0x37, 0x60, 0x92,
+ 0x59, 0x42, 0x1c, 0xf5, 0xec, 0x33, 0x71, 0x03, 0x4c, 0x26, 0x6f, 0x00, 0x74, 0x07, 0xea, 0xbe,
+ 0xdb, 0x31, 0xa3, 0x7e, 0x61, 0xc0, 0x19, 0xdf, 0xed, 0x18, 0xe1, 0x90, 0xe8, 0x74, 0x9e, 0x8e,
+ 0x9d, 0xce, 0xcf, 0xa6, 0xaa, 0xe5, 0x46, 0x45, 0x6f, 0x42, 0x43, 0x69, 0x2e, 0x16, 0xf9, 0x6c,
+ 0xaa, 0x5a, 0x6a, 0x4c, 0xe8, 0x1e, 0xcc, 0x6f, 0x3b, 0x5e, 0x67, 0x1f, 0x93, 0x53, 0xdc, 0xb2,
+ 0x82, 0x31, 0x1c, 0x3a, 0xcb, 0x50, 0x0b, 0xd5, 0x0c, 0x9a, 0x13, 0x3c, 0xe6, 0x15, 0x41, 0xff,
+ 0x10, 0x6e, 0xa4, 0xe4, 0xa9, 0xc0, 0x6b, 0x5b, 0x81, 0x70, 0xf9, 0x9a, 0xc1, 0xbf, 0xf5, 0x6f,
+ 0x4a, 0x30, 0x2b, 0x0e, 0xcb, 0x6d, 0x9f, 0x9c, 0xfd, 0xef, 0x5d, 0x9d, 0xbd, 0x05, 0xe3, 0xfa,
+ 0x44, 0x4f, 0xdf, 0xa5, 0xbd, 0xc0, 0xc0, 0x4c, 0xe5, 0x3d, 0xef, 0x88, 0xf8, 0xa7, 0x04, 0x07,
+ 0xc1, 0x58, 0x4e, 0x6f, 0xc2, 0x99, 0xc6, 0x4e, 0x6f, 0x41, 0xd8, 0xeb, 0xe8, 0x3f, 0x05, 0x2d,
+ 0x4f, 0xa6, 0x34, 0xe6, 0x2a, 0xcc, 0x38, 0x9e, 0x39, 0x90, 0x64, 0x19, 0x36, 0xe0, 0x44, 0x03,
+ 0x85, 0xca, 0xc7, 0xaf, 0x87, 0x56, 0xd0, 0x1b, 0xb3, 0xca, 0x01, 0x67, 0x1a, 0x53, 0x59, 0x10,
+ 0x42, 0x95, 0xb3, 0x32, 0xdf, 0x55, 0x65, 0x17, 0x6e, 0xa5, 0x2f, 0xce, 0x6d, 0xe2, 0xf7, 0x5f,
+ 0x1a, 0x2f, 0xc6, 0x12, 0x8c, 0x43, 0xe2, 0x4a, 0x8d, 0xd9, 0xa7, 0x7e, 0x07, 0x56, 0x0b, 0xa5,
+ 0xc9, 0x6d, 0x3f, 0x84, 0x39, 0x31, 0xa4, 0x35, 0xf4, 0x3a, 0xee, 0x18, 0xde, 0xa1, 0x0f, 0x61,
+ 0x3e, 0xc9, 0x70, 0xc4, 0x9d, 0xf4, 0xcd, 0x04, 0x34, 0x8e, 0x31, 0xdd, 0xf0, 0xbd, 0xae, 0x73,
+ 0x7a, 0x79, 0x03, 0x7c, 0x0a, 0x15, 0xec, 0x51, 0xe2, 0x60, 0x11, 0xb2, 0x33, 0x4f, 0x6e, 0x85,
+ 0xd3, 0xd2, 0x42, 0xd6, 0xb6, 0x3c, 0x4a, 0x2e, 0x8c, 0x70, 0xb8, 0xf6, 0x9b, 0x12, 0x4c, 0x73,
+ 0x12, 0x33, 0x22, 0x7b, 0xd1, 0x89, 0x00, 0x66, 0x9f, 0x68, 0x05, 0x6a, 0xfc, 0xea, 0x32, 0x03,
+ 0x4a, 0x84, 0x71, 0x77, 0xaf, 0x18, 0x55, 0x4e, 0x3a, 0xa6, 0x04, 0xdd, 0x81, 0x19, 0xd1, 0xed,
+ 0x78, 0xf4, 0xe9, 0x13, 0x7e, 0xe6, 0x4d, 0xef, 0x5e, 0x31, 0x80, 0x13, 0xf7, 0x18, 0x0d, 0xad,
+ 0x82, 0x68, 0x99, 0x6d, 0xdf, 0x77, 0xc5, 0xfb, 0x72, 0xf7, 0x8a, 0x21, 0xb8, 0xb6, 0x7c, 0xdf,
+ 0x6d, 0x55, 0xe4, 0x55, 0xa9, 0xcf, 0xc1, 0x6c, 0x4c, 0x55, 0xb9, 0x45, 0x36, 0xcc, 0x6d, 0x62,
+ 0x17, 0xb3, 0x44, 0x65, 0x3c, 0x76, 0x42, 0x30, 0x75, 0x86, 0x2f, 0x84, 0x91, 0x6a, 0x06, 0xff,
+ 0xd6, 0x17, 0x60, 0x3e, 0x29, 0x44, 0x0a, 0x77, 0x58, 0xba, 0x1c, 0x50, 0x9f, 0xe0, 0x8d, 0x61,
+ 0x40, 0xfd, 0xfe, 0xae, 0xef, 0x9f, 0x05, 0x63, 0x51, 0x81, 0x7b, 0xc3, 0x44, 0xcc, 0x1b, 0x96,
+ 0x41, 0xcb, 0x13, 0x25, 0x15, 0x39, 0x81, 0x66, 0xcb, 0xb2, 0xcf, 0x86, 0x83, 0x71, 0xea, 0xa1,
+ 0x3f, 0x86, 0xa5, 0x1c, 0xae, 0x23, 0x5c, 0xf6, 0x35, 0xdc, 0xc9, 0x0b, 0xa9, 0x31, 0x45, 0x4f,
+ 0xae, 0x5d, 0xee, 0x81, 0x3e, 0x4a, 0xa4, 0xb4, 0xcf, 0x01, 0x20, 0x76, 0x27, 0xbd, 0x70, 0x6c,
+ 0xec, 0x8d, 0xe1, 0x06, 0xd4, 0x37, 0x60, 0x2e, 0xc1, 0x4f, 0xda, 0xe4, 0x11, 0x20, 0x57, 0x90,
+ 0xcc, 0xa0, 0xe7, 0x13, 0x6a, 0x7a, 0x56, 0x3f, 0xbc, 0xef, 0x1a, 0xb2, 0xe7, 0x98, 0x75, 0x1c,
+ 0x58, 0x7d, 0xbe, 0x69, 0x3b, 0x98, 0xee, 0x79, 0x5d, 0x7f, 0x7d, 0x7c, 0x59, 0xa6, 0xfe, 0x13,
+ 0x58, 0xca, 0xe1, 0x2a, 0x15, 0xbc, 0x05, 0xa0, 0xd2, 0x4b, 0xb9, 0x75, 0x31, 0x0a, 0x53, 0x69,
+ 0xc3, 0x72, 0xed, 0xa1, 0x6b, 0x51, 0xbc, 0xd1, 0xc3, 0xf6, 0x59, 0x30, 0xec, 0x5f, 0x5e, 0xa5,
+ 0xff, 0x87, 0xa5, 0x1c, 0xae, 0x52, 0x25, 0x0d, 0xaa, 0xb6, 0xa4, 0x49, 0x4b, 0x45, 0x6d, 0xb6,
+ 0x6d, 0x3b, 0x98, 0x1e, 0x7b, 0xd6, 0x20, 0xe8, 0xf9, 0x97, 0x87, 0x5f, 0xf4, 0x0f, 0x60, 0x2e,
+ 0xc1, 0x6f, 0x84, 0x2b, 0x7f, 0x5b, 0x82, 0xbb, 0x79, 0x8e, 0x35, 0x36, 0x65, 0x58, 0xa2, 0xdb,
+ 0xa3, 0x74, 0x60, 0xaa, 0x6b, 0xa9, 0xc2, 0xda, 0x2f, 0x89, 0xcb, 0x2e, 0x59, 0xde, 0x65, 0x0d,
+ 0x69, 0x4f, 0xe6, 0x6e, 0x7c, 0xec, 0xfa, 0x90, 0xf6, 0xf4, 0xfb, 0x70, 0x6f, 0xb4, 0x62, 0xd2,
+ 0xe7, 0xff, 0x50, 0x82, 0xf9, 0x1d, 0x4c, 0x0d, 0xeb, 0x7c, 0xa3, 0x67, 0x79, 0xa7, 0xe3, 0x40,
+ 0x30, 0xee, 0xc2, 0xd5, 0x2e, 0xf1, 0xfb, 0x66, 0x02, 0xc6, 0xa8, 0x19, 0x75, 0x46, 0x8c, 0x5e,
+ 0xa9, 0xab, 0x30, 0x43, 0x7d, 0x33, 0xf1, 0xce, 0xad, 0x19, 0x40, 0xfd, 0x70, 0x80, 0xfe, 0xb7,
+ 0x29, 0xb8, 0x91, 0x52, 0x4c, 0x6e, 0xc4, 0x2e, 0xcc, 0x10, 0xeb, 0xdc, 0xb4, 0x05, 0xb9, 0x59,
+ 0xe2, 0xf7, 0xd4, 0xfb, 0xb1, 0xec, 0x34, 0x3b, 0x67, 0x2d, 0x22, 0x19, 0x40, 0xa2, 0x5e, 0xed,
+ 0xbb, 0x49, 0xa8, 0x45, 0x3d, 0x68, 0x11, 0x2a, 0x2c, 0xbb, 0x64, 0x4f, 0x16, 0xe1, 0x62, 0x65,
+ 0xd6, 0xdc, 0xeb, 0x44, 0xe8, 0xcf, 0x84, 0x42, 0x7f, 0xd0, 0x0a, 0x54, 0x3d, 0x7c, 0x2e, 0x72,
+ 0x56, 0xae, 0x7c, 0x6b, 0xa2, 0x59, 0x32, 0x2a, 0x1e, 0x3e, 0xe7, 0x59, 0xeb, 0x0a, 0x54, 0xd9,
+ 0x3b, 0x9d, 0x77, 0x4f, 0xa9, 0x6e, 0xdf, 0xed, 0xf0, 0xee, 0x43, 0xa8, 0xf9, 0x03, 0x4c, 0x2c,
+ 0xca, 0xd6, 0x3e, 0xcd, 0xd3, 0xeb, 0x4f, 0xde, 0x71, 0x01, 0x6b, 0x87, 0xe1, 0x44, 0x43, 0xf1,
+ 0x60, 0x36, 0x67, 0x36, 0x51, 0x4c, 0x05, 0x9e, 0x52, 0x27, 0xd6, 0x79, 0x34, 0x9e, 0xf9, 0x12,
+ 0x53, 0xaa, 0xef, 0x77, 0x30, 0xcf, 0xb3, 0xa7, 0xb9, 0x42, 0xfb, 0x7e, 0x07, 0x73, 0x3c, 0x05,
+ 0x9f, 0x8b, 0xae, 0xaa, 0xe8, 0xf2, 0xf0, 0x39, 0xef, 0xba, 0x07, 0xd7, 0xc2, 0x95, 0x9a, 0xed,
+ 0x0b, 0x76, 0x22, 0xd4, 0x44, 0x5e, 0x27, 0xd7, 0xda, 0x62, 0x34, 0x36, 0x2a, 0x5c, 0xb0, 0x1c,
+ 0x05, 0x62, 0x94, 0x5c, 0x32, 0x1f, 0xa5, 0x3b, 0x50, 0x53, 0xea, 0xcc, 0x40, 0xe5, 0xe5, 0xc1,
+ 0xf3, 0x83, 0xc3, 0xcf, 0x0f, 0x1a, 0x57, 0x50, 0x0d, 0xa6, 0xd7, 0x37, 0x37, 0xb7, 0x36, 0x45,
+ 0xa6, 0xbe, 0x71, 0x78, 0xb4, 0xb7, 0xb5, 0x29, 0x32, 0xf5, 0xcd, 0xad, 0x17, 0x5b, 0x27, 0x5b,
+ 0x9b, 0x8d, 0x49, 0x54, 0x87, 0xea, 0xfe, 0xe1, 0xe6, 0xde, 0x36, 0xeb, 0x9a, 0x62, 0x5d, 0xc6,
+ 0xd6, 0xc1, 0xfa, 0xfe, 0xd6, 0x66, 0x63, 0x1a, 0x35, 0xa0, 0x7e, 0xf2, 0xc5, 0xd1, 0x96, 0xb9,
+ 0xb1, 0xbb, 0x7e, 0xb0, 0xb3, 0xb5, 0xd9, 0x28, 0xeb, 0xbf, 0x2f, 0x41, 0xf3, 0x18, 0x5b, 0xc4,
+ 0xee, 0x6d, 0x3b, 0x2e, 0x0e, 0x5a, 0x17, 0xec, 0x34, 0xbd, 0xbc, 0x73, 0xcf, 0xc3, 0xf4, 0xeb,
+ 0x21, 0x96, 0xe9, 0x42, 0xcd, 0x10, 0x8d, 0x30, 0x89, 0x9b, 0x54, 0x49, 0xdc, 0x02, 0x94, 0xbb,
+ 0x8e, 0x4b, 0x31, 0x11, 0xdb, 0x6f, 0xc8, 0x96, 0xfe, 0x09, 0x2c, 0xe5, 0x68, 0xa5, 0xf2, 0xcd,
+ 0x2e, 0x23, 0x73, 0x9f, 0xae, 0x1b, 0xa2, 0xa1, 0xff, 0xb9, 0x04, 0x37, 0x13, 0x73, 0x36, 0x7c,
+ 0x8f, 0x62, 0x8f, 0xfe, 0x70, 0x8b, 0xf9, 0x00, 0x1a, 0x76, 0x6f, 0xe8, 0x9d, 0x61, 0x96, 0x79,
+ 0x0a, 0x5d, 0x25, 0xc6, 0x77, 0x5d, 0xd2, 0xa3, 0xf3, 0xe4, 0x02, 0x96, 0xf3, 0x75, 0x95, 0x4b,
+ 0x6c, 0x42, 0xa5, 0x6f, 0x51, 0xbb, 0x17, 0x2d, 0x32, 0x6c, 0xa2, 0x15, 0x00, 0xfe, 0x69, 0xc6,
+ 0x6e, 0xef, 0x1a, 0xa7, 0x6c, 0x5a, 0xd4, 0x42, 0xb7, 0xa1, 0x8e, 0xbd, 0x8e, 0xe9, 0x77, 0x4d,
+ 0x4e, 0x93, 0xd8, 0x23, 0x60, 0xaf, 0x73, 0xd8, 0xdd, 0x67, 0x14, 0xfd, 0x77, 0x25, 0x28, 0x0b,
+ 0xe4, 0x2e, 0x7c, 0xc7, 0x97, 0xa2, 0x77, 0x3c, 0x8b, 0x61, 0x7e, 0xcd, 0x8a, 0x95, 0xf2, 0x6f,
+ 0xf4, 0x63, 0x58, 0x8a, 0x0e, 0x50, 0x9f, 0x38, 0x5f, 0x73, 0xb7, 0x34, 0x7b, 0xd8, 0xea, 0x60,
+ 0x22, 0x4f, 0xa4, 0xc5, 0xf0, 0x40, 0x8d, 0xfa, 0x77, 0x79, 0x37, 0x7a, 0x0f, 0xae, 0xf5, 0x1d,
+ 0x42, 0x7c, 0x62, 0x12, 0xdc, 0xed, 0x5b, 0x83, 0xa0, 0x39, 0xc5, 0x9f, 0x82, 0x57, 0x05, 0xd5,
+ 0x10, 0x44, 0xe6, 0x85, 0x0b, 0x1c, 0xd0, 0xd8, 0x3d, 0x39, 0x39, 0x1a, 0x17, 0x2e, 0x7b, 0x3f,
+ 0x81, 0xcb, 0x66, 0xa1, 0xcd, 0x10, 0xa7, 0x8d, 0x01, 0xaf, 0x93, 0x09, 0xe0, 0x55, 0x5f, 0x82,
+ 0xc5, 0x8c, 0x56, 0x72, 0x03, 0xbf, 0x80, 0x95, 0x1d, 0x4c, 0x0f, 0xdb, 0xbf, 0xc0, 0x36, 0xdd,
+ 0x74, 0x08, 0xb6, 0xc7, 0x87, 0xaf, 0xff, 0x1f, 0xdc, 0x2a, 0x62, 0x3d, 0x02, 0x67, 0xff, 0x53,
+ 0x09, 0xe6, 0x37, 0x5c, 0xdf, 0xc3, 0xec, 0xfe, 0x3a, 0xf2, 0x7d, 0x77, 0x1c, 0x06, 0x9c, 0x1a,
+ 0xb0, 0x3c, 0x22, 0x95, 0xf2, 0x0b, 0xcd, 0xb8, 0x08, 0xde, 0x1f, 0x33, 0xf4, 0xe4, 0x28, 0x43,
+ 0xeb, 0x8b, 0x70, 0x23, 0xa5, 0xa1, 0x34, 0xe6, 0x3f, 0x4a, 0xb0, 0x9c, 0xe8, 0xd9, 0xf3, 0x28,
+ 0x26, 0x9e, 0xf5, 0x03, 0xae, 0x21, 0x17, 0xeb, 0x98, 0xfc, 0x2f, 0xb0, 0x8e, 0x55, 0x58, 0x29,
+ 0x58, 0x82, 0x82, 0xc7, 0x99, 0x3d, 0xde, 0x8c, 0x1b, 0x1e, 0xcf, 0x32, 0x95, 0x02, 0xdf, 0x32,
+ 0x81, 0x1e, 0x3f, 0x38, 0xc7, 0x26, 0x90, 0xdf, 0xa0, 0xd8, 0xb5, 0xa8, 0xf3, 0x46, 0x22, 0xd1,
+ 0xf2, 0xd5, 0x12, 0x12, 0xd9, 0x25, 0x26, 0xb4, 0x4a, 0x4b, 0x96, 0x5a, 0xfd, 0xba, 0xc4, 0x92,
+ 0xaf, 0x81, 0xeb, 0xd8, 0xe3, 0xad, 0x14, 0xa0, 0x87, 0x50, 0x16, 0x9b, 0x32, 0x02, 0xa2, 0x92,
+ 0x23, 0xf4, 0x15, 0xb8, 0x99, 0xab, 0x83, 0xd4, 0xf1, 0x25, 0x2c, 0x1d, 0x0e, 0xa8, 0xd3, 0xe7,
+ 0x31, 0x37, 0xbe, 0xcd, 0x5a, 0x06, 0x2d, 0x8f, 0xad, 0x10, 0xfa, 0xe4, 0x2f, 0xab, 0xbc, 0x24,
+ 0x1c, 0xd6, 0xd5, 0x44, 0x2d, 0x1d, 0x7d, 0x09, 0x8d, 0x74, 0x39, 0x1b, 0xad, 0x66, 0xa5, 0x25,
+ 0xaa, 0xe7, 0xda, 0xed, 0xe2, 0x01, 0x72, 0x85, 0xe5, 0x7f, 0x7f, 0xfb, 0x60, 0xa2, 0x3a, 0x81,
+ 0xbe, 0x0a, 0xcb, 0xd0, 0xb1, 0x1a, 0x35, 0x8a, 0x4f, 0xcf, 0x2d, 0x8a, 0x6b, 0x77, 0x46, 0x8c,
+ 0x48, 0x48, 0x28, 0xa1, 0xe7, 0x00, 0xaa, 0xe8, 0x8c, 0x96, 0x92, 0x13, 0x63, 0xc5, 0x6f, 0x4d,
+ 0xcb, 0xeb, 0xca, 0x32, 0x53, 0xc5, 0x65, 0xc5, 0x2c, 0x53, 0xbf, 0x56, 0xcc, 0x72, 0x6a, 0xd1,
+ 0x21, 0xb3, 0xcf, 0xe1, 0x5a, 0xb2, 0x08, 0x8c, 0x56, 0xa2, 0xc7, 0x65, 0x5e, 0xa9, 0x5a, 0xbb,
+ 0x55, 0xd4, 0x9d, 0x62, 0xfc, 0xa5, 0x84, 0x8f, 0x63, 0xe5, 0x5e, 0xb5, 0x67, 0x05, 0xd5, 0x65,
+ 0xb5, 0x67, 0x85, 0x95, 0xe2, 0x98, 0xde, 0xc9, 0xfa, 0xab, 0xd2, 0x3b, 0xb7, 0xd4, 0xab, 0xf4,
+ 0xce, 0x2f, 0xdb, 0x46, 0xce, 0x60, 0x03, 0xca, 0xd6, 0x4d, 0x51, 0xb4, 0xd7, 0x85, 0x65, 0x5c,
+ 0x4d, 0x1f, 0x35, 0x24, 0xa5, 0xfd, 0x01, 0xcc, 0xc4, 0x8a, 0x87, 0x28, 0xda, 0xa8, 0x6c, 0x49,
+ 0x56, 0xbb, 0x99, 0xdb, 0x97, 0x35, 0x76, 0x3a, 0x83, 0x53, 0xc6, 0x2e, 0xa8, 0x47, 0x2a, 0x63,
+ 0x17, 0xd6, 0x16, 0x43, 0xf6, 0xfb, 0x00, 0xaa, 0xec, 0xa5, 0x3c, 0x2e, 0x53, 0xdc, 0x53, 0x1e,
+ 0x97, 0xad, 0x92, 0x85, 0x06, 0xfe, 0x98, 0x6b, 0x9b, 0x2e, 0x63, 0x29, 0x6d, 0x0b, 0xaa, 0x66,
+ 0x4a, 0xdb, 0xa2, 0x0a, 0x58, 0x3c, 0x9c, 0x33, 0x75, 0x21, 0x15, 0xce, 0x45, 0xd5, 0x30, 0x15,
+ 0xce, 0x85, 0x45, 0xa5, 0xc8, 0x1e, 0x3f, 0x82, 0xa9, 0xed, 0xc0, 0x3e, 0x43, 0x73, 0xd1, 0x14,
+ 0x55, 0x52, 0xd2, 0xe6, 0x93, 0xc4, 0xd4, 0xd4, 0x2d, 0xa8, 0x86, 0x55, 0x15, 0xb4, 0x98, 0xf0,
+ 0x76, 0x55, 0x21, 0xd2, 0x9a, 0xd9, 0x8e, 0x14, 0x9b, 0x13, 0xb8, 0x9a, 0x28, 0x89, 0xa0, 0xe5,
+ 0x48, 0x6a, 0x4e, 0x65, 0x46, 0x5b, 0x29, 0xe8, 0x4d, 0x59, 0xee, 0x39, 0x80, 0x2a, 0x55, 0xa8,
+ 0x7d, 0xce, 0x94, 0x53, 0xd4, 0x3e, 0xe7, 0x54, 0x36, 0x42, 0x15, 0x6d, 0x40, 0xd9, 0x6a, 0x83,
+ 0x0a, 0xa4, 0xc2, 0xea, 0x87, 0x0a, 0xa4, 0xe2, 0x62, 0x45, 0x3c, 0x5a, 0xb3, 0xf5, 0x81, 0xb8,
+ 0x90, 0x82, 0x7a, 0x45, 0x5c, 0x48, 0x51, 0x79, 0x21, 0x12, 0x42, 0xb2, 0x35, 0x7d, 0x89, 0xeb,
+ 0xa3, 0xfb, 0x45, 0x31, 0x94, 0x2c, 0x33, 0x68, 0xef, 0x7f, 0xef, 0xb8, 0x94, 0xf5, 0x8e, 0xa1,
+ 0x1e, 0xc7, 0xf5, 0xd1, 0xcd, 0x24, 0x83, 0x04, 0x00, 0xaa, 0x2d, 0xe7, 0x77, 0x66, 0x02, 0xef,
+ 0x97, 0xa0, 0x15, 0x43, 0x9b, 0xe8, 0x83, 0x51, 0x3a, 0x26, 0x05, 0x3e, 0x7c, 0x97, 0xa1, 0xc9,
+ 0x15, 0x3d, 0x28, 0xa1, 0x5d, 0xa8, 0x45, 0x70, 0x3b, 0x6a, 0x16, 0x15, 0x0b, 0xb4, 0xa5, 0x9c,
+ 0x9e, 0x94, 0x75, 0x3e, 0x83, 0x7a, 0x1c, 0x3e, 0x57, 0xd6, 0xc9, 0x41, 0xee, 0x95, 0x75, 0x72,
+ 0x11, 0xf7, 0xf8, 0x91, 0xac, 0x00, 0xd8, 0xd8, 0x91, 0x9c, 0x41, 0x79, 0x63, 0x47, 0x72, 0x16,
+ 0xb1, 0x8d, 0x9c, 0xa6, 0xcd, 0x7f, 0xcb, 0x48, 0xa2, 0xa6, 0x28, 0xfe, 0x5f, 0x44, 0x2e, 0x4c,
+ 0xab, 0x4e, 0xa1, 0x42, 0xc8, 0x35, 0xb6, 0x9f, 0x5f, 0xc1, 0x6c, 0x06, 0x06, 0x55, 0x32, 0x8a,
+ 0x70, 0x57, 0x25, 0xa3, 0x10, 0x43, 0x8d, 0x56, 0xd1, 0x82, 0x8a, 0xfc, 0x99, 0x0a, 0x2d, 0x44,
+ 0xb3, 0x12, 0x7f, 0x6a, 0x69, 0x8b, 0x19, 0x7a, 0xca, 0xb2, 0x47, 0x30, 0x13, 0xc3, 0x48, 0x51,
+ 0xfc, 0x8e, 0x48, 0x61, 0x9f, 0xca, 0xb2, 0x39, 0xa0, 0x6a, 0x6c, 0xdd, 0xbf, 0x62, 0xa9, 0xd2,
+ 0x08, 0xc4, 0x12, 0x7d, 0x38, 0xca, 0x3f, 0xd3, 0x42, 0x1f, 0xbd, 0xdb, 0xe0, 0xd4, 0xaa, 0x7e,
+ 0x0e, 0x57, 0x13, 0xe8, 0x9b, 0x3a, 0x81, 0xf3, 0x20, 0x52, 0x75, 0x02, 0xe7, 0x42, 0x76, 0xb1,
+ 0xb5, 0x9d, 0xc1, 0x7c, 0x1e, 0x28, 0x82, 0xee, 0xaa, 0xa8, 0x28, 0x84, 0x77, 0xb4, 0x7b, 0xa3,
+ 0x07, 0x65, 0x84, 0xb5, 0x61, 0x36, 0x83, 0x30, 0x29, 0x07, 0x2a, 0x82, 0xc4, 0x94, 0x03, 0x15,
+ 0xc2, 0x53, 0x31, 0x19, 0x18, 0x50, 0xb6, 0xce, 0x84, 0x62, 0x8f, 0xe7, 0x82, 0x72, 0x97, 0x3a,
+ 0xa2, 0x47, 0x94, 0xa9, 0xd4, 0xe1, 0xd2, 0x86, 0xd9, 0x4c, 0x69, 0x49, 0x2d, 0xa5, 0xa8, 0x96,
+ 0xa5, 0x96, 0x52, 0x58, 0x97, 0x8a, 0x2d, 0xe5, 0x15, 0x5c, 0x4f, 0x41, 0x21, 0xe8, 0x56, 0xe2,
+ 0xd5, 0x90, 0x41, 0x6e, 0xb4, 0xd5, 0xc2, 0xfe, 0x94, 0x3f, 0xf9, 0xb0, 0x90, 0x0f, 0x78, 0xa0,
+ 0xf7, 0x62, 0xae, 0x53, 0x8c, 0xb5, 0x68, 0xf7, 0xbf, 0x6f, 0x58, 0x2a, 0xb4, 0x4f, 0xe0, 0x6a,
+ 0x22, 0x57, 0x57, 0x0e, 0x9c, 0x87, 0xa0, 0x28, 0x07, 0xce, 0x47, 0x2f, 0xc2, 0x65, 0xb8, 0x29,
+ 0x78, 0x23, 0x44, 0x00, 0xd0, 0xbd, 0xdc, 0xf9, 0x29, 0x8c, 0x43, 0x7b, 0xef, 0x7b, 0x46, 0x65,
+ 0xdf, 0xbd, 0xe9, 0xcc, 0x3f, 0x9e, 0x18, 0xe6, 0x02, 0x0d, 0xf1, 0xc4, 0xb0, 0x00, 0x34, 0x48,
+ 0xb0, 0x4f, 0xa6, 0xf0, 0x71, 0xf6, 0xb9, 0xb0, 0x42, 0x9c, 0x7d, 0x41, 0xf6, 0x1f, 0xb2, 0xef,
+ 0xc2, 0x5c, 0x4e, 0x02, 0x8e, 0x62, 0x7e, 0x5f, 0x84, 0x10, 0x68, 0x77, 0x47, 0x8e, 0xc9, 0xbe,
+ 0xc4, 0xb2, 0x29, 0xb7, 0x8a, 0xc0, 0xc2, 0x2c, 0x5f, 0x45, 0x60, 0x71, 0xc6, 0x1e, 0x0a, 0x69,
+ 0x7d, 0xfc, 0x8a, 0x0d, 0x76, 0xad, 0xf6, 0x9a, 0xed, 0xf7, 0x1f, 0x8b, 0xcf, 0x8f, 0x7c, 0x72,
+ 0xfa, 0x58, 0xb0, 0x78, 0xcc, 0xff, 0x76, 0x7f, 0x7c, 0xea, 0xcb, 0xf6, 0xa0, 0xdd, 0x2e, 0x73,
+ 0xd2, 0xd3, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x88, 0xee, 0x9b, 0x7e, 0x3e, 0x2f, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/proto/repository-service.proto b/proto/repository-service.proto
index 23216124e..e7d921b85 100644
--- a/proto/repository-service.proto
+++ b/proto/repository-service.proto
@@ -60,7 +60,7 @@ service RepositoryService {
}
rpc GetArchive(GetArchiveRequest) returns (stream GetArchiveResponse) {
option (op_type) = {
- op: MUTATOR
+ op: ACCESSOR
};
}
rpc HasLocalBranches(HasLocalBranchesRequest) returns (HasLocalBranchesResponse) {